From 623f98d98922f890a9aa553cdcd7f65c516ee2ea Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Thu, 21 Jan 2021 15:58:52 +0100 Subject: [PATCH 01/88] add log rotation to deploy examples --- .../examples/cs3_users_ocis/docker-compose.yaml | 11 +++++++++++ .../examples/ocis_keycloak/docker-compose.yml | 11 +++++++++++ .../examples/ocis_traefik/docker-compose.yml | 7 +++++++ .../owncloud10_with_oc_web/docker-compose.yml | 13 +++++++++++++ 4 files changed, 42 insertions(+) diff --git a/deployments/examples/cs3_users_ocis/docker-compose.yaml b/deployments/examples/cs3_users_ocis/docker-compose.yaml index 7193df4e29..8d8347fea6 100644 --- a/deployments/examples/cs3_users_ocis/docker-compose.yaml +++ b/deployments/examples/cs3_users_ocis/docker-compose.yaml @@ -38,6 +38,11 @@ services: - "traefik.http.routers.traefik-secure.tls=true" - "traefik.http.routers.traefik-secure.tls.certresolver=http" - "traefik.http.routers.traefik-secure.service=api@internal" + logging: &logging + driver: "json-file" + options: + max-size: "100m" + max-file: "2" restart: always ocis: @@ -86,6 +91,8 @@ services: - "traefik.http.routers.ocis-secure.service=ocis" - "traefik.http.services.ocis.loadbalancer.server.port=9200" - "traefik.http.services.ocis.loadbalancer.server.scheme=https" + logging: + <<: *logging restart: always ldap-server: @@ -103,6 +110,8 @@ services: - "127.0.0.1:636:636" volumes: - ./config/ldap/ldif:/container/service/slapd/assets/config/bootstrap/ldif/custom + logging: + <<: *logging restart: always ldap-manager: @@ -122,6 +131,8 @@ services: - "traefik.http.routers.ldap-manager-secure.tls.certresolver=http" - "traefik.http.routers.ldap-manager-secure.service=ldap-manager" - "traefik.http.services.ldap-manager.loadbalancer.server.port=80" + logging: + <<: *logging restart: always volumes: diff --git a/deployments/examples/ocis_keycloak/docker-compose.yml b/deployments/examples/ocis_keycloak/docker-compose.yml index 4918fa4f6d..85d7ad6ed8 100644 --- a/deployments/examples/ocis_keycloak/docker-compose.yml +++ b/deployments/examples/ocis_keycloak/docker-compose.yml @@ -39,6 +39,11 @@ services: - "traefik.http.routers.traefik-secure.tls=true" - "traefik.http.routers.traefik-secure.tls.certresolver=http" - "traefik.http.routers.traefik-secure.service=api@internal" + logging: &logging + driver: "json-file" + options: + max-size: "100m" + max-file: "2" restart: always ocis: @@ -73,6 +78,8 @@ services: - "traefik.http.routers.ocis-secure.service=ocis" - "traefik.http.services.ocis.loadbalancer.server.port=9200" - "traefik.http.services.ocis.loadbalancer.server.scheme=https" + logging: + <<: *logging restart: always postgres: @@ -83,6 +90,8 @@ services: POSTGRES_DB: keycloak POSTGRES_USER: keycloak POSTGRES_PASSWORD: keycloak + logging: + <<: *logging restart: always keycloak: @@ -112,6 +121,8 @@ services: - "traefik.http.services.keycloak.loadbalancer.server.scheme=http" depends_on: - postgres + logging: + <<: *logging restart: always volumes: diff --git a/deployments/examples/ocis_traefik/docker-compose.yml b/deployments/examples/ocis_traefik/docker-compose.yml index 0326958f8f..c0eaec747a 100644 --- a/deployments/examples/ocis_traefik/docker-compose.yml +++ b/deployments/examples/ocis_traefik/docker-compose.yml @@ -38,6 +38,11 @@ services: - "traefik.http.routers.traefik-secure.tls=true" - "traefik.http.routers.traefik-secure.tls.certresolver=http" - "traefik.http.routers.traefik-secure.service=api@internal" + logging: &logging + driver: "json-file" + options: + max-size: "100m" + max-file: "2" restart: always ocis: @@ -63,6 +68,8 @@ services: - "traefik.http.routers.ocis-secure.service=ocis" - "traefik.http.services.ocis.loadbalancer.server.port=9200" - "traefik.http.services.ocis.loadbalancer.server.scheme=https" + logging: + <<: *logging restart: always volumes: diff --git a/deployments/examples/owncloud10_with_oc_web/docker-compose.yml b/deployments/examples/owncloud10_with_oc_web/docker-compose.yml index 282b060196..64500ce119 100644 --- a/deployments/examples/owncloud10_with_oc_web/docker-compose.yml +++ b/deployments/examples/owncloud10_with_oc_web/docker-compose.yml @@ -38,6 +38,11 @@ services: - "traefik.http.routers.traefik-secure.tls=true" - "traefik.http.routers.traefik-secure.tls.certresolver=http" - "traefik.http.routers.traefik-secure.service=api@internal" + logging: &logging + driver: "json-file" + options: + max-size: "100m" + max-file: "2" restart: always ocis: @@ -114,6 +119,8 @@ services: - "traefik.http.routers.ocis-secure.tls.certresolver=http" - "traefik.http.routers.ocis-secure.service=ocis" - "traefik.http.services.ocis.loadbalancer.server.port=9200" + logging: + <<: *logging restart: always oc10: @@ -156,6 +163,8 @@ services: - "traefik.http.routers.oc10-secure.tls.certresolver=http" - "traefik.http.routers.oc10-secure.service=oc10" - "traefik.http.services.oc10.loadbalancer.server.port=8080" + logging: + <<: *logging restart: always db: @@ -175,6 +184,8 @@ services: volumes: - mysql:/var/lib/mysql - backup:/var/lib/backup + logging: + <<: *logging restart: always redis: @@ -183,6 +194,8 @@ services: - REDIS_DATABASES=1 volumes: - redis:/var/lib/redis + logging: + <<: *logging restart: always From 37861047395b6750c30f345cc36ceb06e3ee3bea Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Thu, 21 Jan 2021 19:07:55 +0100 Subject: [PATCH 02/88] disable Traefik dasboard as default for deployment examples --- deployments/examples/cs3_users_ocis/.env | 2 ++ deployments/examples/cs3_users_ocis/docker-compose.yaml | 2 +- deployments/examples/ocis_keycloak/.env | 2 ++ deployments/examples/ocis_keycloak/docker-compose.yml | 2 +- deployments/examples/ocis_traefik/.env | 2 ++ deployments/examples/ocis_traefik/docker-compose.yml | 2 +- deployments/examples/owncloud10_with_oc_web/.env | 2 ++ .../examples/owncloud10_with_oc_web/docker-compose.yml | 2 +- docs/ocis/deployment/ocis_keycloak.md | 4 +++- docs/ocis/deployment/ocis_traefik.md | 4 +++- docs/ocis/deployment/owncloud10_with_oc_web.md | 4 +++- 11 files changed, 21 insertions(+), 7 deletions(-) diff --git a/deployments/examples/cs3_users_ocis/.env b/deployments/examples/cs3_users_ocis/.env index b8e592aa89..016f879e48 100644 --- a/deployments/examples/cs3_users_ocis/.env +++ b/deployments/examples/cs3_users_ocis/.env @@ -3,6 +3,8 @@ INSECURE=true ### Traefik settings ### +# Serve Treafik dashboard. Defaults to "false". +TRAEFIK_DASHBOARD= # Domain of Traefik, where you can find the dashboard. Defaults to "traefik.owncloud.test" TRAEFIK_DOMAIN= # Basic authentication for the dashboard. Defaults to user "admin" and password "admin" diff --git a/deployments/examples/cs3_users_ocis/docker-compose.yaml b/deployments/examples/cs3_users_ocis/docker-compose.yaml index 7193df4e29..56c9680a74 100644 --- a/deployments/examples/cs3_users_ocis/docker-compose.yaml +++ b/deployments/examples/cs3_users_ocis/docker-compose.yaml @@ -26,7 +26,7 @@ services: - "/var/run/docker.sock:/var/run/docker.sock:ro" - "certs:/certs" labels: - - "traefik.enable=true" + - "traefik.enable=${TRAEFIK_DASHBOARD:-false}" - "traefik.http.routers.traefik.entrypoints=http" - "traefik.http.routers.traefik.rule=Host(`${TRAEFIK_DOMAIN:-traefik.owncloud.test}`)" - "traefik.http.middlewares.traefik-auth.basicauth.users=${TRAEFIK_BASIC_AUTH_USERS:-admin:$apr1$4vqie50r$YQAmQdtmz5n9rEALhxJ4l.}" # defaults to admin:admin diff --git a/deployments/examples/ocis_keycloak/.env b/deployments/examples/ocis_keycloak/.env index 4c08ef11e3..0d63fce056 100644 --- a/deployments/examples/ocis_keycloak/.env +++ b/deployments/examples/ocis_keycloak/.env @@ -3,6 +3,8 @@ INSECURE=true ### Traefik settings ### +# Serve Treafik dashboard. Defaults to "false". +TRAEFIK_DASHBOARD= # Domain of Traefik, where you can find the dashboard. Defaults to "traefik.owncloud.test" TRAEFIK_DOMAIN= # Basic authentication for the dashboard. Defaults to user "admin" and password "admin" diff --git a/deployments/examples/ocis_keycloak/docker-compose.yml b/deployments/examples/ocis_keycloak/docker-compose.yml index 4918fa4f6d..8bf9359de7 100644 --- a/deployments/examples/ocis_keycloak/docker-compose.yml +++ b/deployments/examples/ocis_keycloak/docker-compose.yml @@ -27,7 +27,7 @@ services: - "/var/run/docker.sock:/var/run/docker.sock:ro" - "certs:/certs" labels: - - "traefik.enable=true" + - "traefik.enable=${TRAEFIK_DASHBOARD:-false}" - "traefik.http.routers.traefik.entrypoints=http" - "traefik.http.routers.traefik.rule=Host(`${TRAEFIK_DOMAIN:-traefik.owncloud.test}`)" - "traefik.http.middlewares.traefik-auth.basicauth.users=${TRAEFIK_BASIC_AUTH_USERS:-admin:$apr1$4vqie50r$YQAmQdtmz5n9rEALhxJ4l.}" # defaults to admin:admin diff --git a/deployments/examples/ocis_traefik/.env b/deployments/examples/ocis_traefik/.env index 0a774f2917..132b2c6b7c 100644 --- a/deployments/examples/ocis_traefik/.env +++ b/deployments/examples/ocis_traefik/.env @@ -3,6 +3,8 @@ INSECURE=true ### Traefik settings ### +# Serve Treafik dashboard. Defaults to "false". +TRAEFIK_DASHBOARD= # Domain of Traefik, where you can find the dashboard. Defaults to "traefik.owncloud.test" TRAEFIK_DOMAIN= # Basic authentication for the dashboard. Defaults to user "admin" and password "admin" diff --git a/deployments/examples/ocis_traefik/docker-compose.yml b/deployments/examples/ocis_traefik/docker-compose.yml index 0326958f8f..55e40f3dbc 100644 --- a/deployments/examples/ocis_traefik/docker-compose.yml +++ b/deployments/examples/ocis_traefik/docker-compose.yml @@ -26,7 +26,7 @@ services: - "/var/run/docker.sock:/var/run/docker.sock:ro" - "certs:/certs" labels: - - "traefik.enable=true" + - "traefik.enable=${TRAEFIK_DASHBOARD:-false}" - "traefik.http.routers.traefik.entrypoints=http" - "traefik.http.routers.traefik.rule=Host(`${TRAEFIK_DOMAIN:-traefik.owncloud.test}`)" - "traefik.http.middlewares.traefik-auth.basicauth.users=${TRAEFIK_BASIC_AUTH_USERS:-admin:$apr1$4vqie50r$YQAmQdtmz5n9rEALhxJ4l.}" # defaults to admin:admin diff --git a/deployments/examples/owncloud10_with_oc_web/.env b/deployments/examples/owncloud10_with_oc_web/.env index 424e514af3..3b29ca0e9c 100644 --- a/deployments/examples/owncloud10_with_oc_web/.env +++ b/deployments/examples/owncloud10_with_oc_web/.env @@ -3,6 +3,8 @@ INSECURE=true ### Traefik settings ### +# Serve Treafik dashboard. Defaults to "false". +TRAEFIK_DASHBOARD= # Domain of Traefik, where you can find the dashboard. Defaults to "traefik.owncloud.test" TRAEFIK_DOMAIN= # Basic authentication for the dashboard. Defaults to user "admin" and password "admin" diff --git a/deployments/examples/owncloud10_with_oc_web/docker-compose.yml b/deployments/examples/owncloud10_with_oc_web/docker-compose.yml index 282b060196..72f6bab11c 100644 --- a/deployments/examples/owncloud10_with_oc_web/docker-compose.yml +++ b/deployments/examples/owncloud10_with_oc_web/docker-compose.yml @@ -26,7 +26,7 @@ services: - "/var/run/docker.sock:/var/run/docker.sock:ro" - "certs:/certs" labels: - - "traefik.enable=true" + - "traefik.enable=${TRAEFIK_DASHBOARD:-false}" - "traefik.http.routers.traefik.entrypoints=http" - "traefik.http.routers.traefik.rule=Host(`${TRAEFIK_DOMAIN:-traefik.owncloud.test}`)" - "traefik.http.middlewares.traefik-auth.basicauth.users=${TRAEFIK_BASIC_AUTH_USERS:-admin:$apr1$4vqie50r$YQAmQdtmz5n9rEALhxJ4l.}" # defaults to admin:admin diff --git a/docs/ocis/deployment/ocis_keycloak.md b/docs/ocis/deployment/ocis_keycloak.md index 1b043138f8..50ad39b46d 100644 --- a/docs/ocis/deployment/ocis_keycloak.md +++ b/docs/ocis/deployment/ocis_keycloak.md @@ -54,6 +54,8 @@ See also [example server setup]({{< ref "preparing_server.md" >}}) INSECURE=true ### Traefik settings ### + # Serve Treafik dashboard. Defaults to "false". + TRAEFIK_DASHBOARD= # Domain of Traefik, where you can find the dashboard. Defaults to "traefik.owncloud.test" TRAEFIK_DOMAIN= # Basic authentication for the dashboard. Defaults to user "admin" and password "admin" @@ -83,7 +85,7 @@ See also [example server setup]({{< ref "preparing_server.md" >}}) You are installing oCIS on a server and Traefik will obtain valid certificates for you so please remove `INSECURE=true` or set it to `false`. - Set your domain for the Traefik dashboard in `TRAEFIK_DOMAIN=` eg. `TRAEFIK_DOMAIN=traefik.owncloud.test`. + If you want to use the Traefik dashboard, set TRAEFIK_DASHBOARD to `true` (default is `false` and therefore not active). If you activate it, you must set a domain for the Traefik dashboard in `TRAEFIK_DOMAIN=` eg. `TRAEFIK_DOMAIN=traefik.owncloud.test`. The Traefik dashboard is secured by basic auth. Default credentials are the user `admin` with the password `admin`. To set your own credentials, generate a htpasswd (eg. by using [an online tool](https://htpasswdgenerator.de/) or a cli tool). diff --git a/docs/ocis/deployment/ocis_traefik.md b/docs/ocis/deployment/ocis_traefik.md index 10c1a904e0..099eb5eb4a 100644 --- a/docs/ocis/deployment/ocis_traefik.md +++ b/docs/ocis/deployment/ocis_traefik.md @@ -50,6 +50,8 @@ See also [example server setup]({{< ref "preparing_server.md" >}}) INSECURE=true ### Traefik settings ### + # Serve Treafik dashboard. Defaults to "false". + TRAEFIK_DASHBOARD= # Domain of Traefik, where you can find the dashboard. Defaults to "traefik.owncloud.test" TRAEFIK_DOMAIN= # Basic authentication for the dashboard. Defaults to user "admin" and password "admin" @@ -66,7 +68,7 @@ See also [example server setup]({{< ref "preparing_server.md" >}}) You are installing oCIS on a server and Traefik will obtain valid certificates for you so please remove `INSECURE=true` or set it to `false`. - Set your domain for the Traefik dashboard in `TRAEFIK_DOMAIN=` eg. `TRAEFIK_DOMAIN=traefik.owncloud.test`. + If you want to use the Traefik dashboard, set TRAEFIK_DASHBOARD to `true` (default is `false` and therefore not active). If you activate it, you must set a domain for the Traefik dashboard in `TRAEFIK_DOMAIN=` eg. `TRAEFIK_DOMAIN=traefik.owncloud.test`. The Traefik dashboard is secured by basic auth. Default credentials are the user `admin` with the password `admin`. To set your own credentials, generate a htpasswd (eg. by using [an online tool](https://htpasswdgenerator.de/) or a cli tool). diff --git a/docs/ocis/deployment/owncloud10_with_oc_web.md b/docs/ocis/deployment/owncloud10_with_oc_web.md index a08777452d..496b6d6acf 100644 --- a/docs/ocis/deployment/owncloud10_with_oc_web.md +++ b/docs/ocis/deployment/owncloud10_with_oc_web.md @@ -59,6 +59,8 @@ See also [example server setup]({{< ref "preparing_server.md" >}}) INSECURE=true ### Traefik settings ### + # Serve Treafik dashboard. Defaults to "false". + TRAEFIK_DASHBOARD= # Domain of Traefik, where you can find the dashboard. Defaults to "traefik.owncloud.test" TRAEFIK_DOMAIN= # Basic authentication for the dashboard. Defaults to user "admin" and password "admin" @@ -79,7 +81,7 @@ See also [example server setup]({{< ref "preparing_server.md" >}}) You are installing oCIS on a server and Traefik will obtain valid certificates for you so please remove `INSECURE=true` or set it to `false`. - Set your domain for the Traefik dashboard in `TRAEFIK_DOMAIN=` eg. `TRAEFIK_DOMAIN=traefik.owncloud.test`. + If you want to use the Traefik dashboard, set TRAEFIK_DASHBOARD to `true` (default is `false` and therefore not active). If you activate it, you must set a domain for the Traefik dashboard in `TRAEFIK_DOMAIN=` eg. `TRAEFIK_DOMAIN=traefik.owncloud.test`. The Traefik dashboard is secured by basic auth. Default credentials are the user `admin` with the password `admin`. To set your own credentials, generate a htpasswd (eg. by using [an online tool](https://htpasswdgenerator.de/) or a cli tool). From c7d369cb12f78de41e2f5788c506502c62c5e093 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Fri, 22 Jan 2021 12:29:24 +0545 Subject: [PATCH 03/88] Bump core commit id to include tests in core PR 38325 --- .drone.env | 2 +- .../expected-failures-API-on-OCIS-storage.md | 48 +++++++++++++++++++ ...pected-failures-API-on-OWNCLOUD-storage.md | 48 +++++++++++++++++++ 3 files changed, 97 insertions(+), 1 deletion(-) diff --git a/.drone.env b/.drone.env index de45d798b4..23edc16e83 100644 --- a/.drone.env +++ b/.drone.env @@ -1,5 +1,5 @@ # The test runner source for API tests -CORE_COMMITID=e7189eab94075c4edac75f3e86f96ae1f6826170 +CORE_COMMITID=ec99c594e90b83c8a3778834e31a5714df630ffc CORE_BRANCH=master # The test runner source for UI tests diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index 8cf0316523..c2c9d57ff6 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -2089,6 +2089,54 @@ - [apiWebdavLocks2/setTimeoutSharesToShares.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks2/setTimeoutSharesToShares.feature#L74) - [apiWebdavLocks2/setTimeoutSharesToShares.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks2/setTimeoutSharesToShares.feature#L75) - [apiWebdavLocks2/setTimeoutSharesToShares.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks2/setTimeoutSharesToShares.feature#L76) +- [apiWebdavLocks3/independentLocks.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L24) +- [apiWebdavLocks3/independentLocks.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L25) +- [apiWebdavLocks3/independentLocks.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L26) +- [apiWebdavLocks3/independentLocks.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L27) +- [apiWebdavLocks3/independentLocks.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L43) +- [apiWebdavLocks3/independentLocks.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L44) +- [apiWebdavLocks3/independentLocks.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L45) +- [apiWebdavLocks3/independentLocks.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L46) +- [apiWebdavLocks3/independentLocks.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L62) +- [apiWebdavLocks3/independentLocks.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L63) +- [apiWebdavLocks3/independentLocks.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L64) +- [apiWebdavLocks3/independentLocks.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L65) +- [apiWebdavLocks3/independentLocks.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L83) +- [apiWebdavLocks3/independentLocks.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L84) +- [apiWebdavLocks3/independentLocks.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L85) +- [apiWebdavLocks3/independentLocks.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L86) +- [apiWebdavLocks3/independentLocks.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L87) +- [apiWebdavLocks3/independentLocks.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L88) +- [apiWebdavLocks3/independentLocks.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L89) +- [apiWebdavLocks3/independentLocks.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L90) +- [apiWebdavLocks3/independentLocks.feature:109](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L109) +- [apiWebdavLocks3/independentLocks.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L110) +- [apiWebdavLocks3/independentLocks.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L111) +- [apiWebdavLocks3/independentLocks.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L112) +- [apiWebdavLocks3/independentLocks.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L134) +- [apiWebdavLocks3/independentLocks.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L135) +- [apiWebdavLocks3/independentLocks.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L136) +- [apiWebdavLocks3/independentLocks.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L137) +- [apiWebdavLocks3/independentLocks.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L157) +- [apiWebdavLocks3/independentLocks.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L158) +- [apiWebdavLocks3/independentLocks.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L159) +- [apiWebdavLocks3/independentLocks.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L160) +- [apiWebdavLocks3/independentLocksShareToShares.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L27) +- [apiWebdavLocks3/independentLocksShareToShares.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L28) +- [apiWebdavLocks3/independentLocksShareToShares.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L29) +- [apiWebdavLocks3/independentLocksShareToShares.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L30) +- [apiWebdavLocks3/independentLocksShareToShares.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L49) +- [apiWebdavLocks3/independentLocksShareToShares.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L50) +- [apiWebdavLocks3/independentLocksShareToShares.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L51) +- [apiWebdavLocks3/independentLocksShareToShares.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L52) +- [apiWebdavLocks3/independentLocksShareToShares.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L72) +- [apiWebdavLocks3/independentLocksShareToShares.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L73) +- [apiWebdavLocks3/independentLocksShareToShares.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L74) +- [apiWebdavLocks3/independentLocksShareToShares.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L75) +- [apiWebdavLocks3/independentLocksShareToShares.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L94) +- [apiWebdavLocks3/independentLocksShareToShares.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L95) +- [apiWebdavLocks3/independentLocksShareToShares.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L96) +- [apiWebdavLocks3/independentLocksShareToShares.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L97) - [apiWebdavLocksUnlock/unlock.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L33) - [apiWebdavLocksUnlock/unlock.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L34) - [apiWebdavLocksUnlock/unlock.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L45) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index 20ca741f5b..a9ee4f399f 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -2228,6 +2228,54 @@ restoring a file doesn't changes the etags of the parents - [apiWebdavLocks2/setTimeoutSharesToShares.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks2/setTimeoutSharesToShares.feature#L74) - [apiWebdavLocks2/setTimeoutSharesToShares.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks2/setTimeoutSharesToShares.feature#L75) - [apiWebdavLocks2/setTimeoutSharesToShares.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks2/setTimeoutSharesToShares.feature#L76) +- [apiWebdavLocks3/independentLocks.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L24) +- [apiWebdavLocks3/independentLocks.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L25) +- [apiWebdavLocks3/independentLocks.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L26) +- [apiWebdavLocks3/independentLocks.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L27) +- [apiWebdavLocks3/independentLocks.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L43) +- [apiWebdavLocks3/independentLocks.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L44) +- [apiWebdavLocks3/independentLocks.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L45) +- [apiWebdavLocks3/independentLocks.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L46) +- [apiWebdavLocks3/independentLocks.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L62) +- [apiWebdavLocks3/independentLocks.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L63) +- [apiWebdavLocks3/independentLocks.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L64) +- [apiWebdavLocks3/independentLocks.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L65) +- [apiWebdavLocks3/independentLocks.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L83) +- [apiWebdavLocks3/independentLocks.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L84) +- [apiWebdavLocks3/independentLocks.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L85) +- [apiWebdavLocks3/independentLocks.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L86) +- [apiWebdavLocks3/independentLocks.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L87) +- [apiWebdavLocks3/independentLocks.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L88) +- [apiWebdavLocks3/independentLocks.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L89) +- [apiWebdavLocks3/independentLocks.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L90) +- [apiWebdavLocks3/independentLocks.feature:109](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L109) +- [apiWebdavLocks3/independentLocks.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L110) +- [apiWebdavLocks3/independentLocks.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L111) +- [apiWebdavLocks3/independentLocks.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L112) +- [apiWebdavLocks3/independentLocks.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L134) +- [apiWebdavLocks3/independentLocks.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L135) +- [apiWebdavLocks3/independentLocks.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L136) +- [apiWebdavLocks3/independentLocks.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L137) +- [apiWebdavLocks3/independentLocks.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L157) +- [apiWebdavLocks3/independentLocks.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L158) +- [apiWebdavLocks3/independentLocks.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L159) +- [apiWebdavLocks3/independentLocks.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L160) +- [apiWebdavLocks3/independentLocksShareToShares.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L27) +- [apiWebdavLocks3/independentLocksShareToShares.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L28) +- [apiWebdavLocks3/independentLocksShareToShares.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L29) +- [apiWebdavLocks3/independentLocksShareToShares.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L30) +- [apiWebdavLocks3/independentLocksShareToShares.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L49) +- [apiWebdavLocks3/independentLocksShareToShares.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L50) +- [apiWebdavLocks3/independentLocksShareToShares.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L51) +- [apiWebdavLocks3/independentLocksShareToShares.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L52) +- [apiWebdavLocks3/independentLocksShareToShares.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L72) +- [apiWebdavLocks3/independentLocksShareToShares.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L73) +- [apiWebdavLocks3/independentLocksShareToShares.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L74) +- [apiWebdavLocks3/independentLocksShareToShares.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L75) +- [apiWebdavLocks3/independentLocksShareToShares.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L94) +- [apiWebdavLocks3/independentLocksShareToShares.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L95) +- [apiWebdavLocks3/independentLocksShareToShares.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L96) +- [apiWebdavLocks3/independentLocksShareToShares.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L97) - [apiWebdavLocksUnlock/unlock.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L33) - [apiWebdavLocksUnlock/unlock.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L34) - [apiWebdavLocksUnlock/unlock.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L45) From 888bea54ad72b7b7fc97e77bead848a14548bb5e Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Fri, 22 Jan 2021 08:51:20 +0100 Subject: [PATCH 04/88] switch to local log driver --- .../examples/cs3_users_ocis/docker-compose.yaml | 13 +++++-------- .../examples/ocis_keycloak/docker-compose.yml | 13 +++++-------- .../examples/ocis_traefik/docker-compose.yml | 9 +++------ .../owncloud10_with_oc_web/docker-compose.yml | 15 ++++++--------- 4 files changed, 19 insertions(+), 31 deletions(-) diff --git a/deployments/examples/cs3_users_ocis/docker-compose.yaml b/deployments/examples/cs3_users_ocis/docker-compose.yaml index 8d8347fea6..ee785f2330 100644 --- a/deployments/examples/cs3_users_ocis/docker-compose.yaml +++ b/deployments/examples/cs3_users_ocis/docker-compose.yaml @@ -38,11 +38,8 @@ services: - "traefik.http.routers.traefik-secure.tls=true" - "traefik.http.routers.traefik-secure.tls.certresolver=http" - "traefik.http.routers.traefik-secure.service=api@internal" - logging: &logging - driver: "json-file" - options: - max-size: "100m" - max-file: "2" + logging: + driver: "local" restart: always ocis: @@ -92,7 +89,7 @@ services: - "traefik.http.services.ocis.loadbalancer.server.port=9200" - "traefik.http.services.ocis.loadbalancer.server.scheme=https" logging: - <<: *logging + driver: "local" restart: always ldap-server: @@ -111,7 +108,7 @@ services: volumes: - ./config/ldap/ldif:/container/service/slapd/assets/config/bootstrap/ldif/custom logging: - <<: *logging + driver: "local" restart: always ldap-manager: @@ -132,7 +129,7 @@ services: - "traefik.http.routers.ldap-manager-secure.service=ldap-manager" - "traefik.http.services.ldap-manager.loadbalancer.server.port=80" logging: - <<: *logging + driver: "local" restart: always volumes: diff --git a/deployments/examples/ocis_keycloak/docker-compose.yml b/deployments/examples/ocis_keycloak/docker-compose.yml index 85d7ad6ed8..4730f2ce06 100644 --- a/deployments/examples/ocis_keycloak/docker-compose.yml +++ b/deployments/examples/ocis_keycloak/docker-compose.yml @@ -39,11 +39,8 @@ services: - "traefik.http.routers.traefik-secure.tls=true" - "traefik.http.routers.traefik-secure.tls.certresolver=http" - "traefik.http.routers.traefik-secure.service=api@internal" - logging: &logging - driver: "json-file" - options: - max-size: "100m" - max-file: "2" + logging: + driver: "local" restart: always ocis: @@ -79,7 +76,7 @@ services: - "traefik.http.services.ocis.loadbalancer.server.port=9200" - "traefik.http.services.ocis.loadbalancer.server.scheme=https" logging: - <<: *logging + driver: "local" restart: always postgres: @@ -91,7 +88,7 @@ services: POSTGRES_USER: keycloak POSTGRES_PASSWORD: keycloak logging: - <<: *logging + driver: "local" restart: always keycloak: @@ -122,7 +119,7 @@ services: depends_on: - postgres logging: - <<: *logging + driver: "local" restart: always volumes: diff --git a/deployments/examples/ocis_traefik/docker-compose.yml b/deployments/examples/ocis_traefik/docker-compose.yml index c0eaec747a..af35d54157 100644 --- a/deployments/examples/ocis_traefik/docker-compose.yml +++ b/deployments/examples/ocis_traefik/docker-compose.yml @@ -38,11 +38,8 @@ services: - "traefik.http.routers.traefik-secure.tls=true" - "traefik.http.routers.traefik-secure.tls.certresolver=http" - "traefik.http.routers.traefik-secure.service=api@internal" - logging: &logging - driver: "json-file" - options: - max-size: "100m" - max-file: "2" + logging: + driver: "local" restart: always ocis: @@ -69,7 +66,7 @@ services: - "traefik.http.services.ocis.loadbalancer.server.port=9200" - "traefik.http.services.ocis.loadbalancer.server.scheme=https" logging: - <<: *logging + driver: "local" restart: always volumes: diff --git a/deployments/examples/owncloud10_with_oc_web/docker-compose.yml b/deployments/examples/owncloud10_with_oc_web/docker-compose.yml index 64500ce119..b2de87e3a8 100644 --- a/deployments/examples/owncloud10_with_oc_web/docker-compose.yml +++ b/deployments/examples/owncloud10_with_oc_web/docker-compose.yml @@ -38,11 +38,8 @@ services: - "traefik.http.routers.traefik-secure.tls=true" - "traefik.http.routers.traefik-secure.tls.certresolver=http" - "traefik.http.routers.traefik-secure.service=api@internal" - logging: &logging - driver: "json-file" - options: - max-size: "100m" - max-file: "2" + logging: + driver: "local" restart: always ocis: @@ -120,7 +117,7 @@ services: - "traefik.http.routers.ocis-secure.service=ocis" - "traefik.http.services.ocis.loadbalancer.server.port=9200" logging: - <<: *logging + driver: "local" restart: always oc10: @@ -164,7 +161,7 @@ services: - "traefik.http.routers.oc10-secure.service=oc10" - "traefik.http.services.oc10.loadbalancer.server.port=8080" logging: - <<: *logging + driver: "local" restart: always db: @@ -185,7 +182,7 @@ services: - mysql:/var/lib/mysql - backup:/var/lib/backup logging: - <<: *logging + driver: "local" restart: always redis: @@ -195,7 +192,7 @@ services: volumes: - redis:/var/lib/redis logging: - <<: *logging + driver: "local" restart: always From 777c29fc35bc02a88fc8ecf8506b59f13427655a Mon Sep 17 00:00:00 2001 From: Ilja Neumann Date: Thu, 21 Jan 2021 10:21:54 +0100 Subject: [PATCH 05/88] Update reva to v1.5.1 --- accounts/go.mod | 2 +- accounts/go.sum | 2 + changelog/unreleased/update-reva-to-1.5.1.md | 76 ++++++++++++++++++++ ocs/go.mod | 2 +- ocs/go.sum | 2 + proxy/go.mod | 2 +- proxy/go.sum | 2 + storage/go.mod | 2 +- storage/go.sum | 2 + 9 files changed, 88 insertions(+), 4 deletions(-) create mode 100644 changelog/unreleased/update-reva-to-1.5.1.md diff --git a/accounts/go.mod b/accounts/go.mod index 0de5040a69..157c63c8ee 100644 --- a/accounts/go.mod +++ b/accounts/go.mod @@ -7,7 +7,7 @@ require ( contrib.go.opencensus.io/exporter/ocagent v0.6.0 contrib.go.opencensus.io/exporter/zipkin v0.1.1 github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21 - github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 + github.com/cs3org/reva v1.5.1 github.com/go-chi/chi v4.1.2+incompatible github.com/go-chi/render v1.0.1 github.com/gofrs/uuid v3.3.0+incompatible diff --git a/accounts/go.sum b/accounts/go.sum index 7e8d684d23..2d30192c7e 100644 --- a/accounts/go.sum +++ b/accounts/go.sum @@ -187,6 +187,8 @@ github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e h1:khITGSnfDXtByQsLe github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/changelog/unreleased/update-reva-to-1.5.1.md b/changelog/unreleased/update-reva-to-1.5.1.md new file mode 100644 index 0000000000..4ea6f224a8 --- /dev/null +++ b/changelog/unreleased/update-reva-to-1.5.1.md @@ -0,0 +1,76 @@ +Enhancement: Update reva to v1.5.1 + +Summary +------- + +* Fix #1401: Use the user in request for deciding the layout for non-home DAV requests +* Fix #1413: Re-include the '.git' dir in the Docker images to pass the version tag +* Fix #1399: Fix ocis trash-bin purge +* Enh #1397: Bump the Copyright date to 2021 +* Enh #1398: Support site authorization status in Mentix +* Enh #1393: Allow setting favorites, mtime and a temporary etag +* Enh #1403: Support remote cloud gathering metrics + +Details +------- + +* Bugfix #1401: Use the user in request for deciding the layout for non-home DAV requests + + For the incoming /dav/files/userID requests, we have different namespaces depending on + whether the request is for the logged-in user's namespace or not. Since in the storage drivers, + we specify the layout depending only on the user whose resources are to be accessed, this fails + when a user wants to access another user's namespace when the storage provider depends on the + logged in user's namespace. This PR fixes that. + + For example, consider the following case. The owncloud fs uses a layout {{substr 0 1 + .Id.OpaqueId}}/{{.Id.OpaqueId}}. The user einstein sends a request to access a resource + shared with him, say /dav/files/marie/abcd, which should be allowed. However, based on the + way we applied the layout, there's no way in which this can be translated to /m/marie/. + + https://github.com/cs3org/reva/pull/1401 + +* Bugfix #1413: Re-include the '.git' dir in the Docker images to pass the version tag + + And git SHA to the release tool. + + https://github.com/cs3org/reva/pull/1413 + +* Bugfix #1399: Fix ocis trash-bin purge + + Fixes the empty trash-bin functionality for ocis-storage + + https://github.com/owncloud/product/issues/254 + https://github.com/cs3org/reva/pull/1399 + +* Enhancement #1397: Bump the Copyright date to 2021 + + https://github.com/cs3org/reva/pull/1397 + +* Enhancement #1398: Support site authorization status in Mentix + + This enhancement adds support for a site authorization status to Mentix. This way, sites + registered via a web app can now be excluded until authorized manually by an administrator. + + Furthermore, Mentix now sets the scheme for Prometheus targets. This allows us to also support + monitoring of sites that do not support the default HTTPS scheme. + + https://github.com/cs3org/reva/pull/1398 + +* Enhancement #1393: Allow setting favorites, mtime and a temporary etag + + We now let the ocis driver persist favorites, set temporary etags and the mtime as arbitrary + metadata. + + https://github.com/owncloud/ocis/issues/567 + https://github.com/cs3org/reva/issues/1394 + https://github.com/cs3org/reva/pull/1393 + +* Enhancement #1403: Support remote cloud gathering metrics + + The current metrics package can only gather metrics either from json files. With this feature, + the metrics can be gathered polling the http endpoints exposed by the owncloud/nextcloud + sciencemesh apps. + + https://github.com/cs3org/reva/pull/1403 + +https://github.com/owncloud/ocis/pull/1372 diff --git a/ocs/go.mod b/ocs/go.mod index 39e026add5..035cb45546 100644 --- a/ocs/go.mod +++ b/ocs/go.mod @@ -8,7 +8,7 @@ require ( contrib.go.opencensus.io/exporter/zipkin v0.1.1 github.com/UnnoTed/fileb0x v1.1.4 github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21 - github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 + github.com/cs3org/reva v1.5.1 github.com/go-chi/chi v4.1.2+incompatible github.com/go-chi/render v1.0.1 github.com/golang/protobuf v1.4.3 diff --git a/ocs/go.sum b/ocs/go.sum index 9d50ace268..ad1d3e3400 100644 --- a/ocs/go.sum +++ b/ocs/go.sum @@ -198,6 +198,8 @@ github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21/go.mod h1:UXha4T github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548/go.mod h1:e6NPNENfs9mPDVNRekM7lKScauxd5kXTr1Mfyig6TDM= github.com/cznic/strutil v0.0.0-20181122101858-275e90344537/go.mod h1:AHHPPPXTw0h6pVabbcbyGRK1DckRn7r/STdZEeIDzZc= diff --git a/proxy/go.mod b/proxy/go.mod index ade7f60b3c..aa75e4b6ab 100644 --- a/proxy/go.mod +++ b/proxy/go.mod @@ -8,7 +8,7 @@ require ( contrib.go.opencensus.io/exporter/zipkin v0.1.1 github.com/coreos/go-oidc v2.2.1+incompatible github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21 - github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 + github.com/cs3org/reva v1.5.1 github.com/dgrijalva/jwt-go v3.2.0+incompatible github.com/golang/mock v1.4.4 // indirect github.com/justinas/alice v1.2.0 diff --git a/proxy/go.sum b/proxy/go.sum index d6d933e5fe..524895e269 100644 --- a/proxy/go.sum +++ b/proxy/go.sum @@ -196,6 +196,8 @@ github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21/go.mod h1:UXha4T github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548/go.mod h1:e6NPNENfs9mPDVNRekM7lKScauxd5kXTr1Mfyig6TDM= github.com/cznic/strutil v0.0.0-20181122101858-275e90344537/go.mod h1:AHHPPPXTw0h6pVabbcbyGRK1DckRn7r/STdZEeIDzZc= diff --git a/storage/go.mod b/storage/go.mod index d0d253b868..aeca7beb93 100644 --- a/storage/go.mod +++ b/storage/go.mod @@ -3,7 +3,7 @@ module github.com/owncloud/ocis/storage go 1.15 require ( - github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 + github.com/cs3org/reva v1.5.1 github.com/gofrs/uuid v3.3.0+incompatible github.com/micro/cli/v2 v2.1.2 github.com/micro/go-micro/v2 v2.9.1 diff --git a/storage/go.sum b/storage/go.sum index ffdf9146be..9e9a2462e6 100644 --- a/storage/go.sum +++ b/storage/go.sum @@ -199,6 +199,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= From cf9dd6592730c4ad87c618e62ad02c6c6784142c Mon Sep 17 00:00:00 2001 From: Ilja Neumann Date: Thu, 21 Jan 2021 10:24:31 +0100 Subject: [PATCH 06/88] go mod tidy --- ocis/go.sum | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ocis/go.sum b/ocis/go.sum index a67c3209ac..fb712a9a28 100644 --- a/ocis/go.sum +++ b/ocis/go.sum @@ -265,6 +265,8 @@ github.com/cs3org/reva v0.0.2-0.20200115110931-4c7513415ec5/go.mod h1:Hk3eCcdhtv github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCdBp4= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d h1:SwD98825d6bdB+pEuTxWOXiSjBrHdOl/UVp75eI7JT8= github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 h1:iwZdTE0PVqJCos1vaoKsclOGD3ADKpshg3SRtYBbwso= From 30286fa434d48bf94f5d2d9ddced2a0f8fe5db19 Mon Sep 17 00:00:00 2001 From: Ilja Neumann Date: Thu, 21 Jan 2021 15:52:51 +0100 Subject: [PATCH 07/88] Adjust expected failures --- .../expected-failures-API-on-OCIS-storage.md | 6 ----- ...pected-failures-API-on-OWNCLOUD-storage.md | 4 ---- ...cted-failures-webUI-on-OWNCLOUD-storage.md | 3 --- .../apiTrashbin-trashbinDelete.feature | 23 ------------------- 4 files changed, 36 deletions(-) diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index c2c9d57ff6..4f70ad8292 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -777,10 +777,6 @@ ### [empty trashbin does not work](https://github.com/owncloud/product/issues/254) -- [apiTrashbin/trashbinDelete.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L31) -- [apiTrashbin/trashbinDelete.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L32) -- [apiTrashbin/trashbinDelete.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L33) -- [apiTrashbin/trashbinDelete.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L34) - [apiTrashbin/trashbinDelete.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L37) ### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) @@ -1223,8 +1219,6 @@ ### [cannot get share-types webdav property](https://github.com/owncloud/ocis/issues/567) -- [apiWebdavProperties2/getFileProperties.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L135) -- [apiWebdavProperties2/getFileProperties.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L136) - [apiWebdavProperties2/getFileProperties.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L174) - [apiWebdavProperties2/getFileProperties.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L175) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index a9ee4f399f..9b4aa7cffc 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -876,10 +876,6 @@ User cannot create a folder named Share ### [delete from trashbin does not work](https://github.com/owncloud/ocis/issues/551) ### [deleting multiple elements concurrently will not delete all the items.](https://github.com/owncloud/product/issues/256) -- [apiTrashbin/trashbinDelete.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L31) -- [apiTrashbin/trashbinDelete.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L32) -- [apiTrashbin/trashbinDelete.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L33) -- [apiTrashbin/trashbinDelete.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L34) - [apiTrashbin/trashbinDelete.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L37) - [apiTrashbin/trashbinDelete.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L50) - [apiTrashbin/trashbinDelete.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L67) diff --git a/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md index 3249d0334c..fa15b8247d 100644 --- a/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md @@ -392,9 +392,6 @@ Other free text and markdown formatting can be used elsewhere in the document if - [webUITrashbinDelete/trashbinDelete.feature:66](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUITrashbinDelete/trashbinDelete.feature#L66) - [webUITrashbinDelete/trashbinDelete.feature:93](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUITrashbinDelete/trashbinDelete.feature#L93) -### [Trashbin fails with unknown error when restoring](https://github.com/owncloud/product/issues/139) -- [webUITrashbinDelete/trashbinDelete.feature:114](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUITrashbinDelete/trashbinDelete.feature#L114) - ### [Propfind response to trashbin endpoint is different in ocis](https://github.com/owncloud/product/issues/186) ### [restoring a file from "Deleted files" (trashbin) is not possible if the original folder does not exist any-more](https://github.com/owncloud/web/issues/1753) - [webUITrashbinRestore/trashbinRestore.feature:123](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUITrashbinRestore/trashbinRestore.feature#L123) diff --git a/tests/acceptance/features/apiOcisSpecific/apiTrashbin-trashbinDelete.feature b/tests/acceptance/features/apiOcisSpecific/apiTrashbin-trashbinDelete.feature index ce45db8a09..680bcd8986 100644 --- a/tests/acceptance/features/apiOcisSpecific/apiTrashbin-trashbinDelete.feature +++ b/tests/acceptance/features/apiOcisSpecific/apiTrashbin-trashbinDelete.feature @@ -13,29 +13,6 @@ Feature: files and folders can be deleted from the trashbin And user "Alice" has uploaded file with content "to delete" to "/PARENT/parent.txt" And user "Alice" has uploaded file with content "to delete" to "/PARENT/CHILD/child.txt" - @smokeTest - @issue-product-139 - @issue-product-178 - @issue-product-179 - Scenario Outline: Trashbin cannot be emptied - # after fixing all issues delete this Scenario and use the one from oC10 core - Given user "Alice" has uploaded file with content "file with comma" to "sample,0.txt" - And user "Alice" has uploaded file with content "file with comma" to "sample,1.txt" - And using DAV path - And user "Alice" has deleted file "" - And user "Alice" has deleted file "" - And as "Alice" file "" should exist in the trashbin - And as "Alice" file "" should exist in the trashbin - When user "Alice" empties the trashbin using the trashbin API - Then as "Alice" the file with original path "" should exist in the trashbin - And as "Alice" the file with original path "" should exist in the trashbin - Examples: - | dav-path | filename1 | filename2 | - | old | textfile0.txt | textfile1.txt | - | old | sample,0.txt | sample,1.txt | - | new | textfile0.txt | textfile1.txt | - | new | sample,0.txt | sample,1.txt | - @smokeTest @issue-ocis-reva-118 @issue-product-179 From c18bae9061800bcc1fa5fc982a2e06f4e69731a1 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Fri, 22 Jan 2021 16:20:38 +0545 Subject: [PATCH 08/88] Update WEB_COMMITID to latest --- .drone.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.env b/.drone.env index 23edc16e83..798af17367 100644 --- a/.drone.env +++ b/.drone.env @@ -3,5 +3,5 @@ CORE_COMMITID=ec99c594e90b83c8a3778834e31a5714df630ffc CORE_BRANCH=master # The test runner source for UI tests -WEB_COMMITID=a5f4dfab62aa036d7933f1286485e122e670b3ef +WEB_COMMITID=5945833ca594c16d33514da74b3d2eb64d3560fd WEB_BRANCH=master From c2f154f7cd6db276928dc51c10c5eaf0c8e3a8ad Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Fri, 22 Jan 2021 11:37:47 +0000 Subject: [PATCH 09/88] Automated changelog update [skip ci] --- CHANGELOG.md | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6805683b38..587776f90f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ The following sections list the changes for unreleased. * Enhancement - Add OCIS_URL env var: [#1148](https://github.com/owncloud/ocis/pull/1148) * Enhancement - Use sync.cache for roles cache: [#1367](https://github.com/owncloud/ocis/pull/1367) * Enhancement - Add named locks and refactor cache: [#1212](https://github.com/owncloud/ocis/pull/1212) +* Enhancement - Update reva to v1.5.1: [#1372](https://github.com/owncloud/ocis/pull/1372) * Enhancement - Update reva to v1.4.1-0.20210111080247-f2b63bfd6825: [#1194](https://github.com/owncloud/ocis/pull/1194) ## Details @@ -139,6 +140,81 @@ The following sections list the changes for unreleased. https://github.com/owncloud/ocis/issues/966 https://github.com/owncloud/ocis/pull/1212 +* Enhancement - Update reva to v1.5.1: [#1372](https://github.com/owncloud/ocis/pull/1372) + + Summary ------- + + * Fix #1401: Use the user in request for deciding the layout for non-home DAV requests + * Fix #1413: Re-include the '.git' dir in the Docker images to pass the version tag + * Fix #1399: Fix ocis trash-bin purge + * Enh #1397: Bump the Copyright date to 2021 + * Enh #1398: Support site authorization status in Mentix + * Enh #1393: Allow setting favorites, mtime and a temporary etag + * Enh #1403: Support remote cloud gathering metrics + + Details ------- + + * Bugfix #1401: Use the user in request for deciding the layout for non-home DAV requests + + For the incoming /dav/files/userID requests, we have different namespaces depending on + whether the request is for the logged-in user's namespace or not. Since in the storage drivers, + we specify the layout depending only on the user whose resources are to be accessed, this fails + when a user wants to access another user's namespace when the storage provider depends on the + logged in user's namespace. This PR fixes that. + + For example, consider the following case. The owncloud fs uses a layout {{substr 0 1 + .Id.OpaqueId}}/{{.Id.OpaqueId}}. The user einstein sends a request to access a resource + shared with him, say /dav/files/marie/abcd, which should be allowed. However, based on the + way we applied the layout, there's no way in which this can be translated to /m/marie/. + + Https://github.com/cs3org/reva/pull/1401 + + * Bugfix #1413: Re-include the '.git' dir in the Docker images to pass the version tag + + And git SHA to the release tool. + + Https://github.com/cs3org/reva/pull/1413 + + * Bugfix #1399: Fix ocis trash-bin purge + + Fixes the empty trash-bin functionality for ocis-storage + + Https://github.com/owncloud/product/issues/254 + https://github.com/cs3org/reva/pull/1399 + + * Enhancement #1397: Bump the Copyright date to 2021 + + Https://github.com/cs3org/reva/pull/1397 + + * Enhancement #1398: Support site authorization status in Mentix + + This enhancement adds support for a site authorization status to Mentix. This way, sites + registered via a web app can now be excluded until authorized manually by an administrator. + + Furthermore, Mentix now sets the scheme for Prometheus targets. This allows us to also support + monitoring of sites that do not support the default HTTPS scheme. + + Https://github.com/cs3org/reva/pull/1398 + + * Enhancement #1393: Allow setting favorites, mtime and a temporary etag + + We now let the ocis driver persist favorites, set temporary etags and the mtime as arbitrary + metadata. + + Https://github.com/owncloud/ocis/issues/567 + https://github.com/cs3org/reva/issues/1394 + https://github.com/cs3org/reva/pull/1393 + + * Enhancement #1403: Support remote cloud gathering metrics + + The current metrics package can only gather metrics either from json files. With this feature, + the metrics can be gathered polling the http endpoints exposed by the owncloud/nextcloud + sciencemesh apps. + + Https://github.com/cs3org/reva/pull/1403 + + https://github.com/owncloud/ocis/pull/1372 + * Enhancement - Update reva to v1.4.1-0.20210111080247-f2b63bfd6825: [#1194](https://github.com/owncloud/ocis/pull/1194) * Enhancement: calculate and expose actual file permission set [cs3org/reva#1368](https://github.com/cs3org/reva/pull/1368) From 36441c864aa9dc2aaa93a96e601c77a80e627477 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Fri, 22 Jan 2021 19:23:03 +0100 Subject: [PATCH 10/88] add release roadmap --- docs/ocis/release_roadmap.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 docs/ocis/release_roadmap.md diff --git a/docs/ocis/release_roadmap.md b/docs/ocis/release_roadmap.md new file mode 100644 index 0000000000..2522a287c6 --- /dev/null +++ b/docs/ocis/release_roadmap.md @@ -0,0 +1,30 @@ +--- +title: "Release Roadmap" +date: 2020-12-16T20:35:00+01:00 +weight: 0 +geekdocRepo: https://github.com/owncloud/ocis +geekdocEditPath: edit/master/docs/ocis +geekdocFilePath: release_roadmap.md +--- + +# Release Roadmap + +You may have asked yourself why there are major version 1 tags in our GitHub repository but the readme still states `ownCloud Infinite Scale is currently in a technical preview state. It will be subject to a lot of changes and is not yet ready for general production deployments.`. How can that be if its a major version 1? + +Our initial and also our current plan is to stick to SemVer as versioning scheme. But sometimes there are other factors which cross your plans. Therefore we started releasing oCIS with version `1.0.0 Tech Preview`. + +## ownCloud Infinite Scale 1.x technology preview releases + +All oCIS releases within major version 1 will be handled as technology previews. There will be no supported releases in terms of us guaranteeing production readiness. We will do releases every 3 weeks. They will sometimes only include bugfixes but also new features or optimizations. + +We will be fixing bugs if you report them and truly appreciate every report and contribution. We will then do bugfix releases or add the fix to the next minor release. + +We are going to stick to major version 1 until we feel confident about running oCIS to production environments. As a consequence of this we cannot raise the major version, like SemVers requires it, even if we need to introduce breaking changes. We will do our best to avoid breaking changes. If there is no way to circumvent this, we will add an automatic migration or at least point out manual migration steps, since we as oCIS developers are already using oCIS on a personal basis. The best place to see if a breaking change happens is our changelog which is available for every release. If things are not working out for you please contact us immediately. We want to know about this and solve it for you. + +It isn't our intention to scare you with our addendum "Tech Preview". We want you to have a clear picture of what you can expect from oCIS. You could take it as a disclaimer or even compare it like running an Linux kernel in alpha stage. It can be very pleasing to be on the latest codebase but you could also find yourself with a lot of problems arising because of that. + +You clearly can expect a totally new experience of file-sync and share with oCIS and want you to use it now - but with understanding and caution. + +## ownCloud Infinite Scale 2.x general availability releases + +Starting with oCIS 2.0.0 release we will strictly stick to SemVer, just as we do right now for ownCloud Server. The general availability release also means that we can recommend oCIS warmly to everyone. Use it to store your precious family pictures or you confidential company data! From 71dfb4e3aedc68d2137ab2e1deca01310d60c2e5 Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Sun, 24 Jan 2021 14:33:57 +0100 Subject: [PATCH 11/88] Make cert handling in the docs more clear. --- docs/ocis/deployment/basic-remote-setup.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/ocis/deployment/basic-remote-setup.md b/docs/ocis/deployment/basic-remote-setup.md index 7d93936f29..a3fcac6a49 100644 --- a/docs/ocis/deployment/basic-remote-setup.md +++ b/docs/ocis/deployment/basic-remote-setup.md @@ -56,11 +56,11 @@ In this example we do not change the default port (`9200`). But this could be ch You need to configure `your-host` in some services to provide the needed public resources. +This snippet will start the ocis server with auto generated self signed certificates: + ```bash PROXY_HTTP_ADDR=0.0.0.0:9200 \ OCIS_URL=https://your-server:9200 \ -PROXY_TRANSPORT_TLS_KEY=./certs/your-host.key \ -PROXY_TRANSPORT_TLS_CERT=./certs/your-host.crt \ KONNECTD_TLS=0 \ ./bin/ocis server ``` @@ -69,7 +69,11 @@ For more configuration options check the configuration section in [ocis](https:/ {{< hint info >}} **TLS Certificate**\ -In this example, we are replacing the default self-signed cert with a CA signed one to avoid the certificate warning when accessing the login page. +If you have a CA signed certificate for your domain, add the following configurations: +``` +PROXY_TRANSPORT_TLS_KEY=./certs/your-host.key \ +PROXY_TRANSPORT_TLS_CERT=./certs/your-host.crt \ +``` {{< /hint >}} ## Use Docker Compose From 47d73572d0c9f2b6e8cf3cb32d2306c70470e99e Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Mon, 25 Jan 2021 09:11:34 +0100 Subject: [PATCH 12/88] add review changes from phil-davis --- docs/ocis/release_roadmap.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/ocis/release_roadmap.md b/docs/ocis/release_roadmap.md index 2522a287c6..aeb806259f 100644 --- a/docs/ocis/release_roadmap.md +++ b/docs/ocis/release_roadmap.md @@ -19,12 +19,12 @@ All oCIS releases within major version 1 will be handled as technology previews. We will be fixing bugs if you report them and truly appreciate every report and contribution. We will then do bugfix releases or add the fix to the next minor release. -We are going to stick to major version 1 until we feel confident about running oCIS to production environments. As a consequence of this we cannot raise the major version, like SemVers requires it, even if we need to introduce breaking changes. We will do our best to avoid breaking changes. If there is no way to circumvent this, we will add an automatic migration or at least point out manual migration steps, since we as oCIS developers are already using oCIS on a personal basis. The best place to see if a breaking change happens is our changelog which is available for every release. If things are not working out for you please contact us immediately. We want to know about this and solve it for you. +We are going to stick to major version 1 until we feel confident about running oCIS in production environments. As a consequence of this we cannot raise the major version, like SemVers requires it, even if we need to introduce breaking changes. We will do our best to avoid breaking changes. If there is no way to circumvent this, we will add an automatic migration or at least point out manual migration steps, since we as oCIS developers are already using oCIS on a personal basis. The best place to see if a breaking change happens is our changelog which is available for every release. If things are not working out for you please contact us immediately. We want to know about this and solve it for you. -It isn't our intention to scare you with our addendum "Tech Preview". We want you to have a clear picture of what you can expect from oCIS. You could take it as a disclaimer or even compare it like running an Linux kernel in alpha stage. It can be very pleasing to be on the latest codebase but you could also find yourself with a lot of problems arising because of that. +It isn't our intention to scare you with our addendum "Tech Preview". We want you to have a clear picture of what you can expect from oCIS. You could take it as a disclaimer or even compare it to running an Linux kernel in alpha stage. It can be very pleasing to be on the latest codebase but you could also find yourself with a lot of problems arising because of that. -You clearly can expect a totally new experience of file-sync and share with oCIS and want you to use it now - but with understanding and caution. +You clearly can expect a totally new experience of file-sync and share with oCIS and we want you to use it now - but with understanding and caution. ## ownCloud Infinite Scale 2.x general availability releases -Starting with oCIS 2.0.0 release we will strictly stick to SemVer, just as we do right now for ownCloud Server. The general availability release also means that we can recommend oCIS warmly to everyone. Use it to store your precious family pictures or you confidential company data! +Starting with oCIS 2.0.0 release we will strictly stick to SemVer, just as we do right now for ownCloud Server. The general availability release will also mean that we can recommend oCIS warmly to everyone. Use it to store your precious family pictures or you confidential company data! From 0ec1bd7782ace9022ef9ff49cc833676f85359d4 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Mon, 25 Jan 2021 18:00:53 +0545 Subject: [PATCH 13/88] Pin behat/gherkin because of Gherkin issue 187 --- vendor-bin/behat/composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/vendor-bin/behat/composer.json b/vendor-bin/behat/composer.json index 81a1f37cb3..5668e6dd07 100644 --- a/vendor-bin/behat/composer.json +++ b/vendor-bin/behat/composer.json @@ -6,6 +6,7 @@ }, "require": { "behat/behat": "^3.8", + "behat/gherkin": "4.6.2", "behat/mink": "1.7.1", "behat/mink-extension": "^2.3", "behat/mink-selenium2-driver": "^1.4", From b8ea851fa91c96bef13a9eea3518cd8d451956f6 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Mon, 25 Jan 2021 18:53:47 +0545 Subject: [PATCH 14/88] Bump CORE_COMMITID to pin Behat/Gherkin v4.6.2 --- .drone.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.env b/.drone.env index 798af17367..a65e073144 100644 --- a/.drone.env +++ b/.drone.env @@ -1,5 +1,5 @@ # The test runner source for API tests -CORE_COMMITID=ec99c594e90b83c8a3778834e31a5714df630ffc +CORE_COMMITID=1628f6156c64717aa23b1e48dd8e51154f68cde8 CORE_BRANCH=master # The test runner source for UI tests From b3636eed8b0ed2cb835d214bba6a1bccaeb0d9ba Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Mon, 25 Jan 2021 19:55:34 +0545 Subject: [PATCH 15/88] Adjust expected-failures --- .../expected-failures-API-on-OCIS-storage.md | 20 ++++++++----------- ...pected-failures-API-on-OWNCLOUD-storage.md | 20 ++++++++----------- 2 files changed, 16 insertions(+), 24 deletions(-) diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index 4f70ad8292..d549b795de 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -2103,18 +2103,6 @@ - [apiWebdavLocks3/independentLocks.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L88) - [apiWebdavLocks3/independentLocks.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L89) - [apiWebdavLocks3/independentLocks.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L90) -- [apiWebdavLocks3/independentLocks.feature:109](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L109) -- [apiWebdavLocks3/independentLocks.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L110) -- [apiWebdavLocks3/independentLocks.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L111) -- [apiWebdavLocks3/independentLocks.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L112) -- [apiWebdavLocks3/independentLocks.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L134) -- [apiWebdavLocks3/independentLocks.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L135) -- [apiWebdavLocks3/independentLocks.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L136) -- [apiWebdavLocks3/independentLocks.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L137) -- [apiWebdavLocks3/independentLocks.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L157) -- [apiWebdavLocks3/independentLocks.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L158) -- [apiWebdavLocks3/independentLocks.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L159) -- [apiWebdavLocks3/independentLocks.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L160) - [apiWebdavLocks3/independentLocksShareToShares.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L27) - [apiWebdavLocks3/independentLocksShareToShares.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L28) - [apiWebdavLocks3/independentLocksShareToShares.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L29) @@ -2139,6 +2127,14 @@ - [apiWebdavLocksUnlock/unlock.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L48) - [apiWebdavLocksUnlock/unlock.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L60) - [apiWebdavLocksUnlock/unlock.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L61) +- [apiWebdavLocksUnlock/unlock.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L85) +- [apiWebdavLocksUnlock/unlock.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L86) +- [apiWebdavLocksUnlock/unlock.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L87) +- [apiWebdavLocksUnlock/unlock.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L88) +- [apiWebdavLocksUnlock/unlock.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L110) +- [apiWebdavLocksUnlock/unlock.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L111) +- [apiWebdavLocksUnlock/unlock.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L112) +- [apiWebdavLocksUnlock/unlock.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L113) - [apiWebdavLocksUnlock/unlockSharingToRoot.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToRoot.feature#L20) - [apiWebdavLocksUnlock/unlockSharingToRoot.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToRoot.feature#L21) - [apiWebdavLocksUnlock/unlockSharingToRoot.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToRoot.feature#L22) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index 9b4aa7cffc..75f123f3fd 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -2244,18 +2244,6 @@ restoring a file doesn't changes the etags of the parents - [apiWebdavLocks3/independentLocks.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L88) - [apiWebdavLocks3/independentLocks.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L89) - [apiWebdavLocks3/independentLocks.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L90) -- [apiWebdavLocks3/independentLocks.feature:109](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L109) -- [apiWebdavLocks3/independentLocks.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L110) -- [apiWebdavLocks3/independentLocks.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L111) -- [apiWebdavLocks3/independentLocks.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L112) -- [apiWebdavLocks3/independentLocks.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L134) -- [apiWebdavLocks3/independentLocks.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L135) -- [apiWebdavLocks3/independentLocks.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L136) -- [apiWebdavLocks3/independentLocks.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L137) -- [apiWebdavLocks3/independentLocks.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L157) -- [apiWebdavLocks3/independentLocks.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L158) -- [apiWebdavLocks3/independentLocks.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L159) -- [apiWebdavLocks3/independentLocks.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocks.feature#L160) - [apiWebdavLocks3/independentLocksShareToShares.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L27) - [apiWebdavLocks3/independentLocksShareToShares.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L28) - [apiWebdavLocks3/independentLocksShareToShares.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks3/independentLocksShareToShares.feature#L29) @@ -2280,6 +2268,14 @@ restoring a file doesn't changes the etags of the parents - [apiWebdavLocksUnlock/unlock.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L48) - [apiWebdavLocksUnlock/unlock.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L60) - [apiWebdavLocksUnlock/unlock.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L61) +- [apiWebdavLocksUnlock/unlock.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L85) +- [apiWebdavLocksUnlock/unlock.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L86) +- [apiWebdavLocksUnlock/unlock.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L87) +- [apiWebdavLocksUnlock/unlock.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L88) +- [apiWebdavLocksUnlock/unlock.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L110) +- [apiWebdavLocksUnlock/unlock.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L111) +- [apiWebdavLocksUnlock/unlock.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L112) +- [apiWebdavLocksUnlock/unlock.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlock.feature#L113) - [apiWebdavLocksUnlock/unlockSharingToRoot.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToRoot.feature#L20) - [apiWebdavLocksUnlock/unlockSharingToRoot.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToRoot.feature#L21) - [apiWebdavLocksUnlock/unlockSharingToRoot.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToRoot.feature#L22) From 75984383d6dd2f1dfb6b2da01c8bd9fedb2efd54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 25 Jan 2021 13:13:38 +0000 Subject: [PATCH 16/88] update reva to 0c10b333ee69 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- accounts/go.mod | 2 +- accounts/go.sum | 68 +------------------ .../unreleased/update-reva-to-0c10b333.md | 12 ++++ ocis-pkg/go.mod | 2 +- ocis-pkg/go.sum | 4 +- ocis/go.sum | 6 +- ocs/go.mod | 2 +- ocs/go.sum | 10 +-- proxy/go.mod | 2 +- proxy/go.sum | 6 +- storage/go.mod | 2 +- storage/go.sum | 6 +- storage/pkg/command/frontend.go | 5 +- storage/pkg/config/config.go | 3 + storage/pkg/flagset/frontend.go | 13 ++++ 15 files changed, 48 insertions(+), 95 deletions(-) create mode 100644 changelog/unreleased/update-reva-to-0c10b333.md diff --git a/accounts/go.mod b/accounts/go.mod index 157c63c8ee..8c49d72cb2 100644 --- a/accounts/go.mod +++ b/accounts/go.mod @@ -7,7 +7,7 @@ require ( contrib.go.opencensus.io/exporter/ocagent v0.6.0 contrib.go.opencensus.io/exporter/zipkin v0.1.1 github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21 - github.com/cs3org/reva v1.5.1 + github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 github.com/go-chi/chi v4.1.2+incompatible github.com/go-chi/render v1.0.1 github.com/gofrs/uuid v3.3.0+incompatible diff --git a/accounts/go.sum b/accounts/go.sum index 2d30192c7e..87d88f4d9a 100644 --- a/accounts/go.sum +++ b/accounts/go.sum @@ -185,10 +185,8 @@ github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21 h1:mZpylrgnCgSea github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21/go.mod h1:UXha4TguuB52H14EMoSsCqDj7k8a/t7g4gVP+bgY5LY= github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e h1:khITGSnfDXtByQsLezoXgocUgGHJBBn0BPsUihGvk7w= github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= -github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= -github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= -github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= -github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 h1:HNpnnhoHv/7fUSEuW37clWyPz2x9VqJHuhvWBAHjkEU= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= @@ -217,9 +215,7 @@ github.com/emirpasic/gods v1.12.0 h1:QAUIPSaCu4G+POclxeqb3F+WPpdKqFGlw36+yOzGlrg github.com/emirpasic/gods v1.12.0/go.mod h1:YfzfFFoVP/catgzJb4IKIqXjX78Ha8FMSDh3ymbK86o= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/evanphx/json-patch/v5 v5.0.0 h1:dKTrUeykyQwKb/kx7Z+4ukDs6l+4L41HqG1XHnhX7WE= github.com/evanphx/json-patch/v5 v5.0.0/go.mod h1:G79N1coSVB93tBe7j6PhzjmR3/2VvlbKOFpnXhI9Bw4= -github.com/eventials/go-tus v0.0.0-20200718001131-45c7ec8f5d59 h1:t2+zxJPT/jq/YOx/JRsoByAZI/GHOxYJ7MKeillEX4U= github.com/eventials/go-tus v0.0.0-20200718001131-45c7ec8f5d59/go.mod h1:XYuK1S5+kS6FGhlIUFuZFPvWiSrOIoLk6+ro33Xce3Y= github.com/exoscale/egoscale v0.18.1/go.mod h1:Z7OOdzzTOz1Q1PjQXumlz9Wn/CddH0zSYdCF3rnBKXE= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= @@ -228,18 +224,15 @@ github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 h1:BHsljHzVlRcyQhjrss6TZTdY2VfCqZPbv5k3iBFa2ZQ= github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc= github.com/forestgiant/sliceutil v0.0.0-20160425183142-94783f95db6c/go.mod h1:pFdJbAhRf7rh6YYMUdIQGyzne6zYL1tCUW8QV2B3UfY= -github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= github.com/fsouza/go-dockerclient v1.6.0/go.mod h1:YWwtNPuL4XTX1SKJQk86cWPmmqwx+4np9qfPbb+znGc= github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/gizak/termui/v3 v3.1.0 h1:ZZmVDgwHl7gR7elfKf1xc4IudXZ5qqfDh4wExk4Iajc= github.com/gizak/termui/v3 v3.1.0/go.mod h1:bXQEBkJpzxUAKf0+xq9MSWAvWZlE7c+aidmyFlkYTrY= github.com/gliderlabs/ssh v0.2.2 h1:6zsha5zo/TWhRhwqCD3+EarCAgZ2yN28ipRnGPnwkI0= github.com/gliderlabs/ssh v0.2.2/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0= -github.com/go-acme/lego/v3 v3.4.0 h1:deB9NkelA+TfjGHVw8J7iKl/rMtffcGMWSMmptvMv0A= github.com/go-acme/lego/v3 v3.4.0/go.mod h1:xYbLDuxq3Hy4bMUT1t9JIuz6GWIWb3m5X+TeTHYaT7M= github.com/go-asn1-ber/asn1-ber v1.5.1 h1:pDbRAunXzIUXfx4CB2QJFv5IuPiuoW+sWvr/Us009o8= github.com/go-asn1-ber/asn1-ber v1.5.1/go.mod h1:hEBeB/ic+5LoWskz+yKT7vGhhPYkProFKoKdwZRWMe0= @@ -263,7 +256,6 @@ github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2 github.com/go-ini/ini v1.44.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-ldap/ldap/v3 v3.2.3 h1:FBt+5w3q/vPVPb4eYMQSn+pOiz4zewPamYhlGMmc7yM= github.com/go-ldap/ldap/v3 v3.2.3/go.mod h1:iYS1MdmrmceOJ1QOTnRXrIs7i3kloqtmGQjRvjKpyMg= github.com/go-ldap/ldap/v3 v3.2.4 h1:PFavAq2xTgzo/loE8qNXcQaofAaqIpI4WgaLdv+1l3E= github.com/go-ldap/ldap/v3 v3.2.4/go.mod h1:iYS1MdmrmceOJ1QOTnRXrIs7i3kloqtmGQjRvjKpyMg= @@ -280,11 +272,8 @@ github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/me github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible/go.mod h1:qf9acutJ8cwBUhm1bqgz6Bei9/C/c93FPDljKWwsOgM= github.com/go-test/deep v1.0.1 h1:UQhStjbkDClarlmv0am7OXXO4/GaPdCGiUiMTvi28sg= github.com/go-test/deep v1.0.1/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA= -github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee h1:s+21KNqlpePfkah2I+gwHF8xmJWRjooY+5248k6m4A0= github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= -github.com/gobwas/pool v0.2.0 h1:QEmUOlnSjWtnpRGHF3SauEiOsy82Cup83Vf2LcMlnc8= github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= -github.com/gobwas/ws v1.0.3 h1:ZOigqf7iBxkA4jdQ3am7ATzdlOFp9YzA6NmuvEEZc9g= github.com/gobwas/ws v1.0.3/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM= github.com/godbus/dbus v0.0.0-20190422162347-ade71ed3457e/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= github.com/gofrs/uuid v3.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= @@ -321,7 +310,6 @@ github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrU github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= -github.com/golang/protobuf v1.4.2 h1:+Z5KGCizgyZCbGh1KZqA0fcLLkwbsjIzS4aV2v7wJX0= github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3 h1:JjCZWpVbqXDqFVmTfYWEVTMIYrL/NPdPSCHPJ0T/raM= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= @@ -338,7 +326,6 @@ github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.0 h1:/QaMHBdZ26BB3SSst0Iwl10Epc+xhTquomWX0oZEB6w= github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-github v17.0.0+incompatible/go.mod h1:zLgOLi98H3fifZn+44m+umXrS52loVEgC2AApnigrVQ= -github.com/google/go-querystring v1.0.0 h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk= github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= @@ -349,7 +336,6 @@ github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2 h1:EVhdT+1Kseyi1/pUmXKaFxYsDNy9RQYkMWRH68J/W7Y= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= @@ -361,7 +347,6 @@ github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e/go.mod h1:wJfORR github.com/gopherjs/gopherjs v0.0.0-20190910122728-9d188e94fb99 h1:twflg0XRTjwKpxb/jFExr4HGq6on2dEOmnL6FV+fgPw= github.com/gopherjs/gopherjs v0.0.0-20190910122728-9d188e94fb99/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= -github.com/gorilla/handlers v1.4.2 h1:0QniY0USkHQ1RGCLfKxeNHK9bkDHGRYGNDFBCS+YARg= github.com/gorilla/handlers v1.4.2/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ= github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.7.3 h1:gnP5JzjVOuiZD07fKKToCAOjS0yOpj/qPETTXCCS6hw= @@ -410,11 +395,9 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= -github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5 h1:FdBGmSkD2QpQzRWup//SGObvWf2nq89zj9+ta9OvI3A= github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5/go.mod h1:0YZ2wQSuwviXXXGUiK6zXzskyBLAbLXhamxzcFHSLoM= github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= -github.com/huandu/xstrings v1.2.0 h1:yPeWdRnmynF7p+lLYz0H2tthW9lqhMJrQV/U7yy4wX0= github.com/huandu/xstrings v1.2.0/go.mod h1:DvyZB1rfVYsBIigL8HwpZgxHwXozlTgGqn63UyNX5k4= github.com/huandu/xstrings v1.3.0 h1:gvV6jG9dTgFEncxo+AF7PH6MZXi/vZl25owA/8Dg8Wo= github.com/huandu/xstrings v1.3.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= @@ -433,7 +416,6 @@ github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i github.com/jedib0t/go-pretty v4.3.0+incompatible/go.mod h1:XemHduiw8R651AF9Pt4FwCTKeG3oo7hrHJAoznj9nag= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= -github.com/jmespath/go-jmespath v0.3.0 h1:OS12ieG61fsCg5+qLJ+SsW9NicxNkg3b25OyT2yCeUc= github.com/jmespath/go-jmespath v0.3.0/go.mod h1:9QtRXoHjLGCJ5IBSaohpXITPlowMeeYCZ7fLUTSywik= 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= @@ -454,13 +436,11 @@ github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfV github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/justinas/alice v1.2.0 h1:+MHSA/vccVCF4Uq37S42jwlkvI2Xzl7zTPCN5BnZNVo= github.com/justinas/alice v1.2.0/go.mod h1:fN5HRH/reO/zrUflLfTN43t3vXvKzvZIENsNEe7i7qA= -github.com/karrick/godirwalk v1.7.8 h1:VfG72pyIxgtC7+3X9CMHI0AOl4LwyRAg98WAgsvffi8= github.com/karrick/godirwalk v1.7.8/go.mod h1:2c9FRhkDxdIbgkOnCEvnSWs71Bhugbl46shStcFDJ34= github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd h1:Coekwdh0v2wtGp9Gmz1Ze3eVRAWJMLokvN3QjdzCHLY= github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/cpuid v1.2.3 h1:CCtW0xUnWGVINKvE/WWOYKdsPV6mawAtvQuSl8guwQs= github.com/klauspost/cpuid v1.2.3/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= github.com/kolo/xmlrpc v0.0.0-20190717152603-07c4ee3fd181/go.mod h1:o03bZfuBwAXHetKXuInt4S7omeXUu62/A845kiycsSQ= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= @@ -468,7 +448,6 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.2 h1:DB17ag19krx9CFsz4o3 github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= -github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= @@ -478,9 +457,7 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/labbsr0x/bindman-dns-webhook v1.0.2/go.mod h1:p6b+VCXIR8NYKpDr8/dg1HKfQoRHCdcsROXKvmoehKA= github.com/labbsr0x/goh v1.0.1/go.mod h1:8K2UhVoaWXcCU7Lxoa2omWnC8gyW8px7/lmO61c027w= -github.com/labstack/echo v3.2.1+incompatible h1:J2M7YArHx4gi8p/3fDw8tX19SXhBCoRpviyAZSN3I88= github.com/labstack/echo v3.2.1+incompatible/go.mod h1:0INS7j/VjnFxD4E2wkz67b8cVwCLbBmJyDaka6Cmk1s= -github.com/labstack/gommon v0.2.7 h1:2qOPq/twXDrQ6ooBGrn3mrmVOC+biLlatwgIu8lbzRM= github.com/labstack/gommon v0.2.7/go.mod h1:/tj9csK2iPSBvn+3NLM9e52usepMtrd5ilFYA+wQNJ4= github.com/lib/pq v1.3.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/linode/linodego v0.10.0/go.mod h1:cziNP7pbvE3mXIPneHj0oRY8L1WtGEIKlZ8LANE4eXA= @@ -492,24 +469,19 @@ github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czP github.com/marten-seemann/chacha20 v0.2.0/go.mod h1:HSdjFau7GzYRj+ahFNwsO3ouVJr1HFkWoEwNDb4TMtE= github.com/marten-seemann/qpack v0.1.0/go.mod h1:LFt1NU/Ptjip0C2CPkhimBz5CGE3WGDAUWqna+CNTrI= github.com/marten-seemann/qtls v0.4.1/go.mod h1:pxVXcHHw1pNIt8Qo0pwSYQEoZ8yYOOPXTCZLQQunvRc= -github.com/mattn/go-colorable v0.0.9 h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-colorable v0.1.7 h1:bQGKb3vps/j0E9GfJQ03JyhRuxsvdAanXlT9BTw3mdw= github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.4 h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs= github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= -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-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-runewidth v0.0.7 h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54= github.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.9 h1:Lm995f3rfxdpd6TSmuVCHVb/QhupuXlYr8sCI/QdE+0= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= @@ -542,17 +514,13 @@ github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrk github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= github.com/mitchellh/go-vnc v0.0.0-20150629162542-723ed9867aed/go.mod h1:3rdaFaCv4AyBgu5ALFM0+tSuHrBh6v692nyQe3ikrq0= github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= -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/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= -github.com/mitchellh/gox v1.0.1 h1:x0jD3dcHk9a9xPSDN6YEL4xL6Qz0dvNYm8yZqui5chI= github.com/mitchellh/gox v1.0.1/go.mod h1:ED6BioOGXMswlXa2zxfh/xdd5QhwYliBFn9V18Ap4z4= github.com/mitchellh/hashstructure v1.0.0 h1:ZkRJX1CyOoTkar7p/mLS5TZU4nJ1Rn/F8u9dGS02Q3Y= github.com/mitchellh/hashstructure v1.0.0/go.mod h1:QjSHrPWS+BGUVBYkbTZWEnOh3G1DutKwClXU/ABz6AQ= -github.com/mitchellh/iochan v1.0.0 h1:C+X3KsSTLFVBr/tK1eYN/vs4rJcvsiLU338UhYPJWeY= github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.3.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.3.2/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= @@ -591,7 +559,6 @@ github.com/nrdcg/auroradns v1.0.0/go.mod h1:6JPXKzIRzZzMqtTDgueIhTi6rFf1QvYE/Hzq github.com/nrdcg/dnspod-go v0.4.0/go.mod h1:vZSoFSFeQVm2gWLMkyX61LZ8HI3BaqtHZWgPTGKr6KQ= github.com/nrdcg/goinwx v0.6.1/go.mod h1:XPiut7enlbEdntAqalBIqcYcTEVhpv/dKWgDCX2SwKQ= github.com/nrdcg/namesilo v0.2.1/go.mod h1:lwMvfQTyYq+BbjJd30ylEG4GPSS6PII0Tia4rRpRiyw= -github.com/nsf/termbox-go v0.0.0-20190121233118-02980233997d h1:x3S6kxmy49zXVVyhcnrFqxvNVCBPb2KZ9hV2RBdS840= github.com/nsf/termbox-go v0.0.0-20190121233118-02980233997d/go.mod h1:IuKpRQcYE1Tfu+oAQqaLisqDeXgjyyltCfsaoYN18NQ= github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= github.com/oklog/run v1.1.0 h1:GEenZ1cK0+q0+wsJew9qUg/DyD8k3JzYsZAi5gYi2mA= @@ -603,9 +570,7 @@ github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXW github.com/olekukonko/tablewriter v0.0.4 h1:vHD/YYe1Wolo78koG299f7V/VAS08c6IpCLn+Ejf/w8= github.com/olekukonko/tablewriter v0.0.4/go.mod h1:zq6QwlOf5SlnkVbMSr5EoBv3636FWnp+qbPhuoO21uA= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.7.0 h1:WSHQ+IS43OoUrWtD1/bbclrwK8TTH5hzp+umCiuxHgs= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/gomega v1.4.3 h1:RE1xgDvH7imwFD45h+u2SgIfERHlS2yNG4DObb5BSKU= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= 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= @@ -619,7 +584,6 @@ github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJ github.com/openzipkin/zipkin-go v0.2.2 h1:nY8Hti+WKaP0cRsSeQ026wU03QsM762XBeCXBb9NAWI= github.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= github.com/oracle/oci-go-sdk v7.0.0+incompatible/go.mod h1:VQb79nF8Z2cwLkLS35ukwStZIg5F66tcBccjip/j888= -github.com/ory/fosite v0.33.0 h1:tK+3Luazv4vIBJY3uagOBryAQ3IG3cs6kfo8piGBhAY= github.com/ory/fosite v0.33.0/go.mod h1:h+ize9gk0GvRyGjabriqSEmTkMhny+O95cijb8DVqPE= github.com/ory/fosite v0.35.1 h1:mGPcwVGwHA7Yy9wr/7LDps6BEXyavL32NxizL9eH53Q= github.com/ory/fosite v0.35.1/go.mod h1:h+ize9gk0GvRyGjabriqSEmTkMhny+O95cijb8DVqPE= @@ -642,7 +606,6 @@ github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaR github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ= github.com/pborman/uuid v1.2.0 h1:J7Q5mO4ysT1dv8hyrUGHb9+ooztCXu1D8MY8DZYsu3g= github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= -github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/pelletier/go-toml v1.8.0 h1:Keo9qb7iRJs2voHvunFtuuYFsbWeOBh8/P9v/kVMFtw= github.com/pelletier/go-toml v1.8.0/go.mod h1:D6yutnOGMveHEPV7VQOuvI/gXY61bv+9bAOTRnLElKs= @@ -656,7 +619,6 @@ github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6J github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pkg/term v0.0.0-20200520122047-c3ffed290a03/go.mod h1:Z9+Ul5bCbBKnbCvdOWbLqTHhJiYV414CURZJba6L8qA= github.com/pkg/term v1.1.0/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= -github.com/pkg/xattr v0.4.1 h1:dhclzL6EqOXNaPDWqoeb9tIxATfBSmjqL0b4DpSjwRw= github.com/pkg/xattr v0.4.1/go.mod h1:W2cGD0TBEus7MkUgv0tNZ9JutLtVO3cXu+IBRuHqnFs= github.com/pkg/xattr v0.4.2 h1:fbVxr9lvkToTGgPljVszvFsOdcbSv5BmGABneyxRgZM= github.com/pkg/xattr v0.4.2/go.mod h1:sBD3RAqlr8Q+RC3FutZcikpT8nyDrIEEBw2J744gVWs= @@ -715,7 +677,6 @@ github.com/russross/blackfriday/v2 v2.0.1 h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0 github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= github.com/sacloud/libsacloud v1.26.1/go.mod h1:79ZwATmHLIFZIMd7sxA3LwzVy/B77uj3LDoToVTxDoQ= -github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww= github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= github.com/sergi/go-diff v1.1.0 h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0= @@ -737,19 +698,15 @@ github.com/soheilhy/cmux v0.1.4 h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72 h1:qLC7fQah7D6K1B0ujays3HV9gkFtllcxhzImRR7ArPQ= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.1.2 h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/afero v1.2.2 h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc= github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= github.com/spf13/afero v1.3.2 h1:GDarE4TJQI52kYSbSAmLiId1Elfj+xgSDqrUZxFhxlU= github.com/spf13/afero v1.3.2/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= -github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= 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 v1.0.0 h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8= github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= -github.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk= github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= @@ -775,7 +732,6 @@ github.com/studio-b12/gowebdav v0.0.0-20200303150724-9380631c29a1/go.mod h1:gCcf github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s= github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= github.com/syndtr/gocapability v0.0.0-20170704070218-db04d3cc01c8/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= -github.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE= github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ= github.com/technoweenie/multipartstreamer v1.0.1/go.mod h1:jNVxdtShOxzAsukZwTSw6MDx5eUJoiEBsSvzDU9uzog= github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= @@ -788,7 +744,6 @@ github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce/go.mod h1:o8v6yHRoi github.com/transip/gotransip v0.0.0-20190812104329-6d8d9179b66f/go.mod h1:i0f4R4o2HM0m3DZYQWsj6/MEowD57VzoH0v3d7igeFY= github.com/tredoe/fileutil v1.0.0/go.mod h1:PBayWPFCURwkmW0u6E8E8C6Jtd9ZzWq/U1iMa6BLRPg= github.com/tredoe/goutil v0.0.0-20200111155331-68cefb6d3cdc/go.mod h1:dp4VPOLeEFYbsf1ikgd+uytWDnpCdMiTHMg6mh7hHuQ= -github.com/tredoe/osutil v1.0.5 h1:mfXjHBJU46GoJDOUcHyV895fauUuVikR9U8yRbGBrqw= github.com/tredoe/osutil v1.0.5/go.mod h1:DDO4G4Mwys6NJi5JmEVLnfFbQWIfVVri8L6HuXb/v98= github.com/tus/tusd v1.1.0/go.mod h1:3DWPOdeCnjBwKtv98y5dSws3itPqfce5TVa0s59LRiA= github.com/tus/tusd v1.1.1-0.20200416115059-9deabf9d80c2 h1:rcji4q9wMuSrz0tZt3kgIr/3WsB5kUqFja6RrgeCGEo= @@ -799,9 +754,7 @@ github.com/uber/jaeger-client-go v2.25.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMW 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.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= -github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= -github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4 h1:gKMu1Bf6QINDnvyZuTaACm9ofY+PRh+5vFz4oxBZeF8= github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50wTf68f99/Zt14pr046Tgt3Lp2vLyFZKzbFXTOabXw= github.com/vimeo/go-util v1.2.0/go.mod h1:s13SMDTSO7AjH1nbgp707mfN5JFIWUFDU5MDDuRRtKs= github.com/vultr/govultr v0.1.4/go.mod h1:9H008Uxr/C4vFNGLqKx232C206GL0PBHzOP0809bGNA= @@ -827,7 +780,6 @@ 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 h1:LYy1Hy3MJdrCdMwwzxA/dRok4ejH+RwNGbuoD9fCjto= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5 h1:dntmOdLpSpHlVqbW5Eay97DelsZHe+55D+xC6i0dDS0= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= @@ -868,7 +820,6 @@ golang.org/x/crypto v0.0.0-20200320181102-891825fb96df/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200604202706-70a84ac30bf9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 h1:psW17arqaxU48Z5kZ0CQnkZWQJsqcURM6tKiBApRjXI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899 h1:DZhuSZLsGlFL4CmhA8BcRA0mnthyA/nZ00AqCUo7vHg= golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= @@ -901,7 +852,6 @@ golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKG 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 h1:KU7oHjnv3XNWfa5COkzUifxZmxp1TyI7ImMXqFxLwvQ= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0 h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= @@ -941,7 +891,6 @@ golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLL golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200421231249-e086a090c8fd/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 h1:vGXIOMxbNfDTk/aXCmfdLgkrSV+Z2tcbze+pEc3v5W4= golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202 h1:VvcQYSHwXgi7W+TpUR6A9g6Up98WAHf3f/ulnJ62IyA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= @@ -956,7 +905,6 @@ golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJ 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 h1:vcxGaoTs7kV8m5Np9uUNQin4BrLOthgV7252N8V+FwY= 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 h1:qwRHBd0NqMbJxfbotnDhm2ByMI1Shq4Y6oRJo21SGJA= @@ -1012,22 +960,17 @@ golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7w 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-20200420163511-1957bb5e6d1f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200523222454-059865788121 h1:rITEj+UZHYC927n8GT97eC3zrpzXdb/voyeOuVKS46o= golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1 h1:ogLJMz+qpzav7lGMh10LMvAkM/fAoGlaiiHYiFYdm80= golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200720211630-cb9d2d5c5666 h1:gVCS+QOncANNPlmlO1AhlU3oxs4V9z+gTtPwIk3p2N8= golang.org/x/sys v0.0.0-20200720211630-cb9d2d5c5666/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200918174421-af09f7315aff h1:1CPUrky56AcgSpxz/KfgzQWzfG09u5YOL8MvPYBlrL8= golang.org/x/sys v0.0.0-20200918174421-af09f7315aff/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201101102859-da207088b7d1 h1:a/mKvvZr9Jcc8oKfcmgzyp7OwF73JPWsQLvH1z2Kxck= golang.org/x/sys v0.0.0-20201101102859-da207088b7d1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= 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 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= @@ -1072,10 +1015,8 @@ golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapK 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-20200331025713-a30bf2db82d4 h1:kDtqNkeBrZb8B+atrj50B5XLHpzXXqcCdZPP/ApQ5NY= golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200522201501-cb1345f3a375/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200721223218-6123e77877b2 h1:kxDWg8KNMtpGjI/XVKGgOtSljTnVg/PrjhS8+0pxjLE= golang.org/x/tools v0.0.0-20200721223218-6123e77877b2/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d h1:szSOL78iTCl0LF1AMjhSWJj8tIM0KixlUUnBtYXsmd8= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= @@ -1128,7 +1069,6 @@ google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfG google.golang.org/genproto v0.0.0-20200423170343-7949de9c1215/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece h1:1YM0uhfumvoDu9sx8+RyWwTI63zoCQvI23IYFRlvte0= google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= google.golang.org/genproto v0.0.0-20200624020401-64a14ca9d1ad h1:uAwc13+y0Y8QZLTYhLCu6lHhnG99ecQU5FYTj8zxAng= google.golang.org/genproto v0.0.0-20200624020401-64a14ca9d1ad/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= @@ -1161,7 +1101,6 @@ gopkg.in/h2non/gock.v1 v1.0.14/go.mod h1:sX4zAkdYX1TRGJ2JY156cFspQn4yRWn6p9EMdOD gopkg.in/h2non/gock.v1 v1.0.15/go.mod h1:sX4zAkdYX1TRGJ2JY156cFspQn4yRWn6p9EMdODlynE= gopkg.in/ini.v1 v1.42.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.44.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/ini.v1 v1.51.0 h1:AQvPpx3LzTDM0AjnIRlVFwFFGC+npRopjZxLJj6gdno= gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.57.0 h1:9unxIsFcTt4I55uWluz+UmL95q4kdJ0buvQ1ZIqVQww= gopkg.in/ini.v1 v1.57.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= @@ -1180,14 +1119,11 @@ gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bl 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 h1:/eiJrUcujPVeJ3xlSWaiNi3uSVmDGBK1pDHUHAnao1I= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.5 h1:ymVxjfMaHvXD8RqPRmzHHsB3VvucivSkIAvJFDI5O3c= 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 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU= gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c h1:grhR+C34yXImVGp7EzNk+DTIk+323eIUWOmEevy6bDo= gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/changelog/unreleased/update-reva-to-0c10b333.md b/changelog/unreleased/update-reva-to-0c10b333.md new file mode 100644 index 0000000000..4807cfec33 --- /dev/null +++ b/changelog/unreleased/update-reva-to-0c10b333.md @@ -0,0 +1,12 @@ +Enhancement: Update reva to v1.5.2-0.20210125114636-0c10b333ee69 + +* initial checksum support for ocis [cs3org/reva#1400](https://github.com/cs3org/reva/pull/1400) +* Use updated etag of home directory even if it is cached [cs3org/reva#1416](https://github.com/cs3org/reva/pull/#1416) +* Indicate in EOS containers that TUS is not supported [cs3org/reva#1415](https://github.com/cs3org/reva/pull/#1415) +* Get status code from recycle response [cs3org/reva#1408](https://github.com/cs3org/reva/pull/#1408) + +https://github.com/owncloud/ocis/pull/1482 +https://github.com/cs3org/reva/pull/1400 +https://github.com/cs3org/reva/pull/1416 +https://github.com/cs3org/reva/pull/1415 +https://github.com/cs3org/reva/pull/1408 \ No newline at end of file diff --git a/ocis-pkg/go.mod b/ocis-pkg/go.mod index 770d8ee546..e1416296ab 100644 --- a/ocis-pkg/go.mod +++ b/ocis-pkg/go.mod @@ -7,7 +7,7 @@ require ( github.com/ascarter/requestid v0.0.0-20170313220838-5b76ab3d4aee github.com/coreos/go-oidc v2.2.1+incompatible github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21 - github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 + github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 github.com/go-chi/chi v4.1.2+incompatible github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5 github.com/iancoleman/strcase v0.1.2 diff --git a/ocis-pkg/go.sum b/ocis-pkg/go.sum index 4fd466607c..48c1ff5d55 100644 --- a/ocis-pkg/go.sum +++ b/ocis-pkg/go.sum @@ -215,8 +215,8 @@ github.com/cs3org/reva v1.1.0 h1:Gih6ECHvMMGSx523SFluFlDmNMuhYelXYShdWvjvW38= github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCdBp4= github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e h1:khITGSnfDXtByQsLezoXgocUgGHJBBn0BPsUihGvk7w= github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= -github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= -github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 h1:HNpnnhoHv/7fUSEuW37clWyPz2x9VqJHuhvWBAHjkEU= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/ocis/go.sum b/ocis/go.sum index fb712a9a28..55a3887554 100644 --- a/ocis/go.sum +++ b/ocis/go.sum @@ -263,10 +263,8 @@ github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21 h1:mZpylrgnCgSea github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21/go.mod h1:UXha4TguuB52H14EMoSsCqDj7k8a/t7g4gVP+bgY5LY= github.com/cs3org/reva v0.0.2-0.20200115110931-4c7513415ec5/go.mod h1:Hk3eCcdhtv4eIhKvRK736fQuOyS1HuHnUcz0Dq6NK1A= github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCdBp4= -github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= -github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= -github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= -github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 h1:HNpnnhoHv/7fUSEuW37clWyPz2x9VqJHuhvWBAHjkEU= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d h1:SwD98825d6bdB+pEuTxWOXiSjBrHdOl/UVp75eI7JT8= github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 h1:iwZdTE0PVqJCos1vaoKsclOGD3ADKpshg3SRtYBbwso= diff --git a/ocs/go.mod b/ocs/go.mod index 035cb45546..4e72edb145 100644 --- a/ocs/go.mod +++ b/ocs/go.mod @@ -8,7 +8,7 @@ require ( contrib.go.opencensus.io/exporter/zipkin v0.1.1 github.com/UnnoTed/fileb0x v1.1.4 github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21 - github.com/cs3org/reva v1.5.1 + github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 github.com/go-chi/chi v4.1.2+incompatible github.com/go-chi/render v1.0.1 github.com/golang/protobuf v1.4.3 diff --git a/ocs/go.sum b/ocs/go.sum index ad1d3e3400..eb768bc7b8 100644 --- a/ocs/go.sum +++ b/ocs/go.sum @@ -196,10 +196,8 @@ github.com/cs3org/go-cs3apis v0.0.0-20200810113633-b00aca449666/go.mod h1:UXha4T github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21 h1:mZpylrgnCgSeaZ5EznvHIPIKuaQHMHZDi2wkJtk4M8Y= github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21/go.mod h1:UXha4TguuB52H14EMoSsCqDj7k8a/t7g4gVP+bgY5LY= github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= -github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= -github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= -github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= -github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 h1:HNpnnhoHv/7fUSEuW37clWyPz2x9VqJHuhvWBAHjkEU= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548/go.mod h1:e6NPNENfs9mPDVNRekM7lKScauxd5kXTr1Mfyig6TDM= github.com/cznic/strutil v0.0.0-20181122101858-275e90344537/go.mod h1:AHHPPPXTw0h6pVabbcbyGRK1DckRn7r/STdZEeIDzZc= @@ -232,7 +230,6 @@ github.com/emirpasic/gods v1.12.0/go.mod h1:YfzfFFoVP/catgzJb4IKIqXjX78Ha8FMSDh3 github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/evanphx/json-patch/v5 v5.0.0/go.mod h1:G79N1coSVB93tBe7j6PhzjmR3/2VvlbKOFpnXhI9Bw4= -github.com/eventials/go-tus v0.0.0-20200718001131-45c7ec8f5d59 h1:t2+zxJPT/jq/YOx/JRsoByAZI/GHOxYJ7MKeillEX4U= github.com/eventials/go-tus v0.0.0-20200718001131-45c7ec8f5d59/go.mod h1:XYuK1S5+kS6FGhlIUFuZFPvWiSrOIoLk6+ro33Xce3Y= github.com/exoscale/egoscale v0.18.1/go.mod h1:Z7OOdzzTOz1Q1PjQXumlz9Wn/CddH0zSYdCF3rnBKXE= github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c/go.mod h1:Yg+htXGokKKdzcwhuNDwVvN+uBxDGXJ7G/VN1d8fa64= @@ -654,7 +651,6 @@ github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6J github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pkg/term v0.0.0-20200520122047-c3ffed290a03/go.mod h1:Z9+Ul5bCbBKnbCvdOWbLqTHhJiYV414CURZJba6L8qA= github.com/pkg/term v1.1.0/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= -github.com/pkg/xattr v0.4.1 h1:dhclzL6EqOXNaPDWqoeb9tIxATfBSmjqL0b4DpSjwRw= github.com/pkg/xattr v0.4.1/go.mod h1:W2cGD0TBEus7MkUgv0tNZ9JutLtVO3cXu+IBRuHqnFs= github.com/pkg/xattr v0.4.2 h1:fbVxr9lvkToTGgPljVszvFsOdcbSv5BmGABneyxRgZM= github.com/pkg/xattr v0.4.2/go.mod h1:sBD3RAqlr8Q+RC3FutZcikpT8nyDrIEEBw2J744gVWs= @@ -1016,7 +1012,6 @@ golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200720211630-cb9d2d5c5666/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200918174421-af09f7315aff h1:1CPUrky56AcgSpxz/KfgzQWzfG09u5YOL8MvPYBlrL8= golang.org/x/sys v0.0.0-20200918174421-af09f7315aff/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201101102859-da207088b7d1 h1:a/mKvvZr9Jcc8oKfcmgzyp7OwF73JPWsQLvH1z2Kxck= golang.org/x/sys v0.0.0-20201101102859-da207088b7d1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1069,7 +1064,6 @@ golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapK golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200522201501-cb1345f3a375/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200721223218-6123e77877b2 h1:kxDWg8KNMtpGjI/XVKGgOtSljTnVg/PrjhS8+0pxjLE= golang.org/x/tools v0.0.0-20200721223218-6123e77877b2/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d h1:szSOL78iTCl0LF1AMjhSWJj8tIM0KixlUUnBtYXsmd8= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= diff --git a/proxy/go.mod b/proxy/go.mod index aa75e4b6ab..4cc832ac28 100644 --- a/proxy/go.mod +++ b/proxy/go.mod @@ -8,7 +8,7 @@ require ( contrib.go.opencensus.io/exporter/zipkin v0.1.1 github.com/coreos/go-oidc v2.2.1+incompatible github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21 - github.com/cs3org/reva v1.5.1 + github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 github.com/dgrijalva/jwt-go v3.2.0+incompatible github.com/golang/mock v1.4.4 // indirect github.com/justinas/alice v1.2.0 diff --git a/proxy/go.sum b/proxy/go.sum index 524895e269..0d808f0323 100644 --- a/proxy/go.sum +++ b/proxy/go.sum @@ -194,10 +194,8 @@ github.com/cs3org/go-cs3apis v0.0.0-20200810113633-b00aca449666/go.mod h1:UXha4T github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21 h1:mZpylrgnCgSeaZ5EznvHIPIKuaQHMHZDi2wkJtk4M8Y= github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21/go.mod h1:UXha4TguuB52H14EMoSsCqDj7k8a/t7g4gVP+bgY5LY= github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= -github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= -github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= -github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= -github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 h1:HNpnnhoHv/7fUSEuW37clWyPz2x9VqJHuhvWBAHjkEU= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548/go.mod h1:e6NPNENfs9mPDVNRekM7lKScauxd5kXTr1Mfyig6TDM= github.com/cznic/strutil v0.0.0-20181122101858-275e90344537/go.mod h1:AHHPPPXTw0h6pVabbcbyGRK1DckRn7r/STdZEeIDzZc= diff --git a/storage/go.mod b/storage/go.mod index aeca7beb93..5fa4aa3618 100644 --- a/storage/go.mod +++ b/storage/go.mod @@ -3,7 +3,7 @@ module github.com/owncloud/ocis/storage go 1.15 require ( - github.com/cs3org/reva v1.5.1 + github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 github.com/gofrs/uuid v3.3.0+incompatible github.com/micro/cli/v2 v2.1.2 github.com/micro/go-micro/v2 v2.9.1 diff --git a/storage/go.sum b/storage/go.sum index 9e9a2462e6..97a18057df 100644 --- a/storage/go.sum +++ b/storage/go.sum @@ -197,10 +197,8 @@ github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21 h1:mZpylrgnCgSea github.com/cs3org/go-cs3apis v0.0.0-20201118090759-87929f5bae21/go.mod h1:UXha4TguuB52H14EMoSsCqDj7k8a/t7g4gVP+bgY5LY= github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCdBp4= github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= -github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= -github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= -github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= -github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 h1:HNpnnhoHv/7fUSEuW37clWyPz2x9VqJHuhvWBAHjkEU= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/storage/pkg/command/frontend.go b/storage/pkg/command/frontend.go index 7b122057b6..b656e9e6c4 100644 --- a/storage/pkg/command/frontend.go +++ b/storage/pkg/command/frontend.go @@ -27,6 +27,7 @@ func Frontend(cfg *config.Config) *cli.Command { Flags: flagset.FrontendWithConfig(cfg), Before: func(c *cli.Context) error { cfg.Reva.Frontend.Services = c.StringSlice("service") + cfg.Reva.ChecksumSupportedTypes = c.StringSlice("checksum-suppored-type") return loadUserAgent(c, cfg) }, Action: func(c *cli.Context) error { @@ -166,8 +167,8 @@ func Frontend(cfg *config.Config) *cli.Command { "support_url_signing": true, }, "checksums": map[string]interface{}{ - "supported_types": []string{"SHA256"}, - "preferred_upload_type": "SHA256", + "supported_types": cfg.Reva.ChecksumSupportedTypes, + "preferred_upload_type": cfg.Reva.ChecksumPreferredUploadType, }, "files": filesCfg, "dav": map[string]interface{}{}, diff --git a/storage/pkg/config/config.go b/storage/pkg/config/config.go index 0a38f0f8fd..52a18dae62 100644 --- a/storage/pkg/config/config.go +++ b/storage/pkg/config/config.go @@ -320,6 +320,9 @@ type Reva struct { UploadMaxChunkSize int UploadHTTPMethodOverride string UploadDisableTus bool + // checksumming capabilities + ChecksumSupportedTypes []string + ChecksumPreferredUploadType string } // Tracing defines the available tracing configuration. diff --git a/storage/pkg/flagset/frontend.go b/storage/pkg/flagset/frontend.go index 48625f36f5..336c182f55 100644 --- a/storage/pkg/flagset/frontend.go +++ b/storage/pkg/flagset/frontend.go @@ -149,6 +149,19 @@ func FrontendWithConfig(cfg *config.Config) []cli.Flag { EnvVars: []string{"STORAGE_FRONTEND_UPLOAD_HTTP_METHOD_OVERRIDE"}, Destination: &cfg.Reva.UploadHTTPMethodOverride, }, + &cli.StringSliceFlag{ + Name: "checksum-suppored-type", + Value: cli.NewStringSlice("sha1", "md5", "adler32"), + Usage: "--checksum-suppored-type sha1 [--checksum-suppored-type adler32]", + EnvVars: []string{"STORAGE_FRONTEND_CHECKSUM_SUPPORTED_TYPES"}, + }, + &cli.StringFlag{ + Name: "checksum-preferred-upload-type", + Value: "", + Usage: "Specify the preferred checksum algorithm used for uploads", + EnvVars: []string{"STORAGE_FRONTEND_CHECKSUM_PREFERRED_UPLOAD_TYPE"}, + Destination: &cfg.Reva.ChecksumPreferredUploadType, + }, // Reva Middlewares Config &cli.StringSliceFlag{ From e50ee6e0025185d8c5b60ac22db3537d4e3a1ca9 Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Mon, 25 Jan 2021 15:11:58 +0100 Subject: [PATCH 17/88] move refs/pman over to owncloud/ocis/ocis/pkg/runtime --- ocis/go.mod | 5 +- ocis/go.sum | 5 + ocis/pkg/config/config.go | 2 +- ocis/pkg/runtime/cmd/kill.go | 35 ++++ ocis/pkg/runtime/cmd/list.go | 34 ++++ ocis/pkg/runtime/cmd/root.go | 30 ++++ ocis/pkg/runtime/cmd/run.go | 37 +++++ ocis/pkg/runtime/config/config.go | 28 ++++ ocis/pkg/runtime/controller/controller.go | 168 ++++++++++++++++++++ ocis/pkg/runtime/controller/janitor.go | 49 ++++++ ocis/pkg/runtime/controller/option.go | 36 +++++ ocis/pkg/runtime/controller/util.go | 13 ++ ocis/pkg/runtime/log/log.go | 30 ++++ ocis/pkg/runtime/log/options.go | 26 +++ ocis/pkg/runtime/process/process.go | 60 +++++++ ocis/pkg/runtime/process/process_windows.go | 56 +++++++ ocis/pkg/runtime/runtime.go | 8 +- ocis/pkg/runtime/service/option.go | 28 ++++ ocis/pkg/runtime/service/service.go | 164 +++++++++++++++++++ ocis/pkg/runtime/storage/map.go | 64 ++++++++ ocis/pkg/runtime/storage/map_test.go | 43 +++++ ocis/pkg/runtime/storage/storage.go | 21 +++ ocis/pkg/runtime/watcher/watcher.go | 57 +++++++ 23 files changed, 994 insertions(+), 5 deletions(-) create mode 100644 ocis/pkg/runtime/cmd/kill.go create mode 100644 ocis/pkg/runtime/cmd/list.go create mode 100644 ocis/pkg/runtime/cmd/root.go create mode 100644 ocis/pkg/runtime/cmd/run.go create mode 100644 ocis/pkg/runtime/config/config.go create mode 100644 ocis/pkg/runtime/controller/controller.go create mode 100644 ocis/pkg/runtime/controller/janitor.go create mode 100644 ocis/pkg/runtime/controller/option.go create mode 100644 ocis/pkg/runtime/controller/util.go create mode 100644 ocis/pkg/runtime/log/log.go create mode 100644 ocis/pkg/runtime/log/options.go create mode 100644 ocis/pkg/runtime/process/process.go create mode 100644 ocis/pkg/runtime/process/process_windows.go create mode 100644 ocis/pkg/runtime/service/option.go create mode 100644 ocis/pkg/runtime/service/service.go create mode 100644 ocis/pkg/runtime/storage/map.go create mode 100644 ocis/pkg/runtime/storage/map_test.go create mode 100644 ocis/pkg/runtime/storage/storage.go create mode 100644 ocis/pkg/runtime/watcher/watcher.go diff --git a/ocis/go.mod b/ocis/go.mod index bda423aeb5..036c6840a2 100644 --- a/ocis/go.mod +++ b/ocis/go.mod @@ -31,10 +31,13 @@ require ( github.com/owncloud/ocis/thumbnails v0.1.6 github.com/owncloud/ocis/web v0.0.0-00010101000000-000000000000 github.com/owncloud/ocis/webdav v0.0.0-00010101000000-000000000000 - github.com/refs/pman v0.0.0-20201214134707-9ce4dcebbbf8 github.com/restic/calens v0.2.0 + github.com/rs/zerolog v1.20.0 + github.com/spf13/cobra v1.0.0 github.com/spf13/viper v1.7.1 + github.com/stretchr/testify v1.7.0 go.opencensus.io v0.22.5 + golang.org/x/sys v0.0.0-20201101102859-da207088b7d1 ) replace ( diff --git a/ocis/go.sum b/ocis/go.sum index fb712a9a28..a3fa51d29a 100644 --- a/ocis/go.sum +++ b/ocis/go.sum @@ -1066,6 +1066,7 @@ github.com/ovh/go-ovh v0.0.0-20181109152953-ba5adb4cf014/go.mod h1:joRatxRJaZBsY github.com/owncloud/flaex v0.0.0-20200411150708-dce59891a203/go.mod h1:jip86t4OVURJTf8CM/0e2qcji/Y4NG3l2lR8kex4JWw= github.com/owncloud/flaex v0.2.0 h1:3FLf8oyMgA6HLK7w4+VJ5N1oVA8G7MptLCVjfxxIaww= github.com/owncloud/flaex v0.2.0/go.mod h1:jip86t4OVURJTf8CM/0e2qcji/Y4NG3l2lR8kex4JWw= +github.com/owncloud/ocis v1.0.0 h1:gtQZZSEzbSRucGPl3Ag5BOelZuw2OGv2e6WLAJMvQTQ= github.com/owncloud/ocis-graph v0.0.0-20200318175820-9a5a6e029db7 h1:gT0GyIOoR7XtpZ7sIxVJSckcz/nueGB1Cm1xNaflXQ0= github.com/owncloud/ocis-graph v0.0.0-20200318175820-9a5a6e029db7/go.mod h1:IRm6BBJqyPhYI+3fm5bWkhgFL/yh63ASUznFqN4yXgs= github.com/owncloud/ocis-graph-explorer v0.0.0-20200210111049-017eeb40dc0c h1:8g3u2JwOMP/UE+0B+YjV7UWEQzyCPbnZzwIto6lNc0I= @@ -1161,6 +1162,8 @@ github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqn github.com/rcrowley/go-metrics v0.0.0-20190826022208-cac0b30c2563/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/refs/pman v0.0.0-20201214134707-9ce4dcebbbf8 h1:7Pz7RrqgDeEp/nTGK55clOWODZ4+2D7J5K0VFOiYHU0= github.com/refs/pman v0.0.0-20201214134707-9ce4dcebbbf8/go.mod h1:EHI7tmxO5Ct3xBLHU43j51o5/U6VQz0TM6ik8RPE570= +github.com/refs/pman v0.0.0-20210125101615-7406747552bc h1:bh42GGXCDC/sVwu/1bYm4BCHBeXeX1qY8WSokQYuykQ= +github.com/refs/pman v0.0.0-20210125101615-7406747552bc/go.mod h1:OQcXtpEk2nPkbM32jtWRIyZHTTFReKIFmTrJb06pVY4= github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 h1:OdAsTTz6OkFY5QxjkYwrChwuRruF69c169dPK26NUlk= github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= github.com/restic/calens v0.1.0/go.mod h1:u67f5msOjCTDYNzOf/NoAUSdmXP03YXPCwIQLYADy5M= @@ -1281,6 +1284,8 @@ github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81P github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/studio-b12/gowebdav v0.0.0-20200303150724-9380631c29a1 h1:TPyHV/OgChqNcnYqCoCvIFjR9TU60gFXXBKnhOBzVEI= github.com/studio-b12/gowebdav v0.0.0-20200303150724-9380631c29a1/go.mod h1:gCcfDlA1Y7GqOaeEKw5l9dOGx1VLdc/HuQSlQAaZ30s= github.com/subosito/gotenv v1.1.1/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= diff --git a/ocis/pkg/config/config.go b/ocis/pkg/config/config.go index f37fe87c32..7130fec294 100644 --- a/ocis/pkg/config/config.go +++ b/ocis/pkg/config/config.go @@ -7,6 +7,7 @@ import ( accounts "github.com/owncloud/ocis/accounts/pkg/config" glauth "github.com/owncloud/ocis/glauth/pkg/config" konnectd "github.com/owncloud/ocis/konnectd/pkg/config" + pman "github.com/owncloud/ocis/ocis/pkg/runtime/config" ocs "github.com/owncloud/ocis/ocs/pkg/config" onlyoffice "github.com/owncloud/ocis/onlyoffice/pkg/config" proxy "github.com/owncloud/ocis/proxy/pkg/config" @@ -16,7 +17,6 @@ import ( thumbnails "github.com/owncloud/ocis/thumbnails/pkg/config" web "github.com/owncloud/ocis/web/pkg/config" webdav "github.com/owncloud/ocis/webdav/pkg/config" - pman "github.com/refs/pman/pkg/config" ) // Log defines the available logging configuration. diff --git a/ocis/pkg/runtime/cmd/kill.go b/ocis/pkg/runtime/cmd/kill.go new file mode 100644 index 0000000000..d3a5855b81 --- /dev/null +++ b/ocis/pkg/runtime/cmd/kill.go @@ -0,0 +1,35 @@ +package cmd + +import ( + "fmt" + "log" + "net" + "net/rpc" + + "github.com/owncloud/ocis/ocis/pkg/runtime/config" + "github.com/spf13/cobra" +) + +// Kill an extension. +func Kill(cfg *config.Config) *cobra.Command { + return &cobra.Command{ + Use: "kill", + Aliases: []string{"k"}, + Short: "Kill a running extensions.", + Args: cobra.MinimumNArgs(1), + Run: func(cmd *cobra.Command, args []string) { + client, err := rpc.DialHTTP("tcp", net.JoinHostPort(cfg.Hostname, cfg.Port)) + if err != nil { + log.Fatal("dialing:", err) + } + + var arg1 int + + if err := client.Call("Service.Kill", &args[0], &arg1); err != nil { + log.Fatal(err) + } + + fmt.Println(arg1) + }, + } +} diff --git a/ocis/pkg/runtime/cmd/list.go b/ocis/pkg/runtime/cmd/list.go new file mode 100644 index 0000000000..1965acf268 --- /dev/null +++ b/ocis/pkg/runtime/cmd/list.go @@ -0,0 +1,34 @@ +package cmd + +import ( + "fmt" + "log" + "net" + "net/rpc" + + "github.com/owncloud/ocis/ocis/pkg/runtime/config" + "github.com/spf13/cobra" +) + +// List running extensions. +func List(cfg *config.Config) *cobra.Command { + return &cobra.Command{ + Use: "list", + Aliases: []string{"r"}, + Short: "List running extensions", + Run: func(cmd *cobra.Command, args []string) { + client, err := rpc.DialHTTP("tcp", net.JoinHostPort(cfg.Hostname, cfg.Port)) + if err != nil { + log.Fatal("dialing:", err) + } + + var arg1 string + + if err := client.Call("Service.List", struct{}{}, &arg1); err != nil { + log.Fatal(err) + } + + fmt.Println(arg1) + }, + } +} diff --git a/ocis/pkg/runtime/cmd/root.go b/ocis/pkg/runtime/cmd/root.go new file mode 100644 index 0000000000..0c505b2ba6 --- /dev/null +++ b/ocis/pkg/runtime/cmd/root.go @@ -0,0 +1,30 @@ +package cmd + +import ( + "github.com/owncloud/ocis/ocis/pkg/runtime/config" + "github.com/spf13/cobra" + "github.com/spf13/viper" +) + +var ( + rootCmd = &cobra.Command{ + Use: "pman", + Short: "RPC Process Manager", + } +) + +// RootCmd returns a configured root command. +func RootCmd(cfg *config.Config) *cobra.Command { + rootCmd.PersistentFlags().StringVarP(&cfg.Hostname, "hostname", "n", "localhost", "host with a running OCIS runtime.") + rootCmd.PersistentFlags().StringVarP(&cfg.Port, "port", "p", "10666", "port to send messages to the rpc OCIS runtime.") + rootCmd.PersistentFlags().BoolVarP(&cfg.KeepAlive, "keep-alive", "k", false, "restart supervised processes that abruptly die.") + + viper.BindPFlag("hostname", rootCmd.PersistentFlags().Lookup("hostname")) + viper.BindPFlag("port", rootCmd.PersistentFlags().Lookup("port")) + + rootCmd.AddCommand(List(cfg)) + rootCmd.AddCommand(Run(cfg)) + rootCmd.AddCommand(Kill(cfg)) + + return rootCmd +} diff --git a/ocis/pkg/runtime/cmd/run.go b/ocis/pkg/runtime/cmd/run.go new file mode 100644 index 0000000000..0312fc6b4f --- /dev/null +++ b/ocis/pkg/runtime/cmd/run.go @@ -0,0 +1,37 @@ +package cmd + +import ( + "fmt" + "log" + "net" + "net/rpc" + "os" + + "github.com/owncloud/ocis/ocis/pkg/runtime/config" + "github.com/owncloud/ocis/ocis/pkg/runtime/process" + "github.com/spf13/cobra" +) + +// Run an extension. +func Run(cfg *config.Config) *cobra.Command { + return &cobra.Command{ + Use: "run", + Short: "Run an extension.", + Args: cobra.MinimumNArgs(1), + Run: func(cmd *cobra.Command, args []string) { + client, err := rpc.DialHTTP("tcp", net.JoinHostPort(cfg.Hostname, cfg.Port)) + if err != nil { + log.Fatal("dialing:", err) + } + + proc := process.NewProcEntry(args[0], os.Environ(), []string{args[0]}...) + var res int + + if err := client.Call("Service.Start", proc, &res); err != nil { + log.Fatal(err) + } + + fmt.Println(res) + }, + } +} diff --git a/ocis/pkg/runtime/config/config.go b/ocis/pkg/runtime/config/config.go new file mode 100644 index 0000000000..ab56542c19 --- /dev/null +++ b/ocis/pkg/runtime/config/config.go @@ -0,0 +1,28 @@ +package config + +// Config determines behavior across the tool. +type Config struct { + // Hostname where the runtime is running. When using PMAN in cli mode, it determines where the host runtime is. + // Default is localhost. + Hostname string + + // Port configures the port where a runtime is available. It defaults to 10666. + Port string + + // KeepAlive configures if restart attempts are made if the process supervised terminates. Default is false. + KeepAlive bool +} + +var ( + defaultHostname = "localhost" + defaultPort = "10666" +) + +// NewConfig returns a new config with a set of defaults. +func NewConfig() *Config { + return &Config{ + Hostname: defaultHostname, + Port: defaultPort, + KeepAlive: false, + } +} diff --git a/ocis/pkg/runtime/controller/controller.go b/ocis/pkg/runtime/controller/controller.go new file mode 100644 index 0000000000..5c58c4e89c --- /dev/null +++ b/ocis/pkg/runtime/controller/controller.go @@ -0,0 +1,168 @@ +package controller + +import ( + "fmt" + "os" + "os/exec" + "sort" + "strconv" + "strings" + "sync" + "time" + + "github.com/owncloud/ocis/ocis/pkg/runtime/config" + "github.com/owncloud/ocis/ocis/pkg/runtime/process" + "github.com/owncloud/ocis/ocis/pkg/runtime/storage" + "github.com/owncloud/ocis/ocis/pkg/runtime/watcher" + "github.com/rs/zerolog" + + "github.com/olekukonko/tablewriter" +) + +// Controller supervises processes. +type Controller struct { + m *sync.RWMutex + options Options + log zerolog.Logger + Config *config.Config + + Store storage.Storage + + // Bin is the OCIS single binary name. + Bin string + + // BinPath is the OCIS single binary path withing the host machine. + // The Controller needs to know the binary location in order to spawn new extensions. + BinPath string + + // Terminated facilitates communication from Watcher <-> Controller. Writes to this + // channel WILL always attempt to restart the crashed process. + Terminated chan process.ProcEntry +} + +var ( + once = sync.Once{} +) + +// NewController initializes a new controller. +func NewController(o ...Option) Controller { + opts := &Options{} + + for _, f := range o { + f(opts) + } + + c := Controller{ + m: &sync.RWMutex{}, + options: *opts, + log: *opts.Log, + Bin: "ocis", + Terminated: make(chan process.ProcEntry), + Store: storage.NewMapStorage(), + + Config: opts.Config, + } + + if opts.Bin != "" { + c.Bin = opts.Bin + } + + // Get binary location from $PATH lookup. If not present, it uses arg[0] as entry point. + path, err := exec.LookPath(c.Bin) + if err != nil { + c.log.Debug().Msg("OCIS binary not present in PATH, using Args[0]") + path = os.Args[0] + } + c.BinPath = path + return c +} + +// Start and watches a process. +func (c *Controller) Start(pe process.ProcEntry) error { + if pid := c.Store.Load(pe.Extension); pid != 0 { + c.log.Debug().Msg(fmt.Sprintf("extension already running: %s", pe.Extension)) + return nil + } + + w := watcher.NewWatcher() + if err := pe.Start(c.BinPath); err != nil { + return err + } + + // store the spawned child process PID. + if err := c.Store.Store(pe); err != nil { + return err + } + + w.Follow(pe, c.Terminated, c.options.Config.KeepAlive) + + once.Do(func() { + j := janitor{ + time.Second, + c.Store, + } + + go j.run() + go detach(c) + }) + return nil +} + +// Kill a managed process. +// Should a process managed by the runtime be allowed to be killed if the runtime is configured not to? +func (c *Controller) Kill(pe process.ProcEntry) error { + // load stored PID + pid := c.Store.Load(pe.Extension) + + // find process in host by PID + p, err := os.FindProcess(pid) + if err != nil { + return err + } + + if err := c.Store.Delete(pe); err != nil { + return err + } + c.log.Info().Str("package", "watcher").Msgf("terminating %v", pe.Extension) + + // terminate child process + return p.Kill() +} + +// Shutdown a running runtime. +func (c *Controller) Shutdown(ch chan struct{}) error { + entries := c.Store.LoadAll() + for cmd, pid := range entries { + c.log.Info().Str("package", "watcher").Msgf("gracefully terminating %v", cmd) + p, _ := os.FindProcess(pid) + if err := p.Kill(); err != nil { + return err + } + } + + ch <- struct{}{} + return nil +} + +// List managed processes. +func (c *Controller) List() string { + tableString := &strings.Builder{} + table := tablewriter.NewWriter(tableString) + table.SetHeader([]string{"Extension", "PID"}) + + entries := c.Store.LoadAll() + + keys := make([]string, 0, len(entries)) + for k := range entries { + keys = append(keys, k) + } + + sort.Strings(keys) + + for _, v := range keys { + table.Append([]string{v, strconv.Itoa(entries[v])}) + } + + table.Render() + return tableString.String() +} diff --git a/ocis/pkg/runtime/controller/janitor.go b/ocis/pkg/runtime/controller/janitor.go new file mode 100644 index 0000000000..dca359cd7f --- /dev/null +++ b/ocis/pkg/runtime/controller/janitor.go @@ -0,0 +1,49 @@ +package controller + +import ( + "os" + "os/signal" + "syscall" + "time" + + "github.com/owncloud/ocis/ocis/pkg/runtime/process" + "github.com/owncloud/ocis/ocis/pkg/runtime/storage" +) + +type janitor struct { + // interval at which db is cleared. + interval time.Duration + + store storage.Storage +} + +func (j *janitor) run() { + ticker := time.NewTicker(j.interval) + work := make(chan os.Signal, 1) + signal.Notify(work, syscall.SIGHUP, syscall.SIGINT, syscall.SIGQUIT) + + for { + select { + case <-work: + return + case <-ticker.C: + j.cleanup() + } + } +} + +// cleanup removes orphaned extension + pid that were killed via SIGKILL given the nature of is being un-catchable, +// the only way to update pman's database is by polling. +func (j *janitor) cleanup() { + for name, pid := range j.store.LoadAll() { + // On unix like systems (linux, freebsd, etc) os.FindProcess will never return an error + if p, err := os.FindProcess(pid); err == nil { + if err := p.Signal(syscall.Signal(0)); err != nil { + j.store.Delete(process.ProcEntry{ + Pid: pid, + Extension: name, + }) + } + } + } +} diff --git a/ocis/pkg/runtime/controller/option.go b/ocis/pkg/runtime/controller/option.go new file mode 100644 index 0000000000..1f8bfb81c4 --- /dev/null +++ b/ocis/pkg/runtime/controller/option.go @@ -0,0 +1,36 @@ +package controller + +import ( + "github.com/owncloud/ocis/ocis/pkg/runtime/config" + "github.com/rs/zerolog" +) + +// Options are the configurable options for a Controller. +type Options struct { + Bin string + Restart bool + Config *config.Config + Log *zerolog.Logger +} + +// Option represents an option. +type Option func(o *Options) + +// NewOptions returns a new Options struct. +func NewOptions() Options { + return Options{} +} + +// WithConfig sets Controller config. +func WithConfig(cfg *config.Config) Option { + return func(o *Options) { + o.Config = cfg + } +} + +// WithLog sets Controller config. +func WithLog(l *zerolog.Logger) Option { + return func(o *Options) { + o.Log = l + } +} diff --git a/ocis/pkg/runtime/controller/util.go b/ocis/pkg/runtime/controller/util.go new file mode 100644 index 0000000000..5c0bee194d --- /dev/null +++ b/ocis/pkg/runtime/controller/util.go @@ -0,0 +1,13 @@ +package controller + +// detach will try to restart processes on failures. +func detach(c *Controller) { + for { + select { + case proc := <-c.Terminated: + if err := c.Start(proc); err != nil { + c.log.Err(err) + } + } + } +} diff --git a/ocis/pkg/runtime/log/log.go b/ocis/pkg/runtime/log/log.go new file mode 100644 index 0000000000..5baf45f23b --- /dev/null +++ b/ocis/pkg/runtime/log/log.go @@ -0,0 +1,30 @@ +package log + +import ( + "os" + "time" + + "github.com/rs/zerolog" +) + +var ( + // Level sets a project wide log level + Level zerolog.Level = zerolog.InfoLevel +) + +// NewLogger configures a logger. +func NewLogger(options ...Option) zerolog.Logger { + zerolog.SetGlobalLevel(Level) + + o := NewOptions() + for _, f := range options { + f(o) + } + + logger := zerolog.New(os.Stdout).With().Timestamp().Logger() + if o.Pretty { + logger = logger.Output(zerolog.ConsoleWriter{Out: os.Stdout, TimeFormat: time.RFC3339}) + } + + return logger +} diff --git a/ocis/pkg/runtime/log/options.go b/ocis/pkg/runtime/log/options.go new file mode 100644 index 0000000000..a0035c4783 --- /dev/null +++ b/ocis/pkg/runtime/log/options.go @@ -0,0 +1,26 @@ +package log + +import "github.com/rs/zerolog" + +// Options are the configurable options for a Controller. +type Options struct { + Level zerolog.Level + Pretty bool +} + +// Option represents an option. +type Option func(o *Options) + +// NewOptions returns a new Options struct. +func NewOptions() *Options { + return &Options{ + Level: zerolog.DebugLevel, + } +} + +// WithPretty sets the pretty option. +func WithPretty(pretty bool) Option { + return func(o *Options) { + o.Pretty = pretty + } +} diff --git a/ocis/pkg/runtime/process/process.go b/ocis/pkg/runtime/process/process.go new file mode 100644 index 0000000000..36766fb476 --- /dev/null +++ b/ocis/pkg/runtime/process/process.go @@ -0,0 +1,60 @@ +// +build !windows + +package process + +import ( + "os" + + sys "golang.org/x/sys/unix" +) + +// ProcEntry is an entry in the File db. +type ProcEntry struct { + Args []string + Env []string + Pid int + Extension string +} + +// NewProcEntry returns a new ProcEntry. +func NewProcEntry(extension string, env []string, args ...string) ProcEntry { + return ProcEntry{ + Extension: extension, + Args: args, + Env: env, + } +} + +// Start a process. +func (e *ProcEntry) Start(binPath string) error { + var argv = []string{binPath} + argv = append(argv, e.Args...) + + p, err := os.StartProcess(binPath, argv, &os.ProcAttr{ + Files: []*os.File{ + os.Stdin, + os.Stdout, + os.Stderr, + }, + Env: e.Env, + Sys: &sys.SysProcAttr{ + Setpgid: true, + }, + }) + if err != nil { + return err + } + e.Pid = p.Pid + + return nil +} + +// Kill the wrapped process. +func (e *ProcEntry) Kill() error { + p, err := os.FindProcess(e.Pid) + if err != nil { + return err + } + + return p.Kill() +} diff --git a/ocis/pkg/runtime/process/process_windows.go b/ocis/pkg/runtime/process/process_windows.go new file mode 100644 index 0000000000..32b36c333a --- /dev/null +++ b/ocis/pkg/runtime/process/process_windows.go @@ -0,0 +1,56 @@ +// +build windows + +package process + +import ( + "os" +) + +// ProcEntry is an entry in the File db. +type ProcEntry struct { + Args []string + Env []string + Pid int + Extension string +} + +// NewProcEntry returns a new ProcEntry. +func NewProcEntry(extension string, env []string, args ...string) ProcEntry { + return ProcEntry{ + Extension: extension, + Args: args, + Env: env, + } +} + +// Start a process. +func (e *ProcEntry) Start(binPath string) error { + var argv = []string{binPath} + argv = append(argv, e.Args...) + + p, err := os.StartProcess(binPath, argv, &os.ProcAttr{ + Files: []*os.File{ + os.Stdin, + os.Stdout, + os.Stderr, + }, + Env: e.Env, + }) + if err != nil { + return err + } + + e.Pid = p.Pid + + return nil +} + +// Kill the wrapped process. +func (e *ProcEntry) Kill() error { + p, err := os.FindProcess(e.Pid) + if err != nil { + return err + } + + return p.Kill() +} diff --git a/ocis/pkg/runtime/runtime.go b/ocis/pkg/runtime/runtime.go index de5061a4a9..a2849809b8 100644 --- a/ocis/pkg/runtime/runtime.go +++ b/ocis/pkg/runtime/runtime.go @@ -15,8 +15,8 @@ import ( "github.com/micro/micro/v2/client/api" "github.com/micro/micro/v2/service/registry" - "github.com/refs/pman/pkg/process" - "github.com/refs/pman/pkg/service" + "github.com/owncloud/ocis/ocis/pkg/runtime/process" + "github.com/owncloud/ocis/ocis/pkg/runtime/service" ) var ( @@ -80,7 +80,9 @@ func New(cfg *config.Config) Runtime { // Start rpc runtime func (r *Runtime) Start() error { go r.Launch() - return service.Start() + return service.Start( + service.WithLogPretty(r.c.Log.Pretty), + ) } // Launch ocis default ocis extensions. diff --git a/ocis/pkg/runtime/service/option.go b/ocis/pkg/runtime/service/option.go new file mode 100644 index 0000000000..5e8e88f532 --- /dev/null +++ b/ocis/pkg/runtime/service/option.go @@ -0,0 +1,28 @@ +package service + +// Log configures a structure logger. +type Log struct { + Pretty bool +} + +// Options are the configurable options for a Service. +type Options struct { + Log *Log +} + +// Option represents an option. +type Option func(o *Options) + +// NewOptions returns a new Options struct. +func NewOptions() *Options { + return &Options{ + Log: &Log{}, + } +} + +// WithLogPretty sets Controller config. +func WithLogPretty(pretty bool) Option { + return func(o *Options) { + o.Log.Pretty = pretty + } +} diff --git a/ocis/pkg/runtime/service/service.go b/ocis/pkg/runtime/service/service.go new file mode 100644 index 0000000000..629761f855 --- /dev/null +++ b/ocis/pkg/runtime/service/service.go @@ -0,0 +1,164 @@ +package service + +import ( + "fmt" + "net" + "net/http" + "net/rpc" + "os" + "os/signal" + "strings" + "sync" + "syscall" + + "github.com/owncloud/ocis/ocis/pkg/runtime/config" + "github.com/owncloud/ocis/ocis/pkg/runtime/controller" + "github.com/owncloud/ocis/ocis/pkg/runtime/log" + "github.com/owncloud/ocis/ocis/pkg/runtime/process" + "github.com/rs/zerolog" + "github.com/spf13/viper" +) + +var ( + halt = make(chan os.Signal, 1) + done = make(chan struct{}, 1) +) + +// Service represents a RPC service. +type Service struct { + Controller controller.Controller + Log zerolog.Logger + wg *sync.WaitGroup + done bool +} + +// loadFromEnv would set cmd global variables. This is a workaround spf13/viper since pman used as a library does not +// parse flags. +func loadFromEnv() *config.Config { + cfg := config.NewConfig() + viper.AutomaticEnv() + + viper.BindEnv("keep-alive", "RUNTIME_KEEP_ALIVE") + viper.BindEnv("port", "RUNTIME_PORT") + + cfg.KeepAlive = viper.GetBool("keep-alive") + + if viper.GetString("port") != "" { + cfg.Port = viper.GetString("port") + } + + return cfg +} + +// NewService returns a configured service with a controller and a default logger. +// When used as a library, flags are not parsed, and in order to avoid introducing a global state with init functions +// calls are done explicitly to loadFromEnv(). +// Since this is the public constructor, options need to be added, at the moment only logging options +// are supported in order to match the running OwnCloud services structured log. +func NewService(options ...Option) *Service { + opts := NewOptions() + + for _, f := range options { + f(opts) + } + + cfg := loadFromEnv() + l := log.NewLogger( + log.WithPretty(opts.Log.Pretty), + ) + + return &Service{ + wg: &sync.WaitGroup{}, + Log: l, + Controller: controller.NewController( + controller.WithConfig(cfg), + controller.WithLog(&l), + ), + } +} + +// Start an rpc service. +func Start(o ...Option) error { + s := NewService(o...) + + if err := rpc.Register(s); err != nil { + s.Log.Fatal().Err(err) + } + rpc.HandleHTTP() + + signal.Notify(halt, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT, syscall.SIGHUP) + + l, err := net.Listen("tcp", fmt.Sprintf("%v:%v", s.Controller.Config.Hostname, s.Controller.Config.Port)) + if err != nil { + s.Log.Fatal().Err(err) + } + + // handle panic within the Service scope. + defer func() { + if r := recover(); r != nil { + reason := strings.Builder{} + if _, err := net.Dial("localhost", s.Controller.Config.Port); err != nil { + reason.WriteString("runtime address already in use") + } + + fmt.Println(reason.String()) + } + }() + + go trap(s) + + return http.Serve(l, nil) +} + +// Start indicates the Service Controller to start a new supervised service as an OS thread. +func (s *Service) Start(args process.ProcEntry, reply *int) error { + if !s.done { + s.wg.Add(1) + s.Log.Info().Str("service", args.Extension).Msgf("%v", "started") + if err := s.Controller.Start(args); err != nil { + *reply = 1 + return err + } + + *reply = 0 + s.wg.Done() + } + + return nil +} + +// List running processes for the Service Controller. +func (s *Service) List(args struct{}, reply *string) error { + *reply = s.Controller.List() + return nil +} + +// Kill a supervised process by subcommand name. +func (s *Service) Kill(args *string, reply *int) error { + pe := process.ProcEntry{ + Extension: *args, + } + if err := s.Controller.Kill(pe); err != nil { + *reply = 1 + return err + } + + *reply = 0 + return nil +} + +// trap blocks on halt channel. When the runtime is interrupted it +// signals the controller to stop any supervised process. +func trap(s *Service) { + <-halt + s.done = true + s.wg.Wait() + s.Log.Debug(). + Str("service", "runtime service"). + Msgf("terminating with signal: %v", s) + if err := s.Controller.Shutdown(done); err != nil { + s.Log.Err(err) + } + close(done) + os.Exit(0) +} diff --git a/ocis/pkg/runtime/storage/map.go b/ocis/pkg/runtime/storage/map.go new file mode 100644 index 0000000000..5f7db3c2b0 --- /dev/null +++ b/ocis/pkg/runtime/storage/map.go @@ -0,0 +1,64 @@ +package storage + +import ( + "github.com/owncloud/ocis/ocis/pkg/runtime/process" + + "sync" +) + +// Map synchronizes access to extension+pid tuples. +type Map struct { + c *sync.Map +} + +// NewMapStorage initializes a new Storage. +func NewMapStorage() Storage { + return &Map{ + c: &sync.Map{}, + } +} + +// Store a value on the underlying data structure. +func (m *Map) Store(e process.ProcEntry) error { + m.c.Store(e.Extension, e.Pid) + return nil +} + +// Delete a value on the underlying data structure. +func (m *Map) Delete(e process.ProcEntry) error { + m.c.Delete(e.Extension) + return nil +} + +// Load a single pid. +func (m *Map) Load(name string) int { + var val int + m.c.Range(func(k, v interface{}) bool { + if k.(string) == name { + val = v.(int) + return false + } + return true + }) + return val +} + +// LoadAll values from the underlying data structure. +func (m *Map) LoadAll() Entries { + e := make(map[string]int, 0) + m.c.Range(func(k, v interface{}) bool { + ks, ok := k.(string) + if !ok { + return false + } + + vs, ok := v.(int) + if !ok { + return false + } + + e[ks] = vs + return true + }) + return e +} diff --git a/ocis/pkg/runtime/storage/map_test.go b/ocis/pkg/runtime/storage/map_test.go new file mode 100644 index 0000000000..8aaee1574a --- /dev/null +++ b/ocis/pkg/runtime/storage/map_test.go @@ -0,0 +1,43 @@ +package storage + +import ( + "fmt" + "math/rand" + "os" + "strconv" + "testing" + + "github.com/owncloud/ocis/ocis/pkg/runtime/process" + "github.com/stretchr/testify/assert" +) + +func TestMain(m *testing.M) { + loadStore() + os.Exit(m.Run()) +} + +var ( + store = NewMapStorage() +) + +func loadStore() { + for i := 0; i < 20; i++ { + store.Store(process.ProcEntry{ + Pid: rand.Int(), + Extension: fmt.Sprintf("extension-%s", strconv.Itoa(i)), + }) + } +} + +func TestLoadAll(t *testing.T) { + all := store.LoadAll() + assert.NotNil(t, all["extension-1"]) +} + +func TestDelete(t *testing.T) { + store.Delete(process.ProcEntry{ + Extension: "extension-1", + }) + all := store.LoadAll() + assert.Zero(t, all["extension-1"]) +} diff --git a/ocis/pkg/runtime/storage/storage.go b/ocis/pkg/runtime/storage/storage.go new file mode 100644 index 0000000000..833084770f --- /dev/null +++ b/ocis/pkg/runtime/storage/storage.go @@ -0,0 +1,21 @@ +package storage + +import "github.com/owncloud/ocis/ocis/pkg/runtime/process" + +// Entries is a tuple of +type Entries map[string]int + +// Storage defines a basic persistence interface layer. +type Storage interface { + // Store a representation of a process. + Store(e process.ProcEntry) error + + // Delete a representation of a process. + Delete(e process.ProcEntry) error + + // Load a single entry. + Load(name string) int + + // LoadAll retrieves a set of entries of running processes on the host machine. + LoadAll() Entries +} diff --git a/ocis/pkg/runtime/watcher/watcher.go b/ocis/pkg/runtime/watcher/watcher.go new file mode 100644 index 0000000000..a819c1037e --- /dev/null +++ b/ocis/pkg/runtime/watcher/watcher.go @@ -0,0 +1,57 @@ +package watcher + +import ( + golog "log" + "os" + + "github.com/owncloud/ocis/ocis/pkg/runtime/log" + "github.com/owncloud/ocis/ocis/pkg/runtime/process" + "github.com/rs/zerolog" +) + +// Watcher watches a process and sends messages using channels. +type Watcher struct { + log zerolog.Logger +} + +// NewWatcher initializes a watcher. +func NewWatcher() Watcher { + return Watcher{ + log: log.NewLogger(log.WithPretty(true)), + } +} + +// Follow a process until it dies. If restart is enabled, a new fork of the original process will be automatically spawned. +func (w *Watcher) Follow(pe process.ProcEntry, followerChan chan process.ProcEntry, restart bool) { + state := make(chan *os.ProcessState, 1) + + w.log.Debug().Str("package", "watcher").Msgf("watching %v", pe.Extension) + go func() { + ps, err := watch(pe.Pid) + if err != nil { + golog.Fatal(err) + } + + state <- ps + }() + + go func() { + select { + case status := <-state: + w.log.Info().Str("package", "watcher").Msgf("%v exited with: %v", pe.Extension, status) + if restart { + followerChan <- pe + } + } + }() +} + +// watch a process by its pid. This operation blocks. +func watch(pid int) (*os.ProcessState, error) { + p, err := os.FindProcess(pid) + if err != nil { + return nil, err + } + + return p.Wait() +} From 1a38554d32b4430fdb31b0a4a267efd87fb812c4 Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Mon, 25 Jan 2021 15:22:16 +0100 Subject: [PATCH 18/88] port README.md --- ocis/pkg/runtime/README.md | 70 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 ocis/pkg/runtime/README.md diff --git a/ocis/pkg/runtime/README.md b/ocis/pkg/runtime/README.md new file mode 100644 index 0000000000..11a84aebfe --- /dev/null +++ b/ocis/pkg/runtime/README.md @@ -0,0 +1,70 @@ +# ownCloud Infinite Scale: Runtime + +[![Codacy Badge](https://api.codacy.com/project/badge/Grade/8badecde63f743868c71850e43cdeb0d)](https://app.codacy.com/manual/refs_2/pman?utm_source=github.com&utm_medium=referral&utm_content=refs/pman&utm_campaign=Badge_Grade_Dashboard) + +Pman is a slim utility library for supervising long-running processes. It can be [embedded](https://github.com/owncloud/OCIS/blob/ea2a2b328e7261ed72e65adf48359c0a44e14b40/OCIS/pkg/runtime/runtime.go#L84) or used as a cli command. + +When used as a CLI command it relays actions to a running runtime. + +## Usage + +Start a runtime + +```go +package main +import "github.com/owncloud/ocis/ocis/pkg/runtime/service" + +func main() { + service.Start() +} +``` +![start runtime](https://imgur.com/F67hgQk.gif) + +Start sending messages +![message runtime](https://imgur.com/O71RlsJ.gif) + +## Example + +```go +package main + +import ( + "fmt" + "github.com/owncloud/ocis/ocis/pkg/runtime/process" + "github.com/owncloud/ocis/ocis/pkg/runtime/service" + "github.com/rs/zerolog/log" + "os" + "os/signal" + "syscall" + "time" +) + +func main() { + s := service.NewService() + var c = make(chan os.Signal, 1) + var o int + + signal.Notify(c, syscall.SIGINT, syscall.SIGTERM) + if err := s.Start(process.NewProcEntry("ocs", nil, "ocs"), &o); err != nil { + os.Exit(1) + } + + time.AfterFunc(3*time.Second, func() { + var acc = "ocs" + fmt.Printf(fmt.Sprintf("shutting down service: %s", acc)) + if err := s.Controller.Kill(&acc); err != nil { + log.Fatal() + } + os.Exit(0) + }) + + for { + select { + case <-c: + return + } + } +} +``` + +Run the above example with `RUNTIME_KEEP_ALIVE=true` and with no `RUNTIME_KEEP_ALIVE` set to see its behavior. It requires an [OCIS binary](https://github.com/owncloud/ocis/releases) present in your `$PATH` for it to work. From 49b19418d24a00ade4bca217be37ee01a11695c3 Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Mon, 25 Jan 2021 15:23:46 +0100 Subject: [PATCH 19/88] added changelog --- changelog/unreleased/move-pman-to-ocis.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 changelog/unreleased/move-pman-to-ocis.md diff --git a/changelog/unreleased/move-pman-to-ocis.md b/changelog/unreleased/move-pman-to-ocis.md new file mode 100644 index 0000000000..d03810d127 --- /dev/null +++ b/changelog/unreleased/move-pman-to-ocis.md @@ -0,0 +1,7 @@ +Change: Move runtime code on refs/pman over to owncloud/ocis/ocis + +Tags: ocis, runtime + +Currently, the runtime is under my own private account. For future-proofing we don't want oCIS critical components to depend on external repositories, so we're including refs/pman module as an oCIS package instead. + +https://github.com/owncloud/ocis/pull/1483 From 70206b7c2f1fbbd53db1d994907575607c956f4f Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Mon, 25 Jan 2021 15:53:13 +0100 Subject: [PATCH 20/88] fix staticcheck --- ocis/pkg/runtime/controller/util.go | 9 +++------ ocis/pkg/runtime/storage/map.go | 2 +- ocis/pkg/runtime/watcher/watcher.go | 10 ++++------ 3 files changed, 8 insertions(+), 13 deletions(-) diff --git a/ocis/pkg/runtime/controller/util.go b/ocis/pkg/runtime/controller/util.go index 5c0bee194d..7e157cbfcc 100644 --- a/ocis/pkg/runtime/controller/util.go +++ b/ocis/pkg/runtime/controller/util.go @@ -2,12 +2,9 @@ package controller // detach will try to restart processes on failures. func detach(c *Controller) { - for { - select { - case proc := <-c.Terminated: - if err := c.Start(proc); err != nil { - c.log.Err(err) - } + for proc := range c.Terminated { + if err := c.Start(proc); err != nil { + c.log.Err(err) } } } diff --git a/ocis/pkg/runtime/storage/map.go b/ocis/pkg/runtime/storage/map.go index 5f7db3c2b0..9dfa59337d 100644 --- a/ocis/pkg/runtime/storage/map.go +++ b/ocis/pkg/runtime/storage/map.go @@ -45,7 +45,7 @@ func (m *Map) Load(name string) int { // LoadAll values from the underlying data structure. func (m *Map) LoadAll() Entries { - e := make(map[string]int, 0) + e := make(map[string]int) m.c.Range(func(k, v interface{}) bool { ks, ok := k.(string) if !ok { diff --git a/ocis/pkg/runtime/watcher/watcher.go b/ocis/pkg/runtime/watcher/watcher.go index a819c1037e..cbe2d46c74 100644 --- a/ocis/pkg/runtime/watcher/watcher.go +++ b/ocis/pkg/runtime/watcher/watcher.go @@ -36,12 +36,10 @@ func (w *Watcher) Follow(pe process.ProcEntry, followerChan chan process.ProcEnt }() go func() { - select { - case status := <-state: - w.log.Info().Str("package", "watcher").Msgf("%v exited with: %v", pe.Extension, status) - if restart { - followerChan <- pe - } + status := <-state + w.log.Info().Str("package", "watcher").Msgf("%v exited with: %v", pe.Extension, status) + if restart { + followerChan <- pe } }() } From 4611cc2db423a4fa094b48ec3fd4e242d82fec08 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Mon, 25 Jan 2021 21:58:21 +0545 Subject: [PATCH 21/88] Adjust expected-failures --- .../expected-failures-API-on-OCIS-storage.md | 22 ------- .../apiOcisSpecific/apiMain-checksums.feature | 57 ------------------- 2 files changed, 79 deletions(-) delete mode 100644 tests/acceptance/features/apiOcisSpecific/apiMain-checksums.feature diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index d549b795de..db021f860d 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -6,19 +6,8 @@ - [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) ### [Checksum feature](https://github.com/owncloud/ocis-reva/issues/196) -- [apiMain/checksums.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L24) -- [apiMain/checksums.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L25) -- [apiMain/checksums.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L35) -- [apiMain/checksums.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L36) -- [apiMain/checksums.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L46) -- [apiMain/checksums.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L47) -- [apiMain/checksums.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L50) - [apiMain/checksums.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L58) - [apiMain/checksums.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L67) -- [apiMain/checksums.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L99) -- [apiMain/checksums.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L100) -- [apiMain/checksums.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L103) -- [apiMain/checksums.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L110) - [apiMain/checksums.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L119) - [apiMain/checksums.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L129) - [apiMain/checksums.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L138) @@ -26,17 +15,7 @@ - [apiMain/checksums.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L158) - [apiMain/checksums.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L174) - [apiMain/checksums.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L192) -- [apiMain/checksums.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L217) -- [apiMain/checksums.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L218) -- [apiMain/checksums.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L239) -- [apiMain/checksums.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L240) - [apiMain/checksums.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L258) -- [apiMain/checksums.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L279) -- [apiMain/checksums.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L280) -- [apiMain/checksums.feature:295](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L295) -- [apiMain/checksums.feature:296](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L296) -- [apiMain/checksums.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L308) -- [apiMain/checksums.feature:309](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L309) - [apiMain/checksums.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L312) - [apiMain/checksums.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L324) @@ -902,7 +881,6 @@ - [apiVersions/fileVersions.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L88) - [apiVersions/fileVersions.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L89) - [apiVersions/fileVersions.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L93) -- [apiVersions/fileVersions.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L104) - [apiVersions/fileVersions.feature:288](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L288) - [apiVersions/fileVersions.feature:362](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L362) - [apiVersions/fileVersions.feature:373](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L373) diff --git a/tests/acceptance/features/apiOcisSpecific/apiMain-checksums.feature b/tests/acceptance/features/apiOcisSpecific/apiMain-checksums.feature deleted file mode 100644 index d536985657..0000000000 --- a/tests/acceptance/features/apiOcisSpecific/apiMain-checksums.feature +++ /dev/null @@ -1,57 +0,0 @@ -@api -Feature: checksums - - Background: - Given user "Alice" has been created with default attributes and without skeleton files - - @issue-ocis-reva-98 - # after fixing all issues delete this Scenario and use the one from oC10 core - Scenario Outline: Uploading a file with checksum should return the checksum in the download header - Given using DAV path - And user "Alice" has uploaded file "filesForUpload/textfile.txt" to "/myChecksumFile.txt" with checksum "MD5:d70b40f177b14b470d1756a3c12b963a" - When user "Alice" downloads file "/myChecksumFile.txt" using the WebDAV API - Then the following headers should not be set - | header | - | OC-Checksum | - Examples: - | dav_version | - | old | - | new | - - @issue-ocis-reva-98 - # after fixing all issues delete this Scenario and use the one from oC10 core - Scenario: Copying file with checksum should return the checksum in the download header using new DAV path - Given using new DAV path - And user "Alice" has uploaded file "filesForUpload/textfile.txt" to "/myChecksumFile.txt" with checksum "MD5:d70b40f177b14b470d1756a3c12b963a" - When user "Alice" copies file "/myChecksumFile.txt" to "/myChecksumFileCopy.txt" using the WebDAV API - And user "Alice" downloads file "/myChecksumFileCopy.txt" using the WebDAV API - Then the following headers should not be set - | header | - | OC-Checksum | - - @issue-ocis-reva-99 - # after fixing all issues delete this Scenario and use the one from oC10 core - Scenario Outline: Upload a file where checksum does not match - Given using DAV path - When user "Alice" uploads file with checksum "SHA1:f005ba11" and content "Some Text" to "/chksumtst.txt" using the WebDAV API - Then the HTTP status code should be "201" - And user "Alice" should see the following elements - | /chksumtst.txt | - Examples: - | dav_version | - | old | - | new | - - @issue-ocis-reva-99 - # after fixing all issues delete this Scenario and use the one from oC10 core - Scenario Outline: Uploaded file should have the same checksum when downloaded - Given using DAV path - And user "Alice" has uploaded file with checksum "SHA1:ce5582148c6f0c1282335b87df5ed4be4b781399" and content "Some Text" to "/chksumtst.txt" - When user "Alice" downloads file "/chksumtst.txt" using the WebDAV API - Then the following headers should not be set - | header | - | OC-Checksum | - Examples: - | dav_version | - | old | - | new | From 65bc3f1f7fbd84226adb5f04100f5ca3c9b9a521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 25 Jan 2021 19:51:25 +0000 Subject: [PATCH 22/88] Automated changelog update [skip ci] --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 587776f90f..1ad3ec9509 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ The following sections list the changes for unreleased. * Enhancement - Add OCIS_URL env var: [#1148](https://github.com/owncloud/ocis/pull/1148) * Enhancement - Use sync.cache for roles cache: [#1367](https://github.com/owncloud/ocis/pull/1367) * Enhancement - Add named locks and refactor cache: [#1212](https://github.com/owncloud/ocis/pull/1212) +* Enhancement - Update reva to v1.5.2-0.20210125114636-0c10b333ee69: [#1482](https://github.com/owncloud/ocis/pull/1482) * Enhancement - Update reva to v1.5.1: [#1372](https://github.com/owncloud/ocis/pull/1372) * Enhancement - Update reva to v1.4.1-0.20210111080247-f2b63bfd6825: [#1194](https://github.com/owncloud/ocis/pull/1194) @@ -140,6 +141,19 @@ The following sections list the changes for unreleased. https://github.com/owncloud/ocis/issues/966 https://github.com/owncloud/ocis/pull/1212 +* Enhancement - Update reva to v1.5.2-0.20210125114636-0c10b333ee69: [#1482](https://github.com/owncloud/ocis/pull/1482) + + * initial checksum support for ocis [cs3org/reva#1400](https://github.com/cs3org/reva/pull/1400) + * Use updated etag of home directory even if it is cached [cs3org/reva#1416](https://github.com/cs3org/reva/pull/#1416) + * Indicate in EOS containers that TUS is not supported [cs3org/reva#1415](https://github.com/cs3org/reva/pull/#1415) + * Get status code from recycle response [cs3org/reva#1408](https://github.com/cs3org/reva/pull/#1408) + + https://github.com/owncloud/ocis/pull/1482 + https://github.com/cs3org/reva/pull/1400 + https://github.com/cs3org/reva/pull/1416 + https://github.com/cs3org/reva/pull/1415 + https://github.com/cs3org/reva/pull/1408 + * Enhancement - Update reva to v1.5.1: [#1372](https://github.com/owncloud/ocis/pull/1372) Summary ------- From bf3fff31c2bcdfd6ff85c04364b03cb01683eb7c Mon Sep 17 00:00:00 2001 From: HariBhandari07 Date: Tue, 26 Jan 2021 12:22:09 +0545 Subject: [PATCH 23/88] [Tests-Only] Adjust the links in the expected-failures file --- .../expected-failures-API-on-EOS-storage.md | 182 ++++++++------- .../expected-failures-API-on-OCIS-storage.md | 186 ++++++++------- ...pected-failures-API-on-OWNCLOUD-storage.md | 218 +++++++++--------- ...cted-failures-webUI-on-OWNCLOUD-storage.md | 24 +- 4 files changed, 302 insertions(+), 308 deletions(-) diff --git a/tests/acceptance/expected-failures-API-on-EOS-storage.md b/tests/acceptance/expected-failures-API-on-EOS-storage.md index fce7b820bc..c258bd43ad 100644 --- a/tests/acceptance/expected-failures-API-on-EOS-storage.md +++ b/tests/acceptance/expected-failures-API-on-EOS-storage.md @@ -1,6 +1,6 @@ ## Scenarios from ownCloud10 core api tests that are expected to fail with EOS storage -### [Checksum feature](https://github.com/owncloud/ocis-reva/issues/196) +### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) - [apiMain/checksums.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L24) - [apiMain/checksums.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L25) - [apiMain/checksums.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L35) @@ -35,14 +35,14 @@ - [apiMain/checksums.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L312) - [apiMain/checksums.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L324) -### https://github.com/owncloud/ocis-reva/issues/214 +### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis/issues/1296) - [apiMain/checksums.feature:346](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L346) - [apiMain/checksums.feature:347](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L347) -### [no robots.txt available](https://github.com/owncloud/ocis-reva/issues/100) +### [no robots.txt available](https://github.com/owncloud/ocis/issues/1314) - [apiMain/main.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/main.feature#L5) -### [quota query](https://github.com/owncloud/ocis-reva/issues/101) +### [quota query](https://github.com/owncloud/ocis/issues/1313) - [apiMain/quota.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L9) - [apiMain/quota.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L16) - [apiMain/quota.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L23) @@ -64,12 +64,12 @@ - [apiWebdavProperties1/getQuota.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L77) - [apiWebdavProperties1/getQuota.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L78) -### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis-reva/issues/65) -### [no command equivalent to occ](https://github.com/owncloud/ocis-reva/issues/97) +### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis/issues/1319) +### [no command equivalent to occ](https://github.com/owncloud/ocis/issues/1317) - [apiMain/status.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/status.feature#L5) -### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis-reva/issues/29) -### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis-reva/issues/30) +### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis/issues/1338) +### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) - [apiAuthOcs/ocsDELETEAuth.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsDELETEAuth.feature#L9) - [apiAuthOcs/ocsGETAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L10) - [apiAuthOcs/ocsGETAuth.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L33) @@ -80,24 +80,24 @@ - [apiAuthOcs/ocsPOSTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPOSTAuth.feature#L10) - [apiAuthOcs/ocsPUTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPUTAuth.feature#L10) -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis-reva/issues/9) +### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - [apiAuthWebDav/webDavLOCKAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavLOCKAuth.feature#L38) - [apiAuthWebDav/webDavMKCOLAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMKCOLAuth.feature#L37) ### [renaming a resource does not work](https://github.com/owncloud/ocis-reva/issues/14) - [apiAuthWebDav/webDavMOVEAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMOVEAuth.feature#L37) -### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis-reva/issues/179) +### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis/issues/1287) - [apiAuthWebDav/webDavPOSTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPOSTAuth.feature#L38) -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis-reva/issues/9) +### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - [apiAuthWebDav/webDavPUTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPUTAuth.feature#L38) -### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis-reva/issues/175) -### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis-reva/issues/176) +### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis/issues/1285) +### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis/issues/1286) - [apiCapabilities/capabilitiesWithNormalUser.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilitiesWithNormalUser.feature#L11) -### [elements cannot be favorited](https://github.com/owncloud/ocis-reva/issues/276) +### [elements cannot be favorited](https://github.com/owncloud/ocis/issues/1263) - [apiFavorites/favorites.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L28) - [apiFavorites/favorites.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L29) - [apiFavorites/favorites.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L44) @@ -114,13 +114,35 @@ - [apiWebdavProperties1/setFileProperties.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L77) - [apiWebdavProperties1/setFileProperties.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L80) -### [elements cannot be favorited](https://github.com/owncloud/ocis-reva/issues/265) +### [elements cannot be favorited](https://github.com/owncloud/ocis/issues/1259) - [apiWebdavProperties2/getFileProperties.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L102) - [apiWebdavProperties2/getFileProperties.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L103) -### [REPORT request not implemented](https://github.com/owncloud/ocis-reva/issues/39) +### [REPORT request not implemented](https://github.com/owncloud/ocis/issues/1330) - [apiFavorites/favorites.feature:228](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L228) - [apiFavorites/favorites.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L229) +- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) +- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) +- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) +- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) +- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) +- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) +- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) +- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) +- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) +- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) +- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) +- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) +- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) +- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) +- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) +- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) +- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) +- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) +- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) +- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) +- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) +- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) OCS Provisioning API scenarios that fail - to be investigated and issues raised or comments added here - [apiProvisioning-v1/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L29) @@ -276,7 +298,7 @@ OCS Provisioning API scenarios that fail - to be investigated and issues raised - [apiSharees/sharees.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L537) - [apiSharees/sharees.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L538) -### [various sharing settings cannot be set (shareapi_auto_accept_share)](https://github.com/owncloud/ocis-reva/issues/41) +### [various sharing settings cannot be set (shareapi_auto_accept_share)](https://github.com/owncloud/ocis/issues/1328) - [apiShareManagement/acceptShares.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagement/acceptShares.feature#L155) - [apiShareManagement/acceptShares.feature:313](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagement/acceptShares.feature#L313) - [apiShareManagement/acceptShares.feature:333](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagement/acceptShares.feature#L333) @@ -310,13 +332,13 @@ OCS Provisioning API scenarios that fail - to be investigated and issues raised - [apiShareManagement/acceptSharesToSharesFolder.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagement/acceptSharesToSharesFolder.feature#L52) ### [groups endpoint does not exist](https://github.com/owncloud/ocis-reva/issues/34) -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis-reva/issues/243) -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis-reva/issues/372) +### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) ### [Fields missing in delete share OCS response](https://github.com/owncloud/ocis-reva/issues/356) ### [file_target in share response](https://github.com/owncloud/product/issues/203) -### [Shares not deleted when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) -### [EOS no displayname owner when creating share](https://github.com/owncloud/ocis-reva/issues/301) -### [EOS mime-type is not set correctly when sharing](https://github.com/owncloud/ocis-reva/issues/302) +### [Shares not deleted when user is deleted](hhttps://github.com/owncloud/ocis/issues/1226) +### [EOS no displayname owner when creating share](https://github.com/owncloud/ocis/issues/1270) +### [EOS mime-type is not set correctly when sharing](https://github.com/owncloud/ocis/issues/1271) - [apiShareToSharesManagementBasic/createShareToSharesFolder.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareToSharesManagementBasic/createShareToSharesFolder.feature#L36) - [apiShareToSharesManagementBasic/createShareToSharesFolder.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareToSharesManagementBasic/createShareToSharesFolder.feature#L37) - [apiShareToSharesManagementBasic/createShareToSharesFolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareToSharesManagementBasic/createShareToSharesFolder.feature#L66) @@ -398,40 +420,40 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature#L153) - [apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature#L154) -### [Sharee retrieves the information about a share -but gets response containing all the shares](https://github.com/owncloud/ocis-reva/issues/260) +### [Sharee retrieves the information about a share -but gets response containing all the shares](https://github.com/owncloud/ocis/issues/1257) - [apiShareOperations/accessToShare.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/accessToShare.feature#L48) - [apiShareOperations/accessToShare.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/accessToShare.feature#L49) -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis-reva/issues/262) +### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) - [apiShareOperations/gettingShares.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/gettingShares.feature#L21) - [apiShareOperations/gettingShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/gettingShares.feature#L22) -### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis-reva/issues/65) +### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis/issues/1319) - [apiShareOperations/gettingShares.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/gettingShares.feature#L34) - [apiShareOperations/gettingShares.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/gettingShares.feature#L35) -### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) -### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis-reva/issues/301) -### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis-reva/issues/302) +### [Delete shares from user when user is deleted](hhttps://github.com/owncloud/ocis/issues/1226) +### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis/issues/1270) +### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/1271) - [apiShareOperations/gettingShares.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/gettingShares.feature#L124) - [apiShareOperations/gettingShares.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/gettingShares.feature#L125) -### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis-reva/issues/374) +### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis/issues/1233) - [apiShareOperations/gettingShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/gettingShares.feature#L168) - [apiShareOperations/gettingShares.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/gettingShares.feature#L169) -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis-reva/issues/372) +### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - [apiShareOperations/gettingShares.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/gettingShares.feature#L204) - [apiShareOperations/gettingShares.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/gettingShares.feature#L205) -### [cannot get ocs:share-permissions via WebDAV](https://github.com/owncloud/ocis-reva/issues/47) +### [cannot get ocs:share-permissions via WebDAV](https://github.com/owncloud/ocis/issues/1326) - [apiShareOperations/getWebDAVSharePermissions.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/getWebDAVSharePermissions.feature#L21) - [apiShareOperations/getWebDAVSharePermissions.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/getWebDAVSharePermissions.feature#L22) - [apiShareOperations/getWebDAVSharePermissions.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/getWebDAVSharePermissions.feature#L134) - [apiShareOperations/getWebDAVSharePermissions.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperations/getWebDAVSharePermissions.feature#L135) ### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) -### [Public link enforce permissions](https://github.com/owncloud/ocis-reva/issues/292) +### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) - [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) - [apiSharePublicLink1/accessToPublicLinkShare.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L20) - [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) @@ -477,28 +499,28 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis-reva/issues/12) +### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) - [apiSharePublicLink1/createPublicLinkShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L63) - [apiSharePublicLink1/createPublicLinkShare.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L64) - [apiSharePublicLink1/createPublicLinkShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L95) - [apiSharePublicLink1/createPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L96) -### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis-reva/issues/199) +### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis/issues/1293) - [apiSharePublicLink1/createPublicLinkShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L127) - [apiSharePublicLink1/createPublicLinkShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L128) - [apiSharePublicLink1/createPublicLinkShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L155) - [apiSharePublicLink1/createPublicLinkShare.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L156) -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis-reva/issues/12) +### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) - [apiSharePublicLink1/createPublicLinkShare.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L245) - [apiSharePublicLink1/createPublicLinkShare.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L246) - [apiSharePublicLink1/createPublicLinkShare.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L276) - [apiSharePublicLink1/createPublicLinkShare.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L277) -### [various sharing settings cannot be set](https://github.com/owncloud/ocis-reva/issues/41) +### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - [apiSharePublicLink1/createPublicLinkShare.feature:389](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L389) - [apiSharePublicLink1/createPublicLinkShare.feature:390](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L390) - [apiSharePublicLink1/createPublicLinkShare.feature:411](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L411) @@ -530,7 +552,7 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiSharePublicLink2/uploadToPublicLinkShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L238) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L255) -### [Prevent creating public share for the home root folder](https://github.com/owncloud/ocis-reva/issues/283) +### [Prevent creating public share for the home root folder](https://github.com/owncloud/ocis/issues/1265) - [apiSharePublicLink1/createPublicLinkShare.feature:620](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L620) - [apiSharePublicLink1/createPublicLinkShare.feature:621](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L621) - [apiSharePublicLink1/createPublicLinkShare.feature:634](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L634) @@ -538,10 +560,10 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiSharePublicLink1/createPublicLinkShare.feature:663](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L663) - [apiSharePublicLink1/createPublicLinkShare.feature:664](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L664) -### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis-reva/issues/199) +### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis/issues/1293) - [apiSharePublicLink1/createPublicLinkShare.feature:718](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L718) -### [Cannot set Mtime on upload](https://github.com/owncloud/ocis-reva/issues/468) +### [Cannot set Mtime on upload](https://github.com/owncloud/ocis/issues/1248) - [apiSharePublicLink1/createPublicLinkShare.feature:760](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L760) - [apiSharePublicLink1/createPublicLinkShare.feature:761](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L761) - [apiSharePublicLink1/createPublicLinkShare.feature:774](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L774) @@ -555,19 +577,19 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiWebdavUpload1/uploadFile.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L184) - [apiWebdavUpload1/uploadFile.feature:185](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L185) -### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis-reva/issues/373) +### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis/issues/1232) - [apiSharePublicLink2/copyFromPublicLink.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L60) -### https://github.com/owncloud/ocis-reva/issues/373 +### https://github.com/owncloud/ocis/issues/1232 - [apiSharePublicLink2/copyFromPublicLink.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L86) -### [copying a file from within a public link folder to "/" overwrites the parent folder](https://github.com/owncloud/ocis-reva/issues/368) +### [copying a file from within a public link folder to "/" overwrites the parent folder](https://github.com/owncloud/ocis/issues/1230) - [apiSharePublicLink2/copyFromPublicLink.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L167) - [apiSharePublicLink2/copyFromPublicLink.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L168) - [apiSharePublicLink2/copyFromPublicLink.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L183) - [apiSharePublicLink2/copyFromPublicLink.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L184) -### [overwriting a file removes it's public links](https://github.com/owncloud/ocis-reva/issues/476) +### [overwriting a file removes it's public links](https://github.com/owncloud/ocis/issues/13266) - [apiSharePublicLink2/multilinkSharing.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/multilinkSharing.feature#L160) - [apiSharePublicLink2/updatePublicLinkShare.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L94) - [apiSharePublicLink2/updatePublicLinkShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L95) @@ -592,21 +614,21 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiSharePublicLink2/updatePublicLinkShare.feature:440](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L440) - [apiSharePublicLink2/updatePublicLinkShare.feature:441](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L441) -### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis-reva/issues/286) +### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) -### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis-reva/issues/290) +### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis/issues/1268) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L62) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L63) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L66) -### [Set quota over settings](https://github.com/owncloud/ocis-reva/issues/195) +### [Set quota over settings](https://github.com/owncloud/ocis/issues/1290) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L148) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L158) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L167) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L177) -### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis-reva/issues/286) +### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L273) ### [Propfind to trashbin endpoint requires UUID](https://github.com/owncloud/product/issues/179) @@ -677,8 +699,8 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiTrashbin/trashbinRestore.feature:343](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L343) - [apiTrashbin/trashbinRestore.feature:344](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L344) -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis-reva/issues/17) -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis-reva/issues/56) +### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) +### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L12) - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L29) - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L43) @@ -747,7 +769,7 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingNewChunking.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingNewChunking.feature#L49) - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingNewChunking.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingNewChunking.feature#L52) -### [file id changes on every uploaded](https://github.com/owncloud/ocis-reva/issues/275) +### [file id changes on every uploaded](https://github.com/owncloud/ocis/issues/1262) - [apiVersions/fileVersions.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L29) - [apiVersions/fileVersions.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L52) - [apiVersions/fileVersions.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L61) @@ -841,7 +863,7 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiWebdavMove2/moveFileToExcludedDirectory.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L63) - [apiWebdavMove2/moveFileToExcludedDirectory.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L64) -### [file cannot contain ? character](https://github.com/owncloud/ocis-reva/issues/265) +### [file cannot contain ? character](https://github.com/owncloud/ocis/issues/1259) - [apiWebdavMove2/moveFile.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L292) ### [listing received shares does not work](https://github.com/owncloud/ocis-reva/issues/11) @@ -852,7 +874,7 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiWebdavOperations/deleteFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L91) - [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis-reva/issues/12) +### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) - [apiWebdavOperations/downloadFile.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L29) - [apiWebdavOperations/downloadFile.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L30) @@ -868,41 +890,17 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiWebdavOperations/refuseAccess.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L33) - [apiWebdavOperations/refuseAccess.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L34) -### [REPORT request not implemented](https://github.com/owncloud/ocis-reva/issues/39) -- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) -- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) -- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) -- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) -- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) -- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) -- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) -- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) -- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) -- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) -- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) -- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) -- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) -- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) -- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) -- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) -- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) -- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) -- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) -- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) -- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) -- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) - ### [listing received shares does not work](https://github.com/owncloud/ocis-reva/issues/11) - [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) - [apiWebdavProperties1/copyFile.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L66) - [apiWebdavProperties1/copyFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L85) - [apiWebdavProperties1/copyFile.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L86) -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis-reva/issues/15) +### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) - [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis-reva/issues/387) +### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) - [apiWebdavProperties1/copyFile.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L116) - [apiWebdavProperties1/copyFile.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L117) - [apiWebdavProperties1/copyFile.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L129) @@ -924,23 +922,23 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiWebdavProperties1/copyFile.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L474) - [apiWebdavProperties1/copyFile.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L475) -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis-reva/issues/15) +### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavProperties1/createFolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L71) - [apiWebdavProperties1/createFolder.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L72) -### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis-reva/issues/168) +### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis/issues/1283) - [apiWebdavProperties1/createFolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L85) - [apiWebdavProperties1/createFolder.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L86) - [apiWebdavProperties1/createFolder.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L99) - [apiWebdavProperties1/createFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L100) -### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis-reva/issues/217) +### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) - [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) - [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) - [apiWebdavProperties1/setFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L63) - [apiWebdavProperties1/setFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L64) -### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis-reva/issues/214) +### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis/issues/1296) - [apiWebdavProperties2/getFileProperties.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L37) - [apiWebdavProperties2/getFileProperties.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L39) - [apiWebdavProperties2/getFileProperties.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L40) @@ -970,18 +968,18 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiWebdavProperties2/getFileProperties.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L218) - [apiWebdavProperties2/getFileProperties.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L219) -### [Private link support](https://github.com/owncloud/ocis-reva/issues/216) +### [Private link support](https://github.com/owncloud/product/issues/201) - [apiWebdavProperties2/getFileProperties.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L232) - [apiWebdavProperties2/getFileProperties.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L233) -### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis-reva/issues/163) +### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) - [apiWebdavProperties2/getFileProperties.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L242) - [apiWebdavProperties2/getFileProperties.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L243) -### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis-reva/issues/217) +### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) - [apiWebdavProperties2/getFileProperties.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L246) -### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis-reva/issues/217) +### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) - [apiWebdavProperties2/getFileProperties.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L266) - [apiWebdavProperties2/getFileProperties.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L301) - [apiWebdavProperties2/getFileProperties.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L302) @@ -1002,7 +1000,7 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiWebdavProperties2/getFileProperties.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L454) - [apiWebdavProperties2/getFileProperties.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L455) -### [filename cannot contain ?](https://github.com/owncloud/ocis-reva/issues/265) +### [filename cannot contain ?](https://github.com/owncloud/ocis/issues/1259) - [apiWebdavUpload1/uploadFile.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L48) - [apiWebdavUpload1/uploadFile.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L49) - [apiWebdavUpload1/uploadFile.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L50) @@ -1014,19 +1012,19 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiWebdavUpload1/uploadFile.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L97) - [apiWebdavUpload1/uploadFile.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L98) -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis-reva/issues/15) +### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavUpload1/uploadFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L112) - [apiWebdavUpload1/uploadFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L113) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L19) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L20) -### [system configuration options missing](https://github.com/owncloud/ocis-reva/issues/54) +### [system configuration options missing](https://github.com/owncloud/ocis/issues/1323) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L31) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L32) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L65) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L66) -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis-reva/issues/15) +### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L13) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L20) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L37) @@ -1034,7 +1032,7 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L39) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L42) -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis-reva/issues/15) +### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L13) - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L21) - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L39) @@ -1042,7 +1040,7 @@ These currently pass in owncloud/ocis-reva and should start passing here in ocis - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L41) - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L44) -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis-reva/issues/17) +### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) - [apiWebdavUpload2/uploadFileUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L13) - [apiWebdavUpload2/uploadFileUsingOldChunking.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L26) - [apiWebdavUpload2/uploadFileUsingOldChunking.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L35) diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index db021f860d..5c5a26cf29 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -5,7 +5,7 @@ - [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) - [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) -### [Checksum feature](https://github.com/owncloud/ocis-reva/issues/196) +### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) - [apiMain/checksums.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L58) - [apiMain/checksums.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L67) - [apiMain/checksums.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L119) @@ -19,11 +19,11 @@ - [apiMain/checksums.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L312) - [apiMain/checksums.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L324) -### [no robots.txt available](https://github.com/owncloud/ocis-reva/issues/100) +### [no robots.txt available](https://github.com/owncloud/ocis/issues/1314) - [apiMain/main.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/main.feature#L5) -### [quota query](https://github.com/owncloud/ocis-reva/issues/101) +### [quota query](https://github.com/owncloud/ocis/issues/1313) - [apiMain/quota.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L9) - [apiMain/quota.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L16) @@ -36,13 +36,13 @@ - [apiMain/quota.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L99) - [apiMain/quota.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L112) -### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis-reva/issues/65) -### [no command equivalent to occ](https://github.com/owncloud/ocis-reva/issues/97) +### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis/issues/1319) +### [no command equivalent to occ](https://github.com/owncloud/ocis/issues/1317) - [apiMain/status.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/status.feature#L5) -### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis-reva/issues/29) -### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis-reva/issues/30) +### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis/issues/1338) +### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) - [apiAuthOcs/ocsDELETEAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsDELETEAuth.feature#L10) - [apiAuthOcs/ocsGETAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L10) - [apiAuthOcs/ocsGETAuth.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L33) @@ -56,7 +56,7 @@ ### [server returns 500 when trying to access a not existing file](https://github.com/owncloud/ocis-reva/issues/13) - [apiAuthWebDav/webDavDELETEAuth.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L36) -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis-reva/issues/9) +### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - [apiAuthWebDav/webDavLOCKAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavLOCKAuth.feature#L38) - [apiAuthWebDav/webDavMKCOLAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMKCOLAuth.feature#L37) - [apiAuthWebDav/webDavPROPFINDAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPFINDAuth.feature#L37) @@ -65,17 +65,41 @@ ### [renaming a resource does not work](https://github.com/owncloud/ocis-reva/issues/14) - [apiAuthWebDav/webDavMOVEAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMOVEAuth.feature#L37) -### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis-reva/issues/179) +### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis/issues/1287) - [apiAuthWebDav/webDavPOSTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPOSTAuth.feature#L38) ### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) - [apiAuthWebDav/webDavPUTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPUTAuth.feature#L38) -### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis-reva/issues/175) -### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis-reva/issues/176) +### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis/issues/1285) +### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis/issues/1286) - [apiCapabilities/capabilitiesWithNormalUser.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilitiesWithNormalUser.feature#L11) -### [REPORT request not implemented](https://github.com/owncloud/ocis-reva/issues/39) +### [REPORT request not implemented](https://github.com/owncloud/ocis/issues/1330) +- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) +- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) +- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) +- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) +- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) +- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) +- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) +- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) +- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) +- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) +- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) +- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) +- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) +- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) +- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) +- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) +- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) +- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) +- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) +- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) +- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) +- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) +- [apiWebdavOperations/search.feature:254](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L254) + And other missing implementation of favorites - [apiFavorites/favorites.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L91) - [apiFavorites/favorites.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L92) @@ -154,7 +178,7 @@ - [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L39) - [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L67) -### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis-ocs/issues/28) +### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis/issues/1420) - [apiProvisioning-v1/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L99) - [apiProvisioning-v1/disableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L129) - [apiProvisioning-v1/disableUser.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L165) @@ -302,7 +326,7 @@ - [apiShareManagementToShares/mergeShare.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L42) - [apiShareManagementToShares/mergeShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L89) -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis-reva/issues/262) +### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) - [apiShareManagementBasicToShares/createShareToSharesFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L100) - [apiShareManagementBasicToShares/createShareToSharesFolder.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L101) @@ -351,7 +375,7 @@ - [apiShareManagementBasicToShares/deleteShareFromShares.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L72) cannot share a folder with create permission -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis-reva/issues/372) +### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - [apiShareManagementBasicToShares/deleteShareFromShares.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L118) - [apiShareManagementBasicToShares/deleteShareFromShares.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L130) @@ -360,23 +384,23 @@ - [apiShareManagementBasicToShares/deleteShareFromShares.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L183) - [apiShareManagementBasicToShares/deleteShareFromShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L184) -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis-reva/issues/262) +### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) - [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) - [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) -### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) -### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis-reva/issues/301) +### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis/issues/1226) +### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis/issues/1270) ### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) - [apiShareOperationsToShares/gettingShares.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L135) - [apiShareOperationsToShares/gettingShares.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L136) -### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis-reva/issues/374) +### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis/issues/1233) - [apiShareOperationsToShares/gettingShares.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L180) - [apiShareOperationsToShares/gettingShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L181) -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis-reva/issues/372) +### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - [apiShareOperationsToShares/gettingShares.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L219) - [apiShareOperationsToShares/gettingShares.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L220) @@ -428,7 +452,7 @@ - [apiSharePublicLink1/createPublicLinkShare.feature:790](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L790) ### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) -### [Public link enforce permissions](https://github.com/owncloud/ocis-reva/issues/292) +### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) ### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) - [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) @@ -454,7 +478,7 @@ - [apiSharePublicLink1/changingPublicLinkShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L197) - [apiSharePublicLink1/changingPublicLinkShare.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L244) -### [Public link enforce permissions](https://github.com/owncloud/ocis-reva/issues/292) +### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) - [apiSharePublicLink1/changingPublicLinkShare.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L267) - [apiSharePublicLink1/changingPublicLinkShare.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L289) @@ -469,21 +493,21 @@ - [apiSharePublicLink1/createPublicLinkShare.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L370) - [apiSharePublicLink1/createPublicLinkShare.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L371) -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis-reva/issues/12) +### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) - [apiSharePublicLink1/createPublicLinkShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L95) - [apiSharePublicLink1/createPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L96) - [apiSharePublicLink1/createPublicLinkShare.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L276) - [apiSharePublicLink1/createPublicLinkShare.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L277) -### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis-reva/issues/199) +### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis/issues/1293) - [apiSharePublicLink1/createPublicLinkShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L127) - [apiSharePublicLink1/createPublicLinkShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L128) - [apiSharePublicLink1/createPublicLinkShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L155) - [apiSharePublicLink1/createPublicLinkShare.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L156) -### [various sharing settings cannot be set](https://github.com/owncloud/ocis-reva/issues/41) +### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - [apiSharePublicLink1/createPublicLinkShare.feature:410](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L410) - [apiSharePublicLink1/createPublicLinkShare.feature:411](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L411) @@ -531,7 +555,7 @@ - [apiSharePublicLink1/createPublicLinkShare.feature:733](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L733) - [apiSharePublicLink1/createPublicLinkShare.feature:742](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L742) -### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis-reva/issues/373) +### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis/issues/1232) - [apiSharePublicLink2/copyFromPublicLink.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L60) - [apiSharePublicLink2/copyFromPublicLink.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L85) @@ -587,7 +611,7 @@ - [apiSharePublicLink2/updatePublicLinkShare.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L476) - [apiSharePublicLink2/updatePublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L477) -### [Public link enforce permissions](https://github.com/owncloud/ocis-reva/issues/292) +### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) - [apiSharePublicLink2/updatePublicLinkShare.feature:523](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L523) - [apiSharePublicLink2/updatePublicLinkShare.feature:524](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L524) @@ -597,22 +621,22 @@ - [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) -### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis-reva/issues/286) +### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L273) -### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis-reva/issues/290) +### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis/issues/1268) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L66) -### [Set quota over settings](https://github.com/owncloud/ocis-reva/issues/195) +### [Set quota over settings](https://github.com/owncloud/ocis/issues/1290) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L148) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L158) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L167) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L177) -### [various sharing settings cannot be set](https://github.com/owncloud/ocis-reva/issues/41) +### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:186](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L186) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L196) @@ -686,7 +710,7 @@ - [apiShareReshareToShares2/reShareChain.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareChain.feature#L10) -### [various sharing settings cannot be set](https://github.com/owncloud/ocis-reva/issues/41) +### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - [apiShareReshareToShares2/reShareDisabled.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L24) - [apiShareReshareToShares2/reShareDisabled.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L25) @@ -871,8 +895,8 @@ - [apiTrashbin/trashbinSharingToShares.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L102) - [apiTrashbin/trashbinSharingToShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L103) -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis-reva/issues/17) -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis-reva/issues/56) +### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) +### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - [apiVersions/fileVersions.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L15) - [apiVersions/fileVersions.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L23) @@ -978,7 +1002,7 @@ - [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L19) - [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L27) -### [renaming to banned name works](https://github.com/owncloud/ocis-reva/issues/211) +### [renaming to banned name works](https://github.com/owncloud/ocis/issues/1295) - [apiWebdavMove1/moveFolder.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L21) - [apiWebdavMove1/moveFolder.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L22) @@ -1057,7 +1081,7 @@ - [apiWebdavOperations/deleteFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L91) - [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis-reva/issues/12) +### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) ### [Review and fix the tests that have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) - [apiWebdavOperations/downloadFile.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L60) @@ -1069,32 +1093,6 @@ - [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) - [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) -### [REPORT request not implemented](https://github.com/owncloud/ocis-reva/issues/39) - -- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) -- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) -- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) -- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) -- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) -- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) -- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) -- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) -- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) -- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) -- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) -- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) -- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) -- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) -- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) -- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) -- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) -- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) -- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) -- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) -- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) -- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) -- [apiWebdavOperations/search.feature:254](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L254) - ### [Review and fix the tests that have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) - [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) @@ -1102,7 +1100,7 @@ - [apiWebdavProperties1/copyFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L85) - [apiWebdavProperties1/copyFile.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L86) -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis-reva/issues/15) +### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) - [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) @@ -1123,7 +1121,7 @@ - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L38) - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L39) -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis-reva/issues/387) +### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) - [apiWebdavProperties1/copyFile.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L116) - [apiWebdavProperties1/copyFile.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L117) @@ -1151,14 +1149,14 @@ - [apiWebdavProperties1/copyFile.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L474) - [apiWebdavProperties1/copyFile.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L475) -### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis-reva/issues/168) +### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis/issues/1283) - [apiWebdavProperties1/createFolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L85) - [apiWebdavProperties1/createFolder.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L86) - [apiWebdavProperties1/createFolder.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L99) - [apiWebdavProperties1/createFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L100) -### [quota query](https://github.com/owncloud/ocis-reva/issues/101) +### [quota query](https://github.com/owncloud/ocis/issues/1313) - [apiWebdavProperties1/getQuota.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L17) - [apiWebdavProperties1/getQuota.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L18) @@ -1171,12 +1169,12 @@ - [apiWebdavProperties1/getQuota.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L77) - [apiWebdavProperties1/getQuota.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L78) -### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis-reva/issues/217) +### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) - [apiWebdavProperties1/setFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L63) - [apiWebdavProperties1/setFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L64) -### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis-reva/issues/214) +### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis/issues/1296) - [apiWebdavProperties2/getFileProperties.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L37) - [apiWebdavProperties2/getFileProperties.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L39) @@ -1207,13 +1205,13 @@ - [apiWebdavProperties2/getFileProperties.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L206) - [apiWebdavProperties2/getFileProperties.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L207) -### [Private link support](https://github.com/owncloud/ocis-reva/issues/216) +### [Private link support](https://github.com/owncloud/product/issues/201) ### [oc:privatelink property not returned in webdav responses](https://github.com/owncloud/product/issues/262) - [apiWebdavProperties2/getFileProperties.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L232) - [apiWebdavProperties2/getFileProperties.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L233) -### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis-reva/issues/163) +### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) - [apiWebdavProperties2/getFileProperties.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L242) - [apiWebdavProperties2/getFileProperties.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L243) @@ -1223,7 +1221,7 @@ - [apiWebdavProperties2/getFileProperties.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L246) - [apiWebdavProperties2/getFileProperties.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L266) -### [Different webdav properties from core](https://github.com/owncloud/ocis-reva/issues/236) +### [Different webdav properties from core](https://github.com/owncloud/ocis/issues/1302) - [apiWebdavProperties2/getFileProperties.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L301) - [apiWebdavProperties2/getFileProperties.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L302) @@ -1254,14 +1252,14 @@ - [apiWebdavUpload1/uploadFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L112) - [apiWebdavUpload1/uploadFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L113) -### https://github.com/owncloud/ocis-reva/issues/54 system configuration options missing +### [system configuration options missing](https://github.com/owncloud/ocis/issues/1323) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L31) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L32) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L65) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L66) -### [ uploading with old-chunking does not work](https://github.com/owncloud/ocis-reva/issues/17) +### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) - [apiWebdavUpload2/uploadFileUsingOldChunking.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L43) - [apiWebdavUpload2/uploadFileUsingOldChunking.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L96) @@ -1425,11 +1423,11 @@ - [apiVersions/fileVersionsSharingToShares.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L256) -### [The version number of a file is incorrect because of the incorrect number of `` and `` element](https://github.com/owncloud/ocis-reva/issues/376) +### [The version number of a file is incorrect because of the incorrect number of `` and `` element](https://github.com/owncloud/ocis/issues/1234) - [apiVersions/fileVersionsSharingToShares.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L267) -### [wildcard Access-Control-Allow-Origin](https://github.com/owncloud/ocis-reva/issues/27) +### [wildcard Access-Control-Allow-Origin](https://github.com/owncloud/ocis/issues/1340) - [apiAuth/cors.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L24) - [apiAuth/cors.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L25) @@ -1502,17 +1500,17 @@ - [apiAuth/cors.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L182) - [apiAuth/cors.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L183) -### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis-reva/issues/30) -### [app passwords are not possible](https://github.com/owncloud/ocis-reva/issues/60) +### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) +### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) - [apiAuthOcs/ocsGETAuth.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L243) -### [app passwords are not possible](https://github.com/owncloud/ocis-reva/issues/60) +### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) - [apiAuthWebDav/webDavDELETEAuth.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L78) - [apiAuthWebDav/webDavDELETEAuth.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L92) -### [various sharing settings cannot be set](https://github.com/owncloud/ocis-reva/issues/41) +### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - [apiCapabilities/capabilities.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L8) - [apiCapabilities/capabilities.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L15) @@ -1590,7 +1588,7 @@ - [apiMain/carddav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L23) - [apiMain/carddav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L31) -### [user-sync endpoint does not exist](https://github.com/owncloud/ocis-reva/issues/401) +### [user-sync endpoint does not exist](https://github.com/owncloud/ocis/issues/1241) - [apiMain/userSync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L18) - [apiMain/userSync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L19) @@ -1620,8 +1618,8 @@ - [apiTranslation/translation.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L29) - [apiTranslation/translation.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L30) -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis-reva/issues/243) -### [Expiration date for user shares is not implemented](https://github.com/owncloud/ocis-reva/issues/333) +### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +### [Expiration date for user shares is not implemented](https://github.com/owncloud/ocis/issues/1250) - [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L26) - [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L27) @@ -1742,7 +1740,7 @@ - [apiShareOperationsToShares/accessToShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L71) - [apiShareOperationsToShares/accessToShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L72) -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis-reva/issues/243) +### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - [apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature#L15) - [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L18) @@ -1795,19 +1793,19 @@ - [apiShareUpdateToShares/updateShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L123) - [apiShareUpdateToShares/updateShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L155) -### [No way to set default folder for received shares](https://github.com/owncloud/ocis-reva/issues/42) +### [No way to set default folder for received shares](https://github.com/owncloud/ocis/issues/1327) - [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L21) - [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L22) -### [Group shares support ](https://github.com/owncloud/ocis-reva/issues/194) +### [Group shares support ](https://github.com/owncloud/ocis/issues/1289) - [apiShareOperationsToShares/gettingShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L103) - [apiShareOperationsToShares/gettingShares.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L104) - [apiShareOperationsToShares/gettingShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L184) -### [various sharing settings cannot be set](https://github.com/owncloud/ocis-reva/issues/41) -### [Group shares support](https://github.com/owncloud/ocis-reva/issues/194) +### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) +### [Group shares support](https://github.com/owncloud/ocis/issues/1289) - [apiShareUpdateToShares/updateShare.feature:290](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L290) - [apiShareUpdateToShares/updateShare.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L291) @@ -1818,8 +1816,8 @@ - [apiShareUpdateToShares/updateShare.feature:364](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L364) - [apiShareUpdateToShares/updateShare.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L365) -### [Group shares support](https://github.com/owncloud/ocis-reva/issues/194) -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis-reva/issues/243) +### [Group shares support](https://github.com/owncloud/ocis/issues/1289) +### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - [apiShareUpdateToShares/updateShare.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L61) - [apiShareUpdateToShares/updateShare.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L62) @@ -1840,14 +1838,14 @@ - [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L54) - [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L55) -### [Share additional info](https://github.com/owncloud/ocis-reva/issues/349) -### [Share extra attributes](https://github.com/owncloud/ocis-reva/issues/350) -### [Edit user share response has an "name" field](https://github.com/owncloud/ocis-reva/issues/352) +### [Share additional info](https://github.com/owncloud/ocis/issues/1253) +### [Share extra attributes](https://github.com/owncloud/ocis/issues/1224) +### [Edit user share response has an "name" field](https://github.com/owncloud/ocis/issues/1225) - [apiShareUpdateToShares/updateShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L230) - [apiShareUpdateToShares/updateShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L231) -### [Webdav LOCK operations](https://github.com/owncloud/ocis-reva/issues/172) +### [Webdav LOCK operations](https://github.com/owncloud/ocis/issues/1284) - [apiWebdavLocks/exclusiveLocks.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L17) - [apiWebdavLocks/exclusiveLocks.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L18) @@ -2178,7 +2176,7 @@ - [apiWebdavLocksUnlock/unlockSharingToShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToShares.feature#L167) - [apiWebdavLocksUnlock/unlockSharingToShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToShares.feature#L168) -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis-reva/issues/387) +### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) - [apiWebdavProperties1/copyFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L220) - [apiWebdavProperties1/copyFile.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L221) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index 75f123f3fd..0ed74d6dce 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -3,7 +3,7 @@ - [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) - [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) -### [Checksum feature](https://github.com/owncloud/ocis-reva/issues/196) +### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) - [apiMain/checksums.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L24) - [apiMain/checksums.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L25) @@ -39,11 +39,11 @@ - [apiMain/checksums.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L312) - [apiMain/checksums.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L324) -### [no robots.txt available](https://github.com/owncloud/ocis-reva/issues/100) +### [no robots.txt available](https://github.com/owncloud/ocis/issues/1314) - [apiMain/main.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/main.feature#L5) -### [quota query](https://github.com/owncloud/ocis-reva/issues/101) +### [quota query](https://github.com/owncloud/ocis/issues/1313) - [apiMain/quota.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L9) - [apiMain/quota.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L16) @@ -56,14 +56,14 @@ - [apiMain/quota.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L99) - [apiMain/quota.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L112) -### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis-reva/issues/65) +### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis/issues/1319) -### [no command equivalent to occ](https://github.com/owncloud/ocis-reva/issues/97) +### [no command equivalent to occ](https://github.com/owncloud/ocis/issues/1317) - [apiMain/status.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/status.feature#L5) -### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis-reva/issues/29) -### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis-reva/issues/30) +### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis/issues/1338) +### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) - [apiAuthOcs/ocsDELETEAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsDELETEAuth.feature#L10) - [apiAuthOcs/ocsGETAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L10) @@ -79,11 +79,11 @@ - [apiAuthWebDav/webDavDELETEAuth.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L36) -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis-reva/issues/9) +### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - [apiAuthWebDav/webDavLOCKAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavLOCKAuth.feature#L38) -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis-reva/issues/9) +### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - [apiAuthWebDav/webDavMKCOLAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMKCOLAuth.feature#L37) @@ -91,28 +91,28 @@ - [apiAuthWebDav/webDavMOVEAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMOVEAuth.feature#L37) -### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis-reva/issues/179) +### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis/issues/1287) - [apiAuthWebDav/webDavPOSTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPOSTAuth.feature#L38) -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis-reva/issues/9) +### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - [apiAuthWebDav/webDavPROPFINDAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPFINDAuth.feature#L37) -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis-reva/issues/9) +### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - [apiAuthWebDav/webDavPROPPATCHAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPPATCHAuth.feature#L38) -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis-reva/issues/9) +### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - [apiAuthWebDav/webDavPUTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPUTAuth.feature#L38) -### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis-reva/issues/175) -### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis-reva/issues/176) +### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis/issues/1285) +### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis/issues/1286) - [apiCapabilities/capabilitiesWithNormalUser.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilitiesWithNormalUser.feature#L11) -### [REPORT request not implemented](https://github.com/owncloud/ocis-reva/issues/39) +### [REPORT request not implemented](https://github.com/owncloud/ocis/issues/1330) ### And other missing implementation of favorites - [apiFavorites/favorites.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L91) @@ -138,6 +138,30 @@ - [apiFavorites/favoritesSharingToShares.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L77) - [apiFavorites/favoritesSharingToShares.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L78) +- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) +- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) +- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) +- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) +- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) +- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) +- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) +- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) +- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) +- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) +- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) +- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) +- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) +- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) +- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) +- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) +- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) +- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) +- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) +- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) +- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) +- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) +- [apiWebdavOperations/search.feature:254](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L254) + ### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) ### special character username not valid @@ -181,7 +205,7 @@ - [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L39) - [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L67) -### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis-ocs/issues/28) +### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis/issues/1420) - [apiProvisioning-v1/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L99) - [apiProvisioning-v1/disableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L129) @@ -337,7 +361,7 @@ User cannot create a folder named Share - [apiShareManagementToShares/mergeShare.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L42) - [apiShareManagementToShares/mergeShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L89) -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis-reva/issues/262) +### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) - [apiShareManagementBasicToShares/createShareToSharesFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L100) - [apiShareManagementBasicToShares/createShareToSharesFolder.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L101) @@ -383,7 +407,7 @@ User cannot create a folder named Share - [apiShareManagementBasicToShares/deleteShareFromShares.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L72) cannot share a folder with create permission -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis-reva/issues/372) +### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - [apiShareManagementBasicToShares/deleteShareFromShares.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L118) - [apiShareManagementBasicToShares/deleteShareFromShares.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L130) @@ -392,24 +416,24 @@ User cannot create a folder named Share - [apiShareManagementBasicToShares/deleteShareFromShares.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L183) - [apiShareManagementBasicToShares/deleteShareFromShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L184) -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis-reva/issues/262) +### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) - [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) - [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) -### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) -### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis-reva/issues/301) +### [Delete shares from user when user is deleted](hhttps://github.com/owncloud/ocis/issues/1226) +### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis/issues/1270) ### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) - [apiShareOperationsToShares/gettingShares.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L135) - [apiShareOperationsToShares/gettingShares.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L136) -### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis-reva/issues/374) +### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis/issues/1233) - [apiShareOperationsToShares/gettingShares.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L180) - [apiShareOperationsToShares/gettingShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L181) -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis-reva/issues/372) +### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - [apiShareOperationsToShares/gettingShares.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L219) - [apiShareOperationsToShares/gettingShares.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L220) @@ -446,7 +470,7 @@ User cannot create a folder named Share - [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L80) ### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) -### [Public link enforce permissions](https://github.com/owncloud/ocis-reva/issues/292) +### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) ### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) - [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) @@ -472,7 +496,7 @@ User cannot create a folder named Share - [apiSharePublicLink1/changingPublicLinkShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L197) - [apiSharePublicLink1/changingPublicLinkShare.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L244) -### [Public link enforce permissions](https://github.com/owncloud/ocis-reva/issues/292) +### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) ### [upload-only public link does not refer to files-drop page, nor are the permissions enforced](https://github.com/owncloud/ocis/issues/723) - [apiSharePublicLink1/changingPublicLinkShare.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L267) @@ -488,21 +512,21 @@ User cannot create a folder named Share - [apiSharePublicLink1/createPublicLinkShare.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L370) - [apiSharePublicLink1/createPublicLinkShare.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L371) -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis-reva/issues/12) +### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) - [apiSharePublicLink1/createPublicLinkShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L95) - [apiSharePublicLink1/createPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L96) - [apiSharePublicLink1/createPublicLinkShare.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L276) - [apiSharePublicLink1/createPublicLinkShare.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L277) -### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis-reva/issues/199) +### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis/issues/1293) - [apiSharePublicLink1/createPublicLinkShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L127) - [apiSharePublicLink1/createPublicLinkShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L128) - [apiSharePublicLink1/createPublicLinkShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L155) - [apiSharePublicLink1/createPublicLinkShare.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L156) -### [various sharing settings cannot be set](https://github.com/owncloud/ocis-reva/issues/41) +### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - [apiSharePublicLink1/createPublicLinkShare.feature:410](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L410) - [apiSharePublicLink1/createPublicLinkShare.feature:411](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L411) @@ -550,7 +574,7 @@ User cannot create a folder named Share - [apiSharePublicLink1/createPublicLinkShare.feature:733](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L733) - [apiSharePublicLink1/createPublicLinkShare.feature:742](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L742) -### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis-reva/issues/373) +### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis/issues/1232) - [apiSharePublicLink2/copyFromPublicLink.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L60) - [apiSharePublicLink2/copyFromPublicLink.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L85) @@ -615,7 +639,7 @@ User cannot create a folder named Share - [apiSharePublicLink2/updatePublicLinkShare.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L476) - [apiSharePublicLink2/updatePublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L477) -### [Public link enforce permissions](https://github.com/owncloud/ocis-reva/issues/292) +### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) - [apiSharePublicLink2/updatePublicLinkShare.feature:523](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L523) - [apiSharePublicLink2/updatePublicLinkShare.feature:524](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L524) @@ -625,23 +649,23 @@ User cannot create a folder named Share - [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) -### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis-reva/issues/286) +### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L273) -### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis-reva/issues/290) +### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis/issues/1268) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L66) -### [Set quota over settings](https://github.com/owncloud/ocis-reva/issues/195) +### [Set quota over settings](https://github.com/owncloud/ocis/issues/1290) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L148) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L158) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L167) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L177) -### [various sharing settings cannot be set](https://github.com/owncloud/ocis-reva/issues/41) +### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:186](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L186) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L196) @@ -814,7 +838,7 @@ User cannot create a folder named Share - [apiShareReshareToShares2/reShareChain.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareChain.feature#L10) -### [various sharing settings cannot be set](https://github.com/owncloud/ocis-reva/issues/41) +### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - [apiShareReshareToShares2/reShareDisabled.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L24) - [apiShareReshareToShares2/reShareDisabled.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L25) @@ -997,8 +1021,8 @@ User cannot create a folder named Share - [apiTrashbin/trashbinSharingToShares.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L102) - [apiTrashbin/trashbinSharingToShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L103) -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis-reva/issues/17) -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis-reva/issues/56) +### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) +### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - [apiVersions/fileVersions.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L15) - [apiVersions/fileVersions.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L23) @@ -1049,7 +1073,7 @@ User cannot create a folder named Share - [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L19) - [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L27) -### [renaming to banned name works](https://github.com/owncloud/ocis-reva/issues/211) +### [renaming to banned name works](https://github.com/owncloud/ocis/issues/1295) - [apiWebdavMove1/moveFolder.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L21) - [apiWebdavMove1/moveFolder.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L22) @@ -1128,7 +1152,7 @@ User cannot create a folder named Share - [apiWebdavOperations/deleteFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L91) - [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis-reva/issues/12) +### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) ### [Review and fix the tests that### have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) - [apiWebdavOperations/downloadFile.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L60) @@ -1140,32 +1164,6 @@ User cannot create a folder named Share - [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) - [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) -### [REPORT request not implemented](https://github.com/owncloud/ocis-reva/issues/39) - -- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) -- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) -- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) -- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) -- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) -- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) -- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) -- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) -- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) -- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) -- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) -- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) -- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) -- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) -- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) -- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) -- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) -- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) -- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) -- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) -- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) -- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) -- [apiWebdavOperations/search.feature:254](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L254) - ### [Review and fix the tests that### have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) - [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) @@ -1173,14 +1171,14 @@ User cannot create a folder named Share - [apiWebdavProperties1/copyFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L85) - [apiWebdavProperties1/copyFile.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L86) -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis-reva/issues/15) +### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) - [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) - [apiWebdavProperties1/createFolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L71) - [apiWebdavProperties1/createFolder.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L72) -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis-reva/issues/387) +### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) - [apiWebdavProperties1/copyFile.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L116) - [apiWebdavProperties1/copyFile.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L117) @@ -1208,14 +1206,14 @@ User cannot create a folder named Share - [apiWebdavProperties1/copyFile.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L474) - [apiWebdavProperties1/copyFile.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L475) -### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis-reva/issues/168) +### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis/issues/1283) - [apiWebdavProperties1/createFolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L85) - [apiWebdavProperties1/createFolder.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L86) - [apiWebdavProperties1/createFolder.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L99) - [apiWebdavProperties1/createFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L100) -### [quota query](https://github.com/owncloud/ocis-reva/issues/101) +### [quota query](https://github.com/owncloud/ocis/issues/1313) - [apiWebdavProperties1/getQuota.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L17) - [apiWebdavProperties1/getQuota.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L18) @@ -1228,12 +1226,12 @@ User cannot create a folder named Share - [apiWebdavProperties1/getQuota.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L77) - [apiWebdavProperties1/getQuota.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L78) -### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis-reva/issues/217) +### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) - [apiWebdavProperties1/setFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L63) - [apiWebdavProperties1/setFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L64) -### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis-reva/issues/214) +### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis/issues/1296) - [apiWebdavProperties2/getFileProperties.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L37) - [apiWebdavProperties2/getFileProperties.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L39) @@ -1266,13 +1264,13 @@ User cannot create a folder named Share - [apiWebdavProperties2/getFileProperties.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L206) - [apiWebdavProperties2/getFileProperties.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L207) -### [Private link support](https://github.com/owncloud/ocis-reva/issues/216) +### [Private link support](https://github.com/owncloud/product/issues/201) ### [oc:privatelink property not returned in webdav responses](https://github.com/owncloud/product/issues/262) - [apiWebdavProperties2/getFileProperties.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L232) - [apiWebdavProperties2/getFileProperties.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L233) -### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis-reva/issues/163) +### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) - [apiWebdavProperties2/getFileProperties.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L242) - [apiWebdavProperties2/getFileProperties.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L243) @@ -1282,7 +1280,7 @@ User cannot create a folder named Share - [apiWebdavProperties2/getFileProperties.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L246) - [apiWebdavProperties2/getFileProperties.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L266) -### [Different webdav properties from core](https://github.com/owncloud/ocis-reva/issues/236) +### [Different webdav properties from core](https://github.com/owncloud/ocis/issues/1302) - [apiWebdavProperties2/getFileProperties.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L301) - [apiWebdavProperties2/getFileProperties.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L302) @@ -1302,12 +1300,12 @@ User cannot create a folder named Share - [apiWebdavUpload1/uploadFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L112) - [apiWebdavUpload1/uploadFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L113) -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis-reva/issues/15) +### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavUpload1/uploadFile.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L127) - [apiWebdavUpload1/uploadFile.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L128) -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis-reva/issues/56) +### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) also requires test helper to read and clear the log file. - [apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature#L14) @@ -1340,19 +1338,19 @@ User cannot create a folder named Share - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L69) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L70) -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis-reva/issues/15) +### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L19) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L20) -### [system configuration options missing](https://github.com/owncloud/ocis-reva/issues/54) +### [system configuration options missing](https://github.com/owncloud/ocis/issues/1323) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L31) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L32) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L65) - [apiWebdavUpload1/uploadFileToBlacklistedName.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L66) -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis-reva/issues/56) +### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature#L12) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature#L21) @@ -1381,7 +1379,7 @@ User cannot create a folder named Share - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L168) - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L169) -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis-reva/issues/15) +### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L13) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L19) @@ -1394,7 +1392,7 @@ User cannot create a folder named Share - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L38) - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L39) -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis-reva/issues/17) +### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) - [apiWebdavUpload2/uploadFileUsingOldChunking.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L43) - [apiWebdavUpload2/uploadFileUsingOldChunking.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L96) @@ -1408,20 +1406,20 @@ User cannot create a folder named Share - [apiWebdavUploadTUS/uploadToShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L52) - [apiWebdavUploadTUS/uploadToShare.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L53) -### [Sharing does not work](https://github.com/owncloud/ocis-reva/issues/243) +### [Sharing does not work](https://github.com/owncloud/ocis/issues/1303) - [apiShareManagementBasicToShares/createShareToSharesFolder.feature:529](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L529) - [apiShareManagementBasicToShares/createShareToSharesFolder.feature:547](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L547) - [apiShareManagementBasicToShares/createShareToSharesFolder.feature:565](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L565) -### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) -### [when sharing a file mime-type field is set to `application/octet-stream](https://github.com/owncloud/ocis-reva/issues/302) -### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis-reva/issues/301) +### [Delete shares from user when user is deleted](hhttps://github.com/owncloud/ocis/issues/1226) +### [when sharing a file mime-type field is set to `application/octet-stream](https://github.com/owncloud/ocis/issues/1271) +### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis/issues/1270) - [apiShareOperationsToShares/gettingShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L167) - [apiShareOperationsToShares/gettingShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L168) -### [Moving resource loses associated shares](https://github.com/owncloud/ocis-reva/issues/335) +### [Moving resource loses associated shares](https://github.com/owncloud/ocis/issues/1251) - [apiSharePublicLink2/multilinkSharing.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/multilinkSharing.feature#L181) @@ -1489,7 +1487,7 @@ User cannot create a folder named Share - [apiShareOperationsToShares/uploadToShare.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L242) - [apiShareOperationsToShares/uploadToShare.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L243) -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis-reva/issues/56) +### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - [apiShareOperationsToShares/uploadToShare.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L246) @@ -1536,7 +1534,7 @@ User cannot create a folder named Share - [apiVersions/fileVersionsSharingToShares.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L256) -### [The version number of a file is incorrect because of the incorrect number of `` and `` element](https://github.com/owncloud/ocis-reva/issues/376) +### [The version number of a file is incorrect because of the incorrect number of `` and `` element](https://github.com/owncloud/ocis/issues/1234) - [apiVersions/fileVersionsSharingToShares.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L267) @@ -1575,7 +1573,7 @@ restoring a file doesn't changes the etags of the parents - [apiWebdavEtagPropagation2/restoreFromTrash.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L90) - [apiWebdavEtagPropagation2/restoreFromTrash.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L91) -### [wildcard Access-Control-Allow-Origin](https://github.com/owncloud/ocis-reva/issues/27) +### [wildcard Access-Control-Allow-Origin](https://github.com/owncloud/ocis/issues/1340) - [apiAuth/cors.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L24) - [apiAuth/cors.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L25) @@ -1648,17 +1646,17 @@ restoring a file doesn't changes the etags of the parents - [apiAuth/cors.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L182) - [apiAuth/cors.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L183) -### [HTTP 401 Unauthorized responses don't contain a body ](https://github.com/owncloud/ocis-reva/issues/30) -### [app passwords are not possible](https://github.com/owncloud/ocis-reva/issues/60) +### [HTTP 401 Unauthorized responses don't contain a body ](https://github.com/owncloud/ocis/issues/1337) +### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) - [apiAuthOcs/ocsGETAuth.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L243) -### [app passwords are not possible](https://github.com/owncloud/ocis-reva/issues/60) +### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) - [apiAuthWebDav/webDavDELETEAuth.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L78) - [apiAuthWebDav/webDavDELETEAuth.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L92) -### [various sharing settings cannot be set](https://github.com/owncloud/ocis-reva/issues/41) +### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - [apiCapabilities/capabilities.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L8) - [apiCapabilities/capabilities.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L15) @@ -1736,7 +1734,7 @@ restoring a file doesn't changes the etags of the parents - [apiMain/carddav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L23) - [apiMain/carddav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L31) -### [user-sync endpoint does not exist](https://github.com/owncloud/ocis-reva/issues/401) +### [user-sync endpoint does not exist](https://github.com/owncloud/ocis/issues/1241) - [apiMain/userSync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L18) - [apiMain/userSync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L19) @@ -1766,8 +1764,8 @@ restoring a file doesn't changes the etags of the parents - [apiTranslation/translation.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L29) - [apiTranslation/translation.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L30) -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis-reva/issues/243) -### [Expiration date for user shares is not implemented](https://github.com/owncloud/ocis-reva/issues/333) +### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +### [Expiration date for user shares is not implemented](https://github.com/owncloud/ocis/issues/1250) - [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L26) - [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L27) @@ -1888,7 +1886,7 @@ restoring a file doesn't changes the etags of the parents - [apiShareOperationsToShares/accessToShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L71) - [apiShareOperationsToShares/accessToShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L72) -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis-reva/issues/243) +### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - [apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature#L15) - [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L18) @@ -1920,7 +1918,7 @@ restoring a file doesn't changes the etags of the parents - [apiShareManagementToShares/moveReceivedShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L222) ### [file_target in share response](https://github.com/owncloud/product/issues/203) -### [cannot get ocs:share-permissions via WebDAV](https://github.com/owncloud/ocis-reva/issues/47) +### [cannot get ocs:share-permissions via WebDAV](https://github.com/owncloud/ocis/issues/1326) - [apiShareOperationsToShares/getWebDAVSharePermissions.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L59) - [apiShareOperationsToShares/getWebDAVSharePermissions.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L60) - [apiShareOperationsToShares/getWebDAVSharePermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L73) @@ -1958,19 +1956,19 @@ restoring a file doesn't changes the etags of the parents - [apiShareUpdateToShares/updateShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L123) - [apiShareUpdateToShares/updateShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L155) -### [No way to set default folder for received shares](https://github.com/owncloud/ocis-reva/issues/42) +### [No way to set default folder for received shares](https://github.com/owncloud/ocis/issues/1327) - [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L21) - [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L22) -### [Group shares support](https://github.com/owncloud/ocis-reva/issues/194) +### [Group shares support](https://github.com/owncloud/ocis/issues/1289) - [apiShareOperationsToShares/gettingShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L103) - [apiShareOperationsToShares/gettingShares.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L104) - [apiShareOperationsToShares/gettingShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L184) -### [various sharing settings cannot be set](https://github.com/owncloud/ocis-reva/issues/41) -### [Group shares support](https://github.com/owncloud/ocis-reva/issues/194) +### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) +### [Group shares support](https://github.com/owncloud/ocis/issues/1289) - [apiShareUpdateToShares/updateShare.feature:290](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L290) - [apiShareUpdateToShares/updateShare.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L291) @@ -1981,8 +1979,8 @@ restoring a file doesn't changes the etags of the parents - [apiShareUpdateToShares/updateShare.feature:364](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L364) - [apiShareUpdateToShares/updateShare.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L365) -### [Group shares support](https://github.com/owncloud/ocis-reva/issues/194) -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis-reva/issues/243) +### [Group shares support](https://github.com/owncloud/ocis/issues/1289) +### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - [apiShareUpdateToShares/updateShare.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L61) - [apiShareUpdateToShares/updateShare.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L62) @@ -2003,14 +2001,14 @@ restoring a file doesn't changes the etags of the parents - [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L54) - [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L55) -### [Share additional info](https://github.com/owncloud/ocis-reva/issues/349) -### [Share extra attributes](https://github.com/owncloud/ocis-reva/issues/350) -### [Edit user share response has an "name" field](https://github.com/owncloud/ocis-reva/issues/352) +### [Share additional info](https://github.com/owncloud/ocis/issues/1253) +### [Share extra attributes](https://github.com/owncloud/ocis/issues/1224) +### [Edit user share response has an "name" field](https://github.com/owncloud/ocis/issues/1225) - [apiShareUpdateToShares/updateShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L230) - [apiShareUpdateToShares/updateShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L231) -### [Webdav LOCK operations](https://github.com/owncloud/ocis-reva/issues/172) +### [Webdav LOCK operations](https://github.com/owncloud/ocis/issues/1284) - [apiWebdavLocks/exclusiveLocks.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L17) - [apiWebdavLocks/exclusiveLocks.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L18) @@ -2341,7 +2339,7 @@ restoring a file doesn't changes the etags of the parents - [apiWebdavLocksUnlock/unlockSharingToShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToShares.feature#L167) - [apiWebdavLocksUnlock/unlockSharingToShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToShares.feature#L168) -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis-reva/issues/387) +### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) - [apiWebdavProperties1/copyFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L220) - [apiWebdavProperties1/copyFile.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L221) diff --git a/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md index fa15b8247d..18b16de768 100644 --- a/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md @@ -16,14 +16,14 @@ Other free text and markdown formatting can be used elsewhere in the document if ### [login error page loops when logged in user is deleted](https://github.com/owncloud/ocis/issues/1129) - [webUILogin/login.feature:62](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUILogin/login.feature#L62) -### [User request using token and basic authentication gives different display names](https://github.com/owncloud/ocis-reva/issues/107) +### [User request using token and basic authentication gives different display names](https://github.com/owncloud/ocis/issues/1312) - [webUIAccount/accountInformation.feature:10](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIAccount/accountInformation.feature#L10) - [webUIAccount/accountInformation.feature:34](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIAccount/accountInformation.feature#L34) ### [LDAP Groups not working with konnectd](https://github.com/owncloud/ocis-konnectd/issues/42) - [webUIAccount/accountInformation.feature:20](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIAccount/accountInformation.feature#L20) -### [REPORT request not implemented](https://github.com/owncloud/ocis-reva/issues/39) +### [REPORT request not implemented](https://github.com/owncloud/ocis/issues/1330) - [webUIDeleteFilesFolders/deleteFilesFolders.feature:253](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIDeleteFilesFolders/deleteFilesFolders.feature#L253) - [webUIFavorites/favoritesFile.feature:14](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFavorites/favoritesFile.feature#L14) - [webUIFavorites/favoritesFile.feature:27](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFavorites/favoritesFile.feature#L27) @@ -43,7 +43,7 @@ Other free text and markdown formatting can be used elsewhere in the document if - [webUIFiles/fileDetails.feature:35](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFiles/fileDetails.feature#L35) - [webUIFiles/fileDetails.feature:46](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFiles/fileDetails.feature#L46) -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis-reva/issues/243) +### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - [webUIDeleteFilesFolders/deleteFilesFolders.feature:202](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIDeleteFilesFolders/deleteFilesFolders.feature#L202) - [webUIFiles/fileDetails.feature:88](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFiles/fileDetails.feature#L88) - [webUIFiles/fileDetails.feature:103](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFiles/fileDetails.feature#L103) @@ -120,7 +120,7 @@ Other free text and markdown formatting can be used elsewhere in the document if - [webUISharingPublic/shareByPublicLink.feature:641](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingPublic/shareByPublicLink.feature#L641) - [webUISharingPublic/shareByPublicLink.feature:658](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingPublic/shareByPublicLink.feature#L658) -### [Copy private link option not available](https://github.com/owncloud/ocis-phoenix/issues/52) +### [Copy private link option not available](https://github.com/owncloud/ocis/issues/1409) - [webUIFiles/copyPrivateLinks.feature:18](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFiles/copyPrivateLinks.feature#L18) - [webUIFiles/copyPrivateLinks.feature:19](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFiles/copyPrivateLinks.feature#L19) @@ -128,7 +128,7 @@ Other free text and markdown formatting can be used elsewhere in the document if - [webUIFiles/fileList.feature:23](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFiles/fileList.feature#L23) - [webUIFiles/fileList.feature:28](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFiles/fileList.feature#L28) -### [Versions Cleanup not available](https://github.com/owncloud/ocis-reva/issues/110) +### [Versions Cleanup not available](https://github.com/owncloud/ocis/issues/1310) - [webUIFiles/versions.feature:45](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFiles/versions.feature#L45) - [webUIFiles/versions.feature:56](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFiles/versions.feature#L56) - [webUIFiles/versions.feature:71](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFiles/versions.feature#L71) @@ -180,7 +180,7 @@ Other free text and markdown formatting can be used elsewhere in the document if - [webUISharingInternalUsersBlacklisted/shareWithUsers.feature:80](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingInternalUsersBlacklisted/shareWithUsers.feature#L80) - [webUISharingInternalUsersBlacklisted/shareWithUsers.feature:90](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingInternalUsersBlacklisted/shareWithUsers.feature#L90) -### [Can login with invalid password while logging in with openidconnect in oc10](https://github.com/owncloud/ocis-konnectd/issues/68) +### [Can login with invalid password while logging in with openidconnect in oc10](https://github.com/owncloud/ocis/issues/1428) - [webUILogin/login.feature:52](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUILogin/login.feature#L52) ### Image-Media-Viewer-Issue @@ -252,7 +252,7 @@ Other free text and markdown formatting can be used elsewhere in the document if - [webUIResharing/reshareUsers.feature:411](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIResharing/reshareUsers.feature#L411) - [webUIResharing/reshareUsers.feature:423](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIResharing/reshareUsers.feature#L423) -### [various sharing settings cannot be set](https://github.com/owncloud/ocis-reva/issues/41) +### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - [webUIRestrictSharing/disableSharing.feature:13](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIRestrictSharing/disableSharing.feature#L13) - [webUIRestrictSharing/disableSharing.feature:19](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIRestrictSharing/disableSharing.feature#L19) - [webUIRestrictSharing/disableSharing.feature:29](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIRestrictSharing/disableSharing.feature#L29) @@ -309,7 +309,7 @@ Other free text and markdown formatting can be used elsewhere in the document if - [webUISharingFolderPermissionMultipleUsers/shareFolderWithMultipleUsers.feature:64](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingFolderPermissionMultipleUsers/shareFolderWithMultipleUsers.feature#L64) - [webUISharingFolderPermissionMultipleUsers/shareFolderWithMultipleUsers.feature:65](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingFolderPermissionMultipleUsers/shareFolderWithMultipleUsers.feature#L65) -### [Group shares support](https://github.com/owncloud/ocis-reva/issues/194) +### [Group shares support](https://github.com/owncloud/ocis/issues/1289) - [webUISharingFilePermissionsGroups/sharePermissionsGroup.feature:60](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingFilePermissionsGroups/sharePermissionsGroup.feature#L60) - [webUISharingFilePermissionsGroups/sharePermissionsGroup.feature:61](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingFilePermissionsGroups/sharePermissionsGroup.feature#L61) - [webUISharingFilePermissionsGroups/sharePermissionsGroup.feature:62](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingFilePermissionsGroups/sharePermissionsGroup.feature#L62) @@ -370,7 +370,7 @@ Other free text and markdown formatting can be used elsewhere in the document if - [webUISharingNotifications/shareWithUsers.feature:36](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingNotifications/shareWithUsers.feature#L36) - [webUISharingNotifications/shareWithUsers.feature:49](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingNotifications/shareWithUsers.feature#L49) -### [name of public link is empty and not "Public link" when not specified in the create request](https://github.com/owncloud/ocis-reva/issues/383) +### [name of public link is empty and not "Public link" when not specified in the create request](https://github.com/owncloud/ocis/issues/1237) - [webUISharingPublic/shareByPublicLink.feature:30](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingPublic/shareByPublicLink.feature#L30) - [webUISharingPublic/shareByPublicLink.feature:31](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingPublic/shareByPublicLink.feature#L31) - [webUISharingPublicDifferentRoles/shareByPublicLinkDifferentRoles.feature:31](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingPublicDifferentRoles/shareByPublicLinkDifferentRoles.feature#L31) @@ -381,10 +381,10 @@ Other free text and markdown formatting can be used elsewhere in the document if ### [Cannot upload files to the ownCloud storage](https://github.com/owncloud/ocis-reva/issues/398) - [webUISharingPublic/shareByPublicLink.feature:63](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingPublic/shareByPublicLink.feature#L63) -### [public share are not deleted when user is deleted](https://github.com/owncloud/ocis-reva/issues/389) +### [public share are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1240) - [webUISharingPublic/shareByPublicLink.feature:135](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingPublic/shareByPublicLink.feature#L135) -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis-reva/issues/372) +### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - [webUISharingPublic/shareByPublicLink.feature:739](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingPublic/shareByPublicLink.feature#L739) ### [Deletion of a recursive folder from trashbin is not possible](https://github.com/owncloud/product/issues/188) @@ -396,7 +396,7 @@ Other free text and markdown formatting can be used elsewhere in the document if ### [restoring a file from "Deleted files" (trashbin) is not possible if the original folder does not exist any-more](https://github.com/owncloud/web/issues/1753) - [webUITrashbinRestore/trashbinRestore.feature:123](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUITrashbinRestore/trashbinRestore.feature#L123) -### [Conflict / overwrite issues with TUS](https://github.com/owncloud/ocis-reva/issues/200) +### [Conflict / overwrite issues with TUS](https://github.com/owncloud/ocis/issues/1294) - [webUIUpload/uploadEdgecases.feature:105](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIUpload/uploadEdgecases.feature#L105) - [webUIUpload/uploadEdgecases.feature:121](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIUpload/uploadEdgecases.feature#L121) - [webUIUpload/uploadFileGreaterThanQuotaSize.feature:12](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIUpload/uploadFileGreaterThanQuotaSize.feature#L12) From 4877cb0d9c044d50a6ad4c3ab9a6695e3d301568 Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Tue, 26 Jan 2021 09:18:45 +0100 Subject: [PATCH 24/88] apply review comments --- changelog/unreleased/move-pman-to-ocis.md | 2 +- ocis/pkg/runtime/README.md | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/changelog/unreleased/move-pman-to-ocis.md b/changelog/unreleased/move-pman-to-ocis.md index d03810d127..4df47a4890 100644 --- a/changelog/unreleased/move-pman-to-ocis.md +++ b/changelog/unreleased/move-pman-to-ocis.md @@ -2,6 +2,6 @@ Change: Move runtime code on refs/pman over to owncloud/ocis/ocis Tags: ocis, runtime -Currently, the runtime is under my own private account. For future-proofing we don't want oCIS critical components to depend on external repositories, so we're including refs/pman module as an oCIS package instead. +Currently, the runtime is under the private account of an oCIS developer. For future-proofing we don't want oCIS mission critical components to depend on external repositories, so we're including refs/pman module as an oCIS package instead. https://github.com/owncloud/ocis/pull/1483 diff --git a/ocis/pkg/runtime/README.md b/ocis/pkg/runtime/README.md index 11a84aebfe..8d8c7ce190 100644 --- a/ocis/pkg/runtime/README.md +++ b/ocis/pkg/runtime/README.md @@ -1,7 +1,5 @@ # ownCloud Infinite Scale: Runtime -[![Codacy Badge](https://api.codacy.com/project/badge/Grade/8badecde63f743868c71850e43cdeb0d)](https://app.codacy.com/manual/refs_2/pman?utm_source=github.com&utm_medium=referral&utm_content=refs/pman&utm_campaign=Badge_Grade_Dashboard) - Pman is a slim utility library for supervising long-running processes. It can be [embedded](https://github.com/owncloud/OCIS/blob/ea2a2b328e7261ed72e65adf48359c0a44e14b40/OCIS/pkg/runtime/runtime.go#L84) or used as a cli command. When used as a CLI command it relays actions to a running runtime. From 02693de015291247cc0772c763a7da109b951e61 Mon Sep 17 00:00:00 2001 From: Alex Unger <6905948+refs@users.noreply.github.com> Date: Tue, 26 Jan 2021 10:14:25 +0000 Subject: [PATCH 25/88] Automated changelog update [skip ci] --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ad3ec9509..3dbd66faeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ The following sections list the changes for unreleased. * Change - Add "expose" information to docker images: [#1366](https://github.com/owncloud/ocis/pull/1366) * Change - Generate cryptographically secure state token: [#1203](https://github.com/owncloud/ocis/pull/1203) * Change - Move k6 to cdperf: [#1358](https://github.com/owncloud/ocis/pull/1358) +* Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) * Change - Update go version: [#1364](https://github.com/owncloud/ocis/pull/1364) * Change - Update ownCloud Web to v1.0.1: [#1191](https://github.com/owncloud/ocis/pull/1191) * Enhancement - Add OCIS_URL env var: [#1148](https://github.com/owncloud/ocis/pull/1148) @@ -66,6 +67,16 @@ The following sections list the changes for unreleased. https://github.com/owncloud/ocis/pull/1358 +* Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) + + Tags: ocis, runtime + + Currently, the runtime is under the private account of an oCIS developer. For future-proofing + we don't want oCIS mission critical components to depend on external repositories, so we're + including refs/pman module as an oCIS package instead. + + https://github.com/owncloud/ocis/pull/1483 + * Change - Update go version: [#1364](https://github.com/owncloud/ocis/pull/1364) Tags: go From 655ceab4132e145534d8d4f2f807c12e9033d0f7 Mon Sep 17 00:00:00 2001 From: saw-jan Date: Tue, 26 Jan 2021 14:57:57 +0545 Subject: [PATCH 26/88] remove tests that show correct behavior --- .../features/apiBasic/addUser.feature | 18 ------------- .../features/apiBasic/uploadFile.feature | 18 ------------- .../apiBasic/webDavPUTAuthInvalid.feature | 26 ------------------- .../apiFavorites-favorites.feature | 25 ------------------ .../apiVersions-fileVersions.feature | 10 ------- .../apiWebdavMove2-moveFile.feature | 12 +-------- .../apiWebdavOperations-downloadFile.feature | 24 ----------------- ...ebdavProperties1-setFileProperties.feature | 21 --------------- ...ebdavProperties2-getFileProperties.feature | 11 -------- .../apiWebdavUpload1-uploadFile.feature | 11 -------- 10 files changed, 1 insertion(+), 175 deletions(-) delete mode 100644 tests/acceptance/features/apiBasic/addUser.feature delete mode 100644 tests/acceptance/features/apiBasic/uploadFile.feature delete mode 100644 tests/acceptance/features/apiBasic/webDavPUTAuthInvalid.feature delete mode 100644 tests/acceptance/features/apiOcisSpecific/apiFavorites-favorites.feature delete mode 100644 tests/acceptance/features/apiOcisSpecific/apiWebdavOperations-downloadFile.feature delete mode 100644 tests/acceptance/features/apiOcisSpecific/apiWebdavProperties1-setFileProperties.feature diff --git a/tests/acceptance/features/apiBasic/addUser.feature b/tests/acceptance/features/apiBasic/addUser.feature deleted file mode 100644 index c98b81c4be..0000000000 --- a/tests/acceptance/features/apiBasic/addUser.feature +++ /dev/null @@ -1,18 +0,0 @@ -@api @provisioning_api-app-required @skipOnLDAP -Feature: add user - As an admin - I want to be able to add users - So that I can give people controlled individual access to resources on the ownCloud server - - Scenario Outline: admin creates a user - Given using OCS API version "" - And user "brand-new-user" has been deleted - When the administrator sends a user creation request for user "brand-new-user" password "%alt1%" using the provisioning API - Then the OCS status code should be "" - And the HTTP status code should be "200" - And user "brand-new-user" should exist - And user "brand-new-user" should be able to access a skeleton file - Examples: - | ocs_api_version | ocs_status_code | - | 1 | 100 | - | 2 | 200 | diff --git a/tests/acceptance/features/apiBasic/uploadFile.feature b/tests/acceptance/features/apiBasic/uploadFile.feature deleted file mode 100644 index bea7e0ae59..0000000000 --- a/tests/acceptance/features/apiBasic/uploadFile.feature +++ /dev/null @@ -1,18 +0,0 @@ -@api -Feature: upload file - As a user - I want to be able to upload files - So that I can store and share files between multiple client systems - - Scenario Outline: upload a file and check download content - Given using OCS API version "" - And user "Alice" has been created with default attributes and without skeleton files - And using DAV path - When user "Alice" uploads file with content "uploaded content" to "/upload.txt" using the WebDAV API - Then the content of file "/upload.txt" for user "Alice" should be "uploaded content" - Examples: - | ocs_api_version | dav_version | - | 1 | old | - | 1 | new | - | 2 | old | - | 2 | new | diff --git a/tests/acceptance/features/apiBasic/webDavPUTAuthInvalid.feature b/tests/acceptance/features/apiBasic/webDavPUTAuthInvalid.feature deleted file mode 100644 index 79f0b3adb5..0000000000 --- a/tests/acceptance/features/apiBasic/webDavPUTAuthInvalid.feature +++ /dev/null @@ -1,26 +0,0 @@ -@api -Feature: attempt to PUT files with invalid password - - Background: - Given user "Alice" has been created with default attributes and without skeleton files - And user "Alice" has created folder "/PARENT" - - Scenario: send PUT requests to webDav endpoints as normal user with wrong password - When user "Alice" requests these endpoints with "PUT" including body "doesnotmatter" using password "invalid" about user "Alice" - | endpoint | - | /remote.php/webdav/textfile0.txt | - | /remote.php/dav/files/%username%/textfile0.txt | - | /remote.php/webdav/PARENT | - | /remote.php/dav/files/%username%/PARENT | - | /remote.php/dav/files/%username%/PARENT/parent.txt | - Then the HTTP status code of responses on all endpoints should be "401" - - Scenario: send PUT requests to webDav endpoints as normal user with no password - When user "Alice" requests these endpoints with "PUT" including body "doesnotmatter" using password "" about user "Alice" - | endpoint | - | /remote.php/webdav/textfile0.txt | - | /remote.php/dav/files/%username%/textfile0.txt | - | /remote.php/webdav/PARENT | - | /remote.php/dav/files/%username%/PARENT | - | /remote.php/dav/files/%username%/PARENT/parent.txt | - Then the HTTP status code of responses on all endpoints should be "401" diff --git a/tests/acceptance/features/apiOcisSpecific/apiFavorites-favorites.feature b/tests/acceptance/features/apiOcisSpecific/apiFavorites-favorites.feature deleted file mode 100644 index 95f9a387a2..0000000000 --- a/tests/acceptance/features/apiOcisSpecific/apiFavorites-favorites.feature +++ /dev/null @@ -1,25 +0,0 @@ -@api -Feature: favorite - - Background: - Given using OCS API version "1" - And user "Alice" has been created with default attributes and without skeleton files - And user "Alice" has uploaded file with content "some data" to "/textfile0.txt" - And user "Alice" has uploaded file with content "some data" to "/textfile1.txt" - And user "Alice" has uploaded file with content "some data" to "/textfile2.txt" - And user "Alice" has uploaded file with content "some data" to "/textfile3.txt" - And user "Alice" has uploaded file with content "some data" to "/textfile4.txt" - And user "Alice" has created folder "/FOLDER" - And user "Alice" has created folder "/PARENT" - And user "Alice" has uploaded file with content "some data" to "/PARENT/parent.txt" - - @skipOnOcis-OC-Storage @skipOnOcis-OCIS-Storage @issue-ocis-reva-276 - # after fixing all issues delete this Scenario and use the one from oC10 core - Scenario Outline: Favorite a folder - Given using DAV path - When user "Alice" favorites element "/FOLDER" using the WebDAV API - Then the HTTP status code should be "500" - Examples: - | dav_version | - | old | - | new | diff --git a/tests/acceptance/features/apiOcisSpecific/apiVersions-fileVersions.feature b/tests/acceptance/features/apiOcisSpecific/apiVersions-fileVersions.feature index 02dbd7db18..f03ba7eb15 100644 --- a/tests/acceptance/features/apiOcisSpecific/apiVersions-fileVersions.feature +++ b/tests/acceptance/features/apiOcisSpecific/apiVersions-fileVersions.feature @@ -16,16 +16,6 @@ Feature: dav-versions Then the version folder of file "/davtest.txt-olddav-oldchunking" for user "Alice" should contain "0" elements And as "Alice" file "/davtest.txt-newdav-newchunking" should not exist - @skipOnOcis-OCIS-Storage @issue-ocis-reva-17 @issue-ocis-reva-56 - # after fixing all issues delete this Scenario and use the one from oC10 core - Scenario: Upload a file twice and versions are available using various chunking methods - When user "Alice" uploads file "filesForUpload/davtest.txt" to filenames based on "/davtest.txt" with all mechanisms using the WebDAV API - And user "Alice" uploads file "filesForUpload/davtest.txt" to filenames based on "/davtest.txt" with all mechanisms using the WebDAV API - Then the version folder of file "/davtest.txt-olddav-regular" for user "Alice" should contain "1" element - And the version folder of file "/davtest.txt-newdav-regular" for user "Alice" should contain "1" element - Then the version folder of file "/davtest.txt-olddav-oldchunking" for user "Alice" should contain "1" element - And as "Alice" file "/davtest.txt-newdav-newchunking" should not exist - @skipOnOcis-OC-Storage @issue-ocis-reva-17 @issue-ocis-reva-56 # after fixing all issues delete this Scenario and use the one from oC10 core Scenario: Upload a file twice and versions are available using various chunking methods diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavMove2-moveFile.feature b/tests/acceptance/features/apiOcisSpecific/apiWebdavMove2-moveFile.feature index caada530f0..38118528be 100644 --- a/tests/acceptance/features/apiOcisSpecific/apiWebdavMove2-moveFile.feature +++ b/tests/acceptance/features/apiOcisSpecific/apiWebdavMove2-moveFile.feature @@ -31,14 +31,4 @@ Feature: move (rename) file Examples: | dav_version | | old | - | new | - - @skipOnOcis-OC-Storage @issue-ocis-reva-211 @skipOnOcis-OCIS-Storage - # after fixing all issues delete this Scenario and use the one from oC10 core - Scenario Outline: renaming to a file with special characters - When user "Alice" moves file "/textfile0.txt" to "/" using the WebDAV API - Then the HTTP status code should be "201" - And the content of file "/" for user "Alice" should be "" - Examples: - | renamed_file | - | #oc ab?cd=ef# | + | new | \ No newline at end of file diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavOperations-downloadFile.feature b/tests/acceptance/features/apiOcisSpecific/apiWebdavOperations-downloadFile.feature deleted file mode 100644 index 7dc49b2f84..0000000000 --- a/tests/acceptance/features/apiOcisSpecific/apiWebdavOperations-downloadFile.feature +++ /dev/null @@ -1,24 +0,0 @@ -@api -Feature: download file - As a user - I want to be able to download files - So that I can work wih local copies of files on my client system - - Background: - Given user "Alice" has been created with default attributes and without skeleton files - And user "Alice" has uploaded file with content "ownCloud test text file 0" to "/textfile0.txt" - And user "Alice" has uploaded file with content "Welcome this is just an example file for developers." to "/welcome.txt" - - @skipOnOcis-OC-Storage @issue-ocis-reva-98 - # after fixing all issues delete this Scenario and use the one from oC10 core - Scenario Outline: Get the content-length response header of a pdf file - Given using DAV path - And user "Alice" has uploaded file "filesForUpload/simple.pdf" to "/simple.pdf" - When user "Alice" downloads file "/simple.pdf" using the WebDAV API - And the following headers should not be set - | header | - | OC-JobStatus-Location | - Examples: - | dav_version | - | old | - | new | diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavProperties1-setFileProperties.feature b/tests/acceptance/features/apiOcisSpecific/apiWebdavProperties1-setFileProperties.feature deleted file mode 100644 index f98c1a400b..0000000000 --- a/tests/acceptance/features/apiOcisSpecific/apiWebdavProperties1-setFileProperties.feature +++ /dev/null @@ -1,21 +0,0 @@ -@api @issue-ocis-reva-57 -Feature: set file properties - As a user - I want to be able to set meta-information about files - So that I can reccord file meta-information (detailed requirement TBD) - - Background: - Given using OCS API version "1" - And user "Alice" has been created with default attributes and without skeleton files - - @skipOnOcis-OC-Storage @issue-ocis-reva-276 @skipOnOcis-OCIS-Storage - # after fixing all issues delete this Scenario and use the one from oC10 core - Scenario Outline: Setting custom DAV property - Given using DAV path - And user "Alice" has uploaded file "filesForUpload/textfile.txt" to "/testcustomprop.txt" - When user "Alice" sets property "very-custom-prop" with namespace "x1='http://whatever.org/ns'" of file "/testcustomprop.txt" to "veryCustomPropValue" using the WebDAV API - Then the HTTP status code should be "500" - Examples: - | dav_version | - | old | - | new | diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavProperties2-getFileProperties.feature b/tests/acceptance/features/apiOcisSpecific/apiWebdavProperties2-getFileProperties.feature index 67d0594c54..a72a3ceb6b 100644 --- a/tests/acceptance/features/apiOcisSpecific/apiWebdavProperties2-getFileProperties.feature +++ b/tests/acceptance/features/apiOcisSpecific/apiWebdavProperties2-getFileProperties.feature @@ -38,17 +38,6 @@ Feature: get file properties | old | /file ?2.txt | webdav\/file%20%3F2\.txt | | new | /file ?2.txt | dav\/files\/%username%\/file%20%3F2\.txt | - @skipOnOcis-OC-Storage @issue-ocis-reva-265 @skipOnOcis-OCIS-Storage - # after fixing all issues delete this Scenario and use the one from oC10 core - Scenario Outline: upload a file to content - Given using DAV path - When user "Alice" uploads file with content "uploaded content" to "" using the WebDAV API - Then the HTTP status code should be "500" - Examples: - | dav_version | file_name | - | old | /file ?2.txt | - | new | /file ?2.txt | - @issue-ocis-reva-214 @skipOnOcis-OCIS-Storage # after fixing all issues delete this Scenario and use the one from oC10 core Scenario Outline: Do a PROPFIND of various folder names diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavUpload1-uploadFile.feature b/tests/acceptance/features/apiOcisSpecific/apiWebdavUpload1-uploadFile.feature index b4b78ebc5d..b722d7b353 100644 --- a/tests/acceptance/features/apiOcisSpecific/apiWebdavUpload1-uploadFile.feature +++ b/tests/acceptance/features/apiOcisSpecific/apiWebdavUpload1-uploadFile.feature @@ -8,17 +8,6 @@ Feature: upload file Given using OCS API version "1" And user "Alice" has been created with default attributes and without skeleton files - @skipOnOcis-OC-Storage @issue-ocis-reva-265 @skipOnOcis-OCIS-Storage - # after fixing all issues delete this Scenario and use the one from oC10 core - Scenario Outline: upload a file and check download content - Given using DAV path - When user "Alice" uploads file with content "uploaded content" to using the WebDAV API - Then the content of file for user "Alice" should be "" - Examples: - | dav_version | file_name | - | old | "file ?2.txt" | - | new | "file ?2.txt" | - @skipOnOcis-OC-Storage @issue-product-127 @skipOnOcis-OCIS-Storage # this scenario passes/fails intermittently on OC storage, so do not run it in CI # after fixing all issues delete this Scenario and use the one from oC10 core From 8c73d16d2b6d7b859dfc8a0e14864acc66531d2b Mon Sep 17 00:00:00 2001 From: David Christofas Date: Tue, 26 Jan 2021 11:02:54 +0100 Subject: [PATCH 27/88] add GitHub native dependabot config See the documentation: https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates --- .github/dependabot.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..0152c90985 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,32 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/ocis" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "npm" + directory: "/accounts" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "npm" + directory: "/settings" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "npm" + directory: "/onlyoffice" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "npm" + directory: "/konnectd" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + From 4b53a1713b9c85198befe4f696243b9f1a5babce Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Tue, 26 Jan 2021 18:05:21 +0545 Subject: [PATCH 28/88] Adjust some text in expected-failures to match cs3org/reva --- .../acceptance/expected-failures-API-on-EOS-storage.md | 10 +++++----- .../expected-failures-API-on-OCIS-storage.md | 2 +- .../expected-failures-API-on-OWNCLOUD-storage.md | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/acceptance/expected-failures-API-on-EOS-storage.md b/tests/acceptance/expected-failures-API-on-EOS-storage.md index c258bd43ad..e81170cf93 100644 --- a/tests/acceptance/expected-failures-API-on-EOS-storage.md +++ b/tests/acceptance/expected-failures-API-on-EOS-storage.md @@ -1,4 +1,4 @@ -## Scenarios from ownCloud10 core api tests that are expected to fail with EOS storage +## Scenarios from ownCloud10 core API tests that are expected to fail with EOS storage ### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) - [apiMain/checksums.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L24) @@ -144,7 +144,10 @@ - [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) - [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) -OCS Provisioning API scenarios that fail - to be investigated and issues raised or comments added here +### OCS Provisioning API scenarios that fail + +to be investigated and issues raised or comments added here + - [apiProvisioning-v1/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L29) - [apiProvisioning-v1/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L30) - [apiProvisioning-v1/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L32) @@ -412,9 +415,6 @@ OCS Provisioning API scenarios that fail - to be investigated and issues raised - [apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature#L98) - [apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature#L135) - [apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature#L136) - -These currently pass in owncloud/ocis-reva and should start passing here in ocis soon - - [apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature#L115) - [apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature#L116) - [apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareToSharesManagementBasic/excludeGroupFromReceivingSharesToSharesFolder.feature#L153) diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index 5c5a26cf29..9ed95ef244 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -1,4 +1,4 @@ -## Scenarios from ownCloud10 core api tests that are expected to fail with OCIS storage +## Scenarios from ownCloud10 core API tests that are expected to fail with OCIS storage ### Test scenarios that specifically fail with OCIS storage diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index 0ed74d6dce..cec6e5d023 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -1,4 +1,4 @@ -## Scenarios from api tests that are expected to fail on OCIS with owncloud storage +## Scenarios from ownCloud10 core API tests that are expected to fail with owncloud storage - [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) - [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) From 5c3300b0833d1085c1429171fbce3315fecd5e5e Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Fri, 22 Jan 2021 14:29:16 +0100 Subject: [PATCH 29/88] Move changelog to version specific folder --- changelog/{unreleased => 1.1.0_2021-01-22}/add-ocis-url-env.md | 0 changelog/{unreleased => 1.1.0_2021-01-22}/disable-pretty-log.md | 0 changelog/{unreleased => 1.1.0_2021-01-22}/docker_image_volume.md | 0 changelog/{unreleased => 1.1.0_2021-01-22}/expose-docker-image | 0 .../{unreleased => 1.1.0_2021-01-22}/generate-secure-state.md | 0 changelog/{unreleased => 1.1.0_2021-01-22}/move-k6.md | 0 changelog/{unreleased => 1.1.0_2021-01-22}/roles-cache.md | 0 changelog/{unreleased => 1.1.0_2021-01-22}/sync-package.md | 0 changelog/{unreleased => 1.1.0_2021-01-22}/update-go-115.md | 0 .../{unreleased => 1.1.0_2021-01-22}/update-reva-to-1.5.1.md | 0 .../{unreleased => 1.1.0_2021-01-22}/update-reva-to-f2b63bfd.md | 0 changelog/{unreleased => 1.1.0_2021-01-22}/update-web-1.0.1.md | 0 12 files changed, 0 insertions(+), 0 deletions(-) rename changelog/{unreleased => 1.1.0_2021-01-22}/add-ocis-url-env.md (100%) rename changelog/{unreleased => 1.1.0_2021-01-22}/disable-pretty-log.md (100%) rename changelog/{unreleased => 1.1.0_2021-01-22}/docker_image_volume.md (100%) rename changelog/{unreleased => 1.1.0_2021-01-22}/expose-docker-image (100%) rename changelog/{unreleased => 1.1.0_2021-01-22}/generate-secure-state.md (100%) rename changelog/{unreleased => 1.1.0_2021-01-22}/move-k6.md (100%) rename changelog/{unreleased => 1.1.0_2021-01-22}/roles-cache.md (100%) rename changelog/{unreleased => 1.1.0_2021-01-22}/sync-package.md (100%) rename changelog/{unreleased => 1.1.0_2021-01-22}/update-go-115.md (100%) rename changelog/{unreleased => 1.1.0_2021-01-22}/update-reva-to-1.5.1.md (100%) rename changelog/{unreleased => 1.1.0_2021-01-22}/update-reva-to-f2b63bfd.md (100%) rename changelog/{unreleased => 1.1.0_2021-01-22}/update-web-1.0.1.md (100%) diff --git a/changelog/unreleased/add-ocis-url-env.md b/changelog/1.1.0_2021-01-22/add-ocis-url-env.md similarity index 100% rename from changelog/unreleased/add-ocis-url-env.md rename to changelog/1.1.0_2021-01-22/add-ocis-url-env.md diff --git a/changelog/unreleased/disable-pretty-log.md b/changelog/1.1.0_2021-01-22/disable-pretty-log.md similarity index 100% rename from changelog/unreleased/disable-pretty-log.md rename to changelog/1.1.0_2021-01-22/disable-pretty-log.md diff --git a/changelog/unreleased/docker_image_volume.md b/changelog/1.1.0_2021-01-22/docker_image_volume.md similarity index 100% rename from changelog/unreleased/docker_image_volume.md rename to changelog/1.1.0_2021-01-22/docker_image_volume.md diff --git a/changelog/unreleased/expose-docker-image b/changelog/1.1.0_2021-01-22/expose-docker-image similarity index 100% rename from changelog/unreleased/expose-docker-image rename to changelog/1.1.0_2021-01-22/expose-docker-image diff --git a/changelog/unreleased/generate-secure-state.md b/changelog/1.1.0_2021-01-22/generate-secure-state.md similarity index 100% rename from changelog/unreleased/generate-secure-state.md rename to changelog/1.1.0_2021-01-22/generate-secure-state.md diff --git a/changelog/unreleased/move-k6.md b/changelog/1.1.0_2021-01-22/move-k6.md similarity index 100% rename from changelog/unreleased/move-k6.md rename to changelog/1.1.0_2021-01-22/move-k6.md diff --git a/changelog/unreleased/roles-cache.md b/changelog/1.1.0_2021-01-22/roles-cache.md similarity index 100% rename from changelog/unreleased/roles-cache.md rename to changelog/1.1.0_2021-01-22/roles-cache.md diff --git a/changelog/unreleased/sync-package.md b/changelog/1.1.0_2021-01-22/sync-package.md similarity index 100% rename from changelog/unreleased/sync-package.md rename to changelog/1.1.0_2021-01-22/sync-package.md diff --git a/changelog/unreleased/update-go-115.md b/changelog/1.1.0_2021-01-22/update-go-115.md similarity index 100% rename from changelog/unreleased/update-go-115.md rename to changelog/1.1.0_2021-01-22/update-go-115.md diff --git a/changelog/unreleased/update-reva-to-1.5.1.md b/changelog/1.1.0_2021-01-22/update-reva-to-1.5.1.md similarity index 100% rename from changelog/unreleased/update-reva-to-1.5.1.md rename to changelog/1.1.0_2021-01-22/update-reva-to-1.5.1.md diff --git a/changelog/unreleased/update-reva-to-f2b63bfd.md b/changelog/1.1.0_2021-01-22/update-reva-to-f2b63bfd.md similarity index 100% rename from changelog/unreleased/update-reva-to-f2b63bfd.md rename to changelog/1.1.0_2021-01-22/update-reva-to-f2b63bfd.md diff --git a/changelog/unreleased/update-web-1.0.1.md b/changelog/1.1.0_2021-01-22/update-web-1.0.1.md similarity index 100% rename from changelog/unreleased/update-web-1.0.1.md rename to changelog/1.1.0_2021-01-22/update-web-1.0.1.md From e5c78eca3f8136ac8216f55e593bcd3f359b2498 Mon Sep 17 00:00:00 2001 From: Patrick Maier Date: Mon, 25 Jan 2021 16:31:40 +0100 Subject: [PATCH 30/88] 1.1.0 release notes --- docs/ocis/release_notes.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/ocis/release_notes.md b/docs/ocis/release_notes.md index ff26c4028b..46143fcae8 100644 --- a/docs/ocis/release_notes.md +++ b/docs/ocis/release_notes.md @@ -7,6 +7,12 @@ geekdocEditPath: edit/master/docs/ocis geekdocFilePath: release_notes.md --- +## ownCloud Infinite Scale 1.1.0 Technology Preview + +Version 1.1.0 is a hardening and patch release. It ships with version 1.0.2 of ownCloud Web and brings a couple of dependency updates and minor improvements. The minor version increase is needed due to changes in configuration. The documentation has been updated to reflect the changes. Deployments with version 1.0.0 will not break, but the 1.1.0 deployment best practises are not backwards compatible. + +You can also read the full [ownCloud Infinite Scale changelog](https://github.com/owncloud/ocis/blob/master/CHANGELOG.md) for further details on what has changed. + ## ownCloud Infinite Scale 1.0.0 Technology Preview We are pleased to announce the availability of ownCloud Infinite Scale 1.0.0 Technology Preview which is released as the first public version of the new Infinite Scale platform. From a90cf56246163275994979eaf2f78cc5a68ba33c Mon Sep 17 00:00:00 2001 From: Patrick Maier Date: Mon, 25 Jan 2021 16:51:16 +0100 Subject: [PATCH 31/88] Update release_notes.md --- docs/ocis/release_notes.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/ocis/release_notes.md b/docs/ocis/release_notes.md index 46143fcae8..2d9044a6c8 100644 --- a/docs/ocis/release_notes.md +++ b/docs/ocis/release_notes.md @@ -9,7 +9,14 @@ geekdocFilePath: release_notes.md ## ownCloud Infinite Scale 1.1.0 Technology Preview -Version 1.1.0 is a hardening and patch release. It ships with version 1.0.2 of ownCloud Web and brings a couple of dependency updates and minor improvements. The minor version increase is needed due to changes in configuration. The documentation has been updated to reflect the changes. Deployments with version 1.0.0 will not break, but the 1.1.0 deployment best practises are not backwards compatible. +Version 1.1.0 is a hardening and patch release. It ships with the latest version of ownCloud Web and brings a couple of minor improvements. The minor version increase is needed due to non-backwards compatible changes in configuration. The documentation has been updated to reflect the changes. Please note that this version is still a Technology Preview and not suited for production use. + +The most prominent changes in version 1.1.0 comprise +- Performance and stability improvements for installations with multiple concurrent users +- Simplified configuration by introducing the new environment variable OCIS_URL +- Beta release of [ownCloud performance scripts](https://github.com/owncloud/cdperf) +- Update ownCloud web to [v1.0.1](https://github.com/owncloud/web/releases/tag/v1.0.1) +- Update reva to [v1.5.1](https://github.com/cs3org/reva/releases/tag/v1.5.1) You can also read the full [ownCloud Infinite Scale changelog](https://github.com/owncloud/ocis/blob/master/CHANGELOG.md) for further details on what has changed. From c2bdf7878e0145b820cd778814d4c966fad73ef4 Mon Sep 17 00:00:00 2001 From: Patrick Maier Date: Tue, 26 Jan 2021 14:44:21 +0000 Subject: [PATCH 32/88] Automated changelog update [skip ci] --- CHANGELOG.md | 62 ++++++++++++++++++++++++++++++---------------------- 1 file changed, 36 insertions(+), 26 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3dbd66faeb..22ee9bc6f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,42 @@ The following sections list the changes for unreleased. -[unreleased]: https://github.com/owncloud/ocis/compare/v1.0.0...master +[unreleased]: https://github.com/owncloud/ocis/compare/v1.1.0...master + +## Summary + +* Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) +* Enhancement - Update reva to v1.5.2-0.20210125114636-0c10b333ee69: [#1482](https://github.com/owncloud/ocis/pull/1482) + +## Details + +* Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) + + Tags: ocis, runtime + + Currently, the runtime is under the private account of an oCIS developer. For future-proofing + we don't want oCIS mission critical components to depend on external repositories, so we're + including refs/pman module as an oCIS package instead. + + https://github.com/owncloud/ocis/pull/1483 + +* Enhancement - Update reva to v1.5.2-0.20210125114636-0c10b333ee69: [#1482](https://github.com/owncloud/ocis/pull/1482) + + * initial checksum support for ocis [cs3org/reva#1400](https://github.com/cs3org/reva/pull/1400) + * Use updated etag of home directory even if it is cached [cs3org/reva#1416](https://github.com/cs3org/reva/pull/#1416) + * Indicate in EOS containers that TUS is not supported [cs3org/reva#1415](https://github.com/cs3org/reva/pull/#1415) + * Get status code from recycle response [cs3org/reva#1408](https://github.com/cs3org/reva/pull/#1408) + + https://github.com/owncloud/ocis/pull/1482 + https://github.com/cs3org/reva/pull/1400 + https://github.com/cs3org/reva/pull/1416 + https://github.com/cs3org/reva/pull/1415 + https://github.com/cs3org/reva/pull/1408 +# Changelog for [1.1.0] (2021-01-22) + +The following sections list the changes for 1.1.0. + +[1.1.0]: https://github.com/owncloud/ocis/compare/v1.0.0...v1.1.0 ## Summary @@ -11,13 +46,11 @@ The following sections list the changes for unreleased. * Change - Add "expose" information to docker images: [#1366](https://github.com/owncloud/ocis/pull/1366) * Change - Generate cryptographically secure state token: [#1203](https://github.com/owncloud/ocis/pull/1203) * Change - Move k6 to cdperf: [#1358](https://github.com/owncloud/ocis/pull/1358) -* Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) * Change - Update go version: [#1364](https://github.com/owncloud/ocis/pull/1364) * Change - Update ownCloud Web to v1.0.1: [#1191](https://github.com/owncloud/ocis/pull/1191) * Enhancement - Add OCIS_URL env var: [#1148](https://github.com/owncloud/ocis/pull/1148) * Enhancement - Use sync.cache for roles cache: [#1367](https://github.com/owncloud/ocis/pull/1367) * Enhancement - Add named locks and refactor cache: [#1212](https://github.com/owncloud/ocis/pull/1212) -* Enhancement - Update reva to v1.5.2-0.20210125114636-0c10b333ee69: [#1482](https://github.com/owncloud/ocis/pull/1482) * Enhancement - Update reva to v1.5.1: [#1372](https://github.com/owncloud/ocis/pull/1372) * Enhancement - Update reva to v1.4.1-0.20210111080247-f2b63bfd6825: [#1194](https://github.com/owncloud/ocis/pull/1194) @@ -67,16 +100,6 @@ The following sections list the changes for unreleased. https://github.com/owncloud/ocis/pull/1358 -* Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) - - Tags: ocis, runtime - - Currently, the runtime is under the private account of an oCIS developer. For future-proofing - we don't want oCIS mission critical components to depend on external repositories, so we're - including refs/pman module as an oCIS package instead. - - https://github.com/owncloud/ocis/pull/1483 - * Change - Update go version: [#1364](https://github.com/owncloud/ocis/pull/1364) Tags: go @@ -152,19 +175,6 @@ The following sections list the changes for unreleased. https://github.com/owncloud/ocis/issues/966 https://github.com/owncloud/ocis/pull/1212 -* Enhancement - Update reva to v1.5.2-0.20210125114636-0c10b333ee69: [#1482](https://github.com/owncloud/ocis/pull/1482) - - * initial checksum support for ocis [cs3org/reva#1400](https://github.com/cs3org/reva/pull/1400) - * Use updated etag of home directory even if it is cached [cs3org/reva#1416](https://github.com/cs3org/reva/pull/#1416) - * Indicate in EOS containers that TUS is not supported [cs3org/reva#1415](https://github.com/cs3org/reva/pull/#1415) - * Get status code from recycle response [cs3org/reva#1408](https://github.com/cs3org/reva/pull/#1408) - - https://github.com/owncloud/ocis/pull/1482 - https://github.com/cs3org/reva/pull/1400 - https://github.com/cs3org/reva/pull/1416 - https://github.com/cs3org/reva/pull/1415 - https://github.com/cs3org/reva/pull/1408 - * Enhancement - Update reva to v1.5.1: [#1372](https://github.com/owncloud/ocis/pull/1372) Summary ------- From 157fbb6143b17642543d2632a6d11cf208ca368a Mon Sep 17 00:00:00 2001 From: Florian Schade Date: Tue, 26 Jan 2021 18:42:32 +0100 Subject: [PATCH 33/88] update docs to use latest ocis --- docs/ocis/getting-started.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/ocis/getting-started.md b/docs/ocis/getting-started.md index 06e66e8576..9b595053f7 100644 --- a/docs/ocis/getting-started.md +++ b/docs/ocis/getting-started.md @@ -16,16 +16,20 @@ We are distributing oCIS as binaries and Docker images. You can find more deployments examples in the [deployment section](https://owncloud.github.io/ocis/deployment/) ### Binaries +You can find the latest official release of ocis at [our download mirror](https://download.owncloud.com/ocis/ocis/) or on [GitHub](https://github.com/owncloud/ocis/releases). +The latest build from the master branch can be found at [our download mirrors testing section](https://download.owncloud.com/ocis/ocis/testing/). -The binaries for different platforms are downloadable at [our download mirror](https://download.owncloud.com/ocis/ocis/) or on [GitHub](https://github.com/owncloud/ocis/releases). Latest binaries from the master branch can be found at [our download mirrors testing section](https://download.owncloud.com/ocis/ocis/testing/). +To run ocis as binary you need to download it first and then run the following commands. +For this example, assuming version 1.1.0 of ocis running on a Linux AMD64 host: ```console -# for mac -curl https://download.owncloud.com/ocis/ocis/1.0.0/ocis-1.0.0-darwin-amd64 --output ocis -# for linux -curl https://download.owncloud.com/ocis/ocis/1.0.0/ocis-1.0.0-linux-amd64 --output ocis +# download +curl https://download.owncloud.com/ocis/ocis/1.1.0/ocis-1.1.0-linux-amd64 --output ocis + # make binary executable chmod +x ocis + +# run ./ocis server ``` From d7b1ecb3dc40ca0f7661f2c58bf2603e93ab65d2 Mon Sep 17 00:00:00 2001 From: Pascal Wengerter Date: Thu, 28 Jan 2021 00:32:47 +0000 Subject: [PATCH 34/88] Change (ocis,OCIS) to oCIS, unify GitHub branding --- .github/pull_request_template.md | 2 +- accounts/pkg/proto/v0/accounts.pb.go | 10 +++--- accounts/pkg/proto/v0/accounts.proto | 10 +++--- accounts/pkg/proto/v0/accounts.swagger.json | 10 +++--- .../user-agent-challenge-lock-in.md | 4 +-- .../1.1.0_2021-01-22/add-ocis-url-env.md | 4 +-- changelog/1.1.0_2021-01-22/move-k6.md | 2 +- .../1.1.0_2021-01-22/update-reva-to-1.5.1.md | 2 +- .../cs3_users_ocis/docker-compose.yaml | 2 +- docs/_index.md | 6 ++-- docs/extensions/glauth/_index.md | 2 +- docs/extensions/settings/glossary.md | 2 +- docs/extensions/storage/_index.md | 4 +-- docs/extensions/storage/storages.md | 4 +-- docs/ocis/deployment/basic-remote-setup.md | 12 +++---- docs/ocis/deployment/ocis_keycloak.md | 2 +- docs/ocis/development/debugging.md | 2 +- docs/ocis/getting-started.md | 4 +-- ocis/pkg/runtime/README.md | 2 +- ocis/pkg/runtime/cmd/root.go | 4 +-- ocis/pkg/runtime/controller/controller.go | 6 ++-- ocis/pkg/runtime/runtime.go | 6 ++-- ocs/pkg/service/v0/users.go | 2 +- proxy/pkg/middleware/authentication.go | 2 +- .../expected-failures-API-on-EOS-storage.md | 2 +- .../expected-failures-API-on-OCIS-storage.md | 32 +++++++++---------- ...pected-failures-API-on-OWNCLOUD-storage.md | 18 +++++------ 27 files changed, 79 insertions(+), 79 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index d83ea85582..85a7126224 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -7,7 +7,7 @@ For fixing potential security issues please see https://owncloud.org/security/ To make it possible for us to get your change reviewed and merged please carefully fill out the requested information below. -Please note that any kind of change needs first be submitted to the master branch which holds the next version of OCIS. +Please note that any kind of change needs first be submitted to the master branch which holds the next version of oCIS. Please set the following labels: diff --git a/accounts/pkg/proto/v0/accounts.pb.go b/accounts/pkg/proto/v0/accounts.pb.go index d265ca3131..028688ccfa 100644 --- a/accounts/pkg/proto/v0/accounts.pb.go +++ b/accounts/pkg/proto/v0/accounts.pb.go @@ -480,12 +480,12 @@ type Account struct { IsResourceAccount bool `protobuf:"varint,3,opt,name=is_resource_account,json=isResourceAccount,proto3" json:"is_resource_account,omitempty"` // Indicates whether the account was created as // - a regular school or work account ("" / emptystring), - // - a local account, fully managed by ocis (LocalAccount), includes synced accounts or + // - a local account, fully managed by oCIS (LocalAccount), includes synced accounts or // - an external account (Invitation), // - self-service sign-up using email verification (EmailVerified). Read-only. CreationType string `protobuf:"bytes,4,opt,name=creation_type,json=creationType,proto3" json:"creation_type,omitempty"` // Represents the identities that can be used to sign in to this account. - // An identity can be provided by OCIS (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and is tied to an account. + // An identity can be provided by oCIS (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and is tied to an account. // May contain multiple items with the same signInType value. Supports $filter. Identities []*Identities `protobuf:"bytes,5,rep,name=identities,proto3" json:"identities,omitempty"` // The name displayed in the address book for the account. @@ -527,7 +527,7 @@ type Account struct { // *false* if this object was originally synced from an on-premises directory but is no longer synced; // null if this object has never been synced from an on-premises directory (default). Read-only OnPremisesSyncEnabled bool `protobuf:"varint,20,opt,name=on_premises_sync_enabled,json=onPremisesSyncEnabled,proto3" json:"on_premises_sync_enabled,omitempty"` - // This property is used to associate an on-premises LDAP user to the ocis account object. + // This property is used to associate an on-premises LDAP user to the oCIS account object. // This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user’s userPrincipalName (UPN) property. // Important: The $ and _ characters cannot be used when specifying this property. Supports $filter. OnPremisesImmutableId string `protobuf:"bytes,21,opt,name=on_premises_immutable_id,json=onPremisesImmutableId,proto3" json:"on_premises_immutable_id,omitempty"` @@ -796,7 +796,7 @@ func (x *Account) GetSignInSessionsValidFromDateTime() *timestamp.Timestamp { } // Identities Represents an identity used to sign in to a user account. -// An identity can be provided by ocis, by organizations, or by social identity providers such as Facebook, Google, or Microsoft, that are tied to a user account. +// An identity can be provided by oCIS, by organizations, or by social identity providers such as Facebook, Google, or Microsoft, that are tied to a user account. // This enables the user to sign in to the user account with any of those associated identities. // They are also used to keep a history of old usernames. type Identities struct { @@ -1643,7 +1643,7 @@ type Group struct { // null if this object has never been synced from an on-premises directory (default). // Returned by default. Read-only. Supports $filter. OnPremisesSyncEnabled bool `protobuf:"varint,20,opt,name=on_premises_sync_enabled,json=onPremisesSyncEnabled,proto3" json:"on_premises_sync_enabled,omitempty"` - // This property is used to associate an on-premises LDAP user to the ocis account object. + // This property is used to associate an on-premises LDAP user to the oCIS account object. // This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user’s userPrincipalName (UPN) property. // Important: The $ and _ characters cannot be used when specifying this property. Supports $filter. OnPremisesImmutableId string `protobuf:"bytes,21,opt,name=on_premises_immutable_id,json=onPremisesImmutableId,proto3" json:"on_premises_immutable_id,omitempty"` diff --git a/accounts/pkg/proto/v0/accounts.proto b/accounts/pkg/proto/v0/accounts.proto index 9410491d29..cdc24882e7 100644 --- a/accounts/pkg/proto/v0/accounts.proto +++ b/accounts/pkg/proto/v0/accounts.proto @@ -242,13 +242,13 @@ message Account { // Indicates whether the account was created as // - a regular school or work account ("" / emptystring), - // - a local account, fully managed by ocis (LocalAccount), includes synced accounts or + // - a local account, fully managed by oCIS (LocalAccount), includes synced accounts or // - an external account (Invitation), // - self-service sign-up using email verification (EmailVerified). Read-only. string creation_type = 4; // Represents the identities that can be used to sign in to this account. - // An identity can be provided by OCIS (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and is tied to an account. + // An identity can be provided by oCIS (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and is tied to an account. // May contain multiple items with the same signInType value. Supports $filter. repeated Identities identities = 5; @@ -321,7 +321,7 @@ message Account { // null if this object has never been synced from an on-premises directory (default). Read-only bool on_premises_sync_enabled = 20; - // This property is used to associate an on-premises LDAP user to the ocis account object. + // This property is used to associate an on-premises LDAP user to the oCIS account object. // This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user’s userPrincipalName (UPN) property. // Important: The $ and _ characters cannot be used when specifying this property. Supports $filter. string on_premises_immutable_id = 21; @@ -382,7 +382,7 @@ message Account { } // Identities Represents an identity used to sign in to a user account. -// An identity can be provided by ocis, by organizations, or by social identity providers such as Facebook, Google, or Microsoft, that are tied to a user account. +// An identity can be provided by oCIS, by organizations, or by social identity providers such as Facebook, Google, or Microsoft, that are tied to a user account. // This enables the user to sign in to the user account with any of those associated identities. // They are also used to keep a history of old usernames. message Identities { @@ -627,7 +627,7 @@ message Group { // Returned by default. Read-only. Supports $filter. bool on_premises_sync_enabled = 20; - // This property is used to associate an on-premises LDAP user to the ocis account object. + // This property is used to associate an on-premises LDAP user to the oCIS account object. // This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user’s userPrincipalName (UPN) property. // Important: The $ and _ characters cannot be used when specifying this property. Supports $filter. string on_premises_immutable_id = 21; diff --git a/accounts/pkg/proto/v0/accounts.swagger.json b/accounts/pkg/proto/v0/accounts.swagger.json index 37f50807d9..084f43f4ea 100644 --- a/accounts/pkg/proto/v0/accounts.swagger.json +++ b/accounts/pkg/proto/v0/accounts.swagger.json @@ -568,14 +568,14 @@ }, "creation_type": { "type": "string", - "description": "Indicates whether the account was created as\n- a regular school or work account (\"\" / emptystring),\n- a local account, fully managed by ocis (LocalAccount), includes synced accounts or\n- an external account (Invitation),\n- self-service sign-up using email verification (EmailVerified). Read-only." + "description": "Indicates whether the account was created as\n- a regular school or work account (\"\" / emptystring),\n- a local account, fully managed by oCIS (LocalAccount), includes synced accounts or\n- an external account (Invitation),\n- self-service sign-up using email verification (EmailVerified). Read-only." }, "identities": { "type": "array", "items": { "$ref": "#/definitions/settingsIdentities" }, - "description": "Represents the identities that can be used to sign in to this account.\nAn identity can be provided by OCIS (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and is tied to an account.\nMay contain multiple items with the same signInType value. Supports $filter." + "description": "Represents the identities that can be used to sign in to this account.\nAn identity can be provided by oCIS (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and is tied to an account.\nMay contain multiple items with the same signInType value. Supports $filter." }, "display_name": { "type": "string", @@ -631,7 +631,7 @@ }, "on_premises_immutable_id": { "type": "string", - "description": "This property is used to associate an on-premises LDAP user to the ocis account object.\nThis property must be specified when creating a new user account in the Graph if you are using a federated domain for the user’s userPrincipalName (UPN) property.\nImportant: The $ and _ characters cannot be used when specifying this property. Supports $filter." + "description": "This property is used to associate an on-premises LDAP user to the oCIS account object.\nThis property must be specified when creating a new user account in the Graph if you are using a federated domain for the user’s userPrincipalName (UPN) property.\nImportant: The $ and _ characters cannot be used when specifying this property. Supports $filter." }, "on_premises_security_identifier": { "type": "string", @@ -815,7 +815,7 @@ }, "on_premises_immutable_id": { "type": "string", - "description": "This property is used to associate an on-premises LDAP user to the ocis account object.\nThis property must be specified when creating a new user account in the Graph if you are using a federated domain for the user’s userPrincipalName (UPN) property.\nImportant: The $ and _ characters cannot be used when specifying this property. Supports $filter." + "description": "This property is used to associate an on-premises LDAP user to the oCIS account object.\nThis property must be specified when creating a new user account in the Graph if you are using a federated domain for the user’s userPrincipalName (UPN) property.\nImportant: The $ and _ characters cannot be used when specifying this property. Supports $filter." }, "on_premises_security_identifier": { "type": "string", @@ -866,7 +866,7 @@ "description": "Specifies the unique identifier assigned to the user by the issuer. The combination of *issuer* and *issuerAssignedId* must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).\nWhen *signInType* is set to:\n* `emailAddress`, (or starts with `emailAddress` like `emailAddress1`) *issuerAssignedId* must be a valid email address\n* `userName`, issuer_assigned_id must be a valid local part of an email address\nSupports $filter. 512 character limit." } }, - "description": "Identities Represents an identity used to sign in to a user account.\nAn identity can be provided by ocis, by organizations, or by social identity providers such as Facebook, Google, or Microsoft, that are tied to a user account.\nThis enables the user to sign in to the user account with any of those associated identities.\nThey are also used to keep a history of old usernames." + "description": "Identities Represents an identity used to sign in to a user account.\nAn identity can be provided by oCIS, by organizations, or by social identity providers such as Facebook, Google, or Microsoft, that are tied to a user account.\nThis enables the user to sign in to the user account with any of those associated identities.\nThey are also used to keep a history of old usernames." }, "settingsListAccountsRequest": { "type": "object", diff --git a/changelog/1.0.0_2020-12-17/user-agent-challenge-lock-in.md b/changelog/1.0.0_2020-12-17/user-agent-challenge-lock-in.md index f89ab4eb2a..74a1eca9ab 100644 --- a/changelog/1.0.0_2020-12-17/user-agent-challenge-lock-in.md +++ b/changelog/1.0.0_2020-12-17/user-agent-challenge-lock-in.md @@ -4,7 +4,7 @@ Tags: reva, proxy We now comply with HTTP spec by adding Www-Authenticate headers on every `401` request. Furthermore, we not only take care of such a thing at the Proxy but also Reva will take care of it. In addition, we now are able to lock-in a set of User-Agent to specific challenges. -Admins can use this feature by configuring OCIS + Reva following this approach: +Admins can use this feature by configuring oCIS + Reva following this approach: ``` STORAGE_FRONTEND_MIDDLEWARE_AUTH_CREDENTIALS_BY_USER_AGENT="mirall:basic, Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:83.0) Gecko/20100101 Firefox/83.0:bearer" \ @@ -15,6 +15,6 @@ go run cmd/ocis/main.go server We introduced two new environment variables: -`STORAGE_FRONTEND_MIDDLEWARE_AUTH_CREDENTIALS_BY_USER_AGENT` as well as `PROXY_MIDDLEWARE_AUTH_CREDENTIALS_BY_USER_AGENT`, The reason they have the same value is not to rely on the os env on a distributed environment, so in redundancy we trust. They both configure the same on the backend storage and OCIS Proxy. +`STORAGE_FRONTEND_MIDDLEWARE_AUTH_CREDENTIALS_BY_USER_AGENT` as well as `PROXY_MIDDLEWARE_AUTH_CREDENTIALS_BY_USER_AGENT`, The reason they have the same value is not to rely on the os env on a distributed environment, so in redundancy we trust. They both configure the same on the backend storage and oCIS Proxy. https://github.com/owncloud/ocis/pull/1009 diff --git a/changelog/1.1.0_2021-01-22/add-ocis-url-env.md b/changelog/1.1.0_2021-01-22/add-ocis-url-env.md index d8f349c0c5..0770b5e84e 100644 --- a/changelog/1.1.0_2021-01-22/add-ocis-url-env.md +++ b/changelog/1.1.0_2021-01-22/add-ocis-url-env.md @@ -10,8 +10,8 @@ Some environment variables are now built dynamically if they are not set: Furthermore, the built in konnectd will generate an `identifier-registration.yaml` that uses the `KONNECTD_ISS` in the allowed `redirect_uris` and `origins`. It simplifies the default `https://localhost:9200` and remote deployment with `OCIS_URL` which is evaluated as a fallback if `KONNECTD_ISS` is not set. -An OCIS server can now be started on a remote machine as easy as `OCIS_URL=https://cloud.ocis.test PROXY_HTTP_ADDR=0.0.0.0:443 ocis server`. +An oCIS server can now be started on a remote machine as easy as `OCIS_URL=https://cloud.ocis.test PROXY_HTTP_ADDR=0.0.0.0:443 ocis server`. -Note that the `OCIS_DOMAIN` environment variable is not used by ocis, but by the docker containers. +Note that the `OCIS_DOMAIN` environment variable is not used by oCIS, but by the docker containers. https://github.com/owncloud/ocis/pull/1148 diff --git a/changelog/1.1.0_2021-01-22/move-k6.md b/changelog/1.1.0_2021-01-22/move-k6.md index 55dba76491..c6fe2387f3 100644 --- a/changelog/1.1.0_2021-01-22/move-k6.md +++ b/changelog/1.1.0_2021-01-22/move-k6.md @@ -2,7 +2,7 @@ Change: Move k6 to cdperf Tags: performance, testing, k6 -The ownCloud performance tests can not only be used to test ocis. +The ownCloud performance tests can not only be used to test oCIS. This is why we have decided to move the k6 tests to https://github.com/owncloud/cdperf https://github.com/owncloud/ocis/pull/1358 diff --git a/changelog/1.1.0_2021-01-22/update-reva-to-1.5.1.md b/changelog/1.1.0_2021-01-22/update-reva-to-1.5.1.md index 4ea6f224a8..ded0a34767 100644 --- a/changelog/1.1.0_2021-01-22/update-reva-to-1.5.1.md +++ b/changelog/1.1.0_2021-01-22/update-reva-to-1.5.1.md @@ -58,7 +58,7 @@ Details * Enhancement #1393: Allow setting favorites, mtime and a temporary etag - We now let the ocis driver persist favorites, set temporary etags and the mtime as arbitrary + We now let the oCIS driver persist favorites, set temporary etags and the mtime as arbitrary metadata. https://github.com/owncloud/ocis/issues/567 diff --git a/deployments/examples/cs3_users_ocis/docker-compose.yaml b/deployments/examples/cs3_users_ocis/docker-compose.yaml index 7e62f6844a..ca2e188dcc 100644 --- a/deployments/examples/cs3_users_ocis/docker-compose.yaml +++ b/deployments/examples/cs3_users_ocis/docker-compose.yaml @@ -68,7 +68,7 @@ services: STORAGE_LDAP_ATTRIBUTEFILTER: '(&(objectclass=owncloud)({{attr}}={{value}}))' STORAGE_LDAP_FINDFILTER: '(&(objectclass=owncloud)(|(uid={{query}}*)(cn={{query}}*)(displayname={{query}}*)(mail={{query}}*)(description={{query}}*)))' STORAGE_LDAP_GROUPFILTER: '(&(objectclass=groupOfUniqueNames)(objectclass=owncloud)(ownclouduuid={{.OpaqueId}}*))' - # General ocis config + # General oCIS config OCIS_URL: https://${OCIS_DOMAIN:-ocis.owncloud.test} OCIS_LOG_LEVEL: ${OCIS_LOG_LEVEL:-error} # make oCIS less verbose PROXY_OIDC_INSECURE: "${INSECURE:-false}" # needed if Traefik is using self generated certificates diff --git a/docs/_index.md b/docs/_index.md index e900969ba0..2b8c4c5728 100644 --- a/docs/_index.md +++ b/docs/_index.md @@ -22,14 +22,14 @@ Welcome to our developer documentation. Here you can find developer documentatio The oCIS server is Apache v2 licensed. The lower storage layer of oCIS is defined by the CS3 APIs and implemented in the REVA project. Our goal is to develop the CS3 APIs to an open standard and collaborate on the open source REVA reference implementation for CS3 APIs. -You can also find all client sources on github. +You can also find all client sources on GitHub. ## Join us -The oCIS server repository on github is a good entry point for you to join the project. But we also develop clients for iOS, Android, Desktop and Web. +The oCIS server repository on GitHub is a good entry point for you to join the project. But we also develop clients for iOS, Android, Desktop and Web. For communication on development you can join our public chat [talk.owncloud.com](https://talk.owncloud.com) -If you want to help and improve ownCloud or oCIS, start coding or open issues on github in the related repository. +If you want to help and improve ownCloud or oCIS, start coding or open issues on GitHub in the related repository. We are very happy to hear your feedback and ideas! diff --git a/docs/extensions/glauth/_index.md b/docs/extensions/glauth/_index.md index e65e2783bc..2359429dc0 100644 --- a/docs/extensions/glauth/_index.md +++ b/docs/extensions/glauth/_index.md @@ -8,6 +8,6 @@ geekdocFilePath: _index.md geekdocCollapseSection: true --- -This service provides a [glauth](https://github.com/glauth/glauth) based LDAP proxy for ocis which can be used by clients or other extensions. It allows applications relying on LDAP to access the accounts stored in the ocis accounts service. It can be used to make firewalls or identity providers aware of all users, including guest accounts. +This service provides a [glauth](https://github.com/glauth/glauth) based LDAP proxy for oCIS which can be used by clients or other extensions. It allows applications relying on LDAP to access the accounts stored in the oCIS accounts service. It can be used to make firewalls or identity providers aware of all users, including guest accounts. We are using it to make eos aware of all accounts so the native ACLs can be used to persist share information in the storage. diff --git a/docs/extensions/settings/glossary.md b/docs/extensions/settings/glossary.md index 4e7afb8386..bf8abe4402 100644 --- a/docs/extensions/settings/glossary.md +++ b/docs/extensions/settings/glossary.md @@ -39,4 +39,4 @@ In the context of this extension and oCIS in general, we are using the following - Manifestation of a setting for a specific user - E.g. used for customization (at runtime) in `ocis-web` - `ocis-web-settings` extension for modifying settings values is provided by this service -- Can be queried and modified by other ocis extensions +- Can be queried and modified by other oCIS extensions diff --git a/docs/extensions/storage/_index.md b/docs/extensions/storage/_index.md index 5f1ea9c76a..c76156a528 100644 --- a/docs/extensions/storage/_index.md +++ b/docs/extensions/storage/_index.md @@ -8,7 +8,7 @@ geekdocFilePath: _index.md geekdocCollapseSection: true --- -This service provides an ocis extension that wraps [reva](https://github.com/cs3org/reva/) and adds an opinionated configuration to it. +This service provides an oCIS extension that wraps [reva](https://github.com/cs3org/reva/) and adds an opinionated configuration to it. It uses the port range 9140-9179 to preconfigure several services. @@ -43,4 +43,4 @@ It uses the port range 9140-9179 to preconfigure several services. | 9165 | storage oc data debug | | 9166-9177 | reserved for s3, wnd, custom + data providers | | 9178 | storage public link | -| 9179 | storage public link data | \ No newline at end of file +| 9179 | storage public link data | diff --git a/docs/extensions/storage/storages.md b/docs/extensions/storage/storages.md index 0a3eec64c1..6172dc10ef 100644 --- a/docs/extensions/storage/storages.md +++ b/docs/extensions/storage/storages.md @@ -13,11 +13,11 @@ geekdocFilePath: storages.md ## Storage providers -To manage the file tree ocis uses storage *storage providers* that are accessing the underlying storage using a *storage driver*. The driver can be used to change the implementation of a storage aspect to better reflect the actual underlying storage capabilities. As an example a move operation on a POSIX filesystem ([theoretically](https://danluu.com/deconstruct-files/)) is an atomic operation. When trying to implement a file tree on top of S3 there is no native move operation that can be used. A naive implementation might fall back on a COPY and DELETE. Some S3 implementations provide a COPY operation that uses an existing key as the source, so the file at least does not need to be reuploaded. In the worst case scenario, which is renaming a folder with hundreds of thousands of objects, a reupload for every file has to be made. Instead of hiding this complexity a better choice might be to disable renaming of files or at least folders on S3. There are however implementations of filesystems on top of S3 that store the tree metadata in dedicated objects or use a completely different persistence mechanism like a distributed key value store to implement the file tree aspect of a storage. +To manage the file tree oCIS uses *storage providers* that are accessing the underlying storage using a *storage driver*. The driver can be used to change the implementation of a storage aspect to better reflect the actual underlying storage capabilities. As an example a move operation on a POSIX filesystem ([theoretically](https://danluu.com/deconstruct-files/)) is an atomic operation. When trying to implement a file tree on top of S3 there is no native move operation that can be used. A naive implementation might fall back on a COPY and DELETE. Some S3 implementations provide a COPY operation that uses an existing key as the source, so the file at least does not need to be reuploaded. In the worst case scenario, which is renaming a folder with hundreds of thousands of objects, a reupload for every file has to be made. Instead of hiding this complexity a better choice might be to disable renaming of files or at least folders on S3. There are however implementations of filesystems on top of S3 that store the tree metadata in dedicated objects or use a completely different persistence mechanism like a distributed key value store to implement the file tree aspect of a storage. {{< hint info >}} -While the *storage provider* is responsible for managing the tree, file up and download is delegated to a dedicated *data provider*. See below. +While the *storage provider* is responsible for managing the tree, file up- and downloads are delegated to a dedicated *data provider*. See below. {{< /hint >}} ## Storage aspects diff --git a/docs/ocis/deployment/basic-remote-setup.md b/docs/ocis/deployment/basic-remote-setup.md index a3fcac6a49..b022cf2c8f 100644 --- a/docs/ocis/deployment/basic-remote-setup.md +++ b/docs/ocis/deployment/basic-remote-setup.md @@ -9,13 +9,13 @@ geekdocFilePath: basic-remote-setup.md {{< toc >}} -Out of the box the ocis single binary and the `owncloud/ocis` docker image are configured to run on localhost for quick testing and development. +Out of the box the oCIS single binary and the `owncloud/ocis` docker image are configured to run on localhost for quick testing and development. -If you need to access ocis on a VM or a remote machine e.g. when testing a mobile client you need to configure ocis to run on a different host. +If you need to access oCIS on a VM or a remote machine e.g. when testing a mobile client you need to configure oCIS to run on a different host. ## Use the binary -If you start the ocis fullstack for the first time with `./bin/ocis server` it will generate a file `identifier-registration.yml` in the config folder relative to its location. This file is used to configure the clients for the built-in Identity Provider. +If you start the oCIS fullstack for the first time with `./bin/ocis server` it will generate a file `identifier-registration.yml` in the config folder relative to its location. This file is used to configure the clients for the built-in Identity Provider. {{< hint warning >}} **Outdated version**\ @@ -52,11 +52,11 @@ clients: In this example we do not change the default port (`9200`). But this could be changed to another port. -### Start the ocis fullstack server +### Start the oCIS fullstack server You need to configure `your-host` in some services to provide the needed public resources. -This snippet will start the ocis server with auto generated self signed certificates: +This snippet will start the oCIS server with auto generated self signed certificates: ```bash PROXY_HTTP_ADDR=0.0.0.0:9200 \ @@ -65,7 +65,7 @@ KONNECTD_TLS=0 \ ./bin/ocis server ``` -For more configuration options check the configuration section in [ocis](https://owncloud.github.io/ocis/configuration/) and every ocis extension. +For more configuration options check the configuration section in [ocis](https://owncloud.github.io/ocis/configuration/) and every oCIS extension. {{< hint info >}} **TLS Certificate**\ diff --git a/docs/ocis/deployment/ocis_keycloak.md b/docs/ocis/deployment/ocis_keycloak.md index 50ad39b46d..34452b7cac 100644 --- a/docs/ocis/deployment/ocis_keycloak.md +++ b/docs/ocis/deployment/ocis_keycloak.md @@ -91,7 +91,7 @@ See also [example server setup]({{< ref "preparing_server.md" >}}) Traefik will issue certificates with LetsEncrypt and therefore you must set an email address in `TRAEFIK_ACME_MAIL=`. - By default ocis will be started in the `latest` version. If you want to start a specific version of oCIS set the version to `OCIS_DOCKER_TAG=`. Available versions can be found on [Docker Hub](https://hub.docker.com/r/owncloud/ocis/tags?page=1&ordering=last_updated). + By default oCIS will be started in the `latest` version. If you want to start a specific version of oCIS set the version to `OCIS_DOCKER_TAG=`. Available versions can be found on [Docker Hub](https://hub.docker.com/r/owncloud/ocis/tags?page=1&ordering=last_updated). Set your domain for the oCIS frontend in `OCIS_DOMAIN=`, eg. `OCIS_DOMAIN=ocis.owncloud.test`. diff --git a/docs/ocis/development/debugging.md b/docs/ocis/development/debugging.md index a5465f9eb4..a76bb32761 100644 --- a/docs/ocis/development/debugging.md +++ b/docs/ocis/development/debugging.md @@ -139,7 +139,7 @@ bin/ocis --log-level=$LOG_LEVEL proxy & ### Gather error messages -We recommend you collect all related information in a single file or in a github issue. Let us start with an error that pops up in the Web UI: +We recommend you collect all related information in a single file or in a GitHub issue. Let us start with an error that pops up in the Web UI: > Error while sharing. > error sending a grpc stat request diff --git a/docs/ocis/getting-started.md b/docs/ocis/getting-started.md index 9b595053f7..dd54ba2ec2 100644 --- a/docs/ocis/getting-started.md +++ b/docs/ocis/getting-started.md @@ -19,8 +19,8 @@ You can find more deployments examples in the [deployment section](https://owncl You can find the latest official release of ocis at [our download mirror](https://download.owncloud.com/ocis/ocis/) or on [GitHub](https://github.com/owncloud/ocis/releases). The latest build from the master branch can be found at [our download mirrors testing section](https://download.owncloud.com/ocis/ocis/testing/). -To run ocis as binary you need to download it first and then run the following commands. -For this example, assuming version 1.1.0 of ocis running on a Linux AMD64 host: +To run oCIS as binary you need to download it first and then run the following commands. +For this example, assuming version 1.1.0 of oCIS running on a Linux AMD64 host: ```console # download diff --git a/ocis/pkg/runtime/README.md b/ocis/pkg/runtime/README.md index 8d8c7ce190..ae09ba6000 100644 --- a/ocis/pkg/runtime/README.md +++ b/ocis/pkg/runtime/README.md @@ -65,4 +65,4 @@ func main() { } ``` -Run the above example with `RUNTIME_KEEP_ALIVE=true` and with no `RUNTIME_KEEP_ALIVE` set to see its behavior. It requires an [OCIS binary](https://github.com/owncloud/ocis/releases) present in your `$PATH` for it to work. +Run the above example with `RUNTIME_KEEP_ALIVE=true` and with no `RUNTIME_KEEP_ALIVE` set to see its behavior. It requires an [oCIS binary](https://github.com/owncloud/ocis/releases) present in your `$PATH` for it to work. diff --git a/ocis/pkg/runtime/cmd/root.go b/ocis/pkg/runtime/cmd/root.go index 0c505b2ba6..c461bb3eb0 100644 --- a/ocis/pkg/runtime/cmd/root.go +++ b/ocis/pkg/runtime/cmd/root.go @@ -15,8 +15,8 @@ var ( // RootCmd returns a configured root command. func RootCmd(cfg *config.Config) *cobra.Command { - rootCmd.PersistentFlags().StringVarP(&cfg.Hostname, "hostname", "n", "localhost", "host with a running OCIS runtime.") - rootCmd.PersistentFlags().StringVarP(&cfg.Port, "port", "p", "10666", "port to send messages to the rpc OCIS runtime.") + rootCmd.PersistentFlags().StringVarP(&cfg.Hostname, "hostname", "n", "localhost", "host with a running oCIS runtime.") + rootCmd.PersistentFlags().StringVarP(&cfg.Port, "port", "p", "10666", "port to send messages to the rpc oCIS runtime.") rootCmd.PersistentFlags().BoolVarP(&cfg.KeepAlive, "keep-alive", "k", false, "restart supervised processes that abruptly die.") viper.BindPFlag("hostname", rootCmd.PersistentFlags().Lookup("hostname")) diff --git a/ocis/pkg/runtime/controller/controller.go b/ocis/pkg/runtime/controller/controller.go index 5c58c4e89c..3180e1a9b7 100644 --- a/ocis/pkg/runtime/controller/controller.go +++ b/ocis/pkg/runtime/controller/controller.go @@ -28,10 +28,10 @@ type Controller struct { Store storage.Storage - // Bin is the OCIS single binary name. + // Bin is the oCIS single binary name. Bin string - // BinPath is the OCIS single binary path withing the host machine. + // BinPath is the oCIS single binary path withing the host machine. // The Controller needs to know the binary location in order to spawn new extensions. BinPath string @@ -70,7 +70,7 @@ func NewController(o ...Option) Controller { // Get binary location from $PATH lookup. If not present, it uses arg[0] as entry point. path, err := exec.LookPath(c.Bin) if err != nil { - c.log.Debug().Msg("OCIS binary not present in PATH, using Args[0]") + c.log.Debug().Msg("oCIS binary not present in PATH, using Args[0]") path = os.Args[0] } c.BinPath = path diff --git a/ocis/pkg/runtime/runtime.go b/ocis/pkg/runtime/runtime.go index a2849809b8..8485ceef5a 100644 --- a/ocis/pkg/runtime/runtime.go +++ b/ocis/pkg/runtime/runtime.go @@ -30,7 +30,7 @@ var ( "registry", // :8000 } - // Extensions are ocis extension services + // Extensions are oCIS extension services Extensions = []string{ "glauth", "konnectd", @@ -70,7 +70,7 @@ type Runtime struct { c *config.Config } -// New creates a new ocis + micro runtime +// New creates a new oCIS + micro runtime func New(cfg *config.Config) Runtime { return Runtime{ c: cfg, @@ -85,7 +85,7 @@ func (r *Runtime) Start() error { ) } -// Launch ocis default ocis extensions. +// Launch oCIS default oCIS extensions. func (r *Runtime) Launch() { var client *rpc.Client var err error diff --git a/ocs/pkg/service/v0/users.go b/ocs/pkg/service/v0/users.go index a9d3ca0f65..906a8ef09f 100644 --- a/ocs/pkg/service/v0/users.go +++ b/ocs/pkg/service/v0/users.go @@ -154,7 +154,7 @@ func (o Ocs) AddUser(w http.ResponseWriter, r *http.Request) { // fallbacks /* TODO decide if we want to make these fallbacks. Keep in mind: - - ocis requires a preferred_name and email + - oCIS requires a preferred_name and email */ if displayname == "" { displayname = userid diff --git a/proxy/pkg/middleware/authentication.go b/proxy/pkg/middleware/authentication.go index 9759a6a80b..1c98857275 100644 --- a/proxy/pkg/middleware/authentication.go +++ b/proxy/pkg/middleware/authentication.go @@ -13,7 +13,7 @@ var ( SupportedAuthStrategies []string // ProxyWwwAuthenticate is a list of endpoints that do not rely on reva underlying authentication, such as ocs. - // services that fallback to reva authentication are declared in the "frontend" command on OCIS. It is a list of strings + // services that fallback to reva authentication are declared in the "frontend" command on oCIS. It is a list of strings // to be regexp compiled. ProxyWwwAuthenticate = []string{"/ocs/v[12].php/cloud/"} diff --git a/tests/acceptance/expected-failures-API-on-EOS-storage.md b/tests/acceptance/expected-failures-API-on-EOS-storage.md index e81170cf93..7e30f2f97b 100644 --- a/tests/acceptance/expected-failures-API-on-EOS-storage.md +++ b/tests/acceptance/expected-failures-API-on-EOS-storage.md @@ -1053,7 +1053,7 @@ to be investigated and issues raised or comments added here - [apiWebdavUpload2/uploadFileUsingOldChunking.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L100) - [apiWebdavUpload2/uploadFileUsingOldChunking.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L101) -### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) +### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - [apiWebdavPreviews/previews.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L15) - [apiWebdavPreviews/previews.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L16) - [apiWebdavPreviews/previews.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L17) diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index 9ed95ef244..bc5b1b601a 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -1,6 +1,6 @@ -## Scenarios from ownCloud10 core API tests that are expected to fail with OCIS storage +## Scenarios from ownCloud10 core API tests that are expected to fail with oCIS storage -### Test scenarios that specifically fail with OCIS storage +### Test scenarios that specifically fail with oCIS storage - [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) - [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) @@ -453,7 +453,7 @@ ### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) ### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) -### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) +### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) - [apiSharePublicLink1/accessToPublicLinkShare.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L20) @@ -572,14 +572,14 @@ - [apiSharePublicLink2/updatePublicLinkShare.feature:321](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L321) - [apiSharePublicLink2/updatePublicLinkShare.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L322) -### [OCIS share permissions not enforced](https://github.com/owncloud/product/issues/270) +### [oCIS share permissions not enforced](https://github.com/owncloud/product/issues/270) - [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L157) - [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L158) - [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L179) - [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L180) -### [OCIS old public webdav api doesnt works](https://github.com/owncloud/product/issues/272) +### [oCIS old public webdav api doesnt works](https://github.com/owncloud/product/issues/272) - [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L30) - [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L31) @@ -645,7 +645,7 @@ - [apiSharePublicLink2/uploadToPublicLinkShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L238) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L255) -### [Resharing does not work with ocis storage](https://github.com/owncloud/product/issues/265) +### [Resharing does not work with oCIS storage](https://github.com/owncloud/product/issues/265) - [apiShareReshareToShares1/reShare.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L56) - [apiShareReshareToShares1/reShare.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L57) @@ -1029,7 +1029,7 @@ - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L70) - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L71) -### [Review and fix the tests that have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) +### [Review and fix the tests that have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - [apiWebdavMove2/moveFile.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L89) - [apiWebdavMove2/moveFile.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L90) @@ -1072,7 +1072,7 @@ - [apiWebdavMove2/moveFileToExcludedDirectory.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L63) - [apiWebdavMove2/moveFileToExcludedDirectory.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L64) -### [Review and fix the tests that have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) +### [Review and fix the tests that have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - [apiWebdavOperations/deleteFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L67) - [apiWebdavOperations/deleteFolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L68) @@ -1082,7 +1082,7 @@ - [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) ### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) -### [Review and fix the tests that have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) +### [Review and fix the tests that have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - [apiWebdavOperations/downloadFile.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L60) - [apiWebdavOperations/downloadFile.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L61) @@ -1093,7 +1093,7 @@ - [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) - [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) -### [Review and fix the tests that have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) +### [Review and fix the tests that have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) - [apiWebdavProperties1/copyFile.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L66) @@ -1268,7 +1268,7 @@ - [apiWebdavUpload2/uploadFileUsingOldChunking.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L99) - [apiWebdavUpload2/uploadFileUsingOldChunking.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L100) -### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) +### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - [apiWebdavPreviews/previews.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L15) - [apiWebdavPreviews/previews.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L16) @@ -1340,7 +1340,7 @@ - [apiWebdavEtagPropagation1/moveFileFolder.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L314) - [apiWebdavEtagPropagation1/moveFileFolder.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L315) -### [Implement Trashbin Feature for ocis storage](https://github.com/owncloud/product/issues/209) +### [Implement Trashbin Feature for oCIS storage](https://github.com/owncloud/product/issues/209) - [apiWebdavEtagPropagation2/restoreFromTrash.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L26) - [apiWebdavEtagPropagation2/restoreFromTrash.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L27) @@ -1351,7 +1351,7 @@ - [apiWebdavEtagPropagation2/restoreFromTrash.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L90) - [apiWebdavEtagPropagation2/restoreFromTrash.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L91) -### [Implement Versions Feature for ocis storage](https://github.com/owncloud/product/issues/210) +### [Implement Versions Feature for oCIS storage](https://github.com/owncloud/product/issues/210) - [apiWebdavEtagPropagation2/restoreVersion.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreVersion.feature#L10) @@ -1393,7 +1393,7 @@ - [apiShareOperationsToShares/changingFilesShare.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L59) - [apiShareOperationsToShares/changingFilesShare.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L60) -### [OCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) +### [ocis-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) - [apiVersions/fileVersionsSharingToShares.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L33) @@ -2310,7 +2310,7 @@ - [apiWebdavUploadTUS/uploadFileMtimeShares.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L55) - [apiWebdavUploadTUS/uploadFileMtimeShares.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L56) -### [OCIS-storage reading a file that a collaborator uploaded is impossible](https://github.com/owncloud/ocis/issues/763) +### [ocis-storage reading a file that a collaborator uploaded is impossible](https://github.com/owncloud/ocis/issues/763) - [apiWebdavUploadTUS/uploadFileMtimeShares.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L70) - [apiWebdavUploadTUS/uploadFileMtimeShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L71) @@ -2344,5 +2344,5 @@ - [apiTrashbin/trashbinFilesFolders.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L284) - [apiTrashbin/trashbinFilesFolders.feature:285](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L285) -### [OCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) +### [ocis-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) - [apiVersions/fileVersionsSharingToShares.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L291) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index cec6e5d023..9d77a84692 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -471,7 +471,7 @@ User cannot create a folder named Share ### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) ### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) -### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) +### [Previews via webDAV API tests fail on CISS](https://github.com/owncloud/ocis/issues/187) - [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) - [apiSharePublicLink1/accessToPublicLinkShare.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L20) @@ -591,7 +591,7 @@ User cannot create a folder named Share - [apiSharePublicLink2/updatePublicLinkShare.feature:321](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L321) - [apiSharePublicLink2/updatePublicLinkShare.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L322) -### [OCIS share permissions not enforced](https://github.com/owncloud/product/issues/270) +### [oCIS share permissions not enforced](https://github.com/owncloud/product/issues/270) - [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L25) - [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L26) @@ -606,7 +606,7 @@ User cannot create a folder named Share - [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L179) - [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L180) -### [OCIS old public webdav api doesnt works](https://github.com/owncloud/product/issues/272) +### [oCIS old public webdav api doesnt works](https://github.com/owncloud/product/issues/272) - [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L30) - [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L31) @@ -917,7 +917,7 @@ User cannot create a folder named Share - [apiTrashbin/trashbinFilesFolders.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L60) - [apiTrashbin/trashbinFilesFolders.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L61) -### [Review and fix the tests that### have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) +### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - [apiTrashbin/trashbinFilesFolders.feature:105](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L105) - [apiTrashbin/trashbinFilesFolders.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L106) @@ -1100,7 +1100,7 @@ User cannot create a folder named Share - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L70) - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L71) -### [Review and fix the tests that### have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) +### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - [apiWebdavMove2/moveFile.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L89) - [apiWebdavMove2/moveFile.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L90) @@ -1143,7 +1143,7 @@ User cannot create a folder named Share - [apiWebdavMove2/moveFileToExcludedDirectory.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L63) - [apiWebdavMove2/moveFileToExcludedDirectory.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L64) -### [Review and fix the tests that### have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) +### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - [apiWebdavOperations/deleteFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L67) - [apiWebdavOperations/deleteFolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L68) @@ -1153,7 +1153,7 @@ User cannot create a folder named Share - [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) ### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) -### [Review and fix the tests that### have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) +### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - [apiWebdavOperations/downloadFile.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L60) - [apiWebdavOperations/downloadFile.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L61) @@ -1164,7 +1164,7 @@ User cannot create a folder named Share - [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) - [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) -### [Review and fix the tests that### have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) +### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) - [apiWebdavProperties1/copyFile.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L66) @@ -1423,7 +1423,7 @@ User cannot create a folder named Share - [apiSharePublicLink2/multilinkSharing.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/multilinkSharing.feature#L181) -### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) +### [Previews via webDAV API tests fail on CISS](https://github.com/owncloud/ocis/issues/187) - [apiWebdavPreviews/previews.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L15) - [apiWebdavPreviews/previews.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L16) From ae07429eea2037a115ce6ba886a0002c34fe6271 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Thu, 28 Jan 2021 09:02:27 +0545 Subject: [PATCH 35/88] Apply suggestions from code review --- tests/acceptance/expected-failures-API-on-OCIS-storage.md | 6 +++--- .../acceptance/expected-failures-API-on-OWNCLOUD-storage.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index bc5b1b601a..4f2daad39b 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -1393,7 +1393,7 @@ - [apiShareOperationsToShares/changingFilesShare.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L59) - [apiShareOperationsToShares/changingFilesShare.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L60) -### [ocis-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) +### [oCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) - [apiVersions/fileVersionsSharingToShares.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L33) @@ -2310,7 +2310,7 @@ - [apiWebdavUploadTUS/uploadFileMtimeShares.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L55) - [apiWebdavUploadTUS/uploadFileMtimeShares.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L56) -### [ocis-storage reading a file that a collaborator uploaded is impossible](https://github.com/owncloud/ocis/issues/763) +### [oCIS-storage reading a file that a collaborator uploaded is impossible](https://github.com/owncloud/ocis/issues/763) - [apiWebdavUploadTUS/uploadFileMtimeShares.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L70) - [apiWebdavUploadTUS/uploadFileMtimeShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L71) @@ -2344,5 +2344,5 @@ - [apiTrashbin/trashbinFilesFolders.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L284) - [apiTrashbin/trashbinFilesFolders.feature:285](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L285) -### [ocis-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) +### [oCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) - [apiVersions/fileVersionsSharingToShares.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L291) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index 9d77a84692..18d5ad2ef2 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -471,7 +471,7 @@ User cannot create a folder named Share ### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) ### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) -### [Previews via webDAV API tests fail on CISS](https://github.com/owncloud/ocis/issues/187) +### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) - [apiSharePublicLink1/accessToPublicLinkShare.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L20) @@ -1423,7 +1423,7 @@ User cannot create a folder named Share - [apiSharePublicLink2/multilinkSharing.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/multilinkSharing.feature#L181) -### [Previews via webDAV API tests fail on CISS](https://github.com/owncloud/ocis/issues/187) +### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - [apiWebdavPreviews/previews.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L15) - [apiWebdavPreviews/previews.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L16) From 498a21cf0a0fee2a9f9d95f7bbaf9fd53bdc0061 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Thu, 28 Jan 2021 08:56:16 +0545 Subject: [PATCH 36/88] [tests-only] Bump behat/gherkin to 4.7.1 --- vendor-bin/behat/composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor-bin/behat/composer.json b/vendor-bin/behat/composer.json index 5668e6dd07..43fcad9b69 100644 --- a/vendor-bin/behat/composer.json +++ b/vendor-bin/behat/composer.json @@ -6,7 +6,7 @@ }, "require": { "behat/behat": "^3.8", - "behat/gherkin": "4.6.2", + "behat/gherkin": "4.7.1", "behat/mink": "1.7.1", "behat/mink-extension": "^2.3", "behat/mink-selenium2-driver": "^1.4", From 5dac7ae5c457139c1b12629aff97f73cead5e6b5 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Thu, 28 Jan 2021 05:52:15 +0000 Subject: [PATCH 37/88] Automated changelog update [skip ci] --- CHANGELOG.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22ee9bc6f0..2b3f3fba03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -95,7 +95,7 @@ The following sections list the changes for 1.1.0. Tags: performance, testing, k6 - The ownCloud performance tests can not only be used to test ocis. This is why we have decided to + The ownCloud performance tests can not only be used to test oCIS. This is why we have decided to move the k6 tests to https://github.com/owncloud/cdperf https://github.com/owncloud/ocis/pull/1358 @@ -140,10 +140,10 @@ The following sections list the changes for 1.1.0. default `https://localhost:9200` and remote deployment with `OCIS_URL` which is evaluated as a fallback if `KONNECTD_ISS` is not set. - An OCIS server can now be started on a remote machine as easy as + An oCIS server can now be started on a remote machine as easy as `OCIS_URL=https://cloud.ocis.test PROXY_HTTP_ADDR=0.0.0.0:443 ocis server`. - Note that the `OCIS_DOMAIN` environment variable is not used by ocis, but by the docker + Note that the `OCIS_DOMAIN` environment variable is not used by oCIS, but by the docker containers. https://github.com/owncloud/ocis/pull/1148 @@ -233,7 +233,7 @@ The following sections list the changes for 1.1.0. * Enhancement #1393: Allow setting favorites, mtime and a temporary etag - We now let the ocis driver persist favorites, set temporary etags and the mtime as arbitrary + We now let the oCIS driver persist favorites, set temporary etags and the mtime as arbitrary metadata. Https://github.com/owncloud/ocis/issues/567 @@ -2241,7 +2241,7 @@ The following sections list the changes for 1.0.0. Furthermore, we not only take care of such a thing at the Proxy but also Reva will take care of it. In addition, we now are able to lock-in a set of User-Agent to specific challenges. - Admins can use this feature by configuring OCIS + Reva following this approach: + Admins can use this feature by configuring oCIS + Reva following this approach: ``` STORAGE_FRONTEND_MIDDLEWARE_AUTH_CREDENTIALS_BY_USER_AGENT="mirall:basic, Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:83.0) Gecko/20100101 @@ -2255,6 +2255,6 @@ The following sections list the changes for 1.0.0. `STORAGE_FRONTEND_MIDDLEWARE_AUTH_CREDENTIALS_BY_USER_AGENT` as well as `PROXY_MIDDLEWARE_AUTH_CREDENTIALS_BY_USER_AGENT`, The reason they have the same value is not to rely on the os env on a distributed environment, so in redundancy we trust. They both - configure the same on the backend storage and OCIS Proxy. + configure the same on the backend storage and oCIS Proxy. https://github.com/owncloud/ocis/pull/1009 From 5a44f83bbf162d359f4a7201c27fff9cf11713f8 Mon Sep 17 00:00:00 2001 From: saw-jan Date: Thu, 28 Jan 2021 11:14:56 +0545 Subject: [PATCH 38/88] restore test files removed in PR #1488 --- .../features/apiBasic/addUser.feature | 18 +++++++++++++ .../features/apiBasic/uploadFile.feature | 18 +++++++++++++ .../apiBasic/webDavPUTAuthInvalid.feature | 26 +++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 tests/acceptance/features/apiBasic/addUser.feature create mode 100644 tests/acceptance/features/apiBasic/uploadFile.feature create mode 100644 tests/acceptance/features/apiBasic/webDavPUTAuthInvalid.feature diff --git a/tests/acceptance/features/apiBasic/addUser.feature b/tests/acceptance/features/apiBasic/addUser.feature new file mode 100644 index 0000000000..935325269e --- /dev/null +++ b/tests/acceptance/features/apiBasic/addUser.feature @@ -0,0 +1,18 @@ +@api @provisioning_api-app-required @skipOnLDAP +Feature: add user + As an admin + I want to be able to add users + So that I can give people controlled individual access to resources on the ownCloud server + + Scenario Outline: admin creates a user + Given using OCS API version "" + And user "brand-new-user" has been deleted + When the administrator sends a user creation request for user "brand-new-user" password "%alt1%" using the provisioning API + Then the OCS status code should be "" + And the HTTP status code should be "200" + And user "brand-new-user" should exist + And user "brand-new-user" should be able to access a skeleton file + Examples: + | ocs_api_version | ocs_status_code | + | 1 | 100 | + | 2 | 200 | \ No newline at end of file diff --git a/tests/acceptance/features/apiBasic/uploadFile.feature b/tests/acceptance/features/apiBasic/uploadFile.feature new file mode 100644 index 0000000000..1cc63b89a1 --- /dev/null +++ b/tests/acceptance/features/apiBasic/uploadFile.feature @@ -0,0 +1,18 @@ +@api +Feature: upload file + As a user + I want to be able to upload files + So that I can store and share files between multiple client systems + + Scenario Outline: upload a file and check download content + Given using OCS API version "" + And user "Alice" has been created with default attributes and without skeleton files + And using DAV path + When user "Alice" uploads file with content "uploaded content" to "/upload.txt" using the WebDAV API + Then the content of file "/upload.txt" for user "Alice" should be "uploaded content" + Examples: + | ocs_api_version | dav_version | + | 1 | old | + | 1 | new | + | 2 | old | + | 2 | new | \ No newline at end of file diff --git a/tests/acceptance/features/apiBasic/webDavPUTAuthInvalid.feature b/tests/acceptance/features/apiBasic/webDavPUTAuthInvalid.feature new file mode 100644 index 0000000000..79f0b3adb5 --- /dev/null +++ b/tests/acceptance/features/apiBasic/webDavPUTAuthInvalid.feature @@ -0,0 +1,26 @@ +@api +Feature: attempt to PUT files with invalid password + + Background: + Given user "Alice" has been created with default attributes and without skeleton files + And user "Alice" has created folder "/PARENT" + + Scenario: send PUT requests to webDav endpoints as normal user with wrong password + When user "Alice" requests these endpoints with "PUT" including body "doesnotmatter" using password "invalid" about user "Alice" + | endpoint | + | /remote.php/webdav/textfile0.txt | + | /remote.php/dav/files/%username%/textfile0.txt | + | /remote.php/webdav/PARENT | + | /remote.php/dav/files/%username%/PARENT | + | /remote.php/dav/files/%username%/PARENT/parent.txt | + Then the HTTP status code of responses on all endpoints should be "401" + + Scenario: send PUT requests to webDav endpoints as normal user with no password + When user "Alice" requests these endpoints with "PUT" including body "doesnotmatter" using password "" about user "Alice" + | endpoint | + | /remote.php/webdav/textfile0.txt | + | /remote.php/dav/files/%username%/textfile0.txt | + | /remote.php/webdav/PARENT | + | /remote.php/dav/files/%username%/PARENT | + | /remote.php/dav/files/%username%/PARENT/parent.txt | + Then the HTTP status code of responses on all endpoints should be "401" From 924246c0a65142c67a89b28ac162c0310fc6ee07 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Thu, 28 Jan 2021 11:56:07 +0545 Subject: [PATCH 39/88] Rename apiBasic to apiAccountsHashDifficulty --- .drone.star | 4 ++-- tests/acceptance/config/behat.yml | 4 ++-- tests/acceptance/docker/Makefile | 16 +++++++------- .../apiAccountsHashDifficulty/addUser.feature | 21 +++++++++++++++++++ .../createShareToSharesFolder.feature | 6 ++++++ .../uploadFile.feature | 9 +++++--- .../webDavPUTAuthInvalid.feature | 6 ++++++ .../features/apiBasic/addUser.feature | 18 ---------------- 8 files changed, 51 insertions(+), 33 deletions(-) create mode 100644 tests/acceptance/features/apiAccountsHashDifficulty/addUser.feature rename tests/acceptance/features/{apiBasic => apiAccountsHashDifficulty}/createShareToSharesFolder.feature (73%) rename tests/acceptance/features/{apiBasic => apiAccountsHashDifficulty}/uploadFile.feature (61%) rename tests/acceptance/features/{apiBasic => apiAccountsHashDifficulty}/webDavPUTAuthInvalid.feature (80%) delete mode 100644 tests/acceptance/features/apiBasic/addUser.feature diff --git a/.drone.star b/.drone.star index 76dcbeefc7..2e599403e9 100644 --- a/.drone.star +++ b/.drone.star @@ -239,8 +239,8 @@ def testPipelines(ctx): pipelines = [ localApiTests(ctx, 'owncloud', 'apiOcisSpecific'), localApiTests(ctx, 'ocis', 'apiOcisSpecific'), - localApiTests(ctx, 'owncloud', 'apiBasic', 'default'), - localApiTests(ctx, 'ocis', 'apiBasic', 'default') + localApiTests(ctx, 'owncloud', 'apiAccountsHashDifficulty', 'default'), + localApiTests(ctx, 'ocis', 'apiAccountsHashDifficulty', 'default') ] for runPart in range(1, config['apiTests']['numberOfParts'] + 1): diff --git a/tests/acceptance/config/behat.yml b/tests/acceptance/config/behat.yml index bb33b728d7..e2480b6f2b 100644 --- a/tests/acceptance/config/behat.yml +++ b/tests/acceptance/config/behat.yml @@ -3,9 +3,9 @@ default: '': '%paths.base%/../features/bootstrap' suites: - apiBasic: + apiAccountsHashDifficulty: paths: - - '%paths.base%/../features/apiBasic' + - '%paths.base%/../features/apiAccountsHashDifficulty' context: &common_ldap_suite_context parameters: ldapAdminPassword: admin diff --git a/tests/acceptance/docker/Makefile b/tests/acceptance/docker/Makefile index dcec4ed638..554c8c37fc 100644 --- a/tests/acceptance/docker/Makefile +++ b/tests/acceptance/docker/Makefile @@ -51,11 +51,11 @@ help: @echo -e "https://hub.docker.com/r/owncloud/ocis." @echo @echo -e "${GREEN}Run full oCIS test suites against oCIS with oCIS storage:${RESET}\n" - @echo -e "\tmake localApiTests-apiBasic-ocis\t\t${BLUE}run apiBasic test suite${RESET}" + @echo -e "\tmake localApiTests-apiAccountsHashDifficulty-ocis\t\t${BLUE}run apiAccountsHashDifficulty test suite${RESET}" @echo -e "\tmake localApiTests-apiOcisSpecific-ocis\t\t${BLUE}run apiOcisSPecific test suite${RESET}" @echo @echo -e "${GREEN}Run full oCIS test suites against oCIS with ownCloud storage:${RESET}\n" - @echo -e "\tmake localApiTests-apiBasic-owncloud\t\t${BLUE}run apiBasic test suite${RESET}" + @echo -e "\tmake localApiTests-apiAccountsHashDifficulty-owncloud\t\t${BLUE}run apiAccountsHashDifficulty test suite${RESET}" @echo -e "\tmake localApiTests-apiOcisSpecific-owncloud\t${BLUE}run apiOcisSpecific test suite${RESET}" @echo @echo -e "${GREEN}Run full ownCloud test suites against oCIS with oCIS storage:${RESET}\n" @@ -133,11 +133,11 @@ localApiTests-apiOcisSpecific-owncloud: ## run apiOcisSpecific test suite with o BEHAT_SUITE=apiOcisSpecific \ $(MAKE) --no-print-directory testSuite -.PHONY: localApiTests-apiBasic-owncloud -localApiTests-apiBasic-owncloud: ## run apiBasic test suite with owncloud storage +.PHONY: localApiTests-apiAccountsHashDifficulty-owncloud +localApiTests-apiAccountsHashDifficulty-owncloud: ## run apiAccountsHashDifficulty test suite with owncloud storage @TEST_SOURCE=ocis \ STORAGE=owncloud \ - BEHAT_SUITE=apiBasic \ + BEHAT_SUITE=apiAccountsHashDifficulty \ $(MAKE) --no-print-directory testSuite .PHONY: localApiTests-apiOcisSpecific-ocis @@ -147,11 +147,11 @@ localApiTests-apiOcisSpecific-ocis: ## run apiOcisSPecific test suite with ocis BEHAT_SUITE=apiOcisSpecific \ $(MAKE) --no-print-directory testSuite -.PHONY: localApiTests-apiBasic-ocis -localApiTests-apiBasic-ocis: ## run apiBasic test suite with ocis storage +.PHONY: localApiTests-apiAccountsHashDifficulty-ocis +localApiTests-apiAccountsHashDifficulty-ocis: ## run apiAccountsHashDifficulty test suite with ocis storage @TEST_SOURCE=ocis \ STORAGE=ocis \ - BEHAT_SUITE=apiBasic \ + BEHAT_SUITE=apiAccountsHashDifficulty \ $(MAKE) --no-print-directory testSuite targets = $(addprefix Core-API-Tests-owncloud-storage-,$(PARTS)) diff --git a/tests/acceptance/features/apiAccountsHashDifficulty/addUser.feature b/tests/acceptance/features/apiAccountsHashDifficulty/addUser.feature new file mode 100644 index 0000000000..eb271388b9 --- /dev/null +++ b/tests/acceptance/features/apiAccountsHashDifficulty/addUser.feature @@ -0,0 +1,21 @@ +@api @provisioning_api-app-required @skipOnLDAP +Feature: add user + As an admin + I want to be able to add users and store their password with the full hash difficulty + So that I can give people controlled individual access to resources on the ownCloud server + + Note - this feature is run in CI with ACCOUNTS_HASH_DIFFICULTY set to the default for production + See https://github.com/owncloud/ocis/issues/1542 and https://github.com/owncloud/ocis/pull/839 + + Scenario Outline: admin creates a user + Given using OCS API version "" + And user "brand-new-user" has been deleted + When the administrator sends a user creation request for user "brand-new-user" password "%alt1%" using the provisioning API + Then the OCS status code should be "" + And the HTTP status code should be "200" + And user "brand-new-user" should exist + And user "brand-new-user" should be able to access a skeleton file + Examples: + | ocs_api_version | ocs_status_code | + | 1 | 100 | + | 2 | 200 | diff --git a/tests/acceptance/features/apiBasic/createShareToSharesFolder.feature b/tests/acceptance/features/apiAccountsHashDifficulty/createShareToSharesFolder.feature similarity index 73% rename from tests/acceptance/features/apiBasic/createShareToSharesFolder.feature rename to tests/acceptance/features/apiAccountsHashDifficulty/createShareToSharesFolder.feature index b2b1af193a..524e38b5ae 100644 --- a/tests/acceptance/features/apiBasic/createShareToSharesFolder.feature +++ b/tests/acceptance/features/apiAccountsHashDifficulty/createShareToSharesFolder.feature @@ -1,5 +1,11 @@ @api @files_sharing-app-required Feature: sharing + As a user + I want to be able to share files when passwords are stored with the full hash difficulty + So that I can give people secure controlled access to my data + + Note - this feature is run in CI with ACCOUNTS_HASH_DIFFICULTY set to the default for production + See https://github.com/owncloud/ocis/issues/1542 and https://github.com/owncloud/ocis/pull/839 Scenario Outline: Creating a share of a file with a user Given the administrator has set the default folder for received shares to "Shares" diff --git a/tests/acceptance/features/apiBasic/uploadFile.feature b/tests/acceptance/features/apiAccountsHashDifficulty/uploadFile.feature similarity index 61% rename from tests/acceptance/features/apiBasic/uploadFile.feature rename to tests/acceptance/features/apiAccountsHashDifficulty/uploadFile.feature index 1cc63b89a1..d0518fa92d 100644 --- a/tests/acceptance/features/apiBasic/uploadFile.feature +++ b/tests/acceptance/features/apiAccountsHashDifficulty/uploadFile.feature @@ -1,8 +1,11 @@ @api Feature: upload file As a user - I want to be able to upload files - So that I can store and share files between multiple client systems + I want to be able to upload files when passwords are stored with the full hash difficulty + So that I can store and share files securely between multiple client systems + + Note - this feature is run in CI with ACCOUNTS_HASH_DIFFICULTY set to the default for production + See https://github.com/owncloud/ocis/issues/1542 and https://github.com/owncloud/ocis/pull/839 Scenario Outline: upload a file and check download content Given using OCS API version "" @@ -15,4 +18,4 @@ Feature: upload file | 1 | old | | 1 | new | | 2 | old | - | 2 | new | \ No newline at end of file + | 2 | new | diff --git a/tests/acceptance/features/apiBasic/webDavPUTAuthInvalid.feature b/tests/acceptance/features/apiAccountsHashDifficulty/webDavPUTAuthInvalid.feature similarity index 80% rename from tests/acceptance/features/apiBasic/webDavPUTAuthInvalid.feature rename to tests/acceptance/features/apiAccountsHashDifficulty/webDavPUTAuthInvalid.feature index 79f0b3adb5..37ba017d39 100644 --- a/tests/acceptance/features/apiBasic/webDavPUTAuthInvalid.feature +++ b/tests/acceptance/features/apiAccountsHashDifficulty/webDavPUTAuthInvalid.feature @@ -1,5 +1,11 @@ @api Feature: attempt to PUT files with invalid password + As an admin + I want to the system to be secure when passwords are stored with the full hash difficulty + So that unauthorised users do not have access to data + + Note - this feature is run in CI with ACCOUNTS_HASH_DIFFICULTY set to the default for production + See https://github.com/owncloud/ocis/issues/1542 and https://github.com/owncloud/ocis/pull/839 Background: Given user "Alice" has been created with default attributes and without skeleton files diff --git a/tests/acceptance/features/apiBasic/addUser.feature b/tests/acceptance/features/apiBasic/addUser.feature deleted file mode 100644 index 935325269e..0000000000 --- a/tests/acceptance/features/apiBasic/addUser.feature +++ /dev/null @@ -1,18 +0,0 @@ -@api @provisioning_api-app-required @skipOnLDAP -Feature: add user - As an admin - I want to be able to add users - So that I can give people controlled individual access to resources on the ownCloud server - - Scenario Outline: admin creates a user - Given using OCS API version "" - And user "brand-new-user" has been deleted - When the administrator sends a user creation request for user "brand-new-user" password "%alt1%" using the provisioning API - Then the OCS status code should be "" - And the HTTP status code should be "200" - And user "brand-new-user" should exist - And user "brand-new-user" should be able to access a skeleton file - Examples: - | ocs_api_version | ocs_status_code | - | 1 | 100 | - | 2 | 200 | \ No newline at end of file From dfb4eb11cbc39526b086b6fb657135c388742474 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Thu, 28 Jan 2021 12:03:01 +0545 Subject: [PATCH 40/88] Rename apiOcisSpecific to apiBugDemonstration --- .drone.star | 6 ++--- docs/ocis/development/testing.md | 8 +++---- tests/acceptance/config/behat.yml | 4 ++-- tests/acceptance/docker/Makefile | 24 +++++++++---------- .../apiAuthOcs-ocsDELETEAuth.feature | 0 .../apiAuthOcs-ocsGETAuth.feature | 0 .../apiAuthOcs-ocsPOSTAuth.feature | 0 .../apiAuthOcs-ocsPUTAuth.feature | 0 .../apiAuthWebDav-webDavLOCKAuth.feature | 0 .../apiAuthWebDav-webDavMOVEAuth.feature | 0 ...ilities-capabilitiesWithNormalUser.feature | 0 .../apiMain-main.feature | 0 ...-createShareWithInvalidPermissions.feature | 0 ...piShareManagementBasic-createShare.feature | 0 .../apiShareOperations-gettingShares.feature | 0 ...harePublicLink2-copyFromPublicLink.feature | 0 .../apiShareUpdate-updateShare.feature | 0 .../apiTrashbin-trashbinDelete.feature | 0 .../apiVersions-fileVersions.feature | 0 .../apiWebdavMove1-moveFolder.feature | 0 ...vMove1-moveFolderToBlacklistedName.feature | 0 .../apiWebdavMove2-moveFile.feature | 0 ...davMove2-moveFileToBlacklistedName.feature | 0 .../apiWebdavOperations-refuseAccess.feature | 0 .../apiWebdavPreviews-previews.feature | 0 .../apiWebdavProperties1-createFolder.feature | 0 ...ebdavProperties2-getFileProperties.feature | 0 .../apiWebdavUpload1-uploadFile.feature | 0 .../apiWebdavUploadTUS-optionsRequest.feature | 0 .../apiWebdavUploadTUS-uploadFile.feature | 0 30 files changed, 21 insertions(+), 21 deletions(-) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiAuthOcs-ocsDELETEAuth.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiAuthOcs-ocsGETAuth.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiAuthOcs-ocsPOSTAuth.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiAuthOcs-ocsPUTAuth.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiAuthWebDav-webDavLOCKAuth.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiAuthWebDav-webDavMOVEAuth.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiCapabilities-capabilitiesWithNormalUser.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiMain-main.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiShareCreateSpecial2-createShareWithInvalidPermissions.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiShareManagementBasic-createShare.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiShareOperations-gettingShares.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiSharePublicLink2-copyFromPublicLink.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiShareUpdate-updateShare.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiTrashbin-trashbinDelete.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiVersions-fileVersions.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiWebdavMove1-moveFolder.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiWebdavMove1-moveFolderToBlacklistedName.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiWebdavMove2-moveFile.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiWebdavMove2-moveFileToBlacklistedName.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiWebdavOperations-refuseAccess.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiWebdavPreviews-previews.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiWebdavProperties1-createFolder.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiWebdavProperties2-getFileProperties.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiWebdavUpload1-uploadFile.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiWebdavUploadTUS-optionsRequest.feature (100%) rename tests/acceptance/features/{apiOcisSpecific => apiBugDemonstration}/apiWebdavUploadTUS-uploadFile.feature (100%) diff --git a/.drone.star b/.drone.star index 2e599403e9..dac646de74 100644 --- a/.drone.star +++ b/.drone.star @@ -237,8 +237,8 @@ def testOcisModules(ctx): def testPipelines(ctx): pipelines = [ - localApiTests(ctx, 'owncloud', 'apiOcisSpecific'), - localApiTests(ctx, 'ocis', 'apiOcisSpecific'), + localApiTests(ctx, 'owncloud', 'apiBugDemonstration'), + localApiTests(ctx, 'ocis', 'apiBugDemonstration'), localApiTests(ctx, 'owncloud', 'apiAccountsHashDifficulty', 'default'), localApiTests(ctx, 'ocis', 'apiAccountsHashDifficulty', 'default') ] @@ -430,7 +430,7 @@ def uploadCoverage(ctx): }, } -def localApiTests(ctx, storage = 'owncloud', suite = 'apiOcisSpecific', accounts_hash_difficulty = 4): +def localApiTests(ctx, storage = 'owncloud', suite = 'apiBugDemonstration', accounts_hash_difficulty = 4): return { 'kind': 'pipeline', 'type': 'docker', diff --git a/docs/ocis/development/testing.md b/docs/ocis/development/testing.md index 318c0a6565..9e5b674c57 100644 --- a/docs/ocis/development/testing.md +++ b/docs/ocis/development/testing.md @@ -39,7 +39,7 @@ You can invoke two types of test suite runs: The names of the full test suite make targets have the same naming as in the CI pipeline. -For example `make -C tests/acceptance/docker localApiTests-apiOcisSpecific-ocis` runs the same tests as the `localApiTests-apiOcisSpecific-ocis` CI pipeline, which runs the oCIS test suite "apiOcisSpecific" against an oCIS with oCIS storage. +For example `make -C tests/acceptance/docker localApiTests-apiBugDemonstration-ocis` runs the same tests as the `localApiTests-apiBugDemonstration-ocis` CI pipeline, which runs the oCIS test suite "apiBugDemonstration" against an oCIS with oCIS storage. For example `make -C tests/acceptance/docker Core-API-Tests-owncloud-storage-3`runs the same tests as the `Core-API-Tests-owncloud-storage-3` CI pipeline, which runs the third (out of ten) ownCloud test suite against an oCIS with owncloud storage. @@ -48,7 +48,7 @@ For example `make -C tests/acceptance/docker Core-API-Tests-owncloud-storage-3`r The single feature tests can also be run against the different storage backends. Therefore multiple make targets with the schema test--feature- exists. For selecting a single feature test you have to add an additional `BEHAT_FEATURE=...` parameter when invoking the make command: ``` -make -C tests/acceptance/docker test-ocis-feature-ocis BEHAT_FEATURE='tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsDELETEAuth.feature' +make -C tests/acceptance/docker test-ocis-feature-ocis BEHAT_FEATURE='tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsDELETEAuth.feature' ``` This must be pointing to a valid feature definition. @@ -58,7 +58,7 @@ This must be pointing to a valid feature definition. By default the tests will be run against docker image built from your current working state of the oCIS repository. For some purposes it might also be handy to use a oCIS image from Docker Hub. Therefore you can provide the optional flag `OCIS_IMAGE_TAG=...` which must contain an available docker tag of the [owncloud/ocis registry on Docker Hub](https://hub.docker.com/r/owncloud/ocis) (eg. 'latest'). ``` -make -C tests/acceptance/docker localApiTests-apiOcisSpecific-ocis OCIS_IMAGE_TAG=latest +make -C tests/acceptance/docker localApiTests-apiBugDemonstration-ocis OCIS_IMAGE_TAG=latest ``` ### Test log output @@ -138,7 +138,7 @@ Those scenarios are run in the ordinary acceptance test pipeline in CI. The scen expected failures. If there are any differences then the CI pipeline fails. Similarly, scenarios that do not work in oCIS with EOS storage are listed in `tests/acceptance/expected-failures-on-EOS-storage.txt`. Additionally, some issues have scenarios that demonstrate the current buggy behaviour in ocis(reva). -Those scenarios are in this ocis repository in `tests/acceptance/features/apiOcisSpecific`. +Those scenarios are in this ocis repository in `tests/acceptance/features/apiBugDemonstration`. Have a look into the [documentation](https://doc.owncloud.com/server/developer_manual/testing/acceptance-tests.html#writing-scenarios-for-bugs) to understand why we are writing those tests. If you want to work on a specific issue diff --git a/tests/acceptance/config/behat.yml b/tests/acceptance/config/behat.yml index e2480b6f2b..f785972736 100644 --- a/tests/acceptance/config/behat.yml +++ b/tests/acceptance/config/behat.yml @@ -29,9 +29,9 @@ default: - TrashbinContext: - WebDavPropertiesContext: - apiOcisSpecific: + apiBugDemonstration: paths: - - '%paths.base%/../features/apiOcisSpecific' + - '%paths.base%/../features/apiBugDemonstration' context: *common_ldap_suite_context contexts: - RevaContext: diff --git a/tests/acceptance/docker/Makefile b/tests/acceptance/docker/Makefile index 554c8c37fc..a1f0d4a262 100644 --- a/tests/acceptance/docker/Makefile +++ b/tests/acceptance/docker/Makefile @@ -52,11 +52,11 @@ help: @echo @echo -e "${GREEN}Run full oCIS test suites against oCIS with oCIS storage:${RESET}\n" @echo -e "\tmake localApiTests-apiAccountsHashDifficulty-ocis\t\t${BLUE}run apiAccountsHashDifficulty test suite${RESET}" - @echo -e "\tmake localApiTests-apiOcisSpecific-ocis\t\t${BLUE}run apiOcisSPecific test suite${RESET}" + @echo -e "\tmake localApiTests-apiBugDemonstration-ocis\t\t${BLUE}run apiBugDemonstration test suite${RESET}" @echo @echo -e "${GREEN}Run full oCIS test suites against oCIS with ownCloud storage:${RESET}\n" @echo -e "\tmake localApiTests-apiAccountsHashDifficulty-owncloud\t\t${BLUE}run apiAccountsHashDifficulty test suite${RESET}" - @echo -e "\tmake localApiTests-apiOcisSpecific-owncloud\t${BLUE}run apiOcisSpecific test suite${RESET}" + @echo -e "\tmake localApiTests-apiBugDemonstration-owncloud\t${BLUE}run apiBugDemonstration test suite${RESET}" @echo @echo -e "${GREEN}Run full ownCloud test suites against oCIS with oCIS storage:${RESET}\n" @echo -e "\tmake Core-API-Tests-ocis-storage-${RED}X${RESET}\t\t${BLUE}run test suite number X, where ${RED}X = 1 .. 10${RESET}" @@ -68,13 +68,13 @@ help: @echo -e "\tmake test-ocis-feature-ocis-storage ${YELLOW}BEHAT_FEATURE='...'${RESET}\t${BLUE}run single feature test${RESET}" @echo @echo -e "\twhere ${YELLOW}BEHAT_FEATURE='...'${RESET} contains a relative path to the feature definition." - @echo -e "\texample: ${RED}tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsDELETEAuth.feature${RESET}" + @echo -e "\texample: ${RED}tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsDELETEAuth.feature${RESET}" @echo @echo -e "${GREEN}Run an oCIS feature test against oCIS with owncloud storage:${RESET}\n" @echo -e "\tmake test-ocis-feature-owncloud-storage ${YELLOW}BEHAT_FEATURE='...'${RESET}\t${BLUE}run single feature test${RESET}" @echo @echo -e "\twhere ${YELLOW}BEHAT_FEATURE='...'${RESET} contains a relative path to the feature definition." - @echo -e "\texample: ${RED}tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsDELETEAuth.feature${RESET}" + @echo -e "\texample: ${RED}tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsDELETEAuth.feature${RESET}" @echo @echo -e "${GREEN}Run an ownCloud feature test against oCIS with oCIS storage:${RESET}\n" @echo -e "\tmake test-oc10-feature-ocis-storage ${YELLOW}BEHAT_FEATURE='...'${RESET}\t${BLUE}run single feature test${RESET}" @@ -99,14 +99,14 @@ help: @echo -e "\tmake clean-docker-volumes\t\t${BLUE}removes used docker volumes (used for caching)${RESET}" @echo .PHONY: test-ocis-feature-ocis-storage -test-ocis-feature-ocis-storage: ## test a ocis feature with oCIS storage, useage: make ... BEHAT_FEATURE='tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsDELETEAuth.feature:7' +test-ocis-feature-ocis-storage: ## test a ocis feature with oCIS storage, useage: make ... BEHAT_FEATURE='tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsDELETEAuth.feature:7' @TEST_SOURCE=ocis \ STORAGE=ocis \ BEHAT_FEATURE=$(BEHAT_FEATURE) \ $(MAKE) --no-print-directory testSuite .PHONY: test-ocis-feature-owncloud-storage -test-ocis-feature-owncloud-storage: ## test a ocis feature with oc10 storage, useage: make ... BEHAT_FEATURE='tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsDELETEAuth.feature:7' +test-ocis-feature-owncloud-storage: ## test a ocis feature with oc10 storage, useage: make ... BEHAT_FEATURE='tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsDELETEAuth.feature:7' @TEST_SOURCE=ocis \ STORAGE=owncloud \ BEHAT_FEATURE=$(BEHAT_FEATURE) \ @@ -126,11 +126,11 @@ test-oc10-feature-owncloud-storage: ## test a oC10 feature with oc10 storage, us BEHAT_FEATURE=$(BEHAT_FEATURE) \ $(MAKE) --no-print-directory testSuite -.PHONY: localApiTests-apiOcisSpecific-owncloud -localApiTests-apiOcisSpecific-owncloud: ## run apiOcisSpecific test suite with owncloud storage +.PHONY: localApiTests-apiBugDemonstration-owncloud +localApiTests-apiBugDemonstration-owncloud: ## run apiBugDemonstration test suite with owncloud storage @TEST_SOURCE=oc10 \ STORAGE=owncloud \ - BEHAT_SUITE=apiOcisSpecific \ + BEHAT_SUITE=apiBugDemonstration \ $(MAKE) --no-print-directory testSuite .PHONY: localApiTests-apiAccountsHashDifficulty-owncloud @@ -140,11 +140,11 @@ localApiTests-apiAccountsHashDifficulty-owncloud: ## run apiAccountsHashDifficul BEHAT_SUITE=apiAccountsHashDifficulty \ $(MAKE) --no-print-directory testSuite -.PHONY: localApiTests-apiOcisSpecific-ocis -localApiTests-apiOcisSpecific-ocis: ## run apiOcisSPecific test suite with ocis storage +.PHONY: localApiTests-apiBugDemonstration-ocis +localApiTests-apiBugDemonstration-ocis: ## run apiBugDemonstration test suite with ocis storage @TEST_SOURCE=ocis \ STORAGE=ocis \ - BEHAT_SUITE=apiOcisSpecific \ + BEHAT_SUITE=apiBugDemonstration \ $(MAKE) --no-print-directory testSuite .PHONY: localApiTests-apiAccountsHashDifficulty-ocis diff --git a/tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsDELETEAuth.feature b/tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsDELETEAuth.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsDELETEAuth.feature rename to tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsDELETEAuth.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsGETAuth.feature b/tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsGETAuth.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsGETAuth.feature rename to tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsGETAuth.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsPOSTAuth.feature b/tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsPOSTAuth.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsPOSTAuth.feature rename to tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsPOSTAuth.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsPUTAuth.feature b/tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsPUTAuth.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiAuthOcs-ocsPUTAuth.feature rename to tests/acceptance/features/apiBugDemonstration/apiAuthOcs-ocsPUTAuth.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiAuthWebDav-webDavLOCKAuth.feature b/tests/acceptance/features/apiBugDemonstration/apiAuthWebDav-webDavLOCKAuth.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiAuthWebDav-webDavLOCKAuth.feature rename to tests/acceptance/features/apiBugDemonstration/apiAuthWebDav-webDavLOCKAuth.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiAuthWebDav-webDavMOVEAuth.feature b/tests/acceptance/features/apiBugDemonstration/apiAuthWebDav-webDavMOVEAuth.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiAuthWebDav-webDavMOVEAuth.feature rename to tests/acceptance/features/apiBugDemonstration/apiAuthWebDav-webDavMOVEAuth.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiCapabilities-capabilitiesWithNormalUser.feature b/tests/acceptance/features/apiBugDemonstration/apiCapabilities-capabilitiesWithNormalUser.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiCapabilities-capabilitiesWithNormalUser.feature rename to tests/acceptance/features/apiBugDemonstration/apiCapabilities-capabilitiesWithNormalUser.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiMain-main.feature b/tests/acceptance/features/apiBugDemonstration/apiMain-main.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiMain-main.feature rename to tests/acceptance/features/apiBugDemonstration/apiMain-main.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiShareCreateSpecial2-createShareWithInvalidPermissions.feature b/tests/acceptance/features/apiBugDemonstration/apiShareCreateSpecial2-createShareWithInvalidPermissions.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiShareCreateSpecial2-createShareWithInvalidPermissions.feature rename to tests/acceptance/features/apiBugDemonstration/apiShareCreateSpecial2-createShareWithInvalidPermissions.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiShareManagementBasic-createShare.feature b/tests/acceptance/features/apiBugDemonstration/apiShareManagementBasic-createShare.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiShareManagementBasic-createShare.feature rename to tests/acceptance/features/apiBugDemonstration/apiShareManagementBasic-createShare.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiShareOperations-gettingShares.feature b/tests/acceptance/features/apiBugDemonstration/apiShareOperations-gettingShares.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiShareOperations-gettingShares.feature rename to tests/acceptance/features/apiBugDemonstration/apiShareOperations-gettingShares.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiSharePublicLink2-copyFromPublicLink.feature b/tests/acceptance/features/apiBugDemonstration/apiSharePublicLink2-copyFromPublicLink.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiSharePublicLink2-copyFromPublicLink.feature rename to tests/acceptance/features/apiBugDemonstration/apiSharePublicLink2-copyFromPublicLink.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiShareUpdate-updateShare.feature b/tests/acceptance/features/apiBugDemonstration/apiShareUpdate-updateShare.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiShareUpdate-updateShare.feature rename to tests/acceptance/features/apiBugDemonstration/apiShareUpdate-updateShare.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiTrashbin-trashbinDelete.feature b/tests/acceptance/features/apiBugDemonstration/apiTrashbin-trashbinDelete.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiTrashbin-trashbinDelete.feature rename to tests/acceptance/features/apiBugDemonstration/apiTrashbin-trashbinDelete.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiVersions-fileVersions.feature b/tests/acceptance/features/apiBugDemonstration/apiVersions-fileVersions.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiVersions-fileVersions.feature rename to tests/acceptance/features/apiBugDemonstration/apiVersions-fileVersions.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavMove1-moveFolder.feature b/tests/acceptance/features/apiBugDemonstration/apiWebdavMove1-moveFolder.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiWebdavMove1-moveFolder.feature rename to tests/acceptance/features/apiBugDemonstration/apiWebdavMove1-moveFolder.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavMove1-moveFolderToBlacklistedName.feature b/tests/acceptance/features/apiBugDemonstration/apiWebdavMove1-moveFolderToBlacklistedName.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiWebdavMove1-moveFolderToBlacklistedName.feature rename to tests/acceptance/features/apiBugDemonstration/apiWebdavMove1-moveFolderToBlacklistedName.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavMove2-moveFile.feature b/tests/acceptance/features/apiBugDemonstration/apiWebdavMove2-moveFile.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiWebdavMove2-moveFile.feature rename to tests/acceptance/features/apiBugDemonstration/apiWebdavMove2-moveFile.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavMove2-moveFileToBlacklistedName.feature b/tests/acceptance/features/apiBugDemonstration/apiWebdavMove2-moveFileToBlacklistedName.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiWebdavMove2-moveFileToBlacklistedName.feature rename to tests/acceptance/features/apiBugDemonstration/apiWebdavMove2-moveFileToBlacklistedName.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavOperations-refuseAccess.feature b/tests/acceptance/features/apiBugDemonstration/apiWebdavOperations-refuseAccess.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiWebdavOperations-refuseAccess.feature rename to tests/acceptance/features/apiBugDemonstration/apiWebdavOperations-refuseAccess.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavPreviews-previews.feature b/tests/acceptance/features/apiBugDemonstration/apiWebdavPreviews-previews.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiWebdavPreviews-previews.feature rename to tests/acceptance/features/apiBugDemonstration/apiWebdavPreviews-previews.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavProperties1-createFolder.feature b/tests/acceptance/features/apiBugDemonstration/apiWebdavProperties1-createFolder.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiWebdavProperties1-createFolder.feature rename to tests/acceptance/features/apiBugDemonstration/apiWebdavProperties1-createFolder.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavProperties2-getFileProperties.feature b/tests/acceptance/features/apiBugDemonstration/apiWebdavProperties2-getFileProperties.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiWebdavProperties2-getFileProperties.feature rename to tests/acceptance/features/apiBugDemonstration/apiWebdavProperties2-getFileProperties.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavUpload1-uploadFile.feature b/tests/acceptance/features/apiBugDemonstration/apiWebdavUpload1-uploadFile.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiWebdavUpload1-uploadFile.feature rename to tests/acceptance/features/apiBugDemonstration/apiWebdavUpload1-uploadFile.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavUploadTUS-optionsRequest.feature b/tests/acceptance/features/apiBugDemonstration/apiWebdavUploadTUS-optionsRequest.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiWebdavUploadTUS-optionsRequest.feature rename to tests/acceptance/features/apiBugDemonstration/apiWebdavUploadTUS-optionsRequest.feature diff --git a/tests/acceptance/features/apiOcisSpecific/apiWebdavUploadTUS-uploadFile.feature b/tests/acceptance/features/apiBugDemonstration/apiWebdavUploadTUS-uploadFile.feature similarity index 100% rename from tests/acceptance/features/apiOcisSpecific/apiWebdavUploadTUS-uploadFile.feature rename to tests/acceptance/features/apiBugDemonstration/apiWebdavUploadTUS-uploadFile.feature From 5751b0826656276bd24437db6446e093d1031e92 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Tue, 26 Jan 2021 20:50:28 +0545 Subject: [PATCH 41/88] Bump commit ids for tests --- .drone.env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.env b/.drone.env index a65e073144..1daeaaa400 100644 --- a/.drone.env +++ b/.drone.env @@ -1,7 +1,7 @@ # The test runner source for API tests -CORE_COMMITID=1628f6156c64717aa23b1e48dd8e51154f68cde8 +CORE_COMMITID=bf15046c221d1e85f74ce2658d36729d0870f5f3 CORE_BRANCH=master # The test runner source for UI tests -WEB_COMMITID=5945833ca594c16d33514da74b3d2eb64d3560fd +WEB_COMMITID=9a3c3149646ec27a49b26fad0eaf96cd1ae5892e WEB_BRANCH=master From 6f27c726cea71a45649436780c8d670894e31f03 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Tue, 26 Jan 2021 22:09:07 +0545 Subject: [PATCH 42/88] Adjust expected-failures --- .drone.env | 2 +- .../expected-failures-API-on-OCIS-storage.md | 43 ++++++++++++++++ ...pected-failures-API-on-OWNCLOUD-storage.md | 49 +++++++++++++++++-- 3 files changed, 88 insertions(+), 6 deletions(-) diff --git a/.drone.env b/.drone.env index 1daeaaa400..e4821599f9 100644 --- a/.drone.env +++ b/.drone.env @@ -1,5 +1,5 @@ # The test runner source for API tests -CORE_COMMITID=bf15046c221d1e85f74ce2658d36729d0870f5f3 +CORE_COMMITID=81191d99368f5dcfa2b3b1a7ba4719fa61541bd5 CORE_BRANCH=master # The test runner source for UI tests diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index 4f2daad39b..5d69baff16 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -140,8 +140,12 @@ - [apiProvisioning-v1/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L32) - [apiProvisioning-v1/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L34) - [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) + - [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) - [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) +- [apiProvisioning-v2/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L121) +- [apiProvisioning-v2/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L122) +- [apiProvisioning-v2/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L123) - [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) - [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) - [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) @@ -179,6 +183,10 @@ - [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L67) ### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis/issues/1420) + +- [apiProvisioning-v1/enableUser.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L92) +- [apiProvisioning-v1/enableUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L102) +- [apiProvisioning-v1/enableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L129) - [apiProvisioning-v1/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L99) - [apiProvisioning-v1/disableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L129) - [apiProvisioning-v1/disableUser.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L165) @@ -219,8 +227,39 @@ - [apiProvisioning-v2/getUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L47) ### [subadmin endpoints not implemented](https://github.com/owncloud/product/issues/289) +- [apiProvisioning-v1/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L125) +- [apiProvisioning-v1/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L48) +- [apiProvisioning-v1/deleteUser.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L73) +- [apiProvisioning-v1/disableUser.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L222) +- [apiProvisioning-v1/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L131) +- [apiProvisioning-v1/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L143) +- [apiProvisioning-v1/getUser.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L170) +- [apiProvisioning-v1/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L113) + +- [apiProvisioning-v2/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L125) +- [apiProvisioning-v2/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L48) +- [apiProvisioning-v2/deleteUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L64) +- [apiProvisioning-v2/deleteUser.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L74) +- [apiProvisioning-v2/deleteUser.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L88) +- [apiProvisioning-v2/deleteUser.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L101) +- [apiProvisioning-v2/deleteUser.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L115) - [apiProvisioning-v2/disableUser.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L48) - [apiProvisioning-v2/disableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L64) +- [apiProvisioning-v2/disableUser.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L223) +- [apiProvisioning-v2/disableUser.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L237) +- [apiProvisioning-v2/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L131) +- [apiProvisioning-v2/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L143) +- [apiProvisioning-v2/editUser.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L159) +- [apiProvisioning-v2/enableUser.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L104) +- [apiProvisioning-v2/enableUser.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L118) +- [apiProvisioning-v2/enableUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L131) +- [apiProvisioning-v2/enableUser.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L146) +- [apiProvisioning-v2/getUser.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L145) +- [apiProvisioning-v2/getUser.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L156) +- [apiProvisioning-v2/getUser.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L171) +- [apiProvisioning-v2/resetUserPassword.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L101) +- [apiProvisioning-v2/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L113) +- [apiProvisioning-v2/resetUserPassword.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L129) ### [invalid format of sharees response](https://github.com/owncloud/product/issues/292) ### [Searching sharee with displayname](https://github.com/owncloud/ocis/issues/547) @@ -2346,3 +2385,7 @@ ### [oCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) - [apiVersions/fileVersionsSharingToShares.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L291) + +### [deleting a share with wrong authentication returns OCS status 996 / HTTP 500](https://github.com/owncloud/ocis/issues/1229) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#211) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#212) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index 18d5ad2ef2..3591d6d04d 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -180,8 +180,12 @@ - [apiProvisioning-v1/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L32) - [apiProvisioning-v1/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L34) - [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) + - [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) - [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) +- [apiProvisioning-v2/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L121) +- [apiProvisioning-v2/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L122) +- [apiProvisioning-v2/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L123) - [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) - [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) - [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) @@ -207,6 +211,9 @@ ### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis/issues/1420) +- [apiProvisioning-v1/enableUser.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L92) +- [apiProvisioning-v1/enableUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L102) +- [apiProvisioning-v1/enableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L129) - [apiProvisioning-v1/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L99) - [apiProvisioning-v1/disableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L129) - [apiProvisioning-v1/disableUser.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L165) @@ -250,11 +257,6 @@ - [apiProvisioning-v2/getUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L47) -### [subadmin endpoints not implemented](https://github.com/owncloud/product/issues/289) - -- [apiProvisioning-v2/disableUser.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L48) -- [apiProvisioning-v2/disableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L64) - ### [invalid format of sharees response](https://github.com/owncloud/product/issues/292) ### [Searching sharee with displayname](https://github.com/owncloud/ocis/issues/547) @@ -660,6 +662,7 @@ User cannot create a folder named Share ### [Set quota over settings](https://github.com/owncloud/ocis/issues/1290) +- [apiProvisioning-v1/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L131) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L148) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L158) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L167) @@ -1751,6 +1754,7 @@ restoring a file doesn't changes the etags of the parents - [apiProvisioning-v1/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L19) - [apiProvisioning-v1/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L27) - [apiProvisioning-v1/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L35) +- [apiProvisioning-v1/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L48) - [apiProvisioning-v1/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L11) - [apiProvisioning-v1/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L21) - [apiProvisioning-v2/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L11) @@ -2394,6 +2398,12 @@ restoring a file doesn't changes the etags of the parents - [apiProvisioningGroups-v1/addToGroup.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L124) ### [subadmin endpoints not implemented](https://github.com/owncloud/product/issues/289) +- [apiProvisioning-v1/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L125) +- [apiProvisioning-v1/deleteUser.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L73) +- [apiProvisioning-v1/disableUser.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L222) +- [apiProvisioning-v1/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L143) +- [apiProvisioning-v1/getUser.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L170) +- [apiProvisioning-v1/resetUserPassword.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L111) - [apiProvisioningGroups-v1/addGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L87) - [apiProvisioningGroups-v1/addToGroup.feature:133](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L133) - [apiProvisioningGroups-v1/addToGroup.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L146) @@ -2404,7 +2414,32 @@ restoring a file doesn't changes the etags of the parents - [apiProvisioningGroups-v1/getUserGroups.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L56) - [apiProvisioningGroups-v1/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L110) - [apiProvisioningGroups-v1/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L123) +- [apiProvisioning-v1/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L113) +- [apiProvisioning-v2/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L125) +- [apiProvisioning-v2/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L48) +- [apiProvisioning-v2/deleteUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L64) +- [apiProvisioning-v2/deleteUser.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L74) +- [apiProvisioning-v2/deleteUser.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L88) +- [apiProvisioning-v2/deleteUser.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L101) +- [apiProvisioning-v2/deleteUser.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L115) +- [apiProvisioning-v2/disableUser.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L48) +- [apiProvisioning-v2/disableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L64) +- [apiProvisioning-v2/disableUser.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L223) +- [apiProvisioning-v2/disableUser.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L237) +- [apiProvisioning-v2/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L131) +- [apiProvisioning-v2/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L143) +- [apiProvisioning-v2/editUser.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L159) +- [apiProvisioning-v2/enableUser.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L104) +- [apiProvisioning-v2/enableUser.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L118) +- [apiProvisioning-v2/enableUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L131) +- [apiProvisioning-v2/enableUser.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L146) +- [apiProvisioning-v2/getUser.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L145) +- [apiProvisioning-v2/getUser.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L156) +- [apiProvisioning-v2/getUser.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L171) +- [apiProvisioning-v2/resetUserPassword.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L101) +- [apiProvisioning-v2/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L113) +- [apiProvisioning-v2/resetUserPassword.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L129) - [apiProvisioningGroups-v2/addGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L87) - [apiProvisioningGroups-v2/addGroup.feature:109](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L109) - [apiProvisioningGroups-v2/addToGroup.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L128) @@ -2498,3 +2533,7 @@ special character username not valid ### [Deletion time in trash bin shows a wrong date](https://github.com/owncloud/ocis/issues/541) - [apiTrashbin/trashbinFilesFolders.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L284) - [apiTrashbin/trashbinFilesFolders.feature:285](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L285) + +### [deleting a share with wrong authentication returns OCS status 996 / HTTP 500](https://github.com/owncloud/ocis/issues/1229) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#211) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#212) From 18426be9a2eb4ca0c054b8c536f4bbd4d8601bb6 Mon Sep 17 00:00:00 2001 From: Erwin Palma <30660343+erwinpalma@users.noreply.github.com> Date: Thu, 28 Jan 2021 15:05:01 +0100 Subject: [PATCH 43/88] Update CONFIGURATION.tmpl The following link does no exist [our repository](https://github.com/owncloud/ocis/tree/master/config), --- ocis/templates/CONFIGURATION.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocis/templates/CONFIGURATION.tmpl b/ocis/templates/CONFIGURATION.tmpl index d86a7033c4..0b26b350a0 100644 --- a/ocis/templates/CONFIGURATION.tmpl +++ b/ocis/templates/CONFIGURATION.tmpl @@ -39,7 +39,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at (--> This link does not exist) [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables From 5c235be89b1c36c7dcf85aa694b2eb75b8db8684 Mon Sep 17 00:00:00 2001 From: Ingmar Aasoja Date: Thu, 28 Jan 2021 16:12:08 +0200 Subject: [PATCH 44/88] Use MICRO_REGISTRY_ADDRESS env var for etcd address --- ocis-pkg/service/grpc/service.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ocis-pkg/service/grpc/service.go b/ocis-pkg/service/grpc/service.go index 522c91399c..7c2d5891c7 100644 --- a/ocis-pkg/service/grpc/service.go +++ b/ocis-pkg/service/grpc/service.go @@ -22,10 +22,14 @@ import ( var DefaultClient = newGrpcClient() func newGrpcClient() mclient.Client { + addresses := strings.Split(os.Getenv("MICRO_REGISTRY_ADDRESS"), ",") + var r registry.Registry switch os.Getenv("MICRO_REGISTRY") { case "etcd": - r = etcdr.NewRegistry() + r = etcdr.NewRegistry( + registry.Addrs(addresses...), + ) default: r = mdnsr.NewRegistry() } From 30c80b09238d830b233568240de7a56e2fc6b65d Mon Sep 17 00:00:00 2001 From: Ishank Arora Date: Fri, 22 Jan 2021 14:11:13 +0100 Subject: [PATCH 45/88] Check if roles are present in user object before looking those up --- changelog/unreleased/account-roles-fix.md | 3 +++ ocis-pkg/middleware/account.go | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 changelog/unreleased/account-roles-fix.md diff --git a/changelog/unreleased/account-roles-fix.md b/changelog/unreleased/account-roles-fix.md new file mode 100644 index 0000000000..35dce3a1bd --- /dev/null +++ b/changelog/unreleased/account-roles-fix.md @@ -0,0 +1,3 @@ +Bugfix: Check if roles are present in user object before looking those up + +https://github.com/owncloud/ocis/pull/1388 diff --git a/ocis-pkg/middleware/account.go b/ocis-pkg/middleware/account.go index c02ca9f30a..1e9b70c2de 100644 --- a/ocis-pkg/middleware/account.go +++ b/ocis-pkg/middleware/account.go @@ -67,7 +67,11 @@ func ExtractAccountUUID(opts ...account.Option) func(http.Handler) http.Handler ctx = context.WithValue(ctx, UUIDKey, u.Id.OpaqueId) // TODO: implement token manager in cs3org/reva that uses generic metadata instead of access token from header. ctx = metadata.Set(ctx, AccountID, u.Id.OpaqueId) - ctx = metadata.Set(ctx, RoleIDs, string(u.Opaque.Map["roles"].Value)) + if u.Opaque != nil { + if roles, ok := u.Opaque.Map["roles"]; ok { + ctx = metadata.Set(ctx, RoleIDs, string(roles.Value)) + } + } next.ServeHTTP(w, r.WithContext(ctx)) }) } From 414b635433614f9e602dfba84c77453d216ef629 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 29 Jan 2021 09:46:37 +0000 Subject: [PATCH 46/88] Automated changelog update [skip ci] --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b3f3fba03..006278cffa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,16 @@ The following sections list the changes for unreleased. ## Summary +* Bugfix - Check if roles are present in user object before looking those up: [#1388](https://github.com/owncloud/ocis/pull/1388) * Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) * Enhancement - Update reva to v1.5.2-0.20210125114636-0c10b333ee69: [#1482](https://github.com/owncloud/ocis/pull/1482) ## Details +* Bugfix - Check if roles are present in user object before looking those up: [#1388](https://github.com/owncloud/ocis/pull/1388) + + https://github.com/owncloud/ocis/pull/1388 + * Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) Tags: ocis, runtime From b5d586fd899356b0a96132ed35097569cc245cb3 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Tue, 5 Jan 2021 14:59:12 +0100 Subject: [PATCH 47/88] add clients --- .../config/keycloak/clients/android_app.json | 62 ++++++++++++++++++ .../keycloak/clients/desktop_client.json | 62 ++++++++++++++++++ .../config/keycloak/clients/ios_app.json | 63 ++++++++++++++++++ .../config/keycloak/clients/web.json | 64 +++++++++++++++++++ 4 files changed, 251 insertions(+) create mode 100644 deployments/examples/ocis_keycloak/config/keycloak/clients/android_app.json create mode 100644 deployments/examples/ocis_keycloak/config/keycloak/clients/desktop_client.json create mode 100644 deployments/examples/ocis_keycloak/config/keycloak/clients/ios_app.json create mode 100644 deployments/examples/ocis_keycloak/config/keycloak/clients/web.json diff --git a/deployments/examples/ocis_keycloak/config/keycloak/clients/android_app.json b/deployments/examples/ocis_keycloak/config/keycloak/clients/android_app.json new file mode 100644 index 0000000000..438b62508d --- /dev/null +++ b/deployments/examples/ocis_keycloak/config/keycloak/clients/android_app.json @@ -0,0 +1,62 @@ +{ + "clientId": "e4rAsNUSIUs0lF4nbv9FmCeUkTlV9GdgTLDH1b5uie7syb90SzEVrbN7HIpmWJeD", + "name": "ownCloud Android app", + "surrogateAuthRequired": false, + "enabled": true, + "alwaysDisplayInConsole": false, + "clientAuthenticatorType": "client-secret", + "secret" : "dInFYGV33xKzhbRmpqQltYNdfLdJIfJ9L5ISoKhNoT9qZftpdWSP71VrpGR9pmoD", + "redirectUris": [ + "oc://android.owncloud.com" + ], + "webOrigins": [], + "notBefore": 0, + "bearerOnly": false, + "consentRequired": false, + "standardFlowEnabled": true, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": true, + "serviceAccountsEnabled": false, + "publicClient": false, + "frontchannelLogout": false, + "protocol": "openid-connect", + "attributes": { + "saml.assertion.signature": "false", + "saml.force.post.binding": "false", + "saml.multivalued.roles": "false", + "saml.encrypt": "false", + "backchannel.logout.revoke.offline.tokens": "false", + "saml.server.signature": "false", + "saml.server.signature.keyinfo.ext": "false", + "exclude.session.state.from.auth.response": "false", + "backchannel.logout.session.required": "true", + "client_credentials.use_refresh_token": "false", + "saml_force_name_id_format": "false", + "saml.client.signature": "false", + "tls.client.certificate.bound.access.tokens": "false", + "saml.authnstatement": "false", + "display.on.consent.screen": "false", + "saml.onetimeuse.condition": "false" + }, + "authenticationFlowBindingOverrides": {}, + "fullScopeAllowed": true, + "nodeReRegistrationTimeout": -1, + "defaultClientScopes": [ + "web-origins", + "role_list", + "profile", + "roles", + "email" + ], + "optionalClientScopes": [ + "address", + "phone", + "offline_access", + "microprofile-jwt" + ], + "access": { + "view": true, + "configure": true, + "manage": true + } +} diff --git a/deployments/examples/ocis_keycloak/config/keycloak/clients/desktop_client.json b/deployments/examples/ocis_keycloak/config/keycloak/clients/desktop_client.json new file mode 100644 index 0000000000..c95ff515de --- /dev/null +++ b/deployments/examples/ocis_keycloak/config/keycloak/clients/desktop_client.json @@ -0,0 +1,62 @@ +{ + "clientId": "xdXOt13JKxym1B1QcEncf2XDkLAexMBFwiT9j6EfhhHFJhs2KM9jbjTmf8JBXE69", + "name": "ownCloud desktop client", + "surrogateAuthRequired": false, + "enabled": true, + "alwaysDisplayInConsole": false, + "clientAuthenticatorType": "client-secret", + "secret" : "UBntmLjC2yYCeHwsyj73Uwo9TAaecAetRwMw0xYcvNL9yRdLSUi0hUAHfvCHFeFh", + "redirectUris": [ + "http://localhost:*" + ], + "webOrigins": [], + "notBefore": 0, + "bearerOnly": false, + "consentRequired": false, + "standardFlowEnabled": true, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": true, + "serviceAccountsEnabled": false, + "publicClient": false, + "frontchannelLogout": false, + "protocol": "openid-connect", + "attributes": { + "saml.assertion.signature": "false", + "saml.force.post.binding": "false", + "saml.multivalued.roles": "false", + "saml.encrypt": "false", + "backchannel.logout.revoke.offline.tokens": "false", + "saml.server.signature": "false", + "saml.server.signature.keyinfo.ext": "false", + "exclude.session.state.from.auth.response": "false", + "backchannel.logout.session.required": "true", + "client_credentials.use_refresh_token": "false", + "saml_force_name_id_format": "false", + "saml.client.signature": "false", + "tls.client.certificate.bound.access.tokens": "false", + "saml.authnstatement": "false", + "display.on.consent.screen": "false", + "saml.onetimeuse.condition": "false" + }, + "authenticationFlowBindingOverrides": {}, + "fullScopeAllowed": true, + "nodeReRegistrationTimeout": -1, + "defaultClientScopes": [ + "web-origins", + "role_list", + "profile", + "roles", + "email" + ], + "optionalClientScopes": [ + "address", + "phone", + "offline_access", + "microprofile-jwt" + ], + "access": { + "view": true, + "configure": true, + "manage": true + } +} diff --git a/deployments/examples/ocis_keycloak/config/keycloak/clients/ios_app.json b/deployments/examples/ocis_keycloak/config/keycloak/clients/ios_app.json new file mode 100644 index 0000000000..a0a5ce7db4 --- /dev/null +++ b/deployments/examples/ocis_keycloak/config/keycloak/clients/ios_app.json @@ -0,0 +1,63 @@ +{ + "clientId": "mxd5OQDk6es5LzOzRvidJNfXLUZS2oN3oUFeXPP8LpPrhx3UroJFduGEYIBOxkY1", + "name": "ownCloud iOS app", + "surrogateAuthRequired": false, + "enabled": true, + "alwaysDisplayInConsole": false, + "clientAuthenticatorType": "client-secret", + "secret" : "KFeFWWEZO9TkisIQzR3fo7hfiMXlOpaqP8CFuTbSHzV1TUuGECglPxpiVKJfOXIx", + "redirectUris": [ + "oc://ios.owncloud.com", + "oc.ios://ios.owncloud.com" + ], + "webOrigins": [], + "notBefore": 0, + "bearerOnly": false, + "consentRequired": false, + "standardFlowEnabled": true, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": true, + "serviceAccountsEnabled": false, + "publicClient": false, + "frontchannelLogout": false, + "protocol": "openid-connect", + "attributes": { + "saml.assertion.signature": "false", + "saml.force.post.binding": "false", + "saml.multivalued.roles": "false", + "saml.encrypt": "false", + "backchannel.logout.revoke.offline.tokens": "false", + "saml.server.signature": "false", + "saml.server.signature.keyinfo.ext": "false", + "exclude.session.state.from.auth.response": "false", + "backchannel.logout.session.required": "true", + "client_credentials.use_refresh_token": "false", + "saml_force_name_id_format": "false", + "saml.client.signature": "false", + "tls.client.certificate.bound.access.tokens": "false", + "saml.authnstatement": "false", + "display.on.consent.screen": "false", + "saml.onetimeuse.condition": "false" + }, + "authenticationFlowBindingOverrides": {}, + "fullScopeAllowed": true, + "nodeReRegistrationTimeout": -1, + "defaultClientScopes": [ + "web-origins", + "role_list", + "profile", + "roles", + "email" + ], + "optionalClientScopes": [ + "address", + "phone", + "offline_access", + "microprofile-jwt" + ], + "access": { + "view": true, + "configure": true, + "manage": true + } +} diff --git a/deployments/examples/ocis_keycloak/config/keycloak/clients/web.json b/deployments/examples/ocis_keycloak/config/keycloak/clients/web.json new file mode 100644 index 0000000000..f4feda1805 --- /dev/null +++ b/deployments/examples/ocis_keycloak/config/keycloak/clients/web.json @@ -0,0 +1,64 @@ +{ + "clientId": "web", + "rootUrl": "https://ocis.owncloud.test", + "adminUrl": "https://ocis.owncloud.test", + "surrogateAuthRequired": false, + "enabled": true, + "alwaysDisplayInConsole": false, + "clientAuthenticatorType": "client-secret", + "redirectUris": [ + "https://ocis.owncloud.test/*" + ], + "webOrigins": [ + "https://ocis.owncloud.test" + ], + "notBefore": 0, + "bearerOnly": false, + "consentRequired": false, + "standardFlowEnabled": true, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": true, + "serviceAccountsEnabled": false, + "publicClient": true, + "frontchannelLogout": false, + "protocol": "openid-connect", + "attributes": { + "saml.assertion.signature": "false", + "saml.force.post.binding": "false", + "saml.multivalued.roles": "false", + "saml.encrypt": "false", + "backchannel.logout.revoke.offline.tokens": "false", + "saml.server.signature": "false", + "saml.server.signature.keyinfo.ext": "false", + "exclude.session.state.from.auth.response": "false", + "backchannel.logout.session.required": "true", + "client_credentials.use_refresh_token": "false", + "saml_force_name_id_format": "false", + "saml.client.signature": "false", + "tls.client.certificate.bound.access.tokens": "false", + "saml.authnstatement": "false", + "display.on.consent.screen": "false", + "saml.onetimeuse.condition": "false" + }, + "authenticationFlowBindingOverrides": {}, + "fullScopeAllowed": true, + "nodeReRegistrationTimeout": -1, + "defaultClientScopes": [ + "web-origins", + "role_list", + "profile", + "roles", + "email" + ], + "optionalClientScopes": [ + "address", + "phone", + "offline_access", + "microprofile-jwt" + ], + "access": { + "view": true, + "configure": true, + "manage": true + } +} From 8ed2dedf4c46fade1681b5be98633ec3fee00ca2 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Thu, 14 Jan 2021 08:47:02 +0100 Subject: [PATCH 48/88] fix ocis-net --- deployments/examples/ocis_keycloak/docker-compose.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/deployments/examples/ocis_keycloak/docker-compose.yml b/deployments/examples/ocis_keycloak/docker-compose.yml index bf87e7f1fa..183d36a998 100644 --- a/deployments/examples/ocis_keycloak/docker-compose.yml +++ b/deployments/examples/ocis_keycloak/docker-compose.yml @@ -5,7 +5,7 @@ services: traefik: image: "traefik:v2.3" networks: - default: + ocis-net: aliases: - ${OCIS_DOMAIN:-ocis.owncloud.test} - ${KEYCLOAK_DOMAIN:-keycloak.owncloud.test} @@ -46,7 +46,7 @@ services: ocis: image: owncloud/ocis:${OCIS_DOCKER_TAG:-latest} networks: - default: + ocis-net: environment: # Keycloak IDP specific configuration PROXY_AUTOPROVISION_ACCOUNTS: "true" @@ -81,6 +81,8 @@ services: postgres: image: postgres:alpine + networks: + ocis-net: volumes: - keycloak_postgres_data:/var/lib/postgresql/data environment: @@ -93,6 +95,8 @@ services: keycloak: image: quay.io/keycloak/keycloak:latest + networks: + ocis-net: environment: DB_VENDOR: POSTGRES DB_ADDR: postgres @@ -126,3 +130,6 @@ volumes: certs: ocis-data: keycloak_postgres_data: + +networks: + ocis-net: From aaac06da5bc4bfdae1f7d90f5c380e176b3df48f Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Thu, 14 Jan 2021 12:20:11 +0100 Subject: [PATCH 49/88] let keycloak serve the well-known/openidconnect --- deployments/examples/ocis_keycloak/docker-compose.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/deployments/examples/ocis_keycloak/docker-compose.yml b/deployments/examples/ocis_keycloak/docker-compose.yml index 183d36a998..c6d0147db2 100644 --- a/deployments/examples/ocis_keycloak/docker-compose.yml +++ b/deployments/examples/ocis_keycloak/docker-compose.yml @@ -120,6 +120,16 @@ services: - "traefik.http.routers.keycloak-secure.service=keycloak" - "traefik.http.services.keycloak.loadbalancer.server.port=8080" - "traefik.http.services.keycloak.loadbalancer.server.scheme=http" + # let /.well-known/openid-configuration be served by Keycloak + - "traefik.http.routers.idp-wellknown-secure.entrypoints=https" + - "traefik.http.routers.idp-wellknown-secure.tls=true" + - "traefik.http.routers.idp-wellknown-secure.tls.certresolver=http" + - "traefik.http.routers.idp-wellknown-secure.rule=Host(`${OCIS_DOMAIN:-ocis.owncloud.test}`) && Path(`/.well-known/openid-configuration`)" + - "traefik.http.middlewares.idp-headers.headers.customrequestheaders.X-Forwarded-Host=${KEYCLOAK_DOMAIN:-keycloak.owncloud.test}" + - "traefik.http.middlewares.idp-prefix.addprefix.prefix=/auth/realms/${KEYCLOAK_REALM:-master}" + - "traefik.http.middlewares.idp-override.chain.middlewares=idp-headers,idp-prefix" + - "traefik.http.routers.idp-wellknown-secure.middlewares=idp-override" + - "traefik.http.routers.idp-wellknown-secure.service=keycloak" depends_on: - postgres logging: From 5a74c1f49f91eeb2bc4532c00ce4a12bb1765d0e Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Thu, 28 Jan 2021 16:14:00 +0100 Subject: [PATCH 50/88] add import and export --- .../examples/ocis_keycloak/docker-compose.yml | 3 +++ .../examples/ocis_keycloak/keycloak-export.sh | 13 +++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 deployments/examples/ocis_keycloak/keycloak-export.sh diff --git a/deployments/examples/ocis_keycloak/docker-compose.yml b/deployments/examples/ocis_keycloak/docker-compose.yml index c6d0147db2..fdebf94fe5 100644 --- a/deployments/examples/ocis_keycloak/docker-compose.yml +++ b/deployments/examples/ocis_keycloak/docker-compose.yml @@ -97,6 +97,8 @@ services: image: quay.io/keycloak/keycloak:latest networks: ocis-net: + volumes: + - ./config/keycloak/keycloak-import.json:/opt/jboss/keycloak/keycloak-import.json environment: DB_VENDOR: POSTGRES DB_ADDR: postgres @@ -107,6 +109,7 @@ services: KEYCLOAK_USER: ${KEYCLOAK_ADMIN_USER:-admin} KEYCLOAK_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD:-admin} PROXY_ADDRESS_FORWARDING: "true" + KEYCLOAK_IMPORT: /opt/jboss/keycloak/keycloak-import.json labels: - "traefik.enable=true" - "traefik.http.routers.keycloak.entrypoints=http" diff --git a/deployments/examples/ocis_keycloak/keycloak-export.sh b/deployments/examples/ocis_keycloak/keycloak-export.sh new file mode 100644 index 0000000000..675515639c --- /dev/null +++ b/deployments/examples/ocis_keycloak/keycloak-export.sh @@ -0,0 +1,13 @@ +#! /bin/bash +docker-compose exec keycloak \ + sh -c "cd /opt/jboss/keycloak && \ + timeout 60 bin/standalone.sh \ + -Djboss.socket.binding.port-offset=100 \ + -Dkeycloak.migration.action=export \ + -Dkeycloak.migration.provider=singleFile \ + -Dkeycloak.migration.file=keycloak-export.json \ + -Djboss.httin/standalone.sh -Dkeycloak.migration.action=export \ + -Dkeycloak.migration.provider=singleFile \ + -Dkeycloak.migration.file=keycloak-export.json" + +docker-compose exec keycloak cat /opt/jboss/keycloak/keycloak-export.json > keycloak-export.json From 080d348d195bb4ce7f714b4b6b7f8947580e0912 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Fri, 29 Jan 2021 10:39:23 +0100 Subject: [PATCH 51/88] automatic realm import on startup --- deployments/examples/ocis_keycloak/.env | 2 +- .../config/keycloak/ocis-realm.json | 1982 +++++++++++++++++ .../examples/ocis_keycloak/docker-compose.yml | 12 +- .../examples/ocis_keycloak/keycloak-export.sh | 9 +- docs/ocis/deployment/ocis_keycloak.md | 15 +- 5 files changed, 1996 insertions(+), 24 deletions(-) create mode 100644 deployments/examples/ocis_keycloak/config/keycloak/ocis-realm.json diff --git a/deployments/examples/ocis_keycloak/.env b/deployments/examples/ocis_keycloak/.env index 0d63fce056..e21b3d4d57 100644 --- a/deployments/examples/ocis_keycloak/.env +++ b/deployments/examples/ocis_keycloak/.env @@ -23,7 +23,7 @@ OCIS_OIDC_CLIENT_ID= ### Keycloak ### # Domain of Keycloak, where you can find the managment and authentication frontend. Defaults to "keycloak.owncloud.test" KEYCLOAK_DOMAIN= -# Realm which to be used with oCIS. Defaults to "master" +# Realm which to be used with oCIS. Defaults to "oCIS" KEYCLOAK_REALM= # Admin user login name. Defaults to "admin" KEYCLOAK_ADMIN_USER= diff --git a/deployments/examples/ocis_keycloak/config/keycloak/ocis-realm.json b/deployments/examples/ocis_keycloak/config/keycloak/ocis-realm.json new file mode 100644 index 0000000000..b207d5c0c0 --- /dev/null +++ b/deployments/examples/ocis_keycloak/config/keycloak/ocis-realm.json @@ -0,0 +1,1982 @@ +{ + "id" : "ownCloud Infinite Scale Test", + "realm" : "oCIS", + "displayName" : "ownCloud Infinite Scale", + "notBefore" : 0, + "revokeRefreshToken" : false, + "refreshTokenMaxReuse" : 0, + "accessTokenLifespan" : 300, + "accessTokenLifespanForImplicitFlow" : 900, + "ssoSessionIdleTimeout" : 1800, + "ssoSessionMaxLifespan" : 36000, + "ssoSessionIdleTimeoutRememberMe" : 0, + "ssoSessionMaxLifespanRememberMe" : 0, + "offlineSessionIdleTimeout" : 2592000, + "offlineSessionMaxLifespanEnabled" : false, + "offlineSessionMaxLifespan" : 5184000, + "clientSessionIdleTimeout" : 0, + "clientSessionMaxLifespan" : 0, + "clientOfflineSessionIdleTimeout" : 0, + "clientOfflineSessionMaxLifespan" : 0, + "accessCodeLifespan" : 60, + "accessCodeLifespanUserAction" : 300, + "accessCodeLifespanLogin" : 1800, + "actionTokenGeneratedByAdminLifespan" : 43200, + "actionTokenGeneratedByUserLifespan" : 300, + "enabled" : true, + "sslRequired" : "external", + "registrationAllowed" : false, + "registrationEmailAsUsername" : false, + "rememberMe" : false, + "verifyEmail" : false, + "loginWithEmailAllowed" : true, + "duplicateEmailsAllowed" : false, + "resetPasswordAllowed" : false, + "editUsernameAllowed" : false, + "bruteForceProtected" : false, + "permanentLockout" : false, + "maxFailureWaitSeconds" : 900, + "minimumQuickLoginWaitSeconds" : 60, + "waitIncrementSeconds" : 60, + "quickLoginCheckMilliSeconds" : 1000, + "maxDeltaTimeSeconds" : 43200, + "failureFactor" : 30, + "roles" : { + "realm" : [ { + "id" : "2d576514-4aae-46aa-9d9c-075f55f4d988", + "name" : "uma_authorization", + "description" : "${role_uma_authorization}", + "composite" : false, + "clientRole" : false, + "containerId" : "ownCloud Infinite Scale Test", + "attributes" : { } + }, { + "id" : "e2145b30-bf6f-49fb-af3f-1b40168bfcef", + "name" : "offline_access", + "description" : "${role_offline-access}", + "composite" : false, + "clientRole" : false, + "containerId" : "ownCloud Infinite Scale Test", + "attributes" : { } + } ], + "client" : { + "_system" : [ ], + "realm-management" : [ { + "id" : "979ce053-a671-4b50-81d5-da4bdf7404c9", + "name" : "view-clients", + "description" : "${role_view-clients}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-clients" ] + } + }, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "4bec4791-e888-4dac-bc95-71720d5981b9", + "name" : "query-users", + "description" : "${role_query-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "955b4406-b04f-432d-a61a-571675874341", + "name" : "manage-authorization", + "description" : "${role_manage-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "baa219af-2773-4d59-b06b-485f10fbbab3", + "name" : "view-events", + "description" : "${role_view-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "f280bc03-d079-478d-be06-3590580b25e9", + "name" : "manage-users", + "description" : "${role_manage-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "db698163-84ad-46c9-958f-bb5f80ae78b5", + "name" : "query-clients", + "description" : "${role_query-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "36c04d89-abf7-4a2c-a808-8efa9aca1435", + "name" : "manage-clients", + "description" : "${role_manage-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "06eae953-11d5-4344-b089-ffce1e68d5d8", + "name" : "query-realms", + "description" : "${role_query-realms}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "afe8aa78-2f06-43a5-8c99-cf68a1f5a86a", + "name" : "realm-admin", + "description" : "${role_realm-admin}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "view-clients", "query-users", "manage-authorization", "view-events", "manage-users", "query-clients", "manage-clients", "query-realms", "impersonation", "manage-realm", "manage-identity-providers", "view-authorization", "create-client", "query-groups", "view-users", "view-realm", "view-identity-providers", "manage-events" ] + } + }, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "22ee128a-b28e-4c6a-aa8e-ad4136d74e1b", + "name" : "impersonation", + "description" : "${role_impersonation}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "89d4f119-7f87-44d9-8eef-d207304de778", + "name" : "manage-realm", + "description" : "${role_manage-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "ebffeff4-6794-4003-a2ab-a79eff7d1baa", + "name" : "manage-identity-providers", + "description" : "${role_manage-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "2361a7ff-d2b3-43f5-b360-ad0e44fba65c", + "name" : "view-authorization", + "description" : "${role_view-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "f7bf6d7a-a861-49c6-8f6f-225c18d0a03a", + "name" : "create-client", + "description" : "${role_create-client}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "34ccce1c-5a7e-4268-8836-2276545be900", + "name" : "query-groups", + "description" : "${role_query-groups}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "430f7831-8f22-4518-bd15-2998eae45a51", + "name" : "view-users", + "description" : "${role_view-users}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-groups", "query-users" ] + } + }, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "371a31e6-4494-4b74-b3ea-d030663423ed", + "name" : "view-realm", + "description" : "${role_view-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "e875775b-7a3e-4a5d-9e4e-376351b78626", + "name" : "view-identity-providers", + "description" : "${role_view-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + }, { + "id" : "3dce7929-ee1f-40cd-9be1-7addcae92cef", + "name" : "manage-events", + "description" : "${role_manage-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "attributes" : { } + } ], + "xdXOt13JKxym1B1QcEncf2XDkLAexMBFwiT9j6EfhhHFJhs2KM9jbjTmf8JBXE69" : [ ], + "web" : [ ], + "security-admin-console" : [ ], + "e4rAsNUSIUs0lF4nbv9FmCeUkTlV9GdgTLDH1b5uie7syb90SzEVrbN7HIpmWJeD" : [ ], + "admin-cli" : [ ], + "mxd5OQDk6es5LzOzRvidJNfXLUZS2oN3oUFeXPP8LpPrhx3UroJFduGEYIBOxkY1" : [ ], + "account-console" : [ ], + "broker" : [ { + "id" : "81fad68a-8dd8-4d79-9a8f-206a82460145", + "name" : "read-token", + "description" : "${role_read-token}", + "composite" : false, + "clientRole" : true, + "containerId" : "002faf0a-716c-4230-81c7-ce22d1eb832c", + "attributes" : { } + } ], + "account" : [ { + "id" : "c49a49da-8ad0-44cb-b518-6d7d72cbe494", + "name" : "manage-account", + "description" : "${role_manage-account}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "manage-account-links" ] + } + }, + "clientRole" : true, + "containerId" : "9850adad-7910-4b67-a790-da6444361618", + "attributes" : { } + }, { + "id" : "9dc2244e-b8a7-44f1-b173-d2b929fedcca", + "name" : "view-consent", + "description" : "${role_view-consent}", + "composite" : false, + "clientRole" : true, + "containerId" : "9850adad-7910-4b67-a790-da6444361618", + "attributes" : { } + }, { + "id" : "ce115327-99c9-44d4-ba7d-820397dc11e6", + "name" : "manage-account-links", + "description" : "${role_manage-account-links}", + "composite" : false, + "clientRole" : true, + "containerId" : "9850adad-7910-4b67-a790-da6444361618", + "attributes" : { } + }, { + "id" : "8c45ca71-32aa-4547-932d-412da5e371ed", + "name" : "view-profile", + "description" : "${role_view-profile}", + "composite" : false, + "clientRole" : true, + "containerId" : "9850adad-7910-4b67-a790-da6444361618", + "attributes" : { } + }, { + "id" : "cbeecf6d-9af8-4746-877b-74800a894c35", + "name" : "view-applications", + "description" : "${role_view-applications}", + "composite" : false, + "clientRole" : true, + "containerId" : "9850adad-7910-4b67-a790-da6444361618", + "attributes" : { } + }, { + "id" : "ea798f64-b5f8-417f-9fe0-d3cd9172884f", + "name" : "delete-account", + "description" : "${role_delete-account}", + "composite" : false, + "clientRole" : true, + "containerId" : "9850adad-7910-4b67-a790-da6444361618", + "attributes" : { } + }, { + "id" : "e73aaf6d-e67b-491a-9cc3-78c32c82b42c", + "name" : "manage-consent", + "description" : "${role_manage-consent}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "view-consent" ] + } + }, + "clientRole" : true, + "containerId" : "9850adad-7910-4b67-a790-da6444361618", + "attributes" : { } + } ] + } + }, + "groups" : [ ], + "defaultRoles" : [ "uma_authorization", "offline_access" ], + "requiredCredentials" : [ "password" ], + "otpPolicyType" : "totp", + "otpPolicyAlgorithm" : "HmacSHA1", + "otpPolicyInitialCounter" : 0, + "otpPolicyDigits" : 6, + "otpPolicyLookAheadWindow" : 1, + "otpPolicyPeriod" : 30, + "otpSupportedApplications" : [ "FreeOTP", "Google Authenticator" ], + "webAuthnPolicyRpEntityName" : "keycloak", + "webAuthnPolicySignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyRpId" : "", + "webAuthnPolicyAttestationConveyancePreference" : "not specified", + "webAuthnPolicyAuthenticatorAttachment" : "not specified", + "webAuthnPolicyRequireResidentKey" : "not specified", + "webAuthnPolicyUserVerificationRequirement" : "not specified", + "webAuthnPolicyCreateTimeout" : 0, + "webAuthnPolicyAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyAcceptableAaguids" : [ ], + "webAuthnPolicyPasswordlessRpEntityName" : "keycloak", + "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyPasswordlessRpId" : "", + "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified", + "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified", + "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified", + "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified", + "webAuthnPolicyPasswordlessCreateTimeout" : 0, + "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ], + "users" : [ { + "id" : "389845cd-65b9-47fc-b723-ba75940bcbd7", + "createdTimestamp" : 1611912383386, + "username" : "admin", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "Admin", + "lastName" : "Admin", + "email" : "admin@example.org", + "credentials" : [ { + "id" : "499e0fbe-1c10-4588-9db4-e8a1012b9246", + "type" : "password", + "createdDate" : 1611912393787, + "secretData" : "{\"value\":\"WUdGHYxGqrEBqg8Y3v+CKCzkzXkboMI6VmpWAYqvD7pIcP9z1zzDTqwlXrVFytoZMpcceT3Xm1hAGh7CZcSoHQ==\",\"salt\":\"pxP1MdkG//50Lv81WsQ5FA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "uma_authorization", "offline_access" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "0a9f434c-4864-49cf-ac15-46ed0f49d59b", + "createdTimestamp" : 1611912153544, + "username" : "einstein", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "Albert", + "lastName" : "Einstein", + "email" : "einstein@example.org", + "credentials" : [ { + "id" : "19efcb24-c5ec-42ed-97e1-2475ca025f40", + "type" : "password", + "createdDate" : 1611912169712, + "secretData" : "{\"value\":\"RFmvq2E9BRSkTlzax83HU02nMA83KisDenT6cnb8EspZTrsXvIrFBspIeOZIZfZaJIacFBg1FXslHZMwbUp8qA==\",\"salt\":\"p2wYyBMa41n3A6/5ZAFUww==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "uma_authorization", "offline_access" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "48016357-346a-443e-bf7a-945c9448a99b", + "createdTimestamp" : 1611912241951, + "username" : "marie", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "Marie", + "lastName" : "Curie", + "email" : "marie@example.org", + "credentials" : [ { + "id" : "ff304f90-a934-4bf1-9cfe-bd165751c110", + "type" : "password", + "createdDate" : 1611912318408, + "secretData" : "{\"value\":\"DN7g/etlfzHfd6tfF4g50xdPGy+aUboAXmjB06R0NzhGhwhOxiUh7KNWre2pqZOiu28iGXfDFWMP2xDCNid+Mg==\",\"salt\":\"ZFYXUMBaZm/XspifJgH9Tg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "uma_authorization", "offline_access" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "d18c3689-b816-455a-9728-cd8c9797f315", + "createdTimestamp" : 1611912340085, + "username" : "moss", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "Maurice", + "lastName" : "Moss", + "email" : "moss@example.org", + "credentials" : [ { + "id" : "273679bf-80ef-4c83-ac23-0ee569c3bece", + "type" : "password", + "createdDate" : 1611912354500, + "secretData" : "{\"value\":\"u1oYT2/nE7cWKY4MK57zzyOAbnBGjTt1J3MWCJJfnBpSZnO0q1nB9Eymt2P9te702E0ijPDTb8towbxSm60dfQ==\",\"salt\":\"0LnbBHsRET4CLI/bzW4xng==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "uma_authorization", "offline_access" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "373be4c5-7f65-4e91-ba0e-bfb618c96046", + "createdTimestamp" : 1611912442173, + "username" : "richard", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "Richard", + "lastName" : "Feynman", + "email" : "richard@example.org", + "credentials" : [ { + "id" : "2fb1bcd7-8a51-4732-b695-dc4aa14b1dca", + "type" : "password", + "createdDate" : 1611912452192, + "secretData" : "{\"value\":\"uzN0AO66tnEoLM5SpHmJ3rNb4Gj9sXJMafn68EbDwVtQmbOR0uY7L/ePU7i5pVTvhgRN7XMj0P9Fc+iV7C+Pzw==\",\"salt\":\"PqLW9Cu52hOW9b2cVTF+Sg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "uma_authorization", "offline_access" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + } ], + "scopeMappings" : [ { + "clientScope" : "offline_access", + "roles" : [ "offline_access" ] + } ], + "clientScopeMappings" : { + "account" : [ { + "client" : "account-console", + "roles" : [ "manage-account" ] + } ] + }, + "clients" : [ { + "id" : "294b6cf4-b646-4f6c-bab2-616546ec3167", + "clientId" : "_system", + "name" : "_system", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "bde4651e-faf6-4390-b58e-3e9e8e623d57", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "9850adad-7910-4b67-a790-da6444361618", + "clientId" : "account", + "name" : "${client_account}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/oCIS/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "1f414d17-2751-4fde-af10-a7c2deb3261f", + "defaultRoles" : [ "manage-account", "view-profile" ], + "redirectUris" : [ "/realms/oCIS/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ ], + "optionalClientScopes" : [ ] + }, { + "id" : "55bb4cdc-045b-422a-8830-61245949d6aa", + "clientId" : "account-console", + "name" : "${client_account-console}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/oCIS/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "f63c75e2-0902-4722-acd8-6a9e870be610", + "redirectUris" : [ "/realms/oCIS/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "9bf413ed-402f-438d-a72c-033f3c45dab2", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + } ], + "defaultClientScopes" : [ ], + "optionalClientScopes" : [ ] + }, { + "id" : "2969b8ff-2ab3-4907-aaa7-091a7a627ccb", + "clientId" : "admin-cli", + "name" : "${client_admin-cli}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "27a24954-b795-426e-ada4-96b1d5140997", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ ], + "optionalClientScopes" : [ ] + }, { + "id" : "002faf0a-716c-4230-81c7-ce22d1eb832c", + "clientId" : "broker", + "name" : "${client_broker}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "d989c5d2-0d2c-4284-a761-62c9228dbc31", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ ], + "optionalClientScopes" : [ ] + }, { + "id" : "c8367556-1d13-4979-b4f6-5e2cff1f82ae", + "clientId" : "e4rAsNUSIUs0lF4nbv9FmCeUkTlV9GdgTLDH1b5uie7syb90SzEVrbN7HIpmWJeD", + "name" : "ownCloud Android app", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "dInFYGV33xKzhbRmpqQltYNdfLdJIfJ9L5ISoKhNoT9qZftpdWSP71VrpGR9pmoD", + "redirectUris" : [ "oc://android.owncloud.com" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "6ae0e3da-38ff-47a4-a76e-b59eec0a2de9", + "clientId" : "mxd5OQDk6es5LzOzRvidJNfXLUZS2oN3oUFeXPP8LpPrhx3UroJFduGEYIBOxkY1", + "name" : "ownCloud iOS app", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "KFeFWWEZO9TkisIQzR3fo7hfiMXlOpaqP8CFuTbSHzV1TUuGECglPxpiVKJfOXIx", + "redirectUris" : [ "oc://ios.owncloud.com", "oc.ios://ios.owncloud.com" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "7848ee94-cc9b-40db-946f-a86ac73dc9b7", + "clientId" : "realm-management", + "name" : "${client_realm-management}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "81a35a01-a005-4a8b-9ebc-4b0f4b874731", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : true, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ ], + "optionalClientScopes" : [ ] + }, { + "id" : "97264f49-a8c1-4585-99b6-e706339c62f8", + "clientId" : "security-admin-console", + "name" : "${client_security-admin-console}", + "rootUrl" : "${authAdminUrl}", + "baseUrl" : "/admin/oCIS/console/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "27ccdbd6-c1de-4f13-90f3-0461132f467d", + "redirectUris" : [ "/admin/oCIS/console/*" ], + "webOrigins" : [ "+" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "96092024-21dd-4d31-a004-2c5b96031da3", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ ], + "optionalClientScopes" : [ ] + }, { + "id" : "54b18eca-cf79-4263-9db9-2d79f8a1c831", + "clientId" : "web", + "rootUrl" : "https://ocis.owncloud.test", + "adminUrl" : "https://ocis.owncloud.test", + "baseUrl" : "", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "9cbeb996-67a8-4ade-a86a-d2b2f3bc2568", + "redirectUris" : [ "https://ocis.owncloud.test/*" ], + "webOrigins" : [ "https://ocis.owncloud.test" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fc7d8a8e-cb92-4cb0-b404-d723c07d8d4f", + "clientId" : "xdXOt13JKxym1B1QcEncf2XDkLAexMBFwiT9j6EfhhHFJhs2KM9jbjTmf8JBXE69", + "name" : "ownCloud desktop client", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "UBntmLjC2yYCeHwsyj73Uwo9TAaecAetRwMw0xYcvNL9yRdLSUi0hUAHfvCHFeFh", + "redirectUris" : [ "http://localhost:*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + } ], + "clientScopes" : [ { + "id" : "9cae7ced-e7d9-4f7b-8e54-7402125f6ead", + "name" : "offline_access", + "description" : "OpenID Connect built-in scope: offline_access", + "protocol" : "openid-connect", + "attributes" : { + "consent.screen.text" : "${offlineAccessScopeConsentText}", + "display.on.consent.screen" : "true" + } + }, { + "id" : "8eb1f69b-b941-4185-bca1-f916953f7cf5", + "name" : "role_list", + "description" : "SAML role list", + "protocol" : "saml", + "attributes" : { + "consent.screen.text" : "${samlRoleListScopeConsentText}", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "fb587847-806f-4443-bab0-501efc0f0b46", + "name" : "role list", + "protocol" : "saml", + "protocolMapper" : "saml-role-list-mapper", + "consentRequired" : false, + "config" : { + "single" : "false", + "attribute.nameformat" : "Basic", + "attribute.name" : "Role" + } + } ] + }, { + "id" : "947da1ff-f614-48fc-9ecb-c98cbcfd3390", + "name" : "profile", + "description" : "OpenID Connect built-in scope: profile", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${profileScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "46fec552-2f92-408a-84cf-ba98bf8e35fd", + "name" : "family name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "lastName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "family_name", + "jsonType.label" : "String" + } + }, { + "id" : "c7ed5458-4d32-423e-8ea1-d112c45045d4", + "name" : "middle name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "middleName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "middle_name", + "jsonType.label" : "String" + } + }, { + "id" : "e18d1ce4-3969-4ec1-9941-a27fd7555245", + "name" : "picture", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "picture", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "picture", + "jsonType.label" : "String" + } + }, { + "id" : "dab85a5e-9af8-4fcd-88e4-9d3ae50dd5b6", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + }, { + "id" : "7484f47e-3bb1-48d0-ba64-e8330dcefe6e", + "name" : "profile", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "profile", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "profile", + "jsonType.label" : "String" + } + }, { + "id" : "fcd00995-9693-4803-8f41-c84044be83ed", + "name" : "website", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "website", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "website", + "jsonType.label" : "String" + } + }, { + "id" : "f09e7268-5284-449b-849b-cf8225523584", + "name" : "full name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-full-name-mapper", + "consentRequired" : false, + "config" : { + "id.token.claim" : "true", + "access.token.claim" : "true", + "userinfo.token.claim" : "true" + } + }, { + "id" : "0317f4b3-3f7b-47ab-88d3-5d6f604d944d", + "name" : "nickname", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "nickname", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "nickname", + "jsonType.label" : "String" + } + }, { + "id" : "db81244c-e739-461b-8822-52ceaa11bdf4", + "name" : "updated at", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "updatedAt", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "updated_at", + "jsonType.label" : "String" + } + }, { + "id" : "c6a16bf9-9370-4dff-a718-be53131bb238", + "name" : "gender", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "gender", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "gender", + "jsonType.label" : "String" + } + }, { + "id" : "32d76647-b542-484c-9062-edc34eb350e0", + "name" : "birthdate", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "birthdate", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "birthdate", + "jsonType.label" : "String" + } + }, { + "id" : "ac6530db-6463-446b-99da-32d5298b5fa0", + "name" : "zoneinfo", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "zoneinfo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "zoneinfo", + "jsonType.label" : "String" + } + }, { + "id" : "ed10983b-8700-415e-933e-226ce3f397a6", + "name" : "given name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "firstName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "given_name", + "jsonType.label" : "String" + } + }, { + "id" : "8205ccd0-1266-4060-b5df-3a6eb229d91e", + "name" : "username", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "preferred_username", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "258e56a8-1eeb-49ea-957b-aff8df4656ba", + "name" : "email", + "description" : "OpenID Connect built-in scope: email", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${emailScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "068bcfb6-4a17-4c20-b083-ae542a7f76c8", + "name" : "email verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "emailVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email_verified", + "jsonType.label" : "boolean" + } + }, { + "id" : "c00d6c21-2fd1-435f-9ee9-87e011048cbe", + "name" : "email", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "email", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "b3e1e47e-3912-4b55-ba89-b0198e767682", + "name" : "address", + "description" : "OpenID Connect built-in scope: address", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${addressScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "876baab9-39d1-4845-abb4-561a58aa152d", + "name" : "address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-address-mapper", + "consentRequired" : false, + "config" : { + "user.attribute.formatted" : "formatted", + "user.attribute.country" : "country", + "user.attribute.postal_code" : "postal_code", + "userinfo.token.claim" : "true", + "user.attribute.street" : "street", + "id.token.claim" : "true", + "user.attribute.region" : "region", + "access.token.claim" : "true", + "user.attribute.locality" : "locality" + } + } ] + }, { + "id" : "79713daf-89ca-4ed4-ad97-a88b13ee9a18", + "name" : "phone", + "description" : "OpenID Connect built-in scope: phone", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${phoneScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "b5f4f5ed-1008-42ba-8b3b-7d8851a2a680", + "name" : "phone number", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumber", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number", + "jsonType.label" : "String" + } + }, { + "id" : "08a246f1-2b4c-4def-af5c-aefc31b4820d", + "name" : "phone number verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumberVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "0c72b80b-28d5-48d8-b593-c99030aab58d", + "name" : "roles", + "description" : "OpenID Connect scope for add user roles to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${rolesScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "bc7f015e-329f-4e99-be6b-72382f4310c7", + "name" : "client roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-client-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "resource_access.${client_id}.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + }, { + "id" : "215f645f-ad0b-4523-9ece-f09f69ead5c4", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + }, { + "id" : "4a10b958-d34d-413a-b349-1415d02cdcde", + "name" : "realm roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "realm_access.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + } ] + }, { + "id" : "5ce87358-3bca-4874-a6f0-6dccae6209a8", + "name" : "web-origins", + "description" : "OpenID Connect scope for add allowed web origins to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "false", + "consent.screen.text" : "" + }, + "protocolMappers" : [ { + "id" : "bbd23c51-918d-4ea6-9ac0-db68b512fb0a", + "name" : "allowed web origins", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-allowed-origins-mapper", + "consentRequired" : false, + "config" : { } + } ] + }, { + "id" : "bdb3e320-76c8-4ad7-9d0f-a08efc060101", + "name" : "microprofile-jwt", + "description" : "Microprofile - JWT built-in scope", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "false" + }, + "protocolMappers" : [ { + "id" : "1d08316c-493b-42ab-afa3-66f621860661", + "name" : "groups", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "foo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "groups", + "jsonType.label" : "String" + } + }, { + "id" : "52061d2d-7a41-4f1d-ba1b-3c4a53e739e4", + "name" : "upn", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "upn", + "jsonType.label" : "String" + } + } ] + } ], + "defaultDefaultClientScopes" : [ "role_list", "profile", "email", "roles", "web-origins" ], + "defaultOptionalClientScopes" : [ "offline_access", "address", "phone", "microprofile-jwt" ], + "browserSecurityHeaders" : { + "contentSecurityPolicyReportOnly" : "", + "xContentTypeOptions" : "nosniff", + "xRobotsTag" : "none", + "xFrameOptions" : "SAMEORIGIN", + "contentSecurityPolicy" : "frame-src 'self'; frame-ancestors 'self'; object-src 'none';", + "xXSSProtection" : "1; mode=block", + "strictTransportSecurity" : "max-age=31536000; includeSubDomains" + }, + "smtpServer" : { }, + "eventsEnabled" : false, + "eventsListeners" : [ "jboss-logging" ], + "enabledEventTypes" : [ ], + "adminEventsEnabled" : false, + "adminEventsDetailsEnabled" : false, + "identityProviders" : [ ], + "identityProviderMappers" : [ ], + "components" : { + "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ { + "id" : "6fc7d765-7da8-4985-ba0b-e83827b04bd3", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "4682fe74-f3a9-445a-a7ab-557fb532fe6b", + "name" : "Consent Required", + "providerId" : "consent-required", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + }, { + "id" : "5a9aef85-98a6-4e90-b30f-8aa715e1f5e6", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "saml-user-attribute-mapper", "oidc-full-name-mapper", "saml-role-list-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-address-mapper", "oidc-usermodel-property-mapper", "oidc-usermodel-attribute-mapper", "saml-user-property-mapper" ] + } + }, { + "id" : "07a89319-106f-4f50-b220-5b60c387e149", + "name" : "Trusted Hosts", + "providerId" : "trusted-hosts", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "host-sending-registration-request-must-match" : [ "true" ], + "client-uris-must-match" : [ "true" ] + } + }, { + "id" : "e3eadb04-8862-4567-869c-a76485268159", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "c46009e5-c8b5-4051-bf7f-7b1481a9aa86", + "name" : "Max Clients Limit", + "providerId" : "max-clients", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "max-clients" : [ "200" ] + } + }, { + "id" : "c788e6bf-2f57-4a82-b32e-ac8d48a4f676", + "name" : "Full Scope Disabled", + "providerId" : "scope", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + }, { + "id" : "43edf979-28d2-46c8-9f93-48b3de185570", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "oidc-usermodel-attribute-mapper", "oidc-address-mapper", "saml-role-list-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-full-name-mapper", "oidc-usermodel-property-mapper" ] + } + } ], + "org.keycloak.keys.KeyProvider" : [ { + "id" : "0e3d0048-cb16-49c3-8a9a-05d83f0daeca", + "name" : "rsa-generated", + "providerId" : "rsa-generated", + "subComponents" : { }, + "config" : { + "privateKey" : [ "MIIEpAIBAAKCAQEAnmakcvYpYSHw5b+d9KRA3h3rZRvin749w7TveBHYQkgmWiKkiAtTVbV99CkXJPrgZtG+dB6LknnWKcojXYUzlRF/zm4vZ61beSt8ZXoafYPR91mfhkGjBdLdwS/LINaGyT/YNSztsz6fEdpo73NzVzLfDVx+8AHcZL05Tqtcb39vM/kVVPIdwKnxkka6y9cLa3d1QnK7A2LW4rnYaaK++19mYFMtWLl0kC2cGiSD9rtiJ9vNp3hvXXqLVE2z7cpe/LNfu50ISpNP/2XSh1WnPUfF1BJvd4H1knIU4yaMOiU3I2LCCAp97GIK+hLJJ+t0lFbCzTydiuWCb3mwjSxQ5wIDAQABAoIBADANQSviwxDFRBfeNiOlxEvdVbB5chk1k/UPqWmKOEl7K69CPRlMHj6s7QWphWzhcjueuyDstzh7H13UBUB0jP5WrafIwza3Xz111KnQDcMvvv1DQeJvfO3iVwUo430VtxPL+2G+PGmYwJag5B5nroCwXPvnqFZUqjAhOwZDc6oayhkc57oLLsawq0jbWueSQPCIgs4fiYrfxQfkY1a5UZw8jNR0+Mmi4HKGi5rf+z7BPF8LJMcBz3JyueTL4Lv8shzOVCZTWY+O1zq1bJL+neD9KpUlWlpuS5JcQe7jKMXzEJbvgc3pvPcWTf6WV458nGEHnPm8iNKSjA8Ot7rfW2ECgYEA55QyZ3nX5ZKPf9ozWStd94dIRj9cAmSyTG3xChT5SPCLsjXHIzfJf7bloEvz5XAEr/1w62ZjhRDC2YXCtxYqeuUyi4Ff/n8a1Lnirb2CNseHGI5FCYwec5CSHlYQ0YN8k2tu+435+kZT+sC+kwbBUxa3nNdjaPz3x79eq7hI65ECgYEArxrm+co462yZxL2eBuYvVvFQClgbz84sr35ijL+ofbWosezypnFlDii0SYKpOFc+h54lWjX5eCUoinL68WjauRPT5YnCCtN80t00Cfyb3Y5E5kKzLMaeG/o6dMdZsk29/rEdD6Lm8zoOJweiPewPKz4xCk9Ltbfm0bqxaFjsiPcCgYEA0TC063ZMSaxABo1ULyuWoaBJ8HMRqXPPAG2b/LB/k5z/hEdCERU25zCPc2LI+ixbf6LgmzSNl8lRSm+jOgJC82sRYqXG0j19PkaAdtOmydcpuUvjH0G8zEX/SHoUjT5KjVzSD1jsRGG9QNlWDbhfcLAnwv1qZo+FQKIlYdeBv5ECgYAHuA7gigqSTjpFEvrJYRJLKd4WZqXrNjKAFfkwLS63Q+/I0CIuNid3RVIVP35ILohiIBWTcXeq1TCBUepABBhIOliH8Net9H63KOsnWYxhaukcoWoWmjbUEubKyRLqKkUq2hHm4458wF1pWQvM4QAWLuqogrBatV2mdy1k5S6gJwKBgQC3IY2x11n4OOyPXu52znqRaQMExgwAPYWaze4wx7TFE+YHsmTde8yxpL95yYAf1bzHpD2I3s//U1EmW2n2IDUERueCJ9yka9kFK8LQyzj5sIjvNWOm/s2yysZNN2LUeIgc8A3tHCLtEJ1oVr3s1CiTkmKFgVnQ7HS8GhNY2qxq8g==" ], + "certificate" : [ "MIICxzCCAa8CBgF3TRRx/zANBgkqhkiG9w0BAQsFADAnMSUwIwYDVQQDDBxvd25DbG91ZCBJbmZpbml0ZSBTY2FsZSBUZXN0MB4XDTIxMDEyOTA3MzcwMVoXDTMxMDEyOTA3Mzg0MVowJzElMCMGA1UEAwwcb3duQ2xvdWQgSW5maW5pdGUgU2NhbGUgVGVzdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ5mpHL2KWEh8OW/nfSkQN4d62Ub4p++PcO073gR2EJIJloipIgLU1W1ffQpFyT64GbRvnQei5J51inKI12FM5URf85uL2etW3krfGV6Gn2D0fdZn4ZBowXS3cEvyyDWhsk/2DUs7bM+nxHaaO9zc1cy3w1cfvAB3GS9OU6rXG9/bzP5FVTyHcCp8ZJGusvXC2t3dUJyuwNi1uK52GmivvtfZmBTLVi5dJAtnBokg/a7Yifbzad4b116i1RNs+3KXvyzX7udCEqTT/9l0odVpz1HxdQSb3eB9ZJyFOMmjDolNyNiwggKfexiCvoSySfrdJRWws08nYrlgm95sI0sUOcCAwEAATANBgkqhkiG9w0BAQsFAAOCAQEAQfVVpSE+n2E2ckp2DV9DvHYZckuHGtKx9/yP4QtkcN+A6lIDK8LsNpOmcwiepseO1C+ngekN1U9pfQ3HOLg32ft38H8CrZdY9SpmK2fWM3f+18UqZaZvr26FK+GSX4lqa+WoVqMkyW6RynS/drRp1sRRQnKKDuS5Pcu5U03v7wQU9t5h83Lexh3ZhCO5YRywQ9+clc1RtAmBMu/E8g6/CZWRIRbaEyKo2KcBV1uU3gLwlbkj8wv4BhCS7JHS/+jnQqVIXeIcD/z4u0RElJHcNtZ+d4sgby2Rd1+wbKes9gFrZoucq9ghdsOi4Q5WBN4ZcRhPrw0v2mhEc1ADCmxzjQ==" ], + "priority" : [ "100" ] + } + }, { + "id" : "f92ecf31-c3c7-4c3b-af20-839fc05bcf99", + "name" : "hmac-generated", + "providerId" : "hmac-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "f1889839-fdb1-4c3a-98b6-13305f1b0f74" ], + "secret" : [ "UVX0V-qlIGdVswACK-jwOsjn7EV5Uc12drTs7XCegEIlXkjtg_m2VGg2rJZgg12wxjCXm69kpTZ8lmfGxiuZdw" ], + "priority" : [ "100" ], + "algorithm" : [ "HS256" ] + } + }, { + "id" : "992dcc80-dc41-4b00-bab8-6ec1c839f3a4", + "name" : "aes-generated", + "providerId" : "aes-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "3fef4998-39b3-46d3-9803-c480f4105b0a" ], + "secret" : [ "ZHHvfx76H3grDuKPGRtxCw" ], + "priority" : [ "100" ] + } + } ] + }, + "internationalizationEnabled" : false, + "supportedLocales" : [ ], + "authenticationFlows" : [ { + "id" : "1e83c21e-95cd-4690-96ca-b65bb5669658", + "alias" : "Account verification options", + "description" : "Method with which to verity the existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-email-verification", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Verify Existing Account by Re-authentication", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "ad3efe78-b66b-4f53-afc1-082022a83ea5", + "alias" : "Authentication Options", + "description" : "Authentication options.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "basic-auth", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "basic-auth-otp", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "4efb4624-94a8-4eb6-b9cd-9eae0e355bc5", + "alias" : "Browser - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "af0d79b5-adc0-4ef7-a8c2-c149f4cea9ec", + "alias" : "Direct Grant - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "e0b5c8fb-cc71-4653-9e01-92e4731bf11c", + "alias" : "First broker login - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "e3705c4a-d92f-4f22-9693-a5232fe31f69", + "alias" : "Handle Existing Account", + "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-confirm-link", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Account verification options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "794618ff-52f6-4fad-a5c6-4e8fab00dd17", + "alias" : "Reset - Conditional OTP", + "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "5ff78050-25cd-4895-8fef-7ec3631239c9", + "alias" : "User creation or linking", + "description" : "Flow for the existing/non-existing user alternatives", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "create unique user config", + "authenticator" : "idp-create-user-if-unique", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Handle Existing Account", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "5ddaf74c-25b8-4cc1-98fd-325219811525", + "alias" : "Verify Existing Account by Re-authentication", + "description" : "Reauthentication of existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "First broker login - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "6b77b935-9cb8-4ae8-b23e-4fe8f4c1f93b", + "alias" : "browser", + "description" : "browser based authentication", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-cookie", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "identity-provider-redirector", + "requirement" : "ALTERNATIVE", + "priority" : 25, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 30, + "flowAlias" : "forms", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "9dfc0dc9-da89-48f1-95ae-dd3dc5dcb60b", + "alias" : "clients", + "description" : "Base authentication for clients", + "providerId" : "client-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "client-secret", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-secret-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-x509", + "requirement" : "ALTERNATIVE", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "4f5c0c90-6a28-46bc-a4c2-b216b1a387ca", + "alias" : "direct grant", + "description" : "OpenID Connect Resource Owner Grant", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "direct-grant-validate-username", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-password", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 30, + "flowAlias" : "Direct Grant - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "11bf67b6-6fa8-4b04-abc0-1fffe293e9fe", + "alias" : "docker auth", + "description" : "Used by Docker clients to authenticate against the IDP", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "docker-http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "06fe5c40-d285-432d-ba8f-16e64d5c192b", + "alias" : "first broker login", + "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "review profile config", + "authenticator" : "idp-review-profile", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "User creation or linking", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "38963f42-3cf9-467b-be8f-a23af94783fe", + "alias" : "forms", + "description" : "Username, password, otp and other auth forms.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "Browser - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "1ba1842f-5b89-41cd-a54e-9262f5fdb9be", + "alias" : "http challenge", + "description" : "An authentication flow based on challenge-response HTTP Authentication Schemes", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "no-cookie-redirect", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Authentication Options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "532769a0-01a2-472d-8a19-54ad730eb5cf", + "alias" : "registration", + "description" : "registration flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-page-form", + "requirement" : "REQUIRED", + "priority" : 10, + "flowAlias" : "registration form", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "1fedf0a2-d9a9-4060-8907-17ea2338d6f8", + "alias" : "registration form", + "description" : "registration form", + "providerId" : "form-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-user-creation", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-profile-action", + "requirement" : "REQUIRED", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-password-action", + "requirement" : "REQUIRED", + "priority" : 50, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-recaptcha-action", + "requirement" : "DISABLED", + "priority" : 60, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "86180e38-fb76-45ce-8778-3559cdf7d5c7", + "alias" : "reset credentials", + "description" : "Reset credentials for a user if they forgot their password or something", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "reset-credentials-choose-user", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-credential-email", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-password", + "requirement" : "REQUIRED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 40, + "flowAlias" : "Reset - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "b2f6fc89-6970-464c-8854-e9d0c4187294", + "alias" : "saml ecp", + "description" : "SAML ECP Profile Authentication Flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + } ], + "authenticatorConfig" : [ { + "id" : "d85277e4-c918-46a7-8eee-0e831f2a1206", + "alias" : "create unique user config", + "config" : { + "require.password.update.after.registration" : "false" + } + }, { + "id" : "db4882d3-772a-4855-ba52-8330d4052c01", + "alias" : "review profile config", + "config" : { + "update.profile.on.first.login" : "missing" + } + } ], + "requiredActions" : [ { + "alias" : "CONFIGURE_TOTP", + "name" : "Configure OTP", + "providerId" : "CONFIGURE_TOTP", + "enabled" : true, + "defaultAction" : false, + "priority" : 10, + "config" : { } + }, { + "alias" : "terms_and_conditions", + "name" : "Terms and Conditions", + "providerId" : "terms_and_conditions", + "enabled" : false, + "defaultAction" : false, + "priority" : 20, + "config" : { } + }, { + "alias" : "UPDATE_PASSWORD", + "name" : "Update Password", + "providerId" : "UPDATE_PASSWORD", + "enabled" : true, + "defaultAction" : false, + "priority" : 30, + "config" : { } + }, { + "alias" : "UPDATE_PROFILE", + "name" : "Update Profile", + "providerId" : "UPDATE_PROFILE", + "enabled" : true, + "defaultAction" : false, + "priority" : 40, + "config" : { } + }, { + "alias" : "VERIFY_EMAIL", + "name" : "Verify Email", + "providerId" : "VERIFY_EMAIL", + "enabled" : true, + "defaultAction" : false, + "priority" : 50, + "config" : { } + }, { + "alias" : "delete_account", + "name" : "Delete Account", + "providerId" : "delete_account", + "enabled" : false, + "defaultAction" : false, + "priority" : 60, + "config" : { } + }, { + "alias" : "update_user_locale", + "name" : "Update User Locale", + "providerId" : "update_user_locale", + "enabled" : true, + "defaultAction" : false, + "priority" : 1000, + "config" : { } + } ], + "browserFlow" : "browser", + "registrationFlow" : "registration", + "directGrantFlow" : "direct grant", + "resetCredentialsFlow" : "reset credentials", + "clientAuthenticationFlow" : "clients", + "dockerAuthenticationFlow" : "docker auth", + "attributes" : { + "clientOfflineSessionMaxLifespan" : "0", + "clientSessionIdleTimeout" : "0", + "clientSessionMaxLifespan" : "0", + "clientOfflineSessionIdleTimeout" : "0" + }, + "keycloakVersion" : "12.0.2", + "userManagedAccessAllowed" : false +} \ No newline at end of file diff --git a/deployments/examples/ocis_keycloak/docker-compose.yml b/deployments/examples/ocis_keycloak/docker-compose.yml index fdebf94fe5..c4653e7e4c 100644 --- a/deployments/examples/ocis_keycloak/docker-compose.yml +++ b/deployments/examples/ocis_keycloak/docker-compose.yml @@ -50,10 +50,10 @@ services: environment: # Keycloak IDP specific configuration PROXY_AUTOPROVISION_ACCOUNTS: "true" - PROXY_OIDC_ISSUER: https://${KEYCLOAK_DOMAIN:-keycloak.owncloud.test}/auth/realms/${KEYCLOAK_REALM:-master} - WEB_OIDC_AUTHORITY: https://${KEYCLOAK_DOMAIN:-keycloak.owncloud.test}/auth/realms/${KEYCLOAK_REALM:-master} + PROXY_OIDC_ISSUER: https://${KEYCLOAK_DOMAIN:-keycloak.owncloud.test}/auth/realms/${KEYCLOAK_REALM:-oCIS} + WEB_OIDC_AUTHORITY: https://${KEYCLOAK_DOMAIN:-keycloak.owncloud.test}/auth/realms/${KEYCLOAK_REALM:-oCIS} WEB_OIDC_CLIENT_ID: ${OCIS_OIDC_CLIENT_ID:-web} - WEB_OIDC_METADATA_URL: https://${KEYCLOAK_DOMAIN:-keycloak.owncloud.test}/auth/realms/${KEYCLOAK_REALM:-master}/.well-known/openid-configuration + WEB_OIDC_METADATA_URL: https://${KEYCLOAK_DOMAIN:-keycloak.owncloud.test}/auth/realms/${KEYCLOAK_REALM:-oCIS}/.well-known/openid-configuration STORAGE_OIDC_ISSUER: https://${KEYCLOAK_DOMAIN:-keycloak.owncloud.test} STORAGE_LDAP_IDP: https://${KEYCLOAK_DOMAIN:-keycloak.owncloud.test} # general config @@ -98,7 +98,7 @@ services: networks: ocis-net: volumes: - - ./config/keycloak/keycloak-import.json:/opt/jboss/keycloak/keycloak-import.json + - ./config/keycloak/ocis-realm.json:/opt/jboss/keycloak/ocis-realm.json environment: DB_VENDOR: POSTGRES DB_ADDR: postgres @@ -109,7 +109,7 @@ services: KEYCLOAK_USER: ${KEYCLOAK_ADMIN_USER:-admin} KEYCLOAK_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD:-admin} PROXY_ADDRESS_FORWARDING: "true" - KEYCLOAK_IMPORT: /opt/jboss/keycloak/keycloak-import.json + KEYCLOAK_IMPORT: /opt/jboss/keycloak/ocis-realm.json labels: - "traefik.enable=true" - "traefik.http.routers.keycloak.entrypoints=http" @@ -129,7 +129,7 @@ services: - "traefik.http.routers.idp-wellknown-secure.tls.certresolver=http" - "traefik.http.routers.idp-wellknown-secure.rule=Host(`${OCIS_DOMAIN:-ocis.owncloud.test}`) && Path(`/.well-known/openid-configuration`)" - "traefik.http.middlewares.idp-headers.headers.customrequestheaders.X-Forwarded-Host=${KEYCLOAK_DOMAIN:-keycloak.owncloud.test}" - - "traefik.http.middlewares.idp-prefix.addprefix.prefix=/auth/realms/${KEYCLOAK_REALM:-master}" + - "traefik.http.middlewares.idp-prefix.addprefix.prefix=/auth/realms/${KEYCLOAK_REALM:-oCIS}" - "traefik.http.middlewares.idp-override.chain.middlewares=idp-headers,idp-prefix" - "traefik.http.routers.idp-wellknown-secure.middlewares=idp-override" - "traefik.http.routers.idp-wellknown-secure.service=keycloak" diff --git a/deployments/examples/ocis_keycloak/keycloak-export.sh b/deployments/examples/ocis_keycloak/keycloak-export.sh index 675515639c..28180c086a 100644 --- a/deployments/examples/ocis_keycloak/keycloak-export.sh +++ b/deployments/examples/ocis_keycloak/keycloak-export.sh @@ -2,12 +2,9 @@ docker-compose exec keycloak \ sh -c "cd /opt/jboss/keycloak && \ timeout 60 bin/standalone.sh \ + -Djboss.httin/standalone.sh \ -Djboss.socket.binding.port-offset=100 \ -Dkeycloak.migration.action=export \ -Dkeycloak.migration.provider=singleFile \ - -Dkeycloak.migration.file=keycloak-export.json \ - -Djboss.httin/standalone.sh -Dkeycloak.migration.action=export \ - -Dkeycloak.migration.provider=singleFile \ - -Dkeycloak.migration.file=keycloak-export.json" - -docker-compose exec keycloak cat /opt/jboss/keycloak/keycloak-export.json > keycloak-export.json + -Dkeycloak.migration.realmName=oCIS \ + -Dkeycloak.migration.file=ocis-realm.json" diff --git a/docs/ocis/deployment/ocis_keycloak.md b/docs/ocis/deployment/ocis_keycloak.md index 34452b7cac..346b9402a7 100644 --- a/docs/ocis/deployment/ocis_keycloak.md +++ b/docs/ocis/deployment/ocis_keycloak.md @@ -74,7 +74,7 @@ See also [example server setup]({{< ref "preparing_server.md" >}}) ### Keycloak ### # Domain of Keycloak, where you can find the management and authentication frontend. Defaults to "keycloak.owncloud.test" KEYCLOAK_DOMAIN= - # Realm which to be used with oCIS. Defaults to "master" + # Realm which to be used with oCIS. Defaults to "oCIS" KEYCLOAK_REALM= # Admin user login name. Defaults to "admin" KEYCLOAK_ADMIN_USER= @@ -99,7 +99,7 @@ See also [example server setup]({{< ref "preparing_server.md" >}}) Set your domain for the Keycloak administration panel and authentication endpoints to `KEYCLOAK_DOMAIN=` eg. `KEYCLOAK_DOMAIN=keycloak.owncloud.test`. - Changing the used Keycloak realm can be done by setting `KEYCLOAK_REALM=`. This defaults to the master realm `KEYCLOAK_REALM=master`. + Changing the used Keycloak realm can be done by setting `KEYCLOAK_REALM=`. This defaults to the oCIS realm `KEYCLOAK_REALM=oCIS`. The oCIS realm will be automatically imported on startup and includes our demo users. You probably should secure your Keycloak admin account by setting `KEYCLOAK_ADMIN_USER=` and `KEYCLOAK_ADMIN_PASSWORD=` to values other than `admin`. @@ -109,11 +109,7 @@ See also [example server setup]({{< ref "preparing_server.md" >}}) `docker-compose up -d` -* Visit the Keycloak administration console on your configured domain. Go to clients settings and add a client. The client id is `ocis-web` or the one you changed it to. The client protocol is openid-connect. The root url for the client is the url you selected for oCIS. Then save the client. - -* You may also add users to Keycloak - -* You now can visit oCIS and Traefik dashboard on your configured domains +* You now can visit oCIS, Keycloak and Traefik dashboard on your configured domains ## Local setup For a more simple local ocis setup see [Getting started]({{< ref "../getting-started.md" >}}) @@ -132,8 +128,5 @@ After that you're ready to start the application stack: `docker-compose up -d` Open https://keycloak.owncloud.test in your browser and accept the invalid certificate warning. -Go to clients settings and add a client. The client id is `ocis-web` or the one you changed it to. The client protocol is openid-connect. THe root url for the client is `https://ocis.owncloud.test`. Then save the client. -* You may also add users to Keycloak - -Open https://ocis.owncloud.test in your browser and accept the invalid certificate warning. You now can login to oCIS with the admin user of keycloak and additional users you created. +Open https://ocis.owncloud.test in your browser and accept the invalid certificate warning. You now can login to oCIS with the demo users. \ No newline at end of file From f9954bb02232dc16ba3d52bb34454855cbf6ac4d Mon Sep 17 00:00:00 2001 From: Ingmar Aasoja Date: Fri, 29 Jan 2021 11:54:44 +0200 Subject: [PATCH 52/88] Remove duplicated code and use existant getRegistry() instead --- ocis-pkg/service/grpc/service.go | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/ocis-pkg/service/grpc/service.go b/ocis-pkg/service/grpc/service.go index 7c2d5891c7..c520330de5 100644 --- a/ocis-pkg/service/grpc/service.go +++ b/ocis-pkg/service/grpc/service.go @@ -1,7 +1,6 @@ package grpc import ( - "os" "strings" "time" @@ -9,12 +8,8 @@ import ( mclient "github.com/micro/go-micro/v2/client" "github.com/micro/go-micro/v2/client/grpc" - etcdr "github.com/micro/go-micro/v2/registry/etcd" - mdnsr "github.com/micro/go-micro/v2/registry/mdns" - - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-plugins/wrapper/trace/opencensus/v2" + "github.com/owncloud/ocis/ocis-pkg/registry" "github.com/owncloud/ocis/ocis-pkg/wrapper/prometheus" ) @@ -22,17 +17,7 @@ import ( var DefaultClient = newGrpcClient() func newGrpcClient() mclient.Client { - addresses := strings.Split(os.Getenv("MICRO_REGISTRY_ADDRESS"), ",") - - var r registry.Registry - switch os.Getenv("MICRO_REGISTRY") { - case "etcd": - r = etcdr.NewRegistry( - registry.Addrs(addresses...), - ) - default: - r = mdnsr.NewRegistry() - } + r := *registry.GetRegistry() c := grpc.NewClient( mclient.RequestTimeout(10*time.Second), From c1839ce48ef781cc8ed454474ee99377d6433e21 Mon Sep 17 00:00:00 2001 From: Ishank Arora Date: Thu, 21 Jan 2021 11:14:22 +0100 Subject: [PATCH 53/88] Use a default protocol parameter instead of explicitly disabling tus --- changelog/unreleased/default-upload-protocol.md | 4 ++++ storage/pkg/command/frontend.go | 6 ++---- storage/pkg/config/config.go | 3 +-- storage/pkg/flagset/frontend.go | 12 ++++++------ 4 files changed, 13 insertions(+), 12 deletions(-) create mode 100644 changelog/unreleased/default-upload-protocol.md diff --git a/changelog/unreleased/default-upload-protocol.md b/changelog/unreleased/default-upload-protocol.md new file mode 100644 index 0000000000..6ca035eb3d --- /dev/null +++ b/changelog/unreleased/default-upload-protocol.md @@ -0,0 +1,4 @@ +Enhancement: Use a default protocol parameter instead of explicitly disabling tus + +https://github.com/cs3org/reva/pull/1331 +https://github.com/owncloud/ocis/pull/1374 diff --git a/storage/pkg/command/frontend.go b/storage/pkg/command/frontend.go index b656e9e6c4..c657e85aa7 100644 --- a/storage/pkg/command/frontend.go +++ b/storage/pkg/command/frontend.go @@ -88,7 +88,7 @@ func Frontend(cfg *config.Config) *cli.Command { "versioning": true, } - if !cfg.Reva.UploadDisableTus { + if cfg.Reva.DefaultUploadProtocol == "tus" { filesCfg["tus_support"] = map[string]interface{}{ "version": "1.0.0", "resumable": "1.0.0", @@ -131,12 +131,10 @@ func Frontend(cfg *config.Config) *cli.Command { }, "ocdav": map[string]interface{}{ "prefix": cfg.Reva.Frontend.OCDavPrefix, - "chunk_folder": cfg.Reva.OCDav.ChunkFolder, "files_namespace": cfg.Reva.OCDav.DavFilesNamespace, "webdav_namespace": cfg.Reva.OCDav.WebdavNamespace, "timeout": 86400, "insecure": true, - "disable_tus": cfg.Reva.UploadDisableTus, }, "ocs": map[string]interface{}{ "share_prefix": cfg.Reva.Frontend.OCSSharePrefix, @@ -148,7 +146,7 @@ func Frontend(cfg *config.Config) *cli.Command { "contact": "admin@localhost", "ssl": "false", }, - "disable_tus": cfg.Reva.UploadDisableTus, + "default_upload_protocol": cfg.Reva.DefaultUploadProtocol, "capabilities": map[string]interface{}{ "capabilities": map[string]interface{}{ "core": map[string]interface{}{ diff --git a/storage/pkg/config/config.go b/storage/pkg/config/config.go index 52a18dae62..d4572be2f3 100644 --- a/storage/pkg/config/config.go +++ b/storage/pkg/config/config.go @@ -283,7 +283,6 @@ type LDAPSchema struct { // OCDav defines the available ocdav configuration. type OCDav struct { - ChunkFolder string WebdavNamespace string DavFilesNamespace string } @@ -319,10 +318,10 @@ type Reva struct { // chunking and resumable upload config (TUS) UploadMaxChunkSize int UploadHTTPMethodOverride string - UploadDisableTus bool // checksumming capabilities ChecksumSupportedTypes []string ChecksumPreferredUploadType string + DefaultUploadProtocol string } // Tracing defines the available tracing configuration. diff --git a/storage/pkg/flagset/frontend.go b/storage/pkg/flagset/frontend.go index 336c182f55..8684abb3fc 100644 --- a/storage/pkg/flagset/frontend.go +++ b/storage/pkg/flagset/frontend.go @@ -128,12 +128,12 @@ func FrontendWithConfig(cfg *config.Config) []cli.Flag { }, // Chunking - &cli.BoolFlag{ - Name: "upload-disable-tus", - Value: false, - Usage: "Disables TUS upload mechanism", - EnvVars: []string{"STORAGE_FRONTEND_UPLOAD_DISABLE_TUS"}, - Destination: &cfg.Reva.UploadDisableTus, + &cli.StringFlag{ + Name: "default-upload-protocol", + Value: "tus", + Usage: "Default upload chunking protocol to be used out of tus/v1/ng", + EnvVars: []string{"STORAGE_FRONTEND_DEFAULT_UPLOAD_PROTOCOL"}, + Destination: &cfg.Reva.DefaultUploadProtocol, }, &cli.IntFlag{ Name: "upload-max-chunk-size", From 29129cdb9d3d3b8c0e7dec08258ccfbf398a4cb2 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Fri, 29 Jan 2021 11:12:00 +0100 Subject: [PATCH 54/88] fix config links --- accounts/templates/CONFIGURATION.tmpl | 2 +- docs/extensions/onlyoffice/getting-started.md | 2 +- glauth/templates/CONFIGURATION.tmpl | 2 +- konnectd/templates/CONFIGURATION.tmpl | 2 +- ocis/templates/CONFIGURATION.tmpl | 2 +- ocs/templates/CONFIGURATION.tmpl | 2 +- onlyoffice/templates/CONFIGURATION.tmpl | 2 +- proxy/templates/CONFIGURATION.tmpl | 2 +- storage/templates/CONFIGURATION.tmpl | 2 +- store/templates/CONFIGURATION.tmpl | 2 +- thumbnails/templates/CONFIGURATION.tmpl | 2 +- web/templates/CONFIGURATION.tmpl | 2 +- webdav/templates/CONFIGURATION.tmpl | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/accounts/templates/CONFIGURATION.tmpl b/accounts/templates/CONFIGURATION.tmpl index e56dd42397..9a76bdb9d4 100644 --- a/accounts/templates/CONFIGURATION.tmpl +++ b/accounts/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-accounts reads `accounts.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/accounts/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/docs/extensions/onlyoffice/getting-started.md b/docs/extensions/onlyoffice/getting-started.md index 33ca2a19c6..e10fc18340 100644 --- a/docs/extensions/onlyoffice/getting-started.md +++ b/docs/extensions/onlyoffice/getting-started.md @@ -168,7 +168,7 @@ If you prefer to configure the service with commandline flags you can see the av ### Configuration file -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/onlyoffice/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/onlyoffice.yml`, `${HOME}/.ocis/onlyoffice.yml` or `$(pwd)/config/onlyoffice.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/onlyoffice/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/onlyoffice.yml`, `${HOME}/.ocis/onlyoffice.yml` or `$(pwd)/config/onlyoffice.yml`. ## Usage diff --git a/glauth/templates/CONFIGURATION.tmpl b/glauth/templates/CONFIGURATION.tmpl index 1b8e77928a..753f23b780 100644 --- a/glauth/templates/CONFIGURATION.tmpl +++ b/glauth/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-glauth reads `glauth.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/glauth/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/konnectd/templates/CONFIGURATION.tmpl b/konnectd/templates/CONFIGURATION.tmpl index 4b70fdbdab..1ae4a82f1c 100644 --- a/konnectd/templates/CONFIGURATION.tmpl +++ b/konnectd/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-konnectd reads `konnectd.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/konnectd/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/ocis/templates/CONFIGURATION.tmpl b/ocis/templates/CONFIGURATION.tmpl index 0b26b350a0..3e853e66b3 100644 --- a/ocis/templates/CONFIGURATION.tmpl +++ b/ocis/templates/CONFIGURATION.tmpl @@ -39,7 +39,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at (--> This link does not exist) [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/ocis/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/ocs/templates/CONFIGURATION.tmpl b/ocs/templates/CONFIGURATION.tmpl index 55d5b95aab..3f56913c27 100644 --- a/ocs/templates/CONFIGURATION.tmpl +++ b/ocs/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-ocs reads `ocs.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/ocs/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/onlyoffice/templates/CONFIGURATION.tmpl b/onlyoffice/templates/CONFIGURATION.tmpl index 1919e5735c..602b02070f 100644 --- a/onlyoffice/templates/CONFIGURATION.tmpl +++ b/onlyoffice/templates/CONFIGURATION.tmpl @@ -39,7 +39,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: onlyoffice reads `onlyoffice.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/onlyoffice/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/proxy/templates/CONFIGURATION.tmpl b/proxy/templates/CONFIGURATION.tmpl index f2097e4465..1315be9e53 100644 --- a/proxy/templates/CONFIGURATION.tmpl +++ b/proxy/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/proxy/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/storage/templates/CONFIGURATION.tmpl b/storage/templates/CONFIGURATION.tmpl index 109c7ae2fa..6f1434ad8b 100644 --- a/storage/templates/CONFIGURATION.tmpl +++ b/storage/templates/CONFIGURATION.tmpl @@ -48,7 +48,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/storage/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/store/templates/CONFIGURATION.tmpl b/store/templates/CONFIGURATION.tmpl index d62b484439..f873688830 100644 --- a/store/templates/CONFIGURATION.tmpl +++ b/store/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/store/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/thumbnails/templates/CONFIGURATION.tmpl b/thumbnails/templates/CONFIGURATION.tmpl index 39b0175939..e660f082c7 100644 --- a/thumbnails/templates/CONFIGURATION.tmpl +++ b/thumbnails/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/thumbnails/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/web/templates/CONFIGURATION.tmpl b/web/templates/CONFIGURATION.tmpl index 2a43964eb7..6d3fc2752f 100644 --- a/web/templates/CONFIGURATION.tmpl +++ b/web/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-web reads `web.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/web/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/webdav/templates/CONFIGURATION.tmpl b/webdav/templates/CONFIGURATION.tmpl index 7aea1bee54..7b0e79c85e 100644 --- a/webdav/templates/CONFIGURATION.tmpl +++ b/webdav/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/webdav/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables From 417defdbb912ae7c92c42e6f3f295f367ba5fd4a Mon Sep 17 00:00:00 2001 From: Ishank Arora Date: Thu, 7 Jan 2021 15:06:27 +0530 Subject: [PATCH 55/88] Functionality to map home directory to different storage providers --- changelog/unreleased/home-mapping.md | 9 +++++++++ storage/pkg/command/gateway.go | 1 + storage/pkg/config/config.go | 3 ++- storage/pkg/flagset/gateway.go | 7 +++++++ 4 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 changelog/unreleased/home-mapping.md diff --git a/changelog/unreleased/home-mapping.md b/changelog/unreleased/home-mapping.md new file mode 100644 index 0000000000..a502381b2d --- /dev/null +++ b/changelog/unreleased/home-mapping.md @@ -0,0 +1,9 @@ +Enhancement: Functionality to map home directory to different storage providers + +We added a parameter in reva that allows us to redirect /home requests to +different storage providers based on a mapping derived from the user attributes, +which was previously not possible since we hardcode the /home path for all +users. This PR adds the config for that parameter. + +https://github.com/owncloud/ocis/pull/1186 +https://github.com/cs3org/reva/pull/1142 diff --git a/storage/pkg/command/gateway.go b/storage/pkg/command/gateway.go index 552a1a97a9..0314d9df92 100644 --- a/storage/pkg/command/gateway.go +++ b/storage/pkg/command/gateway.go @@ -115,6 +115,7 @@ func Gateway(cfg *config.Config) *cli.Command { "datagateway": cfg.Reva.DataGateway.PublicURL, "transfer_shared_secret": cfg.Reva.TransferSecret, "transfer_expires": cfg.Reva.TransferExpires, + "home_mapping": cfg.Reva.Gateway.HomeMapping, }, "authregistry": map[string]interface{}{ "driver": "static", diff --git a/storage/pkg/config/config.go b/storage/pkg/config/config.go index 52a18dae62..02864be827 100644 --- a/storage/pkg/config/config.go +++ b/storage/pkg/config/config.go @@ -20,9 +20,10 @@ type Gateway struct { Port CommitShareToStorageGrant bool CommitShareToStorageRef bool + DisableHomeCreationOnLogin bool ShareFolder string LinkGrants string - DisableHomeCreationOnLogin bool + HomeMapping string } // StorageRegistry defines the available storage registry configuration diff --git a/storage/pkg/flagset/gateway.go b/storage/pkg/flagset/gateway.go index 4103ead538..5c8279eb22 100644 --- a/storage/pkg/flagset/gateway.go +++ b/storage/pkg/flagset/gateway.go @@ -97,6 +97,13 @@ func GatewayWithConfig(cfg *config.Config) []cli.Flag { EnvVars: []string{"STORAGE_GATEWAY_DISABLE_HOME_CREATION_ON_LOGIN"}, Destination: &cfg.Reva.Gateway.DisableHomeCreationOnLogin, }, + &cli.StringFlag{ + Name: "storage-home-mapping", + Value: "", + Usage: "mapping template for user home paths to user-specific mount points", + EnvVars: []string{"STORAGE_GATEWAY_HOME_MAPPING"}, + Destination: &cfg.Reva.Gateway.HomeMapping, + }, // other services From 5f818c6baef7ff1b986fa52cd09509111f0578a0 Mon Sep 17 00:00:00 2001 From: Ishank Arora Date: Thu, 7 Jan 2021 16:30:27 +0530 Subject: [PATCH 56/88] Add example --- changelog/unreleased/home-mapping.md | 4 +++- storage/pkg/flagset/gateway.go | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/changelog/unreleased/home-mapping.md b/changelog/unreleased/home-mapping.md index a502381b2d..467dec70ba 100644 --- a/changelog/unreleased/home-mapping.md +++ b/changelog/unreleased/home-mapping.md @@ -3,7 +3,9 @@ Enhancement: Functionality to map home directory to different storage providers We added a parameter in reva that allows us to redirect /home requests to different storage providers based on a mapping derived from the user attributes, which was previously not possible since we hardcode the /home path for all -users. This PR adds the config for that parameter. +users. For example, having its value as `/home/{{substr 0 1 .Username}}` can be +used to redirect home requests for different users to different storage +providers. https://github.com/owncloud/ocis/pull/1186 https://github.com/cs3org/reva/pull/1142 diff --git a/storage/pkg/flagset/gateway.go b/storage/pkg/flagset/gateway.go index 5c8279eb22..cc7a546e17 100644 --- a/storage/pkg/flagset/gateway.go +++ b/storage/pkg/flagset/gateway.go @@ -100,7 +100,7 @@ func GatewayWithConfig(cfg *config.Config) []cli.Flag { &cli.StringFlag{ Name: "storage-home-mapping", Value: "", - Usage: "mapping template for user home paths to user-specific mount points", + Usage: "mapping template for user home paths to user-specific mount points, e.g. /home/{{substr 0 1 .Username}}", EnvVars: []string{"STORAGE_GATEWAY_HOME_MAPPING"}, Destination: &cfg.Reva.Gateway.HomeMapping, }, From aca22cab4204bb7bbca0953a7e3b8bd783c4f8f4 Mon Sep 17 00:00:00 2001 From: Ingmar Aasoja Date: Fri, 29 Jan 2021 13:01:55 +0200 Subject: [PATCH 57/88] Add changelog --- changelog/unreleased/fix-etcd-address-conf.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changelog/unreleased/fix-etcd-address-conf.md diff --git a/changelog/unreleased/fix-etcd-address-conf.md b/changelog/unreleased/fix-etcd-address-conf.md new file mode 100644 index 0000000000..2b80eeda5d --- /dev/null +++ b/changelog/unreleased/fix-etcd-address-conf.md @@ -0,0 +1,5 @@ +Bugfix: Fix etcd address configuration + +The etcd server address in `MICRO_REGISTRY_ADDRESS` was not picked up when etcd was set as service discovery registry `MICRO_REGISTRY=etcd`. Therefore etcd was only working if available on localhost / 127.0.0.1. + +https://github.com/owncloud/ocis/pull/1546 \ No newline at end of file From 03cadf304c650927b04f244ba7be84fb47eccad2 Mon Sep 17 00:00:00 2001 From: Ilja Neumann Date: Fri, 22 Jan 2021 17:58:36 +0100 Subject: [PATCH 58/88] Rename konnectd to IDP --- .codacy.yml | 4 +- .drone.star | 6 +- .gitignore | 2 +- Makefile | 2 +- .../pkg/proto/v0/accounts.pb.micro_test.go | 2 +- accounts/pkg/service/v0/service.go | 12 +- .../acceptance/features/accounts.feature | 4 +- .../owncloud10_with_oc_web/docker-compose.yml | 10 +- docs/Makefile | 2 +- docs/extensions/{konnectd => idp}/.gitignore | 0 docs/extensions/{konnectd => idp}/_index.md | 2 +- docs/ocis/_index.md | 4 +- docs/ocis/deployment/basic-remote-setup.md | 3 + docs/ocis/deployment/bridge.md | 26 +-- docs/ocis/deployment/ocis_keycloak.md | 2 +- docs/ocis/deployment/ocis_traefik.md | 2 +- docs/ocis/development/debugging.md | 6 +- docs/ocis/flow-docs/login-flow.md | 2 +- docs/ocis/flow-docs/request-flow.md | 2 +- glauth/go.sum | 2 + {konnectd => idp}/.dockerignore | 0 {konnectd => idp}/.env | 0 {konnectd => idp}/.eslintignore | 0 {konnectd => idp}/.eslintrc.json | 0 {konnectd => idp}/LICENSE | 0 {konnectd => idp}/Makefile | 2 +- {konnectd => idp}/cmd/konnectd/main.go | 2 +- {konnectd => idp}/config/example.json | 2 +- {konnectd => idp}/config/example.yml | 2 +- .../config/identifier-registration.yaml | 0 .../docker/Dockerfile.linux.amd64 | 4 +- {konnectd => idp}/docker/Dockerfile.linux.arm | 4 +- .../docker/Dockerfile.linux.arm64 | 4 +- idp/docker/manifest.tmpl | 22 +++ {konnectd => idp}/go.mod | 2 +- {konnectd => idp}/go.sum | 0 {konnectd => idp}/package.json | 0 {konnectd => idp}/pkg/assets/assets.go | 2 +- {konnectd => idp}/pkg/assets/dummy.go | 0 {konnectd => idp}/pkg/assets/embed.go | 0 {konnectd => idp}/pkg/assets/embed.yml | 0 {konnectd => idp}/pkg/assets/option.go | 2 +- {konnectd => idp}/pkg/command/health.go | 4 +- {konnectd => idp}/pkg/command/root.go | 18 +- {konnectd => idp}/pkg/command/server.go | 16 +- {konnectd => idp}/pkg/command/version.go | 10 +- {konnectd => idp}/pkg/config/config.go | 2 +- {konnectd => idp}/pkg/crypto/gencert.go | 0 {konnectd => idp}/pkg/flagset/flagset.go | 154 +++++++++--------- {konnectd => idp}/pkg/log/logrus_wrapper.go | 2 +- {konnectd => idp}/pkg/metrics/metrics.go | 2 +- {konnectd => idp}/pkg/middleware/static.go | 0 {konnectd => idp}/pkg/server/debug/option.go | 2 +- {konnectd => idp}/pkg/server/debug/server.go | 2 +- {konnectd => idp}/pkg/server/http/option.go | 4 +- {konnectd => idp}/pkg/server/http/server.go | 4 +- .../pkg/service/v0/instrument.go | 2 +- {konnectd => idp}/pkg/service/v0/logging.go | 0 {konnectd => idp}/pkg/service/v0/option.go | 2 +- {konnectd => idp}/pkg/service/v0/service.go | 36 ++-- {konnectd => idp}/pkg/service/v0/tracing.go | 0 {konnectd => idp}/pkg/version/version.go | 0 idp/reflex.conf | 2 + {konnectd => idp}/scripts/build.js | 0 {konnectd => idp}/scripts/start.js | 0 {konnectd => idp}/scripts/test.js | 0 .../templates/CONFIGURATION.tmpl | 14 +- {konnectd => idp}/tools.go | 0 {konnectd => idp}/ui/Makefile | 0 {konnectd => idp}/ui/i18n/Makefile | 0 {konnectd => idp}/ui/i18n/de.po | 0 {konnectd => idp}/ui/i18n/es.po | 0 {konnectd => idp}/ui/i18n/fr.po | 0 {konnectd => idp}/ui/i18n/hi.po | 0 {konnectd => idp}/ui/i18n/hr.po | 0 {konnectd => idp}/ui/i18n/hu.po | 0 {konnectd => idp}/ui/i18n/is.po | 0 {konnectd => idp}/ui/i18n/it.po | 0 {konnectd => idp}/ui/i18n/ja.po | 0 .../ui/i18n/konnect-identifier.pot | 0 {konnectd => idp}/ui/i18n/nb.po | 0 {konnectd => idp}/ui/i18n/nl.po | 0 {konnectd => idp}/ui/i18n/pl.po | 0 {konnectd => idp}/ui/i18n/pt_PT.po | 0 {konnectd => idp}/ui/i18n/ru.po | 0 {konnectd => idp}/ui/i18n/sl.po | 0 {konnectd => idp}/ui/i18n/src/messages.json | 0 {konnectd => idp}/ui/public/index.html | 0 {konnectd => idp}/ui/public/static/logo.svg | 0 {konnectd => idp}/ui/src/Main.js | 0 {konnectd => idp}/ui/src/Main.test.js | 0 {konnectd => idp}/ui/src/Makefile | 0 {konnectd => idp}/ui/src/Routes.js | 0 {konnectd => idp}/ui/src/actions/common.js | 0 {konnectd => idp}/ui/src/actions/login.js | 0 {konnectd => idp}/ui/src/actions/types.js | 0 {konnectd => idp}/ui/src/actions/utils.js | 0 {konnectd => idp}/ui/src/app.css | 0 {konnectd => idp}/ui/src/app.js | 0 .../ui/src/components/ClientDisplayName.js | 0 .../ui/src/components/Loading.js | 0 .../ui/src/components/PrivateRoute.js | 0 .../ui/src/components/RedirectWithQuery.js | 0 .../ui/src/components/ResponsiveScreen.js | 0 .../ui/src/components/ScopesList.js | 0 .../ui/src/components/TextInput.js | 0 .../src/containers/Goodbye/Goodbyescreen.js | 0 .../ui/src/containers/Goodbye/index.js | 0 .../ui/src/containers/Login/Chooseaccount.js | 0 .../ui/src/containers/Login/Consent.js | 0 .../ui/src/containers/Login/Login.js | 0 .../ui/src/containers/Login/Loginscreen.js | 0 .../ui/src/containers/Login/index.js | 0 .../src/containers/Welcome/Welcomescreen.js | 0 .../ui/src/containers/Welcome/index.js | 0 {konnectd => idp}/ui/src/errors/index.js | 0 .../ui/src/images/background.jpg | Bin {konnectd => idp}/ui/src/index.js | 0 {konnectd => idp}/ui/src/locales/de.json | 0 {konnectd => idp}/ui/src/locales/es.json | 0 {konnectd => idp}/ui/src/locales/fr.json | 0 {konnectd => idp}/ui/src/locales/hi.json | 0 {konnectd => idp}/ui/src/locales/hr.json | 0 {konnectd => idp}/ui/src/locales/hu.json | 0 {konnectd => idp}/ui/src/locales/index.js | 0 {konnectd => idp}/ui/src/locales/is.json | 0 {konnectd => idp}/ui/src/locales/it.json | 0 {konnectd => idp}/ui/src/locales/ja.json | 0 {konnectd => idp}/ui/src/locales/nb.json | 0 {konnectd => idp}/ui/src/locales/nl.json | 0 {konnectd => idp}/ui/src/locales/pl.json | 0 {konnectd => idp}/ui/src/locales/pt_PT.json | 0 {konnectd => idp}/ui/src/locales/ru.json | 0 {konnectd => idp}/ui/src/locales/sl.json | 0 {konnectd => idp}/ui/src/models/hello.js | 0 {konnectd => idp}/ui/src/reducers/common.js | 0 {konnectd => idp}/ui/src/reducers/index.js | 0 {konnectd => idp}/ui/src/reducers/login.js | 0 {konnectd => idp}/ui/src/store.js | 0 {konnectd => idp}/ui/src/utils.js | 0 {konnectd => idp}/ui/src/version.js | 0 {konnectd => idp}/ui_config/env.js | 0 .../ui_config/jest/cssTransform.js | 0 .../ui_config/jest/fileTransform.js | 0 {konnectd => idp}/ui_config/modules.js | 0 {konnectd => idp}/ui_config/paths.js | 0 {konnectd => idp}/ui_config/pnpTs.js | 0 {konnectd => idp}/ui_config/webpack.config.js | 0 .../ui_config/webpackDevServer.config.js | 0 {konnectd => idp}/yarn.lock | 0 konnectd/assets/identifier-registration.yaml | 112 ------------- konnectd/docker/manifest.tmpl | 22 --- konnectd/reflex.conf | 2 - ocis-pkg/go.sum | 2 + ocis/docker-compose.yml | 2 +- ocis/go.mod | 4 +- ocis/go.sum | 1 + ocis/pkg/command/idp.go | 54 ++++++ ocis/pkg/command/konnectd.go | 54 ------ ocis/pkg/config/config.go | 8 +- ocis/pkg/runtime/runtime.go | 2 +- ocs/go.sum | 1 + ocs/pkg/server/http/svc_test.go | 12 +- onlyoffice/go.sum | 3 + settings/go.sum | 2 + sonar-project.properties | 2 +- storage/go.sum | 1 + store/go.sum | 2 + tests/acceptance/docker/src/ocis-base.yml | 6 +- thumbnails/go.sum | 2 + web/go.sum | 2 + webdav/go.sum | 2 + 172 files changed, 314 insertions(+), 403 deletions(-) rename docs/extensions/{konnectd => idp}/.gitignore (100%) rename docs/extensions/{konnectd => idp}/_index.md (81%) rename {konnectd => idp}/.dockerignore (100%) rename {konnectd => idp}/.env (100%) rename {konnectd => idp}/.eslintignore (100%) rename {konnectd => idp}/.eslintrc.json (100%) rename {konnectd => idp}/LICENSE (100%) rename {konnectd => idp}/Makefile (99%) rename {konnectd => idp}/cmd/konnectd/main.go (68%) rename {konnectd => idp}/config/example.json (92%) rename {konnectd => idp}/config/example.yml (92%) rename {konnectd => idp}/config/identifier-registration.yaml (100%) rename {konnectd => idp}/docker/Dockerfile.linux.amd64 (82%) rename {konnectd => idp}/docker/Dockerfile.linux.arm (82%) rename {konnectd => idp}/docker/Dockerfile.linux.arm64 (82%) create mode 100644 idp/docker/manifest.tmpl rename {konnectd => idp}/go.mod (96%) rename {konnectd => idp}/go.sum (100%) rename {konnectd => idp}/package.json (100%) rename {konnectd => idp}/pkg/assets/assets.go (95%) rename {konnectd => idp}/pkg/assets/dummy.go (100%) rename {konnectd => idp}/pkg/assets/embed.go (100%) rename {konnectd => idp}/pkg/assets/embed.yml (100%) rename {konnectd => idp}/pkg/assets/option.go (93%) rename {konnectd => idp}/pkg/command/health.go (89%) rename {konnectd => idp}/pkg/command/root.go (83%) rename {konnectd => idp}/pkg/command/server.go (91%) rename {konnectd => idp}/pkg/command/version.go (76%) rename {konnectd => idp}/pkg/config/config.go (97%) rename {konnectd => idp}/pkg/crypto/gencert.go (100%) rename {konnectd => idp}/pkg/flagset/flagset.go (66%) rename {konnectd => idp}/pkg/log/logrus_wrapper.go (95%) rename {konnectd => idp}/pkg/metrics/metrics.go (97%) rename {konnectd => idp}/pkg/middleware/static.go (100%) rename {konnectd => idp}/pkg/server/debug/option.go (95%) rename {konnectd => idp}/pkg/server/debug/server.go (96%) rename {konnectd => idp}/pkg/server/http/option.go (93%) rename {konnectd => idp}/pkg/server/http/server.go (95%) rename {konnectd => idp}/pkg/service/v0/instrument.go (92%) rename {konnectd => idp}/pkg/service/v0/logging.go (100%) rename {konnectd => idp}/pkg/service/v0/option.go (95%) rename {konnectd => idp}/pkg/service/v0/service.go (81%) rename {konnectd => idp}/pkg/service/v0/tracing.go (100%) rename {konnectd => idp}/pkg/version/version.go (100%) create mode 100644 idp/reflex.conf rename {konnectd => idp}/scripts/build.js (100%) rename {konnectd => idp}/scripts/start.js (100%) rename {konnectd => idp}/scripts/test.js (100%) rename {konnectd => idp}/templates/CONFIGURATION.tmpl (86%) rename {konnectd => idp}/tools.go (100%) rename {konnectd => idp}/ui/Makefile (100%) rename {konnectd => idp}/ui/i18n/Makefile (100%) rename {konnectd => idp}/ui/i18n/de.po (100%) rename {konnectd => idp}/ui/i18n/es.po (100%) rename {konnectd => idp}/ui/i18n/fr.po (100%) rename {konnectd => idp}/ui/i18n/hi.po (100%) rename {konnectd => idp}/ui/i18n/hr.po (100%) rename {konnectd => idp}/ui/i18n/hu.po (100%) rename {konnectd => idp}/ui/i18n/is.po (100%) rename {konnectd => idp}/ui/i18n/it.po (100%) rename {konnectd => idp}/ui/i18n/ja.po (100%) rename {konnectd => idp}/ui/i18n/konnect-identifier.pot (100%) rename {konnectd => idp}/ui/i18n/nb.po (100%) rename {konnectd => idp}/ui/i18n/nl.po (100%) rename {konnectd => idp}/ui/i18n/pl.po (100%) rename {konnectd => idp}/ui/i18n/pt_PT.po (100%) rename {konnectd => idp}/ui/i18n/ru.po (100%) rename {konnectd => idp}/ui/i18n/sl.po (100%) rename {konnectd => idp}/ui/i18n/src/messages.json (100%) rename {konnectd => idp}/ui/public/index.html (100%) rename {konnectd => idp}/ui/public/static/logo.svg (100%) rename {konnectd => idp}/ui/src/Main.js (100%) rename {konnectd => idp}/ui/src/Main.test.js (100%) rename {konnectd => idp}/ui/src/Makefile (100%) rename {konnectd => idp}/ui/src/Routes.js (100%) rename {konnectd => idp}/ui/src/actions/common.js (100%) rename {konnectd => idp}/ui/src/actions/login.js (100%) rename {konnectd => idp}/ui/src/actions/types.js (100%) rename {konnectd => idp}/ui/src/actions/utils.js (100%) rename {konnectd => idp}/ui/src/app.css (100%) rename {konnectd => idp}/ui/src/app.js (100%) rename {konnectd => idp}/ui/src/components/ClientDisplayName.js (100%) rename {konnectd => idp}/ui/src/components/Loading.js (100%) rename {konnectd => idp}/ui/src/components/PrivateRoute.js (100%) rename {konnectd => idp}/ui/src/components/RedirectWithQuery.js (100%) rename {konnectd => idp}/ui/src/components/ResponsiveScreen.js (100%) rename {konnectd => idp}/ui/src/components/ScopesList.js (100%) rename {konnectd => idp}/ui/src/components/TextInput.js (100%) rename {konnectd => idp}/ui/src/containers/Goodbye/Goodbyescreen.js (100%) rename {konnectd => idp}/ui/src/containers/Goodbye/index.js (100%) rename {konnectd => idp}/ui/src/containers/Login/Chooseaccount.js (100%) rename {konnectd => idp}/ui/src/containers/Login/Consent.js (100%) rename {konnectd => idp}/ui/src/containers/Login/Login.js (100%) rename {konnectd => idp}/ui/src/containers/Login/Loginscreen.js (100%) rename {konnectd => idp}/ui/src/containers/Login/index.js (100%) rename {konnectd => idp}/ui/src/containers/Welcome/Welcomescreen.js (100%) rename {konnectd => idp}/ui/src/containers/Welcome/index.js (100%) rename {konnectd => idp}/ui/src/errors/index.js (100%) rename {konnectd => idp}/ui/src/images/background.jpg (100%) rename {konnectd => idp}/ui/src/index.js (100%) rename {konnectd => idp}/ui/src/locales/de.json (100%) rename {konnectd => idp}/ui/src/locales/es.json (100%) rename {konnectd => idp}/ui/src/locales/fr.json (100%) rename {konnectd => idp}/ui/src/locales/hi.json (100%) rename {konnectd => idp}/ui/src/locales/hr.json (100%) rename {konnectd => idp}/ui/src/locales/hu.json (100%) rename {konnectd => idp}/ui/src/locales/index.js (100%) rename {konnectd => idp}/ui/src/locales/is.json (100%) rename {konnectd => idp}/ui/src/locales/it.json (100%) rename {konnectd => idp}/ui/src/locales/ja.json (100%) rename {konnectd => idp}/ui/src/locales/nb.json (100%) rename {konnectd => idp}/ui/src/locales/nl.json (100%) rename {konnectd => idp}/ui/src/locales/pl.json (100%) rename {konnectd => idp}/ui/src/locales/pt_PT.json (100%) rename {konnectd => idp}/ui/src/locales/ru.json (100%) rename {konnectd => idp}/ui/src/locales/sl.json (100%) rename {konnectd => idp}/ui/src/models/hello.js (100%) rename {konnectd => idp}/ui/src/reducers/common.js (100%) rename {konnectd => idp}/ui/src/reducers/index.js (100%) rename {konnectd => idp}/ui/src/reducers/login.js (100%) rename {konnectd => idp}/ui/src/store.js (100%) rename {konnectd => idp}/ui/src/utils.js (100%) rename {konnectd => idp}/ui/src/version.js (100%) rename {konnectd => idp}/ui_config/env.js (100%) rename {konnectd => idp}/ui_config/jest/cssTransform.js (100%) rename {konnectd => idp}/ui_config/jest/fileTransform.js (100%) rename {konnectd => idp}/ui_config/modules.js (100%) rename {konnectd => idp}/ui_config/paths.js (100%) rename {konnectd => idp}/ui_config/pnpTs.js (100%) rename {konnectd => idp}/ui_config/webpack.config.js (100%) rename {konnectd => idp}/ui_config/webpackDevServer.config.js (100%) rename {konnectd => idp}/yarn.lock (100%) delete mode 100644 konnectd/assets/identifier-registration.yaml delete mode 100644 konnectd/docker/manifest.tmpl delete mode 100644 konnectd/reflex.conf create mode 100644 ocis/pkg/command/idp.go delete mode 100644 ocis/pkg/command/konnectd.go diff --git a/.codacy.yml b/.codacy.yml index 4be0db63e3..93dca4f8b4 100644 --- a/.codacy.yml +++ b/.codacy.yml @@ -8,8 +8,8 @@ exclude_paths: - 'docs/**' - '**/docs/**' - '**/pkg/proto/**' - - 'konnectd/ui_config/**' - - 'konnectd/scripts/**' + - 'idp/ui_config/**' + - 'idp/scripts/**' - 'settings/rollup.config.js' - 'accounts/rollup.config.js' - 'ocis/docker/eos-ocis/Dockerfile' diff --git a/.drone.star b/.drone.star index dac646de74..652b05e2aa 100644 --- a/.drone.star +++ b/.drone.star @@ -2,7 +2,7 @@ config = { 'modules': { 'accounts': 'frontend', 'glauth':'', - 'konnectd':'', + 'idp':'', 'ocis': '', 'web':'', 'ocis-pkg':'', @@ -1370,8 +1370,8 @@ def ocisServer(storage, accounts_hash_difficulty = 4, volumes=[]): 'STORAGE_SHARING_USER_JSON_FILE': '/srv/app/tmp/ocis/shares.json', 'PROXY_ENABLE_BASIC_AUTH': True, 'WEB_UI_CONFIG': '/drone/src/tests/config/drone/ocis-config.json', - 'KONNECTD_IDENTIFIER_REGISTRATION_CONF': '/drone/src/tests/config/drone/identifier-registration.yml', - 'KONNECTD_TLS': 'true', + 'IDP_IDENTIFIER_REGISTRATION_CONF': '/drone/src/tests/config/drone/identifier-registration.yml', + 'IDP_TLS': 'true', 'OCIS_LOG_LEVEL': 'warn', } diff --git a/.gitignore b/.gitignore index 24df6bfce1..40cf887727 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,7 @@ node_modules/ yarn-error.log # Konnectd -konnectd/assets/identifier +idp/assets/identifier # Composer - used for API acceptance tests composer.lock diff --git a/Makefile b/Makefile index 25720e89e3..5c2b553f25 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ RESET := $(shell tput -Txterm sgr0) OCIS_MODULES = \ accounts \ glauth \ - konnectd \ + idp \ ocis \ ocis-pkg \ ocs \ diff --git a/accounts/pkg/proto/v0/accounts.pb.micro_test.go b/accounts/pkg/proto/v0/accounts.pb.micro_test.go index 03d8731c6a..e905eb295d 100644 --- a/accounts/pkg/proto/v0/accounts.pb.micro_test.go +++ b/accounts/pkg/proto/v0/accounts.pb.micro_test.go @@ -126,7 +126,7 @@ func getGroup(group string) *proto.Group { switch group { case "sysusers": return &proto.Group{Id: "34f38767-c937-4eb6-b847-1c175829a2a0", GidNumber: 15000, OnPremisesSamAccountName: "sysusers", DisplayName: "Technical users", Description: "A group for technical users. They should not show up in sharing dialogs.", Members: []*proto.Account{ - {Id: "820ba2a1-3f54-4538-80a4-2d73007e30bf"}, // konnectd + {Id: "820ba2a1-3f54-4538-80a4-2d73007e30bf"}, // idp {Id: "bc596f3c-c955-4328-80a0-60d018b4ad57"}, // reva }} case "users": diff --git a/accounts/pkg/service/v0/service.go b/accounts/pkg/service/v0/service.go index 5896f50c10..cb74008c52 100644 --- a/accounts/pkg/service/v0/service.go +++ b/accounts/pkg/service/v0/service.go @@ -236,14 +236,14 @@ func (s Service) createDefaultAccounts() (err error) { // technical users for kopano and reva { Id: "820ba2a1-3f54-4538-80a4-2d73007e30bf", - PreferredName: "konnectd", - OnPremisesSamAccountName: "konnectd", + PreferredName: "idp", + OnPremisesSamAccountName: "idp", Mail: "idp@example.org", - DisplayName: "Kopano Konnectd", + DisplayName: "Kopano IDP", UidNumber: 10000, GidNumber: 15000, PasswordProfile: &proto.PasswordProfile{ - Password: "$2a$11$ntoTP2W/kyQIuoYpH5mRBuNzaEERYWSwn/zCsY5rtffen4d41y9.6", + Password: "$2y$12$ywfGLDPsSlBTVZU0g.2GZOPO8Wap3rVOpm8e3192VlytNdGWH7x72", }, AccountEnabled: true, MemberOf: []*proto.Group{ @@ -309,7 +309,7 @@ func (s Service) createDefaultAccounts() (err error) { for _, accountID := range []string{ "058bff95-6708-4fe5-91e4-9ea3d377588b", //moss "ddc2004c-0977-11eb-9d3f-a793888cd0f8", //admin - "820ba2a1-3f54-4538-80a4-2d73007e30bf", //konnectd + "820ba2a1-3f54-4538-80a4-2d73007e30bf", //idp "bc596f3c-c955-4328-80a0-60d018b4ad57", //reva } { assignRoleToUser(accountID, settings_svc.BundleUUIDRoleAdmin, s.RoleService, s.log) @@ -327,7 +327,7 @@ func (s Service) createDefaultAccounts() (err error) { func (s Service) createDefaultGroups() (err error) { groups := []proto.Group{ {Id: "34f38767-c937-4eb6-b847-1c175829a2a0", GidNumber: 15000, OnPremisesSamAccountName: "sysusers", DisplayName: "Technical users", Description: "A group for technical users. They should not show up in sharing dialogs.", Members: []*proto.Account{ - {Id: "820ba2a1-3f54-4538-80a4-2d73007e30bf"}, // konnectd + {Id: "820ba2a1-3f54-4538-80a4-2d73007e30bf"}, // idp {Id: "bc596f3c-c955-4328-80a0-60d018b4ad57"}, // reva }}, {Id: "509a9dcd-bb37-4f4f-a01a-19dca27d9cfa", GidNumber: 30000, OnPremisesSamAccountName: "users", DisplayName: "Users", Description: "A group every normal user belongs to.", Members: []*proto.Account{ diff --git a/accounts/ui/tests/acceptance/features/accounts.feature b/accounts/ui/tests/acceptance/features/accounts.feature index 6a10cec45c..72f6268269 100644 --- a/accounts/ui/tests/acceptance/features/accounts.feature +++ b/accounts/ui/tests/acceptance/features/accounts.feature @@ -4,7 +4,7 @@ Feature: Accounts Given user "Moss" has logged in using the webUI When the user browses to the accounts page Then user "einstein" should be displayed in the accounts list on the WebUI - And user "konnectd" should be displayed in the accounts list on the WebUI + And user "idp" should be displayed in the accounts list on the WebUI And user "marie" should be displayed in the accounts list on the WebUI And user "reva" should be displayed in the accounts list on the WebUI And user "richard" should be displayed in the accounts list on the WebUI @@ -72,4 +72,4 @@ Feature: Accounts Given user "Moss" has logged in using the webUI And the user browses to the accounts page When the user deletes user "bob" using the WebUI - Then user "bob" should not be displayed in the accounts list on the WebUI \ No newline at end of file + Then user "bob" should not be displayed in the accounts list on the WebUI diff --git a/deployments/examples/owncloud10_with_oc_web/docker-compose.yml b/deployments/examples/owncloud10_with_oc_web/docker-compose.yml index 3bc3974f80..f32d3282c6 100644 --- a/deployments/examples/owncloud10_with_oc_web/docker-compose.yml +++ b/deployments/examples/owncloud10_with_oc_web/docker-compose.yml @@ -74,11 +74,11 @@ services: PROXY_CONFIG_FILE: "/config/proxy-config.json" PROXY_ENABLE_PRESIGNEDURLS: "false" PROXY_TLS: "false" - # konnectd - binddn must exist as oc10 admin user - KONNECTD_IDENTIFIER_REGISTRATION_CONF: "/config/identifier-registration.yaml" - KONNECTD_INSECURE: "${INSECURE:-false}" - KONNECTD_SIGNING_KID: super - KONNECTD_TLS: 0 + # idp - binddn must exist as oc10 admin user + IDP_IDENTIFIER_REGISTRATION_CONF: "/config/identifier-registration.yaml" + IDP_INSECURE: "${INSECURE:-false}" + IDP_SIGNING_KID: super + IDP_TLS: 0 LDAP_BASEDN: "dc=example,dc=org" LDAP_BINDDN: "cn=admin,dc=example,dc=org" LDAP_BINDPW: "admin" diff --git a/docs/Makefile b/docs/Makefile index 371cbd9219..c137e5cfeb 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -3,7 +3,7 @@ SHELL := bash OCIS_MODULES = \ accounts \ glauth \ - konnectd \ + idp \ ocis \ ocs \ ocis-pkg \ diff --git a/docs/extensions/konnectd/.gitignore b/docs/extensions/idp/.gitignore similarity index 100% rename from docs/extensions/konnectd/.gitignore rename to docs/extensions/idp/.gitignore diff --git a/docs/extensions/konnectd/_index.md b/docs/extensions/idp/_index.md similarity index 81% rename from docs/extensions/konnectd/_index.md rename to docs/extensions/idp/_index.md index cb65988a17..ef111ef4cc 100644 --- a/docs/extensions/konnectd/_index.md +++ b/docs/extensions/idp/_index.md @@ -2,7 +2,7 @@ title: Konnectd weight: 20 geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/konnectd +geekdocEditPath: edit/master/docs/extensions/idp geekdocFilePath: _index.md geekdocCollapseSection: true --- diff --git a/docs/ocis/_index.md b/docs/ocis/_index.md index 0163c9b338..db64e3261a 100644 --- a/docs/ocis/_index.md +++ b/docs/ocis/_index.md @@ -24,9 +24,9 @@ We run a huge [test suite](https://github.com/owncloud/core/tree/master/tests), {{< mermaid class="text-center">}} graph TD proxy --> - konnectd & web & thumbnails & ocs & webdav & storage & accounts & store & settings + idp & web & thumbnails & ocs & webdav & storage & accounts & store & settings -konnectd --> glauth +idp --> glauth storage --> REVA diff --git a/docs/ocis/deployment/basic-remote-setup.md b/docs/ocis/deployment/basic-remote-setup.md index b022cf2c8f..f335e8d1f2 100644 --- a/docs/ocis/deployment/basic-remote-setup.md +++ b/docs/ocis/deployment/basic-remote-setup.md @@ -62,6 +62,9 @@ This snippet will start the oCIS server with auto generated self signed certific PROXY_HTTP_ADDR=0.0.0.0:9200 \ OCIS_URL=https://your-server:9200 \ KONNECTD_TLS=0 \ +PROXY_TRANSPORT_TLS_KEY=./certs/your-host.key \ +PROXY_TRANSPORT_TLS_CERT=./certs/your-host.crt \ +IDP_TLS=0 \ ./bin/ocis server ``` diff --git a/docs/ocis/deployment/bridge.md b/docs/ocis/deployment/bridge.md index bde2681f4b..cdc9f8657b 100644 --- a/docs/ocis/deployment/bridge.md +++ b/docs/ocis/deployment/bridge.md @@ -101,7 +101,7 @@ Groups should work as well: $ ldapsearch -x -H ldap://localhost:9125 -b dc=example,dc=com -D "cn=admin,dc=example,dc=com" -W '(objectclass=posixgroup)' ``` -> Note: This is currently a readonly implementation and minimal to the usecase of authenticating users with konnectd. +> Note: This is currently a readonly implementation and minimal to the usecase of authenticating users with idp. ### Start ocis-web @@ -124,21 +124,21 @@ $ bin/web server --web-config-server https://cloud.example.com --oidc-authority `ocis-web` needs to know - `--web-config-server https://cloud.example.com` is ownCloud url with webdav and ocs endpoints (oc10 or ocis) -- `--oidc-authority https://192.168.1.100:9130` the openid connect issuing authority, in our case `oidc-konnectd`, running on port 9130 +- `--oidc-authority https://192.168.1.100:9130` the openid connect issuing authority, in our case `oidc-idp`, running on port 9130 - `--oidc-metadata-url https://192.168.1.100:9130/.well-known/openid-configuration` the openid connect configuration endpoint, typically the issuer host with `.well-known/openid-configuration`, but there are cases when another endpoint is used, eg. ping identity provides multiple endpoints to separate domains -- `--oidc-client-id ocis` the client id we will register later with `ocis-konnectd` in the `identifier-registration.yaml` +- `--oidc-client-id ocis` the client id we will register later with `ocis-idp` in the `identifier-registration.yaml` -### Start ocis-konnectd +### Start ocis-idp #### Get it! In an `ocis` folder ``` -$ git clone git@github.com:owncloud/ocis-konnectd.git -$ cd ocis-konnectd +$ git clone git@github.com:owncloud/ocis-idp.git +$ cd ocis-idp $ make ``` -This should give you a `bin/ocis-konnectd` binary. Try listing the help with `bin/ocis-konnectd --help`. +This should give you a `bin/ocis-idp` binary. Try listing the help with `bin/ocis-idp --help`. #### Set environment variables @@ -183,12 +183,12 @@ Replace `localhost:9100` in the redirect URIs with your `ocis-web` host and port #### Run it! -You can now bring up `ocis-konnectd` with: +You can now bring up `ocis-idp` with: ```console -$ bin/ocis-konnectd server --iss https://192.168.1.100:9130 --identifier-registration-conf assets/identifier-registration.yaml --signing-kid gen1-2020-02-27 +$ bin/ocis-idp server --iss https://192.168.1.100:9130 --identifier-registration-conf assets/identifier-registration.yaml --signing-kid gen1-2020-02-27 ``` -`ocis-konnectd` needs to know +`ocis-idp` needs to know - `--iss https://192.168.1.100:9130` the issuer, which must be a reachable https endpoint. For testing an ip works. HTTPS is NOT optional. This url is exposed in the `https://192.168.1.100:9130/.well-known/openid-configuration` endpoint and clients need to be able to connect to it - `--identifier-registration-conf assets/identifier-registration.yaml` the identifier-registration.yaml you created - `--signing-kid gen1-2020-02-27` a signature key id, otherwise the jwks key has no name, which might cause problems with clients. a random key is ok, but it should change when the actual signing key changes. @@ -203,7 +203,7 @@ $ curl https://192.168.1.100:9130/.well-known/openid-configuration 2. Check if the login works at https://192.168.1.100:9130/signin/v1/identifier -> Note: If you later get a `Unable to find a key for (algorithm, kid):PS256, )` Error make sure you did set a `--signing-kid` when starting `ocis-konnectd` by checking it is present in https://192.168.1.100:9130/konnect/v1/jwks.json +> Note: If you later get a `Unable to find a key for (algorithm, kid):PS256, )` Error make sure you did set a `--signing-kid` when starting `ocis-idp` by checking it is present in https://192.168.1.100:9130/konnect/v1/jwks.json ### Patch owncloud @@ -241,7 +241,7 @@ $CONFIG = [ ``` In the above configuration replace -- `provider-url` with the URL to your `ocis-konnectd` issuer +- `provider-url` with the URL to your `ocis-idp` issuer - `https://cloud.example.com` with the URL to your ownCloud 10 instance - `http://localhost:9100` with the URL to your ownCloud Web instance @@ -251,4 +251,4 @@ In the above configuration replace Aside from the above todos these are the next steps - tie it all together behind `ocis-proxy` -- create an `ocis bridge` command that runs all the ocis services in one step with a properly preconfigured `ocis-konnectd` `identifier-registration.yaml` file for `ownCloud Web` and the owncloud 10 `openidconnect` app, as well as a randomized `--signing-kid`. +- create an `ocis bridge` command that runs all the ocis services in one step with a properly preconfigured `ocis-idp` `identifier-registration.yaml` file for `ownCloud Web` and the owncloud 10 `openidconnect` app, as well as a randomized `--signing-kid`. diff --git a/docs/ocis/deployment/ocis_keycloak.md b/docs/ocis/deployment/ocis_keycloak.md index 34452b7cac..30061fb8b1 100644 --- a/docs/ocis/deployment/ocis_keycloak.md +++ b/docs/ocis/deployment/ocis_keycloak.md @@ -19,7 +19,7 @@ geekdocFilePath: ocis_keycloak.md The docker stack consists 4 containers. One of them is Traefik, a proxy which is terminating ssl and forwards the requests to oCIS in the internal docker network. -Keykloak add two containers: Keycloak itself and a PostgreSQL as database. Keycloak will be configured as oCIS' IDP instead of the internal IDP [Konnectd]({{< ref "../../extensions/konnectd/_index.md" >}}) +Keykloak add two containers: Keycloak itself and a PostgreSQL as database. Keycloak will be configured as oCIS' IDP instead of the internal IDP [Konnectd]({{< ref "../../extensions/idp/_index.md" >}}) The other container is oCIS itself running all extensions in one container. In this example oCIS uses [oCIS storage driver]({{< ref "../../extensions/storage/storages.md#storage-drivers" >}}) diff --git a/docs/ocis/deployment/ocis_traefik.md b/docs/ocis/deployment/ocis_traefik.md index 099eb5eb4a..0e96a35ff9 100644 --- a/docs/ocis/deployment/ocis_traefik.md +++ b/docs/ocis/deployment/ocis_traefik.md @@ -18,7 +18,7 @@ geekdocFilePath: ocis_traefik.md The docker stack consists of two containers. One of them is Traefik, a proxy which is terminating ssl and forwards the requests to oCIS in the internal docker network. -The other one is oCIS itself running all extensions in one container. In this example oCIS uses its internal IDP [Konnectd]({{< ref "../../extensions/konnectd/_index.md" >}}) and the [oCIS storage driver]({{< ref "../../extensions/storage/storages.md#storage-drivers" >}}) +The other one is oCIS itself running all extensions in one container. In this example oCIS uses its internal IDP [Konnectd]({{< ref "../../extensions/idp/_index.md" >}}) and the [oCIS storage driver]({{< ref "../../extensions/storage/storages.md#storage-drivers" >}}) ## Server Deployment diff --git a/docs/ocis/development/debugging.md b/docs/ocis/development/debugging.md index a76bb32761..d213e75294 100644 --- a/docs/ocis/development/debugging.md +++ b/docs/ocis/development/debugging.md @@ -39,7 +39,7 @@ Run the debug binary with `OCIS_LOG_LEVEL=debug bin/ocis-debug server` and then 12920 pts/1 Sl 0:00 bin/ocis-debug reva-users 12929 pts/1 Sl 0:00 bin/ocis-debug glauth 12940 pts/1 Sl 0:00 bin/ocis-debug reva-storage-home-data -12948 pts/1 Sl 0:00 bin/ocis-debug konnectd +12948 pts/1 Sl 0:00 bin/ocis-debug idp 12952 pts/1 Sl 0:00 bin/ocis-debug proxy 12961 pts/1 Sl 0:00 bin/ocis-debug thumbnails 12971 pts/1 Sl 0:00 bin/ocis-debug reva-storage-oc @@ -81,7 +81,7 @@ bin/ocis --log-level=$LOG_LEVEL glauth & bin/ocis --log-level=$LOG_LEVEL graph-explorer & bin/ocis --log-level=$LOG_LEVEL graph & #bin/ocis --log-level=$LOG_LEVEL hello & -bin/ocis --log-level=$LOG_LEVEL konnectd & +bin/ocis --log-level=$LOG_LEVEL idp & #bin/ocis --log-level=$LOG_LEVEL ocs & bin/ocis --log-level=$LOG_LEVEL web & bin/ocis --log-level=$LOG_LEVEL reva-auth-basic & @@ -118,7 +118,7 @@ bin/ocis --log-level=$LOG_LEVEL proxy & 12920 pts/1 Sl 0:00 bin/ocis-debug reva-users 12929 pts/1 Sl 0:00 bin/ocis-debug glauth 12940 pts/1 Sl 0:00 bin/ocis-debug reva-storage-home-data -12948 pts/1 Sl 0:00 bin/ocis-debug konnectd +12948 pts/1 Sl 0:00 bin/ocis-debug idp 12952 pts/1 Sl 0:00 bin/ocis-debug proxy 12961 pts/1 Sl 0:00 bin/ocis-debug thumbnails 12971 pts/1 Sl 0:00 bin/ocis-debug reva-storage-oc diff --git a/docs/ocis/flow-docs/login-flow.md b/docs/ocis/flow-docs/login-flow.md index 81f471d6c7..9a3babd3f7 100644 --- a/docs/ocis/flow-docs/login-flow.md +++ b/docs/ocis/flow-docs/login-flow.md @@ -44,7 +44,7 @@ sequenceDiagram Note over client, idp: GET /authorize?
response_type=code
&scope=openid%20profile%20email
&client_id=s6BhdRkqt3
&state=af0ifjsldkj
&redirect_uri=https%3A%2F%2Fclient.example.org%2Fcb HTTP/1.1
Host: server.example.com Note over user, idp: 3. Authorization Server Authenticates the End-User. Note over idp,ldap: Either an IdP already exists or a new one is introduced. Since we are not yet using oidc discovery we can only use one IdP. - alt all users managed by konnectd/ocis + alt all users managed by idp/ocis idp->>+glauth: LDAP query/bind glauth->>+graph: GET user with Basic Auth
GraphAPI graph->>+accounts: internal GRPC diff --git a/docs/ocis/flow-docs/request-flow.md b/docs/ocis/flow-docs/request-flow.md index b74fac66e3..36ca43dcb8 100644 --- a/docs/ocis/flow-docs/request-flow.md +++ b/docs/ocis/flow-docs/request-flow.md @@ -28,7 +28,7 @@ sequenceDiagram Note over client,proxy: What is in a bearer token?
The spec recommends opaque tokens.
Treat it as random byte noise. Note over client,proxy: the proxy MUST authenticate users
using ocis-accounts because it needs
to decide where to send the request %% Mention introspection endpoint for opaque tokens - %% konnectd uses jwt, so we can save a request + %% idp uses jwt, so we can save a request %% either way the token can be used to look up the sub and iss of the user %% or is token check enough? diff --git a/glauth/go.sum b/glauth/go.sum index a1d05c26b4..0804382fb2 100644 --- a/glauth/go.sum +++ b/glauth/go.sum @@ -224,6 +224,8 @@ github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e h1:khITGSnfDXtByQsLe github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/konnectd/.dockerignore b/idp/.dockerignore similarity index 100% rename from konnectd/.dockerignore rename to idp/.dockerignore diff --git a/konnectd/.env b/idp/.env similarity index 100% rename from konnectd/.env rename to idp/.env diff --git a/konnectd/.eslintignore b/idp/.eslintignore similarity index 100% rename from konnectd/.eslintignore rename to idp/.eslintignore diff --git a/konnectd/.eslintrc.json b/idp/.eslintrc.json similarity index 100% rename from konnectd/.eslintrc.json rename to idp/.eslintrc.json diff --git a/konnectd/LICENSE b/idp/LICENSE similarity index 100% rename from konnectd/LICENSE rename to idp/LICENSE diff --git a/konnectd/Makefile b/idp/Makefile similarity index 99% rename from konnectd/Makefile rename to idp/Makefile index 5350363685..9f809ca1eb 100644 --- a/konnectd/Makefile +++ b/idp/Makefile @@ -1,5 +1,5 @@ SHELL := bash -NAME := konnectd +NAME := idp IMPORT := github.com/owncloud/ocis/$(NAME) BIN := bin DIST := dist diff --git a/konnectd/cmd/konnectd/main.go b/idp/cmd/konnectd/main.go similarity index 68% rename from konnectd/cmd/konnectd/main.go rename to idp/cmd/konnectd/main.go index 2aed1b86c4..deeb7ea4de 100644 --- a/konnectd/cmd/konnectd/main.go +++ b/idp/cmd/konnectd/main.go @@ -3,7 +3,7 @@ package main import ( "os" - "github.com/owncloud/ocis/konnectd/pkg/command" + "github.com/owncloud/ocis/idp/pkg/command" ) func main() { diff --git a/konnectd/config/example.json b/idp/config/example.json similarity index 92% rename from konnectd/config/example.json rename to idp/config/example.json index f1bd1d5e04..e70627df46 100644 --- a/konnectd/config/example.json +++ b/idp/config/example.json @@ -15,6 +15,6 @@ "type": "jaeger", "endpoint": "localhost:6831", "collector": "http://localhost:14268/api/traces", - "service": "konnectd" + "service": "idp" } } diff --git a/konnectd/config/example.yml b/idp/config/example.yml similarity index 92% rename from konnectd/config/example.yml rename to idp/config/example.yml index 8fa4a823b2..c1a0c74a9f 100644 --- a/konnectd/config/example.yml +++ b/idp/config/example.yml @@ -14,6 +14,6 @@ tracing: type: jaeger endpoint: localhost:6831 collector: http://localhost:14268/api/traces - service: konnectd + service: idp ... diff --git a/konnectd/config/identifier-registration.yaml b/idp/config/identifier-registration.yaml similarity index 100% rename from konnectd/config/identifier-registration.yaml rename to idp/config/identifier-registration.yaml diff --git a/konnectd/docker/Dockerfile.linux.amd64 b/idp/docker/Dockerfile.linux.amd64 similarity index 82% rename from konnectd/docker/Dockerfile.linux.amd64 rename to idp/docker/Dockerfile.linux.amd64 index f6e9d3b189..7c4550cf47 100644 --- a/konnectd/docker/Dockerfile.linux.amd64 +++ b/idp/docker/Dockerfile.linux.amd64 @@ -13,7 +13,7 @@ LABEL maintainer="ownCloud GmbH " \ EXPOSE 9130 9134 -ENTRYPOINT ["/usr/bin/ocis-konnectd"] +ENTRYPOINT ["/usr/bin/ocis-idp"] CMD ["server"] -COPY bin/ocis-konnectd /usr/bin/ocis-konnectd +COPY bin/ocis-idp /usr/bin/ocis-idp diff --git a/konnectd/docker/Dockerfile.linux.arm b/idp/docker/Dockerfile.linux.arm similarity index 82% rename from konnectd/docker/Dockerfile.linux.arm rename to idp/docker/Dockerfile.linux.arm index b8b0020fb3..c507dbe313 100644 --- a/konnectd/docker/Dockerfile.linux.arm +++ b/idp/docker/Dockerfile.linux.arm @@ -13,7 +13,7 @@ LABEL maintainer="ownCloud GmbH " \ EXPOSE 9130 9134 -ENTRYPOINT ["/usr/bin/ocis-konnectd"] +ENTRYPOINT ["/usr/bin/ocis-idp"] CMD ["server"] -COPY bin/ocis-konnectd /usr/bin/ocis-konnectd +COPY bin/ocis-idp /usr/bin/ocis-idp diff --git a/konnectd/docker/Dockerfile.linux.arm64 b/idp/docker/Dockerfile.linux.arm64 similarity index 82% rename from konnectd/docker/Dockerfile.linux.arm64 rename to idp/docker/Dockerfile.linux.arm64 index a1db7a18c3..46a0438173 100644 --- a/konnectd/docker/Dockerfile.linux.arm64 +++ b/idp/docker/Dockerfile.linux.arm64 @@ -13,7 +13,7 @@ LABEL maintainer="ownCloud GmbH " \ EXPOSE 9130 9134 -ENTRYPOINT ["/usr/bin/ocis-konnectd"] +ENTRYPOINT ["/usr/bin/ocis-idp"] CMD ["server"] -COPY bin/ocis-konnectd /usr/bin/ocis-konnectd +COPY bin/ocis-idp /usr/bin/ocis-idp diff --git a/idp/docker/manifest.tmpl b/idp/docker/manifest.tmpl new file mode 100644 index 0000000000..6367d18ade --- /dev/null +++ b/idp/docker/manifest.tmpl @@ -0,0 +1,22 @@ +image: owncloud/ocis-idp:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}} +{{#if build.tags}} +tags: +{{#each build.tags}} + - {{this}} +{{/each}} +{{/if}} +manifests: + - image: owncloud/ocis-idp:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64 + platform: + architecture: amd64 + os: linux + - image: owncloud/ocis-idp:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64 + platform: + architecture: arm64 + variant: v8 + os: linux + - image: owncloud/ocis-idp:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm + platform: + architecture: arm + variant: v6 + os: linux diff --git a/konnectd/go.mod b/idp/go.mod similarity index 96% rename from konnectd/go.mod rename to idp/go.mod index d53fc5817f..e9b3260b2f 100644 --- a/konnectd/go.mod +++ b/idp/go.mod @@ -1,4 +1,4 @@ -module github.com/owncloud/ocis/konnectd +module github.com/owncloud/ocis/idp go 1.15 diff --git a/konnectd/go.sum b/idp/go.sum similarity index 100% rename from konnectd/go.sum rename to idp/go.sum diff --git a/konnectd/package.json b/idp/package.json similarity index 100% rename from konnectd/package.json rename to idp/package.json diff --git a/konnectd/pkg/assets/assets.go b/idp/pkg/assets/assets.go similarity index 95% rename from konnectd/pkg/assets/assets.go rename to idp/pkg/assets/assets.go index d9e070cd73..9e6884434e 100644 --- a/konnectd/pkg/assets/assets.go +++ b/idp/pkg/assets/assets.go @@ -5,7 +5,7 @@ import ( "os" "path" - "github.com/owncloud/ocis/konnectd/pkg/config" + "github.com/owncloud/ocis/idp/pkg/config" "github.com/owncloud/ocis/ocis-pkg/log" ) diff --git a/konnectd/pkg/assets/dummy.go b/idp/pkg/assets/dummy.go similarity index 100% rename from konnectd/pkg/assets/dummy.go rename to idp/pkg/assets/dummy.go diff --git a/konnectd/pkg/assets/embed.go b/idp/pkg/assets/embed.go similarity index 100% rename from konnectd/pkg/assets/embed.go rename to idp/pkg/assets/embed.go diff --git a/konnectd/pkg/assets/embed.yml b/idp/pkg/assets/embed.yml similarity index 100% rename from konnectd/pkg/assets/embed.yml rename to idp/pkg/assets/embed.yml diff --git a/konnectd/pkg/assets/option.go b/idp/pkg/assets/option.go similarity index 93% rename from konnectd/pkg/assets/option.go rename to idp/pkg/assets/option.go index 218f46884a..54f1eebf57 100644 --- a/konnectd/pkg/assets/option.go +++ b/idp/pkg/assets/option.go @@ -1,7 +1,7 @@ package assets import ( - "github.com/owncloud/ocis/konnectd/pkg/config" + "github.com/owncloud/ocis/idp/pkg/config" "github.com/owncloud/ocis/ocis-pkg/log" ) diff --git a/konnectd/pkg/command/health.go b/idp/pkg/command/health.go similarity index 89% rename from konnectd/pkg/command/health.go rename to idp/pkg/command/health.go index dd651282c3..ab38e13102 100644 --- a/konnectd/pkg/command/health.go +++ b/idp/pkg/command/health.go @@ -5,8 +5,8 @@ import ( "net/http" "github.com/micro/cli/v2" - "github.com/owncloud/ocis/konnectd/pkg/config" - "github.com/owncloud/ocis/konnectd/pkg/flagset" + "github.com/owncloud/ocis/idp/pkg/config" + "github.com/owncloud/ocis/idp/pkg/flagset" ) // Health is the entrypoint for the health command. diff --git a/konnectd/pkg/command/root.go b/idp/pkg/command/root.go similarity index 83% rename from konnectd/pkg/command/root.go rename to idp/pkg/command/root.go index d57dd8f47f..aa365be4f5 100644 --- a/konnectd/pkg/command/root.go +++ b/idp/pkg/command/root.go @@ -5,21 +5,21 @@ import ( "strings" "github.com/micro/cli/v2" - "github.com/owncloud/ocis/konnectd/pkg/config" - "github.com/owncloud/ocis/konnectd/pkg/flagset" - "github.com/owncloud/ocis/konnectd/pkg/version" + "github.com/owncloud/ocis/idp/pkg/config" + "github.com/owncloud/ocis/idp/pkg/flagset" + "github.com/owncloud/ocis/idp/pkg/version" "github.com/owncloud/ocis/ocis-pkg/log" "github.com/spf13/viper" ) -// Execute is the entry point for the ocis-konnectd command. +// Execute is the entry point for the ocis-idp command. func Execute() error { cfg := config.New() app := &cli.App{ - Name: "ocis-konnectd", + Name: "ocis-idp", Version: version.String, - Usage: "Serve Konnectd API for oCIS", + Usage: "Serve IDP API for oCIS", Compiled: version.Compiled(), Authors: []*cli.Author{ @@ -59,7 +59,7 @@ func Execute() error { // NewLogger initializes a service-specific logger instance. func NewLogger(cfg *config.Config) log.Logger { return log.NewLogger( - log.Name("konnectd"), + log.Name("idp"), log.Level(cfg.Log.Level), log.Pretty(cfg.Log.Pretty), log.Color(cfg.Log.Color), @@ -71,13 +71,13 @@ func ParseConfig(c *cli.Context, cfg *config.Config) error { logger := NewLogger(cfg) viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_")) - viper.SetEnvPrefix("KONNECTD") + viper.SetEnvPrefix("IDP") viper.AutomaticEnv() if c.IsSet("config-file") { viper.SetConfigFile(c.String("config-file")) } else { - viper.SetConfigName("konnectd") + viper.SetConfigName("idp") viper.AddConfigPath("/etc/ocis") viper.AddConfigPath("$HOME/.ocis") diff --git a/konnectd/pkg/command/server.go b/idp/pkg/command/server.go similarity index 91% rename from konnectd/pkg/command/server.go rename to idp/pkg/command/server.go index a414f16df2..bd07bfbdf5 100644 --- a/konnectd/pkg/command/server.go +++ b/idp/pkg/command/server.go @@ -14,11 +14,11 @@ import ( "github.com/oklog/run" openzipkin "github.com/openzipkin/zipkin-go" zipkinhttp "github.com/openzipkin/zipkin-go/reporter/http" - "github.com/owncloud/ocis/konnectd/pkg/config" - "github.com/owncloud/ocis/konnectd/pkg/flagset" - "github.com/owncloud/ocis/konnectd/pkg/metrics" - "github.com/owncloud/ocis/konnectd/pkg/server/debug" - "github.com/owncloud/ocis/konnectd/pkg/server/http" + "github.com/owncloud/ocis/idp/pkg/config" + "github.com/owncloud/ocis/idp/pkg/flagset" + "github.com/owncloud/ocis/idp/pkg/metrics" + "github.com/owncloud/ocis/idp/pkg/server/debug" + "github.com/owncloud/ocis/idp/pkg/server/http" "go.opencensus.io/stats/view" "go.opencensus.io/trace" ) @@ -38,15 +38,15 @@ func Server(cfg *config.Config) *cli.Command { // StringSliceFlag doesn't support Destination // UPDATE Destination on string flags supported. Wait for https://github.com/urfave/cli/pull/1078 to get to micro/cli if len(c.StringSlice("trusted-proxy")) > 0 { - cfg.Konnectd.TrustedProxy = c.StringSlice("trusted-proxy") + cfg.IDP.TrustedProxy = c.StringSlice("trusted-proxy") } if len(c.StringSlice("allow-scope")) > 0 { - cfg.Konnectd.AllowScope = c.StringSlice("allow-scope") + cfg.IDP.AllowScope = c.StringSlice("allow-scope") } if len(c.StringSlice("signing-private-key")) > 0 { - cfg.Konnectd.SigningPrivateKeyFiles = c.StringSlice("signing-private-key") + cfg.IDP.SigningPrivateKeyFiles = c.StringSlice("signing-private-key") } return ParseConfig(c, cfg) diff --git a/konnectd/pkg/command/version.go b/idp/pkg/command/version.go similarity index 76% rename from konnectd/pkg/command/version.go rename to idp/pkg/command/version.go index 72f6d42270..5be8ea3d46 100644 --- a/konnectd/pkg/command/version.go +++ b/idp/pkg/command/version.go @@ -8,8 +8,8 @@ import ( "github.com/micro/cli/v2" tw "github.com/olekukonko/tablewriter" - "github.com/owncloud/ocis/konnectd/pkg/config" - "github.com/owncloud/ocis/konnectd/pkg/flagset" + "github.com/owncloud/ocis/idp/pkg/config" + "github.com/owncloud/ocis/idp/pkg/flagset" ) // PrintVersion prints the service versions of all running instances. @@ -17,17 +17,17 @@ func PrintVersion(cfg *config.Config) *cli.Command { return &cli.Command{ Name: "version", Usage: "Print the versions of the running instances", - Flags: flagset.ListKonnectdWithConfig(cfg), + Flags: flagset.ListIDPWithConfig(cfg), Action: func(c *cli.Context) error { reg := *registry.GetRegistry() services, err := reg.GetService(cfg.Service.Namespace + "." + cfg.Service.Name) if err != nil { - fmt.Println(fmt.Errorf("could not get konnectd services from the registry: %v", err)) + fmt.Println(fmt.Errorf("could not get idp services from the registry: %v", err)) return err } if len(services) == 0 { - fmt.Println("No running konnectd service found.") + fmt.Println("No running idp service found.") return nil } diff --git a/konnectd/pkg/config/config.go b/idp/pkg/config/config.go similarity index 97% rename from konnectd/pkg/config/config.go rename to idp/pkg/config/config.go index e3b1e670ac..617fda130c 100644 --- a/konnectd/pkg/config/config.go +++ b/idp/pkg/config/config.go @@ -57,7 +57,7 @@ type Config struct { HTTP HTTP Tracing Tracing Asset Asset - Konnectd bootstrap.Config + IDP bootstrap.Config Service Service } diff --git a/konnectd/pkg/crypto/gencert.go b/idp/pkg/crypto/gencert.go similarity index 100% rename from konnectd/pkg/crypto/gencert.go rename to idp/pkg/crypto/gencert.go diff --git a/konnectd/pkg/flagset/flagset.go b/idp/pkg/flagset/flagset.go similarity index 66% rename from konnectd/pkg/flagset/flagset.go rename to idp/pkg/flagset/flagset.go index af76c54317..ed348e2c06 100644 --- a/konnectd/pkg/flagset/flagset.go +++ b/idp/pkg/flagset/flagset.go @@ -2,7 +2,7 @@ package flagset import ( "github.com/micro/cli/v2" - "github.com/owncloud/ocis/konnectd/pkg/config" + "github.com/owncloud/ocis/idp/pkg/config" ) // RootWithConfig applies cfg to the root flagset @@ -12,21 +12,21 @@ func RootWithConfig(cfg *config.Config) []cli.Flag { Name: "log-level", Value: "info", Usage: "Set logging level", - EnvVars: []string{"KONNECTD_LOG_LEVEL"}, + EnvVars: []string{"IDP_LOG_LEVEL"}, Destination: &cfg.Log.Level, }, &cli.BoolFlag{ Value: true, Name: "log-pretty", Usage: "Enable pretty logging", - EnvVars: []string{"KONNECTD_LOG_PRETTY"}, + EnvVars: []string{"IDP_LOG_PRETTY"}, Destination: &cfg.Log.Pretty, }, &cli.BoolFlag{ Value: true, Name: "log-color", Usage: "Enable colored logging", - EnvVars: []string{"KONNECTD_LOG_COLOR"}, + EnvVars: []string{"IDP_LOG_COLOR"}, Destination: &cfg.Log.Color, }, } @@ -39,7 +39,7 @@ func HealthWithConfig(cfg *config.Config) []cli.Flag { Name: "debug-addr", Value: "0.0.0.0:9134", Usage: "Address to debug endpoint", - EnvVars: []string{"KONNECTD_DEBUG_ADDR"}, + EnvVars: []string{"IDP_DEBUG_ADDR"}, Destination: &cfg.Debug.Addr, }, } @@ -52,305 +52,305 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag { Name: "config-file", Value: "", Usage: "Path to config file", - EnvVars: []string{"KONNECTD_CONFIG_FILE"}, + EnvVars: []string{"IDP_CONFIG_FILE"}, Destination: &cfg.File, }, &cli.BoolFlag{ Name: "tracing-enabled", Usage: "Enable sending traces", - EnvVars: []string{"KONNECTD_TRACING_ENABLED"}, + EnvVars: []string{"IDP_TRACING_ENABLED"}, Destination: &cfg.Tracing.Enabled, }, &cli.StringFlag{ Name: "tracing-type", Value: "jaeger", Usage: "Tracing backend type", - EnvVars: []string{"KONNECTD_TRACING_TYPE"}, + EnvVars: []string{"IDP_TRACING_TYPE"}, Destination: &cfg.Tracing.Type, }, &cli.StringFlag{ Name: "tracing-endpoint", Value: "", Usage: "Endpoint for the agent", - EnvVars: []string{"KONNECTD_TRACING_ENDPOINT"}, + EnvVars: []string{"IDP_TRACING_ENDPOINT"}, Destination: &cfg.Tracing.Endpoint, }, &cli.StringFlag{ Name: "tracing-collector", Value: "", Usage: "Endpoint for the collector", - EnvVars: []string{"KONNECTD_TRACING_COLLECTOR"}, + EnvVars: []string{"IDP_TRACING_COLLECTOR"}, Destination: &cfg.Tracing.Collector, }, &cli.StringFlag{ Name: "tracing-service", - Value: "konnectd", + Value: "idp", Usage: "Service name for tracing", - EnvVars: []string{"KONNECTD_TRACING_SERVICE"}, + EnvVars: []string{"IDP_TRACING_SERVICE"}, Destination: &cfg.Tracing.Service, }, &cli.StringFlag{ Name: "debug-addr", Value: "0.0.0.0:9134", Usage: "Address to bind debug server", - EnvVars: []string{"KONNECTD_DEBUG_ADDR"}, + EnvVars: []string{"IDP_DEBUG_ADDR"}, Destination: &cfg.Debug.Addr, }, &cli.StringFlag{ Name: "debug-token", Value: "", Usage: "Token to grant metrics access", - EnvVars: []string{"KONNECTD_DEBUG_TOKEN"}, + EnvVars: []string{"IDP_DEBUG_TOKEN"}, Destination: &cfg.Debug.Token, }, &cli.BoolFlag{ Name: "debug-pprof", Usage: "Enable pprof debugging", - EnvVars: []string{"KONNECTD_DEBUG_PPROF"}, + EnvVars: []string{"IDP_DEBUG_PPROF"}, Destination: &cfg.Debug.Pprof, }, &cli.BoolFlag{ Name: "debug-zpages", Usage: "Enable zpages debugging", - EnvVars: []string{"KONNECTD_DEBUG_ZPAGES"}, + EnvVars: []string{"IDP_DEBUG_ZPAGES"}, Destination: &cfg.Debug.Zpages, }, &cli.StringFlag{ Name: "http-addr", Value: "0.0.0.0:9130", Usage: "Address to bind http server", - EnvVars: []string{"KONNECTD_HTTP_ADDR"}, + EnvVars: []string{"IDP_HTTP_ADDR"}, Destination: &cfg.HTTP.Addr, }, &cli.StringFlag{ Name: "http-root", Value: "/", Usage: "Root path of http server", - EnvVars: []string{"KONNECTD_HTTP_ROOT"}, + EnvVars: []string{"IDP_HTTP_ROOT"}, Destination: &cfg.HTTP.Root, }, &cli.StringFlag{ Name: "http-namespace", Value: "com.owncloud.web", Usage: "Set the base namespace for service discovery", - EnvVars: []string{"KONNECTD_HTTP_NAMESPACE"}, + EnvVars: []string{"IDP_HTTP_NAMESPACE"}, Destination: &cfg.Service.Namespace, }, &cli.StringFlag{ Name: "name", - Value: "konnectd", + Value: "idp", Usage: "Service name", - EnvVars: []string{"KONNECTD_NAME"}, + EnvVars: []string{"IDP_NAME"}, Destination: &cfg.Service.Name, }, &cli.StringFlag{ Name: "identity-manager", Value: "ldap", Usage: "Identity manager (one of ldap,kc,cookie,dummy)", - EnvVars: []string{"KONNECTD_IDENTITY_MANAGER"}, - Destination: &cfg.Konnectd.IdentityManager, + EnvVars: []string{"IDP_IDENTITY_MANAGER"}, + Destination: &cfg.IDP.IdentityManager, }, &cli.StringFlag{ Name: "transport-tls-cert", Value: "", Usage: "Certificate file for transport encryption", - EnvVars: []string{"KONNECTD_TRANSPORT_TLS_CERT"}, + EnvVars: []string{"IDP_TRANSPORT_TLS_CERT"}, Destination: &cfg.HTTP.TLSCert, }, &cli.StringFlag{ Name: "transport-tls-key", Value: "", Usage: "Secret file for transport encryption", - EnvVars: []string{"KONNECTD_TRANSPORT_TLS_KEY"}, + EnvVars: []string{"IDP_TRANSPORT_TLS_KEY"}, Destination: &cfg.HTTP.TLSKey, }, &cli.StringFlag{ Name: "iss", Usage: "OIDC issuer URL", - EnvVars: []string{"KONNECTD_ISS", "OCIS_URL"}, // KONNECTD_ISS takes precedence over OCIS_URL + EnvVars: []string{"IDP_ISS", "OCIS_URL"}, // IDP_ISS takes precedence over OCIS_URL Value: "https://localhost:9200", - Destination: &cfg.Konnectd.Iss, + Destination: &cfg.IDP.Iss, }, &cli.StringSliceFlag{ Name: "signing-private-key", Usage: "Full path to PEM encoded private key file (must match the --signing-method algorithm)", - EnvVars: []string{"KONNECTD_SIGNING_PRIVATE_KEY"}, + EnvVars: []string{"IDP_SIGNING_PRIVATE_KEY"}, Value: nil, }, &cli.StringFlag{ Name: "signing-kid", Usage: "Value of kid field to use in created tokens (uniquely identifying the signing-private-key)", - EnvVars: []string{"KONNECTD_SIGNING_KID"}, + EnvVars: []string{"IDP_SIGNING_KID"}, Value: "", - Destination: &cfg.Konnectd.SigningKid, + Destination: &cfg.IDP.SigningKid, }, &cli.StringFlag{ Name: "validation-keys-path", Usage: "Full path to a folder containg PEM encoded private or public key files used for token validaton (file name without extension is used as kid)", - EnvVars: []string{"KONNECTD_VALIDATION_KEYS_PATH"}, + EnvVars: []string{"IDP_VALIDATION_KEYS_PATH"}, Value: "", - Destination: &cfg.Konnectd.ValidationKeysPath, + Destination: &cfg.IDP.ValidationKeysPath, }, &cli.StringFlag{ Name: "encryption-secret", Usage: "Full path to a file containing a %d bytes secret key", - EnvVars: []string{"KONNECTD_ENCRYPTION_SECRET"}, + EnvVars: []string{"IDP_ENCRYPTION_SECRET"}, Value: "", - Destination: &cfg.Konnectd.EncryptionSecretFile, + Destination: &cfg.IDP.EncryptionSecretFile, }, &cli.StringFlag{ Name: "signing-method", Usage: "JWT default signing method", - EnvVars: []string{"KONNECTD_SIGNING_METHOD"}, + EnvVars: []string{"IDP_SIGNING_METHOD"}, Value: "PS256", - Destination: &cfg.Konnectd.SigningMethod, + Destination: &cfg.IDP.SigningMethod, }, &cli.StringFlag{ Name: "uri-base-path", Usage: "Custom base path for URI endpoints", - EnvVars: []string{"KONNECTD_URI_BASE_PATH"}, + EnvVars: []string{"IDP_URI_BASE_PATH"}, Value: "", - Destination: &cfg.Konnectd.URIBasePath, + Destination: &cfg.IDP.URIBasePath, }, &cli.StringFlag{ Name: "sign-in-uri", Usage: "Custom redirection URI to sign-in form", - EnvVars: []string{"KONNECTD_SIGN_IN_URI"}, + EnvVars: []string{"IDP_SIGN_IN_URI"}, Value: "", - Destination: &cfg.Konnectd.SignInURI, + Destination: &cfg.IDP.SignInURI, }, &cli.StringFlag{ Name: "signed-out-uri", Usage: "Custom redirection URI to signed-out goodbye page", - EnvVars: []string{"KONNECTD_SIGN_OUT_URI"}, + EnvVars: []string{"IDP_SIGN_OUT_URI"}, Value: "", - Destination: &cfg.Konnectd.SignedOutURI, + Destination: &cfg.IDP.SignedOutURI, }, &cli.StringFlag{ Name: "authorization-endpoint-uri", Usage: "Custom authorization endpoint URI", - EnvVars: []string{"KONNECTD_ENDPOINT_URI"}, + EnvVars: []string{"IDP_ENDPOINT_URI"}, Value: "", - Destination: &cfg.Konnectd.AuthorizationEndpointURI, + Destination: &cfg.IDP.AuthorizationEndpointURI, }, &cli.StringFlag{ Name: "endsession-endpoint-uri", Usage: "Custom endsession endpoint URI", - EnvVars: []string{"KONNECTD_ENDSESSION_ENDPOINT_URI"}, + EnvVars: []string{"IDP_ENDSESSION_ENDPOINT_URI"}, Value: "", - Destination: &cfg.Konnectd.EndsessionEndpointURI, + Destination: &cfg.IDP.EndsessionEndpointURI, }, &cli.StringFlag{ Name: "asset-path", Value: "", Usage: "Path to custom assets", - EnvVars: []string{"KONNECTD_ASSET_PATH"}, + EnvVars: []string{"IDP_ASSET_PATH"}, Destination: &cfg.Asset.Path, }, &cli.StringFlag{ Name: "identifier-client-path", Usage: "Path to the identifier web client base folder", - EnvVars: []string{"KONNECTD_IDENTIFIER_CLIENT_PATH"}, - Value: "/var/tmp/ocis/konnectd", - Destination: &cfg.Konnectd.IdentifierClientPath, + EnvVars: []string{"IDP_IDENTIFIER_CLIENT_PATH"}, + Value: "/var/tmp/ocis/idp", + Destination: &cfg.IDP.IdentifierClientPath, }, &cli.StringFlag{ Name: "identifier-registration-conf", Usage: "Path to a identifier-registration.yaml configuration file", - EnvVars: []string{"KONNECTD_IDENTIFIER_REGISTRATION_CONF"}, + EnvVars: []string{"IDP_IDENTIFIER_REGISTRATION_CONF"}, Value: "./config/identifier-registration.yaml", - Destination: &cfg.Konnectd.IdentifierRegistrationConf, + Destination: &cfg.IDP.IdentifierRegistrationConf, }, &cli.StringFlag{ Name: "identifier-scopes-conf", Usage: "Path to a scopes.yaml configuration file", - EnvVars: []string{"KONNECTD_IDENTIFIER_SCOPES_CONF"}, + EnvVars: []string{"IDP_IDENTIFIER_SCOPES_CONF"}, Value: "", - Destination: &cfg.Konnectd.IdentifierScopesConf, + Destination: &cfg.IDP.IdentifierScopesConf, }, &cli.BoolFlag{ Name: "insecure", Usage: "Disable TLS certificate and hostname validation", - EnvVars: []string{"KONNECTD_INSECURE"}, - Destination: &cfg.Konnectd.Insecure, + EnvVars: []string{"IDP_INSECURE"}, + Destination: &cfg.IDP.Insecure, }, &cli.BoolFlag{ Name: "tls", - Usage: "Use TLS (disable only if konnectd is behind a TLS-terminating reverse-proxy).", - EnvVars: []string{"KONNECTD_TLS"}, + Usage: "Use TLS (disable only if idp is behind a TLS-terminating reverse-proxy).", + EnvVars: []string{"IDP_TLS"}, Value: false, Destination: &cfg.HTTP.TLS, }, &cli.StringSliceFlag{ Name: "trusted-proxy", Usage: "Trusted proxy IP or IP network (can be used multiple times)", - EnvVars: []string{"KONNECTD_TRUSTED_PROXY"}, + EnvVars: []string{"IDP_TRUSTED_PROXY"}, Value: nil, }, &cli.StringSliceFlag{ Name: "allow-scope", Usage: "Allow OAuth 2 scope (can be used multiple times, if not set default scopes are allowed)", - EnvVars: []string{"KONNECTD_ALLOW_SCOPE"}, + EnvVars: []string{"IDP_ALLOW_SCOPE"}, Value: nil, }, &cli.BoolFlag{ Name: "allow-client-guests", Usage: "Allow sign in of client controlled guest users", - EnvVars: []string{"KONNECTD_ALLOW_CLIENT_GUESTS"}, - Destination: &cfg.Konnectd.AllowClientGuests, + EnvVars: []string{"IDP_ALLOW_CLIENT_GUESTS"}, + Destination: &cfg.IDP.AllowClientGuests, }, &cli.BoolFlag{ Name: "allow-dynamic-client-registration", Usage: "Allow dynamic OAuth2 client registration", - EnvVars: []string{"KONNECTD_ALLOW_DYNAMIC_CLIENT_REGISTRATION"}, + EnvVars: []string{"IDP_ALLOW_DYNAMIC_CLIENT_REGISTRATION"}, Value: true, - Destination: &cfg.Konnectd.AllowDynamicClientRegistration, + Destination: &cfg.IDP.AllowDynamicClientRegistration, }, &cli.BoolFlag{ Name: "disable-identifier-webapp", Usage: "Disable built-in identifier-webapp to use a frontend hosted elsewhere.", - EnvVars: []string{"KONNECTD_DISABLE_IDENTIFIER_WEBAPP"}, + EnvVars: []string{"IDP_DISABLE_IDENTIFIER_WEBAPP"}, Value: true, - Destination: &cfg.Konnectd.IdentifierClientDisabled, + Destination: &cfg.IDP.IdentifierClientDisabled, }, &cli.Uint64Flag{ Name: "access-token-expiration", Usage: "Expiration time of access tokens in seconds since generated", - EnvVars: []string{"KONNECTD_ACCESS_TOKEN_EXPIRATION"}, - Destination: &cfg.Konnectd.AccessTokenDurationSeconds, + EnvVars: []string{"IDP_ACCESS_TOKEN_EXPIRATION"}, + Destination: &cfg.IDP.AccessTokenDurationSeconds, Value: 60 * 10, // 10 Minutes. }, &cli.Uint64Flag{ Name: "id-token-expiration", Usage: "Expiration time of id tokens in seconds since generated", - EnvVars: []string{"KONNECTD_ID_TOKEN_EXPIRATION"}, - Destination: &cfg.Konnectd.IDTokenDurationSeconds, + EnvVars: []string{"IDP_ID_TOKEN_EXPIRATION"}, + Destination: &cfg.IDP.IDTokenDurationSeconds, Value: 60 * 60, // 1 Hour }, &cli.Uint64Flag{ Name: "refresh-token-expiration", Usage: "Expiration time of refresh tokens in seconds since generated", - EnvVars: []string{"KONNECTD_REFRESH_TOKEN_EXPIRATION"}, - Destination: &cfg.Konnectd.RefreshTokenDurationSeconds, + EnvVars: []string{"IDP_REFRESH_TOKEN_EXPIRATION"}, + Destination: &cfg.IDP.RefreshTokenDurationSeconds, Value: 60 * 60 * 24 * 365 * 3, // 1 year }, } } -// ListKonnectdWithConfig applies the config to the list commands flags -func ListKonnectdWithConfig(cfg *config.Config) []cli.Flag { +// ListIDPWithConfig applies the config to the list commands flags +func ListIDPWithConfig(cfg *config.Config) []cli.Flag { return []cli.Flag{&cli.StringFlag{ Name: "http-namespace", Value: "com.owncloud.web", Usage: "Set the base namespace for service discovery", - EnvVars: []string{"KONNECTD_HTTP_NAMESPACE"}, + EnvVars: []string{"IDP_HTTP_NAMESPACE"}, Destination: &cfg.Service.Namespace, }, &cli.StringFlag{ Name: "name", - Value: "konnectd", + Value: "idp", Usage: "Service name", - EnvVars: []string{"KONNECTD_NAME"}, + EnvVars: []string{"IDP_NAME"}, Destination: &cfg.Service.Name, }, } diff --git a/konnectd/pkg/log/logrus_wrapper.go b/idp/pkg/log/logrus_wrapper.go similarity index 95% rename from konnectd/pkg/log/logrus_wrapper.go rename to idp/pkg/log/logrus_wrapper.go index 565b6e77dd..71f29be2c8 100644 --- a/konnectd/pkg/log/logrus_wrapper.go +++ b/idp/pkg/log/logrus_wrapper.go @@ -17,7 +17,7 @@ var levelMapping = levelMap{ logrus.InfoLevel: zerolog.InfoLevel, } -// LogrusWrapper around zerolog. Required because konnectd uses logrus internally. +// LogrusWrapper around zerolog. Required because idp uses logrus internally. type LogrusWrapper struct { zeroLog *zerolog.Logger levelMap levelMap diff --git a/konnectd/pkg/metrics/metrics.go b/idp/pkg/metrics/metrics.go similarity index 97% rename from konnectd/pkg/metrics/metrics.go rename to idp/pkg/metrics/metrics.go index 8c658395e2..9a5f912dab 100644 --- a/konnectd/pkg/metrics/metrics.go +++ b/idp/pkg/metrics/metrics.go @@ -7,7 +7,7 @@ var ( Namespace = "ocis" // Subsystem defines the subsystem for the defines metrics. - Subsystem = "konnectd" + Subsystem = "idp" ) // Metrics defines the available metrics of this service. diff --git a/konnectd/pkg/middleware/static.go b/idp/pkg/middleware/static.go similarity index 100% rename from konnectd/pkg/middleware/static.go rename to idp/pkg/middleware/static.go diff --git a/konnectd/pkg/server/debug/option.go b/idp/pkg/server/debug/option.go similarity index 95% rename from konnectd/pkg/server/debug/option.go rename to idp/pkg/server/debug/option.go index 0a9b7b7390..5e0d17f8a8 100644 --- a/konnectd/pkg/server/debug/option.go +++ b/idp/pkg/server/debug/option.go @@ -3,7 +3,7 @@ package debug import ( "context" - "github.com/owncloud/ocis/konnectd/pkg/config" + "github.com/owncloud/ocis/idp/pkg/config" "github.com/owncloud/ocis/ocis-pkg/log" ) diff --git a/konnectd/pkg/server/debug/server.go b/idp/pkg/server/debug/server.go similarity index 96% rename from konnectd/pkg/server/debug/server.go rename to idp/pkg/server/debug/server.go index d88639978b..13ab7b9f27 100644 --- a/konnectd/pkg/server/debug/server.go +++ b/idp/pkg/server/debug/server.go @@ -4,7 +4,7 @@ import ( "io" "net/http" - "github.com/owncloud/ocis/konnectd/pkg/config" + "github.com/owncloud/ocis/idp/pkg/config" "github.com/owncloud/ocis/ocis-pkg/service/debug" ) diff --git a/konnectd/pkg/server/http/option.go b/idp/pkg/server/http/option.go similarity index 93% rename from konnectd/pkg/server/http/option.go rename to idp/pkg/server/http/option.go index 4c0cfc84b3..3fed9712df 100644 --- a/konnectd/pkg/server/http/option.go +++ b/idp/pkg/server/http/option.go @@ -4,8 +4,8 @@ import ( "context" "github.com/micro/cli/v2" - "github.com/owncloud/ocis/konnectd/pkg/config" - "github.com/owncloud/ocis/konnectd/pkg/metrics" + "github.com/owncloud/ocis/idp/pkg/config" + "github.com/owncloud/ocis/idp/pkg/metrics" "github.com/owncloud/ocis/ocis-pkg/log" ) diff --git a/konnectd/pkg/server/http/server.go b/idp/pkg/server/http/server.go similarity index 95% rename from konnectd/pkg/server/http/server.go rename to idp/pkg/server/http/server.go index bd6f081f54..ab6e795186 100644 --- a/konnectd/pkg/server/http/server.go +++ b/idp/pkg/server/http/server.go @@ -4,8 +4,8 @@ import ( "crypto/tls" "os" - "github.com/owncloud/ocis/konnectd/pkg/crypto" - svc "github.com/owncloud/ocis/konnectd/pkg/service/v0" + "github.com/owncloud/ocis/idp/pkg/crypto" + svc "github.com/owncloud/ocis/idp/pkg/service/v0" "github.com/owncloud/ocis/ocis-pkg/middleware" "github.com/owncloud/ocis/ocis-pkg/service/http" ) diff --git a/konnectd/pkg/service/v0/instrument.go b/idp/pkg/service/v0/instrument.go similarity index 92% rename from konnectd/pkg/service/v0/instrument.go rename to idp/pkg/service/v0/instrument.go index 4abb29d34e..9d5ad73225 100644 --- a/konnectd/pkg/service/v0/instrument.go +++ b/idp/pkg/service/v0/instrument.go @@ -3,7 +3,7 @@ package svc import ( "net/http" - "github.com/owncloud/ocis/konnectd/pkg/metrics" + "github.com/owncloud/ocis/idp/pkg/metrics" ) // NewInstrument returns a service that instruments metrics. diff --git a/konnectd/pkg/service/v0/logging.go b/idp/pkg/service/v0/logging.go similarity index 100% rename from konnectd/pkg/service/v0/logging.go rename to idp/pkg/service/v0/logging.go diff --git a/konnectd/pkg/service/v0/option.go b/idp/pkg/service/v0/option.go similarity index 95% rename from konnectd/pkg/service/v0/option.go rename to idp/pkg/service/v0/option.go index ad06f2069b..5ddc77d770 100644 --- a/konnectd/pkg/service/v0/option.go +++ b/idp/pkg/service/v0/option.go @@ -3,7 +3,7 @@ package svc import ( "net/http" - "github.com/owncloud/ocis/konnectd/pkg/config" + "github.com/owncloud/ocis/idp/pkg/config" "github.com/owncloud/ocis/ocis-pkg/log" ) diff --git a/konnectd/pkg/service/v0/service.go b/idp/pkg/service/v0/service.go similarity index 81% rename from konnectd/pkg/service/v0/service.go rename to idp/pkg/service/v0/service.go index 319879f53a..419726212b 100644 --- a/konnectd/pkg/service/v0/service.go +++ b/idp/pkg/service/v0/service.go @@ -11,10 +11,10 @@ import ( "github.com/go-chi/chi" "github.com/gorilla/mux" - "github.com/owncloud/ocis/konnectd/pkg/assets" - "github.com/owncloud/ocis/konnectd/pkg/config" - logw "github.com/owncloud/ocis/konnectd/pkg/log" - "github.com/owncloud/ocis/konnectd/pkg/middleware" + "github.com/owncloud/ocis/idp/pkg/assets" + "github.com/owncloud/ocis/idp/pkg/config" + logw "github.com/owncloud/ocis/idp/pkg/log" + "github.com/owncloud/ocis/idp/pkg/middleware" "github.com/owncloud/ocis/ocis-pkg/log" "stash.kopano.io/kc/konnect/bootstrap" kcconfig "stash.kopano.io/kc/konnect/config" @@ -42,23 +42,23 @@ func NewService(opts ...Option) Service { logger.Fatal().Err(err).Msg("could not initialize env vars") } - if err := createConfigsIfNotExist(assetVFS, options.Config.Konnectd.Iss); err != nil { + if err := createConfigsIfNotExist(assetVFS, options.Config.IDP.Iss); err != nil { logger.Fatal().Err(err).Msg("could not create default config") } - bs, err := bootstrap.Boot(ctx, &options.Config.Konnectd, &kcconfig.Config{ + bs, err := bootstrap.Boot(ctx, &options.Config.IDP, &kcconfig.Config{ Logger: logw.Wrap(logger), }) if err != nil { - logger.Fatal().Err(err).Msg("could not bootstrap konnectd") + logger.Fatal().Err(err).Msg("could not bootstrap idp") } managers := bs.Managers() routes := []server.WithRoutes{managers.Must("identity").(server.WithRoutes)} handlers := managers.Must("handler").(http.Handler) - svc := Konnectd{ + svc := IDP{ logger: options.Logger, config: options.Config, assets: assetVFS, @@ -109,12 +109,12 @@ func createConfigsIfNotExist(assets http.FileSystem, ocisURL string) error { } -// Init vars which are currently not accessible via konnectd api +// Init vars which are currently not accessible via idp api func initKonnectInternalEnvVars() error { var defaults = map[string]string{ "LDAP_URI": "ldap://localhost:9125", - "LDAP_BINDDN": "cn=konnectd,ou=sysusers,dc=example,dc=org", - "LDAP_BINDPW": "konnectd", + "LDAP_BINDDN": "cn=idp,ou=sysusers,dc=example,dc=org", + "LDAP_BINDPW": "idp", "LDAP_BASEDN": "ou=users,dc=example,dc=org", "LDAP_SCOPE": "sub", "LDAP_LOGIN_ATTRIBUTE": "cn", @@ -136,16 +136,16 @@ func initKonnectInternalEnvVars() error { return nil } -// Konnectd defines implements the business logic for Service. -type Konnectd struct { +// IDP defines implements the business logic for Service. +type IDP struct { logger log.Logger config *config.Config mux *chi.Mux assets http.FileSystem } -// initMux initializes the internal konnectd gorilla mux and mounts it in to a ocis chi-router -func (k *Konnectd) initMux(ctx context.Context, r []server.WithRoutes, h http.Handler, options Options) { +// initMux initializes the internal idp gorilla mux and mounts it in to a ocis chi-router +func (k *IDP) initMux(ctx context.Context, r []server.WithRoutes, h http.Handler, options Options) { gm := mux.NewRouter() for _, route := range r { route.AddRoutes(ctx, gm) @@ -176,12 +176,12 @@ func (k *Konnectd) initMux(ctx context.Context, r []server.WithRoutes, h http.Ha } // ServeHTTP implements the Service interface. -func (k Konnectd) ServeHTTP(w http.ResponseWriter, r *http.Request) { +func (k IDP) ServeHTTP(w http.ResponseWriter, r *http.Request) { k.mux.ServeHTTP(w, r) } // Dummy implements the Service interface. -func (k Konnectd) Dummy(w http.ResponseWriter, r *http.Request) { +func (k IDP) Dummy(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "text/plain") w.WriteHeader(http.StatusOK) @@ -189,7 +189,7 @@ func (k Konnectd) Dummy(w http.ResponseWriter, r *http.Request) { } // Index renders the static html with the -func (k Konnectd) Index() http.HandlerFunc { +func (k IDP) Index() http.HandlerFunc { f, err := k.assets.Open("/identifier/index.html") if err != nil { diff --git a/konnectd/pkg/service/v0/tracing.go b/idp/pkg/service/v0/tracing.go similarity index 100% rename from konnectd/pkg/service/v0/tracing.go rename to idp/pkg/service/v0/tracing.go diff --git a/konnectd/pkg/version/version.go b/idp/pkg/version/version.go similarity index 100% rename from konnectd/pkg/version/version.go rename to idp/pkg/version/version.go diff --git a/idp/reflex.conf b/idp/reflex.conf new file mode 100644 index 0000000000..7f0d61da47 --- /dev/null +++ b/idp/reflex.conf @@ -0,0 +1,2 @@ +# backend +-r '^(cmd|pkg)/.*\.go$' -R '^node_modules/' -s -- sh -c 'make bin/ocis-idp-debug && bin/ocis-idp-debug --log-level debug server --debug-pprof --debug-zpages' diff --git a/konnectd/scripts/build.js b/idp/scripts/build.js similarity index 100% rename from konnectd/scripts/build.js rename to idp/scripts/build.js diff --git a/konnectd/scripts/start.js b/idp/scripts/start.js similarity index 100% rename from konnectd/scripts/start.js rename to idp/scripts/start.js diff --git a/konnectd/scripts/test.js b/idp/scripts/test.js similarity index 100% rename from konnectd/scripts/test.js rename to idp/scripts/test.js diff --git a/konnectd/templates/CONFIGURATION.tmpl b/idp/templates/CONFIGURATION.tmpl similarity index 86% rename from konnectd/templates/CONFIGURATION.tmpl rename to idp/templates/CONFIGURATION.tmpl index 1ae4a82f1c..713987abc9 100644 --- a/konnectd/templates/CONFIGURATION.tmpl +++ b/idp/templates/CONFIGURATION.tmpl @@ -3,7 +3,7 @@ title: "Configuration" date: "{{ date "2006-01-02T15:04:05-0700" now }}" weight: 20 geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/konnectd/templates +geekdocEditPath: edit/master/idp/templates geekdocFilePath: CONFIGURATION.tmpl --- {{- define "options"}} @@ -33,7 +33,7 @@ $HOME/.ocis ./config ``` -For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-konnectd reads `konnectd.json | yaml | toml ...`*. +For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-idp reads `idp.json | yaml | toml ...`*. So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/konnectd/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. @@ -50,12 +50,12 @@ If you prefer to configure the service with commandline flags you can see the av {{ $options := .Options -}} {{ range $com := .Commands }}{{ with (list $options $com) -}} {{ $c := last . -}} -{{ if eq $c.Name "konnectd" -}} +{{ if eq $c.Name "idp" -}} ## Root Command {{ $c.Usage }} -Usage: `konnectd [global options] command [command options] [arguments...]` +Usage: `idp [global options] command [command options] [arguments...]` {{ template "options" . -}} ## Sub Commands @@ -64,12 +64,12 @@ Usage: `konnectd [global options] command [command options] [arguments...]` {{ end -}} {{- range $com := .Commands }}{{ with (list $options $com) -}} {{- $c := last . }} -{{- if ne $c.Name "konnectd" -}} -### konnectd {{ $c.Name }} +{{- if ne $c.Name "idp" -}} +### idp {{ $c.Name }} {{ $c.Usage }} -Usage: `konnectd {{ $c.Name }} [command options] [arguments...]` +Usage: `idp {{ $c.Name }} [command options] [arguments...]` {{ template "options" . }} {{- end -}} {{- end -}} diff --git a/konnectd/tools.go b/idp/tools.go similarity index 100% rename from konnectd/tools.go rename to idp/tools.go diff --git a/konnectd/ui/Makefile b/idp/ui/Makefile similarity index 100% rename from konnectd/ui/Makefile rename to idp/ui/Makefile diff --git a/konnectd/ui/i18n/Makefile b/idp/ui/i18n/Makefile similarity index 100% rename from konnectd/ui/i18n/Makefile rename to idp/ui/i18n/Makefile diff --git a/konnectd/ui/i18n/de.po b/idp/ui/i18n/de.po similarity index 100% rename from konnectd/ui/i18n/de.po rename to idp/ui/i18n/de.po diff --git a/konnectd/ui/i18n/es.po b/idp/ui/i18n/es.po similarity index 100% rename from konnectd/ui/i18n/es.po rename to idp/ui/i18n/es.po diff --git a/konnectd/ui/i18n/fr.po b/idp/ui/i18n/fr.po similarity index 100% rename from konnectd/ui/i18n/fr.po rename to idp/ui/i18n/fr.po diff --git a/konnectd/ui/i18n/hi.po b/idp/ui/i18n/hi.po similarity index 100% rename from konnectd/ui/i18n/hi.po rename to idp/ui/i18n/hi.po diff --git a/konnectd/ui/i18n/hr.po b/idp/ui/i18n/hr.po similarity index 100% rename from konnectd/ui/i18n/hr.po rename to idp/ui/i18n/hr.po diff --git a/konnectd/ui/i18n/hu.po b/idp/ui/i18n/hu.po similarity index 100% rename from konnectd/ui/i18n/hu.po rename to idp/ui/i18n/hu.po diff --git a/konnectd/ui/i18n/is.po b/idp/ui/i18n/is.po similarity index 100% rename from konnectd/ui/i18n/is.po rename to idp/ui/i18n/is.po diff --git a/konnectd/ui/i18n/it.po b/idp/ui/i18n/it.po similarity index 100% rename from konnectd/ui/i18n/it.po rename to idp/ui/i18n/it.po diff --git a/konnectd/ui/i18n/ja.po b/idp/ui/i18n/ja.po similarity index 100% rename from konnectd/ui/i18n/ja.po rename to idp/ui/i18n/ja.po diff --git a/konnectd/ui/i18n/konnect-identifier.pot b/idp/ui/i18n/konnect-identifier.pot similarity index 100% rename from konnectd/ui/i18n/konnect-identifier.pot rename to idp/ui/i18n/konnect-identifier.pot diff --git a/konnectd/ui/i18n/nb.po b/idp/ui/i18n/nb.po similarity index 100% rename from konnectd/ui/i18n/nb.po rename to idp/ui/i18n/nb.po diff --git a/konnectd/ui/i18n/nl.po b/idp/ui/i18n/nl.po similarity index 100% rename from konnectd/ui/i18n/nl.po rename to idp/ui/i18n/nl.po diff --git a/konnectd/ui/i18n/pl.po b/idp/ui/i18n/pl.po similarity index 100% rename from konnectd/ui/i18n/pl.po rename to idp/ui/i18n/pl.po diff --git a/konnectd/ui/i18n/pt_PT.po b/idp/ui/i18n/pt_PT.po similarity index 100% rename from konnectd/ui/i18n/pt_PT.po rename to idp/ui/i18n/pt_PT.po diff --git a/konnectd/ui/i18n/ru.po b/idp/ui/i18n/ru.po similarity index 100% rename from konnectd/ui/i18n/ru.po rename to idp/ui/i18n/ru.po diff --git a/konnectd/ui/i18n/sl.po b/idp/ui/i18n/sl.po similarity index 100% rename from konnectd/ui/i18n/sl.po rename to idp/ui/i18n/sl.po diff --git a/konnectd/ui/i18n/src/messages.json b/idp/ui/i18n/src/messages.json similarity index 100% rename from konnectd/ui/i18n/src/messages.json rename to idp/ui/i18n/src/messages.json diff --git a/konnectd/ui/public/index.html b/idp/ui/public/index.html similarity index 100% rename from konnectd/ui/public/index.html rename to idp/ui/public/index.html diff --git a/konnectd/ui/public/static/logo.svg b/idp/ui/public/static/logo.svg similarity index 100% rename from konnectd/ui/public/static/logo.svg rename to idp/ui/public/static/logo.svg diff --git a/konnectd/ui/src/Main.js b/idp/ui/src/Main.js similarity index 100% rename from konnectd/ui/src/Main.js rename to idp/ui/src/Main.js diff --git a/konnectd/ui/src/Main.test.js b/idp/ui/src/Main.test.js similarity index 100% rename from konnectd/ui/src/Main.test.js rename to idp/ui/src/Main.test.js diff --git a/konnectd/ui/src/Makefile b/idp/ui/src/Makefile similarity index 100% rename from konnectd/ui/src/Makefile rename to idp/ui/src/Makefile diff --git a/konnectd/ui/src/Routes.js b/idp/ui/src/Routes.js similarity index 100% rename from konnectd/ui/src/Routes.js rename to idp/ui/src/Routes.js diff --git a/konnectd/ui/src/actions/common.js b/idp/ui/src/actions/common.js similarity index 100% rename from konnectd/ui/src/actions/common.js rename to idp/ui/src/actions/common.js diff --git a/konnectd/ui/src/actions/login.js b/idp/ui/src/actions/login.js similarity index 100% rename from konnectd/ui/src/actions/login.js rename to idp/ui/src/actions/login.js diff --git a/konnectd/ui/src/actions/types.js b/idp/ui/src/actions/types.js similarity index 100% rename from konnectd/ui/src/actions/types.js rename to idp/ui/src/actions/types.js diff --git a/konnectd/ui/src/actions/utils.js b/idp/ui/src/actions/utils.js similarity index 100% rename from konnectd/ui/src/actions/utils.js rename to idp/ui/src/actions/utils.js diff --git a/konnectd/ui/src/app.css b/idp/ui/src/app.css similarity index 100% rename from konnectd/ui/src/app.css rename to idp/ui/src/app.css diff --git a/konnectd/ui/src/app.js b/idp/ui/src/app.js similarity index 100% rename from konnectd/ui/src/app.js rename to idp/ui/src/app.js diff --git a/konnectd/ui/src/components/ClientDisplayName.js b/idp/ui/src/components/ClientDisplayName.js similarity index 100% rename from konnectd/ui/src/components/ClientDisplayName.js rename to idp/ui/src/components/ClientDisplayName.js diff --git a/konnectd/ui/src/components/Loading.js b/idp/ui/src/components/Loading.js similarity index 100% rename from konnectd/ui/src/components/Loading.js rename to idp/ui/src/components/Loading.js diff --git a/konnectd/ui/src/components/PrivateRoute.js b/idp/ui/src/components/PrivateRoute.js similarity index 100% rename from konnectd/ui/src/components/PrivateRoute.js rename to idp/ui/src/components/PrivateRoute.js diff --git a/konnectd/ui/src/components/RedirectWithQuery.js b/idp/ui/src/components/RedirectWithQuery.js similarity index 100% rename from konnectd/ui/src/components/RedirectWithQuery.js rename to idp/ui/src/components/RedirectWithQuery.js diff --git a/konnectd/ui/src/components/ResponsiveScreen.js b/idp/ui/src/components/ResponsiveScreen.js similarity index 100% rename from konnectd/ui/src/components/ResponsiveScreen.js rename to idp/ui/src/components/ResponsiveScreen.js diff --git a/konnectd/ui/src/components/ScopesList.js b/idp/ui/src/components/ScopesList.js similarity index 100% rename from konnectd/ui/src/components/ScopesList.js rename to idp/ui/src/components/ScopesList.js diff --git a/konnectd/ui/src/components/TextInput.js b/idp/ui/src/components/TextInput.js similarity index 100% rename from konnectd/ui/src/components/TextInput.js rename to idp/ui/src/components/TextInput.js diff --git a/konnectd/ui/src/containers/Goodbye/Goodbyescreen.js b/idp/ui/src/containers/Goodbye/Goodbyescreen.js similarity index 100% rename from konnectd/ui/src/containers/Goodbye/Goodbyescreen.js rename to idp/ui/src/containers/Goodbye/Goodbyescreen.js diff --git a/konnectd/ui/src/containers/Goodbye/index.js b/idp/ui/src/containers/Goodbye/index.js similarity index 100% rename from konnectd/ui/src/containers/Goodbye/index.js rename to idp/ui/src/containers/Goodbye/index.js diff --git a/konnectd/ui/src/containers/Login/Chooseaccount.js b/idp/ui/src/containers/Login/Chooseaccount.js similarity index 100% rename from konnectd/ui/src/containers/Login/Chooseaccount.js rename to idp/ui/src/containers/Login/Chooseaccount.js diff --git a/konnectd/ui/src/containers/Login/Consent.js b/idp/ui/src/containers/Login/Consent.js similarity index 100% rename from konnectd/ui/src/containers/Login/Consent.js rename to idp/ui/src/containers/Login/Consent.js diff --git a/konnectd/ui/src/containers/Login/Login.js b/idp/ui/src/containers/Login/Login.js similarity index 100% rename from konnectd/ui/src/containers/Login/Login.js rename to idp/ui/src/containers/Login/Login.js diff --git a/konnectd/ui/src/containers/Login/Loginscreen.js b/idp/ui/src/containers/Login/Loginscreen.js similarity index 100% rename from konnectd/ui/src/containers/Login/Loginscreen.js rename to idp/ui/src/containers/Login/Loginscreen.js diff --git a/konnectd/ui/src/containers/Login/index.js b/idp/ui/src/containers/Login/index.js similarity index 100% rename from konnectd/ui/src/containers/Login/index.js rename to idp/ui/src/containers/Login/index.js diff --git a/konnectd/ui/src/containers/Welcome/Welcomescreen.js b/idp/ui/src/containers/Welcome/Welcomescreen.js similarity index 100% rename from konnectd/ui/src/containers/Welcome/Welcomescreen.js rename to idp/ui/src/containers/Welcome/Welcomescreen.js diff --git a/konnectd/ui/src/containers/Welcome/index.js b/idp/ui/src/containers/Welcome/index.js similarity index 100% rename from konnectd/ui/src/containers/Welcome/index.js rename to idp/ui/src/containers/Welcome/index.js diff --git a/konnectd/ui/src/errors/index.js b/idp/ui/src/errors/index.js similarity index 100% rename from konnectd/ui/src/errors/index.js rename to idp/ui/src/errors/index.js diff --git a/konnectd/ui/src/images/background.jpg b/idp/ui/src/images/background.jpg similarity index 100% rename from konnectd/ui/src/images/background.jpg rename to idp/ui/src/images/background.jpg diff --git a/konnectd/ui/src/index.js b/idp/ui/src/index.js similarity index 100% rename from konnectd/ui/src/index.js rename to idp/ui/src/index.js diff --git a/konnectd/ui/src/locales/de.json b/idp/ui/src/locales/de.json similarity index 100% rename from konnectd/ui/src/locales/de.json rename to idp/ui/src/locales/de.json diff --git a/konnectd/ui/src/locales/es.json b/idp/ui/src/locales/es.json similarity index 100% rename from konnectd/ui/src/locales/es.json rename to idp/ui/src/locales/es.json diff --git a/konnectd/ui/src/locales/fr.json b/idp/ui/src/locales/fr.json similarity index 100% rename from konnectd/ui/src/locales/fr.json rename to idp/ui/src/locales/fr.json diff --git a/konnectd/ui/src/locales/hi.json b/idp/ui/src/locales/hi.json similarity index 100% rename from konnectd/ui/src/locales/hi.json rename to idp/ui/src/locales/hi.json diff --git a/konnectd/ui/src/locales/hr.json b/idp/ui/src/locales/hr.json similarity index 100% rename from konnectd/ui/src/locales/hr.json rename to idp/ui/src/locales/hr.json diff --git a/konnectd/ui/src/locales/hu.json b/idp/ui/src/locales/hu.json similarity index 100% rename from konnectd/ui/src/locales/hu.json rename to idp/ui/src/locales/hu.json diff --git a/konnectd/ui/src/locales/index.js b/idp/ui/src/locales/index.js similarity index 100% rename from konnectd/ui/src/locales/index.js rename to idp/ui/src/locales/index.js diff --git a/konnectd/ui/src/locales/is.json b/idp/ui/src/locales/is.json similarity index 100% rename from konnectd/ui/src/locales/is.json rename to idp/ui/src/locales/is.json diff --git a/konnectd/ui/src/locales/it.json b/idp/ui/src/locales/it.json similarity index 100% rename from konnectd/ui/src/locales/it.json rename to idp/ui/src/locales/it.json diff --git a/konnectd/ui/src/locales/ja.json b/idp/ui/src/locales/ja.json similarity index 100% rename from konnectd/ui/src/locales/ja.json rename to idp/ui/src/locales/ja.json diff --git a/konnectd/ui/src/locales/nb.json b/idp/ui/src/locales/nb.json similarity index 100% rename from konnectd/ui/src/locales/nb.json rename to idp/ui/src/locales/nb.json diff --git a/konnectd/ui/src/locales/nl.json b/idp/ui/src/locales/nl.json similarity index 100% rename from konnectd/ui/src/locales/nl.json rename to idp/ui/src/locales/nl.json diff --git a/konnectd/ui/src/locales/pl.json b/idp/ui/src/locales/pl.json similarity index 100% rename from konnectd/ui/src/locales/pl.json rename to idp/ui/src/locales/pl.json diff --git a/konnectd/ui/src/locales/pt_PT.json b/idp/ui/src/locales/pt_PT.json similarity index 100% rename from konnectd/ui/src/locales/pt_PT.json rename to idp/ui/src/locales/pt_PT.json diff --git a/konnectd/ui/src/locales/ru.json b/idp/ui/src/locales/ru.json similarity index 100% rename from konnectd/ui/src/locales/ru.json rename to idp/ui/src/locales/ru.json diff --git a/konnectd/ui/src/locales/sl.json b/idp/ui/src/locales/sl.json similarity index 100% rename from konnectd/ui/src/locales/sl.json rename to idp/ui/src/locales/sl.json diff --git a/konnectd/ui/src/models/hello.js b/idp/ui/src/models/hello.js similarity index 100% rename from konnectd/ui/src/models/hello.js rename to idp/ui/src/models/hello.js diff --git a/konnectd/ui/src/reducers/common.js b/idp/ui/src/reducers/common.js similarity index 100% rename from konnectd/ui/src/reducers/common.js rename to idp/ui/src/reducers/common.js diff --git a/konnectd/ui/src/reducers/index.js b/idp/ui/src/reducers/index.js similarity index 100% rename from konnectd/ui/src/reducers/index.js rename to idp/ui/src/reducers/index.js diff --git a/konnectd/ui/src/reducers/login.js b/idp/ui/src/reducers/login.js similarity index 100% rename from konnectd/ui/src/reducers/login.js rename to idp/ui/src/reducers/login.js diff --git a/konnectd/ui/src/store.js b/idp/ui/src/store.js similarity index 100% rename from konnectd/ui/src/store.js rename to idp/ui/src/store.js diff --git a/konnectd/ui/src/utils.js b/idp/ui/src/utils.js similarity index 100% rename from konnectd/ui/src/utils.js rename to idp/ui/src/utils.js diff --git a/konnectd/ui/src/version.js b/idp/ui/src/version.js similarity index 100% rename from konnectd/ui/src/version.js rename to idp/ui/src/version.js diff --git a/konnectd/ui_config/env.js b/idp/ui_config/env.js similarity index 100% rename from konnectd/ui_config/env.js rename to idp/ui_config/env.js diff --git a/konnectd/ui_config/jest/cssTransform.js b/idp/ui_config/jest/cssTransform.js similarity index 100% rename from konnectd/ui_config/jest/cssTransform.js rename to idp/ui_config/jest/cssTransform.js diff --git a/konnectd/ui_config/jest/fileTransform.js b/idp/ui_config/jest/fileTransform.js similarity index 100% rename from konnectd/ui_config/jest/fileTransform.js rename to idp/ui_config/jest/fileTransform.js diff --git a/konnectd/ui_config/modules.js b/idp/ui_config/modules.js similarity index 100% rename from konnectd/ui_config/modules.js rename to idp/ui_config/modules.js diff --git a/konnectd/ui_config/paths.js b/idp/ui_config/paths.js similarity index 100% rename from konnectd/ui_config/paths.js rename to idp/ui_config/paths.js diff --git a/konnectd/ui_config/pnpTs.js b/idp/ui_config/pnpTs.js similarity index 100% rename from konnectd/ui_config/pnpTs.js rename to idp/ui_config/pnpTs.js diff --git a/konnectd/ui_config/webpack.config.js b/idp/ui_config/webpack.config.js similarity index 100% rename from konnectd/ui_config/webpack.config.js rename to idp/ui_config/webpack.config.js diff --git a/konnectd/ui_config/webpackDevServer.config.js b/idp/ui_config/webpackDevServer.config.js similarity index 100% rename from konnectd/ui_config/webpackDevServer.config.js rename to idp/ui_config/webpackDevServer.config.js diff --git a/konnectd/yarn.lock b/idp/yarn.lock similarity index 100% rename from konnectd/yarn.lock rename to idp/yarn.lock diff --git a/konnectd/assets/identifier-registration.yaml b/konnectd/assets/identifier-registration.yaml deleted file mode 100644 index 6e14cc358b..0000000000 --- a/konnectd/assets/identifier-registration.yaml +++ /dev/null @@ -1,112 +0,0 @@ ---- - -# OpenID Connect client registry. -clients: - - id: web - name: ownCloud web app - trusted: yes - insecure: yes - redirect_uris: - - {{OCIS_URL}}/ - - {{OCIS_URL}}/oidc-callback.html - - {{OCIS_URL}}/oidc-silent-redirect.html - origins: - - {{OCIS_URL}} - - - id: ocis-explorer.js - name: oCIS Graph Explorer - trusted: yes - insecure: yes - - - id: xdXOt13JKxym1B1QcEncf2XDkLAexMBFwiT9j6EfhhHFJhs2KM9jbjTmf8JBXE69 - secret: UBntmLjC2yYCeHwsyj73Uwo9TAaecAetRwMw0xYcvNL9yRdLSUi0hUAHfvCHFeFh - name: ownCloud desktop app - application_type: native - insecure: true - - - id: e4rAsNUSIUs0lF4nbv9FmCeUkTlV9GdgTLDH1b5uie7syb90SzEVrbN7HIpmWJeD - secret: dInFYGV33xKzhbRmpqQltYNdfLdJIfJ9L5ISoKhNoT9qZftpdWSP71VrpGR9pmoD - name: ownCloud Android app - application_type: native - redirect_uris: - - oc://android.owncloud.com - - - id: mxd5OQDk6es5LzOzRvidJNfXLUZS2oN3oUFeXPP8LpPrhx3UroJFduGEYIBOxkY1 - secret: KFeFWWEZO9TkisIQzR3fo7hfiMXlOpaqP8CFuTbSHzV1TUuGECglPxpiVKJfOXIx - name: ownCloud iOS app - application_type: native - redirect_uris: - - oc://ios.owncloud.com - - oc.ios://ios.owncloud.com - - -# - id: playground-trusted.js -# name: Trusted OIDC Playground -# trusted: yes -# application_type: web -# redirect_uris: -# - https://my-host:8509/ -# origins: -# - https://my-host:8509 - -# - id: playground-trusted.js -# name: Trusted Insecure OIDC Playground -# trusted: yes -# application_type: web -# insecure: yes - -# - id: client-with-keys -# secret: super -# application_type: native -# redirect_uris: -# - http://localhost -# trusted_scopes: -# - konnect/guestok -# - kopano/kwm -# jwks: -# keys: -# - kty: EC -# use: sig -# kid: client-with-keys-key-1 -# crv: P-256 -# x: RTZpWoRbjwX1YavmSHVBj6Cy3Yzdkkp6QLvTGB22D0c -# y: jeavjwcX0xlDSchFcBMzXSU7wGs2VPpNxWCwmxFvmF0 -# request_object_signing_alg: ES256 - -# - id: first -# secret: lala -# application_type: native -# redirect_uris: -# - my://app - -# - id: second -# secret: lulu -# application_type: native -# redirect_uris: -# - http://localhost - -# External authority registry. -authorities: -# - id: my-univention -# name: Univention -# client_id: kopano-konnect -# authority_type: oidc -# jwks: -# keys: -# - kty: EC -# use: sig -# kid: example-key-1 -# crv: P-256 -# x: RTZpWoRbjwX1YavmSHVBj6Cy3Yzdkkp6QLvTGB22D0c -# y: jeavjwcX0xlDSchFcBMzXSU7wGs2VPpNxWCwmxFvmF0 -# default: yes -# authorization_endpoint: https://my-univention/signin/v1/identifier/_/authorize -# response_type: id_token -# scopes: -# - openid -# - profile -# identity_claim_name: preferred_username -# identity_aliases: -# external-user-a: local-user-a -# external-user-b: local-user-b -# identity_alias_required: true diff --git a/konnectd/docker/manifest.tmpl b/konnectd/docker/manifest.tmpl deleted file mode 100644 index 1dfcd995ca..0000000000 --- a/konnectd/docker/manifest.tmpl +++ /dev/null @@ -1,22 +0,0 @@ -image: owncloud/ocis-konnectd:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}} -{{#if build.tags}} -tags: -{{#each build.tags}} - - {{this}} -{{/each}} -{{/if}} -manifests: - - image: owncloud/ocis-konnectd:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64 - platform: - architecture: amd64 - os: linux - - image: owncloud/ocis-konnectd:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64 - platform: - architecture: arm64 - variant: v8 - os: linux - - image: owncloud/ocis-konnectd:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm - platform: - architecture: arm - variant: v6 - os: linux diff --git a/konnectd/reflex.conf b/konnectd/reflex.conf deleted file mode 100644 index 70558c36a6..0000000000 --- a/konnectd/reflex.conf +++ /dev/null @@ -1,2 +0,0 @@ -# backend --r '^(cmd|pkg)/.*\.go$' -R '^node_modules/' -s -- sh -c 'make bin/ocis-konnectd-debug && bin/ocis-konnectd-debug --log-level debug server --debug-pprof --debug-zpages' diff --git a/ocis-pkg/go.sum b/ocis-pkg/go.sum index 48c1ff5d55..24b8dc8bcf 100644 --- a/ocis-pkg/go.sum +++ b/ocis-pkg/go.sum @@ -217,6 +217,8 @@ github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e h1:khITGSnfDXtByQsLe github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 h1:HNpnnhoHv/7fUSEuW37clWyPz2x9VqJHuhvWBAHjkEU= github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/ocis/docker-compose.yml b/ocis/docker-compose.yml index 337b2d45b8..c498752ed4 100644 --- a/ocis/docker-compose.yml +++ b/ocis/docker-compose.yml @@ -23,7 +23,7 @@ services: - .:/ocis - ../accounts:/accounts - ../glauth:/glauth - - ../konnectd:/konnectd + - ../idp:/idp - ../web:/web - ../ocis-pkg:/ocis-pkg - ../ocs:/ocs diff --git a/ocis/go.mod b/ocis/go.mod index 036c6840a2..22197add2c 100644 --- a/ocis/go.mod +++ b/ocis/go.mod @@ -20,7 +20,7 @@ require ( github.com/owncloud/ocis-hello v0.1.0-alpha1.0.20200828085053-37fcf3c8f853 github.com/owncloud/ocis/accounts v0.5.3-0.20201103104733-ff2c41028d9b github.com/owncloud/ocis/glauth v0.0.0-00010101000000-000000000000 - github.com/owncloud/ocis/konnectd v0.0.0-00010101000000-000000000000 + github.com/owncloud/ocis/idp v0.0.0-00010101000000-000000000000 github.com/owncloud/ocis/ocis-pkg v0.1.0 github.com/owncloud/ocis/ocs v0.0.0-00010101000000-000000000000 github.com/owncloud/ocis/onlyoffice v0.0.0-00010101000000-000000000000 @@ -44,7 +44,7 @@ replace ( github.com/gomodule/redigo => github.com/gomodule/redigo v1.8.2 github.com/owncloud/ocis/accounts => ../accounts github.com/owncloud/ocis/glauth => ../glauth - github.com/owncloud/ocis/konnectd => ../konnectd + github.com/owncloud/ocis/idp => ../idp github.com/owncloud/ocis/ocis-pkg => ../ocis-pkg github.com/owncloud/ocis/ocs => ../ocs github.com/owncloud/ocis/onlyoffice => ../onlyoffice diff --git a/ocis/go.sum b/ocis/go.sum index 7186bb8c8b..ba68cd407d 100644 --- a/ocis/go.sum +++ b/ocis/go.sum @@ -729,6 +729,7 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= +github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5 h1:FdBGmSkD2QpQzRWup//SGObvWf2nq89zj9+ta9OvI3A= github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5/go.mod h1:0YZ2wQSuwviXXXGUiK6zXzskyBLAbLXhamxzcFHSLoM= github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= diff --git a/ocis/pkg/command/idp.go b/ocis/pkg/command/idp.go new file mode 100644 index 0000000000..ef740ca9e3 --- /dev/null +++ b/ocis/pkg/command/idp.go @@ -0,0 +1,54 @@ +package command + +import ( + "github.com/micro/cli/v2" + "github.com/owncloud/ocis/idp/pkg/command" + svcconfig "github.com/owncloud/ocis/idp/pkg/config" + "github.com/owncloud/ocis/idp/pkg/flagset" + "github.com/owncloud/ocis/ocis/pkg/config" + "github.com/owncloud/ocis/ocis/pkg/register" + "github.com/owncloud/ocis/ocis/pkg/version" +) + +// IDPCommand is the entrypoint for the idp command. +func IDPCommand(cfg *config.Config) *cli.Command { + return &cli.Command{ + Name: "idp", + Usage: "Start idp server", + Category: "Extensions", + Flags: flagset.ServerWithConfig(cfg.IDP), + Subcommands: []*cli.Command{ + command.PrintVersion(cfg.IDP), + }, + Action: func(c *cli.Context) error { + idpCommand := command.Server(configureIDP(cfg)) + + if err := idpCommand.Before(c); err != nil { + return err + } + + return cli.HandleAction(idpCommand.Action, c) + }, + } +} + +func configureIDP(cfg *config.Config) *svcconfig.Config { + cfg.IDP.Log.Level = cfg.Log.Level + cfg.IDP.Log.Pretty = cfg.Log.Pretty + cfg.IDP.Log.Color = cfg.Log.Color + cfg.IDP.HTTP.TLS = false + cfg.IDP.Service.Version = version.String + + if cfg.Tracing.Enabled { + cfg.IDP.Tracing.Enabled = cfg.Tracing.Enabled + cfg.IDP.Tracing.Type = cfg.Tracing.Type + cfg.IDP.Tracing.Endpoint = cfg.Tracing.Endpoint + cfg.IDP.Tracing.Collector = cfg.Tracing.Collector + } + + return cfg.IDP +} + +func init() { + register.AddCommand(IDPCommand) +} diff --git a/ocis/pkg/command/konnectd.go b/ocis/pkg/command/konnectd.go deleted file mode 100644 index 0cec0a7dd7..0000000000 --- a/ocis/pkg/command/konnectd.go +++ /dev/null @@ -1,54 +0,0 @@ -package command - -import ( - "github.com/micro/cli/v2" - "github.com/owncloud/ocis/konnectd/pkg/command" - svcconfig "github.com/owncloud/ocis/konnectd/pkg/config" - "github.com/owncloud/ocis/konnectd/pkg/flagset" - "github.com/owncloud/ocis/ocis/pkg/config" - "github.com/owncloud/ocis/ocis/pkg/register" - "github.com/owncloud/ocis/ocis/pkg/version" -) - -// KonnectdCommand is the entrypoint for the konnectd command. -func KonnectdCommand(cfg *config.Config) *cli.Command { - return &cli.Command{ - Name: "konnectd", - Usage: "Start konnectd server", - Category: "Extensions", - Flags: flagset.ServerWithConfig(cfg.Konnectd), - Subcommands: []*cli.Command{ - command.PrintVersion(cfg.Konnectd), - }, - Action: func(c *cli.Context) error { - konnectdCommand := command.Server(configureKonnectd(cfg)) - - if err := konnectdCommand.Before(c); err != nil { - return err - } - - return cli.HandleAction(konnectdCommand.Action, c) - }, - } -} - -func configureKonnectd(cfg *config.Config) *svcconfig.Config { - cfg.Konnectd.Log.Level = cfg.Log.Level - cfg.Konnectd.Log.Pretty = cfg.Log.Pretty - cfg.Konnectd.Log.Color = cfg.Log.Color - cfg.Konnectd.HTTP.TLS = false - cfg.Konnectd.Service.Version = version.String - - if cfg.Tracing.Enabled { - cfg.Konnectd.Tracing.Enabled = cfg.Tracing.Enabled - cfg.Konnectd.Tracing.Type = cfg.Tracing.Type - cfg.Konnectd.Tracing.Endpoint = cfg.Tracing.Endpoint - cfg.Konnectd.Tracing.Collector = cfg.Tracing.Collector - } - - return cfg.Konnectd -} - -func init() { - register.AddCommand(KonnectdCommand) -} diff --git a/ocis/pkg/config/config.go b/ocis/pkg/config/config.go index 7130fec294..4c9bce3751 100644 --- a/ocis/pkg/config/config.go +++ b/ocis/pkg/config/config.go @@ -6,8 +6,7 @@ import ( hello "github.com/owncloud/ocis-hello/pkg/config" accounts "github.com/owncloud/ocis/accounts/pkg/config" glauth "github.com/owncloud/ocis/glauth/pkg/config" - konnectd "github.com/owncloud/ocis/konnectd/pkg/config" - pman "github.com/owncloud/ocis/ocis/pkg/runtime/config" + idp "github.com/owncloud/ocis/idp/pkg/config" ocs "github.com/owncloud/ocis/ocs/pkg/config" onlyoffice "github.com/owncloud/ocis/onlyoffice/pkg/config" proxy "github.com/owncloud/ocis/proxy/pkg/config" @@ -17,6 +16,7 @@ import ( thumbnails "github.com/owncloud/ocis/thumbnails/pkg/config" web "github.com/owncloud/ocis/web/pkg/config" webdav "github.com/owncloud/ocis/webdav/pkg/config" + pman "github.com/refs/pman/pkg/config" ) // Log defines the available logging configuration. @@ -75,7 +75,7 @@ type Config struct { Graph *graph.Config GraphExplorer *graphExplorer.Config Hello *hello.Config - Konnectd *konnectd.Config + IDP *idp.Config OCS *ocs.Config Onlyoffice *onlyoffice.Config Web *web.Config @@ -96,7 +96,7 @@ func New() *Config { Graph: graph.New(), GraphExplorer: graphExplorer.New(), Hello: hello.New(), - Konnectd: konnectd.New(), + IDP: idp.New(), OCS: ocs.New(), Onlyoffice: onlyoffice.New(), Web: web.New(), diff --git a/ocis/pkg/runtime/runtime.go b/ocis/pkg/runtime/runtime.go index 8485ceef5a..29d176e584 100644 --- a/ocis/pkg/runtime/runtime.go +++ b/ocis/pkg/runtime/runtime.go @@ -33,7 +33,7 @@ var ( // Extensions are oCIS extension services Extensions = []string{ "glauth", - "konnectd", + "idp", "ocs", "onlyoffice", "proxy", diff --git a/ocs/go.sum b/ocs/go.sum index eb768bc7b8..fd90302f8e 100644 --- a/ocs/go.sum +++ b/ocs/go.sum @@ -416,6 +416,7 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= +github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5 h1:FdBGmSkD2QpQzRWup//SGObvWf2nq89zj9+ta9OvI3A= github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5/go.mod h1:0YZ2wQSuwviXXXGUiK6zXzskyBLAbLXhamxzcFHSLoM= github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= diff --git a/ocs/pkg/server/http/svc_test.go b/ocs/pkg/server/http/svc_test.go index 1e68adaf2e..4eceaca08c 100644 --- a/ocs/pkg/server/http/svc_test.go +++ b/ocs/pkg/server/http/svc_test.go @@ -51,7 +51,7 @@ const ( userEinstein string = "einstein" userMarie string = "marie" userRichard string = "richard" - userKonnectd string = "konnectd" + userIDP string = "idp" userReva string = "reva" userMoss string = "moss" userAdmin string = "admin" @@ -75,7 +75,7 @@ var defaultMemberOf = map[string][]string{ groupViolinHaters, groupPhysicsLovers, }, - userKonnectd: { + userIDP: { groupSysUsers, }, userRichard: { @@ -103,7 +103,7 @@ var defaultMemberOf = map[string][]string{ var defaultMembers = map[string][]string{ groupSysUsers: { - userKonnectd, + userIDP, userReva, }, groupUsers: { @@ -138,7 +138,7 @@ const ( userIDEinstein string = "4c510ada-c86b-4815-8820-42cdf82c3d51" userIDMarie string = "f7fbf8c8-139b-4376-b307-cf0a8c2d0d9c" userIDFeynman string = "932b4540-8d16-481e-8ef4-588e4b6b151c" - userIDKonnectd string = "820ba2a1-3f54-4538-80a4-2d73007e30bf" + userIDIDP string = "820ba2a1-3f54-4538-80a4-2d73007e30bf" userIDReva string = "bc596f3c-c955-4328-80a0-60d018b4ad57" userIDMoss string = "058bff95-6708-4fe5-91e4-9ea3d377588b" userIDAdmin string = "ddc2004c-0977-11eb-9d3f-a793888cd0f8" @@ -172,7 +172,7 @@ var dataPath = createTmpDir() var defaultUsers = []string{ userEinstein, - userKonnectd, + userIDP, userRichard, userReva, userMarie, @@ -181,7 +181,7 @@ var defaultUsers = []string{ } var defaultUserIDs = []string{ userIDEinstein, - userIDKonnectd, + userIDIDP, userIDFeynman, userIDReva, userIDMarie, diff --git a/onlyoffice/go.sum b/onlyoffice/go.sum index 00911b243d..ac8bfa6cc3 100644 --- a/onlyoffice/go.sum +++ b/onlyoffice/go.sum @@ -200,6 +200,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= @@ -592,6 +594,7 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= +github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5 h1:FdBGmSkD2QpQzRWup//SGObvWf2nq89zj9+ta9OvI3A= github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5/go.mod h1:0YZ2wQSuwviXXXGUiK6zXzskyBLAbLXhamxzcFHSLoM= github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= diff --git a/settings/go.sum b/settings/go.sum index f2cb536c6d..db0ef650d5 100644 --- a/settings/go.sum +++ b/settings/go.sum @@ -199,6 +199,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/sonar-project.properties b/sonar-project.properties index d277968bd5..7866b049e4 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -32,5 +32,5 @@ sonar.pullrequest.key=${env.SONAR_PULL_REQUEST_KEY} sonar.go.coverage.reportPaths=coverage/*_coverage.out # Exclude files -sonar.exclusions=**/third_party,docs/**,changelog/**,*/pkg/assets/embed.go,konnectd/assets/identifier/**,**/package.json,**/rollup.config.js,CHANGELOG.md,**/pkg/proto/**/*.pb.*,deployments/**,tests/**,vendor-bin/**,README.md +sonar.exclusions=**/third_party,docs/**,changelog/**,*/pkg/assets/embed.go,idp/assets/identifier/**,**/package.json,**/rollup.config.js,CHANGELOG.md,**/pkg/proto/**/*.pb.*,deployments/**,tests/**,vendor-bin/**,README.md sonar.coverage.exclusions=**/*_test.go diff --git a/storage/go.sum b/storage/go.sum index 97a18057df..16b2430da4 100644 --- a/storage/go.sum +++ b/storage/go.sum @@ -583,6 +583,7 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= +github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5 h1:FdBGmSkD2QpQzRWup//SGObvWf2nq89zj9+ta9OvI3A= github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5/go.mod h1:0YZ2wQSuwviXXXGUiK6zXzskyBLAbLXhamxzcFHSLoM= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/huandu/xstrings v1.2.0/go.mod h1:DvyZB1rfVYsBIigL8HwpZgxHwXozlTgGqn63UyNX5k4= diff --git a/store/go.sum b/store/go.sum index 9f64f73265..7d60896a36 100644 --- a/store/go.sum +++ b/store/go.sum @@ -230,6 +230,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d h1:SwD98825d6bdB+pEuTxWOXiSjBrHdOl/UVp75eI7JT8= github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 h1:iwZdTE0PVqJCos1vaoKsclOGD3ADKpshg3SRtYBbwso= diff --git a/tests/acceptance/docker/src/ocis-base.yml b/tests/acceptance/docker/src/ocis-base.yml index 6e67c210ed..9d57e7208e 100644 --- a/tests/acceptance/docker/src/ocis-base.yml +++ b/tests/acceptance/docker/src/ocis-base.yml @@ -18,9 +18,9 @@ services: STORAGE_SHARING_USER_JSON_FILE: /srv/app/tmp/ocis/shares.json PROXY_ENABLE_BASIC_AUTH: "true" PHOENIX_WEB_CONFIG: /drone/src/ocis/tests/config/drone/ocis-config.json - KONNECTD_IDENTIFIER_REGISTRATION_CONF: /drone/src/ocis/tests/config/drone/identifier-registration.yml - KONNECTD_ISS: https://ocis-server:9200 - KONNECTD_TLS: "true" + IDP_IDENTIFIER_REGISTRATION_CONF: /drone/src/ocis/tests/config/drone/identifier-registration.yml + IDP_ISS: https://ocis-server:9200 + IDP_TLS: "true" ACCOUNTS_HASH_DIFFICULTY: 4 volumes: - ../../../config:/drone/src/ocis/tests/config diff --git a/thumbnails/go.sum b/thumbnails/go.sum index 9a131540a6..64b3f130dc 100644 --- a/thumbnails/go.sum +++ b/thumbnails/go.sum @@ -207,6 +207,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/web/go.sum b/web/go.sum index 84b39f24ad..f0d9ef4c4c 100644 --- a/web/go.sum +++ b/web/go.sum @@ -202,6 +202,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/webdav/go.sum b/webdav/go.sum index 1c9d59046c..dea3e49109 100644 --- a/webdav/go.sum +++ b/webdav/go.sum @@ -207,6 +207,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= From 9751387b1bdbbd8e03e879cfdb75fcaf6facc631 Mon Sep 17 00:00:00 2001 From: Ilja Neumann Date: Fri, 29 Jan 2021 11:14:32 +0100 Subject: [PATCH 59/88] Fix IDP title --- docs/extensions/idp/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extensions/idp/_index.md b/docs/extensions/idp/_index.md index ef111ef4cc..e4ab82677c 100644 --- a/docs/extensions/idp/_index.md +++ b/docs/extensions/idp/_index.md @@ -1,5 +1,5 @@ --- -title: Konnectd +title: IDP weight: 20 geekdocRepo: https://github.com/owncloud/ocis geekdocEditPath: edit/master/docs/extensions/idp From 4aea7a997df5b3270d7a20b9034dd079edb531a2 Mon Sep 17 00:00:00 2001 From: Ilja Neumann Date: Fri, 29 Jan 2021 11:40:12 +0100 Subject: [PATCH 60/88] Rename konnectd to idp --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0152c90985..d97f1c95ff 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -25,7 +25,7 @@ updates: open-pull-requests-limit: 10 - package-ecosystem: "npm" - directory: "/konnectd" + directory: "/idp" schedule: interval: "weekly" open-pull-requests-limit: 10 From 9ae6704d607014d631281e5b165dd6c5921ce44d Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Fri, 29 Jan 2021 11:35:17 +0545 Subject: [PATCH 61/88] Copy categorized expected-failures files from cs3org/reva --- .../expected-failures-API-on-OCIS-storage.md | 3417 +++++++-------- ...pected-failures-API-on-OWNCLOUD-storage.md | 3896 ++++++++--------- 2 files changed, 3605 insertions(+), 3708 deletions(-) diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index 5d69baff16..51afb964e7 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -1,846 +1,42 @@ -## Scenarios from ownCloud10 core API tests that are expected to fail with oCIS storage +## Scenarios from ownCloud10 core API tests that are expected to fail with OCIS storage -### Test scenarios that specifically fail with oCIS storage +### File +Basic file management like up and download, move, copy, properties, trash, versions and chunking. -- [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) -- [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) +#### [Implement Trashbin Feature for ocis storage](https://github.com/owncloud/product/issues/209) -### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) -- [apiMain/checksums.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L58) -- [apiMain/checksums.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L67) -- [apiMain/checksums.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L119) -- [apiMain/checksums.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L129) -- [apiMain/checksums.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L138) -- [apiMain/checksums.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L147) -- [apiMain/checksums.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L158) -- [apiMain/checksums.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L174) -- [apiMain/checksums.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L192) -- [apiMain/checksums.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L258) -- [apiMain/checksums.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L312) -- [apiMain/checksums.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L324) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L26) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L27) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L48) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L49) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L68) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L69) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L90) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L91) -### [no robots.txt available](https://github.com/owncloud/ocis/issues/1314) - -- [apiMain/main.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/main.feature#L5) - -### [quota query](https://github.com/owncloud/ocis/issues/1313) - -- [apiMain/quota.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L9) -- [apiMain/quota.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L16) -- [apiMain/quota.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L23) -- [apiMain/quota.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L30) -- [apiMain/quota.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L41) -- [apiMain/quota.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L54) -- [apiMain/quota.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L68) -- [apiMain/quota.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L82) -- [apiMain/quota.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L99) -- [apiMain/quota.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L112) - -### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis/issues/1319) -### [no command equivalent to occ](https://github.com/owncloud/ocis/issues/1317) - -- [apiMain/status.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/status.feature#L5) - -### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis/issues/1338) -### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) -- [apiAuthOcs/ocsDELETEAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsDELETEAuth.feature#L10) -- [apiAuthOcs/ocsGETAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L10) -- [apiAuthOcs/ocsGETAuth.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L33) -- [apiAuthOcs/ocsGETAuth.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L53) -- [apiAuthOcs/ocsGETAuth.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L88) -- [apiAuthOcs/ocsGETAuth.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L121) -- [apiAuthOcs/ocsGETAuth.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L139) -- [apiAuthOcs/ocsPOSTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPOSTAuth.feature#L10) -- [apiAuthOcs/ocsPUTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPUTAuth.feature#L10) - -### [server returns 500 when trying to access a not existing file](https://github.com/owncloud/ocis-reva/issues/13) -- [apiAuthWebDav/webDavDELETEAuth.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L36) - -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) -- [apiAuthWebDav/webDavLOCKAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavLOCKAuth.feature#L38) -- [apiAuthWebDav/webDavMKCOLAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMKCOLAuth.feature#L37) -- [apiAuthWebDav/webDavPROPFINDAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPFINDAuth.feature#L37) -- [apiAuthWebDav/webDavPROPPATCHAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPPATCHAuth.feature#L38) - -### [renaming a resource does not work](https://github.com/owncloud/ocis-reva/issues/14) -- [apiAuthWebDav/webDavMOVEAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMOVEAuth.feature#L37) - -### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis/issues/1287) -- [apiAuthWebDav/webDavPOSTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPOSTAuth.feature#L38) - -### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) -- [apiAuthWebDav/webDavPUTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPUTAuth.feature#L38) - -### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis/issues/1285) -### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis/issues/1286) -- [apiCapabilities/capabilitiesWithNormalUser.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilitiesWithNormalUser.feature#L11) - -### [REPORT request not implemented](https://github.com/owncloud/ocis/issues/1330) -- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) -- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) -- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) -- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) -- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) -- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) -- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) -- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) -- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) -- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) -- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) -- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) -- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) -- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) -- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) -- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) -- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) -- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) -- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) -- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) -- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) -- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) -- [apiWebdavOperations/search.feature:254](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L254) - - And other missing implementation of favorites -- [apiFavorites/favorites.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L91) -- [apiFavorites/favorites.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L92) -- [apiFavorites/favorites.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L112) -- [apiFavorites/favorites.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L113) -- [apiFavorites/favorites.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L128) -- [apiFavorites/favorites.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L129) -- [apiFavorites/favorites.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L148) -- [apiFavorites/favorites.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L149) -- [apiFavorites/favorites.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L176) -- [apiFavorites/favorites.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L177) -- [apiFavorites/favorites.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L217) -- [apiFavorites/favorites.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L218) -- [apiFavorites/favoritesSharingToShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L22) -- [apiFavorites/favoritesSharingToShares.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L23) -- [apiFavorites/favoritesSharingToShares.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L36) -- [apiFavorites/favoritesSharingToShares.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L37) -- [apiFavorites/favoritesSharingToShares.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L49) -- [apiFavorites/favoritesSharingToShares.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L50) -- [apiFavorites/favoritesSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L63) -- [apiFavorites/favoritesSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L64) - -### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) - special character username not valid - -- [apiProvisioning-v1/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L29) -- [apiProvisioning-v1/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L30) -- [apiProvisioning-v1/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L121) -- [apiProvisioning-v1/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L122) -- [apiProvisioning-v1/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L123) -- [apiProvisioning-v1/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L29) -- [apiProvisioning-v1/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L30) -- [apiProvisioning-v1/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L29) -- [apiProvisioning-v1/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L30) -- [apiProvisioning-v1/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L29) -- [apiProvisioning-v1/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L30) -- [apiProvisioning-v1/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L31) -- [apiProvisioning-v1/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L32) -- [apiProvisioning-v1/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L34) -- [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) - -- [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) -- [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) -- [apiProvisioning-v2/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L121) -- [apiProvisioning-v2/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L122) -- [apiProvisioning-v2/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L123) -- [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) -- [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) -- [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) -- [apiProvisioning-v2/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L30) -- [apiProvisioning-v2/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L29) -- [apiProvisioning-v2/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L30) -- [apiProvisioning-v2/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L31) -- [apiProvisioning-v2/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L32) -- [apiProvisioning-v2/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L34) -- [apiProvisioning-v2/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L35) - -### [Creating an already existing user works](https://github.com/owncloud/ocis-accounts/issues/80) -- [apiProvisioning-v1/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L32) -- [apiProvisioning-v2/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L32) -- [apiProvisioning-v1/addUser.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L39) -- [apiProvisioning-v2/addUser.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L39) - -### [Password can be set to empty](https://github.com/owncloud/product/issues/197) - -- [apiProvisioning-v1/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L69) -- [apiProvisioning-v2/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L69) - -### [etags are not quoted in PROPFIND](https://github.com/owncloud/product/issues/237) -- [apiSharePublicLink1/createPublicLinkShare.feature:793](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L793) -- [apiSharePublicLink1/createPublicLinkShare.feature:804](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L804) - -### [Username is case sensitive](https://github.com/owncloud/ocis-accounts/issues/128) -- [apiProvisioning-v1/addUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L102) -- [apiProvisioning-v2/addUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L102) - -### [Client token generation not implemented](https://github.com/owncloud/ocis/issues/197) -- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L39) -- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L67) -- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L39) -- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L67) - -### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis/issues/1420) - -- [apiProvisioning-v1/enableUser.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L92) -- [apiProvisioning-v1/enableUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L102) -- [apiProvisioning-v1/enableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L129) -- [apiProvisioning-v1/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L99) -- [apiProvisioning-v1/disableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L129) -- [apiProvisioning-v1/disableUser.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L165) -- [apiProvisioning-v1/disableUser.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L172) -- [apiProvisioning-v1/disableUser.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L190) -- [apiProvisioning-v1/disableUser.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L203) -- [apiProvisioning-v1/disableUser.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L219) -- [apiProvisioning-v2/disableUser.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L79) -- [apiProvisioning-v2/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L99) -- [apiProvisioning-v2/disableUser.feature:108](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L108) -- [apiProvisioning-v2/disableUser.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L130) -- [apiProvisioning-v2/disableUser.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L166) -- [apiProvisioning-v2/disableUser.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L173) -- [apiProvisioning-v2/disableUser.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L191) -- [apiProvisioning-v2/disableUser.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L204) -- [apiProvisioning-v2/disableUser.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L220) - -### [displayname of user can be changed to empty](https://github.com/owncloud/ocis-ocs/issues/51) -- [apiProvisioning-v1/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L47) -- [apiProvisioning-v2/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L47) - -### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) -- [apiProvisioning-v1/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L56) -- [apiProvisioning-v1/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L122) -- [apiProvisioning-v2/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L56) -- [apiProvisioning-v2/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L122) -- [apiProvisioning-v2/enableUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L34) -- [apiProvisioning-v2/enableUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L56) -- [apiProvisioning-v2/enableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L64) - -### [user can get info of other users/ cloud/users endpoints not authenticated](https://github.com/owncloud/product/issues/248) -- [apiProvisioning-v2/deleteUser.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L54) -- [apiProvisioning-v1/getUser.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L81) -- [apiProvisioning-v2/getUser.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L82) -- [apiProvisioning-v2/getUsers.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUsers.feature#L44) - -### [incorrect ocs(v2) status value when getting info of user that does not exist should be 404, gives 998](https://github.com/owncloud/product/issues/250) -- [apiProvisioning-v2/getUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L47) - -### [subadmin endpoints not implemented](https://github.com/owncloud/product/issues/289) -- [apiProvisioning-v1/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L125) -- [apiProvisioning-v1/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L48) -- [apiProvisioning-v1/deleteUser.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L73) -- [apiProvisioning-v1/disableUser.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L222) -- [apiProvisioning-v1/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L131) -- [apiProvisioning-v1/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L143) -- [apiProvisioning-v1/getUser.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L170) -- [apiProvisioning-v1/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L113) - -- [apiProvisioning-v2/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L125) -- [apiProvisioning-v2/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L48) -- [apiProvisioning-v2/deleteUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L64) -- [apiProvisioning-v2/deleteUser.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L74) -- [apiProvisioning-v2/deleteUser.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L88) -- [apiProvisioning-v2/deleteUser.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L101) -- [apiProvisioning-v2/deleteUser.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L115) -- [apiProvisioning-v2/disableUser.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L48) -- [apiProvisioning-v2/disableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L64) -- [apiProvisioning-v2/disableUser.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L223) -- [apiProvisioning-v2/disableUser.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L237) -- [apiProvisioning-v2/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L131) -- [apiProvisioning-v2/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L143) -- [apiProvisioning-v2/editUser.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L159) -- [apiProvisioning-v2/enableUser.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L104) -- [apiProvisioning-v2/enableUser.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L118) -- [apiProvisioning-v2/enableUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L131) -- [apiProvisioning-v2/enableUser.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L146) -- [apiProvisioning-v2/getUser.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L145) -- [apiProvisioning-v2/getUser.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L156) -- [apiProvisioning-v2/getUser.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L171) -- [apiProvisioning-v2/resetUserPassword.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L101) -- [apiProvisioning-v2/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L113) -- [apiProvisioning-v2/resetUserPassword.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L129) - -### [invalid format of sharees response](https://github.com/owncloud/product/issues/292) -### [Searching sharee with displayname](https://github.com/owncloud/ocis/issues/547) -- [apiSharees/sharees.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L32) -- [apiSharees/sharees.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L33) -- [apiSharees/sharees.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L53) -- [apiSharees/sharees.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L54) -- [apiSharees/sharees.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L74) -- [apiSharees/sharees.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L75) -- [apiSharees/sharees.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L98) -- [apiSharees/sharees.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L99) -- [apiSharees/sharees.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L118) -- [apiSharees/sharees.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L119) -- [apiSharees/sharees.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L137) -- [apiSharees/sharees.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L138) -- [apiSharees/sharees.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L157) -- [apiSharees/sharees.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L158) -- [apiSharees/sharees.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L177) -- [apiSharees/sharees.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L178) -- [apiSharees/sharees.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L198) -- [apiSharees/sharees.feature:199](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L199) -- [apiSharees/sharees.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L217) -- [apiSharees/sharees.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L218) -- [apiSharees/sharees.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L237) -- [apiSharees/sharees.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L238) -- [apiSharees/sharees.feature:257](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L257) -- [apiSharees/sharees.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L258) -- [apiSharees/sharees.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L277) -- [apiSharees/sharees.feature:278](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L278) -- [apiSharees/sharees.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L297) -- [apiSharees/sharees.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L298) -- [apiSharees/sharees.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L317) -- [apiSharees/sharees.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L318) -- [apiSharees/sharees.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L336) -- [apiSharees/sharees.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L337) -- [apiSharees/sharees.feature:355](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L355) -- [apiSharees/sharees.feature:356](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L356) -- [apiSharees/sharees.feature:374](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L374) -- [apiSharees/sharees.feature:375](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L375) -- [apiSharees/sharees.feature:393](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L393) -- [apiSharees/sharees.feature:394](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L394) -- [apiSharees/sharees.feature:412](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L412) -- [apiSharees/sharees.feature:413](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L413) -- [apiSharees/sharees.feature:430](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L430) -- [apiSharees/sharees.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L431) -- [apiSharees/sharees.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L450) -- [apiSharees/sharees.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L451) -- [apiSharees/sharees.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L475) -- [apiSharees/sharees.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L476) -- [apiSharees/sharees.feature:495](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L495) -- [apiSharees/sharees.feature:496](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L496) -- [apiSharees/sharees.feature:515](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L515) -- [apiSharees/sharees.feature:516](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L516) -- [apiSharees/sharees.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L537) -- [apiSharees/sharees.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L538) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) -- [apiShareManagementToShares/acceptShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L22) -- [apiShareManagementToShares/acceptShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L223) -- [apiShareManagementToShares/acceptShares.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L270) -- [apiShareManagementToShares/acceptShares.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L342) -- [apiShareManagementToShares/acceptShares.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L378) -- [apiShareManagementToShares/acceptShares.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L417) - -### User cannot create a folder named Share -- [apiShareManagementToShares/acceptShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L279) -- [apiShareManagementToShares/acceptShares.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L298) - -### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) - -- [apiShareManagementToShares/acceptShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L71) -- [apiShareManagementToShares/acceptShares.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L162) -- [apiShareManagementToShares/acceptShares.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L175) -- [apiShareManagementToShares/acceptShares.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L196) -- [apiShareManagementToShares/acceptShares.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L249) -- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L28) -- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L48) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L140) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L141) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L176) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L177) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L36) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L37) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L66) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L67) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L91) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L92) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L94) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L95) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L97) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L98) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L155) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L156) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:288](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L288) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L289) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L305) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L306) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L46) -- [apiShareManagementToShares/mergeShare.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L32) -- [apiShareManagementToShares/mergeShare.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L42) -- [apiShareManagementToShares/mergeShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L89) - -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L100) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L101) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L179) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L180) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L204) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L205) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L236) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L237) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L258) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L259) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L324) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:325](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L325) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:362](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L362) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:363](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L363) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:392](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L392) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:461](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L461) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:462](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L462) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:497](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L497) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L498) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:501](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L501) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L28) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L29) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L89) - -### [shares are mounted into /Shares folder even after the sharer deletes the collaborator](https://github.com/owncloud/ocis/issues/720) -### [deleting share response does not contain `data` field](https://github.com/owncloud/ocis/issues/721) - -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L43) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L44) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L367) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:529](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L529) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:547](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L547) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:565](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L565) - -### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L342) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:343](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L343) - -### [File deletion using dav gives unique string in filename in the trashbin](https://github.com/owncloud/product/issues/178) - -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L58) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L72) - - cannot share a folder with create permission -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L118) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L130) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L181) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L182) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L183) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L184) - -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) -- [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) -- [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) - -### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis/issues/1226) -### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis/issues/1270) -### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) - -- [apiShareOperationsToShares/gettingShares.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L135) -- [apiShareOperationsToShares/gettingShares.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L136) - -### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis/issues/1233) - -- [apiShareOperationsToShares/gettingShares.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L180) -- [apiShareOperationsToShares/gettingShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L181) - -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - -- [apiShareOperationsToShares/gettingShares.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L219) -- [apiShareOperationsToShares/gettingShares.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L220) - -### [Allow getting the share list filtered by share type via API](https://github.com/owncloud/ocis/issues/774) - -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L44) -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L45) -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L56) -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L57) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L47) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L48) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L60) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L61) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L41) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L42) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L62) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L63) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L90) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L91) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L48) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L49) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L62) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L63) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L76) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L77) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L92) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L93) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L39) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L40) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L60) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L61) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L79) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L80) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) - -- [apiShareOperationsToShares/gettingShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L167) -- [apiShareOperationsToShares/gettingShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L168) - -- [apiSharePublicLink1/createPublicLinkShare.feature:793](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L793) -- [apiSharePublicLink1/createPublicLinkShare.feature:804](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L804) - -### [Cannot set mtime on upload](https://github.com/owncloud/product/issues/271) - -- [apiSharePublicLink1/createPublicLinkShare.feature:775](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L775) -- [apiSharePublicLink1/createPublicLinkShare.feature:776](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L776) -- [apiSharePublicLink1/createPublicLinkShare.feature:789](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L789) -- [apiSharePublicLink1/createPublicLinkShare.feature:790](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L790) - -### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) -### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) -### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - -- [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) -- [apiSharePublicLink1/accessToPublicLinkShare.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L20) -- [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) -- [apiSharePublicLink1/accessToPublicLinkShare.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L43) - -### [creating public links with permissions fails](https://github.com/owncloud/product/issues/252) - -- [apiSharePublicLink1/changingPublicLinkShare.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L22) -- [apiSharePublicLink1/changingPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L23) -- [apiSharePublicLink1/changingPublicLinkShare.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L37) -- [apiSharePublicLink1/changingPublicLinkShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L41) -- [apiSharePublicLink1/changingPublicLinkShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L52) -- [apiSharePublicLink1/changingPublicLinkShare.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L85) -- [apiSharePublicLink1/changingPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L96) - -### [Old webdav api does not work with public link](https://github.com/owncloud/product/issues/272) - -- [apiSharePublicLink1/changingPublicLinkShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L63) -- [apiSharePublicLink1/changingPublicLinkShare.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L107) -- [apiSharePublicLink1/changingPublicLinkShare.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L151) -- [apiSharePublicLink1/changingPublicLinkShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L197) -- [apiSharePublicLink1/changingPublicLinkShare.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L244) - -### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) - -- [apiSharePublicLink1/changingPublicLinkShare.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L267) -- [apiSharePublicLink1/changingPublicLinkShare.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L289) -- [apiSharePublicLink1/createPublicLinkShare.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L34) -- [apiSharePublicLink1/createPublicLinkShare.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L35) -- [apiSharePublicLink1/createPublicLinkShare.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L183) -- [apiSharePublicLink1/createPublicLinkShare.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L184) -- [apiSharePublicLink1/createPublicLinkShare.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L214) -- [apiSharePublicLink1/createPublicLinkShare.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L215) -- [apiSharePublicLink1/createPublicLinkShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L307) -- [apiSharePublicLink1/createPublicLinkShare.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L308) -- [apiSharePublicLink1/createPublicLinkShare.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L370) -- [apiSharePublicLink1/createPublicLinkShare.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L371) - -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) - -- [apiSharePublicLink1/createPublicLinkShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L95) -- [apiSharePublicLink1/createPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L96) -- [apiSharePublicLink1/createPublicLinkShare.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L276) -- [apiSharePublicLink1/createPublicLinkShare.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L277) - -### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis/issues/1293) - -- [apiSharePublicLink1/createPublicLinkShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L127) -- [apiSharePublicLink1/createPublicLinkShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L128) -- [apiSharePublicLink1/createPublicLinkShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L155) -- [apiSharePublicLink1/createPublicLinkShare.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L156) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiSharePublicLink1/createPublicLinkShare.feature:410](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L410) -- [apiSharePublicLink1/createPublicLinkShare.feature:411](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L411) -- [apiSharePublicLink1/createPublicLinkShare.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L431) -- [apiSharePublicLink1/createPublicLinkShare.feature:432](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L432) -- [apiSharePublicLink1/createPublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L454) -- [apiSharePublicLink1/createPublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L455) -- [apiSharePublicLink1/createPublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L477) -- [apiSharePublicLink1/createPublicLinkShare.feature:478](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L478) -- [apiSharePublicLink1/createPublicLinkShare.feature:479](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L479) -- [apiSharePublicLink1/createPublicLinkShare.feature:480](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L480) -- [apiSharePublicLink1/createPublicLinkShare.feature:481](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L481) -- [apiSharePublicLink1/createPublicLinkShare.feature:482](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L482) -- [apiSharePublicLink1/createPublicLinkShare.feature:502](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L502) -- [apiSharePublicLink1/createPublicLinkShare.feature:503](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L503) -- [apiSharePublicLink1/createPublicLinkShare.feature:518](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L518) -- [apiSharePublicLink1/createPublicLinkShare.feature:519](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L519) -- [apiSharePublicLink1/createPublicLinkShare.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L537) -- [apiSharePublicLink1/createPublicLinkShare.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L538) -- [apiSharePublicLink1/createPublicLinkShare.feature:574](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L574) -- [apiSharePublicLink1/createPublicLinkShare.feature:575](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L575) -- [apiSharePublicLink1/createPublicLinkShare.feature:635](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L635) -- [apiSharePublicLink1/createPublicLinkShare.feature:636](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L636) -- [apiSharePublicLink1/createPublicLinkShare.feature:649](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L649) -- [apiSharePublicLink1/createPublicLinkShare.feature:650](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L650) -- [apiSharePublicLink1/createPublicLinkShare.feature:678](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L678) -- [apiSharePublicLink1/createPublicLinkShare.feature:679](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L679) -- [apiSharePublicLink1/createPublicLinkShare.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L729) -- [apiSharePublicLink1/createPublicLinkShare.feature:730](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L730) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L163) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L164) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L165) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L166) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L42) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L43) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L69) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L70) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L97) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L98) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L135) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L136) - -### [Public cannot upload file with mtime set on a public link share with new version of WebDAV API](https://github.com/owncloud/core/issues/37605) - -- [apiSharePublicLink1/createPublicLinkShare.feature:733](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L733) -- [apiSharePublicLink1/createPublicLinkShare.feature:742](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L742) - -### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis/issues/1232) - -- [apiSharePublicLink2/copyFromPublicLink.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L60) -- [apiSharePublicLink2/copyFromPublicLink.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L85) -- [apiSharePublicLink2/copyFromPublicLink.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L166) -- [apiSharePublicLink2/copyFromPublicLink.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L167) -- [apiSharePublicLink2/copyFromPublicLink.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L182) -- [apiSharePublicLink2/copyFromPublicLink.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L183) -- [apiSharePublicLink2/updatePublicLinkShare.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L44) -- [apiSharePublicLink2/updatePublicLinkShare.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L45) -- [apiSharePublicLink2/updatePublicLinkShare.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L114) -- [apiSharePublicLink2/updatePublicLinkShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L115) -- [apiSharePublicLink2/updatePublicLinkShare.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L130) -- [apiSharePublicLink2/updatePublicLinkShare.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L131) -- [apiSharePublicLink2/updatePublicLinkShare.feature:321](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L321) -- [apiSharePublicLink2/updatePublicLinkShare.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L322) - -### [oCIS share permissions not enforced](https://github.com/owncloud/product/issues/270) - -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L157) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L158) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L179) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L180) - -### [oCIS old public webdav api doesnt works](https://github.com/owncloud/product/issues/272) - -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L30) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L31) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L50) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L51) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L71) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L72) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L92) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L93) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L114) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L115) - -### [listing received shares does not work](https://github.com/owncloud/ocis-reva/issues/11) - -- [apiSharePublicLink2/updatePublicLinkShare.feature:340](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L340) -- [apiSharePublicLink2/updatePublicLinkShare.feature:341](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L341) -- [apiSharePublicLink2/updatePublicLinkShare.feature:359](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L359) -- [apiSharePublicLink2/updatePublicLinkShare.feature:360](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L360) -- [apiSharePublicLink2/updatePublicLinkShare.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L378) -- [apiSharePublicLink2/updatePublicLinkShare.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L379) -- [apiSharePublicLink2/updatePublicLinkShare.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L397) -- [apiSharePublicLink2/updatePublicLinkShare.feature:398](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L398) -- [apiSharePublicLink2/updatePublicLinkShare.feature:416](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L416) -- [apiSharePublicLink2/updatePublicLinkShare.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L417) -- [apiSharePublicLink2/updatePublicLinkShare.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L435) -- [apiSharePublicLink2/updatePublicLinkShare.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L436) -- [apiSharePublicLink2/updatePublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L454) -- [apiSharePublicLink2/updatePublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L455) -- [apiSharePublicLink2/updatePublicLinkShare.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L476) -- [apiSharePublicLink2/updatePublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L477) - -### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) - -- [apiSharePublicLink2/updatePublicLinkShare.feature:523](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L523) -- [apiSharePublicLink2/updatePublicLinkShare.feature:524](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L524) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L9) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L83) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L103) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) - -### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L273) - -### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis/issues/1268) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L66) - -### [Set quota over settings](https://github.com/owncloud/ocis/issues/1290) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L148) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L158) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L167) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L177) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:186](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L186) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L196) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L206) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L217) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L238) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L255) - -### [Resharing does not work with oCIS storage](https://github.com/owncloud/product/issues/265) - -- [apiShareReshareToShares1/reShare.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L56) -- [apiShareReshareToShares1/reShare.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L57) -- [apiShareReshareToShares1/reShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L72) -- [apiShareReshareToShares1/reShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L73) -- [apiShareReshareToShares1/reShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L88) -- [apiShareReshareToShares1/reShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L89) -- [apiShareReshareToShares1/reShare.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L104) -- [apiShareReshareToShares1/reShare.feature:105](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L105) -- [apiShareReshareToShares1/reShare.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L159) -- [apiShareReshareToShares1/reShare.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L160) -- [apiShareReshareToShares1/reShare.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L161) -- [apiShareReshareToShares1/reShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L162) -- [apiShareReshareToShares1/reShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L163) -- [apiShareReshareToShares1/reShare.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L164) -- [apiShareReshareToShares1/reShare.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L165) -- [apiShareReshareToShares1/reShare.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L166) -- [apiShareReshareToShares1/reShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L167) -- [apiShareReshareToShares1/reShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L168) -- [apiShareReshareToShares1/reShare.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L169) -- [apiShareReshareToShares1/reShare.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L170) -- [apiShareReshareToShares1/reShare.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L171) -- [apiShareReshareToShares1/reShare.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L172) -- [apiShareReshareToShares1/reShare.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L173) -- [apiShareReshareToShares1/reShare.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L174) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L365) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:366](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L366) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L367) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L368) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:400](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L400) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:401](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L401) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:402](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L402) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L403) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L404) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:405](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L405) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:434](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L434) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L435) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L436) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:437](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L437) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:465](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L465) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:466](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L466) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L245) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L246) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L247) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L248) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L150) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L151) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L152) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L153) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L89) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L90) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L91) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L92) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L33) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L34) - -### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) - -- [apiShareReshareToShares2/reShareChain.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareChain.feature#L10) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiShareReshareToShares2/reShareDisabled.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L24) -- [apiShareReshareToShares2/reShareDisabled.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L25) -- [apiShareReshareToShares2/reShareDisabled.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L39) -- [apiShareReshareToShares2/reShareDisabled.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L40) - -### [share permissions are not enforced](https://github.com/owncloud/product/issues/270) - -- [apiShareManagementToShares/mergeShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L24) -- [apiShareManagementToShares/mergeShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L52) -- [apiShareManagementToShares/mergeShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L79) -- [apiShareManagementToShares/mergeShare.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L99) -- [apiShareReshareToShares3/reShareUpdate.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L59) -- [apiShareReshareToShares3/reShareUpdate.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L60) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) - -- [apiShareReshareToShares2/reShareSubfolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L28) -- [apiShareReshareToShares2/reShareSubfolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L29) -- [apiShareReshareToShares2/reShareSubfolder.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L106) -- [apiShareReshareToShares2/reShareSubfolder.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L107) -- [apiShareReshareToShares2/reShareSubfolder.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L128) -- [apiShareReshareToShares2/reShareSubfolder.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L129) -- [apiShareReshareToShares2/reShareSubfolder.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L150) -- [apiShareReshareToShares2/reShareSubfolder.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L151) - - -### [Share receiver cannot get share by id](https://github.com/owncloud/product/issues/253) - -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L24) -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L25) -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L41) -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L42) -- [apiShareReshareToShares3/reShareUpdate.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L112) -- [apiShareReshareToShares3/reShareUpdate.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L113) -- [apiShareReshareToShares3/reShareUpdate.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L131) -- [apiShareReshareToShares3/reShareUpdate.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L132) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L61) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L62) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L121) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L122) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L123) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L124) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L181) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L182) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L183) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L184) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L212) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L213) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L214) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L215) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L302) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:303](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L303) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:304](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L304) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L305) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L335) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L336) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L337) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:338](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L338) - -### [empty trashbin does not work](https://github.com/owncloud/product/issues/254) +#### [Deletion time in trash bin shows a wrong date](https://github.com/owncloud/ocis/issues/541) +- [apiTrashbin/trashbinFilesFolders.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L284) +- [apiTrashbin/trashbinFilesFolders.feature:285](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L285) +#### [empty trashbin does not work](https://github.com/owncloud/product/issues/254) - [apiTrashbin/trashbinDelete.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L37) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - [apiTrashbin/trashbinDelete.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L50) - [apiTrashbin/trashbinDelete.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L67) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [QA trashcan cannot delete a deep tree](https://github.com/owncloud/ocis/issues/1077) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [QA trashcan cannot delete a deep tree](https://github.com/owncloud/ocis/issues/1077) - [apiTrashbin/trashbinDelete.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L107) - [apiTrashbin/trashbinDelete.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L123) -### [trashbin filename invalid for nested files/folders](https://github.com/owncloud/product/issues/255) - +#### [trashbin filename invalid for nested files/folders](https://github.com/owncloud/product/issues/255) - [apiTrashbin/trashbinFilesFolders.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L44) - [apiTrashbin/trashbinFilesFolders.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L45) - [apiTrashbin/trashbinFilesFolders.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L60) - [apiTrashbin/trashbinFilesFolders.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L61) -### [invalid webdav responses for unauthorized requests.](https://github.com/owncloud/product/issues/273) - +#### [invalid webdav responses for unauthorized requests.](https://github.com/owncloud/product/issues/273) - [apiTrashbin/trashbinFilesFolders.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L154) - [apiTrashbin/trashbinFilesFolders.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L155) - [apiTrashbin/trashbinFilesFolders.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L172) @@ -852,22 +48,11 @@ - [apiTrashbin/trashbinFilesFolders.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L224) - [apiTrashbin/trashbinFilesFolders.feature:225](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L225) -### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) - -- [apiTrashbin/trashbinFilesFolders.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L239) -- [apiTrashbin/trashbinFilesFolders.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L240) -- [apiTrashbin/trashbinFilesFolders.feature:241](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L241) -- [apiTrashbin/trashbinFilesFolders.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L245) -- [apiTrashbin/trashbinFilesFolders.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L246) -- [apiTrashbin/trashbinFilesFolders.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L247) - -### [PROPFIND on trashbin with Depth: infinity only shows the first level](https://github.com/owncloud/ocis/issues/1116) - +#### [PROPFIND on trashbin with Depth: infinity only shows the first level](https://github.com/owncloud/ocis/issues/1116) - [apiTrashbin/trashbinFilesFolders.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L272) - [apiTrashbin/trashbinFilesFolders.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L273) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - [apiTrashbin/trashbinRestore.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L54) - [apiTrashbin/trashbinRestore.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L55) - [apiTrashbin/trashbinRestore.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L70) @@ -889,18 +74,16 @@ - [apiTrashbin/trashbinRestore.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L292) - [apiTrashbin/trashbinRestore.feature:293](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L293) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - [apiTrashbin/trashbinRestore.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L40) - [apiTrashbin/trashbinRestore.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L41) - [apiTrashbin/trashbinRestore.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L138) - [apiTrashbin/trashbinRestore.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L139) -### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - +#### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - [apiTrashbin/trashbinRestore.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L90) - [apiTrashbin/trashbinRestore.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L91) - [apiTrashbin/trashbinRestore.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L92) @@ -908,35 +91,26 @@ - [apiTrashbin/trashbinRestore.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L94) - [apiTrashbin/trashbinRestore.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L95) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) - [apiTrashbin/trashbinRestore.feature:311](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L311) - [apiTrashbin/trashbinRestore.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L312) - [apiTrashbin/trashbinRestore.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L330) - [apiTrashbin/trashbinRestore.feature:331](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L331) -### [deleting a received share-folder moves it to trash-bin but does not unshare it](https://github.com/owncloud/ocis/issues/1123) +#### [requests to webdav URLs with an fileid containing an invalid storage_id result in error 500](https://github.com/owncloud/ocis/issues/772) +- [apiVersions/fileVersions.feature:384](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L384) -- [apiTrashbin/trashbinSharingToShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L24) -- [apiTrashbin/trashbinSharingToShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L25) -- [apiShareManagementToShares/acceptShares.feature:469](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L469) -- [apiShareManagementToShares/acceptShares.feature:470](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L470) +#### [requesting propfind with invalid fileid gives 502 error](https://github.com/owncloud/ocis/issues/771) +- [apiVersions/fileVersions.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L395) +- [apiVersions/fileVersions.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L396) +- [apiVersions/fileVersions.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L397) -### [deleting a file inside a received shared folder is moved to the trash-bin of the sharer not the receiver](https://github.com/owncloud/ocis/issues/1124) - -- [apiTrashbin/trashbinSharingToShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L40) -- [apiTrashbin/trashbinSharingToShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L41) -- [apiTrashbin/trashbinSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L63) -- [apiTrashbin/trashbinSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L64) -- [apiTrashbin/trashbinSharingToShares.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L82) -- [apiTrashbin/trashbinSharingToShares.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L83) -- [apiTrashbin/trashbinSharingToShares.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L102) -- [apiTrashbin/trashbinSharingToShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L103) - -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) +#### [Implement Versions Feature for ocis storage](https://github.com/owncloud/product/issues/210) +- [apiWebdavEtagPropagation2/restoreVersion.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreVersion.feature#L10) +#### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) +#### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - [apiVersions/fileVersions.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L15) - [apiVersions/fileVersions.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L23) - [apiVersions/fileVersions.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L36) @@ -1002,10 +176,54 @@ - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L147) - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L168) - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L169) -- [apiShareOperationsToShares/uploadToShare.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L246) -### [cannot rename files asynchronously](https://github.com/owncloud/product/issues/259) +#### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) +- [apiWebdavUpload1/uploadFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L112) +- [apiWebdavUpload1/uploadFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L113) +#### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L43) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L96) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L97) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L98) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L99) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L100) + +#### [invalid file-names should not be created using the TUS protocol](https://github.com/owncloud/ocis/issues/1001) +- [apiWebdavUploadTUS/uploadFile.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L135) +- [apiWebdavUploadTUS/uploadFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L136) +- [apiWebdavUploadTUS/uploadFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L137) +- [apiWebdavUploadTUS/uploadFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L138) +- [apiWebdavUploadTUS/uploadFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L139) +- [apiWebdavUploadTUS/uploadFile.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L140) +- [apiWebdavUploadTUS/uploadFile.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L141) +- [apiWebdavUploadTUS/uploadFile.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L142) + +#### [upload a file using TUS resource URL as an other user should not work](https://github.com/owncloud/ocis/issues/1141) +- [apiWebdavUploadTUS/uploadFile.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L155) +- [apiWebdavUploadTUS/uploadFile.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L156) + +#### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) +- [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) +- [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) +- [apiWebdavProperties1/createFolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L71) +- [apiWebdavProperties1/createFolder.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L72) +- [apiWebdavUpload1/uploadFile.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L127) +- [apiWebdavUpload1/uploadFile.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L128) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L19) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L20) +- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L13) +- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L19) +- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L35) +- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L36) +- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L37) +- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L13) +- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L20) +- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L37) +- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L38) +- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L39) + +#### [cannot rename files asynchronously](https://github.com/owncloud/product/issues/259) - [apiWebdavMove1/moveFileAsync.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L26) - [apiWebdavMove1/moveFileAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L27) - [apiWebdavMove1/moveFileAsync.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L28) @@ -1029,20 +247,17 @@ - [apiWebdavMove1/moveFileAsync.feature:235](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L235) - [apiWebdavMove1/moveFileAsync.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L240) -### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - +#### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L12) - [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L18) - [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L26) -### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - +#### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L12) - [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L19) - [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L27) -### [renaming to banned name works](https://github.com/owncloud/ocis/issues/1295) - +#### [renaming to banned name works](https://github.com/owncloud/ocis/issues/1295) - [apiWebdavMove1/moveFolder.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L21) - [apiWebdavMove1/moveFolder.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L22) - [apiWebdavMove1/moveFolder.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L34) @@ -1050,8 +265,7 @@ - [apiWebdavMove1/moveFolder.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L47) - [apiWebdavMove1/moveFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L48) -### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - +#### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - [apiWebdavMove1/moveFolderToBlacklistedName.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L21) - [apiWebdavMove1/moveFolderToBlacklistedName.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L22) - [apiWebdavMove1/moveFolderToBlacklistedName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L35) @@ -1059,8 +273,7 @@ - [apiWebdavMove1/moveFolderToBlacklistedName.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L70) - [apiWebdavMove1/moveFolderToBlacklistedName.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L71) -### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - +#### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L21) - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L22) - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L34) @@ -1068,33 +281,7 @@ - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L70) - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L71) -### [Review and fix the tests that have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavMove2/moveFile.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L89) -- [apiWebdavMove2/moveFile.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L90) -- [apiWebdavMove2/moveFile.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L91) -- [apiWebdavMove2/moveFile.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L92) -- [apiWebdavMove2/moveFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L112) -- [apiWebdavMove2/moveFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L113) -- [apiWebdavMove2/moveFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L136) -- [apiWebdavMove2/moveFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L137) -- [apiWebdavMove2/moveFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L138) -- [apiWebdavMove2/moveFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L139) -- [apiWebdavMove2/moveFile.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L160) -- [apiWebdavMove2/moveFile.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L161) -- [apiWebdavMove2/moveFile.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L181) -- [apiWebdavMove2/moveFile.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L182) -- [apiWebdavMove2/moveFile.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L200) -- [apiWebdavMove2/moveFile.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L201) -- [apiWebdavMove2/moveFile.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L219) -- [apiWebdavMove2/moveFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L220) -- [apiWebdavMove2/moveFile.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L255) -- [apiWebdavMove2/moveFile.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L256) -- [apiWebdavMove2/moveFile.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L272) -- [apiWebdavMove2/moveFile.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L273) - -### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - +#### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - [apiWebdavMove2/moveFileToBlacklistedName.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L18) - [apiWebdavMove2/moveFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L19) - [apiWebdavMove2/moveFileToBlacklistedName.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L29) @@ -1102,8 +289,7 @@ - [apiWebdavMove2/moveFileToBlacklistedName.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L62) - [apiWebdavMove2/moveFileToBlacklistedName.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L63) -### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - +#### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - [apiWebdavMove2/moveFileToExcludedDirectory.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L18) - [apiWebdavMove2/moveFileToExcludedDirectory.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L19) - [apiWebdavMove2/moveFileToExcludedDirectory.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L28) @@ -1111,57 +297,9 @@ - [apiWebdavMove2/moveFileToExcludedDirectory.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L63) - [apiWebdavMove2/moveFileToExcludedDirectory.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L64) -### [Review and fix the tests that have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavOperations/deleteFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L67) -- [apiWebdavOperations/deleteFolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L68) -- [apiWebdavOperations/deleteFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L69) -- [apiWebdavOperations/deleteFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L70) -- [apiWebdavOperations/deleteFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L91) -- [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) - -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) -### [Review and fix the tests that have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavOperations/downloadFile.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L60) -- [apiWebdavOperations/downloadFile.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L61) -- [apiWebdavOperations/downloadFile.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L72) -- [apiWebdavOperations/downloadFile.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L73) -- [apiWebdavOperations/downloadFile.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L84) -- [apiWebdavOperations/downloadFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L85) -- [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) -- [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) - -### [Review and fix the tests that have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) -- [apiWebdavProperties1/copyFile.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L66) -- [apiWebdavProperties1/copyFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L85) -- [apiWebdavProperties1/copyFile.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L86) - -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - -- [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) -- [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) -- [apiWebdavProperties1/createFolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L71) -- [apiWebdavProperties1/createFolder.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L72) -- [apiWebdavUpload1/uploadFile.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L127) -- [apiWebdavUpload1/uploadFile.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L128) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L19) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L20) -- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L13) -- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L19) -- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L35) -- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L36) -- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L37) -- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L13) -- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L20) -- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L37) -- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L38) -- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L39) - -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) +#### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) +#### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) - [apiWebdavProperties1/copyFile.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L116) - [apiWebdavProperties1/copyFile.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L117) - [apiWebdavProperties1/copyFile.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L129) @@ -1172,55 +310,37 @@ - [apiWebdavProperties1/copyFile.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L166) - [apiWebdavProperties1/copyFile.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L202) - [apiWebdavProperties1/copyFile.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L203) +- [apiWebdavProperties1/copyFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L220) +- [apiWebdavProperties1/copyFile.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L221) +- [apiWebdavProperties1/copyFile.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L237) +- [apiWebdavProperties1/copyFile.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L238) +- [apiWebdavProperties1/copyFile.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L259) +- [apiWebdavProperties1/copyFile.feature:260](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L260) +- [apiWebdavProperties1/copyFile.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L283) +- [apiWebdavProperties1/copyFile.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L284) +- [apiWebdavProperties1/copyFile.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L306) +- [apiWebdavProperties1/copyFile.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L307) +- [apiWebdavProperties1/copyFile.feature:329](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L329) +- [apiWebdavProperties1/copyFile.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L330) -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiWebdavProperties1/copyFile.feature:350](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L350) -- [apiWebdavProperties1/copyFile.feature:351](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L351) -- [apiWebdavProperties1/copyFile.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L370) -- [apiWebdavProperties1/copyFile.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L371) -- [apiWebdavProperties1/copyFile.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L395) -- [apiWebdavProperties1/copyFile.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L396) -- [apiWebdavProperties1/copyFile.feature:422](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L422) -- [apiWebdavProperties1/copyFile.feature:423](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L423) -- [apiWebdavProperties1/copyFile.feature:448](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L448) -- [apiWebdavProperties1/copyFile.feature:449](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L449) -- [apiWebdavProperties1/copyFile.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L474) -- [apiWebdavProperties1/copyFile.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L475) - -### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis/issues/1283) - +#### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis/issues/1283) +Scenario Outline: try to create a folder that already exists - [apiWebdavProperties1/createFolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L85) - [apiWebdavProperties1/createFolder.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L86) + Scenario Outline: try to create a folder with a name of an existing file - [apiWebdavProperties1/createFolder.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L99) - [apiWebdavProperties1/createFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L100) -### [quota query](https://github.com/owncloud/ocis/issues/1313) - -- [apiWebdavProperties1/getQuota.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L17) -- [apiWebdavProperties1/getQuota.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L18) -- [apiWebdavProperties1/getQuota.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L27) -- [apiWebdavProperties1/getQuota.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L28) -- [apiWebdavProperties1/getQuota.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L48) -- [apiWebdavProperties1/getQuota.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L49) -- [apiWebdavProperties1/getQuota.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L61) -- [apiWebdavProperties1/getQuota.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L62) -- [apiWebdavProperties1/getQuota.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L77) -- [apiWebdavProperties1/getQuota.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L78) - -### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) - -- [apiWebdavProperties1/setFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L63) -- [apiWebdavProperties1/setFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L64) - -### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis/issues/1296) - +#### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis/issues/1296) +Scenario Outline: Do a PROPFIND of various file names - [apiWebdavProperties2/getFileProperties.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L37) - [apiWebdavProperties2/getFileProperties.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L39) - [apiWebdavProperties2/getFileProperties.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L40) - [apiWebdavProperties2/getFileProperties.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L41) - [apiWebdavProperties2/getFileProperties.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L43) - [apiWebdavProperties2/getFileProperties.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L44) + +Scenario Outline: Do a PROPFIND of various folder names - [apiWebdavProperties2/getFileProperties.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L59) - [apiWebdavProperties2/getFileProperties.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L60) - [apiWebdavProperties2/getFileProperties.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L61) @@ -1232,125 +352,42 @@ - [apiWebdavProperties2/getFileProperties.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L70) - [apiWebdavProperties2/getFileProperties.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L71) -### [cannot get share-types webdav property](https://github.com/owncloud/ocis/issues/567) - -- [apiWebdavProperties2/getFileProperties.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L174) -- [apiWebdavProperties2/getFileProperties.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L175) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiWebdavProperties2/getFileProperties.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L156) -- [apiWebdavProperties2/getFileProperties.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L157) -- [apiWebdavProperties2/getFileProperties.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L206) -- [apiWebdavProperties2/getFileProperties.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L207) - -### [Private link support](https://github.com/owncloud/product/issues/201) -### [oc:privatelink property not returned in webdav responses](https://github.com/owncloud/product/issues/262) - -- [apiWebdavProperties2/getFileProperties.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L232) -- [apiWebdavProperties2/getFileProperties.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L233) - -### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) - -- [apiWebdavProperties2/getFileProperties.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L242) -- [apiWebdavProperties2/getFileProperties.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L243) - -### https://github.com/owncloud/product/issues/264 - -- [apiWebdavProperties2/getFileProperties.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L246) -- [apiWebdavProperties2/getFileProperties.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L266) - ### [Different webdav properties from core](https://github.com/owncloud/ocis/issues/1302) - +Scenario Outline: Propfind the last modified date of a folder using webdav api `Property "d:getlastmodified" found with value "Wed, 20 Jan 2021 14:39:31 +0000", expected "/^[MTWFS][uedhfriatno]{2},\s(\d){2}\s[JFMAJSOND][anebrpyulgctov]{2}\s\d{4}\s\d{2}:\d{2}:\d{2} GMT$/"` - [apiWebdavProperties2/getFileProperties.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L301) - [apiWebdavProperties2/getFileProperties.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L302) + Scenario Outline: Propfind the content type of a folder using webdav api `Property "d:getcontenttype" found with value "httpd/unix-directory", expected "#^$#" or "#^$#"` - [apiWebdavProperties2/getFileProperties.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L314) - [apiWebdavProperties2/getFileProperties.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L315) + Scenario Outline: Propfind the content type of a file using webdav api `Property "d:getcontenttype" found with value "text/plain; charset=utf-8", expected "#^text/plain$#" or "#^text/plain$#"` - [apiWebdavProperties2/getFileProperties.feature:327](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L327) - [apiWebdavProperties2/getFileProperties.feature:328](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L328) + Scenario Outline: Propfind the size of a folder using webdav api `Property "oc:size" found with value "10", expected "#^0$#" or "#^0$#"` - [apiWebdavProperties2/getFileProperties.feature:376](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L376) - [apiWebdavProperties2/getFileProperties.feature:377](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L377) + Scenario Outline: Propfind the permissions on a file using webdav api `Property "oc:permissions" found with value "DNVWR", expected "/RM{0,1}DNVW/"` - [apiWebdavProperties2/getFileProperties.feature:441](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L441) - [apiWebdavProperties2/getFileProperties.feature:442](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L442) + Scenario Outline: Propfind the permissions on a folder using webdav api `Property "oc:permissions" found with value "DNVCKR", expected "/RM{0,1}DNVCK/"` - [apiWebdavProperties2/getFileProperties.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L454) - [apiWebdavProperties2/getFileProperties.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L455) -### [etags are not quoted in PROPFIND](https://github.com/owncloud/product/issues/237) +#### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) +_ocdav: double check the webdav property parsing when custom namespaces are used_ +- [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) +- [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) +- [apiWebdavProperties1/setFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L63) +- [apiWebdavProperties1/setFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L64) -- [apiWebdavUpload1/uploadFile.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L160) -- [apiWebdavUpload1/uploadFile.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L161) -- [apiWebdavUpload1/uploadFile.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L173) -- [apiWebdavUpload1/uploadFile.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L174) -- [apiWebdavUpload1/uploadFile.feature:187](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L187) -- [apiWebdavUpload1/uploadFile.feature:188](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L188) -- [apiWebdavUpload1/uploadFile.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L200) -- [apiWebdavUpload1/uploadFile.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L201) +#### [Cannot set custom webDav properties](https://github.com/owncloud/product/issues/264) +- [apiWebdavProperties2/getFileProperties.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L246) +- [apiWebdavProperties2/getFileProperties.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L266) -### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) - -- [apiWebdavUpload1/uploadFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L112) -- [apiWebdavUpload1/uploadFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L113) - -### [system configuration options missing](https://github.com/owncloud/ocis/issues/1323) - -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L31) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L32) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L65) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L66) - -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) - -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L43) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L96) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L97) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L98) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L99) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L100) - -### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - -- [apiWebdavPreviews/previews.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L15) -- [apiWebdavPreviews/previews.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L16) -- [apiWebdavPreviews/previews.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L17) -- [apiWebdavPreviews/previews.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L18) -- [apiWebdavPreviews/previews.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L19) -- [apiWebdavPreviews/previews.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L30) -- [apiWebdavPreviews/previews.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L31) -- [apiWebdavPreviews/previews.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L32) -- [apiWebdavPreviews/previews.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L33) -- [apiWebdavPreviews/previews.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L34) -- [apiWebdavPreviews/previews.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L35) -- [apiWebdavPreviews/previews.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L36) -- [apiWebdavPreviews/previews.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L47) -- [apiWebdavPreviews/previews.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L48) -- [apiWebdavPreviews/previews.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L49) -- [apiWebdavPreviews/previews.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L50) -- [apiWebdavPreviews/previews.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L51) -- [apiWebdavPreviews/previews.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L52) -- [apiWebdavPreviews/previews.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L53) -- [apiWebdavPreviews/previews.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L56) -- [apiWebdavPreviews/previews.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L71) -- [apiWebdavPreviews/previews.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L72) -- [apiWebdavPreviews/previews.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L73) -- [apiWebdavPreviews/previews.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L83) -- [apiWebdavPreviews/previews.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L84) -- [apiWebdavPreviews/previews.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L87) -- [apiWebdavPreviews/previews.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L95) -- [apiWebdavPreviews/previews.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L104) -- [apiWebdavPreviews/previews.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L113) -- [apiWebdavPreviews/previews.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L120) -- [apiWebdavPreviews/previews.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L127) -- [apiWebdavPreviews/previews.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L135) -- [apiWebdavPreviews/previews.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L144) -- [apiWebdavPreviews/previews.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L163) -- [apiWebdavPreviews/previews.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L164) -- [apiWebdavPreviews/previews.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L165) -- [apiWebdavPreviews/previews.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L166) -- [apiWebdavPreviews/previews.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L178) -- [apiWebdavPreviews/previews.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L179) - -### [deleting an item updates etags of grandparent but not on parent](https://github.com/owncloud/product/issues/241) +### Sync +Synchronization features like etag propagation, setting mtime and locking files +#### [deleting an item updates etags of grandparent but not on parent](https://github.com/owncloud/product/issues/241) +_etag propagation_ - [apiWebdavEtagPropagation1/deleteFileFolder.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L26) - [apiWebdavEtagPropagation1/deleteFileFolder.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L27) - [apiWebdavEtagPropagation1/deleteFileFolder.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L45) @@ -1360,532 +397,49 @@ - [apiWebdavEtagPropagation1/deleteFileFolder.feature:193](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L193) - [apiWebdavEtagPropagation1/deleteFileFolder.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L208) -### [deleting an item updates etags of grandparent but not on parent](https://github.com/owncloud/product/issues/241) -### [etags don't change for a share receiver](https://github.com/owncloud/product/issues/243) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L95) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L96) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L125) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:126](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L126) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L157) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L158) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:189](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L189) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L190) - -### [etags don't change for a share receiver](https://github.com/owncloud/product/issues/243) - -- [apiWebdavEtagPropagation1/moveFileFolder.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L244) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L245) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L314) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L315) - -### [Implement Trashbin Feature for oCIS storage](https://github.com/owncloud/product/issues/209) - -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L26) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L27) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L48) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L49) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L68) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L69) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L90) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L91) - -### [Implement Versions Feature for oCIS storage](https://github.com/owncloud/product/issues/210) - -- [apiWebdavEtagPropagation2/restoreVersion.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreVersion.feature#L10) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareOperationsToShares/uploadToShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L39) -- [apiShareOperationsToShares/uploadToShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L40) -- [apiShareOperationsToShares/uploadToShare.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L91) -- [apiShareOperationsToShares/uploadToShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L92) -- [apiShareOperationsToShares/uploadToShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L139) -- [apiShareOperationsToShares/uploadToShare.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L140) - -### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) - -- [apiShareOperationsToShares/uploadToShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L162) -- [apiShareOperationsToShares/uploadToShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L163) -- [apiShareOperationsToShares/uploadToShare.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L181) -- [apiShareOperationsToShares/uploadToShare.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L182) -- [apiShareOperationsToShares/uploadToShare.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L202) -- [apiShareOperationsToShares/uploadToShare.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L203) -- [apiShareOperationsToShares/uploadToShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L221) -- [apiShareOperationsToShares/uploadToShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L222) -- [apiShareOperationsToShares/uploadToShare.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L242) -- [apiShareOperationsToShares/uploadToShare.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L243) +#### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) +_ocdav: return checksum in upload response for chunked upload_ +- [apiMain/checksums.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L58) Scenario: Uploading a chunked file with checksum should return the checksum in the propfind +- [apiMain/checksums.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L67) Scenario: Uploading a chunked file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L138) Scenario: Upload new dav chunked file where checksum matches +- [apiMain/checksums.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L147) Scenario: Upload new dav chunked file where checksum does not match +- [apiMain/checksums.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L158) Scenario: Upload new dav chunked file using async MOVE where checksum matches +- [apiMain/checksums.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L174) Scenario: Upload new dav chunked file using async MOVE where checksum does not match +- [apiMain/checksums.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L192) Scenario: Upload new dav chunked file using async MOVE where checksum does not match - retry with correct checksum +- [apiMain/checksums.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L258) Scenario: Uploading an old method chunked file with checksum should fail using new DAV path +- [apiMain/checksums.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L312) Scenario: Upload overwriting a file with new chunking and correct checksum +- [apiMain/checksums.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L324) Scenario: Upload overwriting a file with new chunking and invalid checksum -### [not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) +#### [Preserve mtime after TUS upload](https://github.com/owncloud/ocis-reva/issues/174) +Scenario Outline: upload file with mtime `expected -'1565237893', actual +'1611153591'` +- [apiWebdavUpload1/uploadFile.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L160) +- [apiWebdavUpload1/uploadFile.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L161) + Scenario Outline: upload a file with mtime in a folder `expected -'1565237893', actual +'1611153591'` +- [apiWebdavUpload1/uploadFile.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L173) +- [apiWebdavUpload1/uploadFile.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L174) + Scenario Outline: moving a file does not change its mtime `expected -'1565237893', actual +'1611153591'` +- [apiWebdavUpload1/uploadFile.feature:187](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L187) +- [apiWebdavUpload1/uploadFile.feature:188](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L188) + Scenario Outline: overwriting a file changes its mtime `expected -'1565237893', actual +'1611153591'` +- [apiWebdavUpload1/uploadFile.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L200) +- [apiWebdavUpload1/uploadFile.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L201) -- [apiShareOperationsToShares/changingFilesShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L23) -- [apiShareOperationsToShares/changingFilesShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L24) -- [apiShareOperationsToShares/changingFilesShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L63) -- [apiShareOperationsToShares/changingFilesShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L79) -- [apiShareOperationsToShares/changingFilesShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L95) +#### [ocis-storage does not use the mtime send in the `Upload-Metadata` header when uploading via TUS](https://github.com/owncloud/ocis/issues/965) +- [apiWebdavUploadTUS/uploadFileMtime.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L17) +- [apiWebdavUploadTUS/uploadFileMtime.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L18) +- [apiWebdavUploadTUS/uploadFileMtime.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L27) +- [apiWebdavUploadTUS/uploadFileMtime.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L28) +- [apiWebdavUploadTUS/uploadFileMtime.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L38) +- [apiWebdavUploadTUS/uploadFileMtime.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L39) +- [apiWebdavUploadTUS/uploadFileMtime.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L49) +- [apiWebdavUploadTUS/uploadFileMtime.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L50) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L40) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L41) -### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) - -- [apiShareOperationsToShares/changingFilesShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L40) -- [apiShareOperationsToShares/changingFilesShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L41) -- [apiShareOperationsToShares/changingFilesShare.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L59) -- [apiShareOperationsToShares/changingFilesShare.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L60) - -### [oCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) - -- [apiVersions/fileVersionsSharingToShares.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L33) - -### [restoring an older version of a shared file deletes the share](https://github.com/owncloud/ocis/issues/765) - -- [apiShareManagementToShares/acceptShares.feature:473](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L473) -- [apiVersions/fileVersionsSharingToShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L44) - -### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) - -- [apiVersions/fileVersionsSharingToShares.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L134) -- [apiVersions/fileVersionsSharingToShares.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L149) -- [apiVersions/fileVersionsSharingToShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L163) -- [apiVersions/fileVersionsSharingToShares.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L250) -- [apiVersions/fileVersionsSharingToShares.feature:251](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L251) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiVersions/fileVersionsSharingToShares.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L179) - -###[not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) - -- [apiVersions/fileVersionsSharingToShares.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L222) -- [apiVersions/fileVersionsSharingToShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L223) - -### [getting the metadata without permission results in a 403 error](https://github.com/owncloud/ocis/issues/773) - -- [apiVersions/fileVersionsSharingToShares.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L256) - -### [The version number of a file is incorrect because of the incorrect number of `` and `` element](https://github.com/owncloud/ocis/issues/1234) - -- [apiVersions/fileVersionsSharingToShares.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L267) - -### [wildcard Access-Control-Allow-Origin](https://github.com/owncloud/ocis/issues/1340) - -- [apiAuth/cors.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L24) -- [apiAuth/cors.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L25) -- [apiAuth/cors.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L26) -- [apiAuth/cors.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L27) -- [apiAuth/cors.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L28) -- [apiAuth/cors.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L29) -- [apiAuth/cors.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L30) -- [apiAuth/cors.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L31) -- [apiAuth/cors.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L32) -- [apiAuth/cors.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L33) -- [apiAuth/cors.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L34) -- [apiAuth/cors.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L35) -- [apiAuth/cors.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L36) -- [apiAuth/cors.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L37) -- [apiAuth/cors.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L38) -- [apiAuth/cors.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L39) -- [apiAuth/cors.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L40) -- [apiAuth/cors.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L41) -- [apiAuth/cors.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L59) -- [apiAuth/cors.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L60) -- [apiAuth/cors.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L61) -- [apiAuth/cors.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L62) -- [apiAuth/cors.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L63) -- [apiAuth/cors.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L64) -- [apiAuth/cors.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L83) -- [apiAuth/cors.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L84) -- [apiAuth/cors.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L85) -- [apiAuth/cors.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L86) -- [apiAuth/cors.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L87) -- [apiAuth/cors.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L88) -- [apiAuth/cors.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L89) -- [apiAuth/cors.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L90) -- [apiAuth/cors.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L91) -- [apiAuth/cors.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L92) -- [apiAuth/cors.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L93) -- [apiAuth/cors.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L94) -- [apiAuth/cors.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L95) -- [apiAuth/cors.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L96) -- [apiAuth/cors.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L97) -- [apiAuth/cors.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L98) -- [apiAuth/cors.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L99) -- [apiAuth/cors.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L100) -- [apiAuth/cors.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L118) -- [apiAuth/cors.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L119) -- [apiAuth/cors.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L120) -- [apiAuth/cors.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L121) -- [apiAuth/cors.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L122) -- [apiAuth/cors.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L123) -- [apiAuth/cors.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L142) -- [apiAuth/cors.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L143) -- [apiAuth/cors.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L144) -- [apiAuth/cors.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L145) -- [apiAuth/cors.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L146) -- [apiAuth/cors.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L147) -- [apiAuth/cors.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L148) -- [apiAuth/cors.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L149) -- [apiAuth/cors.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L150) -- [apiAuth/cors.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L151) -- [apiAuth/cors.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L152) -- [apiAuth/cors.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L153) -- [apiAuth/cors.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L154) -- [apiAuth/cors.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L155) -- [apiAuth/cors.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L156) -- [apiAuth/cors.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L157) -- [apiAuth/cors.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L178) -- [apiAuth/cors.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L179) -- [apiAuth/cors.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L180) -- [apiAuth/cors.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L181) -- [apiAuth/cors.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L182) -- [apiAuth/cors.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L183) - -### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) -### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) - -- [apiAuthOcs/ocsGETAuth.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L243) - -### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) - -- [apiAuthWebDav/webDavDELETEAuth.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L78) -- [apiAuthWebDav/webDavDELETEAuth.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L92) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiCapabilities/capabilities.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L8) -- [apiCapabilities/capabilities.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L15) -- [apiCapabilities/capabilities.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L21) -- [apiCapabilities/capabilities.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L27) -- [apiCapabilities/capabilities.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L33) -- [apiCapabilities/capabilities.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L38) -- [apiCapabilities/capabilities.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L80) -- [apiCapabilities/capabilities.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L93) -- [apiCapabilities/capabilities.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L107) -- [apiCapabilities/capabilities.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L116) -- [apiCapabilities/capabilities.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L138) -- [apiCapabilities/capabilities.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L144) -- [apiCapabilities/capabilities.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L151) -- [apiCapabilities/capabilities.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L157) -- [apiCapabilities/capabilities.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L166) -- [apiCapabilities/capabilities.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L176) -- [apiCapabilities/capabilities.feature:187](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L187) -- [apiCapabilities/capabilities.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L198) -- [apiCapabilities/capabilities.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L208) -- [apiCapabilities/capabilities.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L219) -- [apiCapabilities/capabilities.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L231) -- [apiCapabilities/capabilities.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L238) -- [apiCapabilities/capabilities.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L252) -- [apiCapabilities/capabilities.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L275) -- [apiCapabilities/capabilities.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L292) -- [apiCapabilities/capabilities.feature:313](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L313) -- [apiCapabilities/capabilities.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L335) -- [apiCapabilities/capabilities.feature:357](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L357) -- [apiCapabilities/capabilities.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L379) -- [apiCapabilities/capabilities.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L404) -- [apiCapabilities/capabilities.feature:429](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L429) -- [apiCapabilities/capabilities.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L454) -- [apiCapabilities/capabilities.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L476) -- [apiCapabilities/capabilities.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L498) -- [apiCapabilities/capabilities.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L521) -- [apiCapabilities/capabilities.feature:546](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L546) -- [apiCapabilities/capabilities.feature:568](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L568) -- [apiCapabilities/capabilities.feature:590](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L590) -- [apiCapabilities/capabilities.feature:613](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L613) -- [apiCapabilities/capabilities.feature:637](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L637) -- [apiCapabilities/capabilities.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L658) -- [apiCapabilities/capabilities.feature:680](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L680) -- [apiCapabilities/capabilities.feature:703](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L703) -- [apiCapabilities/capabilities.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L729) -- [apiCapabilities/capabilities.feature:758](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L758) -- [apiCapabilities/capabilities.feature:787](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L787) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L25) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L26) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L47) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L48) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L66) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L67) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L87) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L88) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L25) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L26) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L44) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L45) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L64) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L65) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L83) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L84) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L103) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L104) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L122) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L123) - -- [apiMain/caldav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L8) -- [apiMain/caldav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L15) -- [apiMain/caldav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L23) -- [apiMain/caldav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L31) -- [apiMain/carddav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L8) -- [apiMain/carddav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L15) -- [apiMain/carddav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L23) -- [apiMain/carddav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L31) - -### [user-sync endpoint does not exist](https://github.com/owncloud/ocis/issues/1241) - -- [apiMain/userSync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L18) -- [apiMain/userSync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L19) -- [apiMain/userSync.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L29) -- [apiMain/userSync.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L30) -- [apiMain/userSync.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L40) -- [apiMain/userSync.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L41) -- [apiMain/userSync.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L52) -- [apiMain/userSync.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L53) -- [apiMain/userSync.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L63) -- [apiMain/userSync.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L64) - -- [apiProvisioning-v1/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L11) -- [apiProvisioning-v1/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L19) -- [apiProvisioning-v1/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L27) -- [apiProvisioning-v1/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L35) -- [apiProvisioning-v1/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L11) -- [apiProvisioning-v1/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L21) -- [apiProvisioning-v2/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L11) -- [apiProvisioning-v2/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L19) -- [apiProvisioning-v2/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L27) -- [apiProvisioning-v2/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L35) -- [apiProvisioning-v2/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L11) -- [apiProvisioning-v2/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L21) -- [apiProvisioning-v2/getSubAdmins.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L30) -- [apiProvisioning-v2/getSubAdmins.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L44) -- [apiTranslation/translation.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L29) -- [apiTranslation/translation.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L30) - -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) -### [Expiration date for user shares is not implemented](https://github.com/owncloud/ocis/issues/1250) - -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L26) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L27) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L55) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L56) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L83) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L84) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L110) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L111) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L137) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L138) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L159) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L160) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L190) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L191) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L220) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L221) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L249) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L250) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L279) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L280) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:300](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L300) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L301) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L322) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:323](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L323) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:344](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L344) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:345](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L345) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L367) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L368) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:385](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L385) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:386](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L386) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L403) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L404) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:426](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L426) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:427](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L427) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L450) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L451) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L474) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L475) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:499](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L499) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:500](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L500) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L521) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:522](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L522) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:543](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L543) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:544](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L544) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:563](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L563) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:564](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L564) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:581](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L581) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:582](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L582) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:603](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L603) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:604](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L604) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:628](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L628) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:629](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L629) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:630](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L630) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:631](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L631) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L632) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:653](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L653) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:654](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L654) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:655](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L655) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:656](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L656) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:657](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L657) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L658) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:659](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L659) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:660](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L660) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:661](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L661) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:662](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L662) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:663](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L663) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:664](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L664) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:685](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L685) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:686](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L686) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:687](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L687) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:688](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L688) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:689](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L689) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:690](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L690) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:711](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L711) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:712](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L712) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:713](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L713) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:714](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L714) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:715](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L715) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:716](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L716) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:737](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L737) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:738](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L738) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:759](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L759) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:760](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L760) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:781](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L781) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:782](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L782) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L36) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L37) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L65) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L66) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L85) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L86) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L106) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L107) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L201) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L202) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L10) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L34) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L58) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L82) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L46) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L47) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L48) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L49) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L50) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L51) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L82) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L83) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L84) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L85) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L86) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L87) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:438](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L438) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:439](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L439) -- [apiShareOperationsToShares/accessToShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L71) -- [apiShareOperationsToShares/accessToShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L72) - -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - -- [apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature#L15) -- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L18) -- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L21) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L51) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L52) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L70) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L71) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L72) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L73) -- [apiShareManagementToShares/moveReceivedShare.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L14) -- [apiShareManagementToShares/moveReceivedShare.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L28) -- [apiShareManagementToShares/moveReceivedShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L39) -- [apiShareManagementToShares/moveReceivedShare.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L70) -- [apiShareManagementToShares/moveReceivedShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L71) -- [apiShareManagementToShares/moveReceivedShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L73) -- [apiShareManagementToShares/moveReceivedShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L88) -- [apiShareManagementToShares/moveReceivedShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L118) -- [apiShareManagementToShares/moveReceivedShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L128) -- [apiShareManagementToShares/moveReceivedShare.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L138) -- [apiShareManagementToShares/moveReceivedShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L148) -- [apiShareManagementToShares/moveReceivedShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L158) -- [apiShareManagementToShares/moveReceivedShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L168) -- [apiShareManagementToShares/moveReceivedShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L197) -- [apiShareManagementToShares/moveReceivedShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L198) -- [apiShareManagementToShares/moveReceivedShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L221) -- [apiShareManagementToShares/moveReceivedShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L222) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L59) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L60) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L94) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L95) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L129) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L130) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L177) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L178) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L212) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L213) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L247) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L248) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:282](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L282) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L283) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L317) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L318) -- [apiShareUpdateToShares/updateShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L92) -- [apiShareUpdateToShares/updateShare.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L93) -- [apiShareUpdateToShares/updateShare.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L94) -- [apiShareUpdateToShares/updateShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L95) -- [apiShareUpdateToShares/updateShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L96) -- [apiShareUpdateToShares/updateShare.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L97) -- [apiShareUpdateToShares/updateShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L123) -- [apiShareUpdateToShares/updateShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L155) - -### [No way to set default folder for received shares](https://github.com/owncloud/ocis/issues/1327) - -- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L21) -- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L22) - -### [Group shares support ](https://github.com/owncloud/ocis/issues/1289) - -- [apiShareOperationsToShares/gettingShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L103) -- [apiShareOperationsToShares/gettingShares.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L104) -- [apiShareOperationsToShares/gettingShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L184) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) -### [Group shares support](https://github.com/owncloud/ocis/issues/1289) - -- [apiShareUpdateToShares/updateShare.feature:290](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L290) -- [apiShareUpdateToShares/updateShare.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L291) -- [apiShareUpdateToShares/updateShare.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L306) -- [apiShareUpdateToShares/updateShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L307) -- [apiShareUpdateToShares/updateShare.feature:334](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L334) -- [apiShareUpdateToShares/updateShare.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L335) -- [apiShareUpdateToShares/updateShare.feature:364](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L364) -- [apiShareUpdateToShares/updateShare.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L365) - -### [Group shares support](https://github.com/owncloud/ocis/issues/1289) -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - -- [apiShareUpdateToShares/updateShare.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L61) -- [apiShareUpdateToShares/updateShare.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L62) -- [apiShareUpdateToShares/updateShare.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L75) -- [apiShareUpdateToShares/updateShare.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L76) -- [apiShareUpdateToShares/updateShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L115) -- [apiShareUpdateToShares/updateShare.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L116) -- [apiShareUpdateToShares/updateShare.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L117) -- [apiShareUpdateToShares/updateShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L118) -- [apiShareUpdateToShares/updateShare.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L119) -- [apiShareUpdateToShares/updateShare.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L120) -- [apiShareUpdateToShares/updateShare.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L252) -- [apiShareUpdateToShares/updateShare.feature:253](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L253) -- [apiShareUpdateToShares/updateShare.feature:265](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L265) -- [apiShareUpdateToShares/updateShare.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L266) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L34) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L35) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L54) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L55) - -### [Share additional info](https://github.com/owncloud/ocis/issues/1253) -### [Share extra attributes](https://github.com/owncloud/ocis/issues/1224) -### [Edit user share response has an "name" field](https://github.com/owncloud/ocis/issues/1225) - -- [apiShareUpdateToShares/updateShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L230) -- [apiShareUpdateToShares/updateShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L231) - -### [Webdav LOCK operations](https://github.com/owncloud/ocis/issues/1284) +#### [Webdav LOCK operations](https://github.com/owncloud/ocis/issues/1284) - [apiWebdavLocks/exclusiveLocks.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L17) - [apiWebdavLocks/exclusiveLocks.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L18) - [apiWebdavLocks/exclusiveLocks.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L19) @@ -2215,61 +769,1177 @@ - [apiWebdavLocksUnlock/unlockSharingToShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToShares.feature#L167) - [apiWebdavLocksUnlock/unlockSharingToShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToShares.feature#L168) -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) +### Share +File and sync features in a shared scenario -- [apiWebdavProperties1/copyFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L220) -- [apiWebdavProperties1/copyFile.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L221) -- [apiWebdavProperties1/copyFile.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L237) -- [apiWebdavProperties1/copyFile.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L238) -- [apiWebdavProperties1/copyFile.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L259) -- [apiWebdavProperties1/copyFile.feature:260](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L260) -- [apiWebdavProperties1/copyFile.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L283) -- [apiWebdavProperties1/copyFile.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L284) -- [apiWebdavProperties1/copyFile.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L306) -- [apiWebdavProperties1/copyFile.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L307) -- [apiWebdavProperties1/copyFile.feature:329](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L329) -- [apiWebdavProperties1/copyFile.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L330) +#### [etags don't change for a share receiver](https://github.com/owncloud/product/issues/243) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L95) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L96) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L125) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:126](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L126) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L157) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L158) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:189](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L189) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L190) -### [creating existing group doesn't gives error](https://github.com/owncloud/product/issues/282) -- [apiProvisioningGroups-v1/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L94) -- [apiProvisioningGroups-v2/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L94) +#### [etags don't change for a share receiver](https://github.com/owncloud/product/issues/243) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L244) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L245) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L314) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L315) -### [cannot create group with '/'](https://github.com/owncloud/product/issues/285) -- [apiProvisioningGroups-v1/addToGroup.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L75) -- [apiProvisioningGroups-v1/addToGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L76) -- [apiProvisioningGroups-v1/addToGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L77) -- [apiProvisioningGroups-v1/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L85) -- [apiProvisioningGroups-v1/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L86) -- [apiProvisioningGroups-v1/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L87) -- [apiProvisioningGroups-v1/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L38) -- [apiProvisioningGroups-v1/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L76) -- [apiProvisioningGroups-v1/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L77) -- [apiProvisioningGroups-v1/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L78) -- [apiProvisioningGroups-v2/addToGroup.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L70) -- [apiProvisioningGroups-v2/addToGroup.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L71) -- [apiProvisioningGroups-v2/addToGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L72) -- [apiProvisioningGroups-v2/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L85) -- [apiProvisioningGroups-v2/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L86) -- [apiProvisioningGroups-v2/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L87) -- [apiProvisioningGroups-v2/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L38) -- [apiProvisioningGroups-v2/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L76) -- [apiProvisioningGroups-v2/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L77) -- [apiProvisioningGroups-v2/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L78) +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) -### [adding user to non-existent group gives wrong statuscode](https://github.com/owncloud/product/issues/286) -- [apiProvisioningGroups-v1/addToGroup.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L107) -- [apiProvisioningGroups-v1/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L101) +- [apiShareOperationsToShares/uploadToShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L39) +- [apiShareOperationsToShares/uploadToShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L40) +- [apiShareOperationsToShares/uploadToShare.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L91) +- [apiShareOperationsToShares/uploadToShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L92) +- [apiShareOperationsToShares/uploadToShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L139) +- [apiShareOperationsToShares/uploadToShare.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L140) -- [apiProvisioningGroups-v2/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L101) +#### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) +- [apiMain/checksums.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L119) Scenario: Sharing a file with checksum should return the checksum in the propfind using new DAV path +- [apiMain/checksums.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L129) Scenario: Sharing and modifying a file should return correct checksum in the propfind using new DAV path -### [adding user to empty group gives wrong statuscode](https://github.com/owncloud/product/issues/287) -- [apiProvisioningGroups-v1/addToGroup.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L116) +#### [Searching sharee with displayname](https://github.com/owncloud/ocis/issues/547) +- [apiSharees/sharees.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L32) +- [apiSharees/sharees.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L33) +- [apiSharees/sharees.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L53) +- [apiSharees/sharees.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L54) +- [apiSharees/sharees.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L74) +- [apiSharees/sharees.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L75) +- [apiSharees/sharees.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L98) +- [apiSharees/sharees.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L99) +- [apiSharees/sharees.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L118) +- [apiSharees/sharees.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L119) +- [apiSharees/sharees.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L137) +- [apiSharees/sharees.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L138) +- [apiSharees/sharees.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L157) +- [apiSharees/sharees.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L158) +- [apiSharees/sharees.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L177) +- [apiSharees/sharees.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L178) +- [apiSharees/sharees.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L198) +- [apiSharees/sharees.feature:199](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L199) +- [apiSharees/sharees.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L217) +- [apiSharees/sharees.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L218) +- [apiSharees/sharees.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L237) +- [apiSharees/sharees.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L238) +- [apiSharees/sharees.feature:257](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L257) +- [apiSharees/sharees.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L258) +- [apiSharees/sharees.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L277) +- [apiSharees/sharees.feature:278](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L278) +- [apiSharees/sharees.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L297) +- [apiSharees/sharees.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L298) +- [apiSharees/sharees.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L317) +- [apiSharees/sharees.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L318) +- [apiSharees/sharees.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L336) +- [apiSharees/sharees.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L337) +- [apiSharees/sharees.feature:355](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L355) +- [apiSharees/sharees.feature:356](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L356) +- [apiSharees/sharees.feature:374](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L374) +- [apiSharees/sharees.feature:375](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L375) +- [apiSharees/sharees.feature:393](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L393) +- [apiSharees/sharees.feature:394](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L394) +- [apiSharees/sharees.feature:412](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L412) +- [apiSharees/sharees.feature:413](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L413) +- [apiSharees/sharees.feature:430](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L430) +- [apiSharees/sharees.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L431) +- [apiSharees/sharees.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L450) +- [apiSharees/sharees.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L451) +- [apiSharees/sharees.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L475) +- [apiSharees/sharees.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L476) +- [apiSharees/sharees.feature:495](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L495) +- [apiSharees/sharees.feature:496](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L496) +- [apiSharees/sharees.feature:515](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L515) +- [apiSharees/sharees.feature:516](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L516) +- [apiSharees/sharees.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L537) +- [apiSharees/sharees.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L538) -### [adding non-existent user to a group gives wrong status code](https://github.com/owncloud/product/issues/288) -- [apiProvisioningGroups-v1/addToGroup.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L124) +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiShareManagementToShares/acceptShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L22) +- [apiShareManagementToShares/acceptShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L223) +- [apiShareManagementToShares/acceptShares.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L270) +- [apiShareManagementToShares/acceptShares.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L342) +- [apiShareManagementToShares/acceptShares.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L378) +- [apiShareManagementToShares/acceptShares.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L417) -### [subadmin endpoints not implemented](https://github.com/owncloud/product/issues/289) +#### User cannot create a folder named Share +- [apiShareManagementToShares/acceptShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L279) +- [apiShareManagementToShares/acceptShares.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L298) + +#### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) + +- [apiShareManagementToShares/acceptShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L71) +- [apiShareManagementToShares/acceptShares.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L162) +- [apiShareManagementToShares/acceptShares.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L175) +- [apiShareManagementToShares/acceptShares.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L196) +- [apiShareManagementToShares/acceptShares.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L249) +- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L28) +- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L48) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L140) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L141) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L176) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L177) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) + +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L36) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L37) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L66) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L67) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L91) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L92) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L94) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L95) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L97) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L98) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L155) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L156) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:288](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L288) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L289) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L305) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L306) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L46) +- [apiShareManagementToShares/mergeShare.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L32) +- [apiShareManagementToShares/mergeShare.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L42) +- [apiShareManagementToShares/mergeShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L89) + +#### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L100) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L101) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L179) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L180) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L204) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L205) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L236) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L237) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L258) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L259) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L324) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:325](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L325) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:362](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L362) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:363](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L363) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:392](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L392) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:461](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L461) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:462](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L462) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:497](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L497) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L498) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:501](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L501) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L28) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L29) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L89) + +#### [shares are mounted into /Shares folder even after the sharer deletes the collaborator](https://github.com/owncloud/ocis/issues/720) +#### [deleting share response does not contain `data` field](https://github.com/owncloud/ocis/issues/721) + +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L43) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L44) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L367) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:529](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L529) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:547](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L547) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:565](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L565) + +#### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L342) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:343](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L343) + +#### [File deletion using dav gives unique string in filename in the trashbin](https://github.com/owncloud/product/issues/178) + +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L58) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L72) + +cannot share a folder with create permission +#### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) + +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L118) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L130) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L181) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L182) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L183) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L184) + +#### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) +- [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) +- [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) + +#### [There is no such thing like a super-user](https://github.com/owncloud/ocis/issues/1319) + +- [apiShareOperationsToShares/gettingShares.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L38) +- [apiShareOperationsToShares/gettingShares.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L39) + +#### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) +#### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis-reva/issues/301) +#### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) + +- [apiShareOperationsToShares/gettingShares.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L135) +- [apiShareOperationsToShares/gettingShares.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L136) + +#### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis/issues/1233) + +- [apiShareOperationsToShares/gettingShares.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L180) +- [apiShareOperationsToShares/gettingShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L181) + +#### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) + +- [apiShareOperationsToShares/gettingShares.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L219) +- [apiShareOperationsToShares/gettingShares.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L220) + +#### [Allow getting the share list filtered by share type via API](https://github.com/owncloud/ocis/issues/774) + +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L44) +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L45) +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L56) +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L57) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L47) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L48) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L60) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L61) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L41) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L42) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L62) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L63) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L90) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L91) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L48) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L49) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L62) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L63) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L76) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L77) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L92) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L93) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L39) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L40) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L60) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L61) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L79) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L80) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) + +- [apiShareOperationsToShares/gettingShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L167) +- [apiShareOperationsToShares/gettingShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L168) + +- [apiSharePublicLink1/createPublicLinkShare.feature:793](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L793) +- [apiSharePublicLink1/createPublicLinkShare.feature:804](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L804) + +#### [Cannot set mtime on upload](https://github.com/owncloud/product/issues/271) + +- [apiSharePublicLink1/createPublicLinkShare.feature:775](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L775) +- [apiSharePublicLink1/createPublicLinkShare.feature:776](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L776) +- [apiSharePublicLink1/createPublicLinkShare.feature:789](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L789) +- [apiSharePublicLink1/createPublicLinkShare.feature:790](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L790) + +#### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) +#### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) +#### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) + +- [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) +- [apiSharePublicLink1/accessToPublicLinkShare.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L20) +- [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) +- [apiSharePublicLink1/accessToPublicLinkShare.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L43) + +#### [creating public links with permissions fails](https://github.com/owncloud/product/issues/252) + +- [apiSharePublicLink1/changingPublicLinkShare.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L22) +- [apiSharePublicLink1/changingPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L23) +- [apiSharePublicLink1/changingPublicLinkShare.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L37) +- [apiSharePublicLink1/changingPublicLinkShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L41) +- [apiSharePublicLink1/changingPublicLinkShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L52) +- [apiSharePublicLink1/changingPublicLinkShare.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L85) +- [apiSharePublicLink1/changingPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L96) + +#### [Old webdav api does not work with public link](https://github.com/owncloud/product/issues/272) + +- [apiSharePublicLink1/changingPublicLinkShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L63) +- [apiSharePublicLink1/changingPublicLinkShare.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L107) +- [apiSharePublicLink1/changingPublicLinkShare.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L151) +- [apiSharePublicLink1/changingPublicLinkShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L197) +- [apiSharePublicLink1/changingPublicLinkShare.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L244) + +#### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) + +- [apiSharePublicLink1/changingPublicLinkShare.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L267) +- [apiSharePublicLink1/changingPublicLinkShare.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L289) +- [apiSharePublicLink1/createPublicLinkShare.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L34) +- [apiSharePublicLink1/createPublicLinkShare.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L35) +- [apiSharePublicLink1/createPublicLinkShare.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L183) +- [apiSharePublicLink1/createPublicLinkShare.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L184) +- [apiSharePublicLink1/createPublicLinkShare.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L214) +- [apiSharePublicLink1/createPublicLinkShare.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L215) +- [apiSharePublicLink1/createPublicLinkShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L307) +- [apiSharePublicLink1/createPublicLinkShare.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L308) +- [apiSharePublicLink1/createPublicLinkShare.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L370) +- [apiSharePublicLink1/createPublicLinkShare.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L371) + +#### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) + +- [apiSharePublicLink1/createPublicLinkShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L95) +- [apiSharePublicLink1/createPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L96) +- [apiSharePublicLink1/createPublicLinkShare.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L276) +- [apiSharePublicLink1/createPublicLinkShare.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L277) + +#### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis/issues/1293) + +- [apiSharePublicLink1/createPublicLinkShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L127) +- [apiSharePublicLink1/createPublicLinkShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L128) +- [apiSharePublicLink1/createPublicLinkShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L155) +- [apiSharePublicLink1/createPublicLinkShare.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L156) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) + +- [apiSharePublicLink1/createPublicLinkShare.feature:410](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L410) +- [apiSharePublicLink1/createPublicLinkShare.feature:411](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L411) +- [apiSharePublicLink1/createPublicLinkShare.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L431) +- [apiSharePublicLink1/createPublicLinkShare.feature:432](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L432) +- [apiSharePublicLink1/createPublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L454) +- [apiSharePublicLink1/createPublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L455) +- [apiSharePublicLink1/createPublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L477) +- [apiSharePublicLink1/createPublicLinkShare.feature:478](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L478) +- [apiSharePublicLink1/createPublicLinkShare.feature:479](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L479) +- [apiSharePublicLink1/createPublicLinkShare.feature:480](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L480) +- [apiSharePublicLink1/createPublicLinkShare.feature:481](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L481) +- [apiSharePublicLink1/createPublicLinkShare.feature:482](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L482) +- [apiSharePublicLink1/createPublicLinkShare.feature:502](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L502) +- [apiSharePublicLink1/createPublicLinkShare.feature:503](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L503) +- [apiSharePublicLink1/createPublicLinkShare.feature:518](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L518) +- [apiSharePublicLink1/createPublicLinkShare.feature:519](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L519) +- [apiSharePublicLink1/createPublicLinkShare.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L537) +- [apiSharePublicLink1/createPublicLinkShare.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L538) +- [apiSharePublicLink1/createPublicLinkShare.feature:574](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L574) +- [apiSharePublicLink1/createPublicLinkShare.feature:575](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L575) +- [apiSharePublicLink1/createPublicLinkShare.feature:635](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L635) +- [apiSharePublicLink1/createPublicLinkShare.feature:636](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L636) +- [apiSharePublicLink1/createPublicLinkShare.feature:649](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L649) +- [apiSharePublicLink1/createPublicLinkShare.feature:650](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L650) +- [apiSharePublicLink1/createPublicLinkShare.feature:678](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L678) +- [apiSharePublicLink1/createPublicLinkShare.feature:679](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L679) +- [apiSharePublicLink1/createPublicLinkShare.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L729) +- [apiSharePublicLink1/createPublicLinkShare.feature:730](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L730) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L163) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L164) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L165) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L166) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L42) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L43) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L69) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L70) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L97) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L98) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L135) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L136) + +#### [Public cannot upload file with mtime set on a public link share with new version of WebDAV API](https://github.com/owncloud/core/issues/37605) + +- [apiSharePublicLink1/createPublicLinkShare.feature:733](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L733) +- [apiSharePublicLink1/createPublicLinkShare.feature:742](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L742) + +#### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis/issues/1232) + +- [apiSharePublicLink2/copyFromPublicLink.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L60) +- [apiSharePublicLink2/copyFromPublicLink.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L85) +- [apiSharePublicLink2/copyFromPublicLink.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L166) +- [apiSharePublicLink2/copyFromPublicLink.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L167) +- [apiSharePublicLink2/copyFromPublicLink.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L182) +- [apiSharePublicLink2/copyFromPublicLink.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L183) +- [apiSharePublicLink2/updatePublicLinkShare.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L44) +- [apiSharePublicLink2/updatePublicLinkShare.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L45) +- [apiSharePublicLink2/updatePublicLinkShare.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L114) +- [apiSharePublicLink2/updatePublicLinkShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L115) +- [apiSharePublicLink2/updatePublicLinkShare.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L130) +- [apiSharePublicLink2/updatePublicLinkShare.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L131) +- [apiSharePublicLink2/updatePublicLinkShare.feature:321](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L321) +- [apiSharePublicLink2/updatePublicLinkShare.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L322) + +#### [OCIS share permissions not enforced](https://github.com/owncloud/product/issues/270) + +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L157) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L158) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L179) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L180) + +#### [OCIS old public webdav api doesnt works](https://github.com/owncloud/product/issues/272) + +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L30) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L31) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L50) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L51) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L71) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L72) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L92) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L93) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L114) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L115) + +#### [listing received shares does not work](https://github.com/owncloud/ocis-reva/issues/11) + +- [apiSharePublicLink2/updatePublicLinkShare.feature:340](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L340) +- [apiSharePublicLink2/updatePublicLinkShare.feature:341](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L341) +- [apiSharePublicLink2/updatePublicLinkShare.feature:359](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L359) +- [apiSharePublicLink2/updatePublicLinkShare.feature:360](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L360) +- [apiSharePublicLink2/updatePublicLinkShare.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L378) +- [apiSharePublicLink2/updatePublicLinkShare.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L379) +- [apiSharePublicLink2/updatePublicLinkShare.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L397) +- [apiSharePublicLink2/updatePublicLinkShare.feature:398](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L398) +- [apiSharePublicLink2/updatePublicLinkShare.feature:416](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L416) +- [apiSharePublicLink2/updatePublicLinkShare.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L417) +- [apiSharePublicLink2/updatePublicLinkShare.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L435) +- [apiSharePublicLink2/updatePublicLinkShare.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L436) +- [apiSharePublicLink2/updatePublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L454) +- [apiSharePublicLink2/updatePublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L455) +- [apiSharePublicLink2/updatePublicLinkShare.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L476) +- [apiSharePublicLink2/updatePublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L477) + +#### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) + +- [apiSharePublicLink2/updatePublicLinkShare.feature:523](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L523) +- [apiSharePublicLink2/updatePublicLinkShare.feature:524](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L524) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L9) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L83) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L103) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) + +#### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L48) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L49) + +#### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis-reva/issues/286) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L273) + +#### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis/issues/1268) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L66) + +#### [Set quota over settings](https://github.com/owncloud/ocis/issues/1290) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L148) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L158) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L167) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L177) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:186](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L186) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L196) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L206) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L217) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L238) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L255) + +#### [Resharing does not work with ocis storage](https://github.com/owncloud/product/issues/265) + +- [apiShareReshareToShares1/reShare.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L56) +- [apiShareReshareToShares1/reShare.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L57) +- [apiShareReshareToShares1/reShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L72) +- [apiShareReshareToShares1/reShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L73) +- [apiShareReshareToShares1/reShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L88) +- [apiShareReshareToShares1/reShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L89) +- [apiShareReshareToShares1/reShare.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L104) +- [apiShareReshareToShares1/reShare.feature:105](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L105) +- [apiShareReshareToShares1/reShare.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L159) +- [apiShareReshareToShares1/reShare.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L160) +- [apiShareReshareToShares1/reShare.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L161) +- [apiShareReshareToShares1/reShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L162) +- [apiShareReshareToShares1/reShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L163) +- [apiShareReshareToShares1/reShare.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L164) +- [apiShareReshareToShares1/reShare.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L165) +- [apiShareReshareToShares1/reShare.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L166) +- [apiShareReshareToShares1/reShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L167) +- [apiShareReshareToShares1/reShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L168) +- [apiShareReshareToShares1/reShare.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L169) +- [apiShareReshareToShares1/reShare.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L170) +- [apiShareReshareToShares1/reShare.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L171) +- [apiShareReshareToShares1/reShare.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L172) +- [apiShareReshareToShares1/reShare.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L173) +- [apiShareReshareToShares1/reShare.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L174) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L365) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:366](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L366) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L367) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L368) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:400](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L400) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:401](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L401) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:402](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L402) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L403) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L404) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:405](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L405) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:434](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L434) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L435) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L436) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:437](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L437) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:465](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L465) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:466](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L466) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L245) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L246) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L247) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L248) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L150) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L151) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L152) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L153) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L89) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L90) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L91) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L92) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L33) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L34) + +#### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) + +- [apiShareReshareToShares2/reShareChain.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareChain.feature#L10) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) + +- [apiShareReshareToShares2/reShareDisabled.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L24) +- [apiShareReshareToShares2/reShareDisabled.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L25) +- [apiShareReshareToShares2/reShareDisabled.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L39) +- [apiShareReshareToShares2/reShareDisabled.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L40) + +#### [share permissions are not enforced](https://github.com/owncloud/product/issues/270) + +- [apiShareManagementToShares/mergeShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L24) +- [apiShareManagementToShares/mergeShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L52) +- [apiShareManagementToShares/mergeShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L79) +- [apiShareManagementToShares/mergeShare.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L99) +- [apiShareReshareToShares3/reShareUpdate.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L59) +- [apiShareReshareToShares3/reShareUpdate.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L60) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) + +- [apiShareReshareToShares2/reShareSubfolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L28) +- [apiShareReshareToShares2/reShareSubfolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L29) +- [apiShareReshareToShares2/reShareSubfolder.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L106) +- [apiShareReshareToShares2/reShareSubfolder.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L107) +- [apiShareReshareToShares2/reShareSubfolder.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L128) +- [apiShareReshareToShares2/reShareSubfolder.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L129) +- [apiShareReshareToShares2/reShareSubfolder.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L150) +- [apiShareReshareToShares2/reShareSubfolder.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L151) + + +#### [Share receiver cannot get share by id](https://github.com/owncloud/product/issues/253) + +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) + +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L24) +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L25) +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L41) +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L42) +- [apiShareReshareToShares3/reShareUpdate.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L112) +- [apiShareReshareToShares3/reShareUpdate.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L113) +- [apiShareReshareToShares3/reShareUpdate.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L131) +- [apiShareReshareToShares3/reShareUpdate.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L132) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L61) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L62) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L121) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L122) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L123) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L124) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L181) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L182) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L183) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L184) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L212) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L213) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L214) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L215) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L302) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:303](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L303) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:304](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L304) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L305) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L335) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L336) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L337) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:338](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L338) + +#### [invalid format of sharees response](https://github.com/owncloud/product/issues/292) + +#### [deleting a received share-folder moves it to trash-bin but does not unshare it](https://github.com/owncloud/ocis/issues/1123) + +- [apiTrashbin/trashbinSharingToShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L24) +- [apiTrashbin/trashbinSharingToShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L25) +- [apiShareManagementToShares/acceptShares.feature:469](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L469) +- [apiShareManagementToShares/acceptShares.feature:470](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L470) + +#### [deleting a file inside a received shared folder is moved to the trash-bin of the sharer not the receiver](https://github.com/owncloud/ocis/issues/1124) + +- [apiTrashbin/trashbinSharingToShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L40) +- [apiTrashbin/trashbinSharingToShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L41) +- [apiTrashbin/trashbinSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L63) +- [apiTrashbin/trashbinSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L64) +- [apiTrashbin/trashbinSharingToShares.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L82) +- [apiTrashbin/trashbinSharingToShares.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L83) +- [apiTrashbin/trashbinSharingToShares.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L102) +- [apiTrashbin/trashbinSharingToShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L103) + +#### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) +- [apiShareOperationsToShares/uploadToShare.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L246) + +#### Copying into a shared folder +Scenario Outline: Copying a file to a folder with no permissions +- [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) +- [apiWebdavProperties1/copyFile.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L66) + Scenario Outline: Copying a file to overwrite a file into a folder with no permissions +- [apiWebdavProperties1/copyFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L85) +- [apiWebdavProperties1/copyFile.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L86) + +#### Share jail related +Scenario Outline: delete a folder when there is a default folder for received shares +- [apiWebdavOperations/deleteFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L67) +- [apiWebdavOperations/deleteFolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L68) +- [apiWebdavOperations/deleteFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L69) +- [apiWebdavOperations/deleteFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L70) + Scenario Outline: delete a folder when there is a default folder for received shares that is a multi-level path +- [apiWebdavOperations/deleteFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L91) +- [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) + +- [apiWebdavProperties1/copyFile.feature:350](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L350) +- [apiWebdavProperties1/copyFile.feature:351](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L351) +- [apiWebdavProperties1/copyFile.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L370) +- [apiWebdavProperties1/copyFile.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L371) +- [apiWebdavProperties1/copyFile.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L395) +- [apiWebdavProperties1/copyFile.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L396) +- [apiWebdavProperties1/copyFile.feature:422](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L422) +- [apiWebdavProperties1/copyFile.feature:423](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L423) +- [apiWebdavProperties1/copyFile.feature:448](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L448) +- [apiWebdavProperties1/copyFile.feature:449](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L449) +- [apiWebdavProperties1/copyFile.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L474) +- [apiWebdavProperties1/copyFile.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L475) + +#### [quota query](https://github.com/owncloud/ocis/issues/1313) +- [apiMain/quota.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L41) Scenario: Uploading a file in received folder having enough quota +- [apiMain/quota.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L54) Scenario: Uploading a file in received folder having insufficient quota +- [apiMain/quota.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L68) Scenario: Overwriting a file in received folder having enough quota +- [apiMain/quota.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L82) Scenario: Overwriting a file in received folder having insufficient quota +- [apiMain/quota.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L99) Scenario: Overwriting a received file having enough quota +- [apiMain/quota.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L112) Scenario: Overwriting a received file having insufficient quota + Scenario Outline: Retrieving folder quota of shared folder with quota when no quota is set for recipient +- [apiWebdavProperties1/getQuota.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L48) +- [apiWebdavProperties1/getQuota.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L49) + Scenario Outline: Retrieving folder quota when quota is set and a file was uploaded +- [apiWebdavProperties1/getQuota.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L61) +- [apiWebdavProperties1/getQuota.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L62) + Scenario Outline: Retrieving folder quota when quota is set and a file was received +- [apiWebdavProperties1/getQuota.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L77) +- [apiWebdavProperties1/getQuota.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L78) + +#### [cannot get share-types webdav property](https://github.com/owncloud/ocis/issues/567) +- [apiWebdavProperties2/getFileProperties.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L174) +- [apiWebdavProperties2/getFileProperties.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L175) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiWebdavProperties2/getFileProperties.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L156) +- [apiWebdavProperties2/getFileProperties.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L157) +- [apiWebdavProperties2/getFileProperties.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L206) +- [apiWebdavProperties2/getFileProperties.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L207) + +#### [Private link support](https://github.com/owncloud/product/issues/201) +#### [oc:privatelink property not returned in webdav responses](https://github.com/owncloud/product/issues/262) +- [apiWebdavProperties2/getFileProperties.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L232) +- [apiWebdavProperties2/getFileProperties.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L233) + +#### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) +- [apiShareOperationsToShares/uploadToShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L162) +- [apiShareOperationsToShares/uploadToShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L163) +- [apiShareOperationsToShares/uploadToShare.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L181) +- [apiShareOperationsToShares/uploadToShare.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L182) +- [apiShareOperationsToShares/uploadToShare.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L202) +- [apiShareOperationsToShares/uploadToShare.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L203) +- [apiShareOperationsToShares/uploadToShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L221) +- [apiShareOperationsToShares/uploadToShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L222) +- [apiShareOperationsToShares/uploadToShare.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L242) +- [apiShareOperationsToShares/uploadToShare.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L243) + + +#### [not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) +- [apiShareOperationsToShares/changingFilesShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L23) +- [apiShareOperationsToShares/changingFilesShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L24) +- [apiShareOperationsToShares/changingFilesShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L63) +- [apiShareOperationsToShares/changingFilesShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L79) +- [apiShareOperationsToShares/changingFilesShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L95) + +#### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) +- [apiShareOperationsToShares/changingFilesShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L40) +- [apiShareOperationsToShares/changingFilesShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L41) +- [apiShareOperationsToShares/changingFilesShare.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L59) +- [apiShareOperationsToShares/changingFilesShare.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L60) + +Scenario Outline: Moving a file into a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L89) +- [apiWebdavMove2/moveFile.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L90) +- [apiWebdavMove2/moveFile.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L91) +- [apiWebdavMove2/moveFile.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L92) + Scenario Outline: Moving a file out of a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L112) +- [apiWebdavMove2/moveFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L113) + Scenario Outline: Moving a folder into a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L136) +- [apiWebdavMove2/moveFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L137) +- [apiWebdavMove2/moveFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L138) +- [apiWebdavMove2/moveFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L139) + Scenario Outline: Moving a folder out of a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L160) +- [apiWebdavMove2/moveFile.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L161) + Scenario Outline: Moving a file to a shared folder with no permissions +- [apiWebdavMove2/moveFile.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L181) +- [apiWebdavMove2/moveFile.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L182) + Scenario Outline: Moving a file to overwrite a file in a shared folder with no permissions +- [apiWebdavMove2/moveFile.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L200) +- [apiWebdavMove2/moveFile.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L201) + Scenario Outline: rename a file into an invalid filename +- [apiWebdavMove2/moveFile.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L219) +- [apiWebdavMove2/moveFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L220) + Scenario Outline: Checking file id after a move between received shares +- [apiWebdavMove2/moveFile.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L255) +- [apiWebdavMove2/moveFile.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L256) + Scenario Outline: Renaming a file to a path with extension .part should not be possible +- [apiWebdavMove2/moveFile.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L272) +- [apiWebdavMove2/moveFile.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L273) + +#### [OCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) +- [apiVersions/fileVersionsSharingToShares.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L33) + +#### [restoring an older version of a shared file deletes the share](https://github.com/owncloud/ocis/issues/765) +- [apiShareManagementToShares/acceptShares.feature:473](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L473) +- [apiVersions/fileVersionsSharingToShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L44) + +#### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) +- [apiVersions/fileVersionsSharingToShares.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L134) +- [apiVersions/fileVersionsSharingToShares.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L149) +- [apiVersions/fileVersionsSharingToShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L163) +- [apiVersions/fileVersionsSharingToShares.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L250) +- [apiVersions/fileVersionsSharingToShares.feature:251](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L251) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiVersions/fileVersionsSharingToShares.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L179) + +####[not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) +- [apiVersions/fileVersionsSharingToShares.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L222) +- [apiVersions/fileVersionsSharingToShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L223) + +#### [getting the metadata without permission results in a 403 error](https://github.com/owncloud/ocis/issues/773) +- [apiVersions/fileVersionsSharingToShares.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L256) + +#### [The version number of a file is incorrect because of the incorrect number of `` and `` element](https://github.com/owncloud/ocis/issues/1234) +- [apiVersions/fileVersionsSharingToShares.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L267) + +#### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +#### [Expiration date for user shares is not implemented](https://github.com/owncloud/ocis/issues/1250) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L26) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L27) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L55) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L56) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L83) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L84) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L110) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L111) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L137) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L138) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L159) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L160) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L190) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L191) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L220) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L221) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L249) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L250) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L279) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L280) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:300](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L300) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L301) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L322) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:323](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L323) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:344](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L344) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:345](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L345) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L367) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L368) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:385](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L385) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:386](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L386) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L403) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L404) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:426](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L426) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:427](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L427) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L450) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L451) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L474) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L475) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:499](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L499) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:500](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L500) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L521) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:522](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L522) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:543](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L543) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:544](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L544) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:563](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L563) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:564](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L564) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:581](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L581) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:582](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L582) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:603](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L603) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:604](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L604) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:628](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L628) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:629](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L629) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:630](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L630) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:631](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L631) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L632) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:653](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L653) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:654](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L654) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:655](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L655) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:656](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L656) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:657](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L657) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L658) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:659](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L659) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:660](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L660) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:661](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L661) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:662](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L662) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:663](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L663) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:664](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L664) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:685](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L685) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:686](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L686) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:687](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L687) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:688](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L688) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:689](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L689) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:690](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L690) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:711](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L711) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:712](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L712) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:713](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L713) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:714](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L714) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:715](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L715) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:716](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L716) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:737](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L737) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:738](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L738) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:759](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L759) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:760](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L760) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:781](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L781) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:782](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L782) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L36) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L37) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L65) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L66) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L85) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L86) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L106) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L107) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L201) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L202) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L10) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L34) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L58) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L82) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L46) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L47) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L48) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L49) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L50) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L51) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L82) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L83) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L84) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L85) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L86) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L87) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:438](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L438) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:439](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L439) +- [apiShareOperationsToShares/accessToShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L71) +- [apiShareOperationsToShares/accessToShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L72) + +#### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +- [apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature#L15) +- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L18) +- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L21) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L51) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L52) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L70) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L71) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L72) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L73) +- [apiShareManagementToShares/moveReceivedShare.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L14) +- [apiShareManagementToShares/moveReceivedShare.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L28) +- [apiShareManagementToShares/moveReceivedShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L39) +- [apiShareManagementToShares/moveReceivedShare.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L70) +- [apiShareManagementToShares/moveReceivedShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L71) +- [apiShareManagementToShares/moveReceivedShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L73) +- [apiShareManagementToShares/moveReceivedShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L88) +- [apiShareManagementToShares/moveReceivedShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L118) +- [apiShareManagementToShares/moveReceivedShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L128) +- [apiShareManagementToShares/moveReceivedShare.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L138) +- [apiShareManagementToShares/moveReceivedShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L148) +- [apiShareManagementToShares/moveReceivedShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L158) +- [apiShareManagementToShares/moveReceivedShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L168) +- [apiShareManagementToShares/moveReceivedShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L197) +- [apiShareManagementToShares/moveReceivedShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L198) +- [apiShareManagementToShares/moveReceivedShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L221) +- [apiShareManagementToShares/moveReceivedShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L222) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L59) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L60) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L94) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L95) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L129) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L130) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L177) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L178) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L212) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L213) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L247) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L248) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:282](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L282) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L283) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L317) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L318) +- [apiShareUpdateToShares/updateShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L92) +- [apiShareUpdateToShares/updateShare.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L93) +- [apiShareUpdateToShares/updateShare.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L94) +- [apiShareUpdateToShares/updateShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L95) +- [apiShareUpdateToShares/updateShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L96) +- [apiShareUpdateToShares/updateShare.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L97) +- [apiShareUpdateToShares/updateShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L123) +- [apiShareUpdateToShares/updateShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L155) + +#### [No way to set default folder for received shares](https://github.com/owncloud/ocis/issues/1327) +- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L21) +- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L22) + +#### [Group shares support ](https://github.com/owncloud/ocis/issues/1289) +- [apiShareOperationsToShares/gettingShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L103) +- [apiShareOperationsToShares/gettingShares.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L104) +- [apiShareOperationsToShares/gettingShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L184) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) +#### [Group shares support](https://github.com/owncloud/ocis/issues/1289) +- [apiShareUpdateToShares/updateShare.feature:290](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L290) +- [apiShareUpdateToShares/updateShare.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L291) +- [apiShareUpdateToShares/updateShare.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L306) +- [apiShareUpdateToShares/updateShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L307) +- [apiShareUpdateToShares/updateShare.feature:334](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L334) +- [apiShareUpdateToShares/updateShare.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L335) +- [apiShareUpdateToShares/updateShare.feature:364](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L364) +- [apiShareUpdateToShares/updateShare.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L365) + +#### [Group shares support](https://github.com/owncloud/ocis/issues/1289) +#### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +- [apiShareUpdateToShares/updateShare.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L61) +- [apiShareUpdateToShares/updateShare.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L62) +- [apiShareUpdateToShares/updateShare.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L75) +- [apiShareUpdateToShares/updateShare.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L76) +- [apiShareUpdateToShares/updateShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L115) +- [apiShareUpdateToShares/updateShare.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L116) +- [apiShareUpdateToShares/updateShare.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L117) +- [apiShareUpdateToShares/updateShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L118) +- [apiShareUpdateToShares/updateShare.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L119) +- [apiShareUpdateToShares/updateShare.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L120) +- [apiShareUpdateToShares/updateShare.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L252) +- [apiShareUpdateToShares/updateShare.feature:253](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L253) +- [apiShareUpdateToShares/updateShare.feature:265](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L265) +- [apiShareUpdateToShares/updateShare.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L266) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L34) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L35) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L54) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L55) + +#### [Share additional info](https://github.com/owncloud/ocis/issues/1253) +#### [Share extra attributes](https://github.com/owncloud/ocis/issues/1224) +#### [Edit user share response has an "name" field](https://github.com/owncloud/ocis/issues/1225) +- [apiShareUpdateToShares/updateShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L230) +- [apiShareUpdateToShares/updateShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L231) + +#### [user can access version metadata of a received share before accepting it](https://github.com/owncloud/ocis/issues/760) +- [apiVersions/fileVersionsSharingToShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L279) + +#### [when a share exists its impossible to share a renamed folder](https://github.com/owncloud/ocis/issues/719) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:611](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L611) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:612](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L612) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:665](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L665) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:666](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L666) + +#### [ocis-storage PROPFIND on a file uploaded by share receiver is not possible](https://github.com/owncloud/ocis/issues/968) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L26) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L27) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L55) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L56) + +#### [OCIS-storage reading a file that a collaborator uploaded is impossible](https://github.com/owncloud/ocis/issues/763) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L70) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L71) + + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiWebdavUploadTUS/uploadToShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L52) +- [apiWebdavUploadTUS/uploadToShare.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L53) + +#### [Share lists deleted user as 'user'](https://github.com/owncloud/ocis/issues/903) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L632) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:633](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L633) + +#### [OCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) +- [apiVersions/fileVersionsSharingToShares.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L291) + +#### [deleting a share with wrong authentication returns OCS status 996 / HTTP 500](https://github.com/owncloud/ocis/issues/1229) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#211) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#212) + +### User Management +User and group management features + +#### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) +special character username not valid +- [apiProvisioning-v1/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L29) +- [apiProvisioning-v1/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L30) +- [apiProvisioning-v1/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L121) +- [apiProvisioning-v1/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L122) +- [apiProvisioning-v1/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L123) +- [apiProvisioning-v1/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L29) +- [apiProvisioning-v1/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L30) +- [apiProvisioning-v1/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L29) +- [apiProvisioning-v1/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L30) +- [apiProvisioning-v1/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L29) +- [apiProvisioning-v1/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L30) +- [apiProvisioning-v1/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L31) +- [apiProvisioning-v1/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L32) +- [apiProvisioning-v1/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L34) +- [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) +- [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) +- [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) +- [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) +- [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) +- [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) +- [apiProvisioning-v2/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L30) +- [apiProvisioning-v2/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L29) +- [apiProvisioning-v2/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L30) +- [apiProvisioning-v2/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L31) +- [apiProvisioning-v2/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L32) +- [apiProvisioning-v2/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L34) +- [apiProvisioning-v2/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L35) + +#### [Creating an already existing user works](https://github.com/owncloud/ocis-accounts/issues/80) +- [apiProvisioning-v1/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L32) +- [apiProvisioning-v2/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L32) +- [apiProvisioning-v1/addUser.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L39) +- [apiProvisioning-v2/addUser.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L39) + +#### [Password can be set to empty](https://github.com/owncloud/product/issues/197) +- [apiProvisioning-v1/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L69) +- [apiProvisioning-v2/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L69) + +#### [Username is case sensitive](https://github.com/owncloud/ocis-accounts/issues/128) +- [apiProvisioning-v1/addUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L102) +- [apiProvisioning-v2/addUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L102) + +#### [Client token generation not implemented](https://github.com/owncloud/ocis/issues/197) +- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L39) +- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L67) +- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L39) +- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L67) + +#### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis/issues/1420) +- [apiProvisioning-v1/enableUser.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L92) +- [apiProvisioning-v1/enableUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L102) +- [apiProvisioning-v1/enableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L129) +- [apiProvisioning-v1/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L99) +- [apiProvisioning-v1/disableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L129) +- [apiProvisioning-v1/disableUser.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L165) +- [apiProvisioning-v1/disableUser.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L172) +- [apiProvisioning-v1/disableUser.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L190) +- [apiProvisioning-v1/disableUser.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L203) +- [apiProvisioning-v1/disableUser.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L219) +- [apiProvisioning-v2/disableUser.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L79) +- [apiProvisioning-v2/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L99) +- [apiProvisioning-v2/disableUser.feature:108](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L108) +- [apiProvisioning-v2/disableUser.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L130) +- [apiProvisioning-v2/disableUser.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L166) +- [apiProvisioning-v2/disableUser.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L173) +- [apiProvisioning-v2/disableUser.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L191) +- [apiProvisioning-v2/disableUser.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L204) +- [apiProvisioning-v2/disableUser.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L220) + +#### [displayname of user can be changed to empty](https://github.com/owncloud/ocis-ocs/issues/51) +- [apiProvisioning-v1/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L47) +- [apiProvisioning-v2/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L47) + +#### [quota query](https://github.com/owncloud/ocis/issues/1313) +_getting and setting quota_ +- [apiMain/quota.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L9) Scenario: Uploading a file as owner having enough quota +- [apiMain/quota.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L16) Scenario: Uploading a file as owner having insufficient quota +- [apiMain/quota.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L23) Scenario: Overwriting a file as owner having enough quota +- [apiMain/quota.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L30) Scenario: Overwriting a file as owner having insufficient quota + Scenario Outline: Retrieving folder quota when no quota is set +- [apiWebdavProperties1/getQuota.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L17) +- [apiWebdavProperties1/getQuota.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L18) + Scenario Outline: Retrieving folder quota when quota is set +- [apiWebdavProperties1/getQuota.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L27) +- [apiWebdavProperties1/getQuota.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L28) + +#### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) +- [apiProvisioning-v1/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L56) +- [apiProvisioning-v1/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L122) +- [apiProvisioning-v2/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L56) +- [apiProvisioning-v2/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L122) +- [apiProvisioning-v2/enableUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L34) +- [apiProvisioning-v2/enableUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L56) +- [apiProvisioning-v2/enableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L64) + +#### [user can get info of other users/ cloud/users endpoints not authenticated](https://github.com/owncloud/product/issues/248) +- [apiProvisioning-v2/deleteUser.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L54) +- [apiProvisioning-v1/getUser.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L81) +- [apiProvisioning-v2/getUser.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L82) +- [apiProvisioning-v2/getUsers.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUsers.feature#L44) + +#### [incorrect ocs(v2) status value when getting info of user that does not exist should be 404, gives 998](https://github.com/owncloud/product/issues/250) +_ocs: api compatibility, return correct status code_ +- [apiProvisioning-v2/getUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L47) + +#### [subadmin endpoints not implemented for users](https://github.com/owncloud/product/issues/289) +- [apiProvisioning-v1/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L125) +- [apiProvisioning-v1/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L48) +- [apiProvisioning-v1/deleteUser.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L73) +- [apiProvisioning-v1/disableUser.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L222) +- [apiProvisioning-v1/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L131) +- [apiProvisioning-v1/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L143) +- [apiProvisioning-v1/getUser.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L170) +- [apiProvisioning-v1/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L113) + +- [apiProvisioning-v2/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L125) +- [apiProvisioning-v2/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L48) +- [apiProvisioning-v2/deleteUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L64) +- [apiProvisioning-v2/deleteUser.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L74) +- [apiProvisioning-v2/deleteUser.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L88) +- [apiProvisioning-v2/deleteUser.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L101) +- [apiProvisioning-v2/deleteUser.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L115) +- [apiProvisioning-v2/disableUser.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L48) +- [apiProvisioning-v2/disableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L64) +- [apiProvisioning-v2/disableUser.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L223) +- [apiProvisioning-v2/disableUser.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L237) +- [apiProvisioning-v2/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L131) +- [apiProvisioning-v2/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L143) +- [apiProvisioning-v2/editUser.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L159) +- [apiProvisioning-v2/enableUser.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L104) +- [apiProvisioning-v2/enableUser.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L118) +- [apiProvisioning-v2/enableUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L131) +- [apiProvisioning-v2/enableUser.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L146) +- [apiProvisioning-v2/getUser.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L145) +- [apiProvisioning-v2/getUser.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L156) +- [apiProvisioning-v2/getUser.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L171) +- [apiProvisioning-v2/resetUserPassword.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L101) +- [apiProvisioning-v2/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L113) +- [apiProvisioning-v2/resetUserPassword.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L129) + +#### [subadmin endpoints not implemented for groups](https://github.com/owncloud/product/issues/289) - [apiProvisioningGroups-v1/addGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L87) - [apiProvisioningGroups-v1/addToGroup.feature:133](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L133) - [apiProvisioningGroups-v1/addToGroup.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L146) @@ -2294,17 +1964,56 @@ - [apiProvisioningGroups-v2/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L110) - [apiProvisioningGroups-v2/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L123) -### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) - special character username not valid +#### [creating existing group doesn't gives error](https://github.com/owncloud/product/issues/282) +- [apiProvisioningGroups-v1/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L94) +- [apiProvisioningGroups-v2/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L94) + +#### [cannot create group with '/'](https://github.com/owncloud/product/issues/285) +- [apiProvisioningGroups-v1/addToGroup.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L75) +- [apiProvisioningGroups-v1/addToGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L76) +- [apiProvisioningGroups-v1/addToGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L77) +- [apiProvisioningGroups-v1/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L85) +- [apiProvisioningGroups-v1/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L86) +- [apiProvisioningGroups-v1/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L87) +- [apiProvisioningGroups-v1/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L38) +- [apiProvisioningGroups-v1/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L76) +- [apiProvisioningGroups-v1/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L77) +- [apiProvisioningGroups-v1/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L78) + +- [apiProvisioningGroups-v2/addToGroup.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L70) +- [apiProvisioningGroups-v2/addToGroup.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L71) +- [apiProvisioningGroups-v2/addToGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L72) +- [apiProvisioningGroups-v2/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L85) +- [apiProvisioningGroups-v2/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L86) +- [apiProvisioningGroups-v2/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L87) +- [apiProvisioningGroups-v2/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L38) +- [apiProvisioningGroups-v2/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L76) +- [apiProvisioningGroups-v2/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L77) +- [apiProvisioningGroups-v2/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L78) + +#### [adding user to non-existent group gives wrong statuscode](https://github.com/owncloud/product/issues/286) +- [apiProvisioningGroups-v1/addToGroup.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L107) +- [apiProvisioningGroups-v1/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L101) +- [apiProvisioningGroups-v2/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L101) + +#### [adding user to empty group gives wrong statuscode](https://github.com/owncloud/product/issues/287) +- [apiProvisioningGroups-v1/addToGroup.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L116) + +#### [adding non-existent user to a group gives wrong status code](https://github.com/owncloud/product/issues/288) +- [apiProvisioningGroups-v1/addToGroup.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L124) + + +#### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) +_special character username not valid_ - [apiProvisioningGroups-v1/getGroup.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L11) - [apiProvisioningGroups-v2/getGroup.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroup.feature#L11) -### [normal users can list the members of the group](https://github.com/owncloud/product/issues/290) +#### [normal users can list the members of the group](https://github.com/owncloud/product/issues/290) - [apiProvisioningGroups-v1/getGroup.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L81) - [apiProvisioningGroups-v1/deleteGroup.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L90) - [apiProvisioningGroups-v2/getGroup.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroup.feature#L83) -### [ocs v2 invalid status code for group endpoints](https://github.com/owncloud/product/issues/291) +#### [ocs v2 invalid status code for group endpoints](https://github.com/owncloud/product/issues/291) - [apiProvisioningGroups-v2/addGroup.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L102) - [apiProvisioningGroups-v2/addToGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L94) - [apiProvisioningGroups-v2/addToGroup.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L102) @@ -2314,78 +2023,332 @@ - [apiProvisioningGroups-v2/getUserGroups.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L73) - [apiProvisioningGroups-v2/removeFromGroup.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L138) -### [requests to webdav URLs with an fileid containing an invalid storage_id result in error 500](https://github.com/owncloud/ocis/issues/772) -- [apiVersions/fileVersions.feature:384](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L384) +#### [user-sync endpoint does not exist](https://github.com/owncloud/ocis/issues/1241) +- [apiMain/userSync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L18) +- [apiMain/userSync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L19) +- [apiMain/userSync.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L29) +- [apiMain/userSync.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L30) +- [apiMain/userSync.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L40) +- [apiMain/userSync.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L41) +- [apiMain/userSync.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L52) +- [apiMain/userSync.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L53) +- [apiMain/userSync.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L63) +- [apiMain/userSync.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L64) -### [requesting propfind with invalid fileid gives 502 error](https://github.com/owncloud/ocis/issues/771) -- [apiVersions/fileVersions.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L395) -- [apiVersions/fileVersions.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L396) -- [apiVersions/fileVersions.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L397) +- [apiProvisioning-v1/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L11) +- [apiProvisioning-v1/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L19) +- [apiProvisioning-v1/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L27) +- [apiProvisioning-v1/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L35) +- [apiProvisioning-v1/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L11) +- [apiProvisioning-v1/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L21) +- [apiProvisioning-v2/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L11) +- [apiProvisioning-v2/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L19) +- [apiProvisioning-v2/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L27) +- [apiProvisioning-v2/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L35) +- [apiProvisioning-v2/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L11) +- [apiProvisioning-v2/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L21) +- [apiProvisioning-v2/getSubAdmins.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L30) +- [apiProvisioning-v2/getSubAdmins.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L44) -### [user can access version metadata of a received share before accepting it](https://github.com/owncloud/ocis/issues/760) -- [apiVersions/fileVersionsSharingToShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L279) +### Other +API, search, favorites, config, capabilities, not existing endpoints, CORS and others -### [when a share exists its impossible to share a renamed folder](https://github.com/owncloud/ocis/issues/719) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:611](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L611) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:612](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L612) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:665](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L665) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:666](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L666) +#### [no robots.txt available](https://github.com/owncloud/ocis/issues/1314) +- [apiMain/main.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/main.feature#L5) Scenario: robots.txt file should be accessible -### [ocis-storage does not use the mtime send in the `Upload-Metadata` header when uploading via TUS](https://github.com/owncloud/ocis/issues/965) -- [apiWebdavUploadTUS/uploadFileMtime.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L17) -- [apiWebdavUploadTUS/uploadFileMtime.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L18) -- [apiWebdavUploadTUS/uploadFileMtime.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L27) -- [apiWebdavUploadTUS/uploadFileMtime.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L28) -- [apiWebdavUploadTUS/uploadFileMtime.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L38) -- [apiWebdavUploadTUS/uploadFileMtime.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L39) -- [apiWebdavUploadTUS/uploadFileMtime.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L49) -- [apiWebdavUploadTUS/uploadFileMtime.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L50) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L40) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L41) +#### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis/issues/1319) +#### [no command equivalent to occ](https://github.com/owncloud/ocis/issues/1317) +- [apiMain/status.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/status.feature#L5) Scenario: Status.php is correct +#### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis/issues/1338) -### [ocis-storage PROPFIND on a file uploaded by share receiver is not possible](https://github.com/owncloud/ocis/issues/968) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L26) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L27) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L55) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L56) +#### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) +- [apiAuthOcs/ocsDELETEAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsDELETEAuth.feature#L10) Scenario: send DELETE requests to OCS endpoints as admin with wrong password +- [apiAuthOcs/ocsGETAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L10) Scenario: using OCS anonymously +- [apiAuthOcs/ocsGETAuth.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L33) Scenario: ocs config end point accessible by unauthorized users +- [apiAuthOcs/ocsGETAuth.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L53) Scenario: using OCS with non-admin basic auth +- [apiAuthOcs/ocsGETAuth.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L88) Scenario: using OCS as normal user with wrong password +- [apiAuthOcs/ocsGETAuth.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L121) Scenario:using OCS with admin basic auth +- [apiAuthOcs/ocsGETAuth.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L139) Scenario: using OCS as admin user with wrong password +- [apiAuthOcs/ocsPOSTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPOSTAuth.feature#L10) Scenario: send POST requests to OCS endpoints as normal user with wrong password +- [apiAuthOcs/ocsPUTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPUTAuth.feature#L10) Scenario: send PUT request to OCS endpoints as admin with wrong password -### [oCIS-storage reading a file that a collaborator uploaded is impossible](https://github.com/owncloud/ocis/issues/763) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L70) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L71) +#### [server returns 500 when trying to access a not existing file](https://github.com/owncloud/ocis-reva/issues/13) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavDELETEAuth.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L36) Scenario: send DELETE requests to another user's webDav endpoints as normal user -### [sharing with group not available](https://github.com/owncloud/product/issues/293) -- [apiWebdavUploadTUS/uploadToShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L52) -- [apiWebdavUploadTUS/uploadToShare.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L53) +#### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavLOCKAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavLOCKAuth.feature#L38) Scenario: send LOCK requests to another user's webDav endpoints as normal user +- [apiAuthWebDav/webDavMKCOLAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMKCOLAuth.feature#L37) Scenario: send MKCOL requests to another user's webDav endpoints as normal user +- [apiAuthWebDav/webDavPROPFINDAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPFINDAuth.feature#L37) Scenario: send PROPFIND requests to another user's webDav endpoints as normal user +- [apiAuthWebDav/webDavPROPPATCHAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPPATCHAuth.feature#L38) Scenario: send PROPPATCH requests to another user's webDav endpoints as normal user -### [TUS OPTIONS requests does not reply with TUS headers when invalid password](https://github.com/owncloud/ocis/issues/1012) -- [apiWebdavUploadTUS/optionsRequest.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L29) -- [apiWebdavUploadTUS/optionsRequest.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L40) +#### [renaming a resource does not work](https://github.com/owncloud/ocis-reva/issues/14) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavMOVEAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMOVEAuth.feature#L37) Scenario: send MOVE requests to another user's webDav endpoints as normal user -### [invalid file-names should not be created using the TUS protocol](https://github.com/owncloud/ocis/issues/1001) -- [apiWebdavUploadTUS/uploadFile.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L135) -- [apiWebdavUploadTUS/uploadFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L136) -- [apiWebdavUploadTUS/uploadFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L137) -- [apiWebdavUploadTUS/uploadFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L138) -- [apiWebdavUploadTUS/uploadFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L139) -- [apiWebdavUploadTUS/uploadFile.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L140) -- [apiWebdavUploadTUS/uploadFile.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L141) -- [apiWebdavUploadTUS/uploadFile.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L142) +#### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis/issues/1287) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavPOSTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPOSTAuth.feature#L38) Scenario: send POST requests to another user's webDav endpoints as normal user -### [upload a file using TUS resource URL as an other user should not work](https://github.com/owncloud/ocis/issues/1141) -- [apiWebdavUploadTUS/uploadFile.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L155) -- [apiWebdavUploadTUS/uploadFile.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L156) +#### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavPUTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPUTAuth.feature#L38) Scenario: send PUT requests to another user's webDav endpoints as normal user -### [Share lists deleted user as 'user'](https://github.com/owncloud/ocis/issues/903) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L632) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:633](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L633) +#### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis/issues/1285) +#### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis/issues/1286) +- [apiCapabilities/capabilitiesWithNormalUser.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilitiesWithNormalUser.feature#L11) Scenario: getting default capabilities with normal user -### [Deletion time in trash bin shows a wrong date](https://github.com/owncloud/ocis/issues/541) -- [apiTrashbin/trashbinFilesFolders.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L284) -- [apiTrashbin/trashbinFilesFolders.feature:285](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L285) +#### [REPORT request not implemented](https://github.com/owncloud/ocis/issues/1330) +Scenario Outline: search for entry by pattern +- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) +- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) + Scenario Outline: search for entries by only some letters from the middle of the entry name +- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) +- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) + Scenario Outline: search for files by extension +- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) +- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) + Scenario Outline: search with empty field +- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) +- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) + Scenario Outline: limit returned search entries +- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) +- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) + Scenario Outline: limit returned search entries to only 1 entry +- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) +- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) + Scenario Outline: limit returned search entries to more entires than there are +- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) +- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) + Scenario Outline: report extra properties in search entries for a file +- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) +- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) + Scenario Outline: report extra properties in search entries for a folder +- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) +- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) + Scenario Outline: search for entry with emoji by pattern +- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) +- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) +- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) Scenario: search for entry by tags using REPORT method +- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) Scenario: share a tagged resource to another internal user and sharee searches for tag using REPORT method +- [apiWebdavOperations/search.feature:254](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L254) Scenario: search for entries across various folders by tags using REPORT method -### [oCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) -- [apiVersions/fileVersionsSharingToShares.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L291) +And other missing implementation of favorites +- [apiFavorites/favorites.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L91) +- [apiFavorites/favorites.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L92) +- [apiFavorites/favorites.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L112) +- [apiFavorites/favorites.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L113) +- [apiFavorites/favorites.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L128) +- [apiFavorites/favorites.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L129) +- [apiFavorites/favorites.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L148) +- [apiFavorites/favorites.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L149) +- [apiFavorites/favorites.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L176) +- [apiFavorites/favorites.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L177) +- [apiFavorites/favorites.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L217) +- [apiFavorites/favorites.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L218) +- [apiFavorites/favoritesSharingToShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L22) +- [apiFavorites/favoritesSharingToShares.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L23) +- [apiFavorites/favoritesSharingToShares.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L36) +- [apiFavorites/favoritesSharingToShares.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L37) +- [apiFavorites/favoritesSharingToShares.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L49) +- [apiFavorites/favoritesSharingToShares.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L50) +- [apiFavorites/favoritesSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L63) +- [apiFavorites/favoritesSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L64) + +#### CSRF Headers +Scenario Outline: Downloading a file should serve security headers +- [apiWebdavOperations/downloadFile.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L60) +- [apiWebdavOperations/downloadFile.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L61) + Scenario Outline: Doing a GET with a web login should work without CSRF token on the new backend +- [apiWebdavOperations/downloadFile.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L72) +- [apiWebdavOperations/downloadFile.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L73) + Scenario Outline: Doing a GET with a web login should work with CSRF token on the new backend +- [apiWebdavOperations/downloadFile.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L84) +- [apiWebdavOperations/downloadFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L85) + +#### Authentication +Scenario Outline: Unauthenticated call +- [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) +- [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) + Scenario Outline: A disabled user cannot use webdav +- [apiWebdavOperations/refuseAccess.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L33) +- [apiWebdavOperations/refuseAccess.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L34) + + +#### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) +Scenario Outline: Do a PROPFIND to a non-existing URL +- [apiWebdavProperties2/getFileProperties.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L242) +- [apiWebdavProperties2/getFileProperties.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L243) + + +#### [system configuration options missing](https://github.com/owncloud/ocis/issues/1323) + +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L31) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L32) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L65) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L66) + +#### [wildcard Access-Control-Allow-Origin](https://github.com/owncloud/ocis/issues/1340) +- [apiAuth/cors.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L24) +- [apiAuth/cors.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L25) +- [apiAuth/cors.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L26) +- [apiAuth/cors.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L27) +- [apiAuth/cors.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L28) +- [apiAuth/cors.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L29) +- [apiAuth/cors.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L30) +- [apiAuth/cors.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L31) +- [apiAuth/cors.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L32) +- [apiAuth/cors.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L33) +- [apiAuth/cors.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L34) +- [apiAuth/cors.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L35) +- [apiAuth/cors.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L36) +- [apiAuth/cors.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L37) +- [apiAuth/cors.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L38) +- [apiAuth/cors.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L39) +- [apiAuth/cors.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L40) +- [apiAuth/cors.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L41) +- [apiAuth/cors.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L59) +- [apiAuth/cors.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L60) +- [apiAuth/cors.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L61) +- [apiAuth/cors.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L62) +- [apiAuth/cors.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L63) +- [apiAuth/cors.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L64) +- [apiAuth/cors.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L83) +- [apiAuth/cors.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L84) +- [apiAuth/cors.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L85) +- [apiAuth/cors.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L86) +- [apiAuth/cors.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L87) +- [apiAuth/cors.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L88) +- [apiAuth/cors.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L89) +- [apiAuth/cors.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L90) +- [apiAuth/cors.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L91) +- [apiAuth/cors.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L92) +- [apiAuth/cors.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L93) +- [apiAuth/cors.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L94) +- [apiAuth/cors.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L95) +- [apiAuth/cors.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L96) +- [apiAuth/cors.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L97) +- [apiAuth/cors.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L98) +- [apiAuth/cors.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L99) +- [apiAuth/cors.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L100) +- [apiAuth/cors.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L118) +- [apiAuth/cors.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L119) +- [apiAuth/cors.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L120) +- [apiAuth/cors.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L121) +- [apiAuth/cors.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L122) +- [apiAuth/cors.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L123) +- [apiAuth/cors.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L142) +- [apiAuth/cors.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L143) +- [apiAuth/cors.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L144) +- [apiAuth/cors.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L145) +- [apiAuth/cors.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L146) +- [apiAuth/cors.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L147) +- [apiAuth/cors.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L148) +- [apiAuth/cors.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L149) +- [apiAuth/cors.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L150) +- [apiAuth/cors.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L151) +- [apiAuth/cors.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L152) +- [apiAuth/cors.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L153) +- [apiAuth/cors.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L154) +- [apiAuth/cors.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L155) +- [apiAuth/cors.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L156) +- [apiAuth/cors.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L157) +- [apiAuth/cors.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L178) +- [apiAuth/cors.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L179) +- [apiAuth/cors.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L180) +- [apiAuth/cors.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L181) +- [apiAuth/cors.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L182) +- [apiAuth/cors.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L183) + +#### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) +#### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) +- [apiAuthOcs/ocsGETAuth.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L243) + +#### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) +- [apiAuthWebDav/webDavDELETEAuth.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L78) +- [apiAuthWebDav/webDavDELETEAuth.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L92) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) +- [apiCapabilities/capabilities.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L8) +- [apiCapabilities/capabilities.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L15) +- [apiCapabilities/capabilities.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L21) +- [apiCapabilities/capabilities.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L27) +- [apiCapabilities/capabilities.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L33) +- [apiCapabilities/capabilities.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L38) +- [apiCapabilities/capabilities.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L80) +- [apiCapabilities/capabilities.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L93) +- [apiCapabilities/capabilities.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L107) +- [apiCapabilities/capabilities.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L116) +- [apiCapabilities/capabilities.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L125) +- [apiCapabilities/capabilities.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L132) +- [apiCapabilities/capabilities.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L138) +- [apiCapabilities/capabilities.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L144) +- [apiCapabilities/capabilities.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L151) +- [apiCapabilities/capabilities.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L157) +- [apiCapabilities/capabilities.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L166) +- [apiCapabilities/capabilities.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L176) +- [apiCapabilities/capabilities.feature:187](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L187) +- [apiCapabilities/capabilities.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L198) +- [apiCapabilities/capabilities.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L208) +- [apiCapabilities/capabilities.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L219) +- [apiCapabilities/capabilities.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L231) +- [apiCapabilities/capabilities.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L238) +- [apiCapabilities/capabilities.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L245) +- [apiCapabilities/capabilities.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L252) +- [apiCapabilities/capabilities.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L275) +- [apiCapabilities/capabilities.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L292) +- [apiCapabilities/capabilities.feature:313](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L313) +- [apiCapabilities/capabilities.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L335) +- [apiCapabilities/capabilities.feature:357](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L357) +- [apiCapabilities/capabilities.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L379) +- [apiCapabilities/capabilities.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L404) +- [apiCapabilities/capabilities.feature:429](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L429) +- [apiCapabilities/capabilities.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L454) +- [apiCapabilities/capabilities.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L476) +- [apiCapabilities/capabilities.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L498) +- [apiCapabilities/capabilities.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L521) +- [apiCapabilities/capabilities.feature:546](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L546) +- [apiCapabilities/capabilities.feature:568](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L568) +- [apiCapabilities/capabilities.feature:590](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L590) +- [apiCapabilities/capabilities.feature:613](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L613) +- [apiCapabilities/capabilities.feature:637](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L637) +- [apiCapabilities/capabilities.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L658) +- [apiCapabilities/capabilities.feature:680](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L680) +- [apiCapabilities/capabilities.feature:703](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L703) +- [apiCapabilities/capabilities.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L729) +- [apiCapabilities/capabilities.feature:758](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L758) +- [apiCapabilities/capabilities.feature:787](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L787) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L25) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L26) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L47) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L48) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L66) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L67) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L87) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L88) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L25) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L26) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L44) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L45) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L64) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L65) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L83) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L84) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L103) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L104) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L122) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L123) + +- [apiMain/caldav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L8) +- [apiMain/caldav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L15) +- [apiMain/caldav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L23) +- [apiMain/caldav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L31) +- [apiMain/carddav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L8) +- [apiMain/carddav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L15) +- [apiMain/carddav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L23) +- [apiMain/carddav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L31) + +- [apiTranslation/translation.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L29) +- [apiTranslation/translation.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L30) -### [deleting a share with wrong authentication returns OCS status 996 / HTTP 500](https://github.com/owncloud/ocis/issues/1229) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#211) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#212) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index 3591d6d04d..88bca32aa3 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -1,962 +1,65 @@ ## Scenarios from ownCloud10 core API tests that are expected to fail with owncloud storage -- [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) -- [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) +### File +Basic file management like up and download, move, copy, properties, trash, versions and chunking. -### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) +#### [Implement Trashbin Feature for ocis storage](https://github.com/owncloud/product/issues/209) -- [apiMain/checksums.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L24) -- [apiMain/checksums.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L25) -- [apiMain/checksums.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L35) -- [apiMain/checksums.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L36) -- [apiMain/checksums.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L46) -- [apiMain/checksums.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L47) -- [apiMain/checksums.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L50) -- [apiMain/checksums.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L58) -- [apiMain/checksums.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L67) -- [apiMain/checksums.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L99) -- [apiMain/checksums.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L100) -- [apiMain/checksums.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L103) -- [apiMain/checksums.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L110) -- [apiMain/checksums.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L119) -- [apiMain/checksums.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L129) -- [apiMain/checksums.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L138) -- [apiMain/checksums.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L147) -- [apiMain/checksums.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L158) -- [apiMain/checksums.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L174) -- [apiMain/checksums.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L192) -- [apiMain/checksums.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L217) -- [apiMain/checksums.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L218) -- [apiMain/checksums.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L239) -- [apiMain/checksums.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L240) -- [apiMain/checksums.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L258) -- [apiMain/checksums.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L279) -- [apiMain/checksums.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L280) -- [apiMain/checksums.feature:295](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L295) -- [apiMain/checksums.feature:296](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L296) -- [apiMain/checksums.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L308) -- [apiMain/checksums.feature:309](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L309) -- [apiMain/checksums.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L312) -- [apiMain/checksums.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L324) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L26) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L27) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L48) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L49) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L68) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L69) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L90) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L91) -### [no robots.txt available](https://github.com/owncloud/ocis/issues/1314) - -- [apiMain/main.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/main.feature#L5) - -### [quota query](https://github.com/owncloud/ocis/issues/1313) - -- [apiMain/quota.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L9) -- [apiMain/quota.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L16) -- [apiMain/quota.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L23) -- [apiMain/quota.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L30) -- [apiMain/quota.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L41) -- [apiMain/quota.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L54) -- [apiMain/quota.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L68) -- [apiMain/quota.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L82) -- [apiMain/quota.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L99) -- [apiMain/quota.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L112) - -### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis/issues/1319) - -### [no command equivalent to occ](https://github.com/owncloud/ocis/issues/1317) - -- [apiMain/status.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/status.feature#L5) - -### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis/issues/1338) -### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) - -- [apiAuthOcs/ocsDELETEAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsDELETEAuth.feature#L10) -- [apiAuthOcs/ocsGETAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L10) -- [apiAuthOcs/ocsGETAuth.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L33) -- [apiAuthOcs/ocsGETAuth.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L53) -- [apiAuthOcs/ocsGETAuth.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L88) -- [apiAuthOcs/ocsGETAuth.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L121) -- [apiAuthOcs/ocsGETAuth.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L139) -- [apiAuthOcs/ocsPOSTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPOSTAuth.feature#L10) -- [apiAuthOcs/ocsPUTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPUTAuth.feature#L10) - -### [server returns 500 when trying to access a not existing file](https://github.com/owncloud/ocis-reva/issues/13) - -- [apiAuthWebDav/webDavDELETEAuth.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L36) - -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - -- [apiAuthWebDav/webDavLOCKAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavLOCKAuth.feature#L38) - -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - -- [apiAuthWebDav/webDavMKCOLAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMKCOLAuth.feature#L37) - -### [renaming a resource does not work](https://github.com/owncloud/ocis-reva/issues/14) - -- [apiAuthWebDav/webDavMOVEAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMOVEAuth.feature#L37) - -### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis/issues/1287) - -- [apiAuthWebDav/webDavPOSTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPOSTAuth.feature#L38) - -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - -- [apiAuthWebDav/webDavPROPFINDAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPFINDAuth.feature#L37) - -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - -- [apiAuthWebDav/webDavPROPPATCHAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPPATCHAuth.feature#L38) - -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - -- [apiAuthWebDav/webDavPUTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPUTAuth.feature#L38) - -### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis/issues/1285) -### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis/issues/1286) - -- [apiCapabilities/capabilitiesWithNormalUser.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilitiesWithNormalUser.feature#L11) - -### [REPORT request not implemented](https://github.com/owncloud/ocis/issues/1330) -### And other missing implementation of favorites - -- [apiFavorites/favorites.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L91) -- [apiFavorites/favorites.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L92) -- [apiFavorites/favorites.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L112) -- [apiFavorites/favorites.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L113) -- [apiFavorites/favorites.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L128) -- [apiFavorites/favorites.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L129) -- [apiFavorites/favorites.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L148) -- [apiFavorites/favorites.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L149) -- [apiFavorites/favorites.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L176) -- [apiFavorites/favorites.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L177) -- [apiFavorites/favorites.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L217) -- [apiFavorites/favorites.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L218) -- [apiFavorites/favoritesSharingToShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L22) -- [apiFavorites/favoritesSharingToShares.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L23) -- [apiFavorites/favoritesSharingToShares.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L36) -- [apiFavorites/favoritesSharingToShares.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L37) -- [apiFavorites/favoritesSharingToShares.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L49) -- [apiFavorites/favoritesSharingToShares.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L50) -- [apiFavorites/favoritesSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L63) -- [apiFavorites/favoritesSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L64) -- [apiFavorites/favoritesSharingToShares.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L77) -- [apiFavorites/favoritesSharingToShares.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L78) - -- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) -- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) -- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) -- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) -- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) -- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) -- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) -- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) -- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) -- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) -- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) -- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) -- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) -- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) -- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) -- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) -- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) -- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) -- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) -- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) -- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) -- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) -- [apiWebdavOperations/search.feature:254](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L254) - -### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) -### special character username not valid - -- [apiProvisioning-v1/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L29) -- [apiProvisioning-v1/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L30) -- [apiProvisioning-v1/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L121) -- [apiProvisioning-v1/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L122) -- [apiProvisioning-v1/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L123) -- [apiProvisioning-v1/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L29) -- [apiProvisioning-v1/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L30) -- [apiProvisioning-v1/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L29) -- [apiProvisioning-v1/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L30) -- [apiProvisioning-v1/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L29) -- [apiProvisioning-v1/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L30) -- [apiProvisioning-v1/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L31) -- [apiProvisioning-v1/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L32) -- [apiProvisioning-v1/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L34) -- [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) - -- [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) -- [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) -- [apiProvisioning-v2/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L121) -- [apiProvisioning-v2/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L122) -- [apiProvisioning-v2/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L123) -- [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) -- [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) -- [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) -- [apiProvisioning-v2/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L30) -- [apiProvisioning-v2/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L29) -- [apiProvisioning-v2/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L30) -- [apiProvisioning-v2/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L31) -- [apiProvisioning-v2/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L32) -- [apiProvisioning-v2/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L34) -- [apiProvisioning-v2/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L35) - -### [Password can be set to empty](https://github.com/owncloud/product/issues/197) - -- [apiProvisioning-v1/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L69) -- [apiProvisioning-v2/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L69) - -### [Client token generation not implemented](https://github.com/owncloud/ocis/issues/197) - -- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L39) -- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L67) -- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L39) -- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L67) - -### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis/issues/1420) - -- [apiProvisioning-v1/enableUser.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L92) -- [apiProvisioning-v1/enableUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L102) -- [apiProvisioning-v1/enableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L129) -- [apiProvisioning-v1/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L99) -- [apiProvisioning-v1/disableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L129) -- [apiProvisioning-v1/disableUser.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L165) -- [apiProvisioning-v1/disableUser.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L172) -- [apiProvisioning-v1/disableUser.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L190) -- [apiProvisioning-v1/disableUser.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L203) -- [apiProvisioning-v1/disableUser.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L219) -- [apiProvisioning-v2/disableUser.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L79) -- [apiProvisioning-v2/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L99) -- [apiProvisioning-v2/disableUser.feature:108](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L108) -- [apiProvisioning-v2/disableUser.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L130) -- [apiProvisioning-v2/disableUser.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L166) -- [apiProvisioning-v2/disableUser.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L173) -- [apiProvisioning-v2/disableUser.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L191) -- [apiProvisioning-v2/disableUser.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L204) -- [apiProvisioning-v2/disableUser.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L220) - -### [displayname of user can be changed to empty](https://github.com/owncloud/ocis-ocs/issues/51) - -- [apiProvisioning-v1/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L47) -- [apiProvisioning-v2/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L47) - -### [ changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) - -- [apiProvisioning-v1/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L56) -- [apiProvisioning-v1/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L122) -- [apiProvisioning-v2/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L56) -- [apiProvisioning-v2/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L122) -- [apiProvisioning-v2/enableUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L34) -- [apiProvisioning-v2/enableUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L56) -- [apiProvisioning-v2/enableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L64) - -### [ user can get info of other users/ cloud/users endpoints not authenticated](https://github.com/owncloud/product/issues/248) - -- [apiProvisioning-v2/deleteUser.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L54) -- [apiProvisioning-v1/getUser.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L81) -- [apiProvisioning-v2/getUser.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L82) -- [apiProvisioning-v2/getUsers.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUsers.feature#L44) - -### [incorrect ocs(v2) status value when getting info of user that does not exist should be 404, gives 998](https://github.com/owncloud/product/issues/250) - -- [apiProvisioning-v2/getUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L47) - -### [invalid format of sharees response](https://github.com/owncloud/product/issues/292) -### [Searching sharee with displayname](https://github.com/owncloud/ocis/issues/547) - -- [apiSharees/sharees.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L32) -- [apiSharees/sharees.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L33) -- [apiSharees/sharees.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L53) -- [apiSharees/sharees.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L54) -- [apiSharees/sharees.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L74) -- [apiSharees/sharees.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L75) -- [apiSharees/sharees.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L98) -- [apiSharees/sharees.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L99) -- [apiSharees/sharees.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L118) -- [apiSharees/sharees.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L119) -- [apiSharees/sharees.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L137) -- [apiSharees/sharees.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L138) -- [apiSharees/sharees.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L157) -- [apiSharees/sharees.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L158) -- [apiSharees/sharees.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L177) -- [apiSharees/sharees.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L178) -- [apiSharees/sharees.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L198) -- [apiSharees/sharees.feature:199](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L199) -- [apiSharees/sharees.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L217) -- [apiSharees/sharees.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L218) -- [apiSharees/sharees.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L237) -- [apiSharees/sharees.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L238) -- [apiSharees/sharees.feature:257](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L257) -- [apiSharees/sharees.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L258) -- [apiSharees/sharees.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L277) -- [apiSharees/sharees.feature:278](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L278) -- [apiSharees/sharees.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L297) -- [apiSharees/sharees.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L298) -- [apiSharees/sharees.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L317) -- [apiSharees/sharees.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L318) -- [apiSharees/sharees.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L336) -- [apiSharees/sharees.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L337) -- [apiSharees/sharees.feature:355](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L355) -- [apiSharees/sharees.feature:356](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L356) -- [apiSharees/sharees.feature:374](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L374) -- [apiSharees/sharees.feature:375](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L375) -- [apiSharees/sharees.feature:393](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L393) -- [apiSharees/sharees.feature:394](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L394) -- [apiSharees/sharees.feature:412](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L412) -- [apiSharees/sharees.feature:413](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L413) -- [apiSharees/sharees.feature:430](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L430) -- [apiSharees/sharees.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L431) -- [apiSharees/sharees.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L450) -- [apiSharees/sharees.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L451) -- [apiSharees/sharees.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L475) -- [apiSharees/sharees.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L476) -- [apiSharees/sharees.feature:495](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L495) -- [apiSharees/sharees.feature:496](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L496) -- [apiSharees/sharees.feature:515](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L515) -- [apiSharees/sharees.feature:516](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L516) -- [apiSharees/sharees.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L537) -- [apiSharees/sharees.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L538) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareManagementToShares/acceptShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L22) -- [apiShareManagementToShares/acceptShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L223) -- [apiShareManagementToShares/acceptShares.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L270) -- [apiShareManagementToShares/acceptShares.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L342) -- [apiShareManagementToShares/acceptShares.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L378) -- [apiShareManagementToShares/acceptShares.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L417) - -### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) - -User cannot create a folder named Share -- [apiShareManagementToShares/acceptShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L279) -- [apiShareManagementToShares/acceptShares.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L298) - -- [apiShareManagementToShares/acceptShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L71) -- [apiShareManagementToShares/acceptShares.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L162) -- [apiShareManagementToShares/acceptShares.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L175) -- [apiShareManagementToShares/acceptShares.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L196) -- [apiShareManagementToShares/acceptShares.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L249) -- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L28) -- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L48) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L140) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L141) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L176) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L177) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L36) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L37) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L66) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L67) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L91) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L92) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L94) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L95) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L97) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L98) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L155) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L156) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:288](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L288) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L289) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L305) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L306) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L46) -- [apiShareManagementToShares/mergeShare.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L32) -- [apiShareManagementToShares/mergeShare.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L42) -- [apiShareManagementToShares/mergeShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L89) - -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L100) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L101) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L179) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L180) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L204) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L205) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L236) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L237) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L258) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L259) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L324) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:325](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L325) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:362](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L362) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:363](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L363) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:392](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L392) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:461](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L461) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:462](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L462) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:497](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L497) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L498) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:501](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L501) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L28) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L29) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L89) - -### [shares are mounted into /Shares folder even after the sharer deletes the collaborator](https://github.com/owncloud/ocis/issues/720) -### [deleting share response does not contain `data` field](https://github.com/owncloud/ocis/issues/721) - -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L43) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L44) - -### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L342) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:343](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L343) - -### [File deletion using dav gives unique string in filename in the trashbin](https://github.com/owncloud/product/issues/178) - -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L58) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L72) - - cannot share a folder with create permission -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L118) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L130) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L181) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L182) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L183) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L184) - -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) - -- [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) -- [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) - -### [Delete shares from user when user is deleted](hhttps://github.com/owncloud/ocis/issues/1226) -### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis/issues/1270) -### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) - -- [apiShareOperationsToShares/gettingShares.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L135) -- [apiShareOperationsToShares/gettingShares.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L136) - -### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis/issues/1233) - -- [apiShareOperationsToShares/gettingShares.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L180) -- [apiShareOperationsToShares/gettingShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L181) - -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - -- [apiShareOperationsToShares/gettingShares.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L219) -- [apiShareOperationsToShares/gettingShares.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L220) - -### [Allow getting the share list filtered by share type via API](https://github.com/owncloud/ocis/issues/774) - -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L44) -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L45) -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L56) -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L57) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L47) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L48) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L60) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L61) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L41) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L42) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L62) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L63) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L90) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L91) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L48) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L49) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L62) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L63) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L76) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L77) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L92) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L93) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L39) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L40) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L60) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L61) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L79) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L80) - -### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) -### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) -### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - -- [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) -- [apiSharePublicLink1/accessToPublicLinkShare.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L20) -- [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) -- [apiSharePublicLink1/accessToPublicLinkShare.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L43) - -### [creating public links with permissions fails](https://github.com/owncloud/product/issues/252) - -- [apiSharePublicLink1/changingPublicLinkShare.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L22) -- [apiSharePublicLink1/changingPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L23) -- [apiSharePublicLink1/changingPublicLinkShare.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L37) -- [apiSharePublicLink1/changingPublicLinkShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L41) -- [apiSharePublicLink1/changingPublicLinkShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L52) -- [apiSharePublicLink1/changingPublicLinkShare.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L85) -- [apiSharePublicLink1/changingPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L96) - -### [Old webdav api does not work with public link](https://github.com/owncloud/product/issues/272) - -- [apiSharePublicLink1/changingPublicLinkShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L63) -- [apiSharePublicLink1/changingPublicLinkShare.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L107) -- [apiSharePublicLink1/changingPublicLinkShare.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L151) -- [apiSharePublicLink1/changingPublicLinkShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L197) -- [apiSharePublicLink1/changingPublicLinkShare.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L244) - -### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) -### [upload-only public link does not refer to files-drop page, nor are the permissions enforced](https://github.com/owncloud/ocis/issues/723) - -- [apiSharePublicLink1/changingPublicLinkShare.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L267) -- [apiSharePublicLink1/changingPublicLinkShare.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L289) -- [apiSharePublicLink1/createPublicLinkShare.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L34) -- [apiSharePublicLink1/createPublicLinkShare.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L35) -- [apiSharePublicLink1/createPublicLinkShare.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L183) -- [apiSharePublicLink1/createPublicLinkShare.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L184) -- [apiSharePublicLink1/createPublicLinkShare.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L214) -- [apiSharePublicLink1/createPublicLinkShare.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L215) -- [apiSharePublicLink1/createPublicLinkShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L307) -- [apiSharePublicLink1/createPublicLinkShare.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L308) -- [apiSharePublicLink1/createPublicLinkShare.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L370) -- [apiSharePublicLink1/createPublicLinkShare.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L371) - -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) - -- [apiSharePublicLink1/createPublicLinkShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L95) -- [apiSharePublicLink1/createPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L96) -- [apiSharePublicLink1/createPublicLinkShare.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L276) -- [apiSharePublicLink1/createPublicLinkShare.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L277) - -### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis/issues/1293) - -- [apiSharePublicLink1/createPublicLinkShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L127) -- [apiSharePublicLink1/createPublicLinkShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L128) -- [apiSharePublicLink1/createPublicLinkShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L155) -- [apiSharePublicLink1/createPublicLinkShare.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L156) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiSharePublicLink1/createPublicLinkShare.feature:410](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L410) -- [apiSharePublicLink1/createPublicLinkShare.feature:411](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L411) -- [apiSharePublicLink1/createPublicLinkShare.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L431) -- [apiSharePublicLink1/createPublicLinkShare.feature:432](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L432) -- [apiSharePublicLink1/createPublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L454) -- [apiSharePublicLink1/createPublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L455) -- [apiSharePublicLink1/createPublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L477) -- [apiSharePublicLink1/createPublicLinkShare.feature:478](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L478) -- [apiSharePublicLink1/createPublicLinkShare.feature:479](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L479) -- [apiSharePublicLink1/createPublicLinkShare.feature:480](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L480) -- [apiSharePublicLink1/createPublicLinkShare.feature:481](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L481) -- [apiSharePublicLink1/createPublicLinkShare.feature:482](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L482) -- [apiSharePublicLink1/createPublicLinkShare.feature:502](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L502) -- [apiSharePublicLink1/createPublicLinkShare.feature:503](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L503) -- [apiSharePublicLink1/createPublicLinkShare.feature:518](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L518) -- [apiSharePublicLink1/createPublicLinkShare.feature:519](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L519) -- [apiSharePublicLink1/createPublicLinkShare.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L537) -- [apiSharePublicLink1/createPublicLinkShare.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L538) -- [apiSharePublicLink1/createPublicLinkShare.feature:574](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L574) -- [apiSharePublicLink1/createPublicLinkShare.feature:575](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L575) -- [apiSharePublicLink1/createPublicLinkShare.feature:635](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L635) -- [apiSharePublicLink1/createPublicLinkShare.feature:636](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L636) -- [apiSharePublicLink1/createPublicLinkShare.feature:649](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L649) -- [apiSharePublicLink1/createPublicLinkShare.feature:650](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L650) -- [apiSharePublicLink1/createPublicLinkShare.feature:678](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L678) -- [apiSharePublicLink1/createPublicLinkShare.feature:679](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L679) -- [apiSharePublicLink1/createPublicLinkShare.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L729) -- [apiSharePublicLink1/createPublicLinkShare.feature:730](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L730) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L163) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L164) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L165) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L166) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L42) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L43) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L69) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L70) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L97) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L98) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L135) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L136) - -### [Public cannot upload file with mtime set on a public link share with new version of WebDAV API](https://github.com/owncloud/core/issues/37605) - -- [apiSharePublicLink1/createPublicLinkShare.feature:733](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L733) -- [apiSharePublicLink1/createPublicLinkShare.feature:742](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L742) - -### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis/issues/1232) - -- [apiSharePublicLink2/copyFromPublicLink.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L60) -- [apiSharePublicLink2/copyFromPublicLink.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L85) -- [apiSharePublicLink2/copyFromPublicLink.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L166) -- [apiSharePublicLink2/copyFromPublicLink.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L167) -- [apiSharePublicLink2/copyFromPublicLink.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L182) -- [apiSharePublicLink2/copyFromPublicLink.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L183) -- [apiSharePublicLink2/updatePublicLinkShare.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L44) -- [apiSharePublicLink2/updatePublicLinkShare.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L45) -- [apiSharePublicLink2/updatePublicLinkShare.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L114) -- [apiSharePublicLink2/updatePublicLinkShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L115) -- [apiSharePublicLink2/updatePublicLinkShare.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L130) -- [apiSharePublicLink2/updatePublicLinkShare.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L131) -- [apiSharePublicLink2/updatePublicLinkShare.feature:321](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L321) -- [apiSharePublicLink2/updatePublicLinkShare.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L322) - -### [oCIS share permissions not enforced](https://github.com/owncloud/product/issues/270) - -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L25) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L26) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L62) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L63) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L77) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L78) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L136) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L137) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L157) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L158) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L179) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L180) - -### [oCIS old public webdav api doesnt works](https://github.com/owncloud/product/issues/272) - -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L30) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L31) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L50) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L51) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L71) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L72) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L92) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L93) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L114) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L115) - -### [listing received shares does not work](https://github.com/owncloud/ocis-reva/issues/11) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L367) -- [apiSharePublicLink2/updatePublicLinkShare.feature:340](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L340) -- [apiSharePublicLink2/updatePublicLinkShare.feature:341](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L341) -- [apiSharePublicLink2/updatePublicLinkShare.feature:359](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L359) -- [apiSharePublicLink2/updatePublicLinkShare.feature:360](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L360) -- [apiSharePublicLink2/updatePublicLinkShare.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L378) -- [apiSharePublicLink2/updatePublicLinkShare.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L379) -- [apiSharePublicLink2/updatePublicLinkShare.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L397) -- [apiSharePublicLink2/updatePublicLinkShare.feature:398](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L398) -- [apiSharePublicLink2/updatePublicLinkShare.feature:416](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L416) -- [apiSharePublicLink2/updatePublicLinkShare.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L417) -- [apiSharePublicLink2/updatePublicLinkShare.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L435) -- [apiSharePublicLink2/updatePublicLinkShare.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L436) -- [apiSharePublicLink2/updatePublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L454) -- [apiSharePublicLink2/updatePublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L455) -- [apiSharePublicLink2/updatePublicLinkShare.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L476) -- [apiSharePublicLink2/updatePublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L477) - -### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) - -- [apiSharePublicLink2/updatePublicLinkShare.feature:523](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L523) -- [apiSharePublicLink2/updatePublicLinkShare.feature:524](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L524) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L9) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L83) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L103) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) - -### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L273) - -### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis/issues/1268) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L66) - -### [Set quota over settings](https://github.com/owncloud/ocis/issues/1290) - -- [apiProvisioning-v1/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L131) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L148) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L158) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L167) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L177) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:186](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L186) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L196) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L206) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L217) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L238) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L255) - -### [share permissions are not enforced](https://github.com/owncloud/product/issues/270) - -- [apiShareReshareToShares1/reShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L24) -- [apiShareReshareToShares1/reShare.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L25) -- [apiShareReshareToShares1/reShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L39) -- [apiShareReshareToShares1/reShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L40) -- [apiShareReshareToShares1/reShare.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L120) -- [apiShareReshareToShares1/reShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L121) -- [apiShareReshareToShares1/reShare.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L122) -- [apiShareReshareToShares1/reShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L123) -- [apiShareReshareToShares1/reShare.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L124) -- [apiShareReshareToShares1/reShare.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L125) -- [apiShareReshareToShares1/reShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L127) -- [apiShareReshareToShares1/reShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L128) -- [apiShareReshareToShares1/reShare.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L129) -- [apiShareReshareToShares1/reShare.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L130) -- [apiShareReshareToShares1/reShare.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L131) -- [apiShareReshareToShares1/reShare.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L132) -- [apiShareReshareToShares1/reShare.feature:189](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L189) -- [apiShareReshareToShares1/reShare.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L190) -- [apiShareReshareToShares1/reShare.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L191) -- [apiShareReshareToShares1/reShare.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L192) -- [apiShareReshareToShares1/reShare.feature:193](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L193) -- [apiShareReshareToShares1/reShare.feature:194](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L194) -- [apiShareReshareToShares1/reShare.feature:195](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L195) -- [apiShareReshareToShares1/reShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L196) -- [apiShareReshareToShares1/reShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L198) -- [apiShareReshareToShares1/reShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L197) -- [apiShareReshareToShares1/reShare.feature:199](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L199) -- [apiShareReshareToShares1/reShare.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L200) -- [apiShareReshareToShares1/reShare.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L202) -- [apiShareReshareToShares1/reShare.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L203) -- [apiShareReshareToShares1/reShare.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L204) -- [apiShareReshareToShares1/reShare.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L205) -- [apiShareReshareToShares1/reShare.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L206) -- [apiShareReshareToShares1/reShare.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L207) -- [apiShareReshareToShares1/reShare.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L208) -- [apiShareReshareToShares1/reShare.feature:209](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L209) -- [apiShareReshareToShares1/reShare.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L210) -- [apiShareReshareToShares1/reShare.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L211) -- [apiShareReshareToShares1/reShare.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L212) -- [apiShareReshareToShares1/reShare.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L213) - -### [share permissions are not enforced](https://github.com/owncloud/product/issues/270) - -- [apiShareReshareToShares2/reShareSubfolder.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L47) -- [apiShareReshareToShares2/reShareSubfolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L48) -- [apiShareReshareToShares2/reShareSubfolder.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L49) -- [apiShareReshareToShares2/reShareSubfolder.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L50) -- [apiShareReshareToShares2/reShareSubfolder.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L51) -- [apiShareReshareToShares2/reShareSubfolder.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L52) -- [apiShareReshareToShares2/reShareSubfolder.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L53) -- [apiShareReshareToShares2/reShareSubfolder.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L54) -- [apiShareReshareToShares2/reShareSubfolder.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L55) -- [apiShareReshareToShares2/reShareSubfolder.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L56) -- [apiShareReshareToShares2/reShareSubfolder.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L57) -- [apiShareReshareToShares2/reShareSubfolder.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L58) -- [apiShareReshareToShares2/reShareSubfolder.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L60) -- [apiShareReshareToShares2/reShareSubfolder.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L61) -- [apiShareReshareToShares2/reShareSubfolder.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L62) -- [apiShareReshareToShares2/reShareSubfolder.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L63) -- [apiShareReshareToShares2/reShareSubfolder.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L64) -- [apiShareReshareToShares2/reShareSubfolder.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L65) -- [apiShareReshareToShares2/reShareSubfolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L66) -- [apiShareReshareToShares2/reShareSubfolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L67) -- [apiShareReshareToShares2/reShareSubfolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L68) -- [apiShareReshareToShares2/reShareSubfolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L69) -- [apiShareReshareToShares2/reShareSubfolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L70) -- [apiShareReshareToShares2/reShareSubfolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L71) -- [apiShareReshareToShares2/reShareSubfolder.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L73) -- [apiShareReshareToShares2/reShareSubfolder.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L74) -- [apiShareReshareToShares2/reShareSubfolder.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L75) -- [apiShareReshareToShares2/reShareSubfolder.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L76) -- [apiShareReshareToShares2/reShareSubfolder.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L77) -- [apiShareReshareToShares2/reShareSubfolder.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L78) -- [apiShareReshareToShares2/reShareSubfolder.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L80) -- [apiShareReshareToShares2/reShareSubfolder.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L81) -- [apiShareReshareToShares2/reShareSubfolder.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L82) -- [apiShareReshareToShares2/reShareSubfolder.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L83) -- [apiShareReshareToShares2/reShareSubfolder.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L84) -- [apiShareReshareToShares2/reShareSubfolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L85) -- [apiShareManagementToShares/mergeShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L24) -- [apiShareManagementToShares/mergeShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L52) -- [apiShareManagementToShares/mergeShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L79) -- [apiShareManagementToShares/mergeShare.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L99) - -### [share permissions are not enforced](https://github.com/owncloud/product/issues/270) - -- [apiShareReshareToShares3/reShareUpdate.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L59) -- [apiShareReshareToShares3/reShareUpdate.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L60) - -### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) - -- [apiShareReshareToShares1/reShare.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L56) -- [apiShareReshareToShares1/reShare.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L57) -- [apiShareReshareToShares1/reShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L72) -- [apiShareReshareToShares1/reShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L73) -- [apiShareReshareToShares1/reShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L88) -- [apiShareReshareToShares1/reShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L89) -- [apiShareReshareToShares1/reShare.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L104) -- [apiShareReshareToShares1/reShare.feature:105](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L105) -- [apiShareReshareToShares1/reShare.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L159) -- [apiShareReshareToShares1/reShare.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L160) -- [apiShareReshareToShares1/reShare.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L161) -- [apiShareReshareToShares1/reShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L162) -- [apiShareReshareToShares1/reShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L163) -- [apiShareReshareToShares1/reShare.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L164) -- [apiShareReshareToShares1/reShare.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L165) -- [apiShareReshareToShares1/reShare.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L166) -- [apiShareReshareToShares1/reShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L167) -- [apiShareReshareToShares1/reShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L168) -- [apiShareReshareToShares1/reShare.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L169) -- [apiShareReshareToShares1/reShare.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L170) -- [apiShareReshareToShares1/reShare.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L171) -- [apiShareReshareToShares1/reShare.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L172) -- [apiShareReshareToShares1/reShare.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L173) -- [apiShareReshareToShares1/reShare.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L174) -- [apiShareReshareToShares1/reShare.feature:228](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L228) -- [apiShareReshareToShares1/reShare.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L229) -- [apiShareReshareToShares1/reShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L230) -- [apiShareReshareToShares1/reShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L231) -- [apiShareReshareToShares1/reShare.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L232) -- [apiShareReshareToShares1/reShare.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L233) -- [apiShareReshareToShares1/reShare.feature:235](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L235) -- [apiShareReshareToShares1/reShare.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L236) -- [apiShareReshareToShares1/reShare.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L237) -- [apiShareReshareToShares1/reShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L238) -- [apiShareReshareToShares1/reShare.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L239) -- [apiShareReshareToShares1/reShare.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L240) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L33) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L34) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L89) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L90) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L91) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L92) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L150) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L151) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L152) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L153) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L212) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L213) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L214) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L215) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L365) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:366](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L366) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L367) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L368) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:400](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L400) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:401](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L401) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:402](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L402) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L403) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L404) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:405](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L405) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:434](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L434) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L435) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L436) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:437](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L437) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:465](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L465) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:466](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L466) - -### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) - -- [apiShareReshareToShares2/reShareChain.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareChain.feature#L10) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiShareReshareToShares2/reShareDisabled.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L24) -- [apiShareReshareToShares2/reShareDisabled.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L25) -- [apiShareReshareToShares2/reShareDisabled.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L39) -- [apiShareReshareToShares2/reShareDisabled.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L40) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) - -- [apiShareReshareToShares2/reShareSubfolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L28) -- [apiShareReshareToShares2/reShareSubfolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L29) -- [apiShareReshareToShares2/reShareSubfolder.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L106) -- [apiShareReshareToShares2/reShareSubfolder.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L107) -- [apiShareReshareToShares2/reShareSubfolder.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L128) -- [apiShareReshareToShares2/reShareSubfolder.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L129) -- [apiShareReshareToShares2/reShareSubfolder.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L150) -- [apiShareReshareToShares2/reShareSubfolder.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L151) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L24) -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L25) -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L41) -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L42) -- [apiShareReshareToShares3/reShareUpdate.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L112) -- [apiShareReshareToShares3/reShareUpdate.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L113) -- [apiShareReshareToShares3/reShareUpdate.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L131) -- [apiShareReshareToShares3/reShareUpdate.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L132) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L61) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L62) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L121) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L122) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L123) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L124) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L181) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L182) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L183) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L184) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L245) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L246) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L247) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L248) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L302) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:303](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L303) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:304](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L304) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L305) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L335) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L336) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L337) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:338](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L338) - -### [Share receiver cannot get share by id](https://github.com/owncloud/product/issues/253) - -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) - -### [empty trashbin does not work](https://github.com/owncloud/product/issues/254) -### [delete from trashbin does not work](https://github.com/owncloud/ocis/issues/551) -### [deleting multiple elements concurrently will not delete all the items.](https://github.com/owncloud/product/issues/256) +#### [Deletion time in trash bin shows a wrong date](https://github.com/owncloud/ocis/issues/541) +- [apiTrashbin/trashbinFilesFolders.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L284) +- [apiTrashbin/trashbinFilesFolders.feature:285](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L285) +#### [empty trashbin does not work](https://github.com/owncloud/product/issues/254) - [apiTrashbin/trashbinDelete.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L37) + +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - [apiTrashbin/trashbinDelete.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L50) - [apiTrashbin/trashbinDelete.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L67) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [QA trashcan cannot delete a deep tree](https://github.com/owncloud/ocis/issues/1077) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [QA trashcan cannot delete a deep tree](https://github.com/owncloud/ocis/issues/1077) - [apiTrashbin/trashbinDelete.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L107) - [apiTrashbin/trashbinDelete.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L123) -### [trashbin filename invalid for nested files/folders](https://github.com/owncloud/product/issues/255) - +#### [trashbin filename invalid for nested files/folders](https://github.com/owncloud/product/issues/255) - [apiTrashbin/trashbinFilesFolders.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L44) - [apiTrashbin/trashbinFilesFolders.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L45) - [apiTrashbin/trashbinFilesFolders.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L60) - [apiTrashbin/trashbinFilesFolders.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L61) -### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) +### [Review and fix the tests that have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: - [apiTrashbin/trashbinFilesFolders.feature:105](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L105) - [apiTrashbin/trashbinFilesFolders.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L106) -### [trying to list the trashbin of another user gives 405](https://github.com/owncloud/product/issues/257) - +#### [invalid webdav responses for unauthorized requests.](https://github.com/owncloud/product/issues/273) - [apiTrashbin/trashbinFilesFolders.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L154) - [apiTrashbin/trashbinFilesFolders.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L155) - [apiTrashbin/trashbinFilesFolders.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L172) - [apiTrashbin/trashbinFilesFolders.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L173) - [apiTrashbin/trashbinFilesFolders.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L196) - [apiTrashbin/trashbinFilesFolders.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L197) - -### [invalid webdav responses for unauthorized requests.](https://github.com/owncloud/product/issues/273) - - [apiTrashbin/trashbinFilesFolders.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L210) - [apiTrashbin/trashbinFilesFolders.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L211) - [apiTrashbin/trashbinFilesFolders.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L224) - [apiTrashbin/trashbinFilesFolders.feature:225](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L225) -### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) - -- [apiTrashbin/trashbinFilesFolders.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L239) -- [apiTrashbin/trashbinFilesFolders.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L240) -- [apiTrashbin/trashbinFilesFolders.feature:241](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L241) -- [apiTrashbin/trashbinFilesFolders.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L245) -- [apiTrashbin/trashbinFilesFolders.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L246) -- [apiTrashbin/trashbinFilesFolders.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L247) - -### [PROPFIND on trashbin with Depth: infinity only shows the first level](https://github.com/owncloud/ocis/issues/1116) - +#### [PROPFIND on trashbin with Depth: infinity only shows the first level](https://github.com/owncloud/ocis/issues/1116) - [apiTrashbin/trashbinFilesFolders.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L272) - [apiTrashbin/trashbinFilesFolders.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L273) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - [apiTrashbin/trashbinRestore.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L54) - [apiTrashbin/trashbinRestore.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L55) - [apiTrashbin/trashbinRestore.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L70) @@ -978,18 +81,16 @@ User cannot create a folder named Share - [apiTrashbin/trashbinRestore.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L292) - [apiTrashbin/trashbinRestore.feature:293](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L293) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - [apiTrashbin/trashbinRestore.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L40) - [apiTrashbin/trashbinRestore.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L41) - [apiTrashbin/trashbinRestore.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L138) - [apiTrashbin/trashbinRestore.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L139) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) -### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - +#### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - [apiTrashbin/trashbinRestore.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L90) - [apiTrashbin/trashbinRestore.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L91) - [apiTrashbin/trashbinRestore.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L92) @@ -997,36 +98,23 @@ User cannot create a folder named Share - [apiTrashbin/trashbinRestore.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L94) - [apiTrashbin/trashbinRestore.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L95) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) - [apiTrashbin/trashbinRestore.feature:311](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L311) - [apiTrashbin/trashbinRestore.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L312) - [apiTrashbin/trashbinRestore.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L330) - [apiTrashbin/trashbinRestore.feature:331](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L331) -### [deleting a received share-folder moves it to trash-bin but does not unshare it](https://github.com/owncloud/ocis/issues/1123) +#### [requests to webdav URLs with an fileid containing an invalid storage_id result in error 500](https://github.com/owncloud/ocis/issues/772) +- [apiVersions/fileVersions.feature:384](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L384) -- [apiTrashbin/trashbinSharingToShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L24) -- [apiTrashbin/trashbinSharingToShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L25) -- [apiShareManagementToShares/acceptShares.feature:469](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L469) -- [apiShareManagementToShares/acceptShares.feature:470](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L470) - - -### [deleting a file inside a received shared folder is moved to the trash-bin of the sharer not the receiver](https://github.com/owncloud/ocis/issues/1124) - -- [apiTrashbin/trashbinSharingToShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L40) -- [apiTrashbin/trashbinSharingToShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L41) -- [apiTrashbin/trashbinSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L63) -- [apiTrashbin/trashbinSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L64) -- [apiTrashbin/trashbinSharingToShares.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L82) -- [apiTrashbin/trashbinSharingToShares.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L83) -- [apiTrashbin/trashbinSharingToShares.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L102) -- [apiTrashbin/trashbinSharingToShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L103) - -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) +#### [requesting propfind with invalid fileid gives 502 error](https://github.com/owncloud/ocis/issues/771) +- [apiVersions/fileVersions.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L395) +- [apiVersions/fileVersions.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L396) +- [apiVersions/fileVersions.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L397) +#### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) +#### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - [apiVersions/fileVersions.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L15) - [apiVersions/fileVersions.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L23) - [apiVersions/fileVersions.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L36) @@ -1034,283 +122,9 @@ User cannot create a folder named Share - [apiVersions/fileVersions.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L88) - [apiVersions/fileVersions.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L89) - [apiVersions/fileVersions.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L93) -- [apiVersions/fileVersions.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L104) - [apiVersions/fileVersions.feature:288](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L288) - [apiVersions/fileVersions.feature:362](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L362) - [apiVersions/fileVersions.feature:373](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L373) - -### [cannot rename files asynchronously](https://github.com/owncloud/product/issues/259) - -- [apiWebdavMove1/moveFileAsync.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L26) -- [apiWebdavMove1/moveFileAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L27) -- [apiWebdavMove1/moveFileAsync.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L28) -- [apiWebdavMove1/moveFileAsync.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L29) -- [apiWebdavMove1/moveFileAsync.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L30) -- [apiWebdavMove1/moveFileAsync.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L31) -- [apiWebdavMove1/moveFileAsync.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L33) -- [apiWebdavMove1/moveFileAsync.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L46) -- [apiWebdavMove1/moveFileAsync.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L59) -- [apiWebdavMove1/moveFileAsync.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L73) -- [apiWebdavMove1/moveFileAsync.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L88) -- [apiWebdavMove1/moveFileAsync.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L107) -- [apiWebdavMove1/moveFileAsync.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L125) -- [apiWebdavMove1/moveFileAsync.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L135) -- [apiWebdavMove1/moveFileAsync.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L141) -- [apiWebdavMove1/moveFileAsync.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L204) -- [apiWebdavMove1/moveFileAsync.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L205) -- [apiWebdavMove1/moveFileAsync.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L224) -- [apiWebdavMove1/moveFileAsync.feature:225](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L225) -- [apiWebdavMove1/moveFileAsync.feature:234](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L234) -- [apiWebdavMove1/moveFileAsync.feature:235](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L235) -- [apiWebdavMove1/moveFileAsync.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L240) - -### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - -- [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L12) -- [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L18) -- [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L26) - -### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - -- [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L12) -- [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L19) -- [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L27) - -### [renaming to banned name works](https://github.com/owncloud/ocis/issues/1295) - -- [apiWebdavMove1/moveFolder.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L21) -- [apiWebdavMove1/moveFolder.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L22) -- [apiWebdavMove1/moveFolder.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L34) -- [apiWebdavMove1/moveFolder.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L35) -- [apiWebdavMove1/moveFolder.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L47) -- [apiWebdavMove1/moveFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L48) - -### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - -- [apiWebdavMove1/moveFolderToBlacklistedName.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L21) -- [apiWebdavMove1/moveFolderToBlacklistedName.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L22) -- [apiWebdavMove1/moveFolderToBlacklistedName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L35) -- [apiWebdavMove1/moveFolderToBlacklistedName.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L36) -- [apiWebdavMove1/moveFolderToBlacklistedName.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L70) -- [apiWebdavMove1/moveFolderToBlacklistedName.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L71) - -### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - -- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L21) -- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L22) -- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L34) -- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L35) -- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L70) -- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L71) - -### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavMove2/moveFile.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L89) -- [apiWebdavMove2/moveFile.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L90) -- [apiWebdavMove2/moveFile.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L91) -- [apiWebdavMove2/moveFile.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L92) -- [apiWebdavMove2/moveFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L112) -- [apiWebdavMove2/moveFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L113) -- [apiWebdavMove2/moveFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L136) -- [apiWebdavMove2/moveFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L137) -- [apiWebdavMove2/moveFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L138) -- [apiWebdavMove2/moveFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L139) -- [apiWebdavMove2/moveFile.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L160) -- [apiWebdavMove2/moveFile.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L161) -- [apiWebdavMove2/moveFile.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L181) -- [apiWebdavMove2/moveFile.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L182) -- [apiWebdavMove2/moveFile.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L200) -- [apiWebdavMove2/moveFile.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L201) -- [apiWebdavMove2/moveFile.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L219) -- [apiWebdavMove2/moveFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L220) -- [apiWebdavMove2/moveFile.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L255) -- [apiWebdavMove2/moveFile.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L256) -- [apiWebdavMove2/moveFile.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L272) -- [apiWebdavMove2/moveFile.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L273) - -### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - -- [apiWebdavMove2/moveFileToBlacklistedName.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L18) -- [apiWebdavMove2/moveFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L19) -- [apiWebdavMove2/moveFileToBlacklistedName.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L29) -- [apiWebdavMove2/moveFileToBlacklistedName.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L30) -- [apiWebdavMove2/moveFileToBlacklistedName.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L62) -- [apiWebdavMove2/moveFileToBlacklistedName.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L63) - -### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - -- [apiWebdavMove2/moveFileToExcludedDirectory.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L18) -- [apiWebdavMove2/moveFileToExcludedDirectory.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L19) -- [apiWebdavMove2/moveFileToExcludedDirectory.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L28) -- [apiWebdavMove2/moveFileToExcludedDirectory.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L29) -- [apiWebdavMove2/moveFileToExcludedDirectory.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L63) -- [apiWebdavMove2/moveFileToExcludedDirectory.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L64) - -### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavOperations/deleteFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L67) -- [apiWebdavOperations/deleteFolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L68) -- [apiWebdavOperations/deleteFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L69) -- [apiWebdavOperations/deleteFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L70) -- [apiWebdavOperations/deleteFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L91) -- [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) - -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) -### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavOperations/downloadFile.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L60) -- [apiWebdavOperations/downloadFile.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L61) -- [apiWebdavOperations/downloadFile.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L72) -- [apiWebdavOperations/downloadFile.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L73) -- [apiWebdavOperations/downloadFile.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L84) -- [apiWebdavOperations/downloadFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L85) -- [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) -- [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) - -### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) -- [apiWebdavProperties1/copyFile.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L66) -- [apiWebdavProperties1/copyFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L85) -- [apiWebdavProperties1/copyFile.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L86) - -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - -- [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) -- [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) -- [apiWebdavProperties1/createFolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L71) -- [apiWebdavProperties1/createFolder.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L72) - -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) - -- [apiWebdavProperties1/copyFile.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L116) -- [apiWebdavProperties1/copyFile.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L117) -- [apiWebdavProperties1/copyFile.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L129) -- [apiWebdavProperties1/copyFile.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L130) -- [apiWebdavProperties1/copyFile.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L146) -- [apiWebdavProperties1/copyFile.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L147) -- [apiWebdavProperties1/copyFile.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L165) -- [apiWebdavProperties1/copyFile.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L166) -- [apiWebdavProperties1/copyFile.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L202) -- [apiWebdavProperties1/copyFile.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L203) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiWebdavProperties1/copyFile.feature:350](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L350) -- [apiWebdavProperties1/copyFile.feature:351](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L351) -- [apiWebdavProperties1/copyFile.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L370) -- [apiWebdavProperties1/copyFile.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L371) -- [apiWebdavProperties1/copyFile.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L395) -- [apiWebdavProperties1/copyFile.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L396) -- [apiWebdavProperties1/copyFile.feature:422](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L422) -- [apiWebdavProperties1/copyFile.feature:423](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L423) -- [apiWebdavProperties1/copyFile.feature:448](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L448) -- [apiWebdavProperties1/copyFile.feature:449](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L449) -- [apiWebdavProperties1/copyFile.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L474) -- [apiWebdavProperties1/copyFile.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L475) - -### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis/issues/1283) - -- [apiWebdavProperties1/createFolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L85) -- [apiWebdavProperties1/createFolder.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L86) -- [apiWebdavProperties1/createFolder.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L99) -- [apiWebdavProperties1/createFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L100) - -### [quota query](https://github.com/owncloud/ocis/issues/1313) - -- [apiWebdavProperties1/getQuota.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L17) -- [apiWebdavProperties1/getQuota.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L18) -- [apiWebdavProperties1/getQuota.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L27) -- [apiWebdavProperties1/getQuota.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L28) -- [apiWebdavProperties1/getQuota.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L48) -- [apiWebdavProperties1/getQuota.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L49) -- [apiWebdavProperties1/getQuota.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L61) -- [apiWebdavProperties1/getQuota.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L62) -- [apiWebdavProperties1/getQuota.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L77) -- [apiWebdavProperties1/getQuota.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L78) - -### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) - -- [apiWebdavProperties1/setFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L63) -- [apiWebdavProperties1/setFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L64) - -### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis/issues/1296) - -- [apiWebdavProperties2/getFileProperties.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L37) -- [apiWebdavProperties2/getFileProperties.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L39) -- [apiWebdavProperties2/getFileProperties.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L40) -- [apiWebdavProperties2/getFileProperties.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L41) -- [apiWebdavProperties2/getFileProperties.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L43) -- [apiWebdavProperties2/getFileProperties.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L44) -- [apiWebdavProperties2/getFileProperties.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L59) -- [apiWebdavProperties2/getFileProperties.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L60) -- [apiWebdavProperties2/getFileProperties.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L61) -- [apiWebdavProperties2/getFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L63) -- [apiWebdavProperties2/getFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L64) -- [apiWebdavProperties2/getFileProperties.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L66) -- [apiWebdavProperties2/getFileProperties.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L67) -- [apiWebdavProperties2/getFileProperties.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L68) -- [apiWebdavProperties2/getFileProperties.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L70) -- [apiWebdavProperties2/getFileProperties.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L71) - -### [cannot get share-types webdav property](https://github.com/owncloud/ocis/issues/567) - -- [apiWebdavProperties2/getFileProperties.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L135) -- [apiWebdavProperties2/getFileProperties.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L136) -- [apiWebdavProperties2/getFileProperties.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L174) -- [apiWebdavProperties2/getFileProperties.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L175) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiWebdavProperties2/getFileProperties.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L156) -- [apiWebdavProperties2/getFileProperties.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L157) -- [apiWebdavProperties2/getFileProperties.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L206) -- [apiWebdavProperties2/getFileProperties.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L207) - -### [Private link support](https://github.com/owncloud/product/issues/201) -### [oc:privatelink property not returned in webdav responses](https://github.com/owncloud/product/issues/262) - -- [apiWebdavProperties2/getFileProperties.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L232) -- [apiWebdavProperties2/getFileProperties.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L233) - -### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) - -- [apiWebdavProperties2/getFileProperties.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L242) -- [apiWebdavProperties2/getFileProperties.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L243) - -### https://github.com/owncloud/product/issues/264 - -- [apiWebdavProperties2/getFileProperties.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L246) -- [apiWebdavProperties2/getFileProperties.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L266) - -### [Different webdav properties from core](https://github.com/owncloud/ocis/issues/1302) - -- [apiWebdavProperties2/getFileProperties.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L301) -- [apiWebdavProperties2/getFileProperties.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L302) -- [apiWebdavProperties2/getFileProperties.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L314) -- [apiWebdavProperties2/getFileProperties.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L315) -- [apiWebdavProperties2/getFileProperties.feature:327](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L327) -- [apiWebdavProperties2/getFileProperties.feature:328](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L328) -- [apiWebdavProperties2/getFileProperties.feature:376](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L376) -- [apiWebdavProperties2/getFileProperties.feature:377](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L377) -- [apiWebdavProperties2/getFileProperties.feature:441](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L441) -- [apiWebdavProperties2/getFileProperties.feature:442](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L442) -- [apiWebdavProperties2/getFileProperties.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L454) -- [apiWebdavProperties2/getFileProperties.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L455) - -### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) - -- [apiWebdavUpload1/uploadFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L112) -- [apiWebdavUpload1/uploadFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L113) - -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - -- [apiWebdavUpload1/uploadFile.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L127) -- [apiWebdavUpload1/uploadFile.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L128) - -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - also requires test helper to read and clear the log file. - - [apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature#L14) - [apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature#L31) - [apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature#L48) @@ -1328,33 +142,18 @@ User cannot create a folder named Share - [apiWebdavUpload1/uploadFileToBlacklistedNameAsyncUsingNewChunking.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedNameAsyncUsingNewChunking.feature#L48) - [apiWebdavUpload1/uploadFileToBlacklistedNameAsyncUsingNewChunking.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedNameAsyncUsingNewChunking.feature#L49) - [apiWebdavUpload1/uploadFileToBlacklistedNameAsyncUsingNewChunking.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedNameAsyncUsingNewChunking.feature#L52) -- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L14) -- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L24) -- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L49) -- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L50) -- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L51) -- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L54) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L20) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L21) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L33) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L34) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L69) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L70) - -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L19) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L20) - -### [system configuration options missing](https://github.com/owncloud/ocis/issues/1323) - -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L31) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L32) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L65) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L66) - -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - +- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L14) +- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L24) +- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L49) +- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L50) +- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L51) +- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L54) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature#L12) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature#L21) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature#L45) @@ -1382,8 +181,56 @@ User cannot create a folder named Share - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L168) - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L169) -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: +- [apiVersions/fileVersions.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L104) + +#### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) +- [apiWebdavUpload1/uploadFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L112) +- [apiWebdavUpload1/uploadFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L113) + +#### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L43) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L96) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L97) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L98) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L99) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L100) + +#### [invalid file-names should not be created using the TUS protocol](https://github.com/owncloud/ocis/issues/1001) +- [apiWebdavUploadTUS/uploadFile.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L135) +- [apiWebdavUploadTUS/uploadFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L136) +- [apiWebdavUploadTUS/uploadFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L137) +- [apiWebdavUploadTUS/uploadFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L138) +- [apiWebdavUploadTUS/uploadFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L139) +- [apiWebdavUploadTUS/uploadFile.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L140) +- [apiWebdavUploadTUS/uploadFile.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L141) +- [apiWebdavUploadTUS/uploadFile.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L142) + +### [500 Internal Server Error on Post request for TUS upload](https://github.com/owncloud/ocis/issues/1047) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L29) +- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L30) +- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L43) +- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L44) +- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L57) +- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L58) + +#### [upload a file using TUS resource URL as an other user should not work](https://github.com/owncloud/ocis/issues/1141) +- [apiWebdavUploadTUS/uploadFile.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L155) +- [apiWebdavUploadTUS/uploadFile.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L156) + +#### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) +- [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) +- [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) +- [apiWebdavProperties1/createFolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L71) +- [apiWebdavProperties1/createFolder.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L72) +- [apiWebdavUpload1/uploadFile.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L127) +- [apiWebdavUpload1/uploadFile.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L128) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L19) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L20) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L13) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L19) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L35) @@ -1395,625 +242,184 @@ User cannot create a folder named Share - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L38) - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L39) -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) - -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L43) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L96) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L97) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L98) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L99) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L100) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiWebdavUploadTUS/uploadToShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L52) -- [apiWebdavUploadTUS/uploadToShare.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L53) - -### [Sharing does not work](https://github.com/owncloud/ocis/issues/1303) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:529](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L529) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:547](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L547) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:565](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L565) - -### [Delete shares from user when user is deleted](hhttps://github.com/owncloud/ocis/issues/1226) -### [when sharing a file mime-type field is set to `application/octet-stream](https://github.com/owncloud/ocis/issues/1271) -### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis/issues/1270) - -- [apiShareOperationsToShares/gettingShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L167) -- [apiShareOperationsToShares/gettingShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L168) - -### [Moving resource loses associated shares](https://github.com/owncloud/ocis/issues/1251) - -- [apiSharePublicLink2/multilinkSharing.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/multilinkSharing.feature#L181) - -### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - -- [apiWebdavPreviews/previews.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L15) -- [apiWebdavPreviews/previews.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L16) -- [apiWebdavPreviews/previews.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L17) -- [apiWebdavPreviews/previews.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L18) -- [apiWebdavPreviews/previews.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L19) -- [apiWebdavPreviews/previews.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L30) -- [apiWebdavPreviews/previews.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L31) -- [apiWebdavPreviews/previews.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L32) -- [apiWebdavPreviews/previews.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L33) -- [apiWebdavPreviews/previews.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L34) -- [apiWebdavPreviews/previews.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L35) -- [apiWebdavPreviews/previews.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L36) -- [apiWebdavPreviews/previews.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L47) -- [apiWebdavPreviews/previews.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L48) -- [apiWebdavPreviews/previews.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L49) -- [apiWebdavPreviews/previews.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L50) -- [apiWebdavPreviews/previews.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L51) -- [apiWebdavPreviews/previews.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L52) -- [apiWebdavPreviews/previews.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L53) -- [apiWebdavPreviews/previews.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L56) -- [apiWebdavPreviews/previews.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L71) -- [apiWebdavPreviews/previews.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L72) -- [apiWebdavPreviews/previews.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L73) -- [apiWebdavPreviews/previews.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L83) -- [apiWebdavPreviews/previews.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L84) -- [apiWebdavPreviews/previews.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L87) -- [apiWebdavPreviews/previews.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L95) -- [apiWebdavPreviews/previews.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L104) -- [apiWebdavPreviews/previews.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L113) -- [apiWebdavPreviews/previews.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L120) -- [apiWebdavPreviews/previews.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L127) -- [apiWebdavPreviews/previews.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L135) -- [apiWebdavPreviews/previews.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L144) -- [apiWebdavPreviews/previews.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L163) -- [apiWebdavPreviews/previews.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L164) -- [apiWebdavPreviews/previews.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L165) -- [apiWebdavPreviews/previews.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L166) -- [apiWebdavPreviews/previews.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L178) -- [apiWebdavPreviews/previews.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L179) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareOperationsToShares/uploadToShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L39) -- [apiShareOperationsToShares/uploadToShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L40) -- [apiShareOperationsToShares/uploadToShare.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L91) -- [apiShareOperationsToShares/uploadToShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L92) -- [apiShareOperationsToShares/uploadToShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L139) -- [apiShareOperationsToShares/uploadToShare.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L140) - -### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) - -- [apiShareOperationsToShares/uploadToShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L162) -- [apiShareOperationsToShares/uploadToShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L163) -- [apiShareOperationsToShares/uploadToShare.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L181) -- [apiShareOperationsToShares/uploadToShare.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L182) -- [apiShareOperationsToShares/uploadToShare.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L202) -- [apiShareOperationsToShares/uploadToShare.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L203) -- [apiShareOperationsToShares/uploadToShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L221) -- [apiShareOperationsToShares/uploadToShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L222) -- [apiShareOperationsToShares/uploadToShare.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L242) -- [apiShareOperationsToShares/uploadToShare.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L243) - -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - -- [apiShareOperationsToShares/uploadToShare.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L246) - -### [not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) - -- [apiShareOperationsToShares/changingFilesShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L23) -- [apiShareOperationsToShares/changingFilesShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L24) -- [apiShareOperationsToShares/changingFilesShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L63) -- [apiShareOperationsToShares/changingFilesShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L79) -- [apiShareOperationsToShares/changingFilesShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L95) - -### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) - -- [apiShareOperationsToShares/changingFilesShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L40) -- [apiShareOperationsToShares/changingFilesShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L41) -- [apiShareOperationsToShares/changingFilesShare.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L59) -- [apiShareOperationsToShares/changingFilesShare.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L60) - -### [restoring an older version of a shared file deletes the share](https://github.com/owncloud/ocis/issues/765) - -- [apiShareManagementToShares/acceptShares.feature:473](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L473) -- [apiVersions/fileVersionsSharingToShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L44) - -### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) - -- [apiVersions/fileVersionsSharingToShares.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L134) -- [apiVersions/fileVersionsSharingToShares.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L149) -- [apiVersions/fileVersionsSharingToShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L163) -- [apiVersions/fileVersionsSharingToShares.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L250) -- [apiVersions/fileVersionsSharingToShares.feature:251](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L251) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiVersions/fileVersionsSharingToShares.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L179) - -### [not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) - -- [apiVersions/fileVersionsSharingToShares.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L222) -- [apiVersions/fileVersionsSharingToShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L223) -- [apiVersions/fileVersionsSharingToShares.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L224) -- [apiVersions/fileVersionsSharingToShares.feature:225](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L225) - -### [getting the metadata without permission results in a 403 error](https://github.com/owncloud/ocis/issues/773) - -- [apiVersions/fileVersionsSharingToShares.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L256) - -### [The version number of a file is incorrect because of the incorrect number of `` and `` element](https://github.com/owncloud/ocis/issues/1234) - -- [apiVersions/fileVersionsSharingToShares.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L267) - -### [OC-Storage moving a file out of folder removes the versions](https://github.com/owncloud/ocis/issues/777) - -- [apiVersions/fileVersionsSharingToShares.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L252) -- [apiVersions/fileVersionsSharingToShares.feature:253](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L253) - -### [etags are not updated on file operations](https://github.com/owncloud/product/issues/279) - -renaming file/folder doesn't changes the etag of parent
-moving a file/folder from one folder to another doesn't changes etag of destination folder
-renaming a file/folder inside another folder doesn't changes etag of parent folder
-restoring a file doesn't changes the etags of the parents - -- [apiWebdavEtagPropagation1/moveFileFolder.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L21) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L22) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L78) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L79) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L146) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L147) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L174) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L175) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L244) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L245) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L314) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L315) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L318) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:334](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L334) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L26) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L27) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L48) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L49) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L68) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L69) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L90) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L91) - -### [wildcard Access-Control-Allow-Origin](https://github.com/owncloud/ocis/issues/1340) - -- [apiAuth/cors.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L24) -- [apiAuth/cors.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L25) -- [apiAuth/cors.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L26) -- [apiAuth/cors.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L27) -- [apiAuth/cors.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L28) -- [apiAuth/cors.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L29) -- [apiAuth/cors.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L30) -- [apiAuth/cors.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L31) -- [apiAuth/cors.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L32) -- [apiAuth/cors.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L33) -- [apiAuth/cors.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L34) -- [apiAuth/cors.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L35) -- [apiAuth/cors.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L36) -- [apiAuth/cors.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L37) -- [apiAuth/cors.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L38) -- [apiAuth/cors.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L39) -- [apiAuth/cors.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L40) -- [apiAuth/cors.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L41) -- [apiAuth/cors.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L59) -- [apiAuth/cors.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L60) -- [apiAuth/cors.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L61) -- [apiAuth/cors.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L62) -- [apiAuth/cors.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L63) -- [apiAuth/cors.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L64) -- [apiAuth/cors.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L83) -- [apiAuth/cors.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L84) -- [apiAuth/cors.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L85) -- [apiAuth/cors.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L86) -- [apiAuth/cors.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L87) -- [apiAuth/cors.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L88) -- [apiAuth/cors.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L89) -- [apiAuth/cors.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L90) -- [apiAuth/cors.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L91) -- [apiAuth/cors.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L92) -- [apiAuth/cors.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L93) -- [apiAuth/cors.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L94) -- [apiAuth/cors.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L95) -- [apiAuth/cors.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L96) -- [apiAuth/cors.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L97) -- [apiAuth/cors.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L98) -- [apiAuth/cors.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L99) -- [apiAuth/cors.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L100) -- [apiAuth/cors.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L118) -- [apiAuth/cors.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L119) -- [apiAuth/cors.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L120) -- [apiAuth/cors.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L121) -- [apiAuth/cors.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L122) -- [apiAuth/cors.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L123) -- [apiAuth/cors.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L142) -- [apiAuth/cors.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L143) -- [apiAuth/cors.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L144) -- [apiAuth/cors.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L145) -- [apiAuth/cors.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L146) -- [apiAuth/cors.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L147) -- [apiAuth/cors.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L148) -- [apiAuth/cors.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L149) -- [apiAuth/cors.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L150) -- [apiAuth/cors.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L151) -- [apiAuth/cors.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L152) -- [apiAuth/cors.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L153) -- [apiAuth/cors.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L154) -- [apiAuth/cors.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L155) -- [apiAuth/cors.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L156) -- [apiAuth/cors.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L157) -- [apiAuth/cors.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L178) -- [apiAuth/cors.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L179) -- [apiAuth/cors.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L180) -- [apiAuth/cors.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L181) -- [apiAuth/cors.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L182) -- [apiAuth/cors.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L183) - -### [HTTP 401 Unauthorized responses don't contain a body ](https://github.com/owncloud/ocis/issues/1337) -### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) - -- [apiAuthOcs/ocsGETAuth.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L243) - -### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) - -- [apiAuthWebDav/webDavDELETEAuth.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L78) -- [apiAuthWebDav/webDavDELETEAuth.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L92) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiCapabilities/capabilities.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L8) -- [apiCapabilities/capabilities.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L15) -- [apiCapabilities/capabilities.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L21) -- [apiCapabilities/capabilities.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L27) -- [apiCapabilities/capabilities.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L33) -- [apiCapabilities/capabilities.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L38) -- [apiCapabilities/capabilities.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L80) -- [apiCapabilities/capabilities.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L93) -- [apiCapabilities/capabilities.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L107) -- [apiCapabilities/capabilities.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L116) -- [apiCapabilities/capabilities.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L138) -- [apiCapabilities/capabilities.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L144) -- [apiCapabilities/capabilities.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L151) -- [apiCapabilities/capabilities.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L157) -- [apiCapabilities/capabilities.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L166) -- [apiCapabilities/capabilities.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L176) -- [apiCapabilities/capabilities.feature:187](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L187) -- [apiCapabilities/capabilities.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L198) -- [apiCapabilities/capabilities.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L208) -- [apiCapabilities/capabilities.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L219) -- [apiCapabilities/capabilities.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L231) -- [apiCapabilities/capabilities.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L238) -- [apiCapabilities/capabilities.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L252) -- [apiCapabilities/capabilities.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L275) -- [apiCapabilities/capabilities.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L292) -- [apiCapabilities/capabilities.feature:313](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L313) -- [apiCapabilities/capabilities.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L335) -- [apiCapabilities/capabilities.feature:357](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L357) -- [apiCapabilities/capabilities.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L379) -- [apiCapabilities/capabilities.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L404) -- [apiCapabilities/capabilities.feature:429](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L429) -- [apiCapabilities/capabilities.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L454) -- [apiCapabilities/capabilities.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L476) -- [apiCapabilities/capabilities.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L498) -- [apiCapabilities/capabilities.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L521) -- [apiCapabilities/capabilities.feature:546](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L546) -- [apiCapabilities/capabilities.feature:568](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L568) -- [apiCapabilities/capabilities.feature:590](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L590) -- [apiCapabilities/capabilities.feature:613](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L613) -- [apiCapabilities/capabilities.feature:637](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L637) -- [apiCapabilities/capabilities.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L658) -- [apiCapabilities/capabilities.feature:680](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L680) -- [apiCapabilities/capabilities.feature:703](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L703) -- [apiCapabilities/capabilities.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L729) -- [apiCapabilities/capabilities.feature:758](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L758) -- [apiCapabilities/capabilities.feature:787](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L787) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L25) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L26) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L47) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L48) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L66) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L67) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L87) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L88) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L25) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L26) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L44) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L45) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L64) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L65) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L83) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L84) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L103) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L104) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L122) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L123) - -- [apiMain/caldav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L8) -- [apiMain/caldav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L15) -- [apiMain/caldav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L23) -- [apiMain/caldav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L31) -- [apiMain/carddav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L8) -- [apiMain/carddav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L15) -- [apiMain/carddav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L23) -- [apiMain/carddav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L31) - -### [user-sync endpoint does not exist](https://github.com/owncloud/ocis/issues/1241) - -- [apiMain/userSync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L18) -- [apiMain/userSync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L19) -- [apiMain/userSync.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L29) -- [apiMain/userSync.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L30) -- [apiMain/userSync.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L40) -- [apiMain/userSync.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L41) -- [apiMain/userSync.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L52) -- [apiMain/userSync.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L53) -- [apiMain/userSync.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L63) -- [apiMain/userSync.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L64) - -- [apiProvisioning-v1/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L11) -- [apiProvisioning-v1/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L19) -- [apiProvisioning-v1/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L27) -- [apiProvisioning-v1/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L35) -- [apiProvisioning-v1/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L48) -- [apiProvisioning-v1/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L11) -- [apiProvisioning-v1/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L21) -- [apiProvisioning-v2/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L11) -- [apiProvisioning-v2/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L19) -- [apiProvisioning-v2/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L27) -- [apiProvisioning-v2/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L35) -- [apiProvisioning-v2/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L11) -- [apiProvisioning-v2/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L21) -- [apiProvisioning-v2/getSubAdmins.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L30) -- [apiProvisioning-v2/getSubAdmins.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L44) -- [apiTranslation/translation.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L29) -- [apiTranslation/translation.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L30) - -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) -### [Expiration date for user shares is not implemented](https://github.com/owncloud/ocis/issues/1250) - -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L26) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L27) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L55) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L56) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L83) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L84) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L110) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L111) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L137) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L138) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L159) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L160) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L190) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L191) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L220) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L221) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L249) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L250) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L279) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L280) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:300](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L300) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L301) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L322) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:323](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L323) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:344](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L344) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:345](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L345) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L367) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L368) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:385](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L385) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:386](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L386) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L403) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L404) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:426](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L426) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:427](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L427) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L450) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L451) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L474) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L475) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:499](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L499) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:500](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L500) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L521) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:522](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L522) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:543](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L543) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:544](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L544) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:563](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L563) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:564](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L564) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:581](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L581) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:582](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L582) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:603](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L603) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:604](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L604) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:628](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L628) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:629](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L629) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:630](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L630) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:631](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L631) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L632) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:653](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L653) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:654](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L654) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:655](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L655) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:656](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L656) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:657](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L657) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L658) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:659](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L659) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:660](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L660) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:661](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L661) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:662](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L662) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:663](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L663) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:664](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L664) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:685](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L685) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:686](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L686) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:687](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L687) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:688](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L688) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:689](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L689) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:690](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L690) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:711](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L711) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:712](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L712) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:713](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L713) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:714](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L714) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:715](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L715) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:716](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L716) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:737](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L737) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:738](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L738) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:759](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L759) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:760](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L760) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:781](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L781) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:782](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L782) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L36) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L37) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L65) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L66) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L85) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L86) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L106) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L107) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L201) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L202) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L10) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L34) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L58) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L82) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L46) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L47) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L48) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L49) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L50) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L51) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L82) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L83) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L84) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L85) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L86) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L87) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:438](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L438) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:439](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L439) -- [apiShareOperationsToShares/accessToShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L71) -- [apiShareOperationsToShares/accessToShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L72) - -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - -- [apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature#L15) -- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L18) -- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L21) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L51) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L52) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L70) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L71) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L72) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L73) -- [apiShareManagementToShares/moveReceivedShare.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L14) -- [apiShareManagementToShares/moveReceivedShare.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L28) -- [apiShareManagementToShares/moveReceivedShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L39) -- [apiShareManagementToShares/moveReceivedShare.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L70) -- [apiShareManagementToShares/moveReceivedShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L71) -- [apiShareManagementToShares/moveReceivedShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L73) -- [apiShareManagementToShares/moveReceivedShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L88) -- [apiShareManagementToShares/moveReceivedShare.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L102) -- [apiShareManagementToShares/moveReceivedShare.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L110) -- [apiShareManagementToShares/moveReceivedShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L118) -- [apiShareManagementToShares/moveReceivedShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L128) -- [apiShareManagementToShares/moveReceivedShare.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L138) -- [apiShareManagementToShares/moveReceivedShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L148) -- [apiShareManagementToShares/moveReceivedShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L158) -- [apiShareManagementToShares/moveReceivedShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L168) -- [apiShareManagementToShares/moveReceivedShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L197) -- [apiShareManagementToShares/moveReceivedShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L198) -- [apiShareManagementToShares/moveReceivedShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L221) -- [apiShareManagementToShares/moveReceivedShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L222) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) -### [cannot get ocs:share-permissions via WebDAV](https://github.com/owncloud/ocis/issues/1326) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L59) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L60) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L73) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L74) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L94) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L95) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:108](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L108) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:109](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L109) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L129) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L130) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L177) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L178) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L191) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L192) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L212) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L213) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:226](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L226) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:227](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L227) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L247) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L248) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:261](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L261) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:262](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L262) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:282](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L282) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L283) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:296](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L296) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L297) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L317) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L318) -- [apiShareUpdateToShares/updateShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L92) -- [apiShareUpdateToShares/updateShare.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L93) -- [apiShareUpdateToShares/updateShare.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L94) -- [apiShareUpdateToShares/updateShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L95) -- [apiShareUpdateToShares/updateShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L96) -- [apiShareUpdateToShares/updateShare.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L97) -- [apiShareUpdateToShares/updateShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L123) -- [apiShareUpdateToShares/updateShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L155) - -### [No way to set default folder for received shares](https://github.com/owncloud/ocis/issues/1327) - -- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L21) -- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L22) - -### [Group shares support](https://github.com/owncloud/ocis/issues/1289) - -- [apiShareOperationsToShares/gettingShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L103) -- [apiShareOperationsToShares/gettingShares.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L104) -- [apiShareOperationsToShares/gettingShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L184) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) -### [Group shares support](https://github.com/owncloud/ocis/issues/1289) - -- [apiShareUpdateToShares/updateShare.feature:290](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L290) -- [apiShareUpdateToShares/updateShare.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L291) -- [apiShareUpdateToShares/updateShare.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L306) -- [apiShareUpdateToShares/updateShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L307) -- [apiShareUpdateToShares/updateShare.feature:334](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L334) -- [apiShareUpdateToShares/updateShare.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L335) -- [apiShareUpdateToShares/updateShare.feature:364](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L364) -- [apiShareUpdateToShares/updateShare.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L365) - -### [Group shares support](https://github.com/owncloud/ocis/issues/1289) -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - -- [apiShareUpdateToShares/updateShare.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L61) -- [apiShareUpdateToShares/updateShare.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L62) -- [apiShareUpdateToShares/updateShare.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L75) -- [apiShareUpdateToShares/updateShare.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L76) -- [apiShareUpdateToShares/updateShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L115) -- [apiShareUpdateToShares/updateShare.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L116) -- [apiShareUpdateToShares/updateShare.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L117) -- [apiShareUpdateToShares/updateShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L118) -- [apiShareUpdateToShares/updateShare.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L119) -- [apiShareUpdateToShares/updateShare.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L120) -- [apiShareUpdateToShares/updateShare.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L252) -- [apiShareUpdateToShares/updateShare.feature:253](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L253) -- [apiShareUpdateToShares/updateShare.feature:265](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L265) -- [apiShareUpdateToShares/updateShare.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L266) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L34) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L35) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L54) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L55) - -### [Share additional info](https://github.com/owncloud/ocis/issues/1253) -### [Share extra attributes](https://github.com/owncloud/ocis/issues/1224) -### [Edit user share response has an "name" field](https://github.com/owncloud/ocis/issues/1225) - -- [apiShareUpdateToShares/updateShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L230) -- [apiShareUpdateToShares/updateShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L231) - -### [Webdav LOCK operations](https://github.com/owncloud/ocis/issues/1284) - +#### [cannot rename files asynchronously](https://github.com/owncloud/product/issues/259) +- [apiWebdavMove1/moveFileAsync.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L26) +- [apiWebdavMove1/moveFileAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L27) +- [apiWebdavMove1/moveFileAsync.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L28) +- [apiWebdavMove1/moveFileAsync.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L29) +- [apiWebdavMove1/moveFileAsync.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L30) +- [apiWebdavMove1/moveFileAsync.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L31) +- [apiWebdavMove1/moveFileAsync.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L33) +- [apiWebdavMove1/moveFileAsync.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L46) +- [apiWebdavMove1/moveFileAsync.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L59) +- [apiWebdavMove1/moveFileAsync.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L73) +- [apiWebdavMove1/moveFileAsync.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L88) +- [apiWebdavMove1/moveFileAsync.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L107) +- [apiWebdavMove1/moveFileAsync.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L125) +- [apiWebdavMove1/moveFileAsync.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L135) +- [apiWebdavMove1/moveFileAsync.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L141) +- [apiWebdavMove1/moveFileAsync.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L204) +- [apiWebdavMove1/moveFileAsync.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L205) +- [apiWebdavMove1/moveFileAsync.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L224) +- [apiWebdavMove1/moveFileAsync.feature:225](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L225) +- [apiWebdavMove1/moveFileAsync.feature:234](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L234) +- [apiWebdavMove1/moveFileAsync.feature:235](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L235) +- [apiWebdavMove1/moveFileAsync.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L240) + +#### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) +- [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L12) +- [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L18) +- [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L26) + +#### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) +- [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L12) +- [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L19) +- [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L27) + +#### [renaming to banned name works](https://github.com/owncloud/ocis/issues/1295) +- [apiWebdavMove1/moveFolder.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L21) +- [apiWebdavMove1/moveFolder.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L22) +- [apiWebdavMove1/moveFolder.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L34) +- [apiWebdavMove1/moveFolder.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L35) +- [apiWebdavMove1/moveFolder.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L47) +- [apiWebdavMove1/moveFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L48) + +#### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) +- [apiWebdavMove1/moveFolderToBlacklistedName.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L21) +- [apiWebdavMove1/moveFolderToBlacklistedName.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L22) +- [apiWebdavMove1/moveFolderToBlacklistedName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L35) +- [apiWebdavMove1/moveFolderToBlacklistedName.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L36) +- [apiWebdavMove1/moveFolderToBlacklistedName.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L70) +- [apiWebdavMove1/moveFolderToBlacklistedName.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L71) + +#### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) +- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L21) +- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L22) +- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L34) +- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L35) +- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L70) +- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L71) + +#### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) +- [apiWebdavMove2/moveFileToBlacklistedName.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L18) +- [apiWebdavMove2/moveFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L19) +- [apiWebdavMove2/moveFileToBlacklistedName.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L29) +- [apiWebdavMove2/moveFileToBlacklistedName.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L30) +- [apiWebdavMove2/moveFileToBlacklistedName.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L62) +- [apiWebdavMove2/moveFileToBlacklistedName.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L63) + +#### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) +- [apiWebdavMove2/moveFileToExcludedDirectory.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L18) +- [apiWebdavMove2/moveFileToExcludedDirectory.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L19) +- [apiWebdavMove2/moveFileToExcludedDirectory.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L28) +- [apiWebdavMove2/moveFileToExcludedDirectory.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L29) +- [apiWebdavMove2/moveFileToExcludedDirectory.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L63) +- [apiWebdavMove2/moveFileToExcludedDirectory.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L64) + +#### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) + +#### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) +- [apiWebdavProperties1/copyFile.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L116) +- [apiWebdavProperties1/copyFile.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L117) +- [apiWebdavProperties1/copyFile.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L129) +- [apiWebdavProperties1/copyFile.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L130) +- [apiWebdavProperties1/copyFile.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L146) +- [apiWebdavProperties1/copyFile.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L147) +- [apiWebdavProperties1/copyFile.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L165) +- [apiWebdavProperties1/copyFile.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L166) +- [apiWebdavProperties1/copyFile.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L202) +- [apiWebdavProperties1/copyFile.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L203) +- [apiWebdavProperties1/copyFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L220) +- [apiWebdavProperties1/copyFile.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L221) +- [apiWebdavProperties1/copyFile.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L237) +- [apiWebdavProperties1/copyFile.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L238) +- [apiWebdavProperties1/copyFile.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L259) +- [apiWebdavProperties1/copyFile.feature:260](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L260) +- [apiWebdavProperties1/copyFile.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L283) +- [apiWebdavProperties1/copyFile.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L284) +- [apiWebdavProperties1/copyFile.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L306) +- [apiWebdavProperties1/copyFile.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L307) +- [apiWebdavProperties1/copyFile.feature:329](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L329) +- [apiWebdavProperties1/copyFile.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L330) + +#### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis/issues/1283) +Scenario Outline: try to create a folder that already exists +- [apiWebdavProperties1/createFolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L85) +- [apiWebdavProperties1/createFolder.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L86) + Scenario Outline: try to create a folder with a name of an existing file +- [apiWebdavProperties1/createFolder.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L99) +- [apiWebdavProperties1/createFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L100) + +#### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis/issues/1296) +Scenario Outline: Do a PROPFIND of various file names +- [apiWebdavProperties2/getFileProperties.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L37) +- [apiWebdavProperties2/getFileProperties.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L39) +- [apiWebdavProperties2/getFileProperties.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L40) +- [apiWebdavProperties2/getFileProperties.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L41) +- [apiWebdavProperties2/getFileProperties.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L43) +- [apiWebdavProperties2/getFileProperties.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L44) + +Scenario Outline: Do a PROPFIND of various folder names +- [apiWebdavProperties2/getFileProperties.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L59) +- [apiWebdavProperties2/getFileProperties.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L60) +- [apiWebdavProperties2/getFileProperties.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L61) +- [apiWebdavProperties2/getFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L63) +- [apiWebdavProperties2/getFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L64) +- [apiWebdavProperties2/getFileProperties.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L66) +- [apiWebdavProperties2/getFileProperties.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L67) +- [apiWebdavProperties2/getFileProperties.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L68) +- [apiWebdavProperties2/getFileProperties.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L70) +- [apiWebdavProperties2/getFileProperties.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L71) + +### [Different webdav properties from core](https://github.com/owncloud/ocis/issues/1302) +Scenario Outline: Propfind the last modified date of a folder using webdav api `Property "d:getlastmodified" found with value "Wed, 20 Jan 2021 14:39:31 +0000", expected "/^[MTWFS][uedhfriatno]{2},\s(\d){2}\s[JFMAJSOND][anebrpyulgctov]{2}\s\d{4}\s\d{2}:\d{2}:\d{2} GMT$/"` +- [apiWebdavProperties2/getFileProperties.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L301) +- [apiWebdavProperties2/getFileProperties.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L302) + Scenario Outline: Propfind the content type of a folder using webdav api `Property "d:getcontenttype" found with value "httpd/unix-directory", expected "#^$#" or "#^$#"` +- [apiWebdavProperties2/getFileProperties.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L314) +- [apiWebdavProperties2/getFileProperties.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L315) + Scenario Outline: Propfind the content type of a file using webdav api `Property "d:getcontenttype" found with value "text/plain; charset=utf-8", expected "#^text/plain$#" or "#^text/plain$#"` +- [apiWebdavProperties2/getFileProperties.feature:327](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L327) +- [apiWebdavProperties2/getFileProperties.feature:328](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L328) + Scenario Outline: Propfind the size of a folder using webdav api `Property "oc:size" found with value "10", expected "#^0$#" or "#^0$#"` +- [apiWebdavProperties2/getFileProperties.feature:376](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L376) +- [apiWebdavProperties2/getFileProperties.feature:377](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L377) + Scenario Outline: Propfind the permissions on a file using webdav api `Property "oc:permissions" found with value "DNVWR", expected "/RM{0,1}DNVW/"` +- [apiWebdavProperties2/getFileProperties.feature:441](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L441) +- [apiWebdavProperties2/getFileProperties.feature:442](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L442) + Scenario Outline: Propfind the permissions on a folder using webdav api `Property "oc:permissions" found with value "DNVCKR", expected "/RM{0,1}DNVCK/"` +- [apiWebdavProperties2/getFileProperties.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L454) +- [apiWebdavProperties2/getFileProperties.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L455) + +#### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) +_ocdav: double check the webdav property parsing when custom namespaces are used_ +- [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) +- [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) +- [apiWebdavProperties1/setFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L63) +- [apiWebdavProperties1/setFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L64) + +#### [Cannot set custom webDav properties](https://github.com/owncloud/product/issues/264) +- [apiWebdavProperties2/getFileProperties.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L246) +- [apiWebdavProperties2/getFileProperties.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L266) + +### Sync +Synchronization features like etag propagation, setting mtime and locking files + +#### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) +_ocdav: return checksum in upload response for chunked upload_ +- [apiMain/checksums.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L58) Scenario: Uploading a chunked file with checksum should return the checksum in the propfind +- [apiMain/checksums.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L67) Scenario: Uploading a chunked file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L138) Scenario: Upload new dav chunked file where checksum matches +- [apiMain/checksums.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L147) Scenario: Upload new dav chunked file where checksum does not match +- [apiMain/checksums.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L158) Scenario: Upload new dav chunked file using async MOVE where checksum matches +- [apiMain/checksums.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L174) Scenario: Upload new dav chunked file using async MOVE where checksum does not match +- [apiMain/checksums.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L192) Scenario: Upload new dav chunked file using async MOVE where checksum does not match - retry with correct checksum +- [apiMain/checksums.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L258) Scenario: Uploading an old method chunked file with checksum should fail using new DAV path +- [apiMain/checksums.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L312) Scenario: Upload overwriting a file with new chunking and correct checksum +- [apiMain/checksums.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L324) Scenario: Upload overwriting a file with new chunking and invalid checksum + + +#### [Webdav LOCK operations](https://github.com/owncloud/ocis/issues/1284) - [apiWebdavLocks/exclusiveLocks.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L17) - [apiWebdavLocks/exclusiveLocks.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L18) - [apiWebdavLocks/exclusiveLocks.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L19) @@ -2343,77 +749,1283 @@ restoring a file doesn't changes the etags of the parents - [apiWebdavLocksUnlock/unlockSharingToShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToShares.feature#L167) - [apiWebdavLocksUnlock/unlockSharingToShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToShares.feature#L168) -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) +### Share +File and sync features in a shared scenario -- [apiWebdavProperties1/copyFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L220) -- [apiWebdavProperties1/copyFile.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L221) -- [apiWebdavProperties1/copyFile.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L237) -- [apiWebdavProperties1/copyFile.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L238) -- [apiWebdavProperties1/copyFile.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L259) -- [apiWebdavProperties1/copyFile.feature:260](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L260) -- [apiWebdavProperties1/copyFile.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L283) -- [apiWebdavProperties1/copyFile.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L284) -- [apiWebdavProperties1/copyFile.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L306) -- [apiWebdavProperties1/copyFile.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L307) -- [apiWebdavProperties1/copyFile.feature:329](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L329) -- [apiWebdavProperties1/copyFile.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L330) +#### [etags don't change for a share receiver](https://github.com/owncloud/product/issues/243) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L244) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L245) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L314) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L315) -### [creating existing group doesn't gives error](https://github.com/owncloud/product/issues/282) -- [apiProvisioningGroups-v1/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L94) -- [apiProvisioningGroups-v2/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L94) +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: +- [apiWebdavEtagPropagation1/moveFileFolder.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L21) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L22) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L78) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L79) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L146) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L147) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L174) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L175) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L318) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:334](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L334) -### [cannot create group with '/'](https://github.com/owncloud/product/issues/285) -- [apiProvisioningGroups-v1/addToGroup.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L75) -- [apiProvisioningGroups-v1/addToGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L76) -- [apiProvisioningGroups-v1/addToGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L77) -- [apiProvisioningGroups-v1/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L85) -- [apiProvisioningGroups-v1/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L86) -- [apiProvisioningGroups-v1/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L87) -- [apiProvisioningGroups-v1/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L38) -- [apiProvisioningGroups-v1/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L76) -- [apiProvisioningGroups-v1/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L77) -- [apiProvisioningGroups-v1/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L78) +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) -- [apiProvisioningGroups-v2/addToGroup.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L70) -- [apiProvisioningGroups-v2/addToGroup.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L71) -- [apiProvisioningGroups-v2/addToGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L72) -- [apiProvisioningGroups-v2/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L85) -- [apiProvisioningGroups-v2/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L86) -- [apiProvisioningGroups-v2/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L87) -- [apiProvisioningGroups-v2/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L38) -- [apiProvisioningGroups-v2/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L76) -- [apiProvisioningGroups-v2/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L77) -- [apiProvisioningGroups-v2/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L78) +- [apiShareOperationsToShares/uploadToShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L39) +- [apiShareOperationsToShares/uploadToShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L40) +- [apiShareOperationsToShares/uploadToShare.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L91) +- [apiShareOperationsToShares/uploadToShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L92) +- [apiShareOperationsToShares/uploadToShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L139) +- [apiShareOperationsToShares/uploadToShare.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L140) -### [adding user to non-existent group gives wrong statuscode](https://github.com/owncloud/product/issues/286) -- [apiProvisioningGroups-v1/addToGroup.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L107) -- [apiProvisioningGroups-v1/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L101) +#### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) +- [apiMain/checksums.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L119) Scenario: Sharing a file with checksum should return the checksum in the propfind using new DAV path +- [apiMain/checksums.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L129) Scenario: Sharing and modifying a file should return correct checksum in the propfind using new DAV path -- [apiProvisioningGroups-v2/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L101) +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: -### [adding user to empty group gives wrong statuscode](https://github.com/owncloud/product/issues/287) -- [apiProvisioningGroups-v1/addToGroup.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L116) +- [apiMain/checksums.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L24) Scenario Outline: Uploading a file with checksum should return the checksum in the propfind +- [apiMain/checksums.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L25) Scenario Outline: Uploading a file with checksum should return the checksum in the propfind +- [apiMain/checksums.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L35) Scenario Outline: Uploading a file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L36) Scenario Outline: Uploading a file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L46) Scenario Outline: Moving a file with checksum should return the checksum in the propfind +- [apiMain/checksums.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L47) Scenario Outline: Moving a file with checksum should return the checksum in the propfind +- [apiMain/checksums.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L50) Scenario: Downloading a file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L99) Scenario Outline: Moving file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L100) Scenario Outline: Moving file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L103) Scenario: Copying a file with checksum should return the checksum in the propfind using new DAV path +- [apiMain/checksums.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L110) Scenario: Copying file with checksum should return the checksum in the download header using new DAV path +- [apiMain/checksums.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L217) Scenario Outline: Upload a file where checksum does not match +- [apiMain/checksums.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L218) Scenario Outline: Upload a file where checksum does not match +- [apiMain/checksums.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L239) Scenario Outline: Uploaded file should have the same checksum when downloaded +- [apiMain/checksums.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L240) Scenario Outline: Uploaded file should have the same checksum when downloaded +- [apiMain/checksums.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L279) Scenario Outline: Uploading a file with MD5 checksum overwriting an existing file +- [apiMain/checksums.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L280) Scenario Outline: Uploading a file with MD5 checksum overwriting an existing file +- [apiMain/checksums.feature:295](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L295) Scenario Outline: Uploading a file with SHA1 checksum overwriting an existing file +- [apiMain/checksums.feature:296](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L296) Scenario Outline: Uploading a file with SHA1 checksum overwriting an existing file +- [apiMain/checksums.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L308) Scenario Outline: Uploading a file with invalid SHA1 checksum overwriting an existing file +- [apiMain/checksums.feature:309](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L309) Scenario Outline: Uploading a file with invalid SHA1 checksum overwriting an existing file -### [adding non-existent user to a group gives wrong status code](https://github.com/owncloud/product/issues/288) -- [apiProvisioningGroups-v1/addToGroup.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L124) +#### [Searching sharee with displayname](https://github.com/owncloud/ocis/issues/547) +- [apiSharees/sharees.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L32) +- [apiSharees/sharees.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L33) +- [apiSharees/sharees.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L53) +- [apiSharees/sharees.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L54) +- [apiSharees/sharees.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L74) +- [apiSharees/sharees.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L75) +- [apiSharees/sharees.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L98) +- [apiSharees/sharees.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L99) +- [apiSharees/sharees.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L118) +- [apiSharees/sharees.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L119) +- [apiSharees/sharees.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L137) +- [apiSharees/sharees.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L138) +- [apiSharees/sharees.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L157) +- [apiSharees/sharees.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L158) +- [apiSharees/sharees.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L177) +- [apiSharees/sharees.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L178) +- [apiSharees/sharees.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L198) +- [apiSharees/sharees.feature:199](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L199) +- [apiSharees/sharees.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L217) +- [apiSharees/sharees.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L218) +- [apiSharees/sharees.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L237) +- [apiSharees/sharees.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L238) +- [apiSharees/sharees.feature:257](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L257) +- [apiSharees/sharees.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L258) +- [apiSharees/sharees.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L277) +- [apiSharees/sharees.feature:278](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L278) +- [apiSharees/sharees.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L297) +- [apiSharees/sharees.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L298) +- [apiSharees/sharees.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L317) +- [apiSharees/sharees.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L318) +- [apiSharees/sharees.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L336) +- [apiSharees/sharees.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L337) +- [apiSharees/sharees.feature:355](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L355) +- [apiSharees/sharees.feature:356](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L356) +- [apiSharees/sharees.feature:374](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L374) +- [apiSharees/sharees.feature:375](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L375) +- [apiSharees/sharees.feature:393](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L393) +- [apiSharees/sharees.feature:394](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L394) +- [apiSharees/sharees.feature:412](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L412) +- [apiSharees/sharees.feature:413](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L413) +- [apiSharees/sharees.feature:430](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L430) +- [apiSharees/sharees.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L431) +- [apiSharees/sharees.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L450) +- [apiSharees/sharees.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L451) +- [apiSharees/sharees.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L475) +- [apiSharees/sharees.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L476) +- [apiSharees/sharees.feature:495](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L495) +- [apiSharees/sharees.feature:496](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L496) +- [apiSharees/sharees.feature:515](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L515) +- [apiSharees/sharees.feature:516](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L516) +- [apiSharees/sharees.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L537) +- [apiSharees/sharees.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L538) -### [subadmin endpoints not implemented](https://github.com/owncloud/product/issues/289) +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiShareManagementToShares/acceptShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L22) +- [apiShareManagementToShares/acceptShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L223) +- [apiShareManagementToShares/acceptShares.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L270) +- [apiShareManagementToShares/acceptShares.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L342) +- [apiShareManagementToShares/acceptShares.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L378) +- [apiShareManagementToShares/acceptShares.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L417) + +#### User cannot create a folder named Share +- [apiShareManagementToShares/acceptShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L279) +- [apiShareManagementToShares/acceptShares.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L298) + +#### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) + +- [apiShareManagementToShares/acceptShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L71) +- [apiShareManagementToShares/acceptShares.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L162) +- [apiShareManagementToShares/acceptShares.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L175) +- [apiShareManagementToShares/acceptShares.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L196) +- [apiShareManagementToShares/acceptShares.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L249) +- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L28) +- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L48) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L140) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L141) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L176) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L177) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) + +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L36) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L37) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L66) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L67) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L91) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L92) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L94) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L95) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L97) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L98) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L155) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L156) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:288](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L288) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L289) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L305) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L306) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L46) +- [apiShareManagementToShares/mergeShare.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L32) +- [apiShareManagementToShares/mergeShare.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L42) +- [apiShareManagementToShares/mergeShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L89) + +#### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L100) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L101) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L179) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L180) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L204) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L205) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L236) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L237) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L258) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L259) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L324) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:325](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L325) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:362](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L362) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:363](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L363) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:392](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L392) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:461](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L461) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:462](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L462) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:497](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L497) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L498) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:501](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L501) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L28) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L29) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L89) + +#### [shares are mounted into /Shares folder even after the sharer deletes the collaborator](https://github.com/owncloud/ocis/issues/720) +#### [deleting share response does not contain `data` field](https://github.com/owncloud/ocis/issues/721) + +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L43) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L44) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L367) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:529](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L529) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:547](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L547) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:565](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L565) + +#### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L342) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:343](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L343) + +#### [File deletion using dav gives unique string in filename in the trashbin](https://github.com/owncloud/product/issues/178) + +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L58) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L72) + +cannot share a folder with create permission +#### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) + +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L118) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L130) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L181) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L182) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L183) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L184) + +#### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) +- [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) +- [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) + +#### [There is no such thing like a super-user](https://github.com/owncloud/ocis/issues/1319) + +- [apiShareOperationsToShares/gettingShares.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L38) +- [apiShareOperationsToShares/gettingShares.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L39) + +#### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) +#### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis-reva/issues/301) +#### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) + +- [apiShareOperationsToShares/gettingShares.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L135) +- [apiShareOperationsToShares/gettingShares.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L136) + +#### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis/issues/1233) + +- [apiShareOperationsToShares/gettingShares.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L180) +- [apiShareOperationsToShares/gettingShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L181) + +#### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) + +- [apiShareOperationsToShares/gettingShares.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L219) +- [apiShareOperationsToShares/gettingShares.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L220) + +#### [Allow getting the share list filtered by share type via API](https://github.com/owncloud/ocis/issues/774) + +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L44) +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L45) +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L56) +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L57) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L47) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L48) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L60) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L61) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L41) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L42) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L62) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L63) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L90) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L91) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L48) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L49) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L62) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L63) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L76) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L77) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L92) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L93) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L39) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L40) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L60) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L61) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L79) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L80) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) + +- [apiShareOperationsToShares/gettingShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L167) +- [apiShareOperationsToShares/gettingShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L168) + +#### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) +#### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) +#### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) + +- [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) +- [apiSharePublicLink1/accessToPublicLinkShare.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L20) +- [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) +- [apiSharePublicLink1/accessToPublicLinkShare.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L43) + +#### [creating public links with permissions fails](https://github.com/owncloud/product/issues/252) + +- [apiSharePublicLink1/changingPublicLinkShare.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L22) +- [apiSharePublicLink1/changingPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L23) +- [apiSharePublicLink1/changingPublicLinkShare.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L37) +- [apiSharePublicLink1/changingPublicLinkShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L41) +- [apiSharePublicLink1/changingPublicLinkShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L52) +- [apiSharePublicLink1/changingPublicLinkShare.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L85) +- [apiSharePublicLink1/changingPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L96) + +#### [Old webdav api does not work with public link](https://github.com/owncloud/product/issues/272) + +- [apiSharePublicLink1/changingPublicLinkShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L63) +- [apiSharePublicLink1/changingPublicLinkShare.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L107) +- [apiSharePublicLink1/changingPublicLinkShare.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L151) +- [apiSharePublicLink1/changingPublicLinkShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L197) +- [apiSharePublicLink1/changingPublicLinkShare.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L244) + +#### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) + +- [apiSharePublicLink1/changingPublicLinkShare.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L267) +- [apiSharePublicLink1/changingPublicLinkShare.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L289) +- [apiSharePublicLink1/createPublicLinkShare.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L34) +- [apiSharePublicLink1/createPublicLinkShare.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L35) +- [apiSharePublicLink1/createPublicLinkShare.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L183) +- [apiSharePublicLink1/createPublicLinkShare.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L184) +- [apiSharePublicLink1/createPublicLinkShare.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L214) +- [apiSharePublicLink1/createPublicLinkShare.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L215) +- [apiSharePublicLink1/createPublicLinkShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L307) +- [apiSharePublicLink1/createPublicLinkShare.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L308) +- [apiSharePublicLink1/createPublicLinkShare.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L370) +- [apiSharePublicLink1/createPublicLinkShare.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L371) + +#### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) + +- [apiSharePublicLink1/createPublicLinkShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L95) +- [apiSharePublicLink1/createPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L96) +- [apiSharePublicLink1/createPublicLinkShare.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L276) +- [apiSharePublicLink1/createPublicLinkShare.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L277) + +#### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis/issues/1293) + +- [apiSharePublicLink1/createPublicLinkShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L127) +- [apiSharePublicLink1/createPublicLinkShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L128) +- [apiSharePublicLink1/createPublicLinkShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L155) +- [apiSharePublicLink1/createPublicLinkShare.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L156) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) + +- [apiSharePublicLink1/createPublicLinkShare.feature:410](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L410) +- [apiSharePublicLink1/createPublicLinkShare.feature:411](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L411) +- [apiSharePublicLink1/createPublicLinkShare.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L431) +- [apiSharePublicLink1/createPublicLinkShare.feature:432](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L432) +- [apiSharePublicLink1/createPublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L454) +- [apiSharePublicLink1/createPublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L455) +- [apiSharePublicLink1/createPublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L477) +- [apiSharePublicLink1/createPublicLinkShare.feature:478](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L478) +- [apiSharePublicLink1/createPublicLinkShare.feature:479](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L479) +- [apiSharePublicLink1/createPublicLinkShare.feature:480](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L480) +- [apiSharePublicLink1/createPublicLinkShare.feature:481](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L481) +- [apiSharePublicLink1/createPublicLinkShare.feature:482](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L482) +- [apiSharePublicLink1/createPublicLinkShare.feature:502](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L502) +- [apiSharePublicLink1/createPublicLinkShare.feature:503](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L503) +- [apiSharePublicLink1/createPublicLinkShare.feature:518](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L518) +- [apiSharePublicLink1/createPublicLinkShare.feature:519](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L519) +- [apiSharePublicLink1/createPublicLinkShare.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L537) +- [apiSharePublicLink1/createPublicLinkShare.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L538) +- [apiSharePublicLink1/createPublicLinkShare.feature:574](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L574) +- [apiSharePublicLink1/createPublicLinkShare.feature:575](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L575) +- [apiSharePublicLink1/createPublicLinkShare.feature:635](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L635) +- [apiSharePublicLink1/createPublicLinkShare.feature:636](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L636) +- [apiSharePublicLink1/createPublicLinkShare.feature:649](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L649) +- [apiSharePublicLink1/createPublicLinkShare.feature:650](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L650) +- [apiSharePublicLink1/createPublicLinkShare.feature:678](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L678) +- [apiSharePublicLink1/createPublicLinkShare.feature:679](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L679) +- [apiSharePublicLink1/createPublicLinkShare.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L729) +- [apiSharePublicLink1/createPublicLinkShare.feature:730](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L730) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L163) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L164) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L165) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L166) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L42) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L43) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L69) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L70) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L97) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L98) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L135) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L136) + +#### [Public cannot upload file with mtime set on a public link share with new version of WebDAV API](https://github.com/owncloud/core/issues/37605) + +- [apiSharePublicLink1/createPublicLinkShare.feature:733](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L733) +- [apiSharePublicLink1/createPublicLinkShare.feature:742](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L742) + +#### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis/issues/1232) + +- [apiSharePublicLink2/copyFromPublicLink.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L60) +- [apiSharePublicLink2/copyFromPublicLink.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L85) +- [apiSharePublicLink2/copyFromPublicLink.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L166) +- [apiSharePublicLink2/copyFromPublicLink.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L167) +- [apiSharePublicLink2/copyFromPublicLink.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L182) +- [apiSharePublicLink2/copyFromPublicLink.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L183) +- [apiSharePublicLink2/updatePublicLinkShare.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L44) +- [apiSharePublicLink2/updatePublicLinkShare.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L45) +- [apiSharePublicLink2/updatePublicLinkShare.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L114) +- [apiSharePublicLink2/updatePublicLinkShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L115) +- [apiSharePublicLink2/updatePublicLinkShare.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L130) +- [apiSharePublicLink2/updatePublicLinkShare.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L131) +- [apiSharePublicLink2/updatePublicLinkShare.feature:321](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L321) +- [apiSharePublicLink2/updatePublicLinkShare.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L322) + +#### [OCIS share permissions not enforced](https://github.com/owncloud/product/issues/270) + +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L157) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L158) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L179) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L180) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L25) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L26) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L62) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L63) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L77) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L78) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L136) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L137) + +#### [OCIS old public webdav api doesnt works](https://github.com/owncloud/product/issues/272) + +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L30) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L31) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L50) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L51) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L71) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L72) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L92) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L93) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L114) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L115) + +#### [listing received shares does not work](https://github.com/owncloud/ocis-reva/issues/11) + +- [apiSharePublicLink2/updatePublicLinkShare.feature:340](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L340) +- [apiSharePublicLink2/updatePublicLinkShare.feature:341](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L341) +- [apiSharePublicLink2/updatePublicLinkShare.feature:359](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L359) +- [apiSharePublicLink2/updatePublicLinkShare.feature:360](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L360) +- [apiSharePublicLink2/updatePublicLinkShare.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L378) +- [apiSharePublicLink2/updatePublicLinkShare.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L379) +- [apiSharePublicLink2/updatePublicLinkShare.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L397) +- [apiSharePublicLink2/updatePublicLinkShare.feature:398](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L398) +- [apiSharePublicLink2/updatePublicLinkShare.feature:416](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L416) +- [apiSharePublicLink2/updatePublicLinkShare.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L417) +- [apiSharePublicLink2/updatePublicLinkShare.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L435) +- [apiSharePublicLink2/updatePublicLinkShare.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L436) +- [apiSharePublicLink2/updatePublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L454) +- [apiSharePublicLink2/updatePublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L455) +- [apiSharePublicLink2/updatePublicLinkShare.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L476) +- [apiSharePublicLink2/updatePublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L477) + +#### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) + +- [apiSharePublicLink2/updatePublicLinkShare.feature:523](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L523) +- [apiSharePublicLink2/updatePublicLinkShare.feature:524](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L524) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L9) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L83) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L103) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) + +#### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L48) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L49) + +#### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis-reva/issues/286) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L273) + +#### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis/issues/1268) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L66) + +#### [Set quota over settings](https://github.com/owncloud/ocis/issues/1290) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L148) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L158) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L167) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L177) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:186](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L186) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L196) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L206) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L217) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L238) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L255) + +#### [Resharing does not work with ocis storage](https://github.com/owncloud/product/issues/265) + +- [apiShareReshareToShares1/reShare.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L56) +- [apiShareReshareToShares1/reShare.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L57) +- [apiShareReshareToShares1/reShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L72) +- [apiShareReshareToShares1/reShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L73) +- [apiShareReshareToShares1/reShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L88) +- [apiShareReshareToShares1/reShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L89) +- [apiShareReshareToShares1/reShare.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L104) +- [apiShareReshareToShares1/reShare.feature:105](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L105) +- [apiShareReshareToShares1/reShare.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L159) +- [apiShareReshareToShares1/reShare.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L160) +- [apiShareReshareToShares1/reShare.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L161) +- [apiShareReshareToShares1/reShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L162) +- [apiShareReshareToShares1/reShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L163) +- [apiShareReshareToShares1/reShare.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L164) +- [apiShareReshareToShares1/reShare.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L165) +- [apiShareReshareToShares1/reShare.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L166) +- [apiShareReshareToShares1/reShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L167) +- [apiShareReshareToShares1/reShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L168) +- [apiShareReshareToShares1/reShare.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L169) +- [apiShareReshareToShares1/reShare.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L170) +- [apiShareReshareToShares1/reShare.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L171) +- [apiShareReshareToShares1/reShare.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L172) +- [apiShareReshareToShares1/reShare.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L173) +- [apiShareReshareToShares1/reShare.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L174) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L365) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:366](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L366) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L367) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L368) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:400](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L400) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:401](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L401) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:402](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L402) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L403) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L404) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:405](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L405) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:434](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L434) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L435) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L436) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:437](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L437) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:465](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L465) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:466](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L466) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L245) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L246) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L247) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L248) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L150) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L151) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L152) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L153) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L89) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L90) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L91) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L92) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L33) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L34) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiShareReshareToShares1/reShare.feature:228](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L228) +- [apiShareReshareToShares1/reShare.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L229) +- [apiShareReshareToShares1/reShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L230) +- [apiShareReshareToShares1/reShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L231) +- [apiShareReshareToShares1/reShare.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L232) +- [apiShareReshareToShares1/reShare.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L233) +- [apiShareReshareToShares1/reShare.feature:235](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L235) +- [apiShareReshareToShares1/reShare.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L236) +- [apiShareReshareToShares1/reShare.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L237) +- [apiShareReshareToShares1/reShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L238) +- [apiShareReshareToShares1/reShare.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L239) +- [apiShareReshareToShares1/reShare.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L240) +- [apiShareReshareToShares2/reShareSubfolder.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L47) +- [apiShareReshareToShares2/reShareSubfolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L48) +- [apiShareReshareToShares2/reShareSubfolder.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L49) +- [apiShareReshareToShares2/reShareSubfolder.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L50) +- [apiShareReshareToShares2/reShareSubfolder.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L51) +- [apiShareReshareToShares2/reShareSubfolder.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L52) +- [apiShareReshareToShares2/reShareSubfolder.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L53) +- [apiShareReshareToShares2/reShareSubfolder.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L54) +- [apiShareReshareToShares2/reShareSubfolder.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L55) +- [apiShareReshareToShares2/reShareSubfolder.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L56) +- [apiShareReshareToShares2/reShareSubfolder.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L57) +- [apiShareReshareToShares2/reShareSubfolder.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L58) +- [apiShareReshareToShares2/reShareSubfolder.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L60) +- [apiShareReshareToShares2/reShareSubfolder.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L61) +- [apiShareReshareToShares2/reShareSubfolder.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L62) +- [apiShareReshareToShares2/reShareSubfolder.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L63) +- [apiShareReshareToShares2/reShareSubfolder.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L64) +- [apiShareReshareToShares2/reShareSubfolder.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L65) +- [apiShareReshareToShares2/reShareSubfolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L66) +- [apiShareReshareToShares2/reShareSubfolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L67) +- [apiShareReshareToShares2/reShareSubfolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L68) +- [apiShareReshareToShares2/reShareSubfolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L69) +- [apiShareReshareToShares2/reShareSubfolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L70) +- [apiShareReshareToShares2/reShareSubfolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L71) +- [apiShareReshareToShares2/reShareSubfolder.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L73) +- [apiShareReshareToShares2/reShareSubfolder.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L74) +- [apiShareReshareToShares2/reShareSubfolder.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L75) +- [apiShareReshareToShares2/reShareSubfolder.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L76) +- [apiShareReshareToShares2/reShareSubfolder.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L77) +- [apiShareReshareToShares2/reShareSubfolder.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L78) +- [apiShareReshareToShares2/reShareSubfolder.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L80) +- [apiShareReshareToShares2/reShareSubfolder.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L81) +- [apiShareReshareToShares2/reShareSubfolder.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L82) +- [apiShareReshareToShares2/reShareSubfolder.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L83) +- [apiShareReshareToShares2/reShareSubfolder.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L84) +- [apiShareReshareToShares2/reShareSubfolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L85) + +#### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) + +- [apiShareReshareToShares2/reShareChain.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareChain.feature#L10) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) + +- [apiShareReshareToShares2/reShareDisabled.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L24) +- [apiShareReshareToShares2/reShareDisabled.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L25) +- [apiShareReshareToShares2/reShareDisabled.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L39) +- [apiShareReshareToShares2/reShareDisabled.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L40) + +#### [share permissions are not enforced](https://github.com/owncloud/product/issues/270) + +- [apiShareManagementToShares/mergeShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L24) +- [apiShareManagementToShares/mergeShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L52) +- [apiShareManagementToShares/mergeShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L79) +- [apiShareManagementToShares/mergeShare.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L99) +- [apiShareReshareToShares3/reShareUpdate.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L59) +- [apiShareReshareToShares3/reShareUpdate.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L60) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiShareReshareToShares1/reShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L24) +- [apiShareReshareToShares1/reShare.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L25) +- [apiShareReshareToShares1/reShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L39) +- [apiShareReshareToShares1/reShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L40) +- [apiShareReshareToShares1/reShare.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L120) +- [apiShareReshareToShares1/reShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L121) +- [apiShareReshareToShares1/reShare.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L122) +- [apiShareReshareToShares1/reShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L123) +- [apiShareReshareToShares1/reShare.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L124) +- [apiShareReshareToShares1/reShare.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L125) +- [apiShareReshareToShares1/reShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L127) +- [apiShareReshareToShares1/reShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L128) +- [apiShareReshareToShares1/reShare.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L129) +- [apiShareReshareToShares1/reShare.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L130) +- [apiShareReshareToShares1/reShare.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L131) +- [apiShareReshareToShares1/reShare.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L132) +- [apiShareReshareToShares1/reShare.feature:189](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L189) +- [apiShareReshareToShares1/reShare.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L190) +- [apiShareReshareToShares1/reShare.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L191) +- [apiShareReshareToShares1/reShare.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L192) +- [apiShareReshareToShares1/reShare.feature:193](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L193) +- [apiShareReshareToShares1/reShare.feature:194](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L194) +- [apiShareReshareToShares1/reShare.feature:195](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L195) +- [apiShareReshareToShares1/reShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L196) +- [apiShareReshareToShares1/reShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L198) +- [apiShareReshareToShares1/reShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L197) +- [apiShareReshareToShares1/reShare.feature:199](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L199) +- [apiShareReshareToShares1/reShare.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L200) +- [apiShareReshareToShares1/reShare.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L202) +- [apiShareReshareToShares1/reShare.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L203) +- [apiShareReshareToShares1/reShare.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L204) +- [apiShareReshareToShares1/reShare.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L205) +- [apiShareReshareToShares1/reShare.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L206) +- [apiShareReshareToShares1/reShare.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L207) +- [apiShareReshareToShares1/reShare.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L208) +- [apiShareReshareToShares1/reShare.feature:209](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L209) +- [apiShareReshareToShares1/reShare.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L210) +- [apiShareReshareToShares1/reShare.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L211) +- [apiShareReshareToShares1/reShare.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L212) +- [apiShareReshareToShares1/reShare.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L213) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) + +- [apiShareReshareToShares2/reShareSubfolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L28) +- [apiShareReshareToShares2/reShareSubfolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L29) +- [apiShareReshareToShares2/reShareSubfolder.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L106) +- [apiShareReshareToShares2/reShareSubfolder.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L107) +- [apiShareReshareToShares2/reShareSubfolder.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L128) +- [apiShareReshareToShares2/reShareSubfolder.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L129) +- [apiShareReshareToShares2/reShareSubfolder.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L150) +- [apiShareReshareToShares2/reShareSubfolder.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L151) + + +#### [Share receiver cannot get share by id](https://github.com/owncloud/product/issues/253) + +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) + +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L24) +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L25) +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L41) +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L42) +- [apiShareReshareToShares3/reShareUpdate.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L112) +- [apiShareReshareToShares3/reShareUpdate.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L113) +- [apiShareReshareToShares3/reShareUpdate.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L131) +- [apiShareReshareToShares3/reShareUpdate.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L132) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L61) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L62) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L121) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L122) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L123) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L124) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L181) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L182) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L183) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L184) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L212) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L213) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L214) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L215) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L302) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:303](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L303) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:304](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L304) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L305) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L335) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L336) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L337) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:338](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L338) + +#### [invalid format of sharees response](https://github.com/owncloud/product/issues/292) + +#### [deleting a received share-folder moves it to trash-bin but does not unshare it](https://github.com/owncloud/ocis/issues/1123) + +- [apiTrashbin/trashbinSharingToShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L24) +- [apiTrashbin/trashbinSharingToShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L25) +- [apiShareManagementToShares/acceptShares.feature:469](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L469) +- [apiShareManagementToShares/acceptShares.feature:470](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L470) + +#### [deleting a file inside a received shared folder is moved to the trash-bin of the sharer not the receiver](https://github.com/owncloud/ocis/issues/1124) + +- [apiTrashbin/trashbinSharingToShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L40) +- [apiTrashbin/trashbinSharingToShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L41) +- [apiTrashbin/trashbinSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L63) +- [apiTrashbin/trashbinSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L64) +- [apiTrashbin/trashbinSharingToShares.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L82) +- [apiTrashbin/trashbinSharingToShares.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L83) +- [apiTrashbin/trashbinSharingToShares.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L102) +- [apiTrashbin/trashbinSharingToShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L103) + +#### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) +- [apiShareOperationsToShares/uploadToShare.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L246) + +#### Copying into a shared folder +Scenario Outline: Copying a file to a folder with no permissions +- [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) +- [apiWebdavProperties1/copyFile.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L66) + Scenario Outline: Copying a file to overwrite a file into a folder with no permissions +- [apiWebdavProperties1/copyFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L85) +- [apiWebdavProperties1/copyFile.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L86) + +#### Share jail related +Scenario Outline: delete a folder when there is a default folder for received shares +- [apiWebdavOperations/deleteFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L67) +- [apiWebdavOperations/deleteFolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L68) +- [apiWebdavOperations/deleteFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L69) +- [apiWebdavOperations/deleteFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L70) + Scenario Outline: delete a folder when there is a default folder for received shares that is a multi-level path +- [apiWebdavOperations/deleteFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L91) +- [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) + +- [apiWebdavProperties1/copyFile.feature:350](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L350) +- [apiWebdavProperties1/copyFile.feature:351](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L351) +- [apiWebdavProperties1/copyFile.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L370) +- [apiWebdavProperties1/copyFile.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L371) +- [apiWebdavProperties1/copyFile.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L395) +- [apiWebdavProperties1/copyFile.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L396) +- [apiWebdavProperties1/copyFile.feature:422](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L422) +- [apiWebdavProperties1/copyFile.feature:423](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L423) +- [apiWebdavProperties1/copyFile.feature:448](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L448) +- [apiWebdavProperties1/copyFile.feature:449](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L449) +- [apiWebdavProperties1/copyFile.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L474) +- [apiWebdavProperties1/copyFile.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L475) + +#### [quota query](https://github.com/owncloud/ocis/issues/1313) +- [apiMain/quota.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L41) Scenario: Uploading a file in received folder having enough quota +- [apiMain/quota.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L54) Scenario: Uploading a file in received folder having insufficient quota +- [apiMain/quota.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L68) Scenario: Overwriting a file in received folder having enough quota +- [apiMain/quota.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L82) Scenario: Overwriting a file in received folder having insufficient quota +- [apiMain/quota.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L99) Scenario: Overwriting a received file having enough quota +- [apiMain/quota.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L112) Scenario: Overwriting a received file having insufficient quota + Scenario Outline: Retrieving folder quota of shared folder with quota when no quota is set for recipient +- [apiWebdavProperties1/getQuota.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L48) +- [apiWebdavProperties1/getQuota.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L49) + Scenario Outline: Retrieving folder quota when quota is set and a file was uploaded +- [apiWebdavProperties1/getQuota.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L61) +- [apiWebdavProperties1/getQuota.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L62) + Scenario Outline: Retrieving folder quota when quota is set and a file was received +- [apiWebdavProperties1/getQuota.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L77) +- [apiWebdavProperties1/getQuota.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L78) + +#### [cannot get share-types webdav property](https://github.com/owncloud/ocis/issues/567) +- [apiWebdavProperties2/getFileProperties.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L174) +- [apiWebdavProperties2/getFileProperties.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L175) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiWebdavProperties2/getFileProperties.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L135) +- [apiWebdavProperties2/getFileProperties.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L136) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiWebdavProperties2/getFileProperties.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L156) +- [apiWebdavProperties2/getFileProperties.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L157) +- [apiWebdavProperties2/getFileProperties.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L206) +- [apiWebdavProperties2/getFileProperties.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L207) + +#### [Private link support](https://github.com/owncloud/product/issues/201) +#### [oc:privatelink property not returned in webdav responses](https://github.com/owncloud/product/issues/262) +- [apiWebdavProperties2/getFileProperties.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L232) +- [apiWebdavProperties2/getFileProperties.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L233) + +#### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) +- [apiShareOperationsToShares/uploadToShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L162) +- [apiShareOperationsToShares/uploadToShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L163) +- [apiShareOperationsToShares/uploadToShare.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L181) +- [apiShareOperationsToShares/uploadToShare.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L182) +- [apiShareOperationsToShares/uploadToShare.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L202) +- [apiShareOperationsToShares/uploadToShare.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L203) +- [apiShareOperationsToShares/uploadToShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L221) +- [apiShareOperationsToShares/uploadToShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L222) +- [apiShareOperationsToShares/uploadToShare.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L242) +- [apiShareOperationsToShares/uploadToShare.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L243) + + +#### [not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) +- [apiShareOperationsToShares/changingFilesShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L23) +- [apiShareOperationsToShares/changingFilesShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L24) +- [apiShareOperationsToShares/changingFilesShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L63) +- [apiShareOperationsToShares/changingFilesShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L79) +- [apiShareOperationsToShares/changingFilesShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L95) + +#### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) +- [apiShareOperationsToShares/changingFilesShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L40) +- [apiShareOperationsToShares/changingFilesShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L41) +- [apiShareOperationsToShares/changingFilesShare.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L59) +- [apiShareOperationsToShares/changingFilesShare.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L60) + +Scenario Outline: Moving a file into a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L89) +- [apiWebdavMove2/moveFile.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L90) +- [apiWebdavMove2/moveFile.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L91) +- [apiWebdavMove2/moveFile.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L92) + Scenario Outline: Moving a file out of a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L112) +- [apiWebdavMove2/moveFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L113) + Scenario Outline: Moving a folder into a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L136) +- [apiWebdavMove2/moveFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L137) +- [apiWebdavMove2/moveFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L138) +- [apiWebdavMove2/moveFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L139) + Scenario Outline: Moving a folder out of a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L160) +- [apiWebdavMove2/moveFile.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L161) + Scenario Outline: Moving a file to a shared folder with no permissions +- [apiWebdavMove2/moveFile.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L181) +- [apiWebdavMove2/moveFile.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L182) + Scenario Outline: Moving a file to overwrite a file in a shared folder with no permissions +- [apiWebdavMove2/moveFile.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L200) +- [apiWebdavMove2/moveFile.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L201) + Scenario Outline: rename a file into an invalid filename +- [apiWebdavMove2/moveFile.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L219) +- [apiWebdavMove2/moveFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L220) + Scenario Outline: Checking file id after a move between received shares +- [apiWebdavMove2/moveFile.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L255) +- [apiWebdavMove2/moveFile.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L256) + Scenario Outline: Renaming a file to a path with extension .part should not be possible +- [apiWebdavMove2/moveFile.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L272) +- [apiWebdavMove2/moveFile.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L273) + +#### [restoring an older version of a shared file deletes the share](https://github.com/owncloud/ocis/issues/765) +- [apiShareManagementToShares/acceptShares.feature:473](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L473) +- [apiVersions/fileVersionsSharingToShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L44) + +#### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) +- [apiVersions/fileVersionsSharingToShares.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L134) +- [apiVersions/fileVersionsSharingToShares.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L149) +- [apiVersions/fileVersionsSharingToShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L163) +- [apiVersions/fileVersionsSharingToShares.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L250) +- [apiVersions/fileVersionsSharingToShares.feature:251](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L251) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiVersions/fileVersionsSharingToShares.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L179) + +####[not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) +- [apiVersions/fileVersionsSharingToShares.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L222) +- [apiVersions/fileVersionsSharingToShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L223) +- [apiVersions/fileVersionsSharingToShares.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L224) +- [apiVersions/fileVersionsSharingToShares.feature:225](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L225) +- [apiVersions/fileVersionsSharingToShares.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L252) +- [apiVersions/fileVersionsSharingToShares.feature:253](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L253) + +#### [getting the metadata without permission results in a 403 error](https://github.com/owncloud/ocis/issues/773) +- [apiVersions/fileVersionsSharingToShares.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L256) + +#### [The version number of a file is incorrect because of the incorrect number of `` and `` element](https://github.com/owncloud/ocis/issues/1234) +- [apiVersions/fileVersionsSharingToShares.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L267) + +#### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +#### [Expiration date for user shares is not implemented](https://github.com/owncloud/ocis/issues/1250) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L26) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L27) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L55) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L56) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L83) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L84) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L110) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L111) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L137) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L138) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L159) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L160) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L190) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L191) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L220) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L221) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L249) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L250) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L279) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L280) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:300](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L300) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L301) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L322) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:323](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L323) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:344](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L344) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:345](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L345) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L367) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L368) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:385](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L385) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:386](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L386) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L403) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L404) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:426](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L426) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:427](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L427) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L450) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L451) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L474) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L475) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:499](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L499) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:500](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L500) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L521) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:522](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L522) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:543](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L543) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:544](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L544) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:563](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L563) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:564](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L564) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:581](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L581) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:582](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L582) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:603](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L603) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:604](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L604) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:628](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L628) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:629](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L629) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:630](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L630) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:631](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L631) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L632) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:653](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L653) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:654](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L654) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:655](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L655) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:656](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L656) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:657](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L657) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L658) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:659](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L659) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:660](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L660) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:661](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L661) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:662](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L662) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:663](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L663) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:664](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L664) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:685](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L685) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:686](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L686) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:687](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L687) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:688](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L688) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:689](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L689) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:690](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L690) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:711](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L711) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:712](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L712) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:713](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L713) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:714](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L714) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:715](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L715) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:716](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L716) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:737](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L737) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:738](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L738) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:759](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L759) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:760](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L760) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:781](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L781) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:782](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L782) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L36) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L37) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L65) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L66) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L85) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L86) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L106) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L107) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L201) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L202) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L10) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L34) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L58) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L82) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L46) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L47) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L48) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L49) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L50) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L51) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L82) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L83) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L84) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L85) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L86) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L87) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:438](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L438) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:439](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L439) +- [apiShareOperationsToShares/accessToShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L71) +- [apiShareOperationsToShares/accessToShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L72) + +#### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +- [apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature#L15) +- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L18) +- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L21) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L51) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L52) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L70) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L71) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L72) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L73) +- [apiShareManagementToShares/moveReceivedShare.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L14) +- [apiShareManagementToShares/moveReceivedShare.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L28) +- [apiShareManagementToShares/moveReceivedShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L39) +- [apiShareManagementToShares/moveReceivedShare.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L70) +- [apiShareManagementToShares/moveReceivedShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L71) +- [apiShareManagementToShares/moveReceivedShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L73) +- [apiShareManagementToShares/moveReceivedShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L88) +- [apiShareManagementToShares/moveReceivedShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L118) +- [apiShareManagementToShares/moveReceivedShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L128) +- [apiShareManagementToShares/moveReceivedShare.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L138) +- [apiShareManagementToShares/moveReceivedShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L148) +- [apiShareManagementToShares/moveReceivedShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L158) +- [apiShareManagementToShares/moveReceivedShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L168) +- [apiShareManagementToShares/moveReceivedShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L197) +- [apiShareManagementToShares/moveReceivedShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L198) +- [apiShareManagementToShares/moveReceivedShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L221) +- [apiShareManagementToShares/moveReceivedShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L222) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L59) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L60) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L94) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L95) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L129) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L130) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L177) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L178) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L212) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L213) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L247) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L248) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:282](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L282) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L283) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L317) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L318) +- [apiShareUpdateToShares/updateShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L92) +- [apiShareUpdateToShares/updateShare.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L93) +- [apiShareUpdateToShares/updateShare.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L94) +- [apiShareUpdateToShares/updateShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L95) +- [apiShareUpdateToShares/updateShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L96) +- [apiShareUpdateToShares/updateShare.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L97) +- [apiShareUpdateToShares/updateShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L123) +- [apiShareUpdateToShares/updateShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L155) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiShareManagementToShares/moveReceivedShare.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L102) +- [apiShareManagementToShares/moveReceivedShare.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L110) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L73) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L74) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:108](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L108) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:109](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L109) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L191) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L192) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:226](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L226) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:227](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L227) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:261](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L261) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:262](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L262) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:296](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L296) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L297) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L297) + +### [Moving resource loses associated shares](https://github.com/owncloud/ocis/issues/1251) + +- [apiSharePublicLink2/multilinkSharing.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/multilinkSharing.feature#L181) + +#### [No way to set default folder for received shares](https://github.com/owncloud/ocis/issues/1327) +- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L21) +- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L22) + +#### [Group shares support ](https://github.com/owncloud/ocis/issues/1289) +- [apiShareOperationsToShares/gettingShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L103) +- [apiShareOperationsToShares/gettingShares.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L104) +- [apiShareOperationsToShares/gettingShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L184) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) +#### [Group shares support](https://github.com/owncloud/ocis/issues/1289) +- [apiShareUpdateToShares/updateShare.feature:290](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L290) +- [apiShareUpdateToShares/updateShare.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L291) +- [apiShareUpdateToShares/updateShare.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L306) +- [apiShareUpdateToShares/updateShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L307) +- [apiShareUpdateToShares/updateShare.feature:334](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L334) +- [apiShareUpdateToShares/updateShare.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L335) +- [apiShareUpdateToShares/updateShare.feature:364](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L364) +- [apiShareUpdateToShares/updateShare.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L365) + +#### [Group shares support](https://github.com/owncloud/ocis/issues/1289) +#### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +- [apiShareUpdateToShares/updateShare.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L61) +- [apiShareUpdateToShares/updateShare.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L62) +- [apiShareUpdateToShares/updateShare.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L75) +- [apiShareUpdateToShares/updateShare.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L76) +- [apiShareUpdateToShares/updateShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L115) +- [apiShareUpdateToShares/updateShare.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L116) +- [apiShareUpdateToShares/updateShare.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L117) +- [apiShareUpdateToShares/updateShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L118) +- [apiShareUpdateToShares/updateShare.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L119) +- [apiShareUpdateToShares/updateShare.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L120) +- [apiShareUpdateToShares/updateShare.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L252) +- [apiShareUpdateToShares/updateShare.feature:253](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L253) +- [apiShareUpdateToShares/updateShare.feature:265](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L265) +- [apiShareUpdateToShares/updateShare.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L266) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L34) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L35) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L54) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L55) + +#### [Share additional info](https://github.com/owncloud/ocis/issues/1253) +#### [Share extra attributes](https://github.com/owncloud/ocis/issues/1224) +#### [Edit user share response has an "name" field](https://github.com/owncloud/ocis/issues/1225) +- [apiShareUpdateToShares/updateShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L230) +- [apiShareUpdateToShares/updateShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L231) + +#### [user can access version metadata of a received share before accepting it](https://github.com/owncloud/ocis/issues/760) +- [apiVersions/fileVersionsSharingToShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L279) + +#### [when a share exists its impossible to share a renamed folder](https://github.com/owncloud/ocis/issues/719) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:611](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L611) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:612](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L612) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:665](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L665) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:666](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L666) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiWebdavUploadTUS/uploadToShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L52) +- [apiWebdavUploadTUS/uploadToShare.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L53) + +#### [Share lists deleted user as 'user'](https://github.com/owncloud/ocis/issues/903) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L632) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:633](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L633) + +#### [deleting a share with wrong authentication returns OCS status 996 / HTTP 500](https://github.com/owncloud/ocis/issues/1229) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#211) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#212) + +### User Management +User and group management features + +#### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) +special character username not valid +- [apiProvisioning-v1/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L29) +- [apiProvisioning-v1/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L30) +- [apiProvisioning-v1/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L121) +- [apiProvisioning-v1/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L122) +- [apiProvisioning-v1/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L123) +- [apiProvisioning-v1/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L29) +- [apiProvisioning-v1/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L30) +- [apiProvisioning-v1/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L29) +- [apiProvisioning-v1/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L30) +- [apiProvisioning-v1/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L29) +- [apiProvisioning-v1/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L30) +- [apiProvisioning-v1/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L31) +- [apiProvisioning-v1/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L32) +- [apiProvisioning-v1/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L34) +- [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) +- [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) +- [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) +- [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) +- [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) +- [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) +- [apiProvisioning-v2/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L30) +- [apiProvisioning-v2/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L29) +- [apiProvisioning-v2/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L30) +- [apiProvisioning-v2/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L31) +- [apiProvisioning-v2/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L32) +- [apiProvisioning-v2/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L34) +- [apiProvisioning-v2/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L35) + +#### [Creating an already existing user works](https://github.com/owncloud/ocis-accounts/issues/80) +- [apiProvisioning-v1/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L32) +- [apiProvisioning-v2/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L32) +- [apiProvisioning-v1/addUser.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L39) +- [apiProvisioning-v2/addUser.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L39) + +#### [Password can be set to empty](https://github.com/owncloud/product/issues/197) +- [apiProvisioning-v1/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L69) +- [apiProvisioning-v2/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L69) + +#### [Username is case sensitive](https://github.com/owncloud/ocis-accounts/issues/128) +- [apiProvisioning-v1/addUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L102) +- [apiProvisioning-v2/addUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L102) + +#### [Client token generation not implemented](https://github.com/owncloud/ocis/issues/197) +- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L39) +- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L67) +- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L39) +- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L67) + +#### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis/issues/1420) +- [apiProvisioning-v1/enableUser.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L92) +- [apiProvisioning-v1/enableUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L102) +- [apiProvisioning-v1/enableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L129) +- [apiProvisioning-v1/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L99) +- [apiProvisioning-v1/disableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L129) +- [apiProvisioning-v1/disableUser.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L165) +- [apiProvisioning-v1/disableUser.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L172) +- [apiProvisioning-v1/disableUser.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L190) +- [apiProvisioning-v1/disableUser.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L203) +- [apiProvisioning-v1/disableUser.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L219) +- [apiProvisioning-v2/disableUser.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L79) +- [apiProvisioning-v2/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L99) +- [apiProvisioning-v2/disableUser.feature:108](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L108) +- [apiProvisioning-v2/disableUser.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L130) +- [apiProvisioning-v2/disableUser.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L166) +- [apiProvisioning-v2/disableUser.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L173) +- [apiProvisioning-v2/disableUser.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L191) +- [apiProvisioning-v2/disableUser.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L204) +- [apiProvisioning-v2/disableUser.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L220) + +#### [displayname of user can be changed to empty](https://github.com/owncloud/ocis-ocs/issues/51) +- [apiProvisioning-v1/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L47) +- [apiProvisioning-v2/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L47) + +#### [quota query](https://github.com/owncloud/ocis/issues/1313) +_getting and setting quota_ +- [apiMain/quota.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L9) Scenario: Uploading a file as owner having enough quota +- [apiMain/quota.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L16) Scenario: Uploading a file as owner having insufficient quota +- [apiMain/quota.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L23) Scenario: Overwriting a file as owner having enough quota +- [apiMain/quota.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L30) Scenario: Overwriting a file as owner having insufficient quota + Scenario Outline: Retrieving folder quota when no quota is set +- [apiWebdavProperties1/getQuota.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L17) +- [apiWebdavProperties1/getQuota.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L18) + Scenario Outline: Retrieving folder quota when quota is set +- [apiWebdavProperties1/getQuota.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L27) +- [apiWebdavProperties1/getQuota.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L28) + +#### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) +- [apiProvisioning-v1/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L56) +- [apiProvisioning-v1/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L122) +- [apiProvisioning-v2/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L56) +- [apiProvisioning-v2/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L122) +- [apiProvisioning-v2/enableUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L34) +- [apiProvisioning-v2/enableUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L56) +- [apiProvisioning-v2/enableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L64) + +#### [user can get info of other users/ cloud/users endpoints not authenticated](https://github.com/owncloud/product/issues/248) +- [apiProvisioning-v2/deleteUser.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L54) +- [apiProvisioning-v1/getUser.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L81) +- [apiProvisioning-v2/getUser.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L82) +- [apiProvisioning-v2/getUsers.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUsers.feature#L44) + +#### [incorrect ocs(v2) status value when getting info of user that does not exist should be 404, gives 998](https://github.com/owncloud/product/issues/250) +_ocs: api compatibility, return correct status code_ +- [apiProvisioning-v2/getUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L47) + +#### [subadmin endpoints not implemented for users](https://github.com/owncloud/product/issues/289) - [apiProvisioning-v1/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L125) +- [apiProvisioning-v1/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L48) - [apiProvisioning-v1/deleteUser.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L73) - [apiProvisioning-v1/disableUser.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L222) +- [apiProvisioning-v1/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L131) - [apiProvisioning-v1/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L143) - [apiProvisioning-v1/getUser.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L170) -- [apiProvisioning-v1/resetUserPassword.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L111) -- [apiProvisioningGroups-v1/addGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L87) -- [apiProvisioningGroups-v1/addToGroup.feature:133](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L133) -- [apiProvisioningGroups-v1/addToGroup.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L146) -- [apiProvisioningGroups-v1/deleteGroup.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L99) -- [apiProvisioningGroups-v1/getGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L72) -- [apiProvisioningGroups-v1/getSubAdminGroups.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L11) -- [apiProvisioningGroups-v1/getSubAdminGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L24) -- [apiProvisioningGroups-v1/getUserGroups.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L56) -- [apiProvisioningGroups-v1/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L110) -- [apiProvisioningGroups-v1/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L123) - [apiProvisioning-v1/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L113) - [apiProvisioning-v2/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L125) @@ -2440,6 +2052,19 @@ restoring a file doesn't changes the etags of the parents - [apiProvisioning-v2/resetUserPassword.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L101) - [apiProvisioning-v2/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L113) - [apiProvisioning-v2/resetUserPassword.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L129) + +#### [subadmin endpoints not implemented for groups](https://github.com/owncloud/product/issues/289) +- [apiProvisioningGroups-v1/addGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L87) +- [apiProvisioningGroups-v1/addToGroup.feature:133](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L133) +- [apiProvisioningGroups-v1/addToGroup.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L146) +- [apiProvisioningGroups-v1/deleteGroup.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L99) +- [apiProvisioningGroups-v1/getGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L72) +- [apiProvisioningGroups-v1/getSubAdminGroups.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L11) +- [apiProvisioningGroups-v1/getSubAdminGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L24) +- [apiProvisioningGroups-v1/getUserGroups.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L56) +- [apiProvisioningGroups-v1/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L110) +- [apiProvisioningGroups-v1/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L123) + - [apiProvisioningGroups-v2/addGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L87) - [apiProvisioningGroups-v2/addGroup.feature:109](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L109) - [apiProvisioningGroups-v2/addToGroup.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L128) @@ -2453,17 +2078,56 @@ restoring a file doesn't changes the etags of the parents - [apiProvisioningGroups-v2/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L110) - [apiProvisioningGroups-v2/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L123) -### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) -special character username not valid +#### [creating existing group doesn't gives error](https://github.com/owncloud/product/issues/282) +- [apiProvisioningGroups-v1/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L94) +- [apiProvisioningGroups-v2/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L94) + +#### [cannot create group with '/'](https://github.com/owncloud/product/issues/285) +- [apiProvisioningGroups-v1/addToGroup.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L75) +- [apiProvisioningGroups-v1/addToGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L76) +- [apiProvisioningGroups-v1/addToGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L77) +- [apiProvisioningGroups-v1/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L85) +- [apiProvisioningGroups-v1/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L86) +- [apiProvisioningGroups-v1/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L87) +- [apiProvisioningGroups-v1/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L38) +- [apiProvisioningGroups-v1/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L76) +- [apiProvisioningGroups-v1/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L77) +- [apiProvisioningGroups-v1/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L78) + +- [apiProvisioningGroups-v2/addToGroup.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L70) +- [apiProvisioningGroups-v2/addToGroup.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L71) +- [apiProvisioningGroups-v2/addToGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L72) +- [apiProvisioningGroups-v2/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L85) +- [apiProvisioningGroups-v2/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L86) +- [apiProvisioningGroups-v2/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L87) +- [apiProvisioningGroups-v2/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L38) +- [apiProvisioningGroups-v2/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L76) +- [apiProvisioningGroups-v2/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L77) +- [apiProvisioningGroups-v2/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L78) + +#### [adding user to non-existent group gives wrong statuscode](https://github.com/owncloud/product/issues/286) +- [apiProvisioningGroups-v1/addToGroup.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L107) +- [apiProvisioningGroups-v1/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L101) +- [apiProvisioningGroups-v2/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L101) + +#### [adding user to empty group gives wrong statuscode](https://github.com/owncloud/product/issues/287) +- [apiProvisioningGroups-v1/addToGroup.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L116) + +#### [adding non-existent user to a group gives wrong status code](https://github.com/owncloud/product/issues/288) +- [apiProvisioningGroups-v1/addToGroup.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L124) + + +#### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) +_special character username not valid_ - [apiProvisioningGroups-v1/getGroup.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L11) - [apiProvisioningGroups-v2/getGroup.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroup.feature#L11) -### [normal users can list the members of the group](https://github.com/owncloud/product/issues/290) +#### [normal users can list the members of the group](https://github.com/owncloud/product/issues/290) - [apiProvisioningGroups-v1/getGroup.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L81) - [apiProvisioningGroups-v1/deleteGroup.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L90) - [apiProvisioningGroups-v2/getGroup.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroup.feature#L83) -### [ocs v2 invalid status code for group endpoints](https://github.com/owncloud/product/issues/291) +#### [ocs v2 invalid status code for group endpoints](https://github.com/owncloud/product/issues/291) - [apiProvisioningGroups-v2/addGroup.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L102) - [apiProvisioningGroups-v2/addToGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L94) - [apiProvisioningGroups-v2/addToGroup.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L102) @@ -2473,67 +2137,337 @@ special character username not valid - [apiProvisioningGroups-v2/getUserGroups.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L73) - [apiProvisioningGroups-v2/removeFromGroup.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L138) -### [requests to webdav URLs with an fileid containing an invalid storage_id result in error 500](https://github.com/owncloud/ocis/issues/772) -- [apiVersions/fileVersions.feature:384](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L384) +#### [user-sync endpoint does not exist](https://github.com/owncloud/ocis/issues/1241) +- [apiMain/userSync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L18) +- [apiMain/userSync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L19) +- [apiMain/userSync.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L29) +- [apiMain/userSync.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L30) +- [apiMain/userSync.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L40) +- [apiMain/userSync.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L41) +- [apiMain/userSync.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L52) +- [apiMain/userSync.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L53) +- [apiMain/userSync.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L63) +- [apiMain/userSync.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L64) -### [requesting propfind with invalid fileid gives 502 error](https://github.com/owncloud/ocis/issues/771) -- [apiVersions/fileVersions.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L395) -- [apiVersions/fileVersions.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L396) -- [apiVersions/fileVersions.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L397) +- [apiProvisioning-v1/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L11) +- [apiProvisioning-v1/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L19) +- [apiProvisioning-v1/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L27) +- [apiProvisioning-v1/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L35) +- [apiProvisioning-v1/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L11) +- [apiProvisioning-v1/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L21) +- [apiProvisioning-v2/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L11) +- [apiProvisioning-v2/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L19) +- [apiProvisioning-v2/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L27) +- [apiProvisioning-v2/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L35) +- [apiProvisioning-v2/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L11) +- [apiProvisioning-v2/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L21) +- [apiProvisioning-v2/getSubAdmins.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L30) +- [apiProvisioning-v2/getSubAdmins.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L44) -### [user can access version metadata of a received share before accepting it](https://github.com/owncloud/ocis/issues/760) -- [apiVersions/fileVersionsSharingToShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L279) +### Other +API, search, favorites, config, capabilities, not existing endpoints, CORS and others -### [when a share exists its impossible to share a renamed folder](https://github.com/owncloud/ocis/issues/719) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:611](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L611) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:612](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L612) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:665](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L665) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:666](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L666) +#### [no robots.txt available](https://github.com/owncloud/ocis/issues/1314) +- [apiMain/main.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/main.feature#L5) Scenario: robots.txt file should be accessible -### [TUS OPTIONS requests does not reply with TUS### headers when invalid password](https://github.com/owncloud/ocis/issues/1012) -- [apiWebdavUploadTUS/optionsRequest.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L29) -- [apiWebdavUploadTUS/optionsRequest.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L40) +#### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis/issues/1319) +#### [no command equivalent to occ](https://github.com/owncloud/ocis/issues/1317) +- [apiMain/status.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/status.feature#L5) Scenario: Status.php is correct +#### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis/issues/1338) -### [500 Internal Server Error on Post request for TUS upload](https://github.com/owncloud/ocis/issues/1047) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L29) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L30) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L43) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L44) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L57) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L58) +#### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) +- [apiAuthOcs/ocsDELETEAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsDELETEAuth.feature#L10) Scenario: send DELETE requests to OCS endpoints as admin with wrong password +- [apiAuthOcs/ocsGETAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L10) Scenario: using OCS anonymously +- [apiAuthOcs/ocsGETAuth.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L33) Scenario: ocs config end point accessible by unauthorized users +- [apiAuthOcs/ocsGETAuth.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L53) Scenario: using OCS with non-admin basic auth +- [apiAuthOcs/ocsGETAuth.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L88) Scenario: using OCS as normal user with wrong password +- [apiAuthOcs/ocsGETAuth.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L121) Scenario:using OCS with admin basic auth +- [apiAuthOcs/ocsGETAuth.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L139) Scenario: using OCS as admin user with wrong password +- [apiAuthOcs/ocsPOSTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPOSTAuth.feature#L10) Scenario: send POST requests to OCS endpoints as normal user with wrong password +- [apiAuthOcs/ocsPUTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPUTAuth.feature#L10) Scenario: send PUT request to OCS endpoints as admin with wrong password -### [The Patch Request Response does not contain a body](https://github.com/owncloud/ocis/issues/1039) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L29) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L30) +#### [server returns 500 when trying to access a not existing file](https://github.com/owncloud/ocis-reva/issues/13) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavDELETEAuth.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L36) Scenario: send DELETE requests to another user's webDav endpoints as normal user -### [500 Internal Server Error on Post request for TUS upload to a non-existing folder on the received share](https://github.com/owncloud/ocis/issues/1047) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L43) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L44) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L57) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L58) +#### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavLOCKAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavLOCKAuth.feature#L38) Scenario: send LOCK requests to another user's webDav endpoints as normal user +- [apiAuthWebDav/webDavMKCOLAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMKCOLAuth.feature#L37) Scenario: send MKCOL requests to another user's webDav endpoints as normal user +- [apiAuthWebDav/webDavPROPFINDAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPFINDAuth.feature#L37) Scenario: send PROPFIND requests to another user's webDav endpoints as normal user +- [apiAuthWebDav/webDavPROPPATCHAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPPATCHAuth.feature#L38) Scenario: send PROPPATCH requests to another user's webDav endpoints as normal user -### [invalid file-names should not be created using the TUS protocol](https://github.com/owncloud/ocis/issues/1001) -- [apiWebdavUploadTUS/uploadFile.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L135) -- [apiWebdavUploadTUS/uploadFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L136) -- [apiWebdavUploadTUS/uploadFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L137) -- [apiWebdavUploadTUS/uploadFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L138) -- [apiWebdavUploadTUS/uploadFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L139) -- [apiWebdavUploadTUS/uploadFile.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L140) -- [apiWebdavUploadTUS/uploadFile.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L141) -- [apiWebdavUploadTUS/uploadFile.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L142) +#### [renaming a resource does not work](https://github.com/owncloud/ocis-reva/issues/14) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavMOVEAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMOVEAuth.feature#L37) Scenario: send MOVE requests to another user's webDav endpoints as normal user -### [upload a file using TUS resource URL as an other user should not work](https://github.com/owncloud/ocis/issues/1141) -- [apiWebdavUploadTUS/uploadFile.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L155) -- [apiWebdavUploadTUS/uploadFile.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L156) +#### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis/issues/1287) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavPOSTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPOSTAuth.feature#L38) Scenario: send POST requests to another user's webDav endpoints as normal user -### [Share lists deleted user as 'user'](https://github.com/owncloud/ocis/issues/903) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L632) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:633](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L633) +#### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavPUTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPUTAuth.feature#L38) Scenario: send PUT requests to another user's webDav endpoints as normal user -### [Deletion time in trash bin shows a wrong date](https://github.com/owncloud/ocis/issues/541) -- [apiTrashbin/trashbinFilesFolders.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L284) -- [apiTrashbin/trashbinFilesFolders.feature:285](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L285) +#### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis/issues/1285) +#### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis/issues/1286) +- [apiCapabilities/capabilitiesWithNormalUser.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilitiesWithNormalUser.feature#L11) Scenario: getting default capabilities with normal user + +#### [REPORT request not implemented](https://github.com/owncloud/ocis/issues/1330) +Scenario Outline: search for entry by pattern +- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) +- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) + Scenario Outline: search for entries by only some letters from the middle of the entry name +- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) +- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) + Scenario Outline: search for files by extension +- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) +- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) + Scenario Outline: search with empty field +- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) +- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) + Scenario Outline: limit returned search entries +- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) +- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) + Scenario Outline: limit returned search entries to only 1 entry +- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) +- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) + Scenario Outline: limit returned search entries to more entires than there are +- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) +- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) + Scenario Outline: report extra properties in search entries for a file +- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) +- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) + Scenario Outline: report extra properties in search entries for a folder +- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) +- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) + Scenario Outline: search for entry with emoji by pattern +- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) +- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) +- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) Scenario: search for entry by tags using REPORT method +- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) Scenario: share a tagged resource to another internal user and sharee searches for tag using REPORT method +- [apiWebdavOperations/search.feature:254](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L254) Scenario: search for entries across various folders by tags using REPORT method + +And other missing implementation of favorites +- [apiFavorites/favorites.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L91) +- [apiFavorites/favorites.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L92) +- [apiFavorites/favorites.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L112) +- [apiFavorites/favorites.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L113) +- [apiFavorites/favorites.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L128) +- [apiFavorites/favorites.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L129) +- [apiFavorites/favorites.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L148) +- [apiFavorites/favorites.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L149) +- [apiFavorites/favorites.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L176) +- [apiFavorites/favorites.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L177) +- [apiFavorites/favorites.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L217) +- [apiFavorites/favorites.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L218) +- [apiFavorites/favoritesSharingToShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L22) +- [apiFavorites/favoritesSharingToShares.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L23) +- [apiFavorites/favoritesSharingToShares.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L36) +- [apiFavorites/favoritesSharingToShares.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L37) +- [apiFavorites/favoritesSharingToShares.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L49) +- [apiFavorites/favoritesSharingToShares.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L50) +- [apiFavorites/favoritesSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L63) +- [apiFavorites/favoritesSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L64) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiFavorites/favoritesSharingToShares.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L77) +- [apiFavorites/favoritesSharingToShares.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L78) + +#### CSRF Headers +Scenario Outline: Downloading a file should serve security headers +- [apiWebdavOperations/downloadFile.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L60) +- [apiWebdavOperations/downloadFile.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L61) + Scenario Outline: Doing a GET with a web login should work without CSRF token on the new backend +- [apiWebdavOperations/downloadFile.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L72) +- [apiWebdavOperations/downloadFile.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L73) + Scenario Outline: Doing a GET with a web login should work with CSRF token on the new backend +- [apiWebdavOperations/downloadFile.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L84) +- [apiWebdavOperations/downloadFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L85) + +#### Authentication +Scenario Outline: Unauthenticated call +- [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) +- [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) + Scenario Outline: A disabled user cannot use webdav +- [apiWebdavOperations/refuseAccess.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L33) +- [apiWebdavOperations/refuseAccess.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L34) + + +#### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) +Scenario Outline: Do a PROPFIND to a non-existing URL +- [apiWebdavProperties2/getFileProperties.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L242) +- [apiWebdavProperties2/getFileProperties.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L243) + + +#### [system configuration options missing](https://github.com/owncloud/ocis/issues/1323) + +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L31) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L32) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L65) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L66) + +#### [wildcard Access-Control-Allow-Origin](https://github.com/owncloud/ocis/issues/1340) +- [apiAuth/cors.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L24) +- [apiAuth/cors.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L25) +- [apiAuth/cors.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L26) +- [apiAuth/cors.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L27) +- [apiAuth/cors.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L28) +- [apiAuth/cors.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L29) +- [apiAuth/cors.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L30) +- [apiAuth/cors.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L31) +- [apiAuth/cors.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L32) +- [apiAuth/cors.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L33) +- [apiAuth/cors.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L34) +- [apiAuth/cors.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L35) +- [apiAuth/cors.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L36) +- [apiAuth/cors.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L37) +- [apiAuth/cors.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L38) +- [apiAuth/cors.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L39) +- [apiAuth/cors.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L40) +- [apiAuth/cors.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L41) +- [apiAuth/cors.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L59) +- [apiAuth/cors.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L60) +- [apiAuth/cors.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L61) +- [apiAuth/cors.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L62) +- [apiAuth/cors.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L63) +- [apiAuth/cors.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L64) +- [apiAuth/cors.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L83) +- [apiAuth/cors.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L84) +- [apiAuth/cors.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L85) +- [apiAuth/cors.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L86) +- [apiAuth/cors.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L87) +- [apiAuth/cors.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L88) +- [apiAuth/cors.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L89) +- [apiAuth/cors.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L90) +- [apiAuth/cors.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L91) +- [apiAuth/cors.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L92) +- [apiAuth/cors.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L93) +- [apiAuth/cors.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L94) +- [apiAuth/cors.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L95) +- [apiAuth/cors.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L96) +- [apiAuth/cors.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L97) +- [apiAuth/cors.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L98) +- [apiAuth/cors.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L99) +- [apiAuth/cors.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L100) +- [apiAuth/cors.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L118) +- [apiAuth/cors.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L119) +- [apiAuth/cors.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L120) +- [apiAuth/cors.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L121) +- [apiAuth/cors.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L122) +- [apiAuth/cors.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L123) +- [apiAuth/cors.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L142) +- [apiAuth/cors.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L143) +- [apiAuth/cors.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L144) +- [apiAuth/cors.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L145) +- [apiAuth/cors.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L146) +- [apiAuth/cors.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L147) +- [apiAuth/cors.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L148) +- [apiAuth/cors.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L149) +- [apiAuth/cors.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L150) +- [apiAuth/cors.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L151) +- [apiAuth/cors.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L152) +- [apiAuth/cors.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L153) +- [apiAuth/cors.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L154) +- [apiAuth/cors.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L155) +- [apiAuth/cors.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L156) +- [apiAuth/cors.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L157) +- [apiAuth/cors.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L178) +- [apiAuth/cors.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L179) +- [apiAuth/cors.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L180) +- [apiAuth/cors.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L181) +- [apiAuth/cors.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L182) +- [apiAuth/cors.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L183) + +#### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) +#### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) +- [apiAuthOcs/ocsGETAuth.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L243) + +#### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) +- [apiAuthWebDav/webDavDELETEAuth.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L78) +- [apiAuthWebDav/webDavDELETEAuth.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L92) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) +- [apiCapabilities/capabilities.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L8) +- [apiCapabilities/capabilities.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L15) +- [apiCapabilities/capabilities.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L21) +- [apiCapabilities/capabilities.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L27) +- [apiCapabilities/capabilities.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L33) +- [apiCapabilities/capabilities.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L38) +- [apiCapabilities/capabilities.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L80) +- [apiCapabilities/capabilities.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L93) +- [apiCapabilities/capabilities.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L107) +- [apiCapabilities/capabilities.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L116) +- [apiCapabilities/capabilities.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L125) +- [apiCapabilities/capabilities.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L132) +- [apiCapabilities/capabilities.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L138) +- [apiCapabilities/capabilities.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L144) +- [apiCapabilities/capabilities.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L151) +- [apiCapabilities/capabilities.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L157) +- [apiCapabilities/capabilities.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L166) +- [apiCapabilities/capabilities.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L176) +- [apiCapabilities/capabilities.feature:187](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L187) +- [apiCapabilities/capabilities.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L198) +- [apiCapabilities/capabilities.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L208) +- [apiCapabilities/capabilities.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L219) +- [apiCapabilities/capabilities.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L231) +- [apiCapabilities/capabilities.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L238) +- [apiCapabilities/capabilities.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L245) +- [apiCapabilities/capabilities.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L252) +- [apiCapabilities/capabilities.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L275) +- [apiCapabilities/capabilities.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L292) +- [apiCapabilities/capabilities.feature:313](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L313) +- [apiCapabilities/capabilities.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L335) +- [apiCapabilities/capabilities.feature:357](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L357) +- [apiCapabilities/capabilities.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L379) +- [apiCapabilities/capabilities.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L404) +- [apiCapabilities/capabilities.feature:429](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L429) +- [apiCapabilities/capabilities.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L454) +- [apiCapabilities/capabilities.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L476) +- [apiCapabilities/capabilities.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L498) +- [apiCapabilities/capabilities.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L521) +- [apiCapabilities/capabilities.feature:546](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L546) +- [apiCapabilities/capabilities.feature:568](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L568) +- [apiCapabilities/capabilities.feature:590](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L590) +- [apiCapabilities/capabilities.feature:613](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L613) +- [apiCapabilities/capabilities.feature:637](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L637) +- [apiCapabilities/capabilities.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L658) +- [apiCapabilities/capabilities.feature:680](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L680) +- [apiCapabilities/capabilities.feature:703](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L703) +- [apiCapabilities/capabilities.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L729) +- [apiCapabilities/capabilities.feature:758](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L758) +- [apiCapabilities/capabilities.feature:787](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L787) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L25) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L26) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L47) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L48) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L66) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L67) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L87) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L88) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L25) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L26) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L44) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L45) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L64) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L65) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L83) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L84) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L103) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L104) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L122) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L123) + +- [apiMain/caldav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L8) +- [apiMain/caldav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L15) +- [apiMain/caldav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L23) +- [apiMain/caldav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L31) +- [apiMain/carddav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L8) +- [apiMain/carddav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L15) +- [apiMain/carddav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L23) +- [apiMain/carddav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L31) + +- [apiTranslation/translation.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L29) +- [apiTranslation/translation.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L30) -### [deleting a share with wrong authentication returns OCS status 996 / HTTP 500](https://github.com/owncloud/ocis/issues/1229) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#211) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#212) From 2f734003280cf7abc04cde559c1c9c795bd655dd Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Fri, 29 Jan 2021 12:46:32 +0545 Subject: [PATCH 62/88] Adjust expected-failures for differences between cs3org/reva and OCIS --- .../expected-failures-API-on-OCIS-storage.md | 70 +++++++++++++++---- ...pected-failures-API-on-OWNCLOUD-storage.md | 70 +++++++++++++++---- 2 files changed, 110 insertions(+), 30 deletions(-) diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index 51afb964e7..7f9046c710 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -203,6 +203,10 @@ Basic file management like up and download, move, copy, properties, trash, versi - [apiWebdavUploadTUS/uploadFile.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L155) - [apiWebdavUploadTUS/uploadFile.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L156) +### [TUS OPTIONS requests do not reply with TUS headers when invalid password](https://github.com/owncloud/ocis/issues/1012) +- [apiWebdavUploadTUS/optionsRequest.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L29) +- [apiWebdavUploadTUS/optionsRequest.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L40) + #### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) - [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) @@ -967,11 +971,6 @@ cannot share a folder with create permission - [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) - [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) -#### [There is no such thing like a super-user](https://github.com/owncloud/ocis/issues/1319) - -- [apiShareOperationsToShares/gettingShares.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L38) -- [apiShareOperationsToShares/gettingShares.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L39) - #### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) #### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis-reva/issues/301) #### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) @@ -1044,6 +1043,48 @@ cannot share a folder with create permission - [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) - [apiSharePublicLink1/accessToPublicLinkShare.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L43) +#### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) + +- [apiWebdavPreviews/previews.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L15) +- [apiWebdavPreviews/previews.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L16) +- [apiWebdavPreviews/previews.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L17) +- [apiWebdavPreviews/previews.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L18) +- [apiWebdavPreviews/previews.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L19) +- [apiWebdavPreviews/previews.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L30) +- [apiWebdavPreviews/previews.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L31) +- [apiWebdavPreviews/previews.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L32) +- [apiWebdavPreviews/previews.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L33) +- [apiWebdavPreviews/previews.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L34) +- [apiWebdavPreviews/previews.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L35) +- [apiWebdavPreviews/previews.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L36) +- [apiWebdavPreviews/previews.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L47) +- [apiWebdavPreviews/previews.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L48) +- [apiWebdavPreviews/previews.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L49) +- [apiWebdavPreviews/previews.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L50) +- [apiWebdavPreviews/previews.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L51) +- [apiWebdavPreviews/previews.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L52) +- [apiWebdavPreviews/previews.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L53) +- [apiWebdavPreviews/previews.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L56) +- [apiWebdavPreviews/previews.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L71) +- [apiWebdavPreviews/previews.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L72) +- [apiWebdavPreviews/previews.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L73) +- [apiWebdavPreviews/previews.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L83) +- [apiWebdavPreviews/previews.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L84) +- [apiWebdavPreviews/previews.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L87) +- [apiWebdavPreviews/previews.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L95) +- [apiWebdavPreviews/previews.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L104) +- [apiWebdavPreviews/previews.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L113) +- [apiWebdavPreviews/previews.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L120) +- [apiWebdavPreviews/previews.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L127) +- [apiWebdavPreviews/previews.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L135) +- [apiWebdavPreviews/previews.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L144) +- [apiWebdavPreviews/previews.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L163) +- [apiWebdavPreviews/previews.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L164) +- [apiWebdavPreviews/previews.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L165) +- [apiWebdavPreviews/previews.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L166) +- [apiWebdavPreviews/previews.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L178) +- [apiWebdavPreviews/previews.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L179) + #### [creating public links with permissions fails](https://github.com/owncloud/product/issues/252) - [apiSharePublicLink1/changingPublicLinkShare.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L22) @@ -1205,11 +1246,6 @@ cannot share a folder with create permission - [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) -#### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L48) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L49) - #### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis-reva/issues/286) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) @@ -1816,6 +1852,9 @@ special character username not valid - [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) - [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) - [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) +- [apiProvisioning-v2/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L121) +- [apiProvisioning-v2/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L122) +- [apiProvisioning-v2/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L123) - [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) - [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) - [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) @@ -1826,6 +1865,12 @@ special character username not valid - [apiProvisioning-v2/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L32) - [apiProvisioning-v2/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L34) - [apiProvisioning-v2/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L35) +- [apiTrashbin/trashbinFilesFolders.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L239) +- [apiTrashbin/trashbinFilesFolders.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L240) +- [apiTrashbin/trashbinFilesFolders.feature:241](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L241) +- [apiTrashbin/trashbinFilesFolders.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L245) +- [apiTrashbin/trashbinFilesFolders.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L246) +- [apiTrashbin/trashbinFilesFolders.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L247) #### [Creating an already existing user works](https://github.com/owncloud/ocis-accounts/issues/80) - [apiProvisioning-v1/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L32) @@ -2172,8 +2217,6 @@ Scenario Outline: Unauthenticated call - [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) - [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) Scenario Outline: A disabled user cannot use webdav -- [apiWebdavOperations/refuseAccess.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L33) -- [apiWebdavOperations/refuseAccess.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L34) #### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) @@ -2280,8 +2323,6 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiCapabilities/capabilities.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L93) - [apiCapabilities/capabilities.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L107) - [apiCapabilities/capabilities.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L116) -- [apiCapabilities/capabilities.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L125) -- [apiCapabilities/capabilities.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L132) - [apiCapabilities/capabilities.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L138) - [apiCapabilities/capabilities.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L144) - [apiCapabilities/capabilities.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L151) @@ -2294,7 +2335,6 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiCapabilities/capabilities.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L219) - [apiCapabilities/capabilities.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L231) - [apiCapabilities/capabilities.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L238) -- [apiCapabilities/capabilities.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L245) - [apiCapabilities/capabilities.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L252) - [apiCapabilities/capabilities.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L275) - [apiCapabilities/capabilities.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L292) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index 88bca32aa3..32ed1b3d42 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -222,6 +222,10 @@ The following scenarios fail on OWNCLOUD storage but not on OCIS storage: - [apiWebdavUploadTUS/uploadFile.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L155) - [apiWebdavUploadTUS/uploadFile.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L156) +### [TUS OPTIONS requests do not reply with TUS headers when invalid password](https://github.com/owncloud/ocis/issues/1012) +- [apiWebdavUploadTUS/optionsRequest.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L29) +- [apiWebdavUploadTUS/optionsRequest.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L40) + #### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) - [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) @@ -972,11 +976,6 @@ cannot share a folder with create permission - [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) - [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) -#### [There is no such thing like a super-user](https://github.com/owncloud/ocis/issues/1319) - -- [apiShareOperationsToShares/gettingShares.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L38) -- [apiShareOperationsToShares/gettingShares.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L39) - #### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) #### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis-reva/issues/301) #### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) @@ -1039,6 +1038,48 @@ cannot share a folder with create permission - [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) - [apiSharePublicLink1/accessToPublicLinkShare.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L43) +#### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) + +- [apiWebdavPreviews/previews.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L15) +- [apiWebdavPreviews/previews.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L16) +- [apiWebdavPreviews/previews.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L17) +- [apiWebdavPreviews/previews.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L18) +- [apiWebdavPreviews/previews.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L19) +- [apiWebdavPreviews/previews.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L30) +- [apiWebdavPreviews/previews.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L31) +- [apiWebdavPreviews/previews.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L32) +- [apiWebdavPreviews/previews.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L33) +- [apiWebdavPreviews/previews.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L34) +- [apiWebdavPreviews/previews.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L35) +- [apiWebdavPreviews/previews.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L36) +- [apiWebdavPreviews/previews.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L47) +- [apiWebdavPreviews/previews.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L48) +- [apiWebdavPreviews/previews.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L49) +- [apiWebdavPreviews/previews.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L50) +- [apiWebdavPreviews/previews.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L51) +- [apiWebdavPreviews/previews.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L52) +- [apiWebdavPreviews/previews.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L53) +- [apiWebdavPreviews/previews.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L56) +- [apiWebdavPreviews/previews.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L71) +- [apiWebdavPreviews/previews.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L72) +- [apiWebdavPreviews/previews.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L73) +- [apiWebdavPreviews/previews.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L83) +- [apiWebdavPreviews/previews.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L84) +- [apiWebdavPreviews/previews.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L87) +- [apiWebdavPreviews/previews.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L95) +- [apiWebdavPreviews/previews.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L104) +- [apiWebdavPreviews/previews.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L113) +- [apiWebdavPreviews/previews.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L120) +- [apiWebdavPreviews/previews.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L127) +- [apiWebdavPreviews/previews.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L135) +- [apiWebdavPreviews/previews.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L144) +- [apiWebdavPreviews/previews.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L163) +- [apiWebdavPreviews/previews.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L164) +- [apiWebdavPreviews/previews.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L165) +- [apiWebdavPreviews/previews.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L166) +- [apiWebdavPreviews/previews.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L178) +- [apiWebdavPreviews/previews.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L179) + #### [creating public links with permissions fails](https://github.com/owncloud/product/issues/252) - [apiSharePublicLink1/changingPublicLinkShare.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L22) @@ -1211,11 +1252,6 @@ The following scenarios fail on OWNCLOUD storage but not on OCIS storage: - [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) -#### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L48) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L49) - #### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis-reva/issues/286) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) @@ -1930,6 +1966,9 @@ special character username not valid - [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) - [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) - [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) +- [apiProvisioning-v2/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L121) +- [apiProvisioning-v2/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L122) +- [apiProvisioning-v2/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L123) - [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) - [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) - [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) @@ -1940,6 +1979,12 @@ special character username not valid - [apiProvisioning-v2/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L32) - [apiProvisioning-v2/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L34) - [apiProvisioning-v2/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L35) +- [apiTrashbin/trashbinFilesFolders.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L239) +- [apiTrashbin/trashbinFilesFolders.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L240) +- [apiTrashbin/trashbinFilesFolders.feature:241](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L241) +- [apiTrashbin/trashbinFilesFolders.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L245) +- [apiTrashbin/trashbinFilesFolders.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L246) +- [apiTrashbin/trashbinFilesFolders.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L247) #### [Creating an already existing user works](https://github.com/owncloud/ocis-accounts/issues/80) - [apiProvisioning-v1/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L32) @@ -2291,8 +2336,6 @@ Scenario Outline: Unauthenticated call - [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) - [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) Scenario Outline: A disabled user cannot use webdav -- [apiWebdavOperations/refuseAccess.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L33) -- [apiWebdavOperations/refuseAccess.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L34) #### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) @@ -2399,8 +2442,6 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiCapabilities/capabilities.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L93) - [apiCapabilities/capabilities.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L107) - [apiCapabilities/capabilities.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L116) -- [apiCapabilities/capabilities.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L125) -- [apiCapabilities/capabilities.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L132) - [apiCapabilities/capabilities.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L138) - [apiCapabilities/capabilities.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L144) - [apiCapabilities/capabilities.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L151) @@ -2413,7 +2454,6 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiCapabilities/capabilities.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L219) - [apiCapabilities/capabilities.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L231) - [apiCapabilities/capabilities.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L238) -- [apiCapabilities/capabilities.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L245) - [apiCapabilities/capabilities.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L252) - [apiCapabilities/capabilities.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L275) - [apiCapabilities/capabilities.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L292) From fb2fe1dd19352bdf8b850bba986479e9d9cd54e9 Mon Sep 17 00:00:00 2001 From: Erwin Palma <30660343+erwinpalma@users.noreply.github.com> Date: Thu, 28 Jan 2021 15:05:01 +0100 Subject: [PATCH 63/88] Update CONFIGURATION.tmpl The following link does no exist [our repository](https://github.com/owncloud/ocis/tree/master/config), --- ocis/templates/CONFIGURATION.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocis/templates/CONFIGURATION.tmpl b/ocis/templates/CONFIGURATION.tmpl index d86a7033c4..0b26b350a0 100644 --- a/ocis/templates/CONFIGURATION.tmpl +++ b/ocis/templates/CONFIGURATION.tmpl @@ -39,7 +39,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at (--> This link does not exist) [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables From 823e99efa9d70e5ce30516d56582205d2faf554d Mon Sep 17 00:00:00 2001 From: Ishank Arora Date: Fri, 22 Jan 2021 14:11:13 +0100 Subject: [PATCH 64/88] Check if roles are present in user object before looking those up --- changelog/unreleased/account-roles-fix.md | 3 +++ ocis-pkg/middleware/account.go | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 changelog/unreleased/account-roles-fix.md diff --git a/changelog/unreleased/account-roles-fix.md b/changelog/unreleased/account-roles-fix.md new file mode 100644 index 0000000000..35dce3a1bd --- /dev/null +++ b/changelog/unreleased/account-roles-fix.md @@ -0,0 +1,3 @@ +Bugfix: Check if roles are present in user object before looking those up + +https://github.com/owncloud/ocis/pull/1388 diff --git a/ocis-pkg/middleware/account.go b/ocis-pkg/middleware/account.go index c02ca9f30a..1e9b70c2de 100644 --- a/ocis-pkg/middleware/account.go +++ b/ocis-pkg/middleware/account.go @@ -67,7 +67,11 @@ func ExtractAccountUUID(opts ...account.Option) func(http.Handler) http.Handler ctx = context.WithValue(ctx, UUIDKey, u.Id.OpaqueId) // TODO: implement token manager in cs3org/reva that uses generic metadata instead of access token from header. ctx = metadata.Set(ctx, AccountID, u.Id.OpaqueId) - ctx = metadata.Set(ctx, RoleIDs, string(u.Opaque.Map["roles"].Value)) + if u.Opaque != nil { + if roles, ok := u.Opaque.Map["roles"]; ok { + ctx = metadata.Set(ctx, RoleIDs, string(roles.Value)) + } + } next.ServeHTTP(w, r.WithContext(ctx)) }) } From 94299861c1fe37e1bd76b11a3048dc53f1115a6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 29 Jan 2021 09:46:37 +0000 Subject: [PATCH 65/88] Automated changelog update [skip ci] --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b3f3fba03..006278cffa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,16 @@ The following sections list the changes for unreleased. ## Summary +* Bugfix - Check if roles are present in user object before looking those up: [#1388](https://github.com/owncloud/ocis/pull/1388) * Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) * Enhancement - Update reva to v1.5.2-0.20210125114636-0c10b333ee69: [#1482](https://github.com/owncloud/ocis/pull/1482) ## Details +* Bugfix - Check if roles are present in user object before looking those up: [#1388](https://github.com/owncloud/ocis/pull/1388) + + https://github.com/owncloud/ocis/pull/1388 + * Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) Tags: ocis, runtime From 9186448344c1065224053597011345e8e92bfa69 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Fri, 29 Jan 2021 11:12:00 +0100 Subject: [PATCH 66/88] fix config links --- accounts/templates/CONFIGURATION.tmpl | 2 +- docs/extensions/onlyoffice/getting-started.md | 2 +- glauth/templates/CONFIGURATION.tmpl | 2 +- konnectd/templates/CONFIGURATION.tmpl | 2 +- ocis/templates/CONFIGURATION.tmpl | 2 +- ocs/templates/CONFIGURATION.tmpl | 2 +- onlyoffice/templates/CONFIGURATION.tmpl | 2 +- proxy/templates/CONFIGURATION.tmpl | 2 +- storage/templates/CONFIGURATION.tmpl | 2 +- store/templates/CONFIGURATION.tmpl | 2 +- thumbnails/templates/CONFIGURATION.tmpl | 2 +- web/templates/CONFIGURATION.tmpl | 2 +- webdav/templates/CONFIGURATION.tmpl | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/accounts/templates/CONFIGURATION.tmpl b/accounts/templates/CONFIGURATION.tmpl index e56dd42397..9a76bdb9d4 100644 --- a/accounts/templates/CONFIGURATION.tmpl +++ b/accounts/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-accounts reads `accounts.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/accounts/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/docs/extensions/onlyoffice/getting-started.md b/docs/extensions/onlyoffice/getting-started.md index 33ca2a19c6..e10fc18340 100644 --- a/docs/extensions/onlyoffice/getting-started.md +++ b/docs/extensions/onlyoffice/getting-started.md @@ -168,7 +168,7 @@ If you prefer to configure the service with commandline flags you can see the av ### Configuration file -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/onlyoffice/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/onlyoffice.yml`, `${HOME}/.ocis/onlyoffice.yml` or `$(pwd)/config/onlyoffice.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/onlyoffice/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/onlyoffice.yml`, `${HOME}/.ocis/onlyoffice.yml` or `$(pwd)/config/onlyoffice.yml`. ## Usage diff --git a/glauth/templates/CONFIGURATION.tmpl b/glauth/templates/CONFIGURATION.tmpl index 1b8e77928a..753f23b780 100644 --- a/glauth/templates/CONFIGURATION.tmpl +++ b/glauth/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-glauth reads `glauth.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/glauth/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/konnectd/templates/CONFIGURATION.tmpl b/konnectd/templates/CONFIGURATION.tmpl index 4b70fdbdab..1ae4a82f1c 100644 --- a/konnectd/templates/CONFIGURATION.tmpl +++ b/konnectd/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-konnectd reads `konnectd.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/konnectd/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/ocis/templates/CONFIGURATION.tmpl b/ocis/templates/CONFIGURATION.tmpl index 0b26b350a0..3e853e66b3 100644 --- a/ocis/templates/CONFIGURATION.tmpl +++ b/ocis/templates/CONFIGURATION.tmpl @@ -39,7 +39,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at (--> This link does not exist) [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/ocis/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/ocs/templates/CONFIGURATION.tmpl b/ocs/templates/CONFIGURATION.tmpl index 55d5b95aab..3f56913c27 100644 --- a/ocs/templates/CONFIGURATION.tmpl +++ b/ocs/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-ocs reads `ocs.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/ocs/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/onlyoffice/templates/CONFIGURATION.tmpl b/onlyoffice/templates/CONFIGURATION.tmpl index 1919e5735c..602b02070f 100644 --- a/onlyoffice/templates/CONFIGURATION.tmpl +++ b/onlyoffice/templates/CONFIGURATION.tmpl @@ -39,7 +39,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: onlyoffice reads `onlyoffice.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/onlyoffice/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/proxy/templates/CONFIGURATION.tmpl b/proxy/templates/CONFIGURATION.tmpl index f2097e4465..1315be9e53 100644 --- a/proxy/templates/CONFIGURATION.tmpl +++ b/proxy/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/proxy/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/storage/templates/CONFIGURATION.tmpl b/storage/templates/CONFIGURATION.tmpl index 109c7ae2fa..6f1434ad8b 100644 --- a/storage/templates/CONFIGURATION.tmpl +++ b/storage/templates/CONFIGURATION.tmpl @@ -48,7 +48,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/storage/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/store/templates/CONFIGURATION.tmpl b/store/templates/CONFIGURATION.tmpl index d62b484439..f873688830 100644 --- a/store/templates/CONFIGURATION.tmpl +++ b/store/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/store/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/thumbnails/templates/CONFIGURATION.tmpl b/thumbnails/templates/CONFIGURATION.tmpl index 39b0175939..e660f082c7 100644 --- a/thumbnails/templates/CONFIGURATION.tmpl +++ b/thumbnails/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/thumbnails/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/web/templates/CONFIGURATION.tmpl b/web/templates/CONFIGURATION.tmpl index 2a43964eb7..6d3fc2752f 100644 --- a/web/templates/CONFIGURATION.tmpl +++ b/web/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-web reads `web.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/web/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables diff --git a/webdav/templates/CONFIGURATION.tmpl b/webdav/templates/CONFIGURATION.tmpl index 7aea1bee54..7b0e79c85e 100644 --- a/webdav/templates/CONFIGURATION.tmpl +++ b/webdav/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-proxy reads `proxy.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/webdav/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables From 7732949e3c584de8947da3462b24c53712f39d6d Mon Sep 17 00:00:00 2001 From: Ilja Neumann Date: Fri, 22 Jan 2021 17:58:36 +0100 Subject: [PATCH 67/88] Rename konnectd to IDP --- .codacy.yml | 4 +- .drone.star | 6 +- .gitignore | 2 +- Makefile | 2 +- .../pkg/proto/v0/accounts.pb.micro_test.go | 2 +- accounts/pkg/service/v0/service.go | 12 +- .../acceptance/features/accounts.feature | 4 +- .../owncloud10_with_oc_web/docker-compose.yml | 10 +- docs/Makefile | 2 +- docs/extensions/{konnectd => idp}/.gitignore | 0 docs/extensions/{konnectd => idp}/_index.md | 2 +- docs/ocis/_index.md | 4 +- docs/ocis/deployment/basic-remote-setup.md | 3 + docs/ocis/deployment/bridge.md | 26 +-- docs/ocis/deployment/ocis_keycloak.md | 2 +- docs/ocis/deployment/ocis_traefik.md | 2 +- docs/ocis/development/debugging.md | 6 +- docs/ocis/flow-docs/login-flow.md | 2 +- docs/ocis/flow-docs/request-flow.md | 2 +- glauth/go.sum | 2 + {konnectd => idp}/.dockerignore | 0 {konnectd => idp}/.env | 0 {konnectd => idp}/.eslintignore | 0 {konnectd => idp}/.eslintrc.json | 0 {konnectd => idp}/LICENSE | 0 {konnectd => idp}/Makefile | 2 +- {konnectd => idp}/cmd/konnectd/main.go | 2 +- {konnectd => idp}/config/example.json | 2 +- {konnectd => idp}/config/example.yml | 2 +- .../config/identifier-registration.yaml | 0 .../docker/Dockerfile.linux.amd64 | 4 +- {konnectd => idp}/docker/Dockerfile.linux.arm | 4 +- .../docker/Dockerfile.linux.arm64 | 4 +- idp/docker/manifest.tmpl | 22 +++ {konnectd => idp}/go.mod | 2 +- {konnectd => idp}/go.sum | 0 {konnectd => idp}/package.json | 0 {konnectd => idp}/pkg/assets/assets.go | 2 +- {konnectd => idp}/pkg/assets/dummy.go | 0 {konnectd => idp}/pkg/assets/embed.go | 0 {konnectd => idp}/pkg/assets/embed.yml | 0 {konnectd => idp}/pkg/assets/option.go | 2 +- {konnectd => idp}/pkg/command/health.go | 4 +- {konnectd => idp}/pkg/command/root.go | 18 +- {konnectd => idp}/pkg/command/server.go | 16 +- {konnectd => idp}/pkg/command/version.go | 10 +- {konnectd => idp}/pkg/config/config.go | 2 +- {konnectd => idp}/pkg/crypto/gencert.go | 0 {konnectd => idp}/pkg/flagset/flagset.go | 154 +++++++++--------- {konnectd => idp}/pkg/log/logrus_wrapper.go | 2 +- {konnectd => idp}/pkg/metrics/metrics.go | 2 +- {konnectd => idp}/pkg/middleware/static.go | 0 {konnectd => idp}/pkg/server/debug/option.go | 2 +- {konnectd => idp}/pkg/server/debug/server.go | 2 +- {konnectd => idp}/pkg/server/http/option.go | 4 +- {konnectd => idp}/pkg/server/http/server.go | 4 +- .../pkg/service/v0/instrument.go | 2 +- {konnectd => idp}/pkg/service/v0/logging.go | 0 {konnectd => idp}/pkg/service/v0/option.go | 2 +- {konnectd => idp}/pkg/service/v0/service.go | 36 ++-- {konnectd => idp}/pkg/service/v0/tracing.go | 0 {konnectd => idp}/pkg/version/version.go | 0 idp/reflex.conf | 2 + {konnectd => idp}/scripts/build.js | 0 {konnectd => idp}/scripts/start.js | 0 {konnectd => idp}/scripts/test.js | 0 .../templates/CONFIGURATION.tmpl | 14 +- {konnectd => idp}/tools.go | 0 {konnectd => idp}/ui/Makefile | 0 {konnectd => idp}/ui/i18n/Makefile | 0 {konnectd => idp}/ui/i18n/de.po | 0 {konnectd => idp}/ui/i18n/es.po | 0 {konnectd => idp}/ui/i18n/fr.po | 0 {konnectd => idp}/ui/i18n/hi.po | 0 {konnectd => idp}/ui/i18n/hr.po | 0 {konnectd => idp}/ui/i18n/hu.po | 0 {konnectd => idp}/ui/i18n/is.po | 0 {konnectd => idp}/ui/i18n/it.po | 0 {konnectd => idp}/ui/i18n/ja.po | 0 .../ui/i18n/konnect-identifier.pot | 0 {konnectd => idp}/ui/i18n/nb.po | 0 {konnectd => idp}/ui/i18n/nl.po | 0 {konnectd => idp}/ui/i18n/pl.po | 0 {konnectd => idp}/ui/i18n/pt_PT.po | 0 {konnectd => idp}/ui/i18n/ru.po | 0 {konnectd => idp}/ui/i18n/sl.po | 0 {konnectd => idp}/ui/i18n/src/messages.json | 0 {konnectd => idp}/ui/public/index.html | 0 {konnectd => idp}/ui/public/static/logo.svg | 0 {konnectd => idp}/ui/src/Main.js | 0 {konnectd => idp}/ui/src/Main.test.js | 0 {konnectd => idp}/ui/src/Makefile | 0 {konnectd => idp}/ui/src/Routes.js | 0 {konnectd => idp}/ui/src/actions/common.js | 0 {konnectd => idp}/ui/src/actions/login.js | 0 {konnectd => idp}/ui/src/actions/types.js | 0 {konnectd => idp}/ui/src/actions/utils.js | 0 {konnectd => idp}/ui/src/app.css | 0 {konnectd => idp}/ui/src/app.js | 0 .../ui/src/components/ClientDisplayName.js | 0 .../ui/src/components/Loading.js | 0 .../ui/src/components/PrivateRoute.js | 0 .../ui/src/components/RedirectWithQuery.js | 0 .../ui/src/components/ResponsiveScreen.js | 0 .../ui/src/components/ScopesList.js | 0 .../ui/src/components/TextInput.js | 0 .../src/containers/Goodbye/Goodbyescreen.js | 0 .../ui/src/containers/Goodbye/index.js | 0 .../ui/src/containers/Login/Chooseaccount.js | 0 .../ui/src/containers/Login/Consent.js | 0 .../ui/src/containers/Login/Login.js | 0 .../ui/src/containers/Login/Loginscreen.js | 0 .../ui/src/containers/Login/index.js | 0 .../src/containers/Welcome/Welcomescreen.js | 0 .../ui/src/containers/Welcome/index.js | 0 {konnectd => idp}/ui/src/errors/index.js | 0 .../ui/src/images/background.jpg | Bin {konnectd => idp}/ui/src/index.js | 0 {konnectd => idp}/ui/src/locales/de.json | 0 {konnectd => idp}/ui/src/locales/es.json | 0 {konnectd => idp}/ui/src/locales/fr.json | 0 {konnectd => idp}/ui/src/locales/hi.json | 0 {konnectd => idp}/ui/src/locales/hr.json | 0 {konnectd => idp}/ui/src/locales/hu.json | 0 {konnectd => idp}/ui/src/locales/index.js | 0 {konnectd => idp}/ui/src/locales/is.json | 0 {konnectd => idp}/ui/src/locales/it.json | 0 {konnectd => idp}/ui/src/locales/ja.json | 0 {konnectd => idp}/ui/src/locales/nb.json | 0 {konnectd => idp}/ui/src/locales/nl.json | 0 {konnectd => idp}/ui/src/locales/pl.json | 0 {konnectd => idp}/ui/src/locales/pt_PT.json | 0 {konnectd => idp}/ui/src/locales/ru.json | 0 {konnectd => idp}/ui/src/locales/sl.json | 0 {konnectd => idp}/ui/src/models/hello.js | 0 {konnectd => idp}/ui/src/reducers/common.js | 0 {konnectd => idp}/ui/src/reducers/index.js | 0 {konnectd => idp}/ui/src/reducers/login.js | 0 {konnectd => idp}/ui/src/store.js | 0 {konnectd => idp}/ui/src/utils.js | 0 {konnectd => idp}/ui/src/version.js | 0 {konnectd => idp}/ui_config/env.js | 0 .../ui_config/jest/cssTransform.js | 0 .../ui_config/jest/fileTransform.js | 0 {konnectd => idp}/ui_config/modules.js | 0 {konnectd => idp}/ui_config/paths.js | 0 {konnectd => idp}/ui_config/pnpTs.js | 0 {konnectd => idp}/ui_config/webpack.config.js | 0 .../ui_config/webpackDevServer.config.js | 0 {konnectd => idp}/yarn.lock | 0 konnectd/assets/identifier-registration.yaml | 112 ------------- konnectd/docker/manifest.tmpl | 22 --- konnectd/reflex.conf | 2 - ocis-pkg/go.sum | 2 + ocis/docker-compose.yml | 2 +- ocis/go.mod | 4 +- ocis/go.sum | 1 + ocis/pkg/command/idp.go | 54 ++++++ ocis/pkg/command/konnectd.go | 54 ------ ocis/pkg/config/config.go | 8 +- ocis/pkg/runtime/runtime.go | 2 +- ocs/go.sum | 1 + ocs/pkg/server/http/svc_test.go | 12 +- onlyoffice/go.sum | 3 + settings/go.sum | 2 + sonar-project.properties | 2 +- storage/go.sum | 1 + store/go.sum | 2 + tests/acceptance/docker/src/ocis-base.yml | 6 +- thumbnails/go.sum | 2 + web/go.sum | 2 + webdav/go.sum | 2 + 172 files changed, 314 insertions(+), 403 deletions(-) rename docs/extensions/{konnectd => idp}/.gitignore (100%) rename docs/extensions/{konnectd => idp}/_index.md (81%) rename {konnectd => idp}/.dockerignore (100%) rename {konnectd => idp}/.env (100%) rename {konnectd => idp}/.eslintignore (100%) rename {konnectd => idp}/.eslintrc.json (100%) rename {konnectd => idp}/LICENSE (100%) rename {konnectd => idp}/Makefile (99%) rename {konnectd => idp}/cmd/konnectd/main.go (68%) rename {konnectd => idp}/config/example.json (92%) rename {konnectd => idp}/config/example.yml (92%) rename {konnectd => idp}/config/identifier-registration.yaml (100%) rename {konnectd => idp}/docker/Dockerfile.linux.amd64 (82%) rename {konnectd => idp}/docker/Dockerfile.linux.arm (82%) rename {konnectd => idp}/docker/Dockerfile.linux.arm64 (82%) create mode 100644 idp/docker/manifest.tmpl rename {konnectd => idp}/go.mod (96%) rename {konnectd => idp}/go.sum (100%) rename {konnectd => idp}/package.json (100%) rename {konnectd => idp}/pkg/assets/assets.go (95%) rename {konnectd => idp}/pkg/assets/dummy.go (100%) rename {konnectd => idp}/pkg/assets/embed.go (100%) rename {konnectd => idp}/pkg/assets/embed.yml (100%) rename {konnectd => idp}/pkg/assets/option.go (93%) rename {konnectd => idp}/pkg/command/health.go (89%) rename {konnectd => idp}/pkg/command/root.go (83%) rename {konnectd => idp}/pkg/command/server.go (91%) rename {konnectd => idp}/pkg/command/version.go (76%) rename {konnectd => idp}/pkg/config/config.go (97%) rename {konnectd => idp}/pkg/crypto/gencert.go (100%) rename {konnectd => idp}/pkg/flagset/flagset.go (66%) rename {konnectd => idp}/pkg/log/logrus_wrapper.go (95%) rename {konnectd => idp}/pkg/metrics/metrics.go (97%) rename {konnectd => idp}/pkg/middleware/static.go (100%) rename {konnectd => idp}/pkg/server/debug/option.go (95%) rename {konnectd => idp}/pkg/server/debug/server.go (96%) rename {konnectd => idp}/pkg/server/http/option.go (93%) rename {konnectd => idp}/pkg/server/http/server.go (95%) rename {konnectd => idp}/pkg/service/v0/instrument.go (92%) rename {konnectd => idp}/pkg/service/v0/logging.go (100%) rename {konnectd => idp}/pkg/service/v0/option.go (95%) rename {konnectd => idp}/pkg/service/v0/service.go (81%) rename {konnectd => idp}/pkg/service/v0/tracing.go (100%) rename {konnectd => idp}/pkg/version/version.go (100%) create mode 100644 idp/reflex.conf rename {konnectd => idp}/scripts/build.js (100%) rename {konnectd => idp}/scripts/start.js (100%) rename {konnectd => idp}/scripts/test.js (100%) rename {konnectd => idp}/templates/CONFIGURATION.tmpl (86%) rename {konnectd => idp}/tools.go (100%) rename {konnectd => idp}/ui/Makefile (100%) rename {konnectd => idp}/ui/i18n/Makefile (100%) rename {konnectd => idp}/ui/i18n/de.po (100%) rename {konnectd => idp}/ui/i18n/es.po (100%) rename {konnectd => idp}/ui/i18n/fr.po (100%) rename {konnectd => idp}/ui/i18n/hi.po (100%) rename {konnectd => idp}/ui/i18n/hr.po (100%) rename {konnectd => idp}/ui/i18n/hu.po (100%) rename {konnectd => idp}/ui/i18n/is.po (100%) rename {konnectd => idp}/ui/i18n/it.po (100%) rename {konnectd => idp}/ui/i18n/ja.po (100%) rename {konnectd => idp}/ui/i18n/konnect-identifier.pot (100%) rename {konnectd => idp}/ui/i18n/nb.po (100%) rename {konnectd => idp}/ui/i18n/nl.po (100%) rename {konnectd => idp}/ui/i18n/pl.po (100%) rename {konnectd => idp}/ui/i18n/pt_PT.po (100%) rename {konnectd => idp}/ui/i18n/ru.po (100%) rename {konnectd => idp}/ui/i18n/sl.po (100%) rename {konnectd => idp}/ui/i18n/src/messages.json (100%) rename {konnectd => idp}/ui/public/index.html (100%) rename {konnectd => idp}/ui/public/static/logo.svg (100%) rename {konnectd => idp}/ui/src/Main.js (100%) rename {konnectd => idp}/ui/src/Main.test.js (100%) rename {konnectd => idp}/ui/src/Makefile (100%) rename {konnectd => idp}/ui/src/Routes.js (100%) rename {konnectd => idp}/ui/src/actions/common.js (100%) rename {konnectd => idp}/ui/src/actions/login.js (100%) rename {konnectd => idp}/ui/src/actions/types.js (100%) rename {konnectd => idp}/ui/src/actions/utils.js (100%) rename {konnectd => idp}/ui/src/app.css (100%) rename {konnectd => idp}/ui/src/app.js (100%) rename {konnectd => idp}/ui/src/components/ClientDisplayName.js (100%) rename {konnectd => idp}/ui/src/components/Loading.js (100%) rename {konnectd => idp}/ui/src/components/PrivateRoute.js (100%) rename {konnectd => idp}/ui/src/components/RedirectWithQuery.js (100%) rename {konnectd => idp}/ui/src/components/ResponsiveScreen.js (100%) rename {konnectd => idp}/ui/src/components/ScopesList.js (100%) rename {konnectd => idp}/ui/src/components/TextInput.js (100%) rename {konnectd => idp}/ui/src/containers/Goodbye/Goodbyescreen.js (100%) rename {konnectd => idp}/ui/src/containers/Goodbye/index.js (100%) rename {konnectd => idp}/ui/src/containers/Login/Chooseaccount.js (100%) rename {konnectd => idp}/ui/src/containers/Login/Consent.js (100%) rename {konnectd => idp}/ui/src/containers/Login/Login.js (100%) rename {konnectd => idp}/ui/src/containers/Login/Loginscreen.js (100%) rename {konnectd => idp}/ui/src/containers/Login/index.js (100%) rename {konnectd => idp}/ui/src/containers/Welcome/Welcomescreen.js (100%) rename {konnectd => idp}/ui/src/containers/Welcome/index.js (100%) rename {konnectd => idp}/ui/src/errors/index.js (100%) rename {konnectd => idp}/ui/src/images/background.jpg (100%) rename {konnectd => idp}/ui/src/index.js (100%) rename {konnectd => idp}/ui/src/locales/de.json (100%) rename {konnectd => idp}/ui/src/locales/es.json (100%) rename {konnectd => idp}/ui/src/locales/fr.json (100%) rename {konnectd => idp}/ui/src/locales/hi.json (100%) rename {konnectd => idp}/ui/src/locales/hr.json (100%) rename {konnectd => idp}/ui/src/locales/hu.json (100%) rename {konnectd => idp}/ui/src/locales/index.js (100%) rename {konnectd => idp}/ui/src/locales/is.json (100%) rename {konnectd => idp}/ui/src/locales/it.json (100%) rename {konnectd => idp}/ui/src/locales/ja.json (100%) rename {konnectd => idp}/ui/src/locales/nb.json (100%) rename {konnectd => idp}/ui/src/locales/nl.json (100%) rename {konnectd => idp}/ui/src/locales/pl.json (100%) rename {konnectd => idp}/ui/src/locales/pt_PT.json (100%) rename {konnectd => idp}/ui/src/locales/ru.json (100%) rename {konnectd => idp}/ui/src/locales/sl.json (100%) rename {konnectd => idp}/ui/src/models/hello.js (100%) rename {konnectd => idp}/ui/src/reducers/common.js (100%) rename {konnectd => idp}/ui/src/reducers/index.js (100%) rename {konnectd => idp}/ui/src/reducers/login.js (100%) rename {konnectd => idp}/ui/src/store.js (100%) rename {konnectd => idp}/ui/src/utils.js (100%) rename {konnectd => idp}/ui/src/version.js (100%) rename {konnectd => idp}/ui_config/env.js (100%) rename {konnectd => idp}/ui_config/jest/cssTransform.js (100%) rename {konnectd => idp}/ui_config/jest/fileTransform.js (100%) rename {konnectd => idp}/ui_config/modules.js (100%) rename {konnectd => idp}/ui_config/paths.js (100%) rename {konnectd => idp}/ui_config/pnpTs.js (100%) rename {konnectd => idp}/ui_config/webpack.config.js (100%) rename {konnectd => idp}/ui_config/webpackDevServer.config.js (100%) rename {konnectd => idp}/yarn.lock (100%) delete mode 100644 konnectd/assets/identifier-registration.yaml delete mode 100644 konnectd/docker/manifest.tmpl delete mode 100644 konnectd/reflex.conf create mode 100644 ocis/pkg/command/idp.go delete mode 100644 ocis/pkg/command/konnectd.go diff --git a/.codacy.yml b/.codacy.yml index 4be0db63e3..93dca4f8b4 100644 --- a/.codacy.yml +++ b/.codacy.yml @@ -8,8 +8,8 @@ exclude_paths: - 'docs/**' - '**/docs/**' - '**/pkg/proto/**' - - 'konnectd/ui_config/**' - - 'konnectd/scripts/**' + - 'idp/ui_config/**' + - 'idp/scripts/**' - 'settings/rollup.config.js' - 'accounts/rollup.config.js' - 'ocis/docker/eos-ocis/Dockerfile' diff --git a/.drone.star b/.drone.star index dac646de74..652b05e2aa 100644 --- a/.drone.star +++ b/.drone.star @@ -2,7 +2,7 @@ config = { 'modules': { 'accounts': 'frontend', 'glauth':'', - 'konnectd':'', + 'idp':'', 'ocis': '', 'web':'', 'ocis-pkg':'', @@ -1370,8 +1370,8 @@ def ocisServer(storage, accounts_hash_difficulty = 4, volumes=[]): 'STORAGE_SHARING_USER_JSON_FILE': '/srv/app/tmp/ocis/shares.json', 'PROXY_ENABLE_BASIC_AUTH': True, 'WEB_UI_CONFIG': '/drone/src/tests/config/drone/ocis-config.json', - 'KONNECTD_IDENTIFIER_REGISTRATION_CONF': '/drone/src/tests/config/drone/identifier-registration.yml', - 'KONNECTD_TLS': 'true', + 'IDP_IDENTIFIER_REGISTRATION_CONF': '/drone/src/tests/config/drone/identifier-registration.yml', + 'IDP_TLS': 'true', 'OCIS_LOG_LEVEL': 'warn', } diff --git a/.gitignore b/.gitignore index 24df6bfce1..40cf887727 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,7 @@ node_modules/ yarn-error.log # Konnectd -konnectd/assets/identifier +idp/assets/identifier # Composer - used for API acceptance tests composer.lock diff --git a/Makefile b/Makefile index 25720e89e3..5c2b553f25 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ RESET := $(shell tput -Txterm sgr0) OCIS_MODULES = \ accounts \ glauth \ - konnectd \ + idp \ ocis \ ocis-pkg \ ocs \ diff --git a/accounts/pkg/proto/v0/accounts.pb.micro_test.go b/accounts/pkg/proto/v0/accounts.pb.micro_test.go index 03d8731c6a..e905eb295d 100644 --- a/accounts/pkg/proto/v0/accounts.pb.micro_test.go +++ b/accounts/pkg/proto/v0/accounts.pb.micro_test.go @@ -126,7 +126,7 @@ func getGroup(group string) *proto.Group { switch group { case "sysusers": return &proto.Group{Id: "34f38767-c937-4eb6-b847-1c175829a2a0", GidNumber: 15000, OnPremisesSamAccountName: "sysusers", DisplayName: "Technical users", Description: "A group for technical users. They should not show up in sharing dialogs.", Members: []*proto.Account{ - {Id: "820ba2a1-3f54-4538-80a4-2d73007e30bf"}, // konnectd + {Id: "820ba2a1-3f54-4538-80a4-2d73007e30bf"}, // idp {Id: "bc596f3c-c955-4328-80a0-60d018b4ad57"}, // reva }} case "users": diff --git a/accounts/pkg/service/v0/service.go b/accounts/pkg/service/v0/service.go index 5896f50c10..cb74008c52 100644 --- a/accounts/pkg/service/v0/service.go +++ b/accounts/pkg/service/v0/service.go @@ -236,14 +236,14 @@ func (s Service) createDefaultAccounts() (err error) { // technical users for kopano and reva { Id: "820ba2a1-3f54-4538-80a4-2d73007e30bf", - PreferredName: "konnectd", - OnPremisesSamAccountName: "konnectd", + PreferredName: "idp", + OnPremisesSamAccountName: "idp", Mail: "idp@example.org", - DisplayName: "Kopano Konnectd", + DisplayName: "Kopano IDP", UidNumber: 10000, GidNumber: 15000, PasswordProfile: &proto.PasswordProfile{ - Password: "$2a$11$ntoTP2W/kyQIuoYpH5mRBuNzaEERYWSwn/zCsY5rtffen4d41y9.6", + Password: "$2y$12$ywfGLDPsSlBTVZU0g.2GZOPO8Wap3rVOpm8e3192VlytNdGWH7x72", }, AccountEnabled: true, MemberOf: []*proto.Group{ @@ -309,7 +309,7 @@ func (s Service) createDefaultAccounts() (err error) { for _, accountID := range []string{ "058bff95-6708-4fe5-91e4-9ea3d377588b", //moss "ddc2004c-0977-11eb-9d3f-a793888cd0f8", //admin - "820ba2a1-3f54-4538-80a4-2d73007e30bf", //konnectd + "820ba2a1-3f54-4538-80a4-2d73007e30bf", //idp "bc596f3c-c955-4328-80a0-60d018b4ad57", //reva } { assignRoleToUser(accountID, settings_svc.BundleUUIDRoleAdmin, s.RoleService, s.log) @@ -327,7 +327,7 @@ func (s Service) createDefaultAccounts() (err error) { func (s Service) createDefaultGroups() (err error) { groups := []proto.Group{ {Id: "34f38767-c937-4eb6-b847-1c175829a2a0", GidNumber: 15000, OnPremisesSamAccountName: "sysusers", DisplayName: "Technical users", Description: "A group for technical users. They should not show up in sharing dialogs.", Members: []*proto.Account{ - {Id: "820ba2a1-3f54-4538-80a4-2d73007e30bf"}, // konnectd + {Id: "820ba2a1-3f54-4538-80a4-2d73007e30bf"}, // idp {Id: "bc596f3c-c955-4328-80a0-60d018b4ad57"}, // reva }}, {Id: "509a9dcd-bb37-4f4f-a01a-19dca27d9cfa", GidNumber: 30000, OnPremisesSamAccountName: "users", DisplayName: "Users", Description: "A group every normal user belongs to.", Members: []*proto.Account{ diff --git a/accounts/ui/tests/acceptance/features/accounts.feature b/accounts/ui/tests/acceptance/features/accounts.feature index 6a10cec45c..72f6268269 100644 --- a/accounts/ui/tests/acceptance/features/accounts.feature +++ b/accounts/ui/tests/acceptance/features/accounts.feature @@ -4,7 +4,7 @@ Feature: Accounts Given user "Moss" has logged in using the webUI When the user browses to the accounts page Then user "einstein" should be displayed in the accounts list on the WebUI - And user "konnectd" should be displayed in the accounts list on the WebUI + And user "idp" should be displayed in the accounts list on the WebUI And user "marie" should be displayed in the accounts list on the WebUI And user "reva" should be displayed in the accounts list on the WebUI And user "richard" should be displayed in the accounts list on the WebUI @@ -72,4 +72,4 @@ Feature: Accounts Given user "Moss" has logged in using the webUI And the user browses to the accounts page When the user deletes user "bob" using the WebUI - Then user "bob" should not be displayed in the accounts list on the WebUI \ No newline at end of file + Then user "bob" should not be displayed in the accounts list on the WebUI diff --git a/deployments/examples/owncloud10_with_oc_web/docker-compose.yml b/deployments/examples/owncloud10_with_oc_web/docker-compose.yml index 3bc3974f80..f32d3282c6 100644 --- a/deployments/examples/owncloud10_with_oc_web/docker-compose.yml +++ b/deployments/examples/owncloud10_with_oc_web/docker-compose.yml @@ -74,11 +74,11 @@ services: PROXY_CONFIG_FILE: "/config/proxy-config.json" PROXY_ENABLE_PRESIGNEDURLS: "false" PROXY_TLS: "false" - # konnectd - binddn must exist as oc10 admin user - KONNECTD_IDENTIFIER_REGISTRATION_CONF: "/config/identifier-registration.yaml" - KONNECTD_INSECURE: "${INSECURE:-false}" - KONNECTD_SIGNING_KID: super - KONNECTD_TLS: 0 + # idp - binddn must exist as oc10 admin user + IDP_IDENTIFIER_REGISTRATION_CONF: "/config/identifier-registration.yaml" + IDP_INSECURE: "${INSECURE:-false}" + IDP_SIGNING_KID: super + IDP_TLS: 0 LDAP_BASEDN: "dc=example,dc=org" LDAP_BINDDN: "cn=admin,dc=example,dc=org" LDAP_BINDPW: "admin" diff --git a/docs/Makefile b/docs/Makefile index 371cbd9219..c137e5cfeb 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -3,7 +3,7 @@ SHELL := bash OCIS_MODULES = \ accounts \ glauth \ - konnectd \ + idp \ ocis \ ocs \ ocis-pkg \ diff --git a/docs/extensions/konnectd/.gitignore b/docs/extensions/idp/.gitignore similarity index 100% rename from docs/extensions/konnectd/.gitignore rename to docs/extensions/idp/.gitignore diff --git a/docs/extensions/konnectd/_index.md b/docs/extensions/idp/_index.md similarity index 81% rename from docs/extensions/konnectd/_index.md rename to docs/extensions/idp/_index.md index cb65988a17..ef111ef4cc 100644 --- a/docs/extensions/konnectd/_index.md +++ b/docs/extensions/idp/_index.md @@ -2,7 +2,7 @@ title: Konnectd weight: 20 geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/konnectd +geekdocEditPath: edit/master/docs/extensions/idp geekdocFilePath: _index.md geekdocCollapseSection: true --- diff --git a/docs/ocis/_index.md b/docs/ocis/_index.md index 0163c9b338..db64e3261a 100644 --- a/docs/ocis/_index.md +++ b/docs/ocis/_index.md @@ -24,9 +24,9 @@ We run a huge [test suite](https://github.com/owncloud/core/tree/master/tests), {{< mermaid class="text-center">}} graph TD proxy --> - konnectd & web & thumbnails & ocs & webdav & storage & accounts & store & settings + idp & web & thumbnails & ocs & webdav & storage & accounts & store & settings -konnectd --> glauth +idp --> glauth storage --> REVA diff --git a/docs/ocis/deployment/basic-remote-setup.md b/docs/ocis/deployment/basic-remote-setup.md index b022cf2c8f..f335e8d1f2 100644 --- a/docs/ocis/deployment/basic-remote-setup.md +++ b/docs/ocis/deployment/basic-remote-setup.md @@ -62,6 +62,9 @@ This snippet will start the oCIS server with auto generated self signed certific PROXY_HTTP_ADDR=0.0.0.0:9200 \ OCIS_URL=https://your-server:9200 \ KONNECTD_TLS=0 \ +PROXY_TRANSPORT_TLS_KEY=./certs/your-host.key \ +PROXY_TRANSPORT_TLS_CERT=./certs/your-host.crt \ +IDP_TLS=0 \ ./bin/ocis server ``` diff --git a/docs/ocis/deployment/bridge.md b/docs/ocis/deployment/bridge.md index bde2681f4b..cdc9f8657b 100644 --- a/docs/ocis/deployment/bridge.md +++ b/docs/ocis/deployment/bridge.md @@ -101,7 +101,7 @@ Groups should work as well: $ ldapsearch -x -H ldap://localhost:9125 -b dc=example,dc=com -D "cn=admin,dc=example,dc=com" -W '(objectclass=posixgroup)' ``` -> Note: This is currently a readonly implementation and minimal to the usecase of authenticating users with konnectd. +> Note: This is currently a readonly implementation and minimal to the usecase of authenticating users with idp. ### Start ocis-web @@ -124,21 +124,21 @@ $ bin/web server --web-config-server https://cloud.example.com --oidc-authority `ocis-web` needs to know - `--web-config-server https://cloud.example.com` is ownCloud url with webdav and ocs endpoints (oc10 or ocis) -- `--oidc-authority https://192.168.1.100:9130` the openid connect issuing authority, in our case `oidc-konnectd`, running on port 9130 +- `--oidc-authority https://192.168.1.100:9130` the openid connect issuing authority, in our case `oidc-idp`, running on port 9130 - `--oidc-metadata-url https://192.168.1.100:9130/.well-known/openid-configuration` the openid connect configuration endpoint, typically the issuer host with `.well-known/openid-configuration`, but there are cases when another endpoint is used, eg. ping identity provides multiple endpoints to separate domains -- `--oidc-client-id ocis` the client id we will register later with `ocis-konnectd` in the `identifier-registration.yaml` +- `--oidc-client-id ocis` the client id we will register later with `ocis-idp` in the `identifier-registration.yaml` -### Start ocis-konnectd +### Start ocis-idp #### Get it! In an `ocis` folder ``` -$ git clone git@github.com:owncloud/ocis-konnectd.git -$ cd ocis-konnectd +$ git clone git@github.com:owncloud/ocis-idp.git +$ cd ocis-idp $ make ``` -This should give you a `bin/ocis-konnectd` binary. Try listing the help with `bin/ocis-konnectd --help`. +This should give you a `bin/ocis-idp` binary. Try listing the help with `bin/ocis-idp --help`. #### Set environment variables @@ -183,12 +183,12 @@ Replace `localhost:9100` in the redirect URIs with your `ocis-web` host and port #### Run it! -You can now bring up `ocis-konnectd` with: +You can now bring up `ocis-idp` with: ```console -$ bin/ocis-konnectd server --iss https://192.168.1.100:9130 --identifier-registration-conf assets/identifier-registration.yaml --signing-kid gen1-2020-02-27 +$ bin/ocis-idp server --iss https://192.168.1.100:9130 --identifier-registration-conf assets/identifier-registration.yaml --signing-kid gen1-2020-02-27 ``` -`ocis-konnectd` needs to know +`ocis-idp` needs to know - `--iss https://192.168.1.100:9130` the issuer, which must be a reachable https endpoint. For testing an ip works. HTTPS is NOT optional. This url is exposed in the `https://192.168.1.100:9130/.well-known/openid-configuration` endpoint and clients need to be able to connect to it - `--identifier-registration-conf assets/identifier-registration.yaml` the identifier-registration.yaml you created - `--signing-kid gen1-2020-02-27` a signature key id, otherwise the jwks key has no name, which might cause problems with clients. a random key is ok, but it should change when the actual signing key changes. @@ -203,7 +203,7 @@ $ curl https://192.168.1.100:9130/.well-known/openid-configuration 2. Check if the login works at https://192.168.1.100:9130/signin/v1/identifier -> Note: If you later get a `Unable to find a key for (algorithm, kid):PS256, )` Error make sure you did set a `--signing-kid` when starting `ocis-konnectd` by checking it is present in https://192.168.1.100:9130/konnect/v1/jwks.json +> Note: If you later get a `Unable to find a key for (algorithm, kid):PS256, )` Error make sure you did set a `--signing-kid` when starting `ocis-idp` by checking it is present in https://192.168.1.100:9130/konnect/v1/jwks.json ### Patch owncloud @@ -241,7 +241,7 @@ $CONFIG = [ ``` In the above configuration replace -- `provider-url` with the URL to your `ocis-konnectd` issuer +- `provider-url` with the URL to your `ocis-idp` issuer - `https://cloud.example.com` with the URL to your ownCloud 10 instance - `http://localhost:9100` with the URL to your ownCloud Web instance @@ -251,4 +251,4 @@ In the above configuration replace Aside from the above todos these are the next steps - tie it all together behind `ocis-proxy` -- create an `ocis bridge` command that runs all the ocis services in one step with a properly preconfigured `ocis-konnectd` `identifier-registration.yaml` file for `ownCloud Web` and the owncloud 10 `openidconnect` app, as well as a randomized `--signing-kid`. +- create an `ocis bridge` command that runs all the ocis services in one step with a properly preconfigured `ocis-idp` `identifier-registration.yaml` file for `ownCloud Web` and the owncloud 10 `openidconnect` app, as well as a randomized `--signing-kid`. diff --git a/docs/ocis/deployment/ocis_keycloak.md b/docs/ocis/deployment/ocis_keycloak.md index 34452b7cac..30061fb8b1 100644 --- a/docs/ocis/deployment/ocis_keycloak.md +++ b/docs/ocis/deployment/ocis_keycloak.md @@ -19,7 +19,7 @@ geekdocFilePath: ocis_keycloak.md The docker stack consists 4 containers. One of them is Traefik, a proxy which is terminating ssl and forwards the requests to oCIS in the internal docker network. -Keykloak add two containers: Keycloak itself and a PostgreSQL as database. Keycloak will be configured as oCIS' IDP instead of the internal IDP [Konnectd]({{< ref "../../extensions/konnectd/_index.md" >}}) +Keykloak add two containers: Keycloak itself and a PostgreSQL as database. Keycloak will be configured as oCIS' IDP instead of the internal IDP [Konnectd]({{< ref "../../extensions/idp/_index.md" >}}) The other container is oCIS itself running all extensions in one container. In this example oCIS uses [oCIS storage driver]({{< ref "../../extensions/storage/storages.md#storage-drivers" >}}) diff --git a/docs/ocis/deployment/ocis_traefik.md b/docs/ocis/deployment/ocis_traefik.md index 099eb5eb4a..0e96a35ff9 100644 --- a/docs/ocis/deployment/ocis_traefik.md +++ b/docs/ocis/deployment/ocis_traefik.md @@ -18,7 +18,7 @@ geekdocFilePath: ocis_traefik.md The docker stack consists of two containers. One of them is Traefik, a proxy which is terminating ssl and forwards the requests to oCIS in the internal docker network. -The other one is oCIS itself running all extensions in one container. In this example oCIS uses its internal IDP [Konnectd]({{< ref "../../extensions/konnectd/_index.md" >}}) and the [oCIS storage driver]({{< ref "../../extensions/storage/storages.md#storage-drivers" >}}) +The other one is oCIS itself running all extensions in one container. In this example oCIS uses its internal IDP [Konnectd]({{< ref "../../extensions/idp/_index.md" >}}) and the [oCIS storage driver]({{< ref "../../extensions/storage/storages.md#storage-drivers" >}}) ## Server Deployment diff --git a/docs/ocis/development/debugging.md b/docs/ocis/development/debugging.md index a76bb32761..d213e75294 100644 --- a/docs/ocis/development/debugging.md +++ b/docs/ocis/development/debugging.md @@ -39,7 +39,7 @@ Run the debug binary with `OCIS_LOG_LEVEL=debug bin/ocis-debug server` and then 12920 pts/1 Sl 0:00 bin/ocis-debug reva-users 12929 pts/1 Sl 0:00 bin/ocis-debug glauth 12940 pts/1 Sl 0:00 bin/ocis-debug reva-storage-home-data -12948 pts/1 Sl 0:00 bin/ocis-debug konnectd +12948 pts/1 Sl 0:00 bin/ocis-debug idp 12952 pts/1 Sl 0:00 bin/ocis-debug proxy 12961 pts/1 Sl 0:00 bin/ocis-debug thumbnails 12971 pts/1 Sl 0:00 bin/ocis-debug reva-storage-oc @@ -81,7 +81,7 @@ bin/ocis --log-level=$LOG_LEVEL glauth & bin/ocis --log-level=$LOG_LEVEL graph-explorer & bin/ocis --log-level=$LOG_LEVEL graph & #bin/ocis --log-level=$LOG_LEVEL hello & -bin/ocis --log-level=$LOG_LEVEL konnectd & +bin/ocis --log-level=$LOG_LEVEL idp & #bin/ocis --log-level=$LOG_LEVEL ocs & bin/ocis --log-level=$LOG_LEVEL web & bin/ocis --log-level=$LOG_LEVEL reva-auth-basic & @@ -118,7 +118,7 @@ bin/ocis --log-level=$LOG_LEVEL proxy & 12920 pts/1 Sl 0:00 bin/ocis-debug reva-users 12929 pts/1 Sl 0:00 bin/ocis-debug glauth 12940 pts/1 Sl 0:00 bin/ocis-debug reva-storage-home-data -12948 pts/1 Sl 0:00 bin/ocis-debug konnectd +12948 pts/1 Sl 0:00 bin/ocis-debug idp 12952 pts/1 Sl 0:00 bin/ocis-debug proxy 12961 pts/1 Sl 0:00 bin/ocis-debug thumbnails 12971 pts/1 Sl 0:00 bin/ocis-debug reva-storage-oc diff --git a/docs/ocis/flow-docs/login-flow.md b/docs/ocis/flow-docs/login-flow.md index 81f471d6c7..9a3babd3f7 100644 --- a/docs/ocis/flow-docs/login-flow.md +++ b/docs/ocis/flow-docs/login-flow.md @@ -44,7 +44,7 @@ sequenceDiagram Note over client, idp: GET /authorize?
response_type=code
&scope=openid%20profile%20email
&client_id=s6BhdRkqt3
&state=af0ifjsldkj
&redirect_uri=https%3A%2F%2Fclient.example.org%2Fcb HTTP/1.1
Host: server.example.com Note over user, idp: 3. Authorization Server Authenticates the End-User. Note over idp,ldap: Either an IdP already exists or a new one is introduced. Since we are not yet using oidc discovery we can only use one IdP. - alt all users managed by konnectd/ocis + alt all users managed by idp/ocis idp->>+glauth: LDAP query/bind glauth->>+graph: GET user with Basic Auth
GraphAPI graph->>+accounts: internal GRPC diff --git a/docs/ocis/flow-docs/request-flow.md b/docs/ocis/flow-docs/request-flow.md index b74fac66e3..36ca43dcb8 100644 --- a/docs/ocis/flow-docs/request-flow.md +++ b/docs/ocis/flow-docs/request-flow.md @@ -28,7 +28,7 @@ sequenceDiagram Note over client,proxy: What is in a bearer token?
The spec recommends opaque tokens.
Treat it as random byte noise. Note over client,proxy: the proxy MUST authenticate users
using ocis-accounts because it needs
to decide where to send the request %% Mention introspection endpoint for opaque tokens - %% konnectd uses jwt, so we can save a request + %% idp uses jwt, so we can save a request %% either way the token can be used to look up the sub and iss of the user %% or is token check enough? diff --git a/glauth/go.sum b/glauth/go.sum index a1d05c26b4..0804382fb2 100644 --- a/glauth/go.sum +++ b/glauth/go.sum @@ -224,6 +224,8 @@ github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e h1:khITGSnfDXtByQsLe github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/konnectd/.dockerignore b/idp/.dockerignore similarity index 100% rename from konnectd/.dockerignore rename to idp/.dockerignore diff --git a/konnectd/.env b/idp/.env similarity index 100% rename from konnectd/.env rename to idp/.env diff --git a/konnectd/.eslintignore b/idp/.eslintignore similarity index 100% rename from konnectd/.eslintignore rename to idp/.eslintignore diff --git a/konnectd/.eslintrc.json b/idp/.eslintrc.json similarity index 100% rename from konnectd/.eslintrc.json rename to idp/.eslintrc.json diff --git a/konnectd/LICENSE b/idp/LICENSE similarity index 100% rename from konnectd/LICENSE rename to idp/LICENSE diff --git a/konnectd/Makefile b/idp/Makefile similarity index 99% rename from konnectd/Makefile rename to idp/Makefile index 5350363685..9f809ca1eb 100644 --- a/konnectd/Makefile +++ b/idp/Makefile @@ -1,5 +1,5 @@ SHELL := bash -NAME := konnectd +NAME := idp IMPORT := github.com/owncloud/ocis/$(NAME) BIN := bin DIST := dist diff --git a/konnectd/cmd/konnectd/main.go b/idp/cmd/konnectd/main.go similarity index 68% rename from konnectd/cmd/konnectd/main.go rename to idp/cmd/konnectd/main.go index 2aed1b86c4..deeb7ea4de 100644 --- a/konnectd/cmd/konnectd/main.go +++ b/idp/cmd/konnectd/main.go @@ -3,7 +3,7 @@ package main import ( "os" - "github.com/owncloud/ocis/konnectd/pkg/command" + "github.com/owncloud/ocis/idp/pkg/command" ) func main() { diff --git a/konnectd/config/example.json b/idp/config/example.json similarity index 92% rename from konnectd/config/example.json rename to idp/config/example.json index f1bd1d5e04..e70627df46 100644 --- a/konnectd/config/example.json +++ b/idp/config/example.json @@ -15,6 +15,6 @@ "type": "jaeger", "endpoint": "localhost:6831", "collector": "http://localhost:14268/api/traces", - "service": "konnectd" + "service": "idp" } } diff --git a/konnectd/config/example.yml b/idp/config/example.yml similarity index 92% rename from konnectd/config/example.yml rename to idp/config/example.yml index 8fa4a823b2..c1a0c74a9f 100644 --- a/konnectd/config/example.yml +++ b/idp/config/example.yml @@ -14,6 +14,6 @@ tracing: type: jaeger endpoint: localhost:6831 collector: http://localhost:14268/api/traces - service: konnectd + service: idp ... diff --git a/konnectd/config/identifier-registration.yaml b/idp/config/identifier-registration.yaml similarity index 100% rename from konnectd/config/identifier-registration.yaml rename to idp/config/identifier-registration.yaml diff --git a/konnectd/docker/Dockerfile.linux.amd64 b/idp/docker/Dockerfile.linux.amd64 similarity index 82% rename from konnectd/docker/Dockerfile.linux.amd64 rename to idp/docker/Dockerfile.linux.amd64 index f6e9d3b189..7c4550cf47 100644 --- a/konnectd/docker/Dockerfile.linux.amd64 +++ b/idp/docker/Dockerfile.linux.amd64 @@ -13,7 +13,7 @@ LABEL maintainer="ownCloud GmbH " \ EXPOSE 9130 9134 -ENTRYPOINT ["/usr/bin/ocis-konnectd"] +ENTRYPOINT ["/usr/bin/ocis-idp"] CMD ["server"] -COPY bin/ocis-konnectd /usr/bin/ocis-konnectd +COPY bin/ocis-idp /usr/bin/ocis-idp diff --git a/konnectd/docker/Dockerfile.linux.arm b/idp/docker/Dockerfile.linux.arm similarity index 82% rename from konnectd/docker/Dockerfile.linux.arm rename to idp/docker/Dockerfile.linux.arm index b8b0020fb3..c507dbe313 100644 --- a/konnectd/docker/Dockerfile.linux.arm +++ b/idp/docker/Dockerfile.linux.arm @@ -13,7 +13,7 @@ LABEL maintainer="ownCloud GmbH " \ EXPOSE 9130 9134 -ENTRYPOINT ["/usr/bin/ocis-konnectd"] +ENTRYPOINT ["/usr/bin/ocis-idp"] CMD ["server"] -COPY bin/ocis-konnectd /usr/bin/ocis-konnectd +COPY bin/ocis-idp /usr/bin/ocis-idp diff --git a/konnectd/docker/Dockerfile.linux.arm64 b/idp/docker/Dockerfile.linux.arm64 similarity index 82% rename from konnectd/docker/Dockerfile.linux.arm64 rename to idp/docker/Dockerfile.linux.arm64 index a1db7a18c3..46a0438173 100644 --- a/konnectd/docker/Dockerfile.linux.arm64 +++ b/idp/docker/Dockerfile.linux.arm64 @@ -13,7 +13,7 @@ LABEL maintainer="ownCloud GmbH " \ EXPOSE 9130 9134 -ENTRYPOINT ["/usr/bin/ocis-konnectd"] +ENTRYPOINT ["/usr/bin/ocis-idp"] CMD ["server"] -COPY bin/ocis-konnectd /usr/bin/ocis-konnectd +COPY bin/ocis-idp /usr/bin/ocis-idp diff --git a/idp/docker/manifest.tmpl b/idp/docker/manifest.tmpl new file mode 100644 index 0000000000..6367d18ade --- /dev/null +++ b/idp/docker/manifest.tmpl @@ -0,0 +1,22 @@ +image: owncloud/ocis-idp:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}} +{{#if build.tags}} +tags: +{{#each build.tags}} + - {{this}} +{{/each}} +{{/if}} +manifests: + - image: owncloud/ocis-idp:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64 + platform: + architecture: amd64 + os: linux + - image: owncloud/ocis-idp:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64 + platform: + architecture: arm64 + variant: v8 + os: linux + - image: owncloud/ocis-idp:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm + platform: + architecture: arm + variant: v6 + os: linux diff --git a/konnectd/go.mod b/idp/go.mod similarity index 96% rename from konnectd/go.mod rename to idp/go.mod index d53fc5817f..e9b3260b2f 100644 --- a/konnectd/go.mod +++ b/idp/go.mod @@ -1,4 +1,4 @@ -module github.com/owncloud/ocis/konnectd +module github.com/owncloud/ocis/idp go 1.15 diff --git a/konnectd/go.sum b/idp/go.sum similarity index 100% rename from konnectd/go.sum rename to idp/go.sum diff --git a/konnectd/package.json b/idp/package.json similarity index 100% rename from konnectd/package.json rename to idp/package.json diff --git a/konnectd/pkg/assets/assets.go b/idp/pkg/assets/assets.go similarity index 95% rename from konnectd/pkg/assets/assets.go rename to idp/pkg/assets/assets.go index d9e070cd73..9e6884434e 100644 --- a/konnectd/pkg/assets/assets.go +++ b/idp/pkg/assets/assets.go @@ -5,7 +5,7 @@ import ( "os" "path" - "github.com/owncloud/ocis/konnectd/pkg/config" + "github.com/owncloud/ocis/idp/pkg/config" "github.com/owncloud/ocis/ocis-pkg/log" ) diff --git a/konnectd/pkg/assets/dummy.go b/idp/pkg/assets/dummy.go similarity index 100% rename from konnectd/pkg/assets/dummy.go rename to idp/pkg/assets/dummy.go diff --git a/konnectd/pkg/assets/embed.go b/idp/pkg/assets/embed.go similarity index 100% rename from konnectd/pkg/assets/embed.go rename to idp/pkg/assets/embed.go diff --git a/konnectd/pkg/assets/embed.yml b/idp/pkg/assets/embed.yml similarity index 100% rename from konnectd/pkg/assets/embed.yml rename to idp/pkg/assets/embed.yml diff --git a/konnectd/pkg/assets/option.go b/idp/pkg/assets/option.go similarity index 93% rename from konnectd/pkg/assets/option.go rename to idp/pkg/assets/option.go index 218f46884a..54f1eebf57 100644 --- a/konnectd/pkg/assets/option.go +++ b/idp/pkg/assets/option.go @@ -1,7 +1,7 @@ package assets import ( - "github.com/owncloud/ocis/konnectd/pkg/config" + "github.com/owncloud/ocis/idp/pkg/config" "github.com/owncloud/ocis/ocis-pkg/log" ) diff --git a/konnectd/pkg/command/health.go b/idp/pkg/command/health.go similarity index 89% rename from konnectd/pkg/command/health.go rename to idp/pkg/command/health.go index dd651282c3..ab38e13102 100644 --- a/konnectd/pkg/command/health.go +++ b/idp/pkg/command/health.go @@ -5,8 +5,8 @@ import ( "net/http" "github.com/micro/cli/v2" - "github.com/owncloud/ocis/konnectd/pkg/config" - "github.com/owncloud/ocis/konnectd/pkg/flagset" + "github.com/owncloud/ocis/idp/pkg/config" + "github.com/owncloud/ocis/idp/pkg/flagset" ) // Health is the entrypoint for the health command. diff --git a/konnectd/pkg/command/root.go b/idp/pkg/command/root.go similarity index 83% rename from konnectd/pkg/command/root.go rename to idp/pkg/command/root.go index d57dd8f47f..aa365be4f5 100644 --- a/konnectd/pkg/command/root.go +++ b/idp/pkg/command/root.go @@ -5,21 +5,21 @@ import ( "strings" "github.com/micro/cli/v2" - "github.com/owncloud/ocis/konnectd/pkg/config" - "github.com/owncloud/ocis/konnectd/pkg/flagset" - "github.com/owncloud/ocis/konnectd/pkg/version" + "github.com/owncloud/ocis/idp/pkg/config" + "github.com/owncloud/ocis/idp/pkg/flagset" + "github.com/owncloud/ocis/idp/pkg/version" "github.com/owncloud/ocis/ocis-pkg/log" "github.com/spf13/viper" ) -// Execute is the entry point for the ocis-konnectd command. +// Execute is the entry point for the ocis-idp command. func Execute() error { cfg := config.New() app := &cli.App{ - Name: "ocis-konnectd", + Name: "ocis-idp", Version: version.String, - Usage: "Serve Konnectd API for oCIS", + Usage: "Serve IDP API for oCIS", Compiled: version.Compiled(), Authors: []*cli.Author{ @@ -59,7 +59,7 @@ func Execute() error { // NewLogger initializes a service-specific logger instance. func NewLogger(cfg *config.Config) log.Logger { return log.NewLogger( - log.Name("konnectd"), + log.Name("idp"), log.Level(cfg.Log.Level), log.Pretty(cfg.Log.Pretty), log.Color(cfg.Log.Color), @@ -71,13 +71,13 @@ func ParseConfig(c *cli.Context, cfg *config.Config) error { logger := NewLogger(cfg) viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_")) - viper.SetEnvPrefix("KONNECTD") + viper.SetEnvPrefix("IDP") viper.AutomaticEnv() if c.IsSet("config-file") { viper.SetConfigFile(c.String("config-file")) } else { - viper.SetConfigName("konnectd") + viper.SetConfigName("idp") viper.AddConfigPath("/etc/ocis") viper.AddConfigPath("$HOME/.ocis") diff --git a/konnectd/pkg/command/server.go b/idp/pkg/command/server.go similarity index 91% rename from konnectd/pkg/command/server.go rename to idp/pkg/command/server.go index a414f16df2..bd07bfbdf5 100644 --- a/konnectd/pkg/command/server.go +++ b/idp/pkg/command/server.go @@ -14,11 +14,11 @@ import ( "github.com/oklog/run" openzipkin "github.com/openzipkin/zipkin-go" zipkinhttp "github.com/openzipkin/zipkin-go/reporter/http" - "github.com/owncloud/ocis/konnectd/pkg/config" - "github.com/owncloud/ocis/konnectd/pkg/flagset" - "github.com/owncloud/ocis/konnectd/pkg/metrics" - "github.com/owncloud/ocis/konnectd/pkg/server/debug" - "github.com/owncloud/ocis/konnectd/pkg/server/http" + "github.com/owncloud/ocis/idp/pkg/config" + "github.com/owncloud/ocis/idp/pkg/flagset" + "github.com/owncloud/ocis/idp/pkg/metrics" + "github.com/owncloud/ocis/idp/pkg/server/debug" + "github.com/owncloud/ocis/idp/pkg/server/http" "go.opencensus.io/stats/view" "go.opencensus.io/trace" ) @@ -38,15 +38,15 @@ func Server(cfg *config.Config) *cli.Command { // StringSliceFlag doesn't support Destination // UPDATE Destination on string flags supported. Wait for https://github.com/urfave/cli/pull/1078 to get to micro/cli if len(c.StringSlice("trusted-proxy")) > 0 { - cfg.Konnectd.TrustedProxy = c.StringSlice("trusted-proxy") + cfg.IDP.TrustedProxy = c.StringSlice("trusted-proxy") } if len(c.StringSlice("allow-scope")) > 0 { - cfg.Konnectd.AllowScope = c.StringSlice("allow-scope") + cfg.IDP.AllowScope = c.StringSlice("allow-scope") } if len(c.StringSlice("signing-private-key")) > 0 { - cfg.Konnectd.SigningPrivateKeyFiles = c.StringSlice("signing-private-key") + cfg.IDP.SigningPrivateKeyFiles = c.StringSlice("signing-private-key") } return ParseConfig(c, cfg) diff --git a/konnectd/pkg/command/version.go b/idp/pkg/command/version.go similarity index 76% rename from konnectd/pkg/command/version.go rename to idp/pkg/command/version.go index 72f6d42270..5be8ea3d46 100644 --- a/konnectd/pkg/command/version.go +++ b/idp/pkg/command/version.go @@ -8,8 +8,8 @@ import ( "github.com/micro/cli/v2" tw "github.com/olekukonko/tablewriter" - "github.com/owncloud/ocis/konnectd/pkg/config" - "github.com/owncloud/ocis/konnectd/pkg/flagset" + "github.com/owncloud/ocis/idp/pkg/config" + "github.com/owncloud/ocis/idp/pkg/flagset" ) // PrintVersion prints the service versions of all running instances. @@ -17,17 +17,17 @@ func PrintVersion(cfg *config.Config) *cli.Command { return &cli.Command{ Name: "version", Usage: "Print the versions of the running instances", - Flags: flagset.ListKonnectdWithConfig(cfg), + Flags: flagset.ListIDPWithConfig(cfg), Action: func(c *cli.Context) error { reg := *registry.GetRegistry() services, err := reg.GetService(cfg.Service.Namespace + "." + cfg.Service.Name) if err != nil { - fmt.Println(fmt.Errorf("could not get konnectd services from the registry: %v", err)) + fmt.Println(fmt.Errorf("could not get idp services from the registry: %v", err)) return err } if len(services) == 0 { - fmt.Println("No running konnectd service found.") + fmt.Println("No running idp service found.") return nil } diff --git a/konnectd/pkg/config/config.go b/idp/pkg/config/config.go similarity index 97% rename from konnectd/pkg/config/config.go rename to idp/pkg/config/config.go index e3b1e670ac..617fda130c 100644 --- a/konnectd/pkg/config/config.go +++ b/idp/pkg/config/config.go @@ -57,7 +57,7 @@ type Config struct { HTTP HTTP Tracing Tracing Asset Asset - Konnectd bootstrap.Config + IDP bootstrap.Config Service Service } diff --git a/konnectd/pkg/crypto/gencert.go b/idp/pkg/crypto/gencert.go similarity index 100% rename from konnectd/pkg/crypto/gencert.go rename to idp/pkg/crypto/gencert.go diff --git a/konnectd/pkg/flagset/flagset.go b/idp/pkg/flagset/flagset.go similarity index 66% rename from konnectd/pkg/flagset/flagset.go rename to idp/pkg/flagset/flagset.go index af76c54317..ed348e2c06 100644 --- a/konnectd/pkg/flagset/flagset.go +++ b/idp/pkg/flagset/flagset.go @@ -2,7 +2,7 @@ package flagset import ( "github.com/micro/cli/v2" - "github.com/owncloud/ocis/konnectd/pkg/config" + "github.com/owncloud/ocis/idp/pkg/config" ) // RootWithConfig applies cfg to the root flagset @@ -12,21 +12,21 @@ func RootWithConfig(cfg *config.Config) []cli.Flag { Name: "log-level", Value: "info", Usage: "Set logging level", - EnvVars: []string{"KONNECTD_LOG_LEVEL"}, + EnvVars: []string{"IDP_LOG_LEVEL"}, Destination: &cfg.Log.Level, }, &cli.BoolFlag{ Value: true, Name: "log-pretty", Usage: "Enable pretty logging", - EnvVars: []string{"KONNECTD_LOG_PRETTY"}, + EnvVars: []string{"IDP_LOG_PRETTY"}, Destination: &cfg.Log.Pretty, }, &cli.BoolFlag{ Value: true, Name: "log-color", Usage: "Enable colored logging", - EnvVars: []string{"KONNECTD_LOG_COLOR"}, + EnvVars: []string{"IDP_LOG_COLOR"}, Destination: &cfg.Log.Color, }, } @@ -39,7 +39,7 @@ func HealthWithConfig(cfg *config.Config) []cli.Flag { Name: "debug-addr", Value: "0.0.0.0:9134", Usage: "Address to debug endpoint", - EnvVars: []string{"KONNECTD_DEBUG_ADDR"}, + EnvVars: []string{"IDP_DEBUG_ADDR"}, Destination: &cfg.Debug.Addr, }, } @@ -52,305 +52,305 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag { Name: "config-file", Value: "", Usage: "Path to config file", - EnvVars: []string{"KONNECTD_CONFIG_FILE"}, + EnvVars: []string{"IDP_CONFIG_FILE"}, Destination: &cfg.File, }, &cli.BoolFlag{ Name: "tracing-enabled", Usage: "Enable sending traces", - EnvVars: []string{"KONNECTD_TRACING_ENABLED"}, + EnvVars: []string{"IDP_TRACING_ENABLED"}, Destination: &cfg.Tracing.Enabled, }, &cli.StringFlag{ Name: "tracing-type", Value: "jaeger", Usage: "Tracing backend type", - EnvVars: []string{"KONNECTD_TRACING_TYPE"}, + EnvVars: []string{"IDP_TRACING_TYPE"}, Destination: &cfg.Tracing.Type, }, &cli.StringFlag{ Name: "tracing-endpoint", Value: "", Usage: "Endpoint for the agent", - EnvVars: []string{"KONNECTD_TRACING_ENDPOINT"}, + EnvVars: []string{"IDP_TRACING_ENDPOINT"}, Destination: &cfg.Tracing.Endpoint, }, &cli.StringFlag{ Name: "tracing-collector", Value: "", Usage: "Endpoint for the collector", - EnvVars: []string{"KONNECTD_TRACING_COLLECTOR"}, + EnvVars: []string{"IDP_TRACING_COLLECTOR"}, Destination: &cfg.Tracing.Collector, }, &cli.StringFlag{ Name: "tracing-service", - Value: "konnectd", + Value: "idp", Usage: "Service name for tracing", - EnvVars: []string{"KONNECTD_TRACING_SERVICE"}, + EnvVars: []string{"IDP_TRACING_SERVICE"}, Destination: &cfg.Tracing.Service, }, &cli.StringFlag{ Name: "debug-addr", Value: "0.0.0.0:9134", Usage: "Address to bind debug server", - EnvVars: []string{"KONNECTD_DEBUG_ADDR"}, + EnvVars: []string{"IDP_DEBUG_ADDR"}, Destination: &cfg.Debug.Addr, }, &cli.StringFlag{ Name: "debug-token", Value: "", Usage: "Token to grant metrics access", - EnvVars: []string{"KONNECTD_DEBUG_TOKEN"}, + EnvVars: []string{"IDP_DEBUG_TOKEN"}, Destination: &cfg.Debug.Token, }, &cli.BoolFlag{ Name: "debug-pprof", Usage: "Enable pprof debugging", - EnvVars: []string{"KONNECTD_DEBUG_PPROF"}, + EnvVars: []string{"IDP_DEBUG_PPROF"}, Destination: &cfg.Debug.Pprof, }, &cli.BoolFlag{ Name: "debug-zpages", Usage: "Enable zpages debugging", - EnvVars: []string{"KONNECTD_DEBUG_ZPAGES"}, + EnvVars: []string{"IDP_DEBUG_ZPAGES"}, Destination: &cfg.Debug.Zpages, }, &cli.StringFlag{ Name: "http-addr", Value: "0.0.0.0:9130", Usage: "Address to bind http server", - EnvVars: []string{"KONNECTD_HTTP_ADDR"}, + EnvVars: []string{"IDP_HTTP_ADDR"}, Destination: &cfg.HTTP.Addr, }, &cli.StringFlag{ Name: "http-root", Value: "/", Usage: "Root path of http server", - EnvVars: []string{"KONNECTD_HTTP_ROOT"}, + EnvVars: []string{"IDP_HTTP_ROOT"}, Destination: &cfg.HTTP.Root, }, &cli.StringFlag{ Name: "http-namespace", Value: "com.owncloud.web", Usage: "Set the base namespace for service discovery", - EnvVars: []string{"KONNECTD_HTTP_NAMESPACE"}, + EnvVars: []string{"IDP_HTTP_NAMESPACE"}, Destination: &cfg.Service.Namespace, }, &cli.StringFlag{ Name: "name", - Value: "konnectd", + Value: "idp", Usage: "Service name", - EnvVars: []string{"KONNECTD_NAME"}, + EnvVars: []string{"IDP_NAME"}, Destination: &cfg.Service.Name, }, &cli.StringFlag{ Name: "identity-manager", Value: "ldap", Usage: "Identity manager (one of ldap,kc,cookie,dummy)", - EnvVars: []string{"KONNECTD_IDENTITY_MANAGER"}, - Destination: &cfg.Konnectd.IdentityManager, + EnvVars: []string{"IDP_IDENTITY_MANAGER"}, + Destination: &cfg.IDP.IdentityManager, }, &cli.StringFlag{ Name: "transport-tls-cert", Value: "", Usage: "Certificate file for transport encryption", - EnvVars: []string{"KONNECTD_TRANSPORT_TLS_CERT"}, + EnvVars: []string{"IDP_TRANSPORT_TLS_CERT"}, Destination: &cfg.HTTP.TLSCert, }, &cli.StringFlag{ Name: "transport-tls-key", Value: "", Usage: "Secret file for transport encryption", - EnvVars: []string{"KONNECTD_TRANSPORT_TLS_KEY"}, + EnvVars: []string{"IDP_TRANSPORT_TLS_KEY"}, Destination: &cfg.HTTP.TLSKey, }, &cli.StringFlag{ Name: "iss", Usage: "OIDC issuer URL", - EnvVars: []string{"KONNECTD_ISS", "OCIS_URL"}, // KONNECTD_ISS takes precedence over OCIS_URL + EnvVars: []string{"IDP_ISS", "OCIS_URL"}, // IDP_ISS takes precedence over OCIS_URL Value: "https://localhost:9200", - Destination: &cfg.Konnectd.Iss, + Destination: &cfg.IDP.Iss, }, &cli.StringSliceFlag{ Name: "signing-private-key", Usage: "Full path to PEM encoded private key file (must match the --signing-method algorithm)", - EnvVars: []string{"KONNECTD_SIGNING_PRIVATE_KEY"}, + EnvVars: []string{"IDP_SIGNING_PRIVATE_KEY"}, Value: nil, }, &cli.StringFlag{ Name: "signing-kid", Usage: "Value of kid field to use in created tokens (uniquely identifying the signing-private-key)", - EnvVars: []string{"KONNECTD_SIGNING_KID"}, + EnvVars: []string{"IDP_SIGNING_KID"}, Value: "", - Destination: &cfg.Konnectd.SigningKid, + Destination: &cfg.IDP.SigningKid, }, &cli.StringFlag{ Name: "validation-keys-path", Usage: "Full path to a folder containg PEM encoded private or public key files used for token validaton (file name without extension is used as kid)", - EnvVars: []string{"KONNECTD_VALIDATION_KEYS_PATH"}, + EnvVars: []string{"IDP_VALIDATION_KEYS_PATH"}, Value: "", - Destination: &cfg.Konnectd.ValidationKeysPath, + Destination: &cfg.IDP.ValidationKeysPath, }, &cli.StringFlag{ Name: "encryption-secret", Usage: "Full path to a file containing a %d bytes secret key", - EnvVars: []string{"KONNECTD_ENCRYPTION_SECRET"}, + EnvVars: []string{"IDP_ENCRYPTION_SECRET"}, Value: "", - Destination: &cfg.Konnectd.EncryptionSecretFile, + Destination: &cfg.IDP.EncryptionSecretFile, }, &cli.StringFlag{ Name: "signing-method", Usage: "JWT default signing method", - EnvVars: []string{"KONNECTD_SIGNING_METHOD"}, + EnvVars: []string{"IDP_SIGNING_METHOD"}, Value: "PS256", - Destination: &cfg.Konnectd.SigningMethod, + Destination: &cfg.IDP.SigningMethod, }, &cli.StringFlag{ Name: "uri-base-path", Usage: "Custom base path for URI endpoints", - EnvVars: []string{"KONNECTD_URI_BASE_PATH"}, + EnvVars: []string{"IDP_URI_BASE_PATH"}, Value: "", - Destination: &cfg.Konnectd.URIBasePath, + Destination: &cfg.IDP.URIBasePath, }, &cli.StringFlag{ Name: "sign-in-uri", Usage: "Custom redirection URI to sign-in form", - EnvVars: []string{"KONNECTD_SIGN_IN_URI"}, + EnvVars: []string{"IDP_SIGN_IN_URI"}, Value: "", - Destination: &cfg.Konnectd.SignInURI, + Destination: &cfg.IDP.SignInURI, }, &cli.StringFlag{ Name: "signed-out-uri", Usage: "Custom redirection URI to signed-out goodbye page", - EnvVars: []string{"KONNECTD_SIGN_OUT_URI"}, + EnvVars: []string{"IDP_SIGN_OUT_URI"}, Value: "", - Destination: &cfg.Konnectd.SignedOutURI, + Destination: &cfg.IDP.SignedOutURI, }, &cli.StringFlag{ Name: "authorization-endpoint-uri", Usage: "Custom authorization endpoint URI", - EnvVars: []string{"KONNECTD_ENDPOINT_URI"}, + EnvVars: []string{"IDP_ENDPOINT_URI"}, Value: "", - Destination: &cfg.Konnectd.AuthorizationEndpointURI, + Destination: &cfg.IDP.AuthorizationEndpointURI, }, &cli.StringFlag{ Name: "endsession-endpoint-uri", Usage: "Custom endsession endpoint URI", - EnvVars: []string{"KONNECTD_ENDSESSION_ENDPOINT_URI"}, + EnvVars: []string{"IDP_ENDSESSION_ENDPOINT_URI"}, Value: "", - Destination: &cfg.Konnectd.EndsessionEndpointURI, + Destination: &cfg.IDP.EndsessionEndpointURI, }, &cli.StringFlag{ Name: "asset-path", Value: "", Usage: "Path to custom assets", - EnvVars: []string{"KONNECTD_ASSET_PATH"}, + EnvVars: []string{"IDP_ASSET_PATH"}, Destination: &cfg.Asset.Path, }, &cli.StringFlag{ Name: "identifier-client-path", Usage: "Path to the identifier web client base folder", - EnvVars: []string{"KONNECTD_IDENTIFIER_CLIENT_PATH"}, - Value: "/var/tmp/ocis/konnectd", - Destination: &cfg.Konnectd.IdentifierClientPath, + EnvVars: []string{"IDP_IDENTIFIER_CLIENT_PATH"}, + Value: "/var/tmp/ocis/idp", + Destination: &cfg.IDP.IdentifierClientPath, }, &cli.StringFlag{ Name: "identifier-registration-conf", Usage: "Path to a identifier-registration.yaml configuration file", - EnvVars: []string{"KONNECTD_IDENTIFIER_REGISTRATION_CONF"}, + EnvVars: []string{"IDP_IDENTIFIER_REGISTRATION_CONF"}, Value: "./config/identifier-registration.yaml", - Destination: &cfg.Konnectd.IdentifierRegistrationConf, + Destination: &cfg.IDP.IdentifierRegistrationConf, }, &cli.StringFlag{ Name: "identifier-scopes-conf", Usage: "Path to a scopes.yaml configuration file", - EnvVars: []string{"KONNECTD_IDENTIFIER_SCOPES_CONF"}, + EnvVars: []string{"IDP_IDENTIFIER_SCOPES_CONF"}, Value: "", - Destination: &cfg.Konnectd.IdentifierScopesConf, + Destination: &cfg.IDP.IdentifierScopesConf, }, &cli.BoolFlag{ Name: "insecure", Usage: "Disable TLS certificate and hostname validation", - EnvVars: []string{"KONNECTD_INSECURE"}, - Destination: &cfg.Konnectd.Insecure, + EnvVars: []string{"IDP_INSECURE"}, + Destination: &cfg.IDP.Insecure, }, &cli.BoolFlag{ Name: "tls", - Usage: "Use TLS (disable only if konnectd is behind a TLS-terminating reverse-proxy).", - EnvVars: []string{"KONNECTD_TLS"}, + Usage: "Use TLS (disable only if idp is behind a TLS-terminating reverse-proxy).", + EnvVars: []string{"IDP_TLS"}, Value: false, Destination: &cfg.HTTP.TLS, }, &cli.StringSliceFlag{ Name: "trusted-proxy", Usage: "Trusted proxy IP or IP network (can be used multiple times)", - EnvVars: []string{"KONNECTD_TRUSTED_PROXY"}, + EnvVars: []string{"IDP_TRUSTED_PROXY"}, Value: nil, }, &cli.StringSliceFlag{ Name: "allow-scope", Usage: "Allow OAuth 2 scope (can be used multiple times, if not set default scopes are allowed)", - EnvVars: []string{"KONNECTD_ALLOW_SCOPE"}, + EnvVars: []string{"IDP_ALLOW_SCOPE"}, Value: nil, }, &cli.BoolFlag{ Name: "allow-client-guests", Usage: "Allow sign in of client controlled guest users", - EnvVars: []string{"KONNECTD_ALLOW_CLIENT_GUESTS"}, - Destination: &cfg.Konnectd.AllowClientGuests, + EnvVars: []string{"IDP_ALLOW_CLIENT_GUESTS"}, + Destination: &cfg.IDP.AllowClientGuests, }, &cli.BoolFlag{ Name: "allow-dynamic-client-registration", Usage: "Allow dynamic OAuth2 client registration", - EnvVars: []string{"KONNECTD_ALLOW_DYNAMIC_CLIENT_REGISTRATION"}, + EnvVars: []string{"IDP_ALLOW_DYNAMIC_CLIENT_REGISTRATION"}, Value: true, - Destination: &cfg.Konnectd.AllowDynamicClientRegistration, + Destination: &cfg.IDP.AllowDynamicClientRegistration, }, &cli.BoolFlag{ Name: "disable-identifier-webapp", Usage: "Disable built-in identifier-webapp to use a frontend hosted elsewhere.", - EnvVars: []string{"KONNECTD_DISABLE_IDENTIFIER_WEBAPP"}, + EnvVars: []string{"IDP_DISABLE_IDENTIFIER_WEBAPP"}, Value: true, - Destination: &cfg.Konnectd.IdentifierClientDisabled, + Destination: &cfg.IDP.IdentifierClientDisabled, }, &cli.Uint64Flag{ Name: "access-token-expiration", Usage: "Expiration time of access tokens in seconds since generated", - EnvVars: []string{"KONNECTD_ACCESS_TOKEN_EXPIRATION"}, - Destination: &cfg.Konnectd.AccessTokenDurationSeconds, + EnvVars: []string{"IDP_ACCESS_TOKEN_EXPIRATION"}, + Destination: &cfg.IDP.AccessTokenDurationSeconds, Value: 60 * 10, // 10 Minutes. }, &cli.Uint64Flag{ Name: "id-token-expiration", Usage: "Expiration time of id tokens in seconds since generated", - EnvVars: []string{"KONNECTD_ID_TOKEN_EXPIRATION"}, - Destination: &cfg.Konnectd.IDTokenDurationSeconds, + EnvVars: []string{"IDP_ID_TOKEN_EXPIRATION"}, + Destination: &cfg.IDP.IDTokenDurationSeconds, Value: 60 * 60, // 1 Hour }, &cli.Uint64Flag{ Name: "refresh-token-expiration", Usage: "Expiration time of refresh tokens in seconds since generated", - EnvVars: []string{"KONNECTD_REFRESH_TOKEN_EXPIRATION"}, - Destination: &cfg.Konnectd.RefreshTokenDurationSeconds, + EnvVars: []string{"IDP_REFRESH_TOKEN_EXPIRATION"}, + Destination: &cfg.IDP.RefreshTokenDurationSeconds, Value: 60 * 60 * 24 * 365 * 3, // 1 year }, } } -// ListKonnectdWithConfig applies the config to the list commands flags -func ListKonnectdWithConfig(cfg *config.Config) []cli.Flag { +// ListIDPWithConfig applies the config to the list commands flags +func ListIDPWithConfig(cfg *config.Config) []cli.Flag { return []cli.Flag{&cli.StringFlag{ Name: "http-namespace", Value: "com.owncloud.web", Usage: "Set the base namespace for service discovery", - EnvVars: []string{"KONNECTD_HTTP_NAMESPACE"}, + EnvVars: []string{"IDP_HTTP_NAMESPACE"}, Destination: &cfg.Service.Namespace, }, &cli.StringFlag{ Name: "name", - Value: "konnectd", + Value: "idp", Usage: "Service name", - EnvVars: []string{"KONNECTD_NAME"}, + EnvVars: []string{"IDP_NAME"}, Destination: &cfg.Service.Name, }, } diff --git a/konnectd/pkg/log/logrus_wrapper.go b/idp/pkg/log/logrus_wrapper.go similarity index 95% rename from konnectd/pkg/log/logrus_wrapper.go rename to idp/pkg/log/logrus_wrapper.go index 565b6e77dd..71f29be2c8 100644 --- a/konnectd/pkg/log/logrus_wrapper.go +++ b/idp/pkg/log/logrus_wrapper.go @@ -17,7 +17,7 @@ var levelMapping = levelMap{ logrus.InfoLevel: zerolog.InfoLevel, } -// LogrusWrapper around zerolog. Required because konnectd uses logrus internally. +// LogrusWrapper around zerolog. Required because idp uses logrus internally. type LogrusWrapper struct { zeroLog *zerolog.Logger levelMap levelMap diff --git a/konnectd/pkg/metrics/metrics.go b/idp/pkg/metrics/metrics.go similarity index 97% rename from konnectd/pkg/metrics/metrics.go rename to idp/pkg/metrics/metrics.go index 8c658395e2..9a5f912dab 100644 --- a/konnectd/pkg/metrics/metrics.go +++ b/idp/pkg/metrics/metrics.go @@ -7,7 +7,7 @@ var ( Namespace = "ocis" // Subsystem defines the subsystem for the defines metrics. - Subsystem = "konnectd" + Subsystem = "idp" ) // Metrics defines the available metrics of this service. diff --git a/konnectd/pkg/middleware/static.go b/idp/pkg/middleware/static.go similarity index 100% rename from konnectd/pkg/middleware/static.go rename to idp/pkg/middleware/static.go diff --git a/konnectd/pkg/server/debug/option.go b/idp/pkg/server/debug/option.go similarity index 95% rename from konnectd/pkg/server/debug/option.go rename to idp/pkg/server/debug/option.go index 0a9b7b7390..5e0d17f8a8 100644 --- a/konnectd/pkg/server/debug/option.go +++ b/idp/pkg/server/debug/option.go @@ -3,7 +3,7 @@ package debug import ( "context" - "github.com/owncloud/ocis/konnectd/pkg/config" + "github.com/owncloud/ocis/idp/pkg/config" "github.com/owncloud/ocis/ocis-pkg/log" ) diff --git a/konnectd/pkg/server/debug/server.go b/idp/pkg/server/debug/server.go similarity index 96% rename from konnectd/pkg/server/debug/server.go rename to idp/pkg/server/debug/server.go index d88639978b..13ab7b9f27 100644 --- a/konnectd/pkg/server/debug/server.go +++ b/idp/pkg/server/debug/server.go @@ -4,7 +4,7 @@ import ( "io" "net/http" - "github.com/owncloud/ocis/konnectd/pkg/config" + "github.com/owncloud/ocis/idp/pkg/config" "github.com/owncloud/ocis/ocis-pkg/service/debug" ) diff --git a/konnectd/pkg/server/http/option.go b/idp/pkg/server/http/option.go similarity index 93% rename from konnectd/pkg/server/http/option.go rename to idp/pkg/server/http/option.go index 4c0cfc84b3..3fed9712df 100644 --- a/konnectd/pkg/server/http/option.go +++ b/idp/pkg/server/http/option.go @@ -4,8 +4,8 @@ import ( "context" "github.com/micro/cli/v2" - "github.com/owncloud/ocis/konnectd/pkg/config" - "github.com/owncloud/ocis/konnectd/pkg/metrics" + "github.com/owncloud/ocis/idp/pkg/config" + "github.com/owncloud/ocis/idp/pkg/metrics" "github.com/owncloud/ocis/ocis-pkg/log" ) diff --git a/konnectd/pkg/server/http/server.go b/idp/pkg/server/http/server.go similarity index 95% rename from konnectd/pkg/server/http/server.go rename to idp/pkg/server/http/server.go index bd6f081f54..ab6e795186 100644 --- a/konnectd/pkg/server/http/server.go +++ b/idp/pkg/server/http/server.go @@ -4,8 +4,8 @@ import ( "crypto/tls" "os" - "github.com/owncloud/ocis/konnectd/pkg/crypto" - svc "github.com/owncloud/ocis/konnectd/pkg/service/v0" + "github.com/owncloud/ocis/idp/pkg/crypto" + svc "github.com/owncloud/ocis/idp/pkg/service/v0" "github.com/owncloud/ocis/ocis-pkg/middleware" "github.com/owncloud/ocis/ocis-pkg/service/http" ) diff --git a/konnectd/pkg/service/v0/instrument.go b/idp/pkg/service/v0/instrument.go similarity index 92% rename from konnectd/pkg/service/v0/instrument.go rename to idp/pkg/service/v0/instrument.go index 4abb29d34e..9d5ad73225 100644 --- a/konnectd/pkg/service/v0/instrument.go +++ b/idp/pkg/service/v0/instrument.go @@ -3,7 +3,7 @@ package svc import ( "net/http" - "github.com/owncloud/ocis/konnectd/pkg/metrics" + "github.com/owncloud/ocis/idp/pkg/metrics" ) // NewInstrument returns a service that instruments metrics. diff --git a/konnectd/pkg/service/v0/logging.go b/idp/pkg/service/v0/logging.go similarity index 100% rename from konnectd/pkg/service/v0/logging.go rename to idp/pkg/service/v0/logging.go diff --git a/konnectd/pkg/service/v0/option.go b/idp/pkg/service/v0/option.go similarity index 95% rename from konnectd/pkg/service/v0/option.go rename to idp/pkg/service/v0/option.go index ad06f2069b..5ddc77d770 100644 --- a/konnectd/pkg/service/v0/option.go +++ b/idp/pkg/service/v0/option.go @@ -3,7 +3,7 @@ package svc import ( "net/http" - "github.com/owncloud/ocis/konnectd/pkg/config" + "github.com/owncloud/ocis/idp/pkg/config" "github.com/owncloud/ocis/ocis-pkg/log" ) diff --git a/konnectd/pkg/service/v0/service.go b/idp/pkg/service/v0/service.go similarity index 81% rename from konnectd/pkg/service/v0/service.go rename to idp/pkg/service/v0/service.go index 319879f53a..419726212b 100644 --- a/konnectd/pkg/service/v0/service.go +++ b/idp/pkg/service/v0/service.go @@ -11,10 +11,10 @@ import ( "github.com/go-chi/chi" "github.com/gorilla/mux" - "github.com/owncloud/ocis/konnectd/pkg/assets" - "github.com/owncloud/ocis/konnectd/pkg/config" - logw "github.com/owncloud/ocis/konnectd/pkg/log" - "github.com/owncloud/ocis/konnectd/pkg/middleware" + "github.com/owncloud/ocis/idp/pkg/assets" + "github.com/owncloud/ocis/idp/pkg/config" + logw "github.com/owncloud/ocis/idp/pkg/log" + "github.com/owncloud/ocis/idp/pkg/middleware" "github.com/owncloud/ocis/ocis-pkg/log" "stash.kopano.io/kc/konnect/bootstrap" kcconfig "stash.kopano.io/kc/konnect/config" @@ -42,23 +42,23 @@ func NewService(opts ...Option) Service { logger.Fatal().Err(err).Msg("could not initialize env vars") } - if err := createConfigsIfNotExist(assetVFS, options.Config.Konnectd.Iss); err != nil { + if err := createConfigsIfNotExist(assetVFS, options.Config.IDP.Iss); err != nil { logger.Fatal().Err(err).Msg("could not create default config") } - bs, err := bootstrap.Boot(ctx, &options.Config.Konnectd, &kcconfig.Config{ + bs, err := bootstrap.Boot(ctx, &options.Config.IDP, &kcconfig.Config{ Logger: logw.Wrap(logger), }) if err != nil { - logger.Fatal().Err(err).Msg("could not bootstrap konnectd") + logger.Fatal().Err(err).Msg("could not bootstrap idp") } managers := bs.Managers() routes := []server.WithRoutes{managers.Must("identity").(server.WithRoutes)} handlers := managers.Must("handler").(http.Handler) - svc := Konnectd{ + svc := IDP{ logger: options.Logger, config: options.Config, assets: assetVFS, @@ -109,12 +109,12 @@ func createConfigsIfNotExist(assets http.FileSystem, ocisURL string) error { } -// Init vars which are currently not accessible via konnectd api +// Init vars which are currently not accessible via idp api func initKonnectInternalEnvVars() error { var defaults = map[string]string{ "LDAP_URI": "ldap://localhost:9125", - "LDAP_BINDDN": "cn=konnectd,ou=sysusers,dc=example,dc=org", - "LDAP_BINDPW": "konnectd", + "LDAP_BINDDN": "cn=idp,ou=sysusers,dc=example,dc=org", + "LDAP_BINDPW": "idp", "LDAP_BASEDN": "ou=users,dc=example,dc=org", "LDAP_SCOPE": "sub", "LDAP_LOGIN_ATTRIBUTE": "cn", @@ -136,16 +136,16 @@ func initKonnectInternalEnvVars() error { return nil } -// Konnectd defines implements the business logic for Service. -type Konnectd struct { +// IDP defines implements the business logic for Service. +type IDP struct { logger log.Logger config *config.Config mux *chi.Mux assets http.FileSystem } -// initMux initializes the internal konnectd gorilla mux and mounts it in to a ocis chi-router -func (k *Konnectd) initMux(ctx context.Context, r []server.WithRoutes, h http.Handler, options Options) { +// initMux initializes the internal idp gorilla mux and mounts it in to a ocis chi-router +func (k *IDP) initMux(ctx context.Context, r []server.WithRoutes, h http.Handler, options Options) { gm := mux.NewRouter() for _, route := range r { route.AddRoutes(ctx, gm) @@ -176,12 +176,12 @@ func (k *Konnectd) initMux(ctx context.Context, r []server.WithRoutes, h http.Ha } // ServeHTTP implements the Service interface. -func (k Konnectd) ServeHTTP(w http.ResponseWriter, r *http.Request) { +func (k IDP) ServeHTTP(w http.ResponseWriter, r *http.Request) { k.mux.ServeHTTP(w, r) } // Dummy implements the Service interface. -func (k Konnectd) Dummy(w http.ResponseWriter, r *http.Request) { +func (k IDP) Dummy(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "text/plain") w.WriteHeader(http.StatusOK) @@ -189,7 +189,7 @@ func (k Konnectd) Dummy(w http.ResponseWriter, r *http.Request) { } // Index renders the static html with the -func (k Konnectd) Index() http.HandlerFunc { +func (k IDP) Index() http.HandlerFunc { f, err := k.assets.Open("/identifier/index.html") if err != nil { diff --git a/konnectd/pkg/service/v0/tracing.go b/idp/pkg/service/v0/tracing.go similarity index 100% rename from konnectd/pkg/service/v0/tracing.go rename to idp/pkg/service/v0/tracing.go diff --git a/konnectd/pkg/version/version.go b/idp/pkg/version/version.go similarity index 100% rename from konnectd/pkg/version/version.go rename to idp/pkg/version/version.go diff --git a/idp/reflex.conf b/idp/reflex.conf new file mode 100644 index 0000000000..7f0d61da47 --- /dev/null +++ b/idp/reflex.conf @@ -0,0 +1,2 @@ +# backend +-r '^(cmd|pkg)/.*\.go$' -R '^node_modules/' -s -- sh -c 'make bin/ocis-idp-debug && bin/ocis-idp-debug --log-level debug server --debug-pprof --debug-zpages' diff --git a/konnectd/scripts/build.js b/idp/scripts/build.js similarity index 100% rename from konnectd/scripts/build.js rename to idp/scripts/build.js diff --git a/konnectd/scripts/start.js b/idp/scripts/start.js similarity index 100% rename from konnectd/scripts/start.js rename to idp/scripts/start.js diff --git a/konnectd/scripts/test.js b/idp/scripts/test.js similarity index 100% rename from konnectd/scripts/test.js rename to idp/scripts/test.js diff --git a/konnectd/templates/CONFIGURATION.tmpl b/idp/templates/CONFIGURATION.tmpl similarity index 86% rename from konnectd/templates/CONFIGURATION.tmpl rename to idp/templates/CONFIGURATION.tmpl index 1ae4a82f1c..713987abc9 100644 --- a/konnectd/templates/CONFIGURATION.tmpl +++ b/idp/templates/CONFIGURATION.tmpl @@ -3,7 +3,7 @@ title: "Configuration" date: "{{ date "2006-01-02T15:04:05-0700" now }}" weight: 20 geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/konnectd/templates +geekdocEditPath: edit/master/idp/templates geekdocFilePath: CONFIGURATION.tmpl --- {{- define "options"}} @@ -33,7 +33,7 @@ $HOME/.ocis ./config ``` -For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-konnectd reads `konnectd.json | yaml | toml ...`*. +For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-idp reads `idp.json | yaml | toml ...`*. So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/konnectd/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. @@ -50,12 +50,12 @@ If you prefer to configure the service with commandline flags you can see the av {{ $options := .Options -}} {{ range $com := .Commands }}{{ with (list $options $com) -}} {{ $c := last . -}} -{{ if eq $c.Name "konnectd" -}} +{{ if eq $c.Name "idp" -}} ## Root Command {{ $c.Usage }} -Usage: `konnectd [global options] command [command options] [arguments...]` +Usage: `idp [global options] command [command options] [arguments...]` {{ template "options" . -}} ## Sub Commands @@ -64,12 +64,12 @@ Usage: `konnectd [global options] command [command options] [arguments...]` {{ end -}} {{- range $com := .Commands }}{{ with (list $options $com) -}} {{- $c := last . }} -{{- if ne $c.Name "konnectd" -}} -### konnectd {{ $c.Name }} +{{- if ne $c.Name "idp" -}} +### idp {{ $c.Name }} {{ $c.Usage }} -Usage: `konnectd {{ $c.Name }} [command options] [arguments...]` +Usage: `idp {{ $c.Name }} [command options] [arguments...]` {{ template "options" . }} {{- end -}} {{- end -}} diff --git a/konnectd/tools.go b/idp/tools.go similarity index 100% rename from konnectd/tools.go rename to idp/tools.go diff --git a/konnectd/ui/Makefile b/idp/ui/Makefile similarity index 100% rename from konnectd/ui/Makefile rename to idp/ui/Makefile diff --git a/konnectd/ui/i18n/Makefile b/idp/ui/i18n/Makefile similarity index 100% rename from konnectd/ui/i18n/Makefile rename to idp/ui/i18n/Makefile diff --git a/konnectd/ui/i18n/de.po b/idp/ui/i18n/de.po similarity index 100% rename from konnectd/ui/i18n/de.po rename to idp/ui/i18n/de.po diff --git a/konnectd/ui/i18n/es.po b/idp/ui/i18n/es.po similarity index 100% rename from konnectd/ui/i18n/es.po rename to idp/ui/i18n/es.po diff --git a/konnectd/ui/i18n/fr.po b/idp/ui/i18n/fr.po similarity index 100% rename from konnectd/ui/i18n/fr.po rename to idp/ui/i18n/fr.po diff --git a/konnectd/ui/i18n/hi.po b/idp/ui/i18n/hi.po similarity index 100% rename from konnectd/ui/i18n/hi.po rename to idp/ui/i18n/hi.po diff --git a/konnectd/ui/i18n/hr.po b/idp/ui/i18n/hr.po similarity index 100% rename from konnectd/ui/i18n/hr.po rename to idp/ui/i18n/hr.po diff --git a/konnectd/ui/i18n/hu.po b/idp/ui/i18n/hu.po similarity index 100% rename from konnectd/ui/i18n/hu.po rename to idp/ui/i18n/hu.po diff --git a/konnectd/ui/i18n/is.po b/idp/ui/i18n/is.po similarity index 100% rename from konnectd/ui/i18n/is.po rename to idp/ui/i18n/is.po diff --git a/konnectd/ui/i18n/it.po b/idp/ui/i18n/it.po similarity index 100% rename from konnectd/ui/i18n/it.po rename to idp/ui/i18n/it.po diff --git a/konnectd/ui/i18n/ja.po b/idp/ui/i18n/ja.po similarity index 100% rename from konnectd/ui/i18n/ja.po rename to idp/ui/i18n/ja.po diff --git a/konnectd/ui/i18n/konnect-identifier.pot b/idp/ui/i18n/konnect-identifier.pot similarity index 100% rename from konnectd/ui/i18n/konnect-identifier.pot rename to idp/ui/i18n/konnect-identifier.pot diff --git a/konnectd/ui/i18n/nb.po b/idp/ui/i18n/nb.po similarity index 100% rename from konnectd/ui/i18n/nb.po rename to idp/ui/i18n/nb.po diff --git a/konnectd/ui/i18n/nl.po b/idp/ui/i18n/nl.po similarity index 100% rename from konnectd/ui/i18n/nl.po rename to idp/ui/i18n/nl.po diff --git a/konnectd/ui/i18n/pl.po b/idp/ui/i18n/pl.po similarity index 100% rename from konnectd/ui/i18n/pl.po rename to idp/ui/i18n/pl.po diff --git a/konnectd/ui/i18n/pt_PT.po b/idp/ui/i18n/pt_PT.po similarity index 100% rename from konnectd/ui/i18n/pt_PT.po rename to idp/ui/i18n/pt_PT.po diff --git a/konnectd/ui/i18n/ru.po b/idp/ui/i18n/ru.po similarity index 100% rename from konnectd/ui/i18n/ru.po rename to idp/ui/i18n/ru.po diff --git a/konnectd/ui/i18n/sl.po b/idp/ui/i18n/sl.po similarity index 100% rename from konnectd/ui/i18n/sl.po rename to idp/ui/i18n/sl.po diff --git a/konnectd/ui/i18n/src/messages.json b/idp/ui/i18n/src/messages.json similarity index 100% rename from konnectd/ui/i18n/src/messages.json rename to idp/ui/i18n/src/messages.json diff --git a/konnectd/ui/public/index.html b/idp/ui/public/index.html similarity index 100% rename from konnectd/ui/public/index.html rename to idp/ui/public/index.html diff --git a/konnectd/ui/public/static/logo.svg b/idp/ui/public/static/logo.svg similarity index 100% rename from konnectd/ui/public/static/logo.svg rename to idp/ui/public/static/logo.svg diff --git a/konnectd/ui/src/Main.js b/idp/ui/src/Main.js similarity index 100% rename from konnectd/ui/src/Main.js rename to idp/ui/src/Main.js diff --git a/konnectd/ui/src/Main.test.js b/idp/ui/src/Main.test.js similarity index 100% rename from konnectd/ui/src/Main.test.js rename to idp/ui/src/Main.test.js diff --git a/konnectd/ui/src/Makefile b/idp/ui/src/Makefile similarity index 100% rename from konnectd/ui/src/Makefile rename to idp/ui/src/Makefile diff --git a/konnectd/ui/src/Routes.js b/idp/ui/src/Routes.js similarity index 100% rename from konnectd/ui/src/Routes.js rename to idp/ui/src/Routes.js diff --git a/konnectd/ui/src/actions/common.js b/idp/ui/src/actions/common.js similarity index 100% rename from konnectd/ui/src/actions/common.js rename to idp/ui/src/actions/common.js diff --git a/konnectd/ui/src/actions/login.js b/idp/ui/src/actions/login.js similarity index 100% rename from konnectd/ui/src/actions/login.js rename to idp/ui/src/actions/login.js diff --git a/konnectd/ui/src/actions/types.js b/idp/ui/src/actions/types.js similarity index 100% rename from konnectd/ui/src/actions/types.js rename to idp/ui/src/actions/types.js diff --git a/konnectd/ui/src/actions/utils.js b/idp/ui/src/actions/utils.js similarity index 100% rename from konnectd/ui/src/actions/utils.js rename to idp/ui/src/actions/utils.js diff --git a/konnectd/ui/src/app.css b/idp/ui/src/app.css similarity index 100% rename from konnectd/ui/src/app.css rename to idp/ui/src/app.css diff --git a/konnectd/ui/src/app.js b/idp/ui/src/app.js similarity index 100% rename from konnectd/ui/src/app.js rename to idp/ui/src/app.js diff --git a/konnectd/ui/src/components/ClientDisplayName.js b/idp/ui/src/components/ClientDisplayName.js similarity index 100% rename from konnectd/ui/src/components/ClientDisplayName.js rename to idp/ui/src/components/ClientDisplayName.js diff --git a/konnectd/ui/src/components/Loading.js b/idp/ui/src/components/Loading.js similarity index 100% rename from konnectd/ui/src/components/Loading.js rename to idp/ui/src/components/Loading.js diff --git a/konnectd/ui/src/components/PrivateRoute.js b/idp/ui/src/components/PrivateRoute.js similarity index 100% rename from konnectd/ui/src/components/PrivateRoute.js rename to idp/ui/src/components/PrivateRoute.js diff --git a/konnectd/ui/src/components/RedirectWithQuery.js b/idp/ui/src/components/RedirectWithQuery.js similarity index 100% rename from konnectd/ui/src/components/RedirectWithQuery.js rename to idp/ui/src/components/RedirectWithQuery.js diff --git a/konnectd/ui/src/components/ResponsiveScreen.js b/idp/ui/src/components/ResponsiveScreen.js similarity index 100% rename from konnectd/ui/src/components/ResponsiveScreen.js rename to idp/ui/src/components/ResponsiveScreen.js diff --git a/konnectd/ui/src/components/ScopesList.js b/idp/ui/src/components/ScopesList.js similarity index 100% rename from konnectd/ui/src/components/ScopesList.js rename to idp/ui/src/components/ScopesList.js diff --git a/konnectd/ui/src/components/TextInput.js b/idp/ui/src/components/TextInput.js similarity index 100% rename from konnectd/ui/src/components/TextInput.js rename to idp/ui/src/components/TextInput.js diff --git a/konnectd/ui/src/containers/Goodbye/Goodbyescreen.js b/idp/ui/src/containers/Goodbye/Goodbyescreen.js similarity index 100% rename from konnectd/ui/src/containers/Goodbye/Goodbyescreen.js rename to idp/ui/src/containers/Goodbye/Goodbyescreen.js diff --git a/konnectd/ui/src/containers/Goodbye/index.js b/idp/ui/src/containers/Goodbye/index.js similarity index 100% rename from konnectd/ui/src/containers/Goodbye/index.js rename to idp/ui/src/containers/Goodbye/index.js diff --git a/konnectd/ui/src/containers/Login/Chooseaccount.js b/idp/ui/src/containers/Login/Chooseaccount.js similarity index 100% rename from konnectd/ui/src/containers/Login/Chooseaccount.js rename to idp/ui/src/containers/Login/Chooseaccount.js diff --git a/konnectd/ui/src/containers/Login/Consent.js b/idp/ui/src/containers/Login/Consent.js similarity index 100% rename from konnectd/ui/src/containers/Login/Consent.js rename to idp/ui/src/containers/Login/Consent.js diff --git a/konnectd/ui/src/containers/Login/Login.js b/idp/ui/src/containers/Login/Login.js similarity index 100% rename from konnectd/ui/src/containers/Login/Login.js rename to idp/ui/src/containers/Login/Login.js diff --git a/konnectd/ui/src/containers/Login/Loginscreen.js b/idp/ui/src/containers/Login/Loginscreen.js similarity index 100% rename from konnectd/ui/src/containers/Login/Loginscreen.js rename to idp/ui/src/containers/Login/Loginscreen.js diff --git a/konnectd/ui/src/containers/Login/index.js b/idp/ui/src/containers/Login/index.js similarity index 100% rename from konnectd/ui/src/containers/Login/index.js rename to idp/ui/src/containers/Login/index.js diff --git a/konnectd/ui/src/containers/Welcome/Welcomescreen.js b/idp/ui/src/containers/Welcome/Welcomescreen.js similarity index 100% rename from konnectd/ui/src/containers/Welcome/Welcomescreen.js rename to idp/ui/src/containers/Welcome/Welcomescreen.js diff --git a/konnectd/ui/src/containers/Welcome/index.js b/idp/ui/src/containers/Welcome/index.js similarity index 100% rename from konnectd/ui/src/containers/Welcome/index.js rename to idp/ui/src/containers/Welcome/index.js diff --git a/konnectd/ui/src/errors/index.js b/idp/ui/src/errors/index.js similarity index 100% rename from konnectd/ui/src/errors/index.js rename to idp/ui/src/errors/index.js diff --git a/konnectd/ui/src/images/background.jpg b/idp/ui/src/images/background.jpg similarity index 100% rename from konnectd/ui/src/images/background.jpg rename to idp/ui/src/images/background.jpg diff --git a/konnectd/ui/src/index.js b/idp/ui/src/index.js similarity index 100% rename from konnectd/ui/src/index.js rename to idp/ui/src/index.js diff --git a/konnectd/ui/src/locales/de.json b/idp/ui/src/locales/de.json similarity index 100% rename from konnectd/ui/src/locales/de.json rename to idp/ui/src/locales/de.json diff --git a/konnectd/ui/src/locales/es.json b/idp/ui/src/locales/es.json similarity index 100% rename from konnectd/ui/src/locales/es.json rename to idp/ui/src/locales/es.json diff --git a/konnectd/ui/src/locales/fr.json b/idp/ui/src/locales/fr.json similarity index 100% rename from konnectd/ui/src/locales/fr.json rename to idp/ui/src/locales/fr.json diff --git a/konnectd/ui/src/locales/hi.json b/idp/ui/src/locales/hi.json similarity index 100% rename from konnectd/ui/src/locales/hi.json rename to idp/ui/src/locales/hi.json diff --git a/konnectd/ui/src/locales/hr.json b/idp/ui/src/locales/hr.json similarity index 100% rename from konnectd/ui/src/locales/hr.json rename to idp/ui/src/locales/hr.json diff --git a/konnectd/ui/src/locales/hu.json b/idp/ui/src/locales/hu.json similarity index 100% rename from konnectd/ui/src/locales/hu.json rename to idp/ui/src/locales/hu.json diff --git a/konnectd/ui/src/locales/index.js b/idp/ui/src/locales/index.js similarity index 100% rename from konnectd/ui/src/locales/index.js rename to idp/ui/src/locales/index.js diff --git a/konnectd/ui/src/locales/is.json b/idp/ui/src/locales/is.json similarity index 100% rename from konnectd/ui/src/locales/is.json rename to idp/ui/src/locales/is.json diff --git a/konnectd/ui/src/locales/it.json b/idp/ui/src/locales/it.json similarity index 100% rename from konnectd/ui/src/locales/it.json rename to idp/ui/src/locales/it.json diff --git a/konnectd/ui/src/locales/ja.json b/idp/ui/src/locales/ja.json similarity index 100% rename from konnectd/ui/src/locales/ja.json rename to idp/ui/src/locales/ja.json diff --git a/konnectd/ui/src/locales/nb.json b/idp/ui/src/locales/nb.json similarity index 100% rename from konnectd/ui/src/locales/nb.json rename to idp/ui/src/locales/nb.json diff --git a/konnectd/ui/src/locales/nl.json b/idp/ui/src/locales/nl.json similarity index 100% rename from konnectd/ui/src/locales/nl.json rename to idp/ui/src/locales/nl.json diff --git a/konnectd/ui/src/locales/pl.json b/idp/ui/src/locales/pl.json similarity index 100% rename from konnectd/ui/src/locales/pl.json rename to idp/ui/src/locales/pl.json diff --git a/konnectd/ui/src/locales/pt_PT.json b/idp/ui/src/locales/pt_PT.json similarity index 100% rename from konnectd/ui/src/locales/pt_PT.json rename to idp/ui/src/locales/pt_PT.json diff --git a/konnectd/ui/src/locales/ru.json b/idp/ui/src/locales/ru.json similarity index 100% rename from konnectd/ui/src/locales/ru.json rename to idp/ui/src/locales/ru.json diff --git a/konnectd/ui/src/locales/sl.json b/idp/ui/src/locales/sl.json similarity index 100% rename from konnectd/ui/src/locales/sl.json rename to idp/ui/src/locales/sl.json diff --git a/konnectd/ui/src/models/hello.js b/idp/ui/src/models/hello.js similarity index 100% rename from konnectd/ui/src/models/hello.js rename to idp/ui/src/models/hello.js diff --git a/konnectd/ui/src/reducers/common.js b/idp/ui/src/reducers/common.js similarity index 100% rename from konnectd/ui/src/reducers/common.js rename to idp/ui/src/reducers/common.js diff --git a/konnectd/ui/src/reducers/index.js b/idp/ui/src/reducers/index.js similarity index 100% rename from konnectd/ui/src/reducers/index.js rename to idp/ui/src/reducers/index.js diff --git a/konnectd/ui/src/reducers/login.js b/idp/ui/src/reducers/login.js similarity index 100% rename from konnectd/ui/src/reducers/login.js rename to idp/ui/src/reducers/login.js diff --git a/konnectd/ui/src/store.js b/idp/ui/src/store.js similarity index 100% rename from konnectd/ui/src/store.js rename to idp/ui/src/store.js diff --git a/konnectd/ui/src/utils.js b/idp/ui/src/utils.js similarity index 100% rename from konnectd/ui/src/utils.js rename to idp/ui/src/utils.js diff --git a/konnectd/ui/src/version.js b/idp/ui/src/version.js similarity index 100% rename from konnectd/ui/src/version.js rename to idp/ui/src/version.js diff --git a/konnectd/ui_config/env.js b/idp/ui_config/env.js similarity index 100% rename from konnectd/ui_config/env.js rename to idp/ui_config/env.js diff --git a/konnectd/ui_config/jest/cssTransform.js b/idp/ui_config/jest/cssTransform.js similarity index 100% rename from konnectd/ui_config/jest/cssTransform.js rename to idp/ui_config/jest/cssTransform.js diff --git a/konnectd/ui_config/jest/fileTransform.js b/idp/ui_config/jest/fileTransform.js similarity index 100% rename from konnectd/ui_config/jest/fileTransform.js rename to idp/ui_config/jest/fileTransform.js diff --git a/konnectd/ui_config/modules.js b/idp/ui_config/modules.js similarity index 100% rename from konnectd/ui_config/modules.js rename to idp/ui_config/modules.js diff --git a/konnectd/ui_config/paths.js b/idp/ui_config/paths.js similarity index 100% rename from konnectd/ui_config/paths.js rename to idp/ui_config/paths.js diff --git a/konnectd/ui_config/pnpTs.js b/idp/ui_config/pnpTs.js similarity index 100% rename from konnectd/ui_config/pnpTs.js rename to idp/ui_config/pnpTs.js diff --git a/konnectd/ui_config/webpack.config.js b/idp/ui_config/webpack.config.js similarity index 100% rename from konnectd/ui_config/webpack.config.js rename to idp/ui_config/webpack.config.js diff --git a/konnectd/ui_config/webpackDevServer.config.js b/idp/ui_config/webpackDevServer.config.js similarity index 100% rename from konnectd/ui_config/webpackDevServer.config.js rename to idp/ui_config/webpackDevServer.config.js diff --git a/konnectd/yarn.lock b/idp/yarn.lock similarity index 100% rename from konnectd/yarn.lock rename to idp/yarn.lock diff --git a/konnectd/assets/identifier-registration.yaml b/konnectd/assets/identifier-registration.yaml deleted file mode 100644 index 6e14cc358b..0000000000 --- a/konnectd/assets/identifier-registration.yaml +++ /dev/null @@ -1,112 +0,0 @@ ---- - -# OpenID Connect client registry. -clients: - - id: web - name: ownCloud web app - trusted: yes - insecure: yes - redirect_uris: - - {{OCIS_URL}}/ - - {{OCIS_URL}}/oidc-callback.html - - {{OCIS_URL}}/oidc-silent-redirect.html - origins: - - {{OCIS_URL}} - - - id: ocis-explorer.js - name: oCIS Graph Explorer - trusted: yes - insecure: yes - - - id: xdXOt13JKxym1B1QcEncf2XDkLAexMBFwiT9j6EfhhHFJhs2KM9jbjTmf8JBXE69 - secret: UBntmLjC2yYCeHwsyj73Uwo9TAaecAetRwMw0xYcvNL9yRdLSUi0hUAHfvCHFeFh - name: ownCloud desktop app - application_type: native - insecure: true - - - id: e4rAsNUSIUs0lF4nbv9FmCeUkTlV9GdgTLDH1b5uie7syb90SzEVrbN7HIpmWJeD - secret: dInFYGV33xKzhbRmpqQltYNdfLdJIfJ9L5ISoKhNoT9qZftpdWSP71VrpGR9pmoD - name: ownCloud Android app - application_type: native - redirect_uris: - - oc://android.owncloud.com - - - id: mxd5OQDk6es5LzOzRvidJNfXLUZS2oN3oUFeXPP8LpPrhx3UroJFduGEYIBOxkY1 - secret: KFeFWWEZO9TkisIQzR3fo7hfiMXlOpaqP8CFuTbSHzV1TUuGECglPxpiVKJfOXIx - name: ownCloud iOS app - application_type: native - redirect_uris: - - oc://ios.owncloud.com - - oc.ios://ios.owncloud.com - - -# - id: playground-trusted.js -# name: Trusted OIDC Playground -# trusted: yes -# application_type: web -# redirect_uris: -# - https://my-host:8509/ -# origins: -# - https://my-host:8509 - -# - id: playground-trusted.js -# name: Trusted Insecure OIDC Playground -# trusted: yes -# application_type: web -# insecure: yes - -# - id: client-with-keys -# secret: super -# application_type: native -# redirect_uris: -# - http://localhost -# trusted_scopes: -# - konnect/guestok -# - kopano/kwm -# jwks: -# keys: -# - kty: EC -# use: sig -# kid: client-with-keys-key-1 -# crv: P-256 -# x: RTZpWoRbjwX1YavmSHVBj6Cy3Yzdkkp6QLvTGB22D0c -# y: jeavjwcX0xlDSchFcBMzXSU7wGs2VPpNxWCwmxFvmF0 -# request_object_signing_alg: ES256 - -# - id: first -# secret: lala -# application_type: native -# redirect_uris: -# - my://app - -# - id: second -# secret: lulu -# application_type: native -# redirect_uris: -# - http://localhost - -# External authority registry. -authorities: -# - id: my-univention -# name: Univention -# client_id: kopano-konnect -# authority_type: oidc -# jwks: -# keys: -# - kty: EC -# use: sig -# kid: example-key-1 -# crv: P-256 -# x: RTZpWoRbjwX1YavmSHVBj6Cy3Yzdkkp6QLvTGB22D0c -# y: jeavjwcX0xlDSchFcBMzXSU7wGs2VPpNxWCwmxFvmF0 -# default: yes -# authorization_endpoint: https://my-univention/signin/v1/identifier/_/authorize -# response_type: id_token -# scopes: -# - openid -# - profile -# identity_claim_name: preferred_username -# identity_aliases: -# external-user-a: local-user-a -# external-user-b: local-user-b -# identity_alias_required: true diff --git a/konnectd/docker/manifest.tmpl b/konnectd/docker/manifest.tmpl deleted file mode 100644 index 1dfcd995ca..0000000000 --- a/konnectd/docker/manifest.tmpl +++ /dev/null @@ -1,22 +0,0 @@ -image: owncloud/ocis-konnectd:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}} -{{#if build.tags}} -tags: -{{#each build.tags}} - - {{this}} -{{/each}} -{{/if}} -manifests: - - image: owncloud/ocis-konnectd:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64 - platform: - architecture: amd64 - os: linux - - image: owncloud/ocis-konnectd:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64 - platform: - architecture: arm64 - variant: v8 - os: linux - - image: owncloud/ocis-konnectd:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm - platform: - architecture: arm - variant: v6 - os: linux diff --git a/konnectd/reflex.conf b/konnectd/reflex.conf deleted file mode 100644 index 70558c36a6..0000000000 --- a/konnectd/reflex.conf +++ /dev/null @@ -1,2 +0,0 @@ -# backend --r '^(cmd|pkg)/.*\.go$' -R '^node_modules/' -s -- sh -c 'make bin/ocis-konnectd-debug && bin/ocis-konnectd-debug --log-level debug server --debug-pprof --debug-zpages' diff --git a/ocis-pkg/go.sum b/ocis-pkg/go.sum index 48c1ff5d55..24b8dc8bcf 100644 --- a/ocis-pkg/go.sum +++ b/ocis-pkg/go.sum @@ -217,6 +217,8 @@ github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e h1:khITGSnfDXtByQsLe github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 h1:HNpnnhoHv/7fUSEuW37clWyPz2x9VqJHuhvWBAHjkEU= github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/ocis/docker-compose.yml b/ocis/docker-compose.yml index 337b2d45b8..c498752ed4 100644 --- a/ocis/docker-compose.yml +++ b/ocis/docker-compose.yml @@ -23,7 +23,7 @@ services: - .:/ocis - ../accounts:/accounts - ../glauth:/glauth - - ../konnectd:/konnectd + - ../idp:/idp - ../web:/web - ../ocis-pkg:/ocis-pkg - ../ocs:/ocs diff --git a/ocis/go.mod b/ocis/go.mod index 036c6840a2..22197add2c 100644 --- a/ocis/go.mod +++ b/ocis/go.mod @@ -20,7 +20,7 @@ require ( github.com/owncloud/ocis-hello v0.1.0-alpha1.0.20200828085053-37fcf3c8f853 github.com/owncloud/ocis/accounts v0.5.3-0.20201103104733-ff2c41028d9b github.com/owncloud/ocis/glauth v0.0.0-00010101000000-000000000000 - github.com/owncloud/ocis/konnectd v0.0.0-00010101000000-000000000000 + github.com/owncloud/ocis/idp v0.0.0-00010101000000-000000000000 github.com/owncloud/ocis/ocis-pkg v0.1.0 github.com/owncloud/ocis/ocs v0.0.0-00010101000000-000000000000 github.com/owncloud/ocis/onlyoffice v0.0.0-00010101000000-000000000000 @@ -44,7 +44,7 @@ replace ( github.com/gomodule/redigo => github.com/gomodule/redigo v1.8.2 github.com/owncloud/ocis/accounts => ../accounts github.com/owncloud/ocis/glauth => ../glauth - github.com/owncloud/ocis/konnectd => ../konnectd + github.com/owncloud/ocis/idp => ../idp github.com/owncloud/ocis/ocis-pkg => ../ocis-pkg github.com/owncloud/ocis/ocs => ../ocs github.com/owncloud/ocis/onlyoffice => ../onlyoffice diff --git a/ocis/go.sum b/ocis/go.sum index 7186bb8c8b..ba68cd407d 100644 --- a/ocis/go.sum +++ b/ocis/go.sum @@ -729,6 +729,7 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= +github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5 h1:FdBGmSkD2QpQzRWup//SGObvWf2nq89zj9+ta9OvI3A= github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5/go.mod h1:0YZ2wQSuwviXXXGUiK6zXzskyBLAbLXhamxzcFHSLoM= github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= diff --git a/ocis/pkg/command/idp.go b/ocis/pkg/command/idp.go new file mode 100644 index 0000000000..ef740ca9e3 --- /dev/null +++ b/ocis/pkg/command/idp.go @@ -0,0 +1,54 @@ +package command + +import ( + "github.com/micro/cli/v2" + "github.com/owncloud/ocis/idp/pkg/command" + svcconfig "github.com/owncloud/ocis/idp/pkg/config" + "github.com/owncloud/ocis/idp/pkg/flagset" + "github.com/owncloud/ocis/ocis/pkg/config" + "github.com/owncloud/ocis/ocis/pkg/register" + "github.com/owncloud/ocis/ocis/pkg/version" +) + +// IDPCommand is the entrypoint for the idp command. +func IDPCommand(cfg *config.Config) *cli.Command { + return &cli.Command{ + Name: "idp", + Usage: "Start idp server", + Category: "Extensions", + Flags: flagset.ServerWithConfig(cfg.IDP), + Subcommands: []*cli.Command{ + command.PrintVersion(cfg.IDP), + }, + Action: func(c *cli.Context) error { + idpCommand := command.Server(configureIDP(cfg)) + + if err := idpCommand.Before(c); err != nil { + return err + } + + return cli.HandleAction(idpCommand.Action, c) + }, + } +} + +func configureIDP(cfg *config.Config) *svcconfig.Config { + cfg.IDP.Log.Level = cfg.Log.Level + cfg.IDP.Log.Pretty = cfg.Log.Pretty + cfg.IDP.Log.Color = cfg.Log.Color + cfg.IDP.HTTP.TLS = false + cfg.IDP.Service.Version = version.String + + if cfg.Tracing.Enabled { + cfg.IDP.Tracing.Enabled = cfg.Tracing.Enabled + cfg.IDP.Tracing.Type = cfg.Tracing.Type + cfg.IDP.Tracing.Endpoint = cfg.Tracing.Endpoint + cfg.IDP.Tracing.Collector = cfg.Tracing.Collector + } + + return cfg.IDP +} + +func init() { + register.AddCommand(IDPCommand) +} diff --git a/ocis/pkg/command/konnectd.go b/ocis/pkg/command/konnectd.go deleted file mode 100644 index 0cec0a7dd7..0000000000 --- a/ocis/pkg/command/konnectd.go +++ /dev/null @@ -1,54 +0,0 @@ -package command - -import ( - "github.com/micro/cli/v2" - "github.com/owncloud/ocis/konnectd/pkg/command" - svcconfig "github.com/owncloud/ocis/konnectd/pkg/config" - "github.com/owncloud/ocis/konnectd/pkg/flagset" - "github.com/owncloud/ocis/ocis/pkg/config" - "github.com/owncloud/ocis/ocis/pkg/register" - "github.com/owncloud/ocis/ocis/pkg/version" -) - -// KonnectdCommand is the entrypoint for the konnectd command. -func KonnectdCommand(cfg *config.Config) *cli.Command { - return &cli.Command{ - Name: "konnectd", - Usage: "Start konnectd server", - Category: "Extensions", - Flags: flagset.ServerWithConfig(cfg.Konnectd), - Subcommands: []*cli.Command{ - command.PrintVersion(cfg.Konnectd), - }, - Action: func(c *cli.Context) error { - konnectdCommand := command.Server(configureKonnectd(cfg)) - - if err := konnectdCommand.Before(c); err != nil { - return err - } - - return cli.HandleAction(konnectdCommand.Action, c) - }, - } -} - -func configureKonnectd(cfg *config.Config) *svcconfig.Config { - cfg.Konnectd.Log.Level = cfg.Log.Level - cfg.Konnectd.Log.Pretty = cfg.Log.Pretty - cfg.Konnectd.Log.Color = cfg.Log.Color - cfg.Konnectd.HTTP.TLS = false - cfg.Konnectd.Service.Version = version.String - - if cfg.Tracing.Enabled { - cfg.Konnectd.Tracing.Enabled = cfg.Tracing.Enabled - cfg.Konnectd.Tracing.Type = cfg.Tracing.Type - cfg.Konnectd.Tracing.Endpoint = cfg.Tracing.Endpoint - cfg.Konnectd.Tracing.Collector = cfg.Tracing.Collector - } - - return cfg.Konnectd -} - -func init() { - register.AddCommand(KonnectdCommand) -} diff --git a/ocis/pkg/config/config.go b/ocis/pkg/config/config.go index 7130fec294..4c9bce3751 100644 --- a/ocis/pkg/config/config.go +++ b/ocis/pkg/config/config.go @@ -6,8 +6,7 @@ import ( hello "github.com/owncloud/ocis-hello/pkg/config" accounts "github.com/owncloud/ocis/accounts/pkg/config" glauth "github.com/owncloud/ocis/glauth/pkg/config" - konnectd "github.com/owncloud/ocis/konnectd/pkg/config" - pman "github.com/owncloud/ocis/ocis/pkg/runtime/config" + idp "github.com/owncloud/ocis/idp/pkg/config" ocs "github.com/owncloud/ocis/ocs/pkg/config" onlyoffice "github.com/owncloud/ocis/onlyoffice/pkg/config" proxy "github.com/owncloud/ocis/proxy/pkg/config" @@ -17,6 +16,7 @@ import ( thumbnails "github.com/owncloud/ocis/thumbnails/pkg/config" web "github.com/owncloud/ocis/web/pkg/config" webdav "github.com/owncloud/ocis/webdav/pkg/config" + pman "github.com/refs/pman/pkg/config" ) // Log defines the available logging configuration. @@ -75,7 +75,7 @@ type Config struct { Graph *graph.Config GraphExplorer *graphExplorer.Config Hello *hello.Config - Konnectd *konnectd.Config + IDP *idp.Config OCS *ocs.Config Onlyoffice *onlyoffice.Config Web *web.Config @@ -96,7 +96,7 @@ func New() *Config { Graph: graph.New(), GraphExplorer: graphExplorer.New(), Hello: hello.New(), - Konnectd: konnectd.New(), + IDP: idp.New(), OCS: ocs.New(), Onlyoffice: onlyoffice.New(), Web: web.New(), diff --git a/ocis/pkg/runtime/runtime.go b/ocis/pkg/runtime/runtime.go index 8485ceef5a..29d176e584 100644 --- a/ocis/pkg/runtime/runtime.go +++ b/ocis/pkg/runtime/runtime.go @@ -33,7 +33,7 @@ var ( // Extensions are oCIS extension services Extensions = []string{ "glauth", - "konnectd", + "idp", "ocs", "onlyoffice", "proxy", diff --git a/ocs/go.sum b/ocs/go.sum index eb768bc7b8..fd90302f8e 100644 --- a/ocs/go.sum +++ b/ocs/go.sum @@ -416,6 +416,7 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= +github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5 h1:FdBGmSkD2QpQzRWup//SGObvWf2nq89zj9+ta9OvI3A= github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5/go.mod h1:0YZ2wQSuwviXXXGUiK6zXzskyBLAbLXhamxzcFHSLoM= github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= diff --git a/ocs/pkg/server/http/svc_test.go b/ocs/pkg/server/http/svc_test.go index 1e68adaf2e..4eceaca08c 100644 --- a/ocs/pkg/server/http/svc_test.go +++ b/ocs/pkg/server/http/svc_test.go @@ -51,7 +51,7 @@ const ( userEinstein string = "einstein" userMarie string = "marie" userRichard string = "richard" - userKonnectd string = "konnectd" + userIDP string = "idp" userReva string = "reva" userMoss string = "moss" userAdmin string = "admin" @@ -75,7 +75,7 @@ var defaultMemberOf = map[string][]string{ groupViolinHaters, groupPhysicsLovers, }, - userKonnectd: { + userIDP: { groupSysUsers, }, userRichard: { @@ -103,7 +103,7 @@ var defaultMemberOf = map[string][]string{ var defaultMembers = map[string][]string{ groupSysUsers: { - userKonnectd, + userIDP, userReva, }, groupUsers: { @@ -138,7 +138,7 @@ const ( userIDEinstein string = "4c510ada-c86b-4815-8820-42cdf82c3d51" userIDMarie string = "f7fbf8c8-139b-4376-b307-cf0a8c2d0d9c" userIDFeynman string = "932b4540-8d16-481e-8ef4-588e4b6b151c" - userIDKonnectd string = "820ba2a1-3f54-4538-80a4-2d73007e30bf" + userIDIDP string = "820ba2a1-3f54-4538-80a4-2d73007e30bf" userIDReva string = "bc596f3c-c955-4328-80a0-60d018b4ad57" userIDMoss string = "058bff95-6708-4fe5-91e4-9ea3d377588b" userIDAdmin string = "ddc2004c-0977-11eb-9d3f-a793888cd0f8" @@ -172,7 +172,7 @@ var dataPath = createTmpDir() var defaultUsers = []string{ userEinstein, - userKonnectd, + userIDP, userRichard, userReva, userMarie, @@ -181,7 +181,7 @@ var defaultUsers = []string{ } var defaultUserIDs = []string{ userIDEinstein, - userIDKonnectd, + userIDIDP, userIDFeynman, userIDReva, userIDMarie, diff --git a/onlyoffice/go.sum b/onlyoffice/go.sum index 00911b243d..ac8bfa6cc3 100644 --- a/onlyoffice/go.sum +++ b/onlyoffice/go.sum @@ -200,6 +200,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= @@ -592,6 +594,7 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= +github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5 h1:FdBGmSkD2QpQzRWup//SGObvWf2nq89zj9+ta9OvI3A= github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5/go.mod h1:0YZ2wQSuwviXXXGUiK6zXzskyBLAbLXhamxzcFHSLoM= github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= diff --git a/settings/go.sum b/settings/go.sum index f2cb536c6d..db0ef650d5 100644 --- a/settings/go.sum +++ b/settings/go.sum @@ -199,6 +199,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/sonar-project.properties b/sonar-project.properties index d277968bd5..7866b049e4 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -32,5 +32,5 @@ sonar.pullrequest.key=${env.SONAR_PULL_REQUEST_KEY} sonar.go.coverage.reportPaths=coverage/*_coverage.out # Exclude files -sonar.exclusions=**/third_party,docs/**,changelog/**,*/pkg/assets/embed.go,konnectd/assets/identifier/**,**/package.json,**/rollup.config.js,CHANGELOG.md,**/pkg/proto/**/*.pb.*,deployments/**,tests/**,vendor-bin/**,README.md +sonar.exclusions=**/third_party,docs/**,changelog/**,*/pkg/assets/embed.go,idp/assets/identifier/**,**/package.json,**/rollup.config.js,CHANGELOG.md,**/pkg/proto/**/*.pb.*,deployments/**,tests/**,vendor-bin/**,README.md sonar.coverage.exclusions=**/*_test.go diff --git a/storage/go.sum b/storage/go.sum index 97a18057df..16b2430da4 100644 --- a/storage/go.sum +++ b/storage/go.sum @@ -583,6 +583,7 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= +github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5 h1:FdBGmSkD2QpQzRWup//SGObvWf2nq89zj9+ta9OvI3A= github.com/haya14busa/goverage v0.0.0-20180129164344-eec3514a20b5/go.mod h1:0YZ2wQSuwviXXXGUiK6zXzskyBLAbLXhamxzcFHSLoM= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/huandu/xstrings v1.2.0/go.mod h1:DvyZB1rfVYsBIigL8HwpZgxHwXozlTgGqn63UyNX5k4= diff --git a/store/go.sum b/store/go.sum index 9f64f73265..7d60896a36 100644 --- a/store/go.sum +++ b/store/go.sum @@ -230,6 +230,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d h1:SwD98825d6bdB+pEuTxWOXiSjBrHdOl/UVp75eI7JT8= github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 h1:iwZdTE0PVqJCos1vaoKsclOGD3ADKpshg3SRtYBbwso= diff --git a/tests/acceptance/docker/src/ocis-base.yml b/tests/acceptance/docker/src/ocis-base.yml index 6e67c210ed..9d57e7208e 100644 --- a/tests/acceptance/docker/src/ocis-base.yml +++ b/tests/acceptance/docker/src/ocis-base.yml @@ -18,9 +18,9 @@ services: STORAGE_SHARING_USER_JSON_FILE: /srv/app/tmp/ocis/shares.json PROXY_ENABLE_BASIC_AUTH: "true" PHOENIX_WEB_CONFIG: /drone/src/ocis/tests/config/drone/ocis-config.json - KONNECTD_IDENTIFIER_REGISTRATION_CONF: /drone/src/ocis/tests/config/drone/identifier-registration.yml - KONNECTD_ISS: https://ocis-server:9200 - KONNECTD_TLS: "true" + IDP_IDENTIFIER_REGISTRATION_CONF: /drone/src/ocis/tests/config/drone/identifier-registration.yml + IDP_ISS: https://ocis-server:9200 + IDP_TLS: "true" ACCOUNTS_HASH_DIFFICULTY: 4 volumes: - ../../../config:/drone/src/ocis/tests/config diff --git a/thumbnails/go.sum b/thumbnails/go.sum index 9a131540a6..64b3f130dc 100644 --- a/thumbnails/go.sum +++ b/thumbnails/go.sum @@ -207,6 +207,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/web/go.sum b/web/go.sum index 84b39f24ad..f0d9ef4c4c 100644 --- a/web/go.sum +++ b/web/go.sum @@ -202,6 +202,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/webdav/go.sum b/webdav/go.sum index 1c9d59046c..dea3e49109 100644 --- a/webdav/go.sum +++ b/webdav/go.sum @@ -207,6 +207,8 @@ github.com/cs3org/reva v1.1.0/go.mod h1:fBzTrNuAKdQ62ybjpdu8nyhBin90/3/3s6DGQDCd github.com/cs3org/reva v1.2.2-0.20200924071957-e6676516e61e/go.mod h1:DOV5SjpOBKN+aWfOHLdA4KiLQkpyC786PQaXEdRAZ0M= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd8+YpIG1xwKH1ovOXdWrMCvnopw= github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= +github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= From 304b8a9846053660f65a54f005af6b784c0c0da6 Mon Sep 17 00:00:00 2001 From: Ilja Neumann Date: Fri, 29 Jan 2021 11:14:32 +0100 Subject: [PATCH 68/88] Fix IDP title --- docs/extensions/idp/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extensions/idp/_index.md b/docs/extensions/idp/_index.md index ef111ef4cc..e4ab82677c 100644 --- a/docs/extensions/idp/_index.md +++ b/docs/extensions/idp/_index.md @@ -1,5 +1,5 @@ --- -title: Konnectd +title: IDP weight: 20 geekdocRepo: https://github.com/owncloud/ocis geekdocEditPath: edit/master/docs/extensions/idp From 6d8f551b0280e01633ecd62b196c51c8a6122a11 Mon Sep 17 00:00:00 2001 From: Ilja Neumann Date: Fri, 29 Jan 2021 11:40:12 +0100 Subject: [PATCH 69/88] Rename konnectd to idp --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0152c90985..d97f1c95ff 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -25,7 +25,7 @@ updates: open-pull-requests-limit: 10 - package-ecosystem: "npm" - directory: "/konnectd" + directory: "/idp" schedule: interval: "weekly" open-pull-requests-limit: 10 From 4855f6b6a4d0c731dcdc380973f6b5c9b704a532 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Fri, 29 Jan 2021 11:35:17 +0545 Subject: [PATCH 70/88] Copy categorized expected-failures files from cs3org/reva --- .../expected-failures-API-on-OCIS-storage.md | 3417 +++++++-------- ...pected-failures-API-on-OWNCLOUD-storage.md | 3896 ++++++++--------- 2 files changed, 3605 insertions(+), 3708 deletions(-) diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index 5d69baff16..51afb964e7 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -1,846 +1,42 @@ -## Scenarios from ownCloud10 core API tests that are expected to fail with oCIS storage +## Scenarios from ownCloud10 core API tests that are expected to fail with OCIS storage -### Test scenarios that specifically fail with oCIS storage +### File +Basic file management like up and download, move, copy, properties, trash, versions and chunking. -- [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) -- [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) +#### [Implement Trashbin Feature for ocis storage](https://github.com/owncloud/product/issues/209) -### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) -- [apiMain/checksums.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L58) -- [apiMain/checksums.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L67) -- [apiMain/checksums.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L119) -- [apiMain/checksums.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L129) -- [apiMain/checksums.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L138) -- [apiMain/checksums.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L147) -- [apiMain/checksums.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L158) -- [apiMain/checksums.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L174) -- [apiMain/checksums.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L192) -- [apiMain/checksums.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L258) -- [apiMain/checksums.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L312) -- [apiMain/checksums.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L324) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L26) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L27) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L48) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L49) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L68) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L69) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L90) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L91) -### [no robots.txt available](https://github.com/owncloud/ocis/issues/1314) - -- [apiMain/main.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/main.feature#L5) - -### [quota query](https://github.com/owncloud/ocis/issues/1313) - -- [apiMain/quota.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L9) -- [apiMain/quota.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L16) -- [apiMain/quota.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L23) -- [apiMain/quota.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L30) -- [apiMain/quota.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L41) -- [apiMain/quota.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L54) -- [apiMain/quota.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L68) -- [apiMain/quota.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L82) -- [apiMain/quota.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L99) -- [apiMain/quota.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L112) - -### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis/issues/1319) -### [no command equivalent to occ](https://github.com/owncloud/ocis/issues/1317) - -- [apiMain/status.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/status.feature#L5) - -### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis/issues/1338) -### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) -- [apiAuthOcs/ocsDELETEAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsDELETEAuth.feature#L10) -- [apiAuthOcs/ocsGETAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L10) -- [apiAuthOcs/ocsGETAuth.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L33) -- [apiAuthOcs/ocsGETAuth.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L53) -- [apiAuthOcs/ocsGETAuth.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L88) -- [apiAuthOcs/ocsGETAuth.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L121) -- [apiAuthOcs/ocsGETAuth.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L139) -- [apiAuthOcs/ocsPOSTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPOSTAuth.feature#L10) -- [apiAuthOcs/ocsPUTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPUTAuth.feature#L10) - -### [server returns 500 when trying to access a not existing file](https://github.com/owncloud/ocis-reva/issues/13) -- [apiAuthWebDav/webDavDELETEAuth.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L36) - -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) -- [apiAuthWebDav/webDavLOCKAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavLOCKAuth.feature#L38) -- [apiAuthWebDav/webDavMKCOLAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMKCOLAuth.feature#L37) -- [apiAuthWebDav/webDavPROPFINDAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPFINDAuth.feature#L37) -- [apiAuthWebDav/webDavPROPPATCHAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPPATCHAuth.feature#L38) - -### [renaming a resource does not work](https://github.com/owncloud/ocis-reva/issues/14) -- [apiAuthWebDav/webDavMOVEAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMOVEAuth.feature#L37) - -### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis/issues/1287) -- [apiAuthWebDav/webDavPOSTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPOSTAuth.feature#L38) - -### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) -- [apiAuthWebDav/webDavPUTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPUTAuth.feature#L38) - -### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis/issues/1285) -### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis/issues/1286) -- [apiCapabilities/capabilitiesWithNormalUser.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilitiesWithNormalUser.feature#L11) - -### [REPORT request not implemented](https://github.com/owncloud/ocis/issues/1330) -- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) -- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) -- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) -- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) -- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) -- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) -- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) -- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) -- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) -- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) -- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) -- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) -- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) -- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) -- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) -- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) -- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) -- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) -- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) -- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) -- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) -- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) -- [apiWebdavOperations/search.feature:254](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L254) - - And other missing implementation of favorites -- [apiFavorites/favorites.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L91) -- [apiFavorites/favorites.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L92) -- [apiFavorites/favorites.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L112) -- [apiFavorites/favorites.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L113) -- [apiFavorites/favorites.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L128) -- [apiFavorites/favorites.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L129) -- [apiFavorites/favorites.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L148) -- [apiFavorites/favorites.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L149) -- [apiFavorites/favorites.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L176) -- [apiFavorites/favorites.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L177) -- [apiFavorites/favorites.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L217) -- [apiFavorites/favorites.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L218) -- [apiFavorites/favoritesSharingToShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L22) -- [apiFavorites/favoritesSharingToShares.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L23) -- [apiFavorites/favoritesSharingToShares.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L36) -- [apiFavorites/favoritesSharingToShares.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L37) -- [apiFavorites/favoritesSharingToShares.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L49) -- [apiFavorites/favoritesSharingToShares.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L50) -- [apiFavorites/favoritesSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L63) -- [apiFavorites/favoritesSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L64) - -### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) - special character username not valid - -- [apiProvisioning-v1/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L29) -- [apiProvisioning-v1/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L30) -- [apiProvisioning-v1/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L121) -- [apiProvisioning-v1/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L122) -- [apiProvisioning-v1/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L123) -- [apiProvisioning-v1/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L29) -- [apiProvisioning-v1/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L30) -- [apiProvisioning-v1/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L29) -- [apiProvisioning-v1/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L30) -- [apiProvisioning-v1/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L29) -- [apiProvisioning-v1/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L30) -- [apiProvisioning-v1/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L31) -- [apiProvisioning-v1/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L32) -- [apiProvisioning-v1/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L34) -- [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) - -- [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) -- [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) -- [apiProvisioning-v2/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L121) -- [apiProvisioning-v2/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L122) -- [apiProvisioning-v2/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L123) -- [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) -- [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) -- [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) -- [apiProvisioning-v2/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L30) -- [apiProvisioning-v2/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L29) -- [apiProvisioning-v2/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L30) -- [apiProvisioning-v2/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L31) -- [apiProvisioning-v2/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L32) -- [apiProvisioning-v2/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L34) -- [apiProvisioning-v2/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L35) - -### [Creating an already existing user works](https://github.com/owncloud/ocis-accounts/issues/80) -- [apiProvisioning-v1/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L32) -- [apiProvisioning-v2/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L32) -- [apiProvisioning-v1/addUser.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L39) -- [apiProvisioning-v2/addUser.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L39) - -### [Password can be set to empty](https://github.com/owncloud/product/issues/197) - -- [apiProvisioning-v1/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L69) -- [apiProvisioning-v2/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L69) - -### [etags are not quoted in PROPFIND](https://github.com/owncloud/product/issues/237) -- [apiSharePublicLink1/createPublicLinkShare.feature:793](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L793) -- [apiSharePublicLink1/createPublicLinkShare.feature:804](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L804) - -### [Username is case sensitive](https://github.com/owncloud/ocis-accounts/issues/128) -- [apiProvisioning-v1/addUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L102) -- [apiProvisioning-v2/addUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L102) - -### [Client token generation not implemented](https://github.com/owncloud/ocis/issues/197) -- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L39) -- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L67) -- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L39) -- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L67) - -### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis/issues/1420) - -- [apiProvisioning-v1/enableUser.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L92) -- [apiProvisioning-v1/enableUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L102) -- [apiProvisioning-v1/enableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L129) -- [apiProvisioning-v1/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L99) -- [apiProvisioning-v1/disableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L129) -- [apiProvisioning-v1/disableUser.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L165) -- [apiProvisioning-v1/disableUser.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L172) -- [apiProvisioning-v1/disableUser.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L190) -- [apiProvisioning-v1/disableUser.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L203) -- [apiProvisioning-v1/disableUser.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L219) -- [apiProvisioning-v2/disableUser.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L79) -- [apiProvisioning-v2/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L99) -- [apiProvisioning-v2/disableUser.feature:108](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L108) -- [apiProvisioning-v2/disableUser.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L130) -- [apiProvisioning-v2/disableUser.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L166) -- [apiProvisioning-v2/disableUser.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L173) -- [apiProvisioning-v2/disableUser.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L191) -- [apiProvisioning-v2/disableUser.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L204) -- [apiProvisioning-v2/disableUser.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L220) - -### [displayname of user can be changed to empty](https://github.com/owncloud/ocis-ocs/issues/51) -- [apiProvisioning-v1/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L47) -- [apiProvisioning-v2/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L47) - -### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) -- [apiProvisioning-v1/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L56) -- [apiProvisioning-v1/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L122) -- [apiProvisioning-v2/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L56) -- [apiProvisioning-v2/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L122) -- [apiProvisioning-v2/enableUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L34) -- [apiProvisioning-v2/enableUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L56) -- [apiProvisioning-v2/enableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L64) - -### [user can get info of other users/ cloud/users endpoints not authenticated](https://github.com/owncloud/product/issues/248) -- [apiProvisioning-v2/deleteUser.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L54) -- [apiProvisioning-v1/getUser.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L81) -- [apiProvisioning-v2/getUser.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L82) -- [apiProvisioning-v2/getUsers.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUsers.feature#L44) - -### [incorrect ocs(v2) status value when getting info of user that does not exist should be 404, gives 998](https://github.com/owncloud/product/issues/250) -- [apiProvisioning-v2/getUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L47) - -### [subadmin endpoints not implemented](https://github.com/owncloud/product/issues/289) -- [apiProvisioning-v1/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L125) -- [apiProvisioning-v1/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L48) -- [apiProvisioning-v1/deleteUser.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L73) -- [apiProvisioning-v1/disableUser.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L222) -- [apiProvisioning-v1/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L131) -- [apiProvisioning-v1/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L143) -- [apiProvisioning-v1/getUser.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L170) -- [apiProvisioning-v1/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L113) - -- [apiProvisioning-v2/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L125) -- [apiProvisioning-v2/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L48) -- [apiProvisioning-v2/deleteUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L64) -- [apiProvisioning-v2/deleteUser.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L74) -- [apiProvisioning-v2/deleteUser.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L88) -- [apiProvisioning-v2/deleteUser.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L101) -- [apiProvisioning-v2/deleteUser.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L115) -- [apiProvisioning-v2/disableUser.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L48) -- [apiProvisioning-v2/disableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L64) -- [apiProvisioning-v2/disableUser.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L223) -- [apiProvisioning-v2/disableUser.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L237) -- [apiProvisioning-v2/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L131) -- [apiProvisioning-v2/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L143) -- [apiProvisioning-v2/editUser.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L159) -- [apiProvisioning-v2/enableUser.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L104) -- [apiProvisioning-v2/enableUser.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L118) -- [apiProvisioning-v2/enableUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L131) -- [apiProvisioning-v2/enableUser.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L146) -- [apiProvisioning-v2/getUser.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L145) -- [apiProvisioning-v2/getUser.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L156) -- [apiProvisioning-v2/getUser.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L171) -- [apiProvisioning-v2/resetUserPassword.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L101) -- [apiProvisioning-v2/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L113) -- [apiProvisioning-v2/resetUserPassword.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L129) - -### [invalid format of sharees response](https://github.com/owncloud/product/issues/292) -### [Searching sharee with displayname](https://github.com/owncloud/ocis/issues/547) -- [apiSharees/sharees.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L32) -- [apiSharees/sharees.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L33) -- [apiSharees/sharees.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L53) -- [apiSharees/sharees.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L54) -- [apiSharees/sharees.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L74) -- [apiSharees/sharees.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L75) -- [apiSharees/sharees.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L98) -- [apiSharees/sharees.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L99) -- [apiSharees/sharees.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L118) -- [apiSharees/sharees.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L119) -- [apiSharees/sharees.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L137) -- [apiSharees/sharees.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L138) -- [apiSharees/sharees.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L157) -- [apiSharees/sharees.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L158) -- [apiSharees/sharees.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L177) -- [apiSharees/sharees.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L178) -- [apiSharees/sharees.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L198) -- [apiSharees/sharees.feature:199](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L199) -- [apiSharees/sharees.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L217) -- [apiSharees/sharees.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L218) -- [apiSharees/sharees.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L237) -- [apiSharees/sharees.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L238) -- [apiSharees/sharees.feature:257](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L257) -- [apiSharees/sharees.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L258) -- [apiSharees/sharees.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L277) -- [apiSharees/sharees.feature:278](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L278) -- [apiSharees/sharees.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L297) -- [apiSharees/sharees.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L298) -- [apiSharees/sharees.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L317) -- [apiSharees/sharees.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L318) -- [apiSharees/sharees.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L336) -- [apiSharees/sharees.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L337) -- [apiSharees/sharees.feature:355](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L355) -- [apiSharees/sharees.feature:356](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L356) -- [apiSharees/sharees.feature:374](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L374) -- [apiSharees/sharees.feature:375](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L375) -- [apiSharees/sharees.feature:393](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L393) -- [apiSharees/sharees.feature:394](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L394) -- [apiSharees/sharees.feature:412](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L412) -- [apiSharees/sharees.feature:413](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L413) -- [apiSharees/sharees.feature:430](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L430) -- [apiSharees/sharees.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L431) -- [apiSharees/sharees.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L450) -- [apiSharees/sharees.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L451) -- [apiSharees/sharees.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L475) -- [apiSharees/sharees.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L476) -- [apiSharees/sharees.feature:495](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L495) -- [apiSharees/sharees.feature:496](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L496) -- [apiSharees/sharees.feature:515](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L515) -- [apiSharees/sharees.feature:516](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L516) -- [apiSharees/sharees.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L537) -- [apiSharees/sharees.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L538) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) -- [apiShareManagementToShares/acceptShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L22) -- [apiShareManagementToShares/acceptShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L223) -- [apiShareManagementToShares/acceptShares.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L270) -- [apiShareManagementToShares/acceptShares.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L342) -- [apiShareManagementToShares/acceptShares.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L378) -- [apiShareManagementToShares/acceptShares.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L417) - -### User cannot create a folder named Share -- [apiShareManagementToShares/acceptShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L279) -- [apiShareManagementToShares/acceptShares.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L298) - -### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) - -- [apiShareManagementToShares/acceptShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L71) -- [apiShareManagementToShares/acceptShares.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L162) -- [apiShareManagementToShares/acceptShares.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L175) -- [apiShareManagementToShares/acceptShares.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L196) -- [apiShareManagementToShares/acceptShares.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L249) -- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L28) -- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L48) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L140) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L141) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L176) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L177) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L36) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L37) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L66) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L67) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L91) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L92) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L94) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L95) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L97) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L98) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L155) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L156) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:288](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L288) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L289) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L305) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L306) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L46) -- [apiShareManagementToShares/mergeShare.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L32) -- [apiShareManagementToShares/mergeShare.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L42) -- [apiShareManagementToShares/mergeShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L89) - -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L100) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L101) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L179) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L180) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L204) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L205) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L236) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L237) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L258) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L259) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L324) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:325](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L325) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:362](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L362) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:363](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L363) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:392](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L392) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:461](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L461) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:462](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L462) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:497](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L497) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L498) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:501](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L501) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L28) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L29) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L89) - -### [shares are mounted into /Shares folder even after the sharer deletes the collaborator](https://github.com/owncloud/ocis/issues/720) -### [deleting share response does not contain `data` field](https://github.com/owncloud/ocis/issues/721) - -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L43) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L44) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L367) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:529](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L529) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:547](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L547) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:565](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L565) - -### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L342) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:343](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L343) - -### [File deletion using dav gives unique string in filename in the trashbin](https://github.com/owncloud/product/issues/178) - -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L58) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L72) - - cannot share a folder with create permission -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L118) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L130) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L181) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L182) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L183) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L184) - -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) -- [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) -- [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) - -### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis/issues/1226) -### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis/issues/1270) -### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) - -- [apiShareOperationsToShares/gettingShares.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L135) -- [apiShareOperationsToShares/gettingShares.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L136) - -### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis/issues/1233) - -- [apiShareOperationsToShares/gettingShares.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L180) -- [apiShareOperationsToShares/gettingShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L181) - -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - -- [apiShareOperationsToShares/gettingShares.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L219) -- [apiShareOperationsToShares/gettingShares.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L220) - -### [Allow getting the share list filtered by share type via API](https://github.com/owncloud/ocis/issues/774) - -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L44) -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L45) -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L56) -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L57) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L47) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L48) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L60) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L61) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L41) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L42) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L62) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L63) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L90) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L91) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L48) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L49) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L62) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L63) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L76) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L77) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L92) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L93) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L39) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L40) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L60) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L61) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L79) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L80) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) - -- [apiShareOperationsToShares/gettingShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L167) -- [apiShareOperationsToShares/gettingShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L168) - -- [apiSharePublicLink1/createPublicLinkShare.feature:793](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L793) -- [apiSharePublicLink1/createPublicLinkShare.feature:804](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L804) - -### [Cannot set mtime on upload](https://github.com/owncloud/product/issues/271) - -- [apiSharePublicLink1/createPublicLinkShare.feature:775](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L775) -- [apiSharePublicLink1/createPublicLinkShare.feature:776](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L776) -- [apiSharePublicLink1/createPublicLinkShare.feature:789](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L789) -- [apiSharePublicLink1/createPublicLinkShare.feature:790](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L790) - -### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) -### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) -### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - -- [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) -- [apiSharePublicLink1/accessToPublicLinkShare.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L20) -- [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) -- [apiSharePublicLink1/accessToPublicLinkShare.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L43) - -### [creating public links with permissions fails](https://github.com/owncloud/product/issues/252) - -- [apiSharePublicLink1/changingPublicLinkShare.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L22) -- [apiSharePublicLink1/changingPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L23) -- [apiSharePublicLink1/changingPublicLinkShare.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L37) -- [apiSharePublicLink1/changingPublicLinkShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L41) -- [apiSharePublicLink1/changingPublicLinkShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L52) -- [apiSharePublicLink1/changingPublicLinkShare.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L85) -- [apiSharePublicLink1/changingPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L96) - -### [Old webdav api does not work with public link](https://github.com/owncloud/product/issues/272) - -- [apiSharePublicLink1/changingPublicLinkShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L63) -- [apiSharePublicLink1/changingPublicLinkShare.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L107) -- [apiSharePublicLink1/changingPublicLinkShare.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L151) -- [apiSharePublicLink1/changingPublicLinkShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L197) -- [apiSharePublicLink1/changingPublicLinkShare.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L244) - -### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) - -- [apiSharePublicLink1/changingPublicLinkShare.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L267) -- [apiSharePublicLink1/changingPublicLinkShare.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L289) -- [apiSharePublicLink1/createPublicLinkShare.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L34) -- [apiSharePublicLink1/createPublicLinkShare.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L35) -- [apiSharePublicLink1/createPublicLinkShare.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L183) -- [apiSharePublicLink1/createPublicLinkShare.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L184) -- [apiSharePublicLink1/createPublicLinkShare.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L214) -- [apiSharePublicLink1/createPublicLinkShare.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L215) -- [apiSharePublicLink1/createPublicLinkShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L307) -- [apiSharePublicLink1/createPublicLinkShare.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L308) -- [apiSharePublicLink1/createPublicLinkShare.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L370) -- [apiSharePublicLink1/createPublicLinkShare.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L371) - -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) - -- [apiSharePublicLink1/createPublicLinkShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L95) -- [apiSharePublicLink1/createPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L96) -- [apiSharePublicLink1/createPublicLinkShare.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L276) -- [apiSharePublicLink1/createPublicLinkShare.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L277) - -### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis/issues/1293) - -- [apiSharePublicLink1/createPublicLinkShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L127) -- [apiSharePublicLink1/createPublicLinkShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L128) -- [apiSharePublicLink1/createPublicLinkShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L155) -- [apiSharePublicLink1/createPublicLinkShare.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L156) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiSharePublicLink1/createPublicLinkShare.feature:410](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L410) -- [apiSharePublicLink1/createPublicLinkShare.feature:411](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L411) -- [apiSharePublicLink1/createPublicLinkShare.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L431) -- [apiSharePublicLink1/createPublicLinkShare.feature:432](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L432) -- [apiSharePublicLink1/createPublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L454) -- [apiSharePublicLink1/createPublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L455) -- [apiSharePublicLink1/createPublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L477) -- [apiSharePublicLink1/createPublicLinkShare.feature:478](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L478) -- [apiSharePublicLink1/createPublicLinkShare.feature:479](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L479) -- [apiSharePublicLink1/createPublicLinkShare.feature:480](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L480) -- [apiSharePublicLink1/createPublicLinkShare.feature:481](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L481) -- [apiSharePublicLink1/createPublicLinkShare.feature:482](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L482) -- [apiSharePublicLink1/createPublicLinkShare.feature:502](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L502) -- [apiSharePublicLink1/createPublicLinkShare.feature:503](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L503) -- [apiSharePublicLink1/createPublicLinkShare.feature:518](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L518) -- [apiSharePublicLink1/createPublicLinkShare.feature:519](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L519) -- [apiSharePublicLink1/createPublicLinkShare.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L537) -- [apiSharePublicLink1/createPublicLinkShare.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L538) -- [apiSharePublicLink1/createPublicLinkShare.feature:574](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L574) -- [apiSharePublicLink1/createPublicLinkShare.feature:575](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L575) -- [apiSharePublicLink1/createPublicLinkShare.feature:635](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L635) -- [apiSharePublicLink1/createPublicLinkShare.feature:636](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L636) -- [apiSharePublicLink1/createPublicLinkShare.feature:649](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L649) -- [apiSharePublicLink1/createPublicLinkShare.feature:650](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L650) -- [apiSharePublicLink1/createPublicLinkShare.feature:678](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L678) -- [apiSharePublicLink1/createPublicLinkShare.feature:679](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L679) -- [apiSharePublicLink1/createPublicLinkShare.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L729) -- [apiSharePublicLink1/createPublicLinkShare.feature:730](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L730) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L163) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L164) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L165) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L166) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L42) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L43) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L69) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L70) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L97) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L98) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L135) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L136) - -### [Public cannot upload file with mtime set on a public link share with new version of WebDAV API](https://github.com/owncloud/core/issues/37605) - -- [apiSharePublicLink1/createPublicLinkShare.feature:733](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L733) -- [apiSharePublicLink1/createPublicLinkShare.feature:742](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L742) - -### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis/issues/1232) - -- [apiSharePublicLink2/copyFromPublicLink.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L60) -- [apiSharePublicLink2/copyFromPublicLink.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L85) -- [apiSharePublicLink2/copyFromPublicLink.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L166) -- [apiSharePublicLink2/copyFromPublicLink.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L167) -- [apiSharePublicLink2/copyFromPublicLink.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L182) -- [apiSharePublicLink2/copyFromPublicLink.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L183) -- [apiSharePublicLink2/updatePublicLinkShare.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L44) -- [apiSharePublicLink2/updatePublicLinkShare.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L45) -- [apiSharePublicLink2/updatePublicLinkShare.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L114) -- [apiSharePublicLink2/updatePublicLinkShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L115) -- [apiSharePublicLink2/updatePublicLinkShare.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L130) -- [apiSharePublicLink2/updatePublicLinkShare.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L131) -- [apiSharePublicLink2/updatePublicLinkShare.feature:321](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L321) -- [apiSharePublicLink2/updatePublicLinkShare.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L322) - -### [oCIS share permissions not enforced](https://github.com/owncloud/product/issues/270) - -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L157) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L158) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L179) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L180) - -### [oCIS old public webdav api doesnt works](https://github.com/owncloud/product/issues/272) - -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L30) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L31) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L50) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L51) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L71) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L72) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L92) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L93) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L114) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L115) - -### [listing received shares does not work](https://github.com/owncloud/ocis-reva/issues/11) - -- [apiSharePublicLink2/updatePublicLinkShare.feature:340](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L340) -- [apiSharePublicLink2/updatePublicLinkShare.feature:341](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L341) -- [apiSharePublicLink2/updatePublicLinkShare.feature:359](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L359) -- [apiSharePublicLink2/updatePublicLinkShare.feature:360](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L360) -- [apiSharePublicLink2/updatePublicLinkShare.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L378) -- [apiSharePublicLink2/updatePublicLinkShare.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L379) -- [apiSharePublicLink2/updatePublicLinkShare.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L397) -- [apiSharePublicLink2/updatePublicLinkShare.feature:398](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L398) -- [apiSharePublicLink2/updatePublicLinkShare.feature:416](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L416) -- [apiSharePublicLink2/updatePublicLinkShare.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L417) -- [apiSharePublicLink2/updatePublicLinkShare.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L435) -- [apiSharePublicLink2/updatePublicLinkShare.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L436) -- [apiSharePublicLink2/updatePublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L454) -- [apiSharePublicLink2/updatePublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L455) -- [apiSharePublicLink2/updatePublicLinkShare.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L476) -- [apiSharePublicLink2/updatePublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L477) - -### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) - -- [apiSharePublicLink2/updatePublicLinkShare.feature:523](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L523) -- [apiSharePublicLink2/updatePublicLinkShare.feature:524](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L524) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L9) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L83) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L103) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) - -### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L273) - -### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis/issues/1268) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L66) - -### [Set quota over settings](https://github.com/owncloud/ocis/issues/1290) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L148) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L158) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L167) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L177) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:186](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L186) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L196) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L206) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L217) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L238) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L255) - -### [Resharing does not work with oCIS storage](https://github.com/owncloud/product/issues/265) - -- [apiShareReshareToShares1/reShare.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L56) -- [apiShareReshareToShares1/reShare.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L57) -- [apiShareReshareToShares1/reShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L72) -- [apiShareReshareToShares1/reShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L73) -- [apiShareReshareToShares1/reShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L88) -- [apiShareReshareToShares1/reShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L89) -- [apiShareReshareToShares1/reShare.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L104) -- [apiShareReshareToShares1/reShare.feature:105](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L105) -- [apiShareReshareToShares1/reShare.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L159) -- [apiShareReshareToShares1/reShare.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L160) -- [apiShareReshareToShares1/reShare.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L161) -- [apiShareReshareToShares1/reShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L162) -- [apiShareReshareToShares1/reShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L163) -- [apiShareReshareToShares1/reShare.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L164) -- [apiShareReshareToShares1/reShare.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L165) -- [apiShareReshareToShares1/reShare.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L166) -- [apiShareReshareToShares1/reShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L167) -- [apiShareReshareToShares1/reShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L168) -- [apiShareReshareToShares1/reShare.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L169) -- [apiShareReshareToShares1/reShare.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L170) -- [apiShareReshareToShares1/reShare.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L171) -- [apiShareReshareToShares1/reShare.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L172) -- [apiShareReshareToShares1/reShare.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L173) -- [apiShareReshareToShares1/reShare.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L174) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L365) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:366](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L366) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L367) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L368) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:400](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L400) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:401](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L401) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:402](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L402) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L403) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L404) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:405](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L405) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:434](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L434) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L435) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L436) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:437](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L437) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:465](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L465) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:466](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L466) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L245) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L246) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L247) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L248) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L150) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L151) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L152) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L153) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L89) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L90) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L91) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L92) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L33) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L34) - -### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) - -- [apiShareReshareToShares2/reShareChain.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareChain.feature#L10) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiShareReshareToShares2/reShareDisabled.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L24) -- [apiShareReshareToShares2/reShareDisabled.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L25) -- [apiShareReshareToShares2/reShareDisabled.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L39) -- [apiShareReshareToShares2/reShareDisabled.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L40) - -### [share permissions are not enforced](https://github.com/owncloud/product/issues/270) - -- [apiShareManagementToShares/mergeShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L24) -- [apiShareManagementToShares/mergeShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L52) -- [apiShareManagementToShares/mergeShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L79) -- [apiShareManagementToShares/mergeShare.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L99) -- [apiShareReshareToShares3/reShareUpdate.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L59) -- [apiShareReshareToShares3/reShareUpdate.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L60) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) - -- [apiShareReshareToShares2/reShareSubfolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L28) -- [apiShareReshareToShares2/reShareSubfolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L29) -- [apiShareReshareToShares2/reShareSubfolder.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L106) -- [apiShareReshareToShares2/reShareSubfolder.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L107) -- [apiShareReshareToShares2/reShareSubfolder.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L128) -- [apiShareReshareToShares2/reShareSubfolder.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L129) -- [apiShareReshareToShares2/reShareSubfolder.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L150) -- [apiShareReshareToShares2/reShareSubfolder.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L151) - - -### [Share receiver cannot get share by id](https://github.com/owncloud/product/issues/253) - -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L24) -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L25) -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L41) -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L42) -- [apiShareReshareToShares3/reShareUpdate.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L112) -- [apiShareReshareToShares3/reShareUpdate.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L113) -- [apiShareReshareToShares3/reShareUpdate.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L131) -- [apiShareReshareToShares3/reShareUpdate.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L132) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L61) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L62) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L121) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L122) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L123) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L124) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L181) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L182) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L183) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L184) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L212) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L213) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L214) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L215) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L302) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:303](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L303) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:304](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L304) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L305) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L335) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L336) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L337) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:338](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L338) - -### [empty trashbin does not work](https://github.com/owncloud/product/issues/254) +#### [Deletion time in trash bin shows a wrong date](https://github.com/owncloud/ocis/issues/541) +- [apiTrashbin/trashbinFilesFolders.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L284) +- [apiTrashbin/trashbinFilesFolders.feature:285](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L285) +#### [empty trashbin does not work](https://github.com/owncloud/product/issues/254) - [apiTrashbin/trashbinDelete.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L37) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - [apiTrashbin/trashbinDelete.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L50) - [apiTrashbin/trashbinDelete.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L67) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [QA trashcan cannot delete a deep tree](https://github.com/owncloud/ocis/issues/1077) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [QA trashcan cannot delete a deep tree](https://github.com/owncloud/ocis/issues/1077) - [apiTrashbin/trashbinDelete.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L107) - [apiTrashbin/trashbinDelete.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L123) -### [trashbin filename invalid for nested files/folders](https://github.com/owncloud/product/issues/255) - +#### [trashbin filename invalid for nested files/folders](https://github.com/owncloud/product/issues/255) - [apiTrashbin/trashbinFilesFolders.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L44) - [apiTrashbin/trashbinFilesFolders.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L45) - [apiTrashbin/trashbinFilesFolders.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L60) - [apiTrashbin/trashbinFilesFolders.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L61) -### [invalid webdav responses for unauthorized requests.](https://github.com/owncloud/product/issues/273) - +#### [invalid webdav responses for unauthorized requests.](https://github.com/owncloud/product/issues/273) - [apiTrashbin/trashbinFilesFolders.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L154) - [apiTrashbin/trashbinFilesFolders.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L155) - [apiTrashbin/trashbinFilesFolders.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L172) @@ -852,22 +48,11 @@ - [apiTrashbin/trashbinFilesFolders.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L224) - [apiTrashbin/trashbinFilesFolders.feature:225](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L225) -### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) - -- [apiTrashbin/trashbinFilesFolders.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L239) -- [apiTrashbin/trashbinFilesFolders.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L240) -- [apiTrashbin/trashbinFilesFolders.feature:241](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L241) -- [apiTrashbin/trashbinFilesFolders.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L245) -- [apiTrashbin/trashbinFilesFolders.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L246) -- [apiTrashbin/trashbinFilesFolders.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L247) - -### [PROPFIND on trashbin with Depth: infinity only shows the first level](https://github.com/owncloud/ocis/issues/1116) - +#### [PROPFIND on trashbin with Depth: infinity only shows the first level](https://github.com/owncloud/ocis/issues/1116) - [apiTrashbin/trashbinFilesFolders.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L272) - [apiTrashbin/trashbinFilesFolders.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L273) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - [apiTrashbin/trashbinRestore.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L54) - [apiTrashbin/trashbinRestore.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L55) - [apiTrashbin/trashbinRestore.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L70) @@ -889,18 +74,16 @@ - [apiTrashbin/trashbinRestore.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L292) - [apiTrashbin/trashbinRestore.feature:293](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L293) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - [apiTrashbin/trashbinRestore.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L40) - [apiTrashbin/trashbinRestore.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L41) - [apiTrashbin/trashbinRestore.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L138) - [apiTrashbin/trashbinRestore.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L139) -### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - +#### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - [apiTrashbin/trashbinRestore.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L90) - [apiTrashbin/trashbinRestore.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L91) - [apiTrashbin/trashbinRestore.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L92) @@ -908,35 +91,26 @@ - [apiTrashbin/trashbinRestore.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L94) - [apiTrashbin/trashbinRestore.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L95) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) - [apiTrashbin/trashbinRestore.feature:311](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L311) - [apiTrashbin/trashbinRestore.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L312) - [apiTrashbin/trashbinRestore.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L330) - [apiTrashbin/trashbinRestore.feature:331](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L331) -### [deleting a received share-folder moves it to trash-bin but does not unshare it](https://github.com/owncloud/ocis/issues/1123) +#### [requests to webdav URLs with an fileid containing an invalid storage_id result in error 500](https://github.com/owncloud/ocis/issues/772) +- [apiVersions/fileVersions.feature:384](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L384) -- [apiTrashbin/trashbinSharingToShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L24) -- [apiTrashbin/trashbinSharingToShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L25) -- [apiShareManagementToShares/acceptShares.feature:469](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L469) -- [apiShareManagementToShares/acceptShares.feature:470](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L470) +#### [requesting propfind with invalid fileid gives 502 error](https://github.com/owncloud/ocis/issues/771) +- [apiVersions/fileVersions.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L395) +- [apiVersions/fileVersions.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L396) +- [apiVersions/fileVersions.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L397) -### [deleting a file inside a received shared folder is moved to the trash-bin of the sharer not the receiver](https://github.com/owncloud/ocis/issues/1124) - -- [apiTrashbin/trashbinSharingToShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L40) -- [apiTrashbin/trashbinSharingToShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L41) -- [apiTrashbin/trashbinSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L63) -- [apiTrashbin/trashbinSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L64) -- [apiTrashbin/trashbinSharingToShares.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L82) -- [apiTrashbin/trashbinSharingToShares.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L83) -- [apiTrashbin/trashbinSharingToShares.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L102) -- [apiTrashbin/trashbinSharingToShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L103) - -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) +#### [Implement Versions Feature for ocis storage](https://github.com/owncloud/product/issues/210) +- [apiWebdavEtagPropagation2/restoreVersion.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreVersion.feature#L10) +#### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) +#### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - [apiVersions/fileVersions.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L15) - [apiVersions/fileVersions.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L23) - [apiVersions/fileVersions.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L36) @@ -1002,10 +176,54 @@ - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L147) - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L168) - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L169) -- [apiShareOperationsToShares/uploadToShare.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L246) -### [cannot rename files asynchronously](https://github.com/owncloud/product/issues/259) +#### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) +- [apiWebdavUpload1/uploadFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L112) +- [apiWebdavUpload1/uploadFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L113) +#### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L43) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L96) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L97) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L98) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L99) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L100) + +#### [invalid file-names should not be created using the TUS protocol](https://github.com/owncloud/ocis/issues/1001) +- [apiWebdavUploadTUS/uploadFile.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L135) +- [apiWebdavUploadTUS/uploadFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L136) +- [apiWebdavUploadTUS/uploadFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L137) +- [apiWebdavUploadTUS/uploadFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L138) +- [apiWebdavUploadTUS/uploadFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L139) +- [apiWebdavUploadTUS/uploadFile.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L140) +- [apiWebdavUploadTUS/uploadFile.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L141) +- [apiWebdavUploadTUS/uploadFile.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L142) + +#### [upload a file using TUS resource URL as an other user should not work](https://github.com/owncloud/ocis/issues/1141) +- [apiWebdavUploadTUS/uploadFile.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L155) +- [apiWebdavUploadTUS/uploadFile.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L156) + +#### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) +- [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) +- [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) +- [apiWebdavProperties1/createFolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L71) +- [apiWebdavProperties1/createFolder.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L72) +- [apiWebdavUpload1/uploadFile.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L127) +- [apiWebdavUpload1/uploadFile.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L128) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L19) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L20) +- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L13) +- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L19) +- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L35) +- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L36) +- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L37) +- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L13) +- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L20) +- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L37) +- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L38) +- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L39) + +#### [cannot rename files asynchronously](https://github.com/owncloud/product/issues/259) - [apiWebdavMove1/moveFileAsync.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L26) - [apiWebdavMove1/moveFileAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L27) - [apiWebdavMove1/moveFileAsync.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L28) @@ -1029,20 +247,17 @@ - [apiWebdavMove1/moveFileAsync.feature:235](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L235) - [apiWebdavMove1/moveFileAsync.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L240) -### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - +#### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L12) - [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L18) - [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L26) -### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - +#### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L12) - [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L19) - [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L27) -### [renaming to banned name works](https://github.com/owncloud/ocis/issues/1295) - +#### [renaming to banned name works](https://github.com/owncloud/ocis/issues/1295) - [apiWebdavMove1/moveFolder.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L21) - [apiWebdavMove1/moveFolder.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L22) - [apiWebdavMove1/moveFolder.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L34) @@ -1050,8 +265,7 @@ - [apiWebdavMove1/moveFolder.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L47) - [apiWebdavMove1/moveFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L48) -### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - +#### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - [apiWebdavMove1/moveFolderToBlacklistedName.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L21) - [apiWebdavMove1/moveFolderToBlacklistedName.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L22) - [apiWebdavMove1/moveFolderToBlacklistedName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L35) @@ -1059,8 +273,7 @@ - [apiWebdavMove1/moveFolderToBlacklistedName.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L70) - [apiWebdavMove1/moveFolderToBlacklistedName.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L71) -### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - +#### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L21) - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L22) - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L34) @@ -1068,33 +281,7 @@ - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L70) - [apiWebdavMove1/moveFolderToExcludedDirectory.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L71) -### [Review and fix the tests that have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavMove2/moveFile.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L89) -- [apiWebdavMove2/moveFile.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L90) -- [apiWebdavMove2/moveFile.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L91) -- [apiWebdavMove2/moveFile.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L92) -- [apiWebdavMove2/moveFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L112) -- [apiWebdavMove2/moveFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L113) -- [apiWebdavMove2/moveFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L136) -- [apiWebdavMove2/moveFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L137) -- [apiWebdavMove2/moveFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L138) -- [apiWebdavMove2/moveFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L139) -- [apiWebdavMove2/moveFile.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L160) -- [apiWebdavMove2/moveFile.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L161) -- [apiWebdavMove2/moveFile.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L181) -- [apiWebdavMove2/moveFile.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L182) -- [apiWebdavMove2/moveFile.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L200) -- [apiWebdavMove2/moveFile.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L201) -- [apiWebdavMove2/moveFile.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L219) -- [apiWebdavMove2/moveFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L220) -- [apiWebdavMove2/moveFile.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L255) -- [apiWebdavMove2/moveFile.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L256) -- [apiWebdavMove2/moveFile.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L272) -- [apiWebdavMove2/moveFile.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L273) - -### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - +#### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - [apiWebdavMove2/moveFileToBlacklistedName.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L18) - [apiWebdavMove2/moveFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L19) - [apiWebdavMove2/moveFileToBlacklistedName.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L29) @@ -1102,8 +289,7 @@ - [apiWebdavMove2/moveFileToBlacklistedName.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L62) - [apiWebdavMove2/moveFileToBlacklistedName.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L63) -### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - +#### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - [apiWebdavMove2/moveFileToExcludedDirectory.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L18) - [apiWebdavMove2/moveFileToExcludedDirectory.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L19) - [apiWebdavMove2/moveFileToExcludedDirectory.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L28) @@ -1111,57 +297,9 @@ - [apiWebdavMove2/moveFileToExcludedDirectory.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L63) - [apiWebdavMove2/moveFileToExcludedDirectory.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L64) -### [Review and fix the tests that have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavOperations/deleteFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L67) -- [apiWebdavOperations/deleteFolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L68) -- [apiWebdavOperations/deleteFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L69) -- [apiWebdavOperations/deleteFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L70) -- [apiWebdavOperations/deleteFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L91) -- [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) - -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) -### [Review and fix the tests that have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavOperations/downloadFile.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L60) -- [apiWebdavOperations/downloadFile.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L61) -- [apiWebdavOperations/downloadFile.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L72) -- [apiWebdavOperations/downloadFile.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L73) -- [apiWebdavOperations/downloadFile.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L84) -- [apiWebdavOperations/downloadFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L85) -- [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) -- [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) - -### [Review and fix the tests that have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) -- [apiWebdavProperties1/copyFile.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L66) -- [apiWebdavProperties1/copyFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L85) -- [apiWebdavProperties1/copyFile.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L86) - -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - -- [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) -- [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) -- [apiWebdavProperties1/createFolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L71) -- [apiWebdavProperties1/createFolder.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L72) -- [apiWebdavUpload1/uploadFile.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L127) -- [apiWebdavUpload1/uploadFile.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L128) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L19) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L20) -- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L13) -- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L19) -- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L35) -- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L36) -- [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L37) -- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L13) -- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L20) -- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L37) -- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L38) -- [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L39) - -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) +#### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) +#### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) - [apiWebdavProperties1/copyFile.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L116) - [apiWebdavProperties1/copyFile.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L117) - [apiWebdavProperties1/copyFile.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L129) @@ -1172,55 +310,37 @@ - [apiWebdavProperties1/copyFile.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L166) - [apiWebdavProperties1/copyFile.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L202) - [apiWebdavProperties1/copyFile.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L203) +- [apiWebdavProperties1/copyFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L220) +- [apiWebdavProperties1/copyFile.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L221) +- [apiWebdavProperties1/copyFile.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L237) +- [apiWebdavProperties1/copyFile.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L238) +- [apiWebdavProperties1/copyFile.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L259) +- [apiWebdavProperties1/copyFile.feature:260](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L260) +- [apiWebdavProperties1/copyFile.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L283) +- [apiWebdavProperties1/copyFile.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L284) +- [apiWebdavProperties1/copyFile.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L306) +- [apiWebdavProperties1/copyFile.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L307) +- [apiWebdavProperties1/copyFile.feature:329](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L329) +- [apiWebdavProperties1/copyFile.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L330) -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiWebdavProperties1/copyFile.feature:350](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L350) -- [apiWebdavProperties1/copyFile.feature:351](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L351) -- [apiWebdavProperties1/copyFile.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L370) -- [apiWebdavProperties1/copyFile.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L371) -- [apiWebdavProperties1/copyFile.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L395) -- [apiWebdavProperties1/copyFile.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L396) -- [apiWebdavProperties1/copyFile.feature:422](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L422) -- [apiWebdavProperties1/copyFile.feature:423](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L423) -- [apiWebdavProperties1/copyFile.feature:448](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L448) -- [apiWebdavProperties1/copyFile.feature:449](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L449) -- [apiWebdavProperties1/copyFile.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L474) -- [apiWebdavProperties1/copyFile.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L475) - -### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis/issues/1283) - +#### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis/issues/1283) +Scenario Outline: try to create a folder that already exists - [apiWebdavProperties1/createFolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L85) - [apiWebdavProperties1/createFolder.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L86) + Scenario Outline: try to create a folder with a name of an existing file - [apiWebdavProperties1/createFolder.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L99) - [apiWebdavProperties1/createFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L100) -### [quota query](https://github.com/owncloud/ocis/issues/1313) - -- [apiWebdavProperties1/getQuota.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L17) -- [apiWebdavProperties1/getQuota.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L18) -- [apiWebdavProperties1/getQuota.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L27) -- [apiWebdavProperties1/getQuota.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L28) -- [apiWebdavProperties1/getQuota.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L48) -- [apiWebdavProperties1/getQuota.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L49) -- [apiWebdavProperties1/getQuota.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L61) -- [apiWebdavProperties1/getQuota.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L62) -- [apiWebdavProperties1/getQuota.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L77) -- [apiWebdavProperties1/getQuota.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L78) - -### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) - -- [apiWebdavProperties1/setFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L63) -- [apiWebdavProperties1/setFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L64) - -### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis/issues/1296) - +#### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis/issues/1296) +Scenario Outline: Do a PROPFIND of various file names - [apiWebdavProperties2/getFileProperties.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L37) - [apiWebdavProperties2/getFileProperties.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L39) - [apiWebdavProperties2/getFileProperties.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L40) - [apiWebdavProperties2/getFileProperties.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L41) - [apiWebdavProperties2/getFileProperties.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L43) - [apiWebdavProperties2/getFileProperties.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L44) + +Scenario Outline: Do a PROPFIND of various folder names - [apiWebdavProperties2/getFileProperties.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L59) - [apiWebdavProperties2/getFileProperties.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L60) - [apiWebdavProperties2/getFileProperties.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L61) @@ -1232,125 +352,42 @@ - [apiWebdavProperties2/getFileProperties.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L70) - [apiWebdavProperties2/getFileProperties.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L71) -### [cannot get share-types webdav property](https://github.com/owncloud/ocis/issues/567) - -- [apiWebdavProperties2/getFileProperties.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L174) -- [apiWebdavProperties2/getFileProperties.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L175) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiWebdavProperties2/getFileProperties.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L156) -- [apiWebdavProperties2/getFileProperties.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L157) -- [apiWebdavProperties2/getFileProperties.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L206) -- [apiWebdavProperties2/getFileProperties.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L207) - -### [Private link support](https://github.com/owncloud/product/issues/201) -### [oc:privatelink property not returned in webdav responses](https://github.com/owncloud/product/issues/262) - -- [apiWebdavProperties2/getFileProperties.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L232) -- [apiWebdavProperties2/getFileProperties.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L233) - -### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) - -- [apiWebdavProperties2/getFileProperties.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L242) -- [apiWebdavProperties2/getFileProperties.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L243) - -### https://github.com/owncloud/product/issues/264 - -- [apiWebdavProperties2/getFileProperties.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L246) -- [apiWebdavProperties2/getFileProperties.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L266) - ### [Different webdav properties from core](https://github.com/owncloud/ocis/issues/1302) - +Scenario Outline: Propfind the last modified date of a folder using webdav api `Property "d:getlastmodified" found with value "Wed, 20 Jan 2021 14:39:31 +0000", expected "/^[MTWFS][uedhfriatno]{2},\s(\d){2}\s[JFMAJSOND][anebrpyulgctov]{2}\s\d{4}\s\d{2}:\d{2}:\d{2} GMT$/"` - [apiWebdavProperties2/getFileProperties.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L301) - [apiWebdavProperties2/getFileProperties.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L302) + Scenario Outline: Propfind the content type of a folder using webdav api `Property "d:getcontenttype" found with value "httpd/unix-directory", expected "#^$#" or "#^$#"` - [apiWebdavProperties2/getFileProperties.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L314) - [apiWebdavProperties2/getFileProperties.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L315) + Scenario Outline: Propfind the content type of a file using webdav api `Property "d:getcontenttype" found with value "text/plain; charset=utf-8", expected "#^text/plain$#" or "#^text/plain$#"` - [apiWebdavProperties2/getFileProperties.feature:327](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L327) - [apiWebdavProperties2/getFileProperties.feature:328](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L328) + Scenario Outline: Propfind the size of a folder using webdav api `Property "oc:size" found with value "10", expected "#^0$#" or "#^0$#"` - [apiWebdavProperties2/getFileProperties.feature:376](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L376) - [apiWebdavProperties2/getFileProperties.feature:377](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L377) + Scenario Outline: Propfind the permissions on a file using webdav api `Property "oc:permissions" found with value "DNVWR", expected "/RM{0,1}DNVW/"` - [apiWebdavProperties2/getFileProperties.feature:441](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L441) - [apiWebdavProperties2/getFileProperties.feature:442](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L442) + Scenario Outline: Propfind the permissions on a folder using webdav api `Property "oc:permissions" found with value "DNVCKR", expected "/RM{0,1}DNVCK/"` - [apiWebdavProperties2/getFileProperties.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L454) - [apiWebdavProperties2/getFileProperties.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L455) -### [etags are not quoted in PROPFIND](https://github.com/owncloud/product/issues/237) +#### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) +_ocdav: double check the webdav property parsing when custom namespaces are used_ +- [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) +- [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) +- [apiWebdavProperties1/setFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L63) +- [apiWebdavProperties1/setFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L64) -- [apiWebdavUpload1/uploadFile.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L160) -- [apiWebdavUpload1/uploadFile.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L161) -- [apiWebdavUpload1/uploadFile.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L173) -- [apiWebdavUpload1/uploadFile.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L174) -- [apiWebdavUpload1/uploadFile.feature:187](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L187) -- [apiWebdavUpload1/uploadFile.feature:188](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L188) -- [apiWebdavUpload1/uploadFile.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L200) -- [apiWebdavUpload1/uploadFile.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L201) +#### [Cannot set custom webDav properties](https://github.com/owncloud/product/issues/264) +- [apiWebdavProperties2/getFileProperties.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L246) +- [apiWebdavProperties2/getFileProperties.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L266) -### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) - -- [apiWebdavUpload1/uploadFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L112) -- [apiWebdavUpload1/uploadFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L113) - -### [system configuration options missing](https://github.com/owncloud/ocis/issues/1323) - -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L31) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L32) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L65) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L66) - -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) - -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L43) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L96) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L97) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L98) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L99) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L100) - -### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - -- [apiWebdavPreviews/previews.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L15) -- [apiWebdavPreviews/previews.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L16) -- [apiWebdavPreviews/previews.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L17) -- [apiWebdavPreviews/previews.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L18) -- [apiWebdavPreviews/previews.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L19) -- [apiWebdavPreviews/previews.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L30) -- [apiWebdavPreviews/previews.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L31) -- [apiWebdavPreviews/previews.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L32) -- [apiWebdavPreviews/previews.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L33) -- [apiWebdavPreviews/previews.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L34) -- [apiWebdavPreviews/previews.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L35) -- [apiWebdavPreviews/previews.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L36) -- [apiWebdavPreviews/previews.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L47) -- [apiWebdavPreviews/previews.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L48) -- [apiWebdavPreviews/previews.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L49) -- [apiWebdavPreviews/previews.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L50) -- [apiWebdavPreviews/previews.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L51) -- [apiWebdavPreviews/previews.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L52) -- [apiWebdavPreviews/previews.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L53) -- [apiWebdavPreviews/previews.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L56) -- [apiWebdavPreviews/previews.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L71) -- [apiWebdavPreviews/previews.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L72) -- [apiWebdavPreviews/previews.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L73) -- [apiWebdavPreviews/previews.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L83) -- [apiWebdavPreviews/previews.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L84) -- [apiWebdavPreviews/previews.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L87) -- [apiWebdavPreviews/previews.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L95) -- [apiWebdavPreviews/previews.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L104) -- [apiWebdavPreviews/previews.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L113) -- [apiWebdavPreviews/previews.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L120) -- [apiWebdavPreviews/previews.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L127) -- [apiWebdavPreviews/previews.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L135) -- [apiWebdavPreviews/previews.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L144) -- [apiWebdavPreviews/previews.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L163) -- [apiWebdavPreviews/previews.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L164) -- [apiWebdavPreviews/previews.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L165) -- [apiWebdavPreviews/previews.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L166) -- [apiWebdavPreviews/previews.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L178) -- [apiWebdavPreviews/previews.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L179) - -### [deleting an item updates etags of grandparent but not on parent](https://github.com/owncloud/product/issues/241) +### Sync +Synchronization features like etag propagation, setting mtime and locking files +#### [deleting an item updates etags of grandparent but not on parent](https://github.com/owncloud/product/issues/241) +_etag propagation_ - [apiWebdavEtagPropagation1/deleteFileFolder.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L26) - [apiWebdavEtagPropagation1/deleteFileFolder.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L27) - [apiWebdavEtagPropagation1/deleteFileFolder.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L45) @@ -1360,532 +397,49 @@ - [apiWebdavEtagPropagation1/deleteFileFolder.feature:193](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L193) - [apiWebdavEtagPropagation1/deleteFileFolder.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L208) -### [deleting an item updates etags of grandparent but not on parent](https://github.com/owncloud/product/issues/241) -### [etags don't change for a share receiver](https://github.com/owncloud/product/issues/243) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L95) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L96) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L125) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:126](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L126) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L157) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L158) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:189](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L189) -- [apiWebdavEtagPropagation1/deleteFileFolder.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L190) - -### [etags don't change for a share receiver](https://github.com/owncloud/product/issues/243) - -- [apiWebdavEtagPropagation1/moveFileFolder.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L244) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L245) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L314) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L315) - -### [Implement Trashbin Feature for oCIS storage](https://github.com/owncloud/product/issues/209) - -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L26) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L27) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L48) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L49) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L68) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L69) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L90) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L91) - -### [Implement Versions Feature for oCIS storage](https://github.com/owncloud/product/issues/210) - -- [apiWebdavEtagPropagation2/restoreVersion.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreVersion.feature#L10) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareOperationsToShares/uploadToShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L39) -- [apiShareOperationsToShares/uploadToShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L40) -- [apiShareOperationsToShares/uploadToShare.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L91) -- [apiShareOperationsToShares/uploadToShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L92) -- [apiShareOperationsToShares/uploadToShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L139) -- [apiShareOperationsToShares/uploadToShare.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L140) - -### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) - -- [apiShareOperationsToShares/uploadToShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L162) -- [apiShareOperationsToShares/uploadToShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L163) -- [apiShareOperationsToShares/uploadToShare.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L181) -- [apiShareOperationsToShares/uploadToShare.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L182) -- [apiShareOperationsToShares/uploadToShare.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L202) -- [apiShareOperationsToShares/uploadToShare.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L203) -- [apiShareOperationsToShares/uploadToShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L221) -- [apiShareOperationsToShares/uploadToShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L222) -- [apiShareOperationsToShares/uploadToShare.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L242) -- [apiShareOperationsToShares/uploadToShare.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L243) +#### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) +_ocdav: return checksum in upload response for chunked upload_ +- [apiMain/checksums.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L58) Scenario: Uploading a chunked file with checksum should return the checksum in the propfind +- [apiMain/checksums.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L67) Scenario: Uploading a chunked file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L138) Scenario: Upload new dav chunked file where checksum matches +- [apiMain/checksums.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L147) Scenario: Upload new dav chunked file where checksum does not match +- [apiMain/checksums.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L158) Scenario: Upload new dav chunked file using async MOVE where checksum matches +- [apiMain/checksums.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L174) Scenario: Upload new dav chunked file using async MOVE where checksum does not match +- [apiMain/checksums.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L192) Scenario: Upload new dav chunked file using async MOVE where checksum does not match - retry with correct checksum +- [apiMain/checksums.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L258) Scenario: Uploading an old method chunked file with checksum should fail using new DAV path +- [apiMain/checksums.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L312) Scenario: Upload overwriting a file with new chunking and correct checksum +- [apiMain/checksums.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L324) Scenario: Upload overwriting a file with new chunking and invalid checksum -### [not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) +#### [Preserve mtime after TUS upload](https://github.com/owncloud/ocis-reva/issues/174) +Scenario Outline: upload file with mtime `expected -'1565237893', actual +'1611153591'` +- [apiWebdavUpload1/uploadFile.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L160) +- [apiWebdavUpload1/uploadFile.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L161) + Scenario Outline: upload a file with mtime in a folder `expected -'1565237893', actual +'1611153591'` +- [apiWebdavUpload1/uploadFile.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L173) +- [apiWebdavUpload1/uploadFile.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L174) + Scenario Outline: moving a file does not change its mtime `expected -'1565237893', actual +'1611153591'` +- [apiWebdavUpload1/uploadFile.feature:187](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L187) +- [apiWebdavUpload1/uploadFile.feature:188](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L188) + Scenario Outline: overwriting a file changes its mtime `expected -'1565237893', actual +'1611153591'` +- [apiWebdavUpload1/uploadFile.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L200) +- [apiWebdavUpload1/uploadFile.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L201) -- [apiShareOperationsToShares/changingFilesShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L23) -- [apiShareOperationsToShares/changingFilesShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L24) -- [apiShareOperationsToShares/changingFilesShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L63) -- [apiShareOperationsToShares/changingFilesShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L79) -- [apiShareOperationsToShares/changingFilesShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L95) +#### [ocis-storage does not use the mtime send in the `Upload-Metadata` header when uploading via TUS](https://github.com/owncloud/ocis/issues/965) +- [apiWebdavUploadTUS/uploadFileMtime.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L17) +- [apiWebdavUploadTUS/uploadFileMtime.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L18) +- [apiWebdavUploadTUS/uploadFileMtime.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L27) +- [apiWebdavUploadTUS/uploadFileMtime.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L28) +- [apiWebdavUploadTUS/uploadFileMtime.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L38) +- [apiWebdavUploadTUS/uploadFileMtime.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L39) +- [apiWebdavUploadTUS/uploadFileMtime.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L49) +- [apiWebdavUploadTUS/uploadFileMtime.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L50) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L40) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L41) -### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) - -- [apiShareOperationsToShares/changingFilesShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L40) -- [apiShareOperationsToShares/changingFilesShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L41) -- [apiShareOperationsToShares/changingFilesShare.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L59) -- [apiShareOperationsToShares/changingFilesShare.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L60) - -### [oCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) - -- [apiVersions/fileVersionsSharingToShares.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L33) - -### [restoring an older version of a shared file deletes the share](https://github.com/owncloud/ocis/issues/765) - -- [apiShareManagementToShares/acceptShares.feature:473](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L473) -- [apiVersions/fileVersionsSharingToShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L44) - -### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) - -- [apiVersions/fileVersionsSharingToShares.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L134) -- [apiVersions/fileVersionsSharingToShares.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L149) -- [apiVersions/fileVersionsSharingToShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L163) -- [apiVersions/fileVersionsSharingToShares.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L250) -- [apiVersions/fileVersionsSharingToShares.feature:251](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L251) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiVersions/fileVersionsSharingToShares.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L179) - -###[not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) - -- [apiVersions/fileVersionsSharingToShares.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L222) -- [apiVersions/fileVersionsSharingToShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L223) - -### [getting the metadata without permission results in a 403 error](https://github.com/owncloud/ocis/issues/773) - -- [apiVersions/fileVersionsSharingToShares.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L256) - -### [The version number of a file is incorrect because of the incorrect number of `` and `` element](https://github.com/owncloud/ocis/issues/1234) - -- [apiVersions/fileVersionsSharingToShares.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L267) - -### [wildcard Access-Control-Allow-Origin](https://github.com/owncloud/ocis/issues/1340) - -- [apiAuth/cors.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L24) -- [apiAuth/cors.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L25) -- [apiAuth/cors.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L26) -- [apiAuth/cors.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L27) -- [apiAuth/cors.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L28) -- [apiAuth/cors.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L29) -- [apiAuth/cors.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L30) -- [apiAuth/cors.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L31) -- [apiAuth/cors.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L32) -- [apiAuth/cors.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L33) -- [apiAuth/cors.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L34) -- [apiAuth/cors.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L35) -- [apiAuth/cors.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L36) -- [apiAuth/cors.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L37) -- [apiAuth/cors.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L38) -- [apiAuth/cors.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L39) -- [apiAuth/cors.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L40) -- [apiAuth/cors.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L41) -- [apiAuth/cors.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L59) -- [apiAuth/cors.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L60) -- [apiAuth/cors.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L61) -- [apiAuth/cors.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L62) -- [apiAuth/cors.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L63) -- [apiAuth/cors.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L64) -- [apiAuth/cors.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L83) -- [apiAuth/cors.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L84) -- [apiAuth/cors.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L85) -- [apiAuth/cors.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L86) -- [apiAuth/cors.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L87) -- [apiAuth/cors.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L88) -- [apiAuth/cors.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L89) -- [apiAuth/cors.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L90) -- [apiAuth/cors.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L91) -- [apiAuth/cors.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L92) -- [apiAuth/cors.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L93) -- [apiAuth/cors.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L94) -- [apiAuth/cors.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L95) -- [apiAuth/cors.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L96) -- [apiAuth/cors.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L97) -- [apiAuth/cors.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L98) -- [apiAuth/cors.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L99) -- [apiAuth/cors.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L100) -- [apiAuth/cors.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L118) -- [apiAuth/cors.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L119) -- [apiAuth/cors.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L120) -- [apiAuth/cors.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L121) -- [apiAuth/cors.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L122) -- [apiAuth/cors.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L123) -- [apiAuth/cors.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L142) -- [apiAuth/cors.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L143) -- [apiAuth/cors.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L144) -- [apiAuth/cors.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L145) -- [apiAuth/cors.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L146) -- [apiAuth/cors.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L147) -- [apiAuth/cors.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L148) -- [apiAuth/cors.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L149) -- [apiAuth/cors.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L150) -- [apiAuth/cors.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L151) -- [apiAuth/cors.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L152) -- [apiAuth/cors.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L153) -- [apiAuth/cors.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L154) -- [apiAuth/cors.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L155) -- [apiAuth/cors.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L156) -- [apiAuth/cors.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L157) -- [apiAuth/cors.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L178) -- [apiAuth/cors.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L179) -- [apiAuth/cors.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L180) -- [apiAuth/cors.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L181) -- [apiAuth/cors.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L182) -- [apiAuth/cors.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L183) - -### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) -### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) - -- [apiAuthOcs/ocsGETAuth.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L243) - -### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) - -- [apiAuthWebDav/webDavDELETEAuth.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L78) -- [apiAuthWebDav/webDavDELETEAuth.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L92) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiCapabilities/capabilities.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L8) -- [apiCapabilities/capabilities.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L15) -- [apiCapabilities/capabilities.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L21) -- [apiCapabilities/capabilities.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L27) -- [apiCapabilities/capabilities.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L33) -- [apiCapabilities/capabilities.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L38) -- [apiCapabilities/capabilities.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L80) -- [apiCapabilities/capabilities.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L93) -- [apiCapabilities/capabilities.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L107) -- [apiCapabilities/capabilities.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L116) -- [apiCapabilities/capabilities.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L138) -- [apiCapabilities/capabilities.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L144) -- [apiCapabilities/capabilities.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L151) -- [apiCapabilities/capabilities.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L157) -- [apiCapabilities/capabilities.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L166) -- [apiCapabilities/capabilities.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L176) -- [apiCapabilities/capabilities.feature:187](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L187) -- [apiCapabilities/capabilities.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L198) -- [apiCapabilities/capabilities.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L208) -- [apiCapabilities/capabilities.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L219) -- [apiCapabilities/capabilities.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L231) -- [apiCapabilities/capabilities.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L238) -- [apiCapabilities/capabilities.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L252) -- [apiCapabilities/capabilities.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L275) -- [apiCapabilities/capabilities.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L292) -- [apiCapabilities/capabilities.feature:313](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L313) -- [apiCapabilities/capabilities.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L335) -- [apiCapabilities/capabilities.feature:357](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L357) -- [apiCapabilities/capabilities.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L379) -- [apiCapabilities/capabilities.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L404) -- [apiCapabilities/capabilities.feature:429](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L429) -- [apiCapabilities/capabilities.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L454) -- [apiCapabilities/capabilities.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L476) -- [apiCapabilities/capabilities.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L498) -- [apiCapabilities/capabilities.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L521) -- [apiCapabilities/capabilities.feature:546](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L546) -- [apiCapabilities/capabilities.feature:568](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L568) -- [apiCapabilities/capabilities.feature:590](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L590) -- [apiCapabilities/capabilities.feature:613](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L613) -- [apiCapabilities/capabilities.feature:637](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L637) -- [apiCapabilities/capabilities.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L658) -- [apiCapabilities/capabilities.feature:680](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L680) -- [apiCapabilities/capabilities.feature:703](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L703) -- [apiCapabilities/capabilities.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L729) -- [apiCapabilities/capabilities.feature:758](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L758) -- [apiCapabilities/capabilities.feature:787](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L787) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L25) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L26) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L47) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L48) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L66) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L67) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L87) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L88) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L25) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L26) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L44) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L45) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L64) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L65) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L83) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L84) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L103) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L104) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L122) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L123) - -- [apiMain/caldav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L8) -- [apiMain/caldav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L15) -- [apiMain/caldav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L23) -- [apiMain/caldav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L31) -- [apiMain/carddav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L8) -- [apiMain/carddav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L15) -- [apiMain/carddav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L23) -- [apiMain/carddav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L31) - -### [user-sync endpoint does not exist](https://github.com/owncloud/ocis/issues/1241) - -- [apiMain/userSync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L18) -- [apiMain/userSync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L19) -- [apiMain/userSync.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L29) -- [apiMain/userSync.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L30) -- [apiMain/userSync.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L40) -- [apiMain/userSync.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L41) -- [apiMain/userSync.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L52) -- [apiMain/userSync.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L53) -- [apiMain/userSync.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L63) -- [apiMain/userSync.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L64) - -- [apiProvisioning-v1/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L11) -- [apiProvisioning-v1/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L19) -- [apiProvisioning-v1/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L27) -- [apiProvisioning-v1/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L35) -- [apiProvisioning-v1/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L11) -- [apiProvisioning-v1/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L21) -- [apiProvisioning-v2/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L11) -- [apiProvisioning-v2/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L19) -- [apiProvisioning-v2/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L27) -- [apiProvisioning-v2/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L35) -- [apiProvisioning-v2/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L11) -- [apiProvisioning-v2/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L21) -- [apiProvisioning-v2/getSubAdmins.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L30) -- [apiProvisioning-v2/getSubAdmins.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L44) -- [apiTranslation/translation.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L29) -- [apiTranslation/translation.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L30) - -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) -### [Expiration date for user shares is not implemented](https://github.com/owncloud/ocis/issues/1250) - -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L26) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L27) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L55) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L56) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L83) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L84) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L110) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L111) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L137) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L138) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L159) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L160) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L190) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L191) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L220) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L221) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L249) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L250) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L279) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L280) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:300](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L300) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L301) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L322) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:323](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L323) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:344](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L344) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:345](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L345) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L367) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L368) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:385](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L385) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:386](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L386) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L403) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L404) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:426](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L426) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:427](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L427) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L450) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L451) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L474) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L475) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:499](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L499) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:500](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L500) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L521) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:522](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L522) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:543](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L543) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:544](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L544) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:563](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L563) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:564](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L564) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:581](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L581) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:582](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L582) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:603](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L603) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:604](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L604) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:628](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L628) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:629](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L629) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:630](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L630) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:631](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L631) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L632) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:653](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L653) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:654](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L654) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:655](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L655) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:656](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L656) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:657](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L657) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L658) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:659](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L659) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:660](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L660) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:661](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L661) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:662](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L662) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:663](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L663) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:664](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L664) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:685](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L685) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:686](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L686) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:687](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L687) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:688](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L688) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:689](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L689) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:690](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L690) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:711](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L711) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:712](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L712) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:713](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L713) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:714](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L714) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:715](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L715) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:716](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L716) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:737](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L737) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:738](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L738) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:759](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L759) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:760](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L760) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:781](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L781) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:782](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L782) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L36) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L37) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L65) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L66) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L85) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L86) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L106) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L107) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L201) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L202) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L10) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L34) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L58) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L82) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L46) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L47) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L48) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L49) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L50) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L51) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L82) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L83) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L84) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L85) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L86) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L87) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:438](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L438) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:439](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L439) -- [apiShareOperationsToShares/accessToShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L71) -- [apiShareOperationsToShares/accessToShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L72) - -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - -- [apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature#L15) -- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L18) -- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L21) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L51) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L52) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L70) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L71) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L72) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L73) -- [apiShareManagementToShares/moveReceivedShare.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L14) -- [apiShareManagementToShares/moveReceivedShare.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L28) -- [apiShareManagementToShares/moveReceivedShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L39) -- [apiShareManagementToShares/moveReceivedShare.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L70) -- [apiShareManagementToShares/moveReceivedShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L71) -- [apiShareManagementToShares/moveReceivedShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L73) -- [apiShareManagementToShares/moveReceivedShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L88) -- [apiShareManagementToShares/moveReceivedShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L118) -- [apiShareManagementToShares/moveReceivedShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L128) -- [apiShareManagementToShares/moveReceivedShare.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L138) -- [apiShareManagementToShares/moveReceivedShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L148) -- [apiShareManagementToShares/moveReceivedShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L158) -- [apiShareManagementToShares/moveReceivedShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L168) -- [apiShareManagementToShares/moveReceivedShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L197) -- [apiShareManagementToShares/moveReceivedShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L198) -- [apiShareManagementToShares/moveReceivedShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L221) -- [apiShareManagementToShares/moveReceivedShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L222) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L59) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L60) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L94) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L95) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L129) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L130) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L177) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L178) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L212) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L213) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L247) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L248) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:282](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L282) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L283) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L317) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L318) -- [apiShareUpdateToShares/updateShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L92) -- [apiShareUpdateToShares/updateShare.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L93) -- [apiShareUpdateToShares/updateShare.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L94) -- [apiShareUpdateToShares/updateShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L95) -- [apiShareUpdateToShares/updateShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L96) -- [apiShareUpdateToShares/updateShare.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L97) -- [apiShareUpdateToShares/updateShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L123) -- [apiShareUpdateToShares/updateShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L155) - -### [No way to set default folder for received shares](https://github.com/owncloud/ocis/issues/1327) - -- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L21) -- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L22) - -### [Group shares support ](https://github.com/owncloud/ocis/issues/1289) - -- [apiShareOperationsToShares/gettingShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L103) -- [apiShareOperationsToShares/gettingShares.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L104) -- [apiShareOperationsToShares/gettingShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L184) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) -### [Group shares support](https://github.com/owncloud/ocis/issues/1289) - -- [apiShareUpdateToShares/updateShare.feature:290](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L290) -- [apiShareUpdateToShares/updateShare.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L291) -- [apiShareUpdateToShares/updateShare.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L306) -- [apiShareUpdateToShares/updateShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L307) -- [apiShareUpdateToShares/updateShare.feature:334](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L334) -- [apiShareUpdateToShares/updateShare.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L335) -- [apiShareUpdateToShares/updateShare.feature:364](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L364) -- [apiShareUpdateToShares/updateShare.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L365) - -### [Group shares support](https://github.com/owncloud/ocis/issues/1289) -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - -- [apiShareUpdateToShares/updateShare.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L61) -- [apiShareUpdateToShares/updateShare.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L62) -- [apiShareUpdateToShares/updateShare.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L75) -- [apiShareUpdateToShares/updateShare.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L76) -- [apiShareUpdateToShares/updateShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L115) -- [apiShareUpdateToShares/updateShare.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L116) -- [apiShareUpdateToShares/updateShare.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L117) -- [apiShareUpdateToShares/updateShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L118) -- [apiShareUpdateToShares/updateShare.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L119) -- [apiShareUpdateToShares/updateShare.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L120) -- [apiShareUpdateToShares/updateShare.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L252) -- [apiShareUpdateToShares/updateShare.feature:253](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L253) -- [apiShareUpdateToShares/updateShare.feature:265](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L265) -- [apiShareUpdateToShares/updateShare.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L266) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L34) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L35) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L54) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L55) - -### [Share additional info](https://github.com/owncloud/ocis/issues/1253) -### [Share extra attributes](https://github.com/owncloud/ocis/issues/1224) -### [Edit user share response has an "name" field](https://github.com/owncloud/ocis/issues/1225) - -- [apiShareUpdateToShares/updateShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L230) -- [apiShareUpdateToShares/updateShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L231) - -### [Webdav LOCK operations](https://github.com/owncloud/ocis/issues/1284) +#### [Webdav LOCK operations](https://github.com/owncloud/ocis/issues/1284) - [apiWebdavLocks/exclusiveLocks.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L17) - [apiWebdavLocks/exclusiveLocks.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L18) - [apiWebdavLocks/exclusiveLocks.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L19) @@ -2215,61 +769,1177 @@ - [apiWebdavLocksUnlock/unlockSharingToShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToShares.feature#L167) - [apiWebdavLocksUnlock/unlockSharingToShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToShares.feature#L168) -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) +### Share +File and sync features in a shared scenario -- [apiWebdavProperties1/copyFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L220) -- [apiWebdavProperties1/copyFile.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L221) -- [apiWebdavProperties1/copyFile.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L237) -- [apiWebdavProperties1/copyFile.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L238) -- [apiWebdavProperties1/copyFile.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L259) -- [apiWebdavProperties1/copyFile.feature:260](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L260) -- [apiWebdavProperties1/copyFile.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L283) -- [apiWebdavProperties1/copyFile.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L284) -- [apiWebdavProperties1/copyFile.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L306) -- [apiWebdavProperties1/copyFile.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L307) -- [apiWebdavProperties1/copyFile.feature:329](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L329) -- [apiWebdavProperties1/copyFile.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L330) +#### [etags don't change for a share receiver](https://github.com/owncloud/product/issues/243) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L95) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L96) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L125) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:126](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L126) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L157) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L158) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:189](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L189) +- [apiWebdavEtagPropagation1/deleteFileFolder.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/deleteFileFolder.feature#L190) -### [creating existing group doesn't gives error](https://github.com/owncloud/product/issues/282) -- [apiProvisioningGroups-v1/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L94) -- [apiProvisioningGroups-v2/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L94) +#### [etags don't change for a share receiver](https://github.com/owncloud/product/issues/243) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L244) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L245) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L314) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L315) -### [cannot create group with '/'](https://github.com/owncloud/product/issues/285) -- [apiProvisioningGroups-v1/addToGroup.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L75) -- [apiProvisioningGroups-v1/addToGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L76) -- [apiProvisioningGroups-v1/addToGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L77) -- [apiProvisioningGroups-v1/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L85) -- [apiProvisioningGroups-v1/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L86) -- [apiProvisioningGroups-v1/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L87) -- [apiProvisioningGroups-v1/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L38) -- [apiProvisioningGroups-v1/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L76) -- [apiProvisioningGroups-v1/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L77) -- [apiProvisioningGroups-v1/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L78) -- [apiProvisioningGroups-v2/addToGroup.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L70) -- [apiProvisioningGroups-v2/addToGroup.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L71) -- [apiProvisioningGroups-v2/addToGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L72) -- [apiProvisioningGroups-v2/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L85) -- [apiProvisioningGroups-v2/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L86) -- [apiProvisioningGroups-v2/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L87) -- [apiProvisioningGroups-v2/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L38) -- [apiProvisioningGroups-v2/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L76) -- [apiProvisioningGroups-v2/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L77) -- [apiProvisioningGroups-v2/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L78) +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) -### [adding user to non-existent group gives wrong statuscode](https://github.com/owncloud/product/issues/286) -- [apiProvisioningGroups-v1/addToGroup.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L107) -- [apiProvisioningGroups-v1/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L101) +- [apiShareOperationsToShares/uploadToShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L39) +- [apiShareOperationsToShares/uploadToShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L40) +- [apiShareOperationsToShares/uploadToShare.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L91) +- [apiShareOperationsToShares/uploadToShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L92) +- [apiShareOperationsToShares/uploadToShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L139) +- [apiShareOperationsToShares/uploadToShare.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L140) -- [apiProvisioningGroups-v2/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L101) +#### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) +- [apiMain/checksums.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L119) Scenario: Sharing a file with checksum should return the checksum in the propfind using new DAV path +- [apiMain/checksums.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L129) Scenario: Sharing and modifying a file should return correct checksum in the propfind using new DAV path -### [adding user to empty group gives wrong statuscode](https://github.com/owncloud/product/issues/287) -- [apiProvisioningGroups-v1/addToGroup.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L116) +#### [Searching sharee with displayname](https://github.com/owncloud/ocis/issues/547) +- [apiSharees/sharees.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L32) +- [apiSharees/sharees.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L33) +- [apiSharees/sharees.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L53) +- [apiSharees/sharees.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L54) +- [apiSharees/sharees.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L74) +- [apiSharees/sharees.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L75) +- [apiSharees/sharees.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L98) +- [apiSharees/sharees.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L99) +- [apiSharees/sharees.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L118) +- [apiSharees/sharees.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L119) +- [apiSharees/sharees.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L137) +- [apiSharees/sharees.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L138) +- [apiSharees/sharees.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L157) +- [apiSharees/sharees.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L158) +- [apiSharees/sharees.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L177) +- [apiSharees/sharees.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L178) +- [apiSharees/sharees.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L198) +- [apiSharees/sharees.feature:199](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L199) +- [apiSharees/sharees.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L217) +- [apiSharees/sharees.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L218) +- [apiSharees/sharees.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L237) +- [apiSharees/sharees.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L238) +- [apiSharees/sharees.feature:257](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L257) +- [apiSharees/sharees.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L258) +- [apiSharees/sharees.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L277) +- [apiSharees/sharees.feature:278](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L278) +- [apiSharees/sharees.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L297) +- [apiSharees/sharees.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L298) +- [apiSharees/sharees.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L317) +- [apiSharees/sharees.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L318) +- [apiSharees/sharees.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L336) +- [apiSharees/sharees.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L337) +- [apiSharees/sharees.feature:355](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L355) +- [apiSharees/sharees.feature:356](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L356) +- [apiSharees/sharees.feature:374](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L374) +- [apiSharees/sharees.feature:375](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L375) +- [apiSharees/sharees.feature:393](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L393) +- [apiSharees/sharees.feature:394](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L394) +- [apiSharees/sharees.feature:412](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L412) +- [apiSharees/sharees.feature:413](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L413) +- [apiSharees/sharees.feature:430](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L430) +- [apiSharees/sharees.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L431) +- [apiSharees/sharees.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L450) +- [apiSharees/sharees.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L451) +- [apiSharees/sharees.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L475) +- [apiSharees/sharees.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L476) +- [apiSharees/sharees.feature:495](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L495) +- [apiSharees/sharees.feature:496](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L496) +- [apiSharees/sharees.feature:515](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L515) +- [apiSharees/sharees.feature:516](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L516) +- [apiSharees/sharees.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L537) +- [apiSharees/sharees.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L538) -### [adding non-existent user to a group gives wrong status code](https://github.com/owncloud/product/issues/288) -- [apiProvisioningGroups-v1/addToGroup.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L124) +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiShareManagementToShares/acceptShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L22) +- [apiShareManagementToShares/acceptShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L223) +- [apiShareManagementToShares/acceptShares.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L270) +- [apiShareManagementToShares/acceptShares.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L342) +- [apiShareManagementToShares/acceptShares.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L378) +- [apiShareManagementToShares/acceptShares.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L417) -### [subadmin endpoints not implemented](https://github.com/owncloud/product/issues/289) +#### User cannot create a folder named Share +- [apiShareManagementToShares/acceptShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L279) +- [apiShareManagementToShares/acceptShares.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L298) + +#### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) + +- [apiShareManagementToShares/acceptShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L71) +- [apiShareManagementToShares/acceptShares.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L162) +- [apiShareManagementToShares/acceptShares.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L175) +- [apiShareManagementToShares/acceptShares.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L196) +- [apiShareManagementToShares/acceptShares.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L249) +- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L28) +- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L48) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L140) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L141) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L176) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L177) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) + +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L36) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L37) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L66) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L67) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L91) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L92) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L94) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L95) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L97) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L98) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L155) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L156) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:288](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L288) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L289) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L305) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L306) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L46) +- [apiShareManagementToShares/mergeShare.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L32) +- [apiShareManagementToShares/mergeShare.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L42) +- [apiShareManagementToShares/mergeShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L89) + +#### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L100) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L101) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L179) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L180) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L204) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L205) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L236) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L237) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L258) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L259) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L324) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:325](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L325) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:362](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L362) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:363](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L363) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:392](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L392) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:461](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L461) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:462](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L462) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:497](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L497) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L498) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:501](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L501) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L28) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L29) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L89) + +#### [shares are mounted into /Shares folder even after the sharer deletes the collaborator](https://github.com/owncloud/ocis/issues/720) +#### [deleting share response does not contain `data` field](https://github.com/owncloud/ocis/issues/721) + +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L43) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L44) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L367) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:529](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L529) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:547](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L547) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:565](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L565) + +#### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L342) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:343](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L343) + +#### [File deletion using dav gives unique string in filename in the trashbin](https://github.com/owncloud/product/issues/178) + +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L58) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L72) + +cannot share a folder with create permission +#### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) + +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L118) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L130) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L181) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L182) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L183) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L184) + +#### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) +- [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) +- [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) + +#### [There is no such thing like a super-user](https://github.com/owncloud/ocis/issues/1319) + +- [apiShareOperationsToShares/gettingShares.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L38) +- [apiShareOperationsToShares/gettingShares.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L39) + +#### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) +#### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis-reva/issues/301) +#### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) + +- [apiShareOperationsToShares/gettingShares.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L135) +- [apiShareOperationsToShares/gettingShares.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L136) + +#### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis/issues/1233) + +- [apiShareOperationsToShares/gettingShares.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L180) +- [apiShareOperationsToShares/gettingShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L181) + +#### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) + +- [apiShareOperationsToShares/gettingShares.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L219) +- [apiShareOperationsToShares/gettingShares.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L220) + +#### [Allow getting the share list filtered by share type via API](https://github.com/owncloud/ocis/issues/774) + +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L44) +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L45) +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L56) +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L57) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L47) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L48) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L60) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L61) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L41) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L42) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L62) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L63) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L90) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L91) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L48) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L49) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L62) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L63) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L76) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L77) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L92) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L93) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L39) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L40) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L60) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L61) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L79) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L80) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) + +- [apiShareOperationsToShares/gettingShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L167) +- [apiShareOperationsToShares/gettingShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L168) + +- [apiSharePublicLink1/createPublicLinkShare.feature:793](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L793) +- [apiSharePublicLink1/createPublicLinkShare.feature:804](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L804) + +#### [Cannot set mtime on upload](https://github.com/owncloud/product/issues/271) + +- [apiSharePublicLink1/createPublicLinkShare.feature:775](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L775) +- [apiSharePublicLink1/createPublicLinkShare.feature:776](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L776) +- [apiSharePublicLink1/createPublicLinkShare.feature:789](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L789) +- [apiSharePublicLink1/createPublicLinkShare.feature:790](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L790) + +#### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) +#### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) +#### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) + +- [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) +- [apiSharePublicLink1/accessToPublicLinkShare.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L20) +- [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) +- [apiSharePublicLink1/accessToPublicLinkShare.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L43) + +#### [creating public links with permissions fails](https://github.com/owncloud/product/issues/252) + +- [apiSharePublicLink1/changingPublicLinkShare.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L22) +- [apiSharePublicLink1/changingPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L23) +- [apiSharePublicLink1/changingPublicLinkShare.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L37) +- [apiSharePublicLink1/changingPublicLinkShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L41) +- [apiSharePublicLink1/changingPublicLinkShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L52) +- [apiSharePublicLink1/changingPublicLinkShare.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L85) +- [apiSharePublicLink1/changingPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L96) + +#### [Old webdav api does not work with public link](https://github.com/owncloud/product/issues/272) + +- [apiSharePublicLink1/changingPublicLinkShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L63) +- [apiSharePublicLink1/changingPublicLinkShare.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L107) +- [apiSharePublicLink1/changingPublicLinkShare.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L151) +- [apiSharePublicLink1/changingPublicLinkShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L197) +- [apiSharePublicLink1/changingPublicLinkShare.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L244) + +#### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) + +- [apiSharePublicLink1/changingPublicLinkShare.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L267) +- [apiSharePublicLink1/changingPublicLinkShare.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L289) +- [apiSharePublicLink1/createPublicLinkShare.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L34) +- [apiSharePublicLink1/createPublicLinkShare.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L35) +- [apiSharePublicLink1/createPublicLinkShare.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L183) +- [apiSharePublicLink1/createPublicLinkShare.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L184) +- [apiSharePublicLink1/createPublicLinkShare.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L214) +- [apiSharePublicLink1/createPublicLinkShare.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L215) +- [apiSharePublicLink1/createPublicLinkShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L307) +- [apiSharePublicLink1/createPublicLinkShare.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L308) +- [apiSharePublicLink1/createPublicLinkShare.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L370) +- [apiSharePublicLink1/createPublicLinkShare.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L371) + +#### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) + +- [apiSharePublicLink1/createPublicLinkShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L95) +- [apiSharePublicLink1/createPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L96) +- [apiSharePublicLink1/createPublicLinkShare.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L276) +- [apiSharePublicLink1/createPublicLinkShare.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L277) + +#### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis/issues/1293) + +- [apiSharePublicLink1/createPublicLinkShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L127) +- [apiSharePublicLink1/createPublicLinkShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L128) +- [apiSharePublicLink1/createPublicLinkShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L155) +- [apiSharePublicLink1/createPublicLinkShare.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L156) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) + +- [apiSharePublicLink1/createPublicLinkShare.feature:410](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L410) +- [apiSharePublicLink1/createPublicLinkShare.feature:411](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L411) +- [apiSharePublicLink1/createPublicLinkShare.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L431) +- [apiSharePublicLink1/createPublicLinkShare.feature:432](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L432) +- [apiSharePublicLink1/createPublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L454) +- [apiSharePublicLink1/createPublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L455) +- [apiSharePublicLink1/createPublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L477) +- [apiSharePublicLink1/createPublicLinkShare.feature:478](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L478) +- [apiSharePublicLink1/createPublicLinkShare.feature:479](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L479) +- [apiSharePublicLink1/createPublicLinkShare.feature:480](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L480) +- [apiSharePublicLink1/createPublicLinkShare.feature:481](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L481) +- [apiSharePublicLink1/createPublicLinkShare.feature:482](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L482) +- [apiSharePublicLink1/createPublicLinkShare.feature:502](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L502) +- [apiSharePublicLink1/createPublicLinkShare.feature:503](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L503) +- [apiSharePublicLink1/createPublicLinkShare.feature:518](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L518) +- [apiSharePublicLink1/createPublicLinkShare.feature:519](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L519) +- [apiSharePublicLink1/createPublicLinkShare.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L537) +- [apiSharePublicLink1/createPublicLinkShare.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L538) +- [apiSharePublicLink1/createPublicLinkShare.feature:574](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L574) +- [apiSharePublicLink1/createPublicLinkShare.feature:575](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L575) +- [apiSharePublicLink1/createPublicLinkShare.feature:635](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L635) +- [apiSharePublicLink1/createPublicLinkShare.feature:636](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L636) +- [apiSharePublicLink1/createPublicLinkShare.feature:649](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L649) +- [apiSharePublicLink1/createPublicLinkShare.feature:650](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L650) +- [apiSharePublicLink1/createPublicLinkShare.feature:678](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L678) +- [apiSharePublicLink1/createPublicLinkShare.feature:679](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L679) +- [apiSharePublicLink1/createPublicLinkShare.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L729) +- [apiSharePublicLink1/createPublicLinkShare.feature:730](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L730) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L163) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L164) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L165) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L166) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L42) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L43) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L69) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L70) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L97) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L98) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L135) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L136) + +#### [Public cannot upload file with mtime set on a public link share with new version of WebDAV API](https://github.com/owncloud/core/issues/37605) + +- [apiSharePublicLink1/createPublicLinkShare.feature:733](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L733) +- [apiSharePublicLink1/createPublicLinkShare.feature:742](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L742) + +#### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis/issues/1232) + +- [apiSharePublicLink2/copyFromPublicLink.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L60) +- [apiSharePublicLink2/copyFromPublicLink.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L85) +- [apiSharePublicLink2/copyFromPublicLink.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L166) +- [apiSharePublicLink2/copyFromPublicLink.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L167) +- [apiSharePublicLink2/copyFromPublicLink.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L182) +- [apiSharePublicLink2/copyFromPublicLink.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L183) +- [apiSharePublicLink2/updatePublicLinkShare.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L44) +- [apiSharePublicLink2/updatePublicLinkShare.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L45) +- [apiSharePublicLink2/updatePublicLinkShare.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L114) +- [apiSharePublicLink2/updatePublicLinkShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L115) +- [apiSharePublicLink2/updatePublicLinkShare.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L130) +- [apiSharePublicLink2/updatePublicLinkShare.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L131) +- [apiSharePublicLink2/updatePublicLinkShare.feature:321](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L321) +- [apiSharePublicLink2/updatePublicLinkShare.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L322) + +#### [OCIS share permissions not enforced](https://github.com/owncloud/product/issues/270) + +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L157) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L158) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L179) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L180) + +#### [OCIS old public webdav api doesnt works](https://github.com/owncloud/product/issues/272) + +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L30) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L31) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L50) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L51) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L71) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L72) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L92) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L93) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L114) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L115) + +#### [listing received shares does not work](https://github.com/owncloud/ocis-reva/issues/11) + +- [apiSharePublicLink2/updatePublicLinkShare.feature:340](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L340) +- [apiSharePublicLink2/updatePublicLinkShare.feature:341](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L341) +- [apiSharePublicLink2/updatePublicLinkShare.feature:359](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L359) +- [apiSharePublicLink2/updatePublicLinkShare.feature:360](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L360) +- [apiSharePublicLink2/updatePublicLinkShare.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L378) +- [apiSharePublicLink2/updatePublicLinkShare.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L379) +- [apiSharePublicLink2/updatePublicLinkShare.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L397) +- [apiSharePublicLink2/updatePublicLinkShare.feature:398](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L398) +- [apiSharePublicLink2/updatePublicLinkShare.feature:416](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L416) +- [apiSharePublicLink2/updatePublicLinkShare.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L417) +- [apiSharePublicLink2/updatePublicLinkShare.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L435) +- [apiSharePublicLink2/updatePublicLinkShare.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L436) +- [apiSharePublicLink2/updatePublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L454) +- [apiSharePublicLink2/updatePublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L455) +- [apiSharePublicLink2/updatePublicLinkShare.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L476) +- [apiSharePublicLink2/updatePublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L477) + +#### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) + +- [apiSharePublicLink2/updatePublicLinkShare.feature:523](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L523) +- [apiSharePublicLink2/updatePublicLinkShare.feature:524](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L524) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L9) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L83) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L103) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) + +#### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L48) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L49) + +#### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis-reva/issues/286) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L273) + +#### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis/issues/1268) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L66) + +#### [Set quota over settings](https://github.com/owncloud/ocis/issues/1290) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L148) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L158) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L167) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L177) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:186](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L186) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L196) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L206) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L217) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L238) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L255) + +#### [Resharing does not work with ocis storage](https://github.com/owncloud/product/issues/265) + +- [apiShareReshareToShares1/reShare.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L56) +- [apiShareReshareToShares1/reShare.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L57) +- [apiShareReshareToShares1/reShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L72) +- [apiShareReshareToShares1/reShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L73) +- [apiShareReshareToShares1/reShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L88) +- [apiShareReshareToShares1/reShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L89) +- [apiShareReshareToShares1/reShare.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L104) +- [apiShareReshareToShares1/reShare.feature:105](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L105) +- [apiShareReshareToShares1/reShare.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L159) +- [apiShareReshareToShares1/reShare.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L160) +- [apiShareReshareToShares1/reShare.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L161) +- [apiShareReshareToShares1/reShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L162) +- [apiShareReshareToShares1/reShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L163) +- [apiShareReshareToShares1/reShare.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L164) +- [apiShareReshareToShares1/reShare.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L165) +- [apiShareReshareToShares1/reShare.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L166) +- [apiShareReshareToShares1/reShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L167) +- [apiShareReshareToShares1/reShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L168) +- [apiShareReshareToShares1/reShare.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L169) +- [apiShareReshareToShares1/reShare.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L170) +- [apiShareReshareToShares1/reShare.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L171) +- [apiShareReshareToShares1/reShare.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L172) +- [apiShareReshareToShares1/reShare.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L173) +- [apiShareReshareToShares1/reShare.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L174) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L365) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:366](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L366) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L367) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L368) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:400](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L400) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:401](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L401) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:402](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L402) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L403) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L404) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:405](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L405) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:434](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L434) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L435) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L436) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:437](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L437) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:465](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L465) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:466](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L466) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L245) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L246) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L247) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L248) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L150) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L151) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L152) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L153) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L89) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L90) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L91) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L92) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L33) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L34) + +#### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) + +- [apiShareReshareToShares2/reShareChain.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareChain.feature#L10) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) + +- [apiShareReshareToShares2/reShareDisabled.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L24) +- [apiShareReshareToShares2/reShareDisabled.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L25) +- [apiShareReshareToShares2/reShareDisabled.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L39) +- [apiShareReshareToShares2/reShareDisabled.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L40) + +#### [share permissions are not enforced](https://github.com/owncloud/product/issues/270) + +- [apiShareManagementToShares/mergeShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L24) +- [apiShareManagementToShares/mergeShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L52) +- [apiShareManagementToShares/mergeShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L79) +- [apiShareManagementToShares/mergeShare.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L99) +- [apiShareReshareToShares3/reShareUpdate.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L59) +- [apiShareReshareToShares3/reShareUpdate.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L60) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) + +- [apiShareReshareToShares2/reShareSubfolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L28) +- [apiShareReshareToShares2/reShareSubfolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L29) +- [apiShareReshareToShares2/reShareSubfolder.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L106) +- [apiShareReshareToShares2/reShareSubfolder.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L107) +- [apiShareReshareToShares2/reShareSubfolder.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L128) +- [apiShareReshareToShares2/reShareSubfolder.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L129) +- [apiShareReshareToShares2/reShareSubfolder.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L150) +- [apiShareReshareToShares2/reShareSubfolder.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L151) + + +#### [Share receiver cannot get share by id](https://github.com/owncloud/product/issues/253) + +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) + +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L24) +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L25) +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L41) +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L42) +- [apiShareReshareToShares3/reShareUpdate.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L112) +- [apiShareReshareToShares3/reShareUpdate.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L113) +- [apiShareReshareToShares3/reShareUpdate.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L131) +- [apiShareReshareToShares3/reShareUpdate.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L132) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L61) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L62) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L121) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L122) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L123) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L124) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L181) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L182) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L183) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L184) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L212) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L213) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L214) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L215) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L302) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:303](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L303) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:304](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L304) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L305) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L335) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L336) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L337) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:338](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L338) + +#### [invalid format of sharees response](https://github.com/owncloud/product/issues/292) + +#### [deleting a received share-folder moves it to trash-bin but does not unshare it](https://github.com/owncloud/ocis/issues/1123) + +- [apiTrashbin/trashbinSharingToShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L24) +- [apiTrashbin/trashbinSharingToShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L25) +- [apiShareManagementToShares/acceptShares.feature:469](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L469) +- [apiShareManagementToShares/acceptShares.feature:470](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L470) + +#### [deleting a file inside a received shared folder is moved to the trash-bin of the sharer not the receiver](https://github.com/owncloud/ocis/issues/1124) + +- [apiTrashbin/trashbinSharingToShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L40) +- [apiTrashbin/trashbinSharingToShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L41) +- [apiTrashbin/trashbinSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L63) +- [apiTrashbin/trashbinSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L64) +- [apiTrashbin/trashbinSharingToShares.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L82) +- [apiTrashbin/trashbinSharingToShares.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L83) +- [apiTrashbin/trashbinSharingToShares.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L102) +- [apiTrashbin/trashbinSharingToShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L103) + +#### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) +- [apiShareOperationsToShares/uploadToShare.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L246) + +#### Copying into a shared folder +Scenario Outline: Copying a file to a folder with no permissions +- [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) +- [apiWebdavProperties1/copyFile.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L66) + Scenario Outline: Copying a file to overwrite a file into a folder with no permissions +- [apiWebdavProperties1/copyFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L85) +- [apiWebdavProperties1/copyFile.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L86) + +#### Share jail related +Scenario Outline: delete a folder when there is a default folder for received shares +- [apiWebdavOperations/deleteFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L67) +- [apiWebdavOperations/deleteFolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L68) +- [apiWebdavOperations/deleteFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L69) +- [apiWebdavOperations/deleteFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L70) + Scenario Outline: delete a folder when there is a default folder for received shares that is a multi-level path +- [apiWebdavOperations/deleteFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L91) +- [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) + +- [apiWebdavProperties1/copyFile.feature:350](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L350) +- [apiWebdavProperties1/copyFile.feature:351](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L351) +- [apiWebdavProperties1/copyFile.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L370) +- [apiWebdavProperties1/copyFile.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L371) +- [apiWebdavProperties1/copyFile.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L395) +- [apiWebdavProperties1/copyFile.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L396) +- [apiWebdavProperties1/copyFile.feature:422](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L422) +- [apiWebdavProperties1/copyFile.feature:423](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L423) +- [apiWebdavProperties1/copyFile.feature:448](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L448) +- [apiWebdavProperties1/copyFile.feature:449](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L449) +- [apiWebdavProperties1/copyFile.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L474) +- [apiWebdavProperties1/copyFile.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L475) + +#### [quota query](https://github.com/owncloud/ocis/issues/1313) +- [apiMain/quota.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L41) Scenario: Uploading a file in received folder having enough quota +- [apiMain/quota.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L54) Scenario: Uploading a file in received folder having insufficient quota +- [apiMain/quota.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L68) Scenario: Overwriting a file in received folder having enough quota +- [apiMain/quota.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L82) Scenario: Overwriting a file in received folder having insufficient quota +- [apiMain/quota.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L99) Scenario: Overwriting a received file having enough quota +- [apiMain/quota.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L112) Scenario: Overwriting a received file having insufficient quota + Scenario Outline: Retrieving folder quota of shared folder with quota when no quota is set for recipient +- [apiWebdavProperties1/getQuota.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L48) +- [apiWebdavProperties1/getQuota.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L49) + Scenario Outline: Retrieving folder quota when quota is set and a file was uploaded +- [apiWebdavProperties1/getQuota.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L61) +- [apiWebdavProperties1/getQuota.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L62) + Scenario Outline: Retrieving folder quota when quota is set and a file was received +- [apiWebdavProperties1/getQuota.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L77) +- [apiWebdavProperties1/getQuota.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L78) + +#### [cannot get share-types webdav property](https://github.com/owncloud/ocis/issues/567) +- [apiWebdavProperties2/getFileProperties.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L174) +- [apiWebdavProperties2/getFileProperties.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L175) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiWebdavProperties2/getFileProperties.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L156) +- [apiWebdavProperties2/getFileProperties.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L157) +- [apiWebdavProperties2/getFileProperties.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L206) +- [apiWebdavProperties2/getFileProperties.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L207) + +#### [Private link support](https://github.com/owncloud/product/issues/201) +#### [oc:privatelink property not returned in webdav responses](https://github.com/owncloud/product/issues/262) +- [apiWebdavProperties2/getFileProperties.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L232) +- [apiWebdavProperties2/getFileProperties.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L233) + +#### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) +- [apiShareOperationsToShares/uploadToShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L162) +- [apiShareOperationsToShares/uploadToShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L163) +- [apiShareOperationsToShares/uploadToShare.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L181) +- [apiShareOperationsToShares/uploadToShare.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L182) +- [apiShareOperationsToShares/uploadToShare.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L202) +- [apiShareOperationsToShares/uploadToShare.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L203) +- [apiShareOperationsToShares/uploadToShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L221) +- [apiShareOperationsToShares/uploadToShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L222) +- [apiShareOperationsToShares/uploadToShare.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L242) +- [apiShareOperationsToShares/uploadToShare.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L243) + + +#### [not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) +- [apiShareOperationsToShares/changingFilesShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L23) +- [apiShareOperationsToShares/changingFilesShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L24) +- [apiShareOperationsToShares/changingFilesShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L63) +- [apiShareOperationsToShares/changingFilesShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L79) +- [apiShareOperationsToShares/changingFilesShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L95) + +#### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) +- [apiShareOperationsToShares/changingFilesShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L40) +- [apiShareOperationsToShares/changingFilesShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L41) +- [apiShareOperationsToShares/changingFilesShare.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L59) +- [apiShareOperationsToShares/changingFilesShare.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L60) + +Scenario Outline: Moving a file into a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L89) +- [apiWebdavMove2/moveFile.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L90) +- [apiWebdavMove2/moveFile.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L91) +- [apiWebdavMove2/moveFile.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L92) + Scenario Outline: Moving a file out of a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L112) +- [apiWebdavMove2/moveFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L113) + Scenario Outline: Moving a folder into a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L136) +- [apiWebdavMove2/moveFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L137) +- [apiWebdavMove2/moveFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L138) +- [apiWebdavMove2/moveFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L139) + Scenario Outline: Moving a folder out of a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L160) +- [apiWebdavMove2/moveFile.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L161) + Scenario Outline: Moving a file to a shared folder with no permissions +- [apiWebdavMove2/moveFile.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L181) +- [apiWebdavMove2/moveFile.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L182) + Scenario Outline: Moving a file to overwrite a file in a shared folder with no permissions +- [apiWebdavMove2/moveFile.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L200) +- [apiWebdavMove2/moveFile.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L201) + Scenario Outline: rename a file into an invalid filename +- [apiWebdavMove2/moveFile.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L219) +- [apiWebdavMove2/moveFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L220) + Scenario Outline: Checking file id after a move between received shares +- [apiWebdavMove2/moveFile.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L255) +- [apiWebdavMove2/moveFile.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L256) + Scenario Outline: Renaming a file to a path with extension .part should not be possible +- [apiWebdavMove2/moveFile.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L272) +- [apiWebdavMove2/moveFile.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L273) + +#### [OCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) +- [apiVersions/fileVersionsSharingToShares.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L33) + +#### [restoring an older version of a shared file deletes the share](https://github.com/owncloud/ocis/issues/765) +- [apiShareManagementToShares/acceptShares.feature:473](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L473) +- [apiVersions/fileVersionsSharingToShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L44) + +#### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) +- [apiVersions/fileVersionsSharingToShares.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L134) +- [apiVersions/fileVersionsSharingToShares.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L149) +- [apiVersions/fileVersionsSharingToShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L163) +- [apiVersions/fileVersionsSharingToShares.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L250) +- [apiVersions/fileVersionsSharingToShares.feature:251](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L251) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiVersions/fileVersionsSharingToShares.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L179) + +####[not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) +- [apiVersions/fileVersionsSharingToShares.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L222) +- [apiVersions/fileVersionsSharingToShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L223) + +#### [getting the metadata without permission results in a 403 error](https://github.com/owncloud/ocis/issues/773) +- [apiVersions/fileVersionsSharingToShares.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L256) + +#### [The version number of a file is incorrect because of the incorrect number of `` and `` element](https://github.com/owncloud/ocis/issues/1234) +- [apiVersions/fileVersionsSharingToShares.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L267) + +#### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +#### [Expiration date for user shares is not implemented](https://github.com/owncloud/ocis/issues/1250) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L26) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L27) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L55) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L56) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L83) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L84) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L110) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L111) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L137) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L138) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L159) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L160) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L190) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L191) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L220) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L221) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L249) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L250) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L279) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L280) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:300](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L300) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L301) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L322) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:323](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L323) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:344](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L344) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:345](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L345) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L367) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L368) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:385](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L385) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:386](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L386) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L403) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L404) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:426](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L426) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:427](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L427) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L450) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L451) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L474) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L475) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:499](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L499) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:500](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L500) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L521) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:522](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L522) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:543](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L543) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:544](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L544) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:563](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L563) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:564](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L564) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:581](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L581) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:582](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L582) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:603](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L603) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:604](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L604) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:628](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L628) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:629](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L629) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:630](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L630) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:631](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L631) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L632) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:653](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L653) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:654](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L654) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:655](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L655) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:656](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L656) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:657](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L657) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L658) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:659](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L659) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:660](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L660) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:661](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L661) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:662](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L662) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:663](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L663) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:664](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L664) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:685](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L685) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:686](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L686) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:687](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L687) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:688](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L688) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:689](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L689) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:690](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L690) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:711](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L711) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:712](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L712) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:713](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L713) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:714](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L714) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:715](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L715) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:716](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L716) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:737](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L737) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:738](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L738) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:759](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L759) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:760](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L760) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:781](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L781) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:782](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L782) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L36) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L37) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L65) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L66) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L85) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L86) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L106) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L107) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L201) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L202) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L10) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L34) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L58) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L82) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L46) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L47) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L48) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L49) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L50) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L51) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L82) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L83) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L84) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L85) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L86) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L87) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:438](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L438) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:439](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L439) +- [apiShareOperationsToShares/accessToShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L71) +- [apiShareOperationsToShares/accessToShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L72) + +#### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +- [apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature#L15) +- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L18) +- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L21) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L51) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L52) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L70) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L71) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L72) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L73) +- [apiShareManagementToShares/moveReceivedShare.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L14) +- [apiShareManagementToShares/moveReceivedShare.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L28) +- [apiShareManagementToShares/moveReceivedShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L39) +- [apiShareManagementToShares/moveReceivedShare.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L70) +- [apiShareManagementToShares/moveReceivedShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L71) +- [apiShareManagementToShares/moveReceivedShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L73) +- [apiShareManagementToShares/moveReceivedShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L88) +- [apiShareManagementToShares/moveReceivedShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L118) +- [apiShareManagementToShares/moveReceivedShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L128) +- [apiShareManagementToShares/moveReceivedShare.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L138) +- [apiShareManagementToShares/moveReceivedShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L148) +- [apiShareManagementToShares/moveReceivedShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L158) +- [apiShareManagementToShares/moveReceivedShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L168) +- [apiShareManagementToShares/moveReceivedShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L197) +- [apiShareManagementToShares/moveReceivedShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L198) +- [apiShareManagementToShares/moveReceivedShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L221) +- [apiShareManagementToShares/moveReceivedShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L222) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L59) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L60) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L94) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L95) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L129) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L130) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L177) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L178) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L212) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L213) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L247) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L248) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:282](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L282) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L283) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L317) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L318) +- [apiShareUpdateToShares/updateShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L92) +- [apiShareUpdateToShares/updateShare.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L93) +- [apiShareUpdateToShares/updateShare.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L94) +- [apiShareUpdateToShares/updateShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L95) +- [apiShareUpdateToShares/updateShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L96) +- [apiShareUpdateToShares/updateShare.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L97) +- [apiShareUpdateToShares/updateShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L123) +- [apiShareUpdateToShares/updateShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L155) + +#### [No way to set default folder for received shares](https://github.com/owncloud/ocis/issues/1327) +- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L21) +- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L22) + +#### [Group shares support ](https://github.com/owncloud/ocis/issues/1289) +- [apiShareOperationsToShares/gettingShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L103) +- [apiShareOperationsToShares/gettingShares.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L104) +- [apiShareOperationsToShares/gettingShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L184) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) +#### [Group shares support](https://github.com/owncloud/ocis/issues/1289) +- [apiShareUpdateToShares/updateShare.feature:290](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L290) +- [apiShareUpdateToShares/updateShare.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L291) +- [apiShareUpdateToShares/updateShare.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L306) +- [apiShareUpdateToShares/updateShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L307) +- [apiShareUpdateToShares/updateShare.feature:334](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L334) +- [apiShareUpdateToShares/updateShare.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L335) +- [apiShareUpdateToShares/updateShare.feature:364](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L364) +- [apiShareUpdateToShares/updateShare.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L365) + +#### [Group shares support](https://github.com/owncloud/ocis/issues/1289) +#### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +- [apiShareUpdateToShares/updateShare.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L61) +- [apiShareUpdateToShares/updateShare.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L62) +- [apiShareUpdateToShares/updateShare.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L75) +- [apiShareUpdateToShares/updateShare.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L76) +- [apiShareUpdateToShares/updateShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L115) +- [apiShareUpdateToShares/updateShare.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L116) +- [apiShareUpdateToShares/updateShare.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L117) +- [apiShareUpdateToShares/updateShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L118) +- [apiShareUpdateToShares/updateShare.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L119) +- [apiShareUpdateToShares/updateShare.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L120) +- [apiShareUpdateToShares/updateShare.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L252) +- [apiShareUpdateToShares/updateShare.feature:253](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L253) +- [apiShareUpdateToShares/updateShare.feature:265](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L265) +- [apiShareUpdateToShares/updateShare.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L266) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L34) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L35) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L54) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L55) + +#### [Share additional info](https://github.com/owncloud/ocis/issues/1253) +#### [Share extra attributes](https://github.com/owncloud/ocis/issues/1224) +#### [Edit user share response has an "name" field](https://github.com/owncloud/ocis/issues/1225) +- [apiShareUpdateToShares/updateShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L230) +- [apiShareUpdateToShares/updateShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L231) + +#### [user can access version metadata of a received share before accepting it](https://github.com/owncloud/ocis/issues/760) +- [apiVersions/fileVersionsSharingToShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L279) + +#### [when a share exists its impossible to share a renamed folder](https://github.com/owncloud/ocis/issues/719) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:611](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L611) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:612](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L612) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:665](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L665) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:666](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L666) + +#### [ocis-storage PROPFIND on a file uploaded by share receiver is not possible](https://github.com/owncloud/ocis/issues/968) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L26) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L27) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L55) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L56) + +#### [OCIS-storage reading a file that a collaborator uploaded is impossible](https://github.com/owncloud/ocis/issues/763) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L70) +- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L71) + + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiWebdavUploadTUS/uploadToShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L52) +- [apiWebdavUploadTUS/uploadToShare.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L53) + +#### [Share lists deleted user as 'user'](https://github.com/owncloud/ocis/issues/903) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L632) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:633](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L633) + +#### [OCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) +- [apiVersions/fileVersionsSharingToShares.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L291) + +#### [deleting a share with wrong authentication returns OCS status 996 / HTTP 500](https://github.com/owncloud/ocis/issues/1229) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#211) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#212) + +### User Management +User and group management features + +#### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) +special character username not valid +- [apiProvisioning-v1/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L29) +- [apiProvisioning-v1/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L30) +- [apiProvisioning-v1/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L121) +- [apiProvisioning-v1/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L122) +- [apiProvisioning-v1/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L123) +- [apiProvisioning-v1/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L29) +- [apiProvisioning-v1/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L30) +- [apiProvisioning-v1/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L29) +- [apiProvisioning-v1/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L30) +- [apiProvisioning-v1/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L29) +- [apiProvisioning-v1/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L30) +- [apiProvisioning-v1/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L31) +- [apiProvisioning-v1/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L32) +- [apiProvisioning-v1/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L34) +- [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) +- [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) +- [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) +- [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) +- [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) +- [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) +- [apiProvisioning-v2/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L30) +- [apiProvisioning-v2/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L29) +- [apiProvisioning-v2/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L30) +- [apiProvisioning-v2/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L31) +- [apiProvisioning-v2/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L32) +- [apiProvisioning-v2/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L34) +- [apiProvisioning-v2/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L35) + +#### [Creating an already existing user works](https://github.com/owncloud/ocis-accounts/issues/80) +- [apiProvisioning-v1/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L32) +- [apiProvisioning-v2/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L32) +- [apiProvisioning-v1/addUser.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L39) +- [apiProvisioning-v2/addUser.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L39) + +#### [Password can be set to empty](https://github.com/owncloud/product/issues/197) +- [apiProvisioning-v1/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L69) +- [apiProvisioning-v2/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L69) + +#### [Username is case sensitive](https://github.com/owncloud/ocis-accounts/issues/128) +- [apiProvisioning-v1/addUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L102) +- [apiProvisioning-v2/addUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L102) + +#### [Client token generation not implemented](https://github.com/owncloud/ocis/issues/197) +- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L39) +- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L67) +- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L39) +- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L67) + +#### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis/issues/1420) +- [apiProvisioning-v1/enableUser.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L92) +- [apiProvisioning-v1/enableUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L102) +- [apiProvisioning-v1/enableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L129) +- [apiProvisioning-v1/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L99) +- [apiProvisioning-v1/disableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L129) +- [apiProvisioning-v1/disableUser.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L165) +- [apiProvisioning-v1/disableUser.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L172) +- [apiProvisioning-v1/disableUser.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L190) +- [apiProvisioning-v1/disableUser.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L203) +- [apiProvisioning-v1/disableUser.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L219) +- [apiProvisioning-v2/disableUser.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L79) +- [apiProvisioning-v2/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L99) +- [apiProvisioning-v2/disableUser.feature:108](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L108) +- [apiProvisioning-v2/disableUser.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L130) +- [apiProvisioning-v2/disableUser.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L166) +- [apiProvisioning-v2/disableUser.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L173) +- [apiProvisioning-v2/disableUser.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L191) +- [apiProvisioning-v2/disableUser.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L204) +- [apiProvisioning-v2/disableUser.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L220) + +#### [displayname of user can be changed to empty](https://github.com/owncloud/ocis-ocs/issues/51) +- [apiProvisioning-v1/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L47) +- [apiProvisioning-v2/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L47) + +#### [quota query](https://github.com/owncloud/ocis/issues/1313) +_getting and setting quota_ +- [apiMain/quota.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L9) Scenario: Uploading a file as owner having enough quota +- [apiMain/quota.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L16) Scenario: Uploading a file as owner having insufficient quota +- [apiMain/quota.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L23) Scenario: Overwriting a file as owner having enough quota +- [apiMain/quota.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L30) Scenario: Overwriting a file as owner having insufficient quota + Scenario Outline: Retrieving folder quota when no quota is set +- [apiWebdavProperties1/getQuota.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L17) +- [apiWebdavProperties1/getQuota.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L18) + Scenario Outline: Retrieving folder quota when quota is set +- [apiWebdavProperties1/getQuota.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L27) +- [apiWebdavProperties1/getQuota.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L28) + +#### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) +- [apiProvisioning-v1/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L56) +- [apiProvisioning-v1/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L122) +- [apiProvisioning-v2/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L56) +- [apiProvisioning-v2/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L122) +- [apiProvisioning-v2/enableUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L34) +- [apiProvisioning-v2/enableUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L56) +- [apiProvisioning-v2/enableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L64) + +#### [user can get info of other users/ cloud/users endpoints not authenticated](https://github.com/owncloud/product/issues/248) +- [apiProvisioning-v2/deleteUser.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L54) +- [apiProvisioning-v1/getUser.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L81) +- [apiProvisioning-v2/getUser.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L82) +- [apiProvisioning-v2/getUsers.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUsers.feature#L44) + +#### [incorrect ocs(v2) status value when getting info of user that does not exist should be 404, gives 998](https://github.com/owncloud/product/issues/250) +_ocs: api compatibility, return correct status code_ +- [apiProvisioning-v2/getUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L47) + +#### [subadmin endpoints not implemented for users](https://github.com/owncloud/product/issues/289) +- [apiProvisioning-v1/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L125) +- [apiProvisioning-v1/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L48) +- [apiProvisioning-v1/deleteUser.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L73) +- [apiProvisioning-v1/disableUser.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L222) +- [apiProvisioning-v1/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L131) +- [apiProvisioning-v1/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L143) +- [apiProvisioning-v1/getUser.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L170) +- [apiProvisioning-v1/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L113) + +- [apiProvisioning-v2/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L125) +- [apiProvisioning-v2/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L48) +- [apiProvisioning-v2/deleteUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L64) +- [apiProvisioning-v2/deleteUser.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L74) +- [apiProvisioning-v2/deleteUser.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L88) +- [apiProvisioning-v2/deleteUser.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L101) +- [apiProvisioning-v2/deleteUser.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L115) +- [apiProvisioning-v2/disableUser.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L48) +- [apiProvisioning-v2/disableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L64) +- [apiProvisioning-v2/disableUser.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L223) +- [apiProvisioning-v2/disableUser.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L237) +- [apiProvisioning-v2/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L131) +- [apiProvisioning-v2/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L143) +- [apiProvisioning-v2/editUser.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L159) +- [apiProvisioning-v2/enableUser.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L104) +- [apiProvisioning-v2/enableUser.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L118) +- [apiProvisioning-v2/enableUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L131) +- [apiProvisioning-v2/enableUser.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L146) +- [apiProvisioning-v2/getUser.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L145) +- [apiProvisioning-v2/getUser.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L156) +- [apiProvisioning-v2/getUser.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L171) +- [apiProvisioning-v2/resetUserPassword.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L101) +- [apiProvisioning-v2/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L113) +- [apiProvisioning-v2/resetUserPassword.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L129) + +#### [subadmin endpoints not implemented for groups](https://github.com/owncloud/product/issues/289) - [apiProvisioningGroups-v1/addGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L87) - [apiProvisioningGroups-v1/addToGroup.feature:133](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L133) - [apiProvisioningGroups-v1/addToGroup.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L146) @@ -2294,17 +1964,56 @@ - [apiProvisioningGroups-v2/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L110) - [apiProvisioningGroups-v2/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L123) -### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) - special character username not valid +#### [creating existing group doesn't gives error](https://github.com/owncloud/product/issues/282) +- [apiProvisioningGroups-v1/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L94) +- [apiProvisioningGroups-v2/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L94) + +#### [cannot create group with '/'](https://github.com/owncloud/product/issues/285) +- [apiProvisioningGroups-v1/addToGroup.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L75) +- [apiProvisioningGroups-v1/addToGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L76) +- [apiProvisioningGroups-v1/addToGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L77) +- [apiProvisioningGroups-v1/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L85) +- [apiProvisioningGroups-v1/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L86) +- [apiProvisioningGroups-v1/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L87) +- [apiProvisioningGroups-v1/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L38) +- [apiProvisioningGroups-v1/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L76) +- [apiProvisioningGroups-v1/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L77) +- [apiProvisioningGroups-v1/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L78) + +- [apiProvisioningGroups-v2/addToGroup.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L70) +- [apiProvisioningGroups-v2/addToGroup.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L71) +- [apiProvisioningGroups-v2/addToGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L72) +- [apiProvisioningGroups-v2/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L85) +- [apiProvisioningGroups-v2/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L86) +- [apiProvisioningGroups-v2/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L87) +- [apiProvisioningGroups-v2/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L38) +- [apiProvisioningGroups-v2/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L76) +- [apiProvisioningGroups-v2/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L77) +- [apiProvisioningGroups-v2/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L78) + +#### [adding user to non-existent group gives wrong statuscode](https://github.com/owncloud/product/issues/286) +- [apiProvisioningGroups-v1/addToGroup.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L107) +- [apiProvisioningGroups-v1/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L101) +- [apiProvisioningGroups-v2/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L101) + +#### [adding user to empty group gives wrong statuscode](https://github.com/owncloud/product/issues/287) +- [apiProvisioningGroups-v1/addToGroup.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L116) + +#### [adding non-existent user to a group gives wrong status code](https://github.com/owncloud/product/issues/288) +- [apiProvisioningGroups-v1/addToGroup.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L124) + + +#### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) +_special character username not valid_ - [apiProvisioningGroups-v1/getGroup.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L11) - [apiProvisioningGroups-v2/getGroup.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroup.feature#L11) -### [normal users can list the members of the group](https://github.com/owncloud/product/issues/290) +#### [normal users can list the members of the group](https://github.com/owncloud/product/issues/290) - [apiProvisioningGroups-v1/getGroup.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L81) - [apiProvisioningGroups-v1/deleteGroup.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L90) - [apiProvisioningGroups-v2/getGroup.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroup.feature#L83) -### [ocs v2 invalid status code for group endpoints](https://github.com/owncloud/product/issues/291) +#### [ocs v2 invalid status code for group endpoints](https://github.com/owncloud/product/issues/291) - [apiProvisioningGroups-v2/addGroup.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L102) - [apiProvisioningGroups-v2/addToGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L94) - [apiProvisioningGroups-v2/addToGroup.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L102) @@ -2314,78 +2023,332 @@ - [apiProvisioningGroups-v2/getUserGroups.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L73) - [apiProvisioningGroups-v2/removeFromGroup.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L138) -### [requests to webdav URLs with an fileid containing an invalid storage_id result in error 500](https://github.com/owncloud/ocis/issues/772) -- [apiVersions/fileVersions.feature:384](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L384) +#### [user-sync endpoint does not exist](https://github.com/owncloud/ocis/issues/1241) +- [apiMain/userSync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L18) +- [apiMain/userSync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L19) +- [apiMain/userSync.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L29) +- [apiMain/userSync.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L30) +- [apiMain/userSync.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L40) +- [apiMain/userSync.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L41) +- [apiMain/userSync.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L52) +- [apiMain/userSync.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L53) +- [apiMain/userSync.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L63) +- [apiMain/userSync.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L64) -### [requesting propfind with invalid fileid gives 502 error](https://github.com/owncloud/ocis/issues/771) -- [apiVersions/fileVersions.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L395) -- [apiVersions/fileVersions.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L396) -- [apiVersions/fileVersions.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L397) +- [apiProvisioning-v1/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L11) +- [apiProvisioning-v1/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L19) +- [apiProvisioning-v1/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L27) +- [apiProvisioning-v1/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L35) +- [apiProvisioning-v1/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L11) +- [apiProvisioning-v1/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L21) +- [apiProvisioning-v2/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L11) +- [apiProvisioning-v2/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L19) +- [apiProvisioning-v2/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L27) +- [apiProvisioning-v2/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L35) +- [apiProvisioning-v2/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L11) +- [apiProvisioning-v2/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L21) +- [apiProvisioning-v2/getSubAdmins.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L30) +- [apiProvisioning-v2/getSubAdmins.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L44) -### [user can access version metadata of a received share before accepting it](https://github.com/owncloud/ocis/issues/760) -- [apiVersions/fileVersionsSharingToShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L279) +### Other +API, search, favorites, config, capabilities, not existing endpoints, CORS and others -### [when a share exists its impossible to share a renamed folder](https://github.com/owncloud/ocis/issues/719) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:611](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L611) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:612](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L612) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:665](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L665) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:666](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L666) +#### [no robots.txt available](https://github.com/owncloud/ocis/issues/1314) +- [apiMain/main.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/main.feature#L5) Scenario: robots.txt file should be accessible -### [ocis-storage does not use the mtime send in the `Upload-Metadata` header when uploading via TUS](https://github.com/owncloud/ocis/issues/965) -- [apiWebdavUploadTUS/uploadFileMtime.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L17) -- [apiWebdavUploadTUS/uploadFileMtime.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L18) -- [apiWebdavUploadTUS/uploadFileMtime.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L27) -- [apiWebdavUploadTUS/uploadFileMtime.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L28) -- [apiWebdavUploadTUS/uploadFileMtime.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L38) -- [apiWebdavUploadTUS/uploadFileMtime.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L39) -- [apiWebdavUploadTUS/uploadFileMtime.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L49) -- [apiWebdavUploadTUS/uploadFileMtime.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtime.feature#L50) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L40) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L41) +#### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis/issues/1319) +#### [no command equivalent to occ](https://github.com/owncloud/ocis/issues/1317) +- [apiMain/status.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/status.feature#L5) Scenario: Status.php is correct +#### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis/issues/1338) -### [ocis-storage PROPFIND on a file uploaded by share receiver is not possible](https://github.com/owncloud/ocis/issues/968) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L26) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L27) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L55) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L56) +#### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) +- [apiAuthOcs/ocsDELETEAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsDELETEAuth.feature#L10) Scenario: send DELETE requests to OCS endpoints as admin with wrong password +- [apiAuthOcs/ocsGETAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L10) Scenario: using OCS anonymously +- [apiAuthOcs/ocsGETAuth.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L33) Scenario: ocs config end point accessible by unauthorized users +- [apiAuthOcs/ocsGETAuth.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L53) Scenario: using OCS with non-admin basic auth +- [apiAuthOcs/ocsGETAuth.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L88) Scenario: using OCS as normal user with wrong password +- [apiAuthOcs/ocsGETAuth.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L121) Scenario:using OCS with admin basic auth +- [apiAuthOcs/ocsGETAuth.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L139) Scenario: using OCS as admin user with wrong password +- [apiAuthOcs/ocsPOSTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPOSTAuth.feature#L10) Scenario: send POST requests to OCS endpoints as normal user with wrong password +- [apiAuthOcs/ocsPUTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPUTAuth.feature#L10) Scenario: send PUT request to OCS endpoints as admin with wrong password -### [oCIS-storage reading a file that a collaborator uploaded is impossible](https://github.com/owncloud/ocis/issues/763) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L70) -- [apiWebdavUploadTUS/uploadFileMtimeShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFileMtimeShares.feature#L71) +#### [server returns 500 when trying to access a not existing file](https://github.com/owncloud/ocis-reva/issues/13) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavDELETEAuth.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L36) Scenario: send DELETE requests to another user's webDav endpoints as normal user -### [sharing with group not available](https://github.com/owncloud/product/issues/293) -- [apiWebdavUploadTUS/uploadToShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L52) -- [apiWebdavUploadTUS/uploadToShare.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L53) +#### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavLOCKAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavLOCKAuth.feature#L38) Scenario: send LOCK requests to another user's webDav endpoints as normal user +- [apiAuthWebDav/webDavMKCOLAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMKCOLAuth.feature#L37) Scenario: send MKCOL requests to another user's webDav endpoints as normal user +- [apiAuthWebDav/webDavPROPFINDAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPFINDAuth.feature#L37) Scenario: send PROPFIND requests to another user's webDav endpoints as normal user +- [apiAuthWebDav/webDavPROPPATCHAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPPATCHAuth.feature#L38) Scenario: send PROPPATCH requests to another user's webDav endpoints as normal user -### [TUS OPTIONS requests does not reply with TUS headers when invalid password](https://github.com/owncloud/ocis/issues/1012) -- [apiWebdavUploadTUS/optionsRequest.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L29) -- [apiWebdavUploadTUS/optionsRequest.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L40) +#### [renaming a resource does not work](https://github.com/owncloud/ocis-reva/issues/14) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavMOVEAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMOVEAuth.feature#L37) Scenario: send MOVE requests to another user's webDav endpoints as normal user -### [invalid file-names should not be created using the TUS protocol](https://github.com/owncloud/ocis/issues/1001) -- [apiWebdavUploadTUS/uploadFile.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L135) -- [apiWebdavUploadTUS/uploadFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L136) -- [apiWebdavUploadTUS/uploadFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L137) -- [apiWebdavUploadTUS/uploadFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L138) -- [apiWebdavUploadTUS/uploadFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L139) -- [apiWebdavUploadTUS/uploadFile.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L140) -- [apiWebdavUploadTUS/uploadFile.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L141) -- [apiWebdavUploadTUS/uploadFile.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L142) +#### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis/issues/1287) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavPOSTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPOSTAuth.feature#L38) Scenario: send POST requests to another user's webDav endpoints as normal user -### [upload a file using TUS resource URL as an other user should not work](https://github.com/owncloud/ocis/issues/1141) -- [apiWebdavUploadTUS/uploadFile.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L155) -- [apiWebdavUploadTUS/uploadFile.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L156) +#### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavPUTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPUTAuth.feature#L38) Scenario: send PUT requests to another user's webDav endpoints as normal user -### [Share lists deleted user as 'user'](https://github.com/owncloud/ocis/issues/903) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L632) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:633](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L633) +#### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis/issues/1285) +#### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis/issues/1286) +- [apiCapabilities/capabilitiesWithNormalUser.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilitiesWithNormalUser.feature#L11) Scenario: getting default capabilities with normal user -### [Deletion time in trash bin shows a wrong date](https://github.com/owncloud/ocis/issues/541) -- [apiTrashbin/trashbinFilesFolders.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L284) -- [apiTrashbin/trashbinFilesFolders.feature:285](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L285) +#### [REPORT request not implemented](https://github.com/owncloud/ocis/issues/1330) +Scenario Outline: search for entry by pattern +- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) +- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) + Scenario Outline: search for entries by only some letters from the middle of the entry name +- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) +- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) + Scenario Outline: search for files by extension +- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) +- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) + Scenario Outline: search with empty field +- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) +- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) + Scenario Outline: limit returned search entries +- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) +- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) + Scenario Outline: limit returned search entries to only 1 entry +- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) +- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) + Scenario Outline: limit returned search entries to more entires than there are +- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) +- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) + Scenario Outline: report extra properties in search entries for a file +- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) +- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) + Scenario Outline: report extra properties in search entries for a folder +- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) +- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) + Scenario Outline: search for entry with emoji by pattern +- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) +- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) +- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) Scenario: search for entry by tags using REPORT method +- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) Scenario: share a tagged resource to another internal user and sharee searches for tag using REPORT method +- [apiWebdavOperations/search.feature:254](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L254) Scenario: search for entries across various folders by tags using REPORT method -### [oCIS-storage overwriting a file as share receiver, does not create a new file version for the sharer](https://github.com/owncloud/ocis/issues/766) -- [apiVersions/fileVersionsSharingToShares.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L291) +And other missing implementation of favorites +- [apiFavorites/favorites.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L91) +- [apiFavorites/favorites.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L92) +- [apiFavorites/favorites.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L112) +- [apiFavorites/favorites.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L113) +- [apiFavorites/favorites.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L128) +- [apiFavorites/favorites.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L129) +- [apiFavorites/favorites.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L148) +- [apiFavorites/favorites.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L149) +- [apiFavorites/favorites.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L176) +- [apiFavorites/favorites.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L177) +- [apiFavorites/favorites.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L217) +- [apiFavorites/favorites.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L218) +- [apiFavorites/favoritesSharingToShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L22) +- [apiFavorites/favoritesSharingToShares.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L23) +- [apiFavorites/favoritesSharingToShares.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L36) +- [apiFavorites/favoritesSharingToShares.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L37) +- [apiFavorites/favoritesSharingToShares.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L49) +- [apiFavorites/favoritesSharingToShares.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L50) +- [apiFavorites/favoritesSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L63) +- [apiFavorites/favoritesSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L64) + +#### CSRF Headers +Scenario Outline: Downloading a file should serve security headers +- [apiWebdavOperations/downloadFile.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L60) +- [apiWebdavOperations/downloadFile.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L61) + Scenario Outline: Doing a GET with a web login should work without CSRF token on the new backend +- [apiWebdavOperations/downloadFile.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L72) +- [apiWebdavOperations/downloadFile.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L73) + Scenario Outline: Doing a GET with a web login should work with CSRF token on the new backend +- [apiWebdavOperations/downloadFile.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L84) +- [apiWebdavOperations/downloadFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L85) + +#### Authentication +Scenario Outline: Unauthenticated call +- [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) +- [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) + Scenario Outline: A disabled user cannot use webdav +- [apiWebdavOperations/refuseAccess.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L33) +- [apiWebdavOperations/refuseAccess.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L34) + + +#### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) +Scenario Outline: Do a PROPFIND to a non-existing URL +- [apiWebdavProperties2/getFileProperties.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L242) +- [apiWebdavProperties2/getFileProperties.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L243) + + +#### [system configuration options missing](https://github.com/owncloud/ocis/issues/1323) + +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L31) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L32) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L65) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L66) + +#### [wildcard Access-Control-Allow-Origin](https://github.com/owncloud/ocis/issues/1340) +- [apiAuth/cors.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L24) +- [apiAuth/cors.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L25) +- [apiAuth/cors.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L26) +- [apiAuth/cors.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L27) +- [apiAuth/cors.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L28) +- [apiAuth/cors.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L29) +- [apiAuth/cors.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L30) +- [apiAuth/cors.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L31) +- [apiAuth/cors.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L32) +- [apiAuth/cors.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L33) +- [apiAuth/cors.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L34) +- [apiAuth/cors.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L35) +- [apiAuth/cors.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L36) +- [apiAuth/cors.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L37) +- [apiAuth/cors.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L38) +- [apiAuth/cors.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L39) +- [apiAuth/cors.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L40) +- [apiAuth/cors.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L41) +- [apiAuth/cors.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L59) +- [apiAuth/cors.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L60) +- [apiAuth/cors.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L61) +- [apiAuth/cors.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L62) +- [apiAuth/cors.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L63) +- [apiAuth/cors.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L64) +- [apiAuth/cors.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L83) +- [apiAuth/cors.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L84) +- [apiAuth/cors.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L85) +- [apiAuth/cors.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L86) +- [apiAuth/cors.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L87) +- [apiAuth/cors.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L88) +- [apiAuth/cors.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L89) +- [apiAuth/cors.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L90) +- [apiAuth/cors.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L91) +- [apiAuth/cors.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L92) +- [apiAuth/cors.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L93) +- [apiAuth/cors.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L94) +- [apiAuth/cors.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L95) +- [apiAuth/cors.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L96) +- [apiAuth/cors.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L97) +- [apiAuth/cors.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L98) +- [apiAuth/cors.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L99) +- [apiAuth/cors.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L100) +- [apiAuth/cors.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L118) +- [apiAuth/cors.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L119) +- [apiAuth/cors.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L120) +- [apiAuth/cors.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L121) +- [apiAuth/cors.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L122) +- [apiAuth/cors.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L123) +- [apiAuth/cors.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L142) +- [apiAuth/cors.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L143) +- [apiAuth/cors.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L144) +- [apiAuth/cors.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L145) +- [apiAuth/cors.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L146) +- [apiAuth/cors.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L147) +- [apiAuth/cors.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L148) +- [apiAuth/cors.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L149) +- [apiAuth/cors.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L150) +- [apiAuth/cors.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L151) +- [apiAuth/cors.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L152) +- [apiAuth/cors.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L153) +- [apiAuth/cors.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L154) +- [apiAuth/cors.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L155) +- [apiAuth/cors.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L156) +- [apiAuth/cors.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L157) +- [apiAuth/cors.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L178) +- [apiAuth/cors.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L179) +- [apiAuth/cors.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L180) +- [apiAuth/cors.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L181) +- [apiAuth/cors.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L182) +- [apiAuth/cors.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L183) + +#### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) +#### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) +- [apiAuthOcs/ocsGETAuth.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L243) + +#### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) +- [apiAuthWebDav/webDavDELETEAuth.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L78) +- [apiAuthWebDav/webDavDELETEAuth.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L92) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) +- [apiCapabilities/capabilities.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L8) +- [apiCapabilities/capabilities.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L15) +- [apiCapabilities/capabilities.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L21) +- [apiCapabilities/capabilities.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L27) +- [apiCapabilities/capabilities.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L33) +- [apiCapabilities/capabilities.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L38) +- [apiCapabilities/capabilities.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L80) +- [apiCapabilities/capabilities.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L93) +- [apiCapabilities/capabilities.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L107) +- [apiCapabilities/capabilities.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L116) +- [apiCapabilities/capabilities.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L125) +- [apiCapabilities/capabilities.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L132) +- [apiCapabilities/capabilities.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L138) +- [apiCapabilities/capabilities.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L144) +- [apiCapabilities/capabilities.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L151) +- [apiCapabilities/capabilities.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L157) +- [apiCapabilities/capabilities.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L166) +- [apiCapabilities/capabilities.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L176) +- [apiCapabilities/capabilities.feature:187](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L187) +- [apiCapabilities/capabilities.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L198) +- [apiCapabilities/capabilities.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L208) +- [apiCapabilities/capabilities.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L219) +- [apiCapabilities/capabilities.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L231) +- [apiCapabilities/capabilities.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L238) +- [apiCapabilities/capabilities.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L245) +- [apiCapabilities/capabilities.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L252) +- [apiCapabilities/capabilities.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L275) +- [apiCapabilities/capabilities.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L292) +- [apiCapabilities/capabilities.feature:313](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L313) +- [apiCapabilities/capabilities.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L335) +- [apiCapabilities/capabilities.feature:357](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L357) +- [apiCapabilities/capabilities.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L379) +- [apiCapabilities/capabilities.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L404) +- [apiCapabilities/capabilities.feature:429](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L429) +- [apiCapabilities/capabilities.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L454) +- [apiCapabilities/capabilities.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L476) +- [apiCapabilities/capabilities.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L498) +- [apiCapabilities/capabilities.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L521) +- [apiCapabilities/capabilities.feature:546](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L546) +- [apiCapabilities/capabilities.feature:568](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L568) +- [apiCapabilities/capabilities.feature:590](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L590) +- [apiCapabilities/capabilities.feature:613](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L613) +- [apiCapabilities/capabilities.feature:637](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L637) +- [apiCapabilities/capabilities.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L658) +- [apiCapabilities/capabilities.feature:680](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L680) +- [apiCapabilities/capabilities.feature:703](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L703) +- [apiCapabilities/capabilities.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L729) +- [apiCapabilities/capabilities.feature:758](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L758) +- [apiCapabilities/capabilities.feature:787](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L787) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L25) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L26) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L47) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L48) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L66) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L67) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L87) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L88) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L25) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L26) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L44) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L45) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L64) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L65) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L83) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L84) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L103) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L104) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L122) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L123) + +- [apiMain/caldav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L8) +- [apiMain/caldav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L15) +- [apiMain/caldav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L23) +- [apiMain/caldav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L31) +- [apiMain/carddav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L8) +- [apiMain/carddav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L15) +- [apiMain/carddav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L23) +- [apiMain/carddav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L31) + +- [apiTranslation/translation.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L29) +- [apiTranslation/translation.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L30) -### [deleting a share with wrong authentication returns OCS status 996 / HTTP 500](https://github.com/owncloud/ocis/issues/1229) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#211) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#212) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index 3591d6d04d..88bca32aa3 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -1,962 +1,65 @@ ## Scenarios from ownCloud10 core API tests that are expected to fail with owncloud storage -- [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) -- [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) +### File +Basic file management like up and download, move, copy, properties, trash, versions and chunking. -### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) +#### [Implement Trashbin Feature for ocis storage](https://github.com/owncloud/product/issues/209) -- [apiMain/checksums.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L24) -- [apiMain/checksums.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L25) -- [apiMain/checksums.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L35) -- [apiMain/checksums.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L36) -- [apiMain/checksums.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L46) -- [apiMain/checksums.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L47) -- [apiMain/checksums.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L50) -- [apiMain/checksums.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L58) -- [apiMain/checksums.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L67) -- [apiMain/checksums.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L99) -- [apiMain/checksums.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L100) -- [apiMain/checksums.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L103) -- [apiMain/checksums.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L110) -- [apiMain/checksums.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L119) -- [apiMain/checksums.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L129) -- [apiMain/checksums.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L138) -- [apiMain/checksums.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L147) -- [apiMain/checksums.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L158) -- [apiMain/checksums.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L174) -- [apiMain/checksums.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L192) -- [apiMain/checksums.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L217) -- [apiMain/checksums.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L218) -- [apiMain/checksums.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L239) -- [apiMain/checksums.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L240) -- [apiMain/checksums.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L258) -- [apiMain/checksums.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L279) -- [apiMain/checksums.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L280) -- [apiMain/checksums.feature:295](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L295) -- [apiMain/checksums.feature:296](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L296) -- [apiMain/checksums.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L308) -- [apiMain/checksums.feature:309](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L309) -- [apiMain/checksums.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L312) -- [apiMain/checksums.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L324) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L26) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L27) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L48) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L49) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L68) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L69) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L90) +- [apiWebdavEtagPropagation2/restoreFromTrash.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L91) -### [no robots.txt available](https://github.com/owncloud/ocis/issues/1314) - -- [apiMain/main.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/main.feature#L5) - -### [quota query](https://github.com/owncloud/ocis/issues/1313) - -- [apiMain/quota.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L9) -- [apiMain/quota.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L16) -- [apiMain/quota.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L23) -- [apiMain/quota.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L30) -- [apiMain/quota.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L41) -- [apiMain/quota.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L54) -- [apiMain/quota.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L68) -- [apiMain/quota.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L82) -- [apiMain/quota.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L99) -- [apiMain/quota.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L112) - -### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis/issues/1319) - -### [no command equivalent to occ](https://github.com/owncloud/ocis/issues/1317) - -- [apiMain/status.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/status.feature#L5) - -### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis/issues/1338) -### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) - -- [apiAuthOcs/ocsDELETEAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsDELETEAuth.feature#L10) -- [apiAuthOcs/ocsGETAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L10) -- [apiAuthOcs/ocsGETAuth.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L33) -- [apiAuthOcs/ocsGETAuth.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L53) -- [apiAuthOcs/ocsGETAuth.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L88) -- [apiAuthOcs/ocsGETAuth.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L121) -- [apiAuthOcs/ocsGETAuth.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L139) -- [apiAuthOcs/ocsPOSTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPOSTAuth.feature#L10) -- [apiAuthOcs/ocsPUTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPUTAuth.feature#L10) - -### [server returns 500 when trying to access a not existing file](https://github.com/owncloud/ocis-reva/issues/13) - -- [apiAuthWebDav/webDavDELETEAuth.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L36) - -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - -- [apiAuthWebDav/webDavLOCKAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavLOCKAuth.feature#L38) - -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - -- [apiAuthWebDav/webDavMKCOLAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMKCOLAuth.feature#L37) - -### [renaming a resource does not work](https://github.com/owncloud/ocis-reva/issues/14) - -- [apiAuthWebDav/webDavMOVEAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMOVEAuth.feature#L37) - -### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis/issues/1287) - -- [apiAuthWebDav/webDavPOSTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPOSTAuth.feature#L38) - -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - -- [apiAuthWebDav/webDavPROPFINDAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPFINDAuth.feature#L37) - -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - -- [apiAuthWebDav/webDavPROPPATCHAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPPATCHAuth.feature#L38) - -### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) - -- [apiAuthWebDav/webDavPUTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPUTAuth.feature#L38) - -### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis/issues/1285) -### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis/issues/1286) - -- [apiCapabilities/capabilitiesWithNormalUser.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilitiesWithNormalUser.feature#L11) - -### [REPORT request not implemented](https://github.com/owncloud/ocis/issues/1330) -### And other missing implementation of favorites - -- [apiFavorites/favorites.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L91) -- [apiFavorites/favorites.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L92) -- [apiFavorites/favorites.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L112) -- [apiFavorites/favorites.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L113) -- [apiFavorites/favorites.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L128) -- [apiFavorites/favorites.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L129) -- [apiFavorites/favorites.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L148) -- [apiFavorites/favorites.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L149) -- [apiFavorites/favorites.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L176) -- [apiFavorites/favorites.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L177) -- [apiFavorites/favorites.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L217) -- [apiFavorites/favorites.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L218) -- [apiFavorites/favoritesSharingToShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L22) -- [apiFavorites/favoritesSharingToShares.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L23) -- [apiFavorites/favoritesSharingToShares.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L36) -- [apiFavorites/favoritesSharingToShares.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L37) -- [apiFavorites/favoritesSharingToShares.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L49) -- [apiFavorites/favoritesSharingToShares.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L50) -- [apiFavorites/favoritesSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L63) -- [apiFavorites/favoritesSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L64) -- [apiFavorites/favoritesSharingToShares.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L77) -- [apiFavorites/favoritesSharingToShares.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L78) - -- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) -- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) -- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) -- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) -- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) -- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) -- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) -- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) -- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) -- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) -- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) -- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) -- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) -- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) -- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) -- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) -- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) -- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) -- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) -- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) -- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) -- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) -- [apiWebdavOperations/search.feature:254](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L254) - -### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) -### special character username not valid - -- [apiProvisioning-v1/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L29) -- [apiProvisioning-v1/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L30) -- [apiProvisioning-v1/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L121) -- [apiProvisioning-v1/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L122) -- [apiProvisioning-v1/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L123) -- [apiProvisioning-v1/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L29) -- [apiProvisioning-v1/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L30) -- [apiProvisioning-v1/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L29) -- [apiProvisioning-v1/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L30) -- [apiProvisioning-v1/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L29) -- [apiProvisioning-v1/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L30) -- [apiProvisioning-v1/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L31) -- [apiProvisioning-v1/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L32) -- [apiProvisioning-v1/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L34) -- [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) - -- [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) -- [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) -- [apiProvisioning-v2/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L121) -- [apiProvisioning-v2/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L122) -- [apiProvisioning-v2/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L123) -- [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) -- [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) -- [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) -- [apiProvisioning-v2/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L30) -- [apiProvisioning-v2/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L29) -- [apiProvisioning-v2/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L30) -- [apiProvisioning-v2/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L31) -- [apiProvisioning-v2/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L32) -- [apiProvisioning-v2/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L34) -- [apiProvisioning-v2/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L35) - -### [Password can be set to empty](https://github.com/owncloud/product/issues/197) - -- [apiProvisioning-v1/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L69) -- [apiProvisioning-v2/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L69) - -### [Client token generation not implemented](https://github.com/owncloud/ocis/issues/197) - -- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L39) -- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L67) -- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L39) -- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L67) - -### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis/issues/1420) - -- [apiProvisioning-v1/enableUser.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L92) -- [apiProvisioning-v1/enableUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L102) -- [apiProvisioning-v1/enableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L129) -- [apiProvisioning-v1/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L99) -- [apiProvisioning-v1/disableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L129) -- [apiProvisioning-v1/disableUser.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L165) -- [apiProvisioning-v1/disableUser.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L172) -- [apiProvisioning-v1/disableUser.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L190) -- [apiProvisioning-v1/disableUser.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L203) -- [apiProvisioning-v1/disableUser.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L219) -- [apiProvisioning-v2/disableUser.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L79) -- [apiProvisioning-v2/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L99) -- [apiProvisioning-v2/disableUser.feature:108](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L108) -- [apiProvisioning-v2/disableUser.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L130) -- [apiProvisioning-v2/disableUser.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L166) -- [apiProvisioning-v2/disableUser.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L173) -- [apiProvisioning-v2/disableUser.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L191) -- [apiProvisioning-v2/disableUser.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L204) -- [apiProvisioning-v2/disableUser.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L220) - -### [displayname of user can be changed to empty](https://github.com/owncloud/ocis-ocs/issues/51) - -- [apiProvisioning-v1/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L47) -- [apiProvisioning-v2/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L47) - -### [ changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) - -- [apiProvisioning-v1/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L56) -- [apiProvisioning-v1/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L122) -- [apiProvisioning-v2/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L56) -- [apiProvisioning-v2/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L122) -- [apiProvisioning-v2/enableUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L34) -- [apiProvisioning-v2/enableUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L56) -- [apiProvisioning-v2/enableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L64) - -### [ user can get info of other users/ cloud/users endpoints not authenticated](https://github.com/owncloud/product/issues/248) - -- [apiProvisioning-v2/deleteUser.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L54) -- [apiProvisioning-v1/getUser.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L81) -- [apiProvisioning-v2/getUser.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L82) -- [apiProvisioning-v2/getUsers.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUsers.feature#L44) - -### [incorrect ocs(v2) status value when getting info of user that does not exist should be 404, gives 998](https://github.com/owncloud/product/issues/250) - -- [apiProvisioning-v2/getUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L47) - -### [invalid format of sharees response](https://github.com/owncloud/product/issues/292) -### [Searching sharee with displayname](https://github.com/owncloud/ocis/issues/547) - -- [apiSharees/sharees.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L32) -- [apiSharees/sharees.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L33) -- [apiSharees/sharees.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L53) -- [apiSharees/sharees.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L54) -- [apiSharees/sharees.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L74) -- [apiSharees/sharees.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L75) -- [apiSharees/sharees.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L98) -- [apiSharees/sharees.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L99) -- [apiSharees/sharees.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L118) -- [apiSharees/sharees.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L119) -- [apiSharees/sharees.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L137) -- [apiSharees/sharees.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L138) -- [apiSharees/sharees.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L157) -- [apiSharees/sharees.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L158) -- [apiSharees/sharees.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L177) -- [apiSharees/sharees.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L178) -- [apiSharees/sharees.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L198) -- [apiSharees/sharees.feature:199](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L199) -- [apiSharees/sharees.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L217) -- [apiSharees/sharees.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L218) -- [apiSharees/sharees.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L237) -- [apiSharees/sharees.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L238) -- [apiSharees/sharees.feature:257](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L257) -- [apiSharees/sharees.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L258) -- [apiSharees/sharees.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L277) -- [apiSharees/sharees.feature:278](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L278) -- [apiSharees/sharees.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L297) -- [apiSharees/sharees.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L298) -- [apiSharees/sharees.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L317) -- [apiSharees/sharees.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L318) -- [apiSharees/sharees.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L336) -- [apiSharees/sharees.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L337) -- [apiSharees/sharees.feature:355](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L355) -- [apiSharees/sharees.feature:356](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L356) -- [apiSharees/sharees.feature:374](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L374) -- [apiSharees/sharees.feature:375](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L375) -- [apiSharees/sharees.feature:393](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L393) -- [apiSharees/sharees.feature:394](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L394) -- [apiSharees/sharees.feature:412](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L412) -- [apiSharees/sharees.feature:413](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L413) -- [apiSharees/sharees.feature:430](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L430) -- [apiSharees/sharees.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L431) -- [apiSharees/sharees.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L450) -- [apiSharees/sharees.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L451) -- [apiSharees/sharees.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L475) -- [apiSharees/sharees.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L476) -- [apiSharees/sharees.feature:495](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L495) -- [apiSharees/sharees.feature:496](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L496) -- [apiSharees/sharees.feature:515](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L515) -- [apiSharees/sharees.feature:516](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L516) -- [apiSharees/sharees.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L537) -- [apiSharees/sharees.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L538) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareManagementToShares/acceptShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L22) -- [apiShareManagementToShares/acceptShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L223) -- [apiShareManagementToShares/acceptShares.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L270) -- [apiShareManagementToShares/acceptShares.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L342) -- [apiShareManagementToShares/acceptShares.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L378) -- [apiShareManagementToShares/acceptShares.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L417) - -### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) - -User cannot create a folder named Share -- [apiShareManagementToShares/acceptShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L279) -- [apiShareManagementToShares/acceptShares.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L298) - -- [apiShareManagementToShares/acceptShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L71) -- [apiShareManagementToShares/acceptShares.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L162) -- [apiShareManagementToShares/acceptShares.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L175) -- [apiShareManagementToShares/acceptShares.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L196) -- [apiShareManagementToShares/acceptShares.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L249) -- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L28) -- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L48) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L140) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L141) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L176) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L177) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L36) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L37) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L66) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L67) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L91) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L92) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L94) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L95) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L97) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L98) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L155) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L156) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:288](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L288) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L289) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L305) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L306) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L46) -- [apiShareManagementToShares/mergeShare.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L32) -- [apiShareManagementToShares/mergeShare.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L42) -- [apiShareManagementToShares/mergeShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L89) - -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L100) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L101) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L179) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L180) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L204) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L205) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L236) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L237) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L258) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L259) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L324) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:325](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L325) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:362](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L362) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:363](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L363) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:392](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L392) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:461](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L461) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:462](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L462) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:497](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L497) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L498) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:501](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L501) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L28) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L29) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L89) - -### [shares are mounted into /Shares folder even after the sharer deletes the collaborator](https://github.com/owncloud/ocis/issues/720) -### [deleting share response does not contain `data` field](https://github.com/owncloud/ocis/issues/721) - -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L43) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L44) - -### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L342) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:343](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L343) - -### [File deletion using dav gives unique string in filename in the trashbin](https://github.com/owncloud/product/issues/178) - -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L58) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L72) - - cannot share a folder with create permission -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L118) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L130) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L181) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L182) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L183) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L184) - -### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) - -- [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) -- [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) - -### [Delete shares from user when user is deleted](hhttps://github.com/owncloud/ocis/issues/1226) -### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis/issues/1270) -### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) - -- [apiShareOperationsToShares/gettingShares.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L135) -- [apiShareOperationsToShares/gettingShares.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L136) - -### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis/issues/1233) - -- [apiShareOperationsToShares/gettingShares.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L180) -- [apiShareOperationsToShares/gettingShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L181) - -### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) - -- [apiShareOperationsToShares/gettingShares.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L219) -- [apiShareOperationsToShares/gettingShares.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L220) - -### [Allow getting the share list filtered by share type via API](https://github.com/owncloud/ocis/issues/774) - -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L44) -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L45) -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L56) -- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L57) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L47) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L48) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L60) -- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L61) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L41) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L42) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L62) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L63) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L90) -- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L91) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L48) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L49) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L62) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L63) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L76) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L77) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L92) -- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L93) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L39) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L40) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L60) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L61) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L79) -- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L80) - -### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) -### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) -### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - -- [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) -- [apiSharePublicLink1/accessToPublicLinkShare.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L20) -- [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) -- [apiSharePublicLink1/accessToPublicLinkShare.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L43) - -### [creating public links with permissions fails](https://github.com/owncloud/product/issues/252) - -- [apiSharePublicLink1/changingPublicLinkShare.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L22) -- [apiSharePublicLink1/changingPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L23) -- [apiSharePublicLink1/changingPublicLinkShare.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L37) -- [apiSharePublicLink1/changingPublicLinkShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L41) -- [apiSharePublicLink1/changingPublicLinkShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L52) -- [apiSharePublicLink1/changingPublicLinkShare.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L85) -- [apiSharePublicLink1/changingPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L96) - -### [Old webdav api does not work with public link](https://github.com/owncloud/product/issues/272) - -- [apiSharePublicLink1/changingPublicLinkShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L63) -- [apiSharePublicLink1/changingPublicLinkShare.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L107) -- [apiSharePublicLink1/changingPublicLinkShare.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L151) -- [apiSharePublicLink1/changingPublicLinkShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L197) -- [apiSharePublicLink1/changingPublicLinkShare.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L244) - -### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) -### [upload-only public link does not refer to files-drop page, nor are the permissions enforced](https://github.com/owncloud/ocis/issues/723) - -- [apiSharePublicLink1/changingPublicLinkShare.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L267) -- [apiSharePublicLink1/changingPublicLinkShare.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L289) -- [apiSharePublicLink1/createPublicLinkShare.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L34) -- [apiSharePublicLink1/createPublicLinkShare.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L35) -- [apiSharePublicLink1/createPublicLinkShare.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L183) -- [apiSharePublicLink1/createPublicLinkShare.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L184) -- [apiSharePublicLink1/createPublicLinkShare.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L214) -- [apiSharePublicLink1/createPublicLinkShare.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L215) -- [apiSharePublicLink1/createPublicLinkShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L307) -- [apiSharePublicLink1/createPublicLinkShare.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L308) -- [apiSharePublicLink1/createPublicLinkShare.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L370) -- [apiSharePublicLink1/createPublicLinkShare.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L371) - -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) - -- [apiSharePublicLink1/createPublicLinkShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L95) -- [apiSharePublicLink1/createPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L96) -- [apiSharePublicLink1/createPublicLinkShare.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L276) -- [apiSharePublicLink1/createPublicLinkShare.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L277) - -### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis/issues/1293) - -- [apiSharePublicLink1/createPublicLinkShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L127) -- [apiSharePublicLink1/createPublicLinkShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L128) -- [apiSharePublicLink1/createPublicLinkShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L155) -- [apiSharePublicLink1/createPublicLinkShare.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L156) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiSharePublicLink1/createPublicLinkShare.feature:410](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L410) -- [apiSharePublicLink1/createPublicLinkShare.feature:411](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L411) -- [apiSharePublicLink1/createPublicLinkShare.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L431) -- [apiSharePublicLink1/createPublicLinkShare.feature:432](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L432) -- [apiSharePublicLink1/createPublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L454) -- [apiSharePublicLink1/createPublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L455) -- [apiSharePublicLink1/createPublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L477) -- [apiSharePublicLink1/createPublicLinkShare.feature:478](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L478) -- [apiSharePublicLink1/createPublicLinkShare.feature:479](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L479) -- [apiSharePublicLink1/createPublicLinkShare.feature:480](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L480) -- [apiSharePublicLink1/createPublicLinkShare.feature:481](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L481) -- [apiSharePublicLink1/createPublicLinkShare.feature:482](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L482) -- [apiSharePublicLink1/createPublicLinkShare.feature:502](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L502) -- [apiSharePublicLink1/createPublicLinkShare.feature:503](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L503) -- [apiSharePublicLink1/createPublicLinkShare.feature:518](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L518) -- [apiSharePublicLink1/createPublicLinkShare.feature:519](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L519) -- [apiSharePublicLink1/createPublicLinkShare.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L537) -- [apiSharePublicLink1/createPublicLinkShare.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L538) -- [apiSharePublicLink1/createPublicLinkShare.feature:574](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L574) -- [apiSharePublicLink1/createPublicLinkShare.feature:575](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L575) -- [apiSharePublicLink1/createPublicLinkShare.feature:635](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L635) -- [apiSharePublicLink1/createPublicLinkShare.feature:636](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L636) -- [apiSharePublicLink1/createPublicLinkShare.feature:649](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L649) -- [apiSharePublicLink1/createPublicLinkShare.feature:650](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L650) -- [apiSharePublicLink1/createPublicLinkShare.feature:678](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L678) -- [apiSharePublicLink1/createPublicLinkShare.feature:679](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L679) -- [apiSharePublicLink1/createPublicLinkShare.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L729) -- [apiSharePublicLink1/createPublicLinkShare.feature:730](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L730) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L163) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L164) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L165) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L166) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L42) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L43) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L69) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L70) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L97) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L98) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L135) -- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L136) - -### [Public cannot upload file with mtime set on a public link share with new version of WebDAV API](https://github.com/owncloud/core/issues/37605) - -- [apiSharePublicLink1/createPublicLinkShare.feature:733](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L733) -- [apiSharePublicLink1/createPublicLinkShare.feature:742](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L742) - -### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis/issues/1232) - -- [apiSharePublicLink2/copyFromPublicLink.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L60) -- [apiSharePublicLink2/copyFromPublicLink.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L85) -- [apiSharePublicLink2/copyFromPublicLink.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L166) -- [apiSharePublicLink2/copyFromPublicLink.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L167) -- [apiSharePublicLink2/copyFromPublicLink.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L182) -- [apiSharePublicLink2/copyFromPublicLink.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L183) -- [apiSharePublicLink2/updatePublicLinkShare.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L44) -- [apiSharePublicLink2/updatePublicLinkShare.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L45) -- [apiSharePublicLink2/updatePublicLinkShare.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L114) -- [apiSharePublicLink2/updatePublicLinkShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L115) -- [apiSharePublicLink2/updatePublicLinkShare.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L130) -- [apiSharePublicLink2/updatePublicLinkShare.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L131) -- [apiSharePublicLink2/updatePublicLinkShare.feature:321](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L321) -- [apiSharePublicLink2/updatePublicLinkShare.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L322) - -### [oCIS share permissions not enforced](https://github.com/owncloud/product/issues/270) - -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L25) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L26) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L62) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L63) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L77) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L78) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L136) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L137) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L157) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L158) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L179) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L180) - -### [oCIS old public webdav api doesnt works](https://github.com/owncloud/product/issues/272) - -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L30) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L31) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L50) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L51) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L71) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L72) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L92) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L93) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L114) -- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L115) - -### [listing received shares does not work](https://github.com/owncloud/ocis-reva/issues/11) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L367) -- [apiSharePublicLink2/updatePublicLinkShare.feature:340](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L340) -- [apiSharePublicLink2/updatePublicLinkShare.feature:341](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L341) -- [apiSharePublicLink2/updatePublicLinkShare.feature:359](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L359) -- [apiSharePublicLink2/updatePublicLinkShare.feature:360](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L360) -- [apiSharePublicLink2/updatePublicLinkShare.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L378) -- [apiSharePublicLink2/updatePublicLinkShare.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L379) -- [apiSharePublicLink2/updatePublicLinkShare.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L397) -- [apiSharePublicLink2/updatePublicLinkShare.feature:398](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L398) -- [apiSharePublicLink2/updatePublicLinkShare.feature:416](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L416) -- [apiSharePublicLink2/updatePublicLinkShare.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L417) -- [apiSharePublicLink2/updatePublicLinkShare.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L435) -- [apiSharePublicLink2/updatePublicLinkShare.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L436) -- [apiSharePublicLink2/updatePublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L454) -- [apiSharePublicLink2/updatePublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L455) -- [apiSharePublicLink2/updatePublicLinkShare.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L476) -- [apiSharePublicLink2/updatePublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L477) - -### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) - -- [apiSharePublicLink2/updatePublicLinkShare.feature:523](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L523) -- [apiSharePublicLink2/updatePublicLinkShare.feature:524](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L524) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L9) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L83) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L103) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) - -### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L273) - -### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis/issues/1268) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L66) - -### [Set quota over settings](https://github.com/owncloud/ocis/issues/1290) - -- [apiProvisioning-v1/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L131) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L148) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L158) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L167) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L177) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:186](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L186) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L196) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L206) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L217) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L238) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L255) - -### [share permissions are not enforced](https://github.com/owncloud/product/issues/270) - -- [apiShareReshareToShares1/reShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L24) -- [apiShareReshareToShares1/reShare.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L25) -- [apiShareReshareToShares1/reShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L39) -- [apiShareReshareToShares1/reShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L40) -- [apiShareReshareToShares1/reShare.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L120) -- [apiShareReshareToShares1/reShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L121) -- [apiShareReshareToShares1/reShare.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L122) -- [apiShareReshareToShares1/reShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L123) -- [apiShareReshareToShares1/reShare.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L124) -- [apiShareReshareToShares1/reShare.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L125) -- [apiShareReshareToShares1/reShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L127) -- [apiShareReshareToShares1/reShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L128) -- [apiShareReshareToShares1/reShare.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L129) -- [apiShareReshareToShares1/reShare.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L130) -- [apiShareReshareToShares1/reShare.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L131) -- [apiShareReshareToShares1/reShare.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L132) -- [apiShareReshareToShares1/reShare.feature:189](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L189) -- [apiShareReshareToShares1/reShare.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L190) -- [apiShareReshareToShares1/reShare.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L191) -- [apiShareReshareToShares1/reShare.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L192) -- [apiShareReshareToShares1/reShare.feature:193](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L193) -- [apiShareReshareToShares1/reShare.feature:194](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L194) -- [apiShareReshareToShares1/reShare.feature:195](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L195) -- [apiShareReshareToShares1/reShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L196) -- [apiShareReshareToShares1/reShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L198) -- [apiShareReshareToShares1/reShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L197) -- [apiShareReshareToShares1/reShare.feature:199](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L199) -- [apiShareReshareToShares1/reShare.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L200) -- [apiShareReshareToShares1/reShare.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L202) -- [apiShareReshareToShares1/reShare.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L203) -- [apiShareReshareToShares1/reShare.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L204) -- [apiShareReshareToShares1/reShare.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L205) -- [apiShareReshareToShares1/reShare.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L206) -- [apiShareReshareToShares1/reShare.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L207) -- [apiShareReshareToShares1/reShare.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L208) -- [apiShareReshareToShares1/reShare.feature:209](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L209) -- [apiShareReshareToShares1/reShare.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L210) -- [apiShareReshareToShares1/reShare.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L211) -- [apiShareReshareToShares1/reShare.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L212) -- [apiShareReshareToShares1/reShare.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L213) - -### [share permissions are not enforced](https://github.com/owncloud/product/issues/270) - -- [apiShareReshareToShares2/reShareSubfolder.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L47) -- [apiShareReshareToShares2/reShareSubfolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L48) -- [apiShareReshareToShares2/reShareSubfolder.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L49) -- [apiShareReshareToShares2/reShareSubfolder.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L50) -- [apiShareReshareToShares2/reShareSubfolder.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L51) -- [apiShareReshareToShares2/reShareSubfolder.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L52) -- [apiShareReshareToShares2/reShareSubfolder.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L53) -- [apiShareReshareToShares2/reShareSubfolder.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L54) -- [apiShareReshareToShares2/reShareSubfolder.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L55) -- [apiShareReshareToShares2/reShareSubfolder.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L56) -- [apiShareReshareToShares2/reShareSubfolder.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L57) -- [apiShareReshareToShares2/reShareSubfolder.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L58) -- [apiShareReshareToShares2/reShareSubfolder.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L60) -- [apiShareReshareToShares2/reShareSubfolder.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L61) -- [apiShareReshareToShares2/reShareSubfolder.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L62) -- [apiShareReshareToShares2/reShareSubfolder.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L63) -- [apiShareReshareToShares2/reShareSubfolder.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L64) -- [apiShareReshareToShares2/reShareSubfolder.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L65) -- [apiShareReshareToShares2/reShareSubfolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L66) -- [apiShareReshareToShares2/reShareSubfolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L67) -- [apiShareReshareToShares2/reShareSubfolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L68) -- [apiShareReshareToShares2/reShareSubfolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L69) -- [apiShareReshareToShares2/reShareSubfolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L70) -- [apiShareReshareToShares2/reShareSubfolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L71) -- [apiShareReshareToShares2/reShareSubfolder.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L73) -- [apiShareReshareToShares2/reShareSubfolder.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L74) -- [apiShareReshareToShares2/reShareSubfolder.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L75) -- [apiShareReshareToShares2/reShareSubfolder.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L76) -- [apiShareReshareToShares2/reShareSubfolder.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L77) -- [apiShareReshareToShares2/reShareSubfolder.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L78) -- [apiShareReshareToShares2/reShareSubfolder.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L80) -- [apiShareReshareToShares2/reShareSubfolder.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L81) -- [apiShareReshareToShares2/reShareSubfolder.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L82) -- [apiShareReshareToShares2/reShareSubfolder.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L83) -- [apiShareReshareToShares2/reShareSubfolder.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L84) -- [apiShareReshareToShares2/reShareSubfolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L85) -- [apiShareManagementToShares/mergeShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L24) -- [apiShareManagementToShares/mergeShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L52) -- [apiShareManagementToShares/mergeShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L79) -- [apiShareManagementToShares/mergeShare.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L99) - -### [share permissions are not enforced](https://github.com/owncloud/product/issues/270) - -- [apiShareReshareToShares3/reShareUpdate.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L59) -- [apiShareReshareToShares3/reShareUpdate.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L60) - -### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) - -- [apiShareReshareToShares1/reShare.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L56) -- [apiShareReshareToShares1/reShare.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L57) -- [apiShareReshareToShares1/reShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L72) -- [apiShareReshareToShares1/reShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L73) -- [apiShareReshareToShares1/reShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L88) -- [apiShareReshareToShares1/reShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L89) -- [apiShareReshareToShares1/reShare.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L104) -- [apiShareReshareToShares1/reShare.feature:105](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L105) -- [apiShareReshareToShares1/reShare.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L159) -- [apiShareReshareToShares1/reShare.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L160) -- [apiShareReshareToShares1/reShare.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L161) -- [apiShareReshareToShares1/reShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L162) -- [apiShareReshareToShares1/reShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L163) -- [apiShareReshareToShares1/reShare.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L164) -- [apiShareReshareToShares1/reShare.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L165) -- [apiShareReshareToShares1/reShare.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L166) -- [apiShareReshareToShares1/reShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L167) -- [apiShareReshareToShares1/reShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L168) -- [apiShareReshareToShares1/reShare.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L169) -- [apiShareReshareToShares1/reShare.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L170) -- [apiShareReshareToShares1/reShare.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L171) -- [apiShareReshareToShares1/reShare.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L172) -- [apiShareReshareToShares1/reShare.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L173) -- [apiShareReshareToShares1/reShare.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L174) -- [apiShareReshareToShares1/reShare.feature:228](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L228) -- [apiShareReshareToShares1/reShare.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L229) -- [apiShareReshareToShares1/reShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L230) -- [apiShareReshareToShares1/reShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L231) -- [apiShareReshareToShares1/reShare.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L232) -- [apiShareReshareToShares1/reShare.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L233) -- [apiShareReshareToShares1/reShare.feature:235](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L235) -- [apiShareReshareToShares1/reShare.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L236) -- [apiShareReshareToShares1/reShare.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L237) -- [apiShareReshareToShares1/reShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L238) -- [apiShareReshareToShares1/reShare.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L239) -- [apiShareReshareToShares1/reShare.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L240) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L33) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L34) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L89) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L90) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L91) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L92) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L150) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L151) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L152) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L153) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L212) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L213) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L214) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L215) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L365) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:366](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L366) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L367) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L368) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:400](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L400) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:401](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L401) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:402](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L402) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L403) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L404) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:405](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L405) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:434](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L434) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L435) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L436) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:437](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L437) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:465](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L465) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:466](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L466) - -### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) - -- [apiShareReshareToShares2/reShareChain.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareChain.feature#L10) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiShareReshareToShares2/reShareDisabled.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L24) -- [apiShareReshareToShares2/reShareDisabled.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L25) -- [apiShareReshareToShares2/reShareDisabled.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L39) -- [apiShareReshareToShares2/reShareDisabled.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L40) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) - -- [apiShareReshareToShares2/reShareSubfolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L28) -- [apiShareReshareToShares2/reShareSubfolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L29) -- [apiShareReshareToShares2/reShareSubfolder.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L106) -- [apiShareReshareToShares2/reShareSubfolder.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L107) -- [apiShareReshareToShares2/reShareSubfolder.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L128) -- [apiShareReshareToShares2/reShareSubfolder.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L129) -- [apiShareReshareToShares2/reShareSubfolder.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L150) -- [apiShareReshareToShares2/reShareSubfolder.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L151) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L24) -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L25) -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L41) -- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L42) -- [apiShareReshareToShares3/reShareUpdate.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L112) -- [apiShareReshareToShares3/reShareUpdate.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L113) -- [apiShareReshareToShares3/reShareUpdate.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L131) -- [apiShareReshareToShares3/reShareUpdate.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L132) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L61) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L62) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L121) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L122) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L123) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L124) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L181) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L182) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L183) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L184) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L245) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L246) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L247) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L248) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L302) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:303](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L303) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:304](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L304) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L305) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L335) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L336) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L337) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:338](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L338) - -### [Share receiver cannot get share by id](https://github.com/owncloud/product/issues/253) - -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) -- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) - -### [empty trashbin does not work](https://github.com/owncloud/product/issues/254) -### [delete from trashbin does not work](https://github.com/owncloud/ocis/issues/551) -### [deleting multiple elements concurrently will not delete all the items.](https://github.com/owncloud/product/issues/256) +#### [Deletion time in trash bin shows a wrong date](https://github.com/owncloud/ocis/issues/541) +- [apiTrashbin/trashbinFilesFolders.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L284) +- [apiTrashbin/trashbinFilesFolders.feature:285](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L285) +#### [empty trashbin does not work](https://github.com/owncloud/product/issues/254) - [apiTrashbin/trashbinDelete.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L37) + +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - [apiTrashbin/trashbinDelete.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L50) - [apiTrashbin/trashbinDelete.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L67) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [QA trashcan cannot delete a deep tree](https://github.com/owncloud/ocis/issues/1077) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [QA trashcan cannot delete a deep tree](https://github.com/owncloud/ocis/issues/1077) - [apiTrashbin/trashbinDelete.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L107) - [apiTrashbin/trashbinDelete.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinDelete.feature#L123) -### [trashbin filename invalid for nested files/folders](https://github.com/owncloud/product/issues/255) - +#### [trashbin filename invalid for nested files/folders](https://github.com/owncloud/product/issues/255) - [apiTrashbin/trashbinFilesFolders.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L44) - [apiTrashbin/trashbinFilesFolders.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L45) - [apiTrashbin/trashbinFilesFolders.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L60) - [apiTrashbin/trashbinFilesFolders.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L61) -### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) +### [Review and fix the tests that have sharing step to work with ocis](https://github.com/owncloud/core/issues/38006) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: - [apiTrashbin/trashbinFilesFolders.feature:105](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L105) - [apiTrashbin/trashbinFilesFolders.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L106) -### [trying to list the trashbin of another user gives 405](https://github.com/owncloud/product/issues/257) - +#### [invalid webdav responses for unauthorized requests.](https://github.com/owncloud/product/issues/273) - [apiTrashbin/trashbinFilesFolders.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L154) - [apiTrashbin/trashbinFilesFolders.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L155) - [apiTrashbin/trashbinFilesFolders.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L172) - [apiTrashbin/trashbinFilesFolders.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L173) - [apiTrashbin/trashbinFilesFolders.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L196) - [apiTrashbin/trashbinFilesFolders.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L197) - -### [invalid webdav responses for unauthorized requests.](https://github.com/owncloud/product/issues/273) - - [apiTrashbin/trashbinFilesFolders.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L210) - [apiTrashbin/trashbinFilesFolders.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L211) - [apiTrashbin/trashbinFilesFolders.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L224) - [apiTrashbin/trashbinFilesFolders.feature:225](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L225) -### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) - -- [apiTrashbin/trashbinFilesFolders.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L239) -- [apiTrashbin/trashbinFilesFolders.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L240) -- [apiTrashbin/trashbinFilesFolders.feature:241](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L241) -- [apiTrashbin/trashbinFilesFolders.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L245) -- [apiTrashbin/trashbinFilesFolders.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L246) -- [apiTrashbin/trashbinFilesFolders.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L247) - -### [PROPFIND on trashbin with Depth: infinity only shows the first level](https://github.com/owncloud/ocis/issues/1116) - +#### [PROPFIND on trashbin with Depth: infinity only shows the first level](https://github.com/owncloud/ocis/issues/1116) - [apiTrashbin/trashbinFilesFolders.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L272) - [apiTrashbin/trashbinFilesFolders.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L273) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) - [apiTrashbin/trashbinRestore.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L54) - [apiTrashbin/trashbinRestore.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L55) - [apiTrashbin/trashbinRestore.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L70) @@ -978,18 +81,16 @@ User cannot create a folder named Share - [apiTrashbin/trashbinRestore.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L292) - [apiTrashbin/trashbinRestore.feature:293](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L293) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - [apiTrashbin/trashbinRestore.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L40) - [apiTrashbin/trashbinRestore.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L41) - [apiTrashbin/trashbinRestore.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L138) - [apiTrashbin/trashbinRestore.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L139) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) -### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - +#### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) - [apiTrashbin/trashbinRestore.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L90) - [apiTrashbin/trashbinRestore.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L91) - [apiTrashbin/trashbinRestore.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L92) @@ -997,36 +98,23 @@ User cannot create a folder named Share - [apiTrashbin/trashbinRestore.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L94) - [apiTrashbin/trashbinRestore.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L95) -### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) - +#### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) +#### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) - [apiTrashbin/trashbinRestore.feature:311](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L311) - [apiTrashbin/trashbinRestore.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L312) - [apiTrashbin/trashbinRestore.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L330) - [apiTrashbin/trashbinRestore.feature:331](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L331) -### [deleting a received share-folder moves it to trash-bin but does not unshare it](https://github.com/owncloud/ocis/issues/1123) +#### [requests to webdav URLs with an fileid containing an invalid storage_id result in error 500](https://github.com/owncloud/ocis/issues/772) +- [apiVersions/fileVersions.feature:384](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L384) -- [apiTrashbin/trashbinSharingToShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L24) -- [apiTrashbin/trashbinSharingToShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L25) -- [apiShareManagementToShares/acceptShares.feature:469](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L469) -- [apiShareManagementToShares/acceptShares.feature:470](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L470) - - -### [deleting a file inside a received shared folder is moved to the trash-bin of the sharer not the receiver](https://github.com/owncloud/ocis/issues/1124) - -- [apiTrashbin/trashbinSharingToShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L40) -- [apiTrashbin/trashbinSharingToShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L41) -- [apiTrashbin/trashbinSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L63) -- [apiTrashbin/trashbinSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L64) -- [apiTrashbin/trashbinSharingToShares.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L82) -- [apiTrashbin/trashbinSharingToShares.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L83) -- [apiTrashbin/trashbinSharingToShares.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L102) -- [apiTrashbin/trashbinSharingToShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L103) - -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) +#### [requesting propfind with invalid fileid gives 502 error](https://github.com/owncloud/ocis/issues/771) +- [apiVersions/fileVersions.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L395) +- [apiVersions/fileVersions.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L396) +- [apiVersions/fileVersions.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L397) +#### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) +#### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - [apiVersions/fileVersions.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L15) - [apiVersions/fileVersions.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L23) - [apiVersions/fileVersions.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L36) @@ -1034,283 +122,9 @@ User cannot create a folder named Share - [apiVersions/fileVersions.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L88) - [apiVersions/fileVersions.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L89) - [apiVersions/fileVersions.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L93) -- [apiVersions/fileVersions.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L104) - [apiVersions/fileVersions.feature:288](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L288) - [apiVersions/fileVersions.feature:362](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L362) - [apiVersions/fileVersions.feature:373](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L373) - -### [cannot rename files asynchronously](https://github.com/owncloud/product/issues/259) - -- [apiWebdavMove1/moveFileAsync.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L26) -- [apiWebdavMove1/moveFileAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L27) -- [apiWebdavMove1/moveFileAsync.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L28) -- [apiWebdavMove1/moveFileAsync.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L29) -- [apiWebdavMove1/moveFileAsync.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L30) -- [apiWebdavMove1/moveFileAsync.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L31) -- [apiWebdavMove1/moveFileAsync.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L33) -- [apiWebdavMove1/moveFileAsync.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L46) -- [apiWebdavMove1/moveFileAsync.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L59) -- [apiWebdavMove1/moveFileAsync.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L73) -- [apiWebdavMove1/moveFileAsync.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L88) -- [apiWebdavMove1/moveFileAsync.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L107) -- [apiWebdavMove1/moveFileAsync.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L125) -- [apiWebdavMove1/moveFileAsync.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L135) -- [apiWebdavMove1/moveFileAsync.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L141) -- [apiWebdavMove1/moveFileAsync.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L204) -- [apiWebdavMove1/moveFileAsync.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L205) -- [apiWebdavMove1/moveFileAsync.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L224) -- [apiWebdavMove1/moveFileAsync.feature:225](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L225) -- [apiWebdavMove1/moveFileAsync.feature:234](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L234) -- [apiWebdavMove1/moveFileAsync.feature:235](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L235) -- [apiWebdavMove1/moveFileAsync.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L240) - -### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - -- [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L12) -- [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L18) -- [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L26) - -### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - -- [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L12) -- [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L19) -- [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L27) - -### [renaming to banned name works](https://github.com/owncloud/ocis/issues/1295) - -- [apiWebdavMove1/moveFolder.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L21) -- [apiWebdavMove1/moveFolder.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L22) -- [apiWebdavMove1/moveFolder.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L34) -- [apiWebdavMove1/moveFolder.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L35) -- [apiWebdavMove1/moveFolder.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L47) -- [apiWebdavMove1/moveFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L48) - -### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - -- [apiWebdavMove1/moveFolderToBlacklistedName.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L21) -- [apiWebdavMove1/moveFolderToBlacklistedName.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L22) -- [apiWebdavMove1/moveFolderToBlacklistedName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L35) -- [apiWebdavMove1/moveFolderToBlacklistedName.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L36) -- [apiWebdavMove1/moveFolderToBlacklistedName.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L70) -- [apiWebdavMove1/moveFolderToBlacklistedName.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L71) - -### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - -- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L21) -- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L22) -- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L34) -- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L35) -- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L70) -- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L71) - -### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavMove2/moveFile.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L89) -- [apiWebdavMove2/moveFile.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L90) -- [apiWebdavMove2/moveFile.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L91) -- [apiWebdavMove2/moveFile.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L92) -- [apiWebdavMove2/moveFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L112) -- [apiWebdavMove2/moveFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L113) -- [apiWebdavMove2/moveFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L136) -- [apiWebdavMove2/moveFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L137) -- [apiWebdavMove2/moveFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L138) -- [apiWebdavMove2/moveFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L139) -- [apiWebdavMove2/moveFile.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L160) -- [apiWebdavMove2/moveFile.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L161) -- [apiWebdavMove2/moveFile.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L181) -- [apiWebdavMove2/moveFile.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L182) -- [apiWebdavMove2/moveFile.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L200) -- [apiWebdavMove2/moveFile.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L201) -- [apiWebdavMove2/moveFile.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L219) -- [apiWebdavMove2/moveFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L220) -- [apiWebdavMove2/moveFile.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L255) -- [apiWebdavMove2/moveFile.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L256) -- [apiWebdavMove2/moveFile.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L272) -- [apiWebdavMove2/moveFile.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L273) - -### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) - -- [apiWebdavMove2/moveFileToBlacklistedName.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L18) -- [apiWebdavMove2/moveFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L19) -- [apiWebdavMove2/moveFileToBlacklistedName.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L29) -- [apiWebdavMove2/moveFileToBlacklistedName.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L30) -- [apiWebdavMove2/moveFileToBlacklistedName.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L62) -- [apiWebdavMove2/moveFileToBlacklistedName.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L63) - -### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) - -- [apiWebdavMove2/moveFileToExcludedDirectory.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L18) -- [apiWebdavMove2/moveFileToExcludedDirectory.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L19) -- [apiWebdavMove2/moveFileToExcludedDirectory.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L28) -- [apiWebdavMove2/moveFileToExcludedDirectory.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L29) -- [apiWebdavMove2/moveFileToExcludedDirectory.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L63) -- [apiWebdavMove2/moveFileToExcludedDirectory.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L64) - -### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavOperations/deleteFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L67) -- [apiWebdavOperations/deleteFolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L68) -- [apiWebdavOperations/deleteFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L69) -- [apiWebdavOperations/deleteFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L70) -- [apiWebdavOperations/deleteFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L91) -- [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) - -### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) -### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavOperations/downloadFile.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L60) -- [apiWebdavOperations/downloadFile.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L61) -- [apiWebdavOperations/downloadFile.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L72) -- [apiWebdavOperations/downloadFile.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L73) -- [apiWebdavOperations/downloadFile.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L84) -- [apiWebdavOperations/downloadFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L85) -- [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) -- [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) - -### [Review and fix the tests that### have sharing step to work with oCIS](https://github.com/owncloud/core/issues/38006) - -- [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) -- [apiWebdavProperties1/copyFile.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L66) -- [apiWebdavProperties1/copyFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L85) -- [apiWebdavProperties1/copyFile.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L86) - -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - -- [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) -- [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) -- [apiWebdavProperties1/createFolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L71) -- [apiWebdavProperties1/createFolder.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L72) - -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) - -- [apiWebdavProperties1/copyFile.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L116) -- [apiWebdavProperties1/copyFile.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L117) -- [apiWebdavProperties1/copyFile.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L129) -- [apiWebdavProperties1/copyFile.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L130) -- [apiWebdavProperties1/copyFile.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L146) -- [apiWebdavProperties1/copyFile.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L147) -- [apiWebdavProperties1/copyFile.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L165) -- [apiWebdavProperties1/copyFile.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L166) -- [apiWebdavProperties1/copyFile.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L202) -- [apiWebdavProperties1/copyFile.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L203) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiWebdavProperties1/copyFile.feature:350](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L350) -- [apiWebdavProperties1/copyFile.feature:351](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L351) -- [apiWebdavProperties1/copyFile.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L370) -- [apiWebdavProperties1/copyFile.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L371) -- [apiWebdavProperties1/copyFile.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L395) -- [apiWebdavProperties1/copyFile.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L396) -- [apiWebdavProperties1/copyFile.feature:422](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L422) -- [apiWebdavProperties1/copyFile.feature:423](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L423) -- [apiWebdavProperties1/copyFile.feature:448](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L448) -- [apiWebdavProperties1/copyFile.feature:449](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L449) -- [apiWebdavProperties1/copyFile.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L474) -- [apiWebdavProperties1/copyFile.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L475) - -### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis/issues/1283) - -- [apiWebdavProperties1/createFolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L85) -- [apiWebdavProperties1/createFolder.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L86) -- [apiWebdavProperties1/createFolder.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L99) -- [apiWebdavProperties1/createFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L100) - -### [quota query](https://github.com/owncloud/ocis/issues/1313) - -- [apiWebdavProperties1/getQuota.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L17) -- [apiWebdavProperties1/getQuota.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L18) -- [apiWebdavProperties1/getQuota.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L27) -- [apiWebdavProperties1/getQuota.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L28) -- [apiWebdavProperties1/getQuota.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L48) -- [apiWebdavProperties1/getQuota.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L49) -- [apiWebdavProperties1/getQuota.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L61) -- [apiWebdavProperties1/getQuota.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L62) -- [apiWebdavProperties1/getQuota.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L77) -- [apiWebdavProperties1/getQuota.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L78) - -### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) - -- [apiWebdavProperties1/setFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L63) -- [apiWebdavProperties1/setFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L64) - -### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis/issues/1296) - -- [apiWebdavProperties2/getFileProperties.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L37) -- [apiWebdavProperties2/getFileProperties.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L39) -- [apiWebdavProperties2/getFileProperties.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L40) -- [apiWebdavProperties2/getFileProperties.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L41) -- [apiWebdavProperties2/getFileProperties.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L43) -- [apiWebdavProperties2/getFileProperties.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L44) -- [apiWebdavProperties2/getFileProperties.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L59) -- [apiWebdavProperties2/getFileProperties.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L60) -- [apiWebdavProperties2/getFileProperties.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L61) -- [apiWebdavProperties2/getFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L63) -- [apiWebdavProperties2/getFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L64) -- [apiWebdavProperties2/getFileProperties.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L66) -- [apiWebdavProperties2/getFileProperties.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L67) -- [apiWebdavProperties2/getFileProperties.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L68) -- [apiWebdavProperties2/getFileProperties.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L70) -- [apiWebdavProperties2/getFileProperties.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L71) - -### [cannot get share-types webdav property](https://github.com/owncloud/ocis/issues/567) - -- [apiWebdavProperties2/getFileProperties.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L135) -- [apiWebdavProperties2/getFileProperties.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L136) -- [apiWebdavProperties2/getFileProperties.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L174) -- [apiWebdavProperties2/getFileProperties.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L175) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiWebdavProperties2/getFileProperties.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L156) -- [apiWebdavProperties2/getFileProperties.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L157) -- [apiWebdavProperties2/getFileProperties.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L206) -- [apiWebdavProperties2/getFileProperties.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L207) - -### [Private link support](https://github.com/owncloud/product/issues/201) -### [oc:privatelink property not returned in webdav responses](https://github.com/owncloud/product/issues/262) - -- [apiWebdavProperties2/getFileProperties.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L232) -- [apiWebdavProperties2/getFileProperties.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L233) - -### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) - -- [apiWebdavProperties2/getFileProperties.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L242) -- [apiWebdavProperties2/getFileProperties.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L243) - -### https://github.com/owncloud/product/issues/264 - -- [apiWebdavProperties2/getFileProperties.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L246) -- [apiWebdavProperties2/getFileProperties.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L266) - -### [Different webdav properties from core](https://github.com/owncloud/ocis/issues/1302) - -- [apiWebdavProperties2/getFileProperties.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L301) -- [apiWebdavProperties2/getFileProperties.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L302) -- [apiWebdavProperties2/getFileProperties.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L314) -- [apiWebdavProperties2/getFileProperties.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L315) -- [apiWebdavProperties2/getFileProperties.feature:327](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L327) -- [apiWebdavProperties2/getFileProperties.feature:328](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L328) -- [apiWebdavProperties2/getFileProperties.feature:376](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L376) -- [apiWebdavProperties2/getFileProperties.feature:377](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L377) -- [apiWebdavProperties2/getFileProperties.feature:441](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L441) -- [apiWebdavProperties2/getFileProperties.feature:442](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L442) -- [apiWebdavProperties2/getFileProperties.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L454) -- [apiWebdavProperties2/getFileProperties.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L455) - -### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) - -- [apiWebdavUpload1/uploadFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L112) -- [apiWebdavUpload1/uploadFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L113) - -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - -- [apiWebdavUpload1/uploadFile.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L127) -- [apiWebdavUpload1/uploadFile.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L128) - -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - also requires test helper to read and clear the log file. - - [apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature#L14) - [apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature#L31) - [apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature#L48) @@ -1328,33 +142,18 @@ User cannot create a folder named Share - [apiWebdavUpload1/uploadFileToBlacklistedNameAsyncUsingNewChunking.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedNameAsyncUsingNewChunking.feature#L48) - [apiWebdavUpload1/uploadFileToBlacklistedNameAsyncUsingNewChunking.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedNameAsyncUsingNewChunking.feature#L49) - [apiWebdavUpload1/uploadFileToBlacklistedNameAsyncUsingNewChunking.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedNameAsyncUsingNewChunking.feature#L52) -- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L14) -- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L24) -- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L49) -- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L50) -- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L51) -- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L54) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L20) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L21) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L33) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L34) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L69) - [apiWebdavUpload1/uploadFileToExcludedDirectory.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectory.feature#L70) - -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L19) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L20) - -### [system configuration options missing](https://github.com/owncloud/ocis/issues/1323) - -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L31) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L32) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L65) -- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L66) - -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - +- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L14) +- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L24) +- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L49) +- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L50) +- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L51) +- [apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToExcludedDirectoryAsyncUsingNewChunking.feature#L54) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature#L12) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature#L21) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingNewChunking.feature#L45) @@ -1382,8 +181,56 @@ User cannot create a folder named Share - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L168) - [apiWebdavUpload2/uploadFileUsingNewChunking.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingNewChunking.feature#L169) -### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: +- [apiVersions/fileVersions.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L104) + +#### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) +- [apiWebdavUpload1/uploadFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L112) +- [apiWebdavUpload1/uploadFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L113) + +#### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L43) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L96) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L97) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L98) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L99) +- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L100) + +#### [invalid file-names should not be created using the TUS protocol](https://github.com/owncloud/ocis/issues/1001) +- [apiWebdavUploadTUS/uploadFile.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L135) +- [apiWebdavUploadTUS/uploadFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L136) +- [apiWebdavUploadTUS/uploadFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L137) +- [apiWebdavUploadTUS/uploadFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L138) +- [apiWebdavUploadTUS/uploadFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L139) +- [apiWebdavUploadTUS/uploadFile.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L140) +- [apiWebdavUploadTUS/uploadFile.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L141) +- [apiWebdavUploadTUS/uploadFile.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L142) + +### [500 Internal Server Error on Post request for TUS upload](https://github.com/owncloud/ocis/issues/1047) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L29) +- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L30) +- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L43) +- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L44) +- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L57) +- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L58) + +#### [upload a file using TUS resource URL as an other user should not work](https://github.com/owncloud/ocis/issues/1141) +- [apiWebdavUploadTUS/uploadFile.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L155) +- [apiWebdavUploadTUS/uploadFile.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L156) + +#### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) +- [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) +- [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) +- [apiWebdavProperties1/createFolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L71) +- [apiWebdavProperties1/createFolder.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L72) +- [apiWebdavUpload1/uploadFile.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L127) +- [apiWebdavUpload1/uploadFile.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L128) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L19) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L20) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:13](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L13) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L19) - [apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToBlacklistedNameUsingOldChunking.feature#L35) @@ -1395,625 +242,184 @@ User cannot create a folder named Share - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L38) - [apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileToExcludedDirectoryUsingOldChunking.feature#L39) -### [uploading with old-chunking does not work](https://github.com/owncloud/ocis/issues/1343) - -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L43) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L96) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L97) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L98) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L99) -- [apiWebdavUpload2/uploadFileUsingOldChunking.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload2/uploadFileUsingOldChunking.feature#L100) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiWebdavUploadTUS/uploadToShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L52) -- [apiWebdavUploadTUS/uploadToShare.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L53) - -### [Sharing does not work](https://github.com/owncloud/ocis/issues/1303) - -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:529](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L529) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:547](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L547) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:565](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L565) - -### [Delete shares from user when user is deleted](hhttps://github.com/owncloud/ocis/issues/1226) -### [when sharing a file mime-type field is set to `application/octet-stream](https://github.com/owncloud/ocis/issues/1271) -### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis/issues/1270) - -- [apiShareOperationsToShares/gettingShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L167) -- [apiShareOperationsToShares/gettingShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L168) - -### [Moving resource loses associated shares](https://github.com/owncloud/ocis/issues/1251) - -- [apiSharePublicLink2/multilinkSharing.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/multilinkSharing.feature#L181) - -### [Previews via webDAV API tests fail on oCIS](https://github.com/owncloud/ocis/issues/187) - -- [apiWebdavPreviews/previews.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L15) -- [apiWebdavPreviews/previews.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L16) -- [apiWebdavPreviews/previews.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L17) -- [apiWebdavPreviews/previews.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L18) -- [apiWebdavPreviews/previews.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L19) -- [apiWebdavPreviews/previews.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L30) -- [apiWebdavPreviews/previews.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L31) -- [apiWebdavPreviews/previews.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L32) -- [apiWebdavPreviews/previews.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L33) -- [apiWebdavPreviews/previews.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L34) -- [apiWebdavPreviews/previews.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L35) -- [apiWebdavPreviews/previews.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L36) -- [apiWebdavPreviews/previews.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L47) -- [apiWebdavPreviews/previews.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L48) -- [apiWebdavPreviews/previews.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L49) -- [apiWebdavPreviews/previews.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L50) -- [apiWebdavPreviews/previews.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L51) -- [apiWebdavPreviews/previews.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L52) -- [apiWebdavPreviews/previews.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L53) -- [apiWebdavPreviews/previews.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L56) -- [apiWebdavPreviews/previews.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L71) -- [apiWebdavPreviews/previews.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L72) -- [apiWebdavPreviews/previews.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L73) -- [apiWebdavPreviews/previews.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L83) -- [apiWebdavPreviews/previews.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L84) -- [apiWebdavPreviews/previews.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L87) -- [apiWebdavPreviews/previews.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L95) -- [apiWebdavPreviews/previews.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L104) -- [apiWebdavPreviews/previews.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L113) -- [apiWebdavPreviews/previews.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L120) -- [apiWebdavPreviews/previews.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L127) -- [apiWebdavPreviews/previews.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L135) -- [apiWebdavPreviews/previews.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L144) -- [apiWebdavPreviews/previews.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L163) -- [apiWebdavPreviews/previews.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L164) -- [apiWebdavPreviews/previews.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L165) -- [apiWebdavPreviews/previews.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L166) -- [apiWebdavPreviews/previews.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L178) -- [apiWebdavPreviews/previews.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L179) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareOperationsToShares/uploadToShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L39) -- [apiShareOperationsToShares/uploadToShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L40) -- [apiShareOperationsToShares/uploadToShare.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L91) -- [apiShareOperationsToShares/uploadToShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L92) -- [apiShareOperationsToShares/uploadToShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L139) -- [apiShareOperationsToShares/uploadToShare.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L140) - -### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) - -- [apiShareOperationsToShares/uploadToShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L162) -- [apiShareOperationsToShares/uploadToShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L163) -- [apiShareOperationsToShares/uploadToShare.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L181) -- [apiShareOperationsToShares/uploadToShare.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L182) -- [apiShareOperationsToShares/uploadToShare.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L202) -- [apiShareOperationsToShares/uploadToShare.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L203) -- [apiShareOperationsToShares/uploadToShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L221) -- [apiShareOperationsToShares/uploadToShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L222) -- [apiShareOperationsToShares/uploadToShare.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L242) -- [apiShareOperationsToShares/uploadToShare.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L243) - -### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - -- [apiShareOperationsToShares/uploadToShare.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L246) - -### [not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) - -- [apiShareOperationsToShares/changingFilesShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L23) -- [apiShareOperationsToShares/changingFilesShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L24) -- [apiShareOperationsToShares/changingFilesShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L63) -- [apiShareOperationsToShares/changingFilesShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L79) -- [apiShareOperationsToShares/changingFilesShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L95) - -### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) - -- [apiShareOperationsToShares/changingFilesShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L40) -- [apiShareOperationsToShares/changingFilesShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L41) -- [apiShareOperationsToShares/changingFilesShare.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L59) -- [apiShareOperationsToShares/changingFilesShare.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L60) - -### [restoring an older version of a shared file deletes the share](https://github.com/owncloud/ocis/issues/765) - -- [apiShareManagementToShares/acceptShares.feature:473](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L473) -- [apiVersions/fileVersionsSharingToShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L44) - -### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) - -- [apiVersions/fileVersionsSharingToShares.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L134) -- [apiVersions/fileVersionsSharingToShares.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L149) -- [apiVersions/fileVersionsSharingToShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L163) -- [apiVersions/fileVersionsSharingToShares.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L250) -- [apiVersions/fileVersionsSharingToShares.feature:251](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L251) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiVersions/fileVersionsSharingToShares.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L179) - -### [not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) - -- [apiVersions/fileVersionsSharingToShares.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L222) -- [apiVersions/fileVersionsSharingToShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L223) -- [apiVersions/fileVersionsSharingToShares.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L224) -- [apiVersions/fileVersionsSharingToShares.feature:225](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L225) - -### [getting the metadata without permission results in a 403 error](https://github.com/owncloud/ocis/issues/773) - -- [apiVersions/fileVersionsSharingToShares.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L256) - -### [The version number of a file is incorrect because of the incorrect number of `` and `` element](https://github.com/owncloud/ocis/issues/1234) - -- [apiVersions/fileVersionsSharingToShares.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L267) - -### [OC-Storage moving a file out of folder removes the versions](https://github.com/owncloud/ocis/issues/777) - -- [apiVersions/fileVersionsSharingToShares.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L252) -- [apiVersions/fileVersionsSharingToShares.feature:253](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L253) - -### [etags are not updated on file operations](https://github.com/owncloud/product/issues/279) - -renaming file/folder doesn't changes the etag of parent
-moving a file/folder from one folder to another doesn't changes etag of destination folder
-renaming a file/folder inside another folder doesn't changes etag of parent folder
-restoring a file doesn't changes the etags of the parents - -- [apiWebdavEtagPropagation1/moveFileFolder.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L21) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L22) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L78) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L79) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L146) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L147) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L174) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L175) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L244) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L245) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L314) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L315) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L318) -- [apiWebdavEtagPropagation1/moveFileFolder.feature:334](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L334) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L26) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L27) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L48) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L49) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L68) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L69) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L90) -- [apiWebdavEtagPropagation2/restoreFromTrash.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation2/restoreFromTrash.feature#L91) - -### [wildcard Access-Control-Allow-Origin](https://github.com/owncloud/ocis/issues/1340) - -- [apiAuth/cors.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L24) -- [apiAuth/cors.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L25) -- [apiAuth/cors.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L26) -- [apiAuth/cors.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L27) -- [apiAuth/cors.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L28) -- [apiAuth/cors.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L29) -- [apiAuth/cors.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L30) -- [apiAuth/cors.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L31) -- [apiAuth/cors.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L32) -- [apiAuth/cors.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L33) -- [apiAuth/cors.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L34) -- [apiAuth/cors.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L35) -- [apiAuth/cors.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L36) -- [apiAuth/cors.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L37) -- [apiAuth/cors.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L38) -- [apiAuth/cors.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L39) -- [apiAuth/cors.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L40) -- [apiAuth/cors.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L41) -- [apiAuth/cors.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L59) -- [apiAuth/cors.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L60) -- [apiAuth/cors.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L61) -- [apiAuth/cors.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L62) -- [apiAuth/cors.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L63) -- [apiAuth/cors.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L64) -- [apiAuth/cors.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L83) -- [apiAuth/cors.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L84) -- [apiAuth/cors.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L85) -- [apiAuth/cors.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L86) -- [apiAuth/cors.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L87) -- [apiAuth/cors.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L88) -- [apiAuth/cors.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L89) -- [apiAuth/cors.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L90) -- [apiAuth/cors.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L91) -- [apiAuth/cors.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L92) -- [apiAuth/cors.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L93) -- [apiAuth/cors.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L94) -- [apiAuth/cors.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L95) -- [apiAuth/cors.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L96) -- [apiAuth/cors.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L97) -- [apiAuth/cors.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L98) -- [apiAuth/cors.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L99) -- [apiAuth/cors.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L100) -- [apiAuth/cors.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L118) -- [apiAuth/cors.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L119) -- [apiAuth/cors.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L120) -- [apiAuth/cors.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L121) -- [apiAuth/cors.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L122) -- [apiAuth/cors.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L123) -- [apiAuth/cors.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L142) -- [apiAuth/cors.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L143) -- [apiAuth/cors.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L144) -- [apiAuth/cors.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L145) -- [apiAuth/cors.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L146) -- [apiAuth/cors.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L147) -- [apiAuth/cors.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L148) -- [apiAuth/cors.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L149) -- [apiAuth/cors.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L150) -- [apiAuth/cors.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L151) -- [apiAuth/cors.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L152) -- [apiAuth/cors.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L153) -- [apiAuth/cors.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L154) -- [apiAuth/cors.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L155) -- [apiAuth/cors.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L156) -- [apiAuth/cors.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L157) -- [apiAuth/cors.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L178) -- [apiAuth/cors.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L179) -- [apiAuth/cors.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L180) -- [apiAuth/cors.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L181) -- [apiAuth/cors.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L182) -- [apiAuth/cors.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L183) - -### [HTTP 401 Unauthorized responses don't contain a body ](https://github.com/owncloud/ocis/issues/1337) -### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) - -- [apiAuthOcs/ocsGETAuth.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L243) - -### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) - -- [apiAuthWebDav/webDavDELETEAuth.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L78) -- [apiAuthWebDav/webDavDELETEAuth.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L92) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) - -- [apiCapabilities/capabilities.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L8) -- [apiCapabilities/capabilities.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L15) -- [apiCapabilities/capabilities.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L21) -- [apiCapabilities/capabilities.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L27) -- [apiCapabilities/capabilities.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L33) -- [apiCapabilities/capabilities.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L38) -- [apiCapabilities/capabilities.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L80) -- [apiCapabilities/capabilities.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L93) -- [apiCapabilities/capabilities.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L107) -- [apiCapabilities/capabilities.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L116) -- [apiCapabilities/capabilities.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L138) -- [apiCapabilities/capabilities.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L144) -- [apiCapabilities/capabilities.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L151) -- [apiCapabilities/capabilities.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L157) -- [apiCapabilities/capabilities.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L166) -- [apiCapabilities/capabilities.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L176) -- [apiCapabilities/capabilities.feature:187](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L187) -- [apiCapabilities/capabilities.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L198) -- [apiCapabilities/capabilities.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L208) -- [apiCapabilities/capabilities.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L219) -- [apiCapabilities/capabilities.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L231) -- [apiCapabilities/capabilities.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L238) -- [apiCapabilities/capabilities.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L252) -- [apiCapabilities/capabilities.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L275) -- [apiCapabilities/capabilities.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L292) -- [apiCapabilities/capabilities.feature:313](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L313) -- [apiCapabilities/capabilities.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L335) -- [apiCapabilities/capabilities.feature:357](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L357) -- [apiCapabilities/capabilities.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L379) -- [apiCapabilities/capabilities.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L404) -- [apiCapabilities/capabilities.feature:429](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L429) -- [apiCapabilities/capabilities.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L454) -- [apiCapabilities/capabilities.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L476) -- [apiCapabilities/capabilities.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L498) -- [apiCapabilities/capabilities.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L521) -- [apiCapabilities/capabilities.feature:546](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L546) -- [apiCapabilities/capabilities.feature:568](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L568) -- [apiCapabilities/capabilities.feature:590](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L590) -- [apiCapabilities/capabilities.feature:613](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L613) -- [apiCapabilities/capabilities.feature:637](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L637) -- [apiCapabilities/capabilities.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L658) -- [apiCapabilities/capabilities.feature:680](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L680) -- [apiCapabilities/capabilities.feature:703](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L703) -- [apiCapabilities/capabilities.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L729) -- [apiCapabilities/capabilities.feature:758](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L758) -- [apiCapabilities/capabilities.feature:787](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L787) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L25) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L26) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L47) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L48) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L66) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L67) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L87) -- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L88) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L25) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L26) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L44) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L45) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L64) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L65) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L83) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L84) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L103) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L104) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L122) -- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L123) - -- [apiMain/caldav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L8) -- [apiMain/caldav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L15) -- [apiMain/caldav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L23) -- [apiMain/caldav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L31) -- [apiMain/carddav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L8) -- [apiMain/carddav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L15) -- [apiMain/carddav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L23) -- [apiMain/carddav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L31) - -### [user-sync endpoint does not exist](https://github.com/owncloud/ocis/issues/1241) - -- [apiMain/userSync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L18) -- [apiMain/userSync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L19) -- [apiMain/userSync.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L29) -- [apiMain/userSync.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L30) -- [apiMain/userSync.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L40) -- [apiMain/userSync.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L41) -- [apiMain/userSync.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L52) -- [apiMain/userSync.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L53) -- [apiMain/userSync.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L63) -- [apiMain/userSync.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L64) - -- [apiProvisioning-v1/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L11) -- [apiProvisioning-v1/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L19) -- [apiProvisioning-v1/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L27) -- [apiProvisioning-v1/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L35) -- [apiProvisioning-v1/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L48) -- [apiProvisioning-v1/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L11) -- [apiProvisioning-v1/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L21) -- [apiProvisioning-v2/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L11) -- [apiProvisioning-v2/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L19) -- [apiProvisioning-v2/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L27) -- [apiProvisioning-v2/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L35) -- [apiProvisioning-v2/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L11) -- [apiProvisioning-v2/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L21) -- [apiProvisioning-v2/getSubAdmins.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L30) -- [apiProvisioning-v2/getSubAdmins.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L44) -- [apiTranslation/translation.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L29) -- [apiTranslation/translation.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L30) - -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) -### [Expiration date for user shares is not implemented](https://github.com/owncloud/ocis/issues/1250) - -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L26) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L27) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L55) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L56) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L83) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L84) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L110) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L111) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L137) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L138) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L159) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L160) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L190) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L191) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L220) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L221) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L249) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L250) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L279) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L280) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:300](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L300) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L301) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L322) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:323](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L323) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:344](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L344) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:345](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L345) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L367) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L368) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:385](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L385) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:386](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L386) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L403) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L404) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:426](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L426) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:427](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L427) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L450) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L451) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L474) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L475) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:499](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L499) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:500](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L500) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L521) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:522](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L522) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:543](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L543) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:544](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L544) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:563](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L563) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:564](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L564) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:581](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L581) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:582](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L582) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:603](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L603) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:604](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L604) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:628](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L628) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:629](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L629) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:630](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L630) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:631](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L631) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L632) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:653](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L653) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:654](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L654) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:655](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L655) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:656](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L656) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:657](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L657) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L658) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:659](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L659) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:660](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L660) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:661](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L661) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:662](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L662) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:663](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L663) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:664](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L664) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:685](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L685) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:686](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L686) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:687](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L687) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:688](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L688) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:689](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L689) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:690](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L690) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:711](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L711) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:712](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L712) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:713](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L713) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:714](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L714) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:715](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L715) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:716](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L716) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:737](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L737) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:738](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L738) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:759](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L759) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:760](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L760) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:781](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L781) -- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:782](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L782) - -### [sharing with group not available](https://github.com/owncloud/product/issues/293) - -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L36) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L37) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L65) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L66) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L85) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L86) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L106) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L107) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L201) -- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L202) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L10) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L34) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L58) -- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L82) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L46) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L47) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L48) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L49) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L50) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L51) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L82) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L83) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L84) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L85) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L86) -- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L87) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:438](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L438) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:439](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L439) -- [apiShareOperationsToShares/accessToShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L71) -- [apiShareOperationsToShares/accessToShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L72) - -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - -- [apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature#L15) -- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L18) -- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L21) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L51) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L52) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L70) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L71) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L72) -- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L73) -- [apiShareManagementToShares/moveReceivedShare.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L14) -- [apiShareManagementToShares/moveReceivedShare.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L28) -- [apiShareManagementToShares/moveReceivedShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L39) -- [apiShareManagementToShares/moveReceivedShare.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L70) -- [apiShareManagementToShares/moveReceivedShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L71) -- [apiShareManagementToShares/moveReceivedShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L73) -- [apiShareManagementToShares/moveReceivedShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L88) -- [apiShareManagementToShares/moveReceivedShare.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L102) -- [apiShareManagementToShares/moveReceivedShare.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L110) -- [apiShareManagementToShares/moveReceivedShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L118) -- [apiShareManagementToShares/moveReceivedShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L128) -- [apiShareManagementToShares/moveReceivedShare.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L138) -- [apiShareManagementToShares/moveReceivedShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L148) -- [apiShareManagementToShares/moveReceivedShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L158) -- [apiShareManagementToShares/moveReceivedShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L168) -- [apiShareManagementToShares/moveReceivedShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L197) -- [apiShareManagementToShares/moveReceivedShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L198) -- [apiShareManagementToShares/moveReceivedShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L221) -- [apiShareManagementToShares/moveReceivedShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L222) - -### [file_target in share response](https://github.com/owncloud/product/issues/203) -### [cannot get ocs:share-permissions via WebDAV](https://github.com/owncloud/ocis/issues/1326) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L59) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L60) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L73) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L74) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L94) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L95) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:108](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L108) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:109](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L109) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L129) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L130) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L177) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L178) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L191) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L192) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L212) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L213) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:226](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L226) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:227](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L227) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L247) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L248) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:261](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L261) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:262](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L262) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:282](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L282) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L283) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:296](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L296) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L297) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L317) -- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L318) -- [apiShareUpdateToShares/updateShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L92) -- [apiShareUpdateToShares/updateShare.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L93) -- [apiShareUpdateToShares/updateShare.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L94) -- [apiShareUpdateToShares/updateShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L95) -- [apiShareUpdateToShares/updateShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L96) -- [apiShareUpdateToShares/updateShare.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L97) -- [apiShareUpdateToShares/updateShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L123) -- [apiShareUpdateToShares/updateShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L155) - -### [No way to set default folder for received shares](https://github.com/owncloud/ocis/issues/1327) - -- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L21) -- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L22) - -### [Group shares support](https://github.com/owncloud/ocis/issues/1289) - -- [apiShareOperationsToShares/gettingShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L103) -- [apiShareOperationsToShares/gettingShares.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L104) -- [apiShareOperationsToShares/gettingShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L184) - -### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) -### [Group shares support](https://github.com/owncloud/ocis/issues/1289) - -- [apiShareUpdateToShares/updateShare.feature:290](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L290) -- [apiShareUpdateToShares/updateShare.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L291) -- [apiShareUpdateToShares/updateShare.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L306) -- [apiShareUpdateToShares/updateShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L307) -- [apiShareUpdateToShares/updateShare.feature:334](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L334) -- [apiShareUpdateToShares/updateShare.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L335) -- [apiShareUpdateToShares/updateShare.feature:364](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L364) -- [apiShareUpdateToShares/updateShare.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L365) - -### [Group shares support](https://github.com/owncloud/ocis/issues/1289) -### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) - -- [apiShareUpdateToShares/updateShare.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L61) -- [apiShareUpdateToShares/updateShare.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L62) -- [apiShareUpdateToShares/updateShare.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L75) -- [apiShareUpdateToShares/updateShare.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L76) -- [apiShareUpdateToShares/updateShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L115) -- [apiShareUpdateToShares/updateShare.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L116) -- [apiShareUpdateToShares/updateShare.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L117) -- [apiShareUpdateToShares/updateShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L118) -- [apiShareUpdateToShares/updateShare.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L119) -- [apiShareUpdateToShares/updateShare.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L120) -- [apiShareUpdateToShares/updateShare.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L252) -- [apiShareUpdateToShares/updateShare.feature:253](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L253) -- [apiShareUpdateToShares/updateShare.feature:265](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L265) -- [apiShareUpdateToShares/updateShare.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L266) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L34) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L35) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L54) -- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L55) - -### [Share additional info](https://github.com/owncloud/ocis/issues/1253) -### [Share extra attributes](https://github.com/owncloud/ocis/issues/1224) -### [Edit user share response has an "name" field](https://github.com/owncloud/ocis/issues/1225) - -- [apiShareUpdateToShares/updateShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L230) -- [apiShareUpdateToShares/updateShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L231) - -### [Webdav LOCK operations](https://github.com/owncloud/ocis/issues/1284) - +#### [cannot rename files asynchronously](https://github.com/owncloud/product/issues/259) +- [apiWebdavMove1/moveFileAsync.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L26) +- [apiWebdavMove1/moveFileAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L27) +- [apiWebdavMove1/moveFileAsync.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L28) +- [apiWebdavMove1/moveFileAsync.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L29) +- [apiWebdavMove1/moveFileAsync.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L30) +- [apiWebdavMove1/moveFileAsync.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L31) +- [apiWebdavMove1/moveFileAsync.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L33) +- [apiWebdavMove1/moveFileAsync.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L46) +- [apiWebdavMove1/moveFileAsync.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L59) +- [apiWebdavMove1/moveFileAsync.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L73) +- [apiWebdavMove1/moveFileAsync.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L88) +- [apiWebdavMove1/moveFileAsync.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L107) +- [apiWebdavMove1/moveFileAsync.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L125) +- [apiWebdavMove1/moveFileAsync.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L135) +- [apiWebdavMove1/moveFileAsync.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L141) +- [apiWebdavMove1/moveFileAsync.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L204) +- [apiWebdavMove1/moveFileAsync.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L205) +- [apiWebdavMove1/moveFileAsync.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L224) +- [apiWebdavMove1/moveFileAsync.feature:225](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L225) +- [apiWebdavMove1/moveFileAsync.feature:234](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L234) +- [apiWebdavMove1/moveFileAsync.feature:235](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L235) +- [apiWebdavMove1/moveFileAsync.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileAsync.feature#L240) + +#### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) +- [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L12) +- [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L18) +- [apiWebdavMove1/moveFileToBlacklistedNameAsync.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToBlacklistedNameAsync.feature#L26) + +#### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) +- [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:12](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L12) +- [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L19) +- [apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFileToExcludedDirectoryAsync.feature#L27) + +#### [renaming to banned name works](https://github.com/owncloud/ocis/issues/1295) +- [apiWebdavMove1/moveFolder.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L21) +- [apiWebdavMove1/moveFolder.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L22) +- [apiWebdavMove1/moveFolder.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L34) +- [apiWebdavMove1/moveFolder.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L35) +- [apiWebdavMove1/moveFolder.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L47) +- [apiWebdavMove1/moveFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolder.feature#L48) + +#### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) +- [apiWebdavMove1/moveFolderToBlacklistedName.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L21) +- [apiWebdavMove1/moveFolderToBlacklistedName.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L22) +- [apiWebdavMove1/moveFolderToBlacklistedName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L35) +- [apiWebdavMove1/moveFolderToBlacklistedName.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L36) +- [apiWebdavMove1/moveFolderToBlacklistedName.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L70) +- [apiWebdavMove1/moveFolderToBlacklistedName.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToBlacklistedName.feature#L71) + +#### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) +- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L21) +- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L22) +- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L34) +- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L35) +- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L70) +- [apiWebdavMove1/moveFolderToExcludedDirectory.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove1/moveFolderToExcludedDirectory.feature#L71) + +#### [cannot set blacklisted file names](https://github.com/owncloud/product/issues/260) +- [apiWebdavMove2/moveFileToBlacklistedName.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L18) +- [apiWebdavMove2/moveFileToBlacklistedName.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L19) +- [apiWebdavMove2/moveFileToBlacklistedName.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L29) +- [apiWebdavMove2/moveFileToBlacklistedName.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L30) +- [apiWebdavMove2/moveFileToBlacklistedName.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L62) +- [apiWebdavMove2/moveFileToBlacklistedName.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToBlacklistedName.feature#L63) + +#### [cannot set excluded directories](https://github.com/owncloud/product/issues/261) +- [apiWebdavMove2/moveFileToExcludedDirectory.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L18) +- [apiWebdavMove2/moveFileToExcludedDirectory.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L19) +- [apiWebdavMove2/moveFileToExcludedDirectory.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L28) +- [apiWebdavMove2/moveFileToExcludedDirectory.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L29) +- [apiWebdavMove2/moveFileToExcludedDirectory.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L63) +- [apiWebdavMove2/moveFileToExcludedDirectory.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFileToExcludedDirectory.feature#L64) + +#### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) + +#### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) +- [apiWebdavProperties1/copyFile.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L116) +- [apiWebdavProperties1/copyFile.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L117) +- [apiWebdavProperties1/copyFile.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L129) +- [apiWebdavProperties1/copyFile.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L130) +- [apiWebdavProperties1/copyFile.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L146) +- [apiWebdavProperties1/copyFile.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L147) +- [apiWebdavProperties1/copyFile.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L165) +- [apiWebdavProperties1/copyFile.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L166) +- [apiWebdavProperties1/copyFile.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L202) +- [apiWebdavProperties1/copyFile.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L203) +- [apiWebdavProperties1/copyFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L220) +- [apiWebdavProperties1/copyFile.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L221) +- [apiWebdavProperties1/copyFile.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L237) +- [apiWebdavProperties1/copyFile.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L238) +- [apiWebdavProperties1/copyFile.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L259) +- [apiWebdavProperties1/copyFile.feature:260](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L260) +- [apiWebdavProperties1/copyFile.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L283) +- [apiWebdavProperties1/copyFile.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L284) +- [apiWebdavProperties1/copyFile.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L306) +- [apiWebdavProperties1/copyFile.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L307) +- [apiWebdavProperties1/copyFile.feature:329](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L329) +- [apiWebdavProperties1/copyFile.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L330) + +#### [creating a folder that already exists returns an empty body](https://github.com/owncloud/ocis/issues/1283) +Scenario Outline: try to create a folder that already exists +- [apiWebdavProperties1/createFolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L85) +- [apiWebdavProperties1/createFolder.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L86) + Scenario Outline: try to create a folder with a name of an existing file +- [apiWebdavProperties1/createFolder.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L99) +- [apiWebdavProperties1/createFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/createFolder.feature#L100) + +#### [XML properties in webdav response not properly encoded](https://github.com/owncloud/ocis/issues/1296) +Scenario Outline: Do a PROPFIND of various file names +- [apiWebdavProperties2/getFileProperties.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L37) +- [apiWebdavProperties2/getFileProperties.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L39) +- [apiWebdavProperties2/getFileProperties.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L40) +- [apiWebdavProperties2/getFileProperties.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L41) +- [apiWebdavProperties2/getFileProperties.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L43) +- [apiWebdavProperties2/getFileProperties.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L44) + +Scenario Outline: Do a PROPFIND of various folder names +- [apiWebdavProperties2/getFileProperties.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L59) +- [apiWebdavProperties2/getFileProperties.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L60) +- [apiWebdavProperties2/getFileProperties.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L61) +- [apiWebdavProperties2/getFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L63) +- [apiWebdavProperties2/getFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L64) +- [apiWebdavProperties2/getFileProperties.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L66) +- [apiWebdavProperties2/getFileProperties.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L67) +- [apiWebdavProperties2/getFileProperties.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L68) +- [apiWebdavProperties2/getFileProperties.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L70) +- [apiWebdavProperties2/getFileProperties.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L71) + +### [Different webdav properties from core](https://github.com/owncloud/ocis/issues/1302) +Scenario Outline: Propfind the last modified date of a folder using webdav api `Property "d:getlastmodified" found with value "Wed, 20 Jan 2021 14:39:31 +0000", expected "/^[MTWFS][uedhfriatno]{2},\s(\d){2}\s[JFMAJSOND][anebrpyulgctov]{2}\s\d{4}\s\d{2}:\d{2}:\d{2} GMT$/"` +- [apiWebdavProperties2/getFileProperties.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L301) +- [apiWebdavProperties2/getFileProperties.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L302) + Scenario Outline: Propfind the content type of a folder using webdav api `Property "d:getcontenttype" found with value "httpd/unix-directory", expected "#^$#" or "#^$#"` +- [apiWebdavProperties2/getFileProperties.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L314) +- [apiWebdavProperties2/getFileProperties.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L315) + Scenario Outline: Propfind the content type of a file using webdav api `Property "d:getcontenttype" found with value "text/plain; charset=utf-8", expected "#^text/plain$#" or "#^text/plain$#"` +- [apiWebdavProperties2/getFileProperties.feature:327](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L327) +- [apiWebdavProperties2/getFileProperties.feature:328](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L328) + Scenario Outline: Propfind the size of a folder using webdav api `Property "oc:size" found with value "10", expected "#^0$#" or "#^0$#"` +- [apiWebdavProperties2/getFileProperties.feature:376](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L376) +- [apiWebdavProperties2/getFileProperties.feature:377](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L377) + Scenario Outline: Propfind the permissions on a file using webdav api `Property "oc:permissions" found with value "DNVWR", expected "/RM{0,1}DNVW/"` +- [apiWebdavProperties2/getFileProperties.feature:441](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L441) +- [apiWebdavProperties2/getFileProperties.feature:442](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L442) + Scenario Outline: Propfind the permissions on a folder using webdav api `Property "oc:permissions" found with value "DNVCKR", expected "/RM{0,1}DNVCK/"` +- [apiWebdavProperties2/getFileProperties.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L454) +- [apiWebdavProperties2/getFileProperties.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L455) + +#### [Some failing tests with Webdav custom properties](https://github.com/owncloud/ocis/issues/1297) +_ocdav: double check the webdav property parsing when custom namespaces are used_ +- [apiWebdavProperties1/setFileProperties.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L32) +- [apiWebdavProperties1/setFileProperties.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L33) +- [apiWebdavProperties1/setFileProperties.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L63) +- [apiWebdavProperties1/setFileProperties.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/setFileProperties.feature#L64) + +#### [Cannot set custom webDav properties](https://github.com/owncloud/product/issues/264) +- [apiWebdavProperties2/getFileProperties.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L246) +- [apiWebdavProperties2/getFileProperties.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L266) + +### Sync +Synchronization features like etag propagation, setting mtime and locking files + +#### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) +_ocdav: return checksum in upload response for chunked upload_ +- [apiMain/checksums.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L58) Scenario: Uploading a chunked file with checksum should return the checksum in the propfind +- [apiMain/checksums.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L67) Scenario: Uploading a chunked file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L138) Scenario: Upload new dav chunked file where checksum matches +- [apiMain/checksums.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L147) Scenario: Upload new dav chunked file where checksum does not match +- [apiMain/checksums.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L158) Scenario: Upload new dav chunked file using async MOVE where checksum matches +- [apiMain/checksums.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L174) Scenario: Upload new dav chunked file using async MOVE where checksum does not match +- [apiMain/checksums.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L192) Scenario: Upload new dav chunked file using async MOVE where checksum does not match - retry with correct checksum +- [apiMain/checksums.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L258) Scenario: Uploading an old method chunked file with checksum should fail using new DAV path +- [apiMain/checksums.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L312) Scenario: Upload overwriting a file with new chunking and correct checksum +- [apiMain/checksums.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L324) Scenario: Upload overwriting a file with new chunking and invalid checksum + + +#### [Webdav LOCK operations](https://github.com/owncloud/ocis/issues/1284) - [apiWebdavLocks/exclusiveLocks.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L17) - [apiWebdavLocks/exclusiveLocks.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L18) - [apiWebdavLocks/exclusiveLocks.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocks/exclusiveLocks.feature#L19) @@ -2343,77 +749,1283 @@ restoring a file doesn't changes the etags of the parents - [apiWebdavLocksUnlock/unlockSharingToShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToShares.feature#L167) - [apiWebdavLocksUnlock/unlockSharingToShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavLocksUnlock/unlockSharingToShares.feature#L168) -### [Getting information about a folder overwritten by a file gives 500 error instead of 404](https://github.com/owncloud/ocis/issues/1239) +### Share +File and sync features in a shared scenario -- [apiWebdavProperties1/copyFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L220) -- [apiWebdavProperties1/copyFile.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L221) -- [apiWebdavProperties1/copyFile.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L237) -- [apiWebdavProperties1/copyFile.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L238) -- [apiWebdavProperties1/copyFile.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L259) -- [apiWebdavProperties1/copyFile.feature:260](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L260) -- [apiWebdavProperties1/copyFile.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L283) -- [apiWebdavProperties1/copyFile.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L284) -- [apiWebdavProperties1/copyFile.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L306) -- [apiWebdavProperties1/copyFile.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L307) -- [apiWebdavProperties1/copyFile.feature:329](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L329) -- [apiWebdavProperties1/copyFile.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L330) +#### [etags don't change for a share receiver](https://github.com/owncloud/product/issues/243) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L244) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L245) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:314](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L314) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:315](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L315) -### [creating existing group doesn't gives error](https://github.com/owncloud/product/issues/282) -- [apiProvisioningGroups-v1/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L94) -- [apiProvisioningGroups-v2/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L94) +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: +- [apiWebdavEtagPropagation1/moveFileFolder.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L21) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L22) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L78) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L79) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L146) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L147) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L174) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L175) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L318) +- [apiWebdavEtagPropagation1/moveFileFolder.feature:334](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavEtagPropagation1/moveFileFolder.feature#L334) -### [cannot create group with '/'](https://github.com/owncloud/product/issues/285) -- [apiProvisioningGroups-v1/addToGroup.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L75) -- [apiProvisioningGroups-v1/addToGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L76) -- [apiProvisioningGroups-v1/addToGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L77) -- [apiProvisioningGroups-v1/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L85) -- [apiProvisioningGroups-v1/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L86) -- [apiProvisioningGroups-v1/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L87) -- [apiProvisioningGroups-v1/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L38) -- [apiProvisioningGroups-v1/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L76) -- [apiProvisioningGroups-v1/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L77) -- [apiProvisioningGroups-v1/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L78) +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) -- [apiProvisioningGroups-v2/addToGroup.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L70) -- [apiProvisioningGroups-v2/addToGroup.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L71) -- [apiProvisioningGroups-v2/addToGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L72) -- [apiProvisioningGroups-v2/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L85) -- [apiProvisioningGroups-v2/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L86) -- [apiProvisioningGroups-v2/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L87) -- [apiProvisioningGroups-v2/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L38) -- [apiProvisioningGroups-v2/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L76) -- [apiProvisioningGroups-v2/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L77) -- [apiProvisioningGroups-v2/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L78) +- [apiShareOperationsToShares/uploadToShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L39) +- [apiShareOperationsToShares/uploadToShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L40) +- [apiShareOperationsToShares/uploadToShare.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L91) +- [apiShareOperationsToShares/uploadToShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L92) +- [apiShareOperationsToShares/uploadToShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L139) +- [apiShareOperationsToShares/uploadToShare.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L140) -### [adding user to non-existent group gives wrong statuscode](https://github.com/owncloud/product/issues/286) -- [apiProvisioningGroups-v1/addToGroup.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L107) -- [apiProvisioningGroups-v1/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L101) +#### [Checksum feature](https://github.com/owncloud/ocis/issues/1291) +- [apiMain/checksums.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L119) Scenario: Sharing a file with checksum should return the checksum in the propfind using new DAV path +- [apiMain/checksums.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L129) Scenario: Sharing and modifying a file should return correct checksum in the propfind using new DAV path -- [apiProvisioningGroups-v2/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L101) +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: -### [adding user to empty group gives wrong statuscode](https://github.com/owncloud/product/issues/287) -- [apiProvisioningGroups-v1/addToGroup.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L116) +- [apiMain/checksums.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L24) Scenario Outline: Uploading a file with checksum should return the checksum in the propfind +- [apiMain/checksums.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L25) Scenario Outline: Uploading a file with checksum should return the checksum in the propfind +- [apiMain/checksums.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L35) Scenario Outline: Uploading a file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L36) Scenario Outline: Uploading a file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L46) Scenario Outline: Moving a file with checksum should return the checksum in the propfind +- [apiMain/checksums.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L47) Scenario Outline: Moving a file with checksum should return the checksum in the propfind +- [apiMain/checksums.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L50) Scenario: Downloading a file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L99) Scenario Outline: Moving file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L100) Scenario Outline: Moving file with checksum should return the checksum in the download header +- [apiMain/checksums.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L103) Scenario: Copying a file with checksum should return the checksum in the propfind using new DAV path +- [apiMain/checksums.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L110) Scenario: Copying file with checksum should return the checksum in the download header using new DAV path +- [apiMain/checksums.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L217) Scenario Outline: Upload a file where checksum does not match +- [apiMain/checksums.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L218) Scenario Outline: Upload a file where checksum does not match +- [apiMain/checksums.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L239) Scenario Outline: Uploaded file should have the same checksum when downloaded +- [apiMain/checksums.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L240) Scenario Outline: Uploaded file should have the same checksum when downloaded +- [apiMain/checksums.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L279) Scenario Outline: Uploading a file with MD5 checksum overwriting an existing file +- [apiMain/checksums.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L280) Scenario Outline: Uploading a file with MD5 checksum overwriting an existing file +- [apiMain/checksums.feature:295](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L295) Scenario Outline: Uploading a file with SHA1 checksum overwriting an existing file +- [apiMain/checksums.feature:296](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L296) Scenario Outline: Uploading a file with SHA1 checksum overwriting an existing file +- [apiMain/checksums.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L308) Scenario Outline: Uploading a file with invalid SHA1 checksum overwriting an existing file +- [apiMain/checksums.feature:309](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/checksums.feature#L309) Scenario Outline: Uploading a file with invalid SHA1 checksum overwriting an existing file -### [adding non-existent user to a group gives wrong status code](https://github.com/owncloud/product/issues/288) -- [apiProvisioningGroups-v1/addToGroup.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L124) +#### [Searching sharee with displayname](https://github.com/owncloud/ocis/issues/547) +- [apiSharees/sharees.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L32) +- [apiSharees/sharees.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L33) +- [apiSharees/sharees.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L53) +- [apiSharees/sharees.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L54) +- [apiSharees/sharees.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L74) +- [apiSharees/sharees.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L75) +- [apiSharees/sharees.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L98) +- [apiSharees/sharees.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L99) +- [apiSharees/sharees.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L118) +- [apiSharees/sharees.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L119) +- [apiSharees/sharees.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L137) +- [apiSharees/sharees.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L138) +- [apiSharees/sharees.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L157) +- [apiSharees/sharees.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L158) +- [apiSharees/sharees.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L177) +- [apiSharees/sharees.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L178) +- [apiSharees/sharees.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L198) +- [apiSharees/sharees.feature:199](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L199) +- [apiSharees/sharees.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L217) +- [apiSharees/sharees.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L218) +- [apiSharees/sharees.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L237) +- [apiSharees/sharees.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L238) +- [apiSharees/sharees.feature:257](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L257) +- [apiSharees/sharees.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L258) +- [apiSharees/sharees.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L277) +- [apiSharees/sharees.feature:278](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L278) +- [apiSharees/sharees.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L297) +- [apiSharees/sharees.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L298) +- [apiSharees/sharees.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L317) +- [apiSharees/sharees.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L318) +- [apiSharees/sharees.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L336) +- [apiSharees/sharees.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L337) +- [apiSharees/sharees.feature:355](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L355) +- [apiSharees/sharees.feature:356](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L356) +- [apiSharees/sharees.feature:374](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L374) +- [apiSharees/sharees.feature:375](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L375) +- [apiSharees/sharees.feature:393](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L393) +- [apiSharees/sharees.feature:394](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L394) +- [apiSharees/sharees.feature:412](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L412) +- [apiSharees/sharees.feature:413](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L413) +- [apiSharees/sharees.feature:430](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L430) +- [apiSharees/sharees.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L431) +- [apiSharees/sharees.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L450) +- [apiSharees/sharees.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L451) +- [apiSharees/sharees.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L475) +- [apiSharees/sharees.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L476) +- [apiSharees/sharees.feature:495](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L495) +- [apiSharees/sharees.feature:496](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L496) +- [apiSharees/sharees.feature:515](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L515) +- [apiSharees/sharees.feature:516](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L516) +- [apiSharees/sharees.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L537) +- [apiSharees/sharees.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharees/sharees.feature#L538) -### [subadmin endpoints not implemented](https://github.com/owncloud/product/issues/289) +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiShareManagementToShares/acceptShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L22) +- [apiShareManagementToShares/acceptShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L223) +- [apiShareManagementToShares/acceptShares.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L270) +- [apiShareManagementToShares/acceptShares.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L342) +- [apiShareManagementToShares/acceptShares.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L378) +- [apiShareManagementToShares/acceptShares.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L417) + +#### User cannot create a folder named Share +- [apiShareManagementToShares/acceptShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L279) +- [apiShareManagementToShares/acceptShares.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L298) + +#### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) + +- [apiShareManagementToShares/acceptShares.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L71) +- [apiShareManagementToShares/acceptShares.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L162) +- [apiShareManagementToShares/acceptShares.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L175) +- [apiShareManagementToShares/acceptShares.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L196) +- [apiShareManagementToShares/acceptShares.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L249) +- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L28) +- [apiShareManagementToShares/acceptSharesToSharesFolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptSharesToSharesFolder.feature#L48) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L140) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L141) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L176) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L177) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) + +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L36) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L37) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L66) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L67) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L91) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L92) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L94) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L95) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L97) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L98) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L155) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L156) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:288](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L288) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L289) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L305) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L306) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L46) +- [apiShareManagementToShares/mergeShare.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L32) +- [apiShareManagementToShares/mergeShare.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L42) +- [apiShareManagementToShares/mergeShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L89) + +#### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L100) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L101) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L179) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L180) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L204) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L205) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L236) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L237) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L258) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L259) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:324](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L324) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:325](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L325) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:362](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L362) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:363](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L363) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:392](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L392) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:461](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L461) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:462](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L462) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:497](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L497) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L498) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:501](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L501) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L28) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L29) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L89) + +#### [shares are mounted into /Shares folder even after the sharer deletes the collaborator](https://github.com/owncloud/ocis/issues/720) +#### [deleting share response does not contain `data` field](https://github.com/owncloud/ocis/issues/721) + +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L43) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L44) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L367) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:529](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L529) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:547](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L547) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:565](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L565) + +#### [Response is empty when accepting a share](https://github.com/owncloud/product/issues/207) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:342](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L342) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:343](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L343) + +#### [File deletion using dav gives unique string in filename in the trashbin](https://github.com/owncloud/product/issues/178) + +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L58) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L72) + +cannot share a folder with create permission +#### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) + +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L118) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L130) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L181) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L182) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L183) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L184) + +#### [Shares are not deleted when user is deleted](https://github.com/owncloud/ocis/issues/1258) +- [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) +- [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) + +#### [There is no such thing like a super-user](https://github.com/owncloud/ocis/issues/1319) + +- [apiShareOperationsToShares/gettingShares.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L38) +- [apiShareOperationsToShares/gettingShares.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L39) + +#### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) +#### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis-reva/issues/301) +#### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) + +- [apiShareOperationsToShares/gettingShares.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L135) +- [apiShareOperationsToShares/gettingShares.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L136) + +#### [OCS error message for attempting to access share via share id as an unauthorized user is not informative](https://github.com/owncloud/ocis/issues/1233) + +- [apiShareOperationsToShares/gettingShares.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L180) +- [apiShareOperationsToShares/gettingShares.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L181) + +#### [Listing shares via ocs API does not show path for parent folders](https://github.com/owncloud/ocis/issues/1231) + +- [apiShareOperationsToShares/gettingShares.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L219) +- [apiShareOperationsToShares/gettingShares.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L220) + +#### [Allow getting the share list filtered by share type via API](https://github.com/owncloud/ocis/issues/774) + +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L44) +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L45) +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L56) +- [apiShareOperationsToShares/gettingSharesPendingFiltered.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesPendingFiltered.feature#L57) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L47) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L48) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L60) +- [apiShareOperationsToShares/gettingSharesReceivedFiltered.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFiltered.feature#L61) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L41) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L42) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L62) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L63) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L90) +- [apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesReceivedFilteredEmpty.feature#L91) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L48) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L49) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L62) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L63) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L76) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L77) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L92) +- [apiShareOperationsToShares/gettingSharesSharedFiltered.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFiltered.feature#L93) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L39) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L40) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L60) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L61) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L79) +- [apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingSharesSharedFilteredEmpty.feature#L80) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) + +- [apiShareOperationsToShares/gettingShares.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L167) +- [apiShareOperationsToShares/gettingShares.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L168) + +#### [Split old public API webdav tests from new public webdav tests](https://github.com/owncloud/ocis-reva/issues/282) +#### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) +#### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) + +- [apiSharePublicLink1/accessToPublicLinkShare.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L10) +- [apiSharePublicLink1/accessToPublicLinkShare.feature:20](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L20) +- [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) +- [apiSharePublicLink1/accessToPublicLinkShare.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L43) + +#### [creating public links with permissions fails](https://github.com/owncloud/product/issues/252) + +- [apiSharePublicLink1/changingPublicLinkShare.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L22) +- [apiSharePublicLink1/changingPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L23) +- [apiSharePublicLink1/changingPublicLinkShare.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L37) +- [apiSharePublicLink1/changingPublicLinkShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L41) +- [apiSharePublicLink1/changingPublicLinkShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L52) +- [apiSharePublicLink1/changingPublicLinkShare.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L85) +- [apiSharePublicLink1/changingPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L96) + +#### [Old webdav api does not work with public link](https://github.com/owncloud/product/issues/272) + +- [apiSharePublicLink1/changingPublicLinkShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L63) +- [apiSharePublicLink1/changingPublicLinkShare.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L107) +- [apiSharePublicLink1/changingPublicLinkShare.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L151) +- [apiSharePublicLink1/changingPublicLinkShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L197) +- [apiSharePublicLink1/changingPublicLinkShare.feature:244](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L244) + +#### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) + +- [apiSharePublicLink1/changingPublicLinkShare.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L267) +- [apiSharePublicLink1/changingPublicLinkShare.feature:289](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L289) +- [apiSharePublicLink1/createPublicLinkShare.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L34) +- [apiSharePublicLink1/createPublicLinkShare.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L35) +- [apiSharePublicLink1/createPublicLinkShare.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L183) +- [apiSharePublicLink1/createPublicLinkShare.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L184) +- [apiSharePublicLink1/createPublicLinkShare.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L214) +- [apiSharePublicLink1/createPublicLinkShare.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L215) +- [apiSharePublicLink1/createPublicLinkShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L307) +- [apiSharePublicLink1/createPublicLinkShare.feature:308](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L308) +- [apiSharePublicLink1/createPublicLinkShare.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L370) +- [apiSharePublicLink1/createPublicLinkShare.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L371) + +#### [Range Header is not obeyed when downloading a file](https://github.com/owncloud/ocis/issues/1346) + +- [apiSharePublicLink1/createPublicLinkShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L95) +- [apiSharePublicLink1/createPublicLinkShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L96) +- [apiSharePublicLink1/createPublicLinkShare.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L276) +- [apiSharePublicLink1/createPublicLinkShare.feature:277](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L277) + +#### [Ability to return error messages in Webdav response bodies](https://github.com/owncloud/ocis/issues/1293) + +- [apiSharePublicLink1/createPublicLinkShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L127) +- [apiSharePublicLink1/createPublicLinkShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L128) +- [apiSharePublicLink1/createPublicLinkShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L155) +- [apiSharePublicLink1/createPublicLinkShare.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L156) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) + +- [apiSharePublicLink1/createPublicLinkShare.feature:410](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L410) +- [apiSharePublicLink1/createPublicLinkShare.feature:411](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L411) +- [apiSharePublicLink1/createPublicLinkShare.feature:431](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L431) +- [apiSharePublicLink1/createPublicLinkShare.feature:432](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L432) +- [apiSharePublicLink1/createPublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L454) +- [apiSharePublicLink1/createPublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L455) +- [apiSharePublicLink1/createPublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L477) +- [apiSharePublicLink1/createPublicLinkShare.feature:478](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L478) +- [apiSharePublicLink1/createPublicLinkShare.feature:479](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L479) +- [apiSharePublicLink1/createPublicLinkShare.feature:480](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L480) +- [apiSharePublicLink1/createPublicLinkShare.feature:481](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L481) +- [apiSharePublicLink1/createPublicLinkShare.feature:482](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L482) +- [apiSharePublicLink1/createPublicLinkShare.feature:502](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L502) +- [apiSharePublicLink1/createPublicLinkShare.feature:503](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L503) +- [apiSharePublicLink1/createPublicLinkShare.feature:518](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L518) +- [apiSharePublicLink1/createPublicLinkShare.feature:519](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L519) +- [apiSharePublicLink1/createPublicLinkShare.feature:537](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L537) +- [apiSharePublicLink1/createPublicLinkShare.feature:538](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L538) +- [apiSharePublicLink1/createPublicLinkShare.feature:574](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L574) +- [apiSharePublicLink1/createPublicLinkShare.feature:575](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L575) +- [apiSharePublicLink1/createPublicLinkShare.feature:635](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L635) +- [apiSharePublicLink1/createPublicLinkShare.feature:636](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L636) +- [apiSharePublicLink1/createPublicLinkShare.feature:649](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L649) +- [apiSharePublicLink1/createPublicLinkShare.feature:650](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L650) +- [apiSharePublicLink1/createPublicLinkShare.feature:678](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L678) +- [apiSharePublicLink1/createPublicLinkShare.feature:679](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L679) +- [apiSharePublicLink1/createPublicLinkShare.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L729) +- [apiSharePublicLink1/createPublicLinkShare.feature:730](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L730) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L163) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L164) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L165) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#L166) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L42) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L43) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L69) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L70) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L97) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L98) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L135) +- [apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/excludeGroupFromReceivingSharesToSharesFolder.feature#L136) + +#### [Public cannot upload file with mtime set on a public link share with new version of WebDAV API](https://github.com/owncloud/core/issues/37605) + +- [apiSharePublicLink1/createPublicLinkShare.feature:733](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L733) +- [apiSharePublicLink1/createPublicLinkShare.feature:742](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/createPublicLinkShare.feature#L742) + +#### [copying a folder within a public link folder to folder with same name as an already existing file overwrites the parent file](https://github.com/owncloud/ocis/issues/1232) + +- [apiSharePublicLink2/copyFromPublicLink.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L60) +- [apiSharePublicLink2/copyFromPublicLink.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L85) +- [apiSharePublicLink2/copyFromPublicLink.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L166) +- [apiSharePublicLink2/copyFromPublicLink.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L167) +- [apiSharePublicLink2/copyFromPublicLink.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L182) +- [apiSharePublicLink2/copyFromPublicLink.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/copyFromPublicLink.feature#L183) +- [apiSharePublicLink2/updatePublicLinkShare.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L44) +- [apiSharePublicLink2/updatePublicLinkShare.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L45) +- [apiSharePublicLink2/updatePublicLinkShare.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L114) +- [apiSharePublicLink2/updatePublicLinkShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L115) +- [apiSharePublicLink2/updatePublicLinkShare.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L130) +- [apiSharePublicLink2/updatePublicLinkShare.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L131) +- [apiSharePublicLink2/updatePublicLinkShare.feature:321](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L321) +- [apiSharePublicLink2/updatePublicLinkShare.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L322) + +#### [OCIS share permissions not enforced](https://github.com/owncloud/product/issues/270) + +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L157) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L158) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L179) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L180) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L25) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L26) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L62) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L63) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L77) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L78) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L136) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesNewDav.feature#L137) + +#### [OCIS old public webdav api doesnt works](https://github.com/owncloud/product/issues/272) + +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L30) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L31) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L50) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L51) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L71) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L72) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L92) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L93) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:114](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L114) +- [apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/reShareAsPublicLinkToSharesOldDav.feature#L115) + +#### [listing received shares does not work](https://github.com/owncloud/ocis-reva/issues/11) + +- [apiSharePublicLink2/updatePublicLinkShare.feature:340](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L340) +- [apiSharePublicLink2/updatePublicLinkShare.feature:341](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L341) +- [apiSharePublicLink2/updatePublicLinkShare.feature:359](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L359) +- [apiSharePublicLink2/updatePublicLinkShare.feature:360](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L360) +- [apiSharePublicLink2/updatePublicLinkShare.feature:378](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L378) +- [apiSharePublicLink2/updatePublicLinkShare.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L379) +- [apiSharePublicLink2/updatePublicLinkShare.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L397) +- [apiSharePublicLink2/updatePublicLinkShare.feature:398](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L398) +- [apiSharePublicLink2/updatePublicLinkShare.feature:416](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L416) +- [apiSharePublicLink2/updatePublicLinkShare.feature:417](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L417) +- [apiSharePublicLink2/updatePublicLinkShare.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L435) +- [apiSharePublicLink2/updatePublicLinkShare.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L436) +- [apiSharePublicLink2/updatePublicLinkShare.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L454) +- [apiSharePublicLink2/updatePublicLinkShare.feature:455](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L455) +- [apiSharePublicLink2/updatePublicLinkShare.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L476) +- [apiSharePublicLink2/updatePublicLinkShare.feature:477](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L477) + +#### [Public link enforce permissions](https://github.com/owncloud/ocis/issues/1269) + +- [apiSharePublicLink2/updatePublicLinkShare.feature:523](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L523) +- [apiSharePublicLink2/updatePublicLinkShare.feature:524](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/updatePublicLinkShare.feature#L524) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L9) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L83) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L103) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) + +#### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L48) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L49) + +#### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis-reva/issues/286) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L273) + +#### [Accessing non-existing public link should return 404, not 500](https://github.com/owncloud/ocis/issues/1268) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L66) + +#### [Set quota over settings](https://github.com/owncloud/ocis/issues/1290) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L148) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L158) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L167) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L177) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) + +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:186](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L186) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L196) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L206) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L217) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L238) +- [apiSharePublicLink2/uploadToPublicLinkShare.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L255) + +#### [Resharing does not work with ocis storage](https://github.com/owncloud/product/issues/265) + +- [apiShareReshareToShares1/reShare.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L56) +- [apiShareReshareToShares1/reShare.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L57) +- [apiShareReshareToShares1/reShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L72) +- [apiShareReshareToShares1/reShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L73) +- [apiShareReshareToShares1/reShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L88) +- [apiShareReshareToShares1/reShare.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L89) +- [apiShareReshareToShares1/reShare.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L104) +- [apiShareReshareToShares1/reShare.feature:105](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L105) +- [apiShareReshareToShares1/reShare.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L159) +- [apiShareReshareToShares1/reShare.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L160) +- [apiShareReshareToShares1/reShare.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L161) +- [apiShareReshareToShares1/reShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L162) +- [apiShareReshareToShares1/reShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L163) +- [apiShareReshareToShares1/reShare.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L164) +- [apiShareReshareToShares1/reShare.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L165) +- [apiShareReshareToShares1/reShare.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L166) +- [apiShareReshareToShares1/reShare.feature:167](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L167) +- [apiShareReshareToShares1/reShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L168) +- [apiShareReshareToShares1/reShare.feature:169](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L169) +- [apiShareReshareToShares1/reShare.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L170) +- [apiShareReshareToShares1/reShare.feature:171](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L171) +- [apiShareReshareToShares1/reShare.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L172) +- [apiShareReshareToShares1/reShare.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L173) +- [apiShareReshareToShares1/reShare.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L174) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L365) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:366](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L366) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L367) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L368) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:400](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L400) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:401](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L401) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:402](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L402) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L403) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L404) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:405](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L405) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:434](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L434) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:435](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L435) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:436](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L436) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:437](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L437) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:465](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L465) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:466](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L466) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L245) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L246) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L247) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L248) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L150) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L151) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L152) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L153) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L89) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L90) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L91) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L92) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L33) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L34) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiShareReshareToShares1/reShare.feature:228](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L228) +- [apiShareReshareToShares1/reShare.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L229) +- [apiShareReshareToShares1/reShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L230) +- [apiShareReshareToShares1/reShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L231) +- [apiShareReshareToShares1/reShare.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L232) +- [apiShareReshareToShares1/reShare.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L233) +- [apiShareReshareToShares1/reShare.feature:235](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L235) +- [apiShareReshareToShares1/reShare.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L236) +- [apiShareReshareToShares1/reShare.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L237) +- [apiShareReshareToShares1/reShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L238) +- [apiShareReshareToShares1/reShare.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L239) +- [apiShareReshareToShares1/reShare.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L240) +- [apiShareReshareToShares2/reShareSubfolder.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L47) +- [apiShareReshareToShares2/reShareSubfolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L48) +- [apiShareReshareToShares2/reShareSubfolder.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L49) +- [apiShareReshareToShares2/reShareSubfolder.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L50) +- [apiShareReshareToShares2/reShareSubfolder.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L51) +- [apiShareReshareToShares2/reShareSubfolder.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L52) +- [apiShareReshareToShares2/reShareSubfolder.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L53) +- [apiShareReshareToShares2/reShareSubfolder.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L54) +- [apiShareReshareToShares2/reShareSubfolder.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L55) +- [apiShareReshareToShares2/reShareSubfolder.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L56) +- [apiShareReshareToShares2/reShareSubfolder.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L57) +- [apiShareReshareToShares2/reShareSubfolder.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L58) +- [apiShareReshareToShares2/reShareSubfolder.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L60) +- [apiShareReshareToShares2/reShareSubfolder.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L61) +- [apiShareReshareToShares2/reShareSubfolder.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L62) +- [apiShareReshareToShares2/reShareSubfolder.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L63) +- [apiShareReshareToShares2/reShareSubfolder.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L64) +- [apiShareReshareToShares2/reShareSubfolder.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L65) +- [apiShareReshareToShares2/reShareSubfolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L66) +- [apiShareReshareToShares2/reShareSubfolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L67) +- [apiShareReshareToShares2/reShareSubfolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L68) +- [apiShareReshareToShares2/reShareSubfolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L69) +- [apiShareReshareToShares2/reShareSubfolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L70) +- [apiShareReshareToShares2/reShareSubfolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L71) +- [apiShareReshareToShares2/reShareSubfolder.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L73) +- [apiShareReshareToShares2/reShareSubfolder.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L74) +- [apiShareReshareToShares2/reShareSubfolder.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L75) +- [apiShareReshareToShares2/reShareSubfolder.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L76) +- [apiShareReshareToShares2/reShareSubfolder.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L77) +- [apiShareReshareToShares2/reShareSubfolder.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L78) +- [apiShareReshareToShares2/reShareSubfolder.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L80) +- [apiShareReshareToShares2/reShareSubfolder.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L81) +- [apiShareReshareToShares2/reShareSubfolder.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L82) +- [apiShareReshareToShares2/reShareSubfolder.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L83) +- [apiShareReshareToShares2/reShareSubfolder.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L84) +- [apiShareReshareToShares2/reShareSubfolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L85) + +#### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) + +- [apiShareReshareToShares2/reShareChain.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareChain.feature#L10) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) + +- [apiShareReshareToShares2/reShareDisabled.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L24) +- [apiShareReshareToShares2/reShareDisabled.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L25) +- [apiShareReshareToShares2/reShareDisabled.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L39) +- [apiShareReshareToShares2/reShareDisabled.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareDisabled.feature#L40) + +#### [share permissions are not enforced](https://github.com/owncloud/product/issues/270) + +- [apiShareManagementToShares/mergeShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L24) +- [apiShareManagementToShares/mergeShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L52) +- [apiShareManagementToShares/mergeShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L79) +- [apiShareManagementToShares/mergeShare.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/mergeShare.feature#L99) +- [apiShareReshareToShares3/reShareUpdate.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L59) +- [apiShareReshareToShares3/reShareUpdate.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L60) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiShareReshareToShares1/reShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L24) +- [apiShareReshareToShares1/reShare.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L25) +- [apiShareReshareToShares1/reShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L39) +- [apiShareReshareToShares1/reShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L40) +- [apiShareReshareToShares1/reShare.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L120) +- [apiShareReshareToShares1/reShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L121) +- [apiShareReshareToShares1/reShare.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L122) +- [apiShareReshareToShares1/reShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L123) +- [apiShareReshareToShares1/reShare.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L124) +- [apiShareReshareToShares1/reShare.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L125) +- [apiShareReshareToShares1/reShare.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L127) +- [apiShareReshareToShares1/reShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L128) +- [apiShareReshareToShares1/reShare.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L129) +- [apiShareReshareToShares1/reShare.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L130) +- [apiShareReshareToShares1/reShare.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L131) +- [apiShareReshareToShares1/reShare.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L132) +- [apiShareReshareToShares1/reShare.feature:189](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L189) +- [apiShareReshareToShares1/reShare.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L190) +- [apiShareReshareToShares1/reShare.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L191) +- [apiShareReshareToShares1/reShare.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L192) +- [apiShareReshareToShares1/reShare.feature:193](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L193) +- [apiShareReshareToShares1/reShare.feature:194](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L194) +- [apiShareReshareToShares1/reShare.feature:195](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L195) +- [apiShareReshareToShares1/reShare.feature:196](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L196) +- [apiShareReshareToShares1/reShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L198) +- [apiShareReshareToShares1/reShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L197) +- [apiShareReshareToShares1/reShare.feature:199](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L199) +- [apiShareReshareToShares1/reShare.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L200) +- [apiShareReshareToShares1/reShare.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L202) +- [apiShareReshareToShares1/reShare.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L203) +- [apiShareReshareToShares1/reShare.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L204) +- [apiShareReshareToShares1/reShare.feature:205](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L205) +- [apiShareReshareToShares1/reShare.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L206) +- [apiShareReshareToShares1/reShare.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L207) +- [apiShareReshareToShares1/reShare.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L208) +- [apiShareReshareToShares1/reShare.feature:209](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L209) +- [apiShareReshareToShares1/reShare.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L210) +- [apiShareReshareToShares1/reShare.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L211) +- [apiShareReshareToShares1/reShare.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L212) +- [apiShareReshareToShares1/reShare.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L213) + +#### [file_target in share response](https://github.com/owncloud/product/issues/203) + +- [apiShareReshareToShares2/reShareSubfolder.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L28) +- [apiShareReshareToShares2/reShareSubfolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L29) +- [apiShareReshareToShares2/reShareSubfolder.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L106) +- [apiShareReshareToShares2/reShareSubfolder.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L107) +- [apiShareReshareToShares2/reShareSubfolder.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L128) +- [apiShareReshareToShares2/reShareSubfolder.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L129) +- [apiShareReshareToShares2/reShareSubfolder.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L150) +- [apiShareReshareToShares2/reShareSubfolder.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L151) + + +#### [Share receiver cannot get share by id](https://github.com/owncloud/product/issues/253) + +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:270](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L270) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:271](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L271) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L272) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L273) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) + +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L24) +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L25) +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L41) +- [apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareWhenShareWithOnlyMembershipGroups.feature#L42) +- [apiShareReshareToShares3/reShareUpdate.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L112) +- [apiShareReshareToShares3/reShareUpdate.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L113) +- [apiShareReshareToShares3/reShareUpdate.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L131) +- [apiShareReshareToShares3/reShareUpdate.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareUpdate.feature#L132) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L61) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L62) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L121) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L122) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L123) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L124) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L181) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L182) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L183) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L184) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L212) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L213) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L214) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:215](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L215) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:302](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L302) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:303](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L303) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:304](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L304) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:305](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L305) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L335) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:336](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L336) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:337](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L337) +- [apiShareReshareToShares3/reShareWithExpiryDate.feature:338](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/reShareWithExpiryDate.feature#L338) + +#### [invalid format of sharees response](https://github.com/owncloud/product/issues/292) + +#### [deleting a received share-folder moves it to trash-bin but does not unshare it](https://github.com/owncloud/ocis/issues/1123) + +- [apiTrashbin/trashbinSharingToShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L24) +- [apiTrashbin/trashbinSharingToShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L25) +- [apiShareManagementToShares/acceptShares.feature:469](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L469) +- [apiShareManagementToShares/acceptShares.feature:470](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L470) + +#### [deleting a file inside a received shared folder is moved to the trash-bin of the sharer not the receiver](https://github.com/owncloud/ocis/issues/1124) + +- [apiTrashbin/trashbinSharingToShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L40) +- [apiTrashbin/trashbinSharingToShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L41) +- [apiTrashbin/trashbinSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L63) +- [apiTrashbin/trashbinSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L64) +- [apiTrashbin/trashbinSharingToShares.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L82) +- [apiTrashbin/trashbinSharingToShares.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L83) +- [apiTrashbin/trashbinSharingToShares.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L102) +- [apiTrashbin/trashbinSharingToShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L103) + +#### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) +- [apiShareOperationsToShares/uploadToShare.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L246) + +#### Copying into a shared folder +Scenario Outline: Copying a file to a folder with no permissions +- [apiWebdavProperties1/copyFile.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L65) +- [apiWebdavProperties1/copyFile.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L66) + Scenario Outline: Copying a file to overwrite a file into a folder with no permissions +- [apiWebdavProperties1/copyFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L85) +- [apiWebdavProperties1/copyFile.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L86) + +#### Share jail related +Scenario Outline: delete a folder when there is a default folder for received shares +- [apiWebdavOperations/deleteFolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L67) +- [apiWebdavOperations/deleteFolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L68) +- [apiWebdavOperations/deleteFolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L69) +- [apiWebdavOperations/deleteFolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L70) + Scenario Outline: delete a folder when there is a default folder for received shares that is a multi-level path +- [apiWebdavOperations/deleteFolder.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L91) +- [apiWebdavOperations/deleteFolder.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/deleteFolder.feature#L92) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) + +- [apiWebdavProperties1/copyFile.feature:350](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L350) +- [apiWebdavProperties1/copyFile.feature:351](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L351) +- [apiWebdavProperties1/copyFile.feature:370](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L370) +- [apiWebdavProperties1/copyFile.feature:371](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L371) +- [apiWebdavProperties1/copyFile.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L395) +- [apiWebdavProperties1/copyFile.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L396) +- [apiWebdavProperties1/copyFile.feature:422](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L422) +- [apiWebdavProperties1/copyFile.feature:423](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L423) +- [apiWebdavProperties1/copyFile.feature:448](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L448) +- [apiWebdavProperties1/copyFile.feature:449](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L449) +- [apiWebdavProperties1/copyFile.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L474) +- [apiWebdavProperties1/copyFile.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L475) + +#### [quota query](https://github.com/owncloud/ocis/issues/1313) +- [apiMain/quota.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L41) Scenario: Uploading a file in received folder having enough quota +- [apiMain/quota.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L54) Scenario: Uploading a file in received folder having insufficient quota +- [apiMain/quota.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L68) Scenario: Overwriting a file in received folder having enough quota +- [apiMain/quota.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L82) Scenario: Overwriting a file in received folder having insufficient quota +- [apiMain/quota.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L99) Scenario: Overwriting a received file having enough quota +- [apiMain/quota.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L112) Scenario: Overwriting a received file having insufficient quota + Scenario Outline: Retrieving folder quota of shared folder with quota when no quota is set for recipient +- [apiWebdavProperties1/getQuota.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L48) +- [apiWebdavProperties1/getQuota.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L49) + Scenario Outline: Retrieving folder quota when quota is set and a file was uploaded +- [apiWebdavProperties1/getQuota.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L61) +- [apiWebdavProperties1/getQuota.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L62) + Scenario Outline: Retrieving folder quota when quota is set and a file was received +- [apiWebdavProperties1/getQuota.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L77) +- [apiWebdavProperties1/getQuota.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L78) + +#### [cannot get share-types webdav property](https://github.com/owncloud/ocis/issues/567) +- [apiWebdavProperties2/getFileProperties.feature:174](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L174) +- [apiWebdavProperties2/getFileProperties.feature:175](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L175) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiWebdavProperties2/getFileProperties.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L135) +- [apiWebdavProperties2/getFileProperties.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L136) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiWebdavProperties2/getFileProperties.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L156) +- [apiWebdavProperties2/getFileProperties.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L157) +- [apiWebdavProperties2/getFileProperties.feature:206](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L206) +- [apiWebdavProperties2/getFileProperties.feature:207](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L207) + +#### [Private link support](https://github.com/owncloud/product/issues/201) +#### [oc:privatelink property not returned in webdav responses](https://github.com/owncloud/product/issues/262) +- [apiWebdavProperties2/getFileProperties.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L232) +- [apiWebdavProperties2/getFileProperties.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L233) + +#### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) +- [apiShareOperationsToShares/uploadToShare.feature:162](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L162) +- [apiShareOperationsToShares/uploadToShare.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L163) +- [apiShareOperationsToShares/uploadToShare.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L181) +- [apiShareOperationsToShares/uploadToShare.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L182) +- [apiShareOperationsToShares/uploadToShare.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L202) +- [apiShareOperationsToShares/uploadToShare.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L203) +- [apiShareOperationsToShares/uploadToShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L221) +- [apiShareOperationsToShares/uploadToShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L222) +- [apiShareOperationsToShares/uploadToShare.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L242) +- [apiShareOperationsToShares/uploadToShare.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L243) + + +#### [not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) +- [apiShareOperationsToShares/changingFilesShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L23) +- [apiShareOperationsToShares/changingFilesShare.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L24) +- [apiShareOperationsToShares/changingFilesShare.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L63) +- [apiShareOperationsToShares/changingFilesShare.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L79) +- [apiShareOperationsToShares/changingFilesShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L95) + +#### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) +- [apiShareOperationsToShares/changingFilesShare.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L40) +- [apiShareOperationsToShares/changingFilesShare.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L41) +- [apiShareOperationsToShares/changingFilesShare.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L59) +- [apiShareOperationsToShares/changingFilesShare.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/changingFilesShare.feature#L60) + +Scenario Outline: Moving a file into a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L89) +- [apiWebdavMove2/moveFile.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L90) +- [apiWebdavMove2/moveFile.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L91) +- [apiWebdavMove2/moveFile.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L92) + Scenario Outline: Moving a file out of a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L112) +- [apiWebdavMove2/moveFile.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L113) + Scenario Outline: Moving a folder into a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L136) +- [apiWebdavMove2/moveFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L137) +- [apiWebdavMove2/moveFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L138) +- [apiWebdavMove2/moveFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L139) + Scenario Outline: Moving a folder out of a shared folder as the sharee and as the sharer +- [apiWebdavMove2/moveFile.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L160) +- [apiWebdavMove2/moveFile.feature:161](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L161) + Scenario Outline: Moving a file to a shared folder with no permissions +- [apiWebdavMove2/moveFile.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L181) +- [apiWebdavMove2/moveFile.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L182) + Scenario Outline: Moving a file to overwrite a file in a shared folder with no permissions +- [apiWebdavMove2/moveFile.feature:200](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L200) +- [apiWebdavMove2/moveFile.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L201) + Scenario Outline: rename a file into an invalid filename +- [apiWebdavMove2/moveFile.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L219) +- [apiWebdavMove2/moveFile.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L220) + Scenario Outline: Checking file id after a move between received shares +- [apiWebdavMove2/moveFile.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L255) +- [apiWebdavMove2/moveFile.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L256) + Scenario Outline: Renaming a file to a path with extension .part should not be possible +- [apiWebdavMove2/moveFile.feature:272](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L272) +- [apiWebdavMove2/moveFile.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavMove2/moveFile.feature#L273) + +#### [restoring an older version of a shared file deletes the share](https://github.com/owncloud/ocis/issues/765) +- [apiShareManagementToShares/acceptShares.feature:473](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/acceptShares.feature#L473) +- [apiVersions/fileVersionsSharingToShares.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L44) + +#### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) +- [apiVersions/fileVersionsSharingToShares.feature:134](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L134) +- [apiVersions/fileVersionsSharingToShares.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L149) +- [apiVersions/fileVersionsSharingToShares.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L163) +- [apiVersions/fileVersionsSharingToShares.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L250) +- [apiVersions/fileVersionsSharingToShares.feature:251](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L251) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiVersions/fileVersionsSharingToShares.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L179) + +####[not possible to move file into a received folder](https://github.com/owncloud/ocis/issues/764) +- [apiVersions/fileVersionsSharingToShares.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L222) +- [apiVersions/fileVersionsSharingToShares.feature:223](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L223) +- [apiVersions/fileVersionsSharingToShares.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L224) +- [apiVersions/fileVersionsSharingToShares.feature:225](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L225) +- [apiVersions/fileVersionsSharingToShares.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L252) +- [apiVersions/fileVersionsSharingToShares.feature:253](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L253) + +#### [getting the metadata without permission results in a 403 error](https://github.com/owncloud/ocis/issues/773) +- [apiVersions/fileVersionsSharingToShares.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L256) + +#### [The version number of a file is incorrect because of the incorrect number of `` and `` element](https://github.com/owncloud/ocis/issues/1234) +- [apiVersions/fileVersionsSharingToShares.feature:267](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L267) + +#### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +#### [Expiration date for user shares is not implemented](https://github.com/owncloud/ocis/issues/1250) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L26) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L27) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L55) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L56) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L83) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L84) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L110) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L111) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L137) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L138) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L159) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L160) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L190) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L191) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L220) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L221) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:249](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L249) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:250](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L250) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L279) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L280) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:300](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L300) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:301](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L301) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:322](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L322) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:323](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L323) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:344](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L344) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:345](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L345) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:367](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L367) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:368](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L368) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:385](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L385) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:386](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L386) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:403](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L403) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L404) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:426](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L426) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:427](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L427) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:450](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L450) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:451](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L451) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:474](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L474) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:475](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L475) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:499](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L499) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:500](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L500) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L521) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:522](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L522) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:543](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L543) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:544](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L544) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:563](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L563) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:564](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L564) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:581](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L581) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:582](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L582) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:603](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L603) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:604](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L604) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:628](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L628) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:629](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L629) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:630](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L630) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:631](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L631) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L632) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:653](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L653) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:654](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L654) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:655](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L655) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:656](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L656) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:657](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L657) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L658) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:659](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L659) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:660](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L660) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:661](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L661) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:662](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L662) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:663](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L663) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:664](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L664) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:685](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L685) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:686](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L686) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:687](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L687) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:688](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L688) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:689](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L689) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:690](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L690) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:711](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L711) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:712](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L712) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:713](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L713) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:714](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L714) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:715](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L715) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:716](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L716) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:737](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L737) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:738](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L738) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:759](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L759) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:760](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L760) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:781](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L781) +- [apiShareCreateSpecialToShares1/createShareExpirationDate.feature:782](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareExpirationDate.feature#L782) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L36) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L37) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L65) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L66) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L85) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L86) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:106](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L106) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L107) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:201](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L201) +- [apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature:202](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareReceivedInMultipleWays.feature#L202) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L10) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L34) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L58) +- [apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupAndUserWithSameName.feature#L82) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:46](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L46) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L47) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L48) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L49) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L50) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L51) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L82) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L83) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L84) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L85) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L86) +- [apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareGroupCaseSensitive.feature#L87) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:438](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L438) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:439](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L439) +- [apiShareOperationsToShares/accessToShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L71) +- [apiShareOperationsToShares/accessToShare.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/accessToShare.feature#L72) + +#### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +- [apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareUniqueReceivedNames.feature#L15) +- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L18) +- [apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithDisabledUser.feature#L21) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L51) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L52) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L70) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L71) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L72) +- [apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWithInvalidPermissions.feature#L73) +- [apiShareManagementToShares/moveReceivedShare.feature:14](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L14) +- [apiShareManagementToShares/moveReceivedShare.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L28) +- [apiShareManagementToShares/moveReceivedShare.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L39) +- [apiShareManagementToShares/moveReceivedShare.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L70) +- [apiShareManagementToShares/moveReceivedShare.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L71) +- [apiShareManagementToShares/moveReceivedShare.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L73) +- [apiShareManagementToShares/moveReceivedShare.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L88) +- [apiShareManagementToShares/moveReceivedShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L118) +- [apiShareManagementToShares/moveReceivedShare.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L128) +- [apiShareManagementToShares/moveReceivedShare.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L138) +- [apiShareManagementToShares/moveReceivedShare.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L148) +- [apiShareManagementToShares/moveReceivedShare.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L158) +- [apiShareManagementToShares/moveReceivedShare.feature:168](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L168) +- [apiShareManagementToShares/moveReceivedShare.feature:197](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L197) +- [apiShareManagementToShares/moveReceivedShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L198) +- [apiShareManagementToShares/moveReceivedShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L221) +- [apiShareManagementToShares/moveReceivedShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L222) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L59) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L60) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L94) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L95) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L129) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L130) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L177) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L178) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L212) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L213) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L247) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:248](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L248) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:282](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L282) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:283](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L283) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:317](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L317) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L318) +- [apiShareUpdateToShares/updateShare.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L92) +- [apiShareUpdateToShares/updateShare.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L93) +- [apiShareUpdateToShares/updateShare.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L94) +- [apiShareUpdateToShares/updateShare.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L95) +- [apiShareUpdateToShares/updateShare.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L96) +- [apiShareUpdateToShares/updateShare.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L97) +- [apiShareUpdateToShares/updateShare.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L123) +- [apiShareUpdateToShares/updateShare.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L155) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiShareManagementToShares/moveReceivedShare.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L102) +- [apiShareManagementToShares/moveReceivedShare.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L110) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L73) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L74) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:108](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L108) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:109](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L109) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L191) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L192) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:226](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L226) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:227](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L227) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:261](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L261) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:262](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L262) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:296](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L296) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L297) +- [apiShareOperationsToShares/getWebDAVSharePermissions.feature:297](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L297) + +### [Moving resource loses associated shares](https://github.com/owncloud/ocis/issues/1251) + +- [apiSharePublicLink2/multilinkSharing.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/multilinkSharing.feature#L181) + +#### [No way to set default folder for received shares](https://github.com/owncloud/ocis/issues/1327) +- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L21) +- [apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareDefaultFolderForReceivedShares.feature#L22) + +#### [Group shares support ](https://github.com/owncloud/ocis/issues/1289) +- [apiShareOperationsToShares/gettingShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L103) +- [apiShareOperationsToShares/gettingShares.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L104) +- [apiShareOperationsToShares/gettingShares.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L184) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) +#### [Group shares support](https://github.com/owncloud/ocis/issues/1289) +- [apiShareUpdateToShares/updateShare.feature:290](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L290) +- [apiShareUpdateToShares/updateShare.feature:291](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L291) +- [apiShareUpdateToShares/updateShare.feature:306](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L306) +- [apiShareUpdateToShares/updateShare.feature:307](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L307) +- [apiShareUpdateToShares/updateShare.feature:334](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L334) +- [apiShareUpdateToShares/updateShare.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L335) +- [apiShareUpdateToShares/updateShare.feature:364](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L364) +- [apiShareUpdateToShares/updateShare.feature:365](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L365) + +#### [Group shares support](https://github.com/owncloud/ocis/issues/1289) +#### [Sharing seems to work but does not work](https://github.com/owncloud/ocis/issues/1303) +- [apiShareUpdateToShares/updateShare.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L61) +- [apiShareUpdateToShares/updateShare.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L62) +- [apiShareUpdateToShares/updateShare.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L75) +- [apiShareUpdateToShares/updateShare.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L76) +- [apiShareUpdateToShares/updateShare.feature:115](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L115) +- [apiShareUpdateToShares/updateShare.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L116) +- [apiShareUpdateToShares/updateShare.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L117) +- [apiShareUpdateToShares/updateShare.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L118) +- [apiShareUpdateToShares/updateShare.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L119) +- [apiShareUpdateToShares/updateShare.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L120) +- [apiShareUpdateToShares/updateShare.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L252) +- [apiShareUpdateToShares/updateShare.feature:253](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L253) +- [apiShareUpdateToShares/updateShare.feature:265](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L265) +- [apiShareUpdateToShares/updateShare.feature:266](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L266) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L34) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L35) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L54) +- [apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShareGroupAndUserWithSameName.feature#L55) + +#### [Share additional info](https://github.com/owncloud/ocis/issues/1253) +#### [Share extra attributes](https://github.com/owncloud/ocis/issues/1224) +#### [Edit user share response has an "name" field](https://github.com/owncloud/ocis/issues/1225) +- [apiShareUpdateToShares/updateShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L230) +- [apiShareUpdateToShares/updateShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareUpdateToShares/updateShare.feature#L231) + +#### [user can access version metadata of a received share before accepting it](https://github.com/owncloud/ocis/issues/760) +- [apiVersions/fileVersionsSharingToShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L279) + +#### [when a share exists its impossible to share a renamed folder](https://github.com/owncloud/ocis/issues/719) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:611](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L611) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:612](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L612) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:665](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L665) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:666](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L666) + +#### [sharing with group not available](https://github.com/owncloud/product/issues/293) +- [apiWebdavUploadTUS/uploadToShare.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L52) +- [apiWebdavUploadTUS/uploadToShare.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToShare.feature#L53) + +#### [Share lists deleted user as 'user'](https://github.com/owncloud/ocis/issues/903) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L632) +- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:633](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L633) + +#### [deleting a share with wrong authentication returns OCS status 996 / HTTP 500](https://github.com/owncloud/ocis/issues/1229) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#211) +- [apiShareManagementBasicToShares/deleteShareFromShares.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#212) + +### User Management +User and group management features + +#### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) +special character username not valid +- [apiProvisioning-v1/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L29) +- [apiProvisioning-v1/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L30) +- [apiProvisioning-v1/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L121) +- [apiProvisioning-v1/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L122) +- [apiProvisioning-v1/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L123) +- [apiProvisioning-v1/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L29) +- [apiProvisioning-v1/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L30) +- [apiProvisioning-v1/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L29) +- [apiProvisioning-v1/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L30) +- [apiProvisioning-v1/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L29) +- [apiProvisioning-v1/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L30) +- [apiProvisioning-v1/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L31) +- [apiProvisioning-v1/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L32) +- [apiProvisioning-v1/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L34) +- [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) +- [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) +- [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) +- [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) +- [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) +- [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) +- [apiProvisioning-v2/disableUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L30) +- [apiProvisioning-v2/editUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L29) +- [apiProvisioning-v2/editUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L30) +- [apiProvisioning-v2/enableUser.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L31) +- [apiProvisioning-v2/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L32) +- [apiProvisioning-v2/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L34) +- [apiProvisioning-v2/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L35) + +#### [Creating an already existing user works](https://github.com/owncloud/ocis-accounts/issues/80) +- [apiProvisioning-v1/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L32) +- [apiProvisioning-v2/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L32) +- [apiProvisioning-v1/addUser.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L39) +- [apiProvisioning-v2/addUser.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L39) + +#### [Password can be set to empty](https://github.com/owncloud/product/issues/197) +- [apiProvisioning-v1/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L69) +- [apiProvisioning-v2/addUser.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L69) + +#### [Username is case sensitive](https://github.com/owncloud/ocis-accounts/issues/128) +- [apiProvisioning-v1/addUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L102) +- [apiProvisioning-v2/addUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L102) + +#### [Client token generation not implemented](https://github.com/owncloud/ocis/issues/197) +- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L39) +- [apiProvisioning-v1/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/apiProvisioningUsingAppPassword.feature#L67) +- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L39) +- [apiProvisioning-v2/apiProvisioningUsingAppPassword.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/apiProvisioningUsingAppPassword.feature#L67) + +#### [disable users /cloud/users/disable|enable not available](https://github.com/owncloud/ocis/issues/1420) +- [apiProvisioning-v1/enableUser.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L92) +- [apiProvisioning-v1/enableUser.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L102) +- [apiProvisioning-v1/enableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/enableUser.feature#L129) +- [apiProvisioning-v1/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L99) +- [apiProvisioning-v1/disableUser.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L129) +- [apiProvisioning-v1/disableUser.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L165) +- [apiProvisioning-v1/disableUser.feature:172](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L172) +- [apiProvisioning-v1/disableUser.feature:190](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L190) +- [apiProvisioning-v1/disableUser.feature:203](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L203) +- [apiProvisioning-v1/disableUser.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L219) +- [apiProvisioning-v2/disableUser.feature:79](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L79) +- [apiProvisioning-v2/disableUser.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L99) +- [apiProvisioning-v2/disableUser.feature:108](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L108) +- [apiProvisioning-v2/disableUser.feature:130](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L130) +- [apiProvisioning-v2/disableUser.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L166) +- [apiProvisioning-v2/disableUser.feature:173](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L173) +- [apiProvisioning-v2/disableUser.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L191) +- [apiProvisioning-v2/disableUser.feature:204](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L204) +- [apiProvisioning-v2/disableUser.feature:220](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L220) + +#### [displayname of user can be changed to empty](https://github.com/owncloud/ocis-ocs/issues/51) +- [apiProvisioning-v1/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L47) +- [apiProvisioning-v2/editUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L47) + +#### [quota query](https://github.com/owncloud/ocis/issues/1313) +_getting and setting quota_ +- [apiMain/quota.feature:9](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L9) Scenario: Uploading a file as owner having enough quota +- [apiMain/quota.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L16) Scenario: Uploading a file as owner having insufficient quota +- [apiMain/quota.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L23) Scenario: Overwriting a file as owner having enough quota +- [apiMain/quota.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/quota.feature#L30) Scenario: Overwriting a file as owner having insufficient quota + Scenario Outline: Retrieving folder quota when no quota is set +- [apiWebdavProperties1/getQuota.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L17) +- [apiWebdavProperties1/getQuota.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L18) + Scenario Outline: Retrieving folder quota when quota is set +- [apiWebdavProperties1/getQuota.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L27) +- [apiWebdavProperties1/getQuota.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/getQuota.feature#L28) + +#### [changing user quota gives ocs status 103 / Cannot set quota](https://github.com/owncloud/product/issues/247) +- [apiProvisioning-v1/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L56) +- [apiProvisioning-v1/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L122) +- [apiProvisioning-v2/editUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L56) +- [apiProvisioning-v2/editUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/editUser.feature#L122) +- [apiProvisioning-v2/enableUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L34) +- [apiProvisioning-v2/enableUser.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L56) +- [apiProvisioning-v2/enableUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L64) + +#### [user can get info of other users/ cloud/users endpoints not authenticated](https://github.com/owncloud/product/issues/248) +- [apiProvisioning-v2/deleteUser.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L54) +- [apiProvisioning-v1/getUser.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L81) +- [apiProvisioning-v2/getUser.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L82) +- [apiProvisioning-v2/getUsers.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUsers.feature#L44) + +#### [incorrect ocs(v2) status value when getting info of user that does not exist should be 404, gives 998](https://github.com/owncloud/product/issues/250) +_ocs: api compatibility, return correct status code_ +- [apiProvisioning-v2/getUser.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L47) + +#### [subadmin endpoints not implemented for users](https://github.com/owncloud/product/issues/289) - [apiProvisioning-v1/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L125) +- [apiProvisioning-v1/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L48) - [apiProvisioning-v1/deleteUser.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L73) - [apiProvisioning-v1/disableUser.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L222) +- [apiProvisioning-v1/editUser.feature:131](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L131) - [apiProvisioning-v1/editUser.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/editUser.feature#L143) - [apiProvisioning-v1/getUser.feature:170](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L170) -- [apiProvisioning-v1/resetUserPassword.feature:111](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L111) -- [apiProvisioningGroups-v1/addGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L87) -- [apiProvisioningGroups-v1/addToGroup.feature:133](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L133) -- [apiProvisioningGroups-v1/addToGroup.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L146) -- [apiProvisioningGroups-v1/deleteGroup.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L99) -- [apiProvisioningGroups-v1/getGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L72) -- [apiProvisioningGroups-v1/getSubAdminGroups.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L11) -- [apiProvisioningGroups-v1/getSubAdminGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L24) -- [apiProvisioningGroups-v1/getUserGroups.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L56) -- [apiProvisioningGroups-v1/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L110) -- [apiProvisioningGroups-v1/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L123) - [apiProvisioning-v1/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L113) - [apiProvisioning-v2/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L125) @@ -2440,6 +2052,19 @@ restoring a file doesn't changes the etags of the parents - [apiProvisioning-v2/resetUserPassword.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L101) - [apiProvisioning-v2/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L113) - [apiProvisioning-v2/resetUserPassword.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/resetUserPassword.feature#L129) + +#### [subadmin endpoints not implemented for groups](https://github.com/owncloud/product/issues/289) +- [apiProvisioningGroups-v1/addGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L87) +- [apiProvisioningGroups-v1/addToGroup.feature:133](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L133) +- [apiProvisioningGroups-v1/addToGroup.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L146) +- [apiProvisioningGroups-v1/deleteGroup.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L99) +- [apiProvisioningGroups-v1/getGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L72) +- [apiProvisioningGroups-v1/getSubAdminGroups.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L11) +- [apiProvisioningGroups-v1/getSubAdminGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L24) +- [apiProvisioningGroups-v1/getUserGroups.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L56) +- [apiProvisioningGroups-v1/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L110) +- [apiProvisioningGroups-v1/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L123) + - [apiProvisioningGroups-v2/addGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L87) - [apiProvisioningGroups-v2/addGroup.feature:109](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L109) - [apiProvisioningGroups-v2/addToGroup.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L128) @@ -2453,17 +2078,56 @@ restoring a file doesn't changes the etags of the parents - [apiProvisioningGroups-v2/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L110) - [apiProvisioningGroups-v2/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L123) -### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) -special character username not valid +#### [creating existing group doesn't gives error](https://github.com/owncloud/product/issues/282) +- [apiProvisioningGroups-v1/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addGroup.feature#L94) +- [apiProvisioningGroups-v2/addGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L94) + +#### [cannot create group with '/'](https://github.com/owncloud/product/issues/285) +- [apiProvisioningGroups-v1/addToGroup.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L75) +- [apiProvisioningGroups-v1/addToGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L76) +- [apiProvisioningGroups-v1/addToGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L77) +- [apiProvisioningGroups-v1/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L85) +- [apiProvisioningGroups-v1/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L86) +- [apiProvisioningGroups-v1/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L87) +- [apiProvisioningGroups-v1/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L38) +- [apiProvisioningGroups-v1/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L76) +- [apiProvisioningGroups-v1/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L77) +- [apiProvisioningGroups-v1/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L78) + +- [apiProvisioningGroups-v2/addToGroup.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L70) +- [apiProvisioningGroups-v2/addToGroup.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L71) +- [apiProvisioningGroups-v2/addToGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L72) +- [apiProvisioningGroups-v2/deleteGroup.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L85) +- [apiProvisioningGroups-v2/deleteGroup.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L86) +- [apiProvisioningGroups-v2/deleteGroup.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L87) +- [apiProvisioningGroups-v2/getUserGroups.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L38) +- [apiProvisioningGroups-v2/removeFromGroup.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L76) +- [apiProvisioningGroups-v2/removeFromGroup.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L77) +- [apiProvisioningGroups-v2/removeFromGroup.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L78) + +#### [adding user to non-existent group gives wrong statuscode](https://github.com/owncloud/product/issues/286) +- [apiProvisioningGroups-v1/addToGroup.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L107) +- [apiProvisioningGroups-v1/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L101) +- [apiProvisioningGroups-v2/removeFromGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L101) + +#### [adding user to empty group gives wrong statuscode](https://github.com/owncloud/product/issues/287) +- [apiProvisioningGroups-v1/addToGroup.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L116) + +#### [adding non-existent user to a group gives wrong status code](https://github.com/owncloud/product/issues/288) +- [apiProvisioningGroups-v1/addToGroup.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L124) + + +#### [Cannot create user with different username and emails](https://github.com/owncloud/product/issues/187) +_special character username not valid_ - [apiProvisioningGroups-v1/getGroup.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L11) - [apiProvisioningGroups-v2/getGroup.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroup.feature#L11) -### [normal users can list the members of the group](https://github.com/owncloud/product/issues/290) +#### [normal users can list the members of the group](https://github.com/owncloud/product/issues/290) - [apiProvisioningGroups-v1/getGroup.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L81) - [apiProvisioningGroups-v1/deleteGroup.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L90) - [apiProvisioningGroups-v2/getGroup.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroup.feature#L83) -### [ocs v2 invalid status code for group endpoints](https://github.com/owncloud/product/issues/291) +#### [ocs v2 invalid status code for group endpoints](https://github.com/owncloud/product/issues/291) - [apiProvisioningGroups-v2/addGroup.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addGroup.feature#L102) - [apiProvisioningGroups-v2/addToGroup.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L94) - [apiProvisioningGroups-v2/addToGroup.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L102) @@ -2473,67 +2137,337 @@ special character username not valid - [apiProvisioningGroups-v2/getUserGroups.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L73) - [apiProvisioningGroups-v2/removeFromGroup.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L138) -### [requests to webdav URLs with an fileid containing an invalid storage_id result in error 500](https://github.com/owncloud/ocis/issues/772) -- [apiVersions/fileVersions.feature:384](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L384) +#### [user-sync endpoint does not exist](https://github.com/owncloud/ocis/issues/1241) +- [apiMain/userSync.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L18) +- [apiMain/userSync.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L19) +- [apiMain/userSync.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L29) +- [apiMain/userSync.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L30) +- [apiMain/userSync.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L40) +- [apiMain/userSync.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L41) +- [apiMain/userSync.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L52) +- [apiMain/userSync.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L53) +- [apiMain/userSync.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L63) +- [apiMain/userSync.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/userSync.feature#L64) -### [requesting propfind with invalid fileid gives 502 error](https://github.com/owncloud/ocis/issues/771) -- [apiVersions/fileVersions.feature:395](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L395) -- [apiVersions/fileVersions.feature:396](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L396) -- [apiVersions/fileVersions.feature:397](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L397) +- [apiProvisioning-v1/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L11) +- [apiProvisioning-v1/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L19) +- [apiProvisioning-v1/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L27) +- [apiProvisioning-v1/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L35) +- [apiProvisioning-v1/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L11) +- [apiProvisioning-v1/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getSubAdmins.feature#L21) +- [apiProvisioning-v2/createSubAdmin.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L11) +- [apiProvisioning-v2/createSubAdmin.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L19) +- [apiProvisioning-v2/createSubAdmin.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L27) +- [apiProvisioning-v2/createSubAdmin.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L35) +- [apiProvisioning-v2/getSubAdmins.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L11) +- [apiProvisioning-v2/getSubAdmins.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L21) +- [apiProvisioning-v2/getSubAdmins.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L30) +- [apiProvisioning-v2/getSubAdmins.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getSubAdmins.feature#L44) -### [user can access version metadata of a received share before accepting it](https://github.com/owncloud/ocis/issues/760) -- [apiVersions/fileVersionsSharingToShares.feature:279](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersionsSharingToShares.feature#L279) +### Other +API, search, favorites, config, capabilities, not existing endpoints, CORS and others -### [when a share exists its impossible to share a renamed folder](https://github.com/owncloud/ocis/issues/719) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:611](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L611) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:612](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L612) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:665](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L665) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:666](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L666) +#### [no robots.txt available](https://github.com/owncloud/ocis/issues/1314) +- [apiMain/main.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/main.feature#L5) Scenario: robots.txt file should be accessible -### [TUS OPTIONS requests does not reply with TUS### headers when invalid password](https://github.com/owncloud/ocis/issues/1012) -- [apiWebdavUploadTUS/optionsRequest.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L29) -- [apiWebdavUploadTUS/optionsRequest.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L40) +#### [There is no such thing like a "super-user"](https://github.com/owncloud/ocis/issues/1319) +#### [no command equivalent to occ](https://github.com/owncloud/ocis/issues/1317) +- [apiMain/status.feature:5](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/status.feature#L5) Scenario: Status.php is correct +#### [ocs config endpoint only accessible by authorized users](https://github.com/owncloud/ocis/issues/1338) -### [500 Internal Server Error on Post request for TUS upload](https://github.com/owncloud/ocis/issues/1047) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L29) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L30) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L43) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L44) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L57) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L58) +#### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) +- [apiAuthOcs/ocsDELETEAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsDELETEAuth.feature#L10) Scenario: send DELETE requests to OCS endpoints as admin with wrong password +- [apiAuthOcs/ocsGETAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L10) Scenario: using OCS anonymously +- [apiAuthOcs/ocsGETAuth.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L33) Scenario: ocs config end point accessible by unauthorized users +- [apiAuthOcs/ocsGETAuth.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L53) Scenario: using OCS with non-admin basic auth +- [apiAuthOcs/ocsGETAuth.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L88) Scenario: using OCS as normal user with wrong password +- [apiAuthOcs/ocsGETAuth.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L121) Scenario:using OCS with admin basic auth +- [apiAuthOcs/ocsGETAuth.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L139) Scenario: using OCS as admin user with wrong password +- [apiAuthOcs/ocsPOSTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPOSTAuth.feature#L10) Scenario: send POST requests to OCS endpoints as normal user with wrong password +- [apiAuthOcs/ocsPUTAuth.feature:10](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsPUTAuth.feature#L10) Scenario: send PUT request to OCS endpoints as admin with wrong password -### [The Patch Request Response does not contain a body](https://github.com/owncloud/ocis/issues/1039) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L29) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L30) +#### [server returns 500 when trying to access a not existing file](https://github.com/owncloud/ocis-reva/issues/13) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavDELETEAuth.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L36) Scenario: send DELETE requests to another user's webDav endpoints as normal user -### [500 Internal Server Error on Post request for TUS upload to a non-existing folder on the received share](https://github.com/owncloud/ocis/issues/1047) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L43) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L44) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L57) -- [apiWebdavUploadTUS/uploadToNonExistingFolder.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadToNonExistingFolder.feature#L58) +#### [users can access each-others data using the new webdav API](https://github.com/owncloud/ocis/issues/1347) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavLOCKAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavLOCKAuth.feature#L38) Scenario: send LOCK requests to another user's webDav endpoints as normal user +- [apiAuthWebDav/webDavMKCOLAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMKCOLAuth.feature#L37) Scenario: send MKCOL requests to another user's webDav endpoints as normal user +- [apiAuthWebDav/webDavPROPFINDAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPFINDAuth.feature#L37) Scenario: send PROPFIND requests to another user's webDav endpoints as normal user +- [apiAuthWebDav/webDavPROPPATCHAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPROPPATCHAuth.feature#L38) Scenario: send PROPPATCH requests to another user's webDav endpoints as normal user -### [invalid file-names should not be created using the TUS protocol](https://github.com/owncloud/ocis/issues/1001) -- [apiWebdavUploadTUS/uploadFile.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L135) -- [apiWebdavUploadTUS/uploadFile.feature:136](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L136) -- [apiWebdavUploadTUS/uploadFile.feature:137](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L137) -- [apiWebdavUploadTUS/uploadFile.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L138) -- [apiWebdavUploadTUS/uploadFile.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L139) -- [apiWebdavUploadTUS/uploadFile.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L140) -- [apiWebdavUploadTUS/uploadFile.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L141) -- [apiWebdavUploadTUS/uploadFile.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L142) +#### [renaming a resource does not work](https://github.com/owncloud/ocis-reva/issues/14) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavMOVEAuth.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavMOVEAuth.feature#L37) Scenario: send MOVE requests to another user's webDav endpoints as normal user -### [upload a file using TUS resource URL as an other user should not work](https://github.com/owncloud/ocis/issues/1141) -- [apiWebdavUploadTUS/uploadFile.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L155) -- [apiWebdavUploadTUS/uploadFile.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L156) +#### [send POST requests to another user's webDav endpoints as normal user](https://github.com/owncloud/ocis/issues/1287) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavPOSTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPOSTAuth.feature#L38) Scenario: send POST requests to another user's webDav endpoints as normal user -### [Share lists deleted user as 'user'](https://github.com/owncloud/ocis/issues/903) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:632](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L632) -- [apiShareManagementBasicToShares/createShareToSharesFolder.feature:633](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/createShareToSharesFolder.feature#L633) +#### [PUT request with missing parent must return status code 409](https://github.com/owncloud/ocis/issues/824) +_ocdav: api compatibility, return correct status code_ +- [apiAuthWebDav/webDavPUTAuth.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavPUTAuth.feature#L38) Scenario: send PUT requests to another user's webDav endpoints as normal user -### [Deletion time in trash bin shows a wrong date](https://github.com/owncloud/ocis/issues/541) -- [apiTrashbin/trashbinFilesFolders.feature:284](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L284) -- [apiTrashbin/trashbinFilesFolders.feature:285](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L285) +#### [Default capabilities for normal user not same as in oC-core](https://github.com/owncloud/ocis/issues/1285) +#### [Difference in response content of status.php and default capabilities](https://github.com/owncloud/ocis/issues/1286) +- [apiCapabilities/capabilitiesWithNormalUser.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilitiesWithNormalUser.feature#L11) Scenario: getting default capabilities with normal user + +#### [REPORT request not implemented](https://github.com/owncloud/ocis/issues/1330) +Scenario Outline: search for entry by pattern +- [apiWebdavOperations/search.feature:42](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L42) +- [apiWebdavOperations/search.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L43) + Scenario Outline: search for entries by only some letters from the middle of the entry name +- [apiWebdavOperations/search.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L57) +- [apiWebdavOperations/search.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L58) + Scenario Outline: search for files by extension +- [apiWebdavOperations/search.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L74) +- [apiWebdavOperations/search.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L75) + Scenario Outline: search with empty field +- [apiWebdavOperations/search.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L83) +- [apiWebdavOperations/search.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L84) + Scenario Outline: limit returned search entries +- [apiWebdavOperations/search.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L101) +- [apiWebdavOperations/search.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L102) + Scenario Outline: limit returned search entries to only 1 entry +- [apiWebdavOperations/search.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L119) +- [apiWebdavOperations/search.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L120) + Scenario Outline: limit returned search entries to more entires than there are +- [apiWebdavOperations/search.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L138) +- [apiWebdavOperations/search.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L139) + Scenario Outline: report extra properties in search entries for a file +- [apiWebdavOperations/search.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L165) +- [apiWebdavOperations/search.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L166) + Scenario Outline: report extra properties in search entries for a folder +- [apiWebdavOperations/search.feature:191](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L191) +- [apiWebdavOperations/search.feature:192](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L192) + Scenario Outline: search for entry with emoji by pattern +- [apiWebdavOperations/search.feature:210](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L210) +- [apiWebdavOperations/search.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L211) +- [apiWebdavOperations/search.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L213) Scenario: search for entry by tags using REPORT method +- [apiWebdavOperations/search.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L229) Scenario: share a tagged resource to another internal user and sharee searches for tag using REPORT method +- [apiWebdavOperations/search.feature:254](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/search.feature#L254) Scenario: search for entries across various folders by tags using REPORT method + +And other missing implementation of favorites +- [apiFavorites/favorites.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L91) +- [apiFavorites/favorites.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L92) +- [apiFavorites/favorites.feature:112](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L112) +- [apiFavorites/favorites.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L113) +- [apiFavorites/favorites.feature:128](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L128) +- [apiFavorites/favorites.feature:129](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L129) +- [apiFavorites/favorites.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L148) +- [apiFavorites/favorites.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L149) +- [apiFavorites/favorites.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L176) +- [apiFavorites/favorites.feature:177](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L177) +- [apiFavorites/favorites.feature:217](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L217) +- [apiFavorites/favorites.feature:218](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favorites.feature#L218) +- [apiFavorites/favoritesSharingToShares.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L22) +- [apiFavorites/favoritesSharingToShares.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L23) +- [apiFavorites/favoritesSharingToShares.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L36) +- [apiFavorites/favoritesSharingToShares.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L37) +- [apiFavorites/favoritesSharingToShares.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L49) +- [apiFavorites/favoritesSharingToShares.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L50) +- [apiFavorites/favoritesSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L63) +- [apiFavorites/favoritesSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L64) + +The following scenarios fail on OWNCLOUD storage but not on OCIS storage: + +- [apiFavorites/favoritesSharingToShares.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L77) +- [apiFavorites/favoritesSharingToShares.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiFavorites/favoritesSharingToShares.feature#L78) + +#### CSRF Headers +Scenario Outline: Downloading a file should serve security headers +- [apiWebdavOperations/downloadFile.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L60) +- [apiWebdavOperations/downloadFile.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L61) + Scenario Outline: Doing a GET with a web login should work without CSRF token on the new backend +- [apiWebdavOperations/downloadFile.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L72) +- [apiWebdavOperations/downloadFile.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L73) + Scenario Outline: Doing a GET with a web login should work with CSRF token on the new backend +- [apiWebdavOperations/downloadFile.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L84) +- [apiWebdavOperations/downloadFile.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/downloadFile.feature#L85) + +#### Authentication +Scenario Outline: Unauthenticated call +- [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) +- [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) + Scenario Outline: A disabled user cannot use webdav +- [apiWebdavOperations/refuseAccess.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L33) +- [apiWebdavOperations/refuseAccess.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L34) + + +#### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) +Scenario Outline: Do a PROPFIND to a non-existing URL +- [apiWebdavProperties2/getFileProperties.feature:242](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L242) +- [apiWebdavProperties2/getFileProperties.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties2/getFileProperties.feature#L243) + + +#### [system configuration options missing](https://github.com/owncloud/ocis/issues/1323) + +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L31) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L32) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L65) +- [apiWebdavUpload1/uploadFileToBlacklistedName.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUpload1/uploadFileToBlacklistedName.feature#L66) + +#### [wildcard Access-Control-Allow-Origin](https://github.com/owncloud/ocis/issues/1340) +- [apiAuth/cors.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L24) +- [apiAuth/cors.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L25) +- [apiAuth/cors.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L26) +- [apiAuth/cors.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L27) +- [apiAuth/cors.feature:28](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L28) +- [apiAuth/cors.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L29) +- [apiAuth/cors.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L30) +- [apiAuth/cors.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L31) +- [apiAuth/cors.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L32) +- [apiAuth/cors.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L33) +- [apiAuth/cors.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L34) +- [apiAuth/cors.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L35) +- [apiAuth/cors.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L36) +- [apiAuth/cors.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L37) +- [apiAuth/cors.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L38) +- [apiAuth/cors.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L39) +- [apiAuth/cors.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L40) +- [apiAuth/cors.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L41) +- [apiAuth/cors.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L59) +- [apiAuth/cors.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L60) +- [apiAuth/cors.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L61) +- [apiAuth/cors.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L62) +- [apiAuth/cors.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L63) +- [apiAuth/cors.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L64) +- [apiAuth/cors.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L83) +- [apiAuth/cors.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L84) +- [apiAuth/cors.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L85) +- [apiAuth/cors.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L86) +- [apiAuth/cors.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L87) +- [apiAuth/cors.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L88) +- [apiAuth/cors.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L89) +- [apiAuth/cors.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L90) +- [apiAuth/cors.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L91) +- [apiAuth/cors.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L92) +- [apiAuth/cors.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L93) +- [apiAuth/cors.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L94) +- [apiAuth/cors.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L95) +- [apiAuth/cors.feature:96](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L96) +- [apiAuth/cors.feature:97](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L97) +- [apiAuth/cors.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L98) +- [apiAuth/cors.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L99) +- [apiAuth/cors.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L100) +- [apiAuth/cors.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L118) +- [apiAuth/cors.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L119) +- [apiAuth/cors.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L120) +- [apiAuth/cors.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L121) +- [apiAuth/cors.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L122) +- [apiAuth/cors.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L123) +- [apiAuth/cors.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L142) +- [apiAuth/cors.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L143) +- [apiAuth/cors.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L144) +- [apiAuth/cors.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L145) +- [apiAuth/cors.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L146) +- [apiAuth/cors.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L147) +- [apiAuth/cors.feature:148](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L148) +- [apiAuth/cors.feature:149](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L149) +- [apiAuth/cors.feature:150](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L150) +- [apiAuth/cors.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L151) +- [apiAuth/cors.feature:152](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L152) +- [apiAuth/cors.feature:153](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L153) +- [apiAuth/cors.feature:154](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L154) +- [apiAuth/cors.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L155) +- [apiAuth/cors.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L156) +- [apiAuth/cors.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L157) +- [apiAuth/cors.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L178) +- [apiAuth/cors.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L179) +- [apiAuth/cors.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L180) +- [apiAuth/cors.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L181) +- [apiAuth/cors.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L182) +- [apiAuth/cors.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L183) + +#### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) +#### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) +- [apiAuthOcs/ocsGETAuth.feature:243](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthOcs/ocsGETAuth.feature#L243) + +#### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) +- [apiAuthWebDav/webDavDELETEAuth.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L78) +- [apiAuthWebDav/webDavDELETEAuth.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuthWebDav/webDavDELETEAuth.feature#L92) + +#### [various sharing settings cannot be set](https://github.com/owncloud/ocis/issues/1328) +- [apiCapabilities/capabilities.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L8) +- [apiCapabilities/capabilities.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L15) +- [apiCapabilities/capabilities.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L21) +- [apiCapabilities/capabilities.feature:27](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L27) +- [apiCapabilities/capabilities.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L33) +- [apiCapabilities/capabilities.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L38) +- [apiCapabilities/capabilities.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L80) +- [apiCapabilities/capabilities.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L93) +- [apiCapabilities/capabilities.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L107) +- [apiCapabilities/capabilities.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L116) +- [apiCapabilities/capabilities.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L125) +- [apiCapabilities/capabilities.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L132) +- [apiCapabilities/capabilities.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L138) +- [apiCapabilities/capabilities.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L144) +- [apiCapabilities/capabilities.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L151) +- [apiCapabilities/capabilities.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L157) +- [apiCapabilities/capabilities.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L166) +- [apiCapabilities/capabilities.feature:176](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L176) +- [apiCapabilities/capabilities.feature:187](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L187) +- [apiCapabilities/capabilities.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L198) +- [apiCapabilities/capabilities.feature:208](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L208) +- [apiCapabilities/capabilities.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L219) +- [apiCapabilities/capabilities.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L231) +- [apiCapabilities/capabilities.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L238) +- [apiCapabilities/capabilities.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L245) +- [apiCapabilities/capabilities.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L252) +- [apiCapabilities/capabilities.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L275) +- [apiCapabilities/capabilities.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L292) +- [apiCapabilities/capabilities.feature:313](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L313) +- [apiCapabilities/capabilities.feature:335](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L335) +- [apiCapabilities/capabilities.feature:357](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L357) +- [apiCapabilities/capabilities.feature:379](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L379) +- [apiCapabilities/capabilities.feature:404](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L404) +- [apiCapabilities/capabilities.feature:429](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L429) +- [apiCapabilities/capabilities.feature:454](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L454) +- [apiCapabilities/capabilities.feature:476](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L476) +- [apiCapabilities/capabilities.feature:498](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L498) +- [apiCapabilities/capabilities.feature:521](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L521) +- [apiCapabilities/capabilities.feature:546](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L546) +- [apiCapabilities/capabilities.feature:568](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L568) +- [apiCapabilities/capabilities.feature:590](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L590) +- [apiCapabilities/capabilities.feature:613](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L613) +- [apiCapabilities/capabilities.feature:637](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L637) +- [apiCapabilities/capabilities.feature:658](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L658) +- [apiCapabilities/capabilities.feature:680](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L680) +- [apiCapabilities/capabilities.feature:703](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L703) +- [apiCapabilities/capabilities.feature:729](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L729) +- [apiCapabilities/capabilities.feature:758](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L758) +- [apiCapabilities/capabilities.feature:787](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L787) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L25) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L26) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L47) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L48) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L66) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L67) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L87) +- [apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares1/createShareWhenExcludedFromSharing.feature#L88) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L25) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:26](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L26) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L44) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:45](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L45) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L64) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L65) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L83) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L84) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L103) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L104) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L122) +- [apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareCreateSpecialToShares2/createShareWhenShareWithOnlyMembershipGroups.feature#L123) + +- [apiMain/caldav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L8) +- [apiMain/caldav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L15) +- [apiMain/caldav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L23) +- [apiMain/caldav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/caldav.feature#L31) +- [apiMain/carddav.feature:8](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L8) +- [apiMain/carddav.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L15) +- [apiMain/carddav.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L23) +- [apiMain/carddav.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiMain/carddav.feature#L31) + +- [apiTranslation/translation.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L29) +- [apiTranslation/translation.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTranslation/translation.feature#L30) -### [deleting a share with wrong authentication returns OCS status 996 / HTTP 500](https://github.com/owncloud/ocis/issues/1229) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#211) -- [apiShareManagementBasicToShares/deleteShareFromShares.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementBasicToShares/deleteShareFromShares.feature#212) From d60604366c1d40afccf4544d67f6028c25e984aa Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Fri, 29 Jan 2021 12:46:32 +0545 Subject: [PATCH 71/88] Adjust expected-failures for differences between cs3org/reva and OCIS --- .../expected-failures-API-on-OCIS-storage.md | 70 +++++++++++++++---- ...pected-failures-API-on-OWNCLOUD-storage.md | 70 +++++++++++++++---- 2 files changed, 110 insertions(+), 30 deletions(-) diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index 51afb964e7..7f9046c710 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -203,6 +203,10 @@ Basic file management like up and download, move, copy, properties, trash, versi - [apiWebdavUploadTUS/uploadFile.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L155) - [apiWebdavUploadTUS/uploadFile.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L156) +### [TUS OPTIONS requests do not reply with TUS headers when invalid password](https://github.com/owncloud/ocis/issues/1012) +- [apiWebdavUploadTUS/optionsRequest.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L29) +- [apiWebdavUploadTUS/optionsRequest.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L40) + #### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) - [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) @@ -967,11 +971,6 @@ cannot share a folder with create permission - [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) - [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) -#### [There is no such thing like a super-user](https://github.com/owncloud/ocis/issues/1319) - -- [apiShareOperationsToShares/gettingShares.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L38) -- [apiShareOperationsToShares/gettingShares.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L39) - #### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) #### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis-reva/issues/301) #### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) @@ -1044,6 +1043,48 @@ cannot share a folder with create permission - [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) - [apiSharePublicLink1/accessToPublicLinkShare.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L43) +#### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) + +- [apiWebdavPreviews/previews.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L15) +- [apiWebdavPreviews/previews.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L16) +- [apiWebdavPreviews/previews.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L17) +- [apiWebdavPreviews/previews.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L18) +- [apiWebdavPreviews/previews.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L19) +- [apiWebdavPreviews/previews.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L30) +- [apiWebdavPreviews/previews.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L31) +- [apiWebdavPreviews/previews.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L32) +- [apiWebdavPreviews/previews.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L33) +- [apiWebdavPreviews/previews.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L34) +- [apiWebdavPreviews/previews.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L35) +- [apiWebdavPreviews/previews.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L36) +- [apiWebdavPreviews/previews.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L47) +- [apiWebdavPreviews/previews.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L48) +- [apiWebdavPreviews/previews.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L49) +- [apiWebdavPreviews/previews.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L50) +- [apiWebdavPreviews/previews.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L51) +- [apiWebdavPreviews/previews.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L52) +- [apiWebdavPreviews/previews.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L53) +- [apiWebdavPreviews/previews.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L56) +- [apiWebdavPreviews/previews.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L71) +- [apiWebdavPreviews/previews.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L72) +- [apiWebdavPreviews/previews.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L73) +- [apiWebdavPreviews/previews.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L83) +- [apiWebdavPreviews/previews.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L84) +- [apiWebdavPreviews/previews.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L87) +- [apiWebdavPreviews/previews.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L95) +- [apiWebdavPreviews/previews.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L104) +- [apiWebdavPreviews/previews.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L113) +- [apiWebdavPreviews/previews.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L120) +- [apiWebdavPreviews/previews.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L127) +- [apiWebdavPreviews/previews.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L135) +- [apiWebdavPreviews/previews.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L144) +- [apiWebdavPreviews/previews.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L163) +- [apiWebdavPreviews/previews.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L164) +- [apiWebdavPreviews/previews.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L165) +- [apiWebdavPreviews/previews.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L166) +- [apiWebdavPreviews/previews.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L178) +- [apiWebdavPreviews/previews.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L179) + #### [creating public links with permissions fails](https://github.com/owncloud/product/issues/252) - [apiSharePublicLink1/changingPublicLinkShare.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L22) @@ -1205,11 +1246,6 @@ cannot share a folder with create permission - [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) -#### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L48) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L49) - #### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis-reva/issues/286) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) @@ -1816,6 +1852,9 @@ special character username not valid - [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) - [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) - [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) +- [apiProvisioning-v2/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L121) +- [apiProvisioning-v2/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L122) +- [apiProvisioning-v2/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L123) - [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) - [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) - [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) @@ -1826,6 +1865,12 @@ special character username not valid - [apiProvisioning-v2/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L32) - [apiProvisioning-v2/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L34) - [apiProvisioning-v2/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L35) +- [apiTrashbin/trashbinFilesFolders.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L239) +- [apiTrashbin/trashbinFilesFolders.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L240) +- [apiTrashbin/trashbinFilesFolders.feature:241](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L241) +- [apiTrashbin/trashbinFilesFolders.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L245) +- [apiTrashbin/trashbinFilesFolders.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L246) +- [apiTrashbin/trashbinFilesFolders.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L247) #### [Creating an already existing user works](https://github.com/owncloud/ocis-accounts/issues/80) - [apiProvisioning-v1/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L32) @@ -2172,8 +2217,6 @@ Scenario Outline: Unauthenticated call - [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) - [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) Scenario Outline: A disabled user cannot use webdav -- [apiWebdavOperations/refuseAccess.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L33) -- [apiWebdavOperations/refuseAccess.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L34) #### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) @@ -2280,8 +2323,6 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiCapabilities/capabilities.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L93) - [apiCapabilities/capabilities.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L107) - [apiCapabilities/capabilities.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L116) -- [apiCapabilities/capabilities.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L125) -- [apiCapabilities/capabilities.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L132) - [apiCapabilities/capabilities.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L138) - [apiCapabilities/capabilities.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L144) - [apiCapabilities/capabilities.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L151) @@ -2294,7 +2335,6 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiCapabilities/capabilities.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L219) - [apiCapabilities/capabilities.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L231) - [apiCapabilities/capabilities.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L238) -- [apiCapabilities/capabilities.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L245) - [apiCapabilities/capabilities.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L252) - [apiCapabilities/capabilities.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L275) - [apiCapabilities/capabilities.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L292) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index 88bca32aa3..32ed1b3d42 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -222,6 +222,10 @@ The following scenarios fail on OWNCLOUD storage but not on OCIS storage: - [apiWebdavUploadTUS/uploadFile.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L155) - [apiWebdavUploadTUS/uploadFile.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/uploadFile.feature#L156) +### [TUS OPTIONS requests do not reply with TUS headers when invalid password](https://github.com/owncloud/ocis/issues/1012) +- [apiWebdavUploadTUS/optionsRequest.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L29) +- [apiWebdavUploadTUS/optionsRequest.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavUploadTUS/optionsRequest.feature#L40) + #### [blacklisted filenames like .htaccess & file.parts can be uploaded](https://github.com/owncloud/ocis/issues/1345) - [apiWebdavProperties1/copyFile.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L102) - [apiWebdavProperties1/copyFile.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavProperties1/copyFile.feature#L103) @@ -972,11 +976,6 @@ cannot share a folder with create permission - [apiShareOperationsToShares/gettingShares.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L24) - [apiShareOperationsToShares/gettingShares.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L25) -#### [There is no such thing like a super-user](https://github.com/owncloud/ocis/issues/1319) - -- [apiShareOperationsToShares/gettingShares.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L38) -- [apiShareOperationsToShares/gettingShares.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/gettingShares.feature#L39) - #### [Delete shares from user when user is deleted](https://github.com/owncloud/ocis-reva/issues/357) #### [no displayname_owner shown when creating a share](https://github.com/owncloud/ocis-reva/issues/301) #### [when sharing a file mime-type field is set to application/octet-stream](https://github.com/owncloud/ocis/issues/578) @@ -1039,6 +1038,48 @@ cannot share a folder with create permission - [apiSharePublicLink1/accessToPublicLinkShare.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L30) - [apiSharePublicLink1/accessToPublicLinkShare.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/accessToPublicLinkShare.feature#L43) +#### [Previews via webDAV API tests fail on OCIS](https://github.com/owncloud/ocis/issues/187) + +- [apiWebdavPreviews/previews.feature:15](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L15) +- [apiWebdavPreviews/previews.feature:16](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L16) +- [apiWebdavPreviews/previews.feature:17](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L17) +- [apiWebdavPreviews/previews.feature:18](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L18) +- [apiWebdavPreviews/previews.feature:19](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L19) +- [apiWebdavPreviews/previews.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L30) +- [apiWebdavPreviews/previews.feature:31](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L31) +- [apiWebdavPreviews/previews.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L32) +- [apiWebdavPreviews/previews.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L33) +- [apiWebdavPreviews/previews.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L34) +- [apiWebdavPreviews/previews.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L35) +- [apiWebdavPreviews/previews.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L36) +- [apiWebdavPreviews/previews.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L47) +- [apiWebdavPreviews/previews.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L48) +- [apiWebdavPreviews/previews.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L49) +- [apiWebdavPreviews/previews.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L50) +- [apiWebdavPreviews/previews.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L51) +- [apiWebdavPreviews/previews.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L52) +- [apiWebdavPreviews/previews.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L53) +- [apiWebdavPreviews/previews.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L56) +- [apiWebdavPreviews/previews.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L71) +- [apiWebdavPreviews/previews.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L72) +- [apiWebdavPreviews/previews.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L73) +- [apiWebdavPreviews/previews.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L83) +- [apiWebdavPreviews/previews.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L84) +- [apiWebdavPreviews/previews.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L87) +- [apiWebdavPreviews/previews.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L95) +- [apiWebdavPreviews/previews.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L104) +- [apiWebdavPreviews/previews.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L113) +- [apiWebdavPreviews/previews.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L120) +- [apiWebdavPreviews/previews.feature:127](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L127) +- [apiWebdavPreviews/previews.feature:135](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L135) +- [apiWebdavPreviews/previews.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L144) +- [apiWebdavPreviews/previews.feature:163](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L163) +- [apiWebdavPreviews/previews.feature:164](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L164) +- [apiWebdavPreviews/previews.feature:165](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L165) +- [apiWebdavPreviews/previews.feature:166](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L166) +- [apiWebdavPreviews/previews.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L178) +- [apiWebdavPreviews/previews.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavPreviews/previews.feature#L179) + #### [creating public links with permissions fails](https://github.com/owncloud/product/issues/252) - [apiSharePublicLink1/changingPublicLinkShare.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink1/changingPublicLinkShare.feature#L22) @@ -1211,11 +1252,6 @@ The following scenarios fail on OWNCLOUD storage but not on OCIS storage: - [apiSharePublicLink2/uploadToPublicLinkShare.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L121) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L139) -#### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis/issues/1267) - -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L48) -- [apiSharePublicLink2/uploadToPublicLinkShare.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L49) - #### [Upload-only shares must not overwrite but create a separate file](https://github.com/owncloud/ocis-reva/issues/286) - [apiSharePublicLink2/uploadToPublicLinkShare.feature:23](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiSharePublicLink2/uploadToPublicLinkShare.feature#L23) @@ -1930,6 +1966,9 @@ special character username not valid - [apiProvisioning-v1/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/getUser.feature#L35) - [apiProvisioning-v2/addUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L29) - [apiProvisioning-v2/addUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L30) +- [apiProvisioning-v2/addUser.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L121) +- [apiProvisioning-v2/addUser.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L122) +- [apiProvisioning-v2/addUser.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L123) - [apiProvisioning-v2/deleteUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L29) - [apiProvisioning-v2/deleteUser.feature:30](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L30) - [apiProvisioning-v2/disableUser.feature:29](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/disableUser.feature#L29) @@ -1940,6 +1979,12 @@ special character username not valid - [apiProvisioning-v2/enableUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/enableUser.feature#L32) - [apiProvisioning-v2/getUser.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L34) - [apiProvisioning-v2/getUser.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/getUser.feature#L35) +- [apiTrashbin/trashbinFilesFolders.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L239) +- [apiTrashbin/trashbinFilesFolders.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L240) +- [apiTrashbin/trashbinFilesFolders.feature:241](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L241) +- [apiTrashbin/trashbinFilesFolders.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L245) +- [apiTrashbin/trashbinFilesFolders.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L246) +- [apiTrashbin/trashbinFilesFolders.feature:247](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L247) #### [Creating an already existing user works](https://github.com/owncloud/ocis-accounts/issues/80) - [apiProvisioning-v1/addUser.feature:32](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L32) @@ -2291,8 +2336,6 @@ Scenario Outline: Unauthenticated call - [apiWebdavOperations/refuseAccess.feature:21](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L21) - [apiWebdavOperations/refuseAccess.feature:22](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L22) Scenario Outline: A disabled user cannot use webdav -- [apiWebdavOperations/refuseAccess.feature:33](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L33) -- [apiWebdavOperations/refuseAccess.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiWebdavOperations/refuseAccess.feature#L34) #### [trying to access a non-existing resource returns an empty body](https://github.com/owncloud/ocis/issues/1282) @@ -2399,8 +2442,6 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiCapabilities/capabilities.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L93) - [apiCapabilities/capabilities.feature:107](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L107) - [apiCapabilities/capabilities.feature:116](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L116) -- [apiCapabilities/capabilities.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L125) -- [apiCapabilities/capabilities.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L132) - [apiCapabilities/capabilities.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L138) - [apiCapabilities/capabilities.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L144) - [apiCapabilities/capabilities.feature:151](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L151) @@ -2413,7 +2454,6 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiCapabilities/capabilities.feature:219](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L219) - [apiCapabilities/capabilities.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L231) - [apiCapabilities/capabilities.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L238) -- [apiCapabilities/capabilities.feature:245](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L245) - [apiCapabilities/capabilities.feature:252](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L252) - [apiCapabilities/capabilities.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L275) - [apiCapabilities/capabilities.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiCapabilities/capabilities.feature#L292) From 18a05e5fbc9830a2a768452f06ff39613d55accb Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Fri, 29 Jan 2021 14:45:00 +0100 Subject: [PATCH 72/88] fix typo --- docs/ocis/release_roadmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ocis/release_roadmap.md b/docs/ocis/release_roadmap.md index aeb806259f..de8b850455 100644 --- a/docs/ocis/release_roadmap.md +++ b/docs/ocis/release_roadmap.md @@ -19,7 +19,7 @@ All oCIS releases within major version 1 will be handled as technology previews. We will be fixing bugs if you report them and truly appreciate every report and contribution. We will then do bugfix releases or add the fix to the next minor release. -We are going to stick to major version 1 until we feel confident about running oCIS in production environments. As a consequence of this we cannot raise the major version, like SemVers requires it, even if we need to introduce breaking changes. We will do our best to avoid breaking changes. If there is no way to circumvent this, we will add an automatic migration or at least point out manual migration steps, since we as oCIS developers are already using oCIS on a personal basis. The best place to see if a breaking change happens is our changelog which is available for every release. If things are not working out for you please contact us immediately. We want to know about this and solve it for you. +We are going to stick to major version 1 until we feel confident about running oCIS in production environments. As a consequence of this we cannot raise the major version, like SemVer requires it, even if we need to introduce breaking changes. We will do our best to avoid breaking changes. If there is no way to circumvent this, we will add an automatic migration or at least point out manual migration steps, since we as oCIS developers are already using oCIS on a personal basis. The best place to see if a breaking change happens is our changelog which is available for every release. If things are not working out for you please contact us immediately. We want to know about this and solve it for you. It isn't our intention to scare you with our addendum "Tech Preview". We want you to have a clear picture of what you can expect from oCIS. You could take it as a disclaimer or even compare it to running an Linux kernel in alpha stage. It can be very pleasing to be on the latest codebase but you could also find yourself with a lot of problems arising because of that. From 085f6f0f4ac1f318e16e2a6fbfa7f5a582fa0500 Mon Sep 17 00:00:00 2001 From: Ilja Neumann Date: Fri, 29 Jan 2021 15:40:08 +0100 Subject: [PATCH 73/88] Rename konnectd to idp --- idp/cmd/{konnectd => idp}/main.go | 0 idp/templates/CONFIGURATION.tmpl | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename idp/cmd/{konnectd => idp}/main.go (100%) diff --git a/idp/cmd/konnectd/main.go b/idp/cmd/idp/main.go similarity index 100% rename from idp/cmd/konnectd/main.go rename to idp/cmd/idp/main.go diff --git a/idp/templates/CONFIGURATION.tmpl b/idp/templates/CONFIGURATION.tmpl index 713987abc9..54fee74626 100644 --- a/idp/templates/CONFIGURATION.tmpl +++ b/idp/templates/CONFIGURATION.tmpl @@ -35,7 +35,7 @@ $HOME/.ocis For this configuration to be picked up, have a look at your extension `root` command and look for which default config name it has assigned. *i.e: ocis-idp reads `idp.json | yaml | toml ...`*. -So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/konnectd/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. +So far we support the file formats `JSON` and `YAML`, if you want to get a full example configuration just take a look at [our repository](https://github.com/owncloud/ocis/tree/master/idp/config), there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it's placed at `/etc/ocis/ocis.yml`, `${HOME}/.ocis/ocis.yml` or `$(pwd)/config/ocis.yml`. ### Environment variables From 1d5a116e3c0c6213ee19b7f654cb0b681631b5d0 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Tue, 26 Jan 2021 10:33:28 +0100 Subject: [PATCH 74/88] add continuous deployments --- .drone.star | 127 +++++++++++++----- .../cs3_users_ocis/latest.yml | 39 ++++++ .../cs3_users_ocis/released.yml | 39 ++++++ .../ocis_keycloak/latest.yml | 39 ++++++ .../ocis_keycloak/released.yml | 39 ++++++ .../ocis_traefik/latest.yml | 38 ++++++ .../ocis_traefik/released.yml | 38 ++++++ ...docker-compose.yaml => docker-compose.yml} | 11 +- 8 files changed, 333 insertions(+), 37 deletions(-) create mode 100644 deployments/continuous-deployment-config/cs3_users_ocis/latest.yml create mode 100644 deployments/continuous-deployment-config/cs3_users_ocis/released.yml create mode 100644 deployments/continuous-deployment-config/ocis_keycloak/latest.yml create mode 100644 deployments/continuous-deployment-config/ocis_keycloak/released.yml create mode 100644 deployments/continuous-deployment-config/ocis_traefik/latest.yml create mode 100644 deployments/continuous-deployment-config/ocis_traefik/released.yml rename deployments/examples/cs3_users_ocis/{docker-compose.yaml => docker-compose.yml} (97%) diff --git a/.drone.star b/.drone.star index 652b05e2aa..0a412ba67b 100644 --- a/.drone.star +++ b/.drone.star @@ -185,8 +185,7 @@ def main(ctx): build_release_helpers = [ changelog(ctx), docs(ctx), - refreshDockerBadges(ctx), - updateDeployment(ctx), + refreshDockerBadges(ctx) ] if ctx.build.event == "cron": @@ -195,7 +194,7 @@ def main(ctx): purgeBuildArtifactCache(ctx, 'ocis-binary-amd64'), testPipelines(ctx) ) - ] + ] + example_deploys(ctx) elif \ (ctx.build.event == "pull_request" and '[docs-only]' in ctx.build.title) \ @@ -214,6 +213,14 @@ def main(ctx): pipelines = test_pipelines + build_release_pipelines + build_release_helpers + + pipelines = \ + pipelines + \ + pipelinesDependsOn( + example_deploys(ctx), + pipelines + ) + # always append notification step pipelines.append( pipelineDependsOn( @@ -1266,39 +1273,6 @@ def makeGenerate(module): } ] -def updateDeployment(ctx): - return { - 'kind': 'pipeline', - 'type': 'docker', - 'name': 'updateDeployment', - 'platform': { - 'os': 'linux', - 'arch': 'amd64', - }, - 'steps': [ - { - 'name': 'webhook', - 'image': 'plugins/webhook:1', - 'settings': { - 'username': { - 'from_secret': 'webhook_username', - }, - 'password': { - 'from_secret': 'webhook_password', - }, - 'method': 'GET', - 'urls': 'https://ocis.owncloud.works/hooks/update-ocis', - } - } - ], - 'depends_on': getPipelineNames(dockerReleases(ctx) + binaryReleases(ctx)), - 'trigger': { - 'ref': [ - 'refs/heads/master', - ], - } - } - def notify(ctx): return { 'kind': 'pipeline', @@ -1460,6 +1434,87 @@ def build(): }, ] +def example_deploys(ctx): + latest_configs = [ + 'cs3_users_ocis/latest.yml', + 'ocis_keycloak/latest.yml', + 'ocis_traefik/latest.yml', + ] + released_configs = [ + 'cs3_users_ocis/released.yml', + 'ocis_keycloak/released.yml', + 'ocis_traefik/released.yml', + ] + + # if on master branch: + configs = latest_configs + rebuild = "false" + + if ctx.build.event == "tag": + configs = released_configs + rebuild = 'false' + + if ctx.build.event == "cron": + configs = latest_configs + released_configs + rebuild = 'true' + + deploys = [] + for config in configs: + deploys.append(deploy(ctx, config, rebuild)) + + return deploys + +def deploy(ctx, config, rebuild): + return { + 'kind': 'pipeline', + 'type': 'docker', + 'name': 'deploy_%s' % (config), + 'platform': { + 'os': 'linux', + 'arch': 'amd64', + }, + 'steps': [ + { + 'name': 'clone continuous deployment playbook', + 'image': 'alpine/git', + 'commands': [ + 'cd deployments/continuous-deployment-config', + 'git clone https://github.com/owncloud-devops/continuous-deployment.git', + ] + }, + { + 'name': 'deploy', + 'image': 'owncloudci/drone-ansible', + 'failure': 'ignore', + 'environment': { + 'CONTINUOUS_DEPLOY_SERVERS_CONFIG': '../%s' % (config), + "REBUILD": '%s' % (rebuild), + 'HCLOUD_API_TOKEN': { + 'from_secret': 'hcloud_api_token' + }, + 'CLOUDFLARE_API_TOKEN': { + 'from_secret': 'cloudflare_api_token' + } + }, + 'settings': { + 'playbook': 'deployments/continuous-deployment-config/continuous-deployment/playbook-all.yml', + 'galaxy': 'deployments/continuous-deployment-config/continuous-deployment/requirements.yml', + 'requirements': 'deployments/continuous-deployment-config/continuous-deployment/py-requirements.txt', + 'inventory': 'localhost', + 'private_key': { + 'from_secret': 'ssh_private_key' + } + } + }, + ], + 'trigger': { + 'ref': [ + 'refs/heads/master', + 'refs/tags/v*', + ], + }, + } + def genericCache(name, action, mounts, cache_key): rebuild = 'false' restore = 'false' diff --git a/deployments/continuous-deployment-config/cs3_users_ocis/latest.yml b/deployments/continuous-deployment-config/cs3_users_ocis/latest.yml new file mode 100644 index 0000000000..4ad9fcecfb --- /dev/null +++ b/deployments/continuous-deployment-config/cs3_users_ocis/latest.yml @@ -0,0 +1,39 @@ +--- +- name: continuous-deployment-ocis-cs3-users-latest + server: + server_type: cx21 + image: ubuntu-20.04 + location: nbg1 + inital_ssh_key_names: + - owncloud-ocis@drone.owncloud.com + labels: + owner: wkloucek + for: oCIS-continuous-deployment-examples + rebuild: $REBUILD + + domains: + - "*.ocis-cs3-users.latest.owncloud.works" + + vars: + docker_compose_projects: + - name: ocis + git_url: https://github.com/owncloud/ocis.git + ref: master + docker_compose_path: deployments/examples/cs3_users_ocis + env: + INSECURE: "false" + TRAEFIK_ACME_MAIL: wkloucek@owncloud.com + OCIS_DOCKER_TAG: latest + OCIS_DOMAIN: ocis.ocis-cs3-users.latest.owncloud.works + LDAP_MANAGER_DOMAIN: ldap.ocis-keycloak.released.owncloud.works + COMPOSE_FILE: docker-compose.yml:monitoring_tracing/docker-compose-additions.yml + - name: monitoring + git_url: https://github.com/owncloud-devops/monitoring-tracing-client.git + ref: master + env: + NETWORK_NAME: ocis-net + TELEMETRY_SERVE_DOMAIN: telemetry.ocis-traefik.latest.owncloud.works + JAEGER_COLLECTOR: jaeger-collector.infra.owncloud.works:443 + TELEGRAF_SPECIFIC_CONFIG: ocis_single_container + OCIS_URL: ocis.ocis-cs3-users.latest.owncloud.works + OCIS_DEPLOYMENT_ID: continuous-deployment-ocis-cs3-users-latest diff --git a/deployments/continuous-deployment-config/cs3_users_ocis/released.yml b/deployments/continuous-deployment-config/cs3_users_ocis/released.yml new file mode 100644 index 0000000000..ce0246a5f5 --- /dev/null +++ b/deployments/continuous-deployment-config/cs3_users_ocis/released.yml @@ -0,0 +1,39 @@ +--- +- name: continuous-deployment-ocis-cs3-users-released + server: + server_type: cx21 + image: ubuntu-20.04 + location: nbg1 + inital_ssh_key_names: + - owncloud-ocis@drone.owncloud.com + labels: + owner: wkloucek + for: oCIS-continuous-deployment-examples + rebuild: $REBUILD + + domains: + - "*.ocis-cs3-users.released.owncloud.works" + + vars: + docker_compose_projects: + - name: ocis + git_url: https://github.com/owncloud/ocis.git + ref: master + docker_compose_path: deployments/examples/cs3_users_ocis + env: + INSECURE: "false" + TRAEFIK_ACME_MAIL: wkloucek@owncloud.com + OCIS_DOCKER_TAG: 1 + OCIS_DOMAIN: ocis.ocis-cs3-users.released.owncloud.works + LDAP_MANAGER_DOMAIN: ldap.ocis-keycloak.released.owncloud.works + COMPOSE_FILE: docker-compose.yml:monitoring_tracing/docker-compose-additions.yml + - name: monitoring + git_url: https://github.com/owncloud-devops/monitoring-tracing-client.git + ref: master + env: + NETWORK_NAME: ocis-net + TELEMETRY_SERVE_DOMAIN: telemetry.ocis-traefik.released.owncloud.works + JAEGER_COLLECTOR: jaeger-collector.infra.owncloud.works:443 + TELEGRAF_SPECIFIC_CONFIG: ocis_single_container + OCIS_URL: ocis.ocis-cs3-users.released.owncloud.works + OCIS_DEPLOYMENT_ID: continuous-deployment-ocis-cs3-users-released diff --git a/deployments/continuous-deployment-config/ocis_keycloak/latest.yml b/deployments/continuous-deployment-config/ocis_keycloak/latest.yml new file mode 100644 index 0000000000..7baf4b1e87 --- /dev/null +++ b/deployments/continuous-deployment-config/ocis_keycloak/latest.yml @@ -0,0 +1,39 @@ +--- +- name: continuous-deployment-ocis-keycloak-latest + server: + server_type: cx21 + image: ubuntu-20.04 + location: nbg1 + inital_ssh_key_names: + - owncloud-ocis@drone.owncloud.com + labels: + owner: wkloucek + for: oCIS-continuous-deployment-examples + rebuild: $REBUILD + + domains: + - "*.ocis-keycloak.latest.owncloud.works" + + vars: + docker_compose_projects: + - name: ocis + git_url: https://github.com/owncloud/ocis.git + ref: master + docker_compose_path: deployments/examples/ocis_keycloak + env: + INSECURE: "false" + TRAEFIK_ACME_MAIL: wkloucek@owncloud.com + OCIS_DOCKER_TAG: latest + OCIS_DOMAIN: ocis.ocis-keycloak.latest.owncloud.works + KEYCLOAK_DOMAIN: keycloak.ocis-keycloak.latest.owncloud.works + COMPOSE_FILE: docker-compose.yml:monitoring_tracing/docker-compose-additions.yml + - name: monitoring + git_url: https://github.com/owncloud-devops/monitoring-tracing-client.git + ref: master + env: + NETWORK_NAME: ocis-net + TELEMETRY_SERVE_DOMAIN: telemetry.ocis-keycloak.latest.owncloud.works + JAEGER_COLLECTOR: jaeger-collector.infra.owncloud.works:443 + TELEGRAF_SPECIFIC_CONFIG: ocis_single_container + OCIS_URL: ocis.ocis-keycloak.latest.owncloud.works + OCIS_DEPLOYMENT_ID: continuous-deployment-ocis-keycloak-latest diff --git a/deployments/continuous-deployment-config/ocis_keycloak/released.yml b/deployments/continuous-deployment-config/ocis_keycloak/released.yml new file mode 100644 index 0000000000..d7a926c2e5 --- /dev/null +++ b/deployments/continuous-deployment-config/ocis_keycloak/released.yml @@ -0,0 +1,39 @@ +--- +- name: continuous-deployment-ocis-keycloak-released + server: + server_type: cx21 + image: ubuntu-20.04 + location: nbg1 + inital_ssh_key_names: + - owncloud-ocis@drone.owncloud.com + labels: + owner: wkloucek + for: oCIS-continuous-deployment-examples + rebuild: $REBUILD + + domains: + - "*.ocis-keycloak.released.owncloud.works" + + vars: + docker_compose_projects: + - name: ocis + git_url: https://github.com/owncloud/ocis.git + ref: master + docker_compose_path: deployments/examples/ocis_keycloak + env: + INSECURE: "false" + TRAEFIK_ACME_MAIL: wkloucek@owncloud.com + OCIS_DOCKER_TAG: 1 + OCIS_DOMAIN: ocis.ocis-keycloak.released.owncloud.works + KEYCLOAK_DOMAIN: keycloak.ocis-keycloak.latest.owncloud.works + COMPOSE_FILE: docker-compose.yml:monitoring_tracing/docker-compose-additions.yml + - name: monitoring + git_url: https://github.com/owncloud-devops/monitoring-tracing-client.git + ref: master + env: + NETWORK_NAME: ocis-net + TELEMETRY_SERVE_DOMAIN: telemetry.ocis-keycloak.released.owncloud.works + JAEGER_COLLECTOR: jaeger-collector.infra.owncloud.works:443 + TELEGRAF_SPECIFIC_CONFIG: ocis_single_container + OCIS_URL: ocis.ocis-keycloak.released.owncloud.works + OCIS_DEPLOYMENT_ID: continuous-deployment-ocis-keycloak-released diff --git a/deployments/continuous-deployment-config/ocis_traefik/latest.yml b/deployments/continuous-deployment-config/ocis_traefik/latest.yml new file mode 100644 index 0000000000..2caca75ba2 --- /dev/null +++ b/deployments/continuous-deployment-config/ocis_traefik/latest.yml @@ -0,0 +1,38 @@ +--- +- name: continuous-deployment-ocis-traefik-latest + server: + server_type: cx21 + image: ubuntu-20.04 + location: nbg1 + inital_ssh_key_names: + - owncloud-ocis@drone.owncloud.com + labels: + owner: wkloucek + for: oCIS-continuous-deployment-examples + rebuild: $REBUILD + + domains: + - "*.ocis-traefik.latest.owncloud.works" + + vars: + docker_compose_projects: + - name: ocis + git_url: https://github.com/owncloud/ocis.git + ref: master + docker_compose_path: deployments/examples/ocis_traefik + env: + INSECURE: "false" + TRAEFIK_ACME_MAIL: wkloucek@owncloud.com + OCIS_DOCKER_TAG: latest + OCIS_DOMAIN: ocis.ocis-traefik.latest.owncloud.works + COMPOSE_FILE: docker-compose.yml:monitoring_tracing/docker-compose-additions.yml + - name: monitoring + git_url: https://github.com/owncloud-devops/monitoring-tracing-client.git + ref: master + env: + NETWORK_NAME: ocis-net + TELEMETRY_SERVE_DOMAIN: telemetry.ocis-traefik.latest.owncloud.works + JAEGER_COLLECTOR: jaeger-collector.infra.owncloud.works:443 + TELEGRAF_SPECIFIC_CONFIG: ocis_single_container + OCIS_URL: ocis.ocis-traefik.latest.owncloud.works + OCIS_DEPLOYMENT_ID: continuous-deployment-ocis-traefik-latest diff --git a/deployments/continuous-deployment-config/ocis_traefik/released.yml b/deployments/continuous-deployment-config/ocis_traefik/released.yml new file mode 100644 index 0000000000..e3ff87c868 --- /dev/null +++ b/deployments/continuous-deployment-config/ocis_traefik/released.yml @@ -0,0 +1,38 @@ +--- +- name: continuous-deployment-ocis-traefik-released + server: + server_type: cx21 + image: ubuntu-20.04 + location: nbg1 + inital_ssh_key_names: + - owncloud-ocis@drone.owncloud.com + labels: + owner: wkloucek + for: oCIS-continuous-deployment-examples + rebuild: $REBUILD + + domains: + - "*.ocis-traefik.released.owncloud.works" + + vars: + docker_compose_projects: + - name: ocis + git_url: https://github.com/owncloud/ocis.git + ref: master + docker_compose_path: deployments/examples/ocis_traefik + env: + INSECURE: "false" + TRAEFIK_ACME_MAIL: wkloucek@owncloud.com + OCIS_DOCKER_TAG: 1 + OCIS_DOMAIN: ocis.ocis-traefik.released.owncloud.works + COMPOSE_FILE: docker-compose.yml:monitoring_tracing/docker-compose-additions.yml + - name: monitoring + git_url: https://github.com/owncloud-devops/monitoring-tracing-client.git + ref: master + env: + NETWORK_NAME: ocis-net + TELEMETRY_SERVE_DOMAIN: telemetry.ocis-traefik.released.owncloud.works + JAEGER_COLLECTOR: jaeger-collector.infra.owncloud.works:443 + TELEGRAF_SPECIFIC_CONFIG: ocis_single_container + OCIS_URL: ocis.ocis-traefik.released.owncloud.works + OCIS_DEPLOYMENT_ID: continuous-deployment-ocis-traefik-released diff --git a/deployments/examples/cs3_users_ocis/docker-compose.yaml b/deployments/examples/cs3_users_ocis/docker-compose.yml similarity index 97% rename from deployments/examples/cs3_users_ocis/docker-compose.yaml rename to deployments/examples/cs3_users_ocis/docker-compose.yml index ca2e188dcc..5513f2745d 100644 --- a/deployments/examples/cs3_users_ocis/docker-compose.yaml +++ b/deployments/examples/cs3_users_ocis/docker-compose.yml @@ -5,7 +5,7 @@ services: traefik: image: "traefik:v2.3" networks: - default: + ocis-net: aliases: - ${OCIS_DOMAIN:-ocis.owncloud.test} command: @@ -44,6 +44,8 @@ services: ocis: image: owncloud/ocis:${OCIS_DOCKER_TAG:-latest} + networks: + ocis-net: depends_on: - ldap-server environment: @@ -94,6 +96,8 @@ services: ldap-server: image: osixia/openldap:latest + networks: + ocis-net: command: --copy-service --loglevel debug environment: LDAP_TLS_VERIFY_CLIENT: never @@ -113,6 +117,8 @@ services: ldap-manager: image: osixia/phpldapadmin:0.9.0 + networks: + ocis-net: environment: PHPLDAPADMIN_LDAP_HOSTS: ldap-server PHPLDAPADMIN_HTTPS: "false" @@ -135,3 +141,6 @@ services: volumes: certs: ocis-data: + +networks: + ocis-net: From ce9177e21ceea8e23710774f09efce49424e2422 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Fri, 29 Jan 2021 16:30:29 +0100 Subject: [PATCH 75/88] disable strict status check (set it to loose) --- .github/settings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/settings.yml b/.github/settings.yml index 2df647cdb6..5ff1a04e80 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -39,7 +39,7 @@ branches: require_code_owner_reviews: false dismissal_restrictions: {} required_status_checks: - strict: true + strict: false contexts: - continuous-integration/drone/pr enforce_admins: false From 8cfbbf77b3c54a421ed4e736231f979f2b80bcb4 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Fri, 29 Jan 2021 13:36:04 +0100 Subject: [PATCH 76/88] Update JS dependencies --- accounts/go.sum | 10 + accounts/package.json | 2 +- accounts/pkg/assets/embed.go | 6 +- accounts/yarn.lock | 665 +++++++++++----------- onlyoffice/go.sum | 2 + onlyoffice/pkg/assets/embed.go | 4 +- onlyoffice/yarn.lock | 979 ++++++++++++++++----------------- settings/go.sum | 2 + settings/pkg/assets/embed.go | 6 +- settings/yarn.lock | 665 +++++++++++----------- 10 files changed, 1182 insertions(+), 1159 deletions(-) diff --git a/accounts/go.sum b/accounts/go.sum index 87d88f4d9a..5a39637f3c 100644 --- a/accounts/go.sum +++ b/accounts/go.sum @@ -230,6 +230,7 @@ github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4 github.com/fsouza/go-dockerclient v1.6.0/go.mod h1:YWwtNPuL4XTX1SKJQk86cWPmmqwx+4np9qfPbb+znGc= github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/gizak/termui/v3 v3.1.0 h1:ZZmVDgwHl7gR7elfKf1xc4IudXZ5qqfDh4wExk4Iajc= github.com/gizak/termui/v3 v3.1.0/go.mod h1:bXQEBkJpzxUAKf0+xq9MSWAvWZlE7c+aidmyFlkYTrY= github.com/gliderlabs/ssh v0.2.2 h1:6zsha5zo/TWhRhwqCD3+EarCAgZ2yN28ipRnGPnwkI0= github.com/gliderlabs/ssh v0.2.2/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0= @@ -436,6 +437,7 @@ github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfV github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/justinas/alice v1.2.0 h1:+MHSA/vccVCF4Uq37S42jwlkvI2Xzl7zTPCN5BnZNVo= github.com/justinas/alice v1.2.0/go.mod h1:fN5HRH/reO/zrUflLfTN43t3vXvKzvZIENsNEe7i7qA= +github.com/karrick/godirwalk v1.7.8 h1:VfG72pyIxgtC7+3X9CMHI0AOl4LwyRAg98WAgsvffi8= github.com/karrick/godirwalk v1.7.8/go.mod h1:2c9FRhkDxdIbgkOnCEvnSWs71Bhugbl46shStcFDJ34= github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd h1:Coekwdh0v2wtGp9Gmz1Ze3eVRAWJMLokvN3QjdzCHLY= github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= @@ -457,7 +459,9 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/labbsr0x/bindman-dns-webhook v1.0.2/go.mod h1:p6b+VCXIR8NYKpDr8/dg1HKfQoRHCdcsROXKvmoehKA= github.com/labbsr0x/goh v1.0.1/go.mod h1:8K2UhVoaWXcCU7Lxoa2omWnC8gyW8px7/lmO61c027w= +github.com/labstack/echo v3.2.1+incompatible h1:J2M7YArHx4gi8p/3fDw8tX19SXhBCoRpviyAZSN3I88= github.com/labstack/echo v3.2.1+incompatible/go.mod h1:0INS7j/VjnFxD4E2wkz67b8cVwCLbBmJyDaka6Cmk1s= +github.com/labstack/gommon v0.2.7 h1:2qOPq/twXDrQ6ooBGrn3mrmVOC+biLlatwgIu8lbzRM= github.com/labstack/gommon v0.2.7/go.mod h1:/tj9csK2iPSBvn+3NLM9e52usepMtrd5ilFYA+wQNJ4= github.com/lib/pq v1.3.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/linode/linodego v0.10.0/go.mod h1:cziNP7pbvE3mXIPneHj0oRY8L1WtGEIKlZ8LANE4eXA= @@ -471,12 +475,14 @@ github.com/marten-seemann/qpack v0.1.0/go.mod h1:LFt1NU/Ptjip0C2CPkhimBz5CGE3WGD github.com/marten-seemann/qtls v0.4.1/go.mod h1:pxVXcHHw1pNIt8Qo0pwSYQEoZ8yYOOPXTCZLQQunvRc= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= +github.com/mattn/go-colorable v0.1.7 h1:bQGKb3vps/j0E9GfJQ03JyhRuxsvdAanXlT9BTw3mdw= github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= +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-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= @@ -514,6 +520,7 @@ github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrk github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= github.com/mitchellh/go-vnc v0.0.0-20150629162542-723ed9867aed/go.mod h1:3rdaFaCv4AyBgu5ALFM0+tSuHrBh6v692nyQe3ikrq0= github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= +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/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= github.com/mitchellh/gox v1.0.1/go.mod h1:ED6BioOGXMswlXa2zxfh/xdd5QhwYliBFn9V18Ap4z4= @@ -559,6 +566,7 @@ github.com/nrdcg/auroradns v1.0.0/go.mod h1:6JPXKzIRzZzMqtTDgueIhTi6rFf1QvYE/Hzq github.com/nrdcg/dnspod-go v0.4.0/go.mod h1:vZSoFSFeQVm2gWLMkyX61LZ8HI3BaqtHZWgPTGKr6KQ= github.com/nrdcg/goinwx v0.6.1/go.mod h1:XPiut7enlbEdntAqalBIqcYcTEVhpv/dKWgDCX2SwKQ= github.com/nrdcg/namesilo v0.2.1/go.mod h1:lwMvfQTyYq+BbjJd30ylEG4GPSS6PII0Tia4rRpRiyw= +github.com/nsf/termbox-go v0.0.0-20190121233118-02980233997d h1:x3S6kxmy49zXVVyhcnrFqxvNVCBPb2KZ9hV2RBdS840= github.com/nsf/termbox-go v0.0.0-20190121233118-02980233997d/go.mod h1:IuKpRQcYE1Tfu+oAQqaLisqDeXgjyyltCfsaoYN18NQ= github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= github.com/oklog/run v1.1.0 h1:GEenZ1cK0+q0+wsJew9qUg/DyD8k3JzYsZAi5gYi2mA= @@ -754,7 +762,9 @@ github.com/uber/jaeger-client-go v2.25.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMW 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.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= +github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4 h1:gKMu1Bf6QINDnvyZuTaACm9ofY+PRh+5vFz4oxBZeF8= github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50wTf68f99/Zt14pr046Tgt3Lp2vLyFZKzbFXTOabXw= github.com/vimeo/go-util v1.2.0/go.mod h1:s13SMDTSO7AjH1nbgp707mfN5JFIWUFDU5MDDuRRtKs= github.com/vultr/govultr v0.1.4/go.mod h1:9H008Uxr/C4vFNGLqKx232C206GL0PBHzOP0809bGNA= diff --git a/accounts/package.json b/accounts/package.json index f8eff38c88..bdda0e8869 100644 --- a/accounts/package.json +++ b/accounts/package.json @@ -53,8 +53,8 @@ "ldap": "^0.7.1", "nightwatch": "^1.3.6", "nightwatch-api": "^3.0.1", - "node-fetch": "^2.6.1", "nightwatch-vrt": "^0.2.10", + "node-fetch": "^2.6.1", "qs": "^6.9.1", "rimraf": "^3.0.0", "rollup": "^1.28.0", diff --git a/accounts/pkg/assets/embed.go b/accounts/pkg/assets/embed.go index 32dc6f4bba..55ba76b146 100644 --- a/accounts/pkg/assets/embed.go +++ b/accounts/pkg/assets/embed.go @@ -1,5 +1,5 @@ -// Code generated by fileb0x at "2021-01-13 08:23:16.044077 +0100 CET m=+0.009014926" from config file "embed.yml" DO NOT EDIT. -// modification hash(c8fdaaee3828640ec93899c4406b029b.8058aec596c5fb73022d09bb97af796e) +// Code generated by fileb0x at "2021-01-29 13:28:09.383372 +0100 CET m=+0.008586624" from config file "embed.yml" DO NOT EDIT. +// modification hash(ddfc0130f69643693de7e74514aa65c7.8058aec596c5fb73022d09bb97af796e) package assets @@ -36,7 +36,7 @@ type HTTPFS struct { } // FileAccountsJs is "accounts.js" -var FileAccountsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xeb\x72\xdb\x38\xb7\x28\xf8\x7b\xf6\x53\x48\xdc\xfd\x71\x03\xad\x65\x45\x4a\xfa\x4a\x05\xad\xcf\x49\x9c\x74\xba\x93\x38\x6d\x3b\xe9\x8b\x5a\xdb\x45\x53\x90\x8d\x58\x02\x14\x10\xf2\x25\x12\xe7\x7d\xe6\x35\xe6\xc9\xa6\x70\x23\x41\x8a\x4a\xf7\xb7\xcf\x3e\xa7\xce\xd4\x4c\x95\xcb\x22\x41\x5c\x17\x80\x75\xc3\x5a\x0b\x33\x3a\x67\x9c\x22\x34\x5f\xf3\x4c\x31\xc1\x11\xde\x44\xeb\x9c\x76\x72\x25\x59\xa6\xa2\xd1\x4d\x2a\x3b\x8a\x44\x6b\x6e\x33\xce\xa2\x2e\x51\xf7\x2b\x2a\xe6\x9d\xcb\x85\xb8\x48\x17\x67\x57\x2c\x1f\x57\x8f\x49\x5b\xce\x5b\xc6\x67\xe2\x76\x6c\x7f\x5a\x73\xd8\x0a\x5c\x3d\xad\x39\x72\xba\x98\x8f\xf5\xbf\x64\x53\x8c\x7c\x67\x3b\x14\x29\xa0\x78\x23\xa9\x5a\x4b\xde\x51\x88\x92\x0d\xbd\x5b\x09\xa9\xf2\x64\x53\x14\x40\xfb\xee\x0d\x57\x8f\x85\x1e\x11\x27\xe1\x90\x15\xde\xe8\x44\x4a\x76\x53\x8e\x2f\x3e\xd0\x4c\xf5\x57\x52\x28\xa1\x7b\x02\x9c\xd0\xfe\x55\x9a\x1f\xdf\xf2\xb7\x52\xac\xa8\x54\xf7\x20\x49\xe4\x0b\x46\xc4\xf7\xf7\xf4\x7e\x79\x21\x16\x63\xfb\x93\x6c\x0a\x10\x44\xf6\x99\xa2\x32\x55\x42\x6e\xb7\xd1\x3f\xff\xe9\x5f\x22\x60\x44\xf6\xd3\xfc\x9e\x67\x2f\xc3\xef\xb5\x94\x08\x52\x22\xfb\x4a\x9c\x2a\xc9\xf8\xe5\x59\x7a\x69\xb2\x04\xef\x51\x05\x94\x4c\x03\x05\x78\x09\x16\x37\x06\x0b\x52\xdf\x6b\x93\x67\x73\x93\x2e\xd6\x34\xe1\x40\xf9\x7a\x49\x65\x7a\xb1\xa0\x49\x77\x00\x99\xe0\x73\x76\xb9\x2e\xdf\x6f\x25\x53\xee\xb9\xc0\xa0\x26\x74\x5a\x28\x79\xbf\xc9\xd0\xa6\x80\x28\xc2\x45\x96\xaa\xec\x4a\xc3\x2c\x0b\x20\x58\xeb\x82\x2e\x43\x78\x51\x94\x7d\xcc\x6d\x06\x90\x16\xd0\x82\xd0\x38\xa6\x15\x98\x3b\x8c\xe7\x2a\xe5\x99\x86\xe4\x7c\x4c\x93\x39\x30\x3f\x15\x99\xa4\xa9\xa2\x48\x54\x99\x31\xa4\x84\xd3\xdb\xce\x11\x92\xdb\xed\x64\x8a\x47\xae\x51\xd6\x3f\x67\xfc\x46\x5c\xd3\x9d\x5e\xe9\x26\x25\x89\xf2\x75\xbe\xa2\x7c\x46\x67\xa7\x2a\x95\x2a\xf2\xe5\xca\xdc\x02\x18\xde\xb0\x39\x8a\xe8\x1d\xcd\xd6\x8a\xf1\xcb\x88\x10\x22\xb1\xba\x92\xe2\xb6\x63\x9a\x94\x52\x48\x14\xbd\xa0\xdc\x4e\x53\x87\xe5\x9d\x74\x21\x69\x3a\xbb\xef\xc8\x35\xe7\xba\x08\x1e\xe9\x2a\x32\xb1\x5c\x2d\xa8\xa2\x33\x5b\x85\xa9\xd6\xd4\xa3\xdf\x85\xab\x92\xf9\x2e\x9c\x22\x5c\xcc\x85\x44\xbc\xbf\xa4\xea\x4a\xcc\x88\x00\xde\x4f\xe5\x25\x61\xa3\x91\xed\x7e\x4a\x78\x7f\x46\x17\xf4\x32\x55\x54\x37\x90\xda\xe4\x8c\xdc\xa2\x14\xb8\x69\x33\x33\xad\x64\x84\x90\x05\xce\x04\x57\x8c\xaf\xa9\x6f\x20\x2b\x0a\xdd\x03\x4e\xef\x94\xee\x80\x6f\x07\xf3\x7e\x4e\xb9\x22\xbc\x7f\xee\x7e\x53\x79\x39\xa2\x8b\x9c\x76\x6a\x1d\x2e\xf3\x9b\x71\x34\xe0\x18\xc0\x48\x92\x60\xe0\x76\x08\x23\xde\x9f\xb1\x7c\xa5\x97\xcc\xd1\x5d\x46\x57\x06\xd2\xe6\x0b\x2e\x74\x43\x91\xed\x61\xd8\x4a\x1c\xf3\x7e\x7a\x21\xd7\x2b\x85\xfc\x57\x5b\x17\x1e\x49\x12\x4c\x8e\x41\x56\x39\x59\xbb\x69\x36\x70\xe7\x42\x2e\xd3\x85\xae\x2d\xef\x9b\xc5\xa2\x7b\x2c\x35\xf0\x04\xa7\xe3\xa0\x77\x49\x35\x8c\xdf\x19\x5d\xcc\x22\xc8\x0d\xc4\x5b\xa0\xe7\xb6\x8d\xf9\x0e\xba\x9e\xc4\x56\x57\x14\x15\x84\x6c\x6b\x71\x8c\x9a\x20\x70\x13\xea\x72\xba\x69\xcd\xed\xf8\x8b\x02\x29\xe0\x90\x62\x60\xd5\x56\xf1\xc3\xd9\xe8\x3d\xe7\x3a\xa0\xeb\x4e\xfc\xd8\x20\x95\x97\x89\xea\x67\xe9\x62\x81\x74\xc6\xa2\xda\x90\xb5\xec\xae\x45\x93\xbb\x28\x0a\xd5\xbf\x95\xe9\x8a\xe4\x06\x6a\x0b\x12\xa2\xd5\x39\xc2\x9b\xaa\x03\xb3\xda\xdb\x4a\xbf\xe9\x22\x57\xba\xc8\xd5\x44\x4c\x49\x40\x3b\xfc\x7e\xbf\x62\x79\x61\x2a\x5e\xfa\x7d\x7b\x49\xd5\x5b\xbf\x63\x8f\xe7\x70\x43\x96\x71\xbc\x44\x4b\x74\x8c\x26\x53\x8c\xf1\xe8\x26\x8e\x6f\xba\x44\xe3\x01\x6e\x87\x72\x03\x02\xc7\x31\xba\x22\x37\xd8\xd4\x74\x49\x56\xd5\x9e\x27\xf3\xe0\xb9\x8e\x19\xae\x70\x35\x90\x7b\x0d\x84\x89\x5d\xe6\xe0\x01\xe0\xd7\xd0\xb4\x3f\x17\xf2\x28\xcd\xae\x02\x52\x40\xf1\xc6\xa2\xcf\x1a\x75\x08\x46\xe5\x71\x0a\xa2\xa0\x70\x81\xcd\x5f\xd9\xdc\x85\x25\x47\x06\xbd\x8c\xc2\xdc\xa4\x8e\x53\xca\x02\x69\x05\x32\x8d\x4e\x42\xa2\x24\x21\xc5\x9b\x6e\x99\x53\xea\x92\x90\x42\x66\xab\x37\xab\x7c\x22\xa6\xa0\x80\xd9\x85\x6e\x07\xd7\xad\xd6\xb9\x9d\x56\xbb\x48\xe7\x64\xd1\x37\x8b\xb6\xc4\x71\x71\x1c\x09\x03\xb6\x8a\x64\xcd\x4b\xd0\xcf\x21\x3a\x3f\x4f\x6f\x53\xa6\x22\x3c\xa6\x7d\x49\x73\xb1\xb8\xa1\x68\xde\x77\xa9\xb8\xaf\xae\x28\xaf\x53\x50\xe9\xb0\x09\x28\xd3\xcb\x02\x43\xf3\xb3\x03\xbf\xff\x8e\x93\xa0\xe6\xb6\x1a\x5d\x97\x89\x82\x14\x2d\x76\x2b\xb4\x03\x69\xa9\xb7\xc8\x90\xdb\x4f\x06\x66\x1a\x90\x3a\xd5\x17\x20\x72\x2c\x6d\x6b\x29\xa4\x38\x49\x11\x0e\xe8\xd2\x6d\x35\x83\x9c\xa8\x92\x60\x4f\xa8\xdb\xb7\x53\x0d\xeb\x1b\xc1\x66\x9d\x81\x46\x50\x06\x9b\xd0\x12\x11\x13\xbe\x5e\x2c\xa0\x42\x02\x34\x44\x93\x55\x6d\x7d\xdb\x95\x38\x46\xb4\x44\x07\x1e\xaf\x51\x83\x0f\x6c\x0b\x60\x7b\xd3\x56\x21\x76\xa3\x59\x8c\x68\x13\xa3\xd8\x1a\xf4\x72\x3a\xbb\x5f\x51\x47\xa1\xce\xae\x68\xc7\x37\xdf\x99\x09\x9a\x77\xb8\x50\x9d\x95\x14\x37\x6c\x46\x3b\x69\xe7\x3f\x4c\xe1\xff\xe8\xd8\xba\xa2\x12\x5a\x8b\xc2\xd2\xca\x35\xe2\x50\x0d\xc0\xb6\x11\xae\x3b\x8d\xf3\xed\xba\x73\x05\xf7\x74\x4b\x9a\xe5\xd8\x84\xd8\x62\x64\x99\x00\xf3\xd5\x2f\x51\x31\x16\x16\x49\x23\x3a\x51\x7a\xa5\xac\x17\xea\x4d\xba\xa4\x53\x22\xec\xc2\x00\xda\xd7\x2b\x8e\x28\xf3\xf3\x4a\x64\xe5\xce\xee\x56\x90\xaa\x01\xd9\x2e\xd0\x10\xc4\x78\xb7\x2f\x38\x11\x09\xfa\x7b\x50\x2d\x21\x6a\x7b\xa7\xa9\xbf\x06\x6b\xca\x3b\x6e\x6f\xb5\x55\x5f\x2d\xb6\xc3\x8a\xcf\xd4\xc8\xfd\x95\xc8\x12\x35\x19\x4c\x8b\xd1\xb0\xc3\x78\x47\x99\xae\x1b\x54\xfe\x4a\x64\x44\x4d\x86\x53\x0c\x0f\xab\x2f\x73\xc6\xd3\xc5\xe2\xde\x7e\x7b\x38\xd5\x3d\x9c\x2b\x2a\xed\xfb\xa3\x29\x06\x83\x80\x94\xbc\x3f\xe2\x4a\x32\x9a\xf7\x57\xeb\xfc\x0a\xd1\xa0\xfd\xbb\xaa\x7d\xd5\x77\x44\x8a\x09\xbe\xdd\x6e\x8a\x11\x35\xb3\x49\x4a\x1a\xa3\x47\xa1\x68\xc7\x80\x01\xc2\xdc\x84\x56\x15\x1e\xe9\x0a\x1b\xcd\x92\x89\x1f\x5b\x24\x85\x50\x51\x31\x05\x55\x22\xde\x43\xd3\x49\xd7\x55\x49\x73\xaa\x50\x77\x10\xf4\xf0\x58\x57\xa8\xf7\x4e\xd9\xcf\x89\x30\x5b\x30\x58\x67\x06\x63\x29\xbb\x18\x77\xf9\x70\xbb\x38\x7c\x6e\xa5\x73\x75\x59\xfe\x26\x7d\x83\x54\x7f\x41\xf9\xa5\xba\xc2\x9e\x1f\x3c\x18\x02\x23\x81\x68\x81\x37\x9a\x05\x1b\xf5\x7a\xf2\xb1\xcf\x3b\xc2\x6c\x8e\x1c\x92\x54\x20\x71\xd5\x0b\x87\xaa\x26\x52\x4f\x84\x5e\xb6\xa4\x3b\x84\x12\xdd\xfa\xef\x6e\x5f\xfb\x1c\x03\xa0\x45\xc5\xad\x9a\xc5\xcc\x0a\xb7\xf5\x36\xfa\x35\x39\x0d\x70\xd3\x69\x49\x2c\x1c\x03\xe2\x6a\x33\x1c\x48\x77\xe0\x0b\x76\x66\x01\x69\xbc\xec\x67\x82\xe7\x4a\xae\x33\x25\x24\x59\xc1\xaa\xf6\x3e\x83\x99\x61\xc6\x16\xe9\xbd\xde\x59\x24\x43\x2b\x48\xa1\x62\x67\x9f\x7b\x70\x62\xbd\xf9\xf3\x9d\xf4\x16\x81\xa9\x6d\x0a\xe2\x58\x85\xcd\xba\x11\x77\xbb\x9a\x3d\xa2\x84\x90\xd9\x76\xdb\xd2\x26\x21\x44\xa3\xd6\xaa\x7b\xdb\x2d\xed\xf3\x74\x49\x31\x2e\x40\xf5\x97\xa9\xbc\x26\x2d\x04\xc1\x31\x03\x79\x8d\xdd\x18\xb7\xa6\x22\x05\x2b\x9c\x20\xd5\x3f\x3f\x37\x10\x3b\x3f\x27\x2b\xd0\xe4\xbf\x1d\x06\x1a\x08\xfb\x98\x8e\x4b\x0c\x4a\xf7\x2a\x35\x3c\xd5\x6e\xb7\x36\x8e\x72\x6a\xce\x0b\xee\xd1\x45\x28\xbd\x04\x2f\x13\xb6\x97\x9b\x02\xd5\x3f\x0c\x25\x42\x72\xa1\x9b\xd3\x29\x55\x09\x23\x51\x81\x61\x31\x4a\x1a\xc5\xe2\x18\x31\xf2\x56\x8a\x25\xcb\xa9\xe5\xa4\xac\xb8\x74\x81\x72\x5f\x00\x6b\x26\xc2\x37\xd6\x36\xd1\x88\xe3\x71\x9a\xa4\x66\x89\xa2\x56\xea\xef\x0b\x1b\x8c\xad\xec\x72\x2f\x0b\x68\xf2\x0b\xf7\x1a\x48\x19\xba\xac\x41\x37\xc2\x70\xf9\x19\x16\x12\x2e\x4b\x99\x77\x37\x4b\x34\xb1\x58\xb6\x53\xd6\x36\x8d\x34\x98\xae\xe9\x7d\xde\xb2\x32\x27\xd3\x91\xde\xcf\x86\xb4\x1b\x2c\x8a\xa9\x45\x89\x1c\x57\xdb\x54\xd2\x1b\x2a\x73\x8a\x30\x94\xdb\x8e\x7b\x44\x40\x4b\x24\xe0\x10\x06\xed\xaf\xc4\x0a\x19\xcc\x23\x6d\x8d\x9e\x97\x73\xdb\x5d\x02\x2f\x71\x01\x2f\xca\x8f\x7e\xf3\xf3\x42\x77\xd7\x64\xcd\xc9\x31\x1c\x05\xab\x6b\x13\xec\x97\xe4\x08\x0c\x6a\x4c\xc2\x31\x69\xa4\xa8\x91\xe6\x4a\xd2\x1b\x32\xb0\x08\xd4\x20\x10\xf7\x6c\xc4\x37\xcb\x82\x9a\x47\x87\x2b\x4c\x8a\xef\x92\x7d\xa9\x91\x27\x93\x54\x27\x97\x26\x29\x60\x4a\x9a\x64\xc5\xe3\xf2\x3b\x0c\x5d\x85\x3d\x88\xa9\x01\x88\x46\xee\x91\xb2\x9c\x4b\x76\x95\xca\x43\x85\x06\xb8\x64\x33\xf5\x67\xa0\x38\x8e\x1d\x46\xee\xd1\x7e\xbe\x60\x19\x45\x43\xac\x39\x7f\xfd\x79\x42\xa7\x9e\x52\x17\x90\x2b\xb1\x4a\x82\x65\x10\x0c\x66\xe0\x14\x55\x8d\xce\x4d\x06\xd3\x80\x54\xd5\xf9\x15\x65\xf9\x15\x2b\xa8\xaa\x90\xf3\xb0\xd4\xe8\x26\x5d\x14\xb0\x23\xaa\xb6\x4e\x82\xee\x83\xaf\x68\xe4\x08\xd5\x15\xcb\x47\x01\xf7\x6e\x54\x1d\xae\xfe\xd4\xd1\x56\x2f\x90\x19\xe8\x2a\xcf\xce\x70\x90\x7f\xc9\xb4\x74\xbb\xb2\xf0\x90\x16\xcd\x41\xbb\x65\x7a\x30\x1c\x89\x1f\xc8\x60\x74\x70\x20\xec\x82\x65\x3b\xd0\x11\x53\x48\x09\x6b\x42\xc8\x90\x69\x8d\x39\xfa\x96\x70\xe3\x8a\xd5\xa6\x7c\x66\xf5\x19\xfe\xdb\x63\x52\xae\x42\xaf\x80\x70\x93\xcb\x20\xf2\xbc\x4b\x84\x21\x0f\x92\x2b\xc6\xc5\xd6\x95\xc5\x71\x5e\x5f\xd0\x8f\x59\xc9\xf7\x54\x8d\x57\x69\xd0\x1d\x98\x82\x61\xfe\xaa\xd2\xb0\x44\x90\x5a\x78\x2d\x46\xf6\x2f\xb7\x65\x8a\xea\x42\xdd\x7c\x57\xf7\xa3\xe4\x7d\x27\x57\xa9\xa2\x4b\xca\x55\xe7\x96\xa9\x2b\xb1\x56\x1d\x53\xbc\x23\x64\xc7\xf5\x20\xfa\x2f\x74\xb8\x28\x0a\xb0\x6a\x8f\x24\x54\x60\x59\x6c\x64\x31\xd0\xde\x99\x97\x76\xe6\x4b\xf5\x5a\x73\xe6\xa5\xe1\xa2\xc4\xee\x2c\x96\x9b\x53\xd4\x27\x2a\x8e\xab\xce\x8b\xb0\x9b\x6e\x69\x89\xd1\x85\xa4\xe9\x75\x51\x68\x7a\x13\x99\x67\xb3\xc9\xb6\xdb\xc8\x6b\x4f\xcc\x3b\x8e\xe3\x6a\xed\xd0\x38\xa6\x8f\x49\x38\x6a\x43\xac\x34\x26\xf2\x94\x8a\x8d\xc3\xf5\x99\x6c\x4a\x7e\xc9\x6d\x22\xe5\xb6\x0f\x05\x36\x46\xfb\xb0\x97\xe5\xac\x82\x66\x34\x97\x6f\xbe\x78\xd5\x0c\x4a\x71\x01\xfe\xa5\x01\xee\xbf\x87\x35\x82\x31\x9b\x2c\xcd\x81\x9b\xc4\x71\xd5\x1d\x53\x36\x09\xb4\x5d\x2e\x07\x2a\xb1\x0f\x29\x31\xaf\xb2\x5c\x77\x38\x3a\x2f\x2f\x56\x15\xda\xcd\x99\x04\x1a\x2f\xe5\x74\x50\xd4\x21\x53\x9b\x8f\x62\x58\x14\x30\x67\x9c\xe5\x57\x35\x6c\x56\xa2\xee\xfd\xcb\x8a\xda\x65\x55\x49\xc8\x8d\x65\x45\xcd\xb2\xe2\xa1\x6c\xa2\xe7\x3c\xc4\xab\x25\xc4\x79\x30\xaf\xc0\x4b\xe1\x05\xc3\x1d\xe2\xba\x8b\x05\x98\x4d\xf4\x3f\xab\x8b\x76\x0d\x9a\xee\x39\x72\xce\xf7\x92\x0a\x19\xa8\x54\xbc\x94\xaa\x7b\xe9\x49\xba\x28\x8a\x1d\xbc\xc0\x16\x9a\xae\x2e\x1c\x26\x48\x95\xa2\xcb\x95\x8a\x70\x01\x9e\xe0\x1a\x2d\x63\xb2\x4f\x61\x5e\x23\xcd\x1b\x2f\x68\x26\x5a\x20\x82\x4a\x16\x4e\x28\x38\xd9\x37\xe1\x05\x94\xea\xdc\x60\xa5\xf8\xa9\x0f\xa9\x87\x86\xad\x2a\x90\x2a\x4f\x47\x46\x56\xb5\x78\xe9\xf9\xa8\x93\x35\x57\x6c\x49\x09\xad\x34\x89\x25\x27\x18\x49\xa3\x41\x6b\xe6\xed\x90\x8e\x8c\xb0\x16\x2f\x0b\x6c\xf7\xae\xdc\x77\x18\x60\x59\x83\xf1\x7f\xef\xb1\x44\x62\x8f\x18\x34\x17\x2e\x3e\x73\x5c\xf5\xf7\x8e\x98\xfe\xfa\x10\x6b\x63\xb5\x9b\x8c\xa0\xbf\xce\x6b\xc1\xde\x25\x44\x8c\x45\xb2\x29\x70\xff\xfc\xfc\xfd\xbb\xa3\xf3\x67\x47\xef\xcf\x8e\x8f\x5f\x9d\x9e\xbf\x78\x75\xfc\xe4\xf0\xd5\xf9\x8f\xc7\xc7\x3f\x9f\x9f\x8f\x02\xdd\xa0\xc1\x3e\x0e\x4c\x9a\xa9\x45\x0a\xb7\xa8\x2c\x03\xc0\x22\x35\xe1\x53\xe0\x75\xa5\x64\x16\xf0\xe7\x1a\xb3\x76\x09\x51\x2d\xda\x3f\x55\x58\xbd\x62\x1d\xf7\x59\x64\xe4\x97\x83\xc5\x36\xe7\xd9\x15\x5b\xcc\x24\xe5\x0d\x19\xc8\xa0\x6d\x97\x45\xa6\xb7\xaf\xc5\x6c\xbd\xa0\xc4\x32\x44\x9c\xa8\xbe\xa1\x92\x56\x2d\x6a\x1e\x49\x9b\xbc\xce\xc7\x1c\xe1\x84\xe3\xed\x76\x53\x14\xb0\x26\x1b\x2d\xf1\xe5\xab\x34\xa3\xb3\x64\xd3\x58\x01\x45\x31\x5a\xf7\xab\xef\xfd\x4b\xaa\x76\xa5\x84\x6e\xb7\xd1\xa3\xa0\x44\x01\x79\xc5\x73\xf7\xd3\xd9\xec\xa9\x1e\x59\x1b\x08\xca\x31\x4f\xd4\x94\xd0\x7a\x39\x49\x97\xe2\x86\x36\x8b\xe2\x8d\x53\x99\xec\x94\xaf\x97\xbe\xa4\x6a\xb7\x68\x4d\xe1\xbc\xb7\xe8\x55\x9a\xef\x2f\xea\xf9\xef\xaa\x7c\xbd\xf0\x7a\x35\xd3\x73\x10\x16\xdd\x0f\x28\xa2\x82\x17\x2d\x77\x9a\x32\xb9\x47\x2e\x41\x19\xf7\x85\x94\x79\xb4\xd4\xbc\x5c\xab\x74\x5f\x81\xf2\x1b\x09\xf2\xe9\x42\x97\x54\x29\x2a\xdb\x8a\xb8\x2f\xa4\xcc\x83\xeb\x43\x73\x7b\x64\x17\x36\x29\xaa\x43\x04\x54\x7b\xc9\x17\xa6\xda\xcf\xc2\xa6\xec\x5d\xba\xaf\x7b\xfb\x2a\x3f\xdc\x55\x9d\xec\x01\x62\x5b\xe5\xee\xd3\xbe\xca\x5f\x3b\x08\x7e\xb6\xfa\x60\x3a\x76\x1b\x28\x3f\x9a\x26\xda\x90\x34\xa3\x39\x0a\x9a\x86\xb5\xc5\xf7\x0b\x98\xef\xb6\x2a\xe9\x25\xcb\x15\x95\x68\x32\x05\x05\xdd\x21\x2e\x46\xf3\xfa\xe2\x6f\x5d\xbc\x7d\x49\x67\xeb\xac\x76\x46\x1f\x9e\xf3\x97\x9b\x46\xd3\x1b\xaf\x3d\x14\x42\x77\xb8\x51\xfb\x1b\xbf\x6a\x5b\x14\x02\x65\xb1\xd1\xe7\x9a\x0d\x68\x72\x0f\x21\x4a\xaa\x1d\x8b\x38\xc6\xc1\xb6\x18\xf3\x5e\xf4\x20\x4a\xa2\x48\x77\x49\xff\xaf\xf5\xa5\x65\xbb\x55\x87\x3b\x0a\xb9\xb3\x70\xc3\x99\xd8\xac\x48\x62\x90\xfd\xa5\x99\x94\xbc\x14\xab\x85\xde\xd6\x55\xb2\x11\x4a\x78\xd5\x23\xe1\x35\x92\x23\x85\x68\x3f\x13\x3c\x4b\x15\x12\x18\x6a\x59\xaa\x6a\x27\x62\x8a\x8b\xc2\xcc\x8d\x87\x05\x34\x81\xe8\x67\x70\xcf\x21\xba\x91\x73\xab\x03\x91\x38\x46\x9c\x68\xf1\xcc\xb2\x4a\x9a\x1f\x32\x5a\x26\x3c\x1a\x18\x86\xd4\xb2\x69\xe3\xb2\x39\x22\x2c\x1f\x7e\x49\x15\x52\x4e\xfa\x1f\xc0\xc1\x10\xe3\x12\x1d\x23\x35\x51\x25\x7b\x37\x05\x81\x47\xd4\xf7\x5f\xaf\xdf\xf2\x25\x38\x1e\xa2\x20\xf0\x46\x56\x8b\x4f\x05\xa0\xa0\x8e\x3e\xd6\x67\x87\xb7\x0c\xb3\xb6\x4e\x76\x3b\x08\x9c\xd4\x7b\x26\xeb\x6b\x63\x24\xe3\x58\x7a\xda\x19\xc7\x35\x3a\xa1\x79\xc7\x5a\x07\x58\x7e\xe2\x3a\x40\x67\xff\xf5\x2e\x84\x9a\xd5\x8a\x3c\xe8\xc6\xcc\x7c\xec\xab\xb9\x9a\x3f\xa5\xb1\x2d\xd9\x14\x18\xba\x8b\x38\xde\xcf\xda\xc4\xb1\xfd\xed\xbf\x5f\xd3\x38\x6e\xa8\x44\x16\x71\xac\xcc\xb1\xb9\x5b\x8a\xdd\x7f\x7b\xf0\x65\xf7\xdf\xfe\x8f\xce\x97\x9d\x9b\x35\xbd\xeb\xdc\x3c\xea\x7f\xd3\x1f\x98\x77\x94\xe1\xce\xc3\xc1\xc3\x41\xe7\xe8\x26\xe5\x9d\xdf\xc5\xda\xa4\xfe\x53\x8f\x90\xe7\xb4\xf3\xfa\xe5\x99\x4e\x78\xf0\x6f\x8d\x06\xde\xac\x97\x17\x66\x56\x6f\xa8\xcc\x99\xe0\xfd\x7c\xb5\x60\x0a\x45\xfd\x08\x4f\x06\x53\xfc\x03\x79\x88\x55\x7f\xc9\xee\x18\x47\x9b\x0b\x3a\x17\x92\x3e\x35\x1c\x4a\xc2\x0b\x6c\x8c\x19\xca\x43\x8f\x6a\x02\xce\x19\x67\x6a\xb4\x93\x52\x87\xd8\x2e\x98\x54\xdf\xe4\xb2\x3f\xe3\x09\x9f\xfa\x95\x66\x53\xb0\x66\x62\x03\x65\x97\x0a\xcf\x1a\x35\x8f\x12\x68\xad\xbe\x10\x46\xc1\x94\x8f\x34\xa7\x24\xa4\x93\x15\xbf\x30\xcf\xad\x6a\x75\x9f\xcd\xfe\x22\x9c\xb8\xa7\x44\xf5\x57\xa9\xa4\xdc\xe8\xdd\xed\x93\xab\xc6\xd3\x52\x57\x69\xe3\xab\x46\x05\x0b\xa2\x70\x81\xaa\xc9\xc5\x25\xf7\xb6\x5a\xac\x2f\x19\xdf\xd9\xeb\x93\xa9\xe7\xf6\x75\xeb\x92\x65\xaa\xca\x21\x8d\xf9\x43\x77\xe8\x99\xc2\x4c\x2c\x97\x4c\x29\xc6\x2f\x4b\xed\xe3\xb9\xe7\x17\xf6\xb3\x92\x36\xc7\xe9\xfa\x22\xcf\x24\xbb\xd0\x74\xdf\xe3\xab\xf3\x8a\x77\xd8\x5f\xfc\x56\xa6\xab\x15\x9d\xbd\x70\x3c\xc3\xfe\x8c\x0e\x8d\x18\x9c\x35\xd7\x62\x56\x2d\xb9\x24\x24\xaf\xd3\xd5\x67\x2a\xc9\xdb\xba\x79\xab\x85\x28\x2a\xdf\xbf\x36\x75\x2f\x7c\xc5\xe9\x35\x7d\x25\xb2\x74\xe1\xba\xf6\x34\xcd\xae\x9a\xc7\x0a\x95\x26\xc4\xaa\x70\x20\xb5\x6b\xc5\xab\x25\x21\x23\x5e\xa8\x5e\xea\xe5\x1b\x7e\x23\xad\xb4\x33\xf5\xda\x1d\x9d\x58\x40\x50\x7a\x9f\xb8\x96\x05\x25\x34\xee\x74\xfa\x65\x33\xd7\x44\x3a\x9b\x9b\x1a\xac\x0c\x66\x77\xec\xfe\xa5\x5d\xf8\x39\x54\x93\x16\x64\xc2\x70\xe3\xbe\x6b\x1a\xb5\x2b\xdb\xa8\xd0\xb6\x4f\xa3\x6d\x40\xa5\x34\xa5\xb9\x92\x1b\x25\xc4\x22\x1f\x57\x8f\xc9\xa2\x6f\x85\x84\x32\x05\x37\xf0\x93\xde\x03\xfd\x73\xf7\xf5\x47\x21\xae\x09\x03\xd6\xa7\x4b\x8d\x40\x34\x7e\x4a\xf4\xbe\x8d\x40\x61\x60\x7d\x2d\xee\x9a\x34\x25\xd3\x1b\xba\x38\x50\xe2\xc0\x8c\x2a\x82\x9a\xc5\x88\xe6\x1b\x56\x8b\x34\xa3\xa7\xfa\xa3\xeb\xa8\xea\x97\x6b\xa1\xc9\xc6\xd4\x9a\xf3\x6b\x38\xb2\x33\x82\x61\xb3\x92\x74\x45\xf9\xcc\x59\xdb\x55\xd5\x58\xc6\xf1\xb3\x95\xd9\xbd\xd2\x5e\x15\x2e\x0c\xa8\x71\x01\x2b\xb2\x31\xc3\x68\x13\xa8\x4a\xec\x74\xd5\x94\xda\xfb\x8c\xcf\xe8\xdd\xb1\xde\x1a\x8f\x07\x7a\xef\xc7\x31\xef\xbb\x06\xc6\x9a\x84\xe6\x57\x6c\xae\x90\xc2\x89\x3b\x57\x51\xb8\x3a\x45\x41\x5e\x1d\x13\x56\x33\xe2\x3f\x1c\x0c\x35\xa5\xd2\xf8\x3b\xa3\x88\xc3\x30\xc4\x8f\x4b\x27\x7f\xfd\x05\x92\xf8\x4b\x34\xf0\xf7\x70\xc0\xdf\xde\xe9\x0d\x79\xf6\xd2\x98\x6c\xe9\xd5\x5d\x5f\xda\xd0\x1d\x98\xd5\x0d\x1c\xc2\x33\xf7\x9b\x06\xfb\xd4\x3f\xbf\x59\x8e\x4a\x41\x86\x6c\x0a\x53\xcf\xbf\x8a\x1a\x9a\x43\x04\x46\x36\xc5\x28\x45\xa2\xc6\x14\x71\xbc\x61\x13\x3e\x6d\x47\x0c\x2d\x27\x70\x46\x9b\x63\x0c\x9d\x5a\xe5\x80\x7b\x54\xf6\x1b\x38\x6c\x2e\xc3\x13\xaa\x80\x57\x3f\xbf\x59\x4e\xf8\xb4\xa8\x2b\x73\x0a\xec\xd5\x44\x19\x29\xb7\x6c\xce\x16\x94\xab\x51\xe3\x9d\x74\x07\x60\x6a\xb1\xd8\x13\x6d\x66\xa9\x4a\x93\xcd\x17\x5f\xd8\x35\x4c\xad\xde\x76\xad\xe8\x2c\x61\x05\x86\x66\xe9\x0c\x3c\x61\xaa\x23\x02\x53\x65\xff\x0b\x83\x9b\x6b\xe6\xcf\x35\xd9\x5b\xb7\xd5\x77\x4d\xd5\x2c\x90\xb0\xa6\xfe\x9b\x19\xa5\xab\xa4\x3b\x80\xfc\x9e\x67\x76\x54\x46\x3f\x67\x77\x87\x9e\x15\xa6\xae\x9e\x1a\xec\x5a\x6f\xa2\x5e\xb1\x51\x78\x6b\x9c\xb1\x30\x1a\xda\x33\x96\x5d\xb7\xf5\x48\xf6\xbf\x98\xd1\x5c\x49\x71\x6f\x4e\x54\x83\x45\x75\xe9\xad\x69\xa1\x3c\xea\xe9\x72\xc7\x16\x6a\x92\x51\xad\xcc\x50\x24\x42\xd6\x44\x52\x06\x32\x8c\x45\x8e\x2d\x1b\x61\x92\x4e\xf7\x6c\x91\x49\x3a\x25\x12\x43\x97\xc5\x71\x57\xf8\x33\xa0\x7b\xbd\xda\xea\xac\x6a\x4e\xf8\x84\x07\xac\xea\x7e\xe8\x2c\xfa\x39\x55\x28\x83\x1c\xa4\xdd\x63\x86\x5f\xd7\x15\xaf\x89\xd4\xb3\xab\xe8\xdd\x2e\xb5\x72\x36\xbd\xe6\xac\x11\x04\xd9\x78\x32\x98\x48\x4d\x1e\xfc\x4b\xa5\x35\x0b\x81\x75\xe1\x5e\xcd\x69\xd8\x2a\xbd\x5f\x88\x74\x06\x19\x61\x7d\xc7\x92\x41\x4e\x98\x51\x01\x97\xe6\xb3\x71\x9c\x99\x5d\xbe\xdd\xa2\x9c\xd0\x9e\x51\x58\xf8\x46\x50\x0e\xee\x34\x61\xc9\x94\x69\xde\x3d\xfe\x8f\x36\xde\xda\xaa\xad\x5b\xb7\x09\x19\x2e\xca\xe3\x91\x7d\x82\xbb\x30\x1b\x55\xef\xd9\xc4\xec\x58\x39\x6e\xdb\xb3\x2e\x4b\xd1\xb2\xa1\x77\xce\x46\xba\xfb\x10\xd6\x84\x4e\x3d\xd6\xdf\x14\x46\x3a\x72\xe7\xe7\x35\x95\x66\xa9\xc3\x69\x21\xff\xc2\x34\x20\xca\x85\x24\xb1\x9e\xdd\xf2\xc8\xc9\xa5\x4b\x3c\x6a\x47\x4f\x1c\xd8\x7e\xb4\xe4\x9a\x9d\x88\x16\xd4\x64\xe9\xf7\xde\x51\x91\xf2\x2c\xff\x33\x99\x0a\x03\xa0\xa2\x00\x47\x6a\xdb\xfb\xa1\x71\xa8\xc9\x60\xec\x76\x0b\x0c\xa2\x30\xf6\x27\x5a\x7c\x6c\xea\x74\x50\x03\x97\x77\xeb\x5b\x00\x24\xde\xa0\x90\x1a\x4e\xe8\x74\xbb\x6d\xa6\x68\x86\x1d\x5b\xfa\x5c\xe3\x61\x2a\xa3\x26\xd7\x1f\xbb\xeb\x74\x67\x7a\x1c\x28\xac\x0d\x53\x23\xeb\x4a\xac\x66\x8f\xbc\x59\x84\x5e\xa3\x63\x9e\xe8\x92\xc2\xf8\x4b\xf0\xd9\x82\xca\xed\x96\x8e\xf6\xf4\xd9\x11\xf8\xb2\xc7\xd5\xfb\xbe\xfe\x1a\xc2\x07\x8c\x94\xfd\x0e\x36\x7c\xc0\x1e\xbb\x3d\xe8\x76\x09\xf8\xa5\x2f\x4b\xc2\x65\x67\xc7\x0f\x5a\x77\xdc\xcd\x63\x52\x11\x37\x9d\x6a\x58\xbb\xc4\x4d\x56\x01\xd4\xdb\x8c\x20\x41\x18\x8e\xe3\x16\xf9\x4c\x18\x33\x99\xed\xb6\xb2\xbe\x29\xcd\x5d\x99\x5d\x5f\x01\x13\x3a\x76\x27\xce\xf5\x41\xfa\x53\xc6\x30\x67\xc8\xee\x51\x29\x85\x8c\x80\x62\xa0\x05\xc6\x9a\xfc\x99\x19\x93\x20\x9a\xf3\x65\x07\xf5\x37\x56\x90\x31\x54\x6d\x70\x13\x7a\x23\x7b\xb5\x52\xcb\xb7\x36\x0d\x1e\x47\x25\x48\x2b\x7d\xa8\x4b\x09\xd4\xb6\x7b\xd7\x97\x55\x5c\x84\xd6\xd0\x0c\x6f\x1c\x99\xf3\x22\x36\xc3\x06\x6f\xd6\x0e\x3b\xee\x6b\x3c\x0d\xfd\x0b\x3d\xa2\xde\xa6\x58\x0b\xe5\x75\x0b\xee\x50\xf8\x41\x0a\x6b\x4a\xee\x8c\xf9\x39\xa1\x40\x89\x02\xe5\xcf\x81\xc1\xda\xd6\x2b\x70\x88\x3b\xa1\xe0\xd0\x76\xc2\x8b\x62\x65\x47\xdc\x7e\x30\xe1\x38\x8c\x9b\x65\x83\xcb\x00\x5f\x2a\x6f\x28\x47\x0b\x08\x2c\xfb\xf6\x09\x6d\x95\x56\x0e\x04\xf1\xa3\x01\x8d\x2c\x8d\xae\x36\x25\x22\xa0\x31\xb6\xf3\xac\xec\x7c\x5a\x40\x29\xca\x95\x38\x83\x4d\x47\x95\x12\x7e\x0f\xc9\xce\xdb\x65\x37\x85\x52\x67\x23\xbf\x2b\x1e\x3b\xe4\xdd\x86\xf6\x43\xa9\x2f\x0b\x99\x00\x5c\x07\xc1\x1e\x49\xb7\x3a\xf7\x05\x69\x41\x80\x8d\xf7\x95\x01\x00\x23\xb2\x04\x40\xea\x00\x20\x4a\x00\xb0\xc2\x4b\xd4\x25\x0a\xb2\xf6\xa6\x99\x75\xbf\xd8\xa3\x91\xa8\xc6\xc2\x16\xf5\x6d\x16\xea\xb4\xad\x2a\xaa\xc0\x7f\x31\x64\x97\x0f\xa5\x9a\x83\x2a\xd9\x9f\xf2\x20\xd6\x1d\xd3\x65\x8e\x98\xfe\x30\x1c\x7b\xec\xa2\xf1\x60\xd6\x5f\xa6\xab\x3d\xa0\x64\x06\x84\x49\x36\x19\x4c\x51\x65\xef\xa7\x99\x6a\x57\x43\x73\x9b\xe4\x4d\x43\x3f\x6a\xa1\xc0\xdb\x40\xf0\xd9\xa1\x9b\xc3\xfd\xbf\x1e\xb9\xc9\xb6\x77\xe0\x56\x05\x50\xf7\x02\xf8\xaf\x75\xc7\xe0\xcd\xf6\xee\x84\xc8\xc3\x64\xab\xba\xe3\x1c\x3e\xaa\x0e\x51\x54\xba\x80\xd4\x17\x66\xb9\xcc\xdb\x45\x2d\x2d\x5a\xef\xec\x07\xa3\x8e\x69\xad\x64\xe7\xc0\xa8\x56\x55\x9b\x66\x70\xec\xd4\x9e\x89\x2a\x12\xb5\x4f\x8d\xb6\xd3\xe0\xed\xce\x5e\x6a\xa8\xf9\x6b\x78\xab\x54\x6a\x7d\x4e\x86\xda\xa5\x02\x7a\x06\xad\x1a\x69\x56\x3b\x64\xa8\xf4\x27\xfb\x94\xd4\x9f\x45\x40\x74\x17\x91\x12\x55\x34\x11\x86\x57\xf2\xbb\xa3\xe9\x9d\xa1\xd6\x55\x9b\x5a\xc2\x8b\x72\x63\x7c\x5a\x33\x66\x46\x8a\x4c\xd4\x14\x37\xd5\x59\xe5\x61\x83\xc6\x37\x4e\xed\x55\x1d\x76\x83\x6a\xe4\x37\xda\x7c\x0c\x46\x85\x92\x53\x79\x63\x07\x5f\x2a\xc4\xaa\x92\x8d\x31\x54\x47\x15\x3b\xa3\xa8\x81\xeb\xef\xf7\xbc\xaa\xb1\xd2\x7a\xee\x01\xb3\x45\xad\xf7\x88\x96\xa4\x3c\x94\xf1\x46\x8b\xbe\x3d\xf3\x46\x1c\x6a\xe7\x12\x86\x02\x2c\xbd\xfa\x69\x56\x3f\xc2\x6e\x19\x86\x33\x6e\xfa\xdb\x23\x08\x4f\x4f\xf4\x9e\xac\x37\x21\xd4\xbb\x7d\x67\xdd\x25\x08\xec\x91\x9b\xf2\xbd\x34\x56\x7f\xb5\x5a\x02\x88\xec\x3b\x9f\x09\xf4\xdb\xa3\x5d\x85\xf7\x00\x14\x6a\x51\x84\xd3\xfd\x67\xac\x41\xf3\xb0\xb2\xca\x92\x5b\x72\xda\x44\xd2\x5e\xc0\x2a\x05\x3f\x44\xf7\xe0\x35\xcf\x9d\x5f\xd3\x7b\xc3\x96\xdf\xa4\x8b\x11\x9f\xc8\x9a\xf1\x75\x30\x1c\x7b\x28\xe0\xa5\x93\x5a\x9a\xdb\xcb\xa3\xca\x33\x43\x92\xf3\xf0\x68\x01\xa2\x65\xba\x3a\xb5\xaa\x52\xeb\x9a\xd1\x95\x9e\x85\xa4\x95\x10\x5f\x56\x5e\xa5\x78\xc9\xd3\x2d\x81\x16\xb6\x7a\x2c\x42\xeb\x61\xe0\x38\xa1\x46\x88\xd3\x43\xe9\x6b\xb6\x98\x18\x6d\x27\x70\xfd\xef\xf0\x7f\x36\xc0\x2a\x8b\xb4\xc9\x14\x38\x49\xe5\xe5\x7a\x49\xb9\xf2\x06\x69\x23\x7e\x70\x30\xc2\x74\xc2\xa7\xd5\xa7\x09\x9f\x8e\x02\xf3\x4d\x07\x53\xa7\xc2\xaf\x40\xca\x5a\x40\xea\x45\xc1\xbc\x04\x2b\xf3\x60\x95\xc6\x90\xd7\x02\xd1\xd6\xf5\x79\x18\xa6\xab\xd5\xe2\xde\x02\x51\x03\xce\xf1\xd4\x14\xe3\x44\x06\xdf\x7c\xe3\x13\x11\x66\x29\x4a\xf8\xde\xfd\x77\xc3\x57\x10\xd5\x13\xd0\x84\xb2\x51\x33\x6c\xb7\xbb\x00\x71\x52\x88\x06\x47\xcd\xca\xb0\xbe\x50\xf7\xaf\x8f\xa3\xff\xd7\xac\x0f\xcf\xec\xfe\xc5\x0a\xb1\xcc\xc2\x5f\xac\x0f\x5f\xd7\xff\x82\x15\x52\x1d\x28\x1c\x07\x2c\x58\x0b\x57\x76\x28\x65\x7a\xdf\x67\xb9\xf9\x45\x0a\x6f\xb7\x5a\xf6\x2a\x90\xc2\xe3\xe6\xa7\xb1\xda\xc7\xe5\x6e\xae\xe9\x7d\xa2\xe0\x26\x5d\x24\x4a\x77\x21\x69\x58\xcf\xd5\x8b\xd1\x5a\x31\x6a\x8b\x69\x99\x50\x97\x9c\x4c\x43\xcf\xab\x96\xae\x07\x62\xa2\xa7\x54\xe5\x29\x39\x1d\x3b\x51\x31\x8a\x70\x12\x3d\xb0\x0e\x89\xce\x01\x82\x96\x74\x11\xc7\x31\xa2\x3d\x12\x3d\x88\x30\x28\xe7\xba\x5d\xb6\x79\xde\xb4\x08\x6d\xd7\xbe\xf2\xa9\x11\x08\x9e\xb6\x9a\xd1\x68\xc9\xf5\x75\xaa\xae\x08\xd1\xff\xe3\x58\x15\x70\x4d\x9e\xa2\x1d\xdb\xbf\x2a\x7e\x47\x1c\x57\xcf\x78\xbb\x6d\xc9\x5b\x37\x00\x68\xcf\x93\xd3\xc5\x3c\x8e\xf5\xff\xf6\xef\xba\x63\x78\xbb\x6d\x17\x89\x0b\x84\xb7\xdb\xc0\xdc\xb4\xfa\x12\x61\x84\xe1\x2d\x69\xf2\xff\xa5\x9d\x1f\xc2\x4d\xcf\xf7\xee\xa0\x28\xe0\x03\xe9\xbe\x6d\xe3\x4e\xbf\xed\x92\x76\xbd\xe1\xa6\x80\xe1\x3e\xc5\xe1\xb7\x45\x81\x27\xc3\xa9\x5e\xde\x27\x64\x53\x68\x12\x6d\x0a\xbd\xcc\x8f\x4a\x25\x22\xbc\x0c\x9c\xde\x83\x48\x21\xcf\xa8\xe6\xbd\x57\x4a\x48\x38\x23\x9b\x79\xf2\x32\x8e\xbb\x27\x96\x98\x6d\x86\xc9\xc3\x02\x86\x78\xbc\xcb\x5b\xbc\xf4\xa6\x03\x75\xeb\x8e\x4a\x67\x59\x24\x27\x05\xbc\x6a\x95\x0f\x36\xa1\x66\x13\x0d\x63\x85\x1b\x56\xb4\xe8\xa1\x4e\xab\x2c\x69\xd1\x57\xfa\xdd\xda\xdf\xd2\xa2\x80\x2f\xf4\x18\xbd\x0b\x16\x3c\x6b\x5b\x65\x5f\x78\x0f\x4c\xc7\x0b\x7e\xa7\x79\xc1\x02\xde\x90\x28\xb2\x86\x19\xf0\x9c\xb4\xc1\xbf\x6b\x61\x84\xa2\x4f\x11\x6e\x05\x23\x1a\x68\xbe\x71\xdc\xc2\x18\x9e\x7a\xc6\xf0\x99\xc6\x06\x6f\xbc\x0a\x50\x6f\x36\x57\xa9\xc2\x85\x7b\x84\x77\xa4\x61\x3e\xc2\xd7\x8b\x05\x21\xca\xd9\xf0\x07\xee\xbc\x4f\x53\xfe\x1f\xaa\xa3\x2b\x73\x7e\xd0\x1d\xc1\x3b\x51\x4f\x55\xbe\x71\x05\x7c\x6c\x03\xc1\x73\xf4\x0e\x29\x2d\x6c\xbc\x6e\x63\x63\x77\x56\xff\xd8\x9b\xe1\x26\x6d\xc2\x5b\x01\x4f\xc8\xae\x92\xfd\x35\x0a\x28\x9c\x3d\x82\x04\x69\x3c\x61\xdb\x94\x8f\x88\x13\x55\x4e\x1b\x8e\xe3\xee\x6b\x13\xf3\xc2\x4d\x54\x59\x91\x6c\x77\x9a\x35\xa5\xcd\x1a\x38\x9e\xff\x45\xe1\xee\xff\x58\xf3\xfb\xa6\x40\xf0\x1b\x2a\x95\xf3\xa2\xee\x28\xd1\x59\x49\xb6\x64\x8a\xdd\xd0\x8e\xe9\x57\x84\x0b\x78\xaf\x97\x66\x23\x14\xcf\xa7\x76\x29\xf9\xbd\x5f\x21\x5a\x98\x7a\x41\xae\xfb\x33\x91\x19\x5a\x0b\x3f\x92\xd7\xe8\x05\x8e\xe3\xd7\xe8\x85\x3b\x58\x3d\x5a\x18\x4f\x1e\x0c\xbf\xb5\xcd\xf4\x8f\xe3\x46\x3e\xa4\xb0\x09\x35\xf4\x13\xe9\x7e\x88\xe3\x7f\x11\xd1\xfc\x86\xa2\x19\xbb\x89\x30\x44\x69\xf4\x39\x84\xd3\x4f\x35\xbe\xf9\xfd\x2f\xb1\xca\xaf\x1a\xab\x7c\x18\xff\xbe\xeb\xc0\xa2\xc8\x47\x2d\xdd\x50\xf2\x04\x51\x73\x32\xfd\x13\xae\x50\x67\xe7\x77\x0b\x9a\x4a\xb3\xc1\xe6\xe8\x93\x49\xf3\x53\xf5\x0a\x75\xcf\xfa\xf3\x0a\x8c\x26\x0a\x10\x2e\x0a\xf8\xb9\xb9\xbb\xec\x4a\x6d\x4e\xac\x5d\x0a\x48\xe1\x5e\xd4\xe2\x25\x1f\xec\xaf\x5f\xda\x41\x05\x7f\xd8\xa1\xfd\xb2\xe3\x30\xc1\xe6\xe8\xe7\xfa\xd0\x7e\x46\xbc\x31\xbe\x5f\x5c\xe6\xfa\x08\xa3\x4b\xaa\x22\xc6\x3b\x7c\xbb\x8d\x72\xf7\xb8\x8b\x14\x0e\xb3\x8c\xe6\xb9\x90\xb6\xd3\xf9\x7a\xb5\x12\x52\xd1\x59\xd9\xe9\xc8\x2e\x48\x5d\x58\x8b\xa7\xe6\x78\xc8\x6e\x1e\x0c\xaa\x28\x40\x29\xf2\x61\xbc\xc7\xb4\xe6\x8f\xfe\xdc\xa4\xbc\x42\x43\xe0\x18\x17\x7b\xbd\x41\x4a\xdf\x06\xaa\x9a\xd6\xe9\xf2\x7e\xa3\x14\xba\x86\x60\x06\x39\xde\x5c\x5b\x3b\x75\xaf\xca\x2a\x80\x2b\x72\x3d\x89\xce\xcf\x33\x21\xe9\xc1\x87\xfc\x3c\xbf\x4a\x25\x9d\x9d\x9f\x47\xd3\xed\x96\x2a\xd4\xf6\x05\x36\x05\x06\xa9\x88\xa7\xc5\xe5\x8e\x1e\x55\x3b\xbe\xe4\x78\xb8\xea\x33\x9e\xaf\x68\xa6\x4e\xc5\x5a\x66\x46\x59\xde\x48\x6a\xdb\x4f\x52\x79\xac\x50\x38\x63\x06\x05\x4c\x41\xaa\x20\x53\xa4\x59\x01\xe4\x8a\x5c\xf7\x7f\xa5\xe9\xf5\xeb\x74\x05\x6b\xd5\x66\x15\x97\xab\x38\x7e\xc0\x53\x83\x2a\x32\x31\xa3\x0f\xfa\x8a\xe6\x0a\x65\x0a\xe5\x0a\x63\x58\xa8\x66\xe4\xaf\xca\x0d\xa6\x1d\x77\x70\x35\x51\xd3\xed\x16\x99\x5f\x52\x5a\x1f\xd1\x31\x4d\x36\x05\x2e\x30\x8a\x9c\x15\x62\x1e\xc1\x64\xea\x8e\xaa\x36\x2e\x2d\x89\x1e\xf5\xbf\xeb\x0f\x23\x58\x8a\x19\x4d\x22\xcb\x5b\x45\x90\x89\xd5\xbd\x64\x97\x57\x2a\x89\xfe\xef\xff\xcb\x5a\x40\x3e\xa3\x9c\xe5\x9d\xb7\xeb\xfc\xea\x3a\x95\xf4\xa6\x83\x3e\x2d\x04\x93\x22\xbb\xee\xcb\x35\x8e\x8c\xb9\x04\xcc\x15\x19\xc0\x4c\x19\x66\xae\x2f\x53\x3e\x13\x4b\x84\x61\xd5\x66\x42\x1d\xd9\xc0\x63\x28\xea\xb9\x9d\x57\xd9\x2e\x8e\xa3\x28\xd1\xfb\x10\x9f\x47\x3d\xd4\xeb\xcd\x55\x6f\xa6\x70\x39\xb7\xe8\xd1\x37\xb8\x80\x2b\x45\x16\x0a\x45\x9a\x6d\x8e\x30\x2c\x5b\x8d\xb4\xaf\x1c\x60\xcc\x2f\x59\x29\x4b\x01\x6f\x14\xd9\x14\x70\x19\x4c\x94\x26\x13\x6b\xc7\xcd\xdc\x9b\x49\x35\x52\xbf\x01\xa9\x73\x04\xe1\xf4\xb6\x73\xa9\x30\x5c\x28\x72\x6f\xd0\x1b\xdc\x9a\xa7\xab\x34\x87\x43\xf3\x94\x53\x35\x12\xcd\xb5\x5f\x2a\x6a\xe7\x69\x96\xce\x28\x51\x70\xe8\x96\xd3\xbd\x32\xfb\x01\x68\x01\xac\xb5\xf3\x17\x41\x46\xe7\x6b\x92\xb6\x66\xbc\x0d\x33\x16\x45\x69\x3d\x7a\xa7\xc8\x52\xa1\xc8\x9a\x83\xe1\xd1\x8d\x9a\xdc\xa9\x29\xe9\x0e\xe0\x6f\xf4\x52\x29\xa4\xe0\xee\xf3\x1d\xfc\x64\xb2\xe0\xb1\xa9\x37\xd9\xdf\x3f\x97\xaf\x30\x52\xc0\x91\x82\x63\x45\x36\x39\x55\x89\x30\x87\x9d\x09\x53\x70\x95\xe6\x49\xaa\x80\xf2\xb9\x90\x19\x4d\x5a\xea\x48\xf5\xdc\x8d\x99\xa1\x65\x42\xf7\x4d\x2f\x6c\x77\x56\xfa\x5c\xc8\xb6\x22\x4d\x31\xd8\x38\xcc\x75\x5f\x23\x8a\xf5\xbc\x12\x66\x84\x40\x73\xe2\xd2\x6d\x65\xb5\x5e\xf2\x4c\x2c\x57\xa9\x62\x17\x0b\xda\x91\x34\xa3\xec\x86\x4a\xd0\xcc\x56\x2f\xea\x48\xfa\x71\xcd\x64\x80\x63\x3b\xbc\x28\x0a\x38\xdd\xd9\xbb\x2e\x46\x9f\x5d\x32\x5c\x3f\xb8\x51\x82\x24\x6e\x39\x3b\x1e\xc4\x9b\x08\x3b\xce\x11\x8f\xf6\x6c\x7b\x17\x3c\x21\x95\x9d\x14\x32\xd2\x35\x56\x2d\x5d\xd6\x5f\xf3\x3c\x9d\x53\xc8\xab\x94\x8a\xb1\x86\x75\x95\xca\xc5\x59\x2a\x2f\xa9\x7a\x41\xd5\xa8\x4d\xaa\x8e\x63\xb4\x2b\x2b\x6e\xb7\x9f\x90\x80\x88\xa7\x4b\x1a\xe1\xed\x56\xa9\xf2\x4d\xaf\x10\x94\x12\x8e\x04\xc6\xfd\xdc\xe0\xc0\xed\x16\xa5\xee\x91\xc8\xfe\x07\xc1\x38\xda\xd1\x93\x6a\xdc\x14\x45\x18\x63\x50\x5d\x42\xae\xc7\x28\x1b\x77\xd7\x71\xac\xa9\x48\x1c\xa3\x9c\x74\x07\x38\xf1\xce\x49\x13\x3a\x85\x7c\x6c\x08\x8c\x48\xcc\xc2\xa4\x20\x30\x4e\xca\x34\xaa\x8c\x39\x7d\x81\x51\x49\x07\x2a\xb5\x64\xe4\xd1\x46\x04\xbb\x7c\x4f\x1b\x73\x6b\x44\x4c\x6a\x35\xc1\xe5\x88\x34\xbf\x6e\x54\xc3\xf6\xa8\xf0\x5c\x91\x6b\x78\xda\x8a\xd5\xda\xce\x3a\x94\x73\xb0\x2b\xe0\x7a\xcf\xd6\x6b\x2a\x5d\x1e\x3f\x1c\x3f\x55\xe8\x5c\xe3\x2d\x2d\x9f\x2a\xa4\xa9\x25\x4e\x4c\x42\x1c\x9b\x1f\x63\x89\x70\x6d\xde\xaf\xed\x6b\x01\x6f\x1d\xe6\xcd\x28\x5b\xc0\x07\xf7\x32\x5f\x08\x21\xe1\xa4\x75\x6f\xba\x38\x33\xa4\xa7\xf0\x78\x90\x20\xf5\xc3\x60\xfc\x41\x25\x6f\x15\x36\x3a\xea\x97\xae\x86\x25\xe3\x70\xd6\xee\x06\xf3\xc3\x60\xfc\x52\xa1\x13\x73\x50\xf0\xfd\x60\xf0\xed\xf0\xfb\xef\x1f\x7e\xfd\xd5\xb7\x5f\x0d\xbe\xff\x7e\x88\x93\x41\x01\xaf\x7c\x1d\xe9\x1d\x7c\x11\xd4\xf7\xac\x09\x09\xab\xd4\x32\x35\x95\x7b\xea\xf1\x60\xfc\x4a\x21\xde\xa3\x30\xc0\xc9\x17\x0a\x19\x43\x45\x78\xd3\xda\x95\x50\xeb\x51\x06\x6d\x04\x46\x3e\x22\x13\x7e\xf1\x4c\x21\xe6\xc3\xe9\x40\x46\x9e\x29\x13\xbe\xcc\xa8\xaa\xe2\x98\x77\x09\x77\x21\x34\xd2\x1f\x32\x13\x42\x07\x09\xc2\x26\x59\xaf\x37\xc5\x5d\x22\x70\x29\xab\x1b\x17\xfd\x32\x63\xd6\xeb\x99\xbc\x6a\xbb\xcd\x3a\x8c\x77\x18\x8e\x63\x36\xc9\xa6\x26\xf0\x96\x07\xd1\x76\x9b\x6d\xb7\x03\x2f\x1a\xab\x38\x3e\x18\x16\x05\x3c\x57\x64\xc3\x78\xb6\x58\xcf\x68\x9e\xbc\x31\x41\x85\xc0\xd9\x9d\x9a\x57\x2d\xa0\xbe\x53\xe4\xb9\xf2\xd6\xa8\xf0\xb1\x15\x62\x20\x2d\xdf\x2c\xc8\x00\x98\x8f\x20\x62\xa2\x87\x48\xdc\xfd\x84\x6e\x14\x70\x1c\xc7\x9f\x90\x34\xbf\xac\x8c\x27\x52\x8b\x17\xf2\x83\x18\x61\x93\x85\xd0\x89\xd0\x63\x8e\x63\xf4\x7f\xbe\x53\x88\x01\xc7\xdb\x6d\x59\xa8\x8a\x5b\x59\xc0\x6b\x45\x26\x51\x10\x02\x24\x82\xa8\x2e\xe9\x44\x10\xb1\x3c\x08\x65\x13\x41\xd4\x26\x42\x47\x7a\x87\x1a\xeb\x24\xea\xf7\x69\xb0\x65\x23\x27\xe3\x45\x53\x78\xa2\xc8\xeb\xd2\x4b\x26\xb2\xfd\xb6\x75\xda\x16\x22\x0c\xef\x95\x66\xc1\x5b\x45\x10\xa3\x91\x0a\xf4\x39\xd5\xba\xf9\xa8\x31\xca\x13\x4d\x9f\xe0\xd3\xfe\xf2\x96\x59\xc9\x0b\x78\xa1\xc8\xb5\x42\xd1\x09\x9d\x2f\xb4\x60\x00\x91\xb8\xe5\x3f\x1b\x26\xa4\x5e\xbb\x45\xfc\xef\x55\xdf\x32\xff\x18\x38\xf9\xa4\xfa\xf3\x72\x69\x8f\x4b\xe7\x27\x9d\x1d\x27\xb4\x80\x1f\x9b\x13\x5c\x06\x83\x21\x2f\x34\xb5\x02\x49\xfe\xe8\xcf\x41\x90\x5f\xfb\x73\x60\x64\x30\x62\x8f\xbd\xb9\xe2\x88\xf5\x7a\x65\xd4\xcd\x09\x9b\x8e\x34\xd1\x4d\xf1\x76\x2b\x8d\xad\x96\x40\x14\x52\x73\x06\xfc\x9b\x22\x0f\xfe\x7d\xfb\x67\x85\x20\xff\xec\x3f\x80\x9f\xda\xf7\xe2\xaf\x6a\xf2\xbb\xde\x8e\xd3\xb2\xd3\x84\xfc\xa2\xb6\x5b\xde\x25\x3f\x2b\x4d\x27\x76\x71\x1d\x1d\xbf\x45\x14\x27\xdd\xae\xde\xa7\xbf\x2b\xf2\x93\xea\x5b\x67\x7f\xf6\xa9\x95\xb9\x2e\x85\x2e\x7f\xbe\x8a\x7e\x53\x10\xf5\x23\xcd\xed\xbd\x12\xb7\x54\x3e\x4d\x73\x8a\x70\x01\xbf\x9a\xba\x66\xa9\x4a\x35\xf3\xf6\xb3\x79\x7b\x73\x78\xf6\xf2\xfd\x11\x89\xde\x44\xf0\x8b\x49\x78\x7b\xfc\xea\xf7\xe7\x2f\x5f\xbd\x22\xd1\xdb\x08\xfe\xd0\x49\xa0\xa8\x81\x16\x6d\x9e\x73\xbb\xbd\x03\x2e\x64\x21\x51\x7d\x65\xc8\x22\x18\x9f\x4d\xc3\x04\xc3\xda\x59\x50\x1b\x6f\x7c\x92\x8f\xaf\x93\xf5\xf8\x7a\x92\x59\x71\x24\xd3\x2c\x48\x82\xec\xfb\xa6\xc0\x41\xb8\x24\x3d\x6d\x26\xda\x8e\x15\x6c\x19\xa1\x13\x39\x05\x41\x54\x48\x7c\xc7\x28\x25\xe6\x18\x52\x62\x1c\xc7\xa9\x0b\x47\xc4\x75\xce\xee\x1f\x0a\xe5\x63\x99\x64\x3d\xb4\x1e\x47\xfd\x28\x89\xfe\x3d\xc2\x3d\x69\x83\x92\x65\x74\x86\xe3\xb8\x72\xd8\xb6\xb2\xb3\x85\x3e\xab\xc8\x78\x15\x10\xf4\x47\xbd\x8d\x05\x2e\x90\xea\xe7\x57\xe9\x72\xbb\x15\x71\x2c\xcc\x23\x8e\x63\xa5\x3f\x46\xfa\x25\x32\x82\xe9\xa9\x32\xa6\x9e\xcc\x70\x92\xc0\x69\x53\x74\x6e\x11\xab\x76\x59\xa7\x36\x49\xba\x44\xcf\x35\x51\x5a\xee\x9e\x70\x6b\x58\x9b\x63\xce\x52\x1c\xa0\x95\x52\x29\xbf\x65\x4e\x7a\xcc\xd2\x9c\x76\x06\xc9\x7e\xcb\x70\x17\x6c\x14\x17\x23\x93\x75\xb8\x93\x95\xef\xe4\xd5\xe2\xb7\xcd\xfd\x70\x37\x77\x10\x1c\xa7\xca\x0f\xd2\x97\x78\xd4\x56\xc2\xf8\xf8\xed\x96\xd1\xb3\x51\x7c\xa6\xe7\xf6\xe4\x82\x42\xc9\x14\xe8\xb9\x10\xad\xfb\xc7\xe9\x12\x9d\x6e\x8f\x51\x52\x3b\x88\x68\xc3\x77\x91\xf9\xe2\x14\x93\x05\xa4\x94\x74\xbb\x9f\xc3\x78\x7b\x34\x46\x5d\xcf\xbc\x5a\x21\xce\xb2\x45\x19\x25\x29\x8d\xe3\xae\x4d\x34\x6b\x2c\x8e\xa3\xdc\xbc\x35\xe3\x4e\x57\x91\x1a\x73\x6a\x24\xb9\xdb\x6b\x2d\xc8\xad\x29\xb9\xee\xdb\x1c\xb0\xa0\x24\xa3\xe3\x35\x4d\xd6\x34\x8e\xd7\xb4\xef\x22\xd7\x9c\x1a\xae\x7f\xbb\x5d\x29\x98\xb7\x02\xe5\x13\xca\xa9\x91\x99\x90\xee\xcd\x27\xb4\xd6\x6f\xe3\x9c\x6a\x21\x70\xad\xff\x27\xf6\x79\x41\x91\x13\x42\xfb\x51\x4f\xa3\x68\x93\x5c\xc0\x8c\x92\x39\x45\x91\x16\xeb\x19\xd5\x9d\x5a\xb5\x62\x8f\x92\x18\x52\x63\x81\xd7\xb2\x37\x8c\x92\x31\xa0\x91\xd8\xe0\x4e\x3b\x47\x71\xdc\x65\x14\x05\x9c\x2a\x1e\xbf\x46\x9a\x44\x5b\xdd\x2f\x41\x9c\xf0\xc9\x8c\x1a\x52\xcc\x7d\x5c\x8c\xa4\x7c\x02\x4e\x6f\x83\x28\x9f\xf6\x00\x2a\xe1\x18\x99\x1d\x33\x1e\x24\x1a\x01\x5f\x51\x32\x99\x1a\xe2\x0d\xcb\x36\x2b\x8c\x21\x21\x5a\x28\x79\xa8\x7f\x24\x79\xa4\x7f\x04\xf9\x4a\xff\x30\xf2\x8d\xfe\x49\xc9\xb7\xfa\x27\x23\x5f\x9b\x38\x39\x6c\x27\xfe\x74\x0e\x6b\x58\xc0\xbc\x22\x55\x33\x58\xc1\x15\x11\x14\xe5\x18\x96\xe4\x39\xba\xc2\x70\x43\x24\x45\x3a\xdb\x23\x0c\x97\x9a\x0f\x5b\x96\x7c\xd8\x3d\x19\xc0\x05\x99\x6f\xb7\x2b\x0a\xb7\x84\x8e\x2f\x50\x0e\x97\x38\xe1\xdb\x6d\x6a\x9e\x07\xd8\x71\xce\xa3\xcb\x1f\xee\x47\xf7\x8e\xdb\xca\xb6\xdb\x7b\x8d\x5e\x35\x02\x43\x2b\x72\x83\x66\x64\x39\xb9\x9f\xc2\x3d\x5c\x61\x50\x18\x9b\xe0\x8b\xb7\x93\xfb\x29\x59\x95\x81\xa1\x57\xd8\xe1\x0e\xe5\x70\x87\xdf\xb0\xdd\x81\xdd\xc0\x5f\xfb\x0d\x3c\xb3\xef\xdf\xf8\xf7\x7b\x8f\x12\xae\x9c\x9b\xe4\x2d\xcc\x5c\xa8\xa6\x46\x95\x5f\xf9\x2a\x87\xb6\xc8\xb7\xf5\x22\x7e\xb9\x8c\x0f\x86\x89\xdc\x6e\xc5\x58\x24\xb7\x45\x01\x37\x94\x6c\xdc\xd9\x6d\xb2\xa4\x68\x80\x61\x99\xae\xf4\xd3\x10\x83\x35\x11\xd3\x2f\x0f\x31\xe4\x62\x49\xf5\xe3\x23\x0c\xf4\x86\xca\x7b\xfd\xfc\x95\xce\xc3\x67\xfa\xf1\x6b\xfb\xf8\x52\x73\x8b\xfa\xfd\x1b\x5f\xfc\x78\xad\xf4\xfb\xb7\x46\x60\x26\xc1\x71\xe3\x7e\x76\xe8\xb5\x46\x0d\xf7\x94\x7c\x68\x0d\x81\xc2\x68\xde\x50\xdf\x6a\x0e\xa7\x0a\x5d\x07\x92\x5c\x52\xe4\x4c\x1a\x9d\x8b\x87\x66\x57\xc4\x0f\x6c\x84\xad\x42\x91\x13\x39\x61\xbd\xde\x14\xe8\x84\x4f\x43\x8a\x70\x41\x0d\x7b\xe5\xb5\xdf\x11\x94\x8f\x4e\x9b\x1d\x61\xb8\xa5\x46\xb1\xf1\xf2\xe8\xfc\xed\xc9\xf1\xd9\x71\x84\xe1\x90\x86\x07\xda\x05\xdc\xb5\x1a\xeb\x3c\xb6\x5a\xe8\x1f\x8c\x08\xff\xf8\xcf\x07\xfe\xb5\x80\xa3\x5a\x79\x25\xef\x37\x47\x8a\xf8\x86\xfb\x33\xb1\x4c\x19\x8f\x63\x4e\x6f\x3b\x87\x99\x62\x37\xf4\x37\x7f\x30\x74\xa5\x96\x8b\x39\x5b\xd0\xa8\x69\xfe\xa8\x80\x8e\x8e\x28\x39\x52\xb5\xc3\x21\xd5\xbf\x95\x4c\x51\x74\x47\x51\x64\xa3\x35\x66\x0b\xa1\x19\x9c\x51\xe9\xee\x6b\xdc\x5d\x7f\xb5\xde\xad\xb6\x95\x12\x3a\x36\xfe\x1d\x2d\xd0\x91\xc2\x09\x42\x94\xfc\x86\x22\x36\x97\x46\x28\xc7\xfd\x5c\xdd\x2f\xca\x60\x94\x24\xe2\x82\xd3\x08\x2e\xa8\xa6\x26\x94\xcf\x7c\x2c\x02\xa0\xfd\x5c\x66\x5e\xf5\x10\x7d\x48\x6f\x52\x0b\x86\x24\xc2\x80\x14\xa1\xf6\x04\xbe\xec\x82\x07\x02\xee\x8b\x15\xe5\x48\x77\xb9\x1a\x42\x09\xa1\xe7\x6e\x59\xd5\xc6\x04\xaa\xff\x3c\x58\x15\x9a\x7b\x0f\x2d\x0a\x9c\x78\x7f\x14\xc4\xd4\x9f\xbc\x56\x13\x3e\x2d\xd9\xcd\x23\xcd\xf9\x8d\x6e\xd4\xe4\x96\x4e\x7d\xfc\xbc\xe3\x86\x93\x59\xb8\x86\x77\x30\xb3\x3f\xc4\x1a\xa3\xc3\xa0\x15\x62\x94\xf1\xdc\xa8\xf4\x0e\x29\xd4\x3e\x19\x08\x73\xd3\xa0\xd2\xd8\x56\x77\x21\xe0\x44\xc6\x3c\xb9\xa7\x4e\x0a\x3d\xb5\x54\x62\xcd\xf3\x4c\xac\xb4\x24\xa3\x29\xc5\xb9\xa7\xc0\x65\x95\x23\x8b\xcf\xcf\xe9\xe4\x94\x4e\xe3\x58\x2f\xff\x73\x0a\xa7\x14\x9a\x9e\x8d\xee\x48\xf3\xd8\xf9\xcd\x39\x65\xf3\xd3\xfa\x4a\xb6\xd5\x4c\x8c\x1e\xaf\x80\x6b\xba\xe7\x28\xe2\x2d\xd5\x5c\xf2\x87\xa6\x3d\x99\x31\xd5\x2f\xe0\xa4\x49\xce\xcc\x59\xca\x5b\x1a\x58\xa8\xbc\xd5\x94\x70\x44\xb7\x5b\xa4\x6b\xf2\x0e\x85\x13\xdd\x32\x48\xd2\xed\x7e\x42\x14\xa2\xc3\xa7\x4f\x8f\x4e\x4f\x8f\x4f\x4e\x23\x1c\xc7\xb4\x5f\xbe\x82\x20\xfa\xfb\x00\x8f\xe9\x64\x30\x4d\x3e\x50\x60\x26\x61\xa8\x13\x86\x53\x8f\xd2\xc3\xa6\x48\xb7\xcb\x77\x38\x0d\x36\x47\x32\x8e\xbb\x1f\x4a\xe9\xdb\x45\x50\xdc\xd8\x65\x94\x1c\x0c\x8b\x91\x1c\x5f\x53\xa4\x60\x08\x9b\x7a\x24\xa6\x4b\xaa\x92\x0f\xd4\x04\x5d\x1a\x4e\xc9\x10\x4a\x27\x0c\x01\xcc\x06\x57\x78\x49\xc9\x8d\x09\x51\x3c\x83\x33\x13\xeb\xf2\x15\x25\x27\x14\x45\x3a\x25\xc2\x23\xfb\xcb\xf8\x64\x1a\xc7\xd6\xaa\x63\x88\x4d\xee\x5a\x17\x75\xc9\xa1\x66\x7d\x28\x45\x1b\x2b\x41\x24\x8e\xc3\x02\xb3\x04\x74\x5f\x2c\xd7\x9e\x9c\xd1\xed\xb6\xfb\x8a\x16\xb0\x31\x28\xbb\x05\xf7\xbe\xa4\xee\x20\x1d\x9a\xfa\xa0\x1f\x86\xe3\xca\xf8\xa6\x04\x21\x2e\x0a\x0c\x4f\xab\x3e\x6b\xf0\x7c\x41\x09\xaf\x2c\x5a\x9e\xd1\xca\xef\x4e\x4b\x3a\x16\xb9\x59\x0f\x38\x35\x61\x53\x94\x62\xc8\x49\x66\xa5\x8f\xa6\x69\x42\xc7\xb4\xa2\x3b\x58\x64\x36\x6a\xaa\x26\xeb\x49\xd3\x55\x24\x77\xd1\x56\x0d\x5f\xab\xab\x7e\xd3\xca\x95\xb5\x9a\xf0\x85\xf6\x46\x9f\x37\xf7\x0e\xdc\xd1\x2a\x0e\x99\xe3\x5a\x30\x2a\xbc\x79\x46\x11\x33\x63\x4d\x21\x03\x1f\x5f\xaf\x19\x69\xaa\x9e\xc9\xc7\x66\xc7\x45\x8a\x3c\x58\x8d\xa8\xfc\x9c\x36\x8c\x02\x2e\x35\x4d\x2e\x30\x1e\x85\x93\xed\x10\x9f\xf1\xd2\x09\x26\xfb\xb9\x9e\x67\x4d\x64\xdb\xe6\xf9\x92\x22\x41\x0d\xcb\xee\xb6\xd6\xbb\x3d\x66\xd8\x2d\x56\x5a\x0e\x6f\x99\x15\xd9\x5c\x25\x18\x24\x19\x8c\x64\xa5\x15\x90\xbd\x1e\x36\xe6\x5e\xd5\xe2\x91\xd3\xd1\x8e\xa0\xc1\xf5\x70\x3f\xee\x5e\x25\x53\x1d\xa7\x95\x00\x7c\x4d\x03\x82\xea\xa3\xdb\x9a\xde\x4c\x23\x42\xc8\xc7\x32\xd8\x75\x05\xf3\x27\xb4\xb9\xa4\xcc\x21\x4f\x95\xe1\x3d\xfd\xbb\xf1\xbf\xca\x22\x9f\xda\xba\xe1\xb5\xbf\x7b\x7b\xf2\x82\x96\xf8\xce\x36\xa3\x34\xaf\xe8\xdb\xe9\xb6\x18\xf1\x9a\xe1\xe2\x0a\xf6\x03\x90\xa4\x22\x63\x8f\xe5\x88\xf7\x7a\xd8\xb5\x64\xa3\xd3\x9a\xf0\x66\xa0\x6c\x14\x8f\x4e\x2d\x28\x8e\xc2\x3b\x00\xae\xab\xcc\x4a\x1c\x65\xf0\x69\x58\xa9\x98\x82\xd0\x4b\x54\xd7\xf5\x23\x25\x1b\x27\xe0\x25\xaf\x29\xb8\xc7\x27\xeb\xf9\x9c\xb6\x1d\x84\xd4\x67\xc9\x66\x6b\x42\x08\x58\xbe\xb7\x7c\x30\x23\xdd\x27\x56\xd4\xf1\x29\xa1\x6c\xe3\xbe\xd6\xc4\x9d\x56\xa7\xb3\x5a\x96\xbe\x6f\xb8\x11\x80\xbb\x4c\x77\xbd\x7b\x2e\xe4\xf2\x59\xaa\xd2\xb6\xf1\xb5\x84\x80\xf1\xd9\xe3\x58\x85\xf7\xf4\xf8\xe4\xa2\x0e\xb4\xf7\x8c\xde\xfe\xcd\x8a\x83\x52\x8e\x2c\xd8\x97\x3e\xcb\x75\x2d\xe3\xdd\x24\xa4\x70\x62\xac\xdc\x2e\xca\x71\xda\xa7\xb0\x63\x41\x31\xdd\x37\xbb\xe9\xda\xba\xb4\x63\x6f\xae\xb3\xdb\x60\x33\x6d\xd9\xb9\xf9\xd2\xc8\x6e\x17\x61\xf2\x5e\x2f\x9d\x77\x7e\x88\xc9\x13\xfd\xfa\x2c\x55\x6d\xc7\x6f\xe5\x12\xd2\xdf\x5b\xd6\xce\x73\xb6\xf8\x6c\x31\xfd\xbd\x6d\xc9\x2d\xc4\xc5\xe7\x8a\xe9\xef\x6d\xad\xb9\x12\xc9\x27\x6a\x61\x45\xd3\x65\xdb\xba\x7d\x6f\x17\xab\x46\x15\xfd\x15\x5b\x51\x53\xf8\xdd\xc9\xab\x53\x9a\xca\xec\xea\x6d\x2a\xd3\x65\x1b\x76\x6e\x9b\xf6\x46\xa9\xc6\xb2\x6a\x7c\xb5\x33\x98\xf2\x59\x2a\x67\x4f\xa4\xb8\xcd\xa9\x3c\xe2\x37\xbb\x76\x33\x61\x5c\xc6\x2a\xb8\x60\x7a\xc3\x2e\xdd\x05\x5b\x27\x34\xcd\xd4\x1b\x63\x28\x10\x75\x09\x29\x3f\x69\xfc\x31\x5b\x67\x1a\x45\xda\xaf\xa7\x86\x83\xdf\x9b\xe7\xb4\xf5\x8b\x51\x59\x7c\x26\x7c\x52\xdb\xb7\x52\x1a\x28\xc0\x8b\xac\x2f\x28\x2c\xa9\xbc\xac\xe6\xbf\xa3\x4a\x0a\x1f\x5e\xd8\xe3\x54\x68\x3b\x48\x9d\x4e\xe4\xb4\x05\xd7\xf3\xb1\xfe\x40\x14\x32\xba\x53\x63\x41\x2f\xa7\x84\x17\x55\x60\xe1\x01\x88\x5d\x5b\x65\xf9\x58\x18\xa2\xf7\x82\xa2\x90\xe4\x41\x10\x40\xbd\x80\x19\xa5\xab\xd7\xff\xcb\xfa\xdc\x92\x4d\xa1\x4d\xa1\xbf\xff\xf7\x0c\x87\xde\x29\xca\xf7\x86\x69\x7d\x41\x11\xad\x85\xd8\x90\x78\xa3\x0c\x2c\x5b\xb1\x33\x1d\xbf\xa3\xc8\xba\x2c\x18\x9f\xc8\x02\x94\x64\xad\xdb\xab\x0c\x29\x83\x1e\xfc\xe7\x9f\xf9\x97\x0f\x20\x8a\x2a\x2d\xfe\x83\x3f\xf3\x2f\xbf\x30\x49\x61\xc0\x96\xdf\x42\x42\x4f\x79\x26\x66\xf4\xdd\xc9\xcb\xa7\x62\xb9\x12\xdc\x1a\xaa\x55\x15\xfc\xe3\xab\xc1\x83\x4b\x06\xd1\x3f\xc3\x5a\xff\xf1\xe8\xd0\x24\x26\xb5\xc4\x87\x5f\x3d\xb8\x84\xe8\x8b\x7a\xda\x53\x93\x11\xea\x89\x03\x9d\xb1\x57\x4b\xfb\xfa\x89\xc9\x38\xa9\x27\x3e\x33\x89\xd3\xc8\x52\xdc\x9f\x5a\xd5\xd4\x5d\x5a\xb7\x76\x34\xd6\x86\x1c\x4b\xc2\x11\xc5\xa5\xe2\xe9\x47\xda\xdf\xc1\x3a\x88\x62\x2c\x49\xc5\x5e\xa1\x20\xe6\x97\x20\x93\xe9\xe8\xc7\x32\x5a\x62\x6d\xf2\x0c\xf3\xe2\x38\x97\x38\xb6\x55\x97\x16\xe7\xb4\x47\xa2\xc9\x34\x4a\x0c\xe7\x02\x41\x0d\xaa\xee\x8f\x68\x4a\x3d\xb3\xbe\x44\x63\xe3\x25\x2c\x5e\x9e\x1e\xfb\x8e\x24\xe6\x73\x69\xa2\x6a\x38\xa1\x9f\x4e\x8f\xdf\xf4\x2d\xe5\x61\xf3\x7b\x73\x98\x25\xec\x91\xe0\x6f\x14\x51\xdc\x8b\x48\xd4\xfb\xcd\xf2\xb3\xd8\x2a\x82\x25\x11\xee\xe0\x3f\x8e\x70\xa1\xe5\xb8\x8a\x77\xf7\xc1\x75\xa2\x7f\x8f\xf0\xe8\x60\xd8\xb5\xf7\x3f\xe8\x8e\x78\x47\x2d\xe3\x7b\xde\x23\xe8\x60\x68\x02\xf2\x95\x05\xc6\x11\x1e\x47\xe3\x28\xd1\x95\xf6\x64\x19\xe0\x20\x58\x60\xbf\x53\x1f\x73\xdf\x39\xf4\xe7\x64\x32\x2d\x7e\xa7\xa1\x73\x5a\xbe\x87\xd7\xae\x15\x73\x36\x52\xf3\xf5\x62\xce\x16\x0b\x3a\x4b\x14\x48\xaa\x61\x42\x67\x7a\x63\x40\x3d\xb3\xb7\x96\x2f\xa0\xd6\x94\x29\xb0\xeb\xd2\xe5\x8b\x99\xa3\x7b\xd4\x4c\xb2\xa1\xc5\x1b\x35\xb9\xa9\x24\x8d\x79\x2c\x67\x38\xac\xa3\x1e\xf8\xc9\xb1\x6a\x34\x8e\x5d\x78\x2a\x1b\x67\xef\x57\x4a\x7e\xa7\xf0\xf3\xee\xba\xf6\x46\xa4\x55\xe5\x1c\x6a\x81\x7c\x15\xb1\x60\x73\xd8\xe1\x97\x36\x59\xaf\x6b\x5c\x61\xba\xaa\x7f\x7e\xfe\xf4\xf0\xcd\xd3\xa3\x57\xe7\xe7\x38\x98\xa5\x3f\xec\x2c\x35\xa2\x51\xe7\x54\x9d\xb1\x25\x15\x6b\xd5\xb9\x4a\xed\xa9\xd1\x05\xa5\xbc\xe3\x89\x50\xc0\xc7\x2b\xde\x56\x41\xb6\xa0\xa9\xfc\x8b\x2a\x0c\x8e\xe7\xe4\x0f\x0a\x9c\x13\x15\x08\xca\xd2\x9f\x70\x51\x4e\x08\xa9\xfa\xe2\xb7\x78\x95\x82\x14\xd8\xd8\xfe\x36\xeb\x1f\x5a\xaa\xa7\x1c\xc7\xf1\x6e\x21\xca\x83\x9a\xa0\x59\x45\x60\xfd\x49\xb9\x49\x72\x02\x38\x0d\x9d\x06\x3a\x94\x87\x92\x40\x2d\x57\x23\x87\xd3\x1d\x0c\x70\x51\x14\xad\xd1\x1e\xaa\x1e\xc4\x31\xaa\x75\x0e\x43\x6b\x81\x10\xa4\x71\x8c\x38\x27\x61\x8a\x33\x87\xe4\x90\x72\x32\x99\x42\xc6\x49\x77\x08\x39\x27\x07\xc3\x0a\xae\x6b\x3d\x55\x19\x8f\x63\xc1\xe3\x18\xd9\x2c\xc2\xcb\xa7\xe3\x94\x13\x51\x06\x4b\x48\x39\x4e\x4c\x69\x48\x7d\x86\x38\x5e\x70\x14\x06\x4f\x58\x78\x57\xab\x8c\xfb\xc8\x84\x92\xa3\x35\xc7\x23\x5d\xf5\x60\x54\xf9\x32\x95\x75\x8c\xe8\xc8\x4a\xcf\x82\x93\xd4\xf5\x75\xd4\xeb\xe5\xfc\x31\x1d\x61\x61\x7a\x36\xc9\xf9\xb4\x2f\x75\x57\x47\xb6\x03\x41\xf1\x42\x70\xab\x15\xb4\x7d\x6f\x9c\x87\x72\xbd\x04\x6a\x30\x71\x73\x12\xa6\xb9\xab\x9f\x6c\x66\xc5\xb7\xdb\x2e\xd7\xeb\xa5\xad\x58\x03\xc2\xd0\xac\xc6\x38\x93\x5b\x8d\x4c\xcb\x52\xe1\xb5\xa5\xb2\xbb\x50\x38\x6f\x04\x7a\x2c\x50\x2d\xdc\xe3\x3c\x8c\x27\x3d\x5f\x73\xa2\xfc\xd5\x2a\x32\xbd\x27\xb4\x98\xf3\xd0\x53\x79\xcd\x6b\x4a\x73\x57\xc6\x29\x15\xaa\xab\x5a\x4c\xe1\x70\xfb\xcf\xb8\xbf\x9f\x71\xc5\xc9\x8c\xc3\x95\xf9\xbf\x34\xff\x6f\xcc\xff\x4b\xf3\xff\xde\xfc\xbf\xd0\xff\xad\x67\x29\x27\xa2\xbf\xa2\x72\x2e\xe4\x52\x73\xde\xdb\xed\xa6\x80\x43\x4e\x6e\x79\x9f\x8b\xdb\xed\xf6\x96\xf7\x97\xe2\xd3\x1b\xff\x98\xfb\x27\xe1\x1f\x6e\xe9\xc5\x35\x53\xe6\x6d\x97\x19\xd7\x88\x44\x53\x45\xdc\xbf\xb4\xbb\x02\x39\x54\x79\x67\x35\x2e\xfa\x9b\x79\x3f\xe2\x64\xe3\x63\x60\x25\xbb\x67\x6a\xfb\xb5\x33\x07\x43\xb3\x0c\x76\x55\x7b\x81\x7e\x61\x38\xe2\x8f\x77\x1d\xf0\x7a\x3d\x4c\x27\xfc\x60\xd8\xf0\xc0\x4b\xb9\x33\xcc\xa1\xb7\x7e\xea\x30\x68\x82\x5a\x2e\xde\xed\x36\xe3\xdb\xad\xe4\x68\x61\xa2\x22\x32\xb5\xa0\x49\x74\x61\x65\x92\x08\xdc\x43\xd2\x1d\x00\xe5\x37\xc9\xa6\x80\x54\x5e\xde\x24\x93\x29\x94\xb6\xc1\x91\x7f\xcc\xcd\x05\xc1\x3c\x59\x71\x48\x67\xb3\x57\x2c\x57\x94\x53\x99\x5c\x71\x10\x3c\xa3\xc9\x92\x83\x98\xcf\x93\x1b\x0e\x36\x84\x6c\x99\xe1\xd2\xa7\x1c\x2e\x16\x3e\x31\x4f\xee\x39\xd0\x25\x53\xc9\x05\x87\x0b\xc6\x67\x4d\x61\x77\x07\xb5\xaf\xa4\xc8\x68\x9e\xf7\x5d\x66\x6f\x55\x10\x98\xba\x17\x90\xdd\xce\x76\x65\xac\xe8\x41\x54\x40\x76\x35\x63\xf2\xef\x35\x60\xb2\xb6\x56\xbf\x5e\xa6\xf9\x75\x8b\xf3\xc3\xa0\x80\x2b\xa9\xd8\x92\xb6\xac\x85\xfe\x60\x30\xfc\xf2\xd0\x6d\xba\x5b\x8e\x81\x07\x16\x79\xd6\xa0\x27\x7c\xff\xc7\xf0\xcb\x21\xfd\xbe\x3a\x0d\xd3\x18\xf7\x80\xa8\xc9\x60\x0a\x48\x1e\xd8\xeb\xf5\x6c\x5c\xc3\x83\x03\x90\x3d\xa2\x33\x63\x98\x70\x90\xd3\x02\x56\x8b\x54\xe9\x9d\x11\xcc\xaf\xa4\x0b\x9a\xe6\x54\xcf\x9c\x3d\x6b\xd0\x4f\xeb\x55\xbd\xb3\x3b\x1b\xe0\xe0\x8e\xe3\x07\x43\xfa\xa8\x28\xe0\xb8\x19\xd2\x61\x0f\x57\x69\x8d\x23\x2c\x9b\x21\xfb\x4a\xbc\x5b\xad\xbc\xe5\x8e\xb9\x57\xa9\x96\x52\xba\x20\x40\x69\xe0\x29\xa7\x56\x25\x7f\xca\x1b\xfc\x48\xcd\x84\xe2\x33\x9f\x94\x8b\xa8\x47\x28\x18\x17\x87\xbe\x16\x2d\x08\xc7\xa0\x85\x94\x8f\x6b\x9a\x2b\x22\xcd\x73\xbe\x12\x3c\xa7\x44\x98\xcb\xe2\x0e\xef\x98\xc8\xcd\x02\xb0\x01\xfc\x94\xd0\x9c\xee\x6e\x18\x9c\xcd\x92\xe6\x79\x7a\x49\x13\x77\x69\x85\x79\x01\x9e\x2e\x5d\x8a\x7e\x82\x99\xf3\x71\xd1\xdb\xc6\x5d\x8d\x51\x26\x80\xd5\xc3\xb8\xdc\xe6\x19\xe6\x6c\x41\xdf\x94\x55\xf8\x37\x58\x30\x4e\xdf\x04\xb9\xab\x77\xc8\xc4\x62\xbd\xe4\xe1\xc7\x30\x05\x72\x95\x66\xd7\x89\x0f\xca\x90\x5d\xfb\x39\x77\x39\xf5\x33\x68\xb0\xf8\x84\x19\xb5\x77\x6c\x54\xbb\x40\xe1\x12\xb0\x05\x9c\x73\x32\x89\xd2\x4b\x1a\x41\x94\xae\xd5\x95\x90\xec\x93\x0b\x02\x1a\xb9\x13\xc2\x83\xd2\x06\xcf\x27\x18\x33\x3c\x88\xa8\x4a\x2f\xf5\xcf\xdd\x8a\x49\x9a\x47\x10\xcd\xa5\x58\x46\x10\x5d\x89\x5c\x45\x10\xb1\xf9\xc1\x52\xcc\xd8\x9c\xd1\xd9\x41\xce\x78\x46\x6d\xda\x9a\xef\xa4\x2e\xd2\x5c\x95\x79\xf5\xbb\xc8\x7c\x1f\x96\xe9\xdd\xc1\x5c\xc8\xdb\x54\xce\x72\x6b\x05\x78\x77\x7f\xd0\xec\xa8\xa4\x73\x2a\xa9\xbd\x0d\x44\xc9\xfb\x03\x13\xbc\x25\x82\x68\x9d\x53\x79\x90\x5e\x52\xae\xa2\x29\x3c\xe5\xc4\xc8\x3c\xbb\x2a\x1b\x84\xc7\x8d\x43\x0b\x05\x94\x3c\x40\xcb\x9c\xd1\xad\x92\x6c\x46\xb9\xc2\x0f\x98\x75\xdf\xa8\xf4\x2b\xba\xf6\xc3\x4b\xe3\xa0\xc5\xab\x43\xe4\xba\x4b\x56\x94\x46\x38\xbc\x7b\xab\x8c\x51\x50\x9e\xf6\x1a\xf7\x14\xcd\xb1\x1d\x2a\x25\xd9\xc5\x5a\x51\x14\x5d\x49\x3a\x8f\x40\x6a\xbc\xc1\xfb\xfa\x05\xc3\xde\x2c\x1b\xfd\x94\xd8\x6c\xf6\x28\x2a\x13\x8b\xc4\x11\xf0\x4c\x2c\xc6\xd5\x63\x25\xf8\x26\x56\x66\xd7\x78\x5f\x4f\x96\x2e\x2e\x72\xcd\xb9\x6a\xd9\x35\xd1\x6d\xe9\x87\xb1\x7f\x08\x35\x00\xe3\xaa\x64\x9a\xeb\xbc\xfa\x67\x6c\x7f\x82\x7c\xff\x5e\x6b\xc0\xec\x21\xdb\x88\xd9\x44\x1a\xdd\xea\x3e\x0a\xa9\x60\x95\xaa\x2b\xf3\x3d\x7a\x60\x6f\xda\xf6\x09\xd5\x35\x6d\xe3\x2a\x51\xe7\xea\x55\xaf\xa5\x7d\x95\x22\xd2\xc7\x8a\xf6\xab\xc7\x41\x6e\xc7\x3f\xc0\x2f\x03\x23\x08\x53\x3c\xd6\x18\x3a\x29\xe3\x29\x56\xe0\x32\x42\xa9\x7f\x89\x63\xdb\x7d\x93\xa8\x1f\x8a\x02\xe1\x5d\xec\x6a\x4e\x6b\x3f\xb7\xd0\x36\xe6\x54\x3d\xd9\xc5\x71\xa5\xb1\xbf\x66\x5b\x53\x17\xb6\xd6\x88\xdc\x2d\x0a\x14\xcd\x00\x98\x36\x5c\xfc\x71\x6e\x4c\x0b\x4d\x19\xbf\x1d\x49\xd4\xf3\x98\x1e\x71\xdc\x57\xe2\xc5\xeb\x33\x2f\xfc\xbb\xc2\xee\x55\x06\x85\x35\x5c\x49\xd4\x93\xf5\x1c\x22\xc8\x61\x8d\x24\x48\xd4\x13\x18\xba\xee\x56\x47\xff\x2d\xa7\xd9\x5a\xd2\x08\x43\xb5\x1b\x84\xb8\x66\x94\xa4\x4e\x4b\x30\xea\x68\x12\x2b\x69\x3a\x6b\xa1\xa2\x8d\x42\xfd\xa5\xf5\x20\xa3\xb7\x9d\x13\x7a\x79\x74\xb7\x42\x11\xfa\xcf\xed\xe8\xcf\x3f\xf3\x2f\x31\x32\xa6\x1d\x98\xa0\xc9\x7f\x8e\xa6\x5f\xe2\xa8\xb2\x58\xa6\xe3\x19\xdd\x05\xd7\xe4\xd1\x14\x27\x26\xb4\xa9\xe3\x52\x92\x1d\x69\xdd\x5a\x3b\x28\x88\x22\xd0\x30\xd3\xac\x26\xc2\x07\xdf\x7d\xf3\x15\xfd\x1a\x17\x45\xd2\x9c\x37\xbc\x69\x8e\xa3\x76\x8e\xb2\xdb\x0e\xde\x14\x05\xbc\xe5\xad\x11\xea\x5a\x0f\x42\x6b\xa1\x79\x67\xa9\x4a\x8d\x65\xe9\x15\x4d\x67\x54\xe6\x23\x33\x3d\xfe\x9c\xc3\x4c\xa1\xa3\xb2\x62\x12\x3d\x75\x68\xfa\x4c\xa3\xe9\xa9\xbb\x1d\x48\x37\xf2\xdb\xeb\x57\x3f\x2a\xb5\x3a\xb1\xa4\xd2\xd8\xc4\xf7\x35\x2e\xf5\x2b\xcf\xbe\x19\xc4\xc6\xcd\x2d\xa7\x51\x64\x4c\x66\x4d\xea\x2a\xcd\xf3\x5b\x21\x67\x3a\x75\x24\xfa\x87\x21\x0e\x26\xd1\x93\x34\x67\x59\x27\xea\x5d\x28\x91\xa2\xb4\x17\x25\x51\x2f\xb3\x62\xb8\x31\x1d\x23\x28\x27\xaa\x7f\x91\xe6\xf4\xdd\xc9\x2b\x63\x70\xbb\x96\x0b\xc8\xe3\xb8\xfb\xe0\x3f\xd1\x24\x3d\xf8\x34\xd5\xff\xfe\x9c\xfd\xd9\xfb\xf3\xe0\xcf\xfe\xf4\xcb\x04\x8f\xff\x7c\xf0\xe7\x03\x8f\x74\xd7\x78\xdc\xaa\xcb\xa1\xe3\x40\x3b\xf9\xe7\x83\x9e\x45\x6b\x3d\x8d\x23\x68\x88\xb4\x1e\xf4\x2c\x3a\x52\x05\xca\x61\x8d\x93\xb5\xbb\x39\xd0\xd8\xba\x28\x77\x3f\x55\x9d\x7d\x81\x9f\x28\x5a\x80\x31\xd4\x49\x97\x79\xf9\x70\x4a\x25\x33\x56\xce\x12\x1b\x43\x5a\xd6\x57\x56\x6a\x23\xca\x3f\x99\x68\xdd\x7a\x6d\xdc\x1b\x97\xac\xec\x2a\xe5\x97\xb4\x11\x42\x84\xc5\xf1\x57\xe6\x5e\x43\x93\xcf\x84\xa7\x89\x63\x34\xe8\xea\x24\x5d\x6a\x9d\x6f\xb7\xac\xe4\x63\xde\x9d\xbc\x8a\xe3\x81\xcb\x5f\x26\x55\x0a\x33\xcd\x55\x24\x11\x2e\xaf\x0f\x8e\x2e\xa9\x3a\x5c\x2c\x4e\x5c\xde\x1f\xed\x9a\x89\x18\xef\xb0\x5d\xaf\x7e\x8b\x7e\x82\x28\x23\x6a\x8c\x42\xfe\xcf\xfb\x2b\xfd\xc9\xa3\x46\xc4\x33\x36\x47\x32\xd4\xdb\x25\x11\x06\xaa\x71\x9f\x92\x6c\x89\x6c\xb8\x70\x25\x4d\xb0\xd4\x86\x9d\x37\xf0\xdd\x6c\xb2\x37\xc4\xd8\x9d\xda\x0a\xe3\x1f\x74\xce\xcb\xba\x29\xfe\x81\x0c\x7c\xfc\x10\xfd\x95\x44\x39\x55\x07\x16\x53\x98\x40\xbb\x63\x53\x68\xac\xff\x25\x93\x29\xf6\xca\x86\x09\x9f\xe2\xa4\xfc\xd2\x8b\xa0\x13\xf5\x78\xc2\x4d\x50\x10\x81\x13\x51\x20\xd6\x6f\x85\x16\xc2\x16\x63\x98\x00\xbe\xa9\x4a\x93\x8a\xad\x3c\x33\x11\x18\x23\x45\xef\xcc\x59\x4c\xfd\xc3\xb8\x9a\xa3\xa4\x7a\x3c\xa3\x77\x0a\xec\xc4\x26\x7e\x86\xdd\xbb\xfe\x54\xa6\x99\x7c\x6e\x8f\x27\xb2\x64\xed\xc0\x71\xb7\x09\x2b\x9a\x71\x4b\xc3\x2b\xe3\x4c\xb0\xe9\x9b\x74\xc1\x66\xa9\x32\x41\xbc\xd6\xf9\xa8\x2b\xb7\x5b\x89\xb8\xab\x1f\x8f\x15\xe2\x38\xa1\xe8\x94\xa3\xc8\xe1\x81\xce\x3c\x65\x0b\x3a\x33\x17\x46\x76\x6c\x36\xe3\xaf\xaa\x21\xe5\xbb\xea\x6b\x07\x6b\x38\xe5\xb9\x6d\xe3\x2a\x6c\x8c\x9d\x05\x06\x7b\x5b\x62\x51\x98\xf5\x9f\x5e\x08\x59\x8b\x34\xc9\x34\x9f\x53\x6b\xd6\x64\xd1\xfc\x9e\x82\xe8\xe8\xe9\xf1\x9b\x37\x87\x4f\x8e\x4f\xce\x8e\x9e\x45\x46\x31\xcc\xbc\x82\x54\xd7\x66\xc2\xdf\x85\xb5\xd9\x9a\xde\x50\x75\x2b\xe4\xb5\x65\x6b\x75\x3d\xa6\x77\x55\x69\x5b\xd8\x6f\xd0\x1d\xc3\x94\xc8\x7d\xe9\x88\x79\x27\xea\x95\xfb\xb7\x17\x2d\xf3\x0e\xbd\xcb\x28\x9d\xd1\x59\x34\x2a\xd3\x4d\x2b\xaf\xad\x54\x60\xae\x8b\x6e\xfd\x82\xc1\xf4\x8d\x7e\x6e\x54\x05\xec\x65\x10\x6c\xdf\xe6\xe4\x9a\xc3\x8c\x20\x65\x6c\xa1\x9f\x4a\xaa\x59\x50\x96\x2e\xf2\xed\xf6\x29\x47\x0b\x6c\x02\x81\xde\xe5\x72\xfe\xd4\x6c\x00\x2d\x51\x8c\xe7\x06\x97\xa0\x66\x7a\x69\x59\x3b\x8b\x63\x24\x26\xf6\xb3\x5d\xe3\xf6\x0a\xfb\x99\x51\xdc\xeb\xed\xe4\x26\xc6\x7e\x34\xd8\x22\x8e\x03\x4c\x20\x9a\x27\x14\xe1\xed\x1a\x75\xd9\xc0\x49\x83\xc1\x8e\x1f\x97\xe4\x89\x4e\xf5\x6a\x6f\xb4\x86\x5c\x48\x43\x0b\x98\xf2\xb4\x7a\x17\x00\x78\xbb\x45\xac\x99\x48\xba\xdd\xdd\x8c\x50\xdf\x97\xc6\x09\x9f\xd5\x92\x1a\x3b\xb7\x52\xa3\x69\x78\x7c\xc8\x8d\x81\x37\x69\xd6\x62\x34\x0a\xb4\x4d\xef\xaa\xfa\x82\x3f\x13\xb7\x7c\x21\xd2\xd9\x5b\x29\x2e\x25\xcd\xf3\x38\x66\xfd\x74\x36\x3b\xba\xa1\x5c\x79\xb5\x88\xd1\x42\x98\xaf\x11\xb4\x95\x69\xd5\xd1\xea\x8c\xef\x56\xcd\xaa\xd7\x26\xa5\x7a\xfa\xcb\xb6\xea\x55\x18\x23\xce\x94\x67\x74\x71\x26\xae\xa9\x89\x13\x1f\xbc\x6a\xde\xd7\x18\x80\xed\xde\xb1\x6d\x6e\xf2\xee\x9b\x0d\xac\x91\xb9\x96\x28\xfd\x7e\xc5\x81\x1d\xa5\xbd\x75\xc5\xde\x6a\xa0\xe7\x9c\xcf\x90\xb4\x1a\x80\x0f\x9c\x6c\xea\x7c\x4a\x12\xa5\xab\xd5\x82\x59\xd6\xfd\xc1\xdd\xc1\xed\xed\xad\x16\xfc\x96\x07\x6b\xb9\xb0\x1c\xf0\x2c\x0a\x94\x8b\x27\x6e\x0d\x76\x9b\x0b\x06\x9b\x35\x5b\x4b\x6a\x72\x44\x56\x35\xd1\x48\x24\xd4\xb2\x2b\x2f\x39\x9c\x71\xb2\x49\x67\xe9\x4a\x51\x99\xa0\xd6\xb3\xf3\x3a\x23\xb5\xdd\x96\x6e\x3a\x47\x3c\x8e\x4b\xbb\x06\xa7\x6c\x32\xa6\x0d\x7b\x4d\xae\xac\xd2\xe8\x88\x9b\x7b\xa6\x5f\x72\xf2\x96\x63\x78\xc9\x31\x28\x99\xf2\x5c\x03\xc0\x35\x92\x4c\x5a\x39\xa0\x63\x6e\x2c\x34\xb3\x8c\xae\x54\x84\xc1\xbe\xd6\x46\xe6\xf6\x54\xc9\x2b\x2a\xbc\xdd\x56\x27\x8a\xa5\xf5\x8d\x4b\x6c\xbe\x5b\xb3\x8b\xea\xfd\x39\x5b\xd0\x20\xf7\x42\x5c\x98\xe3\xc5\xa4\x59\xa3\x33\x89\x19\x7b\x2b\x98\xa4\xf5\x7c\x54\xe1\x31\x3a\x31\x5d\xfe\xcb\xc9\x1f\x69\x69\x30\xa7\x8a\xac\xd5\xfc\xe0\xbb\x08\x83\x0a\x8e\x55\x9b\xc7\x99\x6d\xb5\xea\x0d\xbd\x53\xc9\xee\x91\x67\xa2\x8a\x69\x08\x7c\x47\xca\x27\x4d\x07\xa9\x1d\x0b\x1d\x83\x60\xdc\x21\xea\x4a\xb7\x52\x69\xef\x15\xde\x54\xa7\x98\x53\x70\x54\x23\x19\x40\x1d\x55\x27\xd1\x6f\xa7\x27\xcf\x0f\xce\x8e\x7f\x3e\x7a\x13\x41\x1d\x4f\x27\xd1\x6f\x07\xe1\xd7\x65\x7a\xe7\x66\xf9\x95\x37\x92\x85\x3a\xe5\x6f\x3d\xcb\xff\x81\x3c\x1c\x0c\xe2\x58\x3d\x7e\x34\x18\x14\xc5\xe8\x8c\x7b\x81\x82\x6c\x32\xb1\x5c\x0a\x9e\x6c\xec\x5a\x4a\x76\x60\x07\x1d\xcd\xf0\x3c\x58\x2d\x52\xc6\xa1\xf3\xe5\x83\x2f\xa3\xa2\x08\x8f\x9f\x27\x91\x45\xf1\x11\x98\x68\x26\x10\xe9\x9a\xa3\x69\x9d\x65\xac\x1a\x9c\xa8\x29\xd9\x14\x0e\xe5\x57\x75\xac\xac\xee\x68\xb5\x36\xff\x35\xf4\x3e\x5f\xc5\x8f\xb4\x6f\xcc\x52\xd0\x07\x5e\xde\xe3\xf1\x8a\x93\xb3\xe0\xc8\xef\x0b\x67\x92\xff\x19\x4c\x67\xb0\xfa\xcb\xb9\xdb\x6a\x74\x86\x2c\x2e\x78\xd6\x2a\xae\x99\xfa\xa0\x14\xc5\x2a\xa1\xcc\x1c\x54\x38\xe7\xc5\x9f\x29\x72\x52\x5b\xf9\x59\xaf\xd8\xc6\xa6\x0e\xab\x29\x47\x52\x26\xf5\xed\x94\xb8\x6a\xcb\x41\x3b\x71\x65\x5a\x4f\xc7\x7f\x3d\x17\xd0\x06\x5d\x88\x6c\x2b\x35\x30\xd3\xea\xca\xd0\xb2\x5d\x6a\x22\x8d\x69\x89\xd1\xa2\xc6\xed\xf6\x15\xf7\xcf\x18\x29\xdc\x12\xa1\xb9\x06\x30\x5a\x02\xc6\x3e\x01\x6d\x07\x8c\xdd\x70\x26\x8e\x3c\xb4\xd5\xf6\x0b\xb5\xa1\x1d\x5c\xad\xf6\x3a\x3b\x5b\xc8\x5c\x56\xef\x5f\x82\xe6\x6a\x49\x10\xbc\x7f\xae\x03\x18\x43\x65\x01\x6d\xf0\x8a\x3d\x57\x87\x37\x4d\x6d\x39\x25\xe6\x8c\x6a\x14\x5c\x30\x31\x89\xd6\x72\x11\x41\x64\xa7\xca\x00\x5b\x23\xbc\x08\x22\xdd\x85\x68\x0a\x82\x4c\x22\xd7\xba\xd3\xbc\x7a\xed\x66\x34\x05\x46\x26\x91\x93\x95\x23\x70\x35\x35\x97\x4e\x3d\xc9\xf6\xb9\x6c\xa7\x92\x52\x75\x36\x8b\x6e\x22\x88\x1a\x2c\x92\x6e\xd8\xce\x9f\xd1\x9c\x56\x5c\x4e\x04\x51\x1d\x33\xb9\x84\x0a\x1d\x45\x10\x35\x99\x09\x93\xd4\xe4\x65\xac\x06\xb7\x86\xa9\xac\xb3\x77\x80\xa8\x6c\x9e\x13\x3a\x63\x92\x66\x4a\xbf\x5e\x29\xb5\x32\x9a\x55\xf7\x9c\xfb\x97\x60\xcf\x46\x10\xe5\x22\xbb\xa6\xea\x6d\xaa\xae\xa2\x9a\x29\x8d\xac\x23\x8c\x2a\x50\x8e\xb5\xc4\xb0\x17\xe7\x4e\xd4\x14\x37\xb0\x4f\xc8\xe0\x4a\x67\x40\xe3\x48\x0a\x9d\xc8\x29\x1e\x1b\x13\xeb\x1f\x69\xbf\x34\x2c\x43\x6a\x22\xa7\x60\x3e\x26\x41\x33\x72\x6a\xb3\xea\xa7\x3a\x65\xfa\x4c\x35\x41\x0d\xca\xd8\x9d\x21\x93\xcf\x9f\x9a\x84\x1d\x65\xf5\x8e\xee\x6b\xf9\xb3\xf5\xb9\x4b\xed\x65\x75\x1f\x65\x70\x99\x41\x16\xba\x8f\x99\xa0\xa3\x7b\x63\x98\x1b\xe3\x9d\x34\xb8\x4a\xab\xa8\x94\x71\x41\x97\xb3\xff\x86\x2e\x03\x0f\x18\xc0\xe7\x95\xea\x6e\x46\xe7\xe9\x7a\xa1\x72\x7f\x8c\xcd\xb8\xa2\x52\x13\x31\xa1\xe9\x9a\x17\x9d\x39\xbd\xed\xfc\x4a\xa1\x14\xce\xed\x7b\x51\x3c\xaf\x1d\x76\xbb\x53\xa4\x70\x9c\xbb\xa4\x7e\x8c\x14\x09\xdd\x34\xac\x63\xf8\x5a\x2e\x82\xd4\xc1\x34\x51\x44\x19\x1c\x8d\x14\x79\xc3\x51\xad\xab\xa0\x30\x76\x78\x7c\xec\x11\x3a\x09\x14\x51\x81\xe4\x94\xd4\x0a\xee\x16\x6a\xf9\xda\xac\xa0\xbc\xaa\x5f\x13\x03\xe7\x82\x36\x79\xc6\x1d\xa3\x3e\x05\xbe\x73\x2d\x88\x73\xf3\xdb\x01\xa7\x07\x50\x7b\xf4\xfc\xe0\xea\xb5\x7e\x69\x52\x65\xe4\x30\x6b\x52\x55\x5d\xbf\xd0\xa8\xd3\xa1\xe3\x3d\x95\x5a\x5d\xf8\xde\x1a\xcb\xe8\x16\x23\xcc\x09\xb7\x64\x88\xf6\x6d\x3f\x8c\x1f\x9c\x7d\x0a\x22\xf8\x40\x6d\xce\x2f\xa9\x7a\x27\x59\x6b\xd4\x93\xb6\x79\x83\x9f\x34\x89\x5e\xcb\xcf\x2b\x07\x77\x8f\x4c\xfe\x06\xb3\x04\x91\xbb\xb1\xa3\xc9\xf3\x84\xfd\xd5\xd8\xab\xae\x24\x0e\x0d\xdb\xdc\xfc\xa0\x92\x9b\xb0\xec\xc3\xc6\xae\x80\x44\xc1\x5a\x2e\x8c\xc9\xe7\x7f\x85\xf5\xfa\x5c\x37\x42\xbf\xf9\xd6\x8e\xc8\xb6\x8e\x80\x51\xad\x71\xd7\x1f\xeb\x23\xc3\xc9\xf3\x80\x7b\xfb\x58\xed\x73\x77\x22\x4b\x54\xf1\x91\xb7\x48\x52\xbb\x07\xba\xd1\x53\x43\x2f\xa2\x1e\x0a\xcb\x8f\xa3\xa4\x13\xf5\xc2\x14\x73\x53\x32\xd4\x2a\xad\x2c\xda\xbc\x47\xe2\x6b\x4e\x3e\x06\xfd\x7a\xf2\x37\x42\x25\x68\x14\x13\x44\x9a\xa2\x77\x34\x5b\x2b\x21\x3b\xcb\x75\xae\x3a\x17\x34\x88\x96\xd0\x77\x5e\x5d\xee\x52\x7a\x27\x79\x93\x3d\x37\x62\x68\x96\x43\x79\x78\x71\x77\x27\x41\x3d\x03\xef\x4b\x9a\xe6\x9a\x79\x44\xfe\xd1\xd4\xf6\xda\x72\x4d\x65\xa2\xbd\x33\xe2\x49\x0d\x9e\x0d\x66\xb8\xa1\xba\x76\xb3\x6b\x0a\x3b\x57\xc3\x2a\xa5\x80\x27\xdc\xc7\x84\x6a\x9e\xa9\xba\xfd\xb7\x51\x9a\x7c\x1b\xf4\xfb\xa4\x79\xa3\x07\x31\xc6\xc8\x96\xca\x27\xaa\xb0\x2c\xd5\x7b\x4e\x9e\x04\x80\xff\xd4\x30\xc2\x79\xc7\xad\x9b\xe7\x3b\x8a\xde\xb5\xa0\xf2\xea\x7e\x24\x4d\x8e\xac\x0d\x35\xe2\x10\x66\x05\x6a\x76\x42\xf9\x8d\x6a\x4a\xa3\x1b\x78\xc1\xc9\x27\x8e\x5e\x71\x3c\x7a\xc1\xfb\xc6\x8a\x80\xbc\xe3\xf0\x82\xbb\x43\xde\xd6\x98\x04\x1c\xbd\xe1\xe8\x05\xaf\x61\xfa\x42\x97\xb1\x6b\x91\xbc\xe6\xd5\x8b\x61\x64\xc8\x7b\x93\xc2\x72\x97\xe1\x17\xaa\x5f\xd3\xc5\xa2\xad\xfa\xf0\x82\x15\x65\xeb\xcd\x57\x92\xa6\xad\x17\xef\xb7\x30\xcf\x2a\x34\xdb\xa2\xd8\x41\xf8\x47\x4e\x5e\x70\xf8\x4d\xff\x1f\xfd\x58\x76\x9d\xfc\x66\xed\xb1\x7e\xe2\xe4\xc7\x00\xfe\xbf\x9b\x26\x7e\xe2\xed\x74\x61\x5d\x3f\xc3\xda\xf5\x07\x2b\x99\xee\xfa\x09\x52\x1c\x1b\x5b\xc5\xf6\x8f\x24\x7a\x42\x53\x49\x65\x27\x2a\xef\x34\xc6\xf6\xa2\x29\x33\x4d\xbf\x36\x19\xf2\xc0\x8b\xb5\x8c\x54\xcc\xe3\xb8\xee\xe5\x17\xda\xd0\xd1\x9a\xa5\x98\x5d\xd5\xc3\x02\x86\x96\xe1\xff\x99\x1b\x0f\x52\x8b\x28\xe1\x17\x4e\x7e\xe5\x28\x72\xaf\x11\x86\x3f\xb8\xf5\x27\x2d\x13\x94\x24\xbf\xf0\x38\xfe\x83\x8f\x27\x53\x5f\xac\x4d\x1a\xff\x99\xff\xab\x6e\xa0\xa3\xbf\xe1\x7e\x5a\xb5\xd9\x25\x4a\x16\x50\x06\x1d\x50\xd2\x79\x21\x52\x49\x26\x53\x73\x22\x0b\x5c\x92\xe7\x3e\x24\x2c\x48\x69\x46\xa6\x3f\x44\xc6\xa4\xfe\xef\x34\xc7\xe5\x76\xdb\x95\xba\x1d\x5d\xae\x6d\x98\x54\x5a\x48\x7f\xb4\xa1\xd5\x20\x8c\xff\x08\x51\xa2\x4a\xef\x48\x21\x81\x49\x48\xa5\x89\x0c\x50\xda\x59\x38\x3b\x0e\x2b\x02\x60\x7b\x26\x29\xc9\x75\xdf\x69\xd7\x20\x97\x24\x93\x71\x9c\x49\x7f\x07\x77\x0e\x6b\x49\x72\x19\xc7\xb9\xec\xdf\x7c\x37\x5a\xcb\x31\x93\x04\x09\x49\xd6\x32\xb8\x9e\x1b\x4f\x06\xd3\x9e\x90\x1a\xba\xa9\x8c\x63\xd4\xd5\x39\x52\xe9\x4e\x9d\x1f\x1c\xcd\x2e\xe9\x9f\x0f\xd0\x9f\xb3\x1e\x7e\x80\xf1\x76\x6b\x72\xfe\x40\xbe\xfd\x0a\xc7\x71\x3d\xe7\xd3\x2b\x29\x96\x41\xde\x38\x46\x4c\x12\x93\xdf\x0e\x6b\x21\x09\x93\x71\xdc\x63\x12\xe6\xb2\x11\x71\x64\x26\xdb\x36\xee\x42\xfe\x40\xbe\x1e\x6e\xb7\x0d\x3f\x69\x1f\xbc\xdf\xdf\xf7\x46\x43\x4f\x3a\xb2\x29\xf0\x64\x5e\x8f\xf8\xef\x10\xee\x5c\x88\x64\x58\x14\xc6\x64\x50\xd3\x6d\xf4\x44\x88\x05\x4d\x39\xee\xcf\x85\x30\x2b\x7c\x25\xf5\x0a\x5f\xa6\x2b\xb8\x92\x64\x26\x51\xb4\x4c\x57\x11\x86\xa5\x34\x2b\xdb\xbc\xfc\x9d\xb5\xd0\xbd\xd2\x8b\x61\xa9\x17\xc3\x32\x5d\xb5\xad\x85\x95\xfc\xd7\x3d\x9f\x0d\x10\x6f\xf4\x00\x47\x37\x72\xa2\xe1\xe7\x29\xfe\x59\x7a\x19\xe1\x29\x89\x3e\x59\xa6\xf6\x52\x92\x52\xf7\xfa\xc9\x68\x5d\x7d\xc4\x51\x89\xe1\xde\x82\xbe\x56\x14\x2e\x24\x89\x0e\x7d\xab\x26\x56\xce\xee\x71\x7e\xd9\xab\x02\x61\x0c\xb7\x92\x5c\xca\xf1\xb3\x5d\xf3\x05\xcd\x01\x8d\x76\x9c\x5f\xc7\x51\xa9\x87\x8e\x12\x17\xf1\x45\x8d\xa3\x37\xeb\xc5\x22\x4a\x9a\x82\x05\x6a\xe2\xb1\xc0\xe4\xd7\x5c\x06\x50\x69\x13\x0b\xe4\xbd\x78\x35\xf1\xbb\x97\x18\x8f\x79\x72\x21\xc7\xcf\x10\xc5\xa5\xaf\x32\x21\x48\x12\x9d\xd2\xee\xa0\x69\x9d\xed\x28\x1d\x07\x20\x48\x64\x01\x87\x66\x88\x41\xb0\xf5\x16\x73\x4b\x0f\xe6\xa8\x77\x6b\x67\x14\xf7\xa2\x69\x54\x8c\x2e\xe5\x76\x7b\xaa\x50\x53\xdb\x1d\x86\x7a\x3b\x94\xb0\xb1\x41\x2c\xcd\x0d\x97\xd6\xf6\x56\x6f\x68\x47\xdb\xe0\x48\xee\x78\x2b\x94\xee\x53\x36\xda\xd6\xa9\x32\x57\x0b\xd2\xba\x8b\x94\x2a\xe0\xd8\x46\x4e\x3b\x6d\x9b\xeb\xf3\xdd\x6a\x55\x1c\x77\x3f\x21\x45\xf8\x58\x25\x61\x6f\x4f\x25\x8e\xe3\x63\x89\x14\x9c\xca\x7d\xf1\x1b\x68\x81\x0b\x78\xda\xdc\xcf\xd7\xbb\x8d\xb0\x39\xea\xa2\x9a\x1f\x21\xdd\x0d\x4a\x6d\xa2\x90\x4a\x69\x41\x8a\xf8\x98\xf7\xa2\x4e\x94\x18\x5b\x06\xc6\x6f\xbc\x39\x5c\x38\xd4\xb7\xd2\x84\x7e\xb0\x1d\xf0\x31\x96\x22\x0c\x27\xb2\x19\x99\x02\x5e\xb6\x22\x99\x4a\xd4\x8e\x63\xf4\x56\xf6\x4d\x29\x62\xe2\xff\x9c\xc8\xc9\x07\x39\xd5\xcf\xb8\x80\xb3\x9d\x26\x5e\xc9\xb6\x38\xf6\x5d\x52\x5a\xb7\xab\xc9\x99\x9c\x6e\xb7\x6a\x12\xfd\xf3\x9f\x65\xb9\xe9\x76\xfb\x56\x4e\xf4\x72\xc1\xd3\x02\xbe\x90\x6d\x77\x17\xf5\xdd\x09\x3f\x9b\x57\x97\xab\x97\xde\x57\x3f\xa3\xd2\x3d\x14\xbb\x40\x06\xf0\x4c\x36\xb7\x8c\xb5\x8b\x14\xab\x15\x9d\x79\x7d\x80\xa4\xb9\x66\x67\x68\x01\x6f\x76\xa7\xc7\x2c\x2b\x1f\x1e\x0e\xac\xb1\x8a\xb9\x4f\x5c\x5d\xa5\x0a\xe6\xa4\x8b\xba\xc6\x92\xbf\x7f\x78\x7a\x7e\xf4\xe6\xec\xe4\xe5\xd1\x29\x86\x59\x95\xfc\xf2\xf4\xfc\xe5\xd9\xd1\xc9\xe1\xd9\xf1\x09\x86\x55\x90\xfe\xe6\xec\xe8\xe4\xe4\xdd\xdb\xb3\xa3\x67\x18\xae\x88\xa4\x88\xc2\x02\x86\xbd\x79\x6f\x85\x61\xd9\x1a\x80\x3a\x8e\xbf\x90\x48\x9a\x90\x4f\x9d\x67\x12\x75\x07\xa0\xe1\x7f\xd3\xca\xda\x8d\x6d\xa8\xf1\xd5\xf8\x0a\x19\xc3\x61\x35\x19\x4e\x61\x89\x93\xe0\x15\xe3\xc4\x7c\x76\xc9\xb8\xd0\x60\x9d\x61\x49\x94\xf5\x42\x6b\x95\x5d\x90\x20\xaf\xa4\x89\x8c\xbf\xb3\x44\x6d\x48\x3b\x6f\x34\x6d\xe6\xf5\x62\x41\x23\x63\x4a\xf3\x52\x22\x81\xed\x3e\x65\x64\x60\xc3\x70\x7a\xff\x79\x3c\x4a\x7f\x60\x26\x70\xa1\x09\xea\x44\x6e\x90\x9a\xb0\xa9\x46\x4a\x59\xb8\x2b\x9e\xc9\xd2\xa7\x22\x8c\x10\xa1\x01\x31\xc4\x85\x24\xa2\xf2\xf3\x17\x12\xe5\x44\x9a\x1b\xaa\x47\x5d\xb4\x26\xb9\xfd\x24\x31\x36\xe1\x2b\x46\x16\x73\xea\x96\xd6\x2e\xfe\x79\x85\x3a\xed\xb0\x2c\xa0\x55\x11\x84\x05\x28\xf1\x62\x16\xc7\xd9\xfe\xbe\x15\xbb\x7d\x83\xe7\x3b\x5b\xe4\x9d\x24\xdd\xe1\xc8\xc7\xe0\xf8\x28\xc9\x00\x5e\x4b\xeb\x4f\xb0\x8b\x4d\x37\xba\xd3\x49\xb7\xfb\x51\xf6\x7a\x45\x01\x36\x31\xcc\xa6\x6b\x1b\x14\xc5\xe8\xb5\x9c\x3c\x6f\xa3\xf0\xf6\xb2\x12\xb0\xfb\x7e\x2e\xc5\x12\xbd\x96\xb5\x28\xb8\x76\xd0\x0f\x77\x6f\x6f\x7c\x22\xe1\xbd\x84\x4f\x12\x5e\x34\x31\xd9\x8f\xcd\x9d\xe5\x43\x3e\xe9\x75\x17\x32\x1e\x3b\x44\x4f\x6e\xb7\x96\xd2\x21\x4e\x7e\x46\x12\x4f\x5e\xc8\x29\x1e\xd3\x84\x53\xc4\x71\x01\xbf\x49\xf2\x00\xb1\xd5\x95\xe0\x74\xcb\x56\x62\xb6\x65\xab\x74\x86\xfb\x5f\x6a\xc1\x84\x5a\xd7\x0d\x6f\xf6\x95\x4a\x0c\x3f\x49\xe2\xad\xf6\x0d\x81\x2e\x19\x3f\x0c\xbf\x6b\xaa\xe1\xad\x3d\xe1\x57\xfd\x96\x53\xf5\x72\xb9\xa4\x33\x96\x2a\x0a\x3f\xeb\x14\xe3\x59\x53\xa5\xfd\x12\xb2\x8e\x7f\xe8\x17\x67\xb7\xf1\xf4\x2a\xe5\x9c\x2e\x40\x09\x72\xdd\x7f\xe6\x6f\xed\xa5\x82\x0c\x80\x0b\xa3\xd4\x17\x3b\x58\x4f\x34\xe2\x3a\xe8\x7d\xe3\x25\x53\xa1\x85\x0f\x77\x88\x62\x5e\x80\x22\x13\xdf\x4f\xfc\x45\xd0\x14\x29\x8c\xb3\x0e\xb0\x46\x46\xe1\x0e\x94\x70\x01\x69\xfd\xd3\x75\x7f\x25\x72\xe5\xc6\x81\x54\x2f\x8a\xe0\x77\x59\x5a\xae\xf6\xa2\x07\x0f\xa2\xde\xef\xd2\x58\xad\xe2\x62\xf4\xab\x8c\xe3\x9f\xe5\x76\x8b\x7e\xad\xa3\xe0\xc6\xf5\x50\xc3\xd1\x0e\x87\xc6\x47\xd8\x29\xe3\x02\xf7\x94\x5e\xaf\x8a\xeb\xc5\xc5\xa4\xd7\xa3\xa2\xb6\x42\xdb\x6f\x85\x54\xc9\xf3\xaa\x69\xec\x84\x52\xbb\x82\x4c\xd0\xa5\x27\x12\x51\x81\x81\x8a\x42\xcf\x62\xd8\xcd\x10\xa4\x05\xfc\x24\xc7\x4f\xea\xdf\x7f\x91\xd5\xcd\xf5\x42\x18\x67\xd5\x44\x89\x38\x56\xa2\xcf\xc5\x6d\x33\xb7\x4d\x2d\x33\xfe\x21\xe3\xb8\xfb\x9b\x1c\xa3\x4f\x92\xa0\xf7\xd2\xe8\x17\xfe\x90\xd8\x18\x2a\x3f\x84\xf7\xd2\x3c\x0c\xfb\x82\x7b\x55\x14\x13\xf0\x44\x6a\xe4\xfe\x49\x86\x93\xa0\x77\xd4\x10\xe3\xe4\x7a\xc7\x20\xa3\x95\x13\x0b\x4a\xc6\x71\xf7\xba\xcf\x96\xba\x1d\xeb\xed\x9f\xc7\xf1\xef\xa6\x94\xb1\xf1\xeb\x12\x12\x4c\xad\x89\xa4\x94\x0a\x3c\x46\x4f\x24\x49\x05\xec\x36\x87\x22\xd7\xd3\x08\x98\x80\xae\xee\xd3\x13\x49\xa2\x5d\xfb\xc4\x88\xf1\xce\x6f\x28\xb2\xae\x0c\x51\xfd\xaa\x9b\x46\x70\xb1\x20\x1b\xfe\x0b\x4b\xc7\x0b\xda\xb7\x76\xb0\xb6\xa4\x95\xff\xdc\x02\xaf\xb1\xd0\x81\xcf\xa4\x99\x0b\x18\xf8\xc0\x58\x99\x80\x5c\xc0\x5a\xc0\x42\xc0\x5c\xc0\x4a\xc0\x95\x80\xa5\x80\x1b\x61\xa3\xcb\xff\x2a\xad\xf3\x5c\xf2\xb3\x2c\xe0\xd2\xc6\xcc\xbd\x17\xe4\xc6\x78\x41\xc2\x85\xde\xcd\xfe\xaa\xba\xe3\x0b\x73\xbb\xa5\xdc\x6e\xaf\xfb\xbf\xd2\x8b\x9f\x99\x6a\x7e\x81\x5b\x11\x5e\xc9\x72\x28\x02\x64\x71\x27\x42\x1e\x55\x90\x4b\x81\xae\x21\xfa\xb8\xa6\x6b\xfa\x9a\x65\x52\xa8\x34\xbf\x8e\x30\x1c\x0b\x72\x24\xe2\xf8\x48\x58\xca\x33\x3a\x16\xdb\x2d\xca\xc4\x8e\x36\x0c\xa8\xd1\xb0\xff\x24\x8d\x53\xf4\xa1\x70\xd1\xe7\x8c\x65\x17\xbd\x63\x0a\xe1\x51\x2e\x46\x78\x43\x49\x2e\xfa\x73\x0e\xb9\xd0\x0f\x86\xe4\x69\xb2\x42\xd1\x0e\x4d\xcb\xc5\x78\x21\x10\x4e\xd6\xc2\x05\x8f\x04\x55\x14\xc1\x8b\xa9\x99\x2b\x2a\x11\x2e\xa0\xfb\x9b\x5e\xea\xba\xf5\x0b\x11\xc7\xb7\x62\x8c\xe6\x82\x74\x07\xb0\x12\xe4\x56\x38\xfd\xd6\x19\xbd\x53\x6f\xc4\xcc\xc4\xb0\x33\x4c\xc9\x85\x40\x99\xc0\x7d\x61\xa1\x85\x56\x02\x36\xd9\x55\x2a\xd3\x4c\x51\x69\xa2\xb6\x68\x86\x1e\x16\xb5\xc1\xae\x84\x3d\x88\xd5\xd5\xcf\x45\x81\x93\x3b\x11\xc7\x77\xc2\x9f\x34\x8c\xd1\x95\x20\xd5\xab\x8f\xcc\x04\x4b\x41\xae\xec\xb5\xe5\x8d\xfa\x96\x8e\x0f\xb8\x12\x90\x09\x5c\xe0\x64\x21\xc8\x4f\x32\x74\xe0\x38\x14\x15\x06\xd0\x59\x42\x4a\x7a\xef\x4a\x5f\xdb\xc2\x66\x85\x9d\x0a\x38\x17\xf0\x54\xc0\xb5\x80\xb7\x82\xe8\x09\xdb\x65\x4d\x37\x73\x9e\x28\x30\xf4\xdb\xc5\x78\x1f\xad\x45\x1c\xa3\xb5\x6d\x8c\x50\x0c\xb9\x9e\xe9\x5c\x10\x0a\x7a\x1a\x30\xac\x85\x66\x39\x3f\x88\x5d\x46\x17\xf8\xae\x9a\xb7\xa6\xbf\x75\xd7\x9f\x57\x3c\x70\x60\x62\xd4\x72\x31\xcc\x93\x74\xe6\x35\x83\x9d\x30\x54\x37\x1e\x51\x13\xf8\x53\x96\xe7\x2e\x0e\xcc\x84\x9b\xb8\x8d\x2e\xc9\xb8\xaf\x3b\xea\x7c\x22\xc8\x66\xde\x1a\x1d\x88\xde\x76\x3e\x38\xd2\xf4\x52\xec\x06\x96\x33\xec\xe8\x6b\x44\x6d\x48\xa3\x40\x2f\x41\x2a\xb9\x80\x3a\x85\xf5\x89\xe8\xcf\xab\xf0\xef\x68\x60\x0c\x4a\x4d\xc7\xb0\xee\x56\x69\x79\x56\xc0\x99\xd8\x73\xc7\xda\xc6\x98\x84\x26\xdd\xa1\x13\xc7\x94\x26\xae\x8d\xb8\x66\x3e\x8f\x17\xd9\x54\x51\x14\xf0\xaa\xc4\x0d\x5f\x88\x06\xcb\xf3\x4c\x90\xc8\x81\x31\x82\x37\xc2\xdf\xe6\xf0\xdc\x3c\xe9\x12\xef\x7c\x9a\xbd\x8d\x02\x3d\x13\x18\x3e\x0a\x72\x27\xe1\xb5\x46\x0e\xe5\x8c\xc0\x93\x1a\x1a\x79\x1f\xa2\x91\x4f\xc2\xa8\xb7\xe6\x54\x19\x5d\xe1\x0b\x61\xa0\x01\x3f\x0a\xf2\x42\xc0\x6f\x82\x74\xbb\xe8\x89\x88\xe3\x27\x7e\x13\x1a\x74\x1e\xc7\xd7\xe5\x4d\x89\x26\x01\xc3\x4f\xa2\xed\xce\x19\xd7\xfd\x13\x33\xa7\x4c\x70\x93\x19\x7e\x17\xe4\x0f\x85\x9e\x09\x68\x44\xdd\xeb\xa2\x4c\xa1\x8f\x02\x77\x4b\x4d\xc9\x47\x81\xb1\xf9\xf4\xcd\x37\x84\x90\x85\xac\x42\xf2\xe9\xec\x3f\x19\x9c\x11\x44\xc9\x67\x73\x64\x75\x55\xad\x37\xdd\xe8\xca\xca\x48\xa9\xd6\x89\xfb\x63\xb5\xd3\x87\x18\x1a\x71\x0b\x6b\xca\xae\x9a\xf5\x87\x7e\xc5\xde\x40\xbd\x1e\x7c\xca\xe8\xbd\xbe\x10\x53\x42\xa1\x8b\x54\xd3\x08\xc5\x14\xac\x89\xde\x7a\x2b\xfc\x2a\xc8\xef\x62\xbb\xed\xee\x2c\xe2\xae\xa6\xbf\xef\x64\xbd\xd7\x3c\x64\xe5\x8d\x1a\x6a\x0f\x1b\xfe\x59\xf6\x9e\x1b\x16\xbe\x28\x40\x21\xd9\x62\x17\xc6\x8b\xfa\xf9\xcd\x47\xe1\x74\xfc\xfd\x6c\xe7\x4a\x6b\x77\x39\xc5\xcf\x2d\x98\x65\x54\x06\x66\x78\x6d\xac\xf4\x5a\x04\x3c\x63\xb7\x7c\x45\x8d\xc1\x21\x2d\xe0\x97\x96\xbd\xdc\x55\x7d\x2e\x94\xf1\xc6\xc3\x9b\xea\xd9\x9f\x84\x71\x23\xa8\xbb\x5b\xe9\x47\x6f\x45\xad\x73\x55\xa4\x1b\x77\x71\x1b\x08\x13\x7f\xd8\x5d\xb0\xcb\xc8\x60\xe4\xbd\x96\x7f\x60\xa3\xf2\x82\x13\x2d\x79\x13\x6e\x63\xc5\x2e\x88\x18\xaf\xfb\xe2\x3a\x59\xf7\xe7\x29\x5b\xc0\x9c\xac\xfd\xaa\x81\x99\x79\x36\xea\xea\x15\x59\x3b\xa2\x69\x66\x67\x31\x46\x1a\x01\x3f\x24\xd6\x66\xd7\x6d\x80\x38\xe6\xcc\x9a\x6b\x95\x49\x64\xe8\x3c\x97\x16\xe3\x94\xc8\x04\xad\xe2\x78\xe5\x09\x23\xa4\x44\xcb\x91\xb0\x8a\x63\xb4\x72\x74\x18\xcc\x35\x25\xfa\x13\x21\x6b\x8f\x9a\xc6\x33\xf4\x5a\x20\x8f\x2e\x0e\xb2\xab\x94\xf1\x4e\x76\x9f\x69\x81\x18\x27\x28\x23\x3f\x0b\x94\x62\x3c\xce\x2c\xbd\x49\x61\x0e\x33\x9c\xcc\x75\x5a\x32\xab\xad\x80\x55\x1c\x77\x73\xd3\x05\xdb\x9a\xb9\x36\xba\x08\x20\xac\xf9\xf1\x70\x12\x86\xa0\x57\x69\x6d\x8c\x8a\xb9\xfb\xdf\x0b\xf8\x43\xec\x53\x71\x8c\x7e\x13\x63\x84\x24\xa9\xa3\x16\x14\x99\x1f\xcd\xcb\x79\x72\x44\x41\x96\x47\x86\x20\xfb\x8c\x33\x65\xb3\x2a\xe8\x0e\x8d\xd7\x4b\x03\x1b\x69\xc9\x3b\x91\x64\xe3\x2a\x48\x28\xd8\xe2\x09\x2f\xa0\xfb\x93\x26\x93\x82\x5c\x4f\x22\xc1\xa3\x9e\x9a\xe2\xb1\x40\x12\x27\xd1\x9a\xdb\x48\x26\xb3\x72\x1c\x11\x31\xca\xa8\xb6\xb3\x9c\x6b\xb3\xe5\xc5\x82\x8e\x8c\x6e\xc6\x20\xf6\x38\x46\xc6\xf6\xa4\x21\xa6\x8c\xdd\x67\xa4\x70\x52\x3e\x02\xc5\xb8\x40\xd1\x3b\xdf\x66\xc7\x75\xb5\x53\x35\x0e\xd6\x75\xbe\xb6\xa7\x5e\x95\xec\xc2\x8e\x1e\x1e\xf4\x2e\xb0\xf7\x28\x41\xb9\xd6\xcd\x2d\x88\xcc\xc6\xd3\xa1\xe4\xac\xbe\x33\x7e\x92\xe3\xf7\xa2\x4f\x97\x4c\xa1\x6a\xf0\x27\x55\xfb\x12\x38\x4e\xfe\x10\xa8\x0d\x32\x36\x04\x3d\xae\xaf\xe3\x9f\xe4\x76\x6b\x5a\x1b\x3f\x4c\x86\x40\xed\x58\xbd\xe2\x86\x3a\x15\x19\xc6\x05\xd0\x56\xeb\x86\x61\xb7\xb1\x53\xba\x3e\x2c\x71\x01\xfc\x6f\xc3\xa1\x84\xc2\x28\x1c\x5f\x59\xeb\x8f\x76\x24\x11\x50\x3b\xb6\xf2\xc3\x55\xf9\x01\x94\x57\xd2\xe8\xbe\xd6\x2c\x31\x6a\xb1\x6a\x42\xfb\x21\x85\xa8\x81\x97\x16\xa8\x77\x0b\x28\xa3\x06\xda\x6e\x91\x7d\xd0\x7c\xad\x71\x17\xb7\x9e\xe2\xa6\x31\x62\x6e\x8c\x37\x57\x7e\x3d\x84\x5f\x84\x5e\xda\x03\x13\x5a\x7f\xb7\x36\x8b\x10\x75\x45\xbe\xe6\xb0\x42\x83\x7b\x8c\x27\x9d\xbb\x54\x8b\x10\xef\x25\x10\x20\x88\x4e\x66\x6e\x93\xbc\xd0\x0b\xce\x20\xb2\x59\x87\xa9\x9c\x2e\xe6\xee\xdc\x5f\x6a\x7c\x41\xf1\x48\x8e\x1b\xe8\xd4\xd9\x14\x5a\x0d\xd1\xb0\xb0\xc1\x64\xfc\x1d\x03\x92\x21\xc6\x4c\x14\x4a\xfd\x28\xec\x63\x10\x0e\x44\x30\xc4\xc1\x78\x56\x14\x1a\x29\xed\x0e\x7d\xe8\x86\x3e\x6c\x94\x2a\xdb\x73\xa5\x8b\xd1\xef\x7a\x17\x7f\x6c\xe8\x1d\xdc\x61\xce\x47\x01\x9a\x13\xb2\xd7\x39\x9c\x06\x77\xa2\xfb\x70\xd7\x6f\x84\x7b\x35\x26\xd2\xc8\x76\x9b\xfa\x4e\xd3\x50\x2b\x25\x98\x75\x05\x29\x00\x9d\xd6\x5b\x7b\x6e\x2b\x81\x8d\xa6\x63\xc9\x33\x01\xae\x8f\xe0\x31\xa3\x7e\xb6\xeb\x57\x3f\x95\xe8\x33\x99\x4c\xa1\x5c\x75\xfa\x8b\x19\x7a\xe2\x99\x42\xc7\xcd\xe3\xf0\x66\x0f\x72\x24\xd1\x47\x11\x68\xd0\x37\x9a\x60\x26\x6d\x88\xe9\x9d\xf0\x52\x2d\x79\x21\xd0\x8f\x25\x44\x2a\x73\x23\xd9\x17\xd7\xa4\xcd\x48\x64\xbb\x55\x20\x0d\x85\x6b\xe3\xe4\x68\x1c\x6b\x3c\xec\xdc\x6d\xed\xde\xb2\x2f\xae\xcb\x9a\x4d\x36\xa3\x35\xab\xb1\x22\x17\x56\x43\x23\x31\x0c\xba\xc4\xfa\x6f\xd1\x38\xfe\x45\x20\xae\xa7\x19\x64\xc5\x5b\x1b\x98\xb7\x5a\x89\x6b\xb1\xc0\x30\x52\x5e\x74\x34\x01\x88\xcf\x77\x85\x58\x23\xb9\x9c\x0a\xb0\x53\x8c\xeb\x52\x8d\xaa\x8b\x1c\xe5\xac\x87\x52\x87\x5f\x01\x5a\xf0\xe8\xcf\xc9\x8b\x56\xe5\x98\x22\x84\x7c\x14\xdb\xad\xfe\x7d\x2a\xc6\xba\xcd\x73\xdd\x5c\xf2\xa3\x91\x47\xda\xdc\x65\xee\x34\x75\xb8\xd6\xac\x79\xcd\xb0\x85\x72\x38\x55\x28\x4c\x84\x48\xa7\x46\x3b\xae\x4d\x95\x61\x4d\x20\xff\x7c\x14\xcd\x1b\xda\xaf\xdd\x6a\xe7\xe0\x62\x65\x59\xb8\xd9\x97\xda\x39\x57\x5b\x2f\x3f\x89\x38\xa6\x14\x6d\xec\x3d\x34\x36\x3e\x4b\x18\xdc\xda\x1f\xab\x0e\x0a\xd8\x18\x81\xa1\x35\x98\xb4\x40\x1f\x05\x7c\xf2\x97\xa4\x5f\x07\xd7\x89\x98\x7d\x6f\x63\x56\x57\x4d\xdc\xca\x74\x15\x54\xfe\xbb\x28\x60\xe3\xb0\x54\xf2\x51\xe8\x79\xd6\x8b\x1f\x9e\x19\x75\x11\xec\x4a\xc2\xd7\xca\xda\xdb\xfc\xd1\x9f\x8f\x3e\xc4\xb1\xe6\x45\xe8\xe4\xa9\x9c\xc6\x31\x47\x14\x9e\xb6\x1c\x98\xb5\xdf\x26\x6b\x74\xd6\x05\x2e\x8c\x14\xf5\xd4\x48\x45\xfa\x29\x38\x66\x7e\x26\x9a\xd1\x96\x4d\x67\xed\xd2\x69\x71\x20\x7f\xe1\xd1\x8c\x17\x37\xdd\x2a\xb3\x53\x54\xae\x65\xa0\xe5\x1e\x28\xfe\x5e\x7b\x66\x01\xef\x81\x7d\x19\x63\xe9\x2f\xaa\xfa\x55\x57\x95\x2e\x16\x2d\xfd\x76\x01\xb2\x5f\x08\x1b\x2a\xa6\x14\x86\x41\x98\x67\xc3\xec\xb2\x26\x37\xe1\x63\x44\xa3\xd2\x68\x13\x9b\x7b\xc1\x20\x25\x03\xc8\xc8\x70\xf4\x46\x36\x23\x02\x1a\x6f\x6c\x92\xf6\x7a\xb0\xd6\x22\x8d\xbb\xee\xcb\x6b\x5c\xb2\x5e\xcf\x47\x4f\xd7\x18\xb8\xc5\xeb\x6b\xbd\xdd\xa2\xb5\xc6\x36\x6c\x92\x4f\x89\x82\x83\x83\x6c\xbb\x95\x88\x69\x71\xc4\xdc\xcb\x87\xab\xa4\xc0\x0a\x98\x79\x76\x4d\x20\xe6\xaf\xa3\x0d\x44\x7c\x99\x66\x6d\x31\x75\x5a\x80\x62\x00\x21\xda\x00\x21\xea\x80\x68\x19\xbb\x68\x8e\xac\x82\xb2\x74\xb7\xfd\xf9\xfe\x0a\xdf\x5f\x89\xc4\x6e\x7f\x9d\xd2\x28\x65\x64\xf3\xf4\xf4\xf4\x64\xbd\x30\x31\x90\x92\x01\x3c\x3d\x3d\x3d\x55\xf7\x0b\xfa\x8c\x66\x8b\x54\x1a\xb5\xa2\x4d\x7d\xaf\xab\xf0\x99\x16\x8c\x72\x75\x42\x33\xe5\x12\x9e\x1d\xbf\xae\xbf\x59\x41\xbc\x7a\x37\x36\x62\xe6\x75\x08\xcf\x52\x95\x9e\x19\xa3\x7f\x2a\x5f\x2a\xba\x74\xb9\x9e\xb3\xb2\x13\x3f\x9e\xbd\x7e\x75\xb8\x58\x3c\x15\x8b\x85\x23\x78\x36\x6d\x27\xe1\xb9\x90\x4b\x17\xa4\xc4\xa5\x9c\x52\x9d\xa3\x4a\x7b\x4d\x67\x2c\x75\xd5\xbe\x66\x4b\xe3\x18\x60\x83\x51\x0f\xe0\x4d\xba\xa4\xb3\x37\x62\x46\x5f\xa7\x2b\xfd\x2a\x66\xd4\x75\xf1\x6d\xca\xb8\x77\xed\x74\x85\xdf\x2e\xd6\x97\x8c\x97\x0f\xbe\x8e\xd3\xf7\x2f\xac\x43\x80\xcb\x76\xfa\xfe\x85\x8d\x66\x51\xbd\xbf\x4d\xd5\xd5\x29\xbd\x0c\x12\x04\xe3\xaa\x7a\xad\xc1\xea\xf4\xfd\x8b\x33\xef\x10\xe1\x93\x8c\x21\xa2\x75\x48\xf3\x49\x7a\x8a\x4e\xaf\x28\xf5\xd5\x9c\xd1\x3b\x75\x26\xd3\xec\xfa\x69\x39\x49\x65\x92\x7f\x17\xeb\xcc\xf5\xb2\x28\x23\xcf\x65\xac\xc3\x78\x27\x75\x51\x3b\x72\x46\xae\x27\x19\x9b\xc2\x9a\x91\x9c\xc5\x71\xce\x82\x9b\x21\xd8\x1c\xad\x59\x1c\xaf\x59\x65\x98\x45\x94\xc4\xee\xbe\xe4\x35\x83\xd2\x76\x0c\x54\x28\x19\x56\x05\x88\x92\xf6\x5a\xd5\x05\x83\x39\x83\x19\x83\x15\xdb\x75\x29\x6c\xdc\x40\x7e\xc5\xea\xb7\x44\xc1\x92\x91\x16\x41\x5d\x69\xa4\x41\xc9\x60\x44\x1f\x3f\xfc\xfa\x9b\x51\xaf\x47\xb1\x72\xf1\x3c\xfe\x11\xf5\x10\xa2\x8f\x87\xdf\x8c\xa3\x81\xb5\x46\x08\x62\x99\x0e\xbf\x31\x5e\xfd\x41\xc8\x84\xc0\x3c\x01\x61\xb8\x61\x7b\x6f\xb9\x33\x4e\x3b\xc6\x91\xcc\x8e\x21\x1f\xd7\xee\xfa\xb0\x17\x63\x24\xc6\x91\x66\x30\x92\x8f\xcb\x40\xec\xbd\x9e\xc4\xfb\x3d\x04\x02\xfb\xee\x4b\x46\x36\x26\x1e\xdd\x99\x70\x51\xb0\x6f\x18\xa4\x79\xce\x2e\x9b\x5c\x9c\x77\xa3\xac\xbb\x3b\x48\x3a\x5b\x67\x35\x93\xdb\xda\x15\xd8\x7c\x4a\xe8\x84\x4f\x41\x15\xd8\x1c\xd1\x67\x62\x79\xc1\x38\x6d\xad\x7a\x32\x2d\x6d\x16\x0d\x9f\x63\x2e\x9b\x6d\x90\xaf\xe0\xe8\x6d\x23\x2e\x3e\x24\x1b\x91\xa8\x02\x56\x52\xac\x92\x48\x44\xc5\x14\x4c\xdc\x45\x0b\x0c\x1a\x02\xa3\x0c\x3b\x6f\xaf\x9e\x63\x44\xf4\xc5\xc5\x87\x89\x61\x5d\x57\x9a\x14\x84\xe3\x32\x7e\x1d\x83\x51\xf6\x38\xad\xaa\xc8\x4a\xaa\x30\xc9\xa6\xb0\x26\x1a\xb3\x8f\x76\x4e\xc4\xd7\x65\x28\xf8\x75\x1c\x1b\x87\x8f\x2a\x32\xc3\xda\xc8\xba\x2e\x8e\xaa\xee\x3c\xb3\x1d\xcf\x0b\x83\x35\x75\xf2\x1a\xe3\x9d\x6b\xd0\xdc\xa8\x47\xaa\x34\xff\x1a\x55\x02\xe5\x4a\xac\x4c\x8c\x08\x6a\x46\x43\xed\x68\xf4\x36\xba\x62\x88\xe3\x50\xc7\x34\x99\x82\x20\x83\x91\xa8\xae\x42\xe8\xf5\x44\xb5\x46\xf8\x44\x4c\xe3\x58\xba\xf0\x79\x13\x31\xc5\xa3\x5a\x9d\x44\x16\x45\x61\x34\xe1\x05\xd8\xb8\x31\x3b\xe1\x95\xbd\x2e\xab\x0a\x33\xd2\x7b\x70\x09\x51\xc7\xda\x3d\x44\x2c\x17\x07\xdf\x7d\xf7\xf5\xf7\x07\xc3\x28\xbc\x0c\x54\x06\x41\x86\x27\x83\x83\xef\xd3\x83\xf9\x74\xf3\xb0\x78\x70\xc9\x60\xcd\x69\x9e\xa5\x2b\x5a\x0b\x0c\xda\x12\xb4\x26\xc4\x04\xbe\xd6\xa2\x00\xeb\x0e\xdb\x76\xf7\xbc\x31\x38\xf3\x36\x17\xf5\x88\xc5\xc4\x04\x7b\xd9\xb9\xa1\x4d\x8d\x25\x71\x17\xa3\xed\x73\x4c\x56\x38\xd9\xb9\x26\x58\x19\xb7\xee\xf2\xf6\x3f\x0c\xfb\xa0\x60\x07\x8a\x42\x6f\x88\x7f\xac\x4b\x70\x7c\x65\xc0\xd1\xe2\x52\x14\xfd\xe3\xe1\x37\xff\x78\xf8\x28\xea\x19\x37\xda\x97\x5c\x21\x1f\x33\xf8\x21\x86\xe1\x37\xb8\x17\xfd\xe3\xd1\x93\x48\x53\xec\x6a\xfd\x47\x91\xbb\x29\x53\x56\x0b\xa1\x8c\xa8\x24\x4d\x28\xa9\xa7\x62\x46\x0f\x15\x62\x78\xf4\xd5\xd7\x84\x90\x74\xbb\xfd\xea\x1b\xfb\xfb\xbd\x7b\x1f\x3e\x74\x09\xe9\x0f\xe4\xab\xef\xe2\x38\x7d\x4c\xbe\xfe\xd6\xbc\x7d\xf3\xb5\x79\xfb\x7e\x60\xde\xbe\xff\xd6\xbc\x0d\x1f\x3e\x1c\x8b\x9e\xab\xdd\xd4\x9c\xa4\x8f\x87\x0f\xbf\xd3\x89\x4b\x36\x49\xa7\x49\xfa\xf8\xe1\xe0\x2b\xff\x3e\xfc\xfe\xe1\x36\xfd\xe1\x87\x6f\xa6\x3d\xfd\xf2\xf0\xbb\xed\x37\x8f\x62\x93\xe7\xeb\xaf\x1f\x7e\xff\x8d\xa9\xf8\xeb\x6f\x1f\x7d\xf5\x95\xcb\xfe\xf0\xe1\x57\x3a\xfb\xf0\x61\x99\x5f\x17\x8e\xbf\x79\xd4\x28\x8f\x58\x8f\x0c\x21\x25\xdf\x7c\xfd\xf5\xa3\x6f\x7a\x08\x0d\x07\x0f\x1f\xc5\x29\x7e\xfc\x78\x38\xd8\x9a\xe7\xc6\xe8\x31\xb8\xfa\xbf\x1a\x98\xfa\xbf\x0b\xeb\x1f\x3e\x0c\x1b\x68\x6d\xb0\xdc\xcb\xe2\xb3\xd7\x49\xd8\xd8\xc0\xbb\x77\x6e\xe0\x38\xee\x76\x51\xe3\x4a\x89\x7f\xf9\xae\x08\x13\xe3\xdf\x86\x85\xfa\xdc\xcd\x02\x36\xc7\xdf\x71\xc0\xd7\x68\x7c\x99\xde\x5f\x18\x8e\x66\x47\x21\x7e\xc5\x8c\x69\x47\x45\xc1\x4a\x74\xac\xaa\x2b\x58\xc8\x10\x3b\x84\xe7\x1c\xfa\x02\x8a\xe4\x37\x84\x6d\xa7\x19\x93\xde\xb9\xcf\xb0\x39\xea\x56\x7b\x67\xd4\x76\x65\x09\xf7\xdd\xa1\xd8\xdb\x62\x70\x5c\x9a\x73\x75\x69\x0b\xc4\xbd\xfd\xdc\x84\x02\x9f\x8e\x90\x89\xc9\x50\x23\xbe\xdb\xad\xec\xa7\x8b\x85\xb8\x2d\x2f\xf1\xcd\xf1\x76\xdb\x5d\x31\x0b\x99\x1d\x5b\x4e\x1b\xaa\x40\x13\x40\xd2\x1d\x94\xab\x81\x16\x7f\xdd\x81\x92\x14\x72\x67\xf0\x4d\xca\xb0\x6b\x66\x48\x71\xdc\x35\x18\xde\x28\x8c\x6f\x98\x09\x62\x8f\xc1\x7d\x32\x5f\xc6\x88\xb7\x78\x89\x71\xb0\xd7\xa3\xfa\x2e\x9b\x7b\xc3\x5d\x20\x72\x3a\x11\xd3\x11\x6b\x89\xe2\xcf\xe2\x98\xef\x09\xee\x2f\xa6\xc4\xdc\x89\x0c\x12\x27\x25\x94\xed\x55\x80\xe6\x23\x37\x37\x41\xe1\x24\xa4\xae\xbc\x85\x6b\xa0\xd5\x5d\x46\x9a\xf8\xf8\xb1\x86\xdd\xf4\xad\xe9\x1f\x60\xa6\x41\x9d\xc0\x8c\xfb\xb3\xc0\x45\x01\xf7\xcc\xa1\xda\x9a\x6f\x8b\x41\xa7\x70\xc1\x88\x8b\x76\x7f\xcb\xc8\xe6\xe4\xf9\xd3\xe1\xb7\x8f\xbe\x4b\x22\xf7\x10\xc1\xc9\xf3\xa7\x8f\xbe\xff\xee\x1b\x93\xa2\x1f\xa2\x02\x0e\x19\xb9\x64\x7d\xcb\x0b\xa1\x8d\x73\xf5\x48\x6e\x59\xdf\x65\x01\x13\x76\x57\x29\x2a\xf3\xa4\xac\xb1\x45\xf4\xbd\x67\xfe\x16\x9b\x0b\x66\x62\xed\x17\x65\x6b\x2d\xb9\x4b\x62\x51\x14\x05\xdc\x32\x0c\x77\x7f\xcd\xbf\x1e\x31\xb2\xb9\xd0\x6c\x38\x55\xed\xc1\x0c\x7a\xd1\x64\x1a\x19\x8e\x6a\x99\x26\xc6\x8d\x3d\x8d\x80\xf1\x19\xcb\x76\x2e\x2e\x0c\x8a\x44\x3d\x6a\x6c\x95\x41\xd2\x15\x4d\x55\x6b\xcd\x45\x01\xc7\x4d\xee\xf9\x94\x35\x0d\x6b\xed\x8d\x9b\xe7\x4d\x3e\xf7\x94\x39\x55\x8c\x82\x63\xbd\x74\xc7\x34\x99\xd0\x29\x2e\xe0\x29\x23\x26\xb4\x5c\x88\x83\xca\x90\xfc\x70\xcd\xc8\x21\xf3\xbe\x37\xf0\x56\x73\xb0\xb3\xd9\x2f\x6b\x2a\xef\xdf\x4a\x3a\x67\x77\x49\x77\x08\x66\x9b\x3e\x13\x2a\xd7\x2f\x2e\x96\x45\x12\xd9\x60\x16\xfe\xfd\x94\x72\xc5\x38\x5d\xe8\x2c\x33\xba\x60\x4b\xa6\xa8\x4c\xa2\x38\xf2\xac\x83\x51\x33\xe9\x27\x99\x5c\xb2\xbe\x7d\x74\x29\x46\x54\xcd\x8f\xf9\xe2\x5e\x97\xb6\x2b\x21\xb9\x66\xd5\x9a\x48\x0e\x8d\x4c\xe2\x16\xc8\xe4\x9a\x4d\x4b\x80\x77\x87\x90\x7b\xff\xc7\x3d\xf7\xcb\x74\x9e\xb2\x0a\xdb\xe6\xd7\x6c\xf5\x66\xbd\x58\xd8\x92\x4a\xb2\x4c\xe9\x57\x73\x60\xc0\xf8\xa5\xd1\x3e\x7f\xa8\x60\xeb\xd1\x64\xdd\x54\x17\xe6\x30\x83\x95\xdd\x64\x57\xb0\x24\x16\x6b\xee\x6a\xda\xb2\xf1\x92\x64\x88\xc3\x12\x27\xcb\x9a\x61\x67\xaa\xe8\x78\x49\x16\x68\x89\xfd\x0a\xb2\x71\x6b\x8e\x19\x32\xd7\x8e\x2e\xf5\x6e\xf1\x84\x01\x2d\xdb\xd8\x95\x8e\xda\xa9\xd1\xf0\x4d\xaa\xc0\xd8\xc5\x3d\x84\x08\x63\x70\xe6\xff\x4b\x1b\xe1\xcc\xe3\xf9\x34\x8e\xbb\xb3\x71\x8a\x38\xbc\xf5\x93\x21\x61\x05\xd1\x35\xbd\x8f\x70\xc2\x47\x4b\x12\x45\x45\x4b\xc0\x11\x74\x45\x96\x78\xbb\xdd\xb9\xfa\xe7\x6a\xbb\x8d\x2e\xac\x7f\x47\x3d\xb1\xc9\xfc\x99\x8c\xec\x92\x71\x55\x4b\xbb\x64\x15\x9d\x5d\x96\xf7\x04\xa6\xe3\xc9\x1c\xcd\xc6\x3c\xd9\xd3\x51\x7b\x39\xc4\x1c\xa5\x68\xd9\xf8\x6c\x14\x28\x11\xc6\xd3\x64\x32\x47\xdc\xe7\x73\xf8\x60\x89\xb1\x8d\x4f\x78\x03\x97\x64\x32\xad\xec\xbe\x0d\x9c\x5c\xdb\x97\x3a\xf9\x98\xa1\x0c\xe3\x1b\x92\x55\x37\x68\xdc\xd7\xa4\x9b\x25\x1e\xdd\x90\x7c\x7c\xdf\xcf\x85\x54\x28\xc7\xc9\x7d\x79\xe9\xca\x05\x19\x8c\x2e\x1e\xdf\x54\x8c\xe1\x85\x5d\x30\xb7\xe4\x66\x72\x31\x85\x43\xb2\x9c\xdc\x9a\xb6\xbb\xcc\x9a\xae\x76\x09\x39\xb4\x59\xee\x88\x59\x08\xe3\x96\x25\x25\xc7\x12\x71\xb8\xc5\x09\x4f\xb8\xbb\xc0\xbb\x77\x9b\x68\xfc\x72\xab\xf1\x0b\x1e\x9d\x33\x74\x09\x0a\x1d\xc2\xdd\x9e\x55\x5b\xdd\x0e\x7d\x59\xc0\x09\x23\x3b\xa4\xb6\x89\x11\xeb\x08\xa9\xdd\x3c\x57\xc1\x8e\x9d\x6a\xb7\x34\xc0\x79\xcb\x46\xa5\xb5\x3e\x51\x7e\x9a\x82\x6b\xc6\x83\xb4\xb6\x23\x0b\xff\xb5\xdd\xbf\xf5\xc8\x7e\x34\x77\x32\x28\xb1\xc7\xc1\x95\xa8\xbe\x43\x54\xdb\xed\x5b\xe6\x9f\x6b\x16\xff\x65\x8e\x38\x76\xb8\xad\x91\x18\x88\x1b\xe1\x97\xf6\x5e\x9d\x5d\xd1\x8e\xcb\xd0\xb1\xee\xd5\xa5\xff\x2d\x65\xea\x8a\xca\x8e\x69\x03\x3a\x55\xad\xd0\x11\xb2\x53\x85\x7d\xf2\x7e\xb6\x15\x7a\x6e\x74\xd7\x62\x44\x0b\xeb\x3b\x87\xe2\x6a\x88\x12\xca\x3c\xed\x7d\x7c\xc7\xaf\xb9\xb8\xe5\x1d\x9b\xc9\x77\x73\x25\xc5\x0d\x9b\xd1\x99\x86\x1d\x2f\x9b\x29\xac\x44\x57\x47\xc4\x5c\xcb\xc1\x6f\x99\x8b\xd3\xe0\x0d\x65\x5a\xe3\x88\xd9\x2c\xdb\xed\x31\x43\xfe\x05\x5b\x8e\xab\x7c\x85\x26\xe9\xd9\xc5\x28\xaa\x5f\xcf\x32\x6e\x26\x24\x6f\x59\x23\x25\xa0\x5e\x95\x83\x54\xbf\x4c\x1c\xeb\x02\x15\x7d\xeb\x06\x9f\x4a\x52\x47\x77\x88\x5c\x5b\xcf\x1a\x79\xc6\x3b\x29\x49\xb5\xf0\x7c\x52\x40\x2a\x83\xce\x95\x89\xba\x73\x55\x8e\xe0\x83\x27\xaa\x6d\xfd\xb0\x9f\xc6\xfe\x21\x79\xdb\xa0\xb6\x32\x69\x9d\x20\xf7\xb1\x2c\x27\x93\x00\xa3\xee\xd0\xe9\xfd\x0d\x57\x99\xc6\xbb\x49\x55\x9d\x55\x9a\xbf\x86\x5a\x04\xf4\x5e\x36\x88\x7a\x6b\x8f\x6b\x59\xc6\x8d\x77\xdd\x52\x2d\x21\xa0\xfc\x6d\x9d\x2f\xbf\x8e\x83\x67\x53\x89\x7f\x01\x8d\xe2\xf7\xf4\x44\x48\x35\xb6\x3f\x36\x7a\x67\x0b\x63\xd1\xda\xe8\x4e\xb6\x71\x5b\xa2\xe9\xc6\x4e\xaa\x51\x21\x8d\x5a\x2f\x56\xb1\x10\x1d\x4b\x82\x06\xe0\xdf\x30\x8a\x22\xcd\xe8\x1f\x33\x54\x26\x99\xcb\xdf\xcb\x37\x1b\xb2\x17\x52\x47\x12\x77\x24\xaa\xd2\xc3\x82\x78\x53\xb5\x28\x1a\x31\xab\x56\x35\x6a\xcf\xe7\x16\x8f\x30\xde\x39\x62\xe3\x5a\x5a\x42\x35\xfe\xb4\x2c\x5b\xc4\x78\x87\x8e\x69\xdf\xbd\x8e\xcb\xf4\x24\xb2\xbc\x71\x94\x94\x49\xd6\x16\x9b\x1c\xb1\x09\x9b\x8e\x4c\x54\x81\x1a\xf5\x95\xe6\xae\x28\x0d\xf6\x38\xe6\x96\x04\xdb\xd7\x4a\x47\x93\x93\xc1\x28\x0f\xf5\x74\xb9\x25\x5a\x6b\xc2\x27\xf9\x74\x24\xaa\xf9\x2d\xef\xc6\x97\x93\xf5\x74\xbb\x3d\x67\x28\x85\x0f\x0c\xe9\x37\x58\x43\xa6\x1b\xda\x99\x03\x08\xca\x83\xf0\x5b\x4f\x94\x5b\xc8\x86\x72\x75\x00\x76\x5d\x05\x11\xa0\x18\xd1\x58\xa4\xa2\x42\xaf\x65\x7d\xc1\x56\x11\x25\xd1\xb1\x3e\xe8\x0b\x1f\xe3\x5a\x54\xb8\x01\xc3\x9c\x18\x43\x33\xd1\x44\x96\xe6\x76\xab\xa8\x3a\x70\x6a\x20\xa3\x38\x6e\x2a\x16\xcb\x2c\xe3\x79\x8f\x68\xa2\xf8\x1d\xb1\x4a\xb2\xe1\x60\x30\x78\xf4\x8f\x47\x4f\xe2\x28\xa9\xbe\x1c\x3d\xfc\xc7\xf7\x4f\xff\xf1\xfd\xa3\x38\xc2\xb0\xf0\x0a\xd6\xc1\x78\xde\x5b\x24\x51\x54\x60\x78\xd9\x34\x72\xf1\x01\xc8\xed\x35\x61\x41\xec\x18\x17\x25\xa8\x14\xd3\xeb\x73\x5e\x56\x1d\xc7\x28\x25\xb4\x17\x8d\xa3\xde\x09\x33\x8b\x81\x8f\x7f\xe2\x13\x35\x45\x29\x70\x60\x38\x31\x51\x4e\x8c\xef\xab\x4f\x66\x38\xf1\x8f\x27\x0c\x09\x0c\x0c\x17\x70\xc6\x5a\xec\xe4\x77\x2c\xbc\x74\x7b\x25\xf5\x0d\x23\xee\x8c\x6b\xe1\x77\x36\x85\x51\x21\x7f\x61\xad\x26\xc6\xe5\x53\xa2\xb7\x9f\xfe\xe0\x42\xda\x0a\x12\x3d\x48\x57\xec\xc1\xcd\xe0\x41\x4e\x95\x62\xfc\x32\x7f\x60\xe5\x63\x53\xd5\x41\x3a\x9b\x45\xc0\xc8\xa6\x80\x34\x88\x92\x5c\xd9\x66\xf7\x2f\xc4\xec\xde\x58\x03\xd9\xc7\xf0\x22\x71\x93\x30\x6e\xc4\x11\x0b\xee\x23\x79\xcd\xf2\x9c\xf1\xcb\x8e\xa4\x1f\xd7\x4c\xd2\x59\xa7\x63\x22\xc9\x50\x8d\x7a\x3b\xba\xac\xb1\x26\xa4\xfd\x2f\x3e\x9a\xd5\xe3\xbf\xe5\x71\x5c\x3b\xb1\xd8\xf9\x8e\xdb\x63\xe9\x30\x13\xfa\x6a\x27\xf7\x44\x99\xd8\x6e\x2f\x19\x72\x41\x60\x78\x4f\x80\x32\x1c\xab\xc4\xb8\x80\x57\xff\x3b\x4e\xcb\x82\xe9\x9e\xfe\x7f\x7a\x5e\xbe\xf8\xdf\x65\x5e\xa4\x58\xd0\xff\x7f\x46\x70\x01\xcf\x18\x69\x04\x6d\x08\xf4\x17\x41\x14\xd0\x40\xc6\x0b\x6d\xd9\x0d\x95\x72\xfd\xbd\xa4\xaa\x54\xc8\x1e\xcf\x0d\x28\x14\xee\x96\x77\x52\xe8\x64\xdd\x95\x37\x8c\x2c\x15\x8a\x5e\x1e\x9d\xbf\x3d\x39\x3e\x3b\x8e\x30\x3c\xdf\x55\xad\xc1\x3b\x46\x9e\xb1\x71\x6b\xcd\xad\x0a\x30\x62\xee\x2d\x87\x4f\x48\xc1\x1b\x86\xc7\x6a\xf2\x86\x4d\xdb\x39\xae\xba\x1e\x3f\xd4\x84\xd4\xbe\x8d\xeb\xaa\xfc\xb2\x67\x49\xad\x88\xed\xe0\xf8\x39\x73\x97\x35\x7c\x64\x4d\xc7\xda\xd7\x8c\x74\x87\xa3\xc9\xd4\x4c\xa7\xa6\x93\xe6\xee\x77\xc6\xd1\x8c\x11\x97\x8a\x30\x1e\xa3\x39\x23\xef\x18\x7a\xc7\xd0\x8c\x61\xac\xc1\xd6\x04\x49\x1c\xa3\x05\x23\x73\x86\x13\x5d\xe5\xc0\xab\x67\x16\xcc\x7e\xd8\x14\x7a\xf4\x0b\x06\x1f\x19\xde\x6e\x95\xb2\x8f\xd0\x12\x1f\xc2\xd8\x31\xb9\x58\x4c\x4f\x18\xd9\xbc\x74\x9d\x2d\x41\x9c\x2c\x18\x3c\x79\xf7\xe2\xc5\xef\xe7\xa7\x87\xcf\x0f\x4f\x5e\x96\xfe\xe2\xa7\xc9\x6b\x56\xc0\x7b\x46\x9e\xb0\xfe\x4e\x29\xf8\xc4\xf6\x3a\xfa\xbe\xd8\x35\x52\xb5\x42\x21\xed\x45\x1d\x5f\x53\x34\xda\x5d\x6c\xe4\x98\xa2\xf7\x0c\xac\xa3\xc2\x2b\x34\x04\x8e\xad\xc1\x97\x02\x69\xcc\xbd\xde\xca\x89\x9c\x92\x4f\x0c\x54\x01\x3f\x96\xeb\x28\xaf\x2d\x98\xed\x16\x45\xe7\xe7\xa6\xce\xf3\xf3\x88\xf1\x4d\xd1\x76\x7d\x4e\x77\x08\x5c\x23\x01\x25\xef\x37\x48\x91\x6a\xe9\x05\x0a\x8d\x67\xee\xea\x24\x21\x5b\x22\x46\x54\x4d\x60\xdd\x01\xec\x0d\xed\x26\x53\x0c\x94\xf0\x9d\x6b\xb5\x77\x7d\x2a\x82\xf3\x81\x2a\x38\xd9\xcf\x88\xe3\xe6\xed\x7e\xc6\x59\xa2\xba\xee\x7c\xd7\xc1\xea\xa9\xb1\xde\xcd\xa9\xea\x44\xbd\x52\x95\xdd\x8b\x3a\x69\xde\x49\x3b\x65\x9f\x23\x5c\x20\x89\x41\x4b\x40\xae\xaf\x12\x27\xbc\x5f\x0e\x84\x48\xe0\xe6\xda\x18\x6f\x72\xf5\xdb\x9e\xa9\xff\xc9\xa4\xb7\xaf\x19\xf8\x7d\x67\x4f\xfc\xba\x7f\xa5\xfc\xdc\xce\xe9\x41\x8a\x37\x2f\xac\x71\xb0\x93\x36\x7c\xe8\x83\x06\x64\x94\xe6\x3d\xe3\xb8\xd4\xc5\x2d\xad\x1f\x10\xb3\x5b\xbd\xb3\xf2\xe9\xab\x89\x9a\x8e\xf2\x5b\xe6\x66\x20\x4b\x73\x1a\xe9\xbd\x18\x25\xe6\xf1\xff\x61\xef\xcd\xb3\x1b\xb7\xb9\xc5\xc1\xad\x50\x48\x85\x26\x22\x68\x72\xb9\x26\xca\xb0\x3e\x97\xcb\x95\x54\x52\x53\xca\x55\x99\x24\xc5\x0f\xa6\x20\x9b\x55\x14\xa9\x70\xf0\x10\x91\xef\xe4\xbd\x9e\x7b\x09\xfd\x4f\xf7\x0e\xfa\xf4\x1f\xbd\x81\x5e\xc1\xef\x2d\xa1\xd3\x1b\xe9\x83\x0b\x80\x93\x28\xdb\x95\xe1\x7b\xdf\xfb\x4e\x92\x3a\x32\x09\x62\xbc\xb8\xb8\xb8\xb8\xb8\x03\x08\x01\xf5\x0b\xf7\xe3\xd0\x15\x6f\x0d\xb6\xcf\x85\xae\xa5\x5f\x68\xd6\xdd\x22\x1f\xce\x32\x32\xaf\xa2\x3f\x01\x53\x89\x65\x99\x5e\x92\x33\xba\x1c\x7f\xef\x4e\xd3\x74\x59\x77\x4d\x11\x98\xe6\x72\x1c\x4c\xc9\x82\xc2\xe8\xce\xd2\xd4\x13\x4c\xe9\x39\x55\xbe\x6e\x20\xe6\x19\x98\x89\x88\xbe\xa7\xe9\x19\x88\x80\x4c\xd3\x72\x04\x9d\x39\x57\x13\x0e\x34\x5a\xcc\x6b\x23\xc1\x71\xc0\x54\xd0\x34\x05\x59\x72\x04\x4d\xfa\x4e\x10\x9b\x2f\xdc\xd1\x17\xae\xe5\x90\xef\x04\x9b\xbc\x2e\x73\x73\x44\x87\x4d\x33\x8e\x2d\x87\x7c\xef\x92\x6f\x5d\x0c\x0b\xd6\x21\x73\xd0\x58\xc7\x44\x03\x17\x26\xea\xcc\x34\xf5\x7b\x8b\xd2\x33\x08\x59\x66\x9a\xd6\x8c\xb6\xfa\x65\xa7\x13\x39\x04\xcf\x4a\xca\xda\x19\x26\x00\x9d\x16\xa5\x0b\x68\x70\x29\x1a\x5c\x00\x51\xe0\x53\xba\x20\x01\x76\xe7\x56\x44\x57\xb2\x01\xdb\xb3\x74\x53\x98\x88\xb9\xb6\xdd\xd1\x42\x24\xc2\xbc\x63\xa2\x40\x25\x52\xf4\x8c\xe3\x8c\x30\xd0\x59\x49\x04\xf2\x44\xd8\xfa\xd2\x4d\xd3\x59\x9a\xb6\x64\xc2\x12\x63\xd3\x3c\x12\xed\x26\x24\x1a\x27\x53\x15\x5c\xb9\xa4\x56\xc9\xd7\x5c\x0e\x41\x0d\x19\x29\x94\x3e\xa3\x8c\x7c\xed\x6a\x83\xbd\x1f\xdc\xaa\xc1\x9e\x9c\xcc\x02\x47\x30\x89\x19\xfd\xca\xb5\xa4\x40\x55\xbb\x35\xaa\xe9\xf8\x7e\xed\x96\x15\xcf\xeb\x55\x10\xd5\xb5\x9f\xc0\x09\xbe\x3f\xe3\x97\x76\x9f\x7c\x70\x7d\x88\x1f\x5c\x33\x62\x93\xea\x56\x3f\xb8\x4a\x65\x1c\x2c\xb1\xa0\x34\x18\x93\x88\x42\x24\x0f\xa8\xd2\x6e\x6b\x5b\x2e\x9e\xa6\xe1\x1e\xd5\x7a\x3f\x23\x4b\x17\xd2\x86\xbd\xab\xb2\x22\xbb\xd2\x8a\xef\x67\xd8\x96\x13\x41\xa9\x3f\x52\x39\x42\xad\x32\x9f\xd9\x05\xd2\xe4\x5f\x41\x83\x28\xcf\xa0\x12\xc7\xd2\xcb\x4e\xf1\x21\x2b\x10\x0e\x0f\xc1\x6b\x8c\x62\x21\xa9\x76\x21\x43\x0e\x78\x8e\x03\xe2\x31\xc7\x11\xf1\x92\x63\x82\x14\x06\xb3\x8d\xb6\x4a\xda\x65\x9f\xdb\x64\x30\x6f\x09\x7e\xb4\xc4\x4e\x60\xd3\x0c\x5b\x94\xfa\xa6\xf9\xc2\x0a\x68\x89\xbb\xc0\xa6\x19\xb4\x20\xa6\x58\xb1\x0a\xbf\x70\xad\x98\x04\xa0\xf2\xe3\x33\x8a\xc6\x93\x78\xe2\x4f\xce\x27\xf3\x49\x68\xfc\x3f\xff\xc7\xff\xfb\xbf\xfd\xf2\xeb\x2f\xbf\xfc\xfa\xcb\xbf\xfd\xfa\xcb\xbf\xff\xfa\xcb\x7f\xf7\xeb\x2f\xff\xfd\xaf\xbf\xfc\x0f\xbf\xfe\xf2\x3f\xfe\xfa\xcb\xff\xf4\xeb\x2f\xff\xf3\xaf\xbf\xfc\x2f\xbf\xfe\xf2\xbf\xfe\xfa\xcb\xff\xf9\xeb\xbf\xfd\xef\xff\xdf\x2f\xbf\x4c\x92\xed\xfe\xf6\x43\xf8\x7d\x34\x49\xe6\x7c\x3e\x9f\x22\x12\x32\xaa\xc3\x55\xfd\x88\xda\x3e\x13\xff\xd0\x67\x08\x93\x20\xff\xa0\x13\xef\x20\x4c\x5c\x76\x93\xe7\x3e\x29\x7b\x56\xbb\xce\x3b\x8b\x17\x6a\x05\x03\xf0\x99\xe7\x83\x6e\xac\x54\xaf\x09\x19\x41\x08\x63\xb2\xbd\xf6\x25\x50\x5f\xfc\x2c\x23\x8c\xd1\x55\x14\xb3\x30\xb6\x5d\x06\x66\x98\xfe\x4c\x3c\x6d\x63\x19\x03\xde\x65\xd6\x5d\x9c\x11\x87\xd1\x6f\xe2\xee\x9c\x44\x0c\x6c\xea\x13\x06\xae\x95\x3c\x46\x19\x83\xc8\x3d\x64\xce\xe8\x87\xae\x0a\x4a\x38\x63\x74\xce\x4a\x84\x76\xc9\x28\x7a\xa9\x6f\xa6\x9e\x58\xaf\xb8\x35\x63\x18\x93\x33\xd6\x64\x0c\x5d\xbd\x1e\xa1\x8f\xa5\x45\xca\xb0\xc9\xcb\x7e\x62\x9a\x89\x3e\xd6\x6c\x0b\x72\xb4\x73\x97\x52\x6a\x71\x6a\x25\xd4\x63\x56\x82\x71\x59\xd9\xa5\x8f\x71\x9a\x82\xb2\x8f\x54\xe3\x78\xf8\x90\x82\x57\x92\xa4\x9c\x69\x5b\x64\x1a\x6c\xf7\xcb\x8a\x4b\x2f\xd9\xcb\x4c\x07\x76\xdf\x79\x28\xcb\xab\xdd\xad\x52\x76\x80\xe5\x5e\x67\xdc\xbf\x0f\x7b\x9b\xf1\xe8\xa1\x1d\xd2\x6d\x12\xd0\x9d\x47\xc3\x93\x90\xb3\x0f\x43\x48\x7e\xf0\x48\x7e\x1e\x0c\x06\x76\x48\x1f\x92\x80\xde\xbb\xa7\xbe\xeb\x1b\x78\xd9\x72\x3b\x81\x5b\x2b\x46\x2d\x97\x26\xb9\xd2\x93\x16\xb4\x68\xfd\xbd\xa1\xa3\x9c\xe9\x44\xd4\x2d\x77\xc7\xc1\x78\x77\xe7\x61\x9a\x46\x7b\x41\x69\x24\xb9\xda\x81\xd6\xa6\x72\x49\xa8\xd5\x36\xda\x09\x78\x05\xfa\x21\xb6\xf4\x74\x91\xd6\x9c\x59\xc8\xe8\x07\x03\x84\xd3\x14\x5e\xfa\x27\xf0\x2c\x1e\xdb\xfd\xcb\x01\x04\x9a\xd2\x52\xbd\x05\x23\xe7\x0d\x93\xba\x76\x08\xdd\x1d\x8c\xfa\x36\xd0\xb9\xb2\x4d\x45\x99\x89\x3b\x67\xa6\x69\x2d\xd9\xa8\x7a\x7c\x9a\x31\xa9\x82\xfd\x6a\xae\xb6\x58\x9c\x61\x6c\xeb\xce\xb6\xe8\x13\xcb\xc7\x78\xc4\x99\x0c\x8e\xcb\xac\x33\x06\xc1\xf1\x7c\x72\xce\xb0\x0d\x2f\x19\x39\x65\xf4\xfd\xc8\x61\xd6\x9c\x61\x1b\xbd\xd8\xff\xee\xf8\x9b\xfd\xe7\xef\x0e\xc9\x8b\x67\x2f\xd5\xd3\x4b\xf6\x92\xbc\x3c\xfc\x7c\xff\xed\xb3\x6f\x0e\x8f\x9f\xbd\x7c\xfa\xec\xe5\xb3\xb7\xdf\x93\xd7\xaf\x8e\x9e\x55\x53\x0e\x5f\x1f\x3d\x7b\xfe\xea\x25\x71\xa3\xa7\xae\xef\xc6\x9c\xb8\xd1\x33\x3f\xe6\xa7\x3c\x24\x6e\x24\x2a\x71\xa3\x23\x36\xe7\x3a\x4d\x34\x75\xb4\xff\x54\x54\xf0\xf6\xf0\xf3\xc3\x37\xd0\x62\x25\x01\xa6\xe4\xa9\x17\xb0\x98\xe8\xd9\x29\xd5\x39\x0f\x83\x85\x52\x0e\x08\xc1\x47\x87\x76\x5f\x48\x10\x26\x57\x8c\xf6\x87\xa7\x5a\x95\x73\xef\x8a\x0d\xaf\x58\xbb\x8d\x7f\xb6\xe6\x8c\x2c\x18\x3d\x65\xe3\x2b\x36\xc5\xe0\xe0\xec\x5c\xa4\x60\xd3\x4c\x98\x7c\x24\x11\x93\xb9\xe0\xd4\x52\x3a\x1d\xcc\x18\x99\xb1\xca\x81\xf4\x9c\x91\xa3\xd8\xfa\x40\x72\xec\x38\x67\x52\xde\x79\xc2\xd6\x8d\x81\xbe\xca\xf7\x35\x54\x3a\x7c\x48\xcb\x13\xd3\xb4\x78\x9b\xa2\x53\x08\xdc\xe1\x9e\xfa\x41\xc8\x0f\x98\xf4\xd8\xdf\xa6\xc8\x85\xe4\x45\xe2\xc5\xae\xe7\xfa\x3a\x75\x01\xa9\xb3\x20\xde\xf7\x74\xf9\x08\x92\x12\xdf\x75\x82\x99\xce\x96\x40\x5a\x14\xbb\xce\x87\x2b\x95\x74\x25\xf8\x8f\x92\xb3\xf0\x0b\x56\x51\x03\x51\x74\x18\x14\x72\x45\xd7\xf7\x19\xb9\x64\xe4\x90\xd1\xd5\xbb\x97\x47\xef\x5e\xbf\x86\x80\x4d\xc7\xdf\xdb\xeb\xee\x17\x63\x7a\xc1\x2c\xc4\x10\x11\x4d\x14\x63\xf4\x58\x14\x3f\x13\xbb\x36\xdd\x26\xca\x17\x5a\x97\x5f\x72\xc7\x42\xec\xc4\x99\x21\x30\x8d\x78\xfc\xe6\xd5\x57\x87\x2f\x8f\x0f\xf6\xdf\x1c\xbe\xdd\x58\xf3\x8f\x21\x22\xe8\xf4\x96\x75\x47\x71\x88\xa4\xd1\xe4\x2b\xbd\xb7\x94\xe4\x0a\x22\x0f\x39\x62\x9b\x95\x87\x8e\x19\x7d\xc5\xc8\x01\xa3\xd6\x3e\xa3\x3d\xd6\x23\x97\x8c\xf6\x4e\x3e\xeb\x9d\x92\x57\x4c\xdd\x61\x32\x82\x18\xc2\xf9\xfb\xa5\x7a\xef\xb7\x28\xdd\x67\x45\xcf\xd2\x54\xa4\x5c\x96\x52\x30\xf9\xc0\xe8\x21\xeb\x56\xe0\x99\xa6\x87\xac\x5b\x06\x03\x79\xcd\x68\x2e\x1d\xea\x59\x78\x34\xea\xa9\xa1\x21\x3c\x1e\x4c\x87\xd6\x01\x4b\xd3\xd7\x2c\x4d\x3f\x08\xf4\xb5\x8e\xaf\xd9\x3d\xa4\xbd\x08\xa3\x1f\x98\x69\xba\x0a\x19\x88\x43\x4f\x54\xcf\x5d\x4c\x04\xad\x94\x9e\x89\x49\x42\xfb\xc4\x2b\x42\xb0\x0a\xc2\x03\x5a\xcd\x96\x43\x9d\x7c\xc7\x44\x57\x08\xb6\xcc\x22\xbe\xdd\x29\x12\xbd\x70\x14\x1a\x7b\x85\x06\xac\x22\xd4\x6e\x79\xfc\xa5\x17\x90\x8f\xb7\xdc\x02\xbf\xd3\xd4\x2d\x23\x3b\x9a\xc8\x48\x53\xe3\x52\x99\xce\x00\xc2\x14\x45\x14\x59\x23\xdb\x40\xed\xa8\x8d\x30\x22\x1e\x45\x06\x6a\x7b\x24\x69\xb7\x31\x91\x0e\x9d\x73\x66\xc3\x1a\xd9\x3a\x9b\x83\x31\x79\xcd\x24\x07\x50\xce\x02\xdf\xef\x58\xa3\xd6\x64\x12\xa9\x6c\x07\x0c\x4c\x95\x2b\x5d\x0f\xa9\x9e\x70\x36\xf2\x6d\x97\x78\x98\xb0\x51\x38\xb2\xc2\xae\xeb\x2f\x93\x98\xaa\xbf\x6a\xd4\x09\x26\xe1\xb8\x3f\xa5\xe2\xa7\x94\x24\xc1\x56\xae\xb8\x0c\x92\xb6\xcc\xae\x94\x95\xed\xd2\x17\xda\xb7\x45\x9f\x42\x88\x30\x55\xa4\xba\x8a\x8e\x8c\x54\xc5\xed\x52\x79\x9b\xcb\xe1\x86\xa6\x19\xe6\xea\xe4\xa6\x79\xa4\x06\x21\x72\x12\x9f\xd4\x9d\x14\x04\x74\x30\x0c\xd6\x82\xb0\x77\xb6\x87\x41\xbb\x8d\x73\xb9\x64\x21\x22\x0d\xa6\xa6\x69\x85\xe3\x60\x4a\xb5\x6b\x52\x8c\x89\x76\xa9\xfb\x9e\xd1\x63\x56\x71\x91\x2a\x81\xbe\xee\x23\xb5\xd7\x95\x38\xde\xa2\xf4\x3d\xcb\xc8\x4a\x3c\xdb\xef\x99\xaa\xe7\xcd\x0d\xec\x60\xc5\x63\x61\x85\x29\x24\x8c\xbe\x89\x2d\x1f\x13\x47\xc0\x5c\xe9\xa4\x2a\xfc\xde\x95\x6a\xcb\xce\x28\x1e\x21\xa4\x0e\x0a\xb6\x15\x56\x99\x07\x86\xb1\xd6\x44\x0e\xf7\xee\xdd\xbf\x3b\x78\x94\xa6\xac\x2d\x96\x85\x93\xa6\x56\x50\xcb\xdc\x1e\x88\xec\xf7\xef\x6e\xf7\xd3\x34\xd8\xbb\xf7\xe0\xee\xce\xdd\x51\x3c\x72\xb5\x2a\x34\xc3\x76\x68\x8b\x77\x89\x10\x8c\xb0\xf6\x36\xb6\x83\x0e\x94\x68\x5b\x61\x07\x5a\xda\xdd\x1d\xf4\x71\x1b\x14\x97\xb3\x8c\x3c\x63\x74\xe5\x40\xf5\xf6\x1b\x66\xb5\x06\x98\xc8\xca\xe0\xad\x8f\x33\xf2\x96\xd1\x67\x4c\xb5\x40\x9e\x33\x7d\xc8\xbb\xc3\x6a\x87\x3c\x09\x96\xd2\x29\x6f\xf8\x95\xab\x34\x8e\x08\xd2\x6e\x48\x2b\xd2\xde\xe7\xac\x72\xc4\xab\x57\x40\x24\x1b\x6a\xe7\x0b\x5e\x1f\xf4\x9a\x4f\x78\x84\xd3\x3b\x4c\xed\x85\x3e\xe5\x2a\xbe\x14\x08\xd1\xa1\x5c\x6e\x19\xbc\x47\xf5\x75\xe8\xa8\xf9\x10\x67\x5b\x31\x7d\xcb\x40\x90\x44\x54\xe1\x76\xae\xe3\xaf\x0f\x7e\x71\x7e\x38\xcb\xe3\x7a\x3c\x61\x35\xd7\x36\x2f\x59\x5d\x2e\x2d\xf7\x9c\x5e\xb7\x57\xec\x34\x02\x15\xd7\x77\xf5\xdc\xdf\xb0\xd8\xcb\xc3\x20\x59\x46\x74\xc5\x6c\xf4\x00\x65\xe2\x08\x85\x1e\x08\xd2\x85\x50\x4e\x36\x63\x82\xee\xec\xb2\x3d\xb9\xe7\x3d\x65\x14\xdd\xe9\x23\x4a\x29\x62\x45\x96\x5e\xb7\x47\x44\x32\x26\xef\x64\x3f\xd5\x07\x84\xc9\x4f\x8c\xb6\x5a\xbd\x6e\x6f\xfc\x8e\x4d\x4d\x13\x89\x92\xea\x4d\xee\xba\x50\xea\xc5\xa6\xc1\x58\x23\x1b\xf7\xe0\x58\x2d\x86\x32\x5c\x1f\x51\x6e\x18\xaa\x14\x34\x61\xcf\xc8\xcd\x65\x75\x04\x1f\xc4\x4e\x34\xab\x95\x3b\x29\x32\xb6\xe1\x1c\x29\x21\x9f\xa6\x88\x21\x30\x2f\xe9\x4f\xd3\x14\x9d\xc8\xe7\x01\x5c\x0d\x3c\xae\x9f\x69\x49\xa8\x6d\x14\xe7\x5c\x06\xca\x6b\x74\xeb\x5c\xdc\x97\x80\x02\xf0\x7a\xa7\x1f\x64\xe4\x41\x8b\x22\x34\x8e\xa7\x32\x12\x11\x61\xd4\x05\x0f\x70\xeb\x95\x81\xf0\xb5\xc7\xf4\xdc\x22\x18\x8c\x72\xaf\x61\x59\x3e\x5d\x65\xb8\xe6\x43\x47\x46\xf8\xd4\x09\xe3\x27\xac\xa9\x0b\xbe\xc8\x36\xf7\xd8\x69\x44\x11\x22\xbe\xe8\xa7\x98\x9d\x60\x8a\x89\xbf\x11\xd6\x60\x9e\x0e\xd2\x7c\x51\x00\x7c\x89\xb5\xb8\x40\x54\xa5\x70\xd7\x62\x69\x9a\x63\x80\xea\x62\xeb\x25\x4b\xd3\xd6\x53\x96\xa6\x3f\x31\x9c\xa6\x95\xfe\xb7\x5e\x30\x39\x4c\x47\x35\x4e\x22\xea\x5b\x01\x01\xc8\x54\x65\x37\x2a\xc8\x7d\x31\xed\xd0\x47\x41\x78\x47\x02\x72\xc1\x48\xf9\x39\xd0\xbe\x00\x1c\xad\x97\x0d\xde\x36\xec\xda\xd7\x5c\xaa\xcb\xcb\x5f\x41\x24\xb2\x7a\x73\xf8\xfa\xf9\xfe\xc1\xe1\xf1\x57\x87\x87\xaf\x8f\x8e\xef\xf4\xed\xa7\x8c\xbc\x39\xfc\xfc\xf0\xbb\xd7\xc7\xfa\xd3\xd1\xbb\xc7\x47\x6f\x9f\xbd\x7d\xf7\xf6\xf0\xe8\xf8\xdd\xcb\x27\x87\x4f\x9f\xbd\x3c\x7c\x72\x7c\xb0\xff\xfa\xed\xbb\x37\x87\xf6\x4f\x2c\xc3\x24\xa1\x91\xd8\xab\x3c\x1a\x09\xee\xe7\x28\xb6\xea\xbc\x1b\x89\x49\x82\x05\x47\x5e\xe7\xf6\x48\x40\xb6\x29\xe5\xcd\x51\x92\x3d\xad\xa9\x0d\xf8\xce\x71\xd6\x74\xe5\x53\xc9\x84\x33\x9c\x85\x20\x03\xac\x37\x24\xe0\x8d\xa2\x33\xb6\x40\x04\x68\xf2\x37\x65\x9a\xfc\xf3\xba\x3c\x47\x83\xbe\x6d\xf9\xa3\x6f\x24\x17\xae\x77\xed\x01\xce\xc8\xe7\xac\xd1\x75\xbf\x5a\xc0\xcd\xba\xbc\xe5\x90\xb7\xb2\xcb\x1c\x37\xab\xc9\xac\x0b\xf2\xe5\x70\x0c\x51\xbb\x21\x23\x91\x18\xb2\x87\x7c\x66\x44\x81\x48\x11\x84\x3f\x00\xb5\xc0\xf8\x8c\xf9\x06\xd3\x3a\x0f\x46\x10\x42\x64\xef\x82\x35\x0f\x41\x2d\x57\xed\xf3\x2d\x4a\x9f\x58\x71\x83\xd7\x5c\xf9\xfd\x13\x68\x11\xfc\x6d\xcf\x8c\x40\x9c\x7b\xc1\x0e\x30\x76\x4f\x3c\x6e\x84\xdc\xe1\xee\x39\x0f\x8b\xaa\xdf\xb3\x62\x68\xd9\xf0\x31\xb3\xd0\x42\x06\x6b\x1b\xd4\x11\x3c\x37\x33\x5c\x17\x19\xbd\xcb\x3d\x53\xc8\xab\x2d\x3e\x52\x3b\x3f\x2f\xe2\x22\x14\x97\xb3\xe1\x28\x77\x2b\xe2\x63\xbb\xc4\x36\x72\x2c\x28\x8e\xda\xfa\x7c\x71\xda\xa8\x33\xe1\x21\x95\xf1\x6e\xa5\xf1\xbd\x3b\xb7\x42\xe9\x2d\x25\xb7\x85\x93\xbe\x71\x24\x11\xfc\x4a\xd2\x40\xbd\x95\xea\x22\xad\x40\x31\x78\xba\xd4\xe7\xcc\x0a\x88\xab\x15\x50\x02\x7d\xe6\x1b\x06\x65\x56\xb1\xb0\xc6\x25\xe0\x26\x29\xa1\xfd\xa1\xba\xc5\xb1\x1c\xaa\xaa\xc0\xca\xb2\x30\x67\xd8\x9d\x71\x7f\x8a\x87\xd1\x38\x99\x52\x8f\xc0\x1e\x23\x8e\x97\xe5\x8a\x7f\x66\x96\x4b\xde\xc6\xe5\x34\x4c\x18\xc6\x82\xf1\xd6\xd7\x11\x82\x3b\x4c\x46\xa2\x35\x3b\xca\xa6\x7a\xe7\xfd\x82\xd5\x6f\x67\xbe\x63\x0d\xce\xc8\xbf\x64\x34\x56\x92\x8d\x28\x1f\xc4\xf7\xac\x6c\x52\xfc\x2d\xa3\x1f\xc6\xdf\xb3\x29\xf9\x8a\xd1\x6f\x99\x69\x7e\xcb\xaa\x26\xc5\x5f\x31\xe9\x77\x8f\x8d\xbf\x60\xd3\x16\xa5\x5f\x32\x6d\x51\xfc\x15\x23\x5f\x30\xf2\x25\x2b\x19\x10\xca\x5c\xf4\x4b\x96\xc9\x22\xdf\xb1\x29\xdc\x6a\x7e\xc5\xc8\x77\x8c\x7c\xcf\x30\x61\xae\x68\x2c\xb7\x28\xfd\x1a\xfa\x12\x33\x2c\xf3\x7f\x0d\x4d\xc4\xf0\x50\x6a\xe6\x6b\x46\x54\x5a\xa5\xa9\xaf\xd9\x54\xe5\xcd\xa4\xd9\xf2\x0f\x6b\x50\x89\x9d\xe6\x3d\x1c\x22\xba\xbc\x79\x6e\xa1\x93\x11\xa3\x03\xf3\x84\x6e\x9b\x0e\xbd\xab\xe2\xc0\xd9\xbd\x1e\x43\x52\x6e\x1e\x95\xc2\x88\x12\xbf\x22\x70\x58\xb2\xf8\xcc\x67\x0b\x4e\x91\xf3\xe9\x76\x7f\x86\x48\x63\x60\x29\xb1\x2d\xf3\xae\xf4\x26\x6b\xa1\x13\x84\x89\xdf\xa6\x61\x3b\x16\x1b\x6b\x8b\x83\x7e\x58\x9a\xe6\xad\xf6\xa0\x2a\xe8\x92\xe8\x0e\x5c\xc3\x9f\x85\x7c\x9e\xa6\x08\xde\x20\x8a\x94\x85\x1c\x08\x50\xc1\x28\xe8\x25\xeb\x25\x23\x47\x54\x89\x7b\x8a\x44\x4d\x08\xe3\x34\x6d\xf1\xf1\x0f\x62\x2e\x14\x43\xa1\x47\x0f\x51\xef\x44\xc3\x7f\x3b\x41\xb8\x1c\x90\xff\xa4\x94\xad\x52\x65\x63\x33\x8c\x9e\x88\x13\x2c\xf4\x8d\x41\xdf\x2e\xfd\x4e\x87\x0f\xd8\xd5\x89\xb3\xd6\x9e\xdd\xeb\xfd\xc7\xbf\xff\xb7\xff\xfb\x3f\xfe\xed\x3f\xfe\x1d\x61\xf0\x16\x9c\xa6\xe8\x93\x4f\x9f\xf4\x3f\x7d\x3c\x68\xca\xcc\x3e\xf9\x6f\xff\x97\xc8\xc8\x22\x60\x88\x06\x0e\x40\xc2\x17\x8d\x34\x65\xbf\x44\x4a\xdb\x43\xd6\x0d\x26\x54\x79\x9c\x39\xa9\xd8\x43\xfc\x3c\x41\xea\x5e\xe7\x9a\xef\xa1\x43\x5b\xdc\x49\xd3\x2a\xca\xb8\x73\xeb\xbd\x69\x42\x58\x0b\xc7\x5a\x9d\xd8\x83\x8c\x70\xc7\xf2\x1d\x6b\x95\x11\xc1\x2e\xae\xaa\xee\x54\x6a\x7e\x48\x7c\x47\x32\x80\xe8\x04\x69\x56\xfa\x6e\xc5\x01\x8b\x60\xa8\xc5\xe6\x7e\x62\x6f\x67\x18\x77\x4f\x0a\x67\x88\x12\x57\x57\x19\xe1\xc0\x3a\x29\x23\x5a\xab\x90\xda\x8c\xfd\x29\x7d\x40\x40\xfa\xc3\xe7\xa7\x67\xee\xfb\x0f\xde\xc2\x0f\x96\x3f\x85\x51\x9c\x4b\xf1\xd0\x06\xd5\x13\x08\xad\x05\xf0\x79\xd0\x82\x81\x65\x24\xc6\x63\x1f\x90\xa4\xa9\xbe\x16\x3d\xe5\x96\xcc\xc7\x73\x8b\x13\xe0\xbf\x47\x9b\x0c\xf0\xa5\x76\x47\xb8\x26\xa5\x25\x01\x1d\x10\x97\xfe\x1c\x77\xe7\x84\xd1\xb7\xdd\xf9\x30\xdc\x0b\x86\xb8\x4c\x65\x9f\x96\x9c\x3f\x07\xed\xf6\x54\x70\x2d\xee\xe8\x94\x5b\x51\x11\x40\xd0\x8a\x30\xb6\x21\x89\x78\x54\xcb\xeb\xc9\x9c\xf6\x87\xde\xde\x7c\x88\x1d\x9a\x8c\xe7\xed\xf6\x94\xbc\x37\xcd\x96\xda\xe9\x22\xe2\xe0\x34\xb5\xfc\xb1\x33\xa5\xd1\xd8\x29\x5b\xf3\xdb\xdc\x21\x81\xd3\xc0\x55\x97\xec\xa7\xc3\x11\xb7\xbe\xb2\x7c\x0c\x47\xfd\xf1\x60\x8a\x6d\x70\x67\x9a\xfb\xb4\xca\xbd\xbe\xc7\x98\xf0\x2c\x23\x6e\xbd\x3e\xbd\x93\x3d\x06\x2f\x5c\x40\xfb\x46\x3f\x74\xe7\xa0\x18\xf1\xdc\xea\x13\x1f\x63\x3b\x1e\x87\x53\xea\x67\x84\x39\xd7\xdf\x62\x28\xf0\x46\x4d\x6e\x9d\x04\xc6\x8d\xc4\x8f\x2d\x2f\xcb\x92\xf5\x39\xf0\x68\xd2\x1c\x0c\x85\xcc\x0b\x69\x99\x47\x66\xf4\x79\x68\x39\x98\x2c\x29\x38\xe7\x9c\x9b\xa6\xe5\xd1\x90\x5b\x1e\x49\xf6\xb6\x4b\xc5\xb7\xf3\xe2\xdb\xb9\x11\xd2\x2c\x4d\x23\x2a\xcd\xd9\x4c\xf3\x59\x68\xcd\x30\xcc\xb1\x14\x17\x45\x16\xa7\x6f\x63\xcb\xd1\xd2\x19\x3c\xe4\x7b\xcb\xe1\xb2\xdd\xc6\x8c\xce\x47\x9e\xe5\x8c\x97\x53\xb2\xc4\x36\xfc\x75\x1d\xcb\x27\x4b\xc2\xd4\x5d\xad\x0c\x00\x60\x05\x74\x26\xa7\xd5\xc1\x18\x2e\xbd\x95\xb0\x2a\x1a\xb6\xa4\xd8\x41\x7c\x0b\xb4\xbb\x7e\x5d\x75\xe0\x58\x01\xf1\xc8\x58\x31\x0c\x64\x39\x15\x3c\xa6\xad\x5f\x8b\xa6\x34\x6a\xa8\x1e\xd2\x25\xf1\x33\xe2\x38\xb4\x37\xfe\x71\xd2\xef\x4c\x92\x7e\xff\xc1\xe1\xb4\x47\x22\x91\xd2\x9d\x24\x77\xfb\xfd\xed\x49\xf2\xf4\x69\xff\x50\xfc\xde\x1f\x4c\x7b\xa7\x24\x71\x28\x7a\x75\xce\xc3\xb9\x17\x5c\xd8\x06\xc8\xb3\x0c\x9f\xf3\x59\x64\x5c\xb8\x33\x2e\x10\x00\x64\xf0\x60\xc8\xa2\xdd\xcf\x13\xcf\xa1\x2f\x58\x7c\xd6\x9d\x7b\x41\x10\x92\xb9\xa3\x65\xab\xf3\x30\x58\x1c\x28\xe1\x08\x99\x39\x8d\x3e\xac\xda\xdb\xdb\xed\x07\xf7\x3e\xb3\xe2\xdd\xed\xfb\x38\x23\xcb\x4d\x08\x28\x79\x9a\x98\xfa\x23\xcf\xb1\xe2\xde\x83\x7e\x1f\xdb\xf1\xde\xde\x80\xc4\x6d\x0a\x29\x1c\x0f\xe3\xbd\x9d\x7b\xf7\x86\x61\x9b\xde\xbd\x8f\x63\x99\x7a\xf7\x5e\x0e\x16\xcf\xb1\xc2\xf6\xdd\xfb\x9f\xc5\x3d\x2b\x6e\xdf\x7d\x28\x38\xb6\xb3\x0d\x18\x2b\xfd\x27\x58\xf1\x75\x8e\xe0\xfb\x70\x27\xad\x24\x4a\xfe\x6e\x38\xd4\xc7\xd9\xb8\x2c\x10\xf2\xdb\x6d\xe0\xe3\x82\x3d\x0a\xa2\x1d\xd3\x0c\x76\x29\x48\x91\x4c\xd3\xdf\x0d\xb5\x19\xec\x7a\x19\x90\x08\x51\x6a\xdd\xdf\xb9\x37\xd8\x36\x5d\x3c\x52\x06\xb7\xca\x90\x3d\xc0\x52\x48\x24\xdf\x5c\x25\x2d\x02\x4d\x3f\xc8\x16\x60\xe2\x77\x3a\xda\x38\x57\xa7\x15\x46\xc9\xe0\x5e\x5e\x2d\x2c\x97\x0e\xb6\x1f\x2a\xff\x48\x0f\xb6\x01\xce\xd2\xef\x49\x3e\x3c\xde\x6e\x63\xcb\xa7\xf1\x98\x4f\xf1\xee\x60\xfb\x61\xee\x3b\x62\xee\x08\xd6\x77\x28\xf5\xd8\xb5\x90\x51\x9c\xd7\xa0\x96\x28\xcf\x87\x3a\x08\x0f\x93\xdd\x20\x67\x39\xb7\x07\x3b\x0f\x76\x1e\xde\xbd\xbf\xf3\xe0\xa6\xf6\xf6\xc4\x69\xde\xdf\xf5\x60\x1d\x2b\x03\xe9\x39\x4d\xda\x03\x01\x56\xaf\xe3\xee\x79\x8e\x65\x15\xd5\x75\x18\xee\xcd\xf5\x79\xe3\x0d\xf3\x4f\xd5\x81\x23\x71\xa4\xca\x3d\x6b\x53\x51\x0a\x7f\x36\x27\x2e\xf5\x48\x43\xc3\x62\xfb\xcc\x07\xeb\x9a\x66\xbb\xcd\xf6\x8a\xfa\x9b\x6b\x76\xe7\x96\x4f\xa9\x5b\x20\xc9\x8c\x32\xb2\xa4\x77\xef\x0f\x87\x4b\x40\x47\x69\x89\x49\x97\xbb\xd4\x19\x0d\xec\xe5\x1e\x75\xda\xdb\xf7\x47\xdb\xf7\xed\x65\x07\xce\x73\xb3\xdd\x33\x2c\x2f\x3e\xe1\xf6\x90\xce\x3a\x67\xe4\x9c\xde\xbd\xdf\x39\x1b\x16\xa0\x9e\x39\xd6\x59\x7b\xf1\xe9\x39\xc6\x98\xcc\x04\x7e\x2f\x7a\xe7\x38\xab\x7c\x9f\x89\x6f\x0e\x5d\x3a\xe0\x5a\x35\xa1\x34\xc2\x30\xb3\xed\x76\x92\x65\xed\x36\x23\xed\xb6\x9b\xe5\x07\x90\x7c\x4f\x24\x8b\x86\x95\x20\x23\x9e\x0c\x9b\x63\x39\xf2\xb5\x23\x5d\x59\x01\x6c\x3d\x18\x4a\xae\x66\x56\x04\xab\xc9\xc8\xb9\x53\x71\xfa\x7c\x2a\x5f\xbf\x50\xf1\x9f\x31\xb9\x72\xea\xfc\xf1\x89\xa3\xc5\x9b\x17\x4e\x4d\xbc\x59\xe3\xf2\x10\x26\xfb\x37\x64\x29\xe9\xbb\x5c\x3a\x54\x7a\x30\x39\x74\x24\xfd\xb7\x76\x30\x79\xd5\x48\xb2\x0e\x9d\x71\xdc\x19\x4c\xd3\xd4\x52\x4f\xb9\x62\x83\x65\x8d\xec\x4f\xc7\x93\xc9\x4c\xb9\x35\xc1\x2b\xd4\x8e\xdb\x28\xc3\x88\xa0\x53\x17\x89\x11\x1f\x39\x1b\x1c\x77\x37\xb9\x3a\x89\x4b\x3b\x75\xc9\x04\xfb\xb8\x69\xae\x0a\x4f\x2c\x97\x0e\xb8\x61\x21\x3e\xdd\xb9\xc1\x95\x4a\x39\xfe\x0b\x78\x9d\xf1\x87\x98\xd3\xfc\x26\xcc\x7a\xe5\x58\x82\x88\x90\x23\xa7\xf0\x1d\x97\x65\xe4\x40\xec\x1f\xad\x2d\x0b\xff\xeb\x34\x95\x56\xf6\x1f\x1c\xba\x42\x2d\x64\xa3\x4f\xb7\x07\x88\xa0\x2d\x78\x7a\x80\x08\xb2\xe0\xe9\x21\x22\x08\xc3\xd3\x23\x44\xd0\xbf\x8a\xa7\x07\x87\x88\xa0\x4f\xb7\xfb\xc8\x46\x6d\x94\x91\xd7\x8d\x90\xfe\xe0\x40\x30\x8b\xf7\x8d\x1f\xa5\xe9\x49\x0d\x5e\x79\xd7\x0f\x1c\xf2\xda\xc1\x19\x79\xe3\xac\xbb\x71\xe6\x39\xe3\x06\xcc\x09\xe5\x9a\xf3\x34\x11\x56\xde\x52\x82\x3c\x74\xae\xe5\xd3\x00\xdc\x2f\x6b\x72\x09\x4e\x5e\x7c\x5d\x84\xc2\x25\xab\xf4\xf2\xf3\x81\x5f\xd9\xc7\x8e\x15\xe6\x91\x75\x95\x80\x0c\xd2\xe4\x52\xa3\x48\x06\x16\x25\xcf\x6a\x78\x70\xe6\x46\x5a\x89\x4e\xef\xde\x7d\xf2\x46\x72\xe2\xfa\x03\xf8\x54\x7a\xdb\x30\xa0\x78\x77\x7d\x35\xa2\x97\x41\x6c\x70\x3f\x48\x4e\xcf\x8a\x50\x6d\x62\xa5\x3f\x77\xe8\xe7\x6e\xdd\x5f\xe3\x89\x53\x11\xf4\x6f\x5a\x27\x44\xaf\x44\x7b\xe1\x58\x17\x8e\x00\xb8\xea\x1b\x2e\xeb\x76\xa1\xa2\xc0\xfa\x49\x76\xdf\x29\xa9\x79\x81\x6e\x97\x4f\xe3\xae\xae\x18\xb8\x22\x4b\x7a\xb6\x93\xe2\x91\x9c\xa9\x51\xbe\x6b\x55\x3a\xd5\x6a\x5c\x94\x8f\xc2\xae\x00\x7d\xa1\xbb\x05\x49\x5a\x51\x4b\x7c\x23\xea\x75\x8a\x09\xf8\xa8\xb8\x53\x91\xc8\x6a\x7f\xad\x77\x1c\xb2\x4e\x44\x86\xea\xea\x62\x4d\x1d\x67\xdd\x9c\xa0\x6a\x37\xa0\x98\x4b\x4f\xde\xc0\xce\x95\xcd\xda\x89\x63\x79\x1b\xa0\x8c\x72\xd5\xc0\x39\x49\x96\x33\x16\xf3\x77\x6f\x9e\x97\x0f\x66\x99\x4a\x2e\x17\xb2\x9f\x39\x99\x36\x17\x68\x51\x9a\x60\x77\x6e\xbd\xb0\x12\x8c\x1b\x65\x84\x56\x2c\x68\x7a\x82\x35\x5b\x0b\x4e\xcf\x81\x1c\x27\x8a\x21\x05\x46\x54\xbb\x3b\x2c\xe2\x46\x89\x2d\x11\x94\x6f\xac\x80\x2e\x1c\xeb\x2b\x4b\x01\x14\xab\x62\xb8\xca\xba\xa6\xa9\xe5\xd4\xd9\xd9\x34\x6d\xe5\x29\x52\x0e\xb6\x86\xb2\x87\x97\x4b\x88\x5e\x6d\x44\xfc\xa7\x84\xfb\x0e\x37\x2e\xdc\xf8\xcc\x90\xf0\x35\xb6\x11\x1e\xce\x4b\x4b\x4d\xc9\x89\xda\x08\xe5\x62\x6a\x9d\x90\x29\xc6\x07\x98\x10\x71\x68\x49\xf0\xcf\x56\x42\x22\x6c\x9a\xe5\x1a\x22\x55\x30\x19\x47\x53\x28\x25\x99\xf5\x37\x8e\x35\x27\xeb\x2a\x56\x23\x34\x42\xe0\xea\x5c\xdd\xe5\xf5\xf1\x48\xab\x22\x0d\xb0\x9d\xd8\x49\x1b\x76\xd2\x27\x0e\xbd\xe3\x94\x44\x52\x87\xa1\xf5\xc4\x21\x2b\x19\x29\xa6\xe6\x7e\xe3\xad\x63\xad\x1d\x73\xb6\xb5\x59\xf5\x85\x5a\x28\x43\x3f\xa7\x0c\x45\xd7\xe3\x62\xd8\x72\xc0\xc4\xef\xe6\x48\x63\xe1\x8c\x48\x09\x4e\x45\xa2\xdd\xd4\xda\xa0\x30\x44\xe4\x79\x8b\x70\x3b\xa7\x89\x4e\x48\xa1\xad\x9a\x3b\x31\xec\x8f\x03\x30\x2b\xa0\x94\x86\x23\x49\x0e\x1d\x6e\x05\x64\x80\xed\xa0\xdd\x1e\xf2\x6a\x6f\x2a\x22\x86\x8f\xe9\x4a\xde\x0d\x5f\x76\xa3\xe6\xec\x2d\x94\x0a\x5f\x7c\x1c\xea\xce\x14\x8e\x82\x44\x5a\x95\x84\xc0\x6d\xcb\x29\x8f\xf7\x6b\xee\x46\x7f\x47\x6f\x72\x47\x6b\x79\x97\x82\x76\x1b\xf3\x02\x38\x7e\xce\x03\x43\xa2\x5c\x35\x85\xa8\x9c\x9c\xb1\xe8\x4f\x81\x8c\x02\x4b\xbb\x5d\x07\x4c\xab\xaf\x15\x68\x07\x19\x89\x2a\xf3\xb2\x09\x25\x4b\xed\x8b\xc3\x51\x8e\x26\x01\x0d\xf3\x5e\xb8\xb4\x35\x20\x4c\x76\xc5\xa1\xb0\x2a\xa5\x65\x6b\xbe\x95\x46\x92\xa9\x0f\xc6\xd1\x14\xab\x3e\x31\xd3\xb4\xdc\x51\xa0\xb1\x27\xea\x74\x04\xfe\x58\xae\x74\xdd\x2c\xe9\xbc\x83\xf1\xd0\x4d\xd3\xa0\xbc\xf2\xf5\x82\xcf\x30\x09\xab\x88\x06\x16\xce\xeb\x17\xcf\xe4\x9a\x7e\x07\x6a\x11\xcb\x41\x06\xc5\xf6\xeb\xd3\xfe\xd0\xdf\xcd\xb5\x06\xc4\xb1\x6c\x25\x0f\xa1\xee\xd8\xd7\xbe\x21\x7d\x38\x33\x88\x13\xde\x98\x03\xa8\xf7\xc0\xa4\x0a\xaf\xf2\x51\x71\xd2\x27\x31\x96\x6a\x8d\x19\x97\x28\xa1\x46\x13\x0b\xee\xbd\xd2\xff\xa6\xb0\xc8\xf9\xdc\x13\x7f\x7d\xf6\x21\xca\xd6\x6d\xc3\xc6\x92\xbb\x78\x6d\x21\x87\x96\xc5\xa9\x2f\x65\x56\x4a\xa2\xc0\x61\xcf\x94\x17\x5e\x52\x85\xbd\xd9\xc6\xe0\xb9\x96\x14\x4a\xb5\xe6\x8c\x28\x0d\xf8\x1b\x72\x6b\xcd\xe7\xac\xd8\xf0\xae\x2f\x50\xe8\xc9\x67\x35\xd9\x65\x06\xb7\x7e\x4f\x1c\x72\xe5\x90\x27\x4e\xc1\x8c\xc8\xc4\x52\x74\xd5\xa6\x50\x1c\x31\x69\x5c\x4d\xeb\x2e\x25\x71\x4c\xe5\x52\xd2\x9e\x1b\xdf\x3b\x96\x9c\x65\x70\xdb\x02\x6f\x6a\x3b\x2c\xd8\x15\xc9\xf0\x99\x08\x1c\x5e\xd7\x3b\x7d\x1c\x5a\x8d\xdc\x46\xcd\x27\xb5\x76\x74\x1d\x3b\x19\x59\xd5\x32\xdb\x77\x04\xfa\xc7\x4e\x53\x30\x13\xe3\xbc\x39\xf9\xd4\x49\xd3\xdf\xee\x58\xbb\x24\xd0\xa3\xa5\xab\xb2\x75\xd4\x33\x4d\xeb\x85\x55\xd2\x75\x1d\x4b\xa5\x2d\x5f\x59\x33\xae\x8f\x9b\x52\x7a\x11\x4a\x07\x67\xa0\xc3\xae\xa2\x9d\x83\x4b\xf3\x53\xa7\x08\x7f\x2e\x2f\xe0\x4e\x1d\x90\xae\x5b\xc8\x09\xfc\x98\xfb\x71\x47\x1a\x19\xa5\x69\x28\x0e\x86\xb5\x64\x82\xd8\x52\xac\x43\x70\x3c\xdc\xbb\xec\x5c\x5c\x5c\x74\xe6\x41\xb8\xe8\x24\xa1\x27\x8f\x10\xb3\xa1\xb2\x21\xa7\xef\xde\x3e\xed\x3c\x84\x8b\x94\x57\x62\xd9\xae\x44\x67\xed\xe7\x56\x9f\x14\xb7\x7c\x44\xf5\x04\x92\xc1\x43\x32\x26\x6a\x31\x73\xc1\xf0\x3b\x65\x15\x8a\x20\x0f\xd3\xfc\xd2\x21\x4f\x1d\xda\x30\x85\x62\x3b\x3a\x02\xc7\xfb\x17\x4e\x46\xde\x39\x70\x6b\x0c\x62\x20\xf2\x93\x43\x3f\x74\xdf\xbd\x79\x4e\x5e\x38\xf4\xa9\xd3\xad\x95\x25\x8f\x21\x55\x17\x27\xdf\xe4\x07\xe3\x9f\x1b\x4e\xbd\x08\x93\xcf\x2b\x42\xba\x2f\xd4\xdb\x32\xb8\x20\xdf\x89\xf3\xdc\x7e\xe7\x07\xd6\xf9\x79\xda\x23\x5f\x8a\xb7\xc9\xac\xdd\xe9\xe6\x49\xdf\x8b\xc3\xf1\xac\x47\xbe\x75\x68\xef\x47\xab\x7f\x99\xf6\xbf\xc3\x3d\xf2\x95\x78\x1b\xf7\x3b\x0f\xa6\xed\x3b\x3d\xf2\xb5\x78\x9b\xcc\xc4\xe3\x0f\xf0\x61\x32\xdb\xef\x3c\x15\x07\x61\x91\x14\x47\xa2\xd2\xa4\xdf\xef\xf7\xe1\xf7\x11\xfc\xee\xc3\xef\x13\xe3\x93\x4f\x7b\xf6\xe8\x6f\xe3\xc9\x64\x3a\xed\x11\x7e\x7d\xd6\x52\x4e\x3f\x82\x76\x20\x2b\x48\x37\x07\x4f\x8d\x69\x3b\x5d\x4b\xb9\xd3\x3b\x25\x61\x5e\x6b\xa5\xbe\x69\xef\x94\x04\x51\x73\x44\x4f\x12\x80\xe8\x63\x8c\x28\xe5\x05\xcf\x07\xbc\x30\x9a\xa2\x56\x91\xa8\xe9\x44\x67\xa0\xfd\x42\xa1\x67\xfe\x39\xf3\xdc\x99\x71\x16\x44\x31\x82\x7b\x5c\xcb\xa7\x2c\xb2\xb8\x66\x18\x89\xc8\xbc\x21\x7b\x0c\x17\x41\xd4\xcf\x55\xed\xcf\x22\x70\xb3\x28\x76\xf4\xeb\xe4\x95\x35\x1f\x05\xf9\x59\x38\x72\x08\xea\x22\x5c\x0a\xf2\x5e\x92\xb9\x05\x65\xd1\x97\xd8\x9d\xf9\x94\x28\x86\xc5\x71\x64\xbc\x2a\x1f\x8f\xe0\x7e\x0c\xb5\xcf\x1c\xcb\xc7\xb6\x5f\x8a\xe1\x20\xa9\x5c\x17\x61\xe9\x2e\x36\x92\x25\xf8\x66\x40\x28\x17\x16\x96\x4f\xdd\x48\xe4\xbb\x05\x08\x60\xe0\x37\xd4\x2c\xcf\x33\xc0\x06\x31\x47\x74\x45\x6e\x73\x61\x99\x2b\xf3\xdb\x74\x16\x81\xaa\x22\x89\x22\x5c\xb4\x91\x11\x37\xba\xc9\xfe\x82\xc6\x65\xf0\xb9\x73\x2b\xca\xc5\x01\x08\x51\x1a\x8d\x73\x45\xc9\xc1\xd4\x34\x23\xe5\xaa\xd7\xe2\x54\xa7\xe3\xbd\x9d\xc2\xf9\xac\xec\x6d\xb1\xd1\x00\x1f\x0b\x88\x85\xa8\x38\x62\x45\xe0\x26\x33\xcf\xee\xce\x2d\x97\x0e\xfa\x24\x28\x51\x58\xd4\x47\xda\xfd\x05\xe0\xa5\xe0\xa4\xe8\xb7\x6a\xc6\x02\x3c\x1a\xdc\xb7\x1f\x92\x20\x67\x6e\x1e\x52\xea\x8e\x06\xf6\x36\xc6\xf2\x66\x3f\xc0\x4c\x4c\xbf\x76\x90\x69\x0d\xfa\x22\xc3\xd7\x8e\x0d\x19\xbf\x72\xec\x1f\x1c\xac\xeb\x2a\x3a\xc2\x68\x6e\x2c\x11\x10\x17\x67\x6a\x3b\x64\x32\xf6\x70\x79\x30\xee\xdc\x62\xd4\x1f\x87\x62\x88\x94\x77\x06\x30\x3a\xb6\x47\xbf\x70\xac\xed\x7b\xf7\xc9\xbd\x4e\x3e\x91\x92\x2d\xd7\xa8\xce\xf6\xb6\xef\xdd\x2b\x7f\x01\x58\x39\xd4\x57\x10\x95\x6d\xf8\x65\xfe\xdf\x69\x43\x43\x9f\xa9\xaa\xef\x76\xc2\x1c\x3f\x9d\x8c\xb0\x9b\xa7\x76\xdc\x27\x95\xff\xa7\x4a\x11\x1a\xac\xce\xe7\xb4\x4f\x66\x4d\x76\xa4\x1a\xf4\x73\x19\x40\x1a\xd9\x88\xd2\x99\xa5\xe8\x83\x2d\xf6\x5c\x9d\x23\x27\x0b\xc3\x79\x9b\x6e\x13\x8f\xb6\x95\x39\xcb\x70\x66\x61\x79\xb8\x7e\x28\x8e\xee\x2a\x93\x2e\x0f\x95\xc9\x85\x2a\x39\xd1\x1d\xd3\xfc\x41\x4d\xb0\xf8\x36\xc4\x9c\x0e\xee\x7f\xc6\x0b\x77\xc0\x33\x0b\xfc\x00\x93\x79\xbb\x4d\xfc\x76\x1b\x6a\xea\x96\xba\xd5\x2f\x4e\x01\x70\x35\xd6\xa1\x3e\x49\xf6\xee\xe7\xbd\x53\x73\x98\xf7\x2a\x90\x20\x08\xf7\xfa\x2a\x2c\x9e\xae\xcd\x34\xc3\xdd\x9d\xd2\xa8\xda\xe0\xe4\xf4\xfb\x52\xe7\xca\x75\x0e\xbf\xaf\xf4\x7a\x05\xe8\x5c\xed\x74\x6e\x67\x4e\x03\x1c\x50\x37\x47\xcc\xbe\x48\x50\x55\x05\x74\xd0\xff\x2c\x68\xbb\x19\x5c\xa7\x14\x68\x02\xed\x83\xd6\xca\xf6\xbd\xfb\x9f\x89\x87\x76\x40\xb6\x5b\xb4\xdd\x0e\x4d\x73\xa7\x45\xc3\x34\x4d\x64\x0f\xc5\x8b\x2e\x24\xd9\xf1\xfa\xc4\x09\xc8\xb5\xc4\x8b\xcc\x95\xa3\x65\x91\x34\x8c\xc6\x49\xbb\x3d\xa5\x3c\x27\x4d\x4a\xb1\xc6\x2b\x75\x47\xcd\x71\x56\xfe\x2a\xed\x97\x92\x8e\x47\x12\xfa\x60\xd8\x6f\xd1\xc4\x34\xd9\x5e\x7f\x88\x1d\x2a\xfa\x4c\xa2\x71\xd2\xe9\x4c\x69\x34\xf6\xda\xac\x33\x10\xef\x5e\xbb\xd3\x61\x53\xe5\xda\x4f\xf4\xe2\x61\xab\xc0\x92\xc2\xac\xd3\xd9\x88\xe1\x80\x00\x75\x47\x88\xb1\x46\x2a\x79\x8b\x25\xf0\x0a\x8e\x36\xbc\x9b\xf8\x52\x70\x19\x7f\xba\x7d\xef\x3e\x26\x31\xfd\xdc\xb1\xe2\x9e\x78\x2e\x22\x87\x14\xf4\xbe\x29\x44\x78\x5e\x37\x10\xe2\xe6\xcb\x33\x40\x29\x9f\x0e\x94\xfe\x95\x20\xd4\x4a\xe8\xfa\x10\x82\xa1\x4b\x1f\xf6\xee\x74\x64\x05\x7b\x3e\x28\xe1\x87\xc4\xa7\x01\x2e\xe5\xc7\xb6\xde\x46\xc0\x6b\x2f\x75\x31\x69\xb7\x83\x22\x50\x45\xb5\x1c\x5c\x76\xa9\xa1\x3e\x84\xa1\x06\xa6\x09\x7e\xcc\x40\x79\xc0\x92\x71\xd8\x20\x08\x90\x38\x9c\x8d\x2c\xde\xa6\xfe\x08\xd9\xe2\x7f\x1b\x91\x80\xb6\x44\x83\xbc\x0d\xf9\x2b\x7e\xfe\x89\xbf\xfb\x40\x59\xd6\xd8\x08\xe7\xcc\x7f\xe1\x4b\x35\x17\xda\x93\x28\xa2\xab\x8c\x24\x11\x0d\x41\x21\x21\x8a\xc8\x0a\x19\xc8\x1e\x90\x2d\xb4\x65\x0f\x08\xda\x15\xcf\x68\x0f\x7e\xff\x05\xd9\x83\x0c\x13\x4f\x67\x4e\x44\xe6\x4f\xe0\xd3\x08\x7e\x57\xf0\x9b\xc9\x6c\x73\x9d\xcd\x13\xd9\x7a\xf0\xc9\x86\xdf\x21\xfc\x52\xf8\xfd\x1b\xfc\x8e\xe1\x77\x32\x81\x3f\x53\xf8\xfd\x11\x7e\x53\x59\xd7\xac\x91\x15\xa2\xef\x1c\x2b\x26\xfd\xe2\x6c\xb3\x77\x77\xdb\x34\xfd\xdd\xc1\xf6\x03\xb0\xa3\xe2\x24\xc6\xa3\xd8\x6e\x14\xc8\x67\x64\x19\xd1\xd5\x3c\x5e\xda\xdb\x03\x02\xb1\x9a\x61\x12\x41\xf7\xe5\x61\x9f\x48\x7d\x9e\x9d\x9d\xbb\xe4\x22\x12\xef\x17\x11\xbc\x65\xe4\x2c\x6a\x92\xf9\xff\x6c\x2d\x23\x12\x77\x23\xe7\x8c\x2f\x38\xce\xc8\xa2\x29\x17\x02\xda\x5b\xd2\x0d\x82\xf7\x25\x8b\xa2\x8b\x20\x9c\x65\xe4\xbc\xa9\x50\x2b\x56\x9a\x3d\x71\xd7\x61\xbe\x1f\xc4\x8f\xf9\xfe\x63\x16\x89\x63\xb9\x38\x49\xb9\x1e\x47\x10\xac\x11\x5a\xce\xc8\x69\x23\xa0\x72\x9d\xe8\xc2\xe1\xbc\x69\x7e\xa7\x88\x5f\x5c\xe2\x21\x4d\x53\x92\x1d\xcb\xaf\xec\x12\x69\xda\xe2\xa6\x89\x52\x24\xe8\x74\x46\xae\x1a\x16\x76\xc9\xfe\x29\x67\x05\x4e\xa3\xdc\x11\x3c\x28\x33\x98\xa6\x55\xea\x41\x9a\xa2\x1e\x92\xc6\xa0\x79\x5b\x60\xdb\x29\xf0\x80\x42\x0c\x5d\x29\xd8\x14\x0f\x9f\xc0\x03\xce\xc8\x49\x43\xdb\x54\xea\x90\x81\x74\x50\xed\xbf\x2d\x7f\x1d\x3a\xa6\x39\x00\x19\xc7\x69\x64\xf1\x71\x1f\x74\x15\xd2\x94\xcb\xfd\x3b\x23\x17\x8d\x53\xd6\x05\x25\xe6\x34\x45\x9f\x6e\x4b\x65\xe7\x2a\x2b\x9b\x91\x7d\x58\x3f\x97\xf0\x7b\x08\xbf\xaf\xe0\xf7\x08\x7e\x8f\xe1\xf7\x00\x7e\x3f\xc0\xef\x6b\xf8\x7d\x0f\xbf\x6f\xe0\xf7\x19\xfc\xbe\x85\xdf\xe7\xf0\x7b\x07\x7e\x9f\xc0\xef\x4b\xf8\x7d\x0a\xbf\xef\xe0\xf7\x27\xf8\x7d\x01\xbf\x8f\xa3\x4d\xca\xeb\xa5\x0b\x01\x3f\x4d\xf7\x23\xe2\xd1\x3e\x99\x0b\xfa\xa7\xdc\x2c\xb4\x06\xe4\x8c\xb6\x06\x92\xe5\x83\xd0\x7b\x12\x4a\x22\x4b\x81\xa5\xf2\x4d\xe3\xa8\x7c\x93\xdc\xa9\x58\x2d\x31\xc4\x57\xcf\x9f\x59\x7c\x26\x63\x5f\x82\x13\x1e\x9d\x3c\x0f\xd9\xa9\x38\x6d\xeb\xf7\x3a\x1a\x43\x80\xcc\xd2\xe5\x9e\x1f\x49\xcb\xe7\x72\x5a\x08\x69\x24\x90\x3c\xf4\xd0\xdb\xa5\xc5\x45\x98\x36\xf4\x75\x69\x30\xf6\xa6\x24\x51\x16\xbe\xfb\x91\xad\x15\xd6\x35\xa6\xbb\x72\x2f\xf5\xeb\x9c\xba\x1c\x38\x1a\x26\xf4\x30\x1a\x8a\x43\xba\xeb\x27\x3c\x9b\xb7\xa9\x5b\x9d\x6d\x92\xd0\xcb\xa8\x6c\x26\x7c\x09\x6d\xb8\xa6\x69\x7d\x99\x37\x91\xa6\xa8\x8d\x28\x75\xd3\x14\x75\xd4\x5f\x81\x44\x2e\xc6\xeb\x15\xe6\xec\x04\xf0\x55\xee\xf5\xbd\x83\xc9\x13\x5d\x14\x53\x59\x74\x53\x14\x31\x4d\x79\x14\x6b\x51\x20\x44\x73\x5c\x20\xff\xdc\x34\xad\x45\x04\xb1\x65\x73\x37\xb2\x62\xd2\x70\xd3\xfa\x50\xc4\x06\x97\x78\xb1\x1c\x2d\xe6\x24\x97\x60\x9f\x07\xee\x4c\x36\x68\x9a\xcb\x68\xac\xb3\x4c\x75\xdd\xa6\x69\x95\x30\x03\x63\xd9\xf5\x7a\x73\xa3\x84\x3e\x8f\x6c\x55\x0d\x98\x82\xa9\x96\xca\x39\x5e\xa9\x1c\xa3\x84\x7e\x88\x6c\x20\x18\xc1\xd8\x6b\x0f\xa6\x23\x2b\xa1\x47\x11\xf1\xda\x6d\x08\x94\xb8\x8e\x54\x7d\x85\x91\x4a\xcf\x03\x89\xd9\x7b\x17\xe1\xac\x34\x7d\x87\x12\x45\xc2\x34\x0d\xd7\x2a\x30\x4d\xf4\x09\xcc\xc9\x86\xd9\x00\xad\xe9\xc6\x42\xa0\x6e\x91\x83\x4d\x8f\x4a\xaf\x8f\x50\x76\x4a\x49\x76\xf3\xb5\x12\xca\xbf\xe5\xe5\x02\x6b\xad\x69\x5c\x09\x7d\xa1\xb0\x30\x4b\xa8\x86\xaa\x6e\x67\xf4\x3c\xb2\x8f\x0b\x2c\x96\x03\x7d\x05\x03\x45\x3d\x31\x20\x20\xbb\x2d\x05\x45\xbc\x4a\x68\x29\x77\x96\xd0\xd7\x00\xd3\x32\x92\x1f\xe9\xc2\x30\xb0\x84\xbe\x2f\x1a\x7f\x5a\x6f\xe8\x18\xf2\xae\x0f\xde\xa5\xf4\xa5\x83\x4b\x64\x25\xcc\x1f\xcb\xe4\x25\xcc\x1f\x35\x99\x09\xe1\x8f\x26\x34\x21\xfc\xb9\x1d\x28\x73\xe6\x54\xf6\x5c\x6f\x2b\xae\x69\x4a\xa9\x45\x42\x0f\xa2\x22\xcf\x08\x46\xf7\xf7\xe9\x20\x2c\xe3\x9f\xa2\x62\xf1\x4b\x44\x5b\xfd\xd9\xad\xcb\xd5\x00\xa7\xd5\xca\xd4\x65\x7f\xd7\x79\xa9\xa1\xb8\x40\xe6\xf2\x9a\x3c\x90\x6b\xf2\x4c\x92\x2c\x89\xb2\xa6\x29\xe6\x4e\x13\x48\x99\xf6\xc7\x81\xab\x0a\x0b\x81\xdf\xf2\x74\x25\xd6\x42\x79\x1d\x7c\x80\x9e\xc1\x0a\xa9\xac\xa4\xb9\x66\x5e\xbc\xf6\x00\xe3\x7c\x3d\xd4\x56\xd1\xeb\xd2\x12\x2c\x8d\x07\x96\x53\xde\x78\x29\xff\x7b\x99\xff\x6f\x72\xd5\xcd\x4c\xd3\x9a\x53\xf4\xe9\x4e\x1f\xb5\xe7\x98\x80\x7b\x20\x26\x36\xc3\x79\x71\x03\xb6\xa0\xfd\xe1\xa2\x88\x15\xb5\x68\xb7\x25\x2b\x70\x4e\xd9\x78\x31\xcd\x4f\xef\xe7\x69\x7a\x26\x3f\x9c\xd2\x59\x64\x9d\x93\x79\x84\x87\x67\xa3\x02\x6e\x6d\x7a\x6a\x17\xb0\x6d\xd3\x53\x09\x8e\x33\xda\xea\x67\x82\x90\xe7\x67\x4f\x58\xd4\x8a\x8b\x73\x15\xb3\xe6\x2a\x5e\x6d\x7d\xbd\x89\xa9\x9b\x49\xa1\xd4\xbc\x4e\x54\x59\x12\x9f\x05\xa1\x1b\x5f\xa1\xa1\xd7\x91\xc3\x52\xc3\x68\x0f\x88\xda\xf7\xde\xa8\x69\x11\xbb\x68\x19\xb0\x6f\x22\xe9\xaa\xe3\x19\x00\xcc\x37\xcd\xfa\x3e\x23\x80\xfc\x24\xaa\x6c\x98\x72\xbb\x4d\xd3\xa5\x3a\xf3\x7f\xec\x38\xd4\xa6\xd5\x38\x96\x42\xa0\xa8\x32\x6c\xda\x80\x4b\x9b\xac\x43\x83\xc8\x8a\xc9\x3c\x17\x3d\x81\xea\x9d\x1a\xf8\xcb\x28\xdf\x79\x8b\x41\x80\xf4\xd7\x1d\x2d\x69\xab\x6f\xa3\xa9\xec\x9f\xb5\x84\xc3\xa2\x00\x50\x2e\x03\xb8\xbe\x8b\xd7\xb6\xfb\x36\x22\x3e\xa5\xcf\x22\x2d\x72\x28\xc1\xfc\xad\x5c\xa4\xdf\x57\xf9\xaa\x8f\x82\x63\x9a\xfa\x4a\xb0\xd8\xa2\x73\xac\xe2\x03\xe4\xb2\x97\x39\x19\xf4\x41\x9a\x79\xb5\x77\xff\xde\xbd\xbb\xf7\xea\x23\x10\x00\x44\x43\xb5\x8e\xd5\x6c\x5c\x51\x4a\xcb\xdc\x88\x34\xf5\xb9\x02\xfc\xc9\x4a\x8c\xd5\x50\x80\xb4\x80\x64\x53\xcd\x59\x1d\xc9\x9e\x57\xf7\x35\x89\x62\xa4\xb6\xb3\xe0\x84\xde\x29\xa8\xba\x60\x2b\x64\xbe\x56\xbe\x0f\x0a\x54\x7c\x5a\x45\x45\xbd\x33\xd6\xe8\xd3\xc7\xec\x6f\x7a\xef\xba\x7d\x15\x9b\x76\xa0\xab\xc8\xd2\x72\x59\xaf\x30\x4c\xc0\x70\x3a\xb8\xb9\xf6\x13\x58\x1f\x6b\x7b\xcb\x47\x8f\xac\x69\x87\x28\x63\xdf\x9d\x12\x43\x52\x00\x5f\xae\x72\xc9\x99\x84\x05\x15\x08\x0b\xe6\x76\xc3\xe8\x4c\xd3\x3a\x8d\x2c\xd9\x25\x75\x2c\x1c\x95\x59\xc7\xfc\x0b\xb6\x2b\x83\xa9\x8d\x54\xf6\xed\x89\x3c\x11\xd4\x56\x82\xec\x62\x7d\x49\xa8\x00\x52\x70\x20\x9d\x0b\x86\xe4\x69\x89\x21\x81\x75\x2b\xe3\x94\x43\x9b\x08\x91\x0a\x02\xe7\x2b\xbc\x79\x0d\x23\x2f\x70\x98\x07\x0b\x1d\x4c\x9f\x82\x48\x72\xe5\xaa\x2e\x5c\x54\x96\x53\x99\xac\x72\xf2\x29\x63\xff\x4b\x18\x54\x41\xfe\x44\x4f\x49\x7d\x2b\xcb\x4b\xeb\x21\xf8\x30\x5e\xf1\x49\xbd\x7c\x92\x6f\xe1\x6e\x8b\xbe\x74\x4c\xb3\x5c\x11\xae\x55\xb0\x8e\x03\x43\x95\x5e\x45\xe1\x52\x37\x9f\x5e\x03\xfb\x9c\xea\x08\x78\x5b\xb5\x79\x90\x84\xa8\x0b\x67\x7d\x2b\x12\xff\xe6\xb8\x7a\x50\xc3\x52\x02\x00\x39\x22\x71\xa2\x53\xe2\x80\x48\xa6\xeb\xb7\x91\x05\x6b\xa0\x4e\x18\xf2\xc6\x6b\x27\x12\x6c\x5f\x88\x99\x1f\xdd\x32\xbb\x6d\x35\x9e\xd8\x20\x8f\x16\xea\x00\x2a\xe5\x33\x5d\x9d\xf2\x79\xc1\xaa\xf4\x71\x1b\xd9\x08\x57\x8e\x48\x73\x8c\x49\xe3\x41\x0d\x6e\x70\x24\x50\x6b\x70\x53\x11\x21\x4b\x3d\x80\x1b\x20\x29\x28\x51\xab\x66\x88\x55\x06\xa5\x7c\x3a\x94\x95\x8c\xac\xda\x4c\x62\x5b\xd6\x0a\x7d\xae\xcf\x3d\xce\xf7\xfe\x59\x64\xb9\xc4\x8b\x70\x79\xe2\xdf\x45\xf6\x0d\x95\x8e\x9a\xea\xb4\x35\x1a\xe6\x7d\x55\xd5\x47\x11\xae\xd4\xff\x53\x64\xe7\xf8\x3b\xd2\x85\xd0\x56\x69\xae\x46\xaa\xdd\x36\x05\xfd\x62\xbb\x78\x95\xcd\xa3\x4f\xb7\xef\x22\x3b\xaf\xdc\x6e\xea\x4e\xb9\xc5\x17\x51\xa9\x73\x3a\xa7\xea\x5d\x12\x61\x9c\x79\xed\x76\x96\x91\x6f\x36\x48\xd8\xa9\xd6\x1c\xfd\x26\x22\xea\x96\x3d\x58\xd7\x0b\x6d\xd6\xc4\x29\x4c\x7d\x31\x61\xf4\x1b\xc7\x0a\x4b\x6a\xa1\x28\xc3\x95\x50\x2a\xe0\x61\x32\x28\x7b\x05\xfb\x26\xc2\x9c\xfe\xec\x58\x01\xce\x69\x99\x4f\x1f\x47\x16\x18\xde\xa9\x9a\x03\xbc\x6e\x77\xed\x2b\x5b\x85\xc7\x91\xc5\x88\x0b\x97\x2e\x84\x37\x66\x93\xae\x04\x58\xc5\xa2\x14\x8c\x95\x5e\x38\x24\xa2\x8f\x1d\xcb\xc1\xc3\xa8\xbb\xae\x91\x6a\x31\x39\x29\x98\x44\x85\x6a\x53\xf9\x02\x4d\x7d\xcf\xad\x8e\x15\xc7\x96\x91\xf7\x69\x6a\x85\x60\x3e\x4a\x3f\x8f\x94\x8f\x1a\x4c\xc2\x6e\x10\xba\xa7\xae\x4f\xbf\x28\xa7\x81\x7e\xa5\x13\x78\xf4\xbb\x72\x6a\x7e\x52\xf9\xb2\x92\x57\x9f\x54\xbe\x2f\xa7\xc2\x7a\xfd\xb6\x9e\x02\xa5\xbf\xaa\x94\x16\xbc\xcf\xd7\xd5\xfa\x94\x21\xed\x0f\xe5\x54\x09\x27\x1a\x27\x6b\x69\x0a\x76\xbc\xfc\xe5\x8c\x45\x67\xd4\xcf\x53\x70\x46\x7e\x8e\xe8\x37\x51\xc9\x73\xc1\xe7\xd1\xba\xcf\x91\x9f\xcb\xba\xd3\xea\xcc\xef\x97\x84\xdd\x60\x92\x94\x9f\xc6\x02\xb5\x23\x11\x57\xf1\xc2\x84\x69\x11\xae\x43\xd5\xd2\x81\x9b\x6d\x8d\xf9\x24\xa1\x5c\x10\xac\xb2\xc2\xa4\xc0\xbe\x91\x95\xb4\x29\xea\xf5\x10\x59\x48\x1e\x50\xbc\xfb\x6d\x2b\x1c\x21\x1b\xb5\x43\x88\x80\x8c\xfe\x86\x30\x49\xda\xd4\x89\xc0\xf6\x48\x96\x74\x65\x56\x91\xcb\xc5\xd8\xd6\x14\x8f\xab\xe4\x5e\x4f\x96\x59\x97\xbf\x8c\xd8\xb8\x3f\xb5\xf5\x21\x4b\x50\xee\xb6\x8a\x23\x81\x7a\x08\xdb\x62\x97\x96\x2d\x38\xaa\xaa\x11\x6a\x3b\x79\xb3\x91\x4a\xfc\x04\xb5\x23\x4c\x92\x8c\x7c\xf1\x11\xb0\x14\x80\x82\xad\xfd\xc4\x0b\x4e\x44\x67\x71\xc9\x88\x42\x1b\xef\xf2\x9c\x59\x51\xd8\x59\x8f\x49\x8b\xc0\x27\x82\xe6\x7a\x15\x7f\xca\x35\x19\x13\x50\xee\xf5\x50\xdb\x89\xd4\xc6\x81\xdb\xfa\xa2\x10\x6e\x9e\xda\xbe\x80\xa9\xad\x2a\x21\xdf\x45\x0d\x17\xd0\xba\xff\xaa\xef\x62\xde\x32\xf2\xe5\xb5\x39\x35\x9a\x64\xe4\xfb\x6b\xf3\x15\x77\x25\xdf\xde\x04\x38\xc0\xaf\x1c\x6c\x25\xbc\x01\x2d\x7c\x84\x6c\xf5\xec\x8f\x9c\xc8\xe2\xd8\x86\xdf\x36\x0c\x31\x23\x5f\x5d\x53\x3b\xd4\x5c\xab\x10\xdc\x34\x09\x98\xe1\x8c\x7c\x7d\x5d\xd9\x86\xce\x40\xd9\x22\xdc\x22\xf9\xe1\xa6\x91\x89\x09\x2e\x6e\x5b\xd6\x10\x94\x0b\x04\xe5\x65\x04\xe5\x15\x04\xcd\x48\x9c\x5c\xd3\x43\x79\xb6\xd0\xd5\x8f\x04\xfe\xc6\x50\x8a\x27\xd7\xce\x75\x89\xa0\x64\xc4\xbf\xae\x05\xbd\xa8\x4b\x8d\x7c\xa2\x1b\x09\x13\xda\xe4\x11\x65\x75\xca\x63\x3b\x26\x2a\xa2\x14\x84\x35\x48\x72\xdd\xc0\xaa\x0a\x23\xe8\x3c\xbc\x37\xcd\x2b\x6e\xfd\x1c\x91\x95\x20\xda\x76\x98\x58\x9f\x47\x55\x07\x52\xf2\xde\xe8\xe7\x42\xaf\xbc\xd8\xf4\x42\xd8\xae\x88\xdc\x90\xd6\x5d\x92\x84\x78\xf8\xd8\xb1\x78\x65\xc4\xb8\x69\xbb\xe1\x6a\xbb\xc9\x30\x26\x72\x2d\x8a\x8e\x7c\x11\x61\xa2\xf7\x08\xf1\xfe\xdd\xb5\x1d\x1b\x42\x57\x4a\x06\x6c\x36\x22\xfb\x11\x54\xa9\xd7\x8c\xa8\xe4\xcb\x9b\x46\xc7\x9c\xc2\x0a\x4e\xba\xef\x38\x07\x25\xa7\x15\x2f\xdf\xf4\x0c\x8b\x38\xdd\x6b\xca\x2c\xbc\x24\x11\x9a\x45\x10\xc5\x9d\xcc\x23\x9c\x89\xae\xe8\x65\x29\xba\xf2\xfd\xef\xe8\x4a\xe9\x9a\xe9\xfa\xae\x14\xa2\xaa\x7a\x57\xc4\xe2\x14\xdd\xf8\xf6\x7a\xb0\xf2\x86\xcb\xd4\x2a\xa8\xc9\x1b\x09\x66\xbd\xf7\x8a\x4a\xbf\xfa\xdd\x95\x3e\x93\x95\x0a\x32\x20\x2a\xfc\xfa\xfa\x0a\x01\x30\x69\x2a\x95\xaf\xe2\x52\x00\xef\x11\x2f\xae\x57\x6c\x68\x22\x26\x6f\x23\x2c\xeb\x56\x4c\x80\xa8\xff\x87\x8f\xef\xb0\xda\x41\xe8\x78\x4a\x64\xc5\x6d\x84\xc8\x4b\x55\xb7\xc4\x79\x51\x73\x9c\x5c\x5b\x73\x53\x8f\x8b\x4b\x41\x5b\x1e\xc0\xe2\x8a\x92\x58\x4c\xe3\xdc\x68\x05\x13\x5e\xf0\xf1\x6a\x7c\x3f\x45\x18\x93\x8f\x5f\x79\xe5\xcc\xa2\xe3\x3c\xc1\x44\xf0\x38\xe2\xd9\xbf\x69\x10\xad\xda\x20\x2c\x60\xe7\xaf\xef\x77\x99\xaf\x57\x5d\x7f\x21\x58\x7e\x5e\xbd\x08\xcd\x04\x44\xc9\x51\x2c\xa8\x14\x8a\x83\x2f\x8f\x5e\xbd\x44\x4d\xd1\x2a\x34\xc3\xa9\x3d\xbe\x37\xa9\x99\xcb\x2a\x9a\x34\xca\x6f\x5b\xc9\x4f\x8e\xba\x36\x4e\xe8\x4f\x4e\xd7\x09\x39\x8b\xb9\x74\xec\xf1\xee\xcd\x73\xe2\x42\x6a\xc8\xcf\x83\x0f\x45\xea\x30\x48\xc0\xf9\xbb\x38\x62\xd4\x0a\xa0\xc6\xa8\xab\x41\xa2\x54\x90\x7f\x72\xca\x3e\xdc\x30\x26\x6e\x51\x53\xad\x91\xe6\x9a\xdc\x4d\x35\x65\xb9\x03\x59\x96\x94\xf5\x44\xca\x11\x65\xa4\xe1\x70\x63\x78\x0b\xe9\x15\x24\xd2\x96\xfd\xd7\xe5\x11\xd5\x70\xd0\xf1\x09\x55\x8c\xb2\x72\x18\xe9\xbc\xa7\x37\x45\xd1\x00\xf7\x5a\xc5\x64\x80\xd6\xb6\xd4\x5d\x54\x23\xf4\x0b\xd7\xcf\x86\x5f\x0c\xcf\x49\xaa\xba\x4b\x83\x21\x5f\xf3\x8c\x29\x6d\xc6\x25\x00\x24\x0f\x57\x1c\xf7\x78\x39\x96\x10\x9f\xda\xab\x6c\xc8\x3f\xdd\x1e\xb1\x44\x01\xc6\xf2\x31\x69\xf5\x9b\xfc\x9d\x88\xb1\x49\x55\x03\x88\x91\x8c\xf3\xa0\xda\x9b\xc6\x18\x8d\x9a\x3c\xc4\xb8\x3c\xb2\x62\x72\x53\x51\xcb\xc7\xd8\x2e\x77\x6a\x43\x8f\x1a\x7d\xd0\x40\x2f\x6f\x9a\x00\x5f\x1c\x32\x05\xe6\xe4\x1a\x51\x39\x8c\xa3\xc4\x6a\x30\xaf\xc4\xab\x3c\x1c\x61\x6e\xbd\xc0\xc0\xf1\xab\x43\x1c\xca\x08\xa3\xad\x01\x1e\x82\x6b\x3e\xc3\x6b\x72\x28\xe2\x8f\xfc\xae\x8c\x17\x1a\xd9\xfe\xd0\xe3\xb1\x31\x87\x7b\x76\xd3\x8c\xbb\x21\xf7\x21\x94\xab\xe5\xa9\x47\xaa\xd3\x88\xd7\x8d\x62\x16\xbb\xce\x1b\x78\x7d\xea\x83\xe2\x6f\x35\x85\x78\xdd\x63\x27\x58\x2c\x5d\x8f\xc3\x05\x51\x00\x15\xe9\x1e\x30\x8f\xb6\xfa\x18\x13\x59\xfd\x71\xe4\x04\x4b\xfe\x6c\x46\x43\x4c\xdc\x91\x35\xaf\xc8\x11\x04\x4d\x4b\x53\xb0\xf0\xbd\x73\xee\x83\xe3\xe6\xd2\x4b\x37\x8a\xc2\x83\xc0\x8f\xf9\xa5\xce\xb4\x64\x21\xf7\x63\x95\x49\xbe\x54\x0b\x56\xd2\x4a\xe5\x71\x9a\xa2\x22\x6c\x6b\x0e\xa2\xe3\xe3\x6f\xde\x1d\x1e\x1f\x1d\xbd\x39\x3e\x78\xf5\xf2\xed\xe1\x77\x6f\x8f\x8f\xd3\xd4\x8a\x69\x43\x3a\x26\x10\x44\x31\xa7\x6e\x44\xca\xa0\x01\x9a\xc7\x21\x3f\x75\xa3\x98\x87\x7c\x96\x6b\x7e\x45\x1b\x3f\x74\xd9\x6c\x66\xb9\x38\x13\x50\x8c\xa2\xf0\x8d\xca\x42\xe7\xd8\xe6\x70\xfb\xc6\x46\x15\xa7\x3f\xa5\x36\x13\xe5\x85\xaf\x7b\x27\x0c\x82\xb8\x7b\x47\x4d\x6f\x37\x3a\x63\xb3\xe0\xe2\x4d\x10\xc4\xb8\xe6\xc3\xaf\x5c\xda\x01\x97\x03\x98\xcc\xb1\x3b\xaf\xcc\x17\x5e\x49\x34\x8a\xa9\x46\x87\x61\x8e\x17\x55\x0f\xb3\x0a\x79\x73\x97\xeb\x04\x62\x6f\xe3\x4c\x0a\x89\x8b\x5a\x4e\xf8\x3c\x08\xf9\x01\x50\xeb\x61\xf5\x95\xc6\xa3\x71\x1e\xee\x3f\x26\x73\x6c\x8f\xe7\xd3\x82\xf2\x1c\x87\x56\x21\x4b\xda\x64\x0b\x44\xa2\x33\xb6\xb0\x5b\xef\xa5\x4d\x90\xfd\x4d\x94\xe9\x95\x90\x24\x74\x05\x4c\x09\xda\x3f\x67\x31\x0b\xc1\xcd\xee\x32\xb2\xa5\x64\x49\xfe\x2a\x87\xaf\xda\xbf\x3e\x9a\xb9\xe7\x60\x49\xea\xce\xc0\xb0\xbb\xc9\x47\x4b\x17\xbc\xec\x59\x3d\x6b\xe6\x9e\xa7\xd1\x92\xf9\xb8\x87\xb3\x0c\x58\xe3\x97\xa2\xb5\xe6\x8a\x91\xcc\xe1\xce\x36\x7f\xbf\x70\x67\xf1\x99\xfa\xac\x22\x26\xe8\x38\x66\x32\x4c\xbb\xcc\xba\xb3\x9d\x65\x64\xc6\x62\xb6\x6e\x28\xb6\x62\x30\xd0\x23\x70\x60\x6d\x23\x44\xbc\x80\xcd\x20\x4c\x7a\x3f\x83\x10\xf8\xcb\x24\xe6\x33\xdb\x49\x2c\x27\xb1\x56\x19\xb9\xb4\xc6\xe8\x94\xc7\x6f\x83\x0f\xdc\x47\x53\x8c\xc9\x0a\x4c\xca\xc4\xae\x30\x6b\x30\x43\x2b\xa1\x9b\x3c\x0f\x75\x65\x5e\x09\xde\x28\x4d\x45\x33\x98\x5c\x08\xf8\xd8\x2b\x35\xdc\xea\xd1\x0a\xaa\x88\x78\xfc\x2e\xe2\x21\x04\xfa\x27\x8b\x20\xf1\xe3\x6a\x73\x08\x5c\xa7\x89\x9c\xb2\x8e\x51\xb5\x54\xf1\x01\xdb\xf0\xa2\x46\x49\x5b\x83\x8c\x48\x7f\x8d\x91\xbd\x52\xd9\xd7\x6d\xb6\x64\x70\x01\x41\xfd\x2a\x65\xfb\x72\x35\x95\x21\x08\xda\x30\xd2\xe5\x00\x80\xc4\x34\x65\xcf\xf2\x0d\x8e\x5f\x18\xca\x3d\x07\x09\xa9\xb5\x0e\x9e\x88\x87\xe7\x3c\x4c\xd3\x0b\xd7\x9f\x05\x17\x5d\x2f\x90\x86\x57\x4a\x4a\x82\xdb\xa8\x17\xf2\x45\x10\xf3\xee\xf2\x6c\xd9\x9b\xb1\xf3\x9e\x6c\x3d\xea\xa1\x76\x69\x94\x6d\xd4\x1b\x6c\x3f\xec\x2e\xfd\x53\x34\xf4\xbb\xd2\x74\xda\x42\xfb\xf2\xfa\xfa\x67\xa8\x11\x11\xf4\x98\xb3\x90\x87\x86\x2a\xa9\x67\x55\xec\xec\xba\xc4\x77\x9d\x37\xfc\xa7\x84\x47\x31\x9f\x75\xbe\x75\xe3\x33\x44\xd0\x77\x2f\x9e\x7f\x11\xc7\x4b\x95\x8e\x30\x01\x3b\x37\x2b\x24\x2b\x6d\xd9\xe5\x67\xb8\x1b\x9f\x71\xbf\x16\xf8\x6e\x6e\xc5\xdd\xe0\x43\x6e\x0b\xd1\x3d\xf1\x82\x13\x0b\x98\x9c\x9d\xfe\x0e\x5c\x37\x8b\x7d\x22\x89\x4a\x91\xac\xf3\x28\xd6\x3c\x37\x6c\x87\x2c\x86\x13\xcc\xb8\x81\x72\x32\xa0\x4b\x8a\x1d\xb2\xa1\x69\x5e\x9a\x6e\xc2\xab\xf3\x15\x8f\x14\xa4\xdf\xbd\x79\x5e\x67\x28\xad\x18\x04\x11\x18\x77\xa5\x70\xaa\x56\x69\x7d\xde\x2b\xcd\x08\x7a\x12\x78\xbc\xcb\x61\x08\x5b\x30\x12\x43\x7d\x37\x64\x49\xc3\x5d\xb0\x53\xb0\xb1\x37\xc4\xac\x19\x68\x4b\x0f\x88\xab\x69\x24\x5b\xc8\x36\xb6\x20\x84\x01\x8f\x22\x76\x0a\xee\x79\xd5\xbd\x53\x0d\x8b\x33\xe9\x64\xd8\x6b\x90\x68\x48\xef\xac\x34\xee\xde\x91\xe3\x3b\xf4\x38\x08\x2b\x7d\x1a\x77\x8f\x23\xee\xcd\xbb\xc7\x4e\x9a\x96\x34\x63\x15\xee\x8e\x7c\x2b\xee\x82\x28\x75\x15\xb3\x53\x1b\x39\x7a\x0f\x42\x19\x19\xc7\xba\xf1\x91\x6f\xa1\xc0\xe9\x44\x4b\xd7\xf7\x79\x88\x08\x18\x18\x23\x39\xc2\x8e\xca\x83\x48\x14\x5f\x79\xdc\x46\x92\x5e\x09\x8c\xeb\xc2\x63\x1b\x2d\x2f\x87\xc6\x19\x77\x4f\xcf\xe2\x7a\x32\x22\x2c\x8e\x43\xb1\x2c\xdd\x9f\xb9\x8d\xa2\x05\xf3\x3c\x44\x10\x0b\x5d\xd6\xf1\xd8\x09\xf7\x90\x1d\x77\xef\x80\x99\xde\x65\x6c\xa1\xe7\xaa\x29\x71\xbe\xb6\x65\x9f\x98\xa2\xe1\x6b\x5d\xe2\xb3\xbc\x72\xd9\x23\xd5\x2e\x89\x42\xc7\x8e\x2b\x13\x4b\x90\x98\x8a\x8e\xd8\x14\x90\x52\x37\x11\x24\x3b\xcb\xf0\x94\x0c\xb0\x1d\x77\x8f\xb9\x85\xb3\xa1\x97\x74\x8f\x2f\xdc\xf8\x4c\xd0\xe8\xe5\x12\xf8\x9a\x22\x4a\xc4\xfc\x9f\x9b\xc9\x9f\xfd\x39\x4c\xfe\xfc\x1f\x91\xc9\x9f\xff\x7d\x99\x7c\xc9\x95\x2c\x0b\xae\xc4\x71\xc4\xde\x17\x3d\x77\xa3\xf8\x4d\x70\x81\x48\xbe\x26\x23\x7b\x25\xf7\x54\x3b\x4a\xac\x95\xe4\xbe\x6c\x2f\x21\x35\xde\xdb\x1e\x4f\x33\xe5\xed\x84\x24\x89\x7e\x6a\x0d\xd6\x9f\x2a\x7f\x70\xa6\x19\x21\x26\x7b\xa0\x78\x0e\x39\xa2\x12\xcf\xd1\xdf\xcc\x68\x38\x49\x28\xb8\xeb\x37\x81\xb2\x61\x28\xb3\x17\xb3\xc4\x92\xff\x14\x87\x21\x96\x19\x22\x82\xd1\x38\x82\xfd\xf0\x69\x10\x7e\x19\x1d\x78\xae\x20\x3e\x82\xe9\xb8\xb0\x72\x50\x20\x32\x46\x10\x26\x16\x11\x14\x71\x0f\xb6\x89\xfc\x9b\x66\x50\xe4\x07\x95\xfc\x5c\x10\x8f\x35\x1f\x07\x92\x7b\x28\xe8\xc9\x11\x14\x31\x3e\x5d\x19\x6a\xc8\x46\x56\x8a\x9e\x52\xce\xfb\xcc\x8f\x79\xb8\x0c\x3c\x16\x73\x2b\x26\x39\x84\x24\x6f\x20\x5f\xba\x33\x37\x5a\x7a\xec\x0a\x48\x07\x38\xb8\xce\x30\x91\xd4\xb8\xc2\xc6\xe8\x8d\x58\xb0\x21\xd1\x41\x01\x30\x0b\x17\x6c\x4a\x19\x56\x87\xd6\x18\x45\x67\xc1\xc5\x0b\xb9\x3d\xc0\x78\xf7\xab\xb0\x79\xfb\xea\xf3\xcf\x9f\x1f\x1e\x1f\x1d\x3e\x3f\x3c\x78\xfb\xec\xd5\xcb\xe3\xfd\x83\x83\x57\xef\x5e\xbe\xcd\x61\xe3\x9c\x31\xff\x94\xc3\xb4\x6c\x60\x7c\xd4\xa0\x5f\x72\xeb\x0e\xef\x2e\x58\xf8\xa1\x40\x78\x43\xc3\xaf\x14\x5b\xed\x0e\xef\x5e\x84\x6c\x59\x5a\x15\xbe\x72\x8f\x35\xc4\x4a\x07\xde\xef\x2e\x43\x7e\x4e\x7d\xe9\xfb\x46\x2a\xc2\xf7\x75\xdc\xc6\xef\x7d\xb5\x01\x76\x63\xcd\x8f\x88\x6c\xf4\x2e\x79\xeb\x5a\x2b\x1d\x3d\x18\x3c\xe3\xae\x61\x07\x01\x93\x73\x3d\x07\xc7\x49\xe2\xce\x6c\x9e\xcf\x82\x3b\x23\x02\x55\x8e\xdd\x99\x1d\x67\x82\xe9\x17\xed\xde\xb5\xb7\xfb\x10\xa4\x05\xbc\x52\x71\x3f\xc6\x8a\x9d\x18\x41\xcc\x37\x81\xcd\xdd\x22\x3e\x74\x57\x54\xf0\x6c\x46\x78\xb7\x84\xcf\x94\x43\x72\xd4\x9d\xbb\xfe\xcc\x6a\x12\x05\x89\xb6\x29\xa5\x81\x20\xaa\x36\xef\x96\xe6\xcc\x5a\xc5\x6e\xec\x71\x9b\x97\x70\xef\x29\x13\x67\x63\x23\x0e\x0c\x39\x39\x86\xa8\xbd\x8b\x30\x99\xf1\xc8\xb1\x43\xd5\xbf\xb7\xfc\x32\x26\xf2\xd1\x46\x33\x91\x2f\x44\x7a\x50\xf7\x74\x48\xcc\x59\x1e\x0e\xd3\xef\x46\x31\x98\x90\x64\x18\xc2\xb3\x62\xac\x1c\xcb\xd4\x91\xad\x79\x69\x5c\x8b\x05\xdc\xca\xad\xbe\x37\x63\x01\xaf\x63\x01\x97\x58\xc0\x37\x61\x41\x5c\xc1\x02\xae\xb1\xe0\x79\x09\x0b\xe2\x5b\x63\x41\x5c\xc2\x82\xd2\xdc\xbb\x73\x6b\xbb\x3f\x68\x81\x29\x11\xaf\x4c\xbf\x60\xf1\xa0\xc5\x47\x85\xad\xa3\x40\x11\x81\x10\x24\xa0\x21\x44\x2b\x2a\x6f\xe6\x01\xce\x2d\x86\x82\x72\xd0\x83\x3c\x5b\x5e\xe3\x43\xad\xff\xa5\xad\x02\xd9\x49\x98\x2c\x63\x0b\xa9\xeb\x4e\xd5\xbb\x87\x76\x5c\xc1\xb2\xf8\x96\x58\x16\x96\xf0\x35\x1a\xf7\xa7\x0a\x67\x33\xac\xea\x7d\xb4\x8e\x1c\x5c\x23\x07\x48\x57\x33\x4c\xb8\xc6\x90\x4c\x85\xaf\x38\xfb\xfd\x9c\xa5\xe4\xca\x62\xc1\x5c\x74\x42\xb1\x7b\x8d\xcb\x29\x0e\x17\xfc\x9d\x4a\x72\xce\xb8\xf3\xe1\x24\xb8\x44\x64\x25\x77\xb0\x03\x8f\x45\x91\x2d\x3e\x2d\xbc\x4e\x54\xe3\x0d\x3d\x16\x9e\x72\x94\x87\x53\xa8\x6f\x03\x44\x0a\x3a\x0a\x14\x20\xc0\x3f\xe6\x39\xcb\xfb\x02\x41\x67\xee\x8c\x6b\x06\x53\x9c\xb1\x03\xdf\x5e\x81\x1f\x57\xbb\x81\xa7\x8a\xbb\x9b\xe8\xab\x95\xb7\x86\x33\xc5\x2d\x92\xb8\x7b\x7c\x6e\x49\xdf\x82\x8d\x03\xcf\x19\x56\x35\xba\x2a\xef\xd9\xb0\x97\xa4\x69\x91\x1c\xf8\xaf\x43\xbe\x70\x23\x1e\x1d\xb1\x85\x1a\x92\xc8\xa3\x85\x08\xe5\x05\xa0\x04\x07\x77\xef\xdd\xa6\x67\xab\x59\xb0\x78\xad\xc4\x20\xfc\x32\x3e\x90\xde\x41\x04\xeb\x1b\x59\x37\x37\x0f\xf4\xe6\xf7\x57\x5f\x19\x34\xea\xa0\x3f\xa8\xda\x05\x73\xbd\x1b\xab\x52\x38\x79\x92\xc4\xb1\x38\x37\x57\x31\x52\xd5\x14\x75\x64\xac\x7a\x89\x51\x9d\x38\x74\x4f\x05\x3d\xd6\x78\xea\xce\x6e\xc8\xd9\x11\x87\x9f\xd2\x04\x9d\x8b\x73\x0e\x60\x2d\x0a\xd9\x05\xca\x32\xe8\x45\xb4\x64\x6b\x1d\x48\x3e\x74\xe6\x1e\xbf\x34\xd4\xdf\xce\xc2\x9d\xcd\x3c\x6e\xd4\x5a\x53\x74\x04\xde\xe4\xf9\x4d\x8c\x77\xe2\x1b\xea\x3f\xd1\x3c\x40\xa6\x44\x70\x46\x95\xb7\xf2\x14\x54\x4e\x5e\x8a\x53\x82\x9a\x31\x6e\x97\x2b\xd5\xd0\x74\x1d\x00\x9c\x02\x86\xe4\x65\xf9\xe5\x92\xf9\xb3\xe3\x45\x10\x72\x7d\xac\x3b\x73\x67\x33\xee\x23\x1b\xc5\x61\xc2\x91\xc2\xcd\xe9\xfa\xe4\xcc\xc2\x60\x59\x5a\x25\xe2\xb5\xe3\xce\xd0\x26\x10\x8b\xef\xb3\xe0\xc2\xaf\xc3\x38\x0e\x4e\x4f\xc5\xa9\xf4\x93\x8f\x9a\x99\x45\x30\xe3\x36\x72\x3c\xd7\xf9\x80\x08\x72\xbc\x20\xe2\x9d\xc0\xef\xc8\x04\x1b\x21\xa2\xa5\xe6\xab\x19\xf7\xd8\xd5\x17\xee\x8c\xdb\xfd\x4c\x4d\x60\xe2\x35\x4c\x9f\xe7\x46\xe2\x4c\x1d\x77\x8f\x3d\x4b\xd1\x78\xd2\x74\x80\xf3\x2d\xe4\xb9\xea\x38\xcb\xc5\x36\xa6\x31\x33\x64\x33\x37\xb8\x01\x31\x73\x20\xc0\x3c\x69\xbc\x54\x94\x91\x2b\x8a\xc8\xab\x8c\x6a\x03\xe9\xf3\xab\x0e\x1c\x14\xe7\x68\x89\xee\x48\xd1\xdc\x8c\x7b\x3a\xc8\x6f\x05\x7d\x88\xc3\x3c\xef\x84\x39\x1f\x2a\x64\xb4\xba\xc1\xf1\x8c\xf0\xcb\x65\xc8\xa3\x08\x10\xbf\xf4\x49\x23\x43\x86\x31\xe9\xe3\xe9\x2d\x88\x56\x1d\xc8\x02\x57\x3b\x0e\x17\xbc\xba\xc4\x7f\x3d\xa5\xea\xef\x61\x2e\xf4\x28\x21\xac\x14\x1c\xc8\x0c\x90\xd6\x51\xb2\x11\x44\x9a\x61\x2d\x59\x87\x8e\xeb\xcf\x5c\x87\xc5\x41\x58\xe4\xaf\xe0\x7e\xc8\xd9\xec\x0a\x95\x17\x79\x94\x38\xd2\x17\xf8\x46\x01\x87\xa2\xa9\x86\x1b\x19\xcc\x89\xdd\x73\x71\x76\x28\x4b\x3b\x36\x76\x79\xe6\x46\x1f\xd7\xe7\xa2\x40\xa5\xd3\x33\xbe\x0c\xb9\x03\xcd\x96\x7b\xae\x38\xcf\x5b\x75\xfc\xc4\x0b\x9c\x0f\xaa\xdb\xb0\xb6\xc5\x94\x0e\xcf\xae\x13\x9e\x2c\xfe\xb9\x85\x27\xe7\x7f\x8e\xf0\x64\xf1\x8f\x28\x3c\x59\xfc\x7d\x85\x27\x60\x3b\xd6\x28\x3a\xa9\xc9\x4d\xaa\x42\x95\xb2\x00\xe5\xec\x5a\x01\xca\xf2\x77\x08\x50\xf4\x9d\x92\x8c\xd6\x50\x15\xa0\xe4\x62\x91\x73\x25\x10\xa9\x1c\xe8\x59\xc8\xf7\x3d\x4f\xa7\x1c\x29\x5e\x17\x8e\xf3\x5a\x44\x70\x9e\x58\xe7\x4a\x3e\x50\x29\x2a\x37\x3c\x59\xc4\x0d\xfc\x7d\xcf\x6b\x92\x18\xbc\x39\x3c\x3a\x7c\xab\xd9\xd8\xa3\x82\xb3\x85\xbc\xf2\x2e\xee\x09\x8f\xe2\x30\xb8\x5a\x13\x5d\x6c\x2a\x2a\xce\x11\xea\x8a\xed\x2a\xa1\xa5\xbb\xd4\xfc\x6e\xda\x67\xe7\xee\xa9\xa0\x3e\xa6\xd9\x5b\x44\x2e\x37\xc6\xf7\x3b\x8f\xa6\x93\xc9\x49\x4f\xf9\xd0\xd2\xdf\xe1\x4c\xb8\x7f\x2a\x8e\xe2\x55\xd3\x87\x82\x64\x9c\x24\xc5\x99\x08\x16\x26\xdd\xab\x5e\x29\xc9\x9e\xf8\xf4\x2a\x19\xf1\xee\x82\xcf\x5c\x96\xa6\x48\x5d\x96\x21\x3b\x26\x21\xdd\x4f\xa4\x6f\x13\xf8\x4b\x57\xee\x2c\x02\xcf\x79\x47\x3c\x96\xa2\x6c\xc0\x03\xa9\x16\x16\x76\xdd\x59\x04\xfe\xf4\x62\x8c\x57\xf2\x8d\xcd\x66\x82\xae\x78\x5c\xb4\xc2\x55\x78\x58\x91\x5b\x9c\x9c\x97\xa6\x69\xf9\x6d\x8a\x26\x7e\xef\xb3\x4f\x0c\xf9\xed\xdd\x9b\xe7\x14\xb5\xe1\xab\xca\x2d\x0e\x6e\x6d\x64\x7c\xd6\x43\xa4\x9e\xf9\x05\x5b\x2e\x5d\xff\x54\x94\x01\x59\x5b\xd9\x41\xdf\xfb\x28\xf0\x87\x27\x2c\xe2\xf7\x77\x08\x6a\x9f\xc4\x01\xb3\x12\x9f\x47\x0e\x5b\x72\xab\xc1\xc1\xc8\x97\x47\xaf\x5e\xaa\x38\x92\xee\xfc\x4a\x76\x0f\x63\xc1\xc5\x89\x96\x31\x09\xbb\x5c\x9e\xe9\x40\xb5\x5c\x3d\xd3\x59\xe0\x00\xc5\xe9\x56\x8e\x7d\x16\x02\xd0\x94\x4b\xc1\xf5\x01\x45\x62\x1f\xe8\x39\x62\x77\x53\xe0\x36\xcd\x22\x4b\xc4\xe3\xfd\x38\x0e\xdd\x93\x24\xe6\x16\x82\xcf\x79\x3e\xed\x99\x99\x52\x7a\x91\x98\xa6\x75\x91\x14\x6d\x9f\x71\x36\x4b\xd3\xfc\xf5\x94\xc7\xaa\x1f\xd1\xe3\xab\xb7\xec\x54\x70\x30\x16\x12\x99\x10\x1e\xf7\xa7\x98\x5c\x24\xea\x5a\xeb\xe0\xcc\xf5\x66\xc5\x68\x30\x26\xb2\xe3\x47\x67\x9c\xc7\xc8\xf5\x8d\xe2\x53\xd8\x95\xb3\x2d\x2d\x4f\xfc\xf2\xc8\x8a\x22\x5d\x27\x02\x59\x0c\xcd\x73\xab\x7d\xe4\xb1\x54\xc0\xd0\x36\x5c\x13\x71\xb0\xaf\xdc\x74\x4b\x64\x11\x67\xd8\xce\x80\xf0\x3a\x58\x45\x9d\x2f\x83\x19\x17\xed\x82\xc7\x55\xd5\xb2\x23\xfa\x2f\x3e\x44\xc3\x60\x1c\x4f\xcb\xb0\x0c\xf9\x22\x38\xe7\x72\x80\xe2\x1b\xce\x5d\x9e\x8d\x8a\x4c\xae\x1f\xf1\x30\x7e\x0c\x0b\xd9\xe2\x04\xf2\xd9\xc5\xe7\x32\x90\xc4\xe9\x2d\x93\xd1\xe2\x04\x2e\x5f\x24\x6a\x11\xef\x27\x74\xa5\x17\xf4\x65\x42\x4f\x13\x10\x11\x1c\xfe\x21\x22\x02\xb8\x4f\x2f\x4b\x06\x0a\x4e\x5f\x1e\x6d\x04\x8f\x3d\x73\xcf\x5d\x41\xa0\x91\x3e\x19\xe5\xec\x1f\x84\x12\xad\x89\x16\x40\xd8\x50\xe5\x08\xe7\xee\xa5\xfa\x28\xaf\x2d\x51\xd6\x24\x8d\xb8\x96\x8b\xcc\x65\x10\x67\xa1\xeb\x7f\x10\xbd\x92\xf6\x27\x80\x73\x45\xb7\x6e\x2b\xca\xd0\x3c\x73\x33\x7d\xcf\x45\x16\x6b\xe7\x2e\xe6\x79\x70\x7f\x18\x21\x7c\x9d\xf0\x42\x90\xcb\x3a\xf5\xbf\xd5\xe9\xff\xfa\x51\xde\xae\x70\xb9\x08\xb9\xf6\x60\x5e\x0c\xef\x9d\xd2\xe3\x45\xf8\xe6\xb3\xfe\xef\x68\xe6\x89\x3c\xf0\x18\x7f\x87\xa6\x0e\x17\xcc\xf5\xfe\xe4\x36\xde\xc8\x53\xf8\x6d\x9b\x68\x9e\xd5\xdb\x36\xb6\x5f\x9c\x43\xca\x1c\xfd\x86\x96\xd5\xca\x54\xc7\x5c\xcd\x07\x35\x6a\x4e\xfa\x56\x71\x3c\x11\xa7\x63\xb5\x82\x2b\x67\x1b\x9d\x0e\xe7\x73\x77\xa6\x97\x51\x7e\xfd\x92\x41\xd8\x62\xd5\x25\x79\xd0\x38\x6c\x38\x68\x48\x22\xf6\x2a\xa1\x25\xb6\xef\xb0\x99\xed\xab\xf4\x34\x36\xcd\xd8\x42\x62\xff\xed\x9c\x77\xee\xdd\x3f\x79\xe0\xf4\x77\xee\x1d\xf7\xc5\x2a\x57\xba\x34\x13\xbf\x5b\xa7\x32\xc6\x9e\x11\x9f\x8d\x6b\x85\xa6\xc6\x6a\xe2\x1b\x06\x90\x96\x38\x64\x7e\x34\x0f\xc2\x85\x6d\xf8\x81\xcf\x87\x13\x3f\x9b\xf8\x88\x2c\xd8\xd2\x5e\x9d\xf3\x10\xce\xc5\x77\x89\xe2\x10\xec\x31\xea\x81\xf0\xbe\x77\xc2\x7d\xde\x3b\x08\x66\xbc\x17\x5c\xf8\x8e\x17\x24\xb3\x5e\xe0\xb8\x91\xfc\xd1\x90\xec\x25\x6e\xaf\xe0\x7b\x8b\xe4\x32\xff\xdb\x3d\x4f\x38\x9a\x12\xb1\x18\xc4\x98\x45\xc3\x82\xd5\x88\x6c\x34\xdc\xdf\x7f\xf8\x64\x7f\x78\xb8\x7f\xb0\x4f\x82\xc7\xfb\xfb\xfb\xc3\xfd\xfd\x83\x7d\x24\x7d\x92\xa1\xb5\x3a\x74\x1f\x35\xee\x8c\xb7\x76\x63\xbe\x58\x7a\x2c\xe6\x7b\x62\xb4\xbb\x33\xf7\x7c\x4f\x4a\x8a\x76\x35\x86\x18\x4a\x74\xa5\x88\xfb\x9e\x16\x24\xed\x56\x51\x68\xaf\x10\x30\xed\x96\x49\xbc\xe1\x08\xc2\x4a\xd7\x49\x7b\xa9\x40\xb9\x88\x58\x09\x86\x5c\x00\x86\xe4\x53\x00\xfb\x75\x35\x35\x6a\x5f\xa9\x44\x56\xa3\x29\x7b\xf5\x8b\xa1\x2b\xd0\x04\xbe\xfe\xd9\x56\xf1\x37\x36\x30\xf2\xf5\xec\x7f\x93\xc1\xf1\x9b\x98\xf7\xb5\x9a\x81\xf2\x53\x94\xaf\xd0\xc9\x56\x7d\x93\x98\x6c\xe1\xb5\x62\xc5\xa6\x51\xfd\xd2\xab\x02\xae\x57\x81\xdc\x47\x02\xb5\x77\x5d\xfe\x72\xc6\x73\x80\x7a\x65\x0c\x7a\x27\x10\x7d\xff\x5d\x15\x95\x69\xfd\xef\xae\x0c\xa8\xf9\xef\xae\x45\xd0\xeb\x9b\x2b\x69\x00\x68\x43\x5d\x39\x39\x5e\xab\xb0\x34\x77\x61\x70\x51\x2c\xac\xde\x86\x95\x75\xcd\x8a\x5b\xa3\xcb\xe5\x6e\x9f\x77\xe6\x41\x48\x35\x89\x86\xa8\xb3\xfa\x60\x59\xce\x66\x7f\xe0\x57\x14\xfd\xcb\x1a\x25\xbf\xb3\x2a\xdd\xd1\xfd\x4b\xb5\x88\xfa\x92\x57\x5e\xfa\xda\xbb\x69\x40\x45\xb2\xa4\x3d\x3d\x49\x7c\x76\x7b\x25\x92\x34\xf1\x77\xa5\x2c\x61\x6f\xe2\xbb\x8b\x65\x10\xc6\xc6\xca\x58\xb0\xe5\x3e\xac\xb6\x88\x88\xe7\xcf\xc1\x27\xb8\x7c\x7e\x91\xc4\x70\xe2\x8a\x8c\xcc\x98\x87\xc1\xc2\x98\x6c\x9d\x27\xfc\x72\xb2\x95\x17\xaf\xc9\x15\x74\xae\x6e\xaf\xf6\x41\xd0\x4b\x51\x6c\xe2\xf3\x4b\x28\xa8\x4e\xa2\x72\x5b\x00\xe9\x85\x21\x26\xb7\x28\x34\xd9\x22\xe2\x53\x49\x88\x21\xf3\x1a\xf5\x36\x45\x62\x06\x79\xa5\xf4\x41\x67\xcb\x85\x10\x3a\xc1\x00\xdc\xb2\x0d\x29\x8e\xd0\x69\xb9\x58\xc2\x88\xc3\x84\xcb\xd4\xac\xa8\x33\x97\x53\xe8\x5a\xba\xdd\x6e\x01\x25\xab\xe8\xf3\x64\x8b\x18\xe3\xc9\x56\x33\xc1\x9b\x6c\x4d\x71\x51\xa7\x16\x61\x54\xab\x54\x93\xb0\x5e\xe5\x3a\x51\x14\xd5\x91\x72\xd9\x7c\xa2\xd6\x4b\x6f\x12\x57\x54\xbb\x54\x11\x79\x18\x16\xd6\x5d\xbb\x41\xe2\x01\x15\xc0\xfe\xbd\x3b\xe9\xe5\xa8\x25\xd0\x4c\x1c\x12\x0d\x50\x6c\x9f\xed\x6d\x62\x12\x6e\xe2\x09\x76\x7b\x50\xcd\xde\xc4\xdf\x9a\x66\x04\x0e\xcb\xca\x32\x1e\x22\x48\x5d\x26\xa4\xce\x9b\xa0\xaa\x94\xea\x24\xa9\x49\xa8\xe0\x08\x77\x94\xd0\x56\xeb\x32\x34\xcd\x6a\x40\xdc\xcb\xb0\x30\xac\xee\xce\x5d\x9f\x79\xde\x95\x54\xe2\x5e\xc5\x67\xdc\xaf\x04\x59\xca\x2a\x96\x3d\x60\x3f\x54\x92\xcd\x1c\x97\x65\x33\xc7\x49\x93\xe5\x81\x14\xcc\x9a\x26\x8a\xe0\xa1\xfe\x21\x0f\x75\x35\x6a\xba\x01\x57\x7e\x74\x1b\x43\xd1\xc7\xa6\x79\x4d\x73\x71\xf9\xce\x9e\x52\x9a\xa7\xb7\xf4\x73\x01\x83\x91\xee\x9b\x9d\x37\x88\xad\xb8\x64\xd7\x73\x90\x28\x9d\xd7\x96\xb5\x16\x08\x29\x4e\xd3\xb8\xec\x8a\x40\xea\x75\x63\xad\x72\x03\x10\x1a\x2a\x25\x58\x6d\x7b\xcb\xa9\xb4\x65\xb6\x0b\x97\xc1\x60\x05\x0e\x3e\x49\x8b\x6e\x77\x05\xb5\xc0\xc4\xe7\xcd\x61\xa1\x98\x21\xfb\x62\x9c\x24\xb1\x8e\x0e\x2f\x52\x73\x4d\x5a\x2e\xf8\xf8\x7c\x10\x1f\x92\xfc\x18\xbf\x1e\xac\xcb\x34\x73\xef\x0a\xe5\xb0\x5d\xd5\x18\x5e\x10\xc9\xf8\x76\x0e\x1d\x8a\x08\x39\x62\xdb\xe0\x38\x17\xfc\xc4\x63\x7f\x6a\x9a\x16\x84\x3e\xe6\x63\xbf\x88\xe0\x5b\xb2\x81\x79\x5d\xc6\xaa\xd7\xff\xb4\x58\xf5\x3e\xa9\x04\x58\x18\x02\x96\x91\x12\x4a\xbc\x4e\x2c\x8e\x47\xa0\xca\xb2\x70\xfd\x34\xed\x93\x50\x3c\xb2\x4b\x6c\x5b\x7e\x25\x9e\x48\x39\x48\xf3\x78\x7b\x2a\x57\x7f\x40\x73\x11\xa1\x15\xeb\x78\x07\xbd\x4f\xbb\xdd\xb4\xdb\xc3\xb9\x7f\xfe\xc2\x4d\x34\xf5\x4d\xd3\xca\x27\x2a\x4c\xd3\x60\x97\x86\x38\xe3\xdc\x5a\xc5\x2c\x3c\xe5\xb1\x8d\x5e\x87\xc1\xc2\x8d\x38\x92\xc6\xc4\x76\xab\x4f\x42\x5e\xb1\xc7\x38\x4a\x32\xb2\x52\x24\xa5\x41\x01\xed\x0b\xe5\x21\xe4\x43\x6c\xe5\x75\x61\x4c\xfc\xc6\x18\xc8\x15\xf5\x3c\xd0\x03\xf7\x47\x0d\x37\x97\xcf\x02\x8b\x93\xd8\x5a\xd7\x15\x2f\xce\x9f\x82\x6c\xd9\x31\xf9\xd8\xe2\x6a\xd5\xca\xd2\x70\x08\x6f\x08\x22\x73\x19\xa6\x69\x13\x41\x4d\xd3\xa3\xd8\x2a\x7f\x20\x48\x7d\x41\xd5\xe1\xaf\x17\x95\xd3\xf7\x26\xa1\x2b\xb5\x65\x1f\xc7\xde\x4c\x00\x99\x79\x5e\x70\x71\x9c\x88\x53\x6c\xe4\x04\x21\x8f\xec\xd6\x40\x25\xc6\x21\x73\x3d\xd7\x3f\x3d\x9e\x05\x71\x91\x0a\x37\x58\xae\x23\xcb\x0f\xa4\xea\xcf\xb3\x84\xf6\x7e\xb4\xac\x71\xbf\xf3\x68\x9a\x8e\x07\x9d\x47\x53\xf9\x38\x80\x3f\xab\xed\x2c\xdd\x1e\xf7\x3b\x3b\x2a\x75\xfb\xde\xb8\xdf\xb9\x37\xc5\x93\x2e\x5e\xdd\xcd\x3e\xb6\xd4\x9d\x1e\x79\x9b\xc8\xb8\x28\x8f\xf6\x3b\x4f\xa7\xab\x01\xd9\xc9\xee\xf4\xdc\x62\x07\x79\x9e\x14\xd8\xd1\x14\x3a\xa7\x81\x2c\x0d\xa6\x55\x8a\x83\xc0\xab\x9c\x5c\x3d\x2d\x8b\x6b\xd3\xd9\x22\x9a\x06\x34\x42\x76\x70\x9a\xc2\xc3\x7d\x19\xc4\x75\x47\x3a\x77\x06\xb2\xfe\x2c\x51\x5e\xa9\x75\x91\xd6\x40\x85\x9d\x2b\x07\xba\x80\x70\xff\xf5\x58\x91\x1a\x49\x3b\x3c\x2b\xc5\x3b\x1a\xdf\x9d\xee\xd2\xed\x7b\xf7\xc0\xef\xdf\x7d\xd5\x92\xbc\xbe\x1c\xc7\x53\xe9\xe2\xd6\xf5\x1d\x2f\x99\xf1\xc8\x42\x9f\x22\xe9\x0d\x6a\xbb\x05\x8a\x8b\x79\x9b\x22\x5d\x07\xcc\xc8\xfb\x05\xb7\x14\xe3\xfe\xb4\x54\xde\x46\xb8\xf2\x1d\x7c\x21\x85\xe3\xc1\x34\x4f\x95\x9a\x60\x14\xca\xa9\xca\x6d\x08\xef\x09\x61\xca\x9e\x27\x56\x30\x0e\x8a\x90\x1d\x64\x07\x13\x87\xb2\xd1\x03\xfb\x21\x44\x6b\xd6\xf3\xe1\x54\x5b\xb1\x6d\xf0\xb9\x54\x44\x52\xd3\x29\xdd\x28\x39\x89\xe2\x10\xfc\x6f\x8f\xac\x40\x3b\x61\x22\xc5\x93\x0b\x6e\xe4\xeb\xf9\xb5\x93\xee\xce\x36\x36\x4d\x2b\x50\x6e\x43\xf5\x5f\x28\x93\x6f\x2c\xb5\x70\x6a\xed\x76\x84\xf5\xc8\x83\x71\x34\x35\xcd\x48\xec\x6a\x45\x0e\x15\x74\xc3\x2d\x0d\x81\xb6\xfa\x45\xa4\x0d\xd3\x8c\x44\xd1\x22\x77\xee\x49\xa8\xf5\x56\x61\x07\xc4\x6a\x2b\xca\x6b\xbb\xe0\x51\x0e\x1f\x3a\xb0\xf3\x80\x69\x94\x3a\x59\x0e\xfd\x1c\xdd\xef\x24\x15\xac\xa9\x99\xd4\x00\xbf\xde\x75\x23\x19\x72\x37\x2e\x42\x8d\x64\xe0\x99\xab\x8a\x78\x62\xb4\x0d\x66\x8c\x72\x1b\x4a\xd3\x96\x55\xdb\x0a\xc5\x46\xac\x2e\x6c\xe3\x22\x22\x85\xc4\x72\x88\xbd\xd2\xea\x93\x40\xe0\x83\xab\xe2\xc7\x43\xb8\x5c\x0d\x6e\x46\x1c\x1a\x8f\x6b\x55\x4e\x2d\x0c\x11\x32\x2d\x46\x1d\x15\xaa\x54\x05\xb3\x34\x4d\x4b\x47\x43\x51\xb1\xc0\x48\x8b\xa7\xa9\xf6\xa8\xd0\x12\xeb\x61\x18\xc2\x84\x16\xbe\x62\x02\xd1\x05\x97\xc6\x99\xa2\x83\x32\x1e\xb0\xf4\x87\x44\xa9\xd3\x95\x5d\x4e\x53\xfd\x64\xe1\x3c\xa7\xc0\x52\x65\x6a\xe4\x66\xc5\xc5\x3c\x40\xaa\x01\x70\xad\xb8\x1c\x5e\x64\x8d\xa5\xd3\x70\x7f\x22\x67\x6b\x58\xd1\x56\x28\xc8\xb5\xb6\x7e\xd7\x21\x9c\x75\x70\x19\x22\xb0\x07\xbd\xca\xf7\x71\xbf\xc6\x38\x40\xf0\xaf\x06\x4e\x0f\x3a\xf3\x82\x2d\xa1\x4c\x9a\xa2\x23\x2e\x8b\xeb\xee\x48\xf4\x10\x07\x4f\x1d\x88\x7a\x3f\x0f\x65\x2b\x8b\xf4\x7e\xb4\x46\xf6\x3b\x37\x7d\x86\xfd\xd8\x1a\xd9\x0f\xd3\xc1\xfd\xf4\xee\x36\xb6\x46\xf6\x81\xc7\x16\x4b\x3e\xc3\x23\xa8\xe4\x8e\xbe\x87\xc5\xb5\xa1\xae\x41\x2c\xdf\x05\xab\x4c\x68\xee\x43\x35\x16\x87\xee\xd8\x88\x03\x63\xc6\xe5\x68\x92\x90\x8b\x93\x4d\x47\x47\xbb\xce\x99\xe3\xee\xc4\x7f\xe6\x1b\x41\x28\x0e\x45\x71\x60\x9c\xf0\x3c\x20\x36\x81\x02\x4c\xf4\xcc\x90\xec\x4f\x64\x2c\x92\x28\x36\xce\xd8\x39\x37\x98\xd1\x80\x77\xea\x68\x09\xa1\x96\x4a\x3c\x95\x1a\xc6\x4a\x45\xc4\xe0\x69\xca\xf7\x34\x55\xc1\x8a\xc3\x56\x6f\x05\x8b\x0a\xc1\xeb\xc5\x00\xe5\xba\xe3\x78\xe8\xef\x72\x08\x8d\x11\x0a\x36\x55\xf0\xaa\x45\x88\x4a\x88\x5f\x96\xd0\x95\xdc\x60\x95\x82\xd5\x31\x9c\xeb\x5b\x03\x7d\xf5\xbf\x96\xae\x76\xee\x78\xfe\xf0\x18\x7c\x24\x1e\x2f\x59\x18\x4b\xfe\xa9\xb2\xc3\x9f\x78\xcc\xf9\xe0\xb9\x51\xcc\x67\xc7\x10\x87\xcd\x46\x88\xb8\xa7\x7e\x10\xf2\xe3\x05\xbb\x3c\x96\x7d\x17\x7b\x39\x79\x0a\xfb\xf8\xf8\xc7\xc9\x65\xbf\xdf\x99\x5c\x0e\x9e\x4e\x2e\x1f\x3c\xed\x4c\x2e\x1f\x3d\x9d\x38\xdf\x4d\xdb\x78\xd7\xea\xb6\xf1\xde\x9d\x9e\x4b\xde\xc1\x16\xcc\x3a\x3f\x4f\x66\xad\x4f\x26\x77\x3e\x35\xb7\x26\x9f\x4d\xda\x93\xce\xa4\x47\x27\xa3\xc9\x8f\xc7\xff\xb2\x9a\xa4\xd9\xbf\x4e\xdb\x22\xef\x4f\x45\x5e\x08\x55\xf6\x42\xb6\x32\x89\x26\x97\xfd\x41\x67\x72\xd9\x7f\x38\xb9\xec\x9f\x4c\x2e\xfb\xce\xe4\xb2\xcf\x45\xbb\xf3\xc9\xe5\x83\xf9\xe4\x72\x7b\x30\xb9\xdc\xbe\xdb\x99\x5c\xde\x3b\x99\x5c\xde\x9b\x75\x26\x97\x0f\xf8\x34\xb5\x26\x93\xb1\x2e\xf9\xa8\x54\x12\xbe\xcf\xa7\x18\x7f\x26\x1a\x7d\x7c\xab\x0e\x4e\x92\x7e\x7f\xbf\xdf\x99\x24\x4f\x1e\x3c\x7d\x3a\x49\x9e\x3e\x82\xa8\x66\x4f\x9f\x1c\x88\x97\x27\x4f\xe1\xe5\xe9\xe1\x53\x39\x8e\x6f\x7e\x4f\xbf\x6f\xdb\xd2\x0d\xc3\xbb\x6d\x35\x12\x0a\x05\x4f\xf4\x73\x92\x13\x2a\xc9\xd5\x58\x9c\x7e\x48\x2c\x4e\x5e\x26\x18\x77\x9b\x50\x2c\x4d\x79\x77\x1d\x21\xb5\x96\x91\xb6\x58\x7e\x9a\x48\x77\x77\xb9\x8d\x07\xbd\x93\x58\x3e\xb9\x2b\x7d\x0e\xd1\x40\x1c\x24\x62\x1a\x8c\xb7\xa7\x24\xec\x72\x7f\x16\x7d\xeb\xc6\x67\x70\xf3\xa3\x34\xaa\xf2\x6d\x3d\x2c\xc5\x78\x23\xad\xa6\xd0\x18\xca\x46\xfa\x47\x24\xb0\x10\xdd\xe9\xb9\x10\x46\x77\xc4\x05\xc3\x06\x0e\xc5\x5a\x7e\x37\x0e\xdd\x85\x55\xe5\x5c\x7a\xe3\x49\x17\x0d\x77\xf7\xa6\x05\x81\x02\x7a\xcd\xab\xfc\x8f\xa5\x23\x8e\x6f\xa1\x2d\x5c\xec\xb8\x79\xea\x64\x52\xa4\x17\x0d\xe8\xfd\xb8\x9f\x59\x61\x29\x55\xef\xf3\xbc\x11\xb4\x45\x3e\xe8\x47\x77\x6d\x31\x0a\xe2\xae\xf6\xff\xed\x7b\x3b\x55\xfe\xd1\x2d\x78\xb9\xbf\x21\x4c\x18\x75\x15\x2f\xe3\x50\x57\xe9\x11\x88\xf4\x88\xb2\x5a\x88\x06\xe8\x8e\xb4\x8a\x38\x8e\x96\xdc\x71\xe7\xae\x73\xac\xcc\xd2\xdd\x00\xbc\x89\x9e\x2e\x98\xeb\x75\x9d\x60\xa1\x5d\x82\x9e\x06\xc1\xa9\xc7\x2b\xa9\x4a\x0c\x91\x50\xcb\xa1\x4e\x4d\xc3\x46\x77\xac\x0d\x1a\x15\x00\xd6\xf7\x89\x95\xe4\xd1\x2f\x50\x17\x41\xf8\x8b\xd5\xc2\xf5\xed\xfb\x64\xc1\x2e\xed\xbb\xfd\xac\x34\x5d\x9a\x7e\x7a\x34\x29\x31\xc9\x64\x4e\xfb\xc3\xf9\xae\xa7\x19\xb3\xb9\x0c\x7f\xd6\xfa\x49\x31\x51\xde\x78\x5e\x62\xa2\x00\xa8\x56\x6b\x20\x18\x82\x75\xd0\xa6\xe9\xfb\xc4\x72\xc8\x4a\xb4\x7d\x7f\x27\xc3\xa6\xf9\x3e\xb1\x98\x7c\xdf\xbe\xb7\x93\xe1\x2a\xf2\xb4\xaa\xfb\x7c\x75\xed\xbc\x11\x6b\x67\xfd\xac\x64\x9a\x2a\xda\xca\x38\x2e\x87\xac\x93\x0e\x76\x00\xdd\xc5\x59\xa2\x4f\xe2\x12\xc6\x37\x1c\x0d\xc4\x06\x32\xf6\x8b\x1a\x86\x15\x7c\x8a\xbd\x99\x8c\xb2\xa1\x32\xec\x6e\x57\xfb\x2d\x28\x95\xa0\x7e\x49\xbf\xcf\x06\x9d\x49\x32\x9f\xcf\xe7\xd3\xd5\x36\xc9\xd2\x4b\x5f\x7c\xe8\x77\x1e\x75\xe0\x1d\xdf\xe9\xb9\x12\x8c\xe1\xda\xba\x89\x26\xc9\x76\xbf\xbf\xdd\x81\x3f\x8f\xc5\xef\xf6\x53\xf1\x7b\xef\xe9\x24\xb9\x0b\xe1\x23\x9f\x1e\x0a\x32\xf4\xe4\xf1\x4e\x7f\x92\x3c\x39\xd8\x86\x80\x92\xfb\x8f\x04\x11\x7a\xfa\x44\x2f\xb8\x70\x7d\xb9\x08\xac\x5f\x3b\x4e\x9a\xa6\x8a\x6f\x99\x17\x33\x4d\xbf\xcb\xcf\x79\x78\xd5\x64\xcc\xd2\xca\x79\xfb\xbd\xfb\x77\x05\x39\x69\xb5\x24\xc5\x3f\xae\x0c\x1a\x06\xda\xce\x07\x09\xce\x15\x5b\xbd\xb1\xf8\xd8\x97\x79\xee\x71\xdd\x53\xf5\xf1\xc7\x4e\xda\xb9\x53\x4a\x2a\x75\xb7\x74\x50\x36\xcd\xde\x71\x9e\x49\xfc\x27\x0e\xf5\x02\x95\xca\xfb\x6f\x65\xc2\x32\x4d\x79\x54\x65\xee\xf2\x58\xae\xc7\xea\xd4\x3d\x4f\x2c\xa6\x72\xb2\x6e\x14\xb3\x30\x56\x54\x73\x8c\x70\x9a\xb6\x58\x89\x8e\x4e\x51\xed\x74\x39\xa3\x4c\x93\xd4\x01\x61\xc5\xd9\x67\x28\x43\xbd\xd1\x59\x6e\x81\x24\x9a\x99\x95\x66\x46\x2c\x9b\x2d\xb4\x25\x0e\x19\xe3\xfe\x34\xf7\xc1\x4c\x9d\x3c\xa0\xa6\x53\xe0\x2b\xc9\xe1\x51\x65\x3f\x46\xdf\xa8\x25\xe9\x60\xfb\x45\xfe\x98\x2f\xeb\x25\xdd\x54\xee\x71\x62\xbf\x4b\xc8\x99\x68\xad\x58\x00\x32\x10\xc0\x59\x39\x10\x80\x00\xca\x52\xd6\x7b\x36\x5e\xac\x1f\x9d\x5a\xbc\xbb\xc6\xef\xa4\x69\x67\x20\x86\xa5\xfc\x6d\x59\x82\x2d\x7b\xc3\x4f\x0f\x2f\x97\x02\xa4\x85\x49\xfd\x5a\x41\x82\xa6\x6d\x84\x09\x3a\x45\x58\xda\x3d\x7d\x9e\xd0\x95\xa2\x28\x17\x67\x6e\xcc\xa3\x25\x73\x38\x48\x41\xf2\x8d\xf6\x8b\xea\x69\x4c\x12\x0c\x01\x79\x4b\x53\x8d\xcf\x05\xd5\x58\xab\x65\x14\xab\xbd\x4b\x8d\xd6\xce\x99\xca\x82\x13\xfd\x4e\x39\xf2\xc9\x37\x5b\xe9\xcd\xa7\x68\x3c\xb2\x34\x71\x7e\xc2\x62\xde\xf5\x83\x0b\x0b\x77\xd8\x30\xd9\xe5\xa6\x99\xec\xd1\xfe\x28\xa4\x11\x8f\xdf\xba\x0b\x1e\x24\xb1\x15\x11\xde\x49\xb0\x6d\xa9\xb0\x6f\x7e\x9a\x5a\x0e\x8d\x95\x36\xb2\x4b\x02\x71\x3c\x0e\x54\xe4\x9b\x4c\x31\xbf\xc0\xef\x0e\xfa\xea\x32\xa0\xa2\xce\xe5\x4a\x55\xae\x92\x7f\x5e\xc2\x4a\xfd\x50\x05\x7c\xd3\x6c\xe5\x26\x80\x61\x9a\x5a\xf5\x2e\x61\x4c\x12\xd3\xdc\xd8\x13\xe2\x64\xba\x74\xd2\x75\x3c\xce\xc2\x8a\x37\x47\x51\x52\x24\xea\x0a\x43\x1d\xd5\x0e\x67\x24\xe9\xce\xbd\x24\x3a\x5b\xcb\xdf\xdc\x12\xd9\x5c\x4f\xf6\x5d\xd2\x9d\xf1\x93\x20\xf1\x1d\x4e\xbf\x93\xaa\x6d\x5f\x26\xe2\x29\x9f\x89\xef\xff\xb9\x95\xd2\xbf\xfd\x73\x94\xd2\xbf\xff\x47\x54\x4a\xff\xfe\x3f\xc3\xa2\xff\xab\x35\xb5\x74\xe9\xdd\x08\x6d\x32\x9e\x77\xa3\xa7\x41\xb8\x78\x26\xda\x38\x0d\x79\x04\x62\x5c\x37\x52\x4e\x58\xaa\xc9\xf3\x20\x5c\x3c\x11\xb5\xac\x72\xd7\x9b\x08\x11\xe0\xf2\xc4\x43\xee\x04\x13\x21\x88\x96\xbf\xf8\x26\xe7\x11\x8b\x12\x70\x66\xcf\x8b\xe5\x6f\xba\xac\x4e\xc8\xb2\xc2\x2c\xfd\xdb\xc4\xfa\xb6\x49\xe7\x5c\xaa\x7d\xbe\xe4\x17\x2a\xb1\x64\x93\x1f\xd7\xc6\x54\x51\xaf\x3a\x73\xa3\x6e\x7d\xd4\x34\xce\x88\xc3\x7c\x87\x7b\x22\x7d\x4d\xfb\xbc\x01\x20\xb4\x35\x20\xda\x15\x50\xb5\x2e\xab\x35\xc0\xf2\x93\x06\x18\xbd\x05\xc0\xf2\x02\x05\xd4\xe8\xc7\x43\x4d\x99\xfe\x2b\x88\x6c\xb0\xb7\x86\xa6\x40\xc5\x48\xeb\xbf\x58\xd8\x2c\x12\x41\xfd\xa4\x92\xf2\x5a\xb5\x63\x81\xbb\xc7\x8d\x00\x51\x5e\x8b\xea\xf3\x62\x55\x60\xb1\x76\xb7\xc1\xf1\x8a\x83\x50\x2a\x07\xbf\x05\xde\x76\x94\x38\xad\x7a\x0b\xb2\x61\x26\x04\xfd\xc9\x48\x65\x48\x0d\x2e\xa3\xc4\x16\x5b\xee\x4a\xee\xd0\x15\x8f\xac\x2f\x4b\xdf\x8a\x19\xe8\x56\x26\xa0\xee\xc8\x41\x37\x65\x48\x27\xa2\xc6\x09\x37\xf8\x62\x19\x5f\x21\x4c\xee\xf5\xfb\x98\xb4\x06\xd8\xfe\x79\x63\x9b\x69\xba\xf1\x5b\x1b\xfd\x4d\x9d\xaf\x78\xd7\x8d\x11\x1e\xdd\xa2\x6f\x08\x11\x88\x86\xfa\x5b\x06\xa2\x25\x68\x49\xae\x18\x9b\x0f\x40\x41\x15\x70\xe2\x36\x20\x05\x04\xdd\x0c\xcf\x02\x7f\xeb\x7d\x80\x16\x3e\x0a\x92\xba\xa9\x1b\xda\xb9\x01\x30\x9b\x7b\xa4\xa1\x02\x39\x0c\x36\x9b\x09\x64\x5b\x07\x8d\x5e\x1c\xb7\x81\x8e\x5e\xb0\x9b\x01\x54\x59\xd2\xf5\x1e\xe9\xa6\xae\x03\xd3\x2d\x6a\x95\x10\xc9\x32\x4c\x02\x7f\x93\xbd\x4d\x65\x35\xca\xcb\xba\xaf\xff\x40\x25\xfc\x78\x8d\x02\x2b\xf3\xc8\xd3\xd0\x9d\x15\x4a\xc4\xa7\x49\x1c\xf3\x50\xbb\x68\x52\x9a\xef\x52\x09\x3d\x57\xaa\xe7\x97\x71\x07\x14\x19\x8b\x62\x15\x9b\x68\x9f\x5f\x74\x72\xab\x45\x91\xaf\x93\xa3\xb9\x52\x4d\x16\x55\x20\x82\xc0\xa1\x56\x47\xf9\xc3\x42\x76\x7c\xed\x12\x22\x20\x98\x38\x0b\xbc\x19\x0f\xed\x66\xe5\x72\xa2\xad\x1d\xed\x46\xb2\x25\x55\xe8\x3f\xf0\xab\x59\x70\xe1\x37\x78\x00\x68\x71\xb0\x71\xe9\xba\xfe\x8c\x5f\xbe\x9a\x5b\xe8\x03\xbf\x42\x18\xbc\x37\x7e\xb0\xb8\xe0\x09\x0f\x82\x19\x27\x48\x99\x0c\x0c\xee\x12\x48\x24\xe8\x10\x12\xb0\x8c\xfe\xa4\x4d\x3e\x34\x2d\xe6\x0d\xb6\xb4\x6b\xf4\x67\x93\x45\xed\x9d\x88\xc7\x56\x91\x5f\x7a\xb0\x92\x90\xe4\xb8\x6a\x61\xbb\x56\x27\x6a\x34\x09\xf8\xdd\x73\x09\x8b\x53\x4f\xa4\x7a\xb9\x71\x26\x8b\x35\xbf\x71\x1a\x95\x46\xfd\x7f\xbd\x39\x84\xb1\xdd\x7a\x02\x15\xc4\x36\xce\x9e\xfc\xfe\xe7\x4c\x9d\x26\x4a\x7a\xf6\x8a\xf7\x1b\x27\xb0\x42\xcf\x36\xce\xa1\x26\x97\xff\x15\xa7\x31\x0f\x15\x72\xdb\x99\x2c\xa0\xb7\x71\x32\xf3\x2c\x8d\xf3\x59\xb6\x8e\xca\x1d\x52\xa8\x99\xbc\x09\x7c\xb7\xb4\xea\x38\x80\x4d\x05\x09\x5e\x4d\x00\x1c\x1c\x1b\xd8\x65\xce\xef\xf6\x1d\x03\x4d\x78\x7b\x85\x4e\xe0\x0e\xaf\x13\xcc\xa2\x4e\xbc\x58\x76\xe6\xee\x25\xb2\x5b\x1b\x7a\x79\x13\x5a\xca\xca\x3b\xe0\x2f\x33\x5c\x54\x4c\xd1\x97\xa1\xbb\x60\xe1\x15\xba\x01\x91\x08\x3a\x65\xcb\x4e\xe4\xfe\xcc\x51\xbe\x69\x55\x87\x5a\xc6\x80\x2c\x93\x1b\xe1\x5a\x35\x1b\x3c\x1f\xaa\x6e\x42\x1d\x6e\xe0\x77\x5c\xbf\xb3\x54\x25\xae\x73\x69\xb8\xe6\xfb\x42\xf9\x16\xac\x42\x59\x39\x00\xb9\x76\x26\x9b\xba\x5a\x99\x5f\xe8\x99\x7f\x8a\xb0\xbd\x96\xcc\xab\x96\x3c\x53\xed\x5c\xe0\x16\x1b\x7e\x23\x02\x00\x48\x24\x38\x3b\xf9\x6c\xea\xaf\x37\xcd\x74\xee\x44\xa5\x69\x8a\xaf\x9f\xc3\x46\x57\x3d\x0d\x67\x40\xc1\x60\xe5\x96\x7a\x4d\x5e\x4a\xd8\xac\xc1\xca\x0d\x34\x72\x3d\x38\xaf\x2b\x47\x2a\x12\x78\x70\xe7\xad\xf5\xd3\x95\x97\x0a\x09\x46\x69\x7f\xf4\xf5\x46\xfb\xa3\x1f\x2a\xf6\x47\x5f\xdf\xce\xfe\xc8\x2a\x0c\x90\xfa\x83\x1d\x87\xcf\x76\x76\x6a\x06\x48\x9f\xdc\x62\x05\x19\x7b\x86\xc0\x2a\xa9\x70\xac\xee\xb1\x6c\x63\xee\xf1\xcb\xa1\x48\x61\x9e\x7b\x0a\x57\xf3\x8b\xc8\x36\xa4\x2d\xcc\xdf\xd5\x2a\x49\x42\xf6\x5a\xbb\xa4\xf6\x73\x65\x97\xc4\xf6\xf7\xd5\xd3\x62\xa3\x85\x52\xa9\xbe\x8f\xb4\x51\x12\x6b\xc0\x38\xef\xb8\x73\x8a\xea\x6c\x31\x32\xe4\x92\xa0\x0a\x15\x0b\x83\x04\xd8\x7f\xeb\x16\x4b\xf9\x2e\x5c\xb6\x70\x70\x67\xf4\x56\xec\x70\xb9\x4c\x61\x5e\x8d\xaa\x66\x18\xb0\x61\xd1\x06\xfe\xae\x62\x53\x51\xd9\xc0\x65\xee\x4d\x9c\x74\xb5\x60\x69\x2f\xdf\x68\xa9\x53\x29\xa0\x09\xb2\x00\xdd\x1a\x75\xaa\x64\xfd\x9b\xda\xe0\xbb\x80\x6a\x14\x55\x68\xf1\x06\xa3\x8f\x2a\x90\xff\x38\x98\x4b\xbe\x6a\x1d\xe0\xeb\xe9\xeb\x10\x5f\xcf\x73\x03\xb8\x0b\x76\xf7\x76\xb0\xce\xed\x8f\xfe\x09\x00\x9d\xf3\x3c\xeb\xb0\x6e\xfc\xb4\x0e\xee\xc6\x6c\x37\x40\xbc\xc2\x9f\xde\x0e\xe8\x9a\x59\xfd\xcf\x85\x7b\x41\x97\x34\xd4\x25\x49\xaf\x82\x68\xcd\x3e\x4c\x32\x76\xf5\xae\xff\x0d\x76\x4c\x8a\x0a\xfe\xee\xb7\x8d\xac\xdc\xdf\x72\x07\x6f\xd5\xdb\x8d\xf8\x51\xe3\xf6\x2a\x23\xd4\x5c\x01\xcd\xb9\x82\xdf\x3a\x25\x1a\x04\x1b\xa6\xc2\x30\x34\xb3\xa1\x09\x7c\xa5\x21\x65\xef\xb9\x32\x26\x5b\xeb\x8c\xee\x64\xcb\x36\x5a\x0d\x1d\x30\xb2\x52\x25\x6b\xb6\x7f\x8a\xa9\xac\xda\x63\xea\xbd\xe7\xfa\xc1\x18\x06\x58\xd7\x5d\xcb\x87\x56\xf3\x6f\x1a\x98\x61\x94\x38\x53\x2a\x19\xd3\xf2\xf7\x9a\xc9\x22\x70\x11\x1a\xed\x9a\x46\x3c\x32\xca\xc8\xa8\xb8\xd0\xc9\x16\x36\xec\xb5\x0f\xeb\x36\x91\x60\xc3\x27\xb1\xa1\x11\xd1\xe0\xbb\xd8\xa2\xd7\x77\x6c\x50\xd7\xd9\xb4\x41\xff\x2e\xec\xd4\x1c\x6a\x39\x33\x40\x7f\x03\xcb\xfb\x11\xe8\x7b\x1d\xc6\x69\x7c\x5d\x67\x68\xc5\x1c\xe1\xeb\x10\x4b\xf0\xb8\x86\x8c\xa3\x26\x58\xdb\xfa\x1c\xe6\x9c\xed\xde\x3a\x47\xbb\xdb\x2b\xbe\xfe\xd6\x79\xb9\xad\xe9\xa5\x1b\x49\x49\xb3\xb6\xac\xd4\xe1\x35\x7a\x3c\xea\x79\xee\x49\x4f\x7d\x2f\x59\x5b\x8a\x94\x65\x7c\x75\x6d\x89\x65\x7c\x55\x2a\xa1\xef\x78\x75\x11\xfd\x5e\xca\x52\xb6\x00\x5d\xb7\xf3\xbc\x9d\xc1\xa6\xc6\x67\x32\x01\x9c\x82\x0b\x3e\xc3\xc2\x06\xdd\x33\x2c\x65\x49\xb8\x76\xbb\x67\xcc\x99\x17\x71\xa2\xbf\xae\xdf\xf3\x55\x32\xe4\x37\x7e\x85\x35\x67\x7e\x93\x65\x4c\xb6\x94\xb5\xa8\xf8\x4f\x5e\x6a\x55\xd3\xf2\xfb\x2d\x48\x56\x46\x9e\xa5\x9a\x4b\xf7\x83\xeb\xf5\xcb\x3b\xad\x86\x46\x9a\x3e\x54\x2f\xc2\xca\xcd\x81\xad\x24\x56\x10\xfa\x48\x13\xd0\xfa\x45\x96\x32\x00\x95\x65\xd7\x56\x88\x61\xb9\xf9\x33\x2e\x59\xbf\x36\x5d\x37\x1a\xd4\x28\x32\x17\x80\x91\x4f\xc5\x76\x59\x32\x09\xcd\x2b\x5a\x27\x7e\x54\x4e\x59\x25\xdf\xfa\xfa\x85\x3c\xb8\x92\x49\xcf\xae\x41\x8b\x56\x36\x4e\x70\xf3\x14\x37\x4f\xb2\x82\x7b\xa5\xa1\x62\xb2\x9b\x9b\x6b\x9a\xd6\x6b\x66\xfc\x9a\x39\xcf\x5b\x2f\x81\xb4\xbc\xfd\x56\xa0\xda\xeb\x19\x7e\x10\x73\x5b\xf4\xc3\x38\x71\xe3\x0b\x37\xe2\xc6\xfe\xcb\x27\xc6\x09\x77\x98\x48\xbb\xe0\xc6\x05\xf3\xa5\x9f\x03\xb8\xef\x89\x94\xc2\xf8\x92\x87\x62\x5c\x7c\xa6\xab\x72\xe7\x86\xd5\xb2\x9a\x2e\x57\x0d\xd3\x58\xbb\x5e\xad\xa4\x15\x17\xac\x18\x97\x81\x23\x05\x0c\xa5\x61\xdd\x02\x19\x0a\x83\x6a\x95\xed\x86\xfb\xd8\xa2\x35\x75\x33\xab\x1c\x46\x02\x1d\x59\x55\x36\xab\xb9\x51\x7c\x5c\x55\xf7\xf3\xb5\x4b\xa3\xf2\xe7\xac\x78\xc9\xca\xed\xe5\x57\xbc\xeb\x6d\xdd\x16\xdb\x8b\x1a\x4b\xb3\x5d\x86\x7e\x65\xb6\xc5\x08\x14\xb9\xde\x74\x2d\x5b\x19\x99\x26\xdc\x37\x5f\xa9\x0a\xc0\x57\x2e\xeb\x8a\x23\x6b\xfd\xb6\x6e\xb2\x85\x89\x71\xaf\xdf\xc7\xf5\x79\xae\x8e\x2c\x2b\xa1\xe8\x19\x73\x3e\x5c\xc9\x71\xd9\x39\x46\xc6\x81\x01\x3a\x71\x72\x91\x44\x06\xf3\x67\x46\x7c\xc6\xf3\x15\x65\x2c\x59\x18\x1b\xc1\x3c\xff\x1e\xe5\x9f\x2a\x28\xab\x76\xbc\x4d\x00\x31\x4c\xd3\xb8\x21\x8f\xd1\x36\x26\x5b\xe5\x2b\xeb\xc9\xd6\x1f\x08\xc7\xfa\xed\xf4\xed\xe1\x77\x0d\x11\x5a\x6b\xb5\x4c\x3f\xb4\x5c\xaf\x70\x4d\x50\xc5\x2d\xc9\x41\xdc\x0e\xb1\xe4\x2d\xf5\xed\xa1\x51\x50\xbc\x06\x50\x34\x5e\x92\x7f\x3c\x3c\xae\x99\xf6\x3f\xb4\xbb\x8d\x37\xe8\x7f\xcc\xf4\x55\xda\xfd\x98\xb9\xcb\xef\xd0\x6b\xbb\xc0\x73\x16\xf3\xd0\x08\x7c\x23\x0a\x16\xdc\x08\x79\x14\x87\xae\x62\xcf\x16\xee\xe9\x19\x80\x1b\xdc\x21\xf2\x99\x71\xc6\x43\x7e\xf3\xcc\xe7\x97\xfd\xb7\x87\x66\x65\x4f\x6b\x00\xe8\x26\x05\x80\x3f\x06\xa6\xf5\xd6\xaf\x07\xeb\x24\x77\x63\x91\x6b\x11\xd4\x5d\x58\xd4\xf7\x83\xcd\x4e\x2b\xf6\xfe\x5c\x89\x72\xe1\xd3\x62\xcd\x47\xc6\xfa\xb9\x5a\xd6\xde\xfb\xcc\x78\xfb\xea\xc9\x2b\x1b\xf0\xe1\x2c\xb8\x00\xd2\xaa\x8e\x53\x86\xec\x95\x76\x74\x10\x19\xcc\xd8\x5e\x5e\x1a\xaa\x2a\xf0\x80\xdf\x35\xa4\xc7\x44\xc3\x8d\x8d\xc4\x8f\x5d\x4f\x90\x6d\x51\xb9\x0b\xce\x6b\x5e\x3d\x39\xea\x1a\x9f\xf5\x44\x43\xe5\x52\xb6\xd1\x37\x5a\xf2\x84\xc0\xfc\xf8\x66\x7f\x1c\xa4\x41\x4e\x3f\xa8\x3a\x0a\x5b\x1f\xdf\xb8\x56\x62\xfa\x0f\x36\xe0\x7f\x1c\xf1\xff\x4f\x2f\xb4\x5b\xb2\xcf\x73\xf9\x7f\xff\x2f\xf9\xff\x5f\xf2\xff\xdf\x0d\xf3\xbf\xe4\xff\x7f\xc9\xff\xff\x92\xff\xff\x25\xff\xff\x4b\xfe\xff\x97\xfc\xff\x2f\xf9\xff\x5f\xf2\xff\xbf\xe4\xff\xf5\xfa\xff\x92\xff\xff\x25\xff\xff\x4b\xfe\xff\x97\xfc\xff\x2f\xf9\xff\x5f\xf2\xff\xbf\xe4\xff\x7f\xc9\xff\xff\x92\xff\xff\x25\xff\xff\x4b\xfe\x5f\x93\xff\xe3\x0c\x93\xaf\x0a\x87\xdc\x5a\xa2\x7f\x2b\x87\xdc\xb1\x47\xcf\xb9\xf2\x01\x41\xb8\x47\x67\xa1\x85\xe4\x1b\xc2\xc4\xf7\xe8\x1b\x5e\xbc\x17\xfe\x29\x42\xef\x9f\xda\x3f\x45\xe0\xfd\x29\xfe\x29\x42\xef\x1f\xd0\x3f\x45\xb9\x53\x7f\x07\xff\x14\x65\xdf\xcd\xe0\xdc\xb0\xe4\xb9\x59\x79\x6c\x6e\x71\x2f\x4d\x5b\xbe\x07\x7e\x9b\xc5\xdc\x37\x7a\xc5\x96\x5b\x16\x89\xc9\xed\xdc\x7f\x63\x88\xc9\x0e\xb6\x30\xae\x57\x77\x8e\xf1\x98\xc5\xce\x99\x3a\x00\x22\x1d\x48\xd1\x4f\x16\x27\x3c\x7c\x35\x3f\xaa\x45\xfb\x56\x71\x93\x5e\xc2\xe7\x4a\x64\x45\x52\x0f\x0c\x7e\x4d\x0c\xc6\x8d\x7e\x38\x0e\x24\x8d\x03\x5a\x5c\x3a\x90\xaf\xb2\x72\xe0\xc6\x55\xa4\x23\x12\x3c\xf3\xe7\xc1\x5b\x7e\xb9\xc1\xc9\x43\xf7\x8e\x9f\xdb\x5f\x7d\xba\x32\xd8\x02\x4e\x3e\x99\xa1\x3b\x0a\xdc\x14\x22\x9b\xbf\x45\x48\x7a\x73\xd8\x04\x0c\x5c\x71\x89\xad\xf7\xa8\x67\x82\xe6\x2e\x03\x8f\xc5\xdc\x8a\xc9\x4a\x56\x6d\x5f\x5b\x51\x86\x33\xc2\xe4\x0c\x34\x0f\x85\x70\x3a\x9e\x12\x9f\xaa\x83\x6d\xb5\xf4\x3a\x91\x28\xfc\x7c\xd5\x23\xf0\x66\xb9\x07\x63\x12\x52\x7f\xaf\x4f\x02\xea\xef\x5e\xdb\xb7\x61\x68\x9a\x5c\xfa\x8e\xad\x1a\x93\x9d\x08\xbc\xe9\xc8\x6e\xab\x48\xbc\x48\x07\x52\xab\xda\xec\xeb\xd0\x29\x08\x13\xd7\x81\xa0\xdb\x32\x42\xef\x19\xf3\x67\x5e\x19\xc3\xab\xe6\x64\xaa\x07\x79\xe0\x15\x4b\x5b\xec\xdf\xa6\x43\x4a\x3e\xbd\xa1\x47\x8f\xbd\xc0\xf9\x90\x77\xa7\x1c\x7b\xf7\xa3\xfb\x34\x80\xc5\x25\xbd\x0b\x6e\xea\x0b\xf7\x78\xcc\x91\xc6\x96\x52\xe7\xdd\xe6\xee\x3d\x91\x05\x8a\xfe\xc1\xeb\xf5\x7d\x3b\x0b\x2e\xca\xab\x47\x9d\x1a\x2d\x17\x8b\x95\x53\xa4\xdb\xab\x86\xe8\xc2\xea\x0e\xc7\xae\xaf\x1a\xd9\x0f\xd8\xf6\xf3\x85\xa1\x86\x38\x42\xe4\xba\xcf\xd1\xe8\xa6\xb5\xa3\x7c\xcd\xd8\xd7\xcd\x21\xd4\xdf\x91\x19\x37\xcc\xa4\xb6\xa7\xad\x84\x7b\xe6\x4e\xe0\xcf\xc0\x90\xf1\x3a\x90\x9d\xb9\x33\xbe\x01\x64\x39\xcc\x6e\xd3\x3d\x6d\x2b\xdb\xdc\x3f\xf5\x15\x37\x45\x75\xd6\xbd\x83\x32\xb2\xba\x9c\x24\x08\x4c\xe7\x25\x17\x40\x81\x67\xc9\x7f\xeb\x5e\x80\x1a\xf0\x12\x11\x54\xad\xef\xa3\x63\xd1\x82\x17\xa1\x66\xa4\x6a\xf2\x25\xd4\x4c\xb9\x69\xde\xe5\x6b\xb3\x41\x6b\x21\x64\x13\xac\x01\xce\xc8\x86\xb9\xf9\x73\x5b\x1e\x80\x79\xae\xf4\xf4\xc1\xbc\x3f\xc2\xd3\x47\x61\xdc\x0b\xb6\xba\x7a\x95\x14\x57\x17\xae\x3f\x0f\x6a\xa1\xc3\x93\x0f\x1d\xc1\xcd\x77\x64\xbc\xb6\xdc\x90\xb7\xd1\x2c\xf8\x36\x16\xcb\x6b\xbb\xe5\x7a\xfc\x42\x59\x8d\xb2\xb6\x4d\x11\x9e\x7e\x84\x5d\x7c\x09\xad\x43\x76\x71\xfb\xf0\x86\x07\x1e\x67\xa1\x91\x77\x6e\xcd\x22\x7e\x13\x72\x6e\x0a\xab\x79\x9d\x11\x35\xd9\xb8\x88\x23\x01\xc9\x3c\x68\x22\xa4\x90\x26\x66\x5b\x03\x01\xe6\x91\x77\x61\xa9\x2b\xd3\xf5\x66\xc4\x1a\xf3\xae\x3b\x9b\x2a\x2b\x76\xe6\xf1\x30\x6e\x08\x78\x2a\xe6\xd9\xa8\xce\xb7\x21\x4e\x60\x90\x5f\x9c\xc3\x78\x39\x82\xa9\x86\x33\xef\x96\x09\x7a\x37\xff\x50\x0a\xb3\x4c\xfc\xe0\xc0\x0b\x22\x5e\x84\x70\x2d\x4f\x31\xcc\x45\xad\x16\xb5\x05\xe0\xb5\xb9\x6f\x98\xf2\x8a\x81\xbd\x3b\xab\x77\x48\xd2\xeb\xae\x3b\x23\x1b\xfb\xac\xb2\x34\x75\xbd\x8c\x05\xcd\xa5\x14\xd5\x94\xae\x03\x44\x4f\xcb\x42\x53\xd4\x6e\x1a\x9d\x2a\x09\xd3\x86\xdb\xa5\x02\xeb\xb8\xfe\x1b\xc6\x2b\x5f\xae\x1f\xb0\xca\xf3\xb1\x23\x56\xc5\x7e\xcb\x90\x55\xd1\xe6\x31\x8b\x25\x64\x37\x8f\x16\x06\x58\x1b\x4b\x23\x8e\x01\x73\xc2\xbb\xe2\x4f\x75\x08\xd7\xf4\x36\xef\x6b\xbd\x5b\xba\x53\x19\xc6\xa4\xaf\x2c\xfa\x99\xb7\x6e\xd1\x9f\x1f\x53\x9d\x7f\xee\x53\x78\xf4\xe7\x9c\xc2\x9d\x7f\xc4\x53\xb8\xf3\xf7\x3d\x85\xcb\x83\x70\x52\x1c\x84\x97\x4b\x44\x4a\xe1\xfe\x56\x4d\x27\x63\xbb\xe4\x41\x82\x79\x1f\x19\xc1\x76\x7b\x87\xef\x9c\x3c\xea\x3f\xac\x38\x90\xe8\xd6\x28\xfd\xb8\x96\x59\xe9\xa4\x2e\xd9\x6c\xe6\xfa\xa7\xb6\xb1\xb3\xbc\x34\x06\x83\xe5\xa5\x71\x6f\x79\x59\x95\x90\xe5\x02\xb4\x90\xcd\xdc\x24\xb2\x8d\xbb\x0d\x39\x98\xf3\xe1\x34\x0c\x12\x7f\xd6\x71\x02\x2f\x08\x6d\xe3\x93\xf9\x7c\xde\x5c\x8f\x6d\x88\x66\xa2\xc0\x73\x67\xc6\x27\xbc\x2f\xfe\xab\x67\xd4\x75\x34\x7f\x9d\x07\x7e\x0c\xfa\x15\xb6\x31\xe8\x0e\x42\xbe\x68\xcc\x70\xc1\xdd\xd3\xb3\xd8\x36\xee\xaf\x57\xe0\xb9\x3e\xef\x9c\xa9\xef\x83\xee\xce\x9a\x44\xb0\x0e\x3c\x63\xcf\xf8\x6c\x0d\x80\xb6\x1f\xc4\x96\xed\xb1\x28\xee\x40\x58\x77\x25\x99\x5d\xb0\xf0\xd4\xf5\x3b\xa1\xac\xfd\xe1\xf2\x72\x63\x95\x92\x34\xde\x34\x31\xfd\xee\xb6\x18\x62\xbf\x7b\x2f\xe4\x0b\x59\xd7\xc4\xef\x7d\xf6\x89\x21\x67\xfa\x85\x54\xa7\x7d\xf7\xe6\x39\x6d\x42\xac\xee\x79\xc2\xbb\x0b\xb6\x34\x3e\xeb\xfd\x9d\xb4\x7e\xeb\xad\x23\xd2\x28\x0b\xda\xac\x16\xbc\xbf\x7f\xf1\x85\x52\x05\x3e\x3d\xc8\xb5\x82\xef\x3f\xce\x1f\xdd\x22\x35\x28\x1e\xaf\x54\x86\xc3\x7d\xb2\x53\xe4\xdd\xae\x3f\xee\x1f\x5c\x7e\xb1\x3f\xdc\x7f\xd2\xd7\x6d\xb8\x2a\xf9\x1c\x92\xaf\x74\x72\xa4\x92\xe3\x2f\xf6\x87\xc3\x7d\x51\xeb\xe2\xc9\xfe\xfe\xe2\x49\x5d\x27\x79\x7d\xb8\x75\xcd\x64\x54\xd3\x4c\xd6\xca\x4d\x1f\xf8\x15\x9d\x6c\x60\xda\x27\xb9\x56\xf2\x44\x72\x06\x13\x1d\xdb\x78\x52\xe3\xe0\x27\x5a\x1f\xaa\xa2\xc3\xa5\xeb\x2d\xf1\xe5\x93\x42\x61\x08\xb2\xee\xa5\xbb\x3d\xf8\xab\xd2\x2a\x7a\x7f\xf9\xc6\x5d\x54\x98\xf3\xd6\x5b\x35\xde\x7a\x0b\x4f\x50\x49\x23\x6a\x22\x18\xf5\x09\xd2\x8a\x4e\x93\x8d\xe7\xc0\x72\x87\x7a\x0d\xea\xda\x6b\x00\x70\x67\x74\xb2\x81\xcf\x9e\x54\xb5\xc2\x54\x30\x5b\x91\x1b\xb6\x3b\x08\x66\xab\x32\xca\x08\xb6\xfa\x93\xe4\x14\x26\xa8\xa6\x47\x06\x0b\x55\x2a\xed\x4d\xd0\x46\x26\x5c\x55\xe1\xce\xa6\xa2\xda\x32\x08\xd4\x97\x66\x4e\xda\x48\x53\x63\x4b\xf1\x39\x5b\x13\x64\x28\x6e\xba\x3e\xc1\x37\xb0\xee\x13\xb4\xae\xc2\xb7\xb7\x5a\x19\x4d\x4d\x2b\xf6\xdb\xc8\xb2\xca\x9c\xaf\x4d\x36\x28\xad\x15\x00\xb7\x15\xc4\xd7\x2b\xcc\x99\xf0\xf2\x44\x5f\x93\x51\xf1\x6c\xb7\x01\x53\x9d\x79\xaf\x41\xab\x16\xcb\x7b\xc3\x80\xcb\x1c\xb9\x91\x65\x95\xe1\x36\x28\xbd\xfd\x66\x30\xe4\xbc\xf9\x8d\x70\xa8\xb2\xda\xb7\x02\x44\x9d\xa9\xff\x6d\x90\x28\x33\xea\xb7\x02\x05\xa4\x02\xa2\x35\x2a\x57\x6a\xa5\xcc\x0a\x54\x1a\x01\x70\xfd\x58\x37\x2e\x07\x5b\xb0\xfc\xa5\xaa\x9d\xc0\xaf\x0d\xb6\x18\xea\xfa\xa8\x3e\x56\xa7\xb1\x78\xfb\xe8\x90\xd2\x6b\x61\xa4\x41\xbb\xf0\x06\xe5\xc2\xad\xa6\x8d\x63\xab\x21\xce\xf3\xc6\x3b\x92\x7a\xdc\x67\x75\x5b\x52\xdc\x23\x37\x04\x7e\x26\x5a\xa5\xee\x86\xba\x3e\x2a\x86\x74\x59\x1d\x52\xd5\xa3\xb8\xe0\x42\x6b\x63\xd3\x9d\x8b\xb1\xca\xd6\xea\x5b\x8b\x49\xbd\xb6\x87\x55\x54\x0a\x24\xa3\x9d\xeb\xb5\xce\xf2\xdb\xfc\x5c\xc2\xbc\xb5\xf1\xee\x65\x8b\x18\x9b\x3f\x46\x5b\xc4\xb8\x5e\xba\x5c\xbf\xb3\xdf\x78\x41\x93\x77\x8e\x18\xba\x35\xfb\xfa\xba\x2b\xda\x56\x06\xc4\xfb\x96\x38\xb6\x3e\x74\xfd\x85\x1a\xe3\x69\xf5\x8b\xae\xfc\x89\x52\xa3\xcf\x2b\xa7\xc6\xb5\x77\x3c\x3a\xf8\x3b\xdd\x33\x5a\x3a\x9c\x7b\xf5\x86\x47\xdf\xef\x54\xdb\x73\xa3\x7d\xff\x4a\x55\xa6\xdb\x34\xe8\xe6\x6e\xec\x19\xfd\xcd\x15\xa8\x96\xae\x2b\xbf\x7b\x3d\x0c\xab\x7a\x38\x4d\x9d\xab\x28\x8c\x28\x38\xaa\x7b\x93\x8a\x3e\xde\xcc\x36\xb6\xae\xbb\x92\x2a\xab\x4b\x1a\x86\x14\xd1\xd7\x74\x4a\xf2\xd0\xfe\x5b\xb8\x92\x19\xe4\x1b\xc6\x16\x5c\x56\x55\xab\xd1\x72\x7b\xb5\xb4\xb4\xba\xe9\xda\xe5\x10\x28\x8c\x37\x29\xfe\x65\x9b\x01\xa0\xa7\xf1\x77\x8f\x5f\xdd\x80\xdd\x06\x00\x70\x1d\xd6\x3c\xfa\xe2\x6e\xec\xb7\x81\xa0\xaa\x73\xbb\x01\x06\x0a\xc5\x66\x4f\xd4\x95\x45\x2c\x55\x64\x37\x0d\x0c\x72\xe5\x6a\x39\x9b\x80\x23\x40\x53\xad\xb2\x34\x80\x66\x38\xc8\xcc\x15\x40\xe4\x60\x80\x2f\xa5\x0f\x8d\x00\xd8\x74\x09\x57\xe9\x46\xb9\xfa\xca\xd5\x5c\x55\xfd\xb3\x90\xbf\x19\x5b\xf2\xc2\xa8\x3a\x03\xfa\xd2\xae\x4e\x53\xab\x4c\xc7\xd6\x75\x77\x78\xd5\x0a\xaf\xcf\x1c\xad\xe5\xbe\x61\x85\x17\x19\xab\x88\xa5\xee\xfd\xea\xda\xb3\xd7\x61\x72\xf9\x1e\xb0\xde\x8b\xe6\x99\x94\xd7\x82\x35\x94\xae\xc2\x34\xbf\x25\xac\xd7\xd8\x34\xb3\x1b\xef\x0a\xab\x33\x5b\xae\x28\xab\x8e\x5a\xdd\x27\xfe\x86\x61\xcb\x92\xb7\x1c\xb7\xca\x7c\xdd\xc0\x9b\x90\xa9\x34\xea\x86\xcb\xc8\xc9\x06\x45\xe6\x7c\x29\xe3\x62\x2d\xab\x1d\x57\x9f\xe6\xea\x2c\xc4\xf5\xf6\x07\x39\xef\xb5\x45\x8c\xf1\x56\x03\x3d\x11\x6c\x41\xb5\x6f\xd2\x20\xa1\xa8\x2a\xe7\xf9\x6a\x95\x6d\x3a\xe4\x16\xe5\x37\xac\x5e\xc3\x92\x63\x79\x36\x5b\xb7\x44\x68\xe6\x9d\x0c\x6a\xac\x44\x6f\xae\xcd\x44\x8c\xb1\xae\x77\x2a\xd9\xb7\xb2\xce\x3e\xcc\x48\x33\xce\xfd\x5d\xfa\x03\x64\xdb\xa8\x70\x80\x1b\x15\x17\x0d\x8f\xf9\xa7\xe2\x34\xe6\x44\xe2\xf4\x5e\xe8\x15\xd6\x05\x6a\xff\x08\xf2\xcc\xf0\xf4\xc4\xda\xde\xde\x21\x46\x9f\x18\x7d\xbc\x41\xac\x79\x5d\xa6\xff\x3c\xf9\xe6\x1f\x24\xce\xbc\x59\x7a\x59\xa8\x5b\x22\xb2\x26\xa6\xfe\x87\x98\xc5\x7f\x50\xa9\xf4\x1f\x31\x6f\xbf\x6b\xe6\x7e\xa3\xdc\x79\x4d\xa9\x36\xc3\xc4\xf5\x48\xfd\xfa\xe2\x26\x9d\x5a\xa2\xdb\x79\xee\x46\xb1\xfd\x2a\x21\x55\x2b\x3d\xfb\x87\xa4\xa4\xc5\x17\x79\x96\xfc\xb7\xca\xc8\x65\x55\x2f\xc5\x8d\x9e\xf9\x6e\xec\x32\xcf\xfd\x19\x34\x59\xce\x58\xf4\x94\xb9\x1e\x3c\x9f\xe6\x7b\x42\x74\x14\x84\x52\xd3\xa5\xcc\x3e\x6b\x3e\x04\x74\x58\x2e\xea\x7a\x32\x55\x1e\x25\xd7\x73\xd1\xfb\x6f\x93\x9a\x90\xa0\x99\x6b\x8d\x66\x64\xe3\xe1\x7f\x43\x15\x6b\x07\x3a\x79\x4a\xcb\x32\x9c\x6b\xf8\x44\x4d\xba\x3d\x6e\x0e\x09\xe8\xad\x54\x3c\x99\xad\x47\xe7\xca\xb3\xe5\xb1\x6a\xbc\x3f\x44\x83\x25\x57\xfd\x90\xea\x0f\xd7\x6a\x30\x38\x81\x97\x2c\x7c\xf1\x2a\x17\x49\x67\xd0\x19\x34\x3b\xa2\x67\xcb\x25\xd2\xae\xff\x4b\x73\x3d\xda\xd0\x50\xe0\x88\x12\x9d\x13\x16\x22\x55\x68\x7d\xc2\x47\xbe\xb5\x49\xc5\x23\xbf\xda\x46\x72\xd6\x3a\xc1\xbc\xb3\x26\xd5\x47\x76\xbc\x91\x99\x25\xeb\x97\x00\x22\x7b\x7d\x4e\xb3\x0c\xee\xd4\xf3\x5e\x38\xca\xe9\xff\x75\xfa\x2a\x8d\xaa\x3f\x03\x01\xc3\xe0\x9c\x87\x73\x2f\xb8\xe8\xb0\x24\x0e\x50\x76\xcd\x24\x80\xde\x7c\x87\x5f\x2e\x99\x3f\x53\x19\xf3\x3e\x78\x6e\x54\x0a\x47\x92\x23\x7a\x2e\x35\x88\x74\x40\x02\x3c\xb5\xe3\x6e\xbe\xd2\x46\xe3\x6b\x34\x57\x02\xa7\xb3\x68\xd0\x4b\x41\x17\x2c\xf4\x5d\xff\x14\x11\xe4\x07\x1d\xc7\x0b\x22\x8e\x20\x5e\x7a\x79\xe6\x45\x7f\x3a\x5e\xc0\x04\x09\xeb\xcc\xe5\xaa\x5e\x0b\x12\xb0\x0e\x94\x80\xc5\x1d\x8f\xcf\x63\x43\xb4\x1d\x76\x0a\xb5\x18\x79\x85\x9b\xb7\xdc\xd0\x9b\x5b\x04\x18\xf8\x3e\x48\x8c\x59\xe0\x6f\xa9\x08\xf7\x4b\x1e\x2e\x5c\x88\x1c\x02\x86\x8e\x0b\xe6\xb3\x53\x9e\x9f\x83\xba\x79\xf0\x01\xa5\x40\x21\x46\x03\x21\x2a\x9a\x30\x3d\x1f\x2f\x0f\x65\xcc\x91\x6d\x3c\xc5\xd9\xd0\x6b\x50\x6d\x90\xa7\xe0\xb9\x57\x0e\x56\xe0\x7d\xec\x55\xf3\xc9\xc3\xf9\xe0\xde\xce\x80\xd5\x62\x15\xfc\x67\xfc\x9f\x9b\x8f\xec\xcf\x63\x1e\x1a\x67\x71\xbc\x8c\xec\x5e\xef\xd4\x8d\xcf\x92\x93\xae\x13\x2c\x4a\x97\x98\xea\xa1\x33\xe3\x91\x7b\xea\x77\xa2\xab\x28\xe6\x8b\xde\x32\xf1\xbc\xde\xce\xe0\xa1\x71\xca\xe3\xc8\x58\xf0\xf0\x94\xcf\x26\x7e\x7c\xc6\x43\x6e\x5c\xc0\x7c\x9d\x70\x83\xf9\x06\xbf\x8c\x43\x26\xcd\x62\xa4\x05\xa0\x1b\x15\xdf\x7d\xce\x67\xe2\x18\xeb\x5f\x2d\x82\x90\x83\xc5\x49\x8e\xfc\x9d\x5c\x80\xa9\x89\x45\xe7\x24\xf6\x7f\xab\x89\x4d\x79\xc8\xb3\xf7\x49\xa4\xcd\x5c\x64\x9b\x81\xd3\x99\x85\xc1\x72\x16\x5c\xf8\x9d\x05\xf7\x13\x59\xbd\xb2\x79\x19\xdc\xeb\x6b\x06\xe0\xcf\xb9\x05\xde\x5f\x2e\xaf\xf1\xf3\xf4\xdb\xff\xdb\xdf\xdf\x7e\xb2\x3f\x6c\x3f\xd9\x3f\x90\x1e\xa1\x36\xc7\x8a\x50\x97\xb4\x17\x45\x02\x64\xf8\x7e\xcd\x97\x94\xea\xe9\xc7\x38\x90\x9a\xb9\xe7\xea\x72\xee\x76\x9b\x52\xd5\xe9\x84\xd8\x8d\x8a\xab\x08\xdd\x48\xee\x11\xa4\xcc\x8c\x94\x2f\x5c\x4a\x8d\x96\x36\xa8\xea\x95\xd5\x86\xcb\xd0\xea\xd9\x5c\xb5\xd3\xc0\xc4\x54\x33\xda\xd7\x6c\x5f\x14\x6d\xda\xbc\xea\x95\x34\x14\x5d\x63\x8c\xca\x45\x7a\x1b\x46\x24\x77\x37\x7d\xd9\x54\xf5\x26\xb2\xee\xf7\x03\x2e\x8c\xab\x53\xd4\xb4\xcd\x55\xdb\xaa\x4e\x6b\x65\x9b\xab\xdd\xad\xed\x56\x08\xae\x61\x17\x63\xcb\x37\xec\xfa\x40\xea\x9d\xac\xb9\x38\x11\x29\x15\x7c\xab\x23\x87\x18\x36\xcc\x5c\xc1\x9e\x36\xdf\x51\x17\xae\x48\xf4\x96\x64\xe8\xfd\xb1\x84\x3f\x8b\x1a\x52\x36\x6d\x94\xd7\x39\x1c\xc9\xeb\x6e\x6a\xaf\x0c\xf8\xb5\xad\x74\xb3\x9b\x12\xb5\x2f\x4e\x6e\xb9\x31\x5e\xe3\xc3\xa4\x7a\x5b\xd9\x04\xd9\x7c\x23\xdd\x00\x06\x1e\xa2\x3a\xae\x15\x53\x78\x5b\xcf\x27\x70\x43\xf8\x39\x8f\x63\x1e\xca\x1b\xc2\xf2\x6d\xe1\x51\x2c\x26\x76\xcd\x11\x89\x2a\x5a\x3e\xdb\xe8\x2c\xdd\x75\xe5\x1a\xf1\x59\x90\xaf\x86\x92\xca\xe9\xcb\xe6\xb2\x85\xf7\xbc\x86\xd2\xe5\xb3\xdb\x35\x75\xd4\x8f\x78\xb7\x70\xa5\xb2\x5c\x2a\xa7\x12\x25\x1d\x38\x63\xd5\xd8\x30\xa9\x80\x81\xd4\x87\xb6\xe1\x96\x50\x0a\xe6\x14\xd8\xd7\x7d\x8c\x54\x28\xac\x48\x9b\x6c\xe5\x4b\x4a\xbe\xae\x9d\xbf\x64\x72\x13\xc9\x9c\xd4\xe5\x81\x30\xab\xeb\x8d\xd6\x49\x5e\xc5\xb1\x89\x86\x6a\xe5\x4a\xef\xda\x03\x61\x55\x72\xb7\xf1\xea\x70\x53\x7d\x1b\x4e\x87\x1f\x29\x3d\x5d\x87\x6c\x0e\x57\x31\xbc\xa2\x1a\x75\x8a\xac\xdb\x2a\x97\x0f\x91\xd7\x8b\xfc\xf6\xfe\x0e\xdc\xdd\xe4\x26\xf6\x6e\xf2\x5f\x93\xbf\xbb\xce\x98\x39\xc3\x24\xf1\x4a\x22\x96\x9b\x0c\x98\x67\xca\x80\xd9\x9f\x3d\xf3\x67\xfc\x92\x2c\x3d\xda\xea\x93\x33\x6d\xb9\xac\x92\x11\x1e\x96\x5e\x5c\x7f\x3c\x35\x4d\xd0\x23\xb0\x06\xb8\x28\x5c\x89\x32\x2d\x2a\x1a\x64\x18\x93\x5b\x98\xac\x2e\xbd\x34\x6d\x9d\x49\x8b\x55\x55\x57\x93\xd1\xea\xec\x37\x18\xad\x92\x83\xda\x38\xc4\xa0\x17\x1e\x7d\x1a\xeb\x40\x94\xe4\xdc\xa3\xe3\x69\xfe\x76\xea\xd1\x56\xeb\xdc\x33\xcd\x41\x6f\x3c\xc8\x93\xad\x01\xe9\xf4\xf1\x6e\x9f\x5c\x79\xf4\x5b\xdf\x42\x2a\x19\x61\x72\x22\x41\xa5\x13\xc8\x6a\xff\xe0\xe0\xf0\xe8\xe8\xd5\x9b\x23\x31\xc0\x81\xdd\xcf\xf0\xf0\x16\x20\x38\x15\x20\xb8\x12\x3f\x27\x02\x0e\xaa\xba\x26\x28\x9c\x7a\xa3\x73\x4f\xa9\x7e\x03\x38\xf2\x91\xe3\x34\xed\xdb\x8b\xdf\x62\xd9\x2b\x80\x72\x21\xad\xd7\xa3\xa5\xe7\x3a\x1c\x61\xb2\x2f\x07\xa6\xde\x6b\xe3\xea\xdb\x62\x6c\xdb\x19\x26\x97\x1e\x7d\xc1\xe2\xb3\xee\x82\x5d\x92\x43\xfd\xec\xfa\xb7\x19\x73\xeb\x42\x8c\x77\x5f\x8c\x57\xb6\x52\x1a\x6e\xae\x98\x4f\x42\x12\x10\x97\x30\xe2\x90\x88\x06\xd2\xe3\x03\x26\x09\x7d\x1b\x5b\x7a\x60\x98\x78\xf4\x49\x6c\xc5\x24\xc1\x64\x4e\xd7\x74\xdc\xdd\xb9\xd5\xa7\x94\xce\x47\x3e\x0d\x69\xdf\x1e\xc0\xb3\xe5\xd3\x3e\x09\x69\xd2\xf1\xb0\x6d\xf9\x74\xde\xd9\x26\x21\x3d\xf4\xac\x4b\xcf\x7a\x13\x5b\x1c\x93\x3e\x26\xe2\x23\x26\x49\xdb\xef\x84\x7b\x8f\xfa\xfd\x07\x83\x47\x8f\xb6\xef\xed\x3c\xd8\xe9\x3f\x7a\x34\xc0\xf1\x59\x18\x5c\x18\x6f\xaf\x96\xd2\xf9\x89\x85\x5e\xb0\x4b\x77\x91\x2c\xa4\x3b\x19\x3e\x33\x64\xeb\x06\xbf\x74\x80\xbc\x20\x3c\x9c\x07\xa1\x15\xd0\x25\xb7\x22\x12\x62\xe2\xd2\xfe\xd0\xdd\x0d\x87\x6e\xbb\x8d\x2d\x46\xbd\xb6\x8b\x5d\xdf\x88\x4c\xd3\x75\x2c\x31\xe2\x68\xcc\xa6\x60\x87\x10\xa8\x81\xd0\x90\xf8\xbb\xa1\x54\xe9\x77\xa9\x37\x74\x77\x93\x8e\x2c\xee\x50\xb7\xed\x13\x8b\x51\xb7\x1d\x42\x25\xa3\x68\xec\x4c\xa9\xa8\xc1\x96\x77\x5d\x86\x48\x18\xca\x92\xc9\xd0\xdd\x4b\x3a\x61\xdb\x1f\xba\x9d\x0e\xce\xbf\xbb\x9d\xc1\x34\x03\xee\xc8\x9d\x5b\xfe\x5e\x88\x55\x6e\xd1\xc6\x9e\x07\x79\xa1\x9d\xce\x40\xb5\xd4\x19\xdc\xdc\x96\x18\xa2\x0f\x7d\x8c\xc6\x6e\xdb\x9b\x96\xec\x0b\xdc\xf6\xf6\x54\x8b\x09\xf5\x5c\x51\xe8\x17\x09\x34\x4e\xbe\xf2\xe8\xdb\xee\x9c\x1c\x95\x04\x91\xc5\x42\x28\x6b\xf7\x6b\x33\x07\x9f\x84\xf4\x27\x31\x7d\x01\x3d\xe5\x16\x40\x59\x83\x8f\x30\xda\x27\x0e\x1d\x4f\x87\xee\x1e\x1b\x62\x9f\x06\x63\xd6\x6e\x4f\xc9\x7b\xd3\x6c\xbd\xf2\xba\x0e\xf3\x3c\x2b\x24\x3e\x4e\x53\x47\x6a\x02\xc4\xa3\xb1\x4f\xc2\xb1\x3f\x9d\xda\xe2\x37\xb7\xd5\x76\xb2\x8c\x1c\x7b\x74\xc5\xfd\x38\x74\x79\x64\x1f\x79\x56\xab\x8f\x09\x44\x9f\x95\x6f\x03\x9c\x75\xe5\x6b\x65\x19\x48\x43\x03\x69\xac\x07\x06\xef\x2b\x55\xa6\x61\x70\xc7\x9e\x15\xe7\x4b\xf3\xa0\xb4\xc6\x3e\x14\x6b\x8c\xbc\x56\xcf\x73\x2f\x08\x42\xf2\xde\xa3\xbd\xc9\x1d\x6b\x7c\xc7\xdc\xfa\x97\x69\x3a\x99\x4d\x66\xa3\x74\x77\xfc\xe3\xde\xf4\xb3\x3d\xdc\x3b\x25\x6f\xd6\x3f\xe3\xde\xe9\xf0\x31\xb3\x50\xc8\xc1\xa1\x2a\x22\xdb\x65\xb9\x10\xe1\xc4\x27\xa1\x5c\x86\x01\x0d\xbb\x6f\x0e\x3f\x3f\xfc\xee\xf5\xf1\x9b\xc3\xd7\xcf\xf7\x0f\x0e\x8f\x8f\xde\x3d\x3e\x7a\xfb\xec\xed\xbb\xb7\x87\x47\xc7\xef\x5e\x3e\x39\x7c\xfa\xec\xe5\xe1\x93\xe3\x83\xfd\xd7\x6f\xdf\xbd\x39\x24\x2e\x14\x90\x39\xbf\x3a\x3c\x7c\x7d\x74\x7c\xa7\x4f\x18\x0d\x46\xe8\x0e\xb2\xd1\x9d\xbe\xb6\x65\x1e\xe7\xed\x95\xda\x7a\xa7\x56\xb9\x0b\x46\x29\x94\xfa\x23\x49\xab\x6c\x7f\x1c\xe7\x38\x23\x93\x5a\x94\xba\x23\x57\xce\x9e\x4f\x02\x12\x62\x9b\xcb\xb7\xa3\x38\x74\xfd\x53\x2b\xc0\x30\x8a\x8c\x94\x06\x16\xe2\x95\x3b\xb7\x5a\x81\x69\xba\x69\x8a\x22\xc8\x88\x28\x8d\xaf\x96\x3c\x98\x1b\xa1\x69\x76\x04\x91\x08\x73\xe2\xcf\xb0\xec\x59\x44\x7d\x8b\x93\x18\x0c\x42\x49\x08\x8b\x33\xea\xce\x02\x9f\xe3\x1c\x8f\x61\x46\x33\x91\x39\xa1\x5f\x59\xb1\x20\x4d\xaa\x23\x72\x48\x73\x8a\x74\x47\x4a\x2d\x0e\xe7\x69\x6a\x85\x3a\x67\x88\xd5\xde\x4c\x93\xee\xa9\x17\x9c\x30\x4f\xb4\x34\x93\x7d\x58\xd2\xa4\x9b\xf8\xae\x13\xcc\xf8\x30\xe9\x7a\x2c\x8a\x61\x67\xa3\xfd\x4c\xaf\x81\x33\x81\xe3\x43\x99\x7b\x41\x3f\x67\x56\x42\x3c\xe8\xab\x04\x26\x5d\xe0\x93\x90\xb3\x0f\x22\xe5\x4c\x62\xfa\x02\x93\xd6\x4c\xa5\x22\x44\xa9\xee\xc8\x62\xdc\x9f\x62\xd3\xb4\xca\xed\xfc\xcc\x2c\x8f\xbc\x8d\xcb\x69\x98\x2c\x31\xce\x9b\x3f\x27\xa7\x14\x21\x72\x45\xfb\xe4\x84\xf6\x87\x27\xbb\x67\x9a\x10\x9f\xb4\xdb\x78\xb5\xa0\x67\xe3\x13\x49\x1e\x60\xd7\xa9\xb4\x45\xf6\xe9\x81\x67\x7d\x00\x1a\xbc\x90\xe0\xc7\xc4\xcb\xc9\x7c\x1f\x93\x4b\x3a\x9e\x92\x43\x3a\x18\x1e\xee\x2e\x74\xbd\x87\xed\x36\xbe\x94\x23\x91\x48\x41\x29\xb5\xce\xe9\x62\x7c\x38\xc5\xa3\x73\x5b\x35\x70\xae\xa0\xfa\x8a\x2e\xba\xa7\x61\x90\x2c\x23\x01\x81\xb9\x84\xd3\x11\x1d\x5f\x4c\xbb\xce\xff\x4f\xde\xb5\x36\xb7\x6d\x63\xed\xef\xef\xaf\x90\x39\x1e\xbd\xc0\xe8\x84\x26\x19\x2b\x76\xe9\x22\x1a\x37\x76\x52\x67\x1c\x3b\x13\x27\xdd\x76\x55\xad\x17\x91\x20\x87\x1b\x0a\x54\x49\x28\x4e\x2a\xf1\xbf\xef\xe0\xc6\xbb\x5c\x6f\xb2\xed\x64\xdb\x4f\x96\x49\x5c\x0f\xce\xe5\x39\x07\xc0\x61\xc2\xa7\x54\xa0\x8f\x70\x2c\x29\x56\x30\xd8\x65\xbf\x7f\xa5\x9b\xbf\xd4\x4d\x5c\x17\x2b\x65\xec\xb0\x01\x56\x57\x18\x6b\x0d\x7a\x4d\xa6\xe8\x16\x62\x38\x86\x8f\x70\x29\x39\xe5\xf8\x31\xf9\xd4\xef\xa3\x9b\x01\x89\xdd\x4c\x9a\x3a\xf4\x09\x8e\xf1\xe0\x1a\x3e\x91\xe3\xc1\xad\x9d\xa0\xbd\x61\x74\x33\x28\x4a\xe1\x7c\x52\xb9\xb1\x86\x04\x14\x06\x51\x0f\x7c\x4a\xd2\x81\xb0\x1a\x2e\x2b\x95\xdd\x8a\xbc\x8a\xdb\x92\xd2\xef\xa3\x48\x1a\xd1\x48\x5a\xd0\x7f\xc5\x18\x8c\xac\x50\x58\x55\x2f\xad\xda\xc6\x57\x47\xd9\x6d\x24\xa6\xef\x10\x75\xa7\xef\x68\x7a\x2c\x90\x87\xf1\x7a\x4a\x33\x26\xa5\x58\xb7\xee\xec\x3a\x47\xea\x49\xdf\x3e\xe9\x09\xfd\xe0\x9f\xc5\x03\x6e\x66\xe3\x49\x52\xa8\x77\xff\xdf\x7a\x37\x35\x6f\xbe\x75\xc2\x15\x89\xc6\xd4\x3c\xf6\xe1\x81\x8f\x27\x47\x9a\x37\x8d\xf7\x19\xaa\xcd\x29\x32\xa0\xd6\xb4\xc7\x56\xfe\x98\x7c\x12\x3f\x36\xd7\xf3\xe6\xe4\x65\x8c\xe2\x3d\xdf\x2b\x54\xb7\xc6\x01\x2c\x9c\x7f\x4b\xb2\x51\xc1\x2b\xc9\x78\xfe\xc0\x9f\x8c\x8a\x49\xfa\x38\xd4\x8f\x06\xd5\x47\x2c\x5f\x91\x64\x1c\x4b\x2b\x59\xa3\x2b\x21\x64\x35\x72\x9c\x70\x95\xab\xcb\xdf\x9a\x43\xce\xaa\x16\x4b\x62\x19\x23\x7c\x6c\xb3\x61\x8f\xed\x7a\x49\xd1\x62\xa4\xf8\xaf\x90\x09\x0d\x4d\x38\xbb\xd5\x67\x75\x11\xc3\x47\xfc\x5b\x76\xc4\x07\x03\x2c\x0d\x11\x11\x63\x5e\x68\xc1\x54\x6f\xd5\xbd\xae\x5b\xc8\x68\x8e\x54\x55\x37\xca\x74\x13\x02\x5b\x12\x9d\x29\xc3\xa2\x2a\x9d\xb7\x2a\x39\x2b\xae\x2f\xc8\xcd\x9c\x1d\xab\x9c\xf4\x6d\xc6\x7e\x5f\xff\x75\x23\xc1\x52\x2a\x92\x54\x79\x2e\xfa\xce\x5d\xd9\xb8\xee\x74\x9e\x26\x8b\xa2\x93\xdd\x26\x25\xa2\xb9\xed\xac\xa9\x78\x45\x75\x8c\xc0\x34\x25\x8b\x9b\x99\x0a\x3d\xaa\x2f\xc8\x8b\x44\x8b\x9f\xe6\x5d\x81\x0d\xab\x1c\x4a\x56\x31\x74\xb1\xb6\x96\x10\xc2\xfb\x7d\xe1\xaa\x9d\x91\x74\x35\x15\x49\xda\xef\x23\x4e\x6a\x4f\x5c\x95\xa2\x0f\x9c\x17\x74\xa9\x2a\x6c\x36\xce\x15\xd3\x75\x47\xb5\x19\x49\x24\x6b\xe0\x8b\x29\xb8\xf7\x0f\x34\x0a\xdf\x44\x9b\x33\xcc\x05\x1a\x85\x87\x1b\xff\xd1\xe6\x61\x80\xd1\x28\x7c\x12\xd3\xc5\x92\xcd\xb0\x6e\x61\x77\xcf\x15\x2c\x13\x88\xe3\x91\x99\x9c\xf5\xd8\x34\x95\x4e\x6a\x5b\xad\x1a\x5b\x4a\x06\xa8\xe0\x4b\x9b\x07\x8e\x0a\xc1\x16\x4b\x95\xb9\x30\x5b\xa6\x8c\xce\x7a\x3c\x51\xce\xa6\xba\x1e\xda\x8b\x78\x26\x28\x9f\x32\xf7\x67\x7e\xc6\x7b\xea\xdc\x83\xc9\xb5\x69\x8b\x80\xaa\x40\xe5\xb0\x7a\x89\x22\x53\xd6\x5b\x48\x5f\x54\x45\xe8\x68\x6f\xdc\x58\xe9\x09\xc2\x26\x6c\xe0\x3a\x66\x51\x2f\x3a\x01\xd9\x6b\xb9\x18\x9b\xcd\xb9\xfe\xb3\xab\xff\x9c\xc4\x08\xe7\xf0\xb4\xce\x05\x56\x8b\xe1\xb5\x20\xc2\x15\xc9\x79\x72\xcb\xd2\x27\x34\x63\x48\x2f\x3a\x25\xc5\x0e\x72\xf5\x5e\x6e\x6a\x8f\x26\x3f\xf6\xfa\x7d\x44\x09\x1b\x38\x23\x67\xf0\x2a\x92\x16\x13\xf8\xe8\xb9\x84\x07\x88\x02\x87\x08\x87\xce\x8d\x5e\x42\x51\x3c\x8e\x70\x68\x7f\xbe\x8a\x24\x2e\x88\x70\x0e\x6f\xda\x7b\xdc\xc0\x5a\x3e\x84\xec\xaf\xd0\xa2\x25\x84\xf5\xaa\x57\x64\xbd\x49\xb8\xce\x81\x13\xe6\xee\xce\x92\x05\x8d\xf8\xa8\xf8\x15\x3a\x0e\xa4\xf2\x85\x3a\x89\x77\x03\x09\x71\xf6\xe8\x32\xda\xfb\xe0\x95\xe1\xb7\xe6\x9e\x2f\x44\x64\x9d\x03\x25\xeb\xbc\xa5\xc6\x99\xfb\x36\x99\x49\x73\x22\xcc\x4f\x0c\x85\x2a\xd2\x0f\x46\x2f\xd3\x64\x11\x65\xcc\x4d\x99\xbe\x15\xcb\x6e\x7b\xd6\x4d\x89\xb2\x2c\xe2\x37\xc5\xc1\xff\x5e\x6f\x49\x53\xba\x60\x82\xa5\x61\x4f\xd6\x75\x30\x0e\x11\x73\x77\x7f\x59\xb1\xf4\xd3\x4b\xfb\x2e\xeb\xf7\xab\x2b\xd1\x7e\xdf\x75\xed\x56\xca\xf9\x58\x4c\x48\xbb\xf4\x58\x4c\x72\x8c\xe1\x69\x8c\x9c\x65\x92\x09\x07\xf8\x20\x01\xa1\xfc\xbc\x14\xe3\x1c\x7e\xf9\xea\x96\xc5\xa6\xd0\xf9\x4b\x2f\xcb\x8b\xaf\x6e\x59\xf4\xe9\x84\xbf\xf4\xa2\x7c\xf7\xd5\x2d\xca\x6a\x39\xfb\xcb\xab\xb0\x12\xb5\xff\xf0\xe7\xce\x33\xf1\xeb\xef\x93\x67\xe2\x87\xaf\x31\xcf\xc4\x0f\x7f\x6c\x9e\x89\x82\xc6\xcf\xaa\x2c\x74\x54\x07\xea\xa4\x0e\xd4\x37\x1b\xed\x69\x88\x16\x8c\xeb\x74\x0b\x36\x1b\xc4\xdb\x00\x7d\xc7\x42\xf1\xa3\x3b\x71\xfa\xf7\x5f\x80\xd3\x3f\x03\xa1\xab\xc1\x74\x80\xf4\x4e\xef\x43\x15\xfe\x72\xb8\xde\x98\x6a\x2e\x9d\x9d\xcd\x86\xf5\xfb\xa2\xdf\x37\x07\x26\x2a\x84\xb1\xae\xdc\x9a\x2b\xd5\xc6\x35\x69\x52\xe2\x41\x52\xd5\xd1\x56\x1f\xae\xb3\x30\x01\xde\x71\xe0\x33\x7d\x5c\xb8\x85\xa3\xf5\x2c\xe1\x2c\xdc\xf1\xf2\xd0\xfc\xf2\x75\xa8\x31\x14\xe3\x74\x30\x98\xe4\x39\xb0\x46\x52\x33\xe9\x3c\x88\x1c\xe6\x61\x92\xe7\xf7\x75\x25\x34\x97\xb0\x3f\xd6\x97\x50\x39\x0f\x81\x92\x1d\x0f\xa6\x64\xc7\x2f\xa9\x52\xa1\x08\xef\xe0\x64\xe9\x51\xf0\x76\x9e\x4b\xee\x72\xf6\x51\xa0\xc2\xdb\xa7\x44\xa8\xe8\x1c\x88\x26\x8d\xa6\xb2\xcb\x88\x28\x22\x55\xfd\xae\xf4\xd3\x9a\x5a\x01\xe2\xae\x6e\x66\xb3\xb1\xbf\x10\xce\x4d\xb2\x7d\x29\x23\x53\xb3\x05\x10\xe5\x79\x5e\x4a\xaa\xe1\x93\xdf\xd1\xdf\x97\x35\x7e\x34\xa9\x67\xb2\x25\x55\x1b\x29\x9e\x8a\x29\xb3\x70\xad\xad\x73\x28\x3b\x87\x72\x33\x76\x26\x99\x46\x9f\x00\x91\xbf\x8a\x33\x9c\xeb\x1c\xd2\x24\x66\x99\x2e\xdf\xba\x39\x3c\x9e\xe4\x70\xa3\xf7\xdc\x8b\x96\xbb\x72\xc9\xea\x0b\xe8\x37\x39\xd4\xf6\xe1\xbb\x8b\x56\x06\x95\x43\xb1\x49\xdf\x5d\x56\x8f\x58\x8d\xa1\xbe\x57\xde\x55\xdc\x68\x1f\x1d\x51\x47\xe5\xe9\x54\xec\x66\x49\x2a\x10\xaa\xeb\xb8\xa2\x8f\x84\xbf\x4c\x99\xc4\x19\xd9\x15\x5d\x98\x5e\x2e\xe8\x82\x29\x1c\xb2\xed\xe5\x48\xb8\xd1\xcc\x8d\x93\x29\x8d\xd9\x93\x64\xb1\xa4\x29\x43\xcc\x8d\x66\x38\xdc\xde\x60\xab\xf8\xb6\x82\xca\x04\x00\x4d\xd9\x71\x1c\x17\xd3\x36\x4b\xd3\x4d\x27\x5a\xdf\xf3\x97\x4e\xef\xd6\xd3\xe2\xd0\x75\xe4\xa1\xbb\xd9\x2d\x4d\x3c\xf6\xd4\x8a\x5c\xb1\xf4\x03\x4b\x9f\x26\xe9\xf3\xec\x49\x1c\x31\x2e\xc2\xf6\xce\x81\xe5\x59\xc3\x20\xab\x54\xe7\x2b\xc8\x54\x55\xd7\xec\x3a\xa0\xbd\x9f\xf7\x76\xf7\xc0\x71\x70\x5e\xe6\xb0\x5d\xc7\x09\x9d\x3d\x69\xb2\x9c\x12\x2c\x0f\x24\xc3\x2d\x16\x91\xc0\xc8\x39\xbf\x3c\x3e\xb9\x7e\x72\x79\xf1\xf4\xec\x99\x23\xd5\x73\x85\xe9\xbb\x26\x75\xc1\xd0\x2e\x73\x17\x34\x7d\x5f\x32\x44\x8f\xa1\xca\x56\xa3\x95\xb3\x5d\xe6\xde\xa6\x74\x59\xb7\xed\x52\x60\x8f\x8e\xb0\x09\x8a\x32\x77\x99\xb2\x0f\x84\x29\xad\xa3\xc3\xa2\x3d\xaf\x08\x6b\x12\x3b\x4a\x48\xa5\x1a\x8a\xb2\x25\x15\xd3\x77\x90\x10\x85\x00\xd4\xf1\x21\x5d\x93\x3c\x04\x0b\x75\xa5\x99\x1c\xa7\xc8\x99\x33\x75\x60\xc6\x1c\x3b\xc3\x60\x1f\xbd\x92\xc2\xea\xe0\x89\x0e\x95\xf6\x1e\x86\x49\x79\xde\x7a\xb3\xe1\xc8\xb9\x3a\x7d\x7d\x7d\x76\x71\xf6\xfa\xec\xf8\xfc\xec\xef\xa7\x27\x8e\x04\x4e\xba\xec\x7e\xa8\xa2\xab\x8c\xcf\x8a\xc8\x2b\x73\x33\x91\x2c\x91\xda\x25\x57\x5c\x87\xa5\x5e\xad\xf5\xfd\x79\x34\x84\xe8\x77\xa2\xa2\x25\xdc\x4f\x1c\x09\x37\x4d\x12\x61\x4e\x04\xa9\xef\x50\xb8\x22\x79\xcf\x38\x06\xd3\x60\x60\xc9\x3b\x84\x17\x31\x5a\x5b\x37\x26\x75\xbb\x78\x17\xa4\xd7\x10\xae\x55\x92\x6b\x39\x80\x61\x18\xcd\x51\xe0\xf9\x3b\x84\xa0\x84\x30\x37\x63\x5c\xc2\x17\x41\xc5\x2a\xc3\x6b\xd3\xb0\xef\xe9\xb0\xb4\xc5\x6b\x11\x49\xdc\x19\x15\xb4\x90\x47\x30\x2b\x62\xaf\x0c\x3a\x10\x6d\x36\xe3\x89\x1c\x22\x7d\x9b\xae\x96\x02\x39\x26\x5a\x69\xba\xf5\xbd\xd0\xb6\xbd\x6f\x42\xde\xfa\x79\x10\x9a\x59\xf9\x72\x5a\xc2\x23\xcc\x9d\x4a\x76\x42\x81\xad\xb9\x1f\x9a\xce\x9e\x1e\x9f\x9d\xd7\x56\xde\x1f\xfe\xc6\xd2\x83\xd2\xfe\xe3\x71\x00\x7e\x30\x99\xd4\x19\x41\x71\xdc\x9f\x83\x0b\x76\xa3\x3f\x96\x0b\xde\xae\xf8\x2c\x66\x05\x13\xbc\xba\x3c\x3f\xfd\x1f\xe3\x00\x91\xdc\xdc\xc4\xec\xca\x1e\x80\x3a\x8e\xe3\x1a\x27\x68\x77\xaf\x58\x1a\x5e\x59\x1a\xb9\x4c\x0a\x91\x1c\x71\xb7\xdb\x92\x8d\x18\xda\x9e\x3d\x18\x87\x4c\x4f\x45\x3f\x3a\x3d\xa9\x88\xd0\x45\x8c\xd2\xd2\xb8\xe3\x1c\x3a\xee\xf8\x86\x9d\xc6\xbe\x93\x65\x2d\x7a\xac\x9c\x32\x81\x15\xc4\x30\x87\xd9\x76\xf6\xe5\x4d\xf6\xe5\x7a\x6d\x78\x83\x7d\x4b\xe2\x24\x55\x1b\x10\x59\xea\x00\xad\xd0\x6c\x4a\x6a\xdc\x0c\x19\x19\x4f\x24\x8f\x4f\x6b\x7c\xbd\x22\xcf\x62\x14\xb5\x6c\xb3\x72\xd5\xe5\x10\xf6\x61\xe5\x66\xc8\x2c\xfc\x23\xc9\xc0\x28\x26\x2b\x97\x23\x8c\xf5\x4e\xf5\x5a\x0f\x92\x04\x81\xe1\x5b\x59\x64\x4e\x62\x8d\x9c\x70\x23\x17\xc8\x0e\x21\x65\x95\x26\xab\xf3\x82\x89\xa7\x09\x17\x11\x5f\x31\x07\x02\xaf\xe4\xe4\xa2\x98\x66\x5c\x0f\x6c\x3b\x0f\xe1\xbb\x8a\x4a\xa6\x77\x09\xa3\x19\x8e\xba\x13\x33\x77\xa3\x19\xd4\xc7\x17\xb2\x1c\x74\xb4\xe9\x7a\x41\xb3\xf7\xe1\x7a\x49\xc5\xbb\x2c\x1c\x3b\xf5\x5c\x18\xce\x24\x2f\xa4\xda\x7f\x18\x06\x9e\x2f\xfd\x41\x25\xd0\x46\x9e\x47\x29\x72\xde\xbc\x3c\x39\x7e\x7d\x6a\x79\xcd\x81\x5f\x63\xf4\xab\xba\x51\x37\xaf\x5d\xf2\x2b\xbb\xc6\x38\xb4\x59\x23\xec\x38\xe7\xc5\x37\x91\x72\x6c\xe7\x1b\x78\x35\x51\x3e\x08\x2d\x45\x0e\x80\x4b\x51\xe6\x46\x94\x7d\x0f\xc3\x5d\xed\xe9\xfa\x81\x17\x9a\x76\x1f\x55\x9b\x0d\x02\xfb\x38\x38\xa8\x3d\xdf\xb7\xdd\x05\xfb\xb2\x3b\xbf\xe8\x6e\x1f\xc3\xca\x65\x48\x3e\xb3\x4d\x1f\x34\xd6\x2c\x38\x80\x95\x3b\x47\x72\x26\xf3\x88\x47\xd9\x3b\x14\x1c\x58\xf0\xe1\x49\xe6\xda\x41\x25\x2c\xc4\x05\xa3\x3c\x1c\xd6\x19\x65\x46\x1c\x07\x66\x44\x12\xdd\x16\x1f\xb1\x91\xa3\x81\x8b\xfa\x04\x97\x91\x5c\x7b\x6e\xd6\x75\xc2\xca\xdb\xb7\x71\x32\x7d\x5f\x79\x75\x67\xd5\xec\x8e\xba\x99\xeb\x40\x82\x9c\xec\x5d\x72\xfb\x42\xe7\xbe\x70\x60\x2d\x22\x11\xb3\x70\x06\x9a\x0f\x8a\xd4\xea\x39\xac\xa5\x34\x4a\xc7\x5b\x4e\xbf\xa1\xae\xa1\x8c\x4e\x66\x49\xfc\x81\xa1\x1d\x1f\x5b\xc2\x0c\x2d\x11\xd3\xbb\x54\xdc\x7d\xda\xf4\x8a\x36\x0f\xda\x1a\x9c\x57\x34\x38\xb7\x1a\x7c\x1f\x82\x7d\x08\x0e\xe0\xa1\x37\x81\xb1\xef\x81\x7f\x50\xd1\xe7\xcd\x6f\xd8\x7d\x89\x9a\xfc\x72\xe5\x68\x68\x54\xd1\x80\x49\x43\x03\x46\xa5\xfe\xa4\x55\xfd\xf9\x13\x47\x49\x4d\x29\x5a\x6e\xb5\x02\x37\x84\x37\xf7\x85\x7c\x85\x7e\x49\xf8\xf5\xd2\xf8\x63\xd7\x19\x5d\x5c\x9b\x17\xd7\xea\x90\x3b\x2b\xa4\x10\x96\x29\x9b\xb3\x34\x65\xb3\xd6\x1b\xf5\x65\x47\xa6\x3f\xaa\x05\xf6\x33\x50\xd7\xcb\x34\x51\xb7\x92\xd6\xc5\x37\x1e\x59\xf1\x8d\xa8\xdc\x6a\xb3\x6b\x66\x74\xca\x8e\x07\xe6\x38\x71\xb3\xf9\xbc\x13\x96\x4c\x8d\x16\x2b\x61\x89\x21\xc1\x37\x0d\x54\x82\x9c\x97\x6f\xae\xbe\xbf\xbe\x38\xfd\x5b\xa9\xdf\xa6\x0a\xa8\xfc\x67\x9c\xf8\x8d\xd5\x32\xfe\xb0\xa6\xd4\xfc\xa6\xb6\xf7\xeb\xba\x2d\xc0\x40\xbb\x25\xaf\x22\xac\xe6\x42\x50\x21\xe9\x9f\x2d\x93\x3a\x44\xeb\x8a\x62\xd8\xfe\x30\x6c\x19\xad\xdf\x16\x65\xff\xd1\x3d\xc5\x2e\x00\xdf\xaf\x08\x5a\x3d\xbf\xc8\xe7\xc2\xe7\xfb\xa2\x91\x7b\x82\xe9\x26\x3e\xab\x4a\x5a\x52\x20\x92\x6d\x32\x37\x35\x68\x24\xad\x09\x5e\x26\xd1\x48\xd2\x81\x46\x98\x45\x23\x59\x13\x8d\xac\x48\x56\x45\x23\xac\x6e\x22\x2d\xbf\x4a\xcc\xa2\x00\x89\x6d\xe9\xd0\x02\x79\xdf\x87\x5f\x2a\xc2\xcd\xef\x12\xee\x68\x16\xc6\x6e\x34\x2b\x4d\xbf\x6f\x4c\x3f\x9a\x37\xe0\xfc\x66\x13\x78\xfb\x84\x90\xb9\x85\x03\x11\x72\x4e\x4e\xcf\x4f\xab\x70\x20\x56\x11\x9e\x69\xc3\x40\xc7\x55\x83\x6f\xc7\x78\x58\x93\x8d\x61\x81\xdd\x87\x75\xec\x7e\x88\xe1\xae\xe6\x4c\xf5\x43\xeb\x12\xd4\xed\x7d\xe1\x29\x04\xc3\x06\x0e\xb0\xbe\x8f\xf2\x14\xfc\xa2\xb7\x7d\x89\x2e\x18\x62\x15\x7b\x3f\x2c\xdd\x01\x5d\x65\x08\x99\xb2\xf7\xac\xb0\xf7\x43\x5b\xf6\x50\xdb\xfb\x69\xd5\xde\xdb\x08\x46\xd0\xb4\xf7\x92\xc8\xb6\x64\xd5\x5a\x9b\x13\xc2\x9d\x66\xbe\xfe\x4e\xda\xea\x2d\x1a\xe3\x6e\x5b\xdd\x72\xad\xee\xb2\xd5\x41\x58\x2a\xc8\x3b\x6c\xf5\x3d\xda\x2c\x6d\xf5\x6f\x85\x5a\x2a\xb6\x3a\x80\x60\x08\xc1\xe1\x04\xc6\x87\xe0\x0f\x4b\x0d\x92\xc3\xc2\x26\x21\x0a\xd7\x95\x18\x57\xc3\x62\xdb\xc8\x2b\x61\x39\x34\x42\x3f\xad\x92\x95\xc0\xab\x2d\xae\x1d\xc5\x56\x49\x1d\x76\xb5\x85\x2c\x3d\x5a\xc5\x8a\x0b\x92\xa6\xa0\x72\x70\x5b\xa5\x54\x7c\x59\x16\x79\x7d\xf9\xec\xd9\xf9\x69\x49\x55\xdb\x70\xd7\x99\xff\xae\xf8\xa5\x3d\x8b\xcb\xf0\x11\x7f\xfc\xc0\x1f\x75\x14\xd1\x97\x08\x10\x07\x1f\x77\xe4\x56\xd0\x82\xc6\xb0\x1e\x6d\xcb\xb3\x6c\x8d\xbc\x59\x5f\x4e\xa2\xee\x21\x6c\x19\x7a\xc1\xc0\x5d\x17\x63\x6a\xb1\xf0\x99\x8a\x32\x47\xb3\x1c\xe3\xa3\x4a\xbd\x72\x1e\x2a\xa4\xb9\x8d\x2f\xeb\xbb\x3e\xed\xf1\x8e\x27\x39\x34\x8d\xfe\xd6\x55\x2c\xa9\x53\x57\x7b\xff\x9d\x39\x6e\x9d\x20\xce\xf3\x1c\x9e\xb7\xbe\x28\x57\x4f\xf9\x60\x3e\x14\xe1\x08\xf6\x51\x3c\xf8\x30\xa5\xe9\xcc\x81\x28\x7b\x1a\xc5\xec\x74\x16\x89\x24\x0d\x77\x7c\x60\x1f\x05\xe3\xea\x5e\x69\x38\x9e\x14\xfb\x6b\x74\xb9\x3c\xe3\xf3\x24\x7c\x1e\x43\x9a\xac\x04\xcb\xc2\xb1\xe9\xa9\x6c\x5b\x7a\x8c\xa1\xb3\x57\x4f\xe0\x4f\x97\xcb\x70\x1e\xe7\xf9\x04\x38\xfd\x70\xa6\x2e\x72\x8d\xdb\x63\x9c\x26\xfc\x05\x15\x2c\x8d\x68\x1c\x3e\x8f\x55\x1a\x5b\xdd\x4f\xb8\xb5\x17\x7b\xc6\xf8\xb9\xfa\xbc\x89\xb3\xe7\xe0\x1c\x16\x8c\xaf\x42\x87\x2e\x97\x99\x93\x4f\x20\x13\x49\xca\xc2\x1f\x63\x75\x96\xf4\xff\xfe\x1d\x00\x00\xff\xff\xd6\xbb\x9e\x82\x1e\x49\x02\x00") +var FileAccountsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xeb\x72\xdb\x38\xb7\x28\xf8\x7b\xf6\x53\x48\xdc\xf9\xb8\x81\xd6\xb2\x22\x25\xdd\xe9\x6e\x2a\x68\x7d\x4e\xe2\x5c\x3a\xd7\xb6\x9d\x74\xd2\x6a\x6d\x17\x4d\x41\x36\x62\x09\x50\x40\xc8\x97\x48\x9c\xf7\x99\xd7\x98\x27\x9b\xc2\x8d\x04\x29\x3a\xdd\xdf\x3e\xfb\x4c\x9d\xa9\x39\x55\x2e\x8b\x04\x71\x5d\x58\x58\x37\x2c\x2c\xcc\xe8\x9c\x71\x8a\xd0\x7c\xcd\x33\xc5\x04\x47\x78\x13\xad\x73\xda\xc9\x95\x64\x99\x8a\x46\x97\xa9\xec\x28\x12\xad\xb9\xcd\x38\x8b\xba\x44\xdd\xac\xa8\x98\x77\xce\x16\xe2\x34\x5d\x1c\x9f\xb3\x7c\x5c\x3d\x26\x6d\x39\xaf\x18\x9f\x89\xab\xb1\xfd\x69\xcd\x61\x2b\x70\xf5\xb4\xe6\xc8\xe9\x62\x3e\xd6\xff\x92\x4d\x31\xf2\x9d\xed\x50\xa4\x80\xe2\x8d\xa4\x6a\x2d\x79\x47\x21\x4a\x36\xf4\x7a\x25\xa4\xca\x93\x4d\x51\x00\xed\xbb\x37\x5c\x3d\x16\x7a\x44\x9c\x84\x43\x56\x78\xa3\x13\x29\xd9\x4d\x79\x7b\xfa\x99\x66\xaa\xbf\x92\x42\x09\xdd\x13\xe0\x84\xf6\xcf\xd3\xfc\xed\x15\x7f\x27\xc5\x8a\x4a\x75\x03\x92\x44\xbe\x60\x44\x7c\x7f\x8f\x6e\x96\xa7\x62\x31\xb6\x3f\xc9\xa6\x00\x41\x64\x9f\x29\x2a\x53\x25\xe4\x76\x1b\xfd\xf3\x9f\xfe\x25\x02\x46\x64\x3f\xcd\x6f\x78\xf6\x22\xfc\x5e\x4b\x89\x20\x25\xb2\xaf\xc4\x91\x92\x8c\x9f\x1d\xa7\x67\x26\x4b\xf0\x1e\x55\x40\xc9\x34\x50\x80\x97\x60\x71\x63\xb0\x20\xf5\xbd\x36\x79\x36\x97\xe9\x62\x4d\x13\x0e\x94\xaf\x97\x54\xa6\xa7\x0b\x9a\x74\x07\x90\x09\x3e\x67\x67\xeb\xf2\xfd\x4a\x32\xe5\x9e\x0b\x0c\x6a\x42\xa7\x85\x92\x37\x9b\x0c\x6d\x0a\x88\x22\x5c\x64\xa9\xca\xce\x35\xcc\xb2\x00\x82\xb5\x2e\xe8\x32\x84\x17\x45\xd9\xc7\xdc\x66\x00\x69\x01\x2d\x08\x8d\x63\x5a\x81\xb9\xc3\x78\xae\x52\x9e\x69\x48\xce\xc7\x34\x99\x03\xf3\x53\x91\x49\x9a\x2a\x8a\x44\x95\x19\x43\x4a\x38\xbd\xea\x1c\x20\xb9\xdd\x4e\xa6\x78\xe4\x1a\x65\xfd\x13\xc6\x2f\xc5\x05\xdd\xe9\x95\x6e\x52\x92\x28\x5f\xe7\x2b\xca\x67\x74\x76\xa4\x52\xa9\x22\x5f\xae\xcc\x2d\x80\xe1\x0d\x9b\xa3\x88\x5e\xd3\x6c\xad\x18\x3f\x8b\x08\x21\x12\xab\x73\x29\xae\x3a\xa6\x49\x29\x85\x44\xd1\x33\xca\xed\x34\x75\x58\xde\x49\x17\x92\xa6\xb3\x9b\x8e\x5c\x73\xae\x8b\xe0\x91\xae\x22\x13\xcb\xd5\x82\x2a\x3a\xb3\x55\x98\x6a\x4d\x3d\xfa\x5d\xb8\x2a\x99\xef\xc2\x11\xc2\xc5\x5c\x48\xc4\xfb\x4b\xaa\xce\xc5\x8c\x08\xe0\xfd\x54\x9e\x11\x36\x1a\xd9\xee\xa7\x84\xf7\x67\x74\x41\xcf\x52\x45\x75\x03\xa9\x4d\xce\xc8\x15\x4a\x81\x9b\x36\x33\xd3\x4a\x46\x08\x59\xe0\x4c\x70\xc5\xf8\x9a\xfa\x06\xb2\xa2\xd0\x3d\xe0\xf4\x5a\xe9\x0e\xf8\x76\x30\xef\xe7\x94\x2b\xc2\xfb\x27\xee\x37\x95\x67\x23\xba\xc8\x69\xa7\xd6\xe1\x32\xbf\x19\x47\x03\x8e\x01\x8c\x24\x09\x06\x6e\x87\x30\xe2\xfd\x19\xcb\x57\x1a\x65\x0e\xae\x33\xba\x32\x90\x36\x5f\x70\xa1\x1b\x8a\x6c\x0f\xc3\x56\xe2\x98\xf7\xd3\x53\xb9\x5e\x29\xe4\xbf\xda\xba\xf0\x48\x92\x60\x72\x0c\xb1\xca\xc9\xda\x4d\xb3\x81\x3b\x17\x72\x99\x2e\x74\x6d\x79\xdf\x20\x8b\xee\xb1\xd4\xc0\x13\x9c\x8e\x83\xde\x25\xd5\x30\x3e\x31\xba\x98\x45\x90\x1b\x88\xb7\x40\xcf\x2d\x1b\xf3\x1d\x74\x3d\x89\xad\xae\x28\x2a\x08\xd9\xd6\xe2\x18\x35\x41\xe0\x26\xd4\xe5\x74\xd3\x9a\xdb\xf1\x17\x05\x52\xc0\x21\xc5\xc0\xaa\xa5\xe2\x87\xb3\xd1\x6b\xce\x75\x40\xd7\x9d\xf8\xb1\x41\x2a\xcf\x12\xd5\xcf\xd2\xc5\x02\xe9\x8c\x45\xb5\x20\x6b\xd9\x5d\x8b\x26\x77\x51\x14\xaa\x7f\x25\xd3\x15\xc9\x0d\xd4\x16\x24\x24\xab\x73\x84\x37\x55\x07\x66\xb5\xb7\x95\x7e\xd3\x45\xce\x75\x91\xf3\x89\x98\x92\x80\x77\xf8\xf5\x7e\xce\xf2\xc2\x54\xbc\xf4\xeb\xf6\x8c\xaa\x77\x7e\xc5\xbe\x9d\xc3\x25\x59\xc6\xf1\x12\x2d\xd1\x5b\x34\x99\x62\x8c\x47\x97\x71\x7c\xd9\x25\x9a\x0e\x70\x3b\x94\x4b\x10\x38\x8e\xd1\x39\xb9\xc4\xa6\xa6\x33\xb2\xaa\xd6\x3c\x99\x07\xcf\x75\xca\x70\x8e\xab\x81\xdc\x68\x20\x4c\x2c\x9a\x83\x07\x80\xc7\xa1\x69\x7f\x2e\xe4\x41\x9a\x9d\x07\xac\x80\xe2\x8d\x25\x9f\x35\xee\x10\x8c\xca\xd3\x14\x44\x41\xe1\x02\x9b\xbf\xb2\xb9\x53\xcb\x8e\x0c\x79\x19\x85\xb9\x49\x9d\xa6\x94\x05\xd2\x0a\x64\x9a\x9c\x84\x4c\x49\x42\x8a\x37\xdd\x32\xa7\xd4\x25\x21\x85\xcc\x56\x6f\xb0\x7c\x22\xa6\xa0\x80\x59\x44\xb7\x83\xeb\x56\x78\x6e\xa7\xd5\x22\xe9\x9c\x2c\xfa\x06\x69\x4b\x1a\x17\xc7\x91\x30\x60\xab\x58\xd6\xbc\x04\xfd\x1c\xa2\x93\x93\xf4\x2a\x65\x2a\xc2\x63\xda\x97\x34\x17\x8b\x4b\x8a\xe6\x7d\x97\x8a\xfb\xea\x9c\xf2\x3a\x07\x95\x8e\x9a\x80\x32\xbd\x2c\x30\x34\x3f\x3b\xf0\xfb\xef\x38\x09\x6a\x6e\xab\xd1\x75\x99\x28\x48\xd1\x62\xb7\x42\x3b\x90\x96\x7a\x8b\x0c\xb9\xf5\x64\x60\xa6\x01\xa9\x53\x7d\x01\x22\xc7\xd2\xb6\x96\x42\x8a\x93\x14\xe1\x80\x2f\x5d\x55\x33\xc8\x89\x2a\x19\xf6\x84\xba\x75\x3b\xd5\xb0\xbe\x14\x6c\xd6\x19\x68\x02\x65\xa8\x09\x2d\x09\x31\xe1\xeb\xc5\x02\x2a\x22\x40\x43\x32\x59\xd5\xd6\xb7\x5d\x89\x63\x44\x4b\x72\xe0\xe9\x1a\x35\xf4\xc0\xb6\x00\xb6\x37\x6d\x15\x62\x37\x9a\xc5\x88\x36\x29\x8a\xad\x41\xa3\xd3\xf1\xcd\x8a\x3a\x0e\x75\x7c\x4e\x3b\xbe\xf9\xce\x4c\xd0\xbc\xc3\x85\xea\xac\xa4\xb8\x64\x33\xda\x49\x3b\xff\x61\x0a\xff\x47\xc7\xd6\x15\x95\xd0\x5a\x14\x96\x57\xae\x11\x87\x6a\x00\xb6\x8d\x10\xef\x34\xcd\xb7\x78\xe7\x0a\xde\xd2\x2d\x69\xd0\xb1\x09\xb1\xc5\xc8\x0a\x01\xe6\xab\x47\x51\x31\x16\x96\x48\x23\x3a\x51\x1a\x53\xd6\x0b\xf5\x26\x5d\xd2\x29\x11\x16\x31\x80\xf6\x35\xc6\x11\x65\x7e\x5e\x89\xac\x5c\xd9\xdd\x0a\x52\x35\x20\x5b\x04\x0d\x41\x8c\x77\xfb\x82\x13\x91\xa0\xbf\x07\xd5\x12\xa2\xb6\x77\x9a\xfb\x6b\xb0\xa6\xbc\xe3\xd6\x56\x5b\xf5\x15\xb2\xed\x57\x72\xa6\x26\xee\xaf\x44\x96\xa8\xc9\x60\x5a\x8c\x86\x1d\xc6\x3b\xca\x74\xdd\x90\xf2\x57\x22\x23\x6a\x32\x9c\x62\xb8\x57\x7d\x99\x33\x9e\x2e\x16\x37\xf6\xdb\xbd\xa9\xee\xe1\x5c\x51\x69\xdf\xef\x4f\x31\x18\x02\xa4\xe4\xcd\x01\x57\x92\xd1\xbc\xbf\x5a\xe7\xe7\x88\x06\xed\x5f\x57\xed\xab\xbe\x63\x52\x4c\xf0\xed\x76\x53\x8c\xa8\x99\x4d\x52\xf2\x18\x3d\x0a\x45\x3b\x06\x0c\x10\xe6\x26\xb4\xaa\xf0\x40\x57\xd8\x68\x96\x4c\xfc\xd8\x22\x29\x84\x8a\x8a\x29\xa8\x92\xf0\xee\x9b\x4e\xba\xae\x4a\x9a\x53\x85\xba\x83\xa0\x87\x6f\x75\x85\x7a\xed\x94\xfd\x9c\x08\xb3\x04\x03\x3c\x33\x14\x4b\x59\x64\xdc\x95\xc3\x2d\x72\xf8\xdc\x4a\xe7\xea\xb2\xfc\x4d\xfa\x06\xa9\xfe\x82\xf2\x33\x75\x8e\xbd\x3c\xb8\x37\x04\x46\x02\xd5\x02\x6f\xb4\x08\x36\xea\xf5\xe4\x43\x9f\x77\x84\xd9\x1c\x39\x22\xa9\x40\xe2\xaa\x17\x8e\x54\x4d\xa4\x9e\x08\x8d\xb6\xa4\x3b\x84\x92\xdc\xfa\xef\x6e\x5d\xfb\x1c\x03\xa0\x45\x25\xad\x1a\x64\x66\x85\x5b\x7a\x1b\xfd\x9a\x1c\x05\xb4\xe9\xa8\x64\x16\x4e\x00\x71\xb5\x19\x09\xa4\x3b\xf0\x05\x3b\xb3\x80\x35\x9e\xf5\x33\xc1\x73\x25\xd7\x99\x12\x92\xac\x60\x55\x7b\x9f\xc1\xcc\x08\x63\x8b\xf4\x46\xaf\x2c\x92\xa1\x15\xa4\x50\x89\xb3\x4f\x3d\x38\xb1\x5e\xfc\xf9\x4e\x7a\x8b\xc2\xd4\x36\x05\x71\xac\xc2\x66\xdd\x88\xbb\x5d\x2d\x1e\x51\x42\xc8\x6c\xbb\x6d\x69\x93\x10\xa2\x49\x6b\xd5\xbd\xed\x96\xf6\x79\xba\xa4\x18\x17\xa0\xfa\xcb\x54\x5e\x90\x16\x86\xe0\x84\x81\xbc\x26\x6e\x8c\x5b\x53\x91\x82\x15\x4e\x90\xea\x9f\x9c\x18\x88\x9d\x9c\x90\x15\x68\xf6\xdf\x0e\x03\x0d\x84\xdb\x84\x8e\x33\x0c\x4a\xf7\x2a\x35\x32\xd5\x6e\xb7\x36\x8e\x73\x6a\xc9\x0b\x6e\xd0\x69\xa8\xbd\x04\x2f\x13\x76\xab\x34\x05\xaa\xbf\x1f\x6a\x84\xe4\x54\x37\xa7\x53\xaa\x12\x46\xa3\x02\x23\x62\x94\x3c\x8a\xc5\x31\x62\xe4\x9d\x14\x4b\x96\x53\x2b\x49\x59\x75\xe9\x14\xe5\xbe\x00\xd6\x42\x84\x6f\xac\x6d\xa2\x11\xc7\xe3\x34\x49\x0d\x8a\xa2\x56\xee\xef\x0b\x1b\x8a\xad\x2c\xba\x97\x05\x34\xfb\x85\x1b\x0d\xa4\x0c\x9d\xd5\xa0\x1b\x61\x38\xfb\x86\x08\x09\x67\xa5\xce\xbb\x9b\x25\x9a\x58\x2a\xdb\x29\x6b\x9b\x46\x1a\x4c\x17\xf4\x26\x6f\xc1\xcc\xc9\x74\xa4\xd7\xb3\x61\xed\x86\x8a\x62\x6a\x49\x22\xc7\xd5\x32\x95\xf4\x92\xca\x9c\x22\x0c\xe5\xb2\xe3\x9e\x10\xd0\x92\x08\x38\x82\x41\xfb\x2b\xb1\x42\x86\xf2\x48\x5b\xa3\x97\xe5\xdc\x72\x97\xc0\x4b\x5a\xc0\x8b\xf2\xa3\x5f\xfc\xbc\xd0\xdd\x35\x59\x73\xf2\x16\x0e\x02\xec\xda\x04\xeb\x25\x39\x00\x43\x1a\x93\x70\x4c\x9a\x28\x6a\xa2\xb9\x92\xf4\x92\x0c\x2c\x01\x35\x04\xc4\x3d\x1b\xf5\xcd\x8a\xa0\xe6\xd1\xd1\x0a\x93\xe2\xbb\x64\x5f\x6a\xec\xc9\x24\xd5\xd9\xa5\x49\x0a\x84\x92\x26\x5b\xf1\xb4\xfc\x1a\x43\x57\x61\x0f\x62\x6a\x00\xa2\x89\x7b\xa4\xac\xe4\x92\x9d\xa7\x72\x5f\xa1\x01\x2e\xc5\x4c\xfd\x19\x28\x8e\x63\x47\x91\x7b\xb4\x9f\x2f\x58\x46\xd1\x10\x6b\xc9\x5f\x7f\x9e\xd0\xa9\xe7\xd4\x05\xe4\x4a\xac\x92\x00\x0d\x82\xc1\x0c\x9c\xa1\xaa\xd1\xb9\xc9\x60\x1a\xb0\xaa\xba\xbc\xa2\xac\xbc\x62\x15\x55\x15\x4a\x1e\x96\x1b\x5d\xa6\x8b\x02\x76\x54\xd5\xd6\x49\xd0\x7d\xf0\x15\x8d\x1c\xa3\x3a\x67\xf9\x28\x90\xde\x8d\xa9\xc3\xd5\x9f\x3a\xde\xea\x15\x32\x03\x5d\xe5\xc5\x19\x0e\xf2\x2f\x85\x96\x6e\x57\x16\x1e\xd2\xa2\x39\x68\x87\xa6\x7b\xc3\x91\xf8\x85\x0c\x46\x7b\x7b\xc2\x22\x2c\xdb\x81\x8e\x98\x42\x4a\x58\x13\x42\x86\x4d\x6b\xca\xd1\xb7\x8c\x1b\x57\xa2\x36\xe5\x33\x6b\xcf\xf0\xdf\x1e\x92\x12\x0b\xbd\x01\xc2\x4d\x2e\x83\xc8\xcb\x2e\x11\x86\x3c\x48\xae\x04\x17\x5b\x57\x16\xc7\x79\x1d\xa1\x1f\xb2\x52\xee\xa9\x1a\xaf\xd2\xa0\x3b\x30\x05\xc3\xfc\x55\xa5\x61\x89\x20\xb5\xf0\x56\x8c\xec\x5f\x6e\xcb\x14\xd5\x85\xba\xf9\xae\xed\x47\xc9\x9b\x4e\xae\x52\x45\x97\x94\xab\xce\x15\x53\xe7\x62\xad\x3a\xa6\x78\x47\xc8\x8e\xeb\x41\xf4\x5f\xe8\x70\x51\x14\x60\xcd\x1e\x49\x68\xc0\xb2\xd4\xc8\x52\xa0\x5b\x67\x5e\xda\x99\x2f\xcd\x6b\xcd\x99\x97\x46\x8a\x12\xbb\xb3\x58\x2e\x4e\x51\x9f\xa8\x38\xae\x3a\x2f\xc2\x6e\x3a\xd4\x12\xa3\x53\x49\xd3\x8b\xa2\xd0\xfc\x26\x32\xcf\x66\x91\x6d\xb7\x91\xb7\x9e\x98\x77\x1c\xc7\x15\xee\xd0\x38\xa6\x0f\x49\x38\x6a\xc3\xac\x34\x25\xf2\x9c\x8a\x8d\x43\xfc\x4c\x36\xa5\xbc\xe4\x16\x91\x72\xcb\x87\x02\x1b\xa3\xdb\xa8\x97\x95\xac\x82\x66\xb4\x94\x6f\xbe\x78\xd3\x0c\x4a\x71\x01\xfe\xa5\x01\xee\xbf\x47\x35\x82\x31\x9b\x2c\xcd\x81\x9b\xc4\x71\xd5\x1d\x53\x36\x09\xac\x5d\x2e\x07\x2a\xa9\x0f\x29\x29\xaf\xb2\x52\x77\x38\x3a\xaf\x2f\x56\x15\xda\xc5\x99\x04\x16\x2f\xe5\x6c\x50\xd4\x11\x53\x9b\x8f\x62\x58\x14\x30\x67\x9c\xe5\xe7\x35\x6a\x56\x92\xee\xdb\xd1\x8a\x5a\xb4\xaa\x34\xe4\x06\x5a\x51\x83\x56\x3c\xd4\x4d\xf4\x9c\x87\x74\xb5\x84\x38\x0f\xe6\x15\x78\xa9\xbc\x60\xb8\x46\x5c\x77\xb1\x00\xb3\x88\xfe\x67\x75\xd1\xe2\xa0\xe9\x9e\x63\xe7\xfc\x56\x56\x21\x03\x93\x8a\xd7\x52\x75\x2f\x3d\x4b\x17\x45\xb1\x43\x17\xd8\x42\xf3\xd5\x85\xa3\x04\xa9\x52\x74\xb9\x52\x11\x2e\xc0\x33\x5c\x63\x65\x4c\x6e\x33\x98\xd7\x58\xf3\xc6\x2b\x9a\x89\x56\x88\xa0\xd2\x85\x13\x0a\x4e\xf7\x4d\x78\x01\xa5\x39\x37\xc0\x14\x3f\xf5\x21\xf7\xd0\xb0\x55\x05\x52\xe5\xee\xc8\xc8\x9a\x16\xcf\xbc\x1c\x75\xb8\xe6\x8a\x2d\x29\xa1\x95\x25\xb1\x94\x04\x23\x69\x2c\x68\xcd\xbc\x1d\xd2\x91\x11\xd6\xea\x65\x81\xed\xda\x95\xb7\x6d\x06\x58\xd1\x60\xfc\xdf\xbb\x2d\x91\xd8\x2d\x06\x2d\x85\x8b\x6f\x6c\x57\xfd\xbd\x2d\xa6\xbf\xde\xc4\xda\x58\xeb\x26\x23\xe8\xaf\xf3\x5a\xb0\x77\x09\x11\x63\x91\x6c\x0a\xdc\x3f\x39\xf9\xf0\xfe\xe0\xe4\xc9\xc1\x87\xe3\xb7\x6f\x5f\x1d\x9d\x3c\x7b\xf5\xf6\xd1\xfe\xab\x93\xe7\x6f\xdf\xbe\x3c\x39\x19\x05\xb6\x41\x43\x7d\x1c\x98\xb4\x50\x8b\x14\x6e\x31\x59\x06\x80\x45\x6a\xc2\xa7\xc0\xeb\x46\xc9\x2c\x90\xcf\x35\x65\xed\x12\xa2\x5a\xac\x7f\xaa\xb0\x76\xc5\x3a\xed\xb3\xc4\xc8\xa3\x83\xa5\x36\x27\xd9\x39\x5b\xcc\x24\xe5\x0d\x1d\xc8\x90\x6d\x97\x45\xa6\x57\xaf\xc5\x6c\xbd\xa0\xc4\x0a\x44\x9c\xa8\xbe\xe1\x92\xd6\x2c\x6a\x1e\x49\x9b\xbe\xce\xc7\x1c\xe1\x84\xe3\xed\x76\x53\x14\xb0\x26\x1b\xad\xf1\xe5\xab\x34\xa3\xb3\x64\xd3\xc0\x80\xa2\x18\xad\xfb\xd5\xf7\xfe\x19\x55\xbb\x5a\x42\xb7\xdb\xe8\x51\x50\xa2\x80\xbc\x92\xb9\xfb\xe9\x6c\xf6\x58\x8f\xac\x0d\x04\xe5\x98\x27\x6a\x4a\x68\xbd\x9c\xa4\x4b\x71\x49\x9b\x45\xf1\xc6\x99\x4c\x76\xca\xd7\x4b\x9f\x51\xb5\x5b\xb4\x66\x70\xbe\xb5\xe8\x79\x9a\xdf\x5e\xd4\xcb\xdf\x55\xf9\x7a\xe1\xf5\x6a\xa6\xe7\x20\x2c\x7a\x3b\xa0\x88\x0a\x5e\xb4\xde\x69\xca\xe4\x9e\xb8\x04\x65\xdc\x17\x52\xe6\xd1\x5a\xf3\x72\xad\xd2\xdb\x0a\x94\xdf\x48\x90\x4f\x17\x3a\xa3\x4a\x51\xd9\x56\xc4\x7d\x21\x65\x1e\x5c\x1f\x9a\x5b\x23\xbb\xb0\x49\x51\x1d\x22\xa0\xda\x4b\x3e\x33\xd5\x7e\x13\x36\x65\xef\xd2\xdb\xba\x77\x5b\xe5\xfb\xbb\xa6\x93\x5b\x80\xd8\x56\xb9\xfb\x74\x5b\xe5\xaf\x1d\x04\xbf\x59\x7d\x30\x1d\xbb\x0d\x94\x1f\x4d\x13\x6d\x44\x9a\xd1\x1c\x05\x4d\xc3\xda\xd2\xfb\x05\xcc\x77\x5b\x95\xf4\x8c\xe5\x8a\x4a\x34\x99\x82\x82\xee\x10\x17\xa3\x79\x1d\xf9\x5b\x91\xb7\x2f\xe9\x6c\x9d\xd5\xf6\xe8\xc3\x7d\xfe\x72\xd1\x68\x7e\xe3\xad\x87\x42\xe8\x0e\x37\x6a\x7f\xe3\xb1\xb6\xc5\x20\x50\x16\x1b\x7d\xab\xd9\x80\x27\xf7\x10\xa2\xa4\x5a\xb1\x88\x63\x1c\x2c\x8b\x31\xef\x45\x77\xa3\x24\x8a\x74\x97\xf4\xff\x5a\x5f\x5a\x96\x5b\xb5\xb9\xa3\x90\xdb\x0b\x37\x92\x89\xcd\x8a\x24\x06\xd9\x5f\x9a\x49\xc9\x4b\xb5\x5a\xe8\x65\x5d\x25\x1b\xa5\x84\x57\x3d\x12\xde\x22\x39\x52\x88\xf6\x33\xc1\xb3\x54\x21\x81\xa1\x96\xa5\xaa\x76\x22\xa6\xb8\x28\xcc\xdc\x78\x58\x40\x13\x88\x7e\x06\x6f\xd9\x44\x37\x7a\x6e\xb5\x21\x12\xc7\x88\x13\xad\x9e\x59\x51\x49\xcb\x43\xc6\xca\x84\x47\x03\x23\x90\x5a\x31\x6d\x5c\x36\x47\x84\x95\xc3\xcf\xa8\x42\xca\x69\xff\x03\xd8\x1b\x62\x5c\x92\x63\xa4\x26\xaa\x14\xef\xa6\x20\xf0\x88\xfa\xfe\x6b\xfc\x2d\x5f\x82\xed\x21\x0a\x02\x6f\x64\x85\x7c\x2a\x00\x05\x75\xfc\xb1\x3e\x3b\xbc\x65\x98\x35\x3c\xd9\xed\x20\x70\x52\xef\x99\xac\xe3\xc6\x48\xc6\xb1\xf4\xbc\x33\x8e\x6b\x7c\x42\xcb\x8e\xb5\x0e\xb0\xfc\xd0\x75\x80\xce\xfe\xeb\x5d\x08\x2d\xab\x15\x7b\xd0\x8d\x99\xf9\xb8\xad\xe6\x6a\xfe\x94\xa6\xb6\x64\x53\x60\xe8\x2e\xe2\xf8\x76\xd1\x26\x8e\xed\x6f\xff\xc3\x9a\xc6\x71\xc3\x24\xb2\x88\x63\x65\xb6\xcd\x1d\x2a\x76\xff\xed\xee\x77\xdd\x7f\xfb\x3f\x3a\xdf\x75\x2e\xd7\xf4\xba\x73\x79\xbf\xff\xa0\x7f\xcf\xbc\xa3\x0c\x77\xee\x0d\xee\x0d\x3b\x07\x97\x29\xef\x7c\x12\x6b\x93\xfa\x4f\x3d\x42\x9e\xd3\xce\xeb\x17\xc7\x3a\xe1\xee\xbf\x35\x1a\x78\xb3\x5e\x9e\x9a\x59\xbd\xa4\x32\x67\x82\xf7\xf3\xd5\x82\x29\x14\xf5\x23\x3c\x19\x4c\xf1\x2f\xe4\x1e\x56\xfd\x25\xbb\x66\x1c\x6d\x4e\xe9\x5c\x48\xfa\xd8\x48\x28\x09\x2f\xb0\x71\x66\x28\x37\x3d\xaa\x09\x38\x61\x9c\xa9\xd1\x4e\x4a\x1d\x62\xbb\x60\x52\x7d\x93\xcb\xfe\x8c\x27\x7c\xea\x31\xcd\xa6\x60\x2d\xc4\x06\xc6\x2e\x15\xee\x35\x6a\x19\x25\xb0\x5a\xdd\x11\xc6\xc0\x94\x8f\xb4\xa4\x24\xa4\xd3\x15\xef\x98\xe7\x56\xb3\xba\xcf\x66\x7f\x11\x4e\xdc\x53\xa2\xfa\xab\x54\x52\x6e\xec\xee\xf6\xc9\x55\xe3\x79\xa9\xab\xb4\xf1\x55\x93\x82\x05\x51\xb8\x40\xd5\xe4\xe2\x52\x7a\x5b\x2d\xd6\x67\x8c\xef\xac\xf5\xc9\xd4\x4b\xfb\xba\x75\xc9\x32\x55\xe5\x90\xc6\xfd\xa1\x3b\xf4\x42\x61\x26\x96\x4b\xa6\x14\xe3\x67\xa5\xf5\xf1\xc4\xcb\x0b\xb7\x8b\x92\x36\xc7\xd1\xfa\x34\xcf\x24\x3b\xd5\x7c\xdf\xd3\xab\x93\x4a\x76\xb8\xbd\xf8\x95\x4c\x57\x2b\x3a\x7b\xe6\x64\x86\xdb\x33\x3a\x32\x62\x68\xd6\x5c\xab\x59\xb5\xe4\x92\x91\xbc\x4e\x57\xdf\xa8\x24\x6f\xeb\xe6\x95\x56\xa2\xa8\xfc\xf0\xda\xd4\xbd\xf0\x15\xa7\x17\xf4\x95\xc8\xd2\x85\xeb\xda\xe3\x34\x3b\x6f\x6e\x2b\x54\x96\x10\x6b\xc2\x81\xd4\xe2\x8a\x37\x4b\x42\x46\xbc\x52\xbd\xd4\xe8\x1b\x7e\x23\xad\xbc\x33\xf5\xd6\x1d\x9d\x58\x40\x50\xfa\x36\x75\x2d\x0b\x4a\x68\xda\xe9\xec\xcb\x66\xae\x89\x74\x3e\x37\x35\x58\x19\xca\xee\xc4\xfd\x33\x8b\xf8\x39\x54\x93\x16\x64\xc2\x70\xe9\xbe\x6b\x1e\xb5\xab\xdb\xa8\xd0\xb7\x4f\x93\x6d\x40\xa5\x36\xa5\xa5\x92\x4b\x25\xc4\x22\x1f\x57\x8f\xc9\xa2\x6f\x95\x84\x32\x05\x37\xe8\x93\x5e\x03\xfd\x13\xf7\xf5\xb9\x10\x17\x84\x01\xeb\xd3\xa5\x26\x20\x9a\x3e\x25\x7a\xdd\x46\xa0\x30\xb0\xbe\x56\x77\x4d\x9a\x92\xe9\x25\x5d\xec\x29\xb1\x67\x46\x15\x41\xcd\x63\x44\xcb\x0d\xab\x45\x9a\xd1\x23\xfd\xd1\x75\x54\xf5\x4b\x5c\x68\x8a\x31\xb5\xe6\x3c\x0e\x47\x76\x46\x30\x6c\x56\x92\xae\x28\x9f\x39\x6f\xbb\xaa\x1a\x2b\x38\x7e\xb3\x32\xbb\x56\xda\xab\xc2\x85\x01\x35\x2e\x60\x45\x36\x66\x18\x6d\x0a\x55\x49\x9d\xce\x9b\x5a\x7b\x9f\xf1\x19\xbd\x7e\xab\x97\xc6\xc3\x81\x5e\xfb\x71\xcc\xfb\xae\x81\xb1\x66\xa1\xf9\x39\x9b\x2b\xa4\x70\xe2\xf6\x55\x14\xae\x76\x51\x90\x37\xc7\x84\xd5\x8c\xf8\x2f\x7b\x43\xcd\xa9\x34\xfd\xce\x28\xe2\x30\x0c\xe9\xe3\xd2\xe9\x5f\x7f\x41\x24\xfe\x92\x0c\xfc\x3d\x1a\xf0\xb7\x57\x7a\x43\x9f\x3d\x33\x2e\x5b\x1a\xbb\xeb\xa8\x0d\xdd\x81\xc1\x6e\xe0\x10\xee\xb9\x5f\x36\xc4\xa7\xfe\xc9\xe5\x72\x54\x2a\x32\x64\x53\x98\x7a\xfe\x55\xd2\xd0\x1c\x22\x30\xb2\x29\x46\x29\x12\x35\xa1\x88\xe3\x0d\x9b\xf0\x69\x3b\x61\x68\xd9\x81\x33\xd6\x1c\xe3\xe8\xd4\xaa\x07\xdc\xa0\xb2\xdf\xc0\x61\x73\x16\xee\x50\x05\xb2\xfa\xc9\xe5\x72\xc2\xa7\x45\xdd\x98\x53\x60\x6f\x26\xca\x48\xb9\x64\x73\xb6\xa0\x5c\x8d\x1a\xef\xa4\x3b\x00\x53\x8b\xa5\x9e\x68\x33\x4b\x55\x9a\x6c\xee\xdc\xb1\x38\x4c\xad\xdd\x76\xad\xe8\x2c\x61\x05\x86\x66\xe9\x0c\x3c\x63\xaa\x13\x02\x53\x65\xff\x8e\xa1\xcd\x35\xf7\xe7\x9a\xee\xad\xdb\xea\xbb\xa6\x6a\x1e\x48\x58\x73\xff\xcd\x8c\xd2\x55\xd2\x1d\x40\x7e\xc3\x33\x3b\x2a\x63\x9f\xb3\xab\x43\xcf\x0a\x53\xe7\x8f\x0d\x75\xad\x37\x51\xaf\xd8\x18\xbc\x35\xcd\x58\x18\x0b\xed\x31\xcb\x2e\xda\x7a\x24\xfb\x77\x66\x34\x57\x52\xdc\x98\x1d\xd5\x00\xa9\xce\xbc\x37\x2d\x94\x5b\x3d\x5d\xee\xc4\x42\xcd\x32\x2a\xcc\x0c\x55\x22\x64\x5d\x24\x65\xa0\xc3\x58\xe2\xd8\xb2\x10\x26\xe9\xf4\x96\x25\x32\x49\xa7\x44\x62\xe8\xb2\x38\xee\x0a\xbf\x07\x74\xa3\xb1\xad\x2e\xaa\xe6\x84\x4f\x78\x20\xaa\xde\x0e\x9d\x45\x3f\xa7\x0a\x65\x90\x83\xb4\x6b\xcc\xc8\xeb\xba\xe2\x35\x91\x7a\x76\x15\xbd\xde\xe5\x56\xce\xa7\xd7\xec\x35\x82\x20\x1b\xcf\x06\x13\xa9\xd9\x83\x7f\xa9\xac\x66\x21\xb0\x4e\xdd\xab\xd9\x0d\x5b\xa5\x37\x0b\x91\xce\x20\x23\xac\xef\x44\x32\xc8\x09\x33\x26\xe0\xd2\x7d\x36\x8e\x33\xb3\xca\xb7\x5b\x94\x13\xda\x33\x06\x0b\xdf\x08\xca\xc1\xed\x26\x2c\x99\x32\xcd\xbb\xc7\xff\xd1\xc6\x5b\x5b\xb5\x75\xeb\x36\x21\xc3\x45\xb9\x3d\x72\x9b\xe2\x2e\xcc\x42\xd5\x6b\x36\x31\x2b\x56\x8e\xdb\xd6\xac\xcb\x52\xb4\x2c\xe8\x9d\xbd\x91\xee\x6d\x04\x6b\x42\xa7\x9e\xea\x6f\x0a\xa3\x1d\xb9\xfd\xf3\x9a\x49\xb3\xb4\xe1\xb4\xb0\x7f\x61\x1a\x10\x25\x22\x49\xac\x67\xb7\xdc\x72\x72\xe9\x12\x8f\xda\xc9\x13\x07\x76\x3b\x59\x72\xcd\x4e\x44\x0b\x69\xb2\xfc\xfb\xd6\x51\x91\x72\x2f\xff\x1b\x99\x0a\x03\xa0\xa2\x00\xc7\x6a\xdb\xfb\xa1\x69\xa8\xc9\x60\xfc\x76\x0b\x0c\xa2\x30\xfe\x27\x5a\x7d\x6c\xda\x74\x50\x83\x96\x77\xeb\x4b\x00\x24\xde\xa0\x90\x1b\x4e\xe8\x74\xbb\x6d\xa6\x68\x81\x1d\x5b\xfe\x5c\x93\x61\x2a\xa7\x26\xd7\x1f\xbb\xea\x74\x67\x7a\x1c\x28\xac\x8d\x50\x23\xeb\x46\xac\x66\x8f\xbc\x5b\x84\xc6\xd1\x31\x4f\x74\x49\x61\xce\x4b\xf0\xd9\x82\xca\xed\x96\x8e\x6e\xe9\xb3\x63\xf0\x65\x8f\xab\xf7\xdb\xfa\x6b\x18\x1f\x30\x52\xf6\x3b\x58\xf0\x81\x78\xec\xd6\xa0\x5b\x25\xe0\x51\x5f\x96\x8c\xcb\xce\x8e\x1f\xb4\xee\xb8\x9b\xc7\xa4\x62\x6e\x3a\xd5\x88\x76\x89\x9b\xac\x02\xa8\xf7\x19\x41\x82\x30\x1c\xc7\x2d\xfa\x99\x30\x6e\x32\xdb\x6d\xe5\x7d\x53\xba\xbb\x32\x8b\x5f\x81\x10\x3a\x76\x3b\xce\xf5\x41\xfa\x5d\xc6\x30\x67\x28\xee\x51\x29\x85\x8c\x80\x62\xa0\x05\xc6\x9a\xfd\x99\x19\x93\x20\x9a\xf3\x65\x07\xf5\x37\x30\xc8\x38\xaa\x36\xa4\x09\xbd\x90\xbd\x59\xa9\xe5\x5b\x9b\x05\x8f\xa3\x12\xa4\x95\x3d\xd4\xa5\x04\x66\xdb\x5b\xf1\xcb\x1a\x2e\x42\x6f\x68\x86\x37\x8e\xcd\x79\x15\x9b\x61\x43\x37\x6b\x9b\x1d\x37\x35\x99\x86\xfe\x85\x1d\x51\x2f\x53\xac\x95\xf2\xba\x07\x77\xa8\xfc\x20\x85\x35\x27\x77\xce\xfc\x9c\x50\xa0\x44\x81\xf2\xfb\xc0\x60\x7d\xeb\x15\x38\xc2\x9d\x50\x70\x64\x3b\xe1\x45\xb1\xb2\x23\x6e\xdf\x98\x70\x12\xc6\xe5\xb2\x21\x65\x80\x2f\x95\x37\x8c\xa3\x05\x04\x9e\x7d\xb7\x29\x6d\x95\x55\x0e\x04\xf1\xa3\x01\x4d\x2c\x8d\xad\x36\x25\x22\xe0\x31\xb6\xf3\xac\xec\x7c\x5a\x40\xa9\xca\x95\x34\x83\x4d\x47\x95\x11\xfe\x16\x96\x9d\xb7\xeb\x6e\x0a\xa5\xce\x47\x7e\x57\x3d\x76\xc4\xbb\x8d\xec\x87\x5a\x5f\x16\x0a\x01\xb8\x0e\x82\x5b\x34\xdd\x6a\xdf\x17\xa4\x05\x01\x36\xa7\xaf\x0c\x00\x18\x91\x25\x00\x52\x07\x00\x51\x02\x80\x15\x5e\xa3\x2e\x49\x90\xf5\x37\xcd\xec\xf1\x8b\x5b\x2c\x12\xd5\x58\xd8\xa2\xbe\xcc\x42\x9b\xb6\x35\x45\x15\xf8\x2f\x86\xec\xf2\xa1\x54\x4b\x50\xa5\xf8\x53\x6e\xc4\xba\x6d\xba\xcc\x31\xd3\x5f\x86\x63\x4f\x5d\x34\x1d\xcc\xfa\xcb\x74\x75\x0b\x28\x99\x01\x61\x92\x4d\x06\x53\x54\xf9\xfb\x69\xa1\xda\xd5\xd0\x5c\x26\x79\xd3\xd1\x8f\x5a\x28\xf0\x36\x10\x7c\x73\xe8\x66\x73\xff\xaf\x47\x6e\xb2\xdd\x3a\x70\x6b\x02\xa8\x9f\x02\xf8\xaf\x75\xc7\xd0\xcd\xf6\xee\x84\xc4\xc3\x64\xab\xba\xe3\x0e\x7c\x54\x1d\xa2\xa8\x3c\x02\x52\x47\xcc\x12\xcd\xdb\x55\x2d\xad\x5a\xef\xac\x07\x63\x8e\x69\xad\x64\x67\xc3\xa8\x56\x55\x9b\x65\x70\xec\xcc\x9e\x89\x2a\x12\x75\x9b\x19\x6d\xa7\xc1\xab\x9d\xb5\xd4\x30\xf3\xd7\xe8\x56\x69\xd4\xfa\x96\x0e\xb5\xcb\x05\xf4\x0c\x5a\x33\xd2\xac\xb6\xc9\x50\xd9\x4f\x6e\x33\x52\x7f\x93\x00\xd1\x5d\x42\x4a\x54\xd1\x24\x18\xde\xc8\xef\xb6\xa6\x77\x86\x5a\x37\x6d\x6a\x0d\x2f\xca\x8d\xf3\x69\xcd\x99\x19\x29\x32\x51\x53\xdc\x34\x67\x95\x9b\x0d\x9a\xde\x38\xb3\x57\xb5\xd9\x0d\xaa\x91\xdf\x58\xf3\x31\x18\x13\x4a\x4e\xe5\xa5\x1d\x7c\x69\x10\xab\x4a\x36\xc6\x50\x6d\x55\xec\x8c\xa2\x06\xae\xbf\xdf\xf3\xaa\xc6\xca\xea\x79\x0b\x98\x2d\x69\xbd\x41\xb4\x64\xe5\xa1\x8e\x37\x5a\xf4\xed\x9e\x37\xe2\x50\xdb\x97\x30\x1c\x60\xe9\xcd\x4f\xb3\xfa\x16\x76\xcb\x30\x9c\x73\xd3\xdf\x1e\x41\xb8\x7b\xa2\xd7\x64\xbd\x09\xa1\xde\xdf\xb6\xd7\x5d\x82\xc0\x6e\xb9\x29\xdf\x4b\xe3\xf5\x57\xab\x25\x80\xc8\x6d\xfb\x33\x81\x7d\x7b\xb4\x6b\xf0\x1e\x80\x42\x2d\x86\x70\x7a\xfb\x1e\x6b\xd0\x3c\xac\xac\xb1\xe4\x8a\x1c\x35\x89\xb4\x57\xb0\x4a\xc5\x0f\xd1\x5b\xe8\x9a\x97\xce\x2f\xe8\x8d\x11\xcb\x2f\xd3\xc5\x88\x4f\x64\xcd\xf9\x3a\x18\x8e\xdd\x14\xf0\xda\x49\x2d\xcd\xad\xe5\x51\x75\x32\x43\x92\x93\x70\x6b\x01\xa2\x65\xba\x3a\xb2\xa6\x52\x7b\x34\xa3\x2b\xbd\x08\x49\x2b\x25\xbe\xac\xbc\x4a\xf1\x9a\xa7\x43\x81\x16\xb1\x7a\x2c\x42\xef\x61\xe0\x38\xa1\x46\x89\xd3\x43\xe9\x6b\xb1\x98\x18\x6b\x27\x70\xfd\x6f\xff\x7f\x36\xc0\x2a\x8f\xb4\xc9\x14\x38\x49\xe5\xd9\x7a\x49\xb9\xf2\x0e\x69\x23\xbe\xb7\x37\xc2\x74\xc2\xa7\xd5\xa7\x09\x9f\x8e\x02\xf7\x4d\x07\x53\x67\xc2\xaf\x40\xca\x5a\x40\xea\x55\xc1\xbc\x04\x2b\xf3\x60\x95\xc6\x91\xd7\x02\xd1\xd6\xf5\x6d\x18\xa6\xab\xd5\xe2\xc6\x02\x51\x03\xce\xc9\xd4\x14\xe3\x44\x06\xdf\x7c\xe3\x13\x11\x66\x29\x4a\xf8\x5e\xff\x77\xc3\x57\x10\xd5\x13\xd0\x84\xb2\x31\x33\x6c\xb7\xbb\x00\x71\x5a\x88\x06\x47\xcd\xcb\xb0\x8e\xa8\xb7\xe3\xc7\xc1\xff\x67\xf0\xc3\x0b\xbb\x7f\x81\x21\x56\x58\xf8\x0b\xfc\xf0\x75\xfd\xbf\x80\x21\xd5\x86\xc2\xdb\x40\x04\x6b\x91\xca\xf6\xa5\x4c\x6f\xfa\x2c\x37\xbf\x48\xe1\xed\x56\xeb\x5e\x05\x52\x78\xdc\xfc\x34\x56\xb7\x49\xb9\x9b\x0b\x7a\x93\x28\xb8\x4c\x17\x89\xd2\x5d\x48\x1a\xde\x73\xf5\x62\xb4\x56\x8c\xda\x62\x5a\x27\xd4\x25\x27\xd3\xf0\xe4\x55\x4b\xd7\x03\x35\xd1\x73\xaa\x72\x97\x9c\x8e\x9d\xaa\x18\x45\x38\x89\xee\xda\x03\x89\xee\x00\x04\x2d\xf9\x22\x8e\x63\x44\x7b\x24\xba\x1b\x61\x50\xee\xe8\x76\xd9\xe6\x49\xd3\x23\xb4\xdd\xfa\xca\xa7\x46\x21\x78\xdc\xea\x46\xa3\x35\xd7\xd7\xa9\x3a\x27\x44\xff\x8f\x63\x55\xc0\x05\x79\x8c\x76\x7c\xff\xaa\xf8\x1d\x71\x5c\x3d\xe3\xed\xb6\x25\x6f\xdd\x01\xa0\x3d\x4f\x4e\x17\xf3\x38\xd6\xff\xdb\xbf\xeb\x8e\xe1\xed\xb6\x5d\x25\x2e\x10\xde\x6e\x03\x77\xd3\xea\x4b\x84\x11\x86\x77\xa4\x29\xff\x97\x7e\x7e\x08\x37\x4f\xbe\x77\x07\x45\x01\x9f\x49\xf7\x5d\x9b\x74\xfa\x63\x97\xb4\xdb\x0d\x37\x05\x0c\x6f\x33\x1c\xfe\x58\x14\x78\x32\x9c\x6a\xf4\x3e\x24\x9b\x42\xb3\x68\x53\xe8\x45\x7e\x50\x1a\x11\xe1\x45\x70\xe8\x3d\x88\x14\xf2\x84\x6a\xd9\x7b\xa5\x84\x84\x63\xb2\x99\x27\x2f\xe2\xb8\x7b\x68\x99\xd9\x66\x98\xdc\x2b\x60\x88\xc7\xbb\xb2\xc5\x0b\xef\x3a\x50\xf7\xee\xa8\x6c\x96\x45\x72\x58\xc0\xab\x56\xfd\x60\x13\x5a\x36\xd1\x30\x56\xb8\xe1\x45\x8b\xee\xe9\xb4\xca\x93\x16\x7d\xaf\xdf\xad\xff\x2d\x2d\x0a\xb8\xa3\xc7\xe8\x8f\x60\xc1\x93\x36\x2c\xbb\xe3\x4f\x60\x3a\x59\xf0\x27\x2d\x0b\x16\xf0\x86\x44\x91\x75\xcc\x80\xf7\xa4\x0d\xfe\x5d\x0b\x23\x14\x7d\x8d\x70\x2b\x18\xd1\x40\xcb\x8d\xe3\x16\xc1\xf0\xc8\x0b\x86\x4f\x34\x35\x78\xe3\x4d\x80\x7a\xb1\xb9\x4a\x15\x2e\xdc\x23\x3c\x25\x0d\xf7\x11\xbe\x5e\x2c\x08\x51\xce\x87\x3f\x38\xce\xfb\x38\xe5\xff\xa1\x3a\xba\x32\x77\x0e\xba\x23\x78\x27\xea\xa9\xea\x6c\x5c\x01\x5f\xda\x40\xf0\x1e\x3d\x45\x4a\x2b\x1b\xaf\xdb\xc4\xd8\x1d\xec\x1f\x7b\x37\xdc\xa4\x4d\x79\x2b\xe0\x11\xd9\x35\xb2\xbf\x46\x01\x87\xb3\x5b\x90\x20\xcd\x49\xd8\x36\xe3\x23\xe2\x44\x95\xd3\x86\xe3\xb8\xfb\xda\xc4\xbc\x70\x13\x55\x56\x24\xdb\x0f\xcd\x9a\xd2\x06\x07\xde\xce\xff\xa2\x70\xf7\x7f\xac\xf9\xdb\xa6\x40\xf0\x4b\x2a\x95\x3b\x45\xdd\x51\xa2\xb3\x92\x6c\xc9\x14\xbb\xa4\x1d\xd3\xaf\x08\x17\xf0\x41\xa3\x66\x23\x14\xcf\xd7\x76\x2d\xf9\x83\xc7\x10\xad\x4c\x3d\x23\x17\xfd\x99\xc8\x0c\xaf\x85\xe7\xe4\x35\x7a\x86\xe3\xf8\x35\x7a\xe6\x36\x56\x0f\x16\xe6\x24\x0f\x86\x8f\x6d\x33\xfd\x7c\xdc\xc8\x87\x14\x36\xa1\x86\x7e\x25\xdd\xcf\x71\xfc\x2f\x12\x9a\x8f\x28\x9a\xb1\xcb\x08\x43\x94\x46\xdf\x22\x38\xfd\x54\xd3\x9b\x4f\x7f\x49\x55\x7e\xd7\x54\xe5\xf3\xf8\xd3\xee\x01\x16\x45\xbe\x68\xed\x86\x92\x47\x88\x9a\x9d\xe9\x5f\x71\x45\x3a\x3b\x9f\x2c\x68\x2a\xcb\x06\x9b\xa3\xaf\x26\xcd\x4f\xd5\x2b\xd4\x3d\xee\xcf\x2b\x30\x9a\x28\x40\xb8\x28\xe0\x65\x73\x75\x59\x4c\x6d\x4e\xac\x45\x05\xa4\x70\x2f\x6a\x39\x25\x1f\xac\xaf\xdf\xda\x41\x05\x7f\xd8\xa1\xfd\xb6\x73\x60\x82\xcd\xd1\xcb\xfa\xd0\x5e\x22\xde\x18\xdf\x6f\x2e\x73\x7d\x84\xd1\x19\x55\x11\xe3\x1d\xbe\xdd\x46\xb9\x7b\xdc\x25\x0a\xfb\x59\x46\xf3\x5c\x48\xdb\xe9\x7c\xbd\x5a\x09\xa9\xe8\xac\xec\x74\x64\x11\x52\x17\xd6\xea\xa9\xd9\x1e\xb2\x8b\x07\x83\x2a\x0a\x50\x8a\x7c\x1e\xdf\xe2\x5a\xf3\x47\x7f\x6e\x52\x5e\xa1\x21\x70\x8c\x8b\x5b\x4f\x83\x94\x67\x1b\xa8\x6a\x7a\xa7\xcb\x9b\x8d\x52\xe8\x02\x82\x19\xe4\x78\x73\x61\xfd\xd4\xbd\x29\xab\x00\xae\xc8\xc5\x24\x3a\x39\xc9\x84\xa4\x7b\x9f\xf3\x93\xfc\x3c\x95\x74\x76\x72\x12\x4d\xb7\x5b\xaa\x50\xdb\x17\xd8\x14\x18\xa4\x22\x9e\x17\x97\x2b\x7a\x54\xad\xf8\x52\xe2\xe1\xaa\xcf\x78\xbe\xa2\x99\x3a\x12\x6b\x99\x19\x63\x79\x23\xa9\x6d\x3d\x49\xe5\xa9\x42\xe1\x9c\x19\x14\x30\x05\xa9\x82\x4c\x91\x66\x05\x90\x2b\x72\xd1\xff\x9d\xa6\x17\xaf\xd3\x15\xac\x55\x9b\x57\x5c\xae\xe2\xf8\x2e\x4f\x0d\xa9\xc8\xc4\x8c\xde\xed\x2b\x9a\x2b\x94\x29\x94\x2b\x8c\x61\xa1\x9a\x91\xbf\xaa\x63\x30\xed\xb4\x83\xab\x89\x9a\x6e\xb7\xc8\xfc\x92\xd2\xfb\x88\x8e\x69\xb2\x29\x70\x81\x51\xe4\xbc\x10\xf3\x08\x26\x53\xb7\x55\xb5\x71\x69\x49\x74\xbf\xff\x53\xff\x7e\x04\x4b\x31\xa3\x49\x64\x65\xab\x08\x32\xb1\xba\x91\xec\xec\x5c\x25\xd1\xff\xfd\x7f\x59\x0f\xc8\x27\x94\xb3\xbc\xf3\x6e\x9d\x9f\x5f\xa4\x92\x5e\x76\xd0\xd7\x85\x60\x52\x64\x17\x7d\xb9\xc6\x91\x71\x97\x80\xb9\x22\x03\x98\x29\x23\xcc\xf5\x65\xca\x67\x62\x89\x30\xac\xda\x5c\xa8\x23\x1b\x78\x0c\x45\x3d\xb7\xf2\x2a\xdf\xc5\x71\x14\x25\x7a\x1d\xe2\x93\xa8\x87\x7a\xbd\xb9\xea\xcd\x14\x2e\xe7\x16\xdd\x7f\x80\x0b\x38\x57\x64\xa1\x50\xa4\xc5\xe6\x08\xc3\xb2\xd5\x49\xfb\xdc\x01\xc6\xfc\x92\x95\xb2\x1c\xf0\x52\x91\x4d\x01\x67\xc1\x44\x69\x36\xb1\x76\xd2\xcc\x8d\x99\x54\xa3\xf5\x1b\x90\xba\x83\x20\x9c\x5e\x75\xce\x14\x86\x53\x45\x6e\x0c\x79\x83\x2b\xf3\x74\x9e\xe6\xb0\x6f\x9e\x72\xaa\x46\xa2\x89\xfb\xa5\xa1\x76\x9e\x66\xe9\x8c\x12\x05\xfb\x0e\x9d\x6e\x94\x59\x0f\x40\x0b\x60\xad\x9d\x3f\x0d\x32\xba\xb3\x26\x69\x6b\xc6\xab\x30\x63\x51\x94\xde\xa3\xd7\x8a\x2c\x15\x8a\xac\x3b\x18\x1e\x5d\xaa\xc9\xb5\x9a\x92\xee\x00\xfe\x46\x2f\x95\x42\x0a\xae\xbf\xdd\xc1\xaf\x26\x0b\x1e\x9b\x7a\x93\xdb\xfb\xe7\xf2\x15\x46\x0b\x38\x50\xf0\x56\x91\x4d\x4e\x55\x22\xcc\x66\x67\xc2\x14\x9c\xa7\x79\x92\x2a\xa0\x7c\x2e\x64\x46\x93\x96\x3a\x52\x3d\x77\x63\x66\x78\x99\xd0\x7d\xd3\x88\xed\xf6\x4a\x9f\x0a\xd9\x56\xa4\xa9\x06\x9b\x03\x73\xdd\xd7\x88\x62\x3d\xaf\x84\x19\x25\xd0\xec\xb8\x74\x5b\x45\xad\x17\x3c\x13\xcb\x55\xaa\xd8\xe9\x82\x76\x24\xcd\x28\xbb\xa4\x12\xb4\xb0\xd5\x8b\x3a\x92\x7e\x59\x33\x19\xd0\xd8\x0e\x2f\x8a\x02\x8e\x76\xd6\xae\x8b\xd1\x67\x51\x86\xeb\x07\x37\x4a\x90\xc4\xa1\xb3\x93\x41\xbc\x8b\xb0\x93\x1c\xf1\xe8\x96\x65\xef\x82\x27\xa4\xb2\x93\x42\x46\xba\xc6\xab\xa5\xcb\xfa\x6b\x9e\xa7\x73\x0a\x79\x95\x52\x09\xd6\xb0\xae\x52\xb9\x38\x4e\xe5\x19\x55\xcf\xa8\x1a\xb5\x69\xd5\x71\x8c\x76\x75\xc5\xed\xf6\x2b\x12\x10\xf1\x74\x49\x23\xbc\xdd\x2a\x55\xbe\x69\x0c\x41\x29\xe1\x48\x60\xdc\xcf\x0d\x0d\xdc\x6e\x51\xea\x1e\x89\xec\x7f\x16\x8c\xa3\x1d\x3b\xa9\xa6\x4d\x51\x84\x31\x06\xd5\x25\xe4\x62\x8c\xb2\x71\x77\x1d\xc7\x9a\x8b\xc4\x31\xca\x49\x77\x80\x13\x7f\x38\x69\x42\xa7\x90\x8f\x0d\x83\x11\x89\x41\x4c\x0a\x02\xe3\xa4\x4c\xa3\xca\xb8\xd3\x17\x18\x95\x7c\xa0\x32\x4b\x46\x9e\x6c\x44\xb0\x2b\xf7\xb4\x09\xb7\x46\xc5\xa4\xd6\x12\x5c\x8e\x48\xcb\xeb\xc6\x34\x6c\xb7\x0a\x4f\x14\xb9\x80\xc7\xad\x54\xad\x6d\xaf\x43\xb9\x03\x76\x05\x5c\xdc\xb2\xf4\x9a\x46\x97\x87\xf7\xc6\x8f\x15\x3a\xd1\x74\x4b\xeb\xa7\x0a\x69\x6e\x89\x13\x93\x10\xc7\xe6\xc7\x78\x22\x5c\x98\xf7\x0b\xfb\x5a\xc0\x3b\x47\x79\x33\xca\x16\xf0\xd9\xbd\xcc\x17\x42\x48\x38\x6c\x5d\x9b\x2e\xce\x0c\xe9\x29\x3c\x1e\x24\x48\xfd\x32\x18\x7f\x56\xc9\x3b\x85\x8d\x8d\xfa\x85\xab\x61\xc9\x38\x1c\xb7\x1f\x83\xf9\x65\x30\x7e\xa1\xd0\xa1\xd9\x28\xf8\x79\x30\xf8\x71\xf8\xf3\xcf\xf7\x7e\xf8\xfe\xc7\xef\x07\x3f\xff\x3c\xc4\xc9\xa0\x80\x57\xbe\x8e\xf4\x1a\xee\x04\xf5\x3d\x69\x42\xc2\x1a\xb5\x4c\x4d\xe5\x9a\x7a\x38\x18\xbf\x52\x88\xf7\x28\x0c\x70\x72\x47\x21\xe3\xa8\x08\x6f\x5a\xbb\x12\x5a\x3d\xca\xa0\x8d\xc0\xc8\x17\x64\xc2\x2f\x1e\x2b\xc4\x7c\x38\x1d\xc8\xc8\x13\x65\xc2\x97\x19\x53\x55\x1c\xf3\x2e\xe1\x2e\x84\x46\xfa\x4b\x66\x42\xe8\x20\x41\xd8\x24\xeb\xf5\xa6\xb8\x4b\x04\x2e\x75\x75\x73\x44\xbf\xcc\x98\xf5\x7a\x26\xaf\xda\x6e\xb3\x0e\xe3\x1d\x86\xe3\x98\x4d\xb2\xa9\x09\xbc\xe5\x41\xb4\xdd\x66\xdb\xed\xc0\xab\xc6\x2a\x8e\xf7\x86\x45\x01\xef\x15\xd9\x30\x9e\x2d\xd6\x33\x9a\x27\x6f\x4c\x50\x21\x70\x7e\xa7\xe6\x55\x2b\xa8\x4f\x15\x79\xaf\xbc\x37\x2a\x7c\x69\x85\x18\x48\x2b\x37\x0b\x32\x00\xe6\x23\x88\x98\xe8\x21\x12\x77\xbf\xa2\x4b\x05\x1c\xc7\xf1\x57\x24\xcd\x2f\x2b\xe3\x89\xd4\xe2\x85\xfc\x22\x46\xd8\x64\x21\x74\x22\xf4\x98\xe3\x18\xfd\x9f\x4f\x15\x62\xc0\xf1\x76\x5b\x16\xaa\xe2\x56\x16\xf0\x5a\x91\x49\x14\x84\x00\x89\x20\xaa\x6b\x3a\x11\x44\x2c\x0f\x42\xd9\x44\x10\xb5\xa9\xd0\x91\x5e\xa1\xc6\x3b\x89\xfa\x75\x1a\x2c\xd9\xc8\xe9\x78\xd1\x14\x1e\x29\xf2\xba\x3c\x25\x13\xd9\x7e\xdb\x3a\x6d\x0b\x11\x86\x0f\x4a\x8b\xe0\xad\x2a\x88\xb1\x48\x05\xf6\x9c\x0a\x6f\xbe\x68\x8a\xf2\x48\xf3\x27\xf8\x7a\x7b\x79\x2b\xac\xe4\x05\x3c\x53\xe4\x42\xa1\xe8\x90\xce\x17\x5a\x31\x80\x48\x5c\xf1\x97\x46\x08\xa9\xd7\x6e\x09\xff\x07\xd5\xb7\xc2\x3f\x06\x4e\xbe\xaa\xfe\xbc\x44\xed\x71\x79\xf8\x49\x67\xc7\x09\x2d\xe0\x79\x73\x82\xcb\x60\x30\xe4\x99\xe6\x56\x20\xc9\x1f\xfd\x39\x08\xf2\x7b\x7f\x0e\x8c\x0c\x46\xec\xa1\x77\x57\x1c\xb1\x5e\xaf\x8c\xba\x39\x61\xd3\x91\x66\xba\x29\xde\x6e\xa5\xf1\xd5\x12\x88\x42\x6a\xf6\x80\x3f\x2a\x72\xf7\xdf\xb7\x7f\x56\x04\xf2\xcf\xfe\x5d\xf8\xb5\x7d\x2d\xfe\xae\x26\x9f\xf4\x72\x9c\x96\x9d\x26\xe4\x37\xb5\xdd\xf2\x2e\x79\xa9\x34\x9f\xd8\xa5\x75\x74\xfc\x0e\x51\x9c\x74\xbb\x7a\x9d\x7e\x52\xe4\x57\xd5\xb7\x87\xfd\xd9\xd7\x56\xe1\xba\x54\xba\xfc\xfe\x2a\xfa\xa8\x20\xea\x47\x5a\xda\x7b\x25\xae\xa8\x7c\x9c\xe6\x14\xe1\x02\x7e\x37\x75\xcd\x52\x95\x6a\xe1\xed\xa5\x79\x7b\xb3\x7f\xfc\xe2\xc3\x01\x89\xde\x44\xf0\x9b\x49\x78\xf7\xf6\xd5\xa7\xa7\x2f\x5e\xbd\x22\xd1\xbb\x08\xfe\xd0\x49\xa0\xa8\x81\x16\x6d\xee\x73\xbb\xb5\x03\x2e\x64\x21\x51\x7d\x65\xd8\x22\x98\x33\x9b\x46\x08\x86\xb5\xf3\xa0\x36\xa7\xf1\x49\x3e\xbe\x48\xd6\xe3\x8b\x49\x66\xd5\x91\x4c\x8b\x20\x09\xb2\xef\x9b\x02\x07\xe1\x92\xf4\xb4\x99\x68\x3b\x56\xb1\x65\x84\x4e\xe4\x14\x04\x51\x21\xf3\x1d\xa3\x94\x98\x6d\x48\x89\x71\x1c\xa7\x2e\x1c\x11\xd7\x39\xbb\x7f\x28\x94\x8f\x65\x92\xf5\xd0\x7a\x1c\xf5\xa3\x24\xfa\xf7\x08\xf7\xa4\x0d\x4a\x96\xd1\x19\x8e\xe3\xea\xc0\xb6\xd5\x9d\x2d\xf4\x59\xc5\xc6\xab\x80\xa0\xcf\xf5\x32\x16\xb8\x40\xaa\x9f\x9f\xa7\xcb\xed\x56\xc4\xb1\x30\x8f\x38\x8e\x95\xfe\x18\xe9\x97\xc8\x28\xa6\x47\xca\xb8\x7a\x32\x23\x49\x02\xa7\x4d\xd5\xb9\x45\xad\xda\x15\x9d\xda\x34\xe9\x92\x3c\xd7\x54\x69\xb9\xbb\xc3\xad\x61\x6d\xb6\x39\x4b\x75\x80\x56\x46\xa5\xfc\x8a\x39\xed\x31\x4b\x73\xda\x19\x24\xb7\x7b\x86\xbb\x60\xa3\xb8\x18\x99\xac\xc3\x9d\xac\x7c\x27\xaf\x56\xbf\x6d\xee\x7b\xbb\xb9\x83\xe0\x38\x55\x7e\x90\xbe\xc4\xfd\xb6\x12\xe6\x8c\xdf\x6e\x19\x3d\x1b\xc5\x37\x7a\x6e\x77\x2e\x28\x94\x42\x81\x9e\x0b\xd1\xba\x7e\x9c\x2d\xd1\xd9\xf6\x18\x25\xb5\x8d\x88\x36\x7a\x17\x99\x2f\xce\x30\x59\x40\x4a\x49\xb7\xfb\x2d\x8a\x77\x8b\xc5\xa8\xeb\x85\x57\xab\xc4\x59\xb1\x28\xa3\x24\xa5\x71\xdc\xb5\x89\x06\xc7\xe2\x38\xca\xcd\x5b\x33\xee\x74\x15\xa9\x31\xa7\x46\x93\xbb\xba\xd0\x8a\xdc\x9a\x92\x8b\xbe\xcd\x01\x0b\x4a\x32\x3a\x5e\xd3\x64\x4d\xe3\x78\x4d\xfb\x2e\x72\xcd\x91\x91\xfa\xb7\xdb\x95\x82\x79\x2b\x50\xbe\xa2\x9c\x1a\x9d\x09\xe9\xde\x7c\x45\x6b\xfd\x36\xce\xa9\x56\x02\xd7\xfa\x7f\x62\x9f\x17\x14\x39\x25\xb4\x1f\xf5\x34\x89\x36\xc9\x05\xcc\x28\x99\x53\x14\x69\xb5\x9e\x51\xdd\xa9\x55\x2b\xf5\x28\x99\x21\x35\x1e\x78\x2d\x6b\xc3\x18\x19\x03\x1e\x89\x0d\xed\xb4\x73\x14\xc7\x5d\x46\x51\x20\xa9\xe2\xf1\x6b\xa4\x59\xb4\xb5\xfd\x12\xc4\x09\x9f\xcc\xa8\x61\xc5\xdc\xc7\xc5\x48\xca\x27\xe0\xf4\x2a\x88\xf2\x69\x37\xa0\x12\x8e\x91\x59\x31\xe3\x41\xa2\x09\xf0\x39\x25\x93\xa9\x61\xde\xb0\x6c\xf3\xc2\x18\x12\xa2\x95\x92\x7b\xfa\x47\x92\xfb\xfa\x47\x90\xef\xf5\x0f\x23\x0f\xf4\x4f\x4a\x7e\xd4\x3f\x19\xf9\xc1\xc4\xc9\x61\x3b\xf1\xa7\x73\x58\xc3\x02\xe6\x15\xab\x9a\xc1\x0a\xce\x89\xa0\x28\xc7\xb0\x24\xef\xd1\x39\x86\x4b\x22\x29\xd2\xd9\xee\x63\x38\xd3\x72\xd8\xb2\x94\xc3\x6e\xc8\x00\x4e\xc9\x7c\xbb\x5d\x51\xb8\x22\x74\x7c\x8a\x72\x38\xc3\x09\xdf\x6e\x53\xf3\x3c\xc0\x4e\x72\x1e\x9d\xfd\x72\x33\xba\x71\xd2\x56\xb6\xdd\xde\x68\xf2\xaa\x09\x18\x5a\x91\x4b\x34\x23\xcb\xc9\xcd\x14\x6e\xe0\x1c\x83\xc2\xd8\x04\x5f\xbc\x9a\xdc\x4c\xc9\xaa\x0c\x0c\xbd\xc2\x8e\x76\x28\x47\x3b\xfc\x82\xed\x0e\xec\x02\xfe\xc1\x2f\xe0\x99\x7d\x7f\xe0\xdf\x6f\x3c\x49\x38\x77\xc7\x24\xaf\x60\xe6\x42\x35\x35\xaa\xfc\xde\x57\x39\xb4\x45\x7e\xac\x17\xf1\xe8\x32\xde\x1b\x26\x72\xbb\x15\x63\x91\x5c\x15\x05\x5c\x52\xb2\x71\x7b\xb7\xc9\x92\xa2\x01\x86\x65\xba\xd2\x4f\x43\x0c\xd6\x45\x4c\xbf\xdc\xc3\x90\x8b\x25\xd5\x8f\xf7\x31\xd0\x4b\x2a\x6f\xf4\xf3\xf7\x3a\x0f\x9f\xe9\xc7\x1f\xec\xe3\x0b\x2d\x2d\xea\xf7\x07\xbe\xf8\xdb\xb5\xd2\xef\x3f\x1a\x85\x99\x04\xdb\x8d\xb7\x8b\x43\xaf\x35\x69\xb8\xa1\xe4\x73\x6b\x08\x14\x46\xf3\x86\xf9\x56\x4b\x38\x55\xe8\x3a\x90\xe4\x8c\x22\xe7\xd2\xe8\x8e\x78\x68\x71\x45\xfc\xc2\x46\xd8\x1a\x14\x39\x91\x13\xd6\xeb\x4d\x81\x4e\xf8\x34\xe4\x08\xa7\xd4\x88\x57\xde\xfa\x1d\x41\xf9\xe8\xac\xd9\x11\x86\x2b\x6a\x0c\x1b\x2f\x0e\x4e\xde\x1d\xbe\x3d\x7e\x1b\x61\xd8\xa7\xe1\x86\x76\x01\xd7\xad\xce\x3a\x0f\xad\x15\xfa\x17\xa3\xc2\x3f\xfc\xf3\xae\x7f\x2d\xe0\xa0\x56\x5e\xc9\x9b\xcd\x81\x22\xbe\xe1\xfe\x4c\x2c\x53\xc6\xe3\x98\xd3\xab\xce\x7e\xa6\xd8\x25\xfd\xe8\x37\x86\xce\xd5\x72\x31\x67\x0b\x1a\x35\xdd\x1f\x15\xd0\xd1\x01\x25\x07\xaa\xb6\x39\xa4\xfa\x57\x92\x29\x8a\xae\x29\x8a\x6c\xb4\xc6\x6c\x21\xb4\x80\x33\x2a\x8f\xfb\x9a\xe3\xae\xbf\xdb\xd3\xad\xb6\x95\x12\x3a\x36\xfe\x1d\x2d\xd0\x81\xc2\x09\x42\x94\x7c\x44\x11\x9b\x4b\xa3\x94\xe3\x7e\xae\x6e\x16\x65\x30\x4a\x12\x71\xc1\x69\x04\xa7\x54\x73\x13\xca\x67\x3e\x16\x01\xd0\x7e\x2e\x33\x6f\x7a\x88\x3e\xa7\x97\xa9\x05\x43\x12\x61\x40\x8a\x50\xbb\x03\x5f\x76\xc1\x03\x01\xf7\xc5\x8a\x72\xa4\xbb\x5c\x0d\xa1\x84\xd0\x53\x87\x56\xb5\x31\x81\xea\x3f\x0d\xb0\x42\x4b\xef\xa1\x47\x81\x53\xef\x0f\x82\x98\xfa\x93\xd7\x6a\xc2\xa7\xa5\xb8\x79\xa0\x25\xbf\xd1\xa5\x9a\x5c\xd1\xa9\x8f\x9f\xf7\xb6\x71\xc8\x2c\xc4\xe1\x1d\xca\xec\x37\xb1\xc6\x68\x3f\x68\x85\x18\x63\x3c\x37\x26\xbd\x7d\x0a\xb5\x4f\x06\xc2\xdc\x34\xa8\x34\xb5\xd5\x5d\x08\x24\x91\x31\x4f\x6e\xa8\xd3\x42\x8f\x2c\x97\x58\xf3\x3c\x13\x2b\xad\xc9\x68\x4e\x71\xe2\x39\x70\x59\xe5\xc8\xd2\xf3\x13\x3a\x39\xa2\xd3\x38\xd6\xe8\x7f\x42\xe1\x88\x42\xf3\x64\xa3\xdb\xd2\x7c\xeb\xce\xcd\x39\x63\xf3\xe3\x3a\x26\xdb\x6a\x26\xc6\x8e\x57\xc0\x05\xbd\x65\x2b\xe2\x1d\xd5\x52\xf2\xe7\xa6\x3f\x99\x71\xd5\x2f\xe0\xb0\xc9\xce\xcc\x5e\xca\x3b\x1a\x78\xa8\xbc\xd3\x9c\x70\x44\xb7\x5b\xa4\x6b\xf2\x07\x0a\x27\xba\x65\x90\xa4\xdb\xfd\x8a\x28\x44\xfb\x8f\x1f\x1f\x1c\x1d\xbd\x3d\x3c\x8a\x70\x1c\xd3\x7e\xf9\x0a\x82\xe8\xef\x03\x3c\xa6\x93\xc1\x34\xf9\x4c\x81\x99\x84\xa1\x4e\x18\x4e\x3d\x49\x0f\x9b\x22\xdd\x2e\xdf\x91\x34\xd8\x1c\xc9\x38\xee\x7e\x2e\xb5\x6f\x17\x41\x71\x63\xd1\x28\xd9\x1b\x16\x23\x39\xbe\xa0\x48\xc1\x10\x36\xf5\x48\x4c\x67\x54\x25\x9f\xa9\x09\xba\x34\x9c\x92\x21\x94\x87\x30\x04\x30\x1b\x5c\xe1\x05\x25\x97\x26\x44\xf1\x0c\x8e\x4d\xac\xcb\x57\x94\x1c\x52\x14\xe9\x94\x08\x8f\xec\x2f\xe3\x93\x69\x1c\x5b\xaf\x8e\x21\x36\xb9\x6b\x5d\xd4\x25\x87\x5a\xf4\xa1\x14\x6d\xac\x06\x91\x38\x09\x0b\x0c\x0a\xe8\xbe\x58\xa9\x3d\x39\xa6\xdb\x6d\xf7\x15\x2d\x60\x63\x48\x76\x0b\xed\x7d\x41\xdd\x46\x3a\x34\xed\x41\xbf\x0c\xc7\x95\xf3\x4d\x09\x42\x5c\x14\x18\x1e\x57\x7d\xd6\xe0\xb9\x43\x09\xaf\x3c\x5a\x9e\xd0\xea\xdc\x9d\xd6\x74\x2c\x71\xb3\x27\xe0\xd4\x84\x4d\x51\x8a\x21\x27\x99\xd5\x3e\x9a\xae\x09\x1d\xd3\x8a\xee\x60\x91\xd9\xa8\xa9\x9a\xad\x27\xcd\xa3\x22\xb9\x8b\xb6\x6a\xe4\x5a\x5d\xf5\x9b\x56\xa9\xac\xd5\x85\x2f\xf4\x37\xfa\xb6\xbb\x77\x70\x1c\xad\x92\x90\x39\xae\x05\xa3\xc2\x9b\x27\x14\x31\x33\xd6\x14\x32\xf0\xf1\xf5\x9a\x91\xa6\xea\x99\x7c\x6c\x76\x5c\xa4\xc8\x83\xd5\xa8\xca\xef\x69\xc3\x29\xe0\x4c\xf3\xe4\x02\xe3\x51\x38\xd9\x8e\xf0\x99\x53\x3a\xc1\x64\xbf\xd7\xf3\xac\x99\x6c\xdb\x3c\x9f\x51\x24\xa8\x11\xd9\xdd\xd2\x7a\x7a\x8b\x1b\x76\x8b\x97\x96\xa3\x5b\x06\x23\x9b\x58\x82\x41\x92\xc1\x48\x56\x56\x01\xd9\xeb\x61\xe3\xee\x55\x21\x8f\x9c\x8e\x76\x14\x0d\xae\x87\xfb\x65\xf7\x2a\x99\x6a\x3b\xad\x04\xe0\x6b\x1a\x30\x54\x1f\xdd\xd6\xf4\x66\x1a\x11\x42\xbe\x94\xc1\xae\x2b\x98\x3f\xa2\x4d\x94\x32\x9b\x3c\x55\x86\x0f\xf4\xef\xc6\xff\x2a\x8b\x7c\xa5\x5e\x21\xf5\x7d\xb0\x7d\x9f\x46\xdd\xb0\x13\xb8\x14\xc8\x2e\xc3\xbb\x72\xce\x1a\x31\x96\x71\xc8\x30\x34\x9d\xdf\x6e\x29\x21\x3b\xe0\xa8\x9a\x7f\xd6\x06\x05\x6f\x7c\xbe\x15\x10\xcf\x69\x49\x6e\xed\x28\x95\x16\x55\xfd\x30\xbb\x2d\x3e\xc4\x06\xda\xb8\x9a\xfa\x01\x48\x52\x71\xd1\x87\x72\xc4\x7b\x3d\xec\x5a\xb2\xc1\x71\x4d\x74\x35\x50\x36\x88\x48\xa7\x16\x93\x47\xe1\x9d\xf9\xad\x5b\xec\x4a\x12\x69\xc8\x79\x58\xa9\x98\x82\xd0\x2b\x44\xd7\xf5\x91\x92\x8d\xd3\x2f\x93\xd7\x14\xdc\xe3\xa3\xf5\x7c\x4e\xdb\xf6\x61\xea\x48\x62\xb3\x35\x21\x04\x2c\xbf\xb5\x7c\x80\x10\xdd\x47\x56\xd3\xf2\x29\xa1\x6a\xe5\xbe\xd6\xb4\xad\xd6\x33\x6f\xb5\x2c\x7d\xdf\x70\x23\xfe\x77\x99\xee\x7a\xf7\x54\xc8\xe5\x93\x54\xa5\x6d\xe3\x6b\x89\x40\xe3\xb3\xc7\xb1\x0a\xaf\x09\xf2\xc9\x45\x1d\x68\x1f\x18\xbd\xfa\x9b\x15\x07\xa5\x1c\x57\xb2\x2f\x7d\x96\xeb\x5a\xc6\xbb\x49\x48\xe1\xc4\x38\xd9\x9d\x96\xe3\xb4\x4f\x61\xc7\x82\x62\xba\x6f\x76\xcd\xb7\x75\x69\xc7\xdd\x5d\x67\xb7\xb1\x6e\xda\xb2\x73\xf3\xa5\x91\xdd\x22\x61\xf2\x41\xa3\xce\xbb\x45\xca\xb8\x4b\xf8\xaa\x13\xde\xfb\x31\x27\x8f\xf4\xeb\x93\x54\xb5\x6d\x07\x96\x38\xa5\xbf\xb7\x20\xd3\x53\xb6\xf8\x66\x31\xfd\xbd\x0d\x07\x17\xe2\xf4\x5b\xc5\xf4\xf7\xb6\xd6\x5c\x89\xe4\x19\xb5\xc0\xa3\xe9\xb2\x0d\x91\x3f\x58\xec\xd5\xb4\xa3\xbf\x62\x2b\x6a\x0a\xbf\x3f\x7c\x75\x44\x53\x99\x9d\xbf\x4b\x65\xba\x6c\xe3\x16\x6d\x78\xd0\x28\xd5\xc0\xb3\xc6\x57\x3b\xa5\x29\x9f\xa5\x72\xf6\x48\x8a\xab\x9c\xca\x03\x7e\xb9\xeb\xc7\x13\xc6\x89\xac\x82\x1d\xa6\x97\xec\xcc\x5d\xf8\x75\x48\xd3\x4c\xbd\x31\x8e\x0b\x9a\xcc\x96\x9f\x34\x41\x99\xad\x33\x4d\xb2\xed\xd7\x23\xa3\x51\xdc\x9a\xe7\xa8\xf5\x8b\x31\xa1\x7c\x23\x9c\x53\xdb\xb7\x52\x3b\x29\xc0\xab\xd0\xcf\x29\x2c\xa9\x3c\xab\xe6\xbf\xa3\x4a\x89\x23\xbc\x40\xc8\x99\xf4\xbe\x52\x44\x27\x72\x8a\xe3\xf8\x2b\x45\x5c\x0b\xa8\x72\x4a\x94\x49\x03\x8e\x93\x5a\xe2\xa6\xd0\x49\xaf\xab\x24\x1f\x3f\x00\x27\xf6\xb5\xa8\xc2\x1e\x0f\x40\xec\x7a\x52\xcb\x87\xc2\xb0\xe4\xe7\x14\x85\x0c\x19\x82\xf0\xee\x05\xd0\x6b\x45\xf9\xad\x51\x57\x9f\x53\x44\x6b\x11\x33\x24\xde\x28\xd3\x78\x2b\xb5\xa3\xe3\xa7\x14\xd9\x13\x08\xe6\x88\x63\x01\x4a\xb2\x56\xec\x2c\x23\xc4\xa0\xbb\xff\xf9\x67\xfe\xdd\x5d\x88\xa2\xca\x28\x7f\xf7\xcf\xfc\xbb\x3b\x77\x6d\xc8\x38\x4d\x03\x56\x8f\xde\xbe\x6e\xab\xe4\xc1\x0f\xf7\x7e\xfc\xd9\x44\x51\xcb\xce\x53\xf9\x58\xcc\xa8\x0b\xa7\x8e\x14\x51\x55\xe4\x74\x50\x61\x18\x97\x5f\x43\xf6\x4f\x79\x26\x66\xf4\xfd\xe1\x8b\xc7\x62\xb9\x12\xdc\xba\xaf\x55\xfd\xf8\xc7\xfd\xfd\xbb\x67\x0c\xa2\x24\xec\xdc\x3f\xee\x7d\x7f\xf7\x0c\xa2\x3b\xf5\xb4\xc7\x26\x23\xd4\x13\x07\x3a\x63\xaf\x96\xf6\xc3\x23\x93\x71\x52\x4f\x7c\x62\x12\xa7\x91\xe5\x79\x9f\x5a\xed\xd4\x5d\x5a\x77\x77\x34\xee\x86\x1c\x4b\xc2\x11\xc5\xa5\xe5\xe9\x23\xed\xef\x2c\x73\x44\x31\x96\xa4\x92\xaf\x50\x10\xf4\x4b\x90\xc9\x74\xf4\xb1\x0c\x97\x58\x9b\x6e\x23\x3e\x38\xd9\x21\x8e\x6d\xd5\xa5\xcb\x39\xed\x91\x68\x32\x8d\x12\x23\x3b\x40\x50\x83\xaa\x1f\x48\x34\xa5\x9e\xd8\xc3\x44\x63\x73\x4c\x58\xbc\x38\x7a\xeb\x3b\x92\x98\xcf\xa5\x8f\xaa\x99\xba\x5f\x8f\xde\xbe\xe9\x5b\xda\xcf\xe6\x37\x66\x37\x4b\xd8\x3d\xc1\x5f\x29\xa2\xb8\x17\x91\xa8\xf7\xab\x15\x68\xb1\xb5\x04\x4b\x22\xdc\xce\x7f\x1c\xe1\x42\x2b\x72\x95\xf0\xee\xa3\xeb\x44\xff\x1e\xe1\xd1\xde\xb0\x6b\x2f\x80\xa8\x10\x64\x00\xe6\xf0\x79\x8f\xa0\xbd\xa1\xc1\xa5\xb2\xc0\x38\xc2\xe3\x68\x1c\x25\xba\xd2\x9e\x2c\x23\x1c\x04\xb8\xf4\x3b\xf5\x41\xf7\xdd\x89\xfe\x9c\x4c\xa6\xc5\xef\x34\x3c\x9d\x96\xdf\x22\x6c\xd7\x8a\x39\x27\xa9\xf9\x7a\x31\x67\x8b\x05\x9d\x25\x0a\x24\xd5\x30\xa1\x33\xbd\x94\xa0\x9e\xd9\xbb\xcb\x17\x50\x6b\xca\x14\xd8\x3d\xd3\xe5\x8b\x99\xbd\x7b\xd4\x4c\xb2\xb1\xc5\x1b\x35\xb9\xa9\x24\x8d\x79\x2c\x67\x38\xac\xa3\x1e\xf9\xc9\x09\x4b\x34\x8e\x5d\x7c\x2a\x1b\x68\xef\x25\x25\xbf\x53\xf8\x6d\x17\xaf\x1d\x30\x82\xca\x39\xd4\x22\xf9\x2a\x62\xc1\xe6\xe8\xc9\x1f\x6d\xca\x5e\xd7\x9c\x85\xe9\xaa\xfe\xc9\xc9\xe3\xfd\x37\x8f\x0f\x5e\x9d\x9c\xe0\x60\x96\x94\xbd\x1a\xa1\x11\x8e\x3a\xa7\xea\x98\x2d\xa9\x58\xab\xce\x79\x6a\xb7\x8d\x4e\x29\xe5\x1d\x4f\xf5\x03\x49\x9a\xb6\x56\x90\x2d\x68\x2a\xff\xa2\x0a\x23\x47\x73\xa2\x38\x48\x4e\x68\xa0\x29\x57\xbe\xd7\x9c\x10\x52\xf5\xc5\x2f\xf1\x2a\x05\x29\xb0\xc1\xfd\x6d\x56\xc5\xb7\xdb\x2e\xe7\x38\x8e\x77\x0b\x71\x1e\xd4\x04\xcd\x2a\x02\xf7\x4f\xce\x4d\x92\xd3\xc0\x69\x78\x6a\xa0\xc3\x79\x28\x8b\xd7\x72\x35\x72\x38\xe3\xc1\x00\x17\x45\xd1\x1a\xee\xa1\xea\x41\x1c\xa3\x5a\xe7\x30\xb4\x16\x08\x41\x1a\xc7\x48\x72\x12\xa6\xb8\x08\xf8\x1c\x32\x4e\x26\x53\xc8\x39\xe9\x0e\x61\xcd\xc9\xde\xb0\x82\xeb\xc2\x1c\xbe\xe7\x71\x9c\xf2\x38\x46\x36\x4b\xea\x15\xd4\x71\xc6\x49\x5a\x46\x4b\xc8\x38\x4e\x4c\x69\xc8\x7c\x86\x38\x9e\x73\x14\x46\x4f\x98\xfb\xb3\x56\x39\xf7\xa1\x09\x05\x47\x0b\x8e\x47\xba\xea\xc1\xa8\x3a\xcc\x54\xd6\x31\xa2\x23\xab\x3e\xa7\x9c\x64\xae\xaf\xa3\x5e\x6f\xcd\x1f\xd2\x11\x4e\x4d\xcf\x26\x6b\x3e\xed\xcb\x35\x47\x78\x64\x3b\x10\x14\x2f\x52\x6e\xcd\x82\xb6\xef\x8d\x0d\x51\xa9\x51\xa0\x06\x13\x37\x27\x61\x9a\xbb\xfb\xc9\x66\xa6\x1a\x5f\xa4\xc6\x97\xb6\x62\x0d\x08\x43\xb3\x1a\x83\x17\xd6\x24\xd3\x82\x2a\xb2\x86\x2a\xbb\x88\x22\x79\x23\xd2\x63\x81\x6a\xf1\x1e\x67\x61\x40\xe9\xf9\x9a\x13\xe5\xef\x56\x91\xe9\x0d\xa1\xc5\x8c\x87\x47\x95\xd7\xbc\x66\x35\x77\x65\x9c\x55\xa1\xba\xab\xc5\x14\x0e\x97\xff\x8a\x97\x17\x34\x72\xb2\xe2\xb0\x34\xff\x2f\xcd\xff\x33\xf3\xff\xc6\xfc\x3f\x35\xff\xaf\xf4\x7f\x83\x68\xfb\x9c\x88\xfe\x8a\xca\xb9\x90\x4b\x2d\xea\x6e\xb7\x9b\x02\xae\x39\xd9\xe7\x7d\x2e\xae\xb6\xdb\x7d\xde\x5f\x8a\xaf\x6f\xfc\x63\xee\x9f\x84\x7f\xb8\xa2\xa7\x17\x4c\x99\xb7\x5d\xe9\x57\x13\x12\xcd\x15\x71\xff\xcc\xae\x0a\xe4\x48\xe5\x81\x35\xb9\xe8\x6f\xd6\x04\xcd\xc9\xc6\x07\xc1\x4a\x76\x37\xd5\x6e\x37\xcf\xec\x0d\x0d\x1a\xec\xda\xf6\x02\x0d\x7f\x38\xe2\x0f\x77\x4f\xe0\x69\x2d\x7f\xc2\xf7\x86\x8d\x23\x78\x19\x77\x9e\x39\xf4\xca\x4f\x1d\x06\xcd\x50\x4b\xe4\xdd\x6e\x73\xbe\xdd\x0a\x8e\xe6\x26\x2c\x22\x53\x0b\x9a\x44\xa7\x56\x09\x88\xc0\x3d\x24\xdd\x01\x50\x7e\x99\x6c\x0a\x48\xe5\xd9\x65\x32\x99\x42\xe9\x1c\x1c\xf9\xc7\xdc\xdc\x10\xcc\x93\x73\x0e\xe9\x6c\xf6\x8a\xe5\x8a\x72\x2a\x93\x25\x07\xc1\x33\x9a\x5c\x72\x10\xf3\x79\x72\xc6\xc1\xc6\x90\x2d\x33\xdc\xf8\x94\xfd\xc5\xc2\x27\xe6\xc9\x29\x07\xba\x64\x2a\xb9\xe2\x70\xca\xf8\xac\xa9\x6e\xee\x90\xf6\x95\x14\x19\xcd\xf3\xbe\xcb\xec\xdd\x0a\x02\x5f\xf7\x02\xb2\xab\xd9\xae\x52\x13\xdd\x8d\x0a\xc8\xce\x67\x4c\xfe\xbd\x06\x4c\xd6\xd6\xea\xd7\xcb\x34\xbf\x68\x39\xfd\x30\x28\xe0\x5c\x2a\xb6\xa4\x2d\xb8\xd0\x1f\x0c\x86\xdf\x5d\xbb\x45\xb7\xcf\x31\xf0\xc0\x25\xcf\x7a\xf4\x84\xef\xff\x18\x7e\x37\xa4\x3f\x57\xdb\x61\x9a\x48\xef\x11\x35\x19\x4c\x01\xc9\x3d\x7b\xbf\x9e\x0d\x6c\xb8\xb7\x07\xb2\x47\x74\x66\x0c\x13\x0e\x72\x5a\xc0\x6a\x91\x2a\xbd\x32\x82\xf9\x95\x74\x41\xd3\x9c\xea\x99\xb3\x9b\x0d\xfa\x69\xbd\xaa\x77\x76\x67\x01\xec\x1d\x70\x7c\x77\x48\xef\x17\x05\x1c\x35\x63\x3a\xdc\x22\x55\x5a\xef\x08\x2b\x66\xc8\xbe\x12\xef\x57\x2b\xef\xba\x63\x2e\x56\xaa\xa5\x94\x67\x10\xa0\xf4\xf0\x94\x53\x6b\x93\x3f\xe1\x0d\x79\xa4\xe6\x43\xf1\x8d\x4f\xca\x85\xd4\x23\x14\xcc\x19\x87\xbe\xd6\x22\x08\xc7\xa0\xd5\x9a\x2f\x6b\x9a\x2b\x22\xcd\x73\xbe\x12\x3c\xa7\x44\x98\xdb\xe2\xf6\xaf\x99\xc8\x0d\x02\xd8\x08\x7e\x4a\x68\x49\x77\x37\x0e\xce\x66\x49\xf3\x3c\x3d\xa3\x89\xbb\xb5\xc2\xbc\x00\x4f\x97\x2e\x45\x3f\xc1\xcc\x1d\x72\xd1\xcb\xc6\xdd\x8d\x51\x26\x80\xb5\x84\xb8\xdc\xe6\x19\xe6\x6c\x41\xdf\x94\x55\xf8\x37\x58\x30\x4e\xdf\x04\xb9\xab\x77\xc8\xc4\x62\xbd\xe4\xe1\xc7\x30\x05\x72\x95\x66\x17\x89\x8f\xca\x90\x5d\xf8\x39\x77\x39\xf5\x33\x68\xb0\xf8\x84\x19\xb5\x97\x6c\x54\xab\x40\xe1\x12\xb0\x05\x3c\xe6\xc4\xa8\x02\xbb\xa6\x03\x84\xc7\x1b\xb3\x09\x98\xec\xce\x48\xe9\x9b\xac\x99\x6c\xea\xa2\x6c\x1a\x05\xa1\x45\xb3\xd3\xe4\xca\xb4\xe1\xc2\x25\x73\xe3\x09\x65\xca\x44\xf4\x7a\xc5\x24\xcd\x49\xd4\xf3\x78\x89\x38\xee\x2b\xf1\xec\xf5\xb1\x57\x55\x5c\x61\xf7\x2a\x83\xc2\xab\x54\x9d\x93\xa8\x27\xeb\x39\x44\x90\xc3\xee\xe9\x92\xa8\x27\x30\x74\xdd\x25\x74\xfe\x5b\x4e\xb3\xb5\xa4\x11\x86\x72\x7f\x33\x13\xe2\x82\x51\x92\x3a\x9d\x66\xd4\xd1\x04\x41\xd2\x74\xd6\xb2\xe6\x1b\x85\xfa\x4b\x7b\xe0\x85\x5e\x75\x0e\xe9\xd9\xc1\xf5\x0a\x45\xe8\x3f\xb7\xa3\x3f\xff\xcc\xbf\xc3\xc8\xec\x44\x63\x82\x26\xff\x39\x9a\x7e\x87\xa3\xca\xc1\x92\x8e\x67\x74\x17\x5c\x93\xfb\x53\x9c\x98\x48\x8c\x8e\xa6\x26\x3b\xba\x85\xdd\x9c\x55\x10\x45\xa0\x61\xa6\x19\x23\xc2\x7b\x3f\x3d\xf8\x9e\xfe\x80\x8b\x22\x69\xce\x1b\xde\x34\xc7\x51\xb3\xbb\xee\xb6\x83\x37\x45\x01\x17\x9c\x4c\xa2\xf4\x8c\x46\x10\xa5\x6b\x75\x2e\x24\xfb\xea\x02\xc4\x46\x6e\xf7\x78\xaf\xf4\xcf\xf4\x09\xc6\x45\x13\x22\xaa\xd2\x33\xfd\x63\x67\x37\x82\x68\x2e\xc5\x32\x82\xe8\x5c\xe4\x2a\x82\x88\xcd\xf7\x96\x62\xc6\xe6\x8c\xce\xf6\x72\xc6\x33\x6a\xd3\xd6\x7c\x27\x75\x91\xe6\xaa\xcc\xab\xdf\x45\xe6\xfb\xb0\x4c\xaf\xf7\xe6\x42\x5e\xa5\x72\x96\x5b\x0f\xd1\xeb\x9b\xbd\x66\x47\x25\x9d\x53\x49\xed\x4d\x31\x4a\xde\xec\x99\xc0\x3e\x11\x44\xeb\x9c\xca\xbd\xf4\x8c\x72\x15\x4d\xe1\xdd\xb7\xd6\x40\x63\x43\x4b\x01\x25\x77\xd1\x32\x67\x74\xab\x24\x9b\x51\xae\xf0\x5d\x66\x8f\xf6\x54\xb6\x2e\x5d\xfb\xfe\x99\x39\xbc\xc7\x03\x4c\xa9\x1d\xd7\x8b\xd2\x08\x87\xf7\xb2\x95\xf1\x2b\x4a\x4f\x00\x73\x74\x49\x0b\xf3\xfb\x4a\x49\x76\xba\x56\x14\x45\xe7\x92\xce\x23\x90\x9a\xa5\xf0\xbe\x7e\xc1\x70\x6b\x96\x8d\x7e\x4a\x6c\x36\xbb\x4d\x99\x89\x45\xe2\x64\xbb\x4c\x2c\xc6\xd5\x63\x65\x13\x49\xac\x01\x48\x8b\x04\x7a\xb2\x74\x71\x91\x6b\xa5\x26\x95\xd9\x79\xa2\xdb\xd2\x0f\x63\xff\x10\x9a\x93\xc6\x55\xc9\x34\xd7\x79\xf5\xcf\xd8\xfe\x04\xf9\xfe\xbd\xd6\x80\x21\xaf\xb6\x11\x43\x5f\x35\x27\xd6\x7d\x14\x52\x81\x5e\xdf\xe6\x7b\x74\xd7\xde\xc2\xee\x13\xaa\x2b\xfc\xc6\x55\xa2\xce\xd5\xab\x5e\x4b\xdf\x3b\x45\xa4\x8f\x23\xee\xb1\xc7\x41\x2e\x54\xa0\xad\x5c\x16\xd2\x11\x8a\xc7\x9a\x79\x27\x65\xac\xcd\x0a\x5c\xc6\x5e\xe1\x5f\xe2\xd8\x76\xdf\x24\xea\x87\xa2\x40\x78\x77\xa5\x75\x07\x05\x7c\xe6\xad\x21\xea\x5a\x77\x42\x6b\xb1\x79\x67\xa9\x4a\x8d\x6b\xe9\x39\x4d\x67\x54\xe6\x23\xd3\x51\xbf\xd3\x60\x88\xa2\xe3\xb2\x62\x12\x3d\x76\x6b\xf1\x58\xaf\xc5\xa9\xbb\x1e\x48\x37\xf2\xf1\xf5\xab\xe7\x4a\xad\x0e\x2d\xab\x34\x4e\xf1\x7d\xbd\x60\x3c\x2d\xb7\x6f\x06\x7b\xb9\xb9\xe6\x34\x8a\x8c\xcf\xac\x49\x5d\xa5\x79\x7e\x25\xe4\x6c\xbc\xe6\x34\xcf\xd2\x15\x45\x6d\x46\xbc\x7a\x5e\xac\xa7\x79\x24\xfa\xfb\xe1\xaa\x24\xd1\xa3\x34\x67\x59\x27\xea\x9d\x2a\x91\xa2\xb4\x17\x25\x51\x2f\xb3\x3a\xbb\x71\x34\x23\x28\x27\xaa\x7f\x9a\xe6\xf4\xfd\xe1\x2b\xe3\x9e\xbb\x96\x0b\xc8\xe3\xb8\x7b\xf7\x3f\xd1\x24\xdd\xfb\x3a\xd5\xff\xfe\x9c\xfd\xd9\xfb\x73\xef\xcf\xfe\xf4\xbb\x04\x8f\xff\xbc\xfb\xe7\x5d\xbf\x0c\xd7\x78\xdc\x6a\xf8\xa1\xe3\xc0\xf8\xf9\xe7\xdd\x9e\x45\xf4\x9e\xc6\x1a\x1a\xa2\xf1\xdd\x9e\x45\x50\x55\xa0\x1c\xd6\x38\x59\xbb\x7b\x06\x8d\x67\x8c\x72\xb7\x59\xd5\x65\x1d\xf8\x44\xd1\x02\x8c\x5b\x4f\xba\xcc\xcb\x87\x23\x2a\x99\xf1\x89\x96\xd8\xb8\xdd\xb2\xbe\xb2\x2a\x1e\x51\xfe\xc9\xc4\xf6\xd6\xa4\xf9\xc6\x1c\xe0\xca\xce\x53\x7e\x46\x1b\x01\x47\x58\x1c\x7f\x6f\x6e\x41\x34\xf9\x4c\x30\x9b\x38\x46\x83\xae\x4e\xd2\xa5\xd6\xf9\x76\xcb\x4a\xa1\xe7\xfd\xe1\xab\x38\x1e\xb8\xfc\x65\x52\x65\x5d\xd3\x22\x48\x12\xe1\xf2\xb2\xe1\xe8\x8c\xaa\xfd\xc5\xe2\xd0\xe5\x7d\x6e\x11\x2c\x62\xbc\xc3\x76\x63\x00\x58\xee\x1f\xc4\x24\x51\x63\x14\x0a\x8b\xfe\x74\xd3\x9f\x3c\x6a\xc4\x47\xd3\x4a\x74\x68\xe4\x4b\x22\x0c\x54\xaf\x37\x25\xd9\x12\xd9\xe0\xe2\x4a\x9a\xd0\xaa\x0d\xaf\x70\xe0\xbb\xd9\x64\x6f\x88\xb1\xdb\x64\x15\xe6\x34\xd1\x05\x2f\xeb\xa6\xf8\x17\x32\xf0\xd1\x46\xf4\x57\x12\xe5\x54\xed\x59\x46\x6d\xc2\xf2\x8e\x4d\xa1\xb1\xfe\x97\x4c\xa6\xd8\x5b\x26\x26\x7c\x8a\x93\xf2\x4b\x2f\x82\x4e\xd4\xe3\x09\x37\x21\x44\x04\x4e\x44\x81\x58\xbf\x15\x5a\x08\x5b\x86\x6d\xc2\xfd\xa6\x2a\x4d\x2a\x19\xf4\xd8\xc4\x6b\x8c\x14\xbd\x36\x3b\x25\xf5\x0f\xe3\x6a\x8e\x92\xea\xf1\x98\x5e\x2b\xb0\x13\x9b\xf8\x19\x76\xef\xfa\x53\x99\x66\xf2\x39\x82\x90\xc8\x52\x0e\x04\x27\x0a\x27\xac\x68\x46\x39\x0d\x2f\x98\x33\xa1\xa9\x2f\xd3\x05\x9b\xa5\xca\x84\xfc\x5a\xe7\x23\xee\x6a\x8e\x63\x19\xc7\x5d\x89\xfc\x3b\x1e\x53\x74\xc2\x51\xe4\x28\x47\x67\x9e\xb2\x05\x9d\x99\x3b\x26\x3b\x36\x87\x39\xe2\xaa\xc1\xe5\xfb\xeb\x9b\x00\xeb\x6b\xe5\xe5\x73\xe0\x18\x27\x0a\x71\x5c\x18\x27\x69\x81\xc1\xde\xb2\x58\x14\x66\x25\xa4\xa7\x42\xd6\x22\x54\x32\xcd\x03\x6b\x6d\x9b\x2c\x5a\x16\x50\x10\x1d\x3c\x7e\xfb\xe6\xcd\xfe\xa3\xb7\x87\xc7\x07\x4f\x22\x63\x4f\x66\xde\xae\xaa\x6b\x33\x61\xf3\xc2\xda\x6c\x4d\x6f\xa8\xba\x12\xf2\xc2\x4a\xc3\xba\x1e\xd3\xc5\xaa\xb4\x2d\xec\x97\xea\x8e\x43\x4b\xe4\xbe\x74\xc4\xbc\x13\xf5\xca\x95\xdc\x8b\x96\x79\x87\x5e\x67\x94\xce\xe8\x2c\x1a\x95\xe9\xa6\x95\xd7\x56\x99\x30\xd7\x4c\xb7\x7e\xc1\x60\xfa\x46\xbf\x35\xaa\x02\x6e\x95\x52\x6c\xdf\xe6\x04\x29\xe3\x3e\xfd\x58\x52\x2d\x99\xb0\x74\x91\x6f\xb7\xef\x38\x5a\x60\x13\x3b\xf4\x3a\x97\xf3\xc7\x66\x15\x68\x1d\x64\xfc\x98\x1b\x8a\x82\x9a\x1f\x4a\x6f\xdc\x79\x1c\x23\x31\xb1\x9f\x2d\xa6\xdb\x6b\xef\xe7\xc6\xd6\xaf\x17\x95\x9b\x14\xfb\xd1\xd0\x8c\x38\x0e\xe8\x81\x68\x6e\x6a\x84\x37\x72\xd4\x65\x46\xa7\x40\x06\xeb\x7e\x5c\x72\x34\x3a\xd5\x38\xdf\x68\x0d\xb9\x30\x88\x16\x28\xe5\x8e\xf2\x2e\x04\xf0\x76\x8b\x58\x33\x91\x74\xbb\xbb\x19\xa1\xbe\x3a\xcd\xc1\x7d\x56\x4b\x6a\xac\xdf\xca\xf2\xa6\xe1\xf1\x39\x37\x4e\xe1\xa4\x59\x8b\x31\x42\xd0\x36\x53\xad\xea\x0b\xfe\x44\x5c\xf1\x85\x48\x67\xef\xa4\x38\x93\x34\xcf\xe3\x98\xf5\xd3\xd9\xec\xe0\x92\x72\xe5\x2d\x29\xc6\x70\x61\xbe\x46\xd0\x56\xa6\xd5\xac\xab\x33\xbe\x5f\x35\xab\x5e\x9b\x94\xea\xe9\x2f\xdb\xaa\x57\x61\x1c\x3f\x53\x9e\xd1\xc5\xb1\xb8\xa0\x26\xb6\x7c\xf0\xaa\x65\x22\xe3\x34\xb6\x7b\x2f\xb7\xb9\xfd\xbb\x6f\x16\xaf\x26\xe9\x5a\x09\xf5\x6b\x15\x63\x90\xdb\x2d\x92\xf6\x15\xf4\x54\xf3\x19\x92\xd6\x56\x70\xc8\xc9\xa6\x2e\xd1\x24\x51\xba\x5a\x2d\x98\x95\xe4\xee\x5e\xef\x5d\x5d\x5d\x69\x3d\x60\xb9\xb7\x96\x0b\x2b\x92\xcc\xa2\xc0\x0c\xf9\xc2\xa1\x5e\xb7\x89\x27\xd8\xa0\x6a\x2d\xa9\x29\x3b\x59\x23\x46\x23\x91\x50\x2b\xab\x1c\x73\x78\xc5\xc9\x26\x9d\xa5\x2b\x45\x65\x82\x5a\xb7\xb5\xeb\x22\xd7\x76\x5b\x9e\xe8\x79\xcb\xe3\xb8\x74\x39\x70\x66\x29\xe3\x75\x70\xab\x77\x96\x35\x2f\xbd\xe5\xe6\x4a\xea\x63\x4e\x3e\x73\x0c\xc7\x1c\x83\x92\x29\xcf\x35\x00\x5c\x23\xc9\xa4\x55\xfc\x39\xe2\xc6\x99\x33\xcb\xe8\x4a\x45\x18\xec\x6b\x6d\x64\x6e\x29\x95\x52\xa5\xc2\xdb\x6d\xb5\xf7\x58\x7a\xca\xb8\xc4\xe6\xbb\xf5\x88\xa8\xde\x9f\xb2\x05\x0d\x72\x2f\xc4\xa9\xd9\x88\x4c\x9a\x35\x3a\xf7\x95\xb1\xf7\x58\x49\x5a\x77\x52\x15\x1e\xa3\x17\xa6\xcb\x7f\x39\xf9\x23\xad\x1c\xe4\x54\x91\xb5\x9a\xef\xfd\x14\x61\x50\xc1\x06\x6c\x73\xe3\xb3\xad\x56\xbd\x8e\x77\x2a\xd9\xdd\x1c\x4d\x54\x31\x0d\x81\xef\xf8\xf8\xa4\x79\x96\x6a\xc7\x9b\xc6\xd0\x15\xb7\xdd\xba\xd2\xad\x54\x76\x7e\x85\x37\xd5\x7e\xe7\x14\x1c\xa3\x48\x06\x50\xa7\xd0\x49\xf4\xf1\xe8\xf0\xe9\xde\xf1\xdb\x97\x07\x6f\x22\xa8\x93\xe7\x24\xfa\xb8\x17\x7e\x5d\xa6\xd7\x6e\x96\x5f\x79\x7f\x5a\x9d\xf6\x48\xcc\x6e\xaa\x84\xba\x1c\xd0\xea\x38\xf0\x0b\xb9\x37\x18\xc4\xb1\x7a\x78\x7f\x30\x28\x8a\xd1\x2b\xee\x75\x11\xb2\xc9\xc4\x72\x29\x78\xb2\xb1\xc8\x95\xec\x00\x13\x3a\x5a\xfc\xb9\xbb\x5a\xa4\x8c\x43\xe7\xbb\xbb\xdf\x45\x45\x11\xee\x5c\x4f\x22\x4b\xea\x23\x30\x91\x50\x20\xd2\x35\x47\xd3\xba\x00\x59\x35\x38\x51\x53\xb2\x29\x1c\xe9\xaf\xea\x58\x59\xdb\xc2\x6a\x6d\xfe\x6b\x70\x7e\xbb\x8a\x8f\xb4\x6f\x5c\x48\xd0\x21\x2f\xef\x00\xb9\xc3\xc9\xab\xd0\xaf\xd6\xb9\xf3\x7f\x83\xe2\x19\xea\xfe\x62\xee\xd6\x1e\x9d\x21\xe7\x1c\xdb\xaa\xe9\x99\xfa\xa0\xd4\xe2\x2a\x7d\xce\xec\x71\xb8\x83\x8f\xbf\x51\xe4\x14\xbe\xf2\xb3\x46\xe1\xc6\x2a\x0f\xab\x29\x47\x52\x26\xf5\xed\x94\xb8\x6a\xcb\x41\x3b\xe5\x65\x5a\x4f\xc7\x7f\x3d\x17\xd0\x06\x5d\x88\x6c\x2b\x35\x30\xd3\xea\xba\xd1\xb2\x5d\x6a\xa2\x94\x69\xe5\xd0\xd2\xca\xed\xf6\x0e\xf7\xcf\x18\x29\xdc\x12\xdd\xb9\x06\x30\x5a\x02\xc6\x3e\x01\x6d\x07\x8c\x5d\x81\x26\x06\x3d\xb4\xd5\xf6\x07\xb5\x61\x21\x5c\xad\xf6\x2a\x3c\x5b\xc8\x5c\x74\xef\x5f\x82\xe6\x6a\x49\x10\xbc\x7f\xab\x03\x18\x43\xe5\x3d\x6d\x08\x8d\xdd\x92\x87\xf7\x4d\x43\x3b\x25\x66\x7b\x6b\x14\x5c\x4e\x31\x89\xd6\x72\x11\x41\x64\xa7\x2a\x82\x48\xb7\x1c\x4d\x41\x90\x49\xe4\x1a\x75\x06\x39\x6f\xf4\x32\x13\xa2\xa9\x64\x34\x05\x46\x26\x91\xd3\x9c\x23\x88\x9a\x48\x53\x4f\xb2\xbd\x2d\x4b\x57\xda\xaa\xce\x66\x29\x4f\xf5\xe4\xe4\xd4\x08\xa2\x86\xd4\xa4\x3b\x63\xa7\xd2\x18\xd9\x2a\xc1\x27\x82\xa8\x4e\xb5\x5c\x42\x45\xaa\x22\x88\x9a\xf2\x85\x49\x6a\x8a\x37\x1a\x08\x34\x13\xcb\x95\x7b\x69\x92\x34\x9b\x54\x51\x34\xfb\x7e\x48\x67\x4c\xd2\x4c\xe5\x7e\xd4\x2b\x21\x0d\x42\x2b\xb5\x32\xc6\x39\xf7\x9c\xfb\x97\x60\x59\x47\x10\xe5\x22\xbb\xa0\xea\x5d\x6a\xaa\xf3\xe3\x3a\xd0\x2c\x46\x53\xf3\x29\xa4\x64\x12\xd5\xc9\x66\x34\x1d\x85\x1e\xe8\x01\xef\x35\x3c\x27\xf0\x82\xac\x84\x8f\x30\x91\xe2\x71\xb5\x92\x81\x3a\x56\x75\x5b\x8e\x4d\x51\x66\xb1\xfb\x90\x14\x8f\x69\xe5\xa9\x56\xed\xf6\xe6\x48\x3a\x6f\xa0\x4a\xd2\x31\xce\x70\xe3\x1d\xf1\x47\x4e\x4d\xd4\x94\x89\x9c\x92\xcc\x79\xc9\x83\x49\xc5\x89\x4b\xd4\x6f\x60\x4a\x17\x01\xd1\x90\x2d\xae\x47\x61\x63\xca\xd5\xab\x82\x7a\x4d\x2a\x6e\x50\x71\x01\x75\x6a\xc4\x82\x8a\xff\x1b\x47\x51\x76\xc1\xee\x48\x85\x2d\xa6\xf5\x16\xed\x01\xef\xf1\xce\xe8\x13\xf3\xc1\x6c\xdd\xb5\xb4\xe3\xd9\x89\xbb\x26\xc8\x5e\xf8\x59\xdd\x16\xe1\x9f\x52\x0c\x0b\xd2\x08\x0c\xea\x3e\x85\xa9\x14\x7f\x2b\x9e\xbf\xf1\x9e\x5a\x07\x97\x99\x15\xd5\xfe\x42\x30\xae\x85\xb9\xd9\x2e\x90\x8b\x9f\x56\xbb\x09\x33\x3a\x4f\xd7\x0b\x95\x7b\x3f\x00\xc6\x15\x95\x9a\x95\x0b\xcd\xdd\xbd\x39\x81\xd3\xab\xce\x4b\x0a\xa5\xc1\xc2\xbe\x17\xc5\xd3\x9a\xb7\x80\xdb\x86\x0b\xfb\xb9\x2b\x01\x8d\x91\x22\xe1\x41\x17\x7b\xb4\x7e\x2d\x17\x41\xea\x60\x9a\x28\xa2\x0c\xa7\x42\x8a\xbc\xe7\xa8\xd6\x55\x50\x18\x3b\x6e\x36\xf6\x6c\x8d\x04\xc6\xb9\x40\x8f\x4c\x6a\x05\x77\x0b\xb5\x7c\x6d\x56\xe0\xf3\x1a\x96\xe8\x0e\x19\x4c\xde\x70\x77\x64\x6c\x0a\x7c\xe7\x62\x15\x77\x50\x72\x07\x9c\x1e\x40\xed\xf7\x0f\x04\x97\xd7\xf5\x4b\x9f\x34\xa3\x95\x5a\x9f\xb4\xea\x02\x8b\x46\x9d\x8e\x29\xdd\x52\xa9\xdd\x9e\xbb\xb5\xc6\x32\x3e\xc8\x08\x73\xc2\x2d\x33\xa6\x7d\xdb\x0f\x73\x92\xd0\x3e\x05\x31\x90\xa0\x36\xe7\x67\x54\xbd\x97\xac\x35\x6e\x4c\xdb\xbc\xc1\x27\x2d\xa8\xac\xe5\xb7\x0d\xa6\xbb\x1b\x0b\x7f\x43\x64\x84\xc8\xdd\x79\xd2\x94\xfc\xc2\xfe\x6a\x2a\x54\xb7\xb2\x87\x9e\x81\x6e\x7e\xd0\x7b\x8e\xac\xf8\xb4\xb1\x73\x9f\x28\x58\xcb\x45\x42\xc1\xd8\xf7\xec\x37\x6c\xa4\x82\xc2\x05\x19\xfe\x17\x85\xd1\x6f\x75\x29\x8c\x42\xd0\xe8\x94\xbc\xbd\x53\xdc\xf5\xc4\x20\xe8\x17\x4e\x9e\x06\x92\xec\xeb\x6a\xb5\xbb\x8d\x6d\xa2\x8a\xd7\xbc\x45\xcd\xdc\xdd\x17\x8f\x1e\x1b\xc6\x18\xf5\x50\x58\x7e\x1c\x25\x9d\xa8\x17\xa6\x98\x1b\xa7\xa1\x56\x69\xe5\x18\xe8\x4f\x76\x3e\xe2\xe4\x75\xd0\xaf\x0f\x7f\x23\xe4\x84\x26\x34\x41\xc4\x2e\x7a\x4d\xb3\xb5\x12\xb2\xb3\x5c\xe7\xaa\x73\x4a\x83\xa8\x13\x7d\x77\x3a\xce\x5d\xee\xef\xac\x11\xe4\x96\x9b\x45\xb4\xf8\xa5\x3c\xbc\xb8\xbb\xdb\xa1\x9e\xc1\x58\xc8\x72\x2d\x48\x23\xff\x68\x6a\x7b\x64\x25\xc8\x32\xd1\xde\xbd\xf1\xa1\x06\xcf\x86\x62\xd0\x30\xea\xbb\x79\x35\x85\xdd\x91\xcd\x2a\xa5\x80\x0f\xdc\xc7\xd6\x6a\xee\x3f\xba\x55\xb8\x51\x5a\x4e\x31\x44\xf8\x43\xf3\x66\x14\x62\xbc\xc0\xad\x38\x93\xa8\xc2\x8a\x97\x5f\x39\xf9\x10\x00\xfe\x59\xc3\x97\xe9\x0b\xb7\xc7\x65\x9f\x52\xf4\xa5\x85\xa0\x57\xf7\x4c\x69\xa6\x62\x9d\xd7\x11\x87\x30\x2b\x50\xb3\x06\xca\x6f\x54\xf3\x1b\xdd\xc0\x73\x4e\x9e\x71\x74\x87\xe3\xd1\x73\xde\x37\xce\x18\xe4\x0b\x87\xe7\xdc\x6d\x88\xb6\x11\x8e\x67\x5c\xe3\xfa\x73\x5e\xa3\xf7\x85\x2e\x63\x71\x91\x3c\xe2\xd5\x8b\x91\xd8\xc8\x57\x93\xc2\x72\x97\xe1\x0f\xaa\x5f\xd3\xc5\xa2\xad\xfa\xf0\xa2\x1a\x65\xeb\xcd\x57\x92\xa6\xb3\x6f\x47\x9c\xda\x09\xde\x61\x4f\x6a\xe3\xa2\xb0\x4d\x07\x8e\x26\x2d\x07\x3c\x5a\x62\x4f\x77\xed\x5d\xe4\x61\x49\x3b\x59\x1f\x39\x79\xce\xe1\x57\xfd\x7f\xf4\xb1\x84\x02\xf9\xd5\x7a\xc8\x7d\xe2\xe4\x63\x30\x95\xbf\x9b\x56\x3e\xf1\x76\x46\xb3\xae\xef\x2a\xee\x1e\xd1\x2b\x75\x99\xfa\x36\x5d\x1c\x2b\xa3\x14\xb5\x7e\x24\xd1\x23\x9a\x4a\x2a\x3b\x51\x79\xcd\x34\xb6\x77\x7f\x99\x19\x7f\xd9\xd4\x73\x82\x83\xc5\x65\xf0\x68\x1e\xc7\xf5\x83\x97\xa1\x57\x23\xad\xf9\xee\xd9\x05\x32\x2c\x60\x68\xf5\xa8\xdf\xb8\x39\xd4\x6b\xa9\x2d\xfc\xc1\xc9\x4b\x8e\x22\xf7\x1a\x61\x50\xd2\x1e\xf1\x2d\x13\xa8\x24\x7f\xe8\x01\xc9\xf1\x64\xea\x8b\xb5\x19\x39\x7e\xe3\xff\xea\xc9\xdc\xd1\xdf\x38\x11\x5c\xb5\xd9\x25\x54\x16\x50\xc6\x81\xa0\xd2\x9f\xb9\x96\x64\x32\x35\x5e\x27\x20\x25\x79\xef\xa3\xf4\x82\x90\x66\x64\xfa\x43\x64\x0e\x39\xfc\x9d\xe6\xa4\xdc\x6e\xbb\x42\xb7\xa3\xcb\xb5\x9e\xb5\x93\x16\xd2\x5f\x6c\xb4\x3b\x08\x43\x72\x42\x94\xa8\xf2\xc0\x2a\x93\x90\x4a\xc8\xa4\x09\xd6\x50\xba\x37\x38\xf7\x09\xab\x36\x61\xb3\x4b\x9c\x4b\x72\xd1\x77\x56\x4c\x58\x4b\x92\xcb\x38\xce\xa5\xbf\x16\x3d\x87\x85\x24\x6b\x19\xc7\x6b\xd9\xbf\xfc\x69\xb4\x90\xe3\x54\x12\xc4\x24\x59\xc8\xe0\xc6\x74\x3c\x19\x4c\x7b\x4c\x6a\xe8\x66\x32\x8e\x51\x57\xe7\xc8\xa4\xf3\xac\xb9\x7b\x30\x3b\xa3\x7f\xde\x45\x7f\xce\x7a\xf8\x2e\xc6\xdb\xad\xc9\xf9\x0b\xf9\xf1\x7b\x1c\xc7\xf5\x9c\x8f\xcf\xa5\x58\x06\x79\xe3\x18\xa5\x92\x98\xfc\x76\x58\x73\x49\x52\x19\xc7\xbd\x54\xc2\x4c\x36\x83\xc0\xb4\xad\xdd\xce\x5c\xfe\x42\x7e\x18\x6e\xb7\x8d\xa3\xeb\xfe\x3e\x05\x7f\x05\x1f\x0d\x4f\x17\x92\x4d\x81\x27\xb3\xfa\x25\x0c\x8e\x76\xcf\x85\x48\x86\x45\x61\x9c\x38\x35\xf3\x47\x8f\x84\x58\xd0\x94\xe3\xfe\x5c\x08\x83\xe1\xe7\x52\x63\xf8\x32\x5d\xc1\x52\x92\x95\x44\xd1\x32\x5d\x45\x18\x2e\x2d\x66\x9b\x97\xbf\x83\x0b\xdd\xa5\x46\x86\x4b\x8d\x0c\xcb\x74\xd5\x86\x0b\xe7\xf2\x5f\x3f\x8c\x6e\x80\x78\xa6\x07\x38\x3a\x93\x13\x0d\x3f\x2f\x3c\x1c\xa7\x67\x11\x9e\x92\xe8\xab\x95\x92\x6f\x24\x29\x6d\xdc\x5f\x8d\x75\xdb\xd9\x61\xcf\x24\x86\x53\x0b\xfa\x5a\x51\xb8\x92\x24\xda\xf7\xad\x9a\xf0\x45\xbb\x2e\x4b\x65\xaf\x0a\x84\x31\xec\x4b\x72\x23\xc7\x4f\x76\x5d\xb4\xb4\x18\x35\xda\x39\x8f\x3c\x8e\x4a\x55\x31\x4a\xdc\x41\x60\x35\x8e\xde\xac\x17\x8b\x28\x69\x6a\x2a\xa8\x49\xc7\x02\x27\x6c\x73\x3f\x43\x65\xb5\x2d\x90\x3f\x77\xac\xf9\xe8\xa9\xc4\x78\xcc\x93\x2b\x39\x7e\x82\x28\x2e\x8f\x8f\x13\x82\x24\xd1\x29\xed\x87\x56\xed\x79\x43\x4a\xc7\x01\x08\x12\x59\xc0\xb5\x19\x62\x10\xff\xbe\xc5\x01\xd6\x83\x39\xea\xed\xdb\x19\xc5\xbd\x68\x1a\x15\xa3\x1b\xb9\xdd\x1e\x95\xfa\x64\x6b\xc0\xcc\x6b\x09\x1b\x1b\x57\xd4\x5c\x3a\x6a\xbd\xa1\xf5\x82\x76\x6c\x12\xde\xca\x9d\xf3\x23\xe5\x11\x38\x1b\x00\xed\x48\x99\xdb\x1e\x69\xfd\x98\x9b\x2a\xe0\xc8\x06\xb3\x3b\x69\x9b\xeb\xc7\xbb\xd5\x6a\x9e\xf8\x15\x29\xc2\xc7\x2a\x09\x7b\x7b\x22\x71\x1c\x1f\x49\xa4\xe0\x44\xde\x16\x52\x83\x16\xb8\x80\x8b\xe6\x7a\x7e\xb7\xdb\x08\x9b\xa3\x2e\xaa\x1d\xa5\xa4\xbb\x71\xc2\x4d\x60\x58\x29\x2d\x48\x11\x1f\xf3\x5e\xd4\x89\x12\xe3\x30\xc2\xf8\xa5\xf7\x42\x0b\x87\xfa\x59\x2f\x08\x38\xb4\x1d\xf0\x61\xaf\x22\x0c\x2f\x64\x33\x58\x08\x1c\xb7\x12\x99\xea\x42\xf9\x38\x46\x9f\x65\xdf\x94\x22\x26\x24\xd3\x0b\x39\x39\x94\x53\xfd\x8c\x0b\x78\xb5\xd3\xc4\x1d\xd9\x76\xb5\x40\x97\x94\xe7\x0d\xd4\xe4\x95\x9c\x6e\xb7\x6a\x12\xfd\xf3\x9f\x65\xb9\xe9\x76\xfb\x59\x4e\x34\xba\xe0\x69\x01\x4f\x64\xdb\x75\x52\x7d\xe7\x46\xc1\xe6\xd5\x7d\xf7\xe5\x79\xb8\x97\xa8\x3a\x82\xef\x62\x4b\xc0\x1b\xd9\x5c\x32\xd6\x53\x55\xac\x56\x74\xe6\x0d\x0c\x92\xe6\x5a\x9c\xa1\x05\xbc\xdf\x9d\x1e\x83\x56\x3e\x62\x1f\x58\x8f\x20\x73\xc5\xbb\x3a\x4f\x15\xcc\x49\x17\x75\xcd\x59\x9c\xfe\xfe\xd1\xc9\xc1\x9b\xe3\xc3\x17\x07\x47\x18\x66\x55\xf2\x8b\xa3\x93\x17\xc7\x07\x87\xfb\xc7\x6f\x0f\x31\xac\x82\xf4\x37\xc7\x07\x87\x87\xef\xdf\x1d\x1f\x3c\xc1\x70\x4e\x24\x45\x14\x16\x30\xec\xcd\x7b\x2b\x0c\xcb\xd6\x98\xe0\x71\xfc\x44\x22\x69\xa2\x70\x75\xde\x48\xd4\x1d\x80\x86\xff\x65\x2b\x87\x18\xdb\xe8\xef\xab\xf1\x39\x32\xae\xdc\x6a\x32\x9c\xc2\x12\x27\xc1\x2b\xc6\x89\xf9\xec\x92\x71\xa1\xc1\x3a\xc3\x92\x28\x7b\x2e\xb0\x55\x0d\x42\x82\xdc\x91\xe6\xb2\x82\x1d\x14\xb5\x51\x06\xbd\x1b\xbb\x99\xd7\xd3\x05\x8d\x8c\xbf\xd2\xb1\x44\x02\xdb\x75\xca\xc8\xc0\x46\x46\xf5\x31\x05\xf0\x28\xfd\x85\x99\x58\x92\x26\xce\x16\xb9\x44\x6a\xc2\xa6\x9a\x28\x65\xe1\xaa\x78\x23\xcb\x53\x2e\x61\xd0\x0e\x0d\x88\x21\x2e\x24\x11\x55\xec\x03\x21\x51\x4e\xa4\xb9\x34\x7c\xd4\x45\x6b\x92\xdb\x4f\x12\x63\x13\x51\x64\x64\x29\xa7\x6e\x69\xed\x42\xd2\x57\xa4\xd3\x0e\xcb\x02\x5a\x15\x41\xa8\x84\x92\x2e\x66\x71\x9c\xdd\xde\xb7\x62\xb7\x6f\xf0\x74\x67\x89\x7c\x91\xa4\x3b\x1c\xf9\xb0\x28\xaf\x25\x19\xc0\x23\x69\x4f\x78\xec\x52\xd3\x8d\xee\x74\xd2\xed\xbe\x96\xbd\x5e\x51\x80\x4d\x0c\xb3\xe9\xda\x06\x45\x31\x7a\x24\x27\x4f\xdb\x38\xbc\xbd\x3f\x06\xec\xba\x9f\x4b\xb1\x44\x8f\x64\x2d\x30\xb1\x1d\xf4\xbd\xdd\x0b\x35\x3f\x48\xf8\x2a\xe1\x99\x84\xe7\x4d\x4a\xf6\xb1\xb9\xb2\x7c\x14\xae\x97\xce\x6e\xe8\x05\x8f\x1d\xa6\x27\xb7\x5b\xcb\xe9\x10\x27\x2f\x91\xc4\x93\xe7\x72\x8a\xc7\x34\xe1\x14\x71\x5c\xc0\xaf\x92\xdc\x45\x6c\x75\x2e\x38\xdd\xb2\x95\x98\x6d\xd9\x2a\x9d\xe1\xfe\x77\x5a\xc7\xa1\xf6\x30\x8d\xf7\xad\xcb\x24\x86\x4f\x92\xf8\x73\x14\x86\x41\x97\x82\x1f\x86\xdf\x35\xd7\xf0\x4e\x96\xf0\x52\xbf\xe5\x54\xbd\x58\x2e\xe9\x8c\xa5\x8a\xc2\x6f\x3a\xc5\x9c\x75\xaa\xd2\xfe\x08\x45\x47\x25\xc8\x45\xdf\x6d\x35\x3c\x3e\x4f\x39\xa7\x0b\xa0\x3a\xed\x89\xbf\x48\x99\x0b\x32\x00\x29\x34\xa9\x15\xa2\x49\xf5\xa4\x68\xc4\xba\xd0\xeb\xc6\x91\x32\x29\xb4\xf2\xe1\xf6\xa6\xcc\x0b\x50\xa4\x55\x37\x26\xfe\x22\x8e\x8d\x10\xe6\xf8\x14\xa4\xf5\x8c\x3a\xd9\x18\x80\xcc\x15\xeb\xb5\x4f\x17\xfd\x95\xc8\xfd\x96\x09\x52\xbd\x28\x82\xdf\x65\xe9\x30\xda\x8b\xee\xde\x8d\x7a\xbf\x4b\xe3\x2c\x8a\x8b\xd1\x4b\x19\xc7\xbf\xc9\xed\x16\xbd\xac\x93\xe0\xc6\x8d\x5d\xc3\xd1\x8e\x84\xc6\x47\xd8\x59\xf7\x82\x03\x43\xbd\x5e\x15\x6a\x4d\x8a\x49\xaf\xc7\x45\x0d\x43\xdb\x2f\xea\x54\xc9\xd3\xaa\x69\xec\xf4\x5b\x6f\x27\xc7\x05\x7c\x90\x88\x0b\x0c\x5c\x14\x7a\x16\xc3\x6e\x86\x20\x2d\xe0\x93\x1c\x7f\xa8\x7f\xff\xc3\xd2\x85\x63\x96\x5d\x20\x26\xcc\xf1\xe1\x84\x8a\x38\xa6\xa2\xcf\xc5\x55\x33\xb7\x4d\x2d\x33\x2a\x11\xc7\xdd\x5f\xe5\x18\x3d\x93\x04\x7d\x95\xc6\x54\xa1\x04\x36\xfe\xc1\xf7\xe0\xab\x34\x0f\xc3\xbe\xe0\xde\xaa\x95\x0a\xf8\x20\x35\x71\x7f\x26\xc3\x49\xd0\x2b\x6a\x88\x71\x72\xb1\xe3\xef\xd2\x2a\x89\x05\x25\xe3\xb8\x7b\xd1\x67\x4b\xdd\x8e\x0d\x78\x90\xc7\xf1\xef\xa6\x94\x71\xa4\xec\x12\x12\x4c\xad\x09\x6e\x95\x09\x3c\x46\x1f\x24\xc9\x04\xec\x36\x87\xa2\xa5\xdf\x49\x4b\x05\x74\x75\x9f\x3e\x48\x12\xed\x3a\x81\x46\x8c\x77\x3e\xa2\xc8\x1e\x2e\x89\xea\xb7\x0f\x35\xe2\xbd\x05\xd9\xf0\x5f\xb8\x93\x9e\xd2\xbe\xf5\xf5\xb7\x25\xad\xfe\xe7\x10\xbc\x26\x42\x07\xa7\x58\xcd\x5c\xc0\xc0\xc7\x2a\xcb\x05\xac\x05\x2c\x04\xcc\x05\xac\x04\x9c\x0b\x58\x0a\xb8\x14\x70\x26\x6c\xc0\xff\x97\xd2\x1e\x67\x4c\x7e\x93\x05\xdc\x08\x72\xf7\x8a\x9e\x0e\x72\x34\xee\xf6\xbf\xcb\x8c\x66\x86\x43\x6a\x72\x6a\xe3\x1c\x5f\x09\x72\x66\x0e\xae\xc2\xbe\x21\x01\xee\x7a\xc1\xb7\xa7\xe6\x46\x52\xb9\xdd\x5e\xf4\x7f\xa7\xa7\x2f\x99\x6a\x7e\x81\x6b\x11\x5e\xa3\x73\x20\x02\x6a\xf2\x56\x04\x42\xec\x91\x20\xa7\x02\x5d\x40\xf4\x65\x4d\xd7\xf4\x35\xcb\xa4\x50\x69\x7e\x11\x61\x38\x11\xe4\x48\xc4\xf1\x91\xb0\xac\x69\x74\x22\xb6\x5b\x94\x8b\x1d\xcb\x1b\x50\x63\xd3\xff\x24\xcd\x39\xf6\x03\xe1\x22\x06\x1a\xd7\x3a\x7a\xcd\x14\xc2\xa3\xb5\x18\xe1\x0d\x25\x6b\xd1\x9f\x73\x58\x0b\xfd\x60\x78\xa2\xe6\x3b\x14\xed\x30\xbd\xb5\x18\xcf\x05\xc2\xc9\x42\x10\xbf\x7f\x54\x14\xc1\x8b\xa9\x99\x2b\x2a\x91\x21\xd3\xdb\xed\x27\xb9\xdd\xde\x88\xed\xb6\xbb\xaf\xff\x5d\x8b\xf1\x5b\x11\xc7\x6f\x85\xdf\x76\x18\xa3\xa5\x20\xd5\xab\x0f\x74\x05\x97\x82\x2c\xed\x2d\xf0\x30\xaf\x8f\xcb\xf1\xf0\xa5\x80\x5c\xe0\x02\x27\x73\x41\x3e\xc9\xf0\xcc\xc3\x81\xa8\x56\xaf\xce\x12\x72\xc1\x2b\x57\xfa\xc2\x14\x4e\xd0\x4a\x90\xee\x00\xce\x05\xb9\x16\xce\xb6\x77\x4c\xaf\xd5\x1b\x31\x33\x71\x10\x8d\x14\xb5\x2f\x74\x2d\x7d\x61\x67\x0f\x9d\x0b\xd8\x64\xe7\xa9\x4c\x33\x45\xa5\x09\xbd\xa3\x35\x90\x46\x27\xcf\x85\xdd\x90\xd7\xd5\xaf\x84\x37\xd8\x3e\x16\x70\x21\xe0\x9d\x80\xcf\x02\x0e\x05\xd1\x93\xb6\x2b\xbf\x6e\xe6\x3c\x51\x60\x98\xbc\x8b\xcd\x3f\x5a\x88\x38\x46\x0b\x3b\x2a\x42\x31\xac\xf5\x6c\xaf\x05\xa1\xa0\xa7\x02\xc3\x42\x68\xb9\xf4\x85\xd8\x95\x86\x81\xef\x9a\x95\x6b\xf6\x62\x77\x6d\x7d\x25\x28\x07\xfe\x5e\x2d\x17\xfa\x3c\x4a\x67\xde\x12\xd9\x09\x43\xac\xe3\x11\x35\x01\x5b\x65\xb9\xdb\xe3\xe6\x93\x70\x13\x6f\xd3\x25\x99\xa8\x03\x8e\x85\x1f\x0b\xb2\x99\xb7\x9a\x7a\xe8\x55\xe7\x85\xe3\x5f\xaf\xc4\x6e\x40\x40\x23\xb3\xbe\x46\xd4\xc6\x82\x0a\x8c\x17\xa4\x52\x1e\xa8\x33\x90\x1f\x8b\x7e\x10\x45\x0b\x0d\x8c\x57\xaf\xe9\x18\xd6\xdd\x2a\xbd\xff\x0a\xb8\x23\x6e\xb9\x1b\x6f\x63\x5c\x72\x93\xee\xd0\xe9\x6c\x4a\x73\xe0\x46\x3c\x3a\x9f\xc7\xeb\x75\xaa\x28\x0a\x78\x52\xd2\x87\x37\xa2\x21\x17\xbd\x17\x24\x72\x60\x8c\xe0\xa9\xf0\xb7\x70\x7c\x31\x4f\xba\xc4\x6b\x9f\x66\x6f\x11\x41\xef\x05\x86\x47\x82\x1c\x48\xf8\xa0\x09\x44\x39\x23\xf0\xb5\x46\x4a\x9e\x85\xa4\xe4\xb9\x30\x36\xb0\x39\x55\xc6\xa0\xf8\x51\x18\x68\xc0\xaf\x82\x7c\x14\xf0\x49\x90\x6e\x17\x7d\x15\x71\xfc\xd5\x23\xbe\xa1\xf9\x71\x7c\x51\xde\x70\x69\x12\x30\xfc\x2e\xda\xee\x0a\x72\xdd\x3f\x34\x73\xca\x04\x37\x99\xe1\xa5\x20\x7f\x28\xf4\x5e\x40\x23\x5a\x62\x17\x65\x0a\x3d\x12\xb8\x5b\x9a\x53\x1e\x09\x8c\xcd\xa7\x07\x0f\x08\x21\x73\x59\x85\x52\xd4\xd9\x35\xc1\xea\xfe\x1e\xdc\x6e\xc0\xe6\xc8\x1a\xb4\x5a\x6f\x28\xd2\x95\xd5\x02\xaa\x29\xf2\xa8\x22\x29\x43\x0c\x8d\x78\x93\x35\x8b\x58\xcd\xf3\x46\xbf\x62\x7f\x54\xa0\x1e\xb5\xcb\x18\xc7\xde\x88\x29\xa1\xd0\x45\xaa\xe9\x00\x64\x0a\xd6\xf4\x73\xbd\x14\x7e\x13\xe4\xa5\x26\x7b\x3b\x48\xdc\xd5\x4c\xfa\x8b\xac\xf7\x9a\x87\xf2\xbe\xb1\x55\xdd\x22\xab\x7f\x53\x07\xe0\x46\xce\x2f\x0a\x50\x48\xb6\x38\xe9\xf1\xa2\xbe\x5f\xf4\x48\xb8\x3d\x85\x7e\xb6\x73\x15\xb9\xbb\x54\xe4\x8f\x16\xca\x32\x2a\xe3\x69\xbc\x36\x2e\x93\x2d\x5a\xa0\xf1\x1b\x3f\xa7\xc6\xfb\x93\x16\xa0\x58\xcb\xd5\x7c\xaa\xcf\x85\x32\x27\xe5\xf0\xa6\x7a\xf6\x3b\x6f\xdc\x68\xf3\xf6\xf6\xf5\x7c\x74\x28\x6a\x9d\xab\x42\x1a\xb9\x0b\xf7\x40\x98\xb8\xd1\xee\x62\x64\x46\x06\x23\x7f\xd8\xfc\x17\x36\x2a\x2f\xa6\xd1\xea\x39\xe1\x36\xc6\xef\x82\x88\xf1\xba\x2f\x2e\x92\x75\x7f\x9e\xb2\x05\xcc\xc9\xda\x63\x0d\xcc\xcc\xb3\xb1\x69\xaf\xc8\xda\x31\x4e\x33\x3b\x8b\x31\xd2\x04\xf8\x1e\xb1\x7e\xd3\x6e\x01\xc4\xb1\x60\xd6\x55\xae\x4c\x22\x43\x77\x84\x73\x31\x4e\x89\x4c\xd0\x2a\x8e\x57\x9e\x39\x42\x4a\xb4\xb2\x09\xab\x38\x46\x2b\xc7\x8b\xc1\x5c\x2f\xa3\x3f\x11\xb2\xf6\xa4\x69\x3c\x43\x1f\x04\xf2\xe4\x62\x2f\x3b\x4f\x19\xef\x64\x37\x99\xd6\x9a\x71\x82\x32\xf2\x87\x40\x29\xc6\xe3\xcc\x32\xb6\x14\xe6\x30\xc3\xc9\x5c\xa7\x25\xb3\x1a\x06\xac\xe2\xb8\x9b\x9b\x2e\xd8\xd6\xcc\x75\xdf\x45\x00\x61\x2d\xb4\x87\x93\x30\x04\x8d\xa5\xb5\x31\x72\xe6\xee\xed\x2f\x80\xb2\xdb\xec\x20\xa3\x4f\x62\x8c\x90\x24\x75\xd2\x82\x22\xf3\xa3\x05\x3e\xcf\x8e\x28\xc8\x72\x8b\x12\x64\x9f\x71\xa6\x6c\x56\x05\xdd\xa1\x39\x7f\xd4\xa0\x46\x5a\x3d\x4f\x24\xd9\xb8\x0a\x12\x0a\xb6\x78\xc2\x0b\xe8\xfe\xae\xd9\xa4\x20\x17\x93\x48\xf0\xa8\xa7\xa6\x78\x2c\x90\xc4\x49\xb4\xe6\x36\x00\xcd\xac\x1c\x47\x44\x8c\xc5\xaa\x6d\xc3\xe7\xc2\x2c\x79\xb1\xa0\x23\x63\xc0\x31\x84\x3d\x8e\xd1\x90\x90\x9d\xa8\x59\x63\xf7\x19\x29\x9c\x94\x8f\x40\x31\x2e\x50\xf4\xde\xb7\xd9\x71\x5d\xed\x54\x8d\x9b\x1b\xfc\x79\xdd\xfb\xe0\x49\x29\x97\xec\x18\xeb\x41\xaf\x02\x7b\xff\x15\x94\xb8\xae\xa9\xa4\x64\x36\x0c\x12\x25\x77\xea\x2b\xe3\x93\x1c\x3f\x13\x7d\xba\x64\x0a\x55\x83\x3f\xac\xda\x97\x26\xec\x16\x43\x6d\x90\xb1\x57\x07\xe0\x3a\x1e\x6b\x19\xce\xb4\x36\xbe\x97\x0c\x81\xda\xb1\x7a\xeb\x0e\x75\x76\x34\x8c\x0b\x68\xf7\xa9\x18\x76\x1b\x2b\xa5\xeb\xc3\x49\x17\x20\xfe\x36\x1c\x4a\x28\x8c\xc2\xf1\x95\xb5\x3e\xb7\x23\x89\x80\xda\xb1\x95\x1f\xce\xcb\x0f\xa0\xbc\x25\xc7\xdc\x49\xb0\x8b\xbf\x4d\x45\x5a\x6a\x5e\x41\x0d\xbc\xb4\x32\xbd\x5b\x40\x19\x5b\xd1\x76\x8b\xec\x83\x96\x25\xcd\x29\x7f\x7b\xc0\xdf\x34\x46\xcc\x4d\xff\xe6\xaa\xb6\x7b\xa0\x98\x46\xed\x81\x6e\x3e\xdb\xad\xcd\x12\x44\x5d\x91\xaf\x39\xac\xd0\xd0\x1e\x73\x00\xd2\x5d\x86\x46\x88\x3f\xa9\x11\x10\x88\x4e\x66\x6e\x01\x3d\xd5\x08\x67\x08\xd9\xac\xc3\x54\x4e\x17\x73\xe7\x67\x20\x35\xbd\xa0\x78\x24\xc7\x0d\x72\xea\xfc\x39\xad\x19\x69\x58\xd8\x78\x2e\xfe\x6e\x08\xc6\x50\xc6\x4c\xf8\x4e\xfd\x98\xda\xc7\x20\x8a\x4b\xca\x10\x07\x73\xba\xa5\xd0\x44\x69\x77\xe8\x43\x37\xf4\x61\xa3\x54\xd9\x9e\x2b\x5d\x8c\x5e\xea\x55\xfc\xa8\xce\x71\xde\xb9\x1d\x9f\x47\x02\xb4\x24\x64\xaf\xe1\x78\x1c\xdc\x65\xef\xc3\x94\x3f\x15\xee\xd5\xf8\xab\x23\xdb\x6d\xea\x3b\x4d\x43\xd3\x55\xca\xec\x71\x9c\x02\xd0\xe3\x7a\x6b\x5f\x6c\x25\xb0\xd1\x7c\x2c\x79\x2f\xc0\xf5\x11\x3c\x65\xd4\xcf\x16\x7f\xf5\x53\x49\x3e\x93\xc9\x14\x4a\xac\xd3\x5f\xcc\xd0\x13\x2f\x14\x3a\x69\x1e\x87\x37\xb2\x90\xb7\x12\x3d\x12\x81\x99\x7d\xa3\x19\x66\xd2\x46\x98\x5e\xbb\xa1\x81\x24\x1f\x05\xfa\x58\x42\xa4\x72\x72\x92\x7d\x71\x41\xda\x9c\x52\xb6\x5b\x05\xd2\x70\xb8\x36\x49\x8e\xc6\xb1\xa6\xc3\x2e\xee\x80\x5d\x5b\xf6\xc5\x75\x59\x8b\xc9\x66\xb4\x06\x1b\x2b\x76\x61\xcd\x38\x12\xc3\xa0\x4b\xec\x21\x3a\x1a\xc7\x4a\x63\x42\x77\x88\x41\x56\xb2\xb5\x81\x79\xab\x87\xbe\x56\x0b\x8c\x20\xe5\xd5\x47\x13\x38\xfa\x62\x57\x91\x35\x9a\xcb\x63\x01\x76\x8a\x71\x5d\xab\x51\x75\x95\xa3\x9c\xf5\x50\xeb\xf0\x18\xa0\x15\x8f\xfe\x9c\x7c\x6c\xb5\xa0\x29\x42\xc8\x23\xb1\xdd\xea\xdf\x77\x62\xac\xdb\xbc\xd0\xcd\x25\xbf\x1a\x7d\xa4\xed\xc8\xd2\x81\xe6\x0e\x9f\xb5\x68\x5e\x73\xa4\xa1\x1c\x8e\x14\x0a\x13\x21\xd2\xa9\xd1\xce\xf1\xb2\xca\x91\x27\xd0\x7f\x1e\x89\xe6\xcd\xfa\x9f\x1d\xb6\x73\x70\x21\xce\x2c\xdc\xec\x4b\x6d\x33\xac\xad\x97\xcf\x45\x1c\x53\x8a\x36\xf6\xfe\x20\x1b\x56\x27\x0c\x4a\xee\xf7\x5e\x07\x05\x6c\x8c\xc2\xd0\x36\x5b\xaf\x04\x7a\x24\xe0\xb9\xbf\xdc\xfe\x22\xb8\x06\xc6\xac\x7b\x1b\x6b\xbc\x6a\xe2\x4a\xa6\xab\xa0\xf2\x97\xa2\x80\x8d\xa3\x52\xc9\x23\x51\x60\x78\xac\x91\x1f\xde\x1b\x9b\x12\xec\x6a\xc2\x17\xca\xfa\xf7\xfc\xd1\x9f\x8f\x3e\xc7\xb1\x96\x45\xe8\xe4\x42\x4e\xe3\x98\x23\x0a\x17\x2d\xbb\x6a\xed\xb7\x00\x1b\xc3\x76\x81\x0b\xa3\x45\xbd\x33\x5a\x91\x7e\x0a\xf6\xa2\xdf\x8b\x66\x94\x6c\xd3\x59\x8b\x3a\x2d\x91\x34\x3e\x7a\x32\xe3\xd5\x4d\x87\x65\x76\x8a\x4a\x5c\x06\x5a\xae\x81\xe2\xef\xb5\x67\x10\xf8\x16\xd8\x97\xa1\xb1\xfe\xa2\xaa\xdf\x74\x55\xe9\x62\xd1\xd2\x6f\x17\xd8\xfc\xa3\xb0\x11\x7e\x4a\x65\x18\x84\x79\x36\xc2\x2e\x6b\x4a\x13\x3e\xb6\x37\x2a\x5d\x45\xb1\xb9\xcf\x0d\x52\x32\x80\x8c\x0c\x47\xef\x65\x33\x90\xa3\xb1\xb9\x91\xb4\xd7\x83\xb5\x56\x69\xdc\x35\x6d\xde\xb4\x93\xf5\x7a\x3e\xea\xbd\xa6\xc0\x2d\x27\xef\xd6\xdb\x2d\x5a\x6b\x6a\xc3\x26\xf9\x94\x28\xd8\xdb\xcb\xb6\x5b\x89\x98\x56\x47\xcc\x7d\x8a\xb8\x4a\x0a\x7c\x87\x99\x17\xd7\x04\x62\xfe\x1a\xe1\x40\xc5\x97\x69\xd6\x16\x0a\xa9\x05\x28\xd6\x93\xa5\x0d\x10\xa2\x0e\x88\x96\xb1\x8b\xe6\xc8\x2a\x28\x4b\x77\x4b\xa3\xef\xaf\xf0\xfd\x95\x48\xec\xf6\xd7\xdb\x2e\x19\xd9\x3c\x3e\x3a\x3a\x5c\x2f\x4c\xe8\xaa\x64\x00\x8f\x8f\x8e\x8e\xd4\xcd\x82\x3e\xa1\xd9\x22\x95\xc6\xb4\x68\x53\x3f\xe8\x2a\x7c\xa6\x05\xa3\x5c\x1d\xd2\x4c\xb9\x84\x27\x6f\x5f\xd7\xdf\xac\x22\x5e\xbd\x1b\x9f\x34\xf3\x3a\x84\x27\xa9\x4a\x8f\xcd\xb1\x0b\x2a\x5f\x28\xba\x74\xb9\x9e\xb2\xb2\x13\xcf\x8f\x5f\xbf\xda\x5f\x2c\x1e\x8b\xc5\xc2\x31\x3c\x9b\xb6\x93\xf0\x54\xc8\xa5\x0b\x20\xe2\x52\x8e\xa8\xce\x51\xa5\xbd\xa6\x33\x96\xba\x6a\x5f\xb3\xa5\x39\x89\x61\xa3\x78\x0f\xe0\x4d\xba\xa4\xb3\x37\x62\x46\x5f\xa7\x2b\xfd\x2a\x66\xd4\x75\xf1\x5d\xca\xb8\x3f\x5e\xeb\x0a\xbf\x5b\xac\xcf\x18\x2f\x1f\x7c\x1d\x47\x1f\x9e\xd9\x43\x16\x2e\xdb\xd1\x87\x67\x36\xac\x4f\xf5\xfe\x2e\x55\xe7\x47\xf4\x2c\x48\x10\x8c\xab\xea\xb5\x06\xab\xa3\x0f\xcf\x8e\xfd\x91\x14\x9f\x64\x1c\x1f\xed\xe9\x40\x9f\xa4\xa7\xe8\xe8\x9c\x52\x5f\xcd\x31\xbd\x56\xc7\x32\xcd\x2e\x1e\x97\x93\x54\x26\xf9\x77\xb1\xce\x5c\x2f\x8b\x32\x60\xe0\x9a\x75\x18\xef\xe4\x2e\x7c\xd1\x82\x91\x8b\xc9\x9a\x4d\x61\xce\xc8\x82\xc5\xf1\x82\x05\x37\x7a\xb0\x39\x9a\xb3\x38\x9e\xb3\xca\x7b\x8b\x50\x89\xdd\x3d\xd7\x73\x06\xa5\x83\x19\xd0\x50\x33\xac\x0a\x10\x2a\xed\x75\xb8\x33\x06\x2b\x06\xe7\x0c\x96\xcc\x99\x6c\x6a\x1e\x96\xc6\xd1\x19\x2e\x19\x71\xa1\x6b\xcf\x18\x89\x0e\x9f\x3e\xbe\xff\xf3\x4f\x0f\x22\xb8\x61\x64\xe3\xfc\xff\x92\x33\x06\x26\x2a\x9e\x52\x54\xe6\xc9\xe6\xf0\xe9\xe3\xe1\x8f\xf7\x7f\x6a\x23\x71\x4b\xe6\xc3\xbc\x5f\x32\x13\x0a\xb7\x00\x57\x63\x5b\xee\xf2\x2a\xb7\xc2\x64\x33\x95\x46\xee\x21\x2a\x0b\x9e\xb1\x02\x4e\xd9\xee\x01\xd5\xc6\xd5\xf7\x57\xac\x7e\x3d\x19\xec\x33\xd2\x62\x69\x50\x9a\xea\x51\x32\x18\xd1\x87\xf7\x7e\x78\x30\xea\xf5\x28\x56\x2e\x32\xd3\x3f\xa2\x1e\x42\xf4\xe1\xf0\xc1\x38\x1a\x58\x9f\x8b\x20\x86\xee\xf0\x81\x09\x10\x11\x44\xdf\x08\x9c\x30\x10\x86\xeb\xa6\x65\xa4\x8a\xba\x67\x4e\x7c\xad\xaa\xf3\x34\xf9\xb8\x76\xc9\x8c\xbd\x91\x25\x31\xa7\xb0\x06\x23\xf9\xb0\x0c\xc1\xdf\xeb\x49\x5c\x39\x67\x4c\x34\xd3\xb4\xc7\x3e\xcc\x69\x8f\xc0\x2d\xfe\x80\x91\x8d\x89\x83\x78\x2c\x5c\xb8\xf3\x6b\x06\x69\x9e\xb3\xb3\xa6\x18\xea\xca\xd4\x8f\x79\xf4\x25\x9d\xad\xb3\x9a\x8f\x72\xed\xee\x75\x3e\x25\x74\xc2\xa7\xa0\x0a\x6c\x1c\x11\x32\xb1\x3c\x65\x9c\xb6\x56\x3d\x99\x96\x9e\x99\x46\x50\x33\xb7\x1c\x37\xf8\x6f\xb0\xc1\xb8\x11\xa7\x9f\x93\x8d\x48\x54\x01\x2b\x29\x56\x49\x24\xa2\x62\x0a\x26\xde\xa7\x05\x06\x0d\x81\x51\x5e\x38\x60\xef\x3c\x64\x44\xf4\xc5\xe9\xe7\x89\x91\xbd\x57\x9a\x97\x85\xe3\x62\x18\x32\x32\x18\x65\x0f\xd3\xaa\x8a\xac\x64\x6b\x93\x6c\x0a\x6b\xa2\x59\xd3\x68\x67\xdf\x7f\x5d\x5e\x02\xb0\x8e\x63\x73\xce\xa5\x0a\xf2\xb1\x36\xca\xba\x8b\xdf\xab\x3b\xcf\x6c\xc7\xf3\xc2\x90\x7d\x9d\xbc\xc6\x78\xe7\xfe\x3d\x37\xea\x91\x2a\x9d\xdc\x46\x95\x46\xbc\x12\x2b\x13\x6e\x84\x9a\xd1\x50\x3b\x1a\x4d\x07\xae\x18\xe2\x38\x34\x92\x4d\xa6\x20\xc8\x60\x24\xaa\x3b\x38\x7a\x3d\x51\xe1\x08\x9f\x88\x69\x1c\x4b\x17\xb6\x71\x22\xa6\x78\x54\xab\x93\xc8\xa2\x28\x8c\x29\xbf\x00\x1b\x01\x6c\x27\x10\xb8\x37\xc6\x55\x11\x6b\x7a\x77\xcf\x20\xea\x58\xef\x8e\x88\xe5\x62\xef\xa7\x9f\x7e\xf8\x79\x6f\x18\x85\xb7\xd0\xca\x20\xb8\xf5\x64\xb0\xf7\x73\xba\x37\x9f\x6e\xee\x15\x77\xcf\x18\xf8\xb0\x3d\xb5\x80\xb4\x2d\xe1\xc7\x42\x52\xe6\x6b\x2d\x0a\xb0\x87\xab\x5b\x42\xc1\x19\x4d\xdb\xfa\x31\x3b\xef\x92\x5a\xb4\x6c\x46\x4c\xa0\xa1\x9d\xeb\x01\xd5\x98\x11\x77\x2b\xdf\x6d\x47\xdd\x15\x4e\x76\xee\xa8\x56\x71\x8c\x3c\x0d\x35\x3e\xc7\xb7\x41\xc2\xc5\x28\x62\x61\xb8\xef\x75\x09\x92\xef\x0d\x48\x5a\x4e\x53\x45\xff\xb8\xf7\xe0\x1f\xf7\xee\x47\x3d\x73\x30\xfb\x85\x09\x69\x64\xcf\xd4\xdd\xc3\x30\x7c\x80\x7b\xd1\x3f\xee\x3f\x8a\xb4\xd8\xe1\x91\x21\x25\x26\x4a\x92\x46\x70\xd6\x82\xe0\x2c\x8c\x91\x9e\xe1\xd1\xf7\x3f\x10\x42\xf2\xed\xf6\xfb\x07\xf6\xf7\x67\xf7\x3e\xbc\xe7\x12\xf2\x5f\xc8\xf7\x3f\xc5\x71\xfe\x90\xfc\xf0\xa3\x79\x7b\xf0\x83\x79\xfb\x79\x60\xde\x7e\xfe\xd1\xbc\x0d\xef\xdd\xdb\x6e\x05\x21\xe4\x86\xf5\x1d\xa1\x8e\x63\xf4\xfd\xc0\x55\xae\xd7\x4a\x8e\xc7\x69\xcf\xb5\x6f\xda\x4e\xf2\x87\xc3\x7b\x3f\xe9\xc4\x7d\xbd\xde\x92\xfc\xe1\xbd\xc1\xf7\xfe\x7d\xf8\xf3\xbd\x6d\xfe\xcb\x2f\x0f\xa6\x3d\xfd\x72\xef\xa7\xed\x83\xfb\xb1\xc9\xf3\xc3\x0f\xf7\x7e\x7e\x60\x9a\xfe\xe1\xc7\xfb\xdf\x7f\xef\xb2\xdf\xbb\xf7\xbd\xce\x3e\xbc\x57\xe6\xd7\x85\xe3\x07\xf7\x1b\xe5\x51\xd6\x23\x43\xc8\xc9\x83\x1f\x7e\xb8\xff\xa0\x87\xd0\x70\x70\xef\x7e\x9c\xe3\x87\x0f\x87\x83\xad\x79\x6e\xc0\x07\x83\xab\xff\xfb\x81\xa9\xff\xa7\xb0\xfe\xe1\xbd\xb0\x81\xd6\x06\xcb\x15\x9f\x7e\xf3\xba\x11\x1b\xb9\x7a\xf7\x4e\x16\x1c\xc7\xdd\x2e\x6a\x5c\x39\xf2\x2f\xdf\x25\x62\xae\x7c\xb0\x61\x00\xbf\x75\xd1\x84\xcd\xf1\x77\x82\x3e\x68\x62\xbf\x4c\x6f\x4e\x8d\xe0\xb6\x63\xf7\xbf\x62\xc6\xcd\xa5\xe2\x73\x25\xd1\x56\xd5\x0d\x41\x64\x88\x1d\x59\xa4\xf6\x88\x64\xc0\xb7\xfc\x92\xb1\xed\x34\xaf\x55\x70\xe7\x91\xd8\x1c\x75\xab\xd5\x35\x6a\xbb\xd2\x86\xfb\xee\x50\xec\xfd\x52\x38\x2e\x5d\xdb\xba\xb4\x05\xe2\xde\x97\x70\x42\x81\x4f\x47\x48\xeb\xff\xb2\xc6\xa2\xb7\x5b\xd9\x4f\x17\x0b\x71\x55\x5e\xe5\x93\xe3\xed\xb6\x7b\xea\xe4\x9b\x1d\xbf\x56\x1b\x1e\x43\xb3\x49\xd2\x1d\x94\xd8\x40\x8b\xbf\xee\x40\xc9\x30\xb9\xd5\x15\x04\x29\x23\xbf\x99\x21\xc5\x71\xd7\xf0\x01\x63\x17\xbf\x66\xe6\x52\x06\x0c\xee\x93\xf9\x32\x46\xbc\xe5\x08\x1e\x77\x34\xd2\x77\xd9\x5c\x6b\xef\xc2\xe4\xd3\x89\x98\x8e\x58\xcb\x25\x48\x2c\x8e\x79\x4b\x32\x1f\xeb\x12\xc4\x5c\xd9\x0d\x12\x27\x25\x94\xed\x4d\x95\xe6\x23\x37\x17\x95\xe1\x24\xe4\xc1\xbc\x45\xb6\xa0\xd5\x55\x5b\x9a\x45\xf9\xb1\x86\xdd\xf4\xad\xe9\x1f\x60\xa6\x41\x9d\xc0\xcc\x09\x7b\xa1\xa5\xc5\xb7\x7f\x2d\x0f\x1e\x31\xb2\x39\xd5\x72\x39\x55\xed\x91\x25\x7a\xd1\x64\x1a\x19\x09\x65\x99\x26\x26\xa6\x40\x1a\x01\xe3\x33\x96\xed\xdc\x40\x19\x14\x89\x7a\xd4\x78\x38\x83\xa4\x2b\x9a\xaa\xd6\x9a\x8b\x02\x4e\x9a\xd2\xe8\x63\xd6\x74\xc7\xb5\x57\xa7\x5e\x34\xe5\xc6\xc7\xcc\xd9\x66\x14\x9c\x30\x73\xba\x3a\x99\xd0\x29\x2e\xe0\x1d\x23\x26\xe8\x66\xb8\x5a\xcb\xab\x15\xe0\x33\xd3\x34\xd9\x49\xec\x70\xa8\x25\xc2\xd9\xec\xb7\x35\x95\x37\xef\x24\x9d\xb3\xeb\xa4\x3b\x04\x83\xd0\x4f\x84\xca\xf5\x8b\x8b\x34\x92\x44\x36\xd4\x88\x7f\x3f\xa2\x5c\x31\x4e\x17\x3a\xcb\x8c\x2e\xd8\x92\x29\x2a\x93\x28\x8e\x3c\x2b\x36\x76\x27\xfd\x24\x93\x03\xd6\xb7\x8f\x2e\xc5\xe8\xae\xf9\x5b\xbe\xb8\xd1\xa5\xad\xca\x90\x7c\x0e\x94\x87\xe4\xc6\x28\x29\x4e\x93\x98\x7c\x66\xd3\x12\xe0\xdd\x21\xe4\xfe\x18\xe6\x2d\x17\xf3\x74\xde\xb1\x8a\x2e\xe5\x17\x6c\xf5\x66\xbd\x58\xd8\x92\x4a\xb2\x4c\xe9\x57\xb3\x83\xc0\xf8\x99\x31\x47\xbf\xa8\x60\xeb\x09\x4a\xdd\xc1\x17\xe6\x60\xae\x94\xb5\x08\xb9\x84\x4b\x62\x29\xcc\xae\xf1\x2d\x1b\x5f\x92\x0c\x71\xb8\xc4\xc9\x65\xe8\x10\xaa\xbb\x3a\xbe\x24\x0b\x74\x89\x3d\x0e\xd9\x30\x53\x27\x0c\x5d\xea\x35\x7b\x49\x0e\x58\xdf\x13\x51\x74\xd9\xc6\xfc\x3b\x6a\xa7\x46\x23\x85\x28\x63\x8f\x73\x87\x05\x2e\x6d\xd0\x39\x4f\x09\xd3\x38\xee\xae\xc6\x29\xe2\x70\xe8\x27\x41\xc2\x39\x44\x17\xf4\x26\x82\x39\x4e\xf8\xe8\x92\x44\x51\xd1\x12\x08\x06\x2d\xc9\x25\xde\x6e\x77\xae\x4f\x5a\x6e\xb7\xd1\xa9\x3d\x0f\x52\x4f\x6c\x8a\x50\x26\x23\x3b\x63\x5c\xd5\xd2\x0e\x58\xc5\x8b\x2e\xcb\xab\x1e\xd3\xf1\x64\x86\x56\x63\x9e\xdc\xda\x55\x7b\xc1\xc7\x0c\xa5\xe8\xb2\x91\xc1\x58\x53\x4c\x96\x69\x32\x99\x21\xee\x73\x3a\x31\xec\x12\x63\x1b\x65\xf2\x0c\x6e\xc8\x64\x5a\xf9\x8a\x1b\x68\xb9\xf6\x6f\xcc\x7c\xee\x4c\x0c\x3e\x23\x93\x8d\x33\xe9\x7b\x91\x7c\x30\xbe\x74\x11\x78\x21\xc2\xd6\x75\xd5\xdb\xfb\xa7\xe5\x7d\x2b\x27\x4c\x4b\x0b\x67\x24\xab\xae\x54\x39\xad\xa9\x1d\x97\x78\x74\x46\xf2\xf1\x69\x3f\x17\x52\xa1\x1c\x27\xa7\xe5\xbd\x3d\x57\x64\x30\xba\x7a\x78\x56\x49\x6b\x57\x16\xef\xf6\xc9\xd9\xe4\x6a\x0a\xd7\x64\x87\xee\xee\x07\x77\xb1\xef\x5b\xeb\xd2\xd8\xfd\x26\x97\x93\x7d\x33\xe6\x2e\xb3\x7d\xed\x12\x72\x6d\xeb\x3b\x20\x66\x8c\xe3\x16\x34\x96\x63\x89\x38\xec\xe3\x84\x27\xdc\xdd\xff\xde\xdb\x4f\x34\x55\xdb\xd7\x54\x0d\x8f\x2e\x18\xba\x01\x85\xae\xe1\xe0\xd6\xb5\x52\x5d\x2f\x7e\x53\xc0\x31\x23\x3b\xcc\xb0\x49\x89\xeb\x84\xb0\xdd\x99\x58\xc1\x8e\x57\x6d\xb7\xf4\x04\x3a\x64\xa3\xf2\x6c\x01\x51\x1e\x45\x02\xd8\x04\x69\x6d\x7b\x27\xfe\x6b\xfb\xc1\xde\x03\xfb\xd1\xdc\xe9\xa1\xc4\x2d\x27\x7b\xdd\xa5\x43\x39\x55\xdb\xed\x21\xf3\xcf\xb5\xf3\x09\x65\x8e\x38\x76\x34\xb5\x91\x18\xa8\x0c\xe1\x97\xf6\x5e\x1d\x9f\xd3\x8e\xcb\xd0\xb1\xa7\xcb\xcb\x83\xc7\x94\xa9\x73\x2a\x3b\xa6\x0d\xe8\x54\xb5\x42\x47\xc8\x4e\x15\x0c\xcc\x1f\x30\xae\xd8\x42\xa3\xbb\x96\x12\x5b\x58\xbf\x75\xa4\xb5\x46\xa0\xa1\xcc\xd3\xde\xc7\xf7\xfc\x82\x8b\x2b\xde\xb1\x99\x7c\x37\x57\x52\x5c\xb2\x19\x9d\x69\xd8\xf1\xb2\x99\xc2\x6a\x96\x75\x06\xc0\xb5\x3e\x7b\xc8\x5c\x98\x09\xef\xb1\xd3\x1a\x54\xce\x66\xd9\x6e\x4f\x18\xf2\x2f\xd8\xca\x44\xe5\x2b\x34\x59\xde\x2e\x3d\x53\xfd\x7a\x96\x71\x33\x21\x39\x64\x8d\x94\x80\x6b\x56\xc7\xb9\xfa\x65\xe2\x58\x17\xa8\xf8\x6a\x37\xf8\x54\xb2\x58\xba\xc3\x5c\xdb\x7a\xd6\xc8\x33\xde\x49\x49\x2a\xc4\xf3\x49\x01\x8b\x0e\x3a\x57\x26\xea\xce\x55\x39\x82\x0f\x9e\x99\xb7\xf5\xc3\x7e\x1a\xfb\x87\xe4\xb0\xc1\xe5\x65\xd2\x3a\x41\xee\x63\x59\x4e\x26\x01\x35\xdf\x91\x0f\x6e\x6f\xb8\xca\x34\xde\x4d\xaa\xea\xac\xd2\xfc\x3d\xe6\xc2\x4b\x1c\x3c\x10\x38\x64\x43\xaa\x68\xed\x7a\x2d\xcb\xb8\xf1\xae\x9b\xac\x25\x04\xa2\x47\xdb\x28\xca\xaf\xe3\xe0\xd9\x54\xe2\x5f\x40\xb3\x86\x5b\x7a\x22\xa4\x1a\xdb\x1f\x1b\xd9\xb5\x45\xb2\x69\x6d\x74\x27\xdb\xb8\x2d\xd1\x74\x63\x27\xd5\xd8\x84\x46\xad\x37\xf4\x58\xd0\x8e\x25\x41\x03\xf0\x6f\x18\x45\x91\x96\xc9\x4f\x18\x2a\x93\xe2\x18\x71\x52\xbe\x59\x0b\x0c\xa4\x8e\x2b\xef\x28\x3f\xe5\xc1\x10\xe2\x9d\xe7\xa2\x68\xc4\xac\x9d\xd4\xd8\x31\x9f\x5a\x82\xc2\x78\xe7\x88\x8d\x6b\x69\x09\xd5\x84\xd4\xca\x8c\x91\x89\x91\x43\xfb\xee\x75\x5c\xa6\x27\x91\x15\xce\xa3\xa4\x4c\x32\x5d\xca\xc8\x11\x9b\xb0\xe9\xc8\xc4\x55\xa8\x71\x6d\x69\x2e\x1d\xd3\x60\x8f\x63\x6e\x59\xb7\x7d\xad\x0c\x2e\x39\x19\x8c\xf2\xd0\xf0\x96\x5b\xee\xb5\x26\x7c\x92\x4f\x47\xa2\x9a\x5f\x6b\x3e\xd4\xa3\x9b\xac\xa7\xdb\xed\x05\x43\x29\xbc\x60\x48\xbf\xc1\x1a\x32\xdd\xd0\xce\x1c\x40\x50\x1e\x84\x5f\x83\xa2\x5c\x4b\x36\xcc\xaf\x03\xb0\xeb\x2a\x88\x80\xd6\x88\x06\x92\x0a\x47\x67\xcb\x07\x5b\x6e\x67\xf1\x88\x92\x0d\xd9\x33\xf4\x0b\x7f\x0f\x81\xa8\xa8\x05\x86\x39\x31\x3e\x70\xa2\x49\x3e\xcd\x7d\x69\x51\xb5\x17\xd6\x20\x4f\x71\xdc\x34\x19\x96\x59\xc6\xf3\x1e\xd1\x6c\xf2\x27\x62\x4d\x5f\xc3\xc1\x60\x70\xff\x1f\xf7\x1f\xc5\x51\x52\x7d\x39\xb8\xf7\x8f\x9f\x1f\xff\xe3\xe7\xfb\x71\x84\x61\x51\xc9\x69\xf3\xde\x22\x89\xa2\x02\xc3\xab\xa6\xff\x8d\xbf\x24\xc2\x5e\x3c\x17\x04\xd3\xb1\x77\x49\x55\xaa\x75\x7d\xf2\xcb\xaa\xe3\x18\xa5\x84\xf6\xa2\x71\xd4\x3b\x66\x06\x2b\xf8\xf8\x13\x9f\xa8\x29\x4a\x81\x03\xc3\x89\x09\xfb\x62\xce\xee\xfa\x64\x86\x13\xff\x78\xcc\x90\xc0\xc0\x70\x01\x77\x58\x8b\x1b\xff\x8e\xf3\x99\x6e\xaf\xe4\xc7\x61\x08\xa2\x71\x2d\x1e\xd1\xa6\x30\xc6\xe1\x3b\xd6\xa1\x63\x5c\x3e\x25\x7a\x1d\xea\x0f\x2e\xe4\xb1\x20\xd1\xdd\x74\xc5\xee\x5e\x0e\xee\xe6\x54\x29\xc6\xcf\xf2\xbb\x76\x17\xc0\x54\xb5\x97\xce\x66\x11\x30\xb2\x29\x20\x0d\x42\x69\x57\x6e\xe3\xfd\x53\x31\xbb\x31\x8e\x4a\xf6\x31\xbc\x9b\xde\x24\x8c\x1b\xe1\xe5\x82\x1b\x6e\x5e\xb3\x3c\x67\xfc\xac\x23\xe9\x97\x35\x93\x74\xd6\xe9\x98\xd0\x3a\x54\xd3\xe0\x8e\x2e\x6b\x1c\x1d\x69\xff\xce\x17\x83\x3d\xfe\x5b\x1e\xc7\xb5\xbd\x88\x9d\xef\xb8\x3d\xb8\x10\x9b\xa8\x29\xd9\xcd\x3d\x51\x26\xe4\xdf\x2b\x86\x5c\x24\x1c\xde\x13\xa0\x8c\x14\x2b\x31\x2e\xe0\xc9\xff\x8a\xd3\xb2\x60\xba\xa7\xff\xbf\x9e\x97\x37\xff\xab\xcc\x8b\x14\x0b\xfa\xbf\x67\x04\x17\xf0\x9e\x91\x46\xd0\x89\xc0\x92\x12\x44\x8b\x0d\xb4\xbe\xd0\xcd\xde\xb0\xab\xf6\xfb\xd0\xcd\xf1\x15\xdc\x2d\xaf\xb2\x30\x77\x9f\x63\x0c\x4f\x19\x59\x2a\x14\xbd\x38\x38\x79\x77\xf8\xf6\xf8\x6d\x84\xe1\xcb\xae\x91\x0f\x5e\x33\xf2\x9e\x8d\x5b\x6b\x6e\x35\xc5\x11\x73\x15\x3e\x7c\x45\x0a\x9e\x32\x3c\x56\x93\xa7\x6c\xda\x2e\x7a\xd5\x6d\xef\xa1\x45\xa6\xf6\x6d\x5c\x37\xbf\x97\x3d\x4b\x6a\x45\x6c\x07\xc7\x5f\x98\xbb\x50\xe7\x11\x6b\x1e\x0c\xfe\xc0\x48\x77\x38\x9a\x4c\xcd\x74\x6a\x3e\xc9\xe9\xb5\x8a\x18\x47\xe7\x8c\xb8\x54\x84\xf1\x18\xad\x18\x79\xcd\xd0\x6b\x86\xce\x19\xc6\x1a\x6c\x4d\x90\xc4\x31\x9a\x31\xb2\x62\x38\xd1\x55\x0e\x30\x20\x2b\x7d\xcc\xd8\x76\xbb\x1b\x36\x44\x05\xf8\x3c\x63\x93\x47\x6c\xea\x4d\x6a\x7a\x46\x0a\x6c\x74\xaa\x99\x46\x7d\x0d\xb4\x19\x83\x47\x0c\x6f\xb7\x4a\xd9\x47\x68\x09\x8b\x61\x3c\xb3\xdc\xe1\xa8\xaf\x8c\x6c\x5e\xb8\x31\x96\x33\x93\xe8\xa2\xef\x9f\x3d\xfb\x74\x72\xb4\xff\x74\xff\xf0\x45\x79\x4c\xfe\x28\xf9\xc0\x0a\x78\xc6\xc8\x57\xd6\xdf\x29\x05\xcf\xd9\xad\xe7\x9b\x3f\xfe\x3f\xec\xbd\xe9\x76\xe3\xb6\xb6\x30\xf8\x2a\x14\x52\x91\x89\x08\x9a\x5c\x33\x65\x58\xc7\xe5\x72\x25\x95\xd4\x90\x94\xab\x32\x49\x8a\x0f\x4c\x41\x16\x53\x14\xa9\x70\xf0\x10\x91\xdf\xca\x77\x7b\xee\x47\xe8\x3f\xdd\x6f\xd0\xab\x7f\xf4\x0b\xf4\x13\x7c\xf7\x11\x3a\xfd\x22\xbd\xb0\x01\x70\x96\xed\xca\x70\xee\xb9\x67\x25\xa9\x25\x93\x20\xc6\x8d\x8d\x8d\x8d\x8d\x3d\x6c\xd1\x5a\x17\x3b\xb7\xa1\x6b\xca\xb8\x92\xa8\xa8\xaa\xc9\xcd\x4f\x1d\x22\x4d\x2f\x5e\x98\x43\xe2\x61\xa9\xc2\x16\x91\x00\x14\xd8\x7e\x0c\x26\xc1\x8c\x7e\xe6\x90\x28\x25\x9f\x67\xe8\x17\x96\xf0\x2c\x49\x4c\x74\x72\x02\x75\x9e\x9c\x20\xc7\xdb\xa4\x4d\xc1\x7a\x5a\x43\xe2\x09\x58\x47\xc1\xd5\xc6\x8c\x68\x8e\xb1\x05\xc9\xc8\x53\x15\xc3\xcb\x0f\x1a\x1c\x65\xe4\x4d\x60\xd1\x01\xac\x55\x07\x27\x33\x4c\x38\xf5\x6a\x11\xd6\xeb\x56\x22\x85\xab\x80\xdc\xb1\xdb\x17\xa6\x87\xab\x61\x26\xc1\xfc\x23\x8f\x7c\x5f\x37\x19\x3b\x04\x7d\xe4\x90\x47\x06\xea\x64\x97\xa0\x1d\x64\xb0\xd0\x60\x46\xd6\x67\x84\x53\x33\xc0\x44\x9c\xa0\x54\x5f\x03\x6c\x79\xbd\x6c\x20\x34\x20\x1e\x04\xa9\xd1\x4a\x64\xdf\x6d\x99\xfa\x6f\x20\xbd\x19\x67\xc8\x17\xb5\xa5\xf4\xd5\x76\x4c\xf9\xbe\x99\x41\x24\x0c\x6f\xbe\x95\xea\xce\xea\xb4\xa2\x3d\x3e\x54\x20\x13\x09\x96\xb5\xdd\x5e\x69\x49\xd4\x0a\x24\x6e\xdf\x38\x92\x42\x18\x6b\x9d\xbe\x9e\x44\xb3\x51\x78\xe1\xa8\x19\xb0\x59\xc8\x91\x58\xc2\xc8\x82\x47\x90\xd8\xe9\x17\xee\x45\x81\x23\xde\xea\x26\xdf\x05\xed\x51\x2f\xd7\x15\xbc\x45\x3e\x9c\xa6\x64\x51\x46\x7f\x02\xc6\x1f\xeb\x22\x99\x25\x4b\xba\x9e\x7c\xe1\xcc\x92\x64\x5d\xf5\xc8\xe1\xb7\xdb\xeb\x89\x3f\x23\x2b\x0a\xa3\x5b\x26\x89\x2b\x78\xd9\x73\xaa\x5c\xfc\x40\xf0\x3d\x30\x7c\x11\x7d\x4f\x92\x25\xc8\x92\xda\x6d\xd3\x16\xe4\xe9\x5c\x4d\x38\x90\x76\x31\xaf\x8d\x74\xca\x06\xe3\xc7\x76\x5b\x50\x33\x5b\xd0\x9b\xef\x9c\x76\xdb\xfc\xdc\x19\x7f\xee\x98\x36\xf9\x4e\x70\xd7\x75\xe1\x9d\x2d\x3a\xdc\x6e\x47\x91\x69\x93\x2f\x1c\xf2\x95\x83\x61\xc1\xda\x64\x01\x3a\xf8\x98\x68\xe0\xc2\x44\x2d\xdb\x6d\xfd\xde\xa2\x74\x09\xb1\xf3\x04\x41\xa3\xad\x41\xd1\xd7\x46\xee\x86\xa8\xa0\x7e\x9e\x62\x02\xd0\x69\x51\xba\x82\x06\xd7\xa2\xc1\x15\x10\x05\x3e\xa3\x2b\xe2\x63\x67\x61\x86\x54\xca\x8d\x43\xcb\x35\x75\x53\x98\x88\xb9\xb6\x9c\xf1\x4a\x24\xc2\xbc\x63\xa2\x40\x25\x52\xf4\x8c\xe3\x94\x30\x50\x62\x89\x41\x1b\x0c\x9b\xdf\x38\x49\x32\x4f\x92\x96\x4c\x58\x0b\xe2\x7b\x2c\xda\x8d\x49\x38\x89\x67\x2a\xca\x77\x41\x51\x94\xd7\x3c\x2d\x41\x0d\x29\xc9\xd5\x58\xc3\x94\x44\x4c\x9b\x20\x72\x56\x36\x41\x94\x93\x99\xe3\x08\x26\x1e\xa3\xdf\x3b\xa6\x94\xcc\x6a\x6f\x4e\x15\xad\xe5\x88\x15\x55\xe9\xab\x55\x10\xd5\xb5\x9f\x20\xb4\x82\x37\xe7\x97\xd6\x80\xbc\x77\x3c\x08\x64\x5d\x31\xcb\x93\x1b\x10\x67\x4a\x09\x1e\x6c\xcb\xa0\x34\x98\xc7\x88\x42\x24\x0b\xd6\xd3\xe9\x68\xeb\x34\x9e\x24\xc1\x3e\xd5\x8a\x40\x63\x53\x17\xd2\xe6\xca\x9b\xa2\x6a\xbe\xd2\xf3\x1f\xa4\xd8\x92\x13\x41\xa9\x37\x56\x39\x02\x6d\x04\x90\x5a\x39\xd2\x64\x5f\x41\xa5\x28\xcb\xa0\x12\x27\xd2\xb9\x50\xfe\x21\xcd\x11\x0e\x8f\xc0\x59\x8e\xe2\x3c\xa9\xf6\x9c\x43\x0e\x79\x86\x03\xe2\x31\xc3\x11\xf1\x92\x61\x82\xb4\xe3\x60\x5b\xad\xaf\xd4\x6c\x7e\xee\x34\xf9\x09\x30\x05\x1b\x5b\xe0\x42\x70\xbb\x1d\xb4\x28\xf5\xda\xed\x97\xa6\x4f\x0b\x4c\x09\x6e\xb7\xfd\x16\x44\x30\xcb\x57\xe1\xe7\x8e\x19\x11\x1f\x74\x80\x7c\x46\xd1\x64\x1a\x4d\xbd\xe9\xf9\x74\x31\x0d\x8c\xff\xe7\xff\xf8\x7f\xff\xb7\x5f\x7e\xfd\xe5\x97\x5f\x7f\xf9\xaf\xbf\xfe\xf2\x6f\xbf\xfe\xf2\xdf\xfd\xfa\xcb\x7f\xff\xeb\x2f\xff\xc3\xaf\xbf\xfc\x8f\xbf\xfe\xf2\x3f\xfd\xfa\xcb\xff\xfc\xeb\x2f\xff\xcb\xaf\xbf\xfc\xaf\xbf\xfe\xf2\x7f\xfe\xfa\x5f\xff\xf7\xff\xef\x97\x5f\xa6\xf1\xee\x60\xf7\x11\xfc\x3e\x9e\xc6\x0b\xbe\x58\xcc\x10\x71\x18\xd5\x91\x08\x7f\x40\x1d\x9f\x89\x7f\xe8\x13\x84\x09\xcb\x3e\xe8\xc4\x3b\x08\x13\x9b\xdd\xe4\xfb\x50\x0a\xb1\xd5\xae\xf3\xcc\xe4\xb9\x06\xc1\x10\x5c\x05\x7a\xa0\xed\x2b\x75\x6d\x1c\x46\x10\xc2\x98\xec\xd6\xbe\x30\xf5\xc5\x4b\x53\x12\x32\xba\x09\x23\x16\x44\x96\xcd\xc0\xb0\xd4\x9b\x8b\xa7\x5d\x4c\xa2\xc0\x59\x89\xc7\xbb\x38\x25\x31\xa3\x5f\x47\xbd\x05\x71\x19\x78\x0a\x58\x30\xf0\x28\x35\x67\x34\x64\x10\x15\x8a\xac\x19\x7d\xdf\x53\xd1\x31\x97\x8c\xae\x59\x81\xd0\xae\x18\x45\xaf\xf4\x05\xdb\x53\xf3\x35\x37\x97\x0c\x63\x72\xce\x9a\xcc\xbb\xcb\x37\x2d\xf4\x89\xb4\xb1\x19\x35\x05\x71\x88\xdb\xed\x58\x9f\x86\x76\x05\x39\xba\x77\x97\x52\x6a\x72\x6a\xc6\x74\xce\xcc\x18\xe3\xa2\x5e\xcb\x00\xe3\x24\x01\xcd\x1f\xa9\xb1\xf1\xe8\x11\x05\x67\x2c\x71\x31\xd3\xae\xc8\x34\xdc\x1d\x14\xb5\x98\x5e\xb1\x57\xa9\xbe\xf1\xba\xf7\x48\x96\x57\xbb\x5b\xa9\xec\x10\xcb\xbd\xce\x78\xf0\x00\xf6\x36\xe3\xf1\x23\x2b\xa0\xbb\xc4\xa7\xf7\x1e\x8f\x4e\x03\xce\xde\x8f\x20\xf9\xe1\x63\xf9\x79\x38\x1c\x5a\x01\x7d\x44\x7c\x7a\xff\xbe\xfa\xae\x75\x4c\x65\xcb\x9d\x18\x6e\xcb\x18\x35\x1d\x1a\x67\x1a\x50\x5a\x3e\xa3\x15\xfa\x46\xb6\xf2\x21\x54\xd3\x73\xc2\x7b\xf7\x1e\x25\x49\xb8\xef\x17\x46\xa2\xd1\x25\x53\xad\x72\x48\xa0\x35\x34\x3a\x31\x38\x43\xfa\x3e\x32\xf5\x74\x91\xd6\x9a\x99\xc8\x18\xf8\x43\x84\x93\x04\x5e\x06\xa7\xf0\x2c\x1e\x3b\x83\xcb\x21\x04\x31\xd3\x52\xc1\x33\x46\xae\x1a\x26\xb5\x76\x76\xdd\x1b\x8e\x07\x16\xd0\xb9\xa2\x95\x48\x91\x89\xbb\x62\xed\xb6\xb9\x62\xe3\x32\xcf\xbe\x64\xf2\xba\xef\xf5\x42\x6d\xb1\x38\xc5\xd8\xd2\x9d\x6d\xd1\xa7\xa6\x87\xf1\x38\x60\xb0\xf7\xae\x99\x79\xce\x20\xee\xa9\x47\xae\x18\xb6\xe0\x25\x25\xa7\x8c\xfe\x38\x8e\x99\xb9\x66\xd8\x42\x2f\x0f\xbe\x3d\xf9\xfa\xe0\xc5\xbb\x23\xf2\xf2\xf9\x2b\xf5\xf4\x8a\xbd\x22\xaf\x8e\x3e\x3d\x78\xfb\xfc\xeb\xa3\x93\xe7\xaf\x9e\x3d\x7f\xf5\xfc\xed\x77\xe4\xcb\xd7\xc7\xcf\xcb\x29\x47\x5f\x1e\x3f\x7f\xf1\xfa\x15\x71\xc2\x67\x8e\xe7\x44\x9c\x38\xe1\x73\x2f\xe2\x67\x3c\x20\x4e\x28\x2a\x71\xc2\x63\xb6\xe0\x3a\x4d\x34\x75\x7c\xf0\x4c\x54\xf0\xf6\xe8\xd3\xa3\x37\xd0\x62\x29\x01\xa6\xe4\x99\xeb\xb3\x88\xe8\xd9\x29\xd4\xb9\x08\xfc\x95\xd2\x6e\x08\xc0\x35\x89\xf6\xda\x48\x10\x26\x17\x8c\x0e\x46\xa7\x5a\xb7\x73\xff\x82\x8d\x2e\x58\xa7\x83\x7f\x36\xd7\x8c\x9c\x31\x7a\xca\x26\x17\x6c\x86\xc1\xaf\xdb\x95\x48\xc1\xed\xf6\x82\xc9\x47\xe2\x32\x99\x0b\xe3\xd1\x55\x61\xd5\xd2\x25\x23\x4b\x56\x3a\xc7\x5e\x31\x72\x1c\x99\xef\x49\x86\x1d\x57\x4c\x8a\x49\x0f\x58\xdd\xbc\xe9\x8b\x6c\x5f\x43\x85\xc3\x87\xb4\xa5\x69\xb7\x4d\xde\xa1\xe8\x0c\xe2\xc2\x38\x67\x9e\x1f\xf0\x43\x26\xe3\x3f\x74\x28\x72\x20\x79\x15\xbb\x91\xe3\x3a\x9e\x4e\x5d\x41\xea\xdc\x8f\x0e\x5c\x5d\x3e\x84\xa4\xd8\x73\x6c\x7f\xae\xb3\xc5\x90\x16\x46\x8e\xfd\xfe\x4a\x25\x5d\x09\xfe\xa3\xe0\x74\xfd\x92\x95\xf4\x58\x14\x1d\x06\x0d\x5d\xb8\x30\x66\xe4\x35\x23\xc7\x8c\x6e\xde\xbd\x3a\x7e\xf7\xe5\x97\x10\x02\xec\xe4\x3b\xab\xe9\xf8\x78\xc9\x4c\xc4\x10\x11\x4d\xe4\x63\x74\x59\x18\x3d\x17\xbb\x36\xdd\x25\xca\x05\x5c\x8f\x5f\x72\xdb\x44\xec\xd4\x9e\x23\x30\xf6\x78\xf2\xe6\xf5\x17\x47\xaf\x4e\x0e\x0f\xde\x1c\xbd\xdd\x5a\xf3\x0f\x01\x22\xe8\xec\x96\x75\x87\x51\x80\x54\x64\x67\xbd\xb7\x14\xc4\x11\x22\x0f\x39\x64\xdb\x15\xdf\xdf\x33\x7a\xc2\xc8\x97\x8c\x9a\x47\x8c\xf6\x59\x9f\xbc\x66\xb4\x7f\xfa\x49\xff\x8c\x9c\x30\xb9\xd8\x8e\x18\x41\x0c\xe1\xec\xfd\xb5\x7a\x1f\xb4\x28\x3d\x62\x79\xcf\x92\x04\x42\x2b\x15\x52\x30\xf9\x91\xd1\x63\xd6\x2b\xc1\x33\x49\x8e\x59\xaf\x08\x06\xf2\x86\xd1\x4c\xa8\xd4\x37\xf1\x78\xdc\x57\x43\x43\x78\x32\x9c\x8d\xcc\x2f\x59\x92\xbc\x61\x49\xf2\xa3\x40\x5f\xf3\xfd\x35\xbb\x87\xb4\x80\x61\xf4\x47\xd6\x6e\x3b\x0a\x19\x88\x4d\x0f\x54\xcf\x1d\x4c\x04\xad\x94\xbe\x9d\x49\x4c\x07\xc4\xcd\x03\xbe\x0a\xc2\x03\x6a\xce\xa6\x4d\xed\x6c\xc7\x44\x57\x08\xb6\xcc\x3c\x76\xe2\x19\x12\xbd\xb0\x15\x1a\xbb\xb9\x3a\xac\x22\xd4\x4e\x71\xfc\x85\x17\x10\xab\xb7\x9c\x1c\xbf\x93\xc4\x29\x22\x3b\x9a\xca\xf8\x65\x93\x42\x99\xee\x10\xa2\x60\x85\x14\x99\x63\xcb\x40\x9d\xb0\x83\x30\x22\x2e\x45\x06\xea\xb8\x24\xee\x74\x30\x91\x2e\xb1\x33\x66\xc3\x1c\x5b\x3a\x9b\x8d\x31\x79\xc3\x24\x07\x50\xcc\x02\xdf\xef\x98\xe3\xd6\x74\x1a\xaa\x6c\x5f\x32\x30\xbe\x2e\x75\x3d\xa0\x7a\xc2\xd9\xd8\xb3\x1c\xe2\x62\xc2\xc6\xc1\xd8\x0c\x7a\x8e\xb7\x8e\x23\xaa\xfe\xaa\x51\xc7\x98\x04\x93\xc1\x8c\x8a\x9f\x42\x92\x04\x5b\xb1\xe2\x22\x48\x3a\x32\xbb\xd2\x5c\xb6\x0a\x5f\xe8\xc0\x12\x7d\x0a\x20\x6e\x59\x9e\xea\x28\x3a\x32\x56\x15\x77\x0a\xe5\x2d\x2e\x87\x1b\xb4\xdb\x41\xa6\x5f\xde\x6e\x1f\xaa\x41\x88\x9c\xc4\x23\x55\xb7\x0b\x3e\x1d\x8e\xfc\xbd\xea\x3e\xd5\xdd\x1d\xf9\x9d\x0e\xce\xc4\x99\xb9\x64\xd5\x9f\xb5\xdb\x66\x30\xf1\x67\x54\x7b\x64\xc5\x98\x68\x4f\xc2\xcf\x19\x7d\xcf\x4a\x9e\x61\x25\xd0\xeb\xae\x61\xfb\x3d\x89\xe3\x2d\x4a\x9f\xb3\x94\x6c\xc4\xb3\xf5\x9c\xa9\x7a\xde\xde\xc0\x0e\x96\x1c\x35\x96\x98\x42\xc2\xe8\x9b\xc8\xf4\x30\xb1\x69\xa6\x0f\xad\xf1\x7b\x6f\x90\x24\x6c\x9f\xda\xe3\x68\x8c\x90\x3a\x28\x58\x66\x50\x66\x1e\x18\xc6\x5a\xe9\x38\xd8\xbf\xff\xe0\xee\xf0\x71\x92\xb0\x8e\x58\x16\x76\x92\x98\x7e\x25\x73\x67\x28\xb2\x3f\xb8\xbb\x3b\x48\x12\x7f\xff\xfe\xc3\xbb\xf7\xee\x8e\xa3\x71\xa6\xf5\xcc\xb0\x15\x58\xe2\x5d\x22\x04\x23\xac\xb3\x8b\x2d\xbf\x0b\x25\x3a\x66\xd0\x85\x96\xf6\xf6\x86\x03\xdc\x01\x1d\xe5\x34\x25\x2f\x18\xdd\xd8\x50\xbd\xf5\x96\x99\xad\x21\x26\xb2\x32\x78\x1b\xe0\x94\xdc\x61\xf4\x05\x53\x2d\x90\xa7\xd9\x21\xef\x55\xf5\x90\x27\xc1\x52\x38\xe5\x8d\xbe\x77\x94\xd2\x14\x41\xda\xfb\x6a\x49\x48\xfc\xb4\x7c\xc4\xab\x56\x40\x24\x1b\x6a\x65\x0b\x5e\x1f\xf4\x9a\x4f\x78\x84\xd3\x57\xfa\x8c\xe7\x51\xae\xc2\x97\x81\xec\x1d\xca\x65\xb6\xce\xfb\x54\x5f\xa7\x8e\x9b\x0f\x71\x96\x19\xd1\x3b\x0c\x04\x49\x44\x15\xee\x64\x0a\xff\xfa\xe0\x17\x65\x87\xb3\x2c\x00\xca\x3b\x56\x71\xd6\xf3\x8c\x55\xc5\xd9\x72\xcf\xe9\xf7\xfa\xf9\x4e\x23\x50\xb1\xbe\xab\x67\x6e\x96\xc5\x5e\x1e\xf8\xf1\x3a\xa4\x1b\x66\xa1\x87\x28\x15\x47\x28\xf4\x50\x90\x2e\x84\x32\xb2\x19\x11\x74\x67\x8f\xed\xcb\x3d\xef\x27\x46\xd1\x9d\x01\xa2\x94\x22\x96\x67\xe9\xf7\xfa\x44\x24\x63\xf2\x52\xf6\x53\x7d\x40\x98\x3c\x61\xb4\xd5\xea\xf7\xfa\x93\x97\x6c\xd6\x6e\x23\x51\x52\xbd\xc9\x5d\x17\x4a\x7d\xbd\x6d\x30\xe6\xd8\xc2\x7d\x38\x56\x8b\xa1\x8c\xea\x23\xca\x4c\x5d\x95\x86\x29\xec\x19\x99\x01\xb0\x8e\x07\x85\xd8\xa9\x66\xb5\x32\xb7\x4b\xc6\x2e\x9c\x23\x25\xe4\x93\x04\x31\x04\xf6\x26\x83\x59\x92\xa0\x53\xf9\x3c\x84\x1b\x85\x9f\xab\x67\x5a\x12\x68\xab\xcb\x05\x97\xe1\x17\x1b\xbd\x59\xe7\x62\x69\xd0\xf5\xad\x77\xfa\x61\x4a\x1e\xb6\x28\x42\x93\x68\x26\xe3\x5a\x11\x46\x1d\x70\x7c\x57\xaf\x0c\x84\xaf\x7d\xa6\xe7\x16\xc1\x60\x94\xc3\x10\xd3\xf4\xe8\x26\xc5\x15\xaf\x40\x32\x70\xac\x4e\x98\xbc\x63\x4d\x5d\xf0\x44\xb6\x85\xcb\xce\x42\x8a\x10\xf1\x44\x3f\xc5\xec\xf8\x33\x4c\xbc\xad\xb0\x06\x83\x7b\xb8\x04\x10\x05\xc0\x23\x59\x8b\x0b\x44\x55\xba\x7b\x2d\x96\x24\x19\x06\xa8\x2e\xb6\x9e\xb1\x24\x69\xfd\xc4\x92\xe4\x09\xc3\x49\x52\xea\x7f\xeb\x6b\x26\x87\x69\xab\xc6\x49\x48\x3d\xd3\x27\x00\x99\xb2\xec\x46\x5b\xca\x64\xd3\x0e\x7d\x14\x84\x77\x2c\x20\xe7\x8f\x95\xe7\x06\xed\xdd\xc0\xd6\x2a\xd8\xe0\x3f\xc4\xaa\x7c\xcd\xa4\xba\xbc\xf8\x15\x44\x22\x9b\x37\x47\x5f\xbe\x38\x38\x3c\x3a\xf9\xe2\xe8\xe8\xcb\xe3\x93\x3b\x03\xeb\x27\x46\xde\x1c\x7d\x7a\xf4\xed\x97\x27\xfa\xd3\xf1\xbb\x27\xc7\x6f\x9f\xbf\x7d\xf7\xf6\xe8\xf8\xe4\xdd\xab\xa7\x47\xcf\x9e\xbf\x3a\x7a\x7a\x72\x78\xf0\xe5\xdb\x77\x6f\x8e\xac\x27\x2c\xc5\x24\xa6\xa1\xd8\xab\x5c\x1a\x0a\xee\xe7\x38\x32\xab\xbc\x1b\x89\x48\x8c\x05\x47\x5e\xe5\xf6\x88\x4f\x76\x29\xe5\xcd\x11\xb8\x5d\x6d\x93\x08\xf8\xce\x71\xda\x74\x53\x54\xca\x84\x53\x9c\x06\x20\x03\xac\x36\x24\xe0\x8d\xc2\x25\x5b\x21\x02\x34\xf9\xd3\x22\x4d\xfe\xac\x2e\xcf\xd1\xa0\xef\x98\xde\xf8\x53\xc9\x85\xeb\x5d\x7b\x88\x53\xf2\x2d\x6b\x8c\x58\xa0\x16\x70\xb3\x2a\x72\x31\x9c\xb2\xec\x32\xc7\xcd\x6a\x36\x75\x41\xbe\x1c\x8e\x21\x6a\x37\x64\x2c\x17\x43\xf6\x90\xcf\x8d\xd0\x17\x29\x82\xf0\xfb\xa0\x5f\x18\x2d\x99\x67\x30\xad\x2a\x61\xf8\x81\x21\xd0\x38\x67\xcd\x03\xd0\x2e\x56\xfb\x7c\x8b\xd2\xa7\x66\xd4\xe0\x2c\x58\x7e\xff\x08\x5a\x04\x37\xe3\x73\xc3\x17\xe7\x5e\x30\x0c\x8c\x9c\x53\x97\x1b\x01\xb7\xb9\x73\xce\x83\xbc\xea\xe7\x2c\x1f\x5a\x3a\xfa\x99\x99\x68\x25\x43\xff\x0d\xab\x08\x9e\xd9\x1d\xd6\x45\x46\xcf\x32\x5f\x1b\xf2\x42\x8c\x8f\xd5\xce\xcf\xf3\x70\x10\xf9\x9d\x6e\x30\xce\x1c\xa5\x78\xd8\x2a\xb0\x8d\x1c\x0b\x8a\xa3\xb6\x3e\x4f\x9c\x36\xaa\x4c\x78\x40\x65\x04\x65\xe9\x4e\xc0\x59\x98\x81\xf4\xff\x92\x19\xc7\x49\x6f\x3f\x92\x08\x7e\x21\x69\xa0\xde\x4a\x75\x91\x96\xaf\x18\x3c\x5d\xea\x5b\x66\xfa\xc4\xd1\x7a\x2b\xbe\x3e\xf3\x8d\xfc\x22\xab\x98\x29\x27\xd9\x04\x1c\x3f\xc5\x74\x30\x52\xb7\x38\xa6\x4d\x55\x15\x58\x99\x1a\x66\x0c\xbb\x3d\x19\xcc\xf0\x28\x9c\xc4\x33\xea\x12\xd8\x63\xc4\xf1\xb2\x58\xf1\x67\xcc\x74\xc8\xdb\xa8\x98\x86\x09\xc3\x58\x30\xde\xfa\x3a\x42\x70\x87\xf1\x18\xb4\xa4\xc3\x74\xa6\x77\xde\xcf\x59\xf5\x76\xe6\x3b\xd6\xe0\x83\xfd\x1b\x46\x3d\x25\xd9\x08\xb3\x41\x7c\xc1\x8a\x46\xd2\x5f\x31\xfa\x7e\xf2\x05\x9b\x91\xef\x19\xfd\x8a\xb5\xdb\x5f\xb1\xb2\x91\xf4\xf7\x0c\x64\x5a\xdf\xb3\xc9\xe7\x6c\xd6\xa2\xf4\x1b\xa6\x6d\xa4\xbf\x67\xe4\x73\x46\xbe\x61\x05\x8b\x42\x99\x8b\x7e\xc3\x52\x59\xe4\x3b\x36\x83\x5b\xcd\xef\x19\xf9\x8e\x91\x2f\x18\x26\xa1\x23\x1a\xcb\x4c\x4c\x23\x5b\xf4\xc5\x63\x58\xe6\x8f\x6c\xd1\x84\x07\x0f\x85\x66\x22\x9b\xa8\xb4\x52\x53\x91\x3d\x53\x79\x53\x69\x88\x2d\x76\x86\x32\x54\x3c\xbb\x79\x0f\x17\x88\xf7\xee\xcd\x0b\x13\x9d\x8e\x19\x1d\xb6\x4f\xe9\x6e\xdb\xa6\x77\x55\xc8\x40\xab\xdf\x67\x48\xca\xcd\xc3\x42\x94\x5a\xe2\x95\x04\x0e\x6b\x16\x2d\x3d\xb6\xe2\x14\xd9\x1f\xef\x0e\xe6\x88\x34\x06\xe8\x12\xdb\x32\xef\x49\x27\xba\x26\x3a\x15\x5d\xea\xd0\xa0\x13\x89\x8d\xb5\xc5\x41\xbf\x2c\x49\xb2\x56\xfb\x50\x15\x74\x49\x74\x07\x6e\xef\x97\x01\x5f\x24\x09\x82\x37\x88\xc6\x65\x22\x1b\xe2\x72\x30\x0a\x0a\xce\x7a\xc9\xc8\x11\x95\xc2\xea\x22\x51\x13\xc2\x38\x49\x5a\x7c\xc2\xed\x59\xc6\x50\xe8\xd1\x43\x80\x44\xd1\xf0\xdf\x4e\x11\xee\xc5\x21\x0f\xc4\x88\x32\x5e\xa3\xa1\xca\xc6\x66\x18\x3d\x15\x27\x58\xe8\x1b\x83\xbe\x5d\x7a\xdd\x2e\x1f\xb2\xab\x53\xbb\xd6\x9e\xd5\xef\xff\xfb\xbf\xfd\xb7\xff\xfb\xdf\xff\xeb\xbf\xff\x1b\xc2\xe0\x24\x39\x49\xd0\x47\x1f\x3f\x1d\x7c\xfc\x64\xd8\x94\x99\x7d\xf4\xdf\xfe\x2f\x91\x91\x85\xc0\x10\x0d\x6d\x80\x84\x27\x1a\x69\xca\x7e\x89\x94\x92\x88\xac\x1b\x4e\x4f\xb6\xbe\x25\x93\xfa\x40\xc4\xcf\x12\xa4\x12\x77\xa6\x42\xef\xd8\xb4\x15\xd8\xd5\x0b\x7d\x67\x61\xfe\xd8\x6e\x0f\x05\xf5\xb2\xcd\xcd\xa9\x35\x4c\x49\x60\x9b\xbe\x6d\x6e\x52\x22\xd8\xc5\x4d\xd9\x41\x4c\xc5\xb3\x8a\x6f\x4b\x06\x10\x9d\x22\xcd\x4a\xdf\x2d\xb9\x94\x11\x0c\xb5\xd8\xdc\x4f\xad\xdd\x14\xe3\xde\x69\xee\xde\x51\x6b\x12\x10\x0e\xac\x93\xb2\xa8\x35\x73\xa9\xcd\xc4\x9b\xd1\x87\x04\xa4\x3f\x7c\x71\xb6\x74\x7e\x7c\xef\xae\x3c\x7f\xfd\x53\x10\x46\x99\x14\x0f\x6d\xd1\x58\x81\xb0\x64\x00\x9f\x87\x2d\x18\x58\x4a\x22\x3c\xf1\x00\x49\x9a\xea\x6b\xd1\x33\x6e\xca\x7c\x1c\x63\x65\xc2\x01\xfc\xf7\x78\x9b\x45\xbe\x54\x0a\x09\x6a\x52\x5a\xe2\xd3\x21\x71\xe8\xcf\x51\x6f\x41\x18\x7d\xdb\x5b\x8c\x82\x7d\x7f\x84\x8b\x54\xf6\x5d\xc1\xe7\xb5\xdf\xe9\xcc\x04\xd7\xe2\x8c\xcf\xb8\x19\xe6\x91\x16\xcd\x10\x63\x0b\x92\x88\x4b\xb5\xbc\x9e\x2c\xe8\x60\xe4\xee\x2f\x46\xd8\xa6\xf1\x64\xd1\xe9\xcc\xc8\x8f\xed\x76\x4b\xed\x74\x21\xb1\x65\xf4\x48\x7b\x46\xc3\x89\x5d\x34\xef\xb7\x02\x9b\x30\xbb\x81\xab\x2e\x18\x54\x07\x63\x6e\x7e\x61\x7a\x18\x8e\xfa\x93\xe1\x0c\x5b\xe0\xa0\x35\xf3\xd2\x95\x39\xbb\x8f\x30\xe1\x69\x4a\xec\x6a\x7d\x7a\x27\x7b\x02\x7e\xc5\x20\xc8\xe4\xf8\xfb\xde\x02\x14\x23\x5e\x98\x03\xe2\x61\x6c\x45\x93\x60\x46\xbd\x94\x84\xf6\xf5\xb7\x18\x0a\xbc\x61\x93\xa3\x2a\x81\x71\x63\xf1\x63\xc9\xcb\xb2\xb8\x3e\x07\x2e\x8d\x9b\x63\xc0\x90\x45\x2e\x2d\x73\xc9\x9c\xde\x09\x4c\x1b\x93\x35\x05\x77\xa3\x8b\x76\xdb\x74\x69\xc0\x4d\x97\xc4\xfb\xbb\x85\xe2\xbb\x59\xf1\xdd\xcc\x9a\x6a\x9e\x24\x21\x95\xf6\x78\xed\xf6\xdb\xc0\x9c\x63\x98\x63\x29\x2e\x0a\x4d\x4e\xdf\x46\xa6\xad\xa5\x33\x78\xc4\xf7\xd7\xa3\x75\xa7\x83\x19\x5d\x8c\x5d\xd3\x9e\xac\x67\x64\x8d\x2d\xf8\x6b\xdb\xa6\x47\xd6\x84\xa9\xbb\x5a\x19\xf7\xc0\xf4\xe9\x5c\x4e\xab\x8d\x31\x5c\x7a\x2b\x61\x55\x38\x6a\x49\xb1\x83\xf8\xe6\xeb\x28\x05\xba\x6a\x66\x9b\x3e\x71\xc9\x44\x31\x0c\x64\x3d\x13\x3c\xa6\xa5\x5f\xf3\xa6\x34\x6a\xa8\x1e\xd2\x35\xf1\x52\x12\xdb\xb4\x3f\xf9\x61\x3a\xe8\x4e\xe3\xc1\xe0\xe1\xd1\xac\x4f\x5c\x91\xd2\x9b\xc6\x77\x07\x83\xdd\x69\xfc\xec\xd9\xe0\x48\xfc\x3e\x18\xce\xfa\x67\x64\x61\x53\xf4\xfa\x9c\x07\x0b\xd7\xbf\xb0\x0c\x90\x67\x19\x1e\xe7\xf3\xd0\xb8\x70\xe6\x5c\x20\x00\xc8\xe0\xc1\x22\x46\x7b\xdd\x27\x73\x9b\xbe\x64\xd1\xb2\xb7\x70\x7d\x3f\x20\x6b\x5b\xcb\x56\x17\x81\xbf\x3a\x54\xc2\x11\xb2\xb4\x1b\xbd\x72\x75\x76\x77\x3b\x0f\xef\x7f\x62\x46\x7b\xbb\x0f\x70\x4a\x56\xdb\x10\x50\xf2\x34\x11\xf5\xc6\x73\xdb\x8c\xfa\x0f\x07\x03\x6c\x45\xfb\xfb\x43\x12\x75\x28\xa4\x70\x3c\x8a\xf6\xef\xdd\xbf\x3f\x0a\x3a\xf4\xee\x03\x1c\xc9\xd4\xbb\xf7\x33\xb0\xcc\x6d\x33\xe8\xdc\x7d\xf0\x49\xd4\x37\xa3\xce\xdd\x47\x82\x63\x3b\xdf\x82\xb1\xd2\xa1\x82\x19\x5d\xe7\xff\x7e\x00\x77\xd2\x4a\xa2\xe4\xed\x05\x23\x7d\x9c\x8d\x8a\x02\x21\xaf\xd3\x01\x3e\xce\xdf\xa7\x20\xda\x69\xb7\xfd\x3d\x0a\x52\xa4\x76\xdb\xdb\x0b\xb4\xc5\x6b\xbd\x0c\x48\x84\x28\x35\x1f\xdc\xbb\x3f\xdc\x6d\x3b\x78\xac\x6c\x6b\x95\xcd\xba\x8f\xa5\x90\x48\xbe\x39\x4a\x5a\x04\x0a\x82\x90\xcd\xc7\xc4\xeb\x76\xb5\x1d\xae\x4e\xcb\xed\x8f\xc1\xab\xbe\x5a\x58\x0e\x1d\xee\x3e\x52\x1e\x9f\x1e\xee\x02\x9c\xa5\x23\x94\x6c\x78\xbc\xd3\xc1\xa6\x47\xa3\x09\x9f\xe1\xbd\xe1\xee\xa3\xcc\x99\xc4\xda\x16\xac\xaf\xf4\x65\x44\xb5\x90\x51\x9c\xd7\xa0\x96\x30\xcb\x87\xba\x08\x8f\xe2\x3d\x3f\x63\x39\x77\x87\xf7\x1e\xde\x7b\x74\xf7\xc1\xbd\x87\x37\xb5\xb7\x2f\x4e\xf3\xde\x9e\x0b\xeb\x58\xd9\x42\x2f\x68\xdc\x19\x0a\xb0\xba\x5d\x67\x7f\x6e\x9b\x66\x5e\x5d\x97\xe1\xfe\x42\x9f\x37\xde\x30\xef\x4c\x1d\x38\x16\xb6\x54\xd9\x67\x1d\x2a\x4a\xe1\x4f\x16\xc4\xa1\x2e\x69\x68\x58\x6c\x9f\xd9\x60\x9d\x76\xbb\xd3\x61\xfb\x79\xfd\xcd\x35\x3b\x0b\xd3\xa3\xd4\xc9\x91\x64\x4e\x19\x59\xd3\xbb\x0f\x46\xa3\x35\xa0\x23\x0c\x7b\x49\xd7\x7b\xd4\x1e\x0f\xad\xf5\x3e\xb5\x3b\xbb\x0f\xc6\xbb\x0f\xac\x75\x17\xce\x73\xf3\xbd\x25\x96\x17\x9f\x60\x71\x4a\xe7\xdd\x25\x39\xa7\x77\x1f\x74\x97\xa3\x1c\xd4\x4b\xdb\x5c\x76\x56\x1f\x9f\x63\x8c\xc9\x5c\xe0\xf7\xaa\x7f\x8e\xd3\xd2\xf7\xb9\xf8\x66\xd3\x95\x0d\xce\x62\x63\x4a\x43\x0c\x33\xdb\xe9\xc4\x69\xda\xe9\x30\xd2\xe9\x38\x69\x76\x00\xc9\xf6\x44\x72\xd6\xb0\x12\x64\xa0\x97\x51\x73\x34\x4c\x5e\x3b\xd2\x15\x15\xc0\xea\x31\x60\x32\x35\xb3\x3c\x46\x4f\x4a\xae\xec\x92\x1b\xeb\x53\xf9\xfa\x99\x0a\x2b\x8e\xc9\x45\x8d\x3f\x3e\xb0\xb5\x78\xf3\xd2\xae\x88\x37\x2b\x5c\x1e\xc2\xe4\xe8\x86\x2c\x05\x7d\x97\xd7\x36\x95\x2e\x4d\x8e\x6d\x49\xff\xcd\x7b\x98\x9c\x34\x92\xac\x63\x7b\x12\x75\x87\xb3\x24\x31\xd5\x53\xa6\xd8\x60\x9a\x63\xeb\xe3\xc9\x74\x3a\x57\x7e\x4e\xf0\x06\x75\xa2\x0e\x4a\x31\x22\xe8\xcc\x41\x62\xc4\x87\xf6\x16\x57\xe4\x4d\xbe\x4f\xa2\xc2\x4e\x5d\xb0\x21\x7f\xdf\x34\x57\xb9\x6b\x96\xd7\x36\xf8\x65\x21\x1e\xbd\x77\x83\x6f\x95\x62\xd8\x1b\x70\x43\xe3\x8d\x30\xa7\xd9\x4d\x98\x79\x62\x9b\x82\x88\x90\x43\x3b\xf7\x86\x97\xa6\xe4\x4b\xb1\x7f\xb4\x76\x4c\xfc\x5f\x66\x89\xf4\x10\xf5\xa3\x4d\x37\xa8\x85\x2c\xf4\xf1\xee\x10\x11\xb4\x03\x4f\x0f\x11\x41\x26\x3c\x3d\x42\x04\x61\x78\x7a\x8c\x08\xfa\x2f\xe2\xe9\xe1\x11\x22\xe8\xe3\xdd\x01\xb2\x50\x07\xa5\xe4\x4d\x23\xa4\x7f\xb4\x21\x86\xc7\xf3\xc6\x8f\xd2\x62\xa5\x02\xaf\xac\xeb\x5f\xda\xe4\x8d\x8d\x53\xf2\xd6\xae\x3b\xa6\xe6\x19\xe3\x06\xcc\x09\xe5\x9a\xf3\x6c\x23\x0c\xae\xa5\x9d\x3d\x3f\x0b\x41\x6c\x7a\xd4\x07\x87\xd2\x9a\x5c\xb6\xdb\x66\x40\x3d\x5d\x84\xc2\x25\xab\x74\xfb\xf3\x9e\x5f\x59\xef\x6d\x33\xc8\x22\x14\x2b\x01\x19\xa4\xc9\xa5\x46\x91\x0c\xcd\x4a\x5e\x54\xf0\x60\xe9\x84\x5a\x89\x4e\xef\xde\x03\xf2\x56\x72\xe2\xfa\x03\x38\x59\xba\xd3\x30\xa0\x68\xaf\xbe\x1a\xd1\x2b\x3f\x32\xb8\xe7\xc7\x67\xcb\x3c\x42\x9d\x58\xe9\x4f\x6d\xfa\xad\x53\xf5\x40\x79\x60\x97\x04\xfd\xdb\xd6\x09\xd1\x2b\xd1\x3a\xb3\xcd\x4b\x5b\x00\x5c\xf5\x0d\x17\x75\xbb\x50\x5e\xa0\x7e\x92\x3d\xb2\x0b\x6a\x5e\xa0\xdb\xe5\xd1\xa8\xa7\x2b\x06\xae\xc8\x94\xbe\xfa\xa4\x78\x24\x63\x6a\x94\x37\x5e\x95\x4e\xb5\x1a\x17\xe5\xe3\xa0\x27\x40\x9f\xeb\x6e\x41\x92\x56\xd4\x12\xdf\x88\x7a\x9d\x61\x02\xee\x28\x5e\x95\x24\xb2\xda\x03\xed\x2b\x9b\xd4\x89\xc8\x48\x5d\x5d\xd4\xd4\x71\xea\x56\x08\x65\x73\x03\xc5\x5c\xba\xf2\x06\x76\xa1\x6c\xde\x0e\x6c\xd3\xdd\x02\x65\x94\xa9\x06\x2e\x48\xbc\x9e\xb3\x88\xbf\x7b\xf3\xa2\x78\x30\x4b\x55\x72\xb1\x90\xf5\xc2\x4e\xb5\x95\x41\x8b\xd2\x18\x3b\x0b\xf3\xa5\x19\x63\xdc\x28\x23\x34\x23\x41\xd3\x63\xac\xd9\x5a\x70\xe3\x0e\xe4\x38\x56\x0c\x29\x30\xa2\xda\x81\x63\x1e\x2e\x4b\x6c\x89\xa0\x7c\x63\xfa\xf4\xcc\x36\xbf\x30\x15\x40\xb1\x2a\x86\xcb\xac\x6b\x92\x98\x76\x95\x9d\x4d\x92\x56\x96\x22\xe5\x60\x35\x94\x3d\xba\x5c\x43\x14\x70\x23\xe4\x3f\xc5\xdc\xb3\xb9\x71\xe1\x44\x4b\x43\xc2\xd7\xd8\x45\x78\xb4\x28\x2c\x35\x25\x27\xea\x20\x94\x89\xa9\x75\x42\xaa\x18\x1f\x60\x42\xc4\xa1\x25\xc6\x3f\x9b\x31\x09\x71\xbb\x5d\xac\x21\x54\x05\xe3\x49\x38\x83\x52\x92\x59\x7f\x6b\x9b\x0b\x52\x57\xb1\x1a\xa3\x31\x02\xe7\xed\xea\x2e\x6f\x80\xc7\x5a\x15\x69\x88\xad\xd8\x8a\x3b\xb0\x93\xbe\xb3\xe9\x2b\xbb\x20\x92\x7a\x1d\x98\xef\x6c\xb2\x91\x01\x72\x2a\xfe\x43\xee\xd8\x66\xed\x98\xb3\xab\xed\xb3\x2f\xd5\x42\x19\x79\x19\x65\xc8\xbb\x1e\xe5\xc3\x96\x03\x26\x5e\x2f\x43\x1a\x13\xa7\x44\x4a\x70\x4a\x12\xed\xa6\xd6\x86\xb9\x21\x23\xcf\x5a\x84\xdb\x39\x4d\x74\x02\x0a\x6d\x55\xfc\x8b\x61\x6f\xe2\x83\x35\x02\xa5\x34\x18\x4b\x72\x68\x73\xd3\x27\x43\x6c\xf9\x9d\xce\x88\x97\x7b\x53\x12\x31\x7c\x48\x57\xb2\x6e\x78\xb2\x1b\x15\xef\x6f\x81\x54\xf8\xe2\x93\x40\x77\x26\xf7\x09\x24\xd2\xca\x24\x04\x6e\x5b\xce\x78\x74\x50\x71\xa0\xfa\x3b\x7a\x93\x79\x5e\xcb\xba\xe4\x77\x3a\x98\xe7\xc0\xf1\x32\x1e\x18\x12\xe5\xaa\xc9\x45\xe5\x64\xc9\xc2\x3f\x05\x32\x0a\x2c\x9d\x4e\x15\x30\xad\x81\x56\xa0\x1d\xa6\x24\x2c\xcd\xcb\x36\x94\x2c\xb4\x2f\x0e\x47\x19\x9a\xf8\x34\xc8\x7a\xe1\xd0\xd6\x90\x30\xd9\x15\x9b\xc2\xaa\x94\x96\xb1\xd9\x56\x1a\x4a\xa6\xde\x9f\x84\x33\xac\xfa\xc4\xda\x6d\xd3\x19\xfb\x1a\x7b\xc2\x6e\x57\xe0\x8f\xe9\x48\x67\xd4\x92\xce\xdb\x18\x8f\x9c\x24\xf1\x8b\x2b\x5f\x2f\xf8\x14\x93\xa0\x8c\x68\x60\x21\x5d\xbf\x78\x26\xd7\xf4\xdb\x57\x8b\x58\x0e\xd2\xcf\xb7\x5f\x8f\x0e\x46\x5e\xee\x45\x4d\x1c\xcb\x36\xf2\x10\xea\x4c\x3c\xed\x2c\xd2\x83\x33\x83\x38\xe1\x4d\x38\x80\x7a\x1f\x2c\xb1\xf0\x26\x1b\x15\x27\x03\x12\x61\xa9\xd6\x98\x72\x89\x12\x6a\x34\x91\xe0\xde\x4b\xfd\x6f\x8a\x06\x9d\xcd\x3d\xf1\xea\xb3\x0f\xc1\xc5\x6e\x1b\x2d\x97\xdc\xc5\xb5\x85\x1c\x98\x26\xa7\x9e\x94\x59\x29\x89\x02\x87\x3d\x53\x5e\x78\x49\x15\xf6\x66\x1b\x83\xa7\x5a\x52\x28\xd5\x9a\x53\xa2\x34\xe0\x6f\xc8\xad\x35\x9f\xd3\x7c\xc3\xbb\xbe\x40\xae\x27\x9f\x56\x64\x97\x29\xdc\xfa\xbd\xb3\xc9\x85\x4d\xde\xd9\x39\x33\x22\x13\x0b\x41\x65\x9b\x82\x8b\x44\xa4\x71\x35\xd5\x7d\x4c\xe2\x88\xca\xa5\xa4\x5d\x39\x3e\xb7\x4d\x39\xcb\xe0\x79\x06\xde\xd4\x76\x98\xb3\x2b\x92\xe1\x6b\x23\x70\xe1\x5d\xed\xf4\x61\x60\x36\x72\x1b\x15\x2f\xdb\xda\x75\xb7\x67\xa7\x64\x53\xc9\x6c\xbd\x12\xe8\xef\xd9\x4d\xe1\x59\x8c\xab\xe6\xe4\x53\x3b\x49\x7e\xbb\xab\xf0\x82\x40\x8f\x16\xae\xca\xea\xa8\xd7\x6e\x9b\x2f\xcd\x82\xae\xeb\x44\x2a\x6d\x79\xca\x08\xb2\x3e\x6e\x4a\xe9\x41\x20\x7d\x99\x81\x0e\xbb\x0a\xf2\x0e\x4e\xda\x4f\xed\x3c\xea\xbb\xbc\x80\x3b\xb5\x41\xba\x6e\x22\xdb\xf7\x22\xee\x45\x5d\x69\x64\x94\x24\x81\x38\x18\x56\x92\x09\x62\x6b\xb1\x0e\xc1\x95\x72\xff\xb2\x7b\x71\x71\xd1\x5d\xf8\xc1\xaa\x1b\x07\xae\x3c\x42\xcc\x47\xca\xf4\x9c\xbe\x7b\xfb\xac\xfb\x08\x2e\x52\x5e\x8b\x65\xbb\x11\x9d\xb5\x5e\x98\x03\x92\xdf\xf2\x11\xd5\x13\x48\x06\x9f\xcf\x98\xa8\xc5\xcc\x31\x26\x57\x76\x51\x85\xc2\xcf\xa2\x53\x3f\xb3\xc9\x4f\x36\x6d\x98\x42\xb1\x1d\x1d\x43\x28\x81\x4b\x3b\x25\x2f\x6d\xb8\x35\x06\x31\x10\x79\x62\xd3\xf7\xbd\x77\x6f\x5e\x90\xaf\x6d\xfa\x93\xdd\xab\x94\x25\x3f\x43\xaa\x2e\x4e\x3e\xcd\x0e\xc6\x9f\x35\x9c\x7a\x11\x26\xdf\x96\x84\x74\x9f\xab\xb7\xb5\x7f\x41\xbe\x13\xe7\xb9\x83\xee\xf7\xac\xfb\xf3\xac\x4f\xbe\x11\x6f\xd3\x79\xa7\xdb\xcb\x92\xbe\x10\x87\xe3\x79\x9f\x7c\x65\xd3\xfe\x0f\xe6\xe0\x32\x19\x7c\x8b\xfb\xe4\x7b\xf1\x36\x19\x74\x1f\xce\x3a\x77\xfa\x24\x0a\x69\xff\x87\xe9\x5c\x3c\x72\xf1\x38\x99\xce\x0f\xba\xcf\xc4\x41\x58\x24\x79\xa1\xa8\x34\x1e\x0c\x06\x03\xf8\x7d\x0c\xbf\x07\xf0\xfb\xd4\xf8\xe8\xe3\xbe\x35\xfe\xdb\x64\x3a\x9d\xcd\xfa\x24\xb8\x3e\x6b\x21\xa7\x2f\xdb\x81\xac\x20\xdd\x1c\x3e\x33\x66\x9d\xa4\x96\x72\xa7\x7f\x46\x9c\xac\xd6\x52\x7d\xb3\xfe\x19\x61\x61\x73\x20\x53\xe2\x83\xe8\x63\x82\x28\xe5\x39\xcf\x07\xbc\x30\x9a\xa1\x56\x9e\xa8\xe9\x44\x77\xa8\xdd\x5b\xa1\xe7\xde\x39\x73\x9d\xb9\xb1\xf4\xc3\x08\xc1\x3d\xae\xe9\xd1\x30\x34\xb9\x66\x18\x89\xc8\xbc\x25\x7b\x04\x17\x41\xd4\xcb\x54\xed\xcf\x43\xf0\xa8\x28\x76\xf4\xeb\xe4\x95\x15\xd7\x06\xd9\x59\xd8\xb5\x09\xea\x21\x5c\x88\x6d\x5f\x90\xb9\xf9\x45\xd1\x97\xd8\x9d\xf9\x8c\x28\x86\x25\xb6\x65\x04\x2e\x0f\x8f\xe1\x7e\x0c\x75\xce\x6d\xd3\xc3\x96\x57\x88\x4a\x21\xa9\x5c\x0f\x61\xf0\x1f\xeb\x85\xb2\x04\xdf\x0e\x08\xe5\x02\xc3\xf4\xa8\x1d\x8a\x7c\xb7\x00\x01\x84\x52\xbd\xa1\x66\x79\x9e\x01\x36\x28\xb4\x45\x57\xe4\x36\x17\x14\xb9\x32\xaf\x43\x97\x21\xa8\x2a\x12\x37\xc4\x79\x1b\x29\xb1\xc3\x9b\xec\x2f\x68\x54\x04\x9f\xb3\x30\xc3\x4c\x1c\x80\x10\xa5\xe1\x24\x53\x94\x1c\xce\xda\xed\x50\xf9\xee\x35\x39\xd5\xe9\x78\xff\x5e\xee\x89\x56\xf6\x36\xdf\x68\x80\x8f\x05\xc4\x42\x54\x1c\xb1\x42\xf0\x88\x99\x65\x77\x16\xa6\x43\x87\x03\xe2\x17\x28\x2c\x1a\x20\xed\x35\x03\xf0\x12\x1c\xd1\x7e\xa5\x66\xcc\xc7\xe3\xe1\x03\xeb\x11\xf1\x33\xe6\xe6\x11\xa5\xce\x78\x68\xed\x62\x2c\x6f\xf6\x7d\xcc\xc4\xf4\x6b\x5f\x98\xe6\x70\x20\x32\x44\xa1\x05\x19\xbf\xb7\x2d\x1e\x62\x5d\x57\xde\x11\x46\x33\x63\x09\x9f\x38\x38\x55\xdb\x21\x93\x21\x97\x8b\x83\x71\x16\x26\xa3\xde\x24\x10\x43\xa4\xbc\x3b\x84\xd1\xb1\x7d\xfa\xb9\x6d\xee\xde\x7f\x40\xee\x77\xb3\x89\x94\x6c\xb9\x46\x75\xb6\xbf\x7b\xff\x7e\xf1\x0b\xc0\xca\xa6\x9e\x82\xa8\x6c\xc3\x2b\xf2\xff\x76\x07\x1a\xfa\x44\x55\x7d\xb7\x1b\x64\xf8\x69\xa7\x24\xbc\x79\x6a\x27\x03\x52\xfa\x7f\xa6\x14\xa1\xc1\x58\x7d\x41\x07\x64\xde\x64\x47\xaa\x41\xbf\x90\x71\xb3\x91\x85\x28\x9d\x9b\x8a\x3e\x58\x62\xcf\xd5\x39\x32\xb2\x30\x5a\x74\xe8\x2e\x71\x69\x47\x99\xb3\x8c\xe6\x26\x96\x87\xeb\x47\xe2\xe8\xae\x32\xe9\xf2\x50\x99\x5c\xa8\x92\x13\xbd\xd7\x6e\x73\xb5\x0c\xc4\xb7\x11\xe6\x74\xf8\xe0\x13\x9e\xfb\x06\x9e\x9b\xe0\x14\x98\x2c\x3a\x1d\xe2\x75\x3a\x50\x53\xaf\xd0\xad\x41\x7e\x0a\x80\xab\xb1\x2e\xf5\x48\xbc\xff\x20\xeb\x9d\x9a\xc3\xac\x57\xbe\x04\x41\xb0\x3f\x50\x81\xfe\x74\x6d\xed\x76\xb0\x77\xaf\x30\xaa\x0e\xf8\x33\xfd\xc2\xce\x3b\x57\xac\x73\x54\xfc\x20\x6b\x76\x68\xb9\xd3\x83\xcc\x9f\xa1\x8f\x7d\xea\x64\x88\x39\x10\x09\xaa\x2a\x9f\x0e\x07\x9f\xf8\x1d\x27\x85\xeb\x94\x1c\x4d\xa0\x7d\xd0\x5a\xd9\xbd\xff\xe0\x13\xf1\xd0\xf1\xc9\x6e\x8b\x76\x3a\x41\xbb\x7d\xaf\x45\x83\x24\x89\x65\x0f\xc5\x8b\x2e\x24\xd9\xf1\xea\xc4\x09\xc8\xb5\xc4\x8b\xcc\x95\xa1\x65\x9e\x34\x0a\x27\x71\xa7\x33\xa3\x3c\x23\x4d\x4a\xb1\xc6\x2d\x74\x47\xcd\x71\x5a\xfc\x2a\xed\x97\xe2\xae\x4b\x62\xfa\x70\x34\x68\xd1\xb8\xdd\x66\xfb\x83\x11\xb6\xa9\xe8\x33\x09\x27\x71\xb7\x3b\xa3\xe1\xc4\xed\xb0\xee\x50\xbc\xbb\x9d\x6e\x97\xcd\x94\x4b\x41\xd1\x8b\x47\xad\x1c\x4b\x72\xb3\xce\x78\x2b\x86\x03\x02\x54\xfd\x39\x46\x1a\xa9\xe4\x2d\x96\xc0\x2b\x38\xda\xf0\x5e\xec\x49\xc1\x65\xf4\xf1\xee\xfd\x07\x98\x44\xf4\x5b\xdb\x8c\xfa\xe2\x39\x8f\x85\x92\xd3\xfb\xa6\xc8\xe8\x59\xdd\x40\x88\x9b\x2f\xcf\x00\xa5\x3c\x3a\x54\xfa\x57\x82\x50\x2b\xa1\xeb\x23\x88\x01\x2f\x9d\xda\x3b\xb3\xb1\xe9\xef\x7b\xa0\x84\x1f\x10\x8f\xfa\xb8\x90\x1f\x5b\x7a\x1b\x01\x07\xbd\xd4\xc1\xa4\xd3\xf1\xf3\xd0\x1b\xe5\x72\x70\xd9\xa5\x86\xfa\x08\x86\xea\xb7\xdb\xe0\x10\x0d\x94\x07\x4c\x19\x59\x0e\xc2\x1a\x89\xc3\xd9\xd8\xe4\x1d\xea\x8d\x91\x25\xfe\xb7\x10\xf1\x69\x4b\x34\xc8\x3b\x90\xbf\xe4\xf8\x9f\x78\x7b\x0f\x95\x65\x8d\x85\x70\xc6\xfc\xe7\xce\x60\x33\xa1\x3d\x71\x43\xba\x49\xc9\x22\xa4\x0e\x28\x24\xb8\x21\xd9\x20\x03\x59\x43\xb2\x83\x76\xac\x21\x41\x7b\xe2\x19\xed\xc3\xef\xdf\x91\x35\x4c\x31\x99\xeb\xcc\x0b\x91\xf9\x23\xf8\x34\x86\xdf\x0d\xfc\xa6\x32\xdb\x5a\x67\x9b\x8b\x6c\x7d\xf8\x64\xc1\xef\x08\x7e\x29\xfc\xfe\x0d\x7e\x27\xf0\x3b\x9d\xc2\x9f\x19\xfc\xfe\x00\xbf\x89\xac\x6b\xd9\xc8\x0a\xd1\x97\xb6\x19\x91\x41\x7e\xb6\xd9\xbf\xbb\xdb\x6e\x7b\x7b\xc3\xdd\x87\x60\x47\xc5\x49\x84\xc7\x91\xd5\x28\x90\x4f\xc9\x2a\xa4\x9b\x45\xb4\xb6\x76\x87\x04\x42\x54\xc3\x24\x82\xee\xcb\xa3\x01\x91\xfa\x3c\xf7\xee\xdd\x25\x17\xa1\x78\xbf\x08\xe1\x2d\x25\xe7\x61\x93\xcc\xff\x67\x73\x15\x92\xa8\x17\xda\x4b\xbe\xe2\x38\x25\x67\x4d\xb9\x10\xd0\xde\x82\x6e\x10\xbc\xaf\x59\x18\x5e\xf8\xc1\x3c\x25\x57\x4d\x85\x5a\x91\xd2\xec\x89\x7a\x36\xf3\x3c\x3f\x7a\xc2\x0f\x9e\xb0\x50\x1c\xcb\xc5\x49\xca\x71\x39\x82\xf0\x93\xd0\x72\x4a\x4e\x1b\x01\x95\xe9\x44\xe7\xde\xe7\xdb\xed\xef\x14\xf1\x8b\x0a\x3c\x64\xbb\x2d\xc9\x8e\xe9\x95\x76\x89\x24\x69\xf1\x76\x1b\x25\x48\xd0\xe9\x94\x5c\x34\x2c\xec\x82\xfd\x53\xc6\x0a\x9c\x86\x99\x57\x78\x50\x66\x68\xb7\xcd\x42\x0f\x92\x04\xf5\x91\x34\x06\xcd\xda\x02\xdb\x4e\x81\x07\x14\xa2\x02\x4b\xc1\xa6\x78\xf8\x08\x1e\x70\x4a\x0e\x1a\xda\xa6\x52\x87\x0c\xa4\x83\x6a\xff\x6d\x79\x75\xe8\xb4\xdb\x43\x90\x71\x9c\x86\x26\x9f\x0c\x40\x57\x21\x49\xb8\xdc\xbf\x53\x72\xd9\x38\x65\x3d\x50\x62\x4e\x12\xf4\xf1\xae\x54\x76\x2e\xb3\xb2\x29\x39\x82\xf5\xf3\x1a\x7e\x8f\xe1\xf7\x04\x7e\x0f\xe1\xf7\x3d\xfc\x7e\x09\xbf\x3f\xc2\xef\x1b\xf8\x7d\x0e\xbf\x6f\xe1\xf7\x05\xfc\xde\x81\xdf\xa7\xf0\xfb\x0a\x7e\xdf\xc1\xef\x33\xf8\xfd\x09\x7e\x5f\xc2\xef\x13\xf8\xfd\x1a\x7e\x7f\x0e\xb7\x29\xaf\x17\x2e\x04\xbc\x24\x39\x0a\x89\x4b\x07\x64\x21\xe8\x9f\x72\xb3\xd0\x1a\x92\x25\x6d\x0d\x25\xcb\x07\xc1\x04\x25\x94\x44\x96\x1c\x4b\xe5\x9b\xc6\x51\xf9\x26\xb9\x53\xb1\x5a\x22\x08\x2b\x9f\x3d\xb3\x68\x29\xa3\x79\x82\xef\x1e\x9d\xbc\x08\xd8\x99\x38\x6d\xeb\xf7\x2a\x1a\x43\xc8\xcf\xc2\xe5\x9e\x1f\x4a\xcb\xe7\x62\x9a\x03\x69\xc4\x97\x3c\xf4\xc8\xdd\xa3\xf9\x45\x98\x36\xf4\x75\xa8\x3f\x71\x67\x24\x56\x16\xbe\x47\xa1\xa5\x15\xd6\x35\xa6\x3b\x72\x2f\xf5\xaa\x9c\xba\x1c\x38\x1a\xc5\xf4\x38\x1c\x89\x43\xba\xe3\xc5\x3c\x5d\x74\xa8\x53\x9e\x6d\x12\xd3\xd7\x61\xd1\x4c\xf8\x35\xb4\xe1\xb4\xdb\xe6\x37\x59\x13\x49\x82\x3a\x88\x52\x27\x49\x50\x57\xfd\x15\x48\xe4\x60\x5c\xaf\x30\x63\x27\x80\xaf\x72\xae\xef\x1d\x4c\x9e\xe8\xa2\x98\xca\xbc\x9b\xa2\x48\xbb\x2d\x8f\x62\x2d\x0a\x84\x68\x81\x73\xe4\x5f\xb4\xdb\xe6\x59\x08\xd1\x72\x33\x7f\xb4\x62\xd2\x70\xd3\xfa\x50\xc4\x06\x17\x78\xb1\x0c\x2d\x16\x24\x93\x60\x9f\xfb\xce\x5c\x36\xd8\x6e\xaf\xc2\x89\xce\x32\xd3\x75\xb7\xdb\x66\x01\x33\x30\x96\x5d\xaf\x36\x37\x8e\xe9\xd3\xd0\x52\xd5\x80\x29\x98\x6a\xa9\x98\xe3\x44\xe5\x18\xc7\xf4\xc7\xd0\x02\x82\xe1\x4f\xdc\xce\x70\x36\x36\x63\x7a\x18\x12\xb7\xd3\x81\xd0\x8f\x75\xa4\x1a\x28\x8c\x54\x7a\x1e\x48\xcc\xde\xcb\x10\xa7\x85\xe9\x3b\x96\x28\x12\x24\x49\x50\xab\xa0\xdd\x46\x1f\xc1\x9c\x6c\x99\x0d\xd0\x9a\x6e\x2c\x04\xea\x16\x19\xd8\xf4\xa8\xf4\xfa\x08\x64\xa7\x94\x64\x37\x5b\x2b\x81\xfc\x5b\x5c\x2e\xb0\xd6\x9a\xc6\x15\xd3\xaf\x15\x16\xa6\x31\xd5\x50\xd5\xed\x8c\x9f\x86\xd6\xfb\x1c\x8b\xe5\x40\x4f\x60\xa0\xa8\x2f\x06\x04\x64\xb7\xa5\xa0\x88\x37\x31\x2d\xe4\x4e\x63\xfa\x06\x60\x5a\x44\xf2\x43\x5d\x18\x06\x16\xd3\xe7\x79\xe3\x3f\x55\x1b\x7a\x0f\x79\xeb\x83\x77\x28\x7d\x66\xe3\x02\x59\x09\xb2\xc7\x22\x79\x09\xb2\x47\x4d\x66\x02\xf8\xa3\x09\x4d\x00\x7f\x6e\x07\xca\x8c\x39\x95\x3d\xd7\xdb\x8a\xd3\x6e\x4b\xa9\x45\x4c\xbf\x0c\xf3\x3c\x63\x18\xdd\x3f\xa6\x83\xb0\x8c\x9f\x84\xf9\xe2\x97\x88\xb6\xf9\xb3\x5b\x97\xab\x01\x4e\xab\xa5\xa9\x4b\xff\xa1\xf3\x52\x41\x71\x81\xcc\xc5\x35\xf9\xa5\x5c\x93\xe7\x92\x64\x49\x94\x6d\xb7\xc5\xdc\x69\x02\x29\xd3\xfe\x38\x70\x95\x61\x21\xf0\x5b\x9e\xae\xc4\x5a\x28\xae\x83\x1f\xa1\x67\xb0\x42\x4a\x2b\x69\xa1\x99\x17\xb7\x33\xc4\x38\x5b\x0f\x95\x55\xf4\xa6\xb0\x04\x0b\xe3\x81\xe5\x94\x35\x5e\xc8\xff\x5c\xe6\xff\x9b\x5c\x75\xf3\x76\xdb\x5c\x50\xf4\xf1\xbd\x01\xea\x2c\x30\x01\xf7\x40\x4c\x6c\x86\x8b\xfc\x06\x6c\x45\x07\xa3\x55\x1e\x3c\x6a\xd5\xe9\x48\x56\xe0\x9c\xb2\xc9\x6a\x96\x9d\xde\xcf\x93\x44\x85\x0f\x38\xa3\xcb\xd0\x3c\x27\xeb\x10\x8f\x96\xe3\x1c\x6e\x1d\x7a\x66\xe5\xb0\xed\xd0\x33\x09\x8e\x25\x6d\x0d\x52\x41\xc8\xb3\xb3\x27\x2c\x6a\xc5\xc5\x39\x8a\x59\x73\x14\xaf\x56\x5f\x6f\x62\xea\xe6\x52\x28\xb5\xa8\x12\x55\x16\x47\x4b\x3f\x70\xa2\x2b\x34\x72\xbb\x72\x58\x6a\x18\x9d\x21\x51\xfb\xde\x5b\x35\x2d\x62\x17\x2d\x02\xf6\x6d\x28\x5d\x75\xbc\x00\x80\x79\xed\x76\x75\x9f\x11\x40\x7e\x17\x96\x36\x4c\xb9\xdd\x26\xc9\x5a\x9d\xf9\x3f\x74\x1c\x6a\xd3\x6a\x1c\x4b\x2e\x50\x54\x19\xb6\x6d\xc0\x85\x4d\xd6\xa6\x2c\x34\x23\xb2\xc8\x44\x4f\xa0\x7a\xa7\x06\xfe\x2c\xcc\x76\xde\x7c\x10\x20\xfd\x75\xc6\x6b\xda\x1a\x58\x68\x26\xfb\x67\xae\xe1\xb0\x28\x00\x94\xc9\x00\xae\xef\xe2\xb5\xed\xde\x09\x89\x47\xe9\x8b\x50\x8b\x1c\x0a\x30\xbf\x23\x17\xe9\x17\x65\xbe\xea\x83\xe0\x98\x24\x9e\x12\x2c\xb6\xe8\x42\xe2\xe3\x55\x2e\x7b\x59\x90\xe1\x00\xa4\x99\x57\xfb\x0f\xee\xdf\xbf\x7b\xbf\x3a\x02\x01\x40\x34\x52\xeb\x58\xcd\xc6\x15\xa5\xb4\xc8\x8d\x48\x53\x9f\x2b\xc0\x9f\xb4\xc0\x58\x8d\x04\x48\x73\x48\x36\xd5\x9c\x56\x91\xec\x69\x79\x5f\x93\x28\x46\x2a\x3b\x0b\x8e\xe9\xab\x9c\xaa\x0b\xb6\x42\xe6\x6b\x65\xfb\xa0\x40\xc5\x9f\xca\xa8\xa8\x77\xc6\x0a\x7d\xfa\x90\xfd\x4d\xef\x5d\xb7\xaf\x62\xdb\x0e\x74\x11\x9a\x5a\x2e\xeb\xe6\x86\x09\x18\x4e\x07\x37\xd7\x7e\x00\xeb\xa3\xb6\xb7\x7c\xf0\xc8\x9a\x76\x88\x22\xf6\xbd\x2a\x30\x24\x39\xf0\xe5\x2a\x97\x9c\x49\x90\x53\x81\x20\x67\x6e\xb7\x8c\xae\xdd\x36\x4f\x43\x53\x76\x49\x1d\x0b\xc7\x45\xd6\x31\xfb\x82\xad\xd2\x60\x2a\x23\x95\x7d\x7b\x27\x4f\x04\x95\x95\x20\xbb\x58\x5d\x12\x2a\x56\x14\x1c\x48\x17\x82\x21\xf9\xa9\xc0\x90\xc0\xba\x95\x91\xd7\xa1\x4d\x84\x48\x09\x81\xb3\x15\xde\xbc\x86\x91\xeb\xdb\xcc\x85\x85\x0e\xa6\x4f\x7e\x28\xb9\x72\x55\x17\xce\x2b\xcb\xa8\x4c\x5a\x3a\xf9\x14\xb1\xff\x19\x0c\x2a\x27\x7f\xa2\xa7\xa4\xba\x95\x65\xa5\xf5\x10\x3c\x18\xaf\xf8\xa4\x5e\x3e\xca\xb6\x70\xa7\x45\x9f\xd9\xed\x76\xb1\x22\x5c\xa9\xa0\x8e\x03\x23\x95\x5e\x46\xe1\x42\x37\x7f\xba\x06\xf6\x19\xd5\x11\xf0\x36\x2b\xf3\x20\x09\x51\x0f\xce\xfa\x66\x28\xfe\x2d\x70\xf9\xa0\x86\xa5\x04\x00\x72\x84\xe2\x44\xa7\xc4\x01\xa1\x4c\xd7\x6f\x63\x13\xd6\x40\x95\x30\x64\x8d\x57\x4e\x24\xd8\xba\x14\x33\x3f\xbe\x65\x76\xcb\x6c\x3c\xb1\x41\x1e\x2d\xd4\x01\x54\xca\x66\xba\x3c\xe5\x8b\x9c\x55\x19\xe0\x0e\xb2\x10\x2e\x1d\x91\x16\x18\x93\xc6\x83\x1a\xdc\xe0\x48\xa0\x56\xe0\xa6\x42\x44\x16\x7a\x00\x37\x40\x52\x50\xa2\x56\xcd\x08\xab\x0c\x4a\xf9\x74\x24\x2b\x19\x9b\x95\x99\xc4\x96\xac\x15\xfa\x5c\x9d\x7b\x9c\xed\xfd\xcb\xd0\x74\xc8\x3c\xc4\xc5\x89\x7f\x19\x5a\x37\x54\x3a\x6e\xaa\xd3\xd2\x68\x98\xf5\x55\x55\xef\x86\xb8\x54\xff\x93\xd0\xca\xf0\x77\xac\x0b\xa1\x9d\xc2\x5c\x8d\x55\xbb\x1d\x0a\xfa\xc5\x56\xfe\x2a\x9b\x47\x1f\xef\xde\x45\x56\x56\xb9\xd5\xd4\x9d\x62\x8b\x5f\x87\x85\xce\xe9\x9c\xaa\x77\x8b\x10\xe3\xd4\xed\x74\xd2\x94\x7c\xba\x45\xc2\x4e\xb5\xe6\xe8\xa7\x21\x51\xb7\xec\x7e\x5d\x2f\xb4\x59\x13\xa7\x10\x35\x92\x30\xfa\xa9\x6d\x06\x05\xb5\x50\x94\xe2\x52\x4c\x16\xf0\x30\xe9\x17\xbd\x82\x7d\x1a\x62\x4e\x3f\xb3\x4d\x1f\x67\xb4\xcc\xa3\x3f\x87\x26\x18\xde\xa9\x9a\x7d\x5c\xb7\xbb\xf6\x94\xad\xc2\xcf\xa1\xc9\x88\x03\x97\x2e\x84\x37\x66\x93\xae\x04\x58\xc9\xa2\x14\x8c\x95\xbe\xb6\x49\x48\x7f\xb6\x4d\x1b\x8f\xc2\x5e\x5d\x23\xd5\x64\x72\x52\x30\x09\x73\xd5\xa6\xe2\x05\x9a\xfa\x9e\x59\x1d\x2b\x8e\x2d\x25\x3f\x26\x89\x19\x80\xf9\x28\xfd\x36\x54\x3e\x6a\x30\x09\x7a\x7e\xe0\x9c\x39\x1e\xfd\xbc\x98\x06\xfa\x95\xb6\xef\xd2\xef\x8a\xa9\xd9\x49\xe5\x9b\x52\x5e\x7d\x52\xf9\xa2\x98\x0a\xeb\xf5\xab\x6a\x0a\x94\xfe\xbe\x54\x5a\xf0\x3e\x51\x5c\xaa\x4f\x19\xd2\xf2\x62\xaa\x84\x13\xf5\xea\x69\x0a\x76\x41\xf1\xcb\x92\x85\x4b\xea\x67\x29\x38\x25\x9f\x85\xf4\xd3\xb0\xe0\xb9\xe0\xdb\xb0\xee\x73\xe4\xb3\xa2\xee\xb4\x3a\xf3\x7b\x05\x61\x37\x98\x24\x65\xa7\x31\x5f\xed\x48\xc4\x51\xbc\x30\x61\x5a\x84\x6b\x53\xb5\x74\xe0\x66\x5b\x63\x3e\x89\x29\x17\x04\xab\xa8\x30\x29\xb0\x6f\x6c\xc6\x1d\x8a\xfa\x7d\x44\xce\x24\x0f\x28\xde\xbd\x8e\x19\x8c\x91\x85\x3a\x01\x84\x44\x46\x7f\x43\x98\xc4\x1d\x1a\x87\x60\x7b\x24\x4b\x3a\x32\xab\xc8\xe5\x60\x6c\x69\x8a\xc7\x55\x72\xbf\x2f\xcb\xd4\xe5\x2f\x63\x36\x19\xcc\x2c\x7d\xc8\x12\x94\xbb\xa3\xc2\x4f\xa0\x3e\xc2\x96\xd8\xa5\x65\x0b\xb6\xaa\x6a\x8c\x3a\x76\xd6\x6c\xa8\x12\x3f\x42\x9d\x10\x93\x38\x25\x9f\x7f\x00\x2c\x05\xa0\x60\x6b\x3f\x75\xfd\x53\xd1\x59\x5c\x30\xa2\xd0\xc6\xbb\x3c\x63\x56\x14\x76\x56\x83\xd4\x22\xf0\x89\xa0\xb9\x5e\xc5\x9f\x72\x4d\xc6\x04\x94\xfb\x7d\xd4\x89\x43\xb5\x71\xe0\x8e\xbe\x28\x84\x9b\xa7\x8e\x27\x60\x6a\xa9\x4a\xc8\x77\x61\xc3\x05\xb4\xee\xbf\xea\xbb\x98\xb7\x94\x7c\x73\x6d\x4e\x8d\x26\x29\xf9\xe2\xda\x7c\xf9\x5d\xc9\x57\x37\x01\x0e\xf0\x2b\x03\x5b\x01\x6f\x40\x0b\x1f\x21\x4b\x3d\x7b\xe3\x38\x34\x39\xb6\xe0\xb7\x03\x43\x4c\xc9\xf7\xd7\xd4\x0e\x35\x57\x2a\x04\x37\x4d\x02\x66\x38\x25\x51\x7c\x4d\xd9\x86\xce\x40\xd9\x3c\xb0\x38\xe1\xd7\x94\x27\xfa\xaa\x23\xbf\x6d\xa9\x21\x28\x17\x08\xca\x8b\x08\xca\x4b\x08\x9a\x12\xef\xba\x1e\xca\xb3\x85\xae\x7e\x2c\xf0\x37\x82\x52\x41\x7c\xed\x5c\x17\x08\x4a\x4a\xfc\xeb\x5a\xd0\x8b\xba\xd0\xc8\x47\xba\x11\x27\xa6\x4d\x1e\x51\x36\x67\x3c\xb2\x22\xa2\x42\x53\x41\x34\x84\x38\xd3\x0d\x2c\xab\x30\x82\xce\xc3\x8f\xed\xf6\x15\x37\x3f\x0b\xc9\x46\x10\x6d\xcb\x89\xcd\x6f\xc3\xb2\x03\x29\x79\x6f\xf4\x59\xae\x57\x9e\x6f\x7a\x01\x6c\x57\x44\x6e\x48\x75\x97\x24\x01\x1e\xfd\x6c\x9b\xbc\x34\x62\xdc\xb4\xdd\x70\xb5\xdd\xa4\x18\x13\xb9\x16\x45\x47\x3e\x0f\x31\xd1\x7b\x84\x78\xff\xee\xda\x8e\x8d\xa0\x2b\x05\x03\x36\x0b\x91\xa3\x10\xaa\xd4\x6b\x46\x54\xf2\xcd\x4d\xa3\x0b\xed\xdc\x0a\x4e\xba\xef\x80\x40\xea\x78\xc3\x8b\x37\x3d\xa3\x3c\x70\x77\x4d\x99\x85\x17\x24\x42\xcb\x10\xc2\xba\x93\x75\x88\x53\xd1\x15\xbd\x2c\x45\x57\xbe\xf8\x1d\x5d\x29\x5c\x33\x5d\xdf\x95\x5c\x54\x55\xed\x8a\x58\x9c\xa2\x1b\x5f\x5d\x0f\x56\xde\x70\x99\x5a\x06\x35\x79\x2b\xc1\xac\xf7\x5e\x51\xe9\xf7\xbf\xbb\xd2\x17\xb2\x52\x41\x06\x44\x85\x51\x7c\x6d\x85\x00\x98\x24\x91\xca\x57\x51\x21\x9a\xf7\x98\xe7\xd7\x2b\x16\x34\x11\x91\x3b\x21\x96\x75\x2b\x26\x40\xd4\xcf\xaf\xaf\xbf\xa9\xc3\x6a\x07\xa1\x93\x19\x91\x15\x77\x10\x22\xcf\x54\xdd\x12\xe7\x45\xcd\xde\xf5\x35\x37\xf5\x38\xbf\x14\xb4\xe4\x01\x2c\x2a\x29\x89\x45\x34\xca\x8c\x56\x30\xe1\x39\x1f\xaf\xc6\xf7\x24\xc4\x98\x7c\xf8\xca\x2b\x66\x16\x1d\x0f\x62\x4c\x04\x8f\x23\x9e\xfd\x9b\x06\xd1\xaa\x0c\xc2\x04\x76\xfe\xfa\x7e\x17\xf9\x7a\xd5\xf5\xaf\x05\xcb\xcf\xcb\x17\xa1\xa9\x80\x28\x39\x8e\x04\x95\x42\x91\xff\xf9\xf1\xeb\x57\xa8\x29\x5a\x85\x66\x38\xb5\xc7\xf7\x26\x35\x73\x59\x45\x93\x46\xf9\x6d\x2b\x79\xa2\xe2\xb0\xb3\x98\x3e\xb1\x7b\x76\xc0\x59\xc4\xa5\x63\x8f\x77\x6f\x5e\x10\x1b\x52\x03\x7e\xee\xbf\xcf\x53\x47\x2c\x06\xe7\xef\xe2\x88\x51\x29\x80\x1a\x83\xc6\xb2\x58\xa9\x20\x3f\xb1\x8b\x3e\xdc\x30\x26\x76\x5e\x53\xa5\x91\xe6\x9a\xec\x6d\x35\xa5\x99\x03\xd9\x30\x2e\xea\x89\x14\x03\xd1\x48\xc3\xe1\xc6\xf0\x16\xd2\x2b\x48\xa8\x2d\xfb\xaf\xcb\x23\xaa\xe1\xa0\xe3\x13\xa8\x18\x67\xc5\x88\xd1\x59\x4f\x6f\x8a\xa2\x01\xee\xb5\xf2\xc9\x90\xf1\x73\xe1\x38\xae\x46\xe8\xe5\xae\x9f\x0d\x2f\x1f\x5e\x1c\x97\x75\x97\x86\x23\x5e\xf3\x8c\x29\x6d\xc6\x25\x00\x24\x0f\x97\x1f\xf7\x78\x31\x04\x11\x9f\x59\x9b\x74\xc4\x3f\xde\x1d\x87\xb1\x02\x8c\xe9\x61\xd2\x1a\x34\xf9\x3b\x11\x63\x93\xaa\x06\x10\xe4\x19\x67\xf1\xb3\xb7\x8d\x31\x1c\x37\x79\x88\x71\x78\x68\x46\xe4\xa6\xa2\xa6\x87\xb1\x55\xec\xd4\x96\x1e\x35\xfa\xa0\x81\x5e\xde\x34\x01\x9e\x38\x64\x0a\xcc\xc9\x34\xa2\x32\x18\xbb\xb1\xd9\x60\x5e\x89\x37\x59\x38\xc3\xcc\x7a\x81\x81\xe3\x57\x9b\xd8\x94\x11\x46\x5b\x43\x3c\x02\xd7\x7c\x86\xdb\xe4\x50\xc4\x1b\x7b\x3d\x19\x78\x34\xb4\xbc\x91\xcb\x23\x63\x01\xf7\xec\xed\x76\xd4\x0b\xb8\x07\x31\x61\x4d\x57\x3d\x52\x9d\x46\xdc\x5e\x18\xb1\xc8\xb1\xdf\xc0\xeb\x33\x0f\x14\x7f\xcb\x29\xc4\xed\x9d\xd8\xfe\x6a\xed\xb8\x1c\x2e\x88\x7c\xa8\x48\xf7\x80\xb9\xb4\x35\xc0\x98\xc8\xea\x4f\x42\xdb\x5f\xf3\xe7\x73\x1a\x60\xe2\x8c\xcd\x45\x49\x8e\x20\x68\x5a\x92\x80\x85\xef\x9d\x73\x0f\x1c\x37\x17\x5e\x7a\x61\x18\x1c\xfa\x5e\xc4\x2f\x75\xa6\x35\x0b\xb8\x17\xa9\x4c\xf2\xa5\x5c\xb0\x94\x56\x28\x8f\x93\x04\xe5\xf1\x5f\x33\x10\x9d\x9c\x7c\xfd\xee\xe8\xe4\xf8\xf8\xcd\xc9\xe1\xeb\x57\x6f\x8f\xbe\x7d\x7b\x72\x92\x24\x66\x44\x1b\xd2\x31\x81\x20\x8c\x19\x75\x23\x52\x06\x0d\xd0\x3c\x09\xf8\x99\x13\x46\x3c\xe0\xf3\x4c\xf3\x2b\xdc\xfa\xa1\xc7\xe6\x73\xd3\xc1\xa9\x80\x62\x18\x06\x6f\x54\x16\xba\xc0\x16\x87\xdb\x37\x36\x2e\x39\xfd\x29\xb4\x19\x2b\x2f\x7c\xbd\x3b\x81\xef\x47\xbd\x3b\x6a\x7a\x7b\xe1\x92\xcd\xfd\x8b\x37\xbe\x1f\xe1\x8a\x0f\xbf\x62\x69\x1b\x5c\x0e\x60\xb2\xc0\xce\xa2\x34\x5f\x78\x23\xd1\x28\xa2\x1a\x1d\x46\x19\x5e\x94\x3d\xcc\x2a\xe4\xcd\x5c\xae\x13\x08\x1e\x8e\x53\x29\x24\xce\x6b\x39\xe5\x0b\x3f\xe0\x87\x40\xad\x47\xe5\x57\x1a\x8d\x27\x59\x64\xff\x88\x2c\xb0\x35\x59\xcc\x72\xca\x73\x18\x98\xb9\x2c\x69\x9b\x2d\x10\x09\x97\x6c\x65\xb5\x7e\x94\x36\x41\xd6\xa7\x61\xaa\x57\xc2\x22\xa6\x1b\x60\x4a\xd0\xc1\x39\x8b\x58\x00\x6e\x76\xd7\xa1\x25\x25\x4b\xf2\x57\x39\x7c\xd5\xfe\xf5\xd1\xdc\x39\x07\x4b\x52\x67\x0e\x86\xdd\x4d\x3e\x5a\x7a\xe0\x65\xcf\xec\x9b\x73\xe7\x3c\x09\xd7\xcc\xc3\x7d\x9c\xa6\xc0\x1a\xbf\x12\xad\x35\x57\x8c\x64\x0e\x67\xbe\xfd\xfb\x85\x33\x8f\x96\xea\xb3\x8a\x98\xa0\xc3\x9f\xc9\x38\xf3\x32\xeb\xbd\xdd\x34\x25\x73\x16\xb1\xba\xa1\xd8\x86\xc1\x40\x8f\xc1\x81\xb5\x85\x10\x71\x7d\x36\x87\x38\xef\x83\x14\x62\xf8\xaf\xe3\x88\xcf\xad\x38\x36\xe3\xd8\xdc\xa4\xe4\xd2\x9c\xa0\x33\x1e\xbd\xf5\xdf\x73\x0f\xcd\x30\x26\x1b\x30\x29\x13\xbb\xc2\xbc\xc1\x0c\xad\x80\x6e\xf2\x3c\xd4\x93\x79\x25\x78\xc3\x24\x11\xcd\x60\x72\x21\xe0\x63\x6d\xd4\x70\xcb\x47\x2b\xa8\x22\xe4\xd1\xbb\x90\x07\xe2\xe4\x99\x92\x95\x1f\x7b\x51\xb9\x39\x04\xae\xd3\x44\x4e\x59\xc7\xb8\x5c\x2a\xff\x80\x2d\x78\x51\xa3\xa4\xad\x61\x4a\xa4\xbf\xc6\xd0\xda\xa8\xec\x75\x9b\x2d\x19\x5c\x40\x50\xbf\x52\xd9\x81\x5c\x4d\x45\x08\x82\x36\x8c\x74\x39\x00\x20\x69\xb7\x65\xcf\xb2\x0d\x8e\x5f\x18\xca\x3d\x07\x09\xa8\x59\x07\x4f\xc8\x83\x73\x1e\x24\xc9\x85\xe3\xcd\xfd\x8b\x9e\xeb\x4b\xc3\x2b\x25\x25\xc1\x1d\xd4\x0f\xf8\xca\x8f\x78\x6f\xbd\x5c\xf7\xe7\xec\xbc\x2f\x5b\x0f\xfb\xa8\x53\x18\x65\x07\xf5\x87\xbb\x8f\x7a\x6b\xef\x0c\x8d\xbc\x9e\x34\x9d\x36\xd1\x81\xbc\xbe\xfe\x19\x6a\x44\x04\x3d\xe1\x2c\xe0\x81\xa1\x4a\xea\x59\x15\x3b\xbb\x2e\xf1\x6d\xf7\x0d\xff\x29\xe6\x61\xc4\xe7\xdd\x6f\x9c\x68\x89\x08\xfa\xf6\xe5\x8b\xcf\xa2\x68\xad\xd2\x11\x26\x60\xe7\x66\x06\x64\xa3\x2d\xbb\xbc\x14\xf7\xa2\x25\xf7\x2a\xf1\xf2\x16\x66\xd4\xf3\xdf\x67\xb6\x10\xbd\x53\xd7\x3f\x35\x81\xc9\xb9\x37\xb8\x07\xd7\xcd\x62\x9f\x88\xc3\x42\x48\xec\x2c\x1c\x36\xcf\x0c\xdb\x21\x8b\x61\xfb\x73\x6e\xa0\x8c\x0c\xe8\x92\x62\x87\x6c\x68\x9a\x17\xa6\x9b\xf0\xf2\x7c\x45\x63\x05\xe9\x77\x6f\x5e\x54\x19\x4a\x33\x02\x41\x04\xc6\x3d\x29\x9c\xaa\x54\x5a\x9d\xf7\x52\x33\x82\x9e\xf8\x2e\xef\x71\x18\xc2\x0e\x8c\xc4\x50\xdf\x0d\x59\xd2\x70\x56\xec\x0c\x6c\xec\x0d\x31\x6b\x06\xda\xd1\x03\xe2\x6a\x1a\xc9\x0e\xb2\x8c\x1d\x08\x61\xc0\xc3\x90\x9d\x81\x7b\x5e\x75\xef\x54\xc1\xe2\x54\x3a\x19\x9e\x37\x48\x34\xa4\x77\x56\x1a\xf5\xee\xc8\xf1\x1d\xb9\x1c\x84\x95\x1e\x8d\x7a\x27\x21\x77\x17\xbd\x13\x3b\x49\x0a\x9a\xb1\x0a\x77\xc7\x9e\x19\xf5\x40\x94\xba\x89\xd8\x99\x85\x6c\xbd\x07\xa1\x94\x4c\x22\xdd\xf8\xd8\x33\x91\x6f\x77\xc3\xb5\xe3\x79\x3c\x40\x04\x0c\x8c\x91\x1c\x61\x57\xe5\x41\x24\x8c\xae\x5c\x6e\x21\x49\xaf\x04\xc6\xf5\xe0\xb1\x83\xd6\x97\x23\x63\xc9\x9d\xb3\x65\x54\x4d\x46\x84\x45\x51\x20\x96\xa5\xf3\x33\xb7\x50\xb8\x62\xae\x8b\x08\x62\x81\xc3\xba\x2e\x3b\xe5\x2e\xb2\xa2\xde\x1d\x30\xd3\xbb\x8c\x4c\xf4\x42\x35\x25\xce\xd7\x96\xec\x13\x53\x34\xbc\xd6\x25\x3e\xcf\x2a\x97\x3d\x52\xed\x92\x30\xb0\xad\xa8\x34\xb1\x04\x89\xa9\xe8\x8a\x4d\x01\x29\x75\x13\x41\xb2\xd3\x14\xcf\xc8\x10\x5b\x51\xef\x84\x9b\x38\x1d\xcd\xe3\xde\xc9\x85\x13\x2d\x05\x8d\x5e\xaf\x81\xaf\xc9\xa3\x44\xac\xff\xb5\x99\xfc\xe5\x9f\xc3\xe4\xaf\xff\x19\x99\xfc\xf5\x3f\x96\xc9\x97\x5c\xc9\x2a\xe7\x4a\x6c\x5b\xec\x7d\xe1\x0b\x27\x8c\xde\xf8\x17\x88\x64\x6b\x32\xb4\x36\x72\x4f\xb5\xdc\xd8\xdc\x48\xee\xcb\x9a\xc7\xa4\xc2\x7b\x5b\x93\x59\x4a\xb4\xd7\xbf\x58\x3f\xb5\x86\xf5\xa7\xd2\x1f\x9c\x6a\x46\x88\xc9\x1e\x28\x9e\x43\x8e\xa8\xc0\x73\x0c\xb6\x33\x1a\x76\x1c\x08\xee\xfa\x8d\xaf\x6c\x18\x8a\xec\xc5\x32\x36\xe5\x3f\xc5\x61\x88\x65\x86\x88\x60\x34\x8e\x61\x3f\x7c\xe6\x07\x9f\x87\x87\xae\x23\x88\x8f\x60\x3a\x2e\xcc\x0c\x14\x88\x4c\x10\x44\x97\x45\x04\x85\xdc\x85\x6d\x22\xfb\xa6\x19\x14\xf9\x41\x25\xbf\x10\xc4\xa3\xe6\xe3\x40\x72\x0f\x39\x3d\x39\x86\x22\xc6\xc7\x1b\x43\x0d\xd9\x48\x0b\xd1\x53\x8a\x79\x9f\x7b\x11\x0f\xd6\xbe\xcb\x22\x6e\x46\x24\x83\x90\xe4\x0d\xe4\x4b\x6f\xee\x84\x6b\x97\x5d\x01\xe9\x00\x07\xd7\x29\x26\x92\x1a\x97\xd8\x18\xbd\x11\x0b\x36\x24\x3c\xcc\x01\x66\xe2\x9c\x4d\x29\xc2\xea\xc8\x9c\xa0\x70\xe9\x5f\xbc\x94\xdb\x03\x8c\xf7\xa0\x0c\x9b\xb7\xaf\x3f\xfd\xf4\xc5\xd1\xc9\xf1\xd1\x8b\xa3\xc3\xb7\xcf\x5f\xbf\x3a\x39\x38\x3c\x7c\xfd\xee\xd5\xdb\x0c\x36\xf6\x92\x79\x67\x1c\xa6\x65\x0b\xe3\xa3\x06\xfd\x8a\x9b\x77\x78\x6f\xc5\x82\xf7\x39\xc2\x1b\x1a\x7e\x85\xd8\x6a\x77\x78\xef\x22\x60\xeb\xc2\xaa\xf0\x94\x7b\xac\x11\x56\x3a\xf0\x5e\x6f\x1d\xf0\x73\xea\x49\xdf\x37\x52\x11\x7e\xa0\xe3\x36\x7e\xe3\xa9\x0d\xb0\x17\x69\x7e\x44\x64\xa3\x77\xc9\x1d\xc7\xdc\xe8\xa0\xc3\xe0\x19\xb7\x86\x1d\x04\x4c\xce\xf5\x1c\x9c\xc4\xb1\x33\xb7\x78\x36\x0b\xce\x9c\x08\x54\x39\x71\xe6\x56\x94\x0a\xa6\x5f\xb4\x7b\xd7\xda\x1d\x40\x90\x16\xf0\x4a\xc5\xbd\x08\x2b\x76\x62\x0c\x31\xdf\x04\x36\xf7\xf2\xb0\xd2\x3d\x51\xc1\xf3\x39\xe1\xbd\x02\x3e\x53\x0e\xc9\x61\x6f\xe1\x78\x73\xb3\x49\x14\x24\xda\xa6\x94\xfa\x82\xa8\x5a\xbc\x57\x98\x33\x73\x13\x39\x91\xcb\x2d\x5e\xc0\xbd\x67\x4c\x9c\x8d\x8d\xc8\x37\xe4\xe4\x18\xa2\xf6\x1e\xc2\x64\xce\x43\xdb\x0a\x54\xff\xde\xf2\xcb\x88\xc8\x47\x0b\xcd\x45\xbe\x00\xe9\x41\xdd\xd7\x21\x31\xe7\x59\x38\x4c\xaf\x17\x46\x60\x42\x92\x62\x08\xcf\x8a\xb1\x72\x2c\x53\x45\xb6\xe6\xa5\x71\x2d\x16\x70\x33\xb3\xfa\xde\x8e\x05\xbc\x8a\x05\x5c\x62\x01\xdf\x86\x05\x51\x09\x0b\xb8\xc6\x82\xa7\x05\x2c\x88\x6e\x8d\x05\x51\x01\x0b\x0a\x73\xef\x2c\xcc\xdd\xc1\xb0\x05\xa6\x44\xbc\x34\xfd\x82\xc5\x83\x16\x1f\xe7\xb6\x8e\x02\x45\x04\x42\x10\x9f\x06\x10\xad\xa8\xb8\x99\xfb\x38\xb3\x18\xf2\x8b\x41\x0f\xb2\x6c\x59\x8d\x8f\xb4\xfe\x97\xb6\x0a\x64\xa7\x41\xbc\x8e\x4c\xa4\xae\x3b\x55\xef\x1e\x59\x51\x09\xcb\xa2\x5b\x62\x59\x50\xc0\xd7\x70\x32\x98\x29\x9c\x4d\xb1\xaa\xf7\x71\x1d\x39\xb8\x46\x0e\x30\xca\x49\x31\xe1\x1a\x43\x52\x15\xbe\xe2\xfc\xf7\x73\x96\x92\x2b\x8b\x04\x73\xd1\x0d\xc4\xee\x35\x29\xa6\xd8\x5c\xf0\x77\x2a\xc9\x5e\x72\xfb\xfd\xa9\x7f\x89\xc8\x46\xee\x60\x87\x2e\x0b\x43\x4b\x7c\x5a\xb9\xdd\xb0\xc2\x1b\xba\x2c\x38\xe3\x28\x0b\xa7\x50\xdd\x06\x88\x14\x74\xe4\x28\x40\x80\x7f\xcc\x72\x16\xf7\x05\x82\x96\xce\x9c\x6b\x06\x53\x9c\xb1\x7d\xcf\xda\x80\x1f\x57\xab\x81\xa7\x8a\x7a\xdb\xe8\xab\x99\xb5\x86\x53\xc5\x2d\x92\xa8\x77\x72\x6e\x4a\xdf\x82\x8d\x03\xcf\x18\x56\x35\xba\x32\xef\xd9\xb0\x97\x24\x49\x9e\xec\x7b\x5f\x06\x7c\xe5\x84\x3c\x3c\x66\x2b\x35\x24\x91\x47\x0b\x11\x8a\x0b\x40\x09\x0e\xee\xde\xbf\x4d\xcf\x36\x73\x7f\xf5\xa5\x12\x83\xf0\xcb\xe8\x50\x7a\x07\x11\xac\x6f\x68\xde\xdc\x3c\xd0\x9b\xdf\x5f\x7d\x69\xd0\xa8\x8b\xfe\xa0\x6a\x57\xcc\x71\x6f\xac\x4a\xe1\xe4\x69\x1c\x45\xe2\xdc\x5c\xc6\x48\x55\x53\xd8\x95\x21\xee\x25\x46\x75\xa3\xc0\x39\x13\xf4\x58\xe3\xa9\x33\xbf\x21\x67\x57\x1c\x7e\x0a\x13\x74\x2e\xce\x39\x80\xb5\x28\x60\x17\x28\x4d\xa1\x17\xe1\x9a\xd5\x3a\x10\xbf\xef\x2e\x5c\x7e\x69\xa8\xbf\xdd\x95\x33\x9f\xbb\xdc\xa8\xb4\xa6\xe8\x08\xbc\xc9\xf3\x9b\x18\xef\xd4\x33\xd4\x7f\xa2\x79\x80\x4c\x81\xe0\x8c\x4b\x6f\xc5\x29\x28\x9d\xbc\x14\xa7\x04\x35\x63\xdc\x29\x56\xaa\xa1\xe9\xd8\x00\x38\x05\x0c\xc9\xcb\xf2\xcb\x35\xf3\xe6\x27\x2b\x3f\xe0\xfa\x58\xb7\x74\xe6\x73\xee\x21\x0b\x45\x41\xcc\x91\xc2\xcd\x59\x7d\x72\xe6\x81\xbf\x2e\xac\x12\xf1\xda\x75\xe6\x68\x1b\x88\xc5\xf7\xb9\x7f\xe1\x55\x61\x1c\xf9\x67\x67\xe2\x54\xfa\xd1\x07\xcd\xcc\xca\x9f\x73\x0b\xd9\xae\x63\xbf\x47\x04\xd9\xae\x1f\xf2\xae\xef\x75\x65\x82\x85\x10\xd1\x52\xf3\xcd\x9c\xbb\xec\xea\x33\x67\xce\xad\x41\xaa\x26\x30\x76\x1b\xa6\xcf\x75\x42\x71\xa6\x8e\x7a\x27\xae\xa9\x68\x3c\x69\x3a\xc0\x79\x26\x72\x1d\x75\x9c\xe5\x62\x1b\xd3\x98\x19\xb0\xb9\xe3\xdf\x80\x98\x19\x10\x60\x9e\x34\x5e\x2a\xca\xc8\x15\x45\xe4\x65\x46\xb5\x81\xf4\x79\x65\x07\x0e\x8a\x73\x34\x45\x77\xa4\x68\x6e\xce\x5d\x1d\xe4\xb7\x84\x3e\xc4\x66\xae\x7b\xca\xec\xf7\x25\x32\x5a\xde\xe0\x78\x4a\xf8\xe5\x3a\xe0\x61\x08\x88\x5f\xf8\xa4\x91\x21\xc5\x98\x0c\xf0\xec\x16\x44\xab\x0a\x64\x81\xab\x5d\x9b\x0b\x5e\x5d\xe2\xbf\x9e\x52\xf5\xf7\x28\x13\x7a\x14\x10\x56\x0a\x0e\x64\x06\x48\xeb\x2a\xd9\x08\x22\xcd\xb0\x96\xac\x43\xd7\xf1\xe6\x8e\xcd\x22\x3f\xc8\xf3\x97\x70\x3f\xe0\x6c\x7e\x85\x8a\x8b\x3c\x8c\x6d\xe9\x0b\x7c\xab\x80\x43\xd1\x54\xc3\x09\x0d\x66\x47\xce\xb9\x38\x3b\x14\xa5\x1d\x5b\xbb\x3c\x77\xc2\x0f\xeb\x73\x5e\xa0\xd4\xe9\x39\x5f\x07\xdc\x86\x66\x8b\x3d\x57\x9c\xe7\xad\x3a\x7e\xea\xfa\xf6\x7b\xd5\x6d\x58\xdb\x62\x4a\x47\xe7\xd7\x09\x4f\xce\xfe\xb5\x85\x27\x57\x7f\x8e\xf0\xe4\xec\x9f\x51\x78\x72\xf6\x8f\x15\x9e\x08\x80\x9d\x36\x8a\x4e\x2a\x72\x93\xb2\x50\xa5\x28\x40\x39\xbf\x56\x80\xb2\xfa\x1d\x02\x14\x7d\xa7\x24\xa3\x35\x94\x05\x28\x99\x58\xe4\x4a\x09\x44\x4a\x07\x7a\x16\xf0\x03\xd7\xd5\x29\xc7\x8a\xd7\x85\xe3\xbc\x16\x11\x5c\xc5\xe6\x95\x92\x0f\x94\x8a\xca\x0d\x4f\x16\x71\x7c\xef\xc0\x75\x9b\x24\x06\x6f\x8e\x8e\x8f\xde\x6a\x36\xf6\x38\xe7\x6c\x21\xaf\xbc\x8b\x7b\xca\xc3\x28\xf0\xaf\x6a\xa2\x8b\x6d\x45\xc5\x39\x42\x5d\xb1\x5d\xc4\xb4\x70\x97\x9a\xdd\x4d\x7b\xec\xdc\x39\x13\xd4\xa7\xdd\xee\xaf\x42\x87\x1b\x93\x07\xdd\xc7\xb3\xe9\xf4\xb4\xaf\x7c\x68\xe9\xef\x70\x26\x3c\x38\x13\x47\xf1\xb2\xe9\x43\x4e\x32\x0e\xe2\xfc\x4c\x04\x0b\x93\xee\x97\xaf\x94\x64\x4f\x3c\x7a\x11\x8f\x79\x6f\xc5\xe7\x0e\x4b\x12\xa4\x2e\xcb\x90\x15\x91\x80\x1e\xc5\xd2\xb7\x09\xfc\xa5\x1b\x67\x1e\x82\xe7\xbc\x63\x1e\x49\x51\x36\xe0\x81\x54\x0b\x0b\x7a\xce\x3c\x04\x7f\x7a\x11\xc6\x1b\xf9\xc6\xe6\x73\x41\x57\x5c\x2e\x5a\xe1\x2a\x3c\xac\xc8\x2d\x4e\xce\xeb\x76\xdb\xf4\x3a\x14\x4d\xbd\xfe\x27\x1f\x19\xf2\xdb\xbb\x37\x2f\x28\xea\xc0\x57\x95\x5b\x1c\xdc\x3a\xc8\xf8\xa4\x8f\x48\x35\xf3\x4b\xb6\x5e\x3b\xde\x99\x28\x03\xb2\xb6\xa2\x83\xbe\x1f\x43\xdf\x1b\x9d\xb2\x90\x3f\xb8\x47\x50\xe7\x34\xf2\x99\x19\x7b\x3c\xb4\xd9\x9a\x9b\x0d\x0e\x46\x3e\x3f\x7e\xfd\x4a\xc5\x91\x74\x16\x57\xb2\x7b\x18\x0b\x2e\x4e\xb4\x8c\x49\xd0\xe3\xf2\x4c\x07\xaa\xe5\xea\x99\xce\x7d\x1b\x28\x4e\xaf\x74\xec\x33\x11\x80\xa6\x58\x0a\xae\x0f\x28\x12\xfb\x40\xdf\x16\xbb\x9b\x02\x77\xbb\x9d\x67\x09\x79\x74\x10\x45\x81\x73\x1a\x47\xdc\x44\xf0\x39\xcb\xa7\x3d\x33\x53\x4a\x2f\xe3\x76\xdb\xbc\x8c\xf3\xb6\x97\x9c\xcd\x93\x24\x7b\x3d\xe3\x91\xea\x47\xf8\xe4\xea\x2d\x3b\x13\x1c\x8c\x89\x44\x26\x84\x27\x83\x19\x26\x97\xb1\xba\xd6\x3a\x5c\x3a\xee\x3c\x1f\x0d\xc6\x44\x76\xfc\x78\xc9\x79\x84\x1c\xcf\xc8\x3f\x05\x3d\x39\xdb\xd2\xf2\xc4\x2b\x8e\x2c\x2f\xd2\xb3\x43\x90\xc5\xd0\x2c\xb7\xda\x47\x9e\x48\x05\x0c\x6d\xc3\x35\x15\x07\xfb\xd2\x4d\xb7\x44\x16\x71\x86\xed\x0e\x09\xaf\x82\x55\xd4\xf9\xca\x9f\x73\xd1\x2e\x78\x5c\x55\x2d\xdb\xa2\xff\xe2\x43\x38\xf2\x27\xd1\xac\x08\xcb\x80\xaf\xfc\x73\x2e\x07\x28\xbe\xe1\xcc\xe5\xd9\x38\xcf\xe4\x78\x21\x0f\xa2\x27\xb0\x90\x4d\x4e\x20\x9f\x95\x7f\x2e\x02\x49\x9c\xde\x52\x19\x2d\x4e\xe0\xf2\x65\xac\x16\xf1\x51\x4c\x37\x7a\x41\xbf\x8e\xe9\x69\x0c\x22\x82\xe3\x3f\x44\x44\x00\xf7\xe9\x45\xc9\x40\xce\xe9\xcb\xa3\x8d\xe0\xb1\xe7\xce\xb9\x23\x08\x34\xd2\x27\xa3\x8c\xfd\x83\x50\xa2\x15\xd1\x02\x08\x1b\xca\x1c\xe1\xc2\xb9\x54\x1f\xe5\xb5\x25\x4a\x9b\xa4\x11\xd7\x72\x91\x99\x0c\x62\x19\x38\xde\x7b\xd1\x2b\x69\x7f\x02\x38\x97\x77\xeb\xb6\xa2\x0c\xcd\x33\x37\xd3\xf7\x4c\x64\x51\x3b\x77\x31\xd7\x85\xfb\xc3\x10\xe1\xeb\x84\x17\x82\x5c\x56\xa9\xff\xad\x4e\xff\xd7\x8f\xf2\x76\x85\x8b\x45\xc8\xb5\x07\xf3\x7c\x78\xef\x94\x1e\x2f\xc2\x37\x9f\xf5\x7f\x47\x33\x4f\xe5\x81\xc7\xf8\x07\x34\x75\xb4\x62\x8e\xfb\x27\xb7\xf1\x46\x9e\xc2\x6f\xdb\x44\xf3\xac\xde\xb6\xb1\x83\xfc\x1c\x52\xe4\xe8\xb7\xb4\xac\x56\xa6\x3a\xe6\x6a\x3e\xa8\x51\x73\xd2\x33\xf3\xe3\x89\x38\x1d\xab\x15\x5c\x3a\xdb\xe8\x74\x38\x9f\x3b\x73\xbd\x8c\xb2\xeb\x97\x14\xc2\x16\xab\x2e\xc9\x83\xc6\x71\xc3\x41\x43\x12\xb1\x93\x98\x16\xd8\xbe\xe3\x66\xb6\xaf\xd4\xd3\xa8\xdd\x8e\x4c\x24\xf6\xdf\xee\x79\xf7\xfe\x83\xd3\x87\xf6\xe0\xde\xfd\x93\x81\x58\xe5\x4a\x97\x66\xea\xf5\xaa\x54\xc6\xd8\x37\xa2\xe5\xa4\x52\x68\x66\x6c\xa6\x9e\x61\x00\x69\x89\x02\xe6\x85\x0b\x3f\x58\x59\x86\xe7\x7b\x7c\x34\xf5\xd2\xa9\x87\xc8\x8a\xad\xad\xcd\x39\x0f\xe0\x5c\x7c\x97\x28\x0e\xc1\x9a\xa0\x3e\x08\xef\xfb\xa7\xdc\xe3\xfd\x43\x7f\xce\xfb\xfe\x85\x67\xbb\x7e\x3c\xef\xfb\xb6\x13\xca\x1f\x0d\xc9\x7e\xec\xf4\x73\xbe\x37\x4f\x2e\xf2\xbf\xbd\xf3\x98\xa3\x19\x11\x8b\x41\x8c\x59\x34\x2c\x58\x8d\xd0\x42\xa3\x83\x83\x47\x4f\x0f\x46\x47\x07\x87\x07\xc4\x7f\x72\x70\x70\x30\x3a\x38\x38\x3c\x40\xd2\x27\x19\xaa\xd5\xa1\xfb\xa8\x71\x67\xb2\xb3\x17\xf1\xd5\xda\x65\x11\xdf\x17\xa3\xdd\x9b\x3b\xe7\xfb\x52\x52\xb4\xa7\x31\xc4\x50\xa2\x2b\x45\xdc\xf7\xb5\x20\x69\xaf\x8c\x42\xfb\xb9\x80\x69\xaf\x48\xe2\x0d\x5b\x10\x56\x5a\x27\xed\x85\x02\xc5\x22\x62\x25\x18\x72\x01\x18\x92\x4f\x01\xec\xd7\xd5\x54\xa8\x7d\xa9\x12\x59\x8d\xa6\xec\xe5\x2f\x86\xae\x40\x13\xf8\xea\x67\x4b\xc5\xdf\xd8\xc2\xc8\x57\xb3\xff\x4d\x06\xc7\x6f\x62\xde\x6b\x35\x03\xe5\xa7\x28\x5b\xa1\xd3\x9d\xea\x26\x31\xdd\xc1\xb5\x62\xf9\xa6\x51\xfe\xd2\x2f\x03\xae\x5f\x82\xdc\x07\x02\xb5\x7f\x5d\xfe\x62\xc6\x73\x80\x7a\x69\x0c\x7a\x27\x10\x7d\xff\x5d\x15\x15\x69\xfd\xef\xae\x0c\xa8\xf9\xef\xae\x45\xd0\xeb\x9b\x2b\x69\x00\x68\x43\x5d\x19\x39\xae\x55\x58\x98\xbb\xc0\xbf\xc8\x17\x56\x7f\xcb\xca\xba\x66\xc5\xd5\xe8\x72\xb1\xdb\xe7\xdd\x85\x1f\x50\x4d\xa2\x0d\xc7\xcb\xc4\xd0\x25\xa4\xb3\xde\xf3\x2b\x8a\xfe\x5e\xa3\xe4\x77\x36\x85\x3b\xba\xbf\x97\x8b\xa8\x2f\x59\xe5\x85\xaf\xfd\x9b\x06\x94\x27\x4b\xda\xd3\x97\xc4\x67\xaf\x5f\x20\x49\x53\x6f\x4f\xca\x12\xf6\xa7\x9e\xb3\x5a\xfb\x41\x64\x6c\x8c\x15\x5b\x1f\xc0\x6a\x0b\x89\x78\xfe\x14\x7c\x82\xcb\xe7\x97\x71\x04\x27\xae\xd0\x48\x8d\x45\xe0\xaf\x8c\xe9\xce\x79\xcc\x2f\xa7\x3b\x59\xf1\x8a\x5c\x41\xe7\xea\xf5\x2b\x1f\x04\xbd\x14\xc5\xa6\x1e\xbf\x84\x82\xea\x24\x2a\xb7\x05\x90\x5e\x18\x62\x72\xf3\x42\xd3\x1d\x22\x3e\x15\x84\x18\x32\xaf\x51\x6d\x53\x24\xa6\x90\x57\x4a\x1f\x74\xb6\x4c\x08\xa1\x13\x0c\xc0\x2d\xcb\x90\xe2\x08\x9d\x96\x89\x25\x8c\x28\x88\xb9\x4c\x4d\xf3\x3a\x33\x39\x85\xae\xa5\xd7\xeb\xe5\x50\x32\xf3\x3e\x4f\x77\x88\x31\x99\xee\x34\x13\xbc\xe9\xce\x0c\xe7\x75\x6a\x11\x46\xb9\x4a\x35\x09\xf5\x2a\xeb\x44\x51\x54\x47\x8a\x65\xb3\x89\xaa\x97\xde\x26\xae\x28\x77\xa9\x24\xf2\x30\x4c\xac\xbb\x76\x83\xc4\x03\x2a\x80\xfd\x7b\x6f\xda\xcf\x50\x4b\xa0\x99\x38\x24\x1a\xa0\xd8\x3e\xdf\xdf\xc6\x24\xdc\xc4\x13\xec\xf5\xa1\x9a\xfd\xa9\xb7\x33\x4b\x09\x1c\x96\x95\x65\x3c\x44\x90\x7a\x1d\x93\x2a\x6f\x82\xca\x52\xaa\x83\xb8\x22\xa1\x82\x23\xdc\x61\x4c\x5b\xad\xa3\xa0\xdd\x2e\x07\xc4\x3d\x0a\x72\xc3\xea\xde\xc2\xf1\x98\xeb\x5e\x49\x25\xee\x4d\xb4\xe4\x5e\x29\xc8\x52\x5a\xb2\xec\x01\xfb\xa1\x82\x6c\xe6\x7d\x51\x36\xf3\x3e\x6e\xb2\x3c\x90\x82\xd9\x76\x1b\x85\xf0\x50\xfd\x90\x85\xba\x1a\x37\xdd\x80\x2b\x3f\xba\x8d\xa1\xe8\xa3\x76\xfb\x9a\xe6\xa2\xe2\x9d\x3d\xa5\x34\x4b\x6f\xe9\xe7\x1c\x06\x63\xdd\x37\x2b\x6b\x10\x9b\x51\xc1\xae\xe7\xcb\x58\xe9\xbc\xb6\xcc\x5a\x20\xa4\x28\x49\xa2\xa2\x2b\x02\xa9\xd7\x8d\xb5\xca\x0d\x40\x68\xa4\x94\x60\xb5\xed\x2d\xa7\xd2\x96\xd9\xca\x5d\x06\x83\x15\x38\xf8\x24\xcd\xbb\xdd\x13\xd4\x02\x13\x8f\x37\x87\x85\x62\x86\xec\x8b\x71\x1a\x47\x3a\x3a\xbc\x48\xcd\x34\x69\xb9\xe0\xe3\xb3\x41\xfc\x18\x67\xc7\xf8\x7a\xb0\xae\x76\x3b\xf3\xae\x50\x0c\xdb\x55\x8e\xe1\x05\x91\x8c\x6f\xe7\xd0\x21\x8f\x90\x23\xb6\x0d\x8e\x33\xc1\x4f\x34\xf1\x66\xed\xb6\x09\xa1\x8f\xf9\xc4\xcb\x23\xf8\x16\x6c\x60\xde\x14\xb1\xea\xcd\xbf\x2c\x56\x3d\x8f\x4b\x01\x16\x46\x80\x65\xa4\x80\x12\x6f\x62\x93\xe3\x31\xa8\xb2\xac\x1c\x2f\x49\x06\x24\x10\x8f\xec\x12\x5b\xa6\x57\x8a\x27\x52\x0c\xd2\x3c\xd9\x9d\x61\x15\x45\x3f\x13\x11\x9a\x91\x8e\x77\xd0\xff\xb8\xd7\x4b\x7a\x7d\x9c\xf9\xe7\xcf\xdd\x44\x53\xf0\xe8\xa9\x27\x2a\x48\x12\x7f\x8f\x06\x38\xe5\xdc\xdc\x44\x2c\x38\xe3\x91\x85\xbe\x0c\xfc\x95\x13\x72\x24\x8d\x89\xad\xd6\x80\x04\xbc\x64\x8f\x71\x18\xa7\x64\xa3\x48\x4a\x83\x02\xda\xb7\xca\x43\xc8\xfb\xc8\xcc\xea\xc2\x98\x78\x8d\x31\x90\x4b\xea\x79\xa0\x07\xee\x8d\x1b\x6e\x2e\x5f\xf8\x26\x27\x91\x59\xd7\x15\xcf\xcf\x9f\x82\x6c\x59\x11\xf9\xd0\xe2\x6a\xd5\xca\xd2\x70\x08\x6f\x08\x22\x73\x14\x24\x49\x13\x41\x4d\x92\xe3\xc8\x2c\x7e\x20\x48\x7d\x41\xe5\xe1\xd7\x8b\xca\xe9\x7b\x1b\xd3\x8d\xda\xb2\x4f\x22\x77\x2e\x80\xcc\x5c\xd7\xbf\x38\x89\xc5\x29\x36\xb4\xfd\x80\x87\x56\x6b\xa8\x12\xa3\x80\x39\xae\xe3\x9d\x9d\xcc\xfd\x28\x4f\x85\x1b\x2c\xc7\x96\xe5\x87\x52\xf5\xe7\x45\x4c\xfb\x3f\x98\xe6\x64\xd0\x7d\x3c\x4b\x26\xc3\xee\xe3\x99\x7c\x1c\xc2\x9f\xcd\x6e\x9a\xec\x4e\x06\xdd\x7b\x2a\x75\xf7\xfe\x64\xd0\xbd\x3f\xc3\xd3\x1e\xde\xdc\x4d\x3f\xb4\xd4\x9d\x3e\xb9\x13\xcb\xb8\x28\x8f\x0f\xba\xcf\x66\x9b\x21\xb9\x97\xde\xe9\x3b\xf9\x0e\xf2\x34\xce\xb1\xa3\x29\x74\x4e\x03\x59\x1a\xce\xca\x14\x07\x81\x57\x39\xb9\x7a\x5a\x26\xd7\xa6\xb3\x79\x34\x0d\x68\x84\xdc\xc3\x49\x02\x0f\x0f\x64\x10\xd7\x7b\xd2\xb9\x33\x90\xf5\x17\xb1\xf2\x4a\xad\x8b\xb4\x86\x2a\xec\x5c\x31\xd0\x05\x84\xfb\xaf\xc6\x8a\xd4\x48\xda\xe5\x69\x21\xde\xd1\xe4\xee\x6c\x8f\xee\xde\xbf\x0f\x7e\xff\x1e\xa8\x96\xe4\xf5\xe5\x24\x9a\x49\x17\xb7\x8e\x67\xbb\xf1\x9c\x87\x26\xfa\x18\x49\x6f\x50\xbb\x2d\x50\x5c\xcc\xda\x14\xe9\x3a\x60\x46\xd6\x2f\xb8\xa5\x98\x0c\x66\x85\xf2\x16\xc2\xa5\xef\xe0\x0b\x29\x98\x0c\x67\x59\xaa\xd4\x04\xa3\x50\x4e\x55\x6e\x41\x78\x4f\x08\x53\xf6\x34\x36\xfd\x89\x9f\x87\xec\x20\xf7\x30\xb1\x29\x1b\x3f\xb4\x1e\x41\xb4\x66\x3d\x1f\x76\xb9\x15\xcb\x02\x9f\x4b\x79\x24\x35\x9d\xd2\x0b\xe3\xd3\x30\x0a\xc0\xff\xf6\xd8\xf4\xb5\x13\x26\x92\x3f\x39\xe0\x46\xbe\x9a\x5f\x3b\xe9\xee\xee\xe2\x76\xdb\xf4\x95\xdb\x50\xfd\x17\xca\x64\x1b\x4b\x25\x9c\x5a\xa7\x13\x62\x3d\x72\x7f\x12\xce\xda\xed\x50\xec\x6a\x79\x0e\x15\x74\xc3\x29\x0c\x81\xb6\x06\x79\xa4\x8d\x76\x3b\x14\x45\xf3\xdc\x99\x27\xa1\xd6\x1d\x85\x1d\x10\xab\x2d\x2f\xaf\xe6\xda\x19\x67\xf0\xa1\x43\x2b\x0b\x98\x46\xa9\x9d\x66\xd0\xcf\xd0\xfd\x55\x5c\xc2\x9a\x8a\x49\x0d\xf0\xeb\x3d\x27\x94\x21\x77\xa3\x3c\xd4\x48\x0a\x9e\xb9\xca\x88\x27\x46\xdb\x60\xc6\x28\xb7\xa1\x24\x69\x99\x95\xad\x50\x6c\xc4\xea\xc2\x36\xca\x23\x52\x48\x2c\x87\xd8\x2b\xad\x01\xf1\x05\x3e\x38\x2a\x7e\x3c\x84\xcb\xd5\xe0\x66\xc4\xa6\xd1\xa4\x52\xe5\xcc\xc4\x10\x21\xd3\x64\xd4\x56\xa1\x4a\x55\x30\xcb\x76\xdb\xd4\xd1\x50\x54\x2c\x30\xd2\xe2\x49\xa2\x3d\x2a\xb4\xc4\x7a\x18\x05\x30\xa1\xb9\xaf\x18\x5f\x74\xc1\xa1\x51\xaa\xe8\xa0\x8c\x07\x2c\xfd\x21\x51\x6a\xf7\x64\x97\x93\x44\x3f\x99\x38\xcb\x29\xb0\x54\x99\x1a\x39\x69\x7e\x31\x0f\x90\x6a\x00\x5c\x2b\x2a\x86\x17\xa9\xb1\x74\x1a\xee\xef\xe4\x6c\x8d\x4a\xda\x0a\x39\xb9\xd6\xd6\xef\x3a\x84\xb3\x0e\x2e\x43\x04\xf6\xa0\xd7\xd9\x3e\xee\x55\x18\x07\x08\xfe\xd5\xc0\xe9\x41\x67\x5e\xb2\x35\x94\x49\x12\x74\xcc\x65\x71\xdd\x1d\x89\x1e\xe2\xe0\xa9\x03\x51\x1f\x64\xa1\x6c\x65\x91\xfe\x0f\xe6\xd8\x7a\xe7\x24\xcf\xb1\x17\x99\x63\xeb\x51\x32\x7c\x90\xdc\xdd\xc5\xe6\xd8\x3a\x74\xd9\x6a\xcd\xe7\x78\x0c\x95\xdc\xd1\xf7\xb0\xb8\x32\xd4\x1a\xc4\xb2\x5d\xb0\xcc\x84\x66\x3e\x54\x23\x71\xe8\x8e\x8c\xc8\x37\xe6\x5c\x8e\x26\x0e\xb8\x38\xd9\x74\x75\xb4\xeb\x8c\x39\xee\x4d\xbd\xe7\x9e\xe1\x07\xe2\x50\x14\xf9\xc6\x29\xcf\x02\x62\x13\x28\xc0\x44\xcf\x0c\xc9\xfe\x84\xc6\x2a\x0e\x23\x63\xc9\xce\xb9\xc1\x8c\x06\xbc\x53\x47\x4b\x08\xb5\x54\xe0\xa9\xd4\x30\x36\x2a\x22\x06\x4f\x12\xbe\xaf\xa9\x0a\x56\x1c\xb6\x7a\xcb\x59\x54\x08\x5e\x2f\x06\x28\xd7\x1d\xc7\x23\x6f\x8f\x43\x68\x8c\x40\xb0\xa9\x82\x57\xcd\x43\x54\x42\xfc\xb2\x98\x6e\xe4\x06\xab\x14\xac\x4e\xe0\x5c\xdf\x1a\xea\xab\xff\x5a\xba\xda\xb9\xa3\xc5\xa3\x13\xf0\x91\x78\xb2\x66\x41\x24\xf9\xa7\xd2\x0e\x7f\xea\x32\xfb\xbd\xeb\x84\x11\x9f\x9f\x40\x1c\x36\x0b\x21\xe2\x9c\x79\x7e\xc0\x4f\x56\xec\xf2\x44\xf6\x5d\xec\xe5\xe4\x27\xd8\xc7\x27\x3f\x4c\x2f\x07\x83\xee\xf4\x72\xf8\x6c\x7a\xf9\xf0\x59\x77\x7a\xf9\xf8\xd9\xd4\xfe\x76\xd6\xc1\x7b\x66\xaf\x83\xf7\xef\xf4\x1d\xf2\x12\xb6\x60\xd6\xfd\x79\x3a\x6f\x7d\x34\xbd\xf3\x71\x7b\x67\xfa\xc9\xb4\x33\xed\x4e\xfb\x74\x3a\x9e\xfe\x70\xf2\xf7\xcd\x34\x49\xff\xcb\xac\x23\xf2\x3e\xc9\xf3\x42\xa8\xb2\xaf\x65\x2b\xd3\x70\x7a\x39\x18\x76\xa7\x97\x83\x47\xd3\xcb\xc1\xe9\xf4\x72\x60\x4f\x2f\x07\x5c\xb4\xbb\x98\x5e\x3e\x5c\x4c\x2f\x77\x87\xd3\xcb\xdd\xbb\xdd\xe9\xe5\xfd\xd3\xe9\xe5\xfd\x79\x77\x7a\xf9\x90\xcf\x12\x73\x3a\x9d\xe8\x92\x8f\x0b\x25\xe1\xfb\x62\x86\xf1\x27\xa2\xd1\x9f\x6f\xd5\xc1\x69\x3c\x18\x1c\x0c\xba\xd3\xf8\xe9\xc3\x67\xcf\xa6\xf1\xb3\xc7\x10\xd5\xec\xd9\xd3\x43\xf1\xf2\xf4\x19\xbc\x3c\x3b\x7a\x26\xc7\xf1\xe9\xef\xe9\xf7\x6d\x5b\xba\x61\x78\xb7\xad\x46\x42\x21\xe7\x89\x3e\x8b\x33\x42\x25\xb9\x1a\x93\xd3\x1f\x63\x93\x93\x67\x31\xc6\xbd\x26\x14\x4b\x12\xde\xab\x23\xa4\xd6\x32\xd2\x16\xcb\x3f\xc5\xd2\xdd\x5d\x66\xe3\x41\x5f\xc5\xa6\x47\xee\x4a\x9f\x43\xd4\x17\x07\x89\x88\xfa\x93\xdd\x19\x09\x7a\xdc\x9b\x87\xdf\x38\xd1\x12\x6e\x7e\x94\x46\x55\xb6\xad\x07\x85\x18\x6f\xa4\xd5\x14\x1a\x43\xd9\x48\xff\x80\x04\x16\xa2\x3b\x7d\x07\xc2\xe8\x8e\xb9\x60\xd8\xc0\xa1\x58\xcb\xeb\x45\x81\xb3\x32\xcb\x9c\x4b\x7f\x32\xed\xa1\xd1\xde\xfe\x2c\x27\x50\x40\xaf\x79\x99\xff\x31\x75\xc4\xf1\x1d\xb4\x83\xf3\x1d\x37\x4b\x9d\x4e\xf3\xf4\xbc\x01\xbd\x1f\x0f\x52\x33\x28\xa4\xea\x7d\x9e\x37\x82\x36\xcf\x07\xfd\xe8\xd5\x16\xa3\x20\xee\x6a\xff\xdf\xbd\x7f\xaf\xcc\x3f\x3a\x39\x2f\xf7\x37\x84\x09\xa3\x8e\xe2\x65\x6c\xea\x28\x3d\x02\x91\x1e\x52\x56\x09\xd1\x00\xdd\x91\x56\x11\x27\xe1\x9a\xdb\xce\xc2\xb1\x4f\x94\x59\xba\xe3\x83\x37\xd1\xb3\x15\x73\xdc\x9e\xed\xaf\xb4\x4b\xd0\x33\xdf\x3f\x73\x79\x29\x55\x89\x21\x62\x6a\xda\xd4\xae\x68\xd8\xe8\x8e\x75\x40\xa3\x02\xc0\xfa\x3c\x36\xe3\x2c\xfa\x05\xea\x21\x08\x7f\xb1\x59\x39\x9e\xf5\x80\xac\xd8\xa5\x75\x77\x90\x16\xa6\x4b\xd3\x4f\x97\xc6\x05\x26\x99\x2c\xe8\x60\xb4\xd8\x73\x35\x63\xb6\x90\xe1\xcf\x5a\x4f\x14\x13\xe5\x4e\x16\x05\x26\x0a\x80\x6a\xb6\x86\x82\x21\xa8\x83\x36\x49\x9e\xc7\xa6\x4d\x36\xa2\xed\x07\xf7\x52\xdc\x6e\x3f\x8f\x4d\x26\xdf\x77\xef\xdf\x4b\x71\x19\x79\x5a\xe5\x7d\xbe\xbc\x76\xde\x8a\xb5\x53\x3f\x2b\xb5\xdb\x2a\xda\xca\x24\x2a\x86\xac\x93\x0e\x76\x00\xdd\xc5\x59\x62\x40\xa2\x02\xc6\x37\x1c\x0d\xc4\x06\x32\xf1\xf2\x1a\x46\x25\x7c\x8a\xdc\xb9\x8c\xb2\xa1\x32\xec\xed\x96\xfb\x2d\x28\x95\xa0\x7e\xf1\x60\xc0\x86\xdd\x69\xbc\x58\x2c\x16\xb3\xcd\x2e\x49\x93\x4b\x4f\x7c\x18\x74\x1f\x77\xe1\x1d\xdf\xe9\x3b\x12\x8c\x41\x6d\xdd\x84\xd3\x78\x77\x30\xd8\xed\xc2\x9f\x27\xe2\x77\xf7\x99\xf8\xbd\xff\x6c\x1a\xdf\x85\xf0\x91\xcf\x8e\x04\x19\x7a\xfa\xe4\xde\x60\x1a\x3f\x3d\xdc\x85\x80\x92\x07\x8f\x05\x11\x7a\xf6\x54\x2f\xb8\xa0\xbe\x5c\x04\xd6\xd7\x8e\x93\xed\xb6\x8a\x6f\x99\x15\x6b\xb7\xbd\x1e\x3f\xe7\xc1\x55\x93\x31\x4b\x2b\xe3\xed\xf7\x1f\xdc\x15\xe4\xa4\xd5\x92\x14\xff\xa4\x34\x68\x18\x68\x27\x1b\x24\x38\x57\x6c\xf5\x27\xe2\xe3\x40\xe6\xb9\xcf\x75\x4f\xd5\xc7\x1f\xba\x49\xf7\x4e\x21\xa9\xd0\xdd\xc2\x41\xb9\xdd\xee\x9f\x64\x99\xc4\x7f\xe2\x50\x2f\x50\xa9\xb8\xff\x96\x26\x2c\xd5\x94\x47\x55\xe6\xac\x4f\xe4\x7a\x2c\x4f\xdd\xd3\xd8\x64\x2a\x27\xeb\x85\x11\x0b\x22\x45\x35\x27\x08\x27\x49\x8b\x15\xe8\xe8\x0c\x55\x4e\x97\x73\xca\x34\x49\x1d\x12\x96\x9f\x7d\x46\x32\xd4\x1b\x9d\x67\x16\x48\xa2\x99\x79\x61\x66\xc4\xb2\xd9\x41\x3b\xe2\x90\x31\x19\xcc\x32\x1f\xcc\xd4\xce\x02\x6a\xda\x39\xbe\x92\x0c\x1e\x65\xf6\x63\xfc\xa9\x5a\x92\x36\xb6\xbe\xce\x1e\xb3\x65\xbd\xa6\xdb\xca\xfd\x1c\x5b\x2f\x63\xb2\x14\xad\xe5\x0b\x40\x06\x02\x58\x16\x03\x01\x08\xa0\xac\x65\xbd\xcb\xc9\xaa\x7e\x74\x6a\xf1\x5e\x8d\xdf\x49\x92\xee\x50\x0c\x4b\xf9\xdb\x32\x05\x5b\xf6\x86\x9f\x1d\x5d\xae\x05\x48\x73\x93\xfa\x5a\x41\x82\x66\x1d\x84\x09\x3a\x43\x58\xda\x3d\x7d\x1b\xd3\x8d\xa2\x28\x17\x4b\x27\xe2\xe1\x9a\xd9\x1c\xa4\x20\xd9\x46\xfb\x79\xf9\x34\x26\x09\x86\x80\xbc\xa9\xa9\xc6\xb7\x82\x6a\xd4\x6a\x19\x47\x6a\xef\x52\xa3\xb5\x32\xa6\x32\xe7\x44\xbf\x53\x8e\x7c\xb2\xcd\x56\x7a\xf3\xc9\x1b\x0f\x4d\x4d\x9c\x9f\xb2\x88\xf7\x3c\xff\xc2\xc4\x5d\x36\x8a\xf7\x78\xbb\x1d\xef\xd3\xc1\x38\xa0\x21\x8f\xde\x3a\x2b\xee\xc7\x91\x19\x12\xde\x8d\xb1\x65\xaa\xb0\x6f\x5e\x92\x98\x36\x8d\x94\x36\xb2\x43\x7c\x71\x3c\xf6\x55\xe4\x9b\x54\x31\xbf\xc0\xef\x0e\x07\xea\x32\xa0\xa4\xce\xe5\x48\x55\xae\x82\x7f\x5e\xc2\x0a\xfd\x50\x05\xbc\x76\xbb\x95\x99\x00\x06\x49\x62\x56\xbb\x84\x31\x89\xdb\xed\xad\x3d\x21\x76\xaa\x4b\xc7\x3d\xdb\xe5\x2c\x28\x79\x73\x14\x25\x45\xa2\xae\x30\xd0\x51\xed\x70\x4a\xe2\xde\xc2\x8d\xc3\x65\x2d\x7f\x73\x4b\x64\x7b\x3d\xe9\x77\x71\x6f\xce\x4f\xfd\xd8\xb3\x39\xfd\x4e\xaa\xb6\x7d\x13\x8b\xa7\x6c\x26\xbe\xf8\xd7\x56\x4a\xff\xea\xcf\x51\x4a\xff\xe2\x9f\x51\x29\xfd\x8b\xff\x08\x8b\xfe\xef\x6b\x6a\xe9\xd2\xbb\x11\xda\x66\x3c\xef\x84\xcf\xfc\x60\xf5\x5c\xb4\x71\x16\xf0\x10\xc4\xb8\x4e\xa8\x9c\xb0\x94\x93\x17\x7e\xb0\x7a\x2a\x6a\xd9\x64\xae\x37\x11\x22\xc0\xe5\x89\x87\xcc\x09\x26\x42\x10\x2d\x7f\xf5\x75\xc6\x23\xe6\x25\xe0\xcc\x9e\x15\xcb\xde\x74\x59\x9d\x90\xa6\xb9\x59\xfa\x57\xb1\xf9\x55\x93\xce\xb9\x54\xfb\x7c\xc5\x2f\x54\x62\xc1\x26\x3f\xaa\x8c\xa9\xa4\x5e\xb5\x74\xc2\x5e\x75\xd4\x34\x4a\x89\xcd\x3c\x9b\xbb\x22\xbd\xa6\x7d\xde\x00\x10\xda\x1a\x12\xed\x0a\xa8\x5c\x97\xd9\x1a\x62\xf9\x49\x03\x8c\xde\x02\x60\x59\x81\x1c\x6a\xf4\xc3\xa1\xa6\x4c\xff\x15\x44\xb6\xd8\x5b\x43\x53\xa0\x62\xa4\xf5\x5f\x4c\xdc\xce\x13\x41\xfd\xa4\x94\xf2\xa5\x6a\xc7\x04\x77\x8f\x5b\x01\xa2\xbc\x16\x55\xe7\xc5\x2c\xc1\xa2\x76\xb7\xc1\xf1\x86\x83\x50\x2a\x03\xbf\x09\xde\x76\x94\x38\xad\x7c\x0b\xb2\x65\x26\x04\xfd\x49\x49\x69\x48\x0d\x2e\xa3\xc4\x16\x5b\xec\x4a\xe6\xd0\x15\x8f\xcd\x6f\x0a\xdf\xf2\x19\xe8\x95\x26\xa0\xea\xc8\x41\x37\x65\x48\x27\xa2\xc6\x29\x37\xf8\x6a\x1d\x5d\x21\x4c\xee\x0f\x06\x98\xb4\x86\xd8\xfa\x6c\x6b\x9b\x49\xb2\xf5\x5b\x07\xfd\x4d\x9d\xaf\x78\xcf\x89\x10\x1e\xdf\xa2\x6f\x08\x11\x88\x86\xfa\x5b\x06\xa2\x25\x68\x71\xa6\x18\x9b\x0d\x40\x41\x15\x70\xe2\x36\x20\x05\x04\xdd\x0e\xcf\x1c\x7f\xab\x7d\x80\x16\x3e\x08\x92\xba\xa9\x1b\xda\xb9\x01\x30\xdb\x7b\xa4\xa1\x02\x39\x0c\x36\x9f\x0b\x64\xab\x83\x46\x2f\x8e\xdb\x40\x47\x2f\xd8\xed\x00\x2a\x2d\xe9\x6a\x8f\x74\x53\xd7\x81\xe9\x16\xb5\x4a\x88\xa4\x29\x26\xbe\xb7\xcd\xde\xa6\xb4\x1a\xe5\x65\x5d\xe4\xfe\x71\x4a\xf8\x51\x8d\x02\x2b\xf3\xc8\xb3\xc0\x99\xe7\x4a\xc4\x67\x71\x14\xf1\x40\xbb\x68\x52\x9a\xef\x52\x09\x3d\x53\xaa\xe7\x97\x51\x17\x14\x19\xf3\x62\x25\x9b\x68\x8f\x5f\x74\x33\xab\x45\x91\xaf\x9b\xa1\xb9\x52\x4d\x16\x55\x20\x82\xc0\xa1\x56\x57\xf9\xc3\x42\x56\x74\xed\x12\x22\x20\x98\x58\xfa\xee\x9c\x07\x56\xb3\x72\x39\xd1\xd6\x8e\x56\x23\xd9\x92\x2a\xf4\xef\xf9\xd5\xdc\xbf\xf0\x1a\x3c\x00\xb4\x38\xd8\xb8\xf4\x1c\x6f\xce\x2f\x5f\x2f\x4c\xf4\x9e\x5f\x21\x0c\xde\x1b\xdf\x9b\x5c\xf0\x84\x87\xfe\x9c\x13\xa4\x4c\x06\x86\x77\x09\x24\x12\x74\x04\x09\x58\x46\x7f\xd2\x26\x1f\x9a\x16\xf3\x06\x5b\xda\x1a\xfd\xd9\x66\x51\x7b\x27\xe4\x91\x99\xe7\x97\x1e\xac\x24\x24\x39\x2e\x5b\xd8\xd6\xea\x44\x8d\x26\x01\xbf\x7b\x2e\x61\x71\xea\x89\x54\x2f\x37\xce\x64\xbe\xe6\xb7\x4e\xa3\xd2\xa8\xff\xcf\x37\x87\x30\xb6\x5b\x4f\xa0\x82\xd8\xd6\xd9\x93\xdf\xff\x9c\xa9\xd3\x44\x49\xcf\x5e\xfe\x7e\xe3\x04\x96\xe8\xd9\xd6\x39\xd4\xe4\xf2\x3f\xe3\x34\x66\xa1\x42\x6e\x3b\x93\x39\xf4\xb6\x4e\x66\x96\xa5\x71\x3e\x8b\xd6\x51\x99\x43\x0a\x35\x93\x37\x81\xef\x96\x56\x1d\x87\xb0\xa9\x20\xc1\xab\x09\x80\x83\x63\x03\xab\xc8\xf9\xdd\xbe\x63\xa0\x09\x6f\x6d\xd0\x29\xdc\xe1\x75\xfd\x79\xd8\x8d\x56\xeb\xee\xc2\xb9\x44\x56\x6b\x4b\x2f\x6f\x42\x4b\x59\x79\x17\xfc\x65\x06\xab\x92\x29\xfa\x3a\x70\x56\x2c\xb8\x42\x37\x20\x12\x41\x67\x6c\xdd\x0d\x9d\x9f\x39\xca\x36\xad\xf2\x50\x8b\x18\x90\xa6\x72\x23\xac\x55\xb3\xc5\xf3\xa1\xea\x26\xd4\xe1\xf8\x5e\xd7\xf1\xba\x6b\x55\xe2\x3a\x97\x86\x35\xdf\x17\xca\xb7\x60\x19\xca\xca\x01\xc8\xb5\x33\xd9\xd4\xd5\xd2\xfc\x42\xcf\xbc\x33\x84\xad\x5a\x32\x2f\x5b\xf2\xcc\xb4\x73\x81\x5b\x6c\xf8\x8d\x08\x00\x20\x91\xe0\xec\x66\xb3\xa9\xbf\xde\x34\xd3\x99\x13\x95\xa6\x29\xbe\x7e\x0e\x1b\x5d\xf5\x34\x9c\x01\x05\x83\x95\x59\xea\x35\x79\x29\x61\xf3\x06\x2b\x37\xd0\xc8\x75\xe1\xbc\xae\x1c\xa9\x48\xe0\xc1\x9d\xb7\xd6\x4f\x57\x5e\x2a\x24\x18\xa5\xfd\x51\xe4\x6e\xb3\x3f\xe2\x6e\xd1\xfe\x28\x72\x6f\x65\x7f\x64\xe6\x06\x48\x83\xe1\x3d\x9b\xcf\xef\xdd\xab\x18\x20\x7d\x74\x8b\x15\x64\xec\x1b\x02\xab\xa4\xc2\xb1\xba\xc7\xb2\x8c\x85\xcb\x2f\x47\x22\x85\xb9\xce\x19\x5c\xcd\xaf\x42\xcb\x90\xb6\x30\xff\x50\xab\x24\x09\xd9\x6b\xed\x92\x3a\x2f\x94\x5d\x12\x3b\x38\x50\x4f\xab\xad\x16\x4a\x85\xfa\x3e\xd0\x46\x49\xac\x01\xe3\xbc\xeb\x2c\x28\xaa\xb2\xc5\xc8\x90\x4b\x82\x2a\x54\xcc\x0d\x12\x60\xff\xad\x5a\x2c\x65\xbb\x70\xd1\xc2\xc1\x99\xd3\x5b\xb1\xc3\xc5\x32\xb9\x79\x35\x2a\x9b\x61\xc0\x86\x45\x1b\xf8\xbb\x92\x4d\x45\x69\x03\x97\xb9\xb7\x71\xd2\xe5\x82\x85\xbd\x7c\xab\xa5\x4e\xa9\x80\x26\xc8\x02\x74\x35\xea\x54\xca\xfa\x37\xb5\xc1\xf7\x00\xd5\x28\x2a\xd1\xe2\x2d\x46\x1f\x65\x20\xff\x71\x30\x97\x7c\x55\x1d\xe0\xf5\xf4\x3a\xc4\xeb\x79\x6e\x00\x77\xce\xee\xde\x0e\xd6\x99\xfd\xd1\xbf\x00\xa0\x33\x9e\xa7\x0e\xeb\xc6\x4f\x75\x70\x37\x66\xbb\x01\xe2\x25\xfe\xf4\x76\x40\xd7\xcc\xea\x7f\x2c\xdc\x73\xba\xa4\xa1\x2e\x49\x7a\x19\x44\x35\xfb\x30\xc9\xd8\x55\xbb\xfe\x37\xd8\x31\x29\xca\xf9\xbb\xdf\x36\xb2\x62\x7f\x8b\x1d\xbc\x55\x6f\xb7\xe2\x47\x85\xdb\x2b\x8d\x50\x73\x05\x34\xe3\x0a\x7e\xeb\x94\x68\x10\x6c\x99\x0a\xc3\xd0\xcc\x86\x26\xf0\xa5\x86\x94\xbd\xe7\xc6\x98\xee\xd4\x19\xdd\xe9\x8e\x65\xb4\x1a\x3a\x60\xa4\x85\x4a\x6a\xb6\x7f\x8a\xa9\x2c\xdb\x63\xea\xbd\xe7\xfa\xc1\x18\x06\x58\xd7\x5d\xcb\x87\x96\xf3\x6f\x1b\x98\x61\x14\x38\x53\x2a\x19\xd3\xe2\xf7\x8a\xc9\x22\x70\x11\x1a\xed\x9a\x46\x3c\x36\x8a\xc8\xa8\xb8\xd0\xe9\x0e\x36\xac\xda\x87\xba\x4d\x24\xd8\xf0\x49\x6c\x68\x44\x34\xf8\x2e\xb6\xe8\xfa\x8e\x0d\xea\x3a\xdb\x36\xe8\xdf\x85\x9d\x9a\x43\x2d\x66\x06\xe8\x6f\x61\x79\x3f\x00\x7d\xaf\xc3\x38\x8d\xaf\x75\x86\x56\xcc\x11\xbe\x0e\xb1\x04\x8f\x6b\xc8\x38\x6a\x82\xb5\xad\xce\x61\xc6\xd9\xee\xd7\x39\xda\xbd\x7e\xfe\xf5\xb7\xce\xcb\x6d\x4d\x2f\x9d\x50\x4a\x9a\xb5\x65\xa5\x0e\xaf\xd1\xe7\x61\xdf\x75\x4e\xfb\xea\x7b\xc1\xda\x52\xa4\xac\xa3\xab\x6b\x4b\xac\xa3\xab\x42\x09\x7d\xc7\xab\x8b\xe8\xf7\x42\x96\xa2\x05\x68\xdd\xce\xf3\x76\x06\x9b\x1a\x9f\xc9\x14\x70\x0a\x2e\xf8\x0c\x13\x1b\x74\xdf\x30\x95\x25\x61\xed\x76\xcf\x58\x30\x37\xe4\x44\x7f\xad\xdf\xf3\x95\x32\x64\x37\x7e\xb9\x35\x67\x76\x93\x65\x4c\x77\x94\xb5\xa8\xf8\x4f\x5e\x6a\x95\xd3\xb2\xfb\x2d\x48\x56\x46\x9e\x85\x9a\x0b\xf7\x83\xf5\xfa\xe5\x9d\x56\x43\x23\x4d\x1f\xca\x17\x61\xc5\xe6\xc0\x56\x12\x2b\x08\x7d\xa0\x09\x68\xf5\x22\x4b\x19\x80\xca\xb2\xb5\x15\x62\x98\x4e\xf6\x8c\x0b\xd6\xaf\x4d\xd7\x8d\x06\x35\xf2\xcc\x39\x60\xe4\x53\xbe\x5d\x16\x4c\x42\xb3\x8a\xea\xc4\x8f\xca\x29\x2b\xe5\xab\xaf\x5f\xc8\x83\x4b\x99\xf4\xec\x1a\x34\x6f\x65\xeb\x04\x37\x4f\x71\xf3\x24\x2b\xb8\x97\x1a\xca\x27\xbb\xb9\xb9\xa6\x69\xbd\x66\xc6\xaf\x99\xf3\xac\xf5\x02\x48\x8b\xdb\x6f\x09\xaa\xfd\xbe\xe1\xf9\x11\xb7\x44\x3f\x8c\x53\x27\xba\x70\x42\x6e\x1c\xbc\x7a\x6a\x9c\x72\x9b\x89\xb4\x0b\x6e\x5c\x30\x4f\xfa\x39\x80\xfb\x9e\x50\x29\x8c\xaf\x79\x20\xc6\xc5\xe7\xba\x2a\x67\x61\x98\x2d\xb3\xe9\x72\xd5\x68\x1b\xb5\xeb\xd5\x52\x5a\x7e\xc1\x8a\x71\x11\x38\x52\xc0\x50\x18\xd6\x2d\x90\x21\x37\xa8\x56\xd9\x6e\xb8\x8f\xcd\x5b\x53\x37\xb3\xca\x61\x24\xd0\x91\x4d\x69\xb3\x5a\x18\xf9\xc7\x4d\x79\x3f\xaf\x5d\x1a\x15\x3f\xa7\xf9\x4b\x5a\x6c\x2f\xbb\xe2\xad\xb7\x75\x5b\x6c\xcf\x6b\x2c\xcc\x76\x11\xfa\xa5\xd9\x16\x23\x50\xe4\x7a\xdb\xb5\x6c\x69\x64\x9a\x70\xdf\x7c\xa5\x2a\x00\x5f\xba\xac\xcb\x8f\xac\xd5\xdb\xba\xe9\x0e\x26\xc6\xfd\xc1\x00\x57\xe7\xb9\x3c\xb2\xb4\x80\xa2\x4b\x66\xbf\xbf\x92\xe3\xb2\x32\x8c\x8c\x7c\x03\x74\xe2\xe4\x22\x09\x0d\xe6\xcd\x8d\x68\xc9\xb3\x15\x65\xac\x59\x10\x19\xfe\x22\xfb\x1e\x66\x9f\x4a\x28\xab\x76\xbc\x6d\x00\x31\xda\x6d\xe3\x86\x3c\x46\xc7\x98\xee\x14\xaf\xac\xa7\x3b\x7f\x20\x1c\xab\xb7\xd3\xb7\x87\xdf\x35\x44\xa8\xd6\x6a\x91\x7e\x68\xb9\x5e\xee\x9a\xa0\x8c\x5b\x92\x83\xb8\x1d\x62\xc9\x5b\xea\xdb\x43\x23\xa7\x78\x0d\xa0\x68\xbc\x24\xff\x70\x78\x5c\x33\xed\x7f\x68\x77\x1b\x6f\xd0\xff\x98\xe9\x2b\xb5\xfb\x21\x73\x97\xdd\xa1\x57\x76\x81\x17\x2c\xe2\x81\xe1\x7b\x46\xe8\xaf\xb8\x11\xf0\x30\x0a\x1c\xc5\x9e\xad\x9c\xb3\x25\x80\x1b\xdc\x21\xf2\xb9\xb1\xe4\x01\xbf\x79\xe6\xb3\xcb\xfe\xdb\x43\xb3\xb4\xa7\x35\x00\x74\x9b\x02\xc0\x1f\x03\xd3\x6a\xeb\xd7\x83\x75\x9a\xb9\xb1\xc8\xb4\x08\xaa\x2e\x2c\xaa\xfb\xc1\x76\xa7\x15\xfb\x7f\xae\x44\x39\xf7\x69\x51\xf3\x91\x51\x3f\x57\xcb\xda\xfb\x9f\x18\x6f\x5f\x3f\x7d\x6d\x01\x3e\x2c\xfd\x0b\x20\xad\xea\x38\x65\xc8\x5e\x69\x47\x07\xa1\xc1\x8c\xdd\xf5\xa5\xa1\xaa\x02\x0f\xf8\x3d\x43\x7a\x4c\x34\x9c\xc8\x88\xbd\xc8\x71\x05\xd9\x16\x95\x3b\xe0\xbc\xe6\xf5\xd3\xe3\x9e\xf1\x49\x5f\x34\x54\x2c\x65\x19\x03\xa3\x25\x4f\x08\xcc\x8b\x6e\xf6\xc7\x41\x1a\xe4\xf4\xc3\xb2\xa3\xb0\xfa\xf8\x26\x95\x12\xb3\x7f\xb2\x01\xff\xf3\x88\xff\x7f\x7a\xa9\xdd\x92\x7d\x9a\xc9\xff\x07\x7f\xc9\xff\xff\x92\xff\xff\x6e\x98\xff\x25\xff\xff\x4b\xfe\xff\x97\xfc\xff\x2f\xf9\xff\x5f\xf2\xff\xbf\xe4\xff\x7f\xc9\xff\xff\x92\xff\xff\x25\xff\xaf\xd6\xff\x97\xfc\xff\x2f\xf9\xff\x5f\xf2\xff\xbf\xe4\xff\x7f\xc9\xff\xff\x92\xff\xff\x25\xff\xff\x4b\xfe\xff\x97\xfc\xff\x2f\xf9\xff\x5f\xf2\xff\x8a\xfc\x1f\xa7\x98\x7c\x9f\x3b\xe4\xd6\x12\xfd\x5b\x39\xe4\xf6\x5c\x7a\xce\x95\x0f\x08\x12\xb8\x74\x1d\x98\x48\xbe\x21\x4c\x7c\x97\xbe\xe1\xf9\x7b\xee\x9f\x42\x10\x8c\x7f\x61\xff\x14\xcc\xfd\x53\xfc\x53\x38\xee\x3f\xa1\x7f\x8a\x62\xa7\xfe\x01\xfe\x29\x8a\xbe\x9b\xc1\xb9\x61\xc1\x73\xb3\xf2\xd8\xdc\x0a\xdc\x24\x69\xf9\x2e\xf8\x6d\x16\x73\xdf\xe4\x15\xdb\x93\x5b\x16\x89\xc8\xed\xdc\x7f\x63\x88\xc9\x0e\xb6\x30\xb6\x5b\x75\x8e\xf1\x84\x45\xf6\x52\x1d\x00\x91\x0e\xa4\xe8\xc5\xab\x53\x1e\xbc\x5e\x1c\x57\xa2\x7d\xab\xb8\x49\xaf\xe0\x73\x29\xb2\x22\xa9\x06\x06\xbf\x26\x06\xe3\x56\x3f\x1c\x87\x92\xc6\x01\x2d\x2e\x1c\xc8\x37\x69\x31\x70\xe3\x26\xd4\x11\x09\x9e\x7b\x0b\xff\x2d\xbf\xdc\xe2\xe4\xa1\x77\xc7\xcb\xec\xaf\x3e\xde\x18\x6c\x05\x27\x9f\xd4\xd0\x1d\x05\x6e\x0a\x91\xed\xdf\x42\x24\xbd\x39\x6c\x03\x06\x2e\xb9\xc4\xd6\x7b\xd4\x73\x41\x73\xd7\xbe\xcb\x22\x6e\x46\x64\x23\xab\xb6\xae\xad\x28\xc5\x29\x61\x72\x06\x9a\x87\x42\x38\x9d\xcc\x88\x47\xd5\xc1\xb6\x5c\xba\x4e\x24\x72\x3f\x5f\xd5\x08\xbc\x69\xe6\xc1\x98\x04\xd4\xdb\x1f\x10\x9f\x7a\x7b\xd7\xf6\x6d\x14\xb4\xdb\x5c\xfa\x8e\x2d\x1b\x93\x9d\x0a\xbc\xe9\xca\x6e\xab\x48\xbc\x48\x07\x52\x2b\xdb\xec\xeb\xd0\x29\x08\x13\xc7\x86\xa0\xdb\x32\x42\xef\x92\x79\x73\xb7\x88\xe1\x65\x73\x32\xd5\x83\x2c\xf0\x8a\xa9\x2d\xf6\x6f\xd3\x21\x25\x9f\xde\xd2\xa3\x27\xae\x6f\xbf\xcf\xba\x53\x8c\xbd\xfb\xc1\x7d\x1a\xc2\xe2\x92\xde\x05\xb7\xf5\x85\xbb\x3c\xe2\x48\x63\x4b\xa1\xf3\x4e\x73\xf7\x9e\xca\x02\x79\xff\xe0\xf5\xfa\xbe\x2d\xfd\x8b\xe2\xea\x51\xa7\x46\xd3\xc1\x62\xe5\xe4\xe9\xd6\xa6\x21\xba\xb0\xba\xc3\xb1\xaa\xab\x46\xf6\x03\xb6\xfd\x6c\x61\xa8\x21\x8e\x11\xb9\xee\x73\x38\xbe\x69\xed\x28\x5f\x33\xd6\x75\x73\x08\xf5\x77\x65\xc6\x2d\x33\xa9\xed\x69\x4b\xe1\x9e\xb9\xed\x7b\x73\x30\x64\xbc\x0e\x64\x4b\x67\xce\xb7\x80\x2c\x83\xd9\x6d\xba\xa7\x6d\x65\x9b\xfb\xa7\xbe\xe2\xa6\xa8\xce\xba\x77\x50\x46\x56\x97\x91\x04\x81\xe9\xbc\xe0\x02\x88\xb9\xa6\xfc\x57\xf7\x02\xd4\x80\x97\x88\xa0\x72\x7d\x1f\x1c\x8b\x16\xbc\x08\x35\x23\x55\x93\x2f\xa1\x66\xca\x4d\xb3\x2e\x5f\x9b\x0d\x5a\x0b\x20\x9b\x60\x0d\x70\x4a\xb6\xcc\xcd\x9f\xdb\xf2\x10\xcc\x73\xa5\xa7\x8f\xf0\x0f\xf1\xf4\x91\x1b\xf7\x82\xad\xae\x5e\x25\xf9\xd5\x85\xe3\x2d\xfc\x4a\xe8\xf0\xf8\x7d\x57\x70\xf3\x5d\x19\xaf\x2d\x33\xe4\x6d\x34\x0b\xbe\x8d\xc5\x72\x6d\xb7\xac\xc7\x2f\x94\xd5\x28\x6b\xdb\x04\xe1\xd9\x07\xd8\xc5\x17\xd0\x3a\x60\x17\xb7\x0f\x6f\x78\xe8\x72\x01\x66\xdd\xb9\x9a\x45\xfc\x36\xe4\xdc\x16\x56\xf3\x3a\x23\x6a\xb2\x75\x11\x87\x02\x92\x59\xd0\x44\x48\x21\x4d\xcc\xb6\x06\x02\xcc\x23\xef\xc1\x52\x57\xa6\xeb\xcd\x88\x35\xe1\x3d\x67\x3e\x53\x56\xec\xcc\xe5\x41\xd4\x10\xf0\x54\xcc\xb3\x51\x9e\x6f\x43\x9c\xc0\x20\xbf\x38\x87\xf1\x62\x04\x53\x0d\x67\xde\x2b\x12\xf4\x5e\xf6\xa1\x10\x66\x99\x78\xfe\xa1\xeb\x87\x3c\x0f\xe1\x5a\x9c\x62\x98\x8b\x4a\x2d\x6a\x0b\xc0\xb5\xb9\x6f\x98\xf2\x92\x81\xbd\x33\xaf\x76\x48\xd2\xeb\x9e\x33\x27\x5b\xfb\xac\xb2\x34\x75\xbd\x88\x05\xcd\xa5\x14\xd5\x94\xae\x03\x44\x4f\x8b\x42\x53\xd4\x69\x1a\x9d\x2a\x09\xd3\x86\x3b\x85\x02\x75\x5c\xff\x0d\xe3\x95\x2f\xd7\x0f\x58\xe5\xf9\xd0\x11\xab\x62\xbf\x65\xc8\xaa\x68\xf3\x98\xc5\x12\xb2\x9a\x47\x0b\x03\xac\x8c\xa5\x11\xc7\x80\x39\xe1\x3d\xf1\xa7\x3c\x84\x6b\x7a\x9b\xf5\xb5\xda\x2d\xdd\xa9\x14\x63\x32\x50\x16\xfd\x61\x83\x45\x7f\x76\x4c\x8d\xff\xb5\x4f\xe1\xee\x9f\x73\x0a\x8f\xff\x19\x4f\xe1\xf1\x3f\xf6\x14\x2e\x0f\xc2\x8b\xfc\x20\xbc\x5e\x23\x52\x08\xf7\xb7\x69\x3a\x19\x5b\x05\x0f\x12\xe1\xed\x3c\x48\xe4\x8a\xa9\xbb\xf7\xf8\xbd\xd3\xc7\x83\x47\x25\x07\x12\xbd\x0a\xa5\x9f\x54\x32\x2b\x9d\xd4\x35\x9b\xcf\x1d\xef\xcc\x32\xee\xad\x2f\x8d\xe1\x70\x7d\x69\xdc\x5f\x5f\x96\x25\x64\x99\x00\x2d\x60\x73\x27\x0e\x2d\xe3\x6e\x43\x0e\x66\xbf\x3f\x0b\xfc\xd8\x9b\x77\x6d\xdf\xf5\x03\xcb\xf8\x68\xb1\x58\x34\xd7\x63\x19\xa2\x99\xd0\x77\x9d\xb9\xf1\x11\x1f\x88\xff\xaa\x19\x75\x1d\xcd\x5f\x17\xbe\x17\x81\x7e\x85\x65\x0c\x7b\xc3\x80\xaf\x1a\x33\x5c\x70\xe7\x6c\x19\x59\xc6\x83\x7a\x05\xae\xe3\xf1\xee\x52\x7d\x1f\xf6\xee\xd5\x24\x82\x55\xe0\x19\xfb\xc6\x27\x35\x00\x5a\x9e\x1f\x99\x96\xcb\xc2\xa8\x0b\x61\xdd\x95\x64\x76\xc5\x82\x33\xc7\xeb\x06\xb2\xf6\x47\xeb\xcb\xad\x55\x4a\xd2\x78\xd3\xc4\x0c\x7a\xbb\x62\x88\x83\xde\xfd\x80\xaf\x64\x5d\x53\xaf\xff\xc9\x47\x86\x9c\xe9\x97\x52\x9d\xf6\xdd\x9b\x17\xb4\x09\xb1\x7a\xe7\x31\xef\xad\xd8\xda\xf8\xa4\xff\x0f\xd2\xfa\xad\xb6\x8e\x48\xa3\x2c\x68\xbb\x5a\xf0\xc1\xc1\xc5\x67\x4a\x15\xf8\xec\x30\xd3\x0a\x7e\xf0\x24\x7b\x74\xf2\x54\x3f\x7f\xbc\x52\x19\x8e\x0e\xc8\xbd\x3c\xef\x6e\xf5\xf1\xe0\xf0\xf2\xb3\x83\xd1\xc1\xd3\x81\x6e\xc3\x51\xc9\xe7\x90\x7c\xa5\x93\x43\x95\x1c\x7d\x76\x30\x1a\x1d\x88\x5a\x57\x4f\x0f\x0e\x56\x4f\xab\x3a\xc9\xf5\xe1\x56\x35\x93\x51\x45\x33\x59\x2b\x37\xbd\xe7\x57\x74\xba\x85\x69\x9f\x66\x5a\xc9\x53\xc9\x19\x4c\x75\x6c\xe3\x69\x85\x83\x9f\x6a\x7d\xa8\x92\x0e\x97\xae\xb7\xc0\x97\x4f\x73\x85\x21\xc8\xba\x9f\xec\xf5\xe1\xaf\x4a\x2b\xe9\xfd\x65\x1b\x77\x5e\x61\xc6\x5b\xef\x54\x78\xeb\x1d\x3c\x45\x05\x8d\xa8\xa9\x60\xd4\xa7\x48\x2b\x3a\x4d\xb7\x9e\x03\x8b\x1d\xea\x37\xa8\x6b\xd7\x00\xe0\xcc\xe9\x74\x0b\x9f\x3d\x2d\x6b\x85\xa9\x60\xb6\x22\xb7\x94\xa9\x7b\x46\x96\x51\x46\xb0\xd5\x9f\x24\xa7\x30\x45\x15\x3d\x32\x58\xa8\x52\x69\x6f\x8a\xb6\x32\xe1\xaa\x0a\x67\x3e\x13\xd5\x16\x41\xa0\xbe\x34\x73\xd2\x46\x92\x18\x3b\x8a\xcf\xd9\x99\x22\x43\x71\xd3\xd5\x09\xbe\x81\x75\x9f\xa2\xba\x0a\xdf\xfe\x66\x63\x34\x35\xad\xd8\x6f\x23\x4d\x4b\x73\x5e\x9b\x6c\x50\x5a\xcb\x01\x6e\x29\x88\xd7\x2b\xcc\x98\xf0\xe2\x44\x5f\x93\x51\xf1\x6c\xb7\x01\x53\x95\x79\xaf\x40\xab\x12\xcb\x7b\xcb\x80\x8b\x1c\xb9\x91\xa6\xa5\xe1\x36\x28\xbd\xfd\x66\x30\x64\xbc\xf9\x8d\x70\x28\xb3\xda\xb7\x02\x44\x95\xa9\xff\x6d\x90\x28\x32\xea\xb7\x02\x05\xa4\x02\xa2\x35\x2a\x57\x6a\xa5\xcc\x12\x54\x1a\x01\x70\xfd\x58\xb7\x2e\x07\x4b\xb0\xfc\x85\xaa\x6d\xdf\xab\x0c\x36\x1f\x6a\x7d\x54\x1f\xaa\xd3\x98\xbf\x7d\x70\x48\xe9\x5a\x18\x69\xd0\x2e\xbc\x41\xb9\x70\xa7\x69\xe3\xd8\x69\x88\xf3\xbc\xf5\x8e\xa4\x1a\xf7\x59\xdd\x96\xe4\xf7\xc8\x0d\x81\x9f\x89\x56\xa9\xbb\xa1\xae\x0f\x8a\x21\x5d\x54\x87\x54\xf5\x28\x2e\x38\xd7\xda\xd8\x76\xe7\x62\x6c\xd2\x5a\x7d\xb5\x98\xd4\xb5\x3d\xac\xa4\x52\x20\x19\xed\x4c\xaf\x75\x9e\xdd\xe6\x67\x12\xe6\x9d\xad\x77\x2f\x3b\xc4\xd8\xfe\x31\xdc\x21\xc6\xf5\xd2\xe5\xea\x9d\xfd\xd6\x0b\x9a\xac\x73\xc4\xd0\xad\x59\xd7\xd7\x5d\xd2\xb6\x32\x20\xde\xb7\xc4\xb1\xfa\xd0\xf5\x17\x6a\x4c\x66\xe5\x2f\xba\xf2\xa7\x4a\x8d\x3e\xab\x9c\x1a\xd7\xde\xf1\xe8\xe0\xef\x74\xdf\x68\xe9\x70\xee\xe5\x1b\x1e\x7d\xbf\x53\x6e\xcf\x09\x0f\xbc\x2b\x55\x99\x6e\xd3\xa0\xdb\xbb\xb1\x6f\x0c\xb6\x57\xa0\x5a\xba\xae\xfc\xde\xf5\x30\x2c\xeb\xe1\x34\x75\xae\xa4\x30\xa2\xe0\xa8\xee\x4d\x4a\xfa\x78\x73\xcb\xd8\xb9\xee\x4a\xaa\xa8\x2e\x69\x18\x52\x44\x5f\xd1\x29\xc9\x42\xfb\xef\xe0\x52\x66\x90\x6f\x18\x3b\x70\x59\x55\xae\x46\xcb\xed\xd5\xd2\xd2\xea\xa6\xb5\xcb\x21\x50\x18\x6f\x52\xfc\x4b\xb7\x03\x40\x4f\xe3\xef\x1e\xbf\xba\x01\xbb\x0d\x00\xe0\x3a\xac\x79\xf4\xf9\xdd\xd8\x6f\x03\x41\x59\xe7\x76\x0b\x0c\x14\x8a\xcd\x9f\xaa\x2b\x8b\x48\xaa\xc8\x6e\x1b\x18\xe4\xca\xd4\x72\xb6\x01\x47\x80\xa6\x5c\x65\x61\x00\xcd\x70\x90\x99\x4b\x80\xc8\xc0\x00\x5f\x0a\x1f\x1a\x01\xb0\xed\x12\xae\xd4\x8d\x62\xf5\xa5\xab\xb9\xb2\xfa\x67\x2e\x7f\x33\x76\xe4\x85\x51\x79\x06\xf4\xa5\x5d\x95\xa6\x96\x99\x8e\x9d\xeb\xee\xf0\xca\x15\x5e\x9f\x39\xac\xe5\xbe\x61\x85\xe7\x19\xcb\x88\xa5\xee\xfd\xaa\xda\xb3\xd7\x61\x72\xf1\x1e\xb0\xda\x8b\xe6\x99\x94\xd7\x82\x15\x94\x2e\xc3\x34\xbb\x25\xac\xd6\xd8\x34\xb3\x5b\xef\x0a\xcb\x33\x5b\xac\x28\x2d\x8f\x5a\xdd\x27\xfe\x86\x61\xcb\x92\xb7\x1c\xb7\xca\x7c\xdd\xc0\x9b\x90\xa9\x30\xea\x86\xcb\xc8\xe9\x16\x45\xe6\x6c\x29\xe3\x7c\x2d\xab\x1d\x57\x9f\xe6\xaa\x2c\xc4\xf5\xf6\x07\x19\xef\xb5\x43\x8c\xc9\x4e\x03\x3d\x11\x6c\x41\xb9\x6f\xd2\x20\x21\xaf\x2a\xe3\xf9\x2a\x95\x6d\x3b\xe4\xe6\xe5\xb7\xac\x5e\xc3\x94\x63\x79\x3e\xaf\x5b\x22\x34\xf3\x4e\x06\x35\x36\xa2\x37\xd7\x66\x22\xc6\x44\xd7\x3b\x93\xec\x5b\x51\x67\x1f\x66\xa4\x19\xe7\xfe\x21\xfd\x01\xb2\x6d\x94\x38\xc0\xad\x8a\x8b\x86\xcb\xbc\x33\x71\x1a\xb3\x43\x71\x7a\xcf\xf5\x0a\xab\x02\xb5\x7f\x06\x79\x66\x70\x76\x6a\xee\xee\xde\x23\xc6\x80\x18\x03\xbc\x45\xac\x79\x5d\xa6\xff\x38\xf9\xe6\x1f\x24\xce\xbc\x59\x7a\x99\xab\x5b\x22\x52\x13\x53\xff\x53\xcc\xe2\x3f\xa9\x54\xfa\x8f\x98\xb7\xdf\x35\x73\xbf\x51\xee\x5c\x53\xaa\x4d\x31\xb1\x5d\x52\xbd\xbe\xb8\x49\xa7\x96\xe8\x76\x5e\x38\x61\x64\x9d\xc4\xa4\x6c\xa5\x67\x71\xb7\xa0\xc5\xe7\xba\xa6\xfc\xb7\x49\xc9\x65\x59\x2f\xc5\x09\x9f\x7b\x4e\xe4\x30\xd7\xf9\x19\x34\x59\x96\x2c\x7c\xc6\x1c\x17\x9e\xcf\xb2\x3d\x21\x3c\xf6\x03\xa9\xe9\x52\x64\x9f\x35\x1f\x02\x3a\x2c\x17\x55\x3d\x99\x32\x8f\x92\xe9\xb9\xe8\xfd\xb7\x49\x4d\x48\xd0\xcc\x5a\xa3\x29\xd9\x7a\xf8\xdf\x52\x45\xed\x40\x27\x4f\x69\x69\x8a\x33\x0d\x1f\xb7\x49\xb7\xc7\xc9\x20\x01\xbd\x95\x8a\x27\xf3\x7a\x74\xae\x2c\x5b\x16\xab\x66\xfe\x07\xc6\xaa\xc9\xd4\x1f\xae\xd5\x60\xb0\x7d\x37\x5e\x79\xe2\x55\x2e\x92\xee\xb0\x3b\x6c\x76\x44\xcf\xd6\x6b\xa4\x5d\xff\x17\xe6\x7a\xbc\xa5\x21\xdf\x16\x25\xba\xa7\x2c\x40\xaa\x50\x7d\xc2\xc7\x9e\xb9\x4d\xc5\x23\xbb\xda\x46\x72\xd6\xba\xfe\xa2\x5b\x93\xea\x23\x2b\xda\xca\xcc\x92\xfa\x25\x80\xc8\x5e\x9d\xd3\x34\x85\x3b\xf5\xac\x17\xb6\x72\xfa\x7f\x9d\xbe\x4a\xa3\xea\xcf\x50\xc0\xd0\x3f\xe7\xc1\xc2\xf5\x2f\xba\x2c\x8e\x7c\x94\x5e\x33\x09\xa0\x37\xdf\xe5\x97\x6b\xe6\xcd\x55\xc6\xac\x0f\xae\x13\x16\xc2\x91\x64\x88\x9e\x49\x0d\x42\x1d\x90\x00\xcf\xac\xa8\x97\xad\xb4\xf1\xe4\x1a\xcd\x15\xdf\xee\xae\x1a\xf4\x52\xd0\x05\x0b\x3c\xc7\x3b\x43\x04\x79\x7e\xd7\x76\xfd\x90\x23\x88\x97\x5e\x9c\x79\xd1\x9f\xae\xeb\x33\x41\xc2\xba\x0b\xb9\xaa\x6b\x41\x02\xea\x40\xf1\x59\xd4\x75\xf9\x22\x32\x44\xdb\x41\x37\x57\x8b\x91\x57\xb8\x59\xcb\x0d\xbd\xb9\x45\x80\x81\xef\xfc\xd8\x98\xfb\xde\x8e\x8a\x70\xbf\xe6\xc1\xca\x81\xc8\x21\x60\xe8\xb8\x62\x1e\x3b\xe3\xd9\x39\xa8\x97\x05\x1f\x50\x0a\x14\x62\x34\x10\xa2\xa2\x09\xd3\xb3\xf1\xf2\x40\xc6\x1c\xd9\xc5\x33\x9c\x8e\xe6\x5b\x83\x15\xac\x4b\xc1\x0a\xe6\x1f\x7a\xd5\x7c\xfa\x68\x31\xbc\x7f\x6f\xc8\x2a\xb1\x0a\xfe\x23\xfe\xcf\xcc\x47\x0e\x16\x11\x0f\x8c\x65\x14\xad\x43\xab\xdf\x3f\x73\xa2\x65\x7c\xda\xb3\xfd\x55\xe1\x12\x53\x3d\x74\xe7\x3c\x74\xce\xbc\x6e\x78\x15\x46\x7c\xd5\x5f\xc7\xae\xdb\xbf\x37\x7c\x64\x9c\xf1\x28\x34\x56\x3c\x38\xe3\xf3\xa9\x17\x2d\x79\xc0\x8d\x0b\x98\xaf\x53\x6e\x30\xcf\xe0\x97\x51\xc0\xa4\x59\x8c\xb4\x00\x74\xc2\xfc\xbb\xc7\xf9\x5c\x1c\x63\xbd\xab\x95\x1f\x70\xb0\x38\xc9\x90\xbf\x9b\x09\x30\x35\xb1\xe8\x9e\x46\xde\x6f\x35\xb1\x29\x0e\x79\xfe\x63\x1c\x6a\x33\x17\xd9\xa6\x6f\x77\xe7\x81\xbf\x9e\xfb\x17\x5e\x77\xc5\xbd\x58\x56\xaf\x6c\x5e\x86\xf7\x07\x9a\x01\xf8\x73\x6e\x81\x0f\xd6\xeb\x6b\xfc\x3c\xfd\xf6\xff\x0e\x0e\x76\x9f\x1e\x8c\x3a\x4f\x0f\x0e\xa5\x47\xa8\xed\xb1\x22\xd4\x25\xed\x45\x9e\x00\x19\xbe\xab\xf9\x92\x52\x3d\xfd\x10\x07\x52\x73\xe7\x5c\x5d\xce\xdd\x6e\x53\x2a\x3b\x9d\x10\xbb\x51\x7e\x15\xa1\x1b\xc9\x3c\x82\x14\x99\x91\xe2\x85\x4b\xa1\xd1\xc2\x06\x55\xbe\xb2\xda\x72\x19\x5a\x3e\x9b\xab\x76\x1a\x98\x98\x72\x46\xeb\x9a\xed\x8b\xa2\x6d\x9b\x57\xb5\x92\x86\xa2\x35\xc6\xa8\x58\xa4\xbf\x65\x44\x72\x77\xd3\x97\x4d\x65\x6f\x22\x75\xbf\x1f\x70\x61\x5c\x9e\xa2\xa6\x6d\xae\xdc\x56\x79\x5a\x4b\xdb\x5c\xe5\x6e\x6d\xaf\x44\x70\x0d\x2b\x1f\x5b\xb6\x61\x57\x07\x52\xed\x64\xc5\xc5\x89\x48\x29\xe1\x5b\x15\x39\xc4\xb0\x61\xe6\x72\xf6\xb4\xf9\x8e\x3a\x77\x45\xa2\xb7\x24\x43\xef\x8f\x05\xfc\x59\x55\x90\xb2\x69\xa3\xbc\xce\xe1\x48\x56\x77\x53\x7b\x45\xc0\xd7\xb6\xd2\xed\x6e\x4a\xd4\xbe\x38\xbd\xe5\xc6\x78\x8d\x0f\x93\xf2\x6d\x65\x13\x64\xb3\x8d\x74\x0b\x18\x78\x80\xaa\xb8\x96\x4f\xe1\x6d\x3d\x9f\xc0\x0d\xe1\xa7\x3c\x8a\x78\x20\x6f\x08\x8b\xb7\x85\xc7\x91\x98\xd8\x9a\x23\x12\x55\xb4\x78\xb6\xd1\x59\x7a\x75\xe5\x1a\xf1\x59\x90\xaf\x86\x92\xca\xe9\xcb\xf6\xb2\xb9\xf7\xbc\x86\xd2\xc5\xb3\xdb\x35\x75\x54\x8f\x78\xb7\x70\xa5\xb2\x5e\x2b\xa7\x12\x05\x1d\x38\x63\xd3\xd8\x30\x29\x81\x81\x54\x87\xb6\xe5\x96\x50\x0a\xe6\x14\xd8\xeb\x3e\x46\x4a\x14\x56\xa4\x4d\x77\xb2\x25\x25\x5f\x6b\xe7\x2f\x99\xdc\x44\x32\xa7\x55\x79\x20\xcc\x6a\xbd\xd1\x2a\xc9\x2b\x39\x36\xd1\x50\x2d\x5d\xe9\x5d\x7b\x20\x2c\x4b\xee\xb6\x5e\x1d\x6e\xab\x6f\xcb\xe9\xf0\x03\xa5\xa7\x75\xc8\x66\x70\x15\xc3\xcb\xab\x51\xa7\xc8\xaa\xad\x72\xf1\x10\x79\xbd\xc8\x6f\xff\x1f\xc0\xdd\x4d\x6f\x62\xef\xa6\xff\x39\xf9\xbb\xeb\x8c\x99\x53\x4c\x16\x6e\x41\xc4\x72\x93\x01\xf3\x52\x19\x30\x7b\xf3\xe7\xde\x9c\x5f\x92\x95\x4b\x5b\x03\x72\xae\x2d\x97\x55\x32\xc2\xa3\xc2\x8b\xe3\x4d\x66\xed\x36\xe8\x11\x98\x43\x9c\x17\x2e\x45\x99\x16\x15\x0d\x53\x8c\xc9\x2d\x4c\x56\x57\x6e\x92\xb4\xce\xa5\xc5\xaa\xaa\xab\xc9\x68\x75\xf9\x1b\x8c\x56\xc9\x61\x65\x1c\x62\xd0\x67\x2e\x7d\x17\xe9\x40\x94\xe4\xca\xa5\x93\x59\xf6\x76\xea\xd2\x56\xeb\xca\x6d\xb7\x87\xfd\xc9\x30\x4b\x36\x87\xa4\x3b\xc0\x7b\x03\x72\xe1\xd2\x2f\x3c\x13\xa9\x64\x84\xc9\x81\x04\x95\x4e\x20\x9b\x83\xc3\xc3\xa3\xe3\xe3\xd7\x6f\x8e\xc5\x00\x87\xd6\x20\xc5\xa3\x5b\x80\xe0\x54\x80\xe0\x42\xfc\x1c\x08\x38\xa8\xea\x9a\xa0\x70\xea\x8e\xaf\x5c\xa5\xfa\x0d\xe0\xc8\x46\x8e\x93\x64\x60\x9d\xfd\x16\xcb\x5e\x01\x94\x4b\x69\xbd\x1e\xae\x5d\xc7\xe6\x08\x93\x23\x39\x30\xf5\x5e\x19\xd7\xc0\x12\x63\xdb\x4d\x31\x79\xed\xd2\x97\x2c\x5a\xf6\x56\xec\x92\x1c\xeb\x67\xc7\xbb\xcd\x98\x5b\x97\x62\xbc\x47\x62\xbc\xb2\x95\xc2\x70\x33\xc5\x7c\x12\x10\x9f\x38\x84\x11\x9b\x84\xd4\x97\x1e\x1f\x30\x89\xe9\xdb\xc8\xd4\x03\xc3\xc4\xa5\x4f\x23\x33\x22\x31\x26\x0b\x5a\xd3\x71\x77\x16\xe6\x80\x52\xba\x18\x7b\x34\xa0\x03\x6b\x08\xcf\xa6\x47\x07\x24\xa0\x71\xd7\xc5\x96\xe9\xd1\x45\x77\x97\x04\xf4\xd8\x35\x5f\xbb\xe6\x9b\xc8\xe4\x98\x0c\x30\x11\x1f\x31\x89\x3b\x5e\x37\xd8\x7f\x3c\x18\x3c\x1c\x3e\x7e\xbc\x7b\xff\xde\xc3\x7b\x83\xc7\x8f\x87\x38\x5a\x06\xfe\x85\xf1\xf6\x6a\x2d\x9d\x9f\x98\xe8\x25\xbb\x74\x56\xf1\x4a\xba\x93\xe1\x73\x43\xb6\x6e\xf0\x4b\x1b\xc8\x0b\xc2\xa3\x85\x1f\x98\x3e\x5d\x73\x33\x24\x01\x26\x0e\x1d\x8c\x9c\xbd\x60\xe4\x74\x3a\xd8\x64\xd4\xed\x38\xd8\xf1\x8c\xb0\xdd\xb6\x6d\x53\x8c\x38\x9c\xb0\x19\xd8\x21\xf8\x6a\x20\x34\x20\xde\x5e\x20\x55\xfa\x1d\xea\x8e\x9c\xbd\xb8\x2b\x8b\xdb\xd4\xe9\x78\xc4\x64\xd4\xe9\x04\x50\xc9\x38\x9c\xd8\x33\x2a\x6a\xb0\xe4\x5d\x97\x21\x12\x46\xb2\x64\x3c\x72\xf6\xe3\x6e\xd0\xf1\x46\x4e\xb7\x8b\xb3\xef\x4e\x77\x38\x4b\x81\x3b\x72\x16\xa6\xb7\x1f\x60\x95\x5b\xb4\xb1\xef\x42\x5e\x68\xa7\x3b\x54\x2d\x75\x87\x37\xb7\x25\x86\xe8\x41\x1f\xc3\x89\xd3\x71\x67\x05\xfb\x02\xa7\xb3\x3b\xd3\x62\x42\x3d\x57\x14\xfa\x45\x7c\x8d\x93\x27\x2e\x7d\xdb\x5b\x90\xc3\x82\x20\x32\x5f\x08\x45\xed\x7e\x6d\xe6\xe0\x91\x80\xfe\x24\xa6\xcf\xa7\x67\xdc\x04\x28\x6b\xf0\x11\x46\x07\xc4\xa6\x93\xd9\xc8\xd9\x67\x23\xec\x51\x7f\xc2\x3a\x9d\x19\xf9\xb1\xdd\x6e\x9d\xb8\x3d\x9b\xb9\xae\x19\x10\x0f\x27\x89\x2d\x35\x01\xa2\xf1\xc4\x23\xc1\xc4\x9b\xcd\x2c\xf1\x9b\xd9\x6a\xdb\x69\x4a\xde\xbb\x74\xc3\xbd\x28\x70\x78\x68\x1d\xba\x66\x6b\x80\x09\x44\x9f\x95\x6f\x43\x9c\xf6\xe4\x6b\x69\x19\x48\x43\x03\x69\xac\x07\x06\xef\x1b\x55\xa6\x61\x70\xef\x5d\x33\xca\x96\xe6\x97\x6a\x5d\x2d\x5c\xdf\x0f\xc8\x8f\x2e\x45\xa8\x17\x70\x70\x82\x4a\xde\xb8\xb4\x3f\xbd\x63\x4e\xee\xb4\x77\xfe\x3e\x4b\xa6\xf3\xe9\x7c\x9c\xec\x4d\x7e\xd8\x9f\x7d\xb2\x8f\xfb\x67\xe4\x79\xfd\xb3\x48\x7e\x5b\x84\x28\xe1\x44\x2d\x33\xb9\xe6\x18\xf5\x3a\x91\x86\x9a\x4d\x03\xfd\x18\xd2\xe7\xae\x06\x82\x24\x1e\x2d\x4a\xfd\x76\xdb\xf4\xc5\xc2\xf4\x31\x09\xe9\x1b\x17\x93\x1f\x15\x30\x1d\x52\xb4\x84\x73\x88\x32\x9a\x89\x47\xe1\x85\x13\xd9\x4b\x33\xec\xd9\x4b\x16\x1c\x44\xe6\x00\xe3\x8d\xcd\x42\x8e\xee\x20\x4b\x56\x8f\xee\xa0\x11\xa4\xb4\x75\x8a\x11\xc9\x84\xbf\x67\x09\xbc\x17\x0a\x9a\x61\x0e\x88\x87\xe5\xb7\x9d\xda\x37\xa6\xbe\xec\x21\x2b\xa6\xfe\x24\x54\xc9\x43\xd2\x1d\xe2\xd9\xe8\x34\xe0\xec\xfd\x48\xb1\xb4\x96\xe8\x9b\x4b\x3b\xa1\xa6\x17\x2e\x56\x95\x39\x22\xc5\xdd\xb7\x65\xf7\x17\xf4\x4b\xd7\x74\xfb\xc3\x41\x86\x0f\x92\xb8\x38\xd6\x62\x8f\xda\x63\x09\x17\x4a\x69\x30\x59\x74\x87\xb3\x71\x36\xc8\x21\xb6\x64\x52\xa7\x98\xe4\xa4\x31\x0d\x26\xae\x58\x7a\x25\xc0\x52\x4a\xe3\x31\x42\x56\x9c\x62\x9c\x92\x17\x05\x1a\x7b\xa7\x40\x63\x7f\x66\x26\x52\x78\x80\xc8\x6e\x51\xa6\x27\xa7\x54\xf6\xd8\xff\xff\xc9\xbb\xf6\xa6\xb6\x91\x2d\xff\xff\x7e\x0a\x50\x51\xae\xee\xe2\x8c\x90\x1c\x1c\xb8\x62\x3a\x2e\x06\x4c\x42\x42\x08\x09\x70\x93\x59\x5f\x2f\x25\xec\x36\xa8\x22\x77\x6b\x5a\x6d\x08\xd7\xd6\x77\xdf\xea\x97\x1e\xb6\x61\xb2\xc9\xce\x54\xee\xcc\x5f\x18\xe9\xf4\xeb\xf4\x79\xfc\x4e\x3f\x8e\x88\xf0\x3f\xf4\x5e\xf6\x3e\x9d\x5d\x7d\xe8\x9d\x9d\xec\x1f\xf4\xae\xce\x2f\x7f\x39\xbf\x38\xbe\xb8\xbc\xe8\x9d\x5f\x5d\x9e\x1e\xf6\x8e\x8e\x4f\x7b\x87\x57\x07\xfb\x67\x17\x97\x1f\x7a\x90\xe8\x02\x86\xf2\x4d\xaf\x77\x76\x7e\xb5\x11\x40\x4c\x78\x57\x4d\x90\xb7\x11\xb8\x7b\xe8\xfd\xb2\xbd\x5a\x5b\x47\xd6\x42\x27\xfa\x42\x11\x21\xcc\xb2\x24\x62\x7d\x39\x58\x92\x9e\xa4\x9b\x18\x61\x61\xc0\x41\xe0\x88\x9a\xff\xce\xa5\x48\xd8\x8d\x12\x29\x7d\xb9\x09\x6a\x03\x13\x78\x96\x8c\xd1\x3a\x6f\xb5\x92\xf9\xdc\xcb\x35\xa1\x47\x88\x7c\xc8\x28\x1f\xaf\x89\x56\xeb\x27\x65\xe0\x45\xe9\xb8\x63\x6c\x7a\x36\x24\x0c\x51\x90\xfa\x32\x2f\x08\x6d\x58\x87\xfe\x88\x33\xea\xa6\x79\x68\x54\xb6\xd0\x77\x77\xc9\x1b\x24\x95\x97\xb1\x1d\x31\x43\x4a\x89\xe7\x3a\x52\x6b\x71\x2f\x9d\xcf\x91\x70\x94\x02\x1b\x95\x1d\x93\xdc\xbf\x49\xf9\x75\x9c\xaa\x96\xc6\xa6\x0f\x23\x92\xfb\x53\x96\x0c\xf9\x88\xee\xe5\x7e\x1a\xe7\x52\xa3\x12\x12\x14\xce\x7e\x65\xca\x3e\xed\x19\xea\x5b\xf2\x29\x46\x39\x4c\x75\x5f\x0d\x33\xc9\x2d\x36\x42\x9b\x8c\x51\x66\xac\xd4\x2d\x86\xf5\xb1\x7d\xea\x79\x84\xb8\x8e\xdc\xf6\x83\x01\x6e\xb5\x50\xbd\x9d\x57\x31\x9a\x82\x71\x9c\xee\x19\x86\x11\xc6\x65\xf3\x13\xb8\x23\x9e\x07\x37\x24\x80\x07\x12\xec\x3d\xfc\x9c\x39\x27\xfa\xb0\xb9\x89\x67\xb7\x24\xeb\x3f\x18\xd3\xae\xa8\xaf\x1b\x6d\xc1\x3d\x39\x49\xd1\x86\xf6\x9f\xb7\x86\xfd\x18\xa6\xa5\x8b\x0e\x30\xec\x93\xfe\x00\xbe\x90\x70\xef\xcb\xcf\xb7\xae\xde\x2f\x9b\x9b\x78\xdf\x8c\xa4\x94\x7c\x34\x21\xb7\xfd\x2f\x03\xdc\x9d\x44\xb6\x81\x89\xe5\x6a\x8f\xdc\xfa\x37\x82\x4f\x33\xad\xa5\xa9\xe1\xd3\x3b\xd2\xbf\x1e\xf8\x43\xce\x86\xb1\x44\xfb\x70\xaf\x38\x56\x0a\x58\xaf\xd5\x7a\x67\xaa\xef\x99\x2a\xce\xcb\x99\xb2\x18\xca\x82\xe2\x77\x18\x1b\xef\x77\x4e\x2e\x52\x74\x0d\x53\xb8\x87\x7d\xe8\x29\x51\xb9\x7f\x41\x6e\x5a\x2d\x74\xb7\x49\xa6\xd6\x80\xdc\xc0\x3d\xde\x3c\x87\x1b\x72\xbf\x79\xed\x46\x58\x2a\xf0\x66\x49\x85\x8b\x41\x61\x7b\x7e\xd8\x34\xb8\x78\x66\x67\x94\xce\xe7\xf4\x85\x33\xb6\x6a\xbe\x28\x29\xff\x2b\x19\x6d\xb0\x0a\xa3\xf7\xe6\xf0\x2e\xa2\x78\x8f\xfd\x4c\xf7\xd8\xe6\x26\x56\x9e\x89\xc8\x3e\x2b\x55\x4b\x98\xbd\xbb\xd3\xa6\xcb\x4c\xc6\x48\x17\xf5\x93\xdc\x54\x21\xb1\x93\xfb\x43\xed\x69\x74\xa1\xcb\xa5\x42\xde\x94\x99\x1b\x73\x23\x6f\xdd\x49\xbc\xb9\xde\xd8\x6a\x99\xbf\x7e\x22\xa9\x88\x25\x17\x3a\x94\x31\x97\xf0\xaa\xca\x4d\xa3\x63\xc1\x27\x65\x23\x47\x8b\x9c\x48\xc6\xae\xb1\x45\x6d\x96\xf5\x3e\x02\xb5\x29\x97\xdc\xa5\x4b\x0d\x27\xf5\x27\xe5\x25\x37\x73\x6a\x8c\x87\xc4\x96\xff\xbb\xca\xcc\x5b\xbe\x38\xe7\x4b\x08\x61\xad\x96\xf4\xf5\x56\x89\x98\x0e\x25\x17\xad\x16\x62\xa4\xf1\xc4\xd7\x39\xfb\xc0\x7b\x1b\x67\xba\xc0\x7c\xee\x9d\x53\x53\xb6\xdb\x18\x91\x82\xb6\x16\xcf\x58\xc2\xad\xff\x41\xdd\xe8\x32\x99\x1f\x63\x26\x51\x37\xda\x9d\x87\xcf\xe7\xcf\xda\x18\x75\xa3\x83\x34\x9e\x64\x74\x84\x4d\x0d\x1b\x5b\xbe\xa4\xb9\x44\x0c\x77\xed\xe0\x5c\x08\x67\xb8\xf4\x5b\x63\xef\xd5\x80\x4d\x25\x00\x35\xc0\xe9\x12\xc3\xc5\x52\xd2\x49\xa6\x53\x19\xe6\x99\xa0\xf1\x68\x8d\x71\x1d\x7d\xea\xfb\xa2\x6b\x09\xcb\x65\xcc\x86\xd4\xff\x17\x3b\x66\x6b\xfa\x20\x84\x4d\xbe\xe9\x48\x40\x17\x88\x55\xb7\xd6\xb8\x66\x53\xbe\x36\x51\xc1\xa9\x5e\xb2\x8b\xd7\xfa\x0b\x33\x3d\x40\xd8\xae\x23\xf8\x9e\x9d\xd4\xb7\x2b\x11\xda\xa9\x9a\x8c\xf9\xfc\xd2\xfc\x39\x32\x7f\x7e\x4b\x11\x2e\xe0\x97\xc7\x00\x88\x24\xd2\x97\xfc\x84\xdf\x53\x71\x10\xe7\x14\x99\x49\x8f\x49\xb9\xa5\x5c\xbf\xa8\x2b\xdc\x59\xe5\x17\x41\xab\x85\x62\x42\x37\xbd\xae\xb7\x79\x91\x28\x33\x0c\xac\xfb\xab\xf2\x39\x28\x06\x06\x09\x8e\xbc\x1b\x33\x85\xb2\x7c\x9c\xe0\xc8\xfd\xbc\x48\x94\xb3\x49\x70\x01\xff\x5c\xde\xf4\x06\xba\x14\x54\xa8\xf6\x4a\x1b\x53\x61\xda\xa0\x7e\x67\x36\x18\x44\xb3\x02\x18\xa1\xfe\xc6\x88\x4f\xe2\x84\x75\xcb\x5f\x91\xe7\x81\x50\x2f\xf4\xd1\xbc\x1b\xe0\xc4\xdb\x8a\xb3\x64\xeb\x2e\xa8\xd6\xe3\x16\x37\x81\x21\x21\xb3\x02\x62\x32\x2b\x96\xbc\x28\xf5\xaf\xf9\xe8\xa1\xd5\x42\xd2\xfe\xc4\x50\x1a\x53\xf3\xa0\x7b\x26\xf8\x24\xc9\xa9\x2f\xa8\xb9\x26\x4b\xef\xd7\x5c\xdc\x92\xe4\x79\xc2\x6e\xca\x9b\x00\x6b\x6b\x59\x2c\xe2\x09\x95\x54\x44\x6b\xaa\xac\x87\x71\x84\xa8\xbf\xf1\xdb\x94\x8a\x87\x33\xf7\x2e\x6f\xb5\xea\x33\xb1\xfc\x7e\xd5\x3d\x5c\xa5\xe7\x7d\x39\x20\xcb\xd4\x7d\xa9\x4c\x25\xfc\x92\x22\x2f\xe3\xb9\xf4\x80\x6d\x72\x90\x3a\xf0\x13\x0a\x02\xfd\xfb\x87\x9b\x16\x97\x53\xe7\x6f\x3d\x2d\x2f\x7f\xb8\x69\x31\xc7\x15\xfe\xd6\x93\xf2\xea\x87\x9b\x94\x69\x36\xfa\xdb\x9b\xb0\x2a\xf1\xc4\xa7\xbf\x76\xe2\x89\xd7\x7f\x4c\xe2\x89\x4f\x3f\x62\xe2\x89\x4f\x7f\x6e\xe2\x89\x92\xc7\xbf\xd6\x45\x68\xaf\x09\xd4\x49\x13\xa8\xcf\xe7\x26\xd2\x90\x4b\x30\x6e\x65\x58\x30\x9f\x23\xb6\x0c\xd0\xd7\x1d\x14\xdf\x7b\x12\xa7\x7f\xfc\x0e\x9c\xfe\x0d\x08\x5d\x77\x66\x05\x48\x5f\x19\x7d\x68\xe2\xef\x87\xeb\x0b\x43\x2d\x54\xb0\x33\x9f\xd3\x56\x4b\xb6\x5a\xf6\x04\x45\x8d\x31\x2e\x94\x9b\x31\x6d\xda\x98\x61\x8d\x20\x01\xf0\xba\x8d\x76\xf6\x70\x96\x47\x1c\xd8\x8a\x13\xa0\xe2\x45\x19\x16\x76\x67\x23\xce\x68\xb4\x1e\x14\x91\xfd\x15\x9a\xb5\xc7\x48\xf6\xc5\xe6\xe6\xa0\x28\x80\x2e\x64\x39\x53\xc1\x83\x2c\x60\x1c\xf1\xa2\xf8\xda\x50\xc2\x48\x09\xfd\x73\x63\x09\x9d\x04\x11\x62\xb2\x1e\xc0\x90\xac\x87\x15\x57\x6a\x1c\x61\x2b\x24\x59\x45\x14\x6c\x39\xf1\x25\xf3\x19\xfd\x22\x51\xb9\x52\x17\x13\xa9\x97\x7c\x40\x2e\xf2\x68\xa8\x9a\x4c\x88\x66\x52\x3d\xee\x12\x0f\xb3\xd8\x29\x10\xf3\x4d\x35\xf3\xb9\xfb\x85\x70\x61\xb3\xef\x2b\x1d\x19\xda\x3d\x81\xa4\x28\x8a\x4a\x53\xad\x9c\xfc\x81\xf1\xbe\x2a\xf1\xc6\xe6\xa2\xc9\xb3\x58\xef\xac\x04\x7a\x91\x99\x46\x33\xe3\x9d\x23\xd5\x38\x54\xbb\xb3\x23\x25\x34\xe6\x48\x88\xfa\x55\x1e\xea\x9c\x15\x20\x78\x4a\x73\x43\xbf\x74\x95\xb8\x3f\x28\xe0\xc6\x6c\xc2\x97\x35\xaf\x08\xfb\xa4\xb9\x91\x7e\x53\x40\x63\x63\x7e\x35\x69\xad\x53\x05\x94\xbb\xf6\xab\x69\x4d\x8f\x75\x1f\x9a\x9b\xe7\xab\xc8\xad\xf5\x31\x4b\xec\xa8\x3a\xae\x8a\xfd\x9c\x0b\x89\x50\xd3\xc6\x95\x6d\x70\x76\x26\xa8\xc2\x19\xf9\x79\x3c\xb1\xad\x9c\xc6\x13\xaa\x71\xc8\x63\x2f\xbb\xd2\x4f\x46\x7e\xca\x87\x71\x4a\x0f\xf8\x24\x8b\x05\x45\xd4\x4f\x46\x38\x7a\xbc\xc2\x25\xf2\xc7\x08\xb5\x0b\x80\x58\xd0\xfd\x34\x2d\x87\x6d\xa7\x66\x35\x9f\xe2\xe6\x21\x00\x15\xf4\x3e\x7a\x7c\x1c\x56\x9d\x81\x58\x5d\xed\x23\x55\xbc\x08\xf4\x8c\x9c\x53\x71\x47\xc5\x11\x17\xaf\xf3\x83\x34\xa1\x4c\x46\xcb\xcb\xd1\x4e\x66\xad\x80\x4c\x85\x49\x60\x90\xeb\xa2\x6e\x4b\x03\x6d\xfd\x6b\x6b\x63\x0b\x3c\x0f\x17\x55\x52\xdb\x59\xca\xe3\xd1\xc1\xa2\xc8\x69\xc5\x0a\x40\x09\xdc\x64\x92\x48\x8c\xbc\x93\x77\xfb\x87\x57\x07\xef\x4e\x8f\x8e\x5f\x7a\xca\x3c\xd7\x84\x7e\xd5\xa0\x4e\x29\xda\xa0\xfe\x24\x16\x9f\x2b\x81\x58\xa3\xa8\xb6\xf7\xe8\xf4\x6c\x83\xfa\xf7\x22\xce\x9a\xbe\x5d\x29\xec\xde\x1e\xb6\x1b\x1a\xd4\xcf\x04\xbd\x23\x54\x5b\x1d\xb3\xa5\xb1\x16\xb8\x2d\x09\xe3\xc0\x54\x2f\x41\x28\x33\x94\xe4\x59\x2c\x87\xb7\xc0\x89\x46\x00\xfa\x3c\x91\x29\x49\x9e\x81\x83\xba\xca\x4d\xf6\x05\xf2\xc6\x54\x9f\xa0\xb1\xe7\xd0\x30\xb8\x47\x1f\x94\xb2\x7a\x78\x60\xb6\x39\xd6\x9e\x45\xbc\x3a\x80\x3d\x9f\x33\xe4\x9d\xf7\x2e\xae\x8e\x4f\x8f\x2f\x8e\xf7\x4f\x8e\xff\xbb\x77\xe8\x29\xe0\x64\x68\xb7\x23\xbd\x33\x42\xd9\xa8\xbe\x6b\x22\x79\x86\xf4\xb6\xb9\x96\x3a\xac\xec\x6a\xa3\xed\x6f\xe3\x21\x24\x7f\x10\x17\x1d\xe3\x3e\x32\x24\x7d\xc1\xb9\xb4\x47\x84\xf4\x87\x29\x7c\xc9\x3f\x53\x86\xc1\x56\xd8\x76\xec\xed\xc0\xcb\x14\xcd\x5c\x18\x23\xfc\x55\xb2\x0b\x2a\x6a\x88\x66\x3a\xeb\xb5\xea\x40\x27\x4a\xc6\xa8\x1d\x84\xeb\x84\x20\x4e\xa8\x9f\x53\xa6\xe0\x8b\x8c\xe5\x34\xc7\x33\x5b\x71\x18\x98\x2d\x25\x87\xd7\x12\xc2\xfd\x51\x2c\xe3\x52\x1f\xc1\xce\x88\xbb\x43\xe8\x41\x32\x9f\xf7\x07\xaa\x8b\xf1\xb5\x98\x66\x12\x79\x76\xb5\xd2\x36\x1b\x06\x91\xab\x7b\xdb\x6e\x57\x99\xe7\xed\xc8\x8e\x2a\x54\xc3\x92\x01\xa1\xfe\x50\x89\x13\x6a\xbb\x92\xdb\x91\x6d\xec\x68\xff\xf8\xa4\x31\xf3\x61\xe7\x77\xa6\x1e\xb4\xf5\xef\xf7\xdb\x10\xb6\x07\x83\xa6\x20\x68\x89\xfb\x6b\x48\xc1\x69\xf2\xe7\x4a\xc1\xf5\x94\x8d\x52\x5a\x0a\xc1\x87\x77\x27\xbd\xff\x30\x09\x90\xfc\xe6\x26\xa5\xe7\xee\x44\xd4\x7e\x9a\x36\x24\xc1\x84\x7b\xe5\xd4\xb0\xda\xd4\xa8\x69\xd2\x88\x64\x8f\xf9\xab\x3d\x59\x97\xa2\xc7\xd3\x09\xe3\x88\x9a\xa1\x98\x47\xbd\xc3\x9a\x0a\xbd\x4d\x91\xa8\x9c\x3b\x2e\x60\xc5\xa5\xdf\x68\xa5\xb3\x5f\x29\xb2\x0e\x3d\xd6\x8e\x9d\xc0\x14\x52\x18\xc3\xe8\x71\xf1\x65\x8b\xe2\xcb\xcc\xdc\xb0\x05\xf1\xad\x98\xc3\xeb\x3e\x20\x71\xdc\x81\xb8\xc6\xb3\x21\x69\x48\x33\xe4\xa4\x3f\x50\x32\x3e\x6c\xc8\xf5\x94\xfc\x9a\xa2\x64\xc9\x37\xeb\x50\x5d\x75\x61\x1b\xa6\x7e\x8e\xec\xc4\x3f\x57\x02\x8c\x52\x32\xf5\x19\xc2\xd8\x6c\x7f\xce\x4c\x27\x49\xbb\x6d\xe5\x56\x91\x8c\x49\x6a\x90\x13\x5e\x48\x0e\xb2\x4e\x48\x55\x64\x51\xd4\x59\x29\xc4\x43\xce\x64\xc2\xa6\xd4\x83\x76\x50\x49\x72\x49\x66\x04\x37\x00\x57\xcf\x33\x78\x55\x33\xc9\xf1\x53\xca\x68\xbb\xa3\x2f\xc9\x8c\xfd\x64\x04\xcd\xfe\x45\xb4\x00\xb3\xda\x74\x35\x89\xf3\xcf\xd1\x2c\x8b\xe5\x6d\x1e\xf5\xbd\x66\x72\x0c\x6f\x50\x94\x5a\x1d\x3e\x8b\xda\x41\xa8\xe2\x41\xad\xd0\x56\x9f\xbb\x02\x79\x97\x67\x87\xfb\x17\x3d\x27\x6b\x1e\xbc\x4e\xd1\x6b\x7d\xc5\x6e\xdc\xb8\xf5\x57\x35\x8d\x71\xe4\xd2\x48\xb8\x7e\x8e\xcb\x8f\x24\x15\xd8\x8d\xb7\x1d\x34\x54\x79\x27\x72\x1c\xd9\x01\xa6\x54\x99\x59\x55\x0e\x03\x0c\x4f\xd5\x67\xca\xb7\x83\xc8\xd6\xfb\xbc\x5e\x6d\xbb\xed\x1e\xb7\x77\x1a\xcf\xb7\x5d\x73\xed\x6d\xd5\x5c\x58\x36\xb7\x8d\x61\xea\x53\xa4\x9e\xb9\xaa\x77\x16\xe6\xac\xbd\x03\x53\x7f\x8c\xd4\x48\xc6\x09\x4b\xf2\x5b\xd4\xde\x71\xe0\x23\x50\xc2\xb5\x8e\x2a\x58\x88\x4b\x41\x79\xd6\x69\x0a\xca\x88\x78\x1e\x8c\x88\x62\xba\x23\xef\xd2\xae\x67\x80\x8b\xfe\x26\x97\xd5\x5c\x77\x90\xd6\xf7\xa2\xda\xdb\xeb\x94\x0f\x3f\xd7\x5e\x3d\x59\x34\x7f\xa2\x6c\xee\x7b\xc0\x91\x97\xdf\xf2\xfb\xb7\x26\x19\x86\x07\x33\x99\xc8\x94\x46\x23\x30\x72\x50\xe6\x5a\x2f\x60\xa6\xb4\x51\x05\xde\x6a\xf8\x0b\xe6\x1a\xaa\xd5\xc9\x9c\xa7\x77\x14\xad\x87\xd8\x31\xa6\xe3\x98\x28\x9e\x32\x71\x5f\x53\x67\x50\xd6\xb9\xb3\x6c\xc1\x59\xcd\x82\x33\x67\xc1\xb7\xa1\xbd\x0d\xed\x1d\x78\x16\x0c\xa0\x1f\x06\x10\xee\xd4\xec\xf9\xe2\x47\xed\xbe\xc7\x4c\x7e\xbf\x71\xb4\x3c\xaa\x59\x40\xbe\x60\x01\x93\xca\x7e\xc6\x75\xfb\xf9\x91\x21\xde\x30\x8a\x4e\x5a\x9d\xc2\x75\xe0\x9f\x5f\x0b\xf9\x4a\xfb\xc2\xd9\x55\x66\xe3\xb1\xab\x3c\x9e\x5c\xd9\x17\x57\xfa\xd4\x3b\x2d\xb5\x10\x32\x41\xc7\x54\x08\x3a\x5a\x7a\xa3\x3f\xf5\x48\xcd\x57\xb6\xc0\x7d\x17\xea\x2a\x13\x5c\x5f\x53\x9a\x95\x1f\x7d\xa4\xe5\x47\xa3\x0a\x67\xcd\xae\xa8\xb5\x29\xeb\x01\xd8\xf3\xc5\x8b\xd5\x17\x2b\x61\xc9\xd0\x5a\xb1\x0a\x96\x58\x16\xfc\x63\x01\x95\x20\xef\xec\xf2\xfc\xd5\xd5\x69\xef\x63\x65\xdf\x86\x1a\xa8\xfc\xdf\x24\xf1\x1f\xce\xca\x84\x9d\x86\x51\x0b\x17\xad\x7d\xd8\xb4\x6d\x6d\x0c\xf1\x6a\xcd\xab\x29\xab\xbd\x21\x54\x6a\xfa\x37\xeb\xa4\x59\xa2\xf5\x65\xd9\xed\xb0\x13\x2d\x39\xad\xdf\x57\xe5\xf0\xf9\x57\xaa\x5d\x1b\xc2\xb0\xa6\x68\xcd\x84\x23\xdf\x0a\x9f\xbf\x16\x8d\x7c\x25\x98\x5e\xc4\x67\x75\x4d\xe3\x25\x22\x79\x4c\xe7\x86\x16\x8d\x88\x86\xe2\xe5\x0a\x8d\xf0\x15\x68\x84\x3a\x34\x92\x2f\xa2\x91\x29\xc9\xeb\x68\x84\x36\x5d\xa4\x93\x57\x85\x59\x34\x20\x71\x35\xed\x3a\x20\x1f\x86\xf0\xef\x9a\x72\xb3\xa7\x94\x3b\x19\x45\xa9\x9f\x8c\x2a\xd7\x1f\x5a\xd7\x8f\xc6\x0b\x70\x7e\x3e\x6f\x07\xdb\x84\x90\xb1\x83\x03\x09\xf2\x0e\x7b\x27\xbd\x3a\x1c\x48\xf5\x0a\xcf\x70\xc1\x41\xa7\x75\x87\xef\xfa\xb8\xdb\xd0\x8d\x4e\x89\xdd\x3b\x4d\xec\xbe\x8b\xe1\xa9\xea\x6c\xf1\x5d\x17\x12\x34\xfd\x7d\x19\x29\xb4\x3b\x0b\x38\xc0\xc5\x3e\x3a\x52\x08\xcb\xd6\xb6\x15\xba\xa0\x88\xd6\xfc\x7d\xa7\x0a\x07\x4c\x91\x0e\xe4\xda\xdf\xd3\xd2\xdf\x77\x1c\xed\xae\xf1\xf7\xc3\xba\xbf\x77\x2b\x18\xed\x45\x7f\xaf\x98\xec\x28\xeb\xde\xda\x1e\x19\x5e\xe9\xe6\x9b\xef\x94\xaf\x7e\xc4\x62\x3c\xed\xab\x97\x42\xab\xa7\x7c\x75\x3b\xaa\x0c\xe4\x13\xbe\xfa\x2b\xea\xac\x7c\xf5\xef\x2d\xb5\xd4\x7c\x75\x1b\xda\x1d\x68\xef\x0e\xa0\xbf\x0b\x61\xa7\xb2\x20\x05\x4c\x5c\x56\xa2\x68\x56\x5b\xe3\x5a\xf0\xd8\x6e\xe5\x95\xd0\x02\x16\x96\x7e\x96\x28\x6b\x0b\xaf\x8e\xdc\x04\x8a\x4b\x94\x66\xd9\xd5\x11\x39\x7e\x2c\x91\x95\x37\x26\x2d\xa1\x0e\x70\x97\xa8\xf4\xfa\xb2\x22\xb9\x78\xf7\xf2\xe5\x49\xaf\xe2\xaa\xab\x78\xd5\x25\x80\x55\xeb\x97\xee\x80\x27\xc5\x7b\xec\xc5\x4f\x61\x77\x05\x89\xb9\x55\x80\x18\x84\x78\x45\xb2\x05\xa3\x68\x14\x9b\xde\x2e\x45\x96\x4b\x3d\x5f\x2c\xaf\x06\xd1\x8c\x10\x1e\xe9\x7a\x29\xc0\xab\x6e\xca\x34\xd6\xc2\x47\x7a\x95\x39\x19\x15\x18\xef\xd5\xca\x55\xe3\xd0\x4b\x9a\x8f\xc9\x65\x73\xd7\x67\xb9\xbf\xfd\x41\x01\x8b\x4e\xff\xd1\x59\xac\xb8\xd3\x34\x7b\xff\x3f\x63\x7c\x74\x80\xb8\x28\x0a\x78\xbf\xf4\x89\xb9\x66\x0e\x08\xfb\xe5\x08\x4f\xd2\x2f\xf2\xa7\xbb\x61\x2c\x46\x1e\x24\xf9\x51\x92\xd2\xde\x28\x91\x5c\x44\xeb\x21\xd0\x2f\x92\x32\x7d\xd1\x34\xea\x0f\xca\xfd\xb5\x38\xcb\x8e\xd9\x98\x47\xef\x53\x10\x7c\x2a\x69\x1e\xf5\x6d\x4b\x55\xdd\x2a\x62\x8c\xbc\xad\x66\x46\xff\x38\xcb\xa2\x2c\x2d\x8a\x01\xb0\xf8\xee\x58\xdf\xec\xea\x2f\xf7\x71\xc8\xd9\xdb\x58\x52\x91\xc4\x69\xf4\x3e\xd5\x79\x6d\x4d\x3b\xd1\xa3\xad\xb8\x83\xab\xef\xf5\xf7\x4e\xbc\x2d\x0f\x17\x30\xa1\x6c\x1a\x79\x71\x96\xe5\x5e\x31\x80\x5c\x72\x41\xa3\x37\x69\xa1\x98\xf6\x5f\xff\x1b\x00\x00\xff\xff\xbb\x8a\x3d\x6f\xb9\x4b\x02\x00") func init() { err := CTX.Err() diff --git a/accounts/yarn.lock b/accounts/yarn.lock index c1a2276726..e364b05ee4 100644 --- a/accounts/yarn.lock +++ b/accounts/yarn.lock @@ -2,10 +2,10 @@ # yarn lockfile v1 -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.5.5": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" - integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.11", "@babel/code-frame@^7.5.5": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== dependencies: "@babel/highlight" "^7.10.4" @@ -35,12 +35,12 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.12.10": - version "7.12.10" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.10.tgz#2b188fc329fb8e4f762181703beffc0fe6df3460" - integrity sha512-6mCdfhWgmqLdtTkhXjnIz0LcdVCd26wS2JXRtj2XY0u5klDsXBREA/pG5NVOuVnF2LUrBGNFtQkIqqTbblg0ww== +"@babel/generator@^7.12.10", "@babel/generator@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.11.tgz#98a7df7b8c358c9a37ab07a24056853016aba3af" + integrity sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA== dependencies: - "@babel/types" "^7.12.10" + "@babel/types" "^7.12.11" jsesc "^2.5.1" source-map "^0.5.0" @@ -104,16 +104,16 @@ dependencies: "@babel/types" "^7.12.1" -"@babel/helper-function-name@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" - integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== +"@babel/helper-function-name@^7.10.4", "@babel/helper-function-name@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz#1fd7738aee5dcf53c3ecff24f1da9c511ec47b42" + integrity sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA== dependencies: - "@babel/helper-get-function-arity" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/helper-get-function-arity" "^7.12.10" + "@babel/template" "^7.12.7" + "@babel/types" "^7.12.11" -"@babel/helper-get-function-arity@^7.10.4": +"@babel/helper-get-function-arity@^7.12.10": version "7.12.10" resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz#b158817a3165b5faa2047825dfa61970ddcc16cf" integrity sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag== @@ -127,7 +127,7 @@ dependencies: "@babel/types" "^7.10.4" -"@babel/helper-member-expression-to-functions@^7.12.1": +"@babel/helper-member-expression-to-functions@^7.12.1", "@babel/helper-member-expression-to-functions@^7.12.7": version "7.12.7" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855" integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw== @@ -156,7 +156,7 @@ "@babel/types" "^7.12.1" lodash "^4.17.19" -"@babel/helper-optimise-call-expression@^7.10.4": +"@babel/helper-optimise-call-expression@^7.10.4", "@babel/helper-optimise-call-expression@^7.12.10": version "7.12.10" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz#94ca4e306ee11a7dd6e9f42823e2ac6b49881e2d" integrity sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ== @@ -178,14 +178,14 @@ "@babel/types" "^7.12.1" "@babel/helper-replace-supers@^7.12.1": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz#f009a17543bbbbce16b06206ae73b63d3fca68d9" - integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA== + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz#ea511658fc66c7908f923106dd88e08d1997d60d" + integrity sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA== dependencies: - "@babel/helper-member-expression-to-functions" "^7.12.1" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/traverse" "^7.12.5" - "@babel/types" "^7.12.5" + "@babel/helper-member-expression-to-functions" "^7.12.7" + "@babel/helper-optimise-call-expression" "^7.12.10" + "@babel/traverse" "^7.12.10" + "@babel/types" "^7.12.11" "@babel/helper-simple-access@^7.12.1": version "7.12.1" @@ -201,22 +201,22 @@ dependencies: "@babel/types" "^7.12.1" -"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" - integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== +"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0", "@babel/helper-split-export-declaration@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz#1b4cc424458643c47d37022223da33d76ea4603a" + integrity sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g== dependencies: - "@babel/types" "^7.11.0" + "@babel/types" "^7.12.11" -"@babel/helper-validator-identifier@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" - integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== +"@babel/helper-validator-identifier@^7.10.4", "@babel/helper-validator-identifier@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" + integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== -"@babel/helper-validator-option@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz#175567380c3e77d60ff98a54bb015fe78f2178d9" - integrity sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A== +"@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz#d66cb8b7a3e7fe4c6962b32020a131ecf0847f4f" + integrity sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw== "@babel/helper-wrap-function@^7.10.4": version "7.12.3" @@ -246,15 +246,15 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.12.0", "@babel/parser@^7.12.10", "@babel/parser@^7.12.7", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6": - version "7.12.10" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.10.tgz#824600d59e96aea26a5a2af5a9d812af05c3ae81" - integrity sha512-PJdRPwyoOqFAWfLytxrWwGrAxghCgh/yTNCYciOz8QgjflA7aZhECPZAa2VUedKg2+QMWkI0L9lynh2SNmNEgA== +"@babel/parser@^7.12.0", "@babel/parser@^7.12.10", "@babel/parser@^7.12.11", "@babel/parser@^7.12.7", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.11.tgz#9ce3595bcd74bc5c466905e86c535b8b25011e79" + integrity sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg== "@babel/plugin-proposal-async-generator-functions@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e" - integrity sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A== + version "7.12.12" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.12.tgz#04b8f24fd4532008ab4e79f788468fd5a8476566" + integrity sha512-nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-remap-async-to-generator" "^7.12.1" @@ -480,10 +480,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-block-scoping@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz#f0ee727874b42a208a48a586b84c3d222c2bbef1" - integrity sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w== +"@babel/plugin-transform-block-scoping@^7.12.11": + version "7.12.12" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.12.tgz#d93a567a152c22aea3b1929bb118d1d0a175cdca" + integrity sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ== dependencies: "@babel/helper-plugin-utils" "^7.10.4" @@ -724,15 +724,15 @@ regenerator-runtime "^0.13.4" "@babel/preset-env@^7.7.7": - version "7.12.10" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.10.tgz#ca981b95f641f2610531bd71948656306905e6ab" - integrity sha512-Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA== + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.11.tgz#55d5f7981487365c93dbbc84507b1c7215e857f9" + integrity sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw== dependencies: "@babel/compat-data" "^7.12.7" "@babel/helper-compilation-targets" "^7.12.5" "@babel/helper-module-imports" "^7.12.5" "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-validator-option" "^7.12.1" + "@babel/helper-validator-option" "^7.12.11" "@babel/plugin-proposal-async-generator-functions" "^7.12.1" "@babel/plugin-proposal-class-properties" "^7.12.1" "@babel/plugin-proposal-dynamic-import" "^7.12.1" @@ -761,7 +761,7 @@ "@babel/plugin-transform-arrow-functions" "^7.12.1" "@babel/plugin-transform-async-to-generator" "^7.12.1" "@babel/plugin-transform-block-scoped-functions" "^7.12.1" - "@babel/plugin-transform-block-scoping" "^7.12.1" + "@babel/plugin-transform-block-scoping" "^7.12.11" "@babel/plugin-transform-classes" "^7.12.1" "@babel/plugin-transform-computed-properties" "^7.12.1" "@babel/plugin-transform-destructuring" "^7.12.1" @@ -791,7 +791,7 @@ "@babel/plugin-transform-unicode-escapes" "^7.12.1" "@babel/plugin-transform-unicode-regex" "^7.12.1" "@babel/preset-modules" "^0.1.3" - "@babel/types" "^7.12.10" + "@babel/types" "^7.12.11" core-js-compat "^3.8.0" semver "^5.5.0" @@ -842,26 +842,26 @@ "@babel/types" "^7.12.7" "@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.10", "@babel/traverse@^7.12.5": - version "7.12.10" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.10.tgz#2d1f4041e8bf42ea099e5b2dc48d6a594c00017a" - integrity sha512-6aEtf0IeRgbYWzta29lePeYSk+YAFIC3kyqESeft8o5CkFlYIMX+EQDDWEiAQ9LHOA3d0oHdgrSsID/CKqXJlg== + version "7.12.12" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.12.tgz#d0cd87892704edd8da002d674bc811ce64743376" + integrity sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w== dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.10" - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.11.0" - "@babel/parser" "^7.12.10" - "@babel/types" "^7.12.10" + "@babel/code-frame" "^7.12.11" + "@babel/generator" "^7.12.11" + "@babel/helper-function-name" "^7.12.11" + "@babel/helper-split-export-declaration" "^7.12.11" + "@babel/parser" "^7.12.11" + "@babel/types" "^7.12.12" debug "^4.1.0" globals "^11.1.0" lodash "^4.17.19" -"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.0", "@babel/types@^7.12.1", "@babel/types@^7.12.10", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6": - version "7.12.10" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.10.tgz#7965e4a7260b26f09c56bcfcb0498af1f6d9b260" - integrity sha512-sf6wboJV5mGyip2hIpDSKsr80RszPinEFjsHTalMxZAZkoQ2/2yQzxlcFN52SJqsyPfLtPmenL4g2KB3KJXPDw== +"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.12.0", "@babel/types@^7.12.1", "@babel/types@^7.12.10", "@babel/types@^7.12.11", "@babel/types@^7.12.12", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6": + version "7.12.12" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.12.tgz#4608a6ec313abbd87afa55004d373ad04a96c299" + integrity sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ== dependencies: - "@babel/helper-validator-identifier" "^7.10.4" + "@babel/helper-validator-identifier" "^7.12.11" lodash "^4.17.19" to-fast-properties "^2.0.0" @@ -939,9 +939,9 @@ integrity sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ== "@types/estree@*": - version "0.0.45" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884" - integrity sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== + version "0.0.46" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.46.tgz#0fb6bfbbeabd7a30880504993369c4bf1deab1fe" + integrity sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg== "@types/estree@0.0.39": version "0.0.39" @@ -954,9 +954,9 @@ integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= "@types/node@*": - version "14.14.13" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.13.tgz#9e425079799322113ae8477297ae6ef51b8e0cdf" - integrity sha512-vbxr0VZ8exFMMAjCW8rJwaya0dMCDyYW2ZRdTyjtrCvJoENMpdUHOT/eTzvgyA5ZnqRZ/sI0NwqAxNHKYokLJQ== + version "14.14.22" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.22.tgz#0d29f382472c4ccf3bd96ff0ce47daf5b7b84b18" + integrity sha512-g+f/qj/cNcqKkc3tFqlXOYjrmZA+jNBiDzbP3kH+B+otKFqAdPgVTGP1IeKRdMml/aE69as5S4FqtxAbl+LaMw== "@types/resolve@0.0.8": version "0.0.8" @@ -965,36 +965,36 @@ dependencies: "@types/node" "*" -"@vue/compiler-core@3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.4.tgz#0122aca6eada4cb28b39ed930af917444755e330" - integrity sha512-snpMICsbWTZqBFnPB03qr4DtiSxVYfDF3DvbDSkN9Z9NTM8Chl8E/lYhKBSsvauq91DAWAh8PU3lr9vrLyQsug== +"@vue/compiler-core@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.5.tgz#a6e54cabe9536e74c6513acd2649f311af1d43ac" + integrity sha512-iFXwk2gmU/GGwN4hpBwDWWMLvpkIejf/AybcFtlQ5V1ur+5jwfBaV0Y1RXoR6ePfBPJixtKZ3PmN+M+HgMAtfQ== dependencies: "@babel/parser" "^7.12.0" "@babel/types" "^7.12.0" - "@vue/shared" "3.0.4" + "@vue/shared" "3.0.5" estree-walker "^2.0.1" source-map "^0.6.1" -"@vue/compiler-dom@3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.4.tgz#834fd4b15c5698cf9f4505c2bfbccca058a843eb" - integrity sha512-FOxbHBIkkGjYQeTz1DlXQjS1Ms8EPXQWsdTdTPeohoS0KzCz6RiOjiAG+jLtMi6Nr5GX2h0TlCvcnI8mcsicFQ== +"@vue/compiler-dom@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.5.tgz#7885a13e6d18f64dde8ebceec052ed2c102696c2" + integrity sha512-HSOSe2XSPuCkp20h4+HXSiPH9qkhz6YbW9z9ZtL5vef2T2PMugH7/osIFVSrRZP/Ul5twFZ7MIRlp8tPX6e4/g== dependencies: - "@vue/compiler-core" "3.0.4" - "@vue/shared" "3.0.4" + "@vue/compiler-core" "3.0.5" + "@vue/shared" "3.0.5" "@vue/compiler-sfc@^3.0.0": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.4.tgz#2119fe1e68d2c268aafa20461c82c139a9adf8e0" - integrity sha512-brDn6HTuK6R3oBCjtMPPsIpyJEZFinlnxjtBXww/goFJOJBAU9CrsdegwyZItNnixCFUIg4CLv4Nj1Eg/eKlfg== + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.5.tgz#3ae08e60244a72faf9598361874fb7bdb5b1d37c" + integrity sha512-uOAC4X0Gx3SQ9YvDC7YMpbDvoCmPvP0afVhJoxRotDdJ+r8VO3q4hFf/2f7U62k4Vkdftp6DVni8QixrfYzs+w== dependencies: "@babel/parser" "^7.12.0" "@babel/types" "^7.12.0" - "@vue/compiler-core" "3.0.4" - "@vue/compiler-dom" "3.0.4" - "@vue/compiler-ssr" "3.0.4" - "@vue/shared" "3.0.4" + "@vue/compiler-core" "3.0.5" + "@vue/compiler-dom" "3.0.5" + "@vue/compiler-ssr" "3.0.5" + "@vue/shared" "3.0.5" consolidate "^0.16.0" estree-walker "^2.0.1" hash-sum "^2.0.0" @@ -1006,13 +1006,13 @@ postcss-selector-parser "^6.0.4" source-map "^0.6.1" -"@vue/compiler-ssr@3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.4.tgz#ccbd1f55734d51d1402fad825ac102002a7a07c7" - integrity sha512-4aYWQEL4+LS4+D44K9Z7xMOWMEjBsz4Li9nMcj2rxRQ35ewK6uFPodvs6ORP60iBDSkwUFZoldFlNemQlu1BFw== +"@vue/compiler-ssr@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.5.tgz#7661ad891a0be948726c7f7ad1e425253c587b83" + integrity sha512-Wm//Kuxa1DpgjE4P9W0coZr8wklOfJ35Jtq61CbU+t601CpPTK4+FL2QDBItaG7aoUUDCWL5nnxMkuaOgzTBKg== dependencies: - "@vue/compiler-dom" "3.0.4" - "@vue/shared" "3.0.4" + "@vue/compiler-dom" "3.0.5" + "@vue/shared" "3.0.5" "@vue/component-compiler-utils@^3.0.0", "@vue/component-compiler-utils@^3.1.2": version "3.2.0" @@ -1046,10 +1046,10 @@ sass "^1.18.0" stylus "^0.54.5" -"@vue/shared@3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.4.tgz#6dc50f593bdfdeaa6183d1dbc15e2d45e7c6b8b3" - integrity sha512-Swfbz31AaMX48CpFl+YmIrqOH9MgJMTrltG9e26A4ZxYx9LjGuMV+41WnxFzS3Bc9nbrc6sDPM37G6nIT8NJSg== +"@vue/shared@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.5.tgz#c131d88bd6713cc4d93b3bb1372edb1983225ff0" + integrity sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw== abbrev@1: version "1.1.1" @@ -1123,9 +1123,9 @@ acorn-static-class-features@^0.2.4: acorn-private-class-elements "^0.2.7" acorn-walk@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.0.0.tgz#56ae4c0f434a45fff4a125e7ea95fa9c98f67a16" - integrity sha512-oZRad/3SMOI/pxbbmqyurIx7jHw1wZDcR9G44L8pUVFEomX/0dH89SrM1KaDXuv1NpzAXz6Op/Xu/Qd5XXzdEA== + version "8.0.2" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.0.2.tgz#d4632bfc63fd93d0f15fd05ea0e984ffd3f5a8c3" + integrity sha512-+bpA9MJsHdZ4bgfDcpk0ozQyhhVct7rzOmO0s1IIr0AGGgKBljss8n2zp11rRP2wid5VGeh04CgeKzgat5/25A== acorn@^3.1.0: version "3.3.0" @@ -1504,9 +1504,9 @@ bignumber.js@^2.1.0: integrity sha1-g4qZLan51zfg9LLbC+YrsJ3Qxeg= binary-extensions@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" - integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== bl@^4.0.3: version "4.0.3" @@ -1537,7 +1537,7 @@ bn.js@^5.0.0, bn.js@^5.1.1: resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b" integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ== -boolbase@~1.0.0: +boolbase@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= @@ -1642,16 +1642,16 @@ browserify-sign@^4.0.0: readable-stream "^3.6.0" safe-buffer "^5.2.0" -browserslist@^4.14.5, browserslist@^4.15.0: - version "4.16.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.0.tgz#410277627500be3cb28a1bfe037586fbedf9488b" - integrity sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ== +browserslist@^4.14.5, browserslist@^4.16.1: + version "4.16.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.1.tgz#bf757a2da376b3447b800a16f0f1c96358138766" + integrity sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA== dependencies: - caniuse-lite "^1.0.30001165" + caniuse-lite "^1.0.30001173" colorette "^1.2.1" - electron-to-chromium "^1.3.621" + electron-to-chromium "^1.3.634" escalade "^3.1.1" - node-releases "^1.1.67" + node-releases "^1.1.69" buffer-crc32@^0.2.1, buffer-crc32@^0.2.13: version "0.2.13" @@ -1687,9 +1687,9 @@ buffer@^5.1.0, buffer@^5.5.0: ieee754 "^1.1.13" builtin-modules@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484" - integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== + version "3.2.0" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887" + integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== buntis@0.2.1: version "0.2.1" @@ -1710,13 +1710,13 @@ bytes@3.1.0: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== -call-bind@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz#24127054bb3f9bdcb4b1fb82418186072f77b8ce" - integrity sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w== +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== dependencies: function-bind "^1.1.1" - get-intrinsic "^1.0.0" + get-intrinsic "^1.0.2" callsites@^3.0.0: version "3.1.0" @@ -1733,10 +1733,10 @@ camelcase@^5.0.0, camelcase@^5.3.1: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== -caniuse-lite@^1.0.30001165: - version "1.0.30001166" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001166.tgz#ca73e8747acfd16a4fd6c4b784f1b995f9698cf8" - integrity sha512-nCL4LzYK7F4mL0TjEMeYavafOGnBa98vTudH5c8lW9izUjnB99InG6pmC1ElAI1p0GlyZajv4ltUdFXvOHIl1A== +caniuse-lite@^1.0.30001173: + version "1.0.30001181" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001181.tgz#4f0e5184e1ea7c3bf2727e735cbe7ca9a451d673" + integrity sha512-m5ul/ARCX50JB8BSNM+oiPmQrR5UmngaQ3QThTTp5HcIIQGP/nPBs82BYLE+tigzm3VW+F4BJIhUyaVtEweelQ== caseless@~0.12.0: version "0.12.0" @@ -1824,17 +1824,29 @@ check-error@^1.0.2: resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= -cheerio@^1.0.0-rc.3: - version "1.0.0-rc.3" - resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" - integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA== +cheerio-select-tmp@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/cheerio-select-tmp/-/cheerio-select-tmp-0.1.1.tgz#55bbef02a4771710195ad736d5e346763ca4e646" + integrity sha512-YYs5JvbpU19VYJyj+F7oYrIE2BOll1/hRU7rEy/5+v9BzkSo3bK81iAeeQEMI92vRIxz677m72UmJUiVwwgjfQ== dependencies: - css-select "~1.2.0" - dom-serializer "~0.1.1" - entities "~1.1.1" - htmlparser2 "^3.9.1" - lodash "^4.15.0" - parse5 "^3.0.1" + css-select "^3.1.2" + css-what "^4.0.0" + domelementtype "^2.1.0" + domhandler "^4.0.0" + domutils "^2.4.4" + +cheerio@^1.0.0-rc.3: + version "1.0.0-rc.5" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.5.tgz#88907e1828674e8f9fee375188b27dadd4f0fa2f" + integrity sha512-yoqps/VCaZgN4pfXtenwHROTp8NG6/Hlt4Jpz2FEP0ZJQ+ZUkVDd0hAPDNKhj3nakpfPt/CNs57yEtxD1bXQiw== + dependencies: + cheerio-select-tmp "^0.1.0" + dom-serializer "~1.2.0" + domhandler "^4.0.0" + entities "~2.1.0" + htmlparser2 "^6.0.0" + parse5 "^6.0.0" + parse5-htmlparser2-tree-adapter "^6.0.0" child_process@^1.0.2: version "1.0.2" @@ -1842,9 +1854,9 @@ child_process@^1.0.2: integrity sha1-sffn/HPSXn/R1FWtyU4UODAYK1o= "chokidar@>=2.0.0 <4.0.0": - version "3.4.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b" - integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ== + version "3.5.1" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" + integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== dependencies: anymatch "~3.1.1" braces "~3.0.2" @@ -1854,7 +1866,7 @@ child_process@^1.0.2: normalize-path "~3.0.0" readdirp "~3.5.0" optionalDependencies: - fsevents "~2.1.2" + fsevents "~2.3.1" ci-info@^2.0.0: version "2.0.0" @@ -2074,23 +2086,30 @@ convert-source-map@^1.7.0: dependencies: safe-buffer "~5.1.1" -core-js-compat@^3.8.0: - version "3.8.1" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.8.1.tgz#8d1ddd341d660ba6194cbe0ce60f4c794c87a36e" - integrity sha512-a16TLmy9NVD1rkjUGbwuyWkiDoN0FDpAwrfLONvHFQx0D9k7J9y0srwMT8QP/Z6HE3MIFaVynEeYwZwPX1o5RQ== +copy-anything@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-2.0.1.tgz#2afbce6da684bdfcbec93752fa762819cb480d9a" + integrity sha512-lA57e7viQHOdPQcrytv5jFeudZZOXuyk47lZym279FiDQ8jeZomXiGuVf6ffMKkJ+3TIai3J1J3yi6M+/4U35g== dependencies: - browserslist "^4.15.0" + is-what "^3.7.1" + +core-js-compat@^3.8.0: + version "3.8.3" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.8.3.tgz#9123fb6b9cad30f0651332dc77deba48ef9b0b3f" + integrity sha512-1sCb0wBXnBIL16pfFG1Gkvei6UzvKyTNYpiC41yrdjEv0UoJoq9E/abTMzyYJ6JpTkAj15dLjbqifIzEBDVvog== + dependencies: + browserslist "^4.16.1" semver "7.0.0" core-js-pure@^3.0.0: - version "3.8.1" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.8.1.tgz#23f84048f366fdfcf52d3fd1c68fec349177d119" - integrity sha512-Se+LaxqXlVXGvmexKGPvnUIYC1jwXu1H6Pkyb3uBM5d8/NELMYCHs/4/roD7721NxrTLyv7e5nXd5/QLBO+10g== + version "3.8.3" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.8.3.tgz#10e9e3b2592ecaede4283e8f3ad7020811587c02" + integrity sha512-V5qQZVAr9K0xu7jXg1M7qTEwuxUgqr7dUOezGaNa7i+Xn9oXAU/d1fzqD9ObuwpVQOaorO5s70ckyi1woP9lVA== core-js@3: - version "3.8.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.8.1.tgz#f51523668ac8a294d1285c3b9db44025fda66d47" - integrity sha512-9Id2xHY1W7m8hCl8NkhQn5CufmF/WuR30BTRewvCXc1aZd3kMECwNZ69ndLbekKfakw9Rf2Xyc+QR6E7Gg+obg== + version "3.8.3" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.8.3.tgz#c21906e1f14f3689f93abcc6e26883550dd92dd0" + integrity sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q== core-js@^2.4.0, core-js@^2.6.5: version "2.6.12" @@ -2199,15 +2218,16 @@ css-parse@~2.0.0: dependencies: css "^2.0.0" -css-select@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" - integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= +css-select@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-3.1.2.tgz#d52cbdc6fee379fba97fb0d3925abbd18af2d9d8" + integrity sha512-qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA== dependencies: - boolbase "~1.0.0" - css-what "2.1" - domutils "1.5.1" - nth-check "~1.0.1" + boolbase "^1.0.0" + css-what "^4.0.0" + domhandler "^4.0.0" + domutils "^2.4.3" + nth-check "^2.0.0" css-selector-tokenizer@^0.7.0: version "0.7.3" @@ -2217,10 +2237,10 @@ css-selector-tokenizer@^0.7.0: cssesc "^3.0.0" fastparse "^1.1.2" -css-what@2.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" - integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== +css-what@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-4.0.0.tgz#35e73761cab2eeb3d3661126b23d7aa0e8432233" + integrity sha512-teijzG7kwYfNVsUh2H/YN62xW3KK9YhXEgSlbxMlcyjPNvdKJqFx5lrwlJgoFP1ZHlB89iGDlo/JyshKeRhv5A== css@^2.0.0: version "2.2.4" @@ -2481,59 +2501,40 @@ doctypes@^1.1.0: resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" integrity sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk= -dom-serializer@0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" - integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== +dom-serializer@^1.0.1, dom-serializer@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.2.0.tgz#3433d9136aeb3c627981daa385fc7f32d27c48f1" + integrity sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA== dependencies: domelementtype "^2.0.1" + domhandler "^4.0.0" entities "^2.0.0" -dom-serializer@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" - integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== - dependencies: - domelementtype "^1.3.0" - entities "^1.1.1" - dom-walk@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== -domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" - integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== - -domelementtype@^2.0.1: +domelementtype@^2.0.1, domelementtype@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e" integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== -domhandler@^2.3.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" - integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== +domhandler@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.0.0.tgz#01ea7821de996d85f69029e81fa873c21833098e" + integrity sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA== dependencies: - domelementtype "1" + domelementtype "^2.1.0" -domutils@1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" - integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= +domutils@^2.4.3, domutils@^2.4.4: + version "2.4.4" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.4.4.tgz#282739c4b150d022d34699797369aad8d19bbbd3" + integrity sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA== dependencies: - dom-serializer "0" - domelementtype "1" - -domutils@^1.5.1: - version "1.7.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" - integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== - dependencies: - dom-serializer "0" - domelementtype "1" + dom-serializer "^1.0.1" + domelementtype "^2.0.1" + domhandler "^4.0.0" dotenv@7.0.0: version "7.0.0" @@ -2607,10 +2608,10 @@ ejs@^2.7.4: resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== -electron-to-chromium@^1.3.621: - version "1.3.625" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.625.tgz#a7bd18da4dc732c180b2e95e0e296c0bf22f3bd6" - integrity sha512-CsLk/r0C9dAzVPa9QF74HIXduxaucsaRfqiOYvIv2PRhvyC6EOqc/KbpgToQuDVgPf3sNAFZi3iBu4vpGOwGag== +electron-to-chromium@^1.3.634: + version "1.3.648" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.648.tgz#b05926eca1843c04b283e682a1fc6c10af7e9dda" + integrity sha512-4POzwyQ80tkDiBwkxn7IpfzioimrjRSFX1sCQ3pLZsYJ5ERYmwzdq0hZZ3nFP7Z6GtmnSn3xwWDm8FPlMeOoEQ== elliptic@^6.5.3: version "6.5.3" @@ -2652,12 +2653,12 @@ end-of-stream@^1.4.1: dependencies: once "^1.4.0" -entities@^1.1.1, entities@~1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" - integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== - entities@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +entities@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== @@ -2668,9 +2669,9 @@ envinfo@^7.5.1: integrity sha512-46+j5QxbPWza0PB1i15nZx0xQ4I/EfQxg9J8Had3b408SV63nEtor2e+oiY63amTo9KTuh2a3XLObNwduxYwwA== errno@^0.1.1, errno@~0.1.1: - version "0.1.7" - resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" - integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== + version "0.1.8" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" + integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== dependencies: prr "~1.0.1" @@ -2689,22 +2690,24 @@ error-stack-parser@^2.0.6: stackframe "^1.1.1" es-abstract@^1.18.0-next.1: - version "1.18.0-next.1" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" - integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== + version "1.18.0-next.2" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.2.tgz#088101a55f0541f595e7e057199e27ddc8f3a5c2" + integrity sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw== dependencies: + call-bind "^1.0.2" es-to-primitive "^1.2.1" function-bind "^1.1.1" + get-intrinsic "^1.0.2" has "^1.0.3" has-symbols "^1.0.1" is-callable "^1.2.2" - is-negative-zero "^2.0.0" + is-negative-zero "^2.0.1" is-regex "^1.1.1" - object-inspect "^1.8.0" + object-inspect "^1.9.0" object-keys "^1.1.1" - object.assign "^4.1.1" - string.prototype.trimend "^1.0.1" - string.prototype.trimstart "^1.0.1" + object.assign "^4.1.2" + string.prototype.trimend "^1.0.3" + string.prototype.trimstart "^1.0.3" es-to-primitive@^1.2.1: version "1.2.1" @@ -3156,24 +3159,24 @@ flatted@^2.0.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== -flow-parser@^0.140.0: - version "0.140.0" - resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.140.0.tgz#f737901bf8343c843417cac695b0b428a54843c6" - integrity sha512-z57YJZXcO0mmlNoOf9uvdnoZXanu8ALTqSaAWAv6kQavpnA5Kpdd4R7B3wP56+/yi/yODjrtarQYV/bgv867Iw== +flow-parser@^0.143.1: + version "0.143.1" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.143.1.tgz#c18e1745df97d1132e60036e88cbf1925b5094e4" + integrity sha512-DWmnt0P1tieuQErYeWmxCNIkzm5Fqd5sMH685v/jCtu8CAvdLEwKi45jqYhij178k+NAy+FNe2jDvQNs7WLBIA== flow-remove-types@^2.135.0: - version "2.140.0" - resolved "https://registry.yarnpkg.com/flow-remove-types/-/flow-remove-types-2.140.0.tgz#8ff6400186cf79595c8b6c8166921c23a1d3b150" - integrity sha512-qxYbyvMjvWMk7DBIsSr+FHKZh2v0NgNxYfQLEYlQgsBwj7MGiaOcflcpEEJiUp5uXC+clGqPqnQD35oOkBDhKg== + version "2.143.1" + resolved "https://registry.yarnpkg.com/flow-remove-types/-/flow-remove-types-2.143.1.tgz#e205d42de99a91d1f28d83b394ee73927368258f" + integrity sha512-UUl8tigzcH8NGGQ38K72MZ0i3T4hvtb9+yQRR4AMJDaOAUcpo6zp6/tVSASj34q8Zwb0At0CcXV7rtBLW6OJZQ== dependencies: - flow-parser "^0.140.0" + flow-parser "^0.143.1" pirates "^3.0.2" vlq "^0.2.1" follow-redirects@^1.10.0: - version "1.13.1" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.1.tgz#5f69b813376cee4fd0474a3aba835df04ab763b7" - integrity sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg== + version "1.13.2" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.2.tgz#dd73c8effc12728ba5cf4259d760ea5fb83e3147" + integrity sha512-6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA== foreach@~2.0.1: version "2.0.5" @@ -3200,14 +3203,14 @@ fs-constants@^1.0.0: integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== fs-extra@^9.0.1: - version "9.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc" - integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ== + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== dependencies: at-least-node "^1.0.0" graceful-fs "^4.2.0" jsonfile "^6.0.1" - universalify "^1.0.0" + universalify "^2.0.0" fs.realpath@^1.0.0: version "1.0.0" @@ -3219,10 +3222,10 @@ fs@0.0.1-security: resolved "https://registry.yarnpkg.com/fs/-/fs-0.0.1-security.tgz#8a7bd37186b6dddf3813f23858b57ecaaf5e41d4" integrity sha1-invTcYa23d84E/I4WLV+yq9eQdQ= -fsevents@~2.1.2: - version "2.1.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" - integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== +fsevents@~2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.1.tgz#b209ab14c61012636c8863507edf7fb68cc54e9f" + integrity sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw== ftp@~0.3.10: version "0.3.10" @@ -3278,10 +3281,10 @@ get-func-name@^2.0.0: resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= -get-intrinsic@^1.0.0, get-intrinsic@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.1.tgz#94a9768fcbdd0595a1c9273aacf4c89d075631be" - integrity sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg== +get-intrinsic@^1.0.1, get-intrinsic@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.0.tgz#892e62931e6938c8a23ea5aaebcfb67bd97da97e" + integrity sha512-M11rgtQp5GZMZzDL7jLTNxbDfurpzuau5uqRWDPvlHjfvg3TdScAZo96GLvhMjImrmR8uAt0FS2RLoMrfWGKlg== dependencies: function-bind "^1.1.1" has "^1.0.3" @@ -3496,17 +3499,15 @@ hosted-git-info@^2.1.4: resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== -htmlparser2@^3.9.1: - version "3.10.1" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" - integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== +htmlparser2@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.0.0.tgz#c2da005030390908ca4c91e5629e418e0665ac01" + integrity sha512-numTQtDZMoh78zJpaNdJ9MXb2cv5G3jwUoe3dMQODubZvLoGvTE/Ofp6sHvH8OGKcN/8A47pGLi/k58xHP/Tfw== dependencies: - domelementtype "^1.3.1" - domhandler "^2.3.0" - domutils "^1.5.1" - entities "^1.1.1" - inherits "^2.0.1" - readable-stream "^3.1.1" + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.4.4" + entities "^2.0.0" http-errors@1.7.3: version "1.7.3" @@ -3594,9 +3595,9 @@ immediate@~3.2.3: integrity sha1-0UD6j2FGWb1lQSMwl92qwlzdmRw= import-fresh@^3.0.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz#fc129c160c5d68235507f4331a6baad186bdbc3e" - integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw== + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== dependencies: parent-module "^1.0.0" resolve-from "^4.0.0" @@ -3770,7 +3771,7 @@ is-module@^1.0.0: resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= -is-negative-zero@^2.0.0: +is-negative-zero@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== @@ -3826,6 +3827,11 @@ is-typedarray@^1.0.0, is-typedarray@~1.0.0: resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= +is-what@^3.7.1: + version "3.12.0" + resolved "https://registry.yarnpkg.com/is-what/-/is-what-3.12.0.tgz#f4405ce4bd6dd420d3ced51a026fb90e03705e55" + integrity sha512-2ilQz5/f/o9V7WRWJQmpFYNmQFZ9iM+OXRonZKcYgTkCzjb949Vi4h282PD1UfmgHk666rcWonbRJ++KI41VGw== + is@~0.2.6: version "0.2.7" resolved "https://registry.yarnpkg.com/is/-/is-0.2.7.tgz#3b34a2c48f359972f35042849193ae7264b63562" @@ -3901,9 +3907,9 @@ js-base64@^2.1.9: integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ== js-beautify@^1.6.12: - version "1.13.0" - resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.13.0.tgz#a056d5d3acfd4918549aae3ab039f9f3c51eebb2" - integrity sha512-/Tbp1OVzZjbwzwJQFIlYLm9eWQ+3aYbBXLSaqb1mEJzhcQAfrqMMQYtjb6io+U6KpD0ID4F+Id3/xcjH3l/sqA== + version "1.13.5" + resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.13.5.tgz#a08a97890cae55daf1d758d3f6577bd4a64d7014" + integrity sha512-MsXlH6Z/BiRYSkSRW3clNDqDjSpiSNOiG8xYVUBXt4k0LnGvDhlTGOlHX1VFtAdoLmtwjxMG5qiWKy/g+Ipv5w== dependencies: config-chain "^1.1.12" editorconfig "^0.15.3" @@ -4069,10 +4075,11 @@ ldap@^0.7.1: dtrace-provider "0.4.0" less@^3.9.0: - version "3.13.0" - resolved "https://registry.yarnpkg.com/less/-/less-3.13.0.tgz#6a47bb19d97edcf7a53d444b099275dd6b17c85a" - integrity sha512-uPhr9uoSGVKKYVGz0rXcYBK1zjwcIWRGcbnSgNt66XuIZYrYPaQiS+LeUOvqedBwrwdBYYaLqSff5ytGYuT7rA== + version "3.13.1" + resolved "https://registry.yarnpkg.com/less/-/less-3.13.1.tgz#0ebc91d2a0e9c0c6735b83d496b0ab0583077909" + integrity sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw== dependencies: + copy-anything "^2.0.1" tslib "^1.10.0" optionalDependencies: errno "^0.1.1" @@ -4383,7 +4390,7 @@ lodash.union@^4.6.0: resolved "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" integrity sha1-SLtQiECfFvGCFmZkHETdGqrjzYg= -lodash@^4.15.0, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.4: +lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.4: version "4.17.20" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== @@ -4483,17 +4490,17 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" -mime-db@1.44.0: - version "1.44.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" - integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== +mime-db@1.45.0: + version "1.45.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea" + integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w== mime-types@^2.1.12, mime-types@~2.1.19: - version "2.1.27" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" - integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== + version "2.1.28" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.28.tgz#1160c4757eab2c5363888e005273ecf79d2a0ecd" + integrity sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ== dependencies: - mime-db "1.44.0" + mime-db "1.45.0" mime@^1.3.4, mime@^1.4.1: version "1.6.0" @@ -4748,10 +4755,10 @@ node-modules-regexp@^1.0.0: resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= -node-releases@^1.1.67: - version "1.1.67" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12" - integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg== +node-releases@^1.1.69: + version "1.1.70" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.70.tgz#66e0ed0273aa65666d7fe78febe7634875426a08" + integrity sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw== nopt@^5.0.0: version "5.0.0" @@ -4775,12 +4782,12 @@ normalize-path@^3.0.0, normalize-path@~3.0.0: resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== -nth-check@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" - integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== +nth-check@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125" + integrity sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q== dependencies: - boolbase "~1.0.0" + boolbase "^1.0.0" oauth-sign@~0.9.0: version "0.9.0" @@ -4792,7 +4799,7 @@ object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= -object-inspect@^1.8.0: +object-inspect@^1.9.0: version "1.9.0" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== @@ -4821,7 +4828,7 @@ object.assign@4.1.0: has-symbols "^1.0.0" object-keys "^1.0.11" -object.assign@^4.1.0, object.assign@^4.1.1: +object.assign@^4.1.0, object.assign@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== @@ -5025,12 +5032,17 @@ parse-json@^2.2.0: dependencies: error-ex "^1.2.0" -parse5@^3.0.1: - version "3.0.3" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" - integrity sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA== +parse5-htmlparser2-tree-adapter@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz#2cdf9ad823321140370d4dbf5d3e92c7c8ddc6e6" + integrity sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA== dependencies: - "@types/node" "*" + parse5 "^6.0.1" + +parse5@^6.0.0, parse5@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" + integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== path-exists@^3.0.0: version "3.0.0" @@ -5073,9 +5085,9 @@ path@^0.12.7: util "^0.10.3" pathval@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" - integrity sha1-uULm1L3mUwBe9rcTYd74cn0GReA= + version "1.1.1" + resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" + integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== pbkdf2@^3.0.3: version "3.1.1" @@ -5584,9 +5596,9 @@ punycode@^2.1.0, punycode@^2.1.1: integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== qs@^6.9.1: - version "6.9.4" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.4.tgz#9090b290d1f91728d3c22e54843ca44aea5ab687" - integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ== + version "6.9.6" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.6.tgz#26ed3c8243a431b2924aca84cc90471f35d5a0ee" + integrity sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ== qs@~6.5.2: version "6.5.2" @@ -5751,9 +5763,9 @@ regjsgen@^0.5.1: integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== regjsparser@^0.6.4: - version "0.6.4" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" - integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== + version "0.6.6" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.6.tgz#6d8c939d1a654f78859b08ddcc4aa777f3fa800a" + integrity sha512-jjyuCp+IEMIm3N1H1LLTJW1EISEJV9+5oHdEyrt43Pg9cDSb6rrLZei2cVWpl0xTjmmlpec/lEQGYgM7xfpGCQ== dependencies: jsesc "~0.5.0" @@ -6004,9 +6016,9 @@ safe-json-stringify@~1: integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== sass@^1.18.0: - version "1.30.0" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.30.0.tgz#60bbbbaf76ba10117e61c6c24f00161c3d60610e" - integrity sha512-26EUhOXRLaUY7+mWuRFqGeGGNmhB1vblpTENO1Z7mAzzIZeVxZr9EZoaY1kyGLFWdSOZxRMAufiN2mkbO6dAlw== + version "1.32.5" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.32.5.tgz#2882d22ad5748c05fa9bff6c3b0ffbc4f4b9e1dc" + integrity sha512-kU1yJ5zUAmPxr7f3q0YXTAd1oZjSR1g3tYyv+xu0HZSl5JiNOaE987eiz7wCUvbm4I9fGWGU2TgApTtcP4GMNQ== dependencies: chokidar ">=2.0.0 <4.0.0" @@ -6323,7 +6335,7 @@ string-width@^4.0.0, string-width@^4.1.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.0" -string.prototype.trimend@^1.0.1: +string.prototype.trimend@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b" integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw== @@ -6331,7 +6343,7 @@ string.prototype.trimend@^1.0.1: call-bind "^1.0.0" define-properties "^1.1.3" -string.prototype.trimstart@^1.0.1: +string.prototype.trimstart@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa" integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg== @@ -6489,9 +6501,9 @@ table@^5.2.3: string-width "^3.0.0" tar-stream@^2.1.2: - version "2.1.4" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.4.tgz#c4fb1a11eb0da29b893a5b25476397ba2d053bfa" - integrity sha512-o3pS2zlG4gxr67GmFYBLlq+dM8gyRGUOvsrHclSkvtVtQbjV0s/+ZE8OpICbaj8clrX3tjeHngYGP7rweaBnuw== + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== dependencies: bl "^4.0.3" end-of-stream "^1.4.1" @@ -6618,9 +6630,9 @@ tslib@^1.10.0, tslib@^1.9.0: integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== tslib@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.3.tgz#8e0741ac45fc0c226e58a17bfc3e64b9bc6ca61c" - integrity sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ== + version "2.1.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a" + integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== tunnel-agent@^0.6.0: version "0.6.0" @@ -6699,9 +6711,9 @@ uglify-js@^2.6.1: uglify-to-browserify "~1.0.0" uglify-js@^3.1.4: - version "3.12.1" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.1.tgz#78307f539f7b9ca5557babb186ea78ad30cc0375" - integrity sha512-o8lHP20KjIiQe5b/67Rh68xEGRrc2SRsCuuoYclXXoC74AfSRGblU1HKzJWH3HxPZ+Ort85fWHpSX7KwBUC9CQ== + version "3.12.5" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.5.tgz#83241496087c640efe9dfc934832e71725aba008" + integrity sha512-SgpgScL4T7Hj/w/GexjnBHi3Ien9WS1Rpfg5y91WXMj9SY997ZCQU76mH4TpLwwfmMvoOU8wiaRkIf6NaH3mtg== uglify-to-browserify@~1.0.0: version "1.0.2" @@ -6736,11 +6748,6 @@ uniq@^1.0.1: resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= -universalify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d" - integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== - universalify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" @@ -6757,9 +6764,9 @@ upper-case@^1.0.3: integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= uri-js@^4.2.2: - version "4.4.0" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602" - integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g== + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" @@ -6876,9 +6883,9 @@ void-elements@^3.1.0: integrity sha1-YU9/v42AHwu18GYfWy9XhXUOTwk= vue-eslint-parser@^7.0.0: - version "7.3.0" - resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.3.0.tgz#894085839d99d81296fa081d19643733f23d7559" - integrity sha512-n5PJKZbyspD0+8LnaZgpEvNCrjQx1DyDHw8JdWwoxhhC+yRip4TAvSDpXGf9SWX6b0umeB5aR61gwUo6NVvFxw== + version "7.4.1" + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.4.1.tgz#e4adcf7876a7379758d9056a72235af18a587f92" + integrity sha512-AFvhdxpFvliYq1xt/biNBslTHE/zbEvSnr1qfHA/KxRIpErmEDrQZlQnvEexednRHmLfDNOMuDYwZL5xkLzIXQ== dependencies: debug "^4.1.1" eslint-scope "^5.0.0" @@ -6906,9 +6913,9 @@ vue-template-es2015-compiler@^1.9.0: integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw== vuex@^3.5.1: - version "3.6.0" - resolved "https://registry.yarnpkg.com/vuex/-/vuex-3.6.0.tgz#95efa56a58f7607c135b053350833a09e01aa813" - integrity sha512-W74OO2vCJPs9/YjNjW8lLbj+jzT24waTo2KShI8jLvJW8OaIkgb3wuAMA7D+ZiUxDOx3ubwSZTaJBip9G8a3aQ== + version "3.6.2" + resolved "https://registry.yarnpkg.com/vuex/-/vuex-3.6.2.tgz#236bc086a870c3ae79946f107f16de59d5895e71" + integrity sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw== wcwidth@^1.0.1: version "1.0.1" diff --git a/onlyoffice/go.sum b/onlyoffice/go.sum index ac8bfa6cc3..c7f93d8e92 100644 --- a/onlyoffice/go.sum +++ b/onlyoffice/go.sum @@ -202,6 +202,8 @@ github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 h1:HNpnnhoHv/7fUSEuW37clWyPz2x9VqJHuhvWBAHjkEU= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/onlyoffice/pkg/assets/embed.go b/onlyoffice/pkg/assets/embed.go index 6bbff20474..4e96df1a20 100644 --- a/onlyoffice/pkg/assets/embed.go +++ b/onlyoffice/pkg/assets/embed.go @@ -1,5 +1,5 @@ -// Code generated by fileb0x at "2020-11-26 10:38:39.005737 +0100 CET m=+0.003329814" from config file "embed.yml" DO NOT EDIT. -// modification hash(dfc2fd54bc5e8bb4538328222c713422.8058aec596c5fb73022d09bb97af796e) +// Code generated by fileb0x at "2021-01-29 13:36:53.248886 +0100 CET m=+0.002868007" from config file "embed.yml" DO NOT EDIT. +// modification hash(6496c927683a8f35a8bc2958a247746f.8058aec596c5fb73022d09bb97af796e) package assets diff --git a/onlyoffice/yarn.lock b/onlyoffice/yarn.lock index 469928047f..a615cb2d0b 100644 --- a/onlyoffice/yarn.lock +++ b/onlyoffice/yarn.lock @@ -2,55 +2,54 @@ # yarn lockfile v1 -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.5.5": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" - integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.11", "@babel/code-frame@^7.5.5": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== dependencies: "@babel/highlight" "^7.10.4" -"@babel/compat-data@^7.12.1", "@babel/compat-data@^7.12.5": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.5.tgz#f56db0c4bb1bbbf221b4e81345aab4141e7cb0e9" - integrity sha512-DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg== +"@babel/compat-data@^7.12.5", "@babel/compat-data@^7.12.7": + version "7.12.7" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.7.tgz#9329b4782a7d6bbd7eef57e11addf91ee3ef1e41" + integrity sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw== "@babel/core@^7.11.6", "@babel/core@^7.7.7": - version "7.12.3" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.3.tgz#1b436884e1e3bff6fb1328dc02b208759de92ad8" - integrity sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g== + version "7.12.10" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.10.tgz#b79a2e1b9f70ed3d84bbfb6d8c4ef825f606bccd" + integrity sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w== dependencies: "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.1" + "@babel/generator" "^7.12.10" "@babel/helper-module-transforms" "^7.12.1" - "@babel/helpers" "^7.12.1" - "@babel/parser" "^7.12.3" - "@babel/template" "^7.10.4" - "@babel/traverse" "^7.12.1" - "@babel/types" "^7.12.1" + "@babel/helpers" "^7.12.5" + "@babel/parser" "^7.12.10" + "@babel/template" "^7.12.7" + "@babel/traverse" "^7.12.10" + "@babel/types" "^7.12.10" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.1" json5 "^2.1.2" lodash "^4.17.19" - resolve "^1.3.2" semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.12.1", "@babel/generator@^7.12.5": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz#a2c50de5c8b6d708ab95be5e6053936c1884a4de" - integrity sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A== +"@babel/generator@^7.12.10", "@babel/generator@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.11.tgz#98a7df7b8c358c9a37ab07a24056853016aba3af" + integrity sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA== dependencies: - "@babel/types" "^7.12.5" + "@babel/types" "^7.12.11" jsesc "^2.5.1" source-map "^0.5.0" "@babel/helper-annotate-as-pure@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3" - integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== + version "7.12.10" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz#54ab9b000e60a93644ce17b3f37d313aaf1d115d" + integrity sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ== dependencies: - "@babel/types" "^7.10.4" + "@babel/types" "^7.12.10" "@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": version "7.10.4" @@ -60,7 +59,7 @@ "@babel/helper-explode-assignable-expression" "^7.10.4" "@babel/types" "^7.10.4" -"@babel/helper-compilation-targets@^7.12.1": +"@babel/helper-compilation-targets@^7.12.5": version "7.12.5" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz#cb470c76198db6a24e9dbc8987275631e5d29831" integrity sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw== @@ -82,12 +81,11 @@ "@babel/helper-split-export-declaration" "^7.10.4" "@babel/helper-create-regexp-features-plugin@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz#18b1302d4677f9dc4740fe8c9ed96680e29d37e8" - integrity sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA== + version "7.12.7" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz#2084172e95443fa0a09214ba1bb328f9aea1278f" + integrity sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ== dependencies: "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-regex" "^7.10.4" regexpu-core "^4.7.1" "@babel/helper-define-map@^7.10.4": @@ -106,21 +104,21 @@ dependencies: "@babel/types" "^7.12.1" -"@babel/helper-function-name@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" - integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== +"@babel/helper-function-name@^7.10.4", "@babel/helper-function-name@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz#1fd7738aee5dcf53c3ecff24f1da9c511ec47b42" + integrity sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA== dependencies: - "@babel/helper-get-function-arity" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/helper-get-function-arity" "^7.12.10" + "@babel/template" "^7.12.7" + "@babel/types" "^7.12.11" -"@babel/helper-get-function-arity@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" - integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== +"@babel/helper-get-function-arity@^7.12.10": + version "7.12.10" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz#b158817a3165b5faa2047825dfa61970ddcc16cf" + integrity sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag== dependencies: - "@babel/types" "^7.10.4" + "@babel/types" "^7.12.10" "@babel/helper-hoist-variables@^7.10.4": version "7.10.4" @@ -129,14 +127,14 @@ dependencies: "@babel/types" "^7.10.4" -"@babel/helper-member-expression-to-functions@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz#fba0f2fcff3fba00e6ecb664bb5e6e26e2d6165c" - integrity sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ== +"@babel/helper-member-expression-to-functions@^7.12.1", "@babel/helper-member-expression-to-functions@^7.12.7": + version "7.12.7" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855" + integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw== dependencies: - "@babel/types" "^7.12.1" + "@babel/types" "^7.12.7" -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.1": +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.5": version "7.12.5" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb" integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA== @@ -158,25 +156,18 @@ "@babel/types" "^7.12.1" lodash "^4.17.19" -"@babel/helper-optimise-call-expression@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" - integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== +"@babel/helper-optimise-call-expression@^7.10.4", "@babel/helper-optimise-call-expression@^7.12.10": + version "7.12.10" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz#94ca4e306ee11a7dd6e9f42823e2ac6b49881e2d" + integrity sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ== dependencies: - "@babel/types" "^7.10.4" + "@babel/types" "^7.12.10" "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== -"@babel/helper-regex@^7.10.4": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0" - integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg== - dependencies: - lodash "^4.17.19" - "@babel/helper-remap-async-to-generator@^7.12.1": version "7.12.1" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz#8c4dbbf916314f6047dc05e6a2217074238347fd" @@ -187,14 +178,14 @@ "@babel/types" "^7.12.1" "@babel/helper-replace-supers@^7.12.1": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz#f009a17543bbbbce16b06206ae73b63d3fca68d9" - integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA== + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz#ea511658fc66c7908f923106dd88e08d1997d60d" + integrity sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA== dependencies: - "@babel/helper-member-expression-to-functions" "^7.12.1" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/traverse" "^7.12.5" - "@babel/types" "^7.12.5" + "@babel/helper-member-expression-to-functions" "^7.12.7" + "@babel/helper-optimise-call-expression" "^7.12.10" + "@babel/traverse" "^7.12.10" + "@babel/types" "^7.12.11" "@babel/helper-simple-access@^7.12.1": version "7.12.1" @@ -210,22 +201,22 @@ dependencies: "@babel/types" "^7.12.1" -"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" - integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== +"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0", "@babel/helper-split-export-declaration@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz#1b4cc424458643c47d37022223da33d76ea4603a" + integrity sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g== dependencies: - "@babel/types" "^7.11.0" + "@babel/types" "^7.12.11" -"@babel/helper-validator-identifier@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" - integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== +"@babel/helper-validator-identifier@^7.10.4", "@babel/helper-validator-identifier@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" + integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== -"@babel/helper-validator-option@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz#175567380c3e77d60ff98a54bb015fe78f2178d9" - integrity sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A== +"@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz#d66cb8b7a3e7fe4c6962b32020a131ecf0847f4f" + integrity sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw== "@babel/helper-wrap-function@^7.10.4": version "7.12.3" @@ -237,7 +228,7 @@ "@babel/traverse" "^7.10.4" "@babel/types" "^7.10.4" -"@babel/helpers@^7.12.1": +"@babel/helpers@^7.12.5": version "7.12.5" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e" integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA== @@ -255,15 +246,15 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.10.4", "@babel/parser@^7.12.0", "@babel/parser@^7.12.3", "@babel/parser@^7.12.5", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.5.tgz#b4af32ddd473c0bfa643bd7ff0728b8e71b81ea0" - integrity sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ== +"@babel/parser@^7.12.0", "@babel/parser@^7.12.10", "@babel/parser@^7.12.11", "@babel/parser@^7.12.7", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.11.tgz#9ce3595bcd74bc5c466905e86c535b8b25011e79" + integrity sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg== "@babel/plugin-proposal-async-generator-functions@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e" - integrity sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A== + version "7.12.12" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.12.tgz#04b8f24fd4532008ab4e79f788468fd5a8476566" + integrity sha512-nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-remap-async-to-generator" "^7.12.1" @@ -325,10 +316,10 @@ "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" -"@babel/plugin-proposal-numeric-separator@^7.12.1": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz#b1ce757156d40ed79d59d467cb2b154a5c4149ba" - integrity sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g== +"@babel/plugin-proposal-numeric-separator@^7.12.7": + version "7.12.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz#8bf253de8139099fea193b297d23a9d406ef056b" + integrity sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-numeric-separator" "^7.10.4" @@ -350,10 +341,10 @@ "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" -"@babel/plugin-proposal-optional-chaining@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz#cce122203fc8a32794296fc377c6dedaf4363797" - integrity sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw== +"@babel/plugin-proposal-optional-chaining@^7.12.7": + version "7.12.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz#e02f0ea1b5dc59d401ec16fb824679f683d3303c" + integrity sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" @@ -489,10 +480,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-block-scoping@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz#f0ee727874b42a208a48a586b84c3d222c2bbef1" - integrity sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w== +"@babel/plugin-transform-block-scoping@^7.12.11": + version "7.12.12" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.12.tgz#d93a567a152c22aea3b1929bb118d1d0a175cdca" + integrity sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ== dependencies: "@babel/helper-plugin-utils" "^7.10.4" @@ -665,13 +656,12 @@ "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-transform-runtime@^7.8.0": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz#04b792057eb460389ff6a4198e377614ea1e7ba5" - integrity sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg== + version "7.12.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.10.tgz#af0fded4e846c4b37078e8e5d06deac6cd848562" + integrity sha512-xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA== dependencies: - "@babel/helper-module-imports" "^7.12.1" + "@babel/helper-module-imports" "^7.12.5" "@babel/helper-plugin-utils" "^7.10.4" - resolve "^1.8.1" semver "^5.5.1" "@babel/plugin-transform-shorthand-properties@^7.12.1": @@ -689,13 +679,12 @@ "@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" -"@babel/plugin-transform-sticky-regex@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz#5c24cf50de396d30e99afc8d1c700e8bce0f5caf" - integrity sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ== +"@babel/plugin-transform-sticky-regex@^7.12.7": + version "7.12.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz#560224613ab23987453948ed21d0b0b193fa7fad" + integrity sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg== dependencies: "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-regex" "^7.10.4" "@babel/plugin-transform-template-literals@^7.12.1": version "7.12.1" @@ -704,10 +693,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-typeof-symbol@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz#9ca6be343d42512fbc2e68236a82ae64bc7af78a" - integrity sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q== +"@babel/plugin-transform-typeof-symbol@^7.12.10": + version "7.12.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz#de01c4c8f96580bd00f183072b0d0ecdcf0dec4b" + integrity sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA== dependencies: "@babel/helper-plugin-utils" "^7.10.4" @@ -735,15 +724,15 @@ regenerator-runtime "^0.13.4" "@babel/preset-env@^7.7.7": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.1.tgz#9c7e5ca82a19efc865384bb4989148d2ee5d7ac2" - integrity sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg== + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.11.tgz#55d5f7981487365c93dbbc84507b1c7215e857f9" + integrity sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw== dependencies: - "@babel/compat-data" "^7.12.1" - "@babel/helper-compilation-targets" "^7.12.1" - "@babel/helper-module-imports" "^7.12.1" + "@babel/compat-data" "^7.12.7" + "@babel/helper-compilation-targets" "^7.12.5" + "@babel/helper-module-imports" "^7.12.5" "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-validator-option" "^7.12.1" + "@babel/helper-validator-option" "^7.12.11" "@babel/plugin-proposal-async-generator-functions" "^7.12.1" "@babel/plugin-proposal-class-properties" "^7.12.1" "@babel/plugin-proposal-dynamic-import" "^7.12.1" @@ -751,10 +740,10 @@ "@babel/plugin-proposal-json-strings" "^7.12.1" "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1" "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1" - "@babel/plugin-proposal-numeric-separator" "^7.12.1" + "@babel/plugin-proposal-numeric-separator" "^7.12.7" "@babel/plugin-proposal-object-rest-spread" "^7.12.1" "@babel/plugin-proposal-optional-catch-binding" "^7.12.1" - "@babel/plugin-proposal-optional-chaining" "^7.12.1" + "@babel/plugin-proposal-optional-chaining" "^7.12.7" "@babel/plugin-proposal-private-methods" "^7.12.1" "@babel/plugin-proposal-unicode-property-regex" "^7.12.1" "@babel/plugin-syntax-async-generators" "^7.8.0" @@ -772,7 +761,7 @@ "@babel/plugin-transform-arrow-functions" "^7.12.1" "@babel/plugin-transform-async-to-generator" "^7.12.1" "@babel/plugin-transform-block-scoped-functions" "^7.12.1" - "@babel/plugin-transform-block-scoping" "^7.12.1" + "@babel/plugin-transform-block-scoping" "^7.12.11" "@babel/plugin-transform-classes" "^7.12.1" "@babel/plugin-transform-computed-properties" "^7.12.1" "@babel/plugin-transform-destructuring" "^7.12.1" @@ -796,14 +785,14 @@ "@babel/plugin-transform-reserved-words" "^7.12.1" "@babel/plugin-transform-shorthand-properties" "^7.12.1" "@babel/plugin-transform-spread" "^7.12.1" - "@babel/plugin-transform-sticky-regex" "^7.12.1" + "@babel/plugin-transform-sticky-regex" "^7.12.7" "@babel/plugin-transform-template-literals" "^7.12.1" - "@babel/plugin-transform-typeof-symbol" "^7.12.1" + "@babel/plugin-transform-typeof-symbol" "^7.12.10" "@babel/plugin-transform-unicode-escapes" "^7.12.1" "@babel/plugin-transform-unicode-regex" "^7.12.1" "@babel/preset-modules" "^0.1.3" - "@babel/types" "^7.12.1" - core-js-compat "^3.6.2" + "@babel/types" "^7.12.11" + core-js-compat "^3.8.0" semver "^5.5.0" "@babel/preset-modules@^0.1.3": @@ -818,9 +807,9 @@ esutils "^2.0.2" "@babel/register@^7.10.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.12.1.tgz#cdb087bdfc4f7241c03231f22e15d211acf21438" - integrity sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q== + version "7.12.10" + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.12.10.tgz#19b87143f17128af4dbe7af54c735663b3999f60" + integrity sha512-EvX/BvMMJRAA3jZgILWgbsrHwBQvllC5T8B29McyME8DvkdOxk4ujESfrMvME8IHSDvWXrmMXxPvA/lx2gqPLQ== dependencies: find-cache-dir "^2.0.0" lodash "^4.17.19" @@ -843,36 +832,36 @@ dependencies: regenerator-runtime "^0.13.4" -"@babel/template@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" - integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== +"@babel/template@^7.10.4", "@babel/template@^7.12.7": + version "7.12.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc" + integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow== dependencies: "@babel/code-frame" "^7.10.4" - "@babel/parser" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/parser" "^7.12.7" + "@babel/types" "^7.12.7" -"@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.5.tgz#78a0c68c8e8a35e4cacfd31db8bb303d5606f095" - integrity sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA== +"@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.10", "@babel/traverse@^7.12.5": + version "7.12.12" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.12.tgz#d0cd87892704edd8da002d674bc811ce64743376" + integrity sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w== dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.5" - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.11.0" - "@babel/parser" "^7.12.5" - "@babel/types" "^7.12.5" + "@babel/code-frame" "^7.12.11" + "@babel/generator" "^7.12.11" + "@babel/helper-function-name" "^7.12.11" + "@babel/helper-split-export-declaration" "^7.12.11" + "@babel/parser" "^7.12.11" + "@babel/types" "^7.12.12" debug "^4.1.0" globals "^11.1.0" lodash "^4.17.19" -"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.0", "@babel/types@^7.12.1", "@babel/types@^7.12.5", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6": - version "7.12.6" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.6.tgz#ae0e55ef1cce1fbc881cd26f8234eb3e657edc96" - integrity sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA== +"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.12.0", "@babel/types@^7.12.1", "@babel/types@^7.12.10", "@babel/types@^7.12.11", "@babel/types@^7.12.12", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6": + version "7.12.12" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.12.tgz#4608a6ec313abbd87afa55004d373ad04a96c299" + integrity sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ== dependencies: - "@babel/helper-validator-identifier" "^7.10.4" + "@babel/helper-validator-identifier" "^7.12.11" lodash "^4.17.19" to-fast-properties "^2.0.0" @@ -950,9 +939,9 @@ integrity sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ== "@types/estree@*": - version "0.0.45" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884" - integrity sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== + version "0.0.46" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.46.tgz#0fb6bfbbeabd7a30880504993369c4bf1deab1fe" + integrity sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg== "@types/estree@0.0.39": version "0.0.39" @@ -965,9 +954,9 @@ integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= "@types/node@*": - version "14.14.7" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.7.tgz#8ea1e8f8eae2430cf440564b98c6dfce1ec5945d" - integrity sha512-Zw1vhUSQZYw+7u5dAwNbIA9TuTotpzY/OF7sJM9FqPOF3SPjKnxrjoTktXDZgUjybf4cWVBP7O8wvKdSaGHweg== + version "14.14.22" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.22.tgz#0d29f382472c4ccf3bd96ff0ce47daf5b7b84b18" + integrity sha512-g+f/qj/cNcqKkc3tFqlXOYjrmZA+jNBiDzbP3kH+B+otKFqAdPgVTGP1IeKRdMml/aE69as5S4FqtxAbl+LaMw== "@types/resolve@0.0.8": version "0.0.8" @@ -976,36 +965,36 @@ dependencies: "@types/node" "*" -"@vue/compiler-core@3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.2.tgz#7790b7a1fcbba5ace4d81a70ce59096fa5c95734" - integrity sha512-GOlEMTlC/OdzBkKaKOniYErbkjoKxkBOmulxGmMR10I2JJX6TvXd/peaO/kla2xhpliV/M6Z4TLJp0yjAvRIAw== +"@vue/compiler-core@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.5.tgz#a6e54cabe9536e74c6513acd2649f311af1d43ac" + integrity sha512-iFXwk2gmU/GGwN4hpBwDWWMLvpkIejf/AybcFtlQ5V1ur+5jwfBaV0Y1RXoR6ePfBPJixtKZ3PmN+M+HgMAtfQ== dependencies: "@babel/parser" "^7.12.0" "@babel/types" "^7.12.0" - "@vue/shared" "3.0.2" + "@vue/shared" "3.0.5" estree-walker "^2.0.1" source-map "^0.6.1" -"@vue/compiler-dom@3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.2.tgz#1d40de04bcdf9aabb79fb6a802dd70a2f3c2992a" - integrity sha512-jvaL4QF2yXBJVD+JLbM2YA3e5fNfflJnfQ+GtfYk46ENGsEetqbkZqcX7fO+RHdG8tZBo7LCNBvgD0QLr+V4sg== +"@vue/compiler-dom@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.5.tgz#7885a13e6d18f64dde8ebceec052ed2c102696c2" + integrity sha512-HSOSe2XSPuCkp20h4+HXSiPH9qkhz6YbW9z9ZtL5vef2T2PMugH7/osIFVSrRZP/Ul5twFZ7MIRlp8tPX6e4/g== dependencies: - "@vue/compiler-core" "3.0.2" - "@vue/shared" "3.0.2" + "@vue/compiler-core" "3.0.5" + "@vue/shared" "3.0.5" "@vue/compiler-sfc@^3.0.0": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.2.tgz#22c70fed72c347a4d5fa2db2e80594b3193dce57" - integrity sha512-viYjT5ehDSLM3v0jQ9hbTs4I5e/7lSlYsDOp7TQ1qcwHRvzoTQMTkFpY/Iae+LFKM124Ld17tBfXgfrZl9dt+g== + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.5.tgz#3ae08e60244a72faf9598361874fb7bdb5b1d37c" + integrity sha512-uOAC4X0Gx3SQ9YvDC7YMpbDvoCmPvP0afVhJoxRotDdJ+r8VO3q4hFf/2f7U62k4Vkdftp6DVni8QixrfYzs+w== dependencies: "@babel/parser" "^7.12.0" "@babel/types" "^7.12.0" - "@vue/compiler-core" "3.0.2" - "@vue/compiler-dom" "3.0.2" - "@vue/compiler-ssr" "3.0.2" - "@vue/shared" "3.0.2" + "@vue/compiler-core" "3.0.5" + "@vue/compiler-dom" "3.0.5" + "@vue/compiler-ssr" "3.0.5" + "@vue/shared" "3.0.5" consolidate "^0.16.0" estree-walker "^2.0.1" hash-sum "^2.0.0" @@ -1017,13 +1006,13 @@ postcss-selector-parser "^6.0.4" source-map "^0.6.1" -"@vue/compiler-ssr@3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.2.tgz#73af4d274a79bfcc72a996a9b45f1072e7deaa26" - integrity sha512-gOgK1lf+0bFl+kQj6TU0TU1jIDFlsPRlSBZaUUA16DGeeiJrFanhsMuIs/l9U0IBFr/VJcHgzYpTXqHp95luHw== +"@vue/compiler-ssr@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.5.tgz#7661ad891a0be948726c7f7ad1e425253c587b83" + integrity sha512-Wm//Kuxa1DpgjE4P9W0coZr8wklOfJ35Jtq61CbU+t601CpPTK4+FL2QDBItaG7aoUUDCWL5nnxMkuaOgzTBKg== dependencies: - "@vue/compiler-dom" "3.0.2" - "@vue/shared" "3.0.2" + "@vue/compiler-dom" "3.0.5" + "@vue/shared" "3.0.5" "@vue/component-compiler-utils@^3.0.0", "@vue/component-compiler-utils@^3.1.2": version "3.2.0" @@ -1057,10 +1046,10 @@ sass "^1.18.0" stylus "^0.54.5" -"@vue/shared@3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.2.tgz#419bd85a2ebdbd4f42963e98c5a1b103452176d9" - integrity sha512-Zx869zlNoujFOclKIoYmkh8ES2RcS/+Jn546yOiPyZ+3+Ejivnr+fb8l+DdXUEFjo+iVDNR3KyLzg03aBFfZ4Q== +"@vue/shared@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.5.tgz#c131d88bd6713cc4d93b3bb1372edb1983225ff0" + integrity sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw== abbrev@1: version "1.1.1" @@ -1134,9 +1123,9 @@ acorn-static-class-features@^0.2.4: acorn-private-class-elements "^0.2.7" acorn-walk@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.0.0.tgz#56ae4c0f434a45fff4a125e7ea95fa9c98f67a16" - integrity sha512-oZRad/3SMOI/pxbbmqyurIx7jHw1wZDcR9G44L8pUVFEomX/0dH89SrM1KaDXuv1NpzAXz6Op/Xu/Qd5XXzdEA== + version "8.0.2" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.0.2.tgz#d4632bfc63fd93d0f15fd05ea0e984ffd3f5a8c3" + integrity sha512-+bpA9MJsHdZ4bgfDcpk0ozQyhhVct7rzOmO0s1IIr0AGGgKBljss8n2zp11rRP2wid5VGeh04CgeKzgat5/25A== acorn@^3.1.0: version "3.3.0" @@ -1299,21 +1288,24 @@ argparse@^1.0.7, argparse@^1.0.9: sprintf-js "~1.0.2" array-includes@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" - integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== + version "3.1.2" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.2.tgz#a8db03e0b88c8c6aeddc49cb132f9bcab4ebf9c8" + integrity sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw== dependencies: + call-bind "^1.0.0" define-properties "^1.1.3" - es-abstract "^1.17.0" + es-abstract "^1.18.0-next.1" + get-intrinsic "^1.0.1" is-string "^1.0.5" array.prototype.flat@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" - integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== + version "1.2.4" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123" + integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg== dependencies: + call-bind "^1.0.0" define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" + es-abstract "^1.18.0-next.1" as-array@^2.0.0: version "2.0.0" @@ -1507,9 +1499,9 @@ big.js@^5.2.2: integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== binary-extensions@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" - integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== bl@^4.0.3: version "4.0.3" @@ -1535,7 +1527,7 @@ bn.js@^5.0.0, bn.js@^5.1.1: resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b" integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ== -boolbase@~1.0.0: +boolbase@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= @@ -1640,16 +1632,16 @@ browserify-sign@^4.0.0: readable-stream "^3.6.0" safe-buffer "^5.2.0" -browserslist@^4.14.5, browserslist@^4.14.6: - version "4.14.7" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.7.tgz#c071c1b3622c1c2e790799a37bb09473a4351cb6" - integrity sha512-BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ== +browserslist@^4.14.5, browserslist@^4.16.1: + version "4.16.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.1.tgz#bf757a2da376b3447b800a16f0f1c96358138766" + integrity sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA== dependencies: - caniuse-lite "^1.0.30001157" + caniuse-lite "^1.0.30001173" colorette "^1.2.1" - electron-to-chromium "^1.3.591" + electron-to-chromium "^1.3.634" escalade "^3.1.1" - node-releases "^1.1.66" + node-releases "^1.1.69" buffer-crc32@^0.2.1, buffer-crc32@^0.2.13: version "0.2.13" @@ -1680,9 +1672,9 @@ buffer@^5.1.0, buffer@^5.5.0: ieee754 "^1.1.13" builtin-modules@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484" - integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== + version "3.2.0" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887" + integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== buntis@0.2.1: version "0.2.1" @@ -1703,13 +1695,13 @@ bytes@3.1.0: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== -call-bind@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz#24127054bb3f9bdcb4b1fb82418186072f77b8ce" - integrity sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w== +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== dependencies: function-bind "^1.1.1" - get-intrinsic "^1.0.0" + get-intrinsic "^1.0.2" callsites@^3.0.0: version "3.1.0" @@ -1726,10 +1718,10 @@ camelcase@^5.0.0, camelcase@^5.3.1: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== -caniuse-lite@^1.0.30001157: - version "1.0.30001158" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001158.tgz#fce86d321369603c2bc855ee0e901a7f49f8310b" - integrity sha512-s5loVYY+yKpuVA3HyW8BarzrtJvwHReuzugQXlv1iR3LKSReoFXRm86mT6hT7PEF5RxW+XQZg+6nYjlywYzQ+g== +caniuse-lite@^1.0.30001173: + version "1.0.30001181" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001181.tgz#4f0e5184e1ea7c3bf2727e735cbe7ca9a451d673" + integrity sha512-m5ul/ARCX50JB8BSNM+oiPmQrR5UmngaQ3QThTTp5HcIIQGP/nPBs82BYLE+tigzm3VW+F4BJIhUyaVtEweelQ== caseless@~0.12.0: version "0.12.0" @@ -1817,17 +1809,29 @@ check-error@^1.0.2: resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= -cheerio@^1.0.0-rc.3: - version "1.0.0-rc.3" - resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" - integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA== +cheerio-select-tmp@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/cheerio-select-tmp/-/cheerio-select-tmp-0.1.1.tgz#55bbef02a4771710195ad736d5e346763ca4e646" + integrity sha512-YYs5JvbpU19VYJyj+F7oYrIE2BOll1/hRU7rEy/5+v9BzkSo3bK81iAeeQEMI92vRIxz677m72UmJUiVwwgjfQ== dependencies: - css-select "~1.2.0" - dom-serializer "~0.1.1" - entities "~1.1.1" - htmlparser2 "^3.9.1" - lodash "^4.15.0" - parse5 "^3.0.1" + css-select "^3.1.2" + css-what "^4.0.0" + domelementtype "^2.1.0" + domhandler "^4.0.0" + domutils "^2.4.4" + +cheerio@^1.0.0-rc.3: + version "1.0.0-rc.5" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.5.tgz#88907e1828674e8f9fee375188b27dadd4f0fa2f" + integrity sha512-yoqps/VCaZgN4pfXtenwHROTp8NG6/Hlt4Jpz2FEP0ZJQ+ZUkVDd0hAPDNKhj3nakpfPt/CNs57yEtxD1bXQiw== + dependencies: + cheerio-select-tmp "^0.1.0" + dom-serializer "~1.2.0" + domhandler "^4.0.0" + entities "~2.1.0" + htmlparser2 "^6.0.0" + parse5 "^6.0.0" + parse5-htmlparser2-tree-adapter "^6.0.0" child_process@^1.0.2: version "1.0.2" @@ -1835,9 +1839,9 @@ child_process@^1.0.2: integrity sha1-sffn/HPSXn/R1FWtyU4UODAYK1o= "chokidar@>=2.0.0 <4.0.0": - version "3.4.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b" - integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ== + version "3.5.1" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" + integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== dependencies: anymatch "~3.1.1" braces "~3.0.2" @@ -1847,7 +1851,7 @@ child_process@^1.0.2: normalize-path "~3.0.0" readdirp "~3.5.0" optionalDependencies: - fsevents "~2.1.2" + fsevents "~2.3.1" ci-info@^2.0.0: version "2.0.0" @@ -2067,28 +2071,35 @@ convert-source-map@^1.7.0: dependencies: safe-buffer "~5.1.1" -core-js-compat@^3.6.2: - version "3.7.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.7.0.tgz#8479c5d3d672d83f1f5ab94cf353e57113e065ed" - integrity sha512-V8yBI3+ZLDVomoWICO6kq/CD28Y4r1M7CWeO4AGpMdMfseu8bkSubBmUPySMGKRTS+su4XQ07zUkAsiu9FCWTg== +copy-anything@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-2.0.1.tgz#2afbce6da684bdfcbec93752fa762819cb480d9a" + integrity sha512-lA57e7viQHOdPQcrytv5jFeudZZOXuyk47lZym279FiDQ8jeZomXiGuVf6ffMKkJ+3TIai3J1J3yi6M+/4U35g== dependencies: - browserslist "^4.14.6" + is-what "^3.7.1" + +core-js-compat@^3.8.0: + version "3.8.3" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.8.3.tgz#9123fb6b9cad30f0651332dc77deba48ef9b0b3f" + integrity sha512-1sCb0wBXnBIL16pfFG1Gkvei6UzvKyTNYpiC41yrdjEv0UoJoq9E/abTMzyYJ6JpTkAj15dLjbqifIzEBDVvog== + dependencies: + browserslist "^4.16.1" semver "7.0.0" core-js-pure@^3.0.0: - version "3.7.0" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.7.0.tgz#28a57c861d5698e053f0ff36905f7a3301b4191e" - integrity sha512-EZD2ckZysv8MMt4J6HSvS9K2GdtlZtdBncKAmF9lr2n0c9dJUaUN88PSTjvgwCgQPWKTkERXITgS6JJRAnljtg== + version "3.8.3" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.8.3.tgz#10e9e3b2592ecaede4283e8f3ad7020811587c02" + integrity sha512-V5qQZVAr9K0xu7jXg1M7qTEwuxUgqr7dUOezGaNa7i+Xn9oXAU/d1fzqD9ObuwpVQOaorO5s70ckyi1woP9lVA== core-js@3: - version "3.7.0" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.7.0.tgz#b0a761a02488577afbf97179e4681bf49568520f" - integrity sha512-NwS7fI5M5B85EwpWuIwJN4i/fbisQUwLwiSNUWeXlkAZ0sbBjLEvLvFLf1uzAUV66PcEPt4xCGCmOZSxVf3xzA== + version "3.8.3" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.8.3.tgz#c21906e1f14f3689f93abcc6e26883550dd92dd0" + integrity sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q== core-js@^2.4.0, core-js@^2.6.5: - version "2.6.11" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" - integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== + version "2.6.12" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" + integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" @@ -2192,15 +2203,16 @@ css-parse@~2.0.0: dependencies: css "^2.0.0" -css-select@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" - integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= +css-select@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-3.1.2.tgz#d52cbdc6fee379fba97fb0d3925abbd18af2d9d8" + integrity sha512-qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA== dependencies: - boolbase "~1.0.0" - css-what "2.1" - domutils "1.5.1" - nth-check "~1.0.1" + boolbase "^1.0.0" + css-what "^4.0.0" + domhandler "^4.0.0" + domutils "^2.4.3" + nth-check "^2.0.0" css-selector-tokenizer@^0.7.0: version "0.7.3" @@ -2210,10 +2222,10 @@ css-selector-tokenizer@^0.7.0: cssesc "^3.0.0" fastparse "^1.1.2" -css-what@2.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" - integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== +css-what@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-4.0.0.tgz#35e73761cab2eeb3d3661126b23d7aa0e8432233" + integrity sha512-teijzG7kwYfNVsUh2H/YN62xW3KK9YhXEgSlbxMlcyjPNvdKJqFx5lrwlJgoFP1ZHlB89iGDlo/JyshKeRhv5A== css@^2.0.0: version "2.2.4" @@ -2336,7 +2348,7 @@ debug@3.1.0, debug@~3.1.0: dependencies: ms "2.0.0" -debug@3.2.6, debug@^3.1.0: +debug@3.2.6: version "3.2.6" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== @@ -2344,12 +2356,19 @@ debug@3.2.6, debug@^3.1.0: ms "^2.1.1" debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: - version "4.2.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1" - integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg== + version "4.3.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" + integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== dependencies: ms "2.1.2" +debug@^3.1.0: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + decamelize@^1.0.0, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" @@ -2467,54 +2486,35 @@ doctypes@^1.1.0: resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" integrity sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk= -dom-serializer@0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" - integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== +dom-serializer@^1.0.1, dom-serializer@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.2.0.tgz#3433d9136aeb3c627981daa385fc7f32d27c48f1" + integrity sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA== dependencies: domelementtype "^2.0.1" + domhandler "^4.0.0" entities "^2.0.0" -dom-serializer@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" - integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== +domelementtype@^2.0.1, domelementtype@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e" + integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== + +domhandler@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.0.0.tgz#01ea7821de996d85f69029e81fa873c21833098e" + integrity sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA== dependencies: - domelementtype "^1.3.0" - entities "^1.1.1" + domelementtype "^2.1.0" -domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" - integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== - -domelementtype@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.2.tgz#f3b6e549201e46f588b59463dd77187131fe6971" - integrity sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA== - -domhandler@^2.3.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" - integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== +domutils@^2.4.3, domutils@^2.4.4: + version "2.4.4" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.4.4.tgz#282739c4b150d022d34699797369aad8d19bbbd3" + integrity sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA== dependencies: - domelementtype "1" - -domutils@1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" - integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= - dependencies: - dom-serializer "0" - domelementtype "1" - -domutils@^1.5.1: - version "1.7.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" - integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== - dependencies: - dom-serializer "0" - domelementtype "1" + dom-serializer "^1.0.1" + domelementtype "^2.0.1" + domhandler "^4.0.0" dotenv@7.0.0: version "7.0.0" @@ -2588,10 +2588,10 @@ ejs@^2.7.4: resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== -electron-to-chromium@^1.3.591: - version "1.3.596" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.596.tgz#c7ed98512c7ff36ddcbfed9e54e6355335c35257" - integrity sha512-nLO2Wd2yU42eSoNJVQKNf89CcEGqeFZd++QsnN2XIgje1s/19AgctfjLIbPORlvcCO8sYjLwX4iUgDdusOY8Sg== +electron-to-chromium@^1.3.634: + version "1.3.648" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.648.tgz#b05926eca1843c04b283e682a1fc6c10af7e9dda" + integrity sha512-4POzwyQ80tkDiBwkxn7IpfzioimrjRSFX1sCQ3pLZsYJ5ERYmwzdq0hZZ3nFP7Z6GtmnSn3xwWDm8FPlMeOoEQ== elliptic@^6.5.3: version "6.5.3" @@ -2633,12 +2633,12 @@ end-of-stream@^1.4.1: dependencies: once "^1.4.0" -entities@^1.1.1, entities@~1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" - integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== - entities@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +entities@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== @@ -2649,9 +2649,9 @@ envinfo@^7.5.1: integrity sha512-46+j5QxbPWza0PB1i15nZx0xQ4I/EfQxg9J8Had3b408SV63nEtor2e+oiY63amTo9KTuh2a3XLObNwduxYwwA== errno@^0.1.1, errno@~0.1.1: - version "0.1.7" - resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" - integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== + version "0.1.8" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" + integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== dependencies: prr "~1.0.1" @@ -2669,40 +2669,25 @@ error-stack-parser@^2.0.6: dependencies: stackframe "^1.1.1" -es-abstract@^1.17.0, es-abstract@^1.17.0-next.1: - version "1.17.7" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c" - integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== - dependencies: - es-to-primitive "^1.2.1" - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.1" - is-callable "^1.2.2" - is-regex "^1.1.1" - object-inspect "^1.8.0" - object-keys "^1.1.1" - object.assign "^4.1.1" - string.prototype.trimend "^1.0.1" - string.prototype.trimstart "^1.0.1" - es-abstract@^1.18.0-next.1: - version "1.18.0-next.1" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" - integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== + version "1.18.0-next.2" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.2.tgz#088101a55f0541f595e7e057199e27ddc8f3a5c2" + integrity sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw== dependencies: + call-bind "^1.0.2" es-to-primitive "^1.2.1" function-bind "^1.1.1" + get-intrinsic "^1.0.2" has "^1.0.3" has-symbols "^1.0.1" is-callable "^1.2.2" - is-negative-zero "^2.0.0" + is-negative-zero "^2.0.1" is-regex "^1.1.1" - object-inspect "^1.8.0" + object-inspect "^1.9.0" object-keys "^1.1.1" - object.assign "^4.1.1" - string.prototype.trimend "^1.0.1" - string.prototype.trimstart "^1.0.1" + object.assign "^4.1.2" + string.prototype.trimend "^1.0.3" + string.prototype.trimstart "^1.0.3" es-to-primitive@^1.2.1: version "1.2.1" @@ -2986,9 +2971,9 @@ estree-walker@^1.0.1: integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== estree-walker@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.1.tgz#f8e030fb21cefa183b44b7ad516b747434e7a3e0" - integrity sha512-tF0hv+Yi2Ot1cwj9eYHtxC0jB9bmjacjQs6ZBTj82H8JwUywFuc+7E83NWfNMwHXZc11mjfFcVXPe9gEP4B8dg== + version "2.0.2" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" + integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== esutils@^2.0.2: version "2.0.3" @@ -3139,24 +3124,24 @@ flatted@^2.0.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== -flow-parser@^0.138.0: - version "0.138.0" - resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.138.0.tgz#2d9818f6b804d66f90949dfa8b4892f3a0af546d" - integrity sha512-LFnTyjrv39UvCWl8NOcpByr/amj8a5k5z7isO2wv4T43nNrUnHQwX3rarTz9zcpHXkDAQv6X4MfQ4ZzJUptpbw== +flow-parser@^0.143.1: + version "0.143.1" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.143.1.tgz#c18e1745df97d1132e60036e88cbf1925b5094e4" + integrity sha512-DWmnt0P1tieuQErYeWmxCNIkzm5Fqd5sMH685v/jCtu8CAvdLEwKi45jqYhij178k+NAy+FNe2jDvQNs7WLBIA== flow-remove-types@^2.135.0: - version "2.138.0" - resolved "https://registry.yarnpkg.com/flow-remove-types/-/flow-remove-types-2.138.0.tgz#afa56af28d4a53440fed34a4b00360d6653f17f7" - integrity sha512-gWZYpCAcpX5SD7j1S5DrWLWm+ir5LXkkRTrCokTdO5aW6M1cqQmHN5lxwoQTqkP8PfgXI8ILD810TL9CvexpgA== + version "2.143.1" + resolved "https://registry.yarnpkg.com/flow-remove-types/-/flow-remove-types-2.143.1.tgz#e205d42de99a91d1f28d83b394ee73927368258f" + integrity sha512-UUl8tigzcH8NGGQ38K72MZ0i3T4hvtb9+yQRR4AMJDaOAUcpo6zp6/tVSASj34q8Zwb0At0CcXV7rtBLW6OJZQ== dependencies: - flow-parser "^0.138.0" + flow-parser "^0.143.1" pirates "^3.0.2" vlq "^0.2.1" follow-redirects@^1.10.0: - version "1.13.1" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.1.tgz#5f69b813376cee4fd0474a3aba835df04ab763b7" - integrity sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg== + version "1.13.2" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.2.tgz#dd73c8effc12728ba5cf4259d760ea5fb83e3147" + integrity sha512-6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA== foreach@~2.0.1: version "2.0.5" @@ -3183,14 +3168,14 @@ fs-constants@^1.0.0: integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== fs-extra@^9.0.1: - version "9.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc" - integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ== + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== dependencies: at-least-node "^1.0.0" graceful-fs "^4.2.0" jsonfile "^6.0.1" - universalify "^1.0.0" + universalify "^2.0.0" fs.realpath@^1.0.0: version "1.0.0" @@ -3202,10 +3187,10 @@ fs@0.0.1-security: resolved "https://registry.yarnpkg.com/fs/-/fs-0.0.1-security.tgz#8a7bd37186b6dddf3813f23858b57ecaaf5e41d4" integrity sha1-invTcYa23d84E/I4WLV+yq9eQdQ= -fsevents@~2.1.2: - version "2.1.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" - integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== +fsevents@~2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.1.tgz#b209ab14c61012636c8863507edf7fb68cc54e9f" + integrity sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw== ftp@~0.3.10: version "0.3.10" @@ -3261,10 +3246,10 @@ get-func-name@^2.0.0: resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= -get-intrinsic@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.1.tgz#94a9768fcbdd0595a1c9273aacf4c89d075631be" - integrity sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg== +get-intrinsic@^1.0.1, get-intrinsic@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.0.tgz#892e62931e6938c8a23ea5aaebcfb67bd97da97e" + integrity sha512-M11rgtQp5GZMZzDL7jLTNxbDfurpzuau5uqRWDPvlHjfvg3TdScAZo96GLvhMjImrmR8uAt0FS2RLoMrfWGKlg== dependencies: function-bind "^1.1.1" has "^1.0.3" @@ -3471,17 +3456,15 @@ hosted-git-info@^2.1.4: resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== -htmlparser2@^3.9.1: - version "3.10.1" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" - integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== +htmlparser2@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.0.0.tgz#c2da005030390908ca4c91e5629e418e0665ac01" + integrity sha512-numTQtDZMoh78zJpaNdJ9MXb2cv5G3jwUoe3dMQODubZvLoGvTE/Ofp6sHvH8OGKcN/8A47pGLi/k58xHP/Tfw== dependencies: - domelementtype "^1.3.1" - domhandler "^2.3.0" - domutils "^1.5.1" - entities "^1.1.1" - inherits "^2.0.1" - readable-stream "^3.1.1" + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.4.4" + entities "^2.0.0" http-errors@1.7.3: version "1.7.3" @@ -3569,9 +3552,9 @@ immediate@~3.2.3: integrity sha1-0UD6j2FGWb1lQSMwl92qwlzdmRw= import-fresh@^3.0.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz#fc129c160c5d68235507f4331a6baad186bdbc3e" - integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw== + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== dependencies: parent-module "^1.0.0" resolve-from "^4.0.0" @@ -3671,9 +3654,9 @@ is-callable@^1.1.4, is-callable@^1.2.2: integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== is-core-module@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.1.0.tgz#a4cc031d9b1aca63eecbd18a650e13cb4eeab946" - integrity sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA== + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" + integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== dependencies: has "^1.0.3" @@ -3735,10 +3718,10 @@ is-module@^1.0.0: resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= -is-negative-zero@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz#9553b121b0fac28869da9ed459e20c7543788461" - integrity sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE= +is-negative-zero@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" + integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== is-number@^7.0.0: version "7.0.0" @@ -3791,6 +3774,11 @@ is-typedarray@^1.0.0, is-typedarray@~1.0.0: resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= +is-what@^3.7.1: + version "3.12.0" + resolved "https://registry.yarnpkg.com/is-what/-/is-what-3.12.0.tgz#f4405ce4bd6dd420d3ced51a026fb90e03705e55" + integrity sha512-2ilQz5/f/o9V7WRWJQmpFYNmQFZ9iM+OXRonZKcYgTkCzjb949Vi4h282PD1UfmgHk666rcWonbRJ++KI41VGw== + is@~0.2.6: version "0.2.7" resolved "https://registry.yarnpkg.com/is/-/is-0.2.7.tgz#3b34a2c48f359972f35042849193ae7264b63562" @@ -3839,9 +3827,9 @@ js-base64@^2.1.9: integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ== js-beautify@^1.6.12: - version "1.13.0" - resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.13.0.tgz#a056d5d3acfd4918549aae3ab039f9f3c51eebb2" - integrity sha512-/Tbp1OVzZjbwzwJQFIlYLm9eWQ+3aYbBXLSaqb1mEJzhcQAfrqMMQYtjb6io+U6KpD0ID4F+Id3/xcjH3l/sqA== + version "1.13.5" + resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.13.5.tgz#a08a97890cae55daf1d758d3f6577bd4a64d7014" + integrity sha512-MsXlH6Z/BiRYSkSRW3clNDqDjSpiSNOiG8xYVUBXt4k0LnGvDhlTGOlHX1VFtAdoLmtwjxMG5qiWKy/g+Ipv5w== dependencies: config-chain "^1.1.12" editorconfig "^0.15.3" @@ -3868,9 +3856,9 @@ js-yaml@3.13.1: esprima "^4.0.0" js-yaml@^3.13.1: - version "3.14.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" - integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== dependencies: argparse "^1.0.7" esprima "^4.0.0" @@ -4007,10 +3995,11 @@ ldap@^0.7.1: dtrace-provider "0.4.0" less@^3.9.0: - version "3.12.2" - resolved "https://registry.yarnpkg.com/less/-/less-3.12.2.tgz#157e6dd32a68869df8859314ad38e70211af3ab4" - integrity sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q== + version "3.13.1" + resolved "https://registry.yarnpkg.com/less/-/less-3.13.1.tgz#0ebc91d2a0e9c0c6735b83d496b0ab0583077909" + integrity sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw== dependencies: + copy-anything "^2.0.1" tslib "^1.10.0" optionalDependencies: errno "^0.1.1" @@ -4307,7 +4296,7 @@ lodash.union@^4.6.0: resolved "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" integrity sha1-SLtQiECfFvGCFmZkHETdGqrjzYg= -lodash@^4.15.0, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.4: +lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.4: version "4.17.20" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== @@ -4407,22 +4396,22 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" -mime-db@1.44.0: - version "1.44.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" - integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== +mime-db@1.45.0: + version "1.45.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea" + integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w== mime-types@^2.1.12, mime-types@~2.1.19: - version "2.1.27" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" - integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== + version "2.1.28" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.28.tgz#1160c4757eab2c5363888e005273ecf79d2a0ecd" + integrity sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ== dependencies: - mime-db "1.44.0" + mime-db "1.45.0" mime@>=2.4.6: - version "2.4.6" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.6.tgz#e5b407c90db442f2beb5b162373d07b69affa4d1" - integrity sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA== + version "2.5.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.0.tgz#2b4af934401779806ee98026bb42e8c1ae1876b1" + integrity sha512-ft3WayFSFUVBuJj7BMLKAQcSlItKtfjsKDDsii3rqFDAZ7t11zRe8ASw/GlmivGwVUYtwkQrxiGGpL6gFvB0ag== mime@^1.4.1: version "1.6.0" @@ -4519,11 +4508,16 @@ ms@2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== -ms@2.1.2, ms@^2.1.1: +ms@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== +ms@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + mute-stream@0.0.8: version "0.0.8" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" @@ -4645,10 +4639,10 @@ node-modules-regexp@^1.0.0: resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= -node-releases@^1.1.66: - version "1.1.66" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.66.tgz#609bd0dc069381015cd982300bae51ab4f1b1814" - integrity sha512-JHEQ1iWPGK+38VLB2H9ef2otU4l8s3yAMt9Xf934r6+ojCYDMHPMqvCc9TnzfeFSP1QEOeU6YZEd3+De0LTCgg== +node-releases@^1.1.69: + version "1.1.70" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.70.tgz#66e0ed0273aa65666d7fe78febe7634875426a08" + integrity sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw== nopt@^5.0.0: version "5.0.0" @@ -4672,12 +4666,12 @@ normalize-path@^3.0.0, normalize-path@~3.0.0: resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== -nth-check@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" - integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== +nth-check@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125" + integrity sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q== dependencies: - boolbase "~1.0.0" + boolbase "^1.0.0" oauth-sign@~0.9.0: version "0.9.0" @@ -4689,10 +4683,10 @@ object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= -object-inspect@^1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" - integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== +object-inspect@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" + integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" @@ -4718,7 +4712,7 @@ object.assign@4.1.0: has-symbols "^1.0.0" object-keys "^1.0.11" -object.assign@^4.1.0, object.assign@^4.1.1: +object.assign@^4.1.0, object.assign@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== @@ -4729,21 +4723,22 @@ object.assign@^4.1.0, object.assign@^4.1.1: object-keys "^1.1.1" object.getownpropertydescriptors@^2.0.3: - version "2.1.0" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" - integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== + version "2.1.1" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz#0dfda8d108074d9c563e80490c883b6661091544" + integrity sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng== dependencies: + call-bind "^1.0.0" define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" + es-abstract "^1.18.0-next.1" object.values@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" - integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== + version "1.1.2" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.2.tgz#7a2015e06fcb0f546bd652486ce8583a4731c731" + integrity sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag== dependencies: + call-bind "^1.0.0" define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - function-bind "^1.1.1" + es-abstract "^1.18.0-next.1" has "^1.0.3" octal@^1.0.0: @@ -4903,12 +4898,17 @@ parse-json@^2.2.0: dependencies: error-ex "^1.2.0" -parse5@^3.0.1: - version "3.0.3" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" - integrity sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA== +parse5-htmlparser2-tree-adapter@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz#2cdf9ad823321140370d4dbf5d3e92c7c8ddc6e6" + integrity sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA== dependencies: - "@types/node" "*" + parse5 "^6.0.1" + +parse5@^6.0.0, parse5@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" + integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== path-exists@^3.0.0: version "3.0.0" @@ -4951,9 +4951,9 @@ path@^0.12.7: util "^0.10.3" pathval@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" - integrity sha1-uULm1L3mUwBe9rcTYd74cn0GReA= + version "1.1.1" + resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" + integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== pbkdf2@^3.0.3: version "3.1.1" @@ -5445,9 +5445,9 @@ punycode@^2.1.0, punycode@^2.1.1: integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== qs@^6.9.1: - version "6.9.4" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.4.tgz#9090b290d1f91728d3c22e54843ca44aea5ab687" - integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ== + version "6.9.6" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.6.tgz#26ed3c8243a431b2924aca84cc90471f35d5a0ee" + integrity sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ== qs@~6.5.2: version "6.5.2" @@ -5607,9 +5607,9 @@ regjsgen@^0.5.1: integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== regjsparser@^0.6.4: - version "0.6.4" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" - integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== + version "0.6.6" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.6.tgz#6d8c939d1a654f78859b08ddcc4aa777f3fa800a" + integrity sha512-jjyuCp+IEMIm3N1H1LLTJW1EISEJV9+5oHdEyrt43Pg9cDSb6rrLZei2cVWpl0xTjmmlpec/lEQGYgM7xfpGCQ== dependencies: jsesc "~0.5.0" @@ -5681,7 +5681,7 @@ resolve-url@^0.2.1: resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.11.1, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.17.0, resolve@^1.3.2, resolve@^1.3.3, resolve@^1.8.1: +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.11.1, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.17.0, resolve@^1.3.3: version "1.19.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== @@ -5868,9 +5868,9 @@ safe-json-stringify@~1: integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== sass@^1.18.0: - version "1.29.0" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.29.0.tgz#ec4e1842c146d8ea9258c28c141b8c2b7c6ab7f1" - integrity sha512-ZpwAUFgnvAUCdkjwPREny+17BpUj8nh5Yr6zKPGtLNTLrmtoRYIjm7njP24COhjJldjwW1dcv52Lpf4tNZVVRA== + version "1.32.5" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.32.5.tgz#2882d22ad5748c05fa9bff6c3b0ffbc4f4b9e1dc" + integrity sha512-kU1yJ5zUAmPxr7f3q0YXTAd1oZjSR1g3tYyv+xu0HZSl5JiNOaE987eiz7wCUvbm4I9fGWGU2TgApTtcP4GMNQ== dependencies: chokidar ">=2.0.0 <4.0.0" @@ -6066,9 +6066,9 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.6" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz#c80757383c28abf7296744998cbc106ae8b854ce" - integrity sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw== + version "3.0.7" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz#e9c18a410e5ed7e12442a549fbd8afa767038d65" + integrity sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ== sprintf-js@~1.0.2: version "1.0.3" @@ -6175,21 +6175,21 @@ string-width@^4.0.0, string-width@^4.1.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.0" -string.prototype.trimend@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.2.tgz#6ddd9a8796bc714b489a3ae22246a208f37bfa46" - integrity sha512-8oAG/hi14Z4nOVP0z6mdiVZ/wqjDtWSLygMigTzAb+7aPEDTleeFf+WrF+alzecxIRkckkJVn+dTlwzJXORATw== +string.prototype.trimend@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b" + integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw== dependencies: + call-bind "^1.0.0" define-properties "^1.1.3" - es-abstract "^1.18.0-next.1" -string.prototype.trimstart@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.2.tgz#22d45da81015309cd0cdd79787e8919fc5c613e7" - integrity sha512-7F6CdBTl5zyu30BJFdzSTlSlLPwODC23Od+iLoVH8X6+3fvDPPuBVVj9iaB1GOsSTSIgVfsfm27R2FGrAPznWg== +string.prototype.trimstart@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa" + integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg== dependencies: + call-bind "^1.0.0" define-properties "^1.1.3" - es-abstract "^1.18.0-next.1" string_decoder@^1.1.1: version "1.3.0" @@ -6341,9 +6341,9 @@ table@^5.2.3: string-width "^3.0.0" tar-stream@^2.1.2: - version "2.1.4" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.4.tgz#c4fb1a11eb0da29b893a5b25476397ba2d053bfa" - integrity sha512-o3pS2zlG4gxr67GmFYBLlq+dM8gyRGUOvsrHclSkvtVtQbjV0s/+ZE8OpICbaj8clrX3tjeHngYGP7rweaBnuw== + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== dependencies: bl "^4.0.3" end-of-stream "^1.4.1" @@ -6465,9 +6465,9 @@ tslib@^1.10.0, tslib@^1.9.0: integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== tslib@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.3.tgz#8e0741ac45fc0c226e58a17bfc3e64b9bc6ca61c" - integrity sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ== + version "2.1.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a" + integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== tunnel-agent@^0.6.0: version "0.6.0" @@ -6546,9 +6546,9 @@ uglify-js@^2.6.1: uglify-to-browserify "~1.0.0" uglify-js@^3.1.4: - version "3.11.6" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.11.6.tgz#144b50d3e05eadd3ad4dd047c60ca541a8cd4e9c" - integrity sha512-oASI1FOJ7BBFkSCNDZ446EgkSuHkOZBuqRFrwXIKWCoXw8ZXQETooTQjkAcBS03Acab7ubCKsXnwuV2svy061g== + version "3.12.5" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.5.tgz#83241496087c640efe9dfc934832e71725aba008" + integrity sha512-SgpgScL4T7Hj/w/GexjnBHi3Ien9WS1Rpfg5y91WXMj9SY997ZCQU76mH4TpLwwfmMvoOU8wiaRkIf6NaH3mtg== uglify-to-browserify@~1.0.0: version "1.0.2" @@ -6583,11 +6583,6 @@ uniq@^1.0.1: resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= -universalify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d" - integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== - universalify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" @@ -6604,9 +6599,9 @@ upper-case@^1.0.3: integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= uri-js@^4.2.2: - version "4.4.0" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602" - integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g== + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" @@ -6711,9 +6706,9 @@ void-elements@^3.1.0: integrity sha1-YU9/v42AHwu18GYfWy9XhXUOTwk= vue-eslint-parser@^7.0.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.1.1.tgz#c43c1c715ff50778b9a7e9a4e16921185f3425d3" - integrity sha512-8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA== + version "7.4.1" + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.4.1.tgz#e4adcf7876a7379758d9056a72235af18a587f92" + integrity sha512-AFvhdxpFvliYq1xt/biNBslTHE/zbEvSnr1qfHA/KxRIpErmEDrQZlQnvEexednRHmLfDNOMuDYwZL5xkLzIXQ== dependencies: debug "^4.1.1" eslint-scope "^5.0.0" @@ -6852,9 +6847,9 @@ xregexp@2.0.0: integrity sha1-UqY+VsoLhKfzpfPWGHLxJq16WUM= xregexp@^4.2.4: - version "4.4.0" - resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.4.0.tgz#29660f5d6567cd2ef981dd4a50cb05d22c10719d" - integrity sha512-83y4aa8o8o4NZe+L+46wpa+F1cWR/wCGOWI3tzqUso0w3/KAvXy0+Di7Oe/cbNMixDR4Jmi7NEybWU6ps25Wkg== + version "4.4.1" + resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.4.1.tgz#c84a88fa79e9ab18ca543959712094492185fe65" + integrity sha512-2u9HwfadaJaY9zHtRRnH6BY6CQVNQKkYm3oLtC9gJXXzfsbACg5X5e4EZZGVAH+YIfa+QA9lsFQTTe3HURF3ag== dependencies: "@babel/runtime-corejs3" "^7.12.1" @@ -6877,9 +6872,9 @@ xtend@~2.0.4: object-keys "~0.2.0" y18n@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" - integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== + version "4.0.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4" + integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ== yallist@^2.1.2: version "2.1.2" diff --git a/settings/go.sum b/settings/go.sum index db0ef650d5..95ac489cd0 100644 --- a/settings/go.sum +++ b/settings/go.sum @@ -201,6 +201,8 @@ github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825 h1:U6pAVGTjesstz+EXd github.com/cs3org/reva v1.4.1-0.20210111080247-f2b63bfd6825/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= github.com/cs3org/reva v1.5.1 h1:GebunCjhHfA3lFLXjQT+3jOUjEXUubk9sr3otOIDGac= github.com/cs3org/reva v1.5.1/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69 h1:HNpnnhoHv/7fUSEuW37clWyPz2x9VqJHuhvWBAHjkEU= +github.com/cs3org/reva v1.5.2-0.20210125114636-0c10b333ee69/go.mod h1:abC1Lo0ZKwkKloomTPZWunV/lUJvewkty1pI41zn2Ic= 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= diff --git a/settings/pkg/assets/embed.go b/settings/pkg/assets/embed.go index d71720da5e..884e61ace1 100644 --- a/settings/pkg/assets/embed.go +++ b/settings/pkg/assets/embed.go @@ -1,5 +1,5 @@ -// Code generated by fileb0x at "2021-01-13 08:25:51.834643 +0100 CET m=+0.007912805" from config file "embed.yml" DO NOT EDIT. -// modification hash(4301e26e39e5f457aa301f4601da940b.8058aec596c5fb73022d09bb97af796e) +// Code generated by fileb0x at "2021-01-29 13:29:07.521283 +0100 CET m=+0.007433186" from config file "embed.yml" DO NOT EDIT. +// modification hash(86d42e310e0c87b432e3d77e89965516.8058aec596c5fb73022d09bb97af796e) package assets @@ -36,7 +36,7 @@ type HTTPFS struct { } // FileSettingsJs is "settings.js" -var FileSettingsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xe9\x7a\xdb\x38\xb6\x28\xfa\xfb\xee\xa7\x90\xb8\xb3\xd9\x40\x6b\x59\x91\x52\x5d\x55\xbb\xa9\x20\xea\xc4\x71\x52\xa9\x4a\xe2\x54\xec\xa4\x06\x45\xed\x43\x53\x90\xcc\x98\x02\x54\x20\xe8\x21\x22\xcf\xfb\xdc\xd7\xb8\x4f\x76\x3f\x4c\x9c\x44\x39\xa9\x1e\xf6\xee\x73\xbe\xdd\x5f\x75\x2c\x82\x00\x88\x61\x61\xcd\x58\x6b\x41\x97\x31\xa3\x08\x2d\x33\x16\xc9\x98\x33\x84\xb7\x5e\x96\xd2\x5e\x2a\x45\x1c\x49\x6f\x72\x15\x8a\x9e\x24\x5e\xc6\x4c\xc5\x85\xd7\x27\xf2\x76\x43\xf9\xb2\xb7\x4a\xf8\x79\x98\x9c\x5e\xc4\xe9\xb4\xfa\x19\x74\xd5\xbc\x8e\xd9\x82\x5f\x4f\xcd\x9f\xce\x1a\xa6\x03\xdb\x4f\x67\x8d\x94\x26\xcb\xa9\xfa\x27\xd8\x16\x13\x37\xd8\x1e\x45\x12\x28\xde\x0a\x2a\x33\xc1\x7a\x12\x51\xb2\xa5\x37\x1b\x2e\x64\x1a\x6c\x8b\x02\xe8\xd0\x3e\xe1\xea\x67\xa1\x66\xc4\x48\x7d\xca\x12\x6f\x55\x21\x25\xbb\x25\xc7\xe7\x1f\x69\x24\x87\x1b\xc1\x25\x57\x23\x01\x46\xe8\xf0\x22\x4c\x8f\xaf\xd9\x1b\xc1\x37\x54\xc8\x5b\x10\xc4\x73\x0d\x3d\xe2\xc6\x7b\x72\xbb\x3e\xe7\xc9\xd4\xfc\x09\xb6\x05\x70\x22\x86\xb1\xa4\x22\x94\x5c\xe4\xb9\xf7\x97\xbf\xb8\x07\x0f\x62\x22\x86\x61\x7a\xcb\xa2\x17\xf5\xf7\x8d\x12\x0f\x42\x22\x86\x92\x9f\x48\x11\xb3\xd5\x69\xb8\xd2\x55\x6a\xcf\x5e\xb5\x28\x99\x5a\x14\x60\xe5\xb2\xd8\x39\x98\x25\x75\xa3\xd6\x75\xb6\x57\x61\x92\xd1\x80\x01\x65\xd9\x9a\x8a\xf0\x3c\xa1\x41\x7f\x04\x11\x67\xcb\x78\x95\x95\xcf\xd7\x22\x96\xf6\x77\x81\x41\xce\xe8\xbc\x90\xe2\x76\x9b\xa1\x6d\x01\x9e\x87\x8b\x28\x94\xd1\x85\x5a\xb3\xac\xb6\x82\x8d\x21\xa8\x36\x84\x15\x45\x39\xc6\xc8\x54\x00\x61\x16\x9a\x13\xea\xfb\xb4\x5a\xe6\x5e\xcc\x52\x19\xb2\x48\xad\xe4\x72\x4a\x83\x25\xc4\x6e\x2b\x22\x41\x43\x49\x11\xaf\x2a\x63\x08\x09\xa3\xd7\xbd\x8f\x48\xe4\xf9\x6c\x8e\x27\xf6\xa3\xf1\xf0\x2c\x66\x57\xfc\x92\xee\x8c\x4a\x7d\x52\x10\x2f\xcd\xd2\x0d\x65\x0b\xba\x38\x91\xa1\x90\x9e\x6b\x57\xd6\xe6\x10\xe3\x6d\xbc\x44\x1e\xbd\xa1\x51\x26\x63\xb6\xf2\x08\x21\x02\xcb\x0b\xc1\xaf\x7b\xea\x93\x47\x42\x70\x81\xbc\xe7\x94\x99\x6d\xea\xc5\x69\x2f\x4c\x04\x0d\x17\xb7\x3d\x91\x31\xa6\x9a\xe0\x89\xea\x22\xe2\xeb\x4d\x42\x25\x5d\x98\x2e\x74\xb7\xba\x1f\xf5\xcc\x6d\x97\xb1\x1b\xc2\x11\xc2\xc5\x92\x0b\xc4\x86\x6b\x2a\x2f\xf8\x82\x70\x60\xc3\x50\xac\x48\x3c\x99\x98\xe1\x87\x84\x0d\x17\x34\xa1\xab\x50\x52\xf5\x81\xd0\x14\x67\xe4\x0c\x85\xc0\xf4\x37\x33\xfd\x95\x8c\x10\x92\xe0\x88\x33\x19\xb3\x8c\xba\x0f\x64\x45\xa1\x46\xc0\xe8\x8d\x54\x03\x70\xdf\xc1\x6c\x98\x52\x26\x09\x1b\x9e\xd9\xbf\xa1\x58\x4d\x68\x92\xd2\x5e\x63\xc0\x65\x7d\x3d\x8f\xd6\x3a\xd6\xd6\x48\x90\xda\xc4\xcd\x14\x26\x6c\xb8\x88\xd3\x8d\x02\x99\xa3\x9b\x88\x6e\xf4\x4a\xeb\x37\xb8\x50\x1f\xf2\xcc\x08\xeb\x5f\xf1\x7d\x36\x0c\xcf\x45\xb6\x91\xc8\xbd\x35\x7d\xe1\x89\x20\xb5\xcd\xd1\xc8\x2a\x22\xa9\xdd\x66\xbd\xee\x8c\x8b\x75\x98\xa8\xde\xa2\xa1\x06\x16\x35\x62\xa1\x16\x8f\x33\x3a\xad\x8d\x2e\xa8\xa6\xf1\x4b\x4c\x93\x85\x07\x91\x5e\xf1\x8e\xd5\xb3\xc7\x46\xbf\x07\xd5\x4f\x60\xba\x2b\x8a\x6a\x85\xcc\xd7\x7c\x1f\xb5\x97\xc0\x6e\xa8\xad\x69\xb7\x35\x32\xf3\x2f\x0a\x24\x81\x41\x88\x21\xae\x8e\x8a\x9b\xce\x56\x9d\x39\x3b\x00\xd5\x77\xe0\xe6\x06\xa1\x58\x05\x72\x18\x85\x49\x82\x54\xc5\xa2\x3a\x90\x8d\xea\xf6\x8b\xba\x76\x51\x14\x72\x78\x2d\xc2\x0d\x89\xf4\xaa\x25\xa4\x8e\x56\x97\x08\x6f\xab\x01\x6c\x1a\x4f\x0b\xf5\xa4\x9a\x5c\xa8\x26\x17\x33\x3e\x27\x35\xda\xe1\xce\xfb\x45\x9c\x16\xba\xe3\x2b\x77\x6e\x57\x54\xbe\x71\x27\xf6\x78\x09\xb7\xe4\xca\xf7\xaf\xd0\x15\xba\x41\xb3\x39\xc6\x78\x72\xeb\xfb\xb7\x7d\xa2\xf0\x00\x33\x53\xb9\x05\x8e\x7d\x1f\x5d\x90\x5b\xac\x7b\x5a\x91\x45\x75\xe6\xc9\xb2\xf6\xbb\x89\x19\x2e\x70\x35\x91\xb5\x5a\x84\x99\x01\x73\x70\x0b\xe0\x60\x68\x3e\x5c\x72\x71\x14\x46\x17\x35\x52\x40\xf1\xd6\xa0\xcf\x06\x75\xa8\xcd\xca\xe1\x14\x44\x41\xe2\x02\xeb\xff\xca\xcf\x9d\x1b\x72\xa4\xd1\xcb\xa4\x5e\x9b\x34\x71\x4a\xd9\x20\xac\x96\x4c\xa1\x93\x3a\x51\x12\x10\xe2\x6d\xbf\xac\x29\x54\x4b\x08\x21\x33\xdd\x6b\x28\x9f\xf1\x39\x48\x88\x0d\xa0\x9b\xc9\xf5\x2b\x38\x37\xdb\x6a\x80\x74\x49\x92\xa1\x06\xda\x12\xc7\xf9\xbe\xc7\xf5\xb2\x55\x24\x6b\x59\x2e\xfd\x12\xbc\xb3\xb3\xf0\x3a\x8c\xa5\x87\xa7\x74\x28\x68\xca\x93\x2b\x8a\x96\x43\x5b\x8a\x87\xf2\x82\xb2\x26\x05\x15\x16\x9b\x80\xd4\xa3\x2c\x30\xb4\x5f\xdb\xe5\x77\xef\x71\x50\xeb\xb9\xab\x47\x3b\x64\x22\x21\x44\xc9\x6e\x87\x66\x22\x1d\xfd\x16\x19\xb2\xe7\x49\xaf\x99\x5a\x48\x55\xea\x1a\x10\x31\x15\xe6\x6b\x21\x84\x38\x08\x11\xae\xd1\xa5\xb3\x6a\x07\x19\x91\x25\xc1\x9e\x51\x7b\x6e\xe7\x6a\xad\xaf\x78\xbc\xe8\x8d\x14\x82\xd2\xd8\x84\x96\x88\x98\xb0\x2c\x49\xa0\x42\x02\xb4\x8e\x26\xab\xde\x86\x66\x28\xbe\x8f\x68\x89\x0e\x1c\x5e\xa3\x1a\x1f\x98\x2f\x80\x19\x4d\x57\x87\xd8\xce\x26\x99\xd0\x36\x46\x31\x3d\x28\x70\x3a\xbd\xdd\x50\x4b\xa1\x4e\x2f\x68\xcf\x7d\xbe\xb7\xe0\x34\xed\x31\x2e\x7b\x1b\xc1\xaf\xe2\x05\xed\x85\xbd\x3f\xe8\xc6\x7f\xe8\x99\xbe\xbc\x72\xb5\x92\xc2\xd0\xca\x14\x31\xa8\x26\x60\xbe\x51\x87\x3b\x85\xf3\x0d\xdc\xd9\x86\x7b\x86\x25\x34\x38\xb6\x57\x2c\x99\x18\x26\x40\xbf\x75\x20\xca\xa7\xdc\x20\x69\x44\x67\x52\x41\x4a\x96\xc8\xd7\xe1\x9a\xce\x09\x37\x80\x01\x74\xa8\x20\x8e\x48\xfd\xe7\x25\x8f\xca\x93\xdd\xaf\x56\xaa\xb1\xc8\x06\x40\xeb\x4b\x8c\x77\xc7\x82\x03\x1e\xa0\x2f\x5b\xd5\x72\x45\xcd\xe8\x14\xf5\x57\xcb\x1a\xb2\x9e\x3d\x5b\x5d\xdd\x57\xc0\x76\x5d\xf1\x99\x0a\xb9\xbf\xe4\x51\x20\x67\xa3\x79\x31\x19\xf7\x62\xd6\x93\x7a\xe8\x1a\x95\xbf\xe4\x11\x91\xb3\xf1\x1c\xc3\x83\xea\xcd\x32\x66\x61\x92\xdc\x9a\x77\x0f\xe6\x6a\x84\x4b\x49\x85\x79\xfe\x6a\x8e\x41\x23\x20\x29\x6e\x8f\x98\x14\x31\x4d\x87\x9b\x2c\xbd\x40\xb4\xf6\xfd\xe3\xea\xfb\x72\x68\x89\x54\xcc\x59\x9e\x6f\x8b\x09\xd5\xbb\x49\x4a\x1a\xa3\x66\x21\x69\x4f\x2f\x03\xd4\x6b\x13\x5a\x75\xf8\x51\x75\xd8\xfa\x2c\x99\xb9\xb9\x79\x82\x73\xe9\x15\x73\x90\x25\xe2\xbd\xd6\x83\xb4\x43\x15\x34\xa5\x12\xf5\x47\xb5\x11\xde\xa8\x0e\xd5\xd9\x29\xc7\x39\xe3\xfa\x08\xd6\xe0\x4c\x63\x2c\x69\x80\x71\x97\x0f\x37\xc0\xe1\x6a\x4b\x55\xab\x1f\xa7\xaf\xc3\xd7\x48\x0e\x13\xca\x56\xf2\x02\x3b\x7e\xf0\x60\x0c\x31\xa9\x89\x16\x78\xab\x58\xb0\xc9\x60\x20\x1e\xba\xba\x13\x1c\x2f\x91\x45\x92\x12\x04\xae\x46\x61\x51\xd5\x4c\xa8\x8d\x50\x60\x4b\xfa\x63\x28\xd1\xad\x7b\x6f\xcf\xb5\xab\x31\x02\x5a\x54\xdc\xaa\x06\xe6\xb8\xb0\x47\x6f\xab\x1e\x83\xa3\x1a\x6e\x3a\x2a\x89\x85\x65\x40\x6c\x6f\x9a\x03\xe9\x8f\x5c\xc3\xde\xa6\x46\x1a\x57\xc3\x88\xb3\x54\x8a\x2c\x92\x5c\x90\x05\x2c\x1a\xcf\x1b\xd8\x68\x66\x2c\x09\x6f\xd5\xc9\x22\x19\x5a\x40\x08\x15\x3b\xfb\xcc\x2d\x27\x56\x87\x3f\xdd\x29\xef\x10\x98\xba\xb6\xc0\xf7\x65\xfd\xb3\x76\xc6\xfd\xbe\x62\x8f\x28\x21\x64\x93\xe7\x1d\xdf\x24\x84\x28\xd4\x5a\x0d\x2f\xcf\xe9\x90\x85\x6b\x8a\x71\x01\x72\xb8\x0e\xc5\x25\xe9\x20\x08\x96\x19\x48\x1b\xec\xc6\xb4\xb3\x14\x49\x58\xe0\x00\xc9\xe1\xd9\x99\x5e\xb1\xb3\x33\xb2\x00\x45\xfe\xbb\xd7\x40\x2d\xc2\x3e\xa6\x63\x85\x41\xaa\x51\x85\x9a\xa7\xda\x1d\xd6\xd6\x52\x4e\xc5\x79\xc1\x1a\x9d\xd7\xa5\x97\xda\xc3\x2c\xde\xcb\x4d\x81\x1c\x3e\xae\x4b\x84\xe4\x5c\x7d\x4e\x95\x54\x2d\xb4\x44\x05\x9a\xc5\x28\x69\x54\xec\xfb\x28\x26\x6f\x04\x5f\xc7\x29\x35\x9c\x94\x11\x97\xce\x51\xe4\x1a\x60\xc5\x44\xb8\x8f\x75\x6d\x34\x62\x78\x1a\x06\xa1\x06\x51\xd4\x49\xfd\x5d\x63\x8d\xb1\xa5\x01\xf7\xb2\x81\x22\xbf\xb0\x56\x8b\x94\xa1\x55\x63\x75\x3d\x0c\xab\x3b\x58\x48\x58\x95\x32\xef\x6e\x15\x6f\x66\xb0\x6c\xaf\xec\x6d\xee\xa9\x65\xba\xa4\xb7\x69\x07\x64\xce\xe6\x13\x75\x9e\x35\x69\xd7\x58\x14\x53\x83\x12\x19\xae\x8e\xa9\xa0\x57\x54\xa4\x14\x61\x28\x8f\x1d\x73\x88\x80\x96\x48\xc0\x22\x0c\x3a\xdc\xf0\x0d\xd2\x98\x47\x98\x1e\x1d\x2f\x67\x8f\xbb\x00\x56\xe2\x02\x56\x94\x2f\xdd\xe1\x67\x85\x1a\xae\xae\x9a\x92\x1b\xf8\x58\x83\xae\x6d\xed\xbc\x04\x1f\x41\xa3\xc6\xa0\x3e\x27\x85\x14\x15\xd2\xdc\x08\x7a\x45\x46\x06\x81\x6a\x04\x62\x7f\x6b\xf1\xcd\xb0\xa0\xfa\xa7\xc5\x15\xba\xc4\x0d\xc9\x3c\x34\xc8\x93\x2e\x6a\x92\x4b\x5d\x54\x63\x4a\xda\x64\xc5\xe1\xf2\x63\x0c\x7d\x89\xdd\x12\x53\xbd\x20\x0a\xb9\x7b\xd2\x70\x2e\xd1\x45\x28\x1e\x4b\x34\xc2\x25\x9b\xa9\x5e\x03\xc5\xbe\x6f\x31\xf2\x80\x0e\xd3\x24\x8e\x28\x1a\x63\xc5\xf9\xab\xd7\x33\x3a\x77\x94\xba\x80\x54\xf2\x4d\x50\x03\x83\xda\x64\x46\x56\x51\xd5\x1a\xdc\x6c\x34\xaf\x91\xaa\x26\xbf\x22\x0d\xbf\x62\x04\x55\x59\xe7\x3c\x0c\x35\xba\x0a\x93\x02\x76\x44\xd5\xce\x4d\x50\x63\x70\x1d\x4d\x2c\xa1\xba\x88\xd3\x49\x8d\x7b\xd7\xaa\x0e\xdb\x7f\x68\x69\xab\x13\xc8\xf4\xea\x4a\xc7\xce\x30\x10\x9f\x65\x5a\xfa\x7d\x51\xb8\x95\xe6\xed\x49\x5b\x30\x3d\x18\x4f\xf8\x23\x32\x9a\x1c\x1c\x70\x03\xb0\xf1\xce\xea\xf0\x39\x84\x24\x6e\xaf\x90\x26\xd3\x0a\x73\x0c\x0d\xe1\xc6\x15\xab\x4d\xd9\xc2\xe8\x33\xdc\xbb\x87\xa4\x84\x42\xa7\x80\xb0\x9b\x1b\x83\xe7\x78\x17\x0f\x43\x54\x2b\xae\x18\x17\xd3\x57\xe6\xfb\x51\x13\xa0\x1f\xc6\x25\xdf\x53\x7d\xbc\x2a\x83\xfe\x48\x37\xac\xd7\xaf\x3a\xad\xb7\xa8\x95\x16\x4e\x8b\x91\xfd\xee\x6f\xe9\xa6\xaa\x51\x3f\xda\xd5\xfd\x48\x71\xdb\x4b\x65\x28\xe9\x9a\x32\xd9\xbb\x8e\xe5\x05\xcf\x64\x4f\x37\xef\x71\xd1\xb3\x23\xf0\xfe\x86\x01\x17\x45\x01\x46\xed\x11\xd4\x15\x58\x06\x1b\x19\x0c\xb4\x77\xe7\x85\xd9\xf9\x52\xbd\xd6\xde\x79\xa1\xb9\x28\xbe\xbb\x8b\xe5\xe1\xe4\xcd\x8d\xf2\xfd\x6a\xf0\xbc\x3e\x4c\x0b\x5a\x7c\x72\x2e\x68\x78\x59\x14\x8a\xde\x78\xfa\xb7\x3e\x64\x79\xee\x39\xed\x89\x7e\xc6\xbe\x5f\xc1\x0e\xf5\x7d\xfa\x90\xd4\x67\xad\x89\x95\xc2\x44\x8e\x52\xc5\xd3\x3a\x7c\x06\xdb\x92\x5f\xb2\x87\x48\xda\xe3\x43\x21\x9e\xa2\x7d\xd8\xcb\x70\x56\xb5\xcf\x28\x2e\x5f\xbf\x71\xaa\x19\x14\xe2\x02\xdc\x43\x6b\xb9\xbf\x0c\x6b\xd4\xe6\xac\xab\xb4\x27\xae\x0b\xa7\xd5\x70\x74\xdb\xa0\xa6\xed\xb2\x35\x50\x89\x7d\x48\x89\x79\xa5\xe1\xba\xeb\xb3\x73\xf2\x62\xd5\xa1\x39\x9c\x41\x4d\xe3\x25\xad\x0e\x8a\x5a\x64\x6a\xea\x51\x0c\x49\x01\xcb\x98\xc5\xe9\x45\x03\x9b\x95\xa8\x7b\x3f\x58\x51\x03\x56\x95\x84\xdc\x02\x2b\xaa\xc1\x8a\xd5\x65\x13\xb5\xe7\x75\xbc\x5a\xae\x38\xab\xed\x2b\xb0\x52\x78\xc1\x70\x8c\x98\x1a\x62\x01\xfa\x10\xfd\xb3\x86\x68\x60\x50\x0f\xcf\x92\x73\xb6\x97\x54\x88\x9a\x4a\xc5\x49\xa9\x6a\x94\x8e\xa4\xf3\xa2\xd8\xc1\x0b\x71\xa2\xe8\x6a\x62\x31\x41\x28\x25\x5d\x6f\xa4\x87\x0b\x70\x04\x57\x6b\x19\x83\x7d\x0a\xf3\x06\x69\xde\x3a\x41\x33\x50\x02\x11\x54\xb2\x70\x40\xc1\xca\xbe\x01\x2b\xa0\x54\xe7\xd6\x20\xc5\x6d\x7d\x9d\x7a\xa8\xb5\x95\x05\x92\xa5\x75\x64\x62\x54\x8b\x2b\xc7\x47\xbd\xcd\x98\x8c\xd7\x94\xd0\x4a\x93\x58\x72\x82\x9e\xd0\x1a\xb4\x76\xdd\x1e\xe9\x09\x0f\x2b\xf1\xb2\xc0\x18\x44\x17\x67\xae\xe5\x80\x57\xa1\xbc\x20\x44\xfd\xeb\xfb\x52\x5b\x45\xd0\x8e\x22\xaa\x32\x27\xf9\x7e\xf5\x1b\xe7\x79\x47\x5d\x63\x54\xf2\x7d\xf3\xb7\xbb\x4e\x4a\x93\xa5\xef\xab\x7f\xbb\xdf\xab\x81\xe1\x3c\xdf\xc3\x83\x22\x9c\xe7\xb5\xd9\x57\x6f\x3c\x8c\x70\x4d\x62\xd4\xb2\x6f\xa9\xa2\xed\xf7\x15\xdf\xdb\x52\xc4\x2a\x21\x0d\x42\xd2\x8f\x1b\xf6\x36\xdb\xe5\xb7\x7d\xd2\x6d\xa9\xd9\x16\x30\x86\xed\xaa\xce\x00\x56\x8d\x8a\x02\xcf\xc6\x73\xb5\xe6\x19\xd9\x16\x8a\x83\xd4\x8d\x5e\xa4\x47\xa5\x49\x07\xa2\x9a\x0e\xb6\x66\xb8\x7a\x4a\xd3\x48\xc4\x1b\xc9\x05\xa4\x64\xbb\x0c\x22\xdf\xef\x67\x06\xf9\x6f\xc7\xc1\x83\x02\xc6\x78\xba\xcb\x46\x47\x86\x6d\x93\xb8\x2e\xc6\xd1\x61\x65\x41\x2a\x82\xac\x80\x84\x34\x71\xa8\x95\x82\xea\x76\x26\x34\xf6\x25\x6e\xd9\x9a\xd0\x03\x55\x56\xd9\x9b\xd0\x9f\xd4\xb3\x11\x26\x68\x51\xc0\x52\xcd\xd1\x49\x04\xd0\x25\x68\xf5\x96\x4e\x21\x60\x79\xc9\xff\x84\x83\xb1\x3a\x75\xc4\xf3\x86\xe9\x26\x89\x25\x5c\x90\xae\xf5\xef\x9b\x35\x42\xde\x27\x0f\x77\x2e\x23\x1a\x29\x39\x66\xba\xfb\x49\xcf\x0c\xc7\x23\x64\x83\x24\x9e\x2e\x9c\x7a\xc0\xf3\x70\x60\x3b\x95\xb8\xb0\x3f\xe1\x8a\xb4\x38\x48\x45\xed\x14\x16\x32\x18\xa4\xa6\x5d\x3a\x0c\xd9\x1f\x14\x27\x91\x24\x56\x2d\xd7\xe3\xac\xe7\x0d\x64\x25\xaa\x15\x70\xdb\xb5\x04\x17\xe8\x0a\x49\x25\x72\xad\x3a\xde\xee\x42\xff\x54\x8d\xa0\x4f\x88\x0c\xba\x84\xf7\x02\xd6\x64\x87\x1e\xf6\x57\xea\x03\xa5\x52\x45\x63\x5a\x10\x5a\x31\xe3\xfb\xbb\xbd\x20\xa6\x68\x91\xdd\x36\xc5\xef\xaf\xb4\x09\xc6\x6e\x54\xd9\x91\xe8\xd6\xe1\xe8\xd6\x1a\x06\x8e\x97\x9f\x69\xdc\xff\xfb\x3e\xbf\x6f\x0b\x38\xbb\xa2\x42\x5a\xa5\x5e\x4f\xf2\xde\x46\xc4\xeb\x58\xc6\x57\xb4\xa7\xc7\xa5\xd0\xfa\xb9\x02\xcd\x96\x65\xf8\xac\xf3\x14\xf4\xce\x1d\x84\x50\x5c\xc0\x35\xe1\xc3\x05\x8f\x32\xc5\x3e\xc2\x31\x59\xa1\x6b\xec\xfb\x2b\x74\x6d\x35\x0b\x47\x89\x66\x2c\x31\x7c\xec\x54\x76\x4c\x5b\xf5\x90\xc4\xda\xf2\x7d\x43\xfa\xa1\x92\xab\x7e\x17\xa2\xf9\x88\xbc\x45\x7c\xe5\x61\xf0\x42\xef\x2e\x84\x33\x0c\x15\xbe\x39\xfa\x2c\x56\x39\x51\x58\x25\x9c\x1e\xed\xf2\x53\x92\xdc\x2a\x42\x46\xc9\x1a\x51\xc5\x61\xc3\x0d\xae\x50\x67\xef\xc8\x2c\x4d\x89\x3c\x8b\x78\x89\x8c\x2a\xbc\x54\x7b\xa3\x7e\x3a\x5c\x56\xcb\xa8\x8d\xd2\xb8\x28\xe0\xb2\x7d\xba\x0c\xa4\xb6\x37\xd6\x80\x02\x92\x78\xe0\x75\x28\x6d\x6b\xe7\xeb\xb0\x7b\xa9\xe0\xb1\x99\xda\xe1\x0e\xfd\x8e\x97\xe8\xb2\x39\xb5\x4b\xc5\xce\x34\xe6\x77\x68\x2b\x37\x67\xe8\xad\xa8\xf4\x62\xd6\x63\x79\xee\xa5\xf6\xe7\x2e\x52\x78\x1c\x45\x34\x4d\xb9\x30\x83\x4e\xb3\x8d\xa2\xe0\x74\x51\x0e\xda\x33\x00\xa9\x1a\x2b\xd2\xaf\xed\xee\xe6\xf0\x60\x90\x45\x01\xef\x49\x38\xdd\xc3\x73\x3c\x1e\x2e\x75\x49\x82\xc6\xc0\x30\x2e\xf6\xf2\x26\xba\x53\x90\x05\x9c\xb6\xe0\x5b\xcd\xf1\x3d\xe2\x50\xdb\x3e\x86\xb7\x7c\x26\xe7\x84\x3a\x5e\x89\x16\xf0\x86\xf0\x99\x77\x76\x16\x71\x41\x0f\x3e\xa6\x67\xe9\x45\x28\xe8\xe2\xec\xcc\x9b\xe7\xf9\x29\xea\x7a\x01\xdb\x02\xc3\x5b\xe2\xa8\x70\x79\x96\x27\xd5\x59\x2f\x1d\x45\xde\x0c\x63\x96\x6e\x68\x24\x4f\x78\x26\x22\xc5\xfa\xb6\x4a\xba\xce\xd1\x5b\x87\x0c\x0a\x23\x77\xbc\x80\x97\xf0\x1a\xee\x91\x56\x53\x78\x45\xf8\xf0\x27\x1a\x5e\xbe\x0a\x37\xf0\xb4\x4b\xd7\xf9\xca\xf7\xef\xb3\x50\x63\x86\x88\x2f\xe8\xfd\xa1\xa4\xa9\x44\xf7\xd0\x2b\x8c\xe1\x59\xdb\xe9\xa4\xe2\xc0\xba\xf1\xc4\x9b\x99\x9c\xe7\x39\x52\x7f\x2c\xef\xd6\x27\x84\x4e\x69\xb0\x2d\x70\x81\x91\x77\x45\x45\x1a\x73\x96\x7a\x30\x9b\x63\xa3\xcb\xda\xda\xb2\xc0\xfb\x6a\xf8\x9f\xc3\xb1\x07\x6b\xbe\xa0\x81\x67\xb8\x28\x0f\x22\xbe\xb9\x15\xf1\xea\x42\x06\xde\xff\xf7\xff\xf6\x1e\x8c\x1e\x8c\x7a\x4f\x29\x8b\xd3\xde\x9b\x2c\xbd\xb8\x0c\x05\xbd\xea\xa1\x4f\x09\x8f\x05\x8f\x2e\x87\x22\xc3\x9e\xfa\x10\x86\x4f\x64\x04\xef\x34\xd3\x36\x14\x21\x5b\xf0\x35\xc2\xf0\xa4\x8b\xb6\x18\x77\x17\xe4\x0d\xec\x01\x2b\xb5\x90\x72\xea\x79\x81\x3a\x6e\xf8\xcc\x1b\xa0\xc1\xe0\xd3\xe0\x1d\x2e\xb7\x11\x7d\xf5\x0d\x2e\xe0\x37\xf2\x0c\x79\x97\xf4\x36\xf5\x30\x3c\xef\xda\xa4\xdf\xcc\x72\xa8\x3f\xe4\x89\x21\x70\xdf\x91\x6d\x01\x3f\x54\x9b\xa2\x68\xc0\x53\xc3\xa9\xfc\x44\xde\x0c\xb5\x5c\xae\x56\xd0\xfc\xd2\x6a\xcf\x1f\x30\xfc\x48\x7e\x52\x48\x0b\x7e\x26\x3f\x29\x8c\x0d\xdf\x93\x9f\x86\x29\x95\x93\x17\xdd\xdb\x40\x87\xcb\x30\x0a\x17\x4a\xd6\xfc\xde\xc0\xc9\x4f\x1a\xc2\x81\x16\xf0\xb2\x6b\xa0\x3f\x96\xb5\x70\x9e\x2b\x6c\xfc\xba\xab\xd6\xcf\x55\xad\xc2\x68\x18\xd4\xb0\x7f\x21\xcf\x91\xa7\x47\xeb\xe1\xc9\x77\xb3\x5f\xe6\xa4\x3f\x82\xcf\x0f\xec\x3d\x92\xf0\xcb\x5d\x63\x52\xf8\xf3\x17\x3c\x95\xb3\x5f\xe6\xc1\xde\x21\x99\x4a\x85\xb6\xf9\xfd\x4a\xb6\x29\x95\xc1\x0b\x50\x74\xe0\x25\x5c\x84\x69\xf0\x1a\x28\x5b\x72\x11\xd1\xa0\xa3\xed\x6b\xc5\xfb\xbc\x54\xf4\xe7\x05\x92\xea\xc0\x16\xaa\xa5\xa4\xe2\x19\x17\x5d\xf5\xeb\x26\x77\xcd\x3f\x4c\x0c\xb6\xa6\x38\xcf\x11\x23\x2f\x11\xc5\x58\x8b\x5d\xfd\x4e\xe6\xe8\x05\x53\xc2\x5a\x28\xe3\xf3\x84\xf6\x04\x8d\x68\x7c\x45\x05\x28\xf6\x68\xe0\xf5\x04\xfd\x2d\x8b\x45\x0d\x2b\xf6\x58\xa1\x64\x1e\xd9\xed\xf6\xf5\xab\x86\x06\x46\x7e\x1d\xda\xf9\x81\x20\x16\x32\x2d\xcf\x60\x38\x47\xe4\x38\x3d\x3c\xd9\x73\x74\x21\x06\xe7\x88\x03\x11\xe9\x6b\x1a\xdc\x0f\x87\x19\x4b\xc3\x25\x85\xb4\x2a\xa9\x18\x61\x48\xaa\x52\xc6\x4f\x43\xb1\xa2\xf2\x39\x95\x93\x0e\xe4\xa2\x55\x2b\xa9\x19\x42\x89\xef\x68\x9e\x9f\xa1\x18\x3c\x16\xae\xa9\x87\xf3\xfc\x7d\xf9\xa0\xc0\x01\x65\x84\xa1\x18\xe3\x61\xaa\x11\x58\x9e\xa3\xcc\xfe\x24\x62\xf8\x91\xc7\xac\xec\xb0\xfc\x8a\x42\x30\x9e\x87\x31\x06\xd9\x27\x84\x4f\x51\x34\xed\x27\xbe\xaf\xb0\xbe\xef\xa3\x94\xf4\x47\x38\xb0\xd6\x40\x55\x06\xe9\x54\x13\x84\x38\x78\x6f\x56\x00\xe3\xa0\x2c\x3a\x45\xaa\xa0\xc0\xa8\x44\xdd\x95\x27\x9d\xe7\x8e\xbf\x07\xbb\x4c\x4a\x17\x27\xaa\xe5\x41\xaa\xc5\x8f\x6a\x3e\xf7\xcc\xb3\xf1\xc4\x00\x2a\x09\x07\x26\xbb\x50\x53\x47\x87\x53\x69\x4d\x68\x05\x08\xd9\x7d\xc4\x42\xb1\xd2\x9c\x99\x53\x30\x3c\x7c\x30\x65\x12\x51\x39\x93\x73\x9c\xe7\x4c\x22\x45\xdc\x70\xa0\x0b\x7c\x5f\xff\x99\xd1\x79\x9e\x73\xfd\xcc\xcd\x63\x01\x5c\x1a\xec\x19\xd1\x38\x81\xd8\x3e\x2c\x13\xce\x05\x84\x5d\xa3\xed\x59\x13\x25\x19\x48\x3c\x1d\x05\x48\x3e\x1a\x4d\x63\x19\x70\x89\x15\x8d\x82\xcc\xf6\xb0\x8e\x19\x44\x9d\xed\x55\x83\x4c\xa2\x50\x31\x84\xf0\xe7\xd1\xe8\xdb\xf1\x9f\xff\xfc\xe0\xeb\x3f\x7d\xfb\xa7\xd1\x9f\xff\x3c\xc6\xc1\xa8\x80\xd4\xf5\x11\xde\x40\x52\xeb\x6f\xd9\x5e\x09\xa3\x46\xd1\x3d\x95\xa7\xe9\xe1\x68\x9a\x4a\xc4\x06\x14\x46\x38\x48\x24\x62\x9a\x95\xdd\x74\x0e\xa5\x69\x9d\xb2\x4a\x14\x88\xc9\x2d\xd2\x9e\x7b\x91\x44\xb1\xb3\xc4\x42\x46\x96\x52\x7b\xbe\x68\x6d\xa9\xef\xb3\x3e\x61\xd6\xfa\x12\x3e\xca\xb4\xf5\x15\x71\x12\xcf\xb2\xc1\x60\x8e\xfb\x84\xe3\x52\xae\xd6\xda\xdd\xb2\x62\x36\x18\xe8\xba\x32\xcf\xb3\x5e\xcc\x7a\x31\xf6\xfd\x78\x96\xcd\xb5\xcf\x86\x5b\xa2\x3c\xcf\xf2\x7c\xe4\xc4\x58\xe9\xfb\x07\xe3\xa2\x80\x85\x24\xdb\x98\x45\x49\xb6\xa0\x69\xb0\xd1\xf6\x68\x88\xd9\x82\xde\x1c\x2f\xf5\xa3\x12\x26\x2f\x24\x59\xc8\xa1\x2d\x85\xab\xce\x15\x03\x61\x78\x5c\x4e\x46\x10\x3b\xe3\x93\x36\x3c\x09\xdc\x3f\x43\xdf\x01\xc3\xbe\x7f\x86\x84\xfe\x1b\x97\x96\xa8\x86\xa5\xe9\x11\x9f\x60\x5d\x85\xd0\x19\x57\x53\xf6\x7d\xf4\xbf\x2f\x24\x8a\x81\xe1\x3c\x2f\x1b\x55\x1e\x8f\x05\xdc\x4a\x32\xf3\x6a\xc6\x23\x0f\xbc\xa6\x50\xe2\x81\x17\xa7\x35\x23\xa8\x07\x5e\x97\xb4\xeb\xa9\xf3\xf9\x92\x47\x61\x42\xdd\x29\xad\x1d\x58\xcf\x8a\x63\xde\x1c\x56\x92\xdc\x6a\xf3\x6e\x14\x4a\xe4\x99\x71\x9b\x3e\xcd\x17\x3c\x0c\x6b\xa9\xb8\xe5\x4e\x69\xe1\x75\xb8\xa6\x69\x4d\xf5\x52\x81\xcd\x95\x44\x12\x56\x8a\x36\xc2\xf9\xfe\xf6\x86\xe1\x48\x0b\x38\x93\x44\x48\xe4\xbd\xa5\xcb\x44\xf1\xf0\xe0\xf1\x6b\xf6\x83\x66\x26\x9a\xbd\x1b\x8c\xbf\x96\x43\xc3\xa7\x63\x60\xe4\x5c\x0e\x97\x25\x64\x4f\xa9\x9b\x8b\xaa\x8e\x03\x5a\xc0\x75\x7b\x7f\x4b\x33\x22\x39\x93\x0a\x88\x05\x79\x3c\x5c\x02\x27\x27\xc3\x25\xc4\x64\x34\x89\x1f\x32\x67\x2a\x8c\x07\x83\xd2\x5f\x73\x16\xcf\x27\x8a\xc2\x86\x5a\x0b\x25\x21\x04\x8e\x28\x84\x58\x4d\xf1\x58\x92\xfb\xff\x9e\x7f\xa8\xd0\xe3\x87\xe1\x7d\xf8\xd8\x7d\x14\x8f\xe4\xec\x46\x9d\xc6\x79\x39\x68\x42\x2e\x65\x9e\xb3\x3e\x39\x91\x8a\x44\xec\xa2\x3a\x3a\x8d\x11\xc5\x41\xbf\xaf\x8e\xe9\x8d\x24\x1f\xe5\xd0\xa8\x89\xe3\x4f\x9d\xfc\x70\x29\x1f\x0d\x05\xdd\x24\x61\x44\xd1\xb1\x04\x6f\xe8\x29\x9e\xed\x25\xbf\xa6\xe2\x30\x4c\x29\xc2\x05\x1c\xe9\xbe\x16\xa1\x0c\x15\x27\x76\xa2\x9f\x5e\x3f\x3e\x7d\xf1\xfe\x88\x78\xaf\x3d\xb8\xd4\x05\x6f\x8e\x5f\xfe\xf2\xec\xc5\xcb\x97\xc4\x7b\xe3\xc1\xa1\x2a\x82\xc7\x52\xaf\xd6\xfb\x3d\x47\xc7\xb8\xba\x41\xa4\xe4\x76\x4d\x11\x21\x25\x72\x68\xb8\x58\x48\x88\xd4\xfc\x9c\xd6\xe3\x92\x74\xca\x83\x64\xca\x67\x91\x96\x1e\x22\xc5\x79\x04\xc8\x3c\x6e\x0b\x5c\xb3\xb3\xab\x5d\xd3\x66\x5a\x23\x82\x86\x84\xce\xc4\x1c\x62\x22\xeb\x64\x77\x8a\x32\xf2\x58\x6a\x6b\x1d\xf6\xfd\xcc\xda\xb1\x99\xaa\xd9\x3f\x94\x28\x9d\x8a\x20\x1a\xa0\x64\xea\x0d\xbd\xc0\xfb\x77\x0f\x0f\x84\xf1\x66\x89\xe8\x02\xfb\x7e\xc9\xa4\x1b\xbf\x61\xbb\xf8\x61\x45\xc0\x2b\x4f\xd2\x6b\x89\x42\x45\x1a\x91\x1c\xa6\x17\xe1\x3a\xcf\x63\x85\x05\xd4\x4f\xec\xfb\xef\x51\x08\x9e\xfa\xed\x69\x09\x52\xea\x01\x41\xa8\x39\x45\x38\x95\x6d\x19\xb7\x43\x0a\xda\xe5\x98\xba\x44\xde\x12\x37\x37\x64\xde\x37\x72\xc7\x61\x3a\x5e\xa2\x53\x4d\x4a\x4a\x86\x9e\x56\xda\x9f\xf4\x3a\xb6\x92\x5e\x14\xa6\xb4\x37\x0a\xda\x88\xbf\xe6\x1e\x60\x9c\x54\x71\x31\xd1\x55\xc7\x3b\x55\xd9\x4e\x5d\x25\x27\x9b\xda\x0f\x76\x6b\xd7\x8c\xaa\x55\x7d\x10\xae\xc5\x57\x5d\x2d\x80\x77\xb6\x01\x8e\x4b\x0f\x9a\xae\x91\x87\x9b\x4d\x72\xab\xce\xab\xe3\x08\xd4\x5e\xbc\xed\xa4\x78\x56\xe9\x67\x95\x70\x2f\x24\x79\x2c\x44\x78\x3b\x8c\x53\xfd\xb7\x0b\xdb\x79\xfa\x8d\xd5\x20\x16\xf0\x52\x92\x7e\xff\x2e\x7c\xb7\x47\xb5\xd3\x77\x5c\xab\x11\xc3\x0c\x4f\xf4\x5a\x92\x97\xd2\xf7\xfb\xa6\x50\x83\x98\xef\x7b\xa9\x7e\x6a\xdf\x57\xa8\x3c\xfc\xee\x49\x25\x8e\x5d\x5f\x2a\x69\xec\x95\x24\x7c\x68\x2a\xc0\x53\x49\x5e\xcb\xe9\x2b\x19\xbc\x92\xbe\xff\x4a\x0e\xad\xc1\xf3\x44\xb3\xfa\x79\xfe\x04\x9e\x75\x2e\xc9\x19\xba\x27\xb5\x38\x84\xd4\x58\xce\xd0\x2b\xf5\x34\xbd\xa7\xf8\x25\xf2\x4a\xfd\x1b\x98\xdf\x4f\x15\x93\x6d\x86\xe2\x0d\x14\x7a\xd6\xc5\x05\x7c\x92\xe4\x99\x44\x9e\x92\xc5\x63\xaa\xc6\xf4\xae\x13\x73\x38\x28\x7e\xa1\x80\xb5\x81\x0a\xfb\x75\x5d\x60\x8d\x3e\x62\x8d\x37\xcd\x0e\xf9\x7e\xff\x85\x44\x35\x1e\x15\x4f\x57\x48\x91\x67\xa3\xa2\x25\x88\x11\x36\xfb\x24\x35\x19\x66\xce\x9a\x12\x94\xbf\x80\xd1\xeb\x9a\x6f\xe8\x54\xf7\x19\x30\x8c\xf4\x79\x99\x8e\x02\x85\x7c\x9f\x48\x32\x9b\x6b\xc2\x0d\xbf\xc9\x0e\x2f\x95\x31\x21\x4a\x14\x79\xa0\xfe\x08\xf2\x95\xfa\xc3\xc9\x9f\xd4\x9f\x98\x7c\xa3\xfe\x84\xe4\x5b\xf5\x27\x23\x5f\x6b\xeb\x6a\xbc\x73\x6b\x21\x82\x14\x12\x58\x56\x64\x6a\x03\x0b\xb8\x22\x6f\x25\x8a\x30\xdc\x92\x0b\x74\x85\x61\x45\xde\x48\xa4\xaa\x7d\x85\x61\xad\x58\xb0\xdb\x92\x05\x3b\x27\x23\x38\x23\xcb\x3c\x7f\x27\xe1\x9a\xd0\xe9\x19\x8a\x60\x8d\x03\x96\xe7\xa1\xfe\x3d\xc2\x96\x69\x9e\xac\x1f\x9d\x4f\xce\x2d\xa3\x95\xe5\xf9\xb9\xc2\xad\xb7\x6a\x6d\x16\x64\x85\x36\xe4\x76\x76\x3e\x87\x73\xb8\xc2\x20\x31\xd6\x2e\x7b\xd7\xb3\xf3\x39\x59\x94\xd7\x09\x16\xd8\x62\x0e\x69\x31\x87\x3b\xae\xfd\x91\x39\xbe\x5f\xbb\xe3\xbb\x31\xcf\xdf\xb8\xe7\x73\x87\x10\x9e\xd8\x13\x7c\x0d\x1b\x6b\xe0\x6f\x75\xf9\x27\xd7\xe5\xd8\x34\xf9\xb6\xd9\xc4\xf1\x4d\xd3\x83\x71\x20\xf2\x9c\x4f\x79\x70\x5d\x14\xf0\x5c\x31\x1c\xc6\xad\x25\xf8\x4d\xa2\x11\x86\x75\xb8\x51\xbf\xc6\x18\x96\x71\x22\xa9\x50\x0f\x0f\x30\xa4\x7c\x4d\xd5\xcf\xaf\x30\xd0\x2b\x2a\x6e\xd5\xef\x3f\xa9\x3a\x6c\xa1\x7e\x7e\x6d\x7e\xbe\x50\x8c\xa2\x7a\xfe\xc6\x35\x3f\xce\xa4\x7a\xfe\x16\x17\xf0\x5d\x37\x91\x9f\xcd\x67\x72\x5e\x9a\x58\x98\xef\x37\xcf\xbb\xd5\x5e\x6b\x9f\x1d\xda\x30\x5d\x19\xbc\x3f\x2e\x60\x6c\xdc\xae\x7e\x90\x7b\x54\x98\x3f\x49\x45\xb2\x7f\x6c\x02\xa1\xb5\x6b\x17\xf0\x73\x7b\x58\x5a\x07\xfb\x93\x3a\xb6\x0e\xf3\xff\xa4\x8e\xe6\x44\xc9\x94\x94\x6c\xad\xe2\xcc\x0e\x1c\x04\xe9\xf7\xcf\x10\x05\xef\xf1\xe1\xe1\xd1\xc9\xc9\xf1\xdb\x13\x0f\xfb\x3e\x1d\x96\x8f\xc0\x89\x7a\x3f\xc2\x53\x3a\x1b\xcd\x83\x1f\x15\x44\xab\x82\xb1\x2a\x18\xcf\x1d\x8c\xd5\x3f\x45\xf4\x3a\xb4\x10\x5f\xbc\x44\xc2\xf7\xfb\x61\x29\x09\x58\x47\xa0\xad\x81\xe7\xe0\x60\x5c\x4c\xc4\xf4\x07\xc5\x4c\x8e\x61\xdb\xbc\xe7\xb4\xa2\x32\xf8\x51\x16\x38\x90\xb3\xf1\x9c\x8c\xa1\x74\xec\xe4\xd6\x91\x1c\xbe\x97\xe4\x79\xe9\xad\x0a\xbf\x48\xf2\x9d\x44\x9e\x7d\xf4\x30\xfc\x2a\xc9\xcf\x8d\x02\x49\xc9\x2f\xd2\xf7\x7f\x95\xd3\x59\x79\xbb\xa0\x4b\xf9\xf1\xbd\xb4\x56\x34\x68\x0b\x98\x8f\xc6\xd3\xb2\xa8\x5a\x07\x5c\x4c\xde\x4b\xb4\x35\xbc\x50\x60\xa9\x05\x68\x3c\xa5\x26\x62\x18\x90\xa0\xfa\x66\x9f\x48\x5a\x40\x09\xc3\x92\xda\xed\xa1\x14\x58\xe9\xba\x78\x49\x6f\xef\x60\xbd\x6f\x15\x21\x12\x94\x84\xd3\x2e\xf0\x89\x69\xda\xd2\xea\x2b\x6e\xba\x72\xb0\x03\x41\x18\x55\xbc\x31\x27\xc2\xce\x4c\xb3\xc6\xfc\x51\x3c\xc1\x46\xd1\xcc\x88\x98\xc5\x83\xc1\x1c\xe8\x8c\xcd\xeb\xfc\x07\xa7\x9a\x95\x77\x46\x11\x0f\xca\x9f\xd6\xc8\xe1\x61\x88\x29\x79\x8e\xbc\x17\x47\x67\x6f\xde\x1e\x9f\x1e\x7b\x18\x42\x5a\x77\x10\x2c\x20\xeb\xe2\x6b\xbd\x87\xc6\x36\xf1\x48\xab\x89\x1e\x7e\xb8\xef\x1e\x0b\x88\x1a\xed\xa5\xb8\xdd\x52\x4a\xdc\x77\x87\x0b\xbe\x0e\x63\xe6\xfb\x8c\x5e\xf7\x1e\x47\x32\xbe\xa2\x3f\x3b\x73\xe1\x85\x5c\x27\xcb\x38\xa1\xf5\x7b\x70\x5a\x81\x26\x81\x4e\x22\x4a\x28\x6d\x98\x0c\xe5\xf0\x5a\xc4\x92\xa2\x8c\x22\xcf\xb8\x94\x46\x09\x57\xbc\xb4\xf3\x1b\x1b\x6e\x42\x41\x99\xfc\x49\xdb\xb3\x87\xe6\x2b\xe5\xe2\x18\x27\x3d\x5a\x20\x4a\x71\x80\x10\x25\x1f\x91\x17\x2f\x85\x56\xfd\xe0\x61\x2a\x6f\x93\xd2\x63\x96\x78\x8c\x33\xea\x01\xa7\x8a\x75\xa1\x6c\x71\x78\x11\x27\x0b\xb5\x25\x74\x98\x8a\xc8\x29\xb8\xbc\x8f\xe1\x55\x68\x96\x21\xf0\x30\x20\x49\xb4\x00\x24\xab\x21\xb8\x45\xc0\x43\xbe\xa1\x0c\xa9\x21\x57\x53\x28\x57\xe8\x99\x85\xaa\xc6\x9c\x40\x0e\x9f\xd5\x80\x42\x09\x8a\x56\x2e\x62\x07\x07\x13\x6c\xb5\x48\x51\xed\xe2\xdf\xec\x56\xce\xd8\xbc\x94\x6c\x22\x25\x64\x4c\xbe\x9b\xc5\x74\xee\x7c\xfc\xd2\x96\xeb\x6d\x1d\x82\x77\xf8\x00\x67\xd9\x9c\xa2\xb0\xf6\x11\xa2\x2d\x34\x4c\xab\x83\x43\x0a\x8d\x57\x7a\x81\x99\xfe\xa0\x54\xb4\x5d\x8d\xa0\xc6\xf5\x4e\x59\x20\xa8\x55\x77\x24\x54\xf3\x24\x19\x4b\x23\xbe\x51\x38\x45\xf1\x25\x4b\x6a\xb9\xbd\xb2\xcb\x89\xe1\x1e\x96\x74\x96\xd0\xb9\xef\x2b\xe0\x5f\x52\x48\x28\x6c\xdb\xf7\x2c\x8d\xb0\x91\x52\x8d\xd6\x9d\x29\x62\xd3\x04\x64\xd3\x8d\xc6\x86\xa3\x02\x16\xd4\x28\x22\x8c\xba\x02\x2e\xa8\xc6\x47\x56\x31\xe1\xc1\xb6\x44\xb7\xaa\xfb\x71\x30\x2a\xf0\x97\xe0\x91\xfe\x85\x42\x1e\xa5\x12\xa4\x03\x43\x2c\xe8\xef\xc5\x5f\x05\x86\x0d\x55\x43\x33\x9d\x7a\x66\x72\x57\x14\x6e\x29\xac\xf6\xdd\xd0\x5c\x23\x8a\x27\xc6\xb5\x76\x6a\x90\x86\x80\x04\x8d\x80\x61\x85\xb3\xc5\x9c\xb0\x02\xd6\x06\x5b\xb0\xf0\x2a\x5e\x99\x9b\xb2\x5e\x96\x52\xf1\x78\xa5\x11\x45\x9e\x7b\x1e\x9c\x53\xa2\xaf\x8b\x46\x34\x4d\xe1\x8c\x92\x73\xea\xfb\xe7\x74\xe8\xcc\x27\x70\x4d\xc9\x19\xf5\xfd\x33\x3a\xbc\xfa\xcf\xc9\x35\x9d\xde\x52\x82\xae\x28\xb9\xa6\x4e\xed\x3b\xf4\x30\x9e\x8d\xe6\x83\x2b\x4d\x9a\xd6\xd4\xf7\x51\x5f\xd5\x58\xd3\xe1\x5a\x9f\xf9\xfb\x47\x8b\x15\xfd\x70\x1f\x7d\x58\x0c\xf0\x7d\x8c\xf3\x5c\xd7\x7c\x44\xbe\xfd\x93\xe2\x87\x1a\x35\x0f\x2f\x04\x5f\xd7\xea\xfa\x3e\xba\xa5\x44\xd7\x37\x6b\x72\x4c\xc9\x2d\xf5\xfd\xc1\x2d\x85\x8f\xb4\xc5\xf5\xde\x74\x4a\xeb\xc7\xf4\x11\xf9\x7a\x9c\xe7\x2d\xd2\x58\xba\x3d\x9b\x6a\x88\x36\x7c\xff\xb7\x05\x9e\x7d\xa4\x1d\x9e\xd7\xdb\x25\xe7\xc1\xb8\x28\x60\xdc\x27\x84\xce\xe4\x1c\x3d\xe1\x3c\xa1\x21\xc3\xc3\x25\xe7\x9a\x2c\x1e\x51\x72\x43\x91\xa7\x1d\x2c\x3c\x0c\x27\x06\xec\xcc\x63\x0b\xe8\x46\x81\x02\xbc\x07\x05\x86\xcb\xf6\x64\x0e\xd5\xe0\x8c\x97\x06\x3c\xa6\xa5\x36\xf2\x8b\x20\xf4\x88\xe6\x79\xff\x44\x81\xa9\x6e\x1f\x74\x6b\x11\x8c\x9a\xd1\x5c\x31\xe9\xd2\x34\x4a\x08\x31\x44\xea\x57\xed\x84\x87\x01\xb5\x0a\xc8\x17\x12\xc5\x7b\xa5\x88\xf8\xef\x92\x22\x2e\xe9\x1e\x29\x02\x18\xb1\xfd\xe4\x79\xed\x9e\x99\xe3\xb9\x0e\xa9\x73\xa3\xcd\x20\x32\xa8\x55\x51\xda\x6e\xb9\xe3\x31\x45\xd1\x41\x06\x23\xac\xb5\x90\x93\xec\x61\x34\xc9\x06\x03\xe0\x83\x01\x36\x5a\x51\xdf\x5f\x51\xa4\x97\x69\x96\x55\x24\xd8\x11\x6c\xc2\x41\x14\x16\x0b\xbd\x6f\x90\x47\xc3\x62\x5d\xda\x95\xa5\xc4\xf3\xaa\xdb\x03\x46\x49\xe3\xfb\x88\x0e\x88\xb7\x32\x37\x47\x56\x8c\x0b\x7a\x18\xa6\xd4\x16\xc7\xba\x78\x9d\x25\x32\x4e\x62\xe6\x4a\xd7\xba\x74\xc1\xe5\xe3\xc4\xb5\x4f\x75\x51\xc6\xe2\x88\x2f\x5c\xb5\x4c\x97\xa5\x32\x8e\x2e\x6f\x6d\xd1\xad\x87\x81\xd6\xee\xaf\x9e\x36\xe3\x02\xbc\xa5\xab\xa3\x9b\x8d\x71\x2a\x50\x43\x7f\x43\xe1\x2d\x85\x17\x94\x6c\xdf\xbd\x3e\x79\xf7\xe6\xcd\xf1\xdb\xd3\xa3\xa7\x67\xbf\x04\xbb\xc7\x47\x92\x53\x8a\xbc\xd0\x03\xf5\x89\x6a\x8e\x49\x98\x4a\xcd\xd4\x93\x07\x60\x48\x8c\x1c\xd2\x1b\x1a\x21\x2f\x3c\x8f\x16\x9e\x16\xbb\x9f\xbc\x3d\xfe\xe1\xe8\xf5\xd9\xe1\xe3\xb7\x47\xa7\x7b\x7b\xfe\xab\x42\x57\xab\x2f\xec\x3b\x95\xc2\x33\x6c\xe9\x4b\x4a\xcc\x9c\x2a\x20\xd3\x75\xe0\x35\xb5\x74\xbd\xf6\xc2\x6a\xf0\xe0\x1e\x25\x2f\x29\xbc\xa2\x04\xbd\xa1\xe4\x7e\x78\x1f\xde\x52\x72\xff\xfc\x8f\xf7\x57\xf0\xd2\x02\xd5\x1b\x0a\x5e\xe8\xe1\xf2\xf9\xad\x7d\x1e\xf5\x09\x79\x43\xab\x91\xe5\xb9\x2a\x79\x5b\x2b\xc1\xf0\x94\x92\x17\x74\xd8\x58\xcf\x3c\x7f\x41\x87\xf5\x65\x80\x67\xb4\xb2\x63\xdf\x47\x78\x3a\xbd\x6f\xa7\xe6\xe1\xd9\x78\x3e\x41\xaf\x68\x9e\x3f\xa3\x79\xfe\x94\xaa\xc3\x71\xaf\x23\x20\x83\xbb\xe0\xa2\x5d\x1c\x21\x24\x4f\xa9\x56\x9b\x69\x60\x80\x8c\xbc\x77\xc7\x43\x1d\xeb\xd8\x1a\x89\x20\x25\x23\x48\x48\xc9\x45\x85\xbe\x8f\x0e\xc6\xea\x24\x66\x24\x2b\x15\x9c\xde\xad\x07\x8a\x23\x73\x6a\x7d\xa4\x80\xd7\xf7\x51\x66\xc1\x38\x21\x95\x52\xd4\x78\x96\xc5\xf5\xf9\xd7\x1e\x1e\x8d\x14\x7d\x88\x2b\xf8\xce\xf3\xb8\x0e\xec\xde\x07\x7d\x43\x51\xce\x6a\x6d\x0e\xc6\x1a\x1f\x44\xc4\x43\xd3\xa0\xe7\x0d\xa2\x81\x87\x3d\x48\x88\xd7\xf3\x06\x09\xa4\x83\x81\xe3\x57\x2c\x2c\x7b\x7f\x45\xd3\xc0\x55\xcb\x30\x86\x67\x54\xa3\x93\x46\x15\xfd\xfe\x1e\x9a\xf6\x3f\x7c\x48\x6d\xb5\x57\xe6\xce\x55\x63\xe8\x82\xb8\x0d\x0f\xa7\x2c\x88\x21\xc1\x10\x4e\xc5\x14\x89\x61\xcc\x36\x99\x24\xf6\xaf\x9d\x75\x8a\x41\xcc\x46\x73\xa2\xfe\xa9\x15\x99\x65\xab\x77\x5c\x5f\x92\x81\xa9\x6e\x91\x6f\x50\x7b\x43\x46\x81\x1a\x93\xf0\xfd\xfa\x7a\x92\xd8\xe2\x91\xa9\xed\x78\x50\x6b\x1f\x50\x33\x5d\xe1\xfb\xa2\xe4\x3a\x7c\xff\xb5\x9d\x84\xaa\x09\xac\x61\x53\x54\x68\x92\x93\xf1\x84\x3f\x6c\xb3\x2b\x07\x0f\x26\x0a\x1d\x96\xd8\xb3\xe2\x5d\xf8\xdc\xf7\x91\x98\xf1\xea\xfe\x09\xc6\x20\x2c\x3a\xfc\x44\xc9\x3d\xda\x20\x54\x66\xd1\x77\x29\xd5\xfd\xa1\x81\xf1\x3e\x21\x9f\x14\xb9\x52\xbf\x83\x4f\x4e\x1e\x7b\x67\x68\xa2\x66\x0d\x3c\x0c\x4f\x68\x5b\xb5\xbb\x73\x00\x1c\x10\xaf\x8c\x82\xab\x3c\x4e\x88\x12\x39\x7b\x47\xe7\x78\xda\xef\xd3\x72\x38\x46\xa1\x88\x8b\x2e\x1f\x28\x7d\x27\xd8\x3a\x16\x2e\x38\x4d\xd9\x1f\x64\x2f\x8c\x22\xba\x91\x3d\x41\x57\x59\xa2\xbe\x76\xb3\x11\x34\x35\x3e\x26\x75\x09\xed\xb7\xc6\xb0\x1b\xeb\xe0\x2c\x44\x3b\x14\x7b\x57\xd5\x75\x7f\x78\x5f\x3b\x1e\x7b\xf7\x87\xf7\x3d\xc5\x67\xd4\x9d\x86\x6a\xee\x52\x74\xf6\x9b\x62\xff\xc7\xb0\x5b\x51\xc9\x5a\x85\xd3\xf0\x14\x75\xf6\xf2\x6e\x06\xb6\xdf\xff\xdf\xce\x43\xc5\x10\xb1\xea\xd8\x3f\xa1\x4a\x38\xf8\x72\xb6\x56\xef\xe3\xf3\x36\x6f\xf3\x1d\x6d\x7b\xf9\x1a\xa4\xaf\xe6\x5c\xa2\x7a\x05\x0b\xbb\x64\xb5\x64\xd8\x14\x31\x15\x3c\xdb\xa4\x64\x1b\x06\xde\xb7\x5e\x01\xb2\x00\xef\x5b\x85\x3b\x3c\xaf\xc4\x5b\x12\xbc\x7b\x0f\xc3\x47\x86\xe8\xfc\x40\x89\x77\x6f\xe4\x11\x42\xbc\xb0\xaa\x72\x7f\x78\x1f\x54\x31\x86\x9f\xcc\x38\xed\x0b\x0f\xc3\x8f\x94\xf4\xfb\xf7\x87\xf7\x67\x3f\x29\xd9\xc4\x53\x2d\xed\x93\x21\x7b\xba\xd5\xcf\xfb\x26\x83\xa6\x01\xbe\x0f\xd4\x52\xa8\xc9\xee\x8c\x4a\x47\x15\xa3\x3d\x37\x48\xbb\x52\xa0\x5b\x95\x91\x17\x9e\x5b\xdf\xdc\x9a\x8d\xf9\x41\x9f\x10\x67\x46\xcb\x73\x2f\x54\xd3\x66\xb3\xd1\x3c\xcf\xbd\x73\xf3\xdb\xb8\x3d\x7f\xdf\xc9\x12\xd7\x8d\xce\x56\x9a\xd0\x64\xa3\xdc\x75\x8a\x15\x4b\x18\x4a\xc4\x14\x2f\xe8\xf8\xc2\x92\x44\x3c\x1c\xe5\x79\xf8\x88\x64\x53\xed\xb8\x64\x76\x3b\x40\x42\x71\x7d\x17\xa1\x38\xe4\x0b\xfa\x58\xa2\x10\xe3\x87\x5f\x7f\xfd\xe0\xcf\xdf\xe4\xb9\x78\xf4\xf5\x37\x5f\x8d\xff\x9c\xe7\xe1\x40\x51\x96\x2c\xcf\x11\x6f\x55\x1e\x8c\x55\xf5\x6f\xbe\x7a\x30\xca\x73\xfe\xe8\xeb\x6f\xbf\xfa\xd3\x57\x53\x39\x8d\xdd\xbd\xb8\x10\x07\x22\x50\xcf\x06\xa7\x86\x10\x0e\x1e\xe0\x80\x1f\xe8\x16\x03\x24\x0e\xf4\x97\x1e\x3e\x1c\x8f\xf0\xe0\x9b\xaf\xbf\xfe\xea\x9b\xa2\x80\x5f\xf4\x45\x41\xd5\x7d\xf0\x3d\x45\xfd\x31\x06\xd3\x99\x7e\x1a\xe1\x02\x7e\xa5\xe4\x17\x77\xf3\x0e\x24\xdb\x17\x9e\x87\x0e\x10\x9b\xfe\x6a\x98\x26\x87\x64\xc7\xb8\x00\xca\x3a\x75\x93\x76\xbb\xbb\x2f\x5c\xb3\xda\x75\x0a\xe7\x9e\xa9\xab\x5a\xef\xca\xd2\x44\x25\x76\x31\x92\xc1\x5a\x3d\xd5\xbb\xc3\x4c\x66\x84\x74\xd1\x4b\xb9\x2a\x89\xd9\xaa\xc7\xe5\x05\x15\x3d\x79\x11\xb2\x5e\xe8\x8c\x2d\x3d\x2e\xb4\xb0\x5f\xa1\x29\xa1\x7d\x2a\x2d\x1e\xec\x5b\x44\xb8\xe7\x8b\xff\xae\xbf\xa8\x86\x4b\xb5\x93\x75\xdc\xe5\x5c\x54\x75\xfd\x89\xd6\x1d\x78\x19\xab\x1c\x29\x04\xab\x1c\x29\x38\x6b\xb8\x79\x30\x72\xff\xc3\x3d\x34\xbb\xe7\xff\xe1\x7f\xcd\xf3\x0f\x8b\x0f\x8b\x69\xfe\x70\xf6\xd7\x47\xf3\x3f\x3e\xc2\xf7\x57\x90\xed\xbe\xc6\xf7\x57\x93\x7e\x73\xc3\xaa\x70\x49\xcf\xb4\x35\x6e\xe7\x2a\x81\x0d\x26\x50\x5e\x92\xa2\xdd\x77\x6b\xbf\x2d\xe0\xdb\x3e\xf1\x1c\x2e\xd5\x97\x07\x76\xdd\x85\x4d\x67\xfd\x31\x30\xc5\x2e\x3a\xff\x52\x7d\x4e\xf5\x25\x13\xdf\x47\x88\x29\x39\xb2\x25\x57\x02\xab\x17\xcc\x9e\x77\x09\x99\x3d\xa6\xaa\x2d\x93\x70\x95\x12\xcf\x03\xa6\xc6\xa9\x10\x0f\x9f\x63\x60\x7b\xd1\x88\xbe\x34\x9b\x25\x49\xa1\x1b\x28\xb6\x11\xfa\xb4\xc0\x1a\xbe\xfa\x61\x9e\xf7\xb3\x3c\x2f\x91\x9b\x1d\x62\xff\x3b\x25\x2a\xfe\x40\xf3\xfc\x47\x8a\xf3\xbc\x31\xfe\xfe\xcf\xd4\x85\x53\x31\x1f\x87\x94\x30\xc4\x41\xaf\x4c\x3d\xdc\x08\x38\x13\x61\x85\xd1\xf4\x18\x15\x51\x9f\xaa\x95\xe3\xd3\xad\xbd\x86\x0f\x2e\x38\x50\xdd\x1c\x19\xb4\xde\x5a\x1b\x04\x03\x5a\x7f\x3b\x2e\x0a\x0c\xdb\xb7\x47\x6f\x5e\x3e\x3e\x3c\x3a\xfb\xe1\xe8\xe8\xcd\xc9\xd9\xbd\x51\xf0\x03\x85\xb7\x47\xcf\x8f\x7e\x7e\x73\xe6\x5e\x9d\xbc\x7b\x72\x72\xfa\xe2\xf4\xdd\xe9\xd1\xc9\xd9\xbb\xd7\x4f\x8f\x9e\xbd\x78\x7d\xf4\xf4\xec\xf0\xf1\x9b\xd3\x77\x6f\x8f\x82\x1f\x69\xa1\xd8\xd5\x54\xf1\x41\x4b\xa2\xc8\xd5\x44\x4a\xd4\x96\x0b\x40\x2a\x46\x4f\x4a\xd4\x96\x24\x80\xc3\x03\x25\x07\x77\xfa\x43\x95\x3e\xd7\xf6\xee\x6e\xd1\xe9\xda\x57\xaf\x84\x0b\x5c\x08\xdf\x7f\xbf\xf3\x1d\xb5\xdc\x95\x91\xbb\xa8\xa8\x12\x3c\xd8\x5d\xfa\xea\xee\xd5\xef\x59\x0a\x1d\x59\xad\xbd\x9e\x10\x12\x3e\xf5\xee\x79\x81\x22\x6e\x16\xaa\x67\x4d\x93\xb2\xf9\x96\x65\x0d\xc0\x5c\x48\x54\x92\xb5\xa5\x03\xac\x32\xcd\xf4\x2a\x93\xbf\x42\xe5\x66\x53\x39\x08\x1c\x58\x1c\x61\x09\x0e\xc7\x06\x10\xa0\x36\x31\x13\x05\xac\xcf\x7d\x3f\x56\x70\xd9\x72\xc3\x13\xbe\xaf\x85\x14\x51\x72\x26\x21\x76\xc0\xaa\xc8\x9a\xdd\x02\xa1\x81\x3f\x32\x57\x90\x9d\xd6\xd4\xb8\x2d\x68\x59\x37\x35\xca\xce\x4a\x7a\xd1\x53\x5a\x76\xf9\x2e\x8b\xc9\x32\xcf\x51\xe9\xfa\x28\xb0\x55\x40\x92\xd4\x32\xe3\xea\x4b\x1b\x33\x86\x05\x49\x9d\x58\x3e\x49\xeb\xdc\x7c\x79\x2d\xf9\x42\x31\x32\xf6\xaa\xfc\x15\xa1\x0c\xa5\x90\xe8\xb1\x5a\x35\xc8\x15\xd6\x17\x26\x55\xc9\x85\x71\x64\xba\xc2\xd0\xdf\xd8\x52\xcd\x89\x38\x62\x3d\x1b\x69\xe1\xa8\xfe\x1d\xc9\x50\x02\x91\xac\x97\x61\x58\x60\x5c\x7e\xfe\x16\x56\x0a\xb1\xac\xc9\x08\xce\xc9\x68\x72\xfe\xf0\xc2\x91\xf8\x73\xed\x92\x43\x2e\x66\xe7\x55\x40\x80\xb3\xc6\xb7\xe0\x9a\x30\x86\x04\x43\xa1\x44\x57\x66\xf9\x31\x24\xa5\xea\x68\x84\xe1\x98\xcc\xe6\xf0\x91\x8c\x27\x1f\x1f\x5e\xb9\x7e\x3f\x0e\x06\xf8\xd8\xce\xc4\x89\x13\xe8\x96\x5c\xcd\x3e\xce\xf1\xf4\x36\xb0\x1f\xb8\xb5\xab\x7a\x43\xae\x2c\x77\xa7\x56\x60\x69\xd6\xe9\x88\xcc\xce\xe6\xce\xff\xe8\x18\xae\xd5\x8a\x95\x00\x76\xe3\xfb\x47\xa6\xfb\x1b\xd3\xc5\x49\xb9\x53\x96\xbd\xb2\x1a\xa4\x23\x6c\x6d\xa1\x27\x24\x43\x67\x90\xc0\x35\x1c\xc3\x8d\x82\x94\xeb\x47\x64\xed\xfb\x68\x35\x20\x89\x65\x33\xd6\x70\x8d\x07\x27\xb0\x26\xd7\x83\x33\x37\x41\x67\x15\x5d\x0d\xca\x5a\xb8\x98\x37\xe3\x0b\x5a\x31\xbc\xf4\x76\x25\x62\xe0\x74\xfb\x10\x11\xee\x7e\xa6\x24\x63\xbb\x27\x45\x5f\xf2\x7d\x2b\x95\x94\x9e\x92\x90\x61\x70\xe2\x27\xa4\xb5\x93\x4f\x5d\xe7\xa9\xf3\x30\x09\xab\x18\x02\xc6\xbc\xab\x4e\xb1\x25\x4b\xf7\x3c\x6d\xe0\xf5\x7c\x57\xd2\x93\xa6\xe0\x7f\x95\x05\xcc\xce\x66\xa4\x96\x42\xbf\xfb\xc3\xce\xbb\xcc\xbe\x79\xe8\x05\x29\x89\x67\xa1\x0b\x48\x00\x07\x63\x3c\x37\x57\x9c\x27\x0b\xba\x0c\xb3\x44\x06\x26\xc0\xd6\x20\x54\x1b\x38\xd2\x71\xe2\x1c\x71\x50\x25\xc9\x23\x7b\x37\x7a\x49\x38\x43\xc9\xfd\xf1\xa8\xe4\x1f\x54\x65\x1d\xd5\xf0\x21\x89\xa6\x25\xac\xf0\xd9\xf2\x60\x3c\x9f\x96\x93\x1c\xe3\xc0\x14\x0d\xea\x45\xb4\x48\x09\x9f\x25\x07\xe3\x79\xd1\x58\x57\x42\x48\xaa\x58\xd5\xb4\xc0\xfa\x0a\xa6\x89\x85\xc7\xc8\xf6\xf0\xe4\xe4\x6d\x96\xd0\x97\x71\x2a\x83\x11\x1c\x9e\x9c\x9c\xc8\xdb\x84\x3e\xa5\x51\x12\x8a\x50\x2d\xb4\x29\x7d\xaf\x30\x86\xab\x94\xc4\x94\xc9\xb7\x34\x92\xb6\xe0\xe9\xf1\xab\xe6\x93\x01\xbc\xea\xf9\x94\x5f\x52\xa6\x1f\xc7\xf0\x34\x94\xe1\xa9\x08\x59\xba\xa4\xe2\x85\xa4\x6b\x5b\xeb\x59\x5c\x0e\xe2\xbb\xd3\x57\x2f\x1f\x27\xc9\x21\x4f\x12\x1a\xd9\x21\xa8\xb2\x9d\x82\x67\x5c\xac\xad\xcd\xcf\x96\x9c\x50\x55\xa3\x2a\x7b\x45\x17\x71\x68\xbb\x7d\x15\xaf\xa9\x62\xed\x8c\xfe\x73\x04\xaf\xc3\x35\x5d\xbc\xe6\x0b\xfa\x2a\xdc\xa8\x47\xbe\xa0\x76\x88\x6f\xc2\x58\xcd\xef\xb7\x8c\xa6\x6e\x52\x6f\x92\x6c\x15\xb3\xf2\x87\xeb\xe3\xe4\xfd\xf3\x97\x1a\x94\x6d\xb5\x93\xf7\xcf\x5f\x67\xeb\x73\x2a\xaa\xe7\x37\xa1\xbc\x38\xa1\xab\x5a\x01\x8f\x99\xac\x1e\x1b\x6b\x75\xf2\xfe\xb9\x59\x1b\x2e\xdc\xc2\x98\xab\x25\x4f\xb2\xe5\xb2\xea\x55\x6d\xd1\xc9\x05\xa5\xae\x9b\x53\x7a\x23\x4f\x45\x18\x5d\x1e\x96\x9b\x54\x16\xb9\x67\x9e\x45\x76\x94\x45\x89\xd7\x52\xed\x70\x1a\x59\x9e\x3c\x61\x84\xcf\x52\x36\x87\x25\x23\x09\xf3\xfd\xa4\xa6\xa4\xd6\x58\x88\xf9\xfe\x92\x55\x36\x64\x22\x29\x36\x57\x7a\x96\x0c\x4a\x2b\x37\xc8\xba\xf8\x5d\xd5\x27\x92\x9a\x9b\x03\x9b\xfd\x72\x86\x31\xe5\xfc\x63\x03\x92\x06\xd5\x7d\xa4\x05\xbb\x23\x52\xed\x97\x45\x97\xfd\x7c\xfc\xda\xad\x11\x5b\x2f\x18\x41\x9f\xaf\x5c\x22\xbd\x05\x9b\x2e\x58\xa0\x98\xe5\xb3\xb3\xf7\xef\x8e\xce\x9e\x1e\xbd\x3f\x3d\x3e\x7e\x79\x72\xf6\xfc\xe5\xf1\x93\xc7\x2f\xcf\xbe\x3b\x3e\xfe\xe1\xec\xac\x42\xb2\x57\x96\xef\xaa\xd9\xea\x91\xc4\x1d\x11\x0b\x6b\xab\x8b\xe4\x8c\xcd\x81\x35\x63\x12\xde\xd6\x39\x33\x67\x0f\xed\x88\xfe\x27\xf5\xde\xad\xda\x12\x9f\x89\x46\xe0\xee\x83\x9b\x70\x03\x67\xd1\x45\x9c\x2c\x04\x65\xad\x20\x48\xda\x6c\x69\xab\x88\xf0\xfa\x15\x5f\x64\x09\x25\xf6\x7a\xa8\x75\xda\xa4\x26\x2e\xa2\xb9\x8f\xd3\x29\x3f\x4e\x19\xc2\x01\xb3\x37\x67\xd6\x8c\x6c\x59\xb8\xa6\xe9\x26\x8c\xe8\x22\x68\x9b\x4c\x8b\x62\xb2\x66\xc3\xaa\xc2\x70\x45\xe5\xae\xe0\xd0\xef\xb7\xc6\x54\x6b\x51\xc0\xaa\x76\x0a\x86\xe1\xc2\xd8\xc9\xbb\x56\xa1\x9c\xb6\xb9\xcf\xd6\x6c\x28\xe8\x9a\x5f\xd1\x76\x5b\xbc\x75\x37\x25\xda\x1d\xb4\x9a\xaf\xa8\xdc\x6d\xeb\x08\xd9\x67\xda\x5e\x84\xe9\xfe\xb6\x2e\x0c\x4f\xd5\x41\xab\x75\xb6\x59\xa8\xad\x68\x3a\x01\xed\x5b\x2d\x22\x6b\x0f\x20\x87\xa1\x6e\x93\xba\x20\x03\xb5\x36\xf6\x0d\x29\xeb\x18\x8b\x8f\x0c\xf7\x35\x28\xdf\x91\x5a\x3d\xd5\xc8\xdc\x22\xea\x6a\x62\xdf\x90\xb2\x0e\x6e\xcd\xcd\x9e\x96\xdd\xd5\x51\xa7\xab\xb1\x28\x20\xf7\xb4\x7d\xae\x7b\xbe\x73\x79\xca\x01\x96\xbd\xee\xbc\xdb\xdb\xfd\x63\xdd\xeb\x9d\xdd\x97\x6b\xdc\xd1\xbd\x7d\xb7\xb7\xfb\x57\x76\x21\xef\xfc\x40\x6d\x57\x3a\x3e\x51\xbe\xd5\x1f\xd9\xe3\x0b\x84\xea\x1f\x87\x35\x33\xec\xc7\x39\x83\xb3\x8e\x4f\x0b\xba\x8a\x53\x49\x05\x9a\xcd\x41\x42\x7f\x8c\x8b\xc9\x59\xeb\x2c\x74\x82\xf2\x50\xd0\x45\x16\x35\x6e\x70\xd5\x83\x7f\x97\x67\x48\xab\x34\x6c\x48\x41\xce\xd5\xa8\xdb\xdd\xbf\x76\x30\xdc\xe1\x80\x59\xb6\x9b\xdc\xf5\xdd\x9a\x9f\xf2\x00\x21\x4a\xaa\x13\x8c\x18\xc6\xb5\x43\x32\x65\x03\xef\xbe\x17\x78\x9e\x1a\x93\xfa\xb7\x39\x98\x8e\xd3\x57\xc5\x7c\x95\xee\xca\x8c\x0e\x58\x62\xaa\x22\x81\x41\x0c\xd7\x7a\x6f\xd2\x32\xda\x16\xd7\xf7\x4a\xca\x62\x2d\x57\xb2\x6a\x48\xdc\xd9\x8f\x27\x12\x95\xf7\x1b\x94\x48\x5a\xaf\x52\x75\x3b\xe3\x73\x5c\x14\x7a\x7b\xdc\x62\xc0\xce\x32\xba\x5d\xdc\xe3\xba\xa1\xe3\x5f\x55\x46\x69\x6d\x9c\xea\x8f\xb0\x0d\xf4\xc9\xe8\x75\x6f\x65\x94\xb3\x13\x7d\x3d\xd4\x0a\x0c\xd3\xf2\x83\x84\x9b\x00\x3d\x2b\x2a\x91\x2c\x19\xf7\x83\x31\xc6\x25\x8e\x46\x72\x26\xcb\xb8\x2f\x73\xe0\x78\x42\xdd\x0c\x34\x24\x97\x4f\x0d\xa1\x82\xe3\xad\xa8\x40\x50\xd6\x56\x83\x5a\xd2\xd9\xda\x21\xd6\x31\xd3\x06\xb0\xec\x0e\x11\x18\x69\x8e\x4d\x34\x01\x64\xa2\x4d\x57\x96\xaa\xfa\x7e\x83\x7a\x20\xd6\x1e\x41\x9c\xbe\xb5\x23\xa0\x8b\xbf\x7d\x0c\xcd\x70\x1d\x8e\x66\xa8\xaf\xe9\x3d\xb9\xee\x0a\xe6\xd8\xdc\x44\xa9\x50\x30\xd9\x16\x18\xfa\xe7\xcc\xf7\xf7\x33\x3f\x2e\x1a\xcb\xf0\x7d\x46\x7d\xbf\x65\xd1\x52\x4d\x25\x21\xe4\xdc\x5d\xc4\x9a\xf4\xff\xed\xfe\x1f\xfb\xff\xf6\xff\xf4\xfe\xd8\xbb\xca\xe8\x4d\xef\xea\xab\xe1\x37\xc3\x91\x7e\x46\x11\x36\x97\x94\x8f\xae\x42\xd6\xfb\x85\x67\xba\xf4\x2f\x6a\x96\x2c\xa5\xbd\x57\x2f\x4e\x55\xc1\xfd\x7f\x6b\x7d\xc2\x70\xe8\x48\x3a\x0f\x9f\x9a\x1b\x8f\x12\xef\x1f\x91\x07\x58\x0e\xd7\xf1\x4d\xcc\xd0\xf6\x9c\x2e\xb9\xa0\x87\x9a\x81\x09\x58\x81\x27\xe5\x4d\x5c\xed\x8b\x57\x6e\xc2\x59\xcc\x62\x39\xd9\x29\x69\x2e\xda\xee\x4a\xc9\xa1\xae\x65\xfe\x4c\x67\xac\x94\xee\x4d\x09\x56\xac\x6e\x2d\x18\x9e\xac\xc7\x22\xae\x0c\x2d\x7a\x8b\xef\x71\x1d\x80\x2e\x9d\x28\x46\x8a\x0b\x1b\x4b\xea\x9e\xfe\xdd\x19\x76\xd3\x55\x33\x7f\x11\x0e\xec\xaf\xc0\xf9\x18\xfa\xbe\xfb\x65\xbb\x71\x34\xd6\x76\xda\x7a\xab\x70\xc2\x39\x23\x12\x17\xa8\xda\x5f\x5c\x72\x77\x1b\x2d\x38\xed\x1c\xfa\x99\x75\x6b\x12\x9a\x01\x14\x71\x24\xab\x1a\x42\xc7\x47\xef\x8f\x1d\xd3\x18\xf1\xf5\x3a\x96\x32\x66\xab\x32\x3c\xe1\x99\x63\x24\xf6\xb3\x9a\xa6\xc6\x49\x76\x9e\x46\x22\x3e\x57\x0c\x81\xc3\x5c\x67\x15\x53\xb1\xbf\xf9\xb5\x08\x37\x1b\xba\x78\x6e\x99\x89\xfd\x15\x2d\x36\xd1\xc8\xeb\x4c\x6d\x78\xb3\xbc\x24\x2a\xaf\xc2\xcd\x1d\xbd\xa4\x5d\xe3\xbc\x56\xe2\x14\x15\xef\x5f\x99\xc8\x9c\xcc\xf5\x1c\x5e\x52\x7d\x07\xcf\x0e\xee\x30\x8c\x2e\xda\x91\x47\xab\x60\x69\x26\xca\x9b\xf5\x8d\x28\x83\xec\x43\x48\x5c\xdc\xad\xb5\x82\xe0\xfa\xbb\xee\x3b\xaf\xb1\x0b\x00\x67\xec\x1b\xb5\xd6\xfb\xe4\xba\xb0\xd6\x42\x21\x51\x1b\x82\x52\xef\x36\x11\x13\xa3\x21\x6a\x2c\x96\xc6\xf1\x56\x20\x38\x31\x4c\x07\x64\x50\xed\x5b\xad\x16\x86\x23\x57\x41\x51\xac\x5d\x09\x48\xd6\x13\x80\x68\x6b\x46\x65\x16\x57\xac\xca\x95\xe4\x3c\x49\xa7\xd5\xcf\xe0\x5c\x5b\x28\x96\xf1\xaa\x2c\xc2\x4d\x3c\x75\xa1\x83\x67\x0c\xcf\xec\xeb\xef\x38\xbf\x24\x17\x0c\x2e\xd8\x90\xae\x15\x26\x51\x88\x2a\x50\x07\xd8\x03\x89\x55\x31\x67\xb6\x50\x8a\xf0\x8a\x26\x07\x92\x1f\x98\x4b\xfc\xd0\x88\x2d\x2f\x9d\x4d\xf6\x44\xbd\xb4\xa3\x95\xc3\x12\x26\xda\xbc\x4d\xf3\x83\x0e\x9a\x3d\xb3\x33\x18\xb6\x1b\x41\x37\x94\x2d\x6c\x62\x8e\xaa\x1f\xc3\x56\xde\xdd\x9b\x39\x36\xdd\x7d\xe1\xc2\x5e\xab\x86\x63\x46\xb6\x7a\x26\x5d\xb2\x57\x89\xaa\x3e\xee\x48\xfa\xa5\xd6\x5a\xe2\x87\x23\x85\x08\x7c\x5f\xd1\x34\xfd\x89\xa9\xa2\xaa\xe9\x45\xbc\xd4\xe1\x6a\x6c\x14\x56\x89\xab\x98\xab\xc8\x59\x1a\xeb\xdd\x4c\xd8\xa3\x83\xb1\xa2\x5d\x0a\x9b\x47\x14\x31\x18\xd7\xb1\xe5\x8d\x13\xd5\x3e\x83\x32\x3e\x8b\x14\xbe\x0c\x23\x7c\xf1\xb1\x6f\x49\xbf\x27\x9a\x7b\xd4\x90\xde\x04\x73\x7d\xd3\xef\xc8\xbc\xad\x07\xe9\x3e\x6a\x33\x56\xc3\xb3\xab\xf5\xa4\x14\x79\xc8\xb6\xd0\x3d\xfd\x5e\x4c\xd1\x9e\x25\xc4\x64\x5b\x4c\xae\x18\xe2\x0d\x6e\x89\xe1\x6d\x3c\x63\xf3\x6e\x44\xd1\x71\x4d\x4e\x07\x80\xd3\xb9\x11\x3a\x45\x85\x5b\x54\x0e\x1c\xd8\xbe\x10\x43\x7a\x86\x33\x36\x2f\x9a\x5a\x20\x1d\x8a\xc4\x46\x85\xac\x0e\x70\x1a\x27\x94\xc9\x49\xbb\x80\xf4\x47\xa0\xfb\xb1\x08\x15\x6d\x17\xa1\x0c\x83\xed\xbd\x7b\x06\x98\xa9\x89\xf6\x98\x49\xba\x08\xe2\x02\xc3\x4e\xfb\x10\x1c\xb9\x6a\x62\x06\xdd\xe9\xf0\x9e\x46\xd8\x5d\xc1\x95\x0c\xfe\x52\x1f\x1b\xda\x6f\x35\x12\x17\x60\xc5\x14\x6c\x17\x94\x6e\x82\xfe\x08\xd2\x5b\x16\x99\x99\xe9\xb0\x7e\xe6\x98\xa8\xad\x89\xe5\xc5\xa1\xc6\xb8\xcd\x4f\x34\x3b\xd6\x66\x29\x85\x40\xce\x99\x8e\xec\x78\x1a\x47\x97\x5d\x43\x12\xc3\x7b\x0b\x9a\x4a\xc1\x6f\x75\x24\xe6\x1a\x6c\x9d\x34\x4c\x9b\x26\x90\x67\xdf\x39\x5d\x28\xc2\x51\x81\x68\x5d\x6a\x42\x26\xb7\x8a\xa8\x89\x39\x06\x5d\x76\x1c\x89\x59\x38\xdf\x73\x58\x66\xe1\x9c\x08\x0c\xfd\xd8\xf7\xfb\xdc\x99\x11\x2e\x35\xd0\x35\x19\xd9\x88\xb0\x19\xab\x31\xb2\xfb\x17\xe8\x9c\x0d\x53\x2a\x51\x06\x11\x08\x73\xde\x34\x43\x6f\xec\x60\xc2\xdc\x6b\xb8\xd9\xa5\x62\xe6\x60\x69\x93\x13\x05\x4e\xb6\x8e\x3c\x06\x42\x11\x0d\xf7\xd0\xbe\x43\x6a\x96\xeb\xd0\x3d\xeb\x48\xba\x9b\xf0\x36\xe1\xe1\x42\x7b\x94\x58\x76\x4d\x3b\x22\x6a\x0d\xab\xdd\x8e\xcc\xf7\x33\x7d\xe2\xf3\x1c\x45\x84\x0e\x22\xed\xf5\x6a\xbf\x82\x22\xb0\x91\x48\xd7\xb1\xd4\xdf\xb7\x3f\xff\xee\xaf\x77\x7e\xd6\x74\xae\x3e\x0a\x19\x2e\x4a\xb7\x81\x7d\x52\x3e\xd7\x47\x56\x9d\xde\x40\x9f\x5d\x31\xed\x3a\xbd\xb6\x4a\xd1\x71\xb4\x77\xae\x94\xf5\xf7\xe1\xae\x19\x9d\x3b\x22\xb0\x2d\xb4\xfc\x64\xcd\x6c\x0d\x85\x68\xa9\xf8\xe9\x60\x0b\xb8\xfe\x00\xaf\x19\x7d\xf4\xb5\x65\x17\xaf\xd6\x96\x0b\x3c\xe9\x46\x54\x0c\xe2\xfd\x08\xca\x7e\x76\xc6\x3b\x90\x94\x21\xe9\x7b\x67\x45\xca\x40\xe0\x77\x54\x2a\x8c\x6f\x49\x01\x96\xf4\x76\x8f\xe3\x92\x21\x4b\x56\x74\xd6\x9f\x02\x03\x2f\x74\x5c\x01\x25\x61\xb6\x55\x40\xa8\x85\xd6\x3b\x5c\x4b\x50\x9d\x38\xea\x30\x26\xed\x12\xc5\xcd\xdb\x48\x53\x0d\xbe\xa6\x4a\x89\x60\xc7\x63\x0e\x9e\x1a\xcc\x80\x01\x85\xd4\x78\x4f\x36\xb5\x5e\xed\x11\xb9\xa0\xea\x0a\x48\xa7\x2c\x50\x2d\xb9\xce\xb6\xc6\x16\x09\x15\x79\x4e\xbb\xdc\x61\x50\x45\xef\xcb\x11\x57\xcf\xfb\xc6\xeb\x62\x90\x94\xe3\xae\x9d\xf9\x8a\x73\x76\xa7\xd0\x1e\x13\x70\xb0\x2f\x4a\x1a\x66\xb6\xc7\x4d\x5a\x0d\xdc\x6e\x64\x50\xd1\x39\x55\xaa\xd9\xbd\xc0\x6e\x56\x01\xd4\x99\x02\x11\x27\x31\xee\x0a\x59\xd8\xe3\x3a\xc8\x7e\x9e\x57\xb1\xfb\xcb\x64\x39\xb1\x01\xb0\x1a\x6f\x3a\xb5\xf1\xaa\x9b\x93\x74\x31\x8a\xeb\x35\xeb\x0c\x20\x15\x82\x0b\xcf\x04\x8d\xc2\x58\x91\x41\xbd\x63\x02\x78\x7b\xbf\xcc\xa4\xbe\x00\x82\x74\x9a\x9b\x16\x67\xa1\x4e\xb2\xd3\x3e\x75\xbc\xeb\x52\xf5\x31\x54\x2e\x69\xa5\x41\xb5\x25\x35\x65\xef\x5e\xf8\x32\xaa\x8d\x7a\x2e\xa5\x18\x6f\x1d\xb1\x73\x12\x78\x8c\xcd\xa5\xff\x3a\x41\xbc\x6c\x07\xd8\xba\x5b\xe5\xa8\x4e\x2a\x56\x42\x7b\xd9\xc1\x61\x9b\x11\xd6\xe6\x17\x45\xd4\x6d\x3a\x30\x46\x28\x50\x22\x41\xba\x48\xd2\x60\xb2\x73\x49\xb0\xd8\x3b\xa0\x60\x71\x77\xc0\x8a\xe2\x98\x99\x69\x77\x1b\x36\x2c\xb7\x71\xb5\x6e\x71\x1c\x50\x36\x4b\x5b\xba\xd4\x02\xae\xeb\xaa\xa5\x3d\x62\x5d\xa5\xc2\x03\x4e\xca\x29\x81\xc2\x9a\x5a\xc1\x1b\x12\x5e\x23\x36\x66\x02\x71\x39\x81\xb0\x80\x88\xb4\xe4\xef\x59\x3c\x9f\x44\xa5\x0a\x7f\x0f\xf9\x8e\xba\x85\x3b\x89\x42\x17\xdf\x69\x47\x84\xb6\x58\xbc\x0b\xff\xd7\xc5\xc2\xac\xce\x0f\xe0\xd6\x22\xec\x91\x86\xab\xf0\xd1\x20\xec\x22\x98\xeb\xac\x7a\x09\x62\x22\xca\x25\x08\xed\x12\xf0\x72\x09\xe2\x02\x9c\xc0\xeb\x90\x91\xc9\x5b\x93\x19\xcf\xe6\x3d\x8a\x8b\x6a\x36\xfa\x96\xf8\x9e\x14\x1b\x46\x65\x55\xe0\xcf\x4c\xda\xd6\x43\x21\xb0\x1a\x2f\xd4\xbc\xa3\x1a\x91\xac\x72\x70\x76\x78\x46\x61\xc4\x6c\xb8\x0e\x37\x7b\x16\x33\xd6\x8b\x18\x64\xb3\xd1\x1c\x55\x79\x43\x14\x9f\x6d\x7b\x68\x1f\x97\xa8\x9d\x30\xc4\x86\x8a\x64\x5d\x4b\x70\xe7\xd4\x75\x90\xf0\xcf\xcf\x5c\x57\xdb\x3b\x71\xa3\x25\x68\x66\x13\xfb\xdb\x86\xa3\x31\x68\xf7\x70\xea\x48\x44\x57\xab\x86\x63\x13\xc7\x55\x03\xa2\xa8\x4c\x25\xd7\x02\xcd\x12\xd2\xbb\x05\x30\x2d\x76\xef\x9c\x09\x13\x56\xb6\xb3\x9b\x1d\x73\x53\xb3\xb3\xce\x20\x69\x56\x45\x1a\xc8\x22\x90\xfb\x34\x6e\xbb\x9f\xbc\xde\x39\x51\x2d\xdb\x40\x03\x83\x95\xfa\xaf\xbb\x24\xab\x5d\xa2\xa0\xb6\xd1\x28\x9c\xae\xd9\xee\x8d\x27\x4d\x74\xf7\x69\xb5\xef\x44\x44\x74\x17\xa7\x12\x59\xec\x20\x0e\x67\x18\xb0\x86\xee\x9d\xc9\x36\x15\xa1\x4a\xf2\xdb\xf1\xf2\x33\x9a\xe2\x99\x9c\xe3\xb6\xe6\xab\xb4\x50\x28\xb4\xe3\x54\x64\x95\xed\x1c\x64\xab\x81\xb6\x00\x60\xd0\x4a\x96\x94\x8a\x2b\x33\xfd\x4a\x79\x56\x35\x6d\x4f\xa3\xb2\x70\xec\x4c\xa4\xb1\x64\x5f\x3e\xf8\xaa\xc7\x4a\x4b\xba\x67\xa9\x0d\x96\x55\x62\x5f\x49\xdf\xeb\xc2\x9f\x12\xec\x8d\x09\x1d\x31\x68\xd8\x33\x34\x3d\xb8\x61\x4e\x4f\x75\xdd\xb2\x88\x77\x4c\xc5\x39\x30\x7f\xe9\x2c\xea\x76\x17\x1d\x96\xa7\xf9\x0d\x2e\xdf\xed\x33\x9d\x97\xeb\x60\x4c\x76\xb2\x1c\xa8\xf6\x74\x6d\xf6\x53\x5b\x98\x7d\xc6\x9d\x9a\x5e\x7c\xb2\xab\x28\x1f\x81\x44\x1d\x0a\x74\xba\xdf\x58\x5b\xff\x3e\x1c\x5b\x63\xed\x63\x46\xde\xee\x68\x0c\x9d\x00\xe6\x4e\xeb\x1b\x85\xd8\xba\xb1\x9d\xe3\xde\x2f\xe9\xad\x66\xdb\xaf\xc2\x64\xc2\x66\xa2\xe1\xfb\x5d\xa5\x6f\x98\xcd\x81\x91\xf6\x25\x1b\x13\x15\x80\xce\xd8\xbc\x76\x0f\x8b\xcd\x27\x15\xd6\xb0\x96\x08\xa7\xcc\xae\x32\xc3\xc5\xe4\x05\xab\xdb\x2e\xc0\x5b\x87\x1b\x27\xfa\xa4\x1e\x98\xfc\x70\xfd\xd8\x71\xa2\xc2\xdc\xdf\x95\xf4\xc6\x09\xc1\x56\x2a\xeb\x62\xc5\xa7\xbc\x7e\x7f\x65\x26\x4a\x23\x0e\xc5\x38\x10\xb5\x77\xee\xe3\x33\x5e\xaf\xa2\x25\x42\xa6\xfe\x79\xff\x4f\x58\x63\x4e\xe4\x80\x43\x7b\xa5\xb5\x68\x9d\xe7\x1d\x8b\x62\x39\x6f\xaf\x16\xc8\xa5\xbe\xb2\x75\xc9\x56\x75\x3a\x54\xa2\x02\xd1\x3a\x61\x33\x87\xd3\xff\x93\xe0\xc4\xb1\x76\x9f\x83\x14\x43\x17\x3f\x03\x27\xae\xb3\xff\x02\x48\xa9\x34\xeb\x6f\x3a\x6f\x35\x55\x45\x8d\xd0\x62\x48\xe2\x3c\xd7\x12\x47\x81\x24\x9e\xb6\xdf\x4d\xe5\x3e\xae\x6e\x7b\x49\x6f\x03\x09\x57\x61\x12\x48\x35\x88\xa0\xe5\x76\xd6\x6c\x46\x1b\xcd\xa8\x69\xa6\x64\x21\xd5\x72\x36\xaf\xa4\xa1\xb7\xfb\xaf\x64\x35\x91\x71\x15\xcd\x76\x6a\x25\x24\xcf\xc3\x81\x77\xdf\x64\xf2\xb4\xde\xaf\xb4\x44\xfe\xd8\xde\xfb\xbe\xef\x61\x90\x36\xe7\x71\xf9\xd1\x17\x3b\xf1\xca\xbb\xd5\x8f\x6c\xae\x59\xe0\x97\x8c\xb0\x6a\xb9\x5f\xd7\x34\xa2\xc6\xbd\x59\x71\x86\xd6\x80\x35\x8b\xe7\x48\x07\x0c\xb0\x71\x01\xdb\xe9\x3d\x8c\x2b\xae\x5e\xfe\xcc\x24\xc2\xa3\x28\xc2\x41\x5b\x7e\x8f\x6c\x02\x3d\x2d\x7d\xaa\xae\xef\xb1\x3b\xaf\xb0\xd5\x69\x41\xfd\x34\xdc\xcd\x79\xd7\xb4\x84\x55\xf0\x3a\x56\x83\xac\x50\x7d\xeb\x35\x43\xb1\x9e\x6b\x08\x19\xb8\x94\x49\x35\x79\x36\xdb\xad\xe4\xd2\xed\xe2\x22\x44\xd5\xd5\xd8\xa2\x80\x57\x8c\x74\xa6\x56\x51\xd2\xaf\x81\x27\x42\xac\x49\xc2\xf7\x25\x3c\xed\xa8\x5e\x65\x6a\x31\xff\xee\xb6\x53\xa5\xf0\x8c\x91\x57\x2c\xcf\x9f\xb2\xbb\x32\xb3\x7c\x62\xe4\x19\x73\x61\xeb\xde\xb1\xdd\x54\xfe\x4f\x18\x79\xc7\xda\x29\x1b\x7e\xd3\x85\x65\x8a\x91\xe7\x8c\x7c\x62\xd3\x4f\xac\x9e\x7a\xdf\xc5\xa6\x52\x8b\xfb\x5d\x97\xdb\xc4\x93\x52\xad\xf4\x9c\x19\x3f\x8c\xe7\x6c\xae\xaf\xba\xea\x5f\xa4\xd6\x5e\x28\xd4\xda\x94\xc9\x38\xf9\xad\xcc\x4d\x51\x5e\x66\x53\x00\x3f\x35\xad\x59\x15\x7d\xf9\x39\x9b\x63\xe0\x05\xfc\xb0\x3b\xbb\x2a\x46\xbe\xea\xf3\xa7\x4e\x08\xfb\xa1\xfc\x4e\x01\x3f\x7e\x66\xa2\x3f\x77\xf6\x60\x73\x97\x4c\xeb\x71\xde\x5d\x56\xc6\x77\xce\x3d\x64\xee\x05\x65\xe1\xeb\x2c\x49\xe6\x5e\xf0\x23\xf3\xfd\x1f\xb5\x6f\x72\x99\x20\x65\xfa\x9d\xea\x38\xf8\x49\x1f\x1f\xfd\xc9\xef\x3b\x5d\x52\x2c\x5c\x35\x23\xfc\xe8\xb0\xa7\x25\x30\xd1\x3c\xaf\x23\x67\x6a\xfb\xfb\x85\xed\x24\x87\xf8\x9e\x55\x79\x4c\xfa\x63\x1b\x82\xe9\x67\x56\xad\x7c\x39\x70\x07\x67\x73\xdb\xff\x4e\xee\xc9\x7d\x15\x74\xd2\xce\x7d\x2f\xdf\x08\x7e\x73\xab\x0b\x0b\xf8\x55\xc1\x6b\x77\x5e\x04\x90\x62\xf7\x9e\xf0\xfd\xd9\x5f\x87\xf3\xc1\x3d\x1b\x42\xe1\x57\xe6\xfb\xbf\x32\x8d\xb0\xcb\x1f\x43\x17\x1f\x2b\xcf\xbd\xda\xfd\xed\xa9\x0b\xd3\x9f\x8a\x08\x9f\x8d\x87\xde\x40\x06\x9e\x57\xb8\x10\x54\x5d\xb9\x9b\xfa\x7d\x29\x7c\x5f\x9a\x50\x3c\x05\x30\x41\x76\x03\x7a\x37\x21\x4e\x88\xae\x3c\x37\x7d\xd2\x48\x92\xd4\x63\xa2\x84\xc0\x9a\x7c\x5e\xbd\x97\x03\xcf\xdb\xbd\xea\xed\x79\x05\x70\x41\xee\xff\xf5\x83\x5b\xc7\xe1\x60\x7a\x58\x5d\x39\xfc\x30\xbf\x77\x1f\xe2\xae\x31\x42\x28\x76\xf1\x40\x26\x48\x2c\xaa\x23\x1f\x09\x12\x8a\x36\x5a\x48\x05\xa9\x85\x55\xc8\xec\xb0\x23\x51\x05\xc8\xbd\x3f\xfb\xf0\xe1\xaf\xf7\x86\x7f\x1c\x4c\x11\x9e\x7d\x98\x6f\x8b\x7c\x7e\x7f\x05\xde\x87\x0f\xf7\x7c\xaf\x56\xab\xd9\x6f\x5e\xe2\x6b\x3c\xfc\xe3\x14\x4d\xc9\x87\x0f\x1f\x10\xce\x7b\x4b\x2e\xd4\x9c\x4c\xc1\x1c\xab\x8e\xee\x8d\x87\x7f\x9c\x7a\x78\xe0\xdd\xb3\xb1\x93\x92\xce\x8d\xb2\x30\x9d\xe7\x5a\xf6\x52\x84\xf2\x17\xf5\x3c\x4d\x45\xc0\x05\x36\xe9\x28\x84\x7e\x65\x0e\xc5\x52\x74\x6b\x03\x9a\x27\xdb\x90\x77\x73\x1d\xac\xdd\xc0\xf0\x7e\x4b\x23\xa9\x3a\x20\x4b\x04\x62\x78\xca\xca\xf8\xea\x0b\xd1\x0e\xaf\x66\x80\x78\x23\x90\xcd\x8b\xe4\x35\xed\x2f\x35\x78\x45\xdb\x02\x3c\x93\x03\x44\xd6\x81\xc1\x02\xec\xc5\xae\x0b\xa2\x57\x26\xf4\x55\x47\xcb\xf7\x17\x62\xba\x10\xe6\x82\x41\xfb\x2a\x41\xf3\xa2\x81\xbb\x7e\xd0\x75\xc1\xc0\x4c\xff\x6a\xcf\x7a\x29\x1a\x45\xf3\x5c\x6a\x5c\x44\xfb\xea\x40\xdf\xee\xc2\x5a\x0b\xac\x74\x8f\xab\xbd\x2e\x94\x33\x3a\x9f\xdc\x8a\xea\xae\xb1\xef\x5f\x09\x1b\x30\xbc\xf2\x70\x61\x79\x6e\xae\x55\xe0\x3c\xbf\x10\x2e\xb3\x8c\xee\x79\xdd\xee\xb9\xba\xdb\xd8\x67\x13\xa6\xf3\x2c\x6c\x8b\x2a\x40\x5b\x4c\x0e\xc6\x10\x56\xa6\xb6\xc1\x20\x7e\x18\x4e\x9c\x69\x96\xce\xe2\x39\x44\x44\x4c\x05\x62\xb3\x6c\x0e\x52\xfd\x93\x01\x03\x59\x46\x04\x2d\xc9\x40\xa4\x63\x99\xa8\x1a\x18\xf8\xf4\x42\x20\xa6\xe3\x15\x05\x2b\xf7\xab\x4c\x86\x6b\x46\x7a\xde\x9d\x30\xce\xbc\x3c\xdb\x5d\x20\x17\x72\xd8\x5d\x59\x6b\x45\x1e\x2e\xe3\x0c\xb7\xc2\x0c\x57\xf1\x7e\x67\xa3\x39\x6e\x45\x15\x6e\xbc\x04\xa6\xe3\x71\x35\xa3\x08\xef\xd6\x00\x36\x7b\x30\xc7\x95\x41\xaf\xe2\xb3\x0a\xb8\x16\x55\x48\x2b\x35\x8d\xe3\xdd\x69\x94\xf7\x9a\xaf\x45\x3d\x02\x55\xa5\xe5\x08\x28\x8c\x1a\x6e\x31\x55\xea\xcf\x92\x0d\x04\x6e\x32\x97\x5f\x0b\xe4\xc2\xa1\x1c\xe8\x66\xa1\x89\x23\x85\x62\x3c\x19\x0c\xf8\xc3\x78\x82\xc3\x19\x9f\x13\x31\xa3\x03\x3e\x9f\xa8\x56\xe5\xce\x67\xb6\x2a\x1d\x8c\x4d\x65\x3a\xc1\x99\xa9\xcc\xcb\xab\xae\x99\x3e\x06\x8a\x03\x3e\x13\xee\x06\xb0\xb6\x1a\xab\x1e\x3e\x76\xee\x60\x87\x16\xaf\x28\xe0\x46\x90\x85\xe8\xbe\x5f\xac\x8f\x69\x2d\xd0\xfc\x9d\xe7\x75\x6c\xcf\xeb\x47\x81\x28\x6e\x9e\xd9\x22\x38\x17\x70\x24\xc8\xd3\x50\xd2\x21\xe3\xd7\xe6\xc2\x64\x97\x0b\xef\x08\x18\x19\xed\x04\xd1\x75\x67\xf0\x48\x20\x0c\x9c\x8c\xbf\x39\x40\xe2\xc0\xb8\x3d\x30\x22\x80\x3f\x1a\x69\x9a\x36\x18\xd0\x47\xe4\x3f\x47\x23\x27\x49\x57\xe2\xe8\x68\x6e\xee\x60\xd2\xaa\x73\xd9\xbc\xa6\x59\x0f\x24\x8d\x6e\x84\x41\x66\x97\x7b\xd0\xcb\x89\x40\xc7\xe6\x70\x9f\x0b\x0c\x8a\x2c\xda\x33\x7e\xd8\xb5\xee\x1e\xd3\x1e\xb0\x4d\x36\x5c\x7b\x4f\xc9\xff\x18\x13\x32\xf2\x7d\xf9\x90\xb4\xb3\x42\x98\xfe\x1e\x77\xee\x63\xc9\x65\x1d\x8a\x2a\x6f\xbe\xef\xf7\x35\x6d\x29\xe0\xbd\x22\xc6\x68\x1a\x8c\xf2\xd9\xf8\xe0\xcf\xf3\x0f\x8b\x3f\xe2\x7b\xf7\x75\x77\xa7\xdd\xd4\xa2\xc5\xc5\xf5\xfb\x88\xda\x4b\xd6\x74\xda\x1e\x57\xa0\x83\x41\x55\x53\xd2\xf9\xb1\x4c\xf4\xea\x3e\x61\xbe\xff\x5e\x18\xaa\xa6\xa9\x5d\x7b\x96\xd4\xcc\xea\xcd\xee\xd9\xb3\xec\x1f\x6b\xb1\x7f\xa2\x94\x44\xab\xb1\x55\xdf\x16\xd3\xc7\x42\xc7\x72\x3b\x15\xda\x4f\xc5\x05\x34\xaa\x94\x8a\xc2\xf7\x35\x3a\x66\x06\x5b\xb3\x19\x9d\x83\x63\x68\xdf\x76\xae\xed\xe5\x8e\x61\xd5\x8c\xe3\x60\x0c\xbc\x8c\x80\x02\x31\xe1\x8f\xc6\x53\x36\xe3\x07\x65\xf4\x19\x08\x09\x7f\xf4\x60\xaa\x50\x90\x43\xc0\xea\x3c\xc7\xa5\x37\xfd\xa3\xaf\x3a\x4d\xcb\xf1\x14\xf1\x83\x03\x88\x71\xd9\x8f\xef\xbf\x51\x43\x75\x48\x2d\xc4\xfa\x86\x2e\x7f\xf8\x95\x23\xff\xb1\x3a\x03\x18\x9c\x47\x99\xc2\xac\x83\x81\x78\xc8\x4b\xe2\xc0\x66\x62\x3e\xc9\x7c\x5f\x49\xe3\x19\x08\x88\x71\x95\xef\x4b\x07\x41\xdf\xa5\x85\x7a\x49\x5e\x76\x7a\xd5\x2b\x89\xb1\x16\x42\x62\x52\xa3\xb1\x9d\xd9\x0d\x7c\xbf\x16\xc2\x33\xcf\x5f\x08\xbb\xe0\xaf\xdb\xd0\x57\x85\x22\x3d\x18\x83\x20\x4e\x31\x32\x19\x0c\xd8\x43\x39\xc1\x62\xc6\xe6\x84\xd6\x12\xc2\x0b\xd3\xcf\xbd\xbb\x0f\x45\xc7\x5d\x3a\xdd\xec\x55\x67\xb3\x7b\x42\x5b\x84\x2b\x01\xc1\xe1\x01\x25\x07\xfc\x6c\x0e\xd4\xd3\x0e\x36\xf5\x99\x20\x4f\x77\xf8\xd2\x4f\xba\xb0\x33\xeb\xe7\x3b\x41\x5e\x89\x0e\x3b\x4a\x89\x77\x0a\x84\xf1\xf4\x55\x67\x72\x26\x3b\xc6\x67\x25\xf3\xe1\xe9\xe0\x28\xd4\x53\x87\xfe\xd3\x6e\x69\x01\x4f\x44\x33\xca\xbd\x5e\x80\xdf\x44\xc7\x65\xbc\x71\x01\xcf\x05\xd9\x31\x12\x5a\x87\x4f\xdf\xef\x2b\x84\xbd\xd0\x37\x79\x7d\x9f\x82\x50\x67\x5c\xfa\x7e\x5f\xd6\x8a\x25\x70\xa2\xef\x50\xb8\x24\x4c\x84\xb0\xe9\x33\x36\x34\xb7\x68\x1d\x5c\xc7\x04\xf1\x29\x1f\xc6\x69\xa3\x18\xe7\xf9\x6f\x62\x52\xe5\x6f\x8a\x0b\x8c\xe1\x3b\x41\xb6\xc5\xe4\x3b\x31\xab\x04\xbe\x84\x87\xf2\xab\x07\x7a\x32\x73\x6f\x4e\x76\xde\x7d\xf3\xa7\xce\x77\x2f\x98\xfc\xcf\x7d\x2f\xc6\xdf\xec\x7b\xb3\xe7\x43\xef\xe2\x7d\xbd\xe9\x37\x87\x49\xb8\xde\xd0\xc5\xde\x0a\x7b\xbe\xa7\x5e\xd5\x3e\xd8\x1f\x41\xfd\x6d\x0d\x1e\x9b\xcd\x3a\xfb\xd2\x85\x66\x7d\xdb\xaf\x6c\xd8\xd0\x76\xf1\xd3\x50\x86\xef\x63\x7a\xdd\x51\x4e\xdb\x65\x3a\x4a\xcf\xce\xea\x97\xc2\x74\xb3\xfc\x55\xb8\x69\x17\x99\x9b\x20\xed\x52\x73\xb4\xda\xa5\x46\xbe\x6b\x97\x9e\xd0\x9d\x8a\x86\x37\x69\x97\xda\x0c\x74\x7a\x41\x0d\x29\xf9\xe1\xae\xe3\xdf\x22\xa4\xfd\xef\xc4\x4c\x9f\x7d\x2b\x65\xfd\x74\x37\x3b\x45\x5b\x1e\xb7\xf0\xe3\x3f\xe3\x44\xf9\xfe\x2b\x56\xc6\xcd\x8d\xbb\x05\x38\x73\x93\xc9\xe4\x5b\xab\xfd\x44\x5e\x26\xe3\xc4\x33\x19\xdc\x2a\x63\x6f\x9e\x73\xdf\xe7\xc3\xf3\x98\x2d\x62\xb6\xaa\xfd\x74\xf5\x5b\xf2\x5d\xeb\x94\xfe\x2c\xc8\x8f\xc2\xf7\x7f\x14\xc3\x38\x55\xc3\x36\x90\x0f\xdf\x0b\xf2\xb3\x98\xfe\x24\xd0\xcf\x02\x07\x3f\x08\xf8\xe5\xcb\x04\xaf\x5f\xbb\x79\x93\x27\xda\x68\x29\x48\x9f\xf9\xfe\x3b\x61\x52\x38\xe9\xc0\xf3\xc2\xf7\x9f\xeb\xe7\xb8\x7c\xee\x73\xdf\xff\x5e\x98\x50\x4c\x2c\xcf\x45\x9e\xf3\x3c\x8f\x21\x23\xe1\xf4\x75\xb5\xc1\x60\xb3\xc8\x05\xb3\x39\x54\x1e\x17\xd5\x25\x7d\x23\xbe\xf5\xd5\x4e\xfd\x52\xe2\xd6\x14\xe7\x79\xa8\x18\x1f\x9b\x52\x89\x90\x54\xaf\x1e\xf2\xf8\x72\x99\x52\x69\x0a\x3c\x73\x43\x47\x3d\x60\x9d\x43\x06\x79\xe7\xfa\x30\xda\xd7\xe7\xb7\x92\xbe\xac\x75\xa0\x0b\x8e\xcb\x0e\x70\x9e\x9f\x0a\x94\x42\x84\x71\x9e\x67\xc6\x51\x2e\x2d\xa9\x5f\x66\x60\x51\xf2\xcf\xb8\x7f\xb3\x3a\x34\x2a\x8e\xaa\x28\x50\xcd\x80\x60\xed\x90\x18\x28\xff\xa2\x7d\x61\x7c\x47\x4f\xf7\x52\xd4\xf3\x0d\x73\x45\xb2\x9d\x7d\xa8\x0a\x2f\xde\x50\x27\x62\xca\xdd\x4a\x2a\x56\xac\x91\x12\x4b\xb3\x8d\xb4\x4c\xb9\x55\x32\x2a\x86\x01\xe4\x5d\x27\xef\xb1\x1a\xc0\xf4\x57\xf5\x6f\xc0\xb8\xa6\xd1\xfc\xb3\xb3\x81\x98\x93\xb7\xa2\x7d\x2c\xe3\x25\x7a\x29\x74\x9a\xc3\xc7\xea\x0f\x5e\x2b\x56\x52\x70\x25\xc2\x48\x73\xfd\xac\xd7\x98\x12\xc5\x9c\x57\xb9\x70\x7c\x7f\x25\xcc\x1d\x81\x19\x9b\x57\x1e\xf1\x9d\x83\xb6\x3a\x9c\xda\x3d\x8d\x8c\x37\xcd\x1b\x4a\x16\x87\x14\x6f\xbd\x73\x83\xab\x2b\x43\x4c\xa8\x25\xf8\x4c\x81\x32\x84\xa4\x3f\xc6\x13\xbd\x82\xbd\xa4\xeb\xaa\x19\x9b\xb2\x61\xe9\xb4\x36\x49\xa8\xec\x2d\x6d\x02\x37\x39\x14\x94\x2d\xa8\xf0\x7d\x94\xd8\x9f\xc4\x95\x41\xa2\x4d\xfe\x71\xf4\x56\x3f\x3e\xd3\x57\xbf\x5b\x25\x90\x68\xa3\xf6\x26\x4e\xe8\x42\x11\x2a\xae\x3b\x72\x23\x08\x13\xd2\x1f\x61\xe3\x39\x9f\x0c\xcf\xd2\x88\x6f\xe8\x8b\x05\x11\x18\xe2\x29\x5a\x36\x96\x04\x49\x22\xf3\xdc\x98\xde\xae\x98\x8e\x26\x5c\x7b\x18\xa6\xa9\x38\x34\x66\x3e\x5b\xa9\xbc\x21\x57\x3d\x34\x1b\x36\xca\x6a\xed\x71\x9e\xd7\x6e\x46\x96\x4b\x64\xa2\x3e\x9c\x9c\xbc\x3d\x3b\x3c\x7e\x7d\x7a\xf4\xf3\xe9\xd9\x59\x9e\x23\x49\x3a\xca\x31\x68\x86\xb6\xba\x15\x18\xe9\xcb\x31\x7a\x35\xcf\x44\xe9\x92\x70\xc8\xd7\x1b\xce\x14\xa1\xde\xfb\x62\x18\x2e\x16\x28\xc6\x85\x5a\xc5\x34\x15\x6f\xcb\x8b\xac\x38\xa0\xbe\x8f\x96\x8d\x5c\xc0\x78\x5b\xff\x66\xea\x3c\x8b\xee\xe9\x9b\x5a\xee\xf2\xe1\x30\xbd\x08\x17\xfc\xfa\x2d\xe7\x12\xb7\x82\x7f\xd5\x5b\x67\x5a\xc1\x88\x61\x89\xe3\x65\x63\xbf\xf0\xd6\x80\x91\x24\x0e\x1c\x26\x25\x5c\x74\x19\x08\x5d\x2c\x31\x56\x19\xfa\xf4\x05\xcd\xaa\x97\xfa\x05\xce\x49\xf3\x91\xe8\x34\x1c\xee\xc2\x25\x2c\x71\x30\x5b\xce\x2b\xcd\x93\xe9\x23\xe2\x26\xc2\x44\xe0\x9d\x50\xed\x39\x61\xd9\x16\x1d\xc2\x74\x93\x06\xdb\xf3\x8c\x2d\x12\x1a\x18\x17\x3f\xab\xac\x74\x09\x46\x83\xfe\xa8\x80\xd4\xb4\xbb\xa3\xc6\x86\x8a\x54\xad\xfc\x42\x47\xd9\xd9\x57\x51\x67\x1f\x0c\x65\xb8\xeb\xe9\xed\xc2\xa2\x64\x49\x52\x14\x60\x22\x23\xa6\xc1\x56\xab\x13\x4c\x97\x3b\xd6\x81\xba\x8f\xd5\x3d\x86\x5e\xb2\xe1\x3a\x14\xb5\xeb\x21\x3d\x8a\x5a\xb9\x12\x5e\xb2\xe1\xb5\x68\xdb\x79\x75\x3a\xc2\x89\x4b\xd4\xa3\xa4\x2c\x7a\x45\xa8\xbe\x6e\xd2\x56\xba\x31\xb2\x55\x58\xe4\xbd\x0d\x70\x67\x2c\xa4\x10\x72\x24\x87\xcd\xf9\xeb\x04\xaf\xc3\x78\x41\xda\x2f\x86\xf1\x02\x83\xe9\x9c\xfc\x09\xe4\xf0\x9e\x71\x56\xe6\xec\x24\xbc\xa2\x1e\xb8\x9d\x90\x43\xf3\xa3\x5c\x78\x39\xb4\xbf\x4a\xff\x4b\x56\x58\xdd\xdd\x9f\x02\x1d\xce\x89\xb2\x45\x19\xea\x89\x0e\x53\xc9\x37\x48\xa7\x24\x30\xfe\xa0\xea\x37\xac\x79\xc6\x24\x5d\xd4\x57\x52\x8d\x5d\x1f\xf5\x9d\xe1\xeb\x62\x3d\x43\xd2\x51\x63\x58\xae\x03\x06\xd7\x87\x49\xc1\xed\xfb\x7d\x57\x60\x87\x5c\xd5\x1d\xda\xb8\x52\xd8\xb9\xc9\xd6\xfa\xdf\x5f\xd9\xaa\xdf\x52\xbe\x6b\x20\x32\x21\xfa\x88\x1c\xde\x6b\xa4\x88\x07\x46\xe4\xf0\x4c\x5b\x57\xcf\xa2\x3c\x2f\xef\xa5\x30\x93\xfd\x1d\x66\x0c\x79\x3c\x3a\x88\x2e\x68\x74\x79\xce\x6f\x3c\xd8\x86\x52\x8a\x34\xd8\x26\xe1\x39\x4d\xaa\xc5\xae\x0d\x46\xbf\x29\x80\xb3\x60\x1b\x5d\x84\x6c\xa5\xf6\xa8\x02\xce\x42\x27\xa1\x4e\x82\xed\x55\x1d\x34\x40\x9d\xeb\xf3\x30\xba\x0c\x1a\x6e\xa1\x76\xd6\xb4\x80\x2a\xf8\x70\x60\x93\x9a\x17\x05\x9e\xc3\x18\x17\x93\x94\x1b\xb7\x29\xc5\x57\x6d\x36\x9a\x32\x38\xf2\xc4\x49\xc6\xd1\xd6\x60\x94\x20\xe5\xd0\xa2\x27\xc1\x6c\x5e\xd8\x74\x1e\x10\x71\xf7\xab\x3f\xde\xfd\xd5\xf8\x63\xa8\xec\x52\xc7\xdd\xf4\xe2\xf4\x50\xa3\x94\x93\x8d\xa0\xe1\x42\x27\xcb\xc4\xb0\xe1\xe4\x8e\x34\x0c\x8d\xa8\xbe\xb3\x25\xd7\xe1\x8c\xcb\xd8\x03\x78\x36\x9a\xf7\x89\xf6\x30\x84\x0b\xae\x53\x2b\x98\x37\x1e\x86\xab\x5d\x66\x68\xd5\x61\xb3\xd4\x9d\xee\x44\x5a\xa3\x3a\x18\xb4\x4e\x86\xf6\x45\x09\x84\xfa\x1b\x9e\xe7\xfd\x0b\x5e\x68\xbd\x6b\x14\xca\x60\x47\x39\x53\xf1\x0e\xe4\xad\xb4\xd1\x04\x33\xf2\x4e\xa2\x10\x46\x18\x22\x62\x74\x50\xd4\xe8\x57\x76\x1c\x77\xe8\x43\x31\xa1\x26\x65\xd8\x15\x47\x31\xd1\x11\x0e\xe9\x34\x0c\x2a\xc5\x29\x9d\x63\x3d\xcd\x68\x80\x78\x23\x65\x03\x7e\xb4\x93\xc7\x76\x27\x9c\xeb\xab\xf0\x26\x5e\x67\xeb\x5e\x98\x24\xfc\x9a\x2e\x7a\xfa\xf6\x68\x8f\xde\x44\x94\x2e\x74\x3a\x68\x9d\x84\x95\x8c\x26\xec\x21\x9f\xb0\xc1\x00\xa2\xc1\x00\xb3\x2a\x17\x82\x62\x87\x62\xcd\x58\x69\x2a\xa3\x86\xf1\x68\x47\x51\xfa\x37\x7c\xd6\x74\x3d\x18\xd4\xf4\x62\x4e\x0c\x20\x11\x64\x2e\x8c\xf4\x2d\xd7\xe9\xa6\xb4\xcb\x31\xac\x0c\x24\x98\x27\x0f\xc3\x9a\x9b\x64\x53\xf6\xf9\x8b\xf6\x73\xa5\xf6\x73\xad\xf6\xd3\xa6\x2d\xeb\xe0\x12\x6f\xf9\xef\xcf\xe5\x62\x8c\x36\xbc\x4b\x77\x37\xb4\x9e\x53\x7a\x8b\x1d\x1c\x3a\xd6\xfd\x12\x39\x2e\x01\x63\x47\x21\xce\x78\x87\x95\xaa\x66\x03\x16\x53\x8a\x2e\x11\xc3\xa5\x55\x26\x50\x32\x86\x15\x14\xcb\x6b\x2e\xe7\x8a\x29\x07\x5a\x14\x70\xcd\xc9\xb6\x80\x63\x7b\x56\x6d\x3e\x43\x0f\xc3\x47\xde\xce\xcc\x03\x37\x9d\x6c\x73\x75\x79\xdc\xf7\xd1\x35\x1f\xea\x56\x44\x67\xdb\xfb\xc8\x67\xc7\x7c\xae\x7e\xe3\x02\x8e\xd4\x87\x26\x47\x7c\xa6\x3e\x54\x73\x9b\xf0\xf0\x9c\x78\x9f\x3c\x63\x72\xe0\xa4\xd4\x10\x7c\x9a\xd7\x82\x5a\x1e\x71\x0c\x97\x66\x8c\x8d\xa6\x70\xc8\x89\x57\xaa\x60\x74\x00\xf7\xcf\xa8\xf0\xe0\x31\x27\x27\x7c\xba\xe9\x3e\xab\x4d\x9c\x60\x3c\x34\x4a\xcf\x0c\x2f\xb0\xc1\x38\xe5\xd4\x7b\x9d\x25\x89\x17\xb4\xbd\x63\xd1\x4e\x3c\xb0\x9a\x71\x7e\x46\xe7\x0d\x79\xbd\x54\x0f\x4b\x35\x37\x8c\xa7\x2c\x38\xe4\xd3\x0d\xa2\x38\xf0\x8e\x9d\x8a\x14\x09\xa2\x4a\xba\x6f\x3d\x19\xe8\xa0\x74\x5a\x5b\x82\x40\x14\xf0\x7e\x67\x37\x4f\x77\xf0\xa2\xf3\x2f\x28\x47\xf7\x9e\xcf\xf3\x5c\xce\xbc\xbf\xfc\xa5\x6c\x37\xcf\xf3\x6b\x3e\x7b\xcc\xb5\xa2\x05\xde\xec\xf4\xfa\x96\x93\xfe\x78\xe2\xb4\x1b\x2f\x38\x19\xc1\x4b\xc5\x1f\xd2\x9b\x8e\xfb\x77\x36\x6a\x6f\xff\x05\x1f\x0c\x8a\x02\x4c\x61\xbd\x9a\xea\x6d\x54\x14\x93\x97\x7c\xf6\xa6\x33\x0e\xb3\x3a\x77\x05\x18\xa8\x5c\x0a\xbe\x46\x2f\x79\xe3\xae\xb0\x01\xed\x07\xbb\xf7\x36\x5e\xb7\x45\x72\x45\x17\xa8\xef\xf7\xdf\xf2\x26\x65\x60\xf5\xf9\x68\x1d\xa7\xe8\x1e\xcb\x9d\x73\x64\x7a\x1e\x45\x01\x12\x89\xfa\x50\x4a\x56\x1a\xee\x71\xd2\x7f\xcd\x9b\xae\x85\xb5\x79\xe9\xfb\x0d\x5d\x18\x4b\x91\xe7\x1a\xc2\xba\xa7\x51\x95\xe0\xeb\xbb\x08\x0f\x64\x9a\xf4\x28\x6a\xb3\x27\x4d\xbc\x0e\x8d\x12\x18\xe5\x50\xba\x43\x85\x20\x21\x69\x37\x6a\x83\x65\x95\x9f\x24\x81\x0d\x39\xe5\x28\xc3\xb0\x20\x23\x1d\x1d\x51\x09\x99\xe4\x8d\x44\x09\xa4\x8f\x1e\xd4\x9a\x97\xe6\x17\x78\x80\x31\x98\x13\xb5\xc9\xf3\xa8\xcc\x07\x74\xc3\xd1\x06\x63\x43\x7a\x18\xbd\xee\x45\x88\x2a\xca\x96\x95\x94\x6d\x42\x1f\x2d\x26\x8b\xc1\x00\x87\x64\x39\x4d\x50\x36\x5b\xcc\x61\x81\x03\xfd\x77\x45\x11\x83\x05\x84\x35\xd5\x40\x4c\x10\x27\x1b\x83\x48\x33\x8c\x35\xc3\x6c\xd3\x83\x44\x93\xbe\x89\x52\xaf\xe3\x71\x60\xac\xdd\x10\xcb\xae\xcf\x38\xe2\x90\xc0\x4c\x58\x16\x6c\x31\x87\xfe\x08\x07\xee\xb1\xfa\x94\xdb\x58\x47\xa3\x16\xc0\x1c\xd6\x7f\xc5\xe1\x29\x87\x67\x1c\x3e\xf1\x76\xf4\xf1\x52\xb6\x90\xa8\x02\x0e\xd9\xb8\x6e\x56\xc5\x09\xd7\x89\xd6\xaa\x1c\xb7\xb5\x8c\xe4\x48\x4d\x44\x62\x1d\xbd\xa3\x6c\xab\x78\xa3\x77\xbc\x95\xf4\xef\xc9\xae\x0a\x06\x7e\xe3\xe4\x13\x9f\x76\x76\xdc\x45\xfd\xa4\x85\xa5\x33\x24\xe1\x1d\xc7\x53\x39\x7b\xc7\xe7\x41\x67\x38\x9d\xda\xe8\x7d\x5f\xf6\x62\x96\xca\x90\x45\x3b\xef\xa6\x8d\xa7\x6a\x64\x41\xa3\x89\x19\xe0\xf4\x09\x37\x52\x1d\x3c\xdf\xc1\x45\xdf\x69\x5c\x34\x9b\x5b\x9f\x2e\x64\xbc\x33\x63\x86\x9e\x71\x62\x4b\x11\xc6\x53\xf4\x94\x93\xdf\x38\xfa\x8d\xa3\x67\x1c\x63\xb5\x6a\xed\x25\xf1\x7d\xf4\x8a\x93\xa7\x1c\x07\xaa\xcb\x91\x03\xd1\x57\xdc\xbc\xd8\x16\x6a\xf6\xaf\x38\x3c\xe7\x38\xcf\xdf\x9b\x5f\xb0\x27\xb4\x81\x53\x38\xfd\xc0\xc9\xf6\x85\x1d\x6b\xb9\xc2\xc1\x2b\x0e\x4f\xde\x3d\x7f\xfe\xcb\xd9\xc9\xe3\x67\x8f\xdf\xbe\x38\x7b\x71\x7a\xf4\xf6\xf1\xe9\xf1\xdb\x93\xe0\x3b\x5e\xc0\x4f\x5c\xe7\x49\xff\xb1\x8b\xea\xfd\xdc\x66\x02\xf0\x56\xfa\x7e\xff\x0c\x49\xc2\xa6\x32\xa8\x6f\xf0\x8f\x1c\xfb\xfe\x4f\x1c\x49\xf8\x91\xef\xcb\xa1\x47\x0b\x5c\xc0\xf7\x9c\xfc\xc0\x87\x3b\xa3\x84\x5f\xf8\x5e\x54\xfc\x6b\x09\x50\x69\x03\x72\xf2\x1c\xd5\x7c\x8a\x62\xb6\x2d\xa6\x6d\x0e\x1f\x6c\xa8\xfc\x6d\xa1\xf1\x2d\x2a\xd3\xae\x36\x13\x38\x3f\xa5\x26\xd9\x22\x77\x8e\x4f\xb5\x99\xd5\x3e\x81\xd5\x00\xb0\x0b\x28\x3e\x9b\x63\xa0\x84\xd5\xe1\x47\xa3\x96\x5d\x54\x5c\xe9\x64\x6b\xa9\xb1\x15\xf7\x04\x5d\x52\x84\xc9\x49\xa6\x0e\xda\x2e\x4f\x7b\x18\xb2\x3f\xc8\x5e\x4a\x65\xcf\x1b\xd4\x73\x87\x87\x69\x2f\xec\xd5\xb2\xfb\x17\x48\x60\xa0\xd3\x32\xa2\xbd\xc0\x01\x1b\x96\x13\x21\x42\x61\x0e\xe4\x4c\xcd\x18\x64\xdc\xbd\x29\x54\x97\x77\x43\x0f\xb0\xb8\x7d\x38\x44\xbc\x77\x0f\x79\xbc\xc3\x4f\x3a\x5f\xee\x7e\xb7\xa3\x15\x1d\x78\x3d\x37\x22\xaf\x1e\xe3\x8b\xa4\x14\x7d\xcf\xc1\xd0\xc6\x04\x8d\x75\x80\x38\xf8\x99\xeb\x5b\xd2\xfd\x31\x86\x6b\x3e\x13\x73\xf2\x0b\x2f\x6c\x28\x7f\x13\xea\x08\x22\x48\x61\xd9\xe6\x4f\x24\x21\x84\xfb\xfe\xad\x63\x50\x6e\xf5\x4d\x03\x1a\x1b\x5c\xd2\xbb\x70\xe5\x17\x33\x39\x9f\x34\xd3\x18\x7b\xea\xb0\x7b\x46\x95\xa1\x01\xdc\x3d\x50\x26\x45\xac\x9e\xf6\xfa\xdb\x28\x5c\xca\xaa\xe0\x62\x5f\x50\x0f\x17\x05\x6c\x9a\x6b\x02\x0b\x05\xdb\x17\x75\x7c\x0c\x57\xe4\x62\xc6\xe2\x79\x9e\x5f\xb4\x39\x2c\xee\xfb\x17\x33\x3e\x87\x5b\xa2\x67\x77\x95\xe7\x4b\xc4\x31\xac\x48\x99\xe5\x9c\xfa\xfe\xc5\xd0\x8e\x3d\xcf\xaf\xd4\x42\xac\x7c\x1f\x65\x0a\x91\xad\x2c\x20\x69\x1a\xa0\xe0\xa5\x13\xa3\x65\x9a\xe8\xf9\xbe\xc2\x7b\x99\x26\x15\xb1\xef\xa3\x5f\xf9\xf4\x57\x8e\x32\x90\x31\x0e\x3a\x92\xe2\x67\x6a\xc0\xbe\xff\x1e\x65\xc0\x62\x10\x31\xd6\x7b\x99\xc1\x46\x51\x41\x8c\xc1\xad\xad\xde\xa7\x2b\xdf\x77\xcf\x7d\x42\xae\x74\xac\x13\x9d\xdb\xba\x3f\x82\xdb\x0e\xe0\xbb\xaa\xd4\x9f\x0a\x48\xf4\xe2\xf4\x09\xb9\x55\xdf\xbb\x50\xdf\xbb\xd5\xe0\x42\xe7\xe4\x16\xb8\x12\x80\x23\x62\x14\x22\x69\xb0\x44\xee\x4b\x18\xd4\x4e\x07\xf1\xf4\x56\x15\xea\x5d\xc7\x60\x17\x4a\x95\xb8\xfd\xc6\x05\x84\x9a\xa1\xd0\xb6\xa3\x08\x23\x1a\xe7\xf9\x22\xcf\xfb\xa6\xe0\x42\xbb\xc2\x48\x74\x01\x29\x44\xb3\x74\x6e\x79\x87\x1a\xff\x45\x77\x64\x45\xdd\x43\x01\x51\x49\xfc\xa3\x02\xe2\x98\xfc\xaa\x10\x11\x84\xea\x87\xb9\x1a\xf4\x4c\x21\x07\xbd\x91\x15\x7c\x60\xc8\x62\xc2\x63\x64\x38\x2e\xc7\xdb\xb5\xed\x1e\xb1\x01\x43\xa3\xfd\x6c\x77\x01\x76\x60\xb7\xda\xc0\xa6\x13\x66\x8f\xe0\x32\x66\x0b\x8d\xcb\x9b\x21\x74\x8c\x46\x25\x8c\xcb\xfc\x83\x72\x68\x5a\x6b\xd5\x96\x6a\x04\x42\x87\xdc\x5b\xd0\x9b\xc1\xc0\xf9\xf1\xd0\x3c\x17\x8f\x4a\xe7\xc6\x29\x72\x8d\x5c\xe2\x45\xab\x9e\xb2\x4f\x36\x5f\x47\x81\x03\xb3\x0d\x84\xb0\xa9\xad\x21\xc0\xa5\xeb\x08\x2a\x88\x29\xdf\xd2\x99\x98\x57\x15\x6c\xe1\x4c\x80\x2a\xaf\x5e\x14\x15\xb4\xe1\x89\x96\x31\x2d\x37\x49\x9c\xc0\xa9\xd3\xa5\x5a\x08\x50\x3f\x4b\x08\x51\x0f\x25\x1c\x98\x30\xef\xb1\x62\x08\x3e\xf2\x98\x41\x1a\x93\x8b\xbe\x3d\x2f\x90\xc4\x3a\x5f\xb5\x7a\xe1\x81\x07\x5f\xa6\x33\x48\xe3\x3c\xef\x27\x71\x01\x5b\xd5\xae\x8b\x65\x8a\x2c\x7b\xe9\x32\x6b\xd6\x45\x4b\xf0\x02\x59\x2a\x08\x96\x31\x79\xae\xaf\x1c\xc1\x26\xd6\xba\x8c\x75\xb8\xf1\x30\x2c\x62\xad\xc8\xd0\x0f\x5f\xa6\x95\x52\x43\x5a\xa8\x21\xad\xc3\x4d\x67\xc2\x91\xf8\x6f\x54\x61\x5c\xc4\x4a\x74\xde\x16\xa5\xf7\xf7\xae\x04\x54\x8a\xef\xde\xe0\xb1\xd1\x94\xe0\x81\x37\xf7\x8a\xc9\x09\xcf\x73\x29\x3b\xa8\x78\xe5\xbd\x78\x11\xc3\x36\x63\x69\xb8\x34\xa0\x64\x1c\x88\xe3\x5a\x4a\xa6\x5b\x77\xc0\x56\xad\x03\x66\x7a\xa8\x9d\xb0\x09\x8f\x6d\x2e\x11\x28\x73\xac\x35\xa4\xad\xdb\xe6\xf1\x6a\x77\x00\x46\xb0\x0f\x4a\x52\xee\x0e\x59\xf7\xe9\x02\x4a\x56\xee\x7c\x31\x42\x87\xa6\xb5\x8e\xc3\xa3\xdb\x95\x0e\x52\x8f\x4a\x17\xb5\x69\xf7\x01\x0a\x90\x24\x57\xb1\x66\x0c\xc0\x36\x1e\x94\x1e\x6a\xee\xd0\xc9\xf2\x60\x94\x26\xcd\xf5\x0e\xcd\x3f\x8f\x3b\x18\xc7\xb3\x98\x64\xb1\x91\x5f\xd2\xd2\x14\x7c\x1d\xd7\xc3\xde\x1f\xc7\x84\xcf\xae\xe3\x39\x7c\x8c\xc9\x71\xec\xfb\xc7\x71\x33\xec\xfd\xc7\x58\xd3\xe7\x8f\xf1\x6c\xad\x51\xf6\x59\x6c\xa3\xde\x7f\x8c\x61\x1d\xc3\x59\x5c\x13\x79\x4d\x25\x72\x16\x17\xa6\xc5\xb9\xa2\x80\xba\xe6\x79\x0c\xd7\x31\x86\x88\xa9\x4f\x95\x81\x79\x6f\xf4\x48\xb2\x18\x9b\xea\x37\xfa\x03\x99\xfe\x51\x7d\xe4\x26\x06\x5b\xd4\xf8\xd0\x4d\x3c\xb7\x55\x8b\xc2\x1a\xab\x8e\xe2\x96\xb1\xea\x55\x96\xc8\xf8\xf0\x82\xeb\xcc\xbb\xff\x42\x06\xab\x54\xe7\x69\xa0\x8b\x63\x67\x15\x36\xa6\xab\x32\xe6\x5a\xbb\xc2\x53\x93\xb4\xfc\xbd\x25\x88\x3b\xd4\xb5\xae\x4b\x30\x06\x91\x46\xf3\xf6\x0d\xc5\x7a\x90\x86\x45\xad\xeb\x02\x63\x8d\x27\x91\x07\x3d\x45\x44\x17\x82\x6f\xac\x59\xe4\xc5\xa2\xe3\xec\xeb\xac\x9d\x07\x91\x5e\xdf\x03\x55\xf9\xc0\x2b\xed\x89\x75\xbb\x4c\xbc\xc0\x05\x9c\x67\x52\x72\xf6\xc5\xdd\x49\xbe\x5a\x25\xf4\x8e\x0e\x6b\x96\x3e\x25\x43\xe8\x99\x76\xf4\x5e\x79\xfd\xee\xeb\x0a\xbc\x03\x0f\x97\xef\x70\x01\x9c\x9d\x34\xd6\xef\xef\x31\x1f\x56\x2a\xc6\xbf\xdf\x80\x38\x9b\x1b\x7b\x61\x7b\x77\xf3\x7c\xa7\x6c\x4f\xa8\x18\x83\x09\x86\x31\x93\x7a\xbf\x75\xd0\xc9\x2c\xbd\x40\x5b\x57\x12\xb4\xab\xe8\xc0\x99\xa6\xc8\x20\xb9\x56\xc3\x5a\x61\xd0\x51\xb1\x30\x91\x87\xc8\x36\x89\x53\xfb\x05\xc7\xd6\xb1\x62\xaf\xf9\x53\x7c\xce\xfc\xf9\xcd\xdf\x65\xfe\x14\xce\xfc\xf9\xcd\xdf\x63\xfe\xd4\x49\xd5\xba\x4d\xa0\x35\x3b\x66\x6b\x0e\xe5\x32\xe0\x9a\xe5\xeb\xce\x8a\x16\x79\x3b\xb7\x8a\xbb\x6b\x75\xdf\x29\xaf\x6f\xb8\x34\xfb\x56\x15\xa9\x35\x6d\xec\x6c\x59\xa3\x56\xaa\x77\x71\x37\x12\x79\x0b\xe8\xc8\x6c\x1e\x74\x96\x37\x0e\xdc\xba\xc2\xc9\x66\xe8\xce\x77\x62\x27\x96\x4c\x3d\x48\x4c\x13\x2a\xa7\x55\x56\x7f\xd4\x7e\x87\x83\x7e\x9f\x76\x81\x6c\x47\x9b\xd6\x14\x0b\xa7\xef\xef\x98\x84\x33\x3b\xff\x83\xe6\xd6\x40\xc1\xc6\x58\xad\x63\x2f\x19\x7b\xf5\x49\xfc\x8f\xb6\x57\x1b\xec\xeb\xc1\xd6\x58\x7c\x0f\x93\x30\x4d\x03\x2f\xbb\x3c\xb8\x8e\x17\xf2\xe2\x80\xde\x6c\x42\xb6\xf0\xc0\xda\xb2\xe3\x85\x3e\x47\x0d\x84\x0d\xde\xc7\x2c\x95\xf1\xf2\xf6\x40\xdf\xf8\x67\xd2\x0b\x3c\x7d\x5b\xfc\xe0\x9c\xca\x6b\x4a\x99\x57\x14\x30\x73\x1a\x93\xdd\xe5\xdb\xc5\x51\x96\x07\x1d\x4d\x19\x52\x3d\x31\x0f\x66\x72\x78\x76\x85\xbc\x0f\xac\xa7\xff\xe7\x0d\xd4\xd4\x76\x31\x5e\x83\x1c\xe2\x81\xad\xef\xe1\x39\x0e\xbe\xa0\x2b\xb3\x55\xfa\xc2\xe1\x05\x4f\x16\x54\x28\xfc\x79\x4f\x73\x97\x37\x12\x79\x6f\x12\xaa\x70\x83\xf9\xa4\x87\x1b\xdd\x83\xe9\xb4\xe7\x61\x30\xcb\x1a\x47\x7a\x51\xed\xb2\x19\xde\xc3\xac\xe5\xd9\x9a\x8b\xd2\x26\xbf\xd3\x4e\x11\xcb\xaa\x9d\xa7\x69\x67\xbc\xf0\x02\x39\x6c\xd0\x5c\x30\x54\x30\xf0\xfe\x5d\x8d\xbf\xbd\x21\x6b\xbe\xa0\x81\x17\x25\x71\x74\xe9\xc1\x86\xa7\xb1\x26\x56\xde\x39\x97\x92\xaf\x0f\xec\x6e\x79\x65\xbc\xb4\xad\xf1\x8c\x0c\x46\xb0\xa0\x49\x78\xfb\x5d\xbc\xa0\xc1\x83\xd1\x08\x96\x49\xbc\xd1\xdc\x4a\xa1\x81\x25\x4b\x3a\xa0\x44\x21\x1a\x4f\x87\xd2\x4d\x6a\x6b\xb8\x0f\xdc\x1b\x31\x72\x45\x2d\x6e\x9d\x97\xc4\x1e\x98\x68\x0a\xc3\x5d\xa2\x8d\x04\x2e\xf6\xfb\x57\x98\xbe\x03\x0a\xc6\xd1\x82\x36\x39\x17\xed\x5d\xa1\x13\x71\x07\x72\xd8\x26\xe0\x3b\x2e\x16\x2d\x78\xda\xe7\x6c\xd1\x3e\xeb\x2d\xb7\x8b\xd6\xeb\xd2\x01\x43\xe1\x4a\x3c\xb7\xce\x18\x27\xf1\x3e\x67\x8c\xcb\xb8\xee\x8c\x71\x12\xdf\xe5\x8c\x71\x14\xff\x0e\x67\x0c\xd3\xfd\x61\x9b\x19\x36\xde\xde\xff\x52\x7c\x70\xcc\x62\x19\x87\xd6\x29\x4a\x9b\x3c\x1a\xae\x5c\x15\x3f\x1c\xa7\x87\xda\x73\xa6\x83\x6d\x34\xf1\x59\xea\x3d\xf5\x2d\x06\xb7\x16\x74\x0d\x15\x8f\xa5\x14\xf1\x79\x26\x9b\xec\xb3\xc1\xac\x55\x60\x96\xb6\xf7\x91\xa3\x29\xc3\x75\xcc\xb4\x63\x93\xfa\x41\xf6\x57\x81\xfd\x1d\x84\x37\xb6\x83\xf0\x66\x5f\x07\xe1\xcd\x1d\x1d\xa4\x92\x6e\x4c\x0f\xea\xd7\x9e\x2e\x74\x25\x90\x75\xde\x38\x0a\x59\x44\x93\xa0\x61\x36\x6d\x7a\x4f\xd5\x97\xae\x80\x7f\x39\xaf\xb9\x36\x6b\xfa\x2f\xe0\x34\x27\x1b\x6b\x46\xec\xc0\xcc\xdb\xaf\xff\x5b\x5c\xea\x2a\x6e\xee\xb3\x1e\x75\x25\xb0\x7c\x81\x43\xdd\x4e\x5d\xd8\x81\x98\xfa\x51\xb3\x77\x24\xff\x21\xcc\x0b\x8f\x0e\x56\x22\x5e\x54\xf8\x7f\x99\xd0\x9b\xc0\xf3\x2c\x95\xd2\xbc\xcd\xdd\xcc\x4c\x49\x4b\x14\x5d\x3f\xd0\x58\xc0\x53\x14\xec\x1c\xb9\x2e\x8d\x2e\x88\x39\xbc\x58\x71\x04\x35\x37\xbe\x72\x09\x6a\xaf\xa1\xed\xeb\xb7\xb0\x66\x2b\x4d\x6b\x14\x25\xba\xa4\xb7\x0b\x7e\xcd\x82\xd9\x2e\x33\xdb\xa7\x43\x93\xb7\xc6\x86\xee\xf7\x2e\xe9\xad\xa7\x63\xa0\x9e\x5d\x22\x1d\xf8\xe9\x90\x2f\x28\x78\x94\x49\x35\xaa\xf1\x57\x60\xa2\x41\x79\x47\xba\x00\x4f\x15\x72\x6c\x78\x10\x22\x5a\xcf\x9c\xfb\xfb\x3f\x94\x46\x1e\x3c\xf8\xd6\x7e\x66\xe6\x1d\xa9\x67\xf5\x6f\xb8\xa1\xde\xbc\xfc\x9e\x41\x24\xea\x5b\xf3\x7f\xa0\xcb\x22\xec\x6e\x50\x0b\x5f\x43\x7f\x8c\xdb\x4c\x94\x1c\x96\x04\x61\xfa\x45\x8c\x2e\x8f\x0e\xd6\xc9\x41\xea\x19\x27\x4c\xc5\x31\x95\x33\xb2\x00\x25\x45\xc8\xd2\x44\xe7\xa4\xb0\xac\xe3\xa1\x7e\xed\x59\x4a\xbe\xc3\xc2\x7d\xe6\x43\x16\xc4\xae\x42\x11\x9b\x3c\xa2\xde\x46\xc4\xeb\x50\xdc\x7a\x45\x63\x10\x35\x47\xd0\x7d\x03\xd1\xa8\xca\x0e\x43\xfd\x3f\x90\xc3\x33\x8a\xf0\x1c\x17\x93\xc7\x7b\xb9\x8b\xf7\x0d\xee\xe2\xf1\x9d\xdc\xc5\xe1\xef\xe7\x2e\x4e\xdb\xdc\xc5\x49\xcc\x56\x09\xfd\x97\xd7\xb5\xed\xb2\x16\x9f\x53\x72\xa5\x7a\x62\xff\x38\x2d\x57\xb3\xbf\xff\x51\x73\x7d\xa1\x9a\xcb\xf2\x3e\x8d\xb2\x2f\x51\x67\xdd\xd9\xc2\xa4\x85\xe9\xaa\xf1\x05\xca\xae\xcf\xb5\xfb\x1f\xcd\xd7\xdd\x9a\xaf\x2f\x51\x68\xcd\x46\x73\x68\xf1\x24\x69\x0d\xd1\x7c\xb1\x02\x49\x56\xaa\xa3\xb6\xbe\x48\x6b\xb5\x4a\x80\xe9\xd0\x0c\xe9\x0a\xcd\x7d\x9d\xd0\x52\x79\xd1\xad\x17\x22\x74\x36\x9a\xe3\x22\x5e\xa2\x8a\xfd\x6a\x40\x73\x3d\x80\xf6\xdf\x32\xb5\x6e\xfd\xd1\x64\x4c\x48\x69\x71\xda\x33\x32\x1d\xdc\xa5\xb0\xbc\xda\x9b\xff\x63\x15\x4d\xed\xf3\xf7\x7b\x95\x48\x0d\xf5\xc1\xff\xe8\x90\xb4\x0e\xc9\x8b\x12\x9e\xd2\x03\xce\x0e\x4c\x41\xe0\xfd\xf7\xe8\x95\xf6\x9e\x83\x7f\x80\x62\x49\x84\x8b\x98\xff\x57\x68\x95\xbe\x4c\xa9\x74\xb7\x4e\xa9\x5b\xa5\xf4\x66\x2f\xd3\xf7\xb6\xc1\xf4\xbd\xb9\x93\xe9\x3b\xfd\xfd\x4c\xdf\x8b\x1d\xa6\xcf\x9a\xda\xff\x85\xd8\xbd\xff\x0a\x95\xd2\xbf\xf2\x25\xc3\x0e\x83\xdc\xff\x25\x1a\x13\xf8\x9d\xaa\xac\x7f\xac\x86\xa5\x6e\x2a\xfa\xbc\x92\xa5\x56\xfb\x4b\xf4\x2c\x5d\xd5\xbf\x44\xd5\xf2\xf2\x5f\x59\xd5\xe2\x7a\xeb\xd6\xab\xd4\xa7\xfc\x3f\xaa\x95\x7f\x86\x6a\xe5\x7f\x94\x26\x7b\x94\x26\x2f\xf7\xd2\xcf\xd7\x0d\xfa\xf9\xf2\x4e\xfa\xf9\xe2\xf7\xd3\xcf\x7b\x6d\xfa\xf9\x8e\x5d\x32\x7e\xfd\xdf\x73\x99\xde\x06\xe1\xda\x83\x41\xda\xd8\xc3\xe5\x5a\x28\x11\x48\x19\x62\x98\x3a\x50\xa2\x8d\x6d\x28\xf9\xd2\xb2\xec\x60\x13\x8a\x70\x9d\x7a\x76\x4c\x0d\x04\xa8\xef\xb0\x68\xb6\xde\xa4\x6c\x42\x6e\x85\xd2\x9e\x7a\xd5\x63\x5c\xf6\xe2\xf5\xc6\x0c\x86\x2e\x82\xde\x7f\xe8\x4e\x0a\xaf\x64\x8a\x5e\xed\xdd\xd4\xa7\x8d\x4d\x7d\x75\xe7\xa6\xde\xfb\x3d\x9b\x5a\xd2\xf1\x67\x71\x3d\x42\x4e\x33\x38\xfc\x24\x5e\xa2\xce\xab\x0e\x26\xca\x70\xea\xbc\xec\xef\xaa\xa3\xba\xa1\x3a\x19\xb4\xb8\x4b\xc8\xfd\xdc\x8d\x0a\x35\xc6\x61\x15\x21\x52\x91\x55\x30\xaa\x0d\x1b\x7a\x91\x81\xa8\x85\x1e\x2d\xa7\xf7\x29\x56\xe2\x66\x95\x75\x60\x3c\xa1\x0f\x77\xef\x2e\x0f\x06\x6e\x01\x8c\x0f\x40\xfd\xce\xf2\xb4\xfe\x10\x6c\x8b\x09\xfd\x8f\x07\xd3\x67\xb1\x5d\x18\xc4\x30\xf4\x47\x7b\x12\x22\x6c\xec\x6d\x84\x19\xd5\xf1\x5c\x82\xcf\x4c\x32\x9d\xee\x4b\xeb\x21\xe1\x73\x4d\x11\xc3\x38\xa8\x8f\x6a\xcf\x90\xf6\xa4\x6e\x05\xfa\xb9\x2f\x20\x06\xd4\x24\x32\x2a\xc3\x7d\x1a\x10\x7d\xd7\x46\x0c\xe9\x13\x8d\x09\xbe\x18\x31\xd4\x18\xdb\xf7\x0c\xcd\xbc\x15\x95\xae\x27\x8d\x07\xbc\x39\x2e\x79\xd6\x4f\x31\xfa\x14\xa3\x6d\x01\xa7\xac\x3a\x66\x1e\xcc\xbc\x34\xbc\xa2\xae\x36\x86\x6d\xa1\x13\x3c\xda\x0a\x65\xd4\x94\x2e\x95\xa3\xad\xa3\xe4\x4b\x35\xc0\xd9\x68\x3e\x94\xfc\xdd\x66\x43\xc5\x61\x98\x52\x84\x6d\xb9\x4e\xb4\x24\x05\x1a\xe3\x02\x56\x54\xb6\xb8\x66\xd9\xe4\xbe\xdb\x33\x40\x5b\x8b\x2b\x5e\x2c\x14\x37\xb9\x28\x8c\x06\xd3\x0d\x79\xf7\x46\xe4\xe7\xd9\xef\x32\x8e\x29\x70\x88\xf7\xb3\xe0\xac\xcd\x82\x33\xc3\x82\xb3\x4e\x16\x5c\x90\x92\x33\xe6\xa4\xe2\x89\x63\x9d\x2e\xde\x24\x44\x8b\x49\xcc\xd5\xfa\xc7\x8e\x99\x7e\xb1\x08\xc4\x30\x5e\x40\x35\x43\xae\x1e\xc3\x28\x52\x0c\xec\xbb\x2c\x5e\x04\xde\x9a\x7a\x20\x68\xca\x33\x11\xd1\x80\x0f\xdd\xcf\x42\x1d\x61\xcb\xab\xd3\x61\xb9\x83\xc8\x41\x8c\x28\x49\x46\x3d\xfd\xda\xfe\xf0\x1f\xac\xc6\x79\xb3\x52\x0b\x88\x35\x78\x99\xa8\x39\xc1\xb6\x19\x09\x26\x48\x38\xec\xba\xdb\x06\x97\x31\x34\xfc\x0e\x82\xf7\x65\x41\xdd\x54\x10\xbc\xad\x8a\x8d\x0b\xf6\xeb\xb2\xc0\x52\xc7\xe0\x69\x6c\x89\xd5\x93\x7f\x9c\xb6\x6a\x0f\x3f\x3b\x3e\x18\xf7\xca\x87\x07\x07\x5f\xfd\x65\xdd\xab\xbd\x7b\xf0\x97\xa4\xfe\xf8\xd5\x5f\x6e\x12\x6f\x2f\x8f\xec\xb8\xe1\x73\x9e\x2c\x7a\x8a\xc3\x39\x3f\x48\xbd\x3d\xdc\x8a\xd5\x2b\x99\x3d\x73\x2a\x88\xd7\xe1\x9a\xe2\x7d\x8c\x54\x93\x61\x5f\x65\x52\x52\x11\x78\xe9\x3a\x4c\x12\xab\x1e\xd3\x1a\x15\xdb\xa3\x85\x81\x14\xba\xc8\x46\x39\x7c\x9d\xae\x44\xc3\xe1\xbe\xb5\xb1\xe3\xd7\x3c\x7a\xc7\x7c\x6d\xb9\x93\x22\xb8\xd0\xdd\xd9\xe1\xd8\x59\xee\x4c\xaf\x31\x35\x39\xec\x40\x39\x48\xa7\x81\x0c\x57\x81\x19\x67\x7b\x74\x4e\x43\x75\x20\x68\x12\xca\x58\x09\xa9\x95\x76\x51\xcf\x67\x9f\xc8\x4a\xc1\x2b\xd9\xa5\x03\xc3\x36\x1b\xfd\x51\xc5\xfb\x2b\xae\xd3\xa0\x19\xa3\x01\x72\x07\xac\x52\xcc\xcc\xe1\x81\x65\x41\x9e\x74\xb0\x20\x25\xb2\xf9\xed\xff\x6e\x1e\xe1\xf9\x3f\x87\x47\xf8\xed\x5f\x92\x47\xf8\xed\xbf\x83\x47\xf8\x6e\x87\x47\x78\xbc\xd9\x78\x5d\x88\xd9\x32\x0f\x41\x8d\xeb\x7d\x72\x27\xd7\xfb\xee\x77\x70\xbd\x7b\x15\x6f\x8a\xb4\xa8\x43\xd5\x1f\x81\x53\x62\x1e\xdd\x48\xca\xb4\x50\x6a\x13\x1d\xd4\xd8\x94\xe7\x31\x32\xff\x6d\x0b\xd0\x2c\x4b\x5a\xa7\xf6\xe9\x4b\x1e\x2e\xe8\xc2\x03\x4f\x67\x56\xbf\x7a\x21\xe9\x3a\xd5\x6c\xc9\xfb\x16\xd3\x42\xdd\x37\x52\x0f\x3c\xab\x2d\x89\x3f\xb9\xa6\x66\x25\xd2\x27\xb7\xe5\x50\x4a\xde\xa6\x6c\xf8\x96\x67\x92\xbe\x51\xb2\xc9\x3e\x4d\xe0\x3d\xa1\xaa\x0c\x8d\xfc\x32\x2c\x1b\x16\xbb\x13\x55\x48\x6d\x5f\x2f\x2b\x2a\x1b\xf5\x9a\xd6\x99\xf2\x15\xae\xba\xb5\xa3\xdf\xd7\xe1\x4e\xd3\xa9\xfb\xce\xee\xb4\xf7\x7d\x4c\x81\x41\x51\xf1\x86\xf5\x5d\x69\xb3\x87\xd5\xe2\xea\x35\x7c\xac\x36\xed\xf1\xd3\xa7\x67\xaf\x1f\xbf\x3f\x7b\x71\x7a\xf4\xaa\x5c\x59\x41\x53\x85\xc4\xdb\x30\xd0\xd6\xdb\x55\x3b\xb7\x63\x4c\xeb\xd8\x1b\xeb\x00\x5f\x6b\x54\x7a\x73\xef\x6b\x82\xa7\xdd\x93\x26\xfb\x1a\x04\x5f\x54\x3f\xd5\x06\x34\xd0\xb3\x7c\x45\x59\xa6\x61\x73\x8f\xf6\xb7\x3d\xe6\xbd\x39\xdf\x98\x3d\xdc\x72\x17\x4c\x28\x86\x38\xe2\xec\x55\x28\xa9\x88\xc3\xa4\x55\xe5\x45\xa4\x3b\x01\x0d\xa2\xce\x7c\x94\x96\xdb\xb6\x09\xe5\x45\xe0\xdd\x77\x05\xf7\xbd\x2a\x9f\x5a\x01\x6b\xca\xb2\xc0\xcb\x52\x2a\xbc\x62\x22\x87\xf5\xcd\x44\xd5\xf9\xa8\x77\xc7\xcc\x51\x0c\x98\xbe\xd8\xa1\xd9\xf8\x3d\xb0\x2f\xcb\x34\x14\x3a\xb4\xa4\xe7\xd9\xbb\xda\x3c\x8a\xd3\x03\xcb\xd9\x56\x37\xb3\xcd\x31\x2b\xed\x67\x8f\xcd\x7b\xcf\xf0\xa9\xa6\xcd\x05\x4d\x12\xbe\xaf\xc1\x77\xfa\x25\x9e\x58\xe5\x69\x50\x45\x5b\x32\x89\x65\x4c\x17\x1e\xd4\x12\xfd\x94\x89\xd3\x46\xb8\x25\xad\x50\x9b\x63\x73\x8c\x8b\xe6\x0c\xd5\x5a\xff\x8d\x33\xf4\x6c\xc1\x59\x14\x8b\x28\xa1\xde\xbe\x89\x79\x32\x5c\x9d\x2d\xc3\x88\xa6\x5e\x39\x19\xd7\xc3\x66\x93\xc4\x51\x68\xed\x42\x8a\x27\xd7\x0c\xef\x62\xe7\x60\x55\x07\x15\xe1\x02\x74\xc6\xd8\x60\xeb\xdd\x4b\x42\xb6\xca\xc2\x15\x1d\x46\x99\xd0\x51\x71\x83\xad\x4d\x1e\xbf\xd3\x43\x13\xb6\xb5\x1f\x40\x0d\xb5\x7e\x79\x3b\xa8\x4a\x77\xf0\x81\x1a\x5b\xbc\x5e\xd3\x45\x1c\x4a\x7d\x15\x12\x3e\x83\x91\xef\xee\xcb\x8a\x08\x3f\xfc\xb3\x44\x04\x1e\x1d\x6c\xf6\x33\xfb\xd9\xe5\xc1\x32\xa1\x37\x3d\xfb\xf7\x20\xe2\x49\xb6\x66\x75\x46\xb4\x3c\x44\x07\xe1\x66\x63\x59\xf4\xda\x9a\x4e\x67\xe6\x7a\xcd\x0e\x52\x9c\x1a\x7e\x3f\x4c\xa8\xa8\xe9\xd4\x3b\x34\xa4\xe0\x31\x7e\xa0\x0d\xb8\x5e\xa5\xbb\xdf\x7c\x6e\xa0\xeb\x78\xb1\x48\x68\xa5\xc0\xb7\xc6\xe8\x1d\xf5\xac\xa8\xa9\x67\x0d\x8e\x89\xd9\x92\x7b\x45\xd1\x12\x4d\x76\x15\xb1\xaf\x79\xcf\x4d\xbd\x17\x5e\x85\x71\x62\x42\x02\x5a\xcd\x2c\x0e\x6a\x96\xfc\x06\x2a\x99\x7e\xe1\x52\x5b\xa7\x80\xee\x19\x5d\x8c\xbb\xf6\x31\x5c\xd1\x03\x19\x4b\x53\xab\x69\xe3\x77\xff\xdb\xf1\x1a\x68\x8c\xad\x34\xe8\x97\xd5\xd5\x7c\x5a\x4b\x71\x21\x3c\x3c\xb7\x6a\xe7\x86\x1a\xbe\x8b\xd3\x99\x96\x26\xf0\x06\xe9\x87\x2e\x8f\x0f\x86\x2a\x60\x3a\xb7\x7a\x22\x2d\xbc\x79\xe6\xe9\x40\x0d\xbe\x2d\xc6\xa9\x4d\x94\xe5\x16\x3a\x89\xa8\xd0\x78\x3c\xd8\x0b\xf2\x6b\x59\x81\x86\x62\xf0\xa8\xa8\x69\x76\x15\x0c\x5a\x99\x2f\xa8\x7b\x3f\xbc\x34\x9c\x60\x4f\xc9\x56\x9c\x85\x49\xb9\xff\x1e\xde\x81\x97\x5d\xd0\x36\xdd\x5e\xc4\x8b\x05\x65\x9e\x89\x59\x23\xe2\x2f\x04\xf5\x45\x2c\x68\xa4\x44\xc0\x34\x98\x59\x30\xad\x01\xa4\x08\xaf\x35\x8d\xf2\xae\x0e\xaa\xd2\x62\x5e\xc2\xc0\xde\x71\x0f\x87\x43\xb3\xc1\x1a\x64\xe7\x41\x63\x3d\x8c\x00\x88\x8b\xc9\x0f\x7b\x35\xd0\x3f\x35\x34\xd0\x3f\xdc\xc9\x8b\x7f\xf7\x7b\x34\xd0\x0a\xbf\xfd\x18\xeb\xb8\x41\x3f\xc7\x5d\x09\xdd\xbe\x8f\xc9\xcf\x71\x95\xbc\xed\x97\x98\xdc\xff\xeb\x87\xf4\x8f\xa5\xd8\x86\x66\x7f\xed\xa1\xf9\x1f\xf1\xfd\x49\xe8\xfb\x7d\xe4\xa9\x35\xf3\x62\xd6\xfb\x39\xc6\xbe\xff\x63\x8c\x7e\x8e\xc1\x94\xed\x86\x12\x5a\xd1\x46\x40\xb4\x5a\xe4\xbb\xef\xe3\x5a\xb0\x8f\xe1\x5a\xdf\xd9\xfe\x25\xc6\xb3\xf1\xbc\x9d\x12\xd4\xd3\x84\xcc\x84\x9b\x8f\x49\x3a\x5c\x82\x0c\x3f\x17\xd9\xbf\x8c\xfe\x0d\x82\xdc\x2a\xce\x87\x13\x46\x91\xc0\x10\x13\xee\xee\xcd\x67\x64\x04\x11\x99\xcd\x27\xf1\xa3\x6c\x82\x19\xe1\xb3\x6c\x30\x98\x83\x9a\xe3\xaf\x76\x70\x02\x18\xce\xf3\xc8\x78\xf6\xc9\xe9\x8c\x81\x98\xb1\xf9\x3c\x50\xff\xd6\x82\x7c\x14\x40\x43\xb2\x75\x31\x46\x64\x88\xfa\x23\x0c\xd6\x8f\x4f\x3d\x8d\x71\xe1\xae\xd7\xd7\x63\x35\xd8\x78\x7e\x2e\x80\x5b\x01\x65\x30\x93\xdd\xc9\xd1\x10\x55\x41\x21\x58\xd8\x0e\x1b\xd6\x14\xdc\xe3\xd4\x22\xa2\xf3\x84\x56\xc1\x15\xe8\x15\x65\x15\x9b\x92\xa2\xad\xc9\x97\x0f\x22\x6c\xe6\x3d\x70\xaa\x51\x05\x30\x8c\x3c\x41\xde\x9a\xca\xd0\xc3\x20\xc8\x08\xca\xd8\x4e\xf5\x4f\xe4\xf9\xce\x48\xd4\x6c\xe2\xc6\x26\x51\x1d\x71\xdd\x5a\x2c\xb7\x26\x1e\xc4\x8b\xa7\x81\x77\xec\x0d\x7a\x83\x81\x80\x6b\x1a\x5e\x3e\x55\x42\xe3\x56\xed\x76\x01\x21\xa9\x12\x17\x6c\xdf\x1e\xfd\xf8\xee\xc5\xdb\xa3\xa7\x41\x7f\x0c\xcb\x30\x95\x3f\xd0\xdb\x60\x37\x78\x5f\x2d\xa8\xab\xcb\x6e\x54\xcb\xc1\x2f\x03\xb4\x9b\xb7\x7c\xea\x9d\x78\x81\xf7\xc6\xc3\x03\x9d\x09\xbb\x7f\xa6\x63\xdd\x9b\xee\x78\xad\xbb\x67\x9e\x89\x34\xe4\x9e\x8f\xbc\x49\xac\x36\xa4\x0c\x94\xc8\xe6\x43\x37\x27\xcd\x0e\xfe\xe4\xa6\xb3\x3b\xcc\x3d\xdf\xe8\x8f\x1a\x9f\xe8\x8f\x77\xbf\xe0\xd6\xa8\x00\xce\x9e\x09\x4a\x3f\x75\x6a\xc6\x59\xe8\xfb\xe1\xd0\x2d\x99\xef\x73\x1d\xa5\xca\x7e\xd6\xf7\x63\x9d\x4f\xbe\x28\x26\xdf\xcd\xd8\xdc\x66\xa5\xe6\x21\x41\xa2\x6a\x03\x22\x1c\xda\x65\x56\x3f\x6b\xd3\x51\x8f\xee\xdb\xd0\x9c\x9a\x11\x8b\x24\xd7\x58\x4d\x96\x4c\x5d\x96\x48\x42\x0b\x0c\x71\xd8\x9d\xa2\xaf\x1e\x44\x1f\x12\xc2\x7c\x9f\x0d\xe5\x45\x28\x61\x49\xfa\xa8\xcf\xf2\xbc\xcf\x86\x8f\x4f\xce\x8e\x5e\x9f\xbe\x7d\x71\x74\x82\x61\x53\x15\xbf\x38\x29\xe3\x5b\x61\x58\xd4\xca\x5f\x9f\x1e\xbd\x7d\xfb\xee\xcd\xe9\xd1\x53\x0c\x17\xe4\x8d\x44\x14\x12\x18\x0f\x96\x83\x05\x86\xab\x2e\xd4\x21\x7c\xff\x9c\x2b\xf4\xc0\xe8\x75\x8f\xab\xf3\x0b\x12\x17\xf5\x18\x45\x35\x34\x33\x45\x97\x6a\x09\x17\xd3\x0b\x24\x67\xa3\x39\xc8\xd9\x78\x0e\x57\x38\xa8\x3d\x62\x1c\xe8\xd7\xb6\x18\x17\x6a\x6b\x37\x58\x10\x39\x71\x41\x71\x77\x63\x2b\x21\x4e\x4e\x35\x3c\xec\x06\x12\x3b\xd5\x18\xa3\x17\xa7\xc6\xc6\x29\x8d\xde\xcd\xd3\x3a\xc1\x1b\x8e\x38\x36\x18\x2f\x26\x23\x08\x49\x24\xab\xb4\x28\x93\xf0\x51\x3c\x89\x4d\xb4\x60\x94\x91\x5b\x24\x67\xf1\x1c\x63\xdf\xcf\xea\x81\xd0\x78\xe8\x02\x67\x65\xf5\x84\xc8\xdc\xa0\x2e\x41\x78\x99\x61\x54\x7d\x25\x22\x42\x1b\x13\x26\x7d\x94\x92\xc8\x22\x4a\x17\x26\xd1\xe0\x78\xf5\x25\xe7\xf8\x52\xa1\xf3\x32\xca\xac\x50\x00\xa8\xd6\xa0\x9d\xf4\x29\xf3\xfd\x6c\xff\xd8\x8a\xdd\xb1\x41\xb8\x0b\x56\xea\x14\xa1\x46\xa0\x40\xda\xb1\xa4\x2f\x58\xc4\x85\x30\x41\x69\x10\x9b\xb2\x81\xd7\x53\x7c\x02\x1e\x78\x31\xbb\xe2\x56\x82\xaa\x12\x68\x16\x90\xed\x7e\xa9\xcc\x24\x68\x72\x4c\x48\xa9\x83\x9a\xe9\xe8\x45\xac\xde\x34\x0a\x75\xd4\x95\x74\x43\x23\x1d\x71\x08\xd2\xb0\x23\xec\xaf\xd0\x41\x14\x99\xc2\xbb\x8a\xd0\xea\xa4\x33\xb3\x28\x9c\xfb\x3e\x43\x14\xa2\xf0\xb3\xd4\xb5\x1e\xc2\x4d\xa1\xd0\x24\xd4\x38\x7c\x19\x92\xda\x79\xde\x84\x36\x5c\xce\x22\xac\x87\xcb\x99\xec\x89\xeb\x76\x30\xee\x13\x17\x07\xea\x78\x89\xbc\x57\x3a\xfc\x50\xb8\x53\xae\x10\x84\x87\x21\x23\x62\xaa\xf8\x4e\x2f\xf0\xc2\xc5\xc2\x83\x88\xf0\x99\x9c\x43\x4a\x22\xdf\x8f\x6a\x2c\x47\x42\x22\x58\x92\x6d\x01\x9b\x8e\x85\x48\x67\x72\x3e\x91\x12\xa5\x20\x41\x77\x43\x88\x9c\x76\xd1\xc4\x5a\xb6\x04\x13\x3b\x69\x14\x58\x97\xa8\x22\xf0\x4c\x86\xe7\x3d\x6d\xfb\x48\x91\xf9\x95\x49\x78\xd7\xdd\x4f\x11\x78\x2b\x9d\xe1\xa5\xf3\xdb\xae\xb9\xcb\xee\xb6\xb7\x8f\x8b\x30\xfd\x7b\xc6\x50\xdb\x15\x76\xf7\xc4\x81\xd9\xa9\x1b\x6c\x73\xa8\x80\xb1\x23\x80\x5b\x94\xe7\x7d\x14\xe6\x79\xa9\x66\xf2\xfd\x16\x2f\xa1\xe3\xc6\x45\xd8\x05\x97\x43\x26\x38\x2a\xd2\x76\x3e\x8c\x13\xc2\x14\xd4\xd4\x52\x05\x23\x0a\x0a\xec\x33\xc5\x49\x94\x24\x44\xf1\xb5\x3a\x60\x9a\x1b\x4a\x7f\x64\xdd\xd9\x17\x3a\xc8\x6a\x02\x17\x64\x31\xcb\xe6\x28\x9c\x6e\x8b\xe0\x60\x04\x63\xdc\x27\x0b\xb8\x22\xcd\xb1\x2c\x86\x17\x61\x8a\x8c\x6f\xeb\x2d\x69\x47\xc7\x35\x81\x60\x75\x60\x5c\x58\x93\x7e\xa8\x88\x5b\x23\x98\xaa\x3d\x9f\xd2\xc4\x75\x05\x4a\xbe\x9e\xd0\x83\x83\x09\x96\xea\xcb\xb4\xca\xb5\xdb\x97\xfa\x3b\x07\x3a\x0d\xfb\xe4\x36\xcf\x11\x4a\x1a\x4c\x91\x3e\x11\x61\xa8\x09\x89\x4d\x9c\xb3\x1b\x6d\xd3\xd2\x33\x77\xf0\x7f\xe5\x5d\xf1\x99\x91\x20\x8d\x20\xae\xd8\xf7\x45\x5f\x27\x8a\x5a\x21\x4e\x6a\xb1\x4e\xb1\xef\x73\xf5\xa2\x1e\xb2\xef\x57\x8e\x24\x70\x85\x3d\x91\x9d\x11\x24\xb8\x99\xc6\x9b\xf9\x7e\x1c\x22\x06\xff\x3f\x79\xef\xba\xdd\xb6\xed\x2d\x0e\x7e\x9f\xa7\x90\xf8\x4f\x39\x40\x05\xcb\x92\xd3\xe6\xb4\x54\x50\x4e\xe2\x5c\x9a\x34\xb7\xc6\x49\x9b\x56\xd6\xcf\x0b\xa6\x20\x8b\x31\x45\xaa\x20\x68\xc7\x11\xf9\x44\xf3\x08\xf3\xed\x3c\xd9\x2c\x6c\x00\x24\x48\xd1\x49\x7e\x67\x9d\x33\x6b\xd6\xfa\x7f\x91\x48\x10\xf7\xcb\xc6\xbe\xef\x6c\x5e\x2c\xc8\x4e\xdd\xa4\x41\x46\x9a\x0b\x34\x10\x15\x26\x99\x5a\x4a\xd7\x45\x23\xc9\x5b\x7e\x65\x13\x4c\xd0\x55\x59\x6e\xb0\xef\xa3\x2d\xb2\x27\x09\x93\x2d\x82\xed\x0c\xc1\x62\xb6\x08\x8e\x07\xc6\x04\x6d\xca\x72\x8d\x55\x4a\x81\x15\xf6\x9c\x8f\xa3\x84\x33\xe1\xfb\x26\xc6\xba\x79\xaf\x56\x73\xb9\xa0\x09\x51\x18\xf0\x45\x92\x9d\xb3\xc4\xf1\x4f\x96\x0c\x69\x54\x91\x15\x38\x13\x54\x33\x4c\x58\x59\xa6\x0a\x4c\x9d\x48\x91\xa5\x17\x2a\x8d\x08\x5c\x01\xaf\xd9\xeb\xa5\x77\x7b\xe0\xa0\x3e\x20\x5d\x01\x53\xe8\x06\x18\x75\x9c\x99\x81\x22\x83\xb3\xad\x83\xf6\xf2\x36\x71\x7f\x65\x2b\x1a\x51\x0c\xfb\x42\x92\x8c\x70\x4c\xb6\xea\x49\xeb\x5f\x70\xe3\x1c\x2c\xe7\xe0\x55\x1b\x93\x55\x2c\x72\x69\x3d\x7b\x25\xac\x79\xce\xe3\xcf\x3c\x98\x54\x30\x66\x45\xdc\xc7\x9f\x39\x35\x1e\x66\x87\x34\x86\xe5\x8c\x89\x54\x97\x8a\x5e\x4e\xe9\x2e\xa7\xe6\xb1\x92\x98\x2e\x99\x22\x73\x8a\x5b\x91\xac\x82\x02\xe2\x97\xd3\xa8\x15\x64\x3a\x0f\xad\xae\x69\x1a\xa0\x62\xac\xfa\x45\x73\xba\xd3\x7d\xcf\xe8\x4a\x6d\x79\x45\xcd\x80\xd8\xb7\x8e\xed\xac\x88\x89\x38\x2b\xf2\x40\x50\x5d\x86\x80\x7b\x4f\x33\x20\xc1\x37\xd9\x95\x56\x20\x23\xc5\x18\xc6\x5d\x96\xc8\x3c\xd1\x5c\xc7\x1a\xd2\x38\x84\x7a\x63\x61\x01\x83\x1e\x8d\x02\x69\x1e\x88\xf7\xc4\x1b\x82\x0b\x49\x54\xe8\x3b\x66\x9e\x2d\x68\x8e\xd5\xce\x27\x51\x5f\xc8\x31\x22\xf4\xf8\x74\x97\x01\x31\x32\x75\x58\xf4\x41\xd4\x15\x99\x08\x06\x42\x77\x68\x96\xce\x52\xab\xa6\x11\xaf\x10\x84\x7d\x77\xdc\xed\xa7\xb5\xdd\x7f\xc1\x50\xe6\x5c\x61\x3b\xd8\xd5\x41\x2f\xb8\x71\xdd\x2a\x42\xab\xc0\x46\xb4\xcd\xe1\x74\x6c\xa6\x88\x0e\x27\x44\x2b\x8a\xa8\xd9\xf4\x7d\xd4\xbc\xd0\xe6\x51\xcf\x94\xf5\xfe\x6a\x4e\x15\x9f\xa7\xba\xea\x05\xb1\xdd\x9f\x99\x26\xa8\xd4\xeb\x68\x43\x93\x86\x76\x53\x19\xd1\x05\x3c\x57\xa6\xa2\x1e\x9d\x98\xc6\x69\x5d\x64\xbd\x9e\x42\xd0\x5e\x8b\x13\xe8\xd6\x20\xb2\xaa\xed\xe2\xcc\xf6\xca\x4c\x72\xd3\x37\x77\xa8\x6a\x3d\x33\x3d\x1a\x61\x77\x41\x3d\xde\x0c\x13\x6e\xfa\xaf\x80\x18\xb2\x2f\xe0\xf3\x0e\xc6\x63\x92\xe1\x39\x53\xfb\x86\xc3\x58\x0e\x0e\x9a\x71\x1d\x1c\x18\x24\x71\x38\x4c\x2b\x62\x6e\xb8\xd6\x10\x6b\xe9\x33\x49\xeb\x81\x0a\x45\x23\x7c\xab\xe3\x43\x72\x17\xcf\x38\xe5\xa1\xd6\x7e\x0f\x52\xb3\xac\xe0\xae\x4e\x58\xa7\x41\x46\x99\x17\xaa\x9f\x41\x28\x2a\x33\x0d\x33\xcc\x29\xaf\x07\x5d\x91\x35\xeb\x23\xf7\x87\xc3\xa8\xf1\x37\x8b\x49\x67\xe7\xa5\xe1\xae\x85\xf9\xd5\x0b\xd7\x2c\x97\x45\x14\x54\xcb\x46\xbd\x3f\x6f\x15\x71\x62\xd0\x15\x5d\x44\x82\xe3\xaa\x0a\x76\x6c\xd9\x67\x39\x6a\x73\x4b\xda\xe4\xd7\x9d\x64\xbe\x9f\xb4\xfb\xe9\xa9\x15\xf1\xc8\xae\x1f\x4d\x35\x93\x0f\xcb\x56\xc1\xa5\x44\x6a\x78\x1f\xf4\x23\xa3\x6d\x87\xba\x99\x81\x79\x00\xfb\x04\x78\x77\x54\xb9\x3b\x2e\x53\x15\x48\x6e\x7c\x3a\x0a\xeb\x23\x55\x02\xd7\x85\x07\x10\xf2\x42\xfb\x48\x75\x81\xf2\x9e\x47\xc7\xfe\xb3\x0d\x7e\x52\x53\x73\xde\x66\x40\xbb\xd6\xeb\x9c\xba\xc7\xa3\x36\xc3\xd3\xcd\xfb\x3e\x32\x67\x34\xa5\x69\xa8\xcf\x53\xa0\x03\xb7\x99\x6d\x8f\x43\xeb\x33\x95\x5b\xa7\x90\x00\x99\xfa\xfc\xa6\x3a\x39\x8c\x4f\xfa\xae\xeb\x54\x5d\xd4\x7c\x76\x5c\xab\x7e\xab\x03\xd7\x0a\x93\x34\x6c\x3c\x25\xdb\xa6\xc9\x30\x85\xcb\x21\x67\x10\x41\xd3\xf8\x03\x65\x1d\xf8\x8c\x4c\x54\xea\xb2\xe4\xbf\x38\xf1\x3a\x11\xa7\x0d\x99\xda\x04\x15\x9e\x10\x01\xd8\x9a\x09\xa6\x8e\x67\xe9\x7d\x3e\x4b\x47\x23\x1d\x58\x58\xce\xd3\x45\x27\xb0\xf0\x15\xeb\x7a\x89\x6e\x05\xd1\x75\x82\x1e\xae\x81\x87\xa6\xa3\xc4\xec\x15\x72\x02\xce\xd5\xb8\xb2\xd6\x9a\xf1\x7d\xfd\x3f\xb6\x7e\x34\xdb\x41\x12\x7b\xbc\x2b\x9a\x46\x2e\xba\x33\x11\xaf\x6c\x63\x7b\x8c\x28\xb7\x8f\xea\x7a\x6e\x69\x00\x35\xde\xff\x2d\x93\xd6\x12\xe4\x46\x08\xf9\x13\x39\x98\xda\x43\xdf\x84\x09\x81\x18\xa5\x6d\x97\xfb\x48\x6d\x56\xd7\xb5\x7e\xca\x36\x1c\x13\x20\xeb\xa8\x8e\x0b\x7e\xc2\x75\xd9\xb0\x35\xa2\xa0\x15\x50\x45\x65\x84\x68\xe5\xef\xe3\xf2\x19\x4e\x25\x0a\x83\x9f\xca\xe9\xbd\xf2\xee\x11\x46\x61\x60\x42\xea\x62\x5d\xc3\x9d\x43\x1d\x5b\x3c\xc5\xa1\x19\x5c\xad\xe8\xa1\x9d\x94\xb2\x56\x54\x54\xa0\xd3\xd5\x06\x68\xd1\xea\x57\x2c\x89\x97\x03\x26\x25\xdf\x6c\xe5\x40\x66\x83\x1c\x02\x47\x0d\xd2\x2c\x3d\xb0\xec\x90\x9a\xe2\x1f\x9f\xa6\xcf\xd2\x41\x26\x96\x5c\xa8\xac\xe7\xbc\xe6\x98\x10\x28\xc0\xc0\x6d\xb2\xe6\x3d\xe4\x83\x4d\x91\xcb\xc1\x9a\x5d\xf1\x01\x1b\xcc\x3b\x2b\xbd\x40\x78\xa0\xb5\x1e\xc6\x36\x58\xfc\x79\x2f\xef\xf9\x4a\x6d\xad\xb2\xbc\xd1\x7f\x17\xfa\x6f\xc3\x10\xae\xc8\x19\xeb\xd0\x34\x29\xd7\x04\xcd\x97\x78\xc1\x16\x2f\x3e\x63\x15\x48\x6d\x7a\x79\xc2\x29\x47\x10\x78\xa1\x3e\x7a\xd7\x8c\xbc\x66\xe4\x23\x23\x9f\x18\xcd\xc6\x6f\x44\xb6\x89\x73\x4e\x1e\x77\xb9\x0f\x27\x8c\x1e\xa2\x78\xbb\xce\x52\x5e\xc6\xdb\x6c\x59\xc6\x5b\xb6\xc4\xe3\xef\xd9\x76\x9b\xf0\x6b\x7e\x7e\x19\xcb\xc3\x58\x2f\x9a\xda\x1c\x97\x8c\x7a\x26\x82\x2d\xc4\xd2\xc9\x6c\x3c\x5b\x4c\x8e\x55\x3b\x89\xe1\x96\x90\x07\xea\x2d\xe7\xf2\x99\x15\xd8\x92\x3f\x54\x0a\xe0\x49\x4d\xda\x3b\x95\x66\x23\xe2\xbe\x51\x2f\x2f\x79\x9e\xb3\x0b\x7e\xbc\x66\x69\xca\x13\xf2\x56\xa5\x3d\x8a\xf3\x2d\x93\xd1\x9a\x3c\x63\x74\x42\x5e\x30\xba\xab\xc8\xab\xbd\x43\xfb\x82\x75\xc2\x85\xaa\xd9\x30\x97\xe1\x0b\x36\x97\x0b\x8b\x97\xc0\x0b\xe1\x20\xa4\xbe\xf3\x65\xe9\x01\xde\xbd\xd2\xbc\x76\xf2\xb2\x9d\x51\x25\x8f\x97\x4c\x32\x5c\x91\x47\xed\x4f\xd9\x78\x9b\xe5\xd2\x8c\x03\xc9\x91\xe7\x91\x63\xa6\x8f\x6d\x94\x25\x23\xef\xf0\xd0\x1b\x1d\xb3\xf1\x3a\xcb\x15\x6c\x78\xc0\x7c\xff\x0f\x85\xec\x3f\x68\xd7\xd2\x28\xc6\xcd\x15\x52\x37\x9d\xed\x21\x24\xe9\x0c\x9b\x98\xab\x0d\x62\x92\x8e\x46\x8d\x2c\xe2\x05\x9b\x8f\x46\xcf\x58\x2b\x38\x4d\x5f\xb8\x77\x19\xca\xe0\x49\xd3\x34\x36\x7a\x7b\x06\xee\x73\xd0\x08\x40\xcf\x18\x26\xcf\x58\xa5\x56\xd1\xed\xa6\x3b\xa5\x15\xb9\x64\xe1\x75\xfb\xfb\x3b\x06\xf7\xd9\xbb\x38\xba\x44\x77\x18\xec\xcf\xe0\x2d\xf3\xfd\xb7\x6c\x9c\x66\xd7\xdd\xdc\x3a\xb5\xce\xf8\x86\xf9\xfe\xf0\x84\x85\xe8\x23\xa3\xe8\x35\x83\xab\xe0\x0d\xc3\xe3\x6d\x26\xe4\x11\x79\xcd\xe0\x61\x3a\xce\xd2\x8d\x9e\x6c\xfa\x92\x91\x6b\xa6\xf0\xb7\x8f\xcc\x5d\x04\x75\x0a\xa6\x18\x07\xd9\x98\x2d\x97\x8f\xaf\x78\x2a\x5f\xc4\xb9\xe4\x29\x17\xbd\x41\x93\x9c\x92\xbe\x3f\xcc\xc6\xf1\x46\xb5\x73\x02\xea\x76\xb9\xef\x1f\x33\x55\x2a\x4e\x78\xa0\x48\x0a\x67\x69\x81\x79\xf2\x88\xe1\x10\x5d\x33\xfa\x88\x91\xfd\xe6\x90\x67\x7a\xea\x91\x97\x0c\xdc\xd4\x04\xd7\x8c\x7a\x59\xaa\xe0\xd7\x0d\xdc\xf8\x3a\xde\x9f\x17\xa7\x83\x8f\xc8\xd3\x2a\x7e\x1e\x6e\x31\x8c\x32\xae\x16\x88\xa7\xcb\xe3\x75\x9c\x2c\x91\x93\x0d\x8f\xf7\x6b\x72\x17\x3f\xb3\x98\xa7\x2e\xa9\x51\x17\xb3\xc1\xdb\x5a\x2a\x5c\xbe\x8b\x37\x3c\x2b\xa4\x5e\x0b\x32\xc1\x06\xaa\x3c\x61\xe4\x33\x23\xef\x19\x79\xc8\xc8\x3f\x8c\x3c\x65\xe4\x57\x46\x7e\x63\xe4\x4f\x46\x55\xa9\xe0\x01\x23\x9a\x14\xfa\x83\x55\xe4\x77\x46\x4f\xc6\x2b\xf2\x81\xd1\x3f\x19\xb0\x19\x9f\xc3\x09\x2f\x24\x80\x88\xd7\xe7\x39\x17\x57\x5c\x94\x65\x36\xfe\x93\x9f\xff\x16\xcb\xee\x17\xf2\x97\xca\xbf\xcc\x22\xd8\xdd\xe4\x6f\x17\x58\xc8\xc2\x81\x6a\xbc\xa0\xbf\x33\x94\x11\xef\x9f\x82\x17\xfc\x65\x1c\x89\x4c\xb2\xfc\xd2\x53\x84\x33\xe5\x85\xef\xf3\xc2\xd8\x8f\xa6\x45\x59\xa2\x27\x6c\x4f\xe5\x83\x70\x40\x3b\x2e\x99\xc2\xc6\xe8\xdf\x6c\xbc\xcc\x36\x2c\x4e\xc1\x42\x8f\x7f\x8a\x25\xc2\xb3\xcf\x6c\x86\x77\x9c\x7e\x66\xe3\x55\x4a\x3e\x33\xf5\xa0\x09\x2d\x71\xb3\x53\xc0\xa4\xc3\xda\xfe\xcc\xc2\x87\x0c\xe1\xe0\x3d\xb3\xf8\x94\xac\x2a\xe7\x05\x6a\x4e\x25\x17\xea\x5e\x18\x9e\xa8\xad\xae\x5a\x7f\xce\x7c\xff\x2f\x16\xa2\x7f\x98\x22\x92\x9e\x32\xfa\x17\x1b\x6b\x25\x94\x77\xfc\x93\x7c\x95\x2d\x39\xf2\x3c\x2d\x9b\x78\xce\xd0\x13\x86\xc7\x99\x9e\x2d\xf4\x94\x91\x5d\xb4\x66\x82\x45\x92\x0b\x10\x37\x29\x6c\x8d\x3c\x6c\x0d\xf6\x29\x03\xa8\x45\x55\xf5\xff\xb0\x0a\x07\xb2\xf0\x7d\x59\x80\x75\x40\x72\xc5\x43\xf4\x2b\xa3\xcd\x2b\xb2\x74\xe6\x6f\x8c\xfe\xca\xc6\x72\xcd\xd3\x4e\x7d\xbf\x31\x8d\x7d\xfc\xca\xc8\x13\x86\x2b\x1c\x3c\x64\xf4\x92\xb9\xc1\x5c\xfe\x76\x20\x80\xca\xe2\x62\xff\x1f\x4c\xe9\x4c\x17\xd6\xf1\xa2\x0b\x92\x15\x24\x2e\x08\x2b\x48\x51\x50\xb5\x60\xfb\xc4\xcd\x6e\x95\x06\x2d\x3e\x43\x35\x7b\xaf\x96\xee\xbd\x6e\x8c\x72\x4c\x3e\x2b\xa0\xfa\x99\x51\x4e\xd4\x32\x60\xf2\x9e\x51\x5e\x91\xa8\xd8\xe7\x31\x93\xd4\x38\xd4\xd5\xbb\x09\xc0\x4c\x9b\xaf\x23\xe0\x82\x69\xc2\xef\x95\x65\xfd\x9c\xee\x4b\x13\x1e\xb2\xe5\xc0\xec\xcc\x81\x1b\x26\x5b\x91\x8a\x92\xa4\x54\x54\xb8\xd1\x73\x52\xd3\x4c\xdf\x81\xc6\xba\x49\x52\x77\xbf\x4a\x01\xbd\xce\x82\xee\x7a\xc3\x2c\x01\xc7\xaf\xd0\x57\x53\x52\xec\xa3\x96\x20\x95\xba\x40\x5c\x73\x93\x1d\x76\x1e\x6d\x22\xba\x71\x83\x58\xe6\xc5\x58\xe1\xa2\xe6\xda\x40\x13\xa0\xd3\xa1\x63\x58\x75\x2b\xb5\x13\x53\x91\x55\x7b\xf6\x1a\x09\xfe\x8e\xab\xa1\x07\xc3\xa9\xe1\x0a\x49\x75\xb9\x76\x44\xf7\x36\x8f\x8d\x29\x24\xab\xaa\x22\xdb\xc2\xc2\x86\x65\xd1\xc1\x4c\xd6\x05\xf5\xcc\x34\x7a\xe4\xaa\xd0\x02\x0a\x72\x53\x58\x0f\xff\x45\xcb\xc3\xff\xba\xc0\x64\x53\xd0\x4f\x8c\x9c\x2b\xc8\x50\x2f\x07\x39\x2b\x5c\x18\x72\x5d\x38\x30\xe4\x75\x41\x85\x44\xde\x8a\xcb\x68\xed\x61\xf2\xb1\x80\xa9\x20\x9f\x0a\xfa\xb1\x20\x8f\x0b\x3a\x1c\xa2\xb3\xc2\xf7\xcf\x0a\x73\x02\x01\x96\xfb\x7e\x06\x06\x09\x6a\x70\x90\x80\xc9\x49\xd1\x17\x38\xcd\xf4\xfd\x2d\x2c\x68\x9c\xa5\x90\x99\x5c\x16\xf4\x58\xa2\x75\xd1\x22\x28\x41\x4a\x75\x07\x6d\x20\xf2\x8a\x89\x28\xb0\x29\xb0\x96\x0b\xdf\xbb\x47\x29\x7d\xcd\xdb\x92\xe1\x4b\xb8\x1a\x8b\x3a\xb1\x8a\x57\x48\xc7\x4b\xf5\xfd\xc3\x14\x8c\x1a\x06\x51\xb6\xe4\x06\xdf\x56\x95\xd5\xa2\x64\x4d\xba\x6e\x9a\x53\x3e\x55\x04\x6c\x6b\x61\x5b\x38\x6a\x87\xfa\xad\x30\xb6\x6c\x30\xd4\xa2\x1f\xe8\xae\xc2\xf3\x65\xb1\xa0\x9c\x0c\x15\x31\xb9\xe6\x69\xa7\x1e\xdc\x92\xc3\xa9\x63\x70\x5c\xd0\xcb\xa2\x2c\xf7\x62\xdd\x6d\x8a\xb1\x21\x6a\xf4\x2e\xea\x76\x00\x63\xf2\xa0\xe7\x28\x5b\x16\xbe\x96\xff\x97\x65\x8f\x60\x15\xa2\x9b\xac\x79\x0a\x82\x96\x8a\xfc\xd1\x73\x78\x86\x72\x9c\x66\x32\x5e\xc5\x7c\x89\x77\xcd\x33\x1d\x4e\xcc\x89\x91\x63\xc1\x19\x94\xc9\x67\x45\xd1\x2b\x66\x10\xd6\x65\x01\xc9\xe8\x94\x9a\x40\xec\x9c\xc4\x74\x32\xb3\xee\x76\x7e\x89\x67\xba\xdb\x46\xe2\x4d\xd3\x79\x3c\x1a\x2d\x48\x42\xb3\x30\x1f\x67\x97\x41\x3e\x5e\xb1\x38\x21\x2b\x5a\x43\x0a\xb2\xa5\x16\x44\x90\x25\xcd\xcd\x2d\x05\x57\x50\x12\xa2\xac\x2c\xd1\x11\x28\x05\x0a\xbb\xe9\x7c\xff\x59\x01\x32\xfe\x26\x89\x4e\x31\x19\x4e\x28\xa5\x49\xc8\xa8\x08\xd0\xd2\xf7\x97\xf6\x26\x22\x8c\x26\x48\x60\xb2\xf4\x7d\xb4\x34\x17\x1f\x89\x74\x50\x78\x46\x29\xad\x81\x64\xb8\x45\xe7\x05\xb2\xe7\xf3\x20\x5a\xb3\x38\x1d\x44\x37\x51\xc2\x3d\x8c\x03\x54\xd0\x07\x05\x62\x18\x87\x85\x06\xf0\x8c\xac\xc8\x16\x07\x2b\x95\x16\x6c\x5b\x41\x0f\x97\xbe\x3f\x8c\xa0\x0b\xba\xb5\x2d\x00\x35\x67\x86\x15\x02\xec\x2e\xc2\x94\x28\xb4\xac\x35\xc6\x37\x85\x16\xfc\x54\x15\x79\x77\x1b\xd7\x3b\x9e\x3d\x2e\x42\x84\x04\x6d\x1f\x67\xe4\xc1\x9f\xa7\x65\x20\x00\xff\x39\x11\xaa\xf5\x3c\x4b\x69\x4a\x04\xe8\x5c\xea\xac\x92\x0c\xa7\xc0\xe3\xe8\x40\x00\x24\x30\x0e\x04\xdd\x99\x0a\x02\x4e\x74\xf1\x20\x55\x37\x7b\xe1\xfb\x28\xa6\xd9\xdc\xcb\x52\x6f\x24\x17\x38\x8c\x91\xc0\x81\x57\xa4\x5a\x27\x76\x59\x8f\x43\xd1\xd2\xd2\xf7\x7b\x18\xda\x8a\x70\xca\xd2\x3c\x4b\xb8\xe6\x2b\x01\x24\xf5\x7d\x34\xa5\x74\x2f\x1a\x63\x68\x3e\x2b\x3a\xbd\x7e\x04\x0b\x11\xe4\xbd\xb7\x6d\x0e\x4c\x57\x07\x4d\xe3\x44\xdd\x37\x6f\xda\x67\x6a\x5b\xd8\xfb\xb9\x1b\xd0\x84\x6b\x26\x36\x8b\xd8\x92\x93\x7a\xaf\x2b\xd0\xf4\xb6\x00\x15\x13\xa4\x20\x4a\xeb\x64\x28\xe2\xa0\x18\x6b\xdf\x20\xf5\xe0\xdf\x36\xed\x0b\x92\xe2\xe0\x5d\x81\xfa\x66\x06\x44\x2e\x70\x6d\x3a\xfb\xf8\x92\x95\x25\xb4\x16\x1e\x05\x53\xc2\xf5\x58\xad\x74\xdf\xb2\x3a\x31\xae\xc8\xdb\xa2\x8f\xc8\xd3\x42\x6b\x67\x17\x0d\xe5\x78\xcb\x04\x4f\x65\x45\x9e\x7d\xf3\x3c\xd4\xb3\x30\x73\xc7\x57\xd7\xfa\xab\x1e\x89\x47\xb8\x1e\x5b\xfd\x61\x5d\x7f\xb0\xe1\x12\xb4\x7e\xfc\x8b\xfd\xfd\xdb\x25\x4a\x85\x02\xd0\x1c\xe6\xab\xaa\xc8\xab\xfd\x02\x12\xd4\x2f\x40\x80\xa4\x1e\x40\xb0\x00\x78\x6d\x5a\xc7\x66\xa0\xaa\x59\x00\x49\xf4\x88\xfc\x51\x18\x99\x6c\x45\xee\xec\xd7\xa6\x01\xa2\xaa\xc8\xd6\xec\x56\x08\xb0\x27\x5e\x21\x3b\x0d\x94\x52\x6e\x96\xc0\x01\x10\x83\x08\xa2\xdf\x9d\xab\x0d\x07\x80\x6c\x39\x88\x65\xce\x93\x95\x89\xb8\x24\x14\xbc\xe0\x78\x26\xc2\x0e\x38\x35\x96\x0e\x96\x49\x09\xad\x09\xbd\x18\x9c\xbc\x28\xd0\x9d\x82\xa4\x44\x62\xf5\xf8\x4a\x3f\x3a\x91\x8c\x5f\x15\x10\x46\x0e\x58\xd2\x38\x40\xfb\x43\x9f\x9a\xa1\x4f\x3b\xa5\xea\xf6\x4c\xe9\x6a\x76\xa9\x4e\xf1\xa6\xbd\x2b\x98\xe1\x26\x6f\x0a\xa2\xb0\x8f\x77\xa0\xb2\x21\x0a\x47\x95\xd1\x04\x13\xbf\x2a\xcc\xab\xea\xbd\x44\xba\xdb\xdc\x76\x9a\xbb\xd1\x68\x5f\x15\x48\x37\x49\x90\x68\xb7\x76\x53\xb8\xbc\xeb\x75\x61\x19\xb7\xc4\x42\x46\xf5\xac\xf7\xaf\x7a\xaa\xc1\x67\x30\x5f\x90\x7a\xd7\xa9\x2f\x9a\xd7\x6d\xb1\xb0\x86\xc5\xed\xc8\x80\x0b\x86\x36\x85\x2b\xde\x52\x17\x66\xd0\x2b\x69\x23\x19\x89\xe9\x85\x19\x20\x61\xf4\x63\x81\x50\x4a\x37\x45\x13\xc5\x0a\x65\xf4\xd2\xb0\xf7\x5d\x51\x77\x59\x6a\x56\x30\x12\xf4\x12\x65\x78\xfe\x98\x2d\x70\x98\x06\xef\x00\x9a\xd6\x3c\x0c\x36\xce\x2e\x69\x8f\xe6\x82\x2c\x4b\x49\x18\xdc\x8f\x7d\xb8\x17\xf7\x7d\x4e\x2c\x11\x47\xf5\xc9\xd4\x2f\x96\x9d\x1d\x9b\xb3\xae\xf6\x72\xdc\x5c\x36\x86\xa1\x82\xc9\x64\x48\x63\xbd\x4b\x7c\xff\x8f\x02\xc5\x10\x9e\x90\x35\xa8\x30\xac\xd8\xad\xb6\xe8\x80\xfb\x58\x4a\x0f\x24\x22\x59\xb1\x6f\x66\xa0\x90\x78\x51\x10\xbd\x41\x70\x9b\x08\x91\x6d\x0a\xa1\xde\x33\x2e\x91\x60\xf7\x8f\xa2\x13\xc6\x2b\xfa\xb1\x17\xcc\x49\x4a\xe9\xa6\x28\x4b\xf5\x1f\x17\x21\xe8\x4b\xa9\xe6\x82\x4f\x70\x69\x92\x9e\xd9\xfb\xa4\x48\x29\xa6\x90\x69\x97\xdb\xac\x88\x3f\x29\x91\x9b\x48\x3c\x95\xba\x17\x99\xae\x71\x54\xe8\x6a\x90\x6d\x0a\xd4\xc9\xc7\x0a\x1b\xe4\x52\x6a\xa7\x4d\x7a\xde\xf4\x4b\x2b\xd2\x57\x5f\x2f\x5f\x17\xbe\xdf\xd6\x1f\x68\xac\x50\xdd\x68\x67\x93\x8a\xec\x00\xc5\xef\x5b\xad\xa4\x40\x9b\x82\xbc\x2e\x0c\xcf\x2b\x6b\xe4\x7e\xc0\x49\xc5\xb8\xa3\xa2\x70\x2d\xd8\xd6\xa9\xfc\xb2\xa8\xc8\xce\xc0\xb8\x60\x53\xe8\x60\x96\x00\x0f\x60\xbf\xe4\x0c\xe8\x92\x18\xe8\x0c\xf5\xe4\x70\x79\xd7\x45\x97\xbf\x0b\x95\xe9\xa5\xed\x91\xe7\x7d\xb4\x40\xa4\xd6\xfb\xd1\x59\xf5\x14\xd6\x7b\x8d\xf0\x7a\x8f\x56\xdf\xd6\x1e\x6c\xb0\x5b\xe6\xc6\x91\x3b\x7e\xb1\xaa\x63\x55\x15\x4b\x92\x5b\x9c\x2a\x90\x54\x75\x9f\x63\x22\x68\x4d\x5b\x82\xc8\xd8\xa0\xb2\x71\x17\x57\xd0\x3b\x48\x91\xc5\x35\x29\x4a\x62\xf0\xf3\x4a\x27\xa4\xa0\xd3\x59\xcc\x90\x24\x7b\x7a\xca\x11\x65\xa3\x11\xc9\xe9\x70\x3a\x8b\xf5\x49\xb6\x0c\x8c\x62\x34\x22\xa9\xbd\x37\x24\xee\x12\x27\x12\xef\xf2\xb2\x44\x39\x40\x83\x79\xb4\xa0\x92\x1c\x1c\x14\x65\x29\x50\xac\x88\x0d\x92\x01\xf2\x51\x27\x55\x0d\x80\x8a\x2d\x32\x96\x21\x13\x36\xad\x45\x31\x0b\x16\xdd\xe6\x69\xa2\x33\x29\x30\x11\x59\xdf\x44\x64\xed\x89\xe8\x19\x7b\xd6\x1d\x59\x33\xcb\x80\x36\x39\xfd\xcd\x6c\x7f\x05\xca\xf6\xfb\x6b\x63\x52\x77\x89\xa2\x7d\xbe\x78\x23\xa4\x6b\x04\x74\x5d\x54\x14\xd4\xc4\x67\xe2\xbe\x25\x78\x66\x62\x34\xc2\xe9\x5c\x2c\x1c\x33\x6e\xb1\x68\xe4\xa1\xfa\x0c\x72\x8d\xd7\x3c\x2a\x6e\x97\x78\x39\x8e\x74\x0a\xc7\x36\xc0\x46\x16\x84\xde\x2c\x14\x3a\xfd\xa8\x68\xb4\x55\x6d\x91\xcf\x85\x2b\xab\xa9\x63\x2d\x36\x19\xde\xbb\x19\x6c\x78\x1a\xdf\xdf\x53\x50\x75\x8a\x3c\xec\xeb\x86\xe5\xa9\xdf\xda\x93\x7f\x8a\x9a\xe4\xb4\xc1\xf6\x1d\x45\xd8\xe6\xae\x03\x54\x6b\x2e\x17\x98\xc0\x70\x71\x5b\x40\x6a\x05\xa7\xb3\xf4\xbe\x00\xe1\xa8\xd1\x08\x04\x57\x86\x72\x9e\x2e\x00\x2d\x6a\xa2\x9d\xc3\x96\x1a\xc4\xe9\x40\xe2\xbd\x09\x6e\x0b\x50\x4c\x8f\x49\xd6\xe8\x24\x9a\x4a\xb3\x05\xc9\x14\x5c\x50\x75\x3d\x2d\xe8\xce\xc8\x57\x83\x27\x05\x31\x8f\x0f\x8b\xd5\xca\xb5\xf7\xbb\x65\x95\x74\xb6\xee\x0c\x91\x38\xbf\xb5\xbc\xb3\x22\xc3\xcf\x45\x2b\xe8\x72\x5b\xbc\x09\x5f\x3b\xda\x75\x5f\x8b\x43\x3e\xb6\x0d\x77\x84\xa5\x75\xba\xe9\xdd\x93\x4c\x6c\x3a\x1a\xfd\xf5\xf8\x7a\x64\xc7\x36\x7b\x27\xcc\xb9\x4d\xae\xda\x93\xf6\x47\xcc\xaf\xbf\xb1\x62\xa7\x94\xef\x3b\x2f\xe3\x38\x57\xb5\x84\xfb\x49\xea\xe6\x07\xde\xf3\x79\x3d\x4e\xfd\xb4\x17\x0c\x5b\x17\x53\x7d\xeb\x86\xf2\x6c\xba\xb4\x27\xba\x56\xd9\x8d\xfb\x96\x9e\xec\x26\x70\x42\x3b\xbb\xde\x84\xc1\x7b\xb5\x75\xde\xdb\x21\x06\x9f\xd5\xeb\x23\x26\xfb\x6e\xa6\x7a\x0b\xa9\xef\x3d\x7b\xe7\x49\x9c\x7c\xb1\x98\xfa\xde\xb7\xe5\x92\xec\xfc\x4b\xc5\xd4\xf7\xbe\xd6\x4c\x89\xe0\x61\xa1\xe7\x8a\xbb\x56\xa8\xcd\xbe\x7d\xaf\x37\xab\x02\x15\xe3\x6d\xbc\xe5\x50\xf8\xfd\xdb\x17\x27\x9c\x89\x68\x0d\xc6\xab\x7d\x92\xdd\xbe\x65\xef\x94\xea\x6c\xab\xce\x57\xbd\x82\x2c\x5d\x32\xb1\x7c\x28\xb2\xeb\x9c\x8b\xc7\xe9\xd5\xbe\x12\x8e\xab\xf5\x50\xaf\x50\xca\xae\xe2\x0b\x26\x33\x51\x96\xde\x5b\x85\x24\xbf\xd2\x0e\x53\x86\x94\xd6\x9f\x14\xfc\x58\x16\x91\x02\x91\xfa\xab\x16\x95\xdd\x9a\xe7\xa4\xf7\x0b\xf6\xfd\x5e\xbd\x8b\xeb\x38\x5d\x66\xd7\xbe\xdf\xf7\xcd\xb2\x75\x71\xa3\xde\xf5\x4f\x41\x36\x5c\x5c\x34\xeb\x3f\x90\x35\xa9\xbe\xab\x9a\x8b\xc3\x44\x74\xdf\x03\xea\x7c\x2e\x16\x3d\xb0\x3e\x0d\xd5\x07\x2a\x91\x51\xe8\x87\xb0\xc4\x34\xad\x1a\x76\xdf\x84\x64\x7b\xbc\x98\x99\xb8\x9f\xc1\xa5\xf7\x4f\x81\xdc\x2b\xcf\xb1\x08\xe0\x15\x59\x72\xbe\x7d\xf9\xff\x59\x9f\x7b\xb2\x49\xb4\xab\xd4\xf7\xff\x9e\xe1\x80\x41\xf2\x72\x4f\x6b\xcb\x64\xf8\x47\x11\xb8\x1d\xa7\xcc\x12\xe6\xb2\x17\x3a\xf3\xf0\x65\x01\x18\x41\x00\xde\xf1\x65\x45\xa4\x88\x7b\x8f\x57\x63\xba\x0f\x06\x8b\x87\xc4\xf3\x70\x93\x74\x9a\x7f\x7f\x07\x92\x2a\x67\x3e\x7f\x75\x2f\x7a\x9e\x46\xd9\x92\xbf\x7f\xfb\xac\xf1\x22\x24\x9d\x0a\xbe\xfb\x61\x72\x78\x11\x13\xef\xff\x72\x6b\xfd\xee\xee\x03\x48\x0c\x5a\x89\x47\x3f\x1c\x5e\x10\xef\x4e\x3b\xed\x18\x32\x92\x76\xe2\x44\x65\x1c\xb5\xd2\x7e\x7c\x08\x19\xe7\xed\xc4\x47\x90\xb8\xf0\xf4\x8d\xfb\x5b\x3f\x93\xa6\x56\x53\x95\x9a\xa7\xa2\xf5\x34\x05\x4d\x11\xc7\xb5\xfe\xfd\xd3\x62\xbc\x07\x75\x10\xc7\x58\xd0\x06\xbd\x42\x3a\xbb\x41\x3e\xe7\x8b\xd9\xd3\xa2\xf6\x43\xb1\xa7\x53\x67\x30\x17\xdf\xd7\x55\x5b\x3d\xab\x90\x8f\xa8\x37\x5f\x78\x01\x60\x2e\xc4\xa9\xa1\x83\xbb\x42\x29\x05\xc8\x55\x21\x49\xe5\x58\x66\xcf\x4e\x5e\xdb\x8e\x04\xf0\xb9\x56\xb0\x02\x4c\xe8\xf9\xc9\xeb\x57\xc6\x1b\x6c\xbc\x02\x2d\x0f\x92\x69\x6c\xff\x57\x85\x4f\x8f\x3c\xea\x8d\x60\x69\xc1\x4a\x41\x07\x55\xc8\x4c\x98\x5a\xdf\x03\x1f\xfb\x46\x7f\x3b\x76\xad\x56\xfe\x97\x87\x67\x60\xc9\x12\x43\x2b\xd2\xa8\x53\x4d\x48\xac\x36\xde\x88\xa2\x83\x29\x6d\x99\xb9\x84\x1e\x0e\xbd\xd0\x0b\x54\xa5\x23\xd1\x78\xdf\x69\x36\xd8\x9f\x85\xf5\x42\x60\xfc\x1f\xe4\x74\xbe\xa8\xfe\x74\x58\x2b\xe3\x22\xe7\xfd\xb8\x76\xab\x98\x09\x27\xb1\x2a\x92\x55\x9c\x24\x7c\x19\x48\xc3\xd3\xe1\x10\xcf\x9d\xb4\x33\xeb\xd3\x7a\x30\xad\x48\xab\x29\xcd\x34\x68\xc9\x79\xdc\x62\x73\xb9\xb0\xde\x54\x9c\x24\xf0\xbb\x84\x3b\x35\x99\xa5\xa4\x9d\x75\xac\x57\xd8\xad\xa3\xed\x41\xcc\xa0\x6a\xdc\xf7\xc1\xa1\x08\x36\x8a\x54\xbf\x17\xf4\xcf\x82\x7c\xb8\x95\xf7\xe9\x54\x9e\x92\x96\xa3\x3d\x49\x2d\xc3\x00\xa0\xc3\xf3\x3e\x1e\xc8\x10\x0d\x65\x59\x0e\xe5\xf8\xec\xec\xf8\xc1\xab\xe3\xc7\x2f\xce\xce\xb0\xb3\x4a\x7f\x15\x2d\x5d\x33\x23\xc5\x6d\x74\x20\x06\x6b\xa6\x6d\xed\xce\x39\x4f\x07\xf6\x12\x72\xf0\xf8\xbf\x7b\x2b\x00\x3d\x88\xaf\x54\x01\x7c\xa0\x88\xfe\x55\x10\x1e\xd1\xbf\x0b\x07\xd4\x47\x46\xab\x49\x46\x94\xd2\xa6\x2f\xf6\x88\x3b\x1a\x1a\x92\x4c\x40\x25\x5b\x67\xfd\xab\x50\x23\x8d\xb0\xef\xef\x17\x92\x91\x53\x13\xe9\x56\xe1\xd8\x63\xcb\x08\x92\x1a\x9e\x68\xeb\x9b\x4b\x09\xb4\x72\x75\x72\x68\xe6\x81\xca\x51\x55\x3d\xa0\x7d\x09\x36\x1d\xa6\x0b\x6a\xe7\xb9\xbd\xeb\xe5\xf8\x2c\xd3\xb1\x3b\xa9\xbe\x8f\x78\x44\xdd\x14\xc3\x4c\x8e\x48\x16\xd1\xf9\x82\xc4\x11\x1d\x4e\x09\x8b\xe8\xc1\xb4\x99\xd9\x22\x42\x78\x17\x47\xbe\x2f\x22\xdf\x47\x3a\x8b\x88\xac\xf0\x24\x8b\xa8\x88\xac\xc7\x9b\x2c\xc2\x01\x94\x26\x59\x54\x87\xc8\x88\x22\x84\x9d\xb5\x8f\x22\x23\xbf\x8d\xa3\x9a\xad\x17\xa1\x22\xc2\x33\x55\xf5\x64\xd6\xe8\x71\xd5\x75\xcc\xf8\x4c\xd3\xcf\x22\xa2\x99\xe9\xeb\x6c\x34\x62\xd1\x7d\x3e\xc3\x02\x7a\x36\x67\xd1\x62\x2c\x8a\x14\xe1\x99\xee\x80\x53\xbc\x12\x11\x1c\x4a\x33\xbc\x8e\x16\x1c\x57\x9b\xa0\x35\x27\xd6\x32\xdd\x49\x33\x1e\xe4\x74\xe6\xbf\xd5\x8e\xe1\x6a\xc7\xf4\x15\xeb\xcc\x30\xe9\x56\x03\xda\x2f\x60\x77\xd5\xb7\x59\x78\x6b\xb3\xec\x6f\x15\xde\xda\x2a\x6a\xa3\x80\xf4\xaf\x9e\xdd\x3c\x72\xec\x89\x57\x45\x6a\xd9\xa2\xa0\xb5\x49\x79\x95\x3b\x76\x84\x6a\xbe\xda\xda\xa3\xba\x8c\x75\x43\x07\x5d\xa8\x0b\xbb\x00\x20\x51\x6b\x08\x67\x71\x15\xd1\x24\x22\x5b\xf8\x5d\xc2\xef\x1a\x7e\xaf\xe0\xf7\x06\x7e\x2f\xd4\xaf\xd6\x56\x8d\xe8\x32\x1d\x6f\xb9\x58\x65\x62\xa3\x90\xef\xb2\xdc\x55\xe4\x3c\xa2\x9b\x68\x9c\x66\xd7\x65\xb9\x89\xc6\x9b\xec\xf3\x2b\xfb\x98\xdb\xa7\xcc\x3e\x68\x05\x4b\x78\xdb\xc7\xc7\x15\x2c\x51\x17\x23\x1e\x5f\xe8\x73\x81\x0c\xb4\x3c\x8b\xa8\xfd\xa6\x55\x3d\x23\xba\xb3\x3a\x36\x3d\xcc\xa6\xdb\x19\x34\x07\x53\xd8\x07\xfb\xb6\x0e\x0e\x8b\x61\x3a\x4b\xf7\xfd\xf2\x01\x9b\x61\x9e\x1e\x4c\x5d\x56\x4e\xba\x98\x65\xc6\x3d\x82\x6a\xd2\xac\x1d\x26\xea\x4e\xad\x77\x6f\x59\xc6\x51\x59\xa6\x11\x8a\x22\x5c\x11\xf0\xa9\x12\x78\xe7\x9a\x2c\xf1\x88\x79\xd0\xcc\xdc\xab\x60\x57\x11\x26\x2e\xae\x82\xf9\x82\x5c\x71\xa1\x5d\x4b\x79\xf6\x31\x57\x9f\xb3\x34\x58\x45\x84\x2d\x97\x56\xc5\x2e\xd8\x46\x24\x4b\x23\x1e\x2c\x23\x92\xad\x56\xc1\x3a\x32\x26\x48\x75\x86\x2b\x9b\xf2\x20\x49\x6c\x62\x1e\xdc\x44\x84\x6f\x62\x19\x5c\x44\xe4\x3c\x4e\x97\x5d\x7a\x77\x0f\xba\x1b\x1d\x92\xb1\xc9\x6c\xcd\xb1\xf3\x62\xbb\xcd\x84\x04\xe0\x4e\xa2\xeb\xbe\x70\x5e\x87\x5e\x45\xa2\xf5\x32\x16\xdf\xd6\x00\x64\xed\xad\xbe\xd8\xb0\xfc\xb2\xc7\x98\x62\x52\x91\xb5\x90\xf1\xa6\x8f\xf1\x38\x9e\x4c\xa6\xdf\x9f\x9b\x53\xb7\x89\x30\x49\xe9\x4b\x26\xd7\xe3\x55\x92\x65\x42\x33\x23\xdd\xf7\xef\xa6\xdf\x4f\xf9\xcf\x8d\xf9\xb2\xef\xa3\xf4\x80\x82\x69\x3b\x12\xea\x61\xba\xc0\xf7\x27\x90\x7a\x40\xc4\x88\xaa\xcc\x98\xcc\x53\x22\x16\x15\xd9\x26\x4c\xaa\x93\xe1\xac\xaf\xe0\x10\xe7\x46\xad\x9c\xb6\x5f\x56\x4f\xc5\xb6\xdd\xd9\xbd\x03\x70\x70\x16\xe1\xc3\x29\xbf\x5b\x55\xe4\x75\xd7\xe0\xeb\x16\xc4\x12\x08\x25\xa1\x31\x0d\xd1\xf6\xd6\x45\x29\xa0\xba\x4e\x8a\xba\x7c\xe6\x7c\x41\x53\x6b\x4f\xa5\x08\x12\x2d\x8e\xfd\x18\x75\x50\x12\x22\x48\xb6\xcf\x0f\xdd\xff\x04\xec\xa3\x55\x7c\x41\xb9\x16\x95\x8e\x15\x75\xa1\x05\xb0\x82\xff\x53\xf0\x5c\x52\x01\xcf\xf9\x36\x4b\x73\x4e\x33\xf0\xb6\xff\xe0\x53\x9c\xe5\xb0\x01\xe8\x70\x42\x14\x2e\xac\x90\x5d\xba\x37\x35\x3b\xa3\x47\xaa\x8d\x9d\xcc\x0b\xd1\xfe\xe0\x54\x8a\x7a\x22\x4e\x20\x04\x9d\xea\x24\x10\xcd\x8a\x31\xb9\xe1\x99\xac\xe2\x84\xbf\xaa\xab\xb0\x6f\x24\x89\x53\xfe\xca\xc9\xdd\xbc\x13\xed\xb4\xca\xfd\xe8\xa6\x90\x5c\xb2\xe8\xd2\xd8\x63\xa9\x47\xbb\xe6\x26\xa7\x7a\x26\x6a\x5a\x6c\xc2\x92\x57\x95\x35\x67\x7d\x6c\x74\x18\xea\x89\xad\xc8\xa7\x88\xce\x3d\x50\x9e\xf5\x58\x21\xd7\x99\x88\x3f\x6b\xcb\x7c\xe2\x99\xb8\x4f\x07\x1a\xc6\x38\x09\xea\x62\xf0\x88\xc7\x25\xbb\x50\x7f\x9f\xb6\xb1\xe0\xb9\x47\xbc\x95\xc8\x36\x1e\xf1\xd6\x59\x2e\x3d\xe2\xc5\xab\x83\x4d\xb6\x04\x29\xea\x41\x1e\xa7\x11\xd7\x69\x45\xba\x97\x9a\xb0\x5c\xd6\x79\xd5\xbb\xf5\x0e\x40\xbc\x0d\xfb\x74\xb0\xca\xc4\x35\x13\x4b\xd5\xc2\x56\x64\x9f\x6e\x0e\xba\x1d\x15\x7c\xc5\x85\x3a\x09\x9e\xe0\x52\xdc\x1c\xb0\x15\x04\x96\x00\x97\x7a\x07\xec\x82\xa7\xd2\x5b\x90\xc7\x11\x05\xb2\x67\x9f\x6b\x83\x70\xb8\xaf\xb9\x4a\x0f\xd1\x26\x8f\x79\x29\x45\xbc\xe4\xa9\xc4\x56\x5f\xbf\x61\xb1\xa8\xda\x1f\x5c\x80\xae\x5a\x4a\x2d\xd3\x64\xdc\xf2\x6d\x86\x3c\xe6\x39\x0e\xea\x85\x05\x19\x82\x4a\xc7\x80\x0c\x01\xce\x56\x87\xda\x44\xde\x5a\xf0\x95\x47\x84\x16\x62\xa8\x17\x4c\x6e\xcd\xb2\x53\x4f\x81\xce\x46\xac\xd2\x74\x90\xd6\xfa\xd3\x61\xf3\xd8\xd0\xbe\x81\x26\xdb\x15\xdc\x57\x8b\xa5\x8a\x67\xb9\x42\x5e\x15\xf9\x1a\xa8\xb6\xd4\x43\x68\x1f\x5c\x26\x40\xd8\x94\x64\xb9\xca\xab\xfe\x42\xfd\xe7\xe4\xfb\x5f\xad\x06\xe0\x0c\xe9\x46\xe0\x10\x29\x70\xab\xfa\x98\x09\x09\xae\x11\xb5\x8f\xa8\x43\xb0\x7b\x19\xdb\x84\xc6\x31\x60\xd8\x24\xaa\x5c\xa3\xe6\xb5\xaa\x09\x44\x2a\x90\x66\x6a\xd5\xd6\x12\x66\xe6\x5c\x42\x49\x5f\xbe\x66\x1b\x00\x2d\xcc\x71\xa8\x20\x74\xd0\xb8\x9d\xab\xa7\x0b\xe8\xd2\x46\x0d\x5d\x77\x1f\x12\xd5\x43\x55\x21\xbc\x0f\x5d\x87\x93\x8a\x9c\x7c\x69\xa3\xed\xae\x45\xdc\x62\xbf\xda\xa3\x48\x62\xa3\xb6\xa6\xf0\x56\x66\xfc\x21\x01\xd5\xdd\xc3\x43\x51\x08\x00\xb4\xa1\x61\x02\x4a\xb1\xef\x9b\x32\xf6\x38\x52\x6f\x64\x21\x3d\x4a\xf1\x58\x66\x4f\x5f\xbe\xb3\xf4\xbf\x29\x6c\x5e\x85\x53\x58\xcd\x2b\xf5\x46\xa2\x9d\x23\x73\x72\x18\xe9\xbf\x37\xca\x8c\xc2\x5b\xdc\x7c\xcb\x79\x54\x08\xee\x61\xd2\x9c\x86\x2c\xbb\x8c\x39\x65\x86\x51\x30\x1b\x78\xe0\xb2\x93\x2d\x7b\x6e\xd1\x4e\x21\xe3\xb1\x4a\x0d\xe2\x2d\xbf\x78\xfc\x69\x8b\x3c\xf4\xaf\x72\x76\x7a\x9a\x7f\x8f\x91\x37\x92\x23\x0f\x53\x34\xff\xd7\x6c\xf1\x3d\xf6\x1a\x49\x1c\x0f\x97\x7c\x7f\xba\xe6\x77\x17\x58\x87\x9e\x32\x58\x4a\xb0\x47\xb0\xc3\xba\x20\x49\x3c\x8f\xa8\x39\x03\x93\x09\x7c\xf0\xd3\xbd\x1f\xf8\x8f\x60\xac\xd9\x59\x37\xbc\xeb\x8e\xa3\x25\x4a\xd9\x6f\x07\xef\xaa\x8a\x5c\x46\x7d\xca\x04\x60\x81\xa1\x65\x85\x5d\x87\x08\x56\xe9\x71\xc9\x24\x03\x47\xf6\x6b\xce\x96\x5c\xe4\x33\x58\x1e\x2b\xea\x80\x25\x34\xb7\x6c\x36\xf7\x8e\x0d\x98\x7e\xa7\xc0\xf4\x62\xa6\x79\x32\xaa\x91\x0f\x2f\x5f\xfc\x2a\xe5\xf6\xad\xbe\x2a\x67\xa0\x60\xa4\x60\xa9\xdd\x79\xfa\x0d\x00\x9b\x3a\x5c\x65\xe9\x79\xa4\xb0\xa9\x5b\x96\xe7\xd7\x99\x58\xaa\xd4\x59\x36\x7e\xe0\xc2\x60\xea\x3d\x64\x79\x1c\x0d\xbc\xd1\xb9\xcc\x18\x62\x23\x2f\xf0\x46\x85\xa6\xc4\xb5\xd7\x21\x14\x51\x39\x3e\x67\x39\x7f\xff\xf6\x05\xc9\xa9\x1c\x17\x22\x21\x91\xef\x0f\x0f\xff\x85\xe6\xec\xe0\xf3\x42\xfd\x9c\x2e\x4f\x47\xa7\x07\xa7\xe3\xc5\xf7\x01\x0e\x4f\x0f\x4f\x0f\x2d\xd0\xcd\x5d\x63\x0d\x87\x9d\xc3\x43\x87\x41\x79\x7a\x38\xd2\x60\x6d\xa4\x60\x04\x77\x81\xd6\xe1\x48\x83\x23\x59\xa1\x88\xe4\x38\xc8\x01\x43\x8f\xc7\xd9\x96\xa7\x48\x8e\x8d\x01\x5a\x0b\x7d\x21\xbf\x15\x28\x21\xd2\x78\x1b\xae\x1f\x4e\xc0\xf9\x6b\xfc\x99\x0b\x70\x84\x4d\xe2\xb1\xd4\x64\x1b\x95\xf6\x89\xc4\x5f\xb1\x18\x51\x4d\xfb\xfe\x0f\xea\xec\x8c\x21\xdf\x89\xd6\x88\x41\x93\x21\x35\xfa\x31\x45\x5e\x96\x71\x8d\xc7\xbc\x7f\xfb\xc2\xf7\x27\x26\x7f\x9d\xd4\xf0\xcc\xb4\xdd\x0c\xc6\x8d\x2f\x02\xab\xfc\xea\x5d\x70\xf9\x20\x49\xde\x9a\x52\xbf\xea\xdd\xe3\xc5\xe9\x20\x0e\x91\xa0\xf1\xb8\xf7\x3b\xa8\xa7\xaa\x0d\x1e\x22\x07\x13\x14\xe3\x7c\x9b\xc4\x12\x79\xa7\xa9\x87\xdb\xec\xc6\x78\x85\x0a\x97\x89\x17\x78\x98\x64\x0a\x0a\x4a\x11\x6f\x90\xb4\x11\x27\x26\xa4\xc0\x0a\x14\xbd\xc8\xae\xeb\x69\x66\xfb\xd9\x8a\xd1\x14\x63\x85\xf5\xc5\x2b\x14\xcd\xb3\x85\xef\x7f\x8a\xea\xba\x33\xfc\x0b\x9d\x18\x3a\x7a\xa6\xbe\x52\x2f\xe7\xf2\x40\xc3\x0c\x75\x81\x64\x21\x14\x0a\xd5\x4f\x30\x5f\xd4\xb1\x76\xe7\x6c\x81\x83\xfa\xcb\xc8\x23\x03\x6f\xc4\x02\x56\x55\x18\x93\x08\x07\x91\x06\x10\x24\xa1\x3b\xf0\xac\xdd\x60\x91\xef\xc0\x31\x88\x27\xf9\x27\x90\xbe\xb4\x3f\x84\xcd\x92\x04\xcd\xe3\x3b\xfe\x49\x9b\x3f\x17\x79\x60\x17\xd4\xbc\xab\x4f\x75\x1a\xe4\x33\x47\x3a\xc8\x6b\x4c\x8e\x18\x64\x36\x88\xab\xdb\xbc\x06\xa5\x06\xd5\x1b\x83\xdd\x26\x93\xfc\x04\x2a\x9c\x0d\x45\x59\x0a\x85\x50\xc0\x2b\x0e\x25\x4a\x71\xc0\xd1\xc7\x08\x79\xe6\xd8\x0f\x56\x2c\x4e\xf8\x72\x70\x1d\xcb\xf5\x40\x67\x03\xa5\xf6\x81\xba\x57\x4d\x57\x6d\xed\xe0\x22\x03\x2c\x17\xa0\x28\x49\x31\xae\x14\x60\x22\x09\x26\x31\x35\xb1\xfc\xd4\x76\x67\xe7\x99\x90\xad\x3d\xae\xd0\x9a\x56\xb3\x90\x45\xa1\x77\x92\x78\x8f\x8f\x5f\xbf\x7a\xf5\xe0\xe1\xeb\xb7\xef\x1e\x3f\xf2\x80\x15\x1c\x5b\x96\xa8\xaa\x0d\x94\x29\xdc\xda\x74\x4d\xaf\xb8\xbc\xce\xc4\xa5\xc6\x62\x55\x3d\x9a\x61\x53\x97\xd6\x85\xed\x79\xdc\xd3\x29\xf5\xcc\x97\x41\xb6\x02\xbf\xa2\xe6\x75\xe4\x6d\xf2\x01\xff\x14\x71\xbe\xe4\x4b\x6f\x56\xa7\x43\x2b\xb5\xc5\x9a\xd6\x70\xdf\xff\x82\x09\xf4\x8d\x7f\x69\x54\x15\xb9\x15\x1f\xd0\x7d\x5b\xd1\x93\x88\x6c\x29\x92\x63\xb5\x28\xc7\x82\x2b\x8c\x33\x66\x49\x5e\x96\x8f\x23\x94\x60\x30\x98\xfa\x94\x8b\xd5\x31\xec\x72\x70\xcb\xba\x02\xd0\x81\xba\xe9\xd6\xf4\x77\xb6\xf5\x7d\x94\xcd\xf5\x67\x7d\xac\xd5\xe7\x05\xdd\x02\xab\x5e\x9d\x19\xb3\x30\xfa\x23\x80\x04\xdf\x77\x8e\x7b\xb6\xa7\x80\x66\xb5\x3a\x84\xef\xb7\x49\x01\x43\xfc\x39\xc7\x3a\xac\x6f\x23\xbe\x50\xbb\xbd\xd3\x9a\x56\xc7\xb4\x78\x48\x2d\x9f\xde\x9f\x00\x5c\x96\x28\xee\x26\xd2\xe1\x70\x3f\x23\x69\x9f\x4b\x0c\x1a\xb4\xad\xa4\xce\xc9\x6d\xd8\x66\x6a\x3e\x3e\xe6\xa0\x08\x49\xbb\xb5\x68\xb5\xe7\x3e\x4e\xab\x1c\x67\xe9\xa3\xec\x3a\x4d\x32\xb6\x7c\x23\xb2\x0b\xc1\xf3\xdc\xf7\xe3\x1e\xf3\xc4\xad\xf9\xea\x91\xbe\x32\xbd\x4c\x59\x95\xf1\xfd\xb6\x5b\x75\x01\x29\xcd\xd3\x57\xdb\x6a\x57\xa1\xe6\x48\xc7\x8d\x7b\x97\x5d\x72\x6d\xba\xde\xbc\x5a\x75\xa5\x1e\x2d\x2e\x75\x98\xe3\x31\x1c\x60\x04\xe1\x41\x9a\xf3\x8a\x31\x71\xf7\x05\x12\x3a\x9d\xa8\x35\x4f\x21\xe2\xab\x22\xf8\x8f\x23\xba\x6b\xa3\x25\x81\xeb\x47\xfb\xf0\xd3\xc1\xf5\xf5\xb5\xa2\xf3\x36\x07\x85\x48\x34\xc2\xbb\xf4\x1c\x66\xe2\x03\xc3\xb2\x1c\x76\x37\x0c\x86\x3d\xdb\x4a\xea\x22\x40\x9a\x13\xd1\x49\xa4\x5c\x63\x27\x7f\x44\xe4\x5d\x44\x77\x6c\xc9\xb6\x92\x8b\x00\xf5\x4a\xcb\xdb\x78\x93\x63\xa7\x76\x1d\xf9\x7e\xad\xc9\x60\x78\x4b\xa0\xcc\xf0\x15\xb7\x02\xd7\x91\x3a\xd3\xe8\x8f\x88\x5e\x46\x98\xfc\x11\x61\x02\x9e\x70\xd5\x04\x98\x46\x9c\xb8\x8a\x2e\xc2\xf3\x5a\x81\x1a\xef\x41\x14\xf1\xad\xf4\x30\xd1\xaf\xad\x91\x99\x33\x55\xa3\x86\x12\x97\x65\x23\x43\xac\xf5\x6d\x4c\x62\xf7\x5d\x2b\x5a\x34\xef\x4f\xe2\x84\x3b\xb9\x93\xec\x1c\x04\x8a\x41\xb7\x46\xa3\x04\x13\x5a\xbd\x97\xa0\x57\x22\x2a\x71\x88\x1e\x40\x97\xbf\xba\xf8\x33\x45\xfc\xe5\x5c\xd2\x42\xae\x0e\x7e\x02\x7f\xcd\x8d\x20\xb5\x2b\xc0\xec\xab\x55\x1d\xe8\xbd\x4a\xf6\x85\x9c\x81\xac\x16\xee\xe4\x9b\xab\x7c\xde\xc1\x6e\x7a\xdc\x49\x80\xda\xb9\x16\x9b\x6e\x55\x2b\x0d\xb7\x5e\xe2\x5d\x23\xb7\x5c\x10\x73\x6b\x04\x13\xd2\x06\xd5\x81\xf7\xe1\xe4\xed\x93\x83\x77\xaf\x7f\x7b\xfc\xca\x23\x6d\x38\x1d\x78\x1f\x0e\xdc\xaf\x1b\xf6\xc9\xac\xf2\x0b\x60\xc6\x04\x07\x60\x14\xe8\xdc\xfc\xbd\xd2\xfb\x5f\xe8\xd1\x64\xe2\xfb\xf2\xfe\xdd\xc9\xa4\xaa\x66\xef\x22\x4b\x3f\xd0\x5d\x94\x6d\x36\x59\x1a\xec\xf4\x5e\x0a\xf6\xe6\x8e\x0c\x14\xc2\x73\xb8\x4d\x58\x9c\x92\xc1\xf7\x87\xdf\x7b\x55\xe5\x0a\x9c\xe7\xd6\x69\x19\x04\xf8\xf0\x88\xa7\x6a\xf6\x16\x6d\xbc\xb0\x69\x70\x2e\x17\x74\x57\x19\x90\xdf\xd4\xb1\xd5\xac\x22\x08\x54\xea\x81\xed\xcf\x97\xab\x78\x5a\x8c\x41\x11\x05\x1d\x47\xa0\x7f\x09\xc1\xd3\x23\xfa\x2e\x6a\x40\xc5\x5b\x10\xf2\x7d\x11\xd2\x01\x54\x7f\xb6\x32\x47\x8d\x2f\x91\x86\x05\xcf\x7a\xa9\x33\xa8\x8f\xd4\x94\x57\x43\x83\x81\x5c\x42\x93\x66\xf4\x43\x61\x3c\x17\x34\x19\xd5\x8e\xed\x1c\x6a\xb7\x9a\x7a\x24\x75\xd2\x58\x2f\x89\xa9\xb6\x1e\xb4\xa1\x4e\x16\xed\x74\xfc\xf5\xb5\x20\x7d\xb3\x4b\x3c\xdd\x4a\x6b\x9a\x79\xed\x72\xa0\x69\x97\x2f\xd4\x62\x29\x02\x51\x83\xc6\xb2\x7c\x13\xd9\x67\x8c\xf6\x95\x7d\x79\x67\xc2\x78\x3d\x31\xfa\x89\xf0\xfe\x89\xd1\x07\x0e\x13\xde\x32\x88\x6c\x6a\x7b\x5e\x20\x88\x0b\x6c\x6a\xd5\x8e\x9e\x74\x21\xf0\x55\x65\x5f\x9c\xe6\x5a\x49\xc4\x79\xff\x52\x07\x30\x26\x86\x06\x37\x6a\xc3\xc8\xda\x0e\x75\x99\xe3\x9c\x82\x48\xca\x58\x2d\x2a\x32\x89\xce\xbd\x42\x24\x1e\xf1\xf4\x52\xc1\x64\x43\x8c\x4d\xe2\xa9\x2e\x78\x0b\x92\xd1\xb9\x67\x5a\x37\x8c\x56\xcb\xcc\xf4\x16\x24\xa6\x73\xcf\x90\xc6\x1e\x31\x35\x75\xb7\x4e\x3b\x49\xf7\xb9\x6e\xa7\x21\x4a\x55\x36\x0d\x6e\x3c\xe2\x75\x50\x24\xd5\xb0\x5e\x3f\x60\x94\x36\x58\x8e\x47\xbc\x36\x64\x32\x09\x0d\x38\xf2\x88\xd7\x45\x26\x20\xa9\x8b\xcb\x68\x86\x6d\x0b\x52\x79\xc4\x6b\x03\x2a\x9d\xe7\x2d\xd7\x4e\xe2\xd5\xeb\x5a\xca\x2d\x30\x52\xcd\x73\x6e\x5f\x9c\x33\xeb\x11\x2f\xcf\xa2\x4b\x2e\xdf\x30\xb9\xf6\x5a\xca\x33\xa2\xa3\xb2\x5e\x1b\x94\x6b\xdd\x8b\x54\xc1\x0d\xf5\x8c\x3b\xd0\xc7\x45\x70\x85\x51\x99\x31\x57\x0a\x9f\x8b\x05\x0e\x41\xa9\xfa\x69\x31\xae\x55\xc9\x10\xf8\x08\x84\x8f\x81\xd3\x8c\x58\xe8\xac\xea\xa9\x7d\x33\x7d\xa1\x1a\xa7\x06\x09\x9a\x66\x08\xf2\x59\x21\x89\xdb\xd1\xb8\xdd\xd1\xdb\x5a\xfe\x62\x7d\x33\xcd\xe1\x11\xb5\x14\xbe\xa6\x8b\x63\x4c\x8a\x56\x20\x34\x8e\xf7\x23\x97\xd5\xe0\x10\xd4\x75\x58\x4d\x8d\x4b\x57\x0b\xde\xe9\x72\xf1\xdf\xd0\x65\x92\x3a\x08\xe0\xab\xa8\xe6\xd4\x99\x78\x2c\xb9\x15\x5b\xc7\xa9\xe4\x42\x5d\x62\x99\xba\xd7\x2c\xe9\x9c\xf2\xeb\xc1\xef\x05\xa9\x89\x73\xfd\x5e\x55\xaf\x5a\xc2\x6d\x23\x34\x72\xc7\xd9\xe3\xc2\x1c\x49\xea\xba\xa9\x53\xa7\x1f\x8f\x0b\x91\xd0\x96\xa3\x4b\x08\x3f\xb3\xab\x08\x92\xf4\x85\xf6\x13\x57\x77\x95\x48\x8c\x0d\x1c\x0f\x2d\x40\xa7\x0e\xdf\xc9\xa1\x9c\x82\x56\xc1\xfd\x42\x3d\x5f\xbb\x15\xd8\xbc\x70\x19\x18\x6b\xb9\xf9\xb3\xc8\x20\xea\x0b\x92\xd2\x06\xd2\x69\x5b\x75\xa9\xfd\x83\xed\x4d\xa7\x9d\xa0\x9e\x80\x49\x12\xef\xf8\xb8\x48\xf3\x75\xbc\x92\x48\x8e\x6b\x25\xaa\xda\x98\x94\x2f\x71\xed\x92\xa1\x53\xa7\x01\xc7\xb7\x54\xaa\x59\xdf\xb7\xd6\x38\xe3\x56\x5e\x0e\x0e\xe0\xe0\x1a\xe2\x63\xdd\x0f\x75\xed\x98\xa7\xc6\x69\x6b\x45\x5a\x6b\x7e\xc1\xe5\x7b\x11\xf7\x1b\x75\xf5\xac\x1b\xf9\x4d\x5d\xed\x85\xf8\x32\x2f\x70\x5f\x42\xf2\x0d\xc8\x12\xf1\x32\x10\x1b\xe6\x5d\x9c\xc7\xed\xaf\x82\x5e\x6d\x9e\xb0\xab\xca\x66\xd6\x07\xd5\xd8\x84\x46\x1f\x76\x7a\x07\x04\x92\x14\x22\x01\x25\xcf\xff\x0a\xea\xf5\xa5\x6e\x80\x24\xf8\x4b\x1d\x11\x7d\x1d\xd1\x41\xeb\x52\xd3\x1f\xd8\x9a\x77\x22\xfa\xca\xc1\xde\x5e\x36\xe7\xdc\xfa\x1f\x92\xd5\xcb\xa8\x87\x92\xda\x97\xdf\xda\xa8\xe7\x23\xe4\x96\x0f\xbd\x60\xe0\x8d\xdc\x94\x00\x96\xa7\x55\x69\xa3\xc3\x66\xfd\x11\x3c\x8a\xe8\x4b\xa7\x5f\x4f\xac\xea\x58\x9f\xd9\x24\xee\xf5\xa9\xc6\x3f\xf1\xa8\x90\x99\xd0\xfe\xcf\xce\xf9\x80\xd5\xa2\xed\xb1\xb1\xd0\xe5\xfb\x3e\x52\xf6\x05\x01\xea\x50\x50\x69\xe7\xcb\x98\x00\xca\x8e\x9f\x66\x63\x5b\x5f\x96\x28\xad\xcd\xec\xf9\xf5\xe0\x91\xc6\x9a\xea\x44\x1d\xd2\xf0\x49\x6b\x3e\x3b\xc8\x70\x87\x53\x6d\x56\x17\x0a\xeb\x61\x3a\x29\x15\x79\x12\x8d\x75\x04\xdc\x3d\x43\x4c\x73\xfe\x76\x52\x5d\xdf\x00\x7e\x9f\x44\x6d\x7c\x11\xc2\x16\x60\xa2\x6f\xf9\x40\x1a\x6f\x75\x9f\x23\xfa\xc4\x99\xf8\xf7\x51\x5b\xe7\xe6\x4e\xa4\x7d\xb8\xbf\x2c\xd0\x9d\x1e\x50\xee\x38\xde\x7d\x5a\xe8\x30\x4e\x4b\x94\x12\x37\x2b\xe1\x70\x12\xea\x6f\x5c\xdd\x34\x10\xd7\x36\xa2\xef\x23\xf4\x26\xc2\xb3\x87\xd1\x18\x94\x06\xe8\x9d\x88\x3c\x8c\x8c\x4c\xb7\x0f\x64\xbc\x8f\xd0\x8b\x08\x3d\x8c\x5a\x90\xbe\x52\x65\xf4\x5e\xa4\x8f\xa2\xe6\x05\x10\x19\xfa\x19\x52\xe2\xdc\x64\x78\x5e\xa8\x57\x96\x24\x7d\xd5\x5b\x38\x6d\xed\x22\x1e\x46\x63\xed\x96\xef\x6b\xd1\x59\x3a\xd6\x5f\xc0\x28\xe5\xd8\xcc\xf0\x3f\x11\x7d\x18\x91\xa7\xea\x77\xf6\x4f\xdd\x75\xfa\x54\xeb\x5f\xfd\x1a\xd1\x7f\x22\xf2\x5b\xb4\xcf\xc3\x68\xdb\x31\x91\x3f\x23\xda\xf2\x03\x49\x7e\x8f\x68\x8f\x2d\x9b\xa4\xf3\x05\xe1\x74\x32\xe3\xf7\x8f\x7e\xbc\x37\x1b\x8d\x38\x96\x46\x5e\xf8\x9d\x37\x42\x88\xdf\x9f\xde\x0b\xbd\x89\x0e\x0d\xe0\xa8\x4b\x4f\xef\xe1\x4e\x44\x38\xc7\xe1\x3f\xc2\xe4\x43\x17\x2f\x6f\xb4\xab\x80\x4a\x00\xca\x55\x8f\xa1\x8e\x34\xaa\x17\x52\xbb\x8b\x0e\x00\x73\x9f\xcc\xc4\xfd\xda\xd6\x6b\x34\x12\xf8\x76\x94\xc4\xb9\x50\x9e\x47\x74\x07\x0a\x6f\xef\x32\x63\x68\xf3\x21\x22\x2c\xcf\xe3\x8b\xae\x41\xb7\xe5\xdb\xb4\xf1\x2b\xc1\x97\x45\xd4\x3a\xe3\x2e\x60\x9f\xa7\x0a\x3d\x4a\x17\x44\x56\x18\xa2\x64\x44\xd9\xe6\x3c\x4e\x79\x6f\xd5\xf3\x85\x45\xe4\x40\x61\x17\x22\x7b\xb2\x8e\xad\xab\xe3\xf6\x6e\x97\x9d\x7f\x0c\x76\x59\x20\x2b\x88\x69\x1e\x78\x99\x57\x29\x8c\x60\xbe\x30\x93\xc1\xdd\xc9\xa8\x2d\xdb\x00\x5d\x83\xd0\x3e\xd9\xf9\xc7\x39\x38\xfb\xd9\x2e\x08\x6b\xe1\x8d\x80\x48\x4e\x66\xc5\x7d\xd6\x54\x51\xd4\x26\xa4\xf3\x62\x41\x72\x1a\xcf\xa3\xc5\x6c\xcf\x58\x22\xaf\xad\xcd\x72\xdf\x07\x0c\x33\xad\x31\xcc\x1c\xdc\x5e\x18\x55\x6d\xd5\xf9\x58\x77\x3c\xaa\x6c\x44\x5c\x94\x37\x51\x5a\xbb\xa3\x9e\xc9\x5a\xfb\x6e\xd6\xf8\x96\xd8\x66\x5b\xa4\x60\x08\x87\xd1\x70\x3d\x9a\x59\xbc\x42\x7f\x46\x28\xc5\xae\xbb\x99\xb9\x22\xdd\x26\xb3\xac\xb1\xb6\x1c\x8d\xb2\x66\x8f\xa4\x20\x9d\x12\x46\x3d\x6f\x9e\x2d\x14\x76\xe2\xd4\x49\x45\x55\x55\xe0\x85\xaa\x22\x5a\x2e\x7d\x8b\xdf\x5d\x57\x8c\x39\x3a\xbc\x20\xde\x40\x87\x1e\xf1\xe2\x3c\x3b\xf8\xe9\xa7\x1f\x7f\x3e\x98\x82\x72\x44\xe3\x6a\xbb\xb1\x63\x98\x4f\x0e\x7e\x66\x07\xab\xc5\xee\xa8\x3a\xbc\x88\x49\x91\xf2\x3c\x62\x5b\xde\xd2\x3d\xee\x11\x8a\xbb\xee\x62\x6a\x7f\xaf\x15\xd1\xfc\xb7\xbd\x6e\xc6\x2b\xa4\x23\xe3\x19\x23\xd4\xb6\x51\x04\x05\x61\x72\x4f\x48\x20\x41\x8d\xbf\xcf\xdb\x1d\xac\x06\x16\xe1\x6e\x99\x66\x0a\xeb\xb1\x49\x62\x4c\x6e\x9b\x05\x3d\x50\xe4\xa2\x5f\xdf\x15\xf5\x74\xfc\x00\xd3\xd1\x43\xc3\x78\xdf\x1d\xdd\xfb\xee\xe8\xae\x37\x02\xbe\xdd\xb3\x54\xe1\xaf\xda\x2c\xe1\x08\x93\xe9\x3d\x3c\xf2\xbe\xbb\xfb\xd0\x53\x17\x6e\xb3\xff\x3d\x0f\xbc\x0c\xc5\xf7\x45\xb3\x11\x6a\x8d\x0d\x01\xaa\x2a\xc7\xd9\x92\x3f\x50\xf4\xd4\xec\x87\x1f\x15\x91\x54\x96\x3f\xdc\xd3\xff\x3f\x9b\xf7\xe9\x91\x49\x60\xbf\xd0\x1f\x7e\xf2\x7d\x76\x9f\xfe\xf8\x1f\xf0\x76\xef\x47\x78\xfb\x79\x02\x6f\x3f\xff\x07\xbc\x4d\x8f\x8e\xc2\x6c\x64\x6a\x87\x9a\x03\x76\x7f\x7a\xf4\x93\x4a\xfc\x3d\x9a\xb3\x45\xc0\xee\x1f\x4d\x7e\xb0\xef\xd3\x9f\x8f\x4a\xf6\xcb\x2f\xf7\x16\x23\xf5\x72\xf4\x53\x79\xef\xae\x0f\x79\x7e\xfc\xf1\xe8\xe7\x7b\x50\xf1\x8f\xff\x71\xf7\x87\x1f\x4c\xf6\xa3\xa3\x1f\x54\xf6\xe9\x51\x9d\x5f\x15\xf6\xef\xdd\xed\x94\x47\xf1\x88\x4e\x09\xa3\xf7\x7e\xfc\xf1\xee\xbd\x11\x42\xd3\xc9\xd1\x5d\x9f\xe1\xfb\xf7\xa7\x93\x12\x9e\x3b\xa3\xc7\xc4\xd4\xff\xc3\x04\xea\xff\xc9\xad\x7f\x7a\xe4\x36\xd0\xdb\x60\x7d\x96\xb3\x2f\x5a\xac\x6a\xf3\x83\x7d\xb3\x5e\xec\xfb\xc3\x21\xea\x58\xad\xfe\xdb\xe6\xa8\x60\x46\xa8\xd5\x4e\xbe\x64\xbc\xa8\x73\x7c\x0b\xc7\x5f\x81\xf1\x0d\xbb\x39\xe7\x2f\xd9\x76\x3f\x62\xd5\x9f\x11\xb8\x55\x6d\x6e\xb0\x1a\x1c\xcb\xc6\xca\x9b\x4e\xb1\x01\x78\x86\x83\xe0\xdc\x48\xf6\x40\xe8\x76\xba\x66\x6f\x06\x5f\x8f\x57\x68\xd8\x9c\x9d\x59\x9f\x55\x74\x6a\xbb\xc3\xb1\xf5\x83\x9a\xe2\x3a\xa2\xd2\x90\xf7\xcc\xb8\x35\x90\x9a\x73\x92\x2e\x66\xc8\xf8\x9c\x77\x2e\xdf\xb2\x14\x0a\x81\xc9\xae\xdf\xd8\xb9\xc9\x71\x59\x0e\x7f\x33\xfa\xb2\xdd\x89\x23\xe0\x44\x0c\x71\x1d\x3b\xab\xde\x0d\xbc\xfa\x7a\x07\xea\xab\x30\xb5\x01\x44\x6a\xb5\x2e\x18\x92\xef\x0f\x01\xc2\xfb\x3e\xca\xe8\x87\x08\xec\xe4\x30\x31\x9f\xe0\x4b\x88\xd2\x1e\xb2\x34\x35\xca\x08\xb6\xcb\x9c\x64\xd8\xda\x3a\xf1\x79\xb6\x98\xc5\x3d\x86\x82\xb1\xef\xa7\xb7\xd8\x0f\x66\x0b\x2a\x51\x0c\x8b\x12\xd4\xb3\x5c\x81\x31\x19\x7c\x54\x04\x12\xe1\x75\x00\x75\xb8\x5d\xd3\x1e\xac\x41\xf5\xc3\x74\x43\x5d\x3e\x76\xac\x6e\x37\x6d\x6b\xea\x8f\xc4\xd0\xa0\x4a\x88\x81\xdf\x9a\xe1\xaa\x22\x7f\x45\x06\xd4\xb6\x90\x69\x00\xa7\xe4\xef\x88\x1a\x83\x3a\x88\x11\xf7\xe4\x78\xfa\x1f\x77\x7f\x0a\x3c\xf3\xe0\x91\xb7\x4f\x8e\xef\xfe\xfc\xd3\x3d\x48\x51\x0f\x5e\x45\x78\x4e\x9f\x47\x63\x8d\x0b\xa1\x9d\x8d\x9d\x2b\xf3\xb1\xc9\x42\x40\xad\x5f\x4a\x2e\xf2\xa0\xae\xb1\x07\x9b\xfd\xcb\x1a\x31\x90\xbf\x23\x30\xe7\xab\xea\xd6\x7a\x72\xd7\x97\x45\x55\x55\x44\xe6\x98\xa4\xf9\x57\xf1\x57\x91\xd3\xdd\xb9\x60\xd1\x25\x97\xfd\xd2\x93\x91\x37\x5f\x78\x80\x51\x6d\x58\x00\x7c\x73\xe6\x91\x38\x5d\xc6\x51\x2b\x82\xa0\x6b\x5e\x36\xf2\xe6\xde\x88\x8f\x3c\x55\x4e\xf0\x2d\x67\xb2\xb7\xe6\xaa\x22\x59\xde\xc1\x9e\x63\x9b\xd0\x74\x58\xed\x0c\xc2\xf2\xae\x2f\xbd\xdc\x60\xf5\x92\x64\x0a\x9b\x0c\x79\x00\x11\xf7\x49\x91\x53\x50\x5d\x73\x61\x50\x6d\xf5\x47\xa2\x9c\xf2\x9a\xb3\x41\xf2\x9c\xee\xd8\x72\xf9\x7b\xc1\xc5\xcd\x1b\xc1\x57\xf1\xa7\x60\x38\x25\x70\x4c\x1f\x65\x32\x57\x2f\x46\x78\x16\x78\x5a\x7a\x66\xdf\x4f\x78\x2a\xe3\x94\x27\x2a\xcb\x92\x27\xf1\x26\x96\x5c\x04\x9e\xef\x59\xd4\x01\xcc\x0c\xd4\x93\x08\x9e\x47\x63\xfd\x68\x52\x74\xa8\xd5\xd7\x69\x72\x03\x71\x06\x61\x27\x04\x51\xde\xec\x89\x80\x43\xd4\x24\xb3\x41\xe6\x51\xbe\xa8\x27\x7c\x38\x25\xb9\x65\xb8\xdc\x62\xc2\x3e\x28\xf2\x06\xda\xe6\x97\xf1\xf6\x55\x91\x24\xba\xa4\x14\x71\x24\xd5\x2b\xf8\x0e\x83\x00\xf9\xd3\x8a\x24\xcd\xdc\x5a\x30\xd9\x8e\x96\x47\x56\x64\x4b\x96\xfa\x90\xad\xc9\x15\xd5\x50\x73\x5f\x5e\x5f\x84\x57\xb4\x40\x29\xb9\xc2\xc1\x95\x6b\x35\xae\x3a\x1a\x5e\xd1\x04\x5d\x61\xbb\x83\xb4\xa0\x3c\xcb\xd1\x95\x82\x43\x57\xea\xb4\xd8\x8b\x01\x5d\xf5\x06\xde\x91\x7b\x35\x02\xde\x24\x2b\x8c\x8d\x5e\x25\xf1\xb0\x0e\x67\x43\x29\xbd\x02\x50\x55\x07\x65\x61\xbe\x3f\xdc\x86\x0c\xa5\x24\xcf\xcd\x62\x08\xb2\x24\xde\x25\xbf\xf1\x70\x90\xce\xae\xa8\xe7\x55\x3d\x12\x4e\xb4\xa6\x57\xb8\x2c\xf7\xbc\x0b\xac\xcb\xd2\x3b\xcf\xb2\x84\xb3\xb4\x9d\xd8\x45\xfe\x20\x63\x7c\x11\xa7\xb2\x95\xf6\x3c\x6a\xee\xd9\xab\xda\xb7\x3f\x0b\xe7\x2b\xb4\x0d\xd3\xe0\x96\x8e\x6a\xfb\xd3\x15\x62\xe8\xaa\xf3\x19\xbc\xad\x78\x18\x2f\x82\xf9\x0a\xa5\x36\x9f\x81\x07\x57\x18\x6b\xfd\xc7\x1b\x72\x01\x71\x48\xad\xbf\x59\x98\x27\xd3\xf6\x85\x4a\xce\x72\x54\x60\x7c\x43\x8b\xc6\x48\x77\xd3\xa2\x6e\xae\xf0\xec\x86\x46\xe1\x66\x9c\x67\x42\xa2\x08\x07\x9b\xda\xae\xfb\x9c\x4e\x66\xe7\xf7\x6f\x1a\xc4\xf0\x5c\x6f\x98\x33\x7a\x33\x3f\x5f\x90\x6b\x7a\x35\x3f\x83\xb6\x87\xb1\xf6\xcf\x35\xa4\xf4\x5a\x67\x79\x4d\x61\x23\x84\x3d\x5b\x4a\x84\x02\xa5\xe4\x0c\x07\x69\x90\x8e\x50\x1e\x7a\x63\x6f\x74\x16\x28\xf8\x72\xa6\xe0\x0b\x9e\xb1\x1c\x5d\x10\x89\xae\xc9\xeb\x5b\x76\x2d\xae\xb5\xa3\x2f\x2a\xb2\xca\xe9\xde\x55\xdb\x85\x88\x6d\x80\xd4\xd1\xfe\x31\x31\x80\xb4\x3b\x9d\x96\x70\x7c\xd8\x18\x50\xe6\xb3\xda\xed\x0a\x95\x76\x99\x7c\xbf\x21\xaa\x9b\xb4\x3e\x46\x9a\xfd\xda\xcf\x50\x7b\xac\x3f\x82\xd9\xa7\x8e\x3a\xd0\xc3\x51\xa3\x72\x6c\x00\x55\x59\x82\xa1\x0f\x3c\xcf\x5c\x4f\xc3\x75\x0e\xdf\x37\xb0\xad\x93\xe8\x90\x1b\xee\x97\xfe\x5e\xbd\x5b\xf3\x81\xc9\x30\xd0\xfc\xdc\x9a\xe1\xc7\x63\xb9\xe6\x62\x00\x6d\x90\x41\x53\x2b\x19\x64\x62\xd0\xe8\x99\x58\xc6\x5e\x03\x9e\x3b\xdd\xd5\x10\xd1\x20\x70\x06\xc4\xb5\x00\x25\xa9\xf3\xf4\xf7\xf1\x7d\x7a\x99\x66\xd7\xe9\x40\x67\xb2\xdd\xdc\x8a\xec\x2a\x5e\xf2\xa5\x9a\xbb\xb4\x6e\xa6\x32\x91\x60\x5a\x80\x38\x55\x74\x70\x9e\x1b\xc1\x90\x75\x54\xdb\xab\xb8\xa4\xb3\x94\x65\x96\x23\xfb\x82\x35\xc6\x55\xbf\x92\xee\xd5\xb3\x0f\x51\xe4\xb8\x9d\x25\xec\x26\x04\x79\xde\x49\x71\x6e\xaf\xc6\x01\xd1\xb8\x4e\x0c\x55\x81\xe6\x7e\x1b\x3a\x9f\xea\xab\x8e\xef\x5d\x72\x7d\x3d\xeb\xe4\x09\xf7\x52\x82\x66\xe3\xd9\x24\xe7\xaa\x74\x3a\x57\x27\xaa\xce\x35\x39\x9c\x0f\xf6\x52\xed\xeb\x87\xfe\x14\xda\x87\xa0\x06\x8c\xf5\xfd\xdb\xbb\x40\xe6\x63\x5d\x4e\x04\x0e\x44\xdd\xbb\xa7\x6f\x6f\xb8\xc9\x14\xee\x27\x35\x75\x36\x69\x44\x2f\x7f\x90\x39\xf7\xbd\xe8\x5c\xea\xbd\x3d\x6e\x65\x09\x3b\xef\xaa\xa5\x56\x82\x73\xf3\xf7\x75\xbe\xfe\x1a\x3a\xcf\x50\x89\x7d\x21\x0a\xc4\xdf\xd2\x93\x4c\xc8\x50\xff\x69\x75\xe1\x1e\xc4\xa2\xb7\xd1\xbd\x6c\x61\x5f\x22\x74\x63\x2f\x15\x58\x48\xb3\x9e\xfe\x64\xe6\x40\x85\x82\xa2\x09\xb1\x6f\x18\x79\x9e\x42\xf4\xb3\x1c\xd5\x49\x10\x97\xa6\x7e\xd3\x26\x01\x84\x99\x2b\x71\x8f\xa2\x12\xd6\x8d\x24\x15\x36\x1c\xb3\x37\x8b\x35\x5b\x15\xd8\x9e\x4f\x34\x1c\x89\xd3\x81\xc8\xc3\x56\x5a\xc0\x15\xfc\xd4\x28\x9b\x17\xa7\x03\x1e\x42\xc0\x32\xf5\x1a\xd6\xe9\x81\xa7\x71\x63\x2f\xa8\x93\xa0\x4b\x05\x15\xf9\x3c\x5e\xcc\x40\x8c\xd1\xba\x7d\x05\xb8\xa3\x50\xd3\xee\xfb\xa9\xbe\x82\xf5\x6b\xc3\xa3\x89\xe8\x64\x16\xb9\x7c\x3a\x63\x3a\x9e\xd3\x74\x1e\x2d\x66\x59\xb3\xbe\x9a\xdb\xa8\x46\x37\xcf\x17\x65\xc9\x72\xc4\x48\x92\x23\xf5\x46\x72\x52\xa8\x86\xf6\xd6\x80\x38\xe5\x49\x66\x8f\x5e\x56\x1f\x21\xd8\x0c\x76\x82\x4d\x57\x49\xe6\x80\x98\xac\xb3\x49\xb3\x06\xbc\xd6\xf5\x39\x47\x25\xab\x2f\x1d\xad\x9b\x94\x58\x1b\x9a\xac\x81\x0d\x98\xac\x28\x98\xe0\x64\x5d\x60\x09\x0e\x34\xbc\xc6\x3b\x5d\x07\x18\xf9\x7e\x97\xb1\x58\x67\x09\x57\x23\xaa\x2e\xc5\x9f\xa8\x66\x92\x4d\x27\x93\xc9\xdd\xef\xee\x3e\xf4\xbd\xa0\xf9\xf2\xf8\xe8\xbb\x9f\x8f\xbf\xfb\xf9\xae\xef\x61\x92\x58\x06\xeb\x24\x5c\x8d\x92\xc0\xf3\x2a\x4c\xb6\x79\x8f\x7d\x27\x89\xf1\x4e\x7b\x22\x71\x84\xd5\x46\x2d\xa1\x26\xd3\xdb\x6b\x5e\x57\xed\xfb\x88\x51\x3e\xf2\x42\x6f\xb4\xd2\x9b\x21\x0d\x7f\x8d\xe6\x72\x81\x18\x49\x49\x8c\x6d\x20\x59\x2a\xeb\xe4\x18\x07\xf6\x71\x95\xa3\x0c\x93\x18\x57\x64\x99\xf7\xc4\xa8\xd8\xf3\xc8\xa3\xda\xab\x6f\x5f\x57\xc4\xdf\x0e\x6c\xb9\xab\x80\x85\x7c\x47\x5b\x44\x85\xf5\x53\xa0\x8e\x9f\xfa\x60\x74\xe8\x33\xea\x1d\xb2\x6d\x7c\x78\x35\x39\xcc\xb9\x94\x71\x7a\x91\x1f\x9e\x17\xe9\x32\xe1\xf9\x41\x12\xe7\xd2\x23\x31\xdd\x55\x84\xd1\x5d\x1d\x08\xb1\xd1\x97\x18\x9f\x67\xcb\x1b\x70\x9d\xa2\x1f\x1d\x75\x5b\x9d\x10\x76\xb4\x96\x1c\x63\xe7\x97\x71\x9e\xc7\xe9\xc5\x40\xf0\x7f\x8a\x58\xf0\xe5\x60\x00\x72\x6b\xae\xe0\xee\x40\x95\x05\xaf\xe2\x7c\x7c\xe7\x1f\xd8\x3a\xf6\x5b\xee\xfb\x2d\x71\xc5\xde\x77\xdc\x2f\xb9\x8f\x41\xd1\x66\x2f\xf7\x5c\x82\x26\xd9\x36\x47\x46\xe4\x9c\x8e\x32\x22\x01\x5d\x15\x18\x57\x64\xfd\xff\x97\x35\xd1\x21\xd7\x0e\x72\x76\xc5\xff\xf7\x5e\x12\x1d\xf4\x6d\xff\x0c\x37\x0c\xca\x8c\x1e\x4c\x8d\x0a\xb8\x09\x51\xe8\x88\x47\xee\xd7\x1e\xf8\xa9\x9c\x67\x8b\x19\x47\x82\x30\x92\x22\x06\xc2\xac\x5a\xd4\xa0\xe9\xb2\xfc\xcb\x92\xcc\xde\x66\xad\x92\x16\x26\x8c\x0a\x1d\x93\xb5\x16\x39\x15\x07\x07\xb3\x46\xe6\x24\xc3\x22\x18\x8d\x32\x4d\x7c\x81\x5c\x09\xc5\xf3\x68\x41\x22\x12\x63\x7c\x2e\x38\xbb\x6c\xd8\x8b\x95\x81\x46\x17\x5d\x7e\x4b\xb7\x53\x96\x97\xaa\x47\x5f\x33\x54\x53\x68\xe4\x81\x40\x69\x4d\xd5\x4a\xc8\xeb\x48\x11\xec\xed\x44\x62\xca\xc3\x2c\x38\x98\xd6\x22\x34\x94\xe2\x19\xe2\x61\x7c\x70\x10\x8c\x46\xf1\xfd\x0c\xfb\xfe\x70\x3a\xa4\x54\x20\x36\x8f\x17\x6a\x69\xf0\xcc\xe1\xf7\x56\x5d\xaf\xbf\x8d\x2f\x81\x9b\x1c\xd6\x4b\x64\xb5\xda\xd7\xa6\x6f\x29\x2d\x65\x98\xb7\x5d\x47\x69\x38\xad\x96\x4c\x1a\x45\x7f\xed\xeb\xc9\x84\x66\xcb\xf7\x7c\x81\x9c\x9d\x2d\x99\x64\x67\x67\x10\x50\xc0\x09\x7e\xaa\x7d\x6a\x74\xe7\xb2\xe1\x70\x37\x0e\x36\xd5\x8a\x29\x7a\x47\x20\x39\x4f\x17\xf3\xc9\x82\x70\xdc\x4c\xaa\x55\x3b\xab\xc8\xf5\x3e\x83\x2c\xdf\x26\x71\xa4\xdd\x75\xbc\xce\x7b\xe2\x9c\xb7\x7a\x48\x52\x7a\x96\x83\xe5\x49\x1d\xd0\x22\xbd\x3f\xd1\xa8\x11\xe5\xb5\xf3\x8e\x90\x6b\xf9\x60\x70\x6d\x29\x2d\x92\x92\x29\x26\x07\x07\xf5\xf0\xc8\x70\x62\x4e\xc9\xc7\x7f\xbf\xd5\x41\x7a\x7f\x52\xc7\x34\x57\x03\x9e\x2e\x74\x5d\x9f\x7a\xcf\xc2\x59\x8e\xda\xf5\x49\xfc\xcb\xc1\x54\x97\x78\xdc\x9d\xde\x46\x41\xa4\xc9\x2f\x54\xfb\xa9\xd3\xbe\xb8\x3f\x09\xd1\x68\xd4\x8c\xc6\x48\x15\xe6\x92\xf0\x05\xc6\x41\x3a\x17\xaa\x53\x94\xeb\x60\xe7\x8d\x2a\xc6\x49\xde\x8c\xf1\x60\x4a\xd2\xbe\xf3\x5f\xab\x91\x81\x4b\x1b\x84\x67\xa3\x11\xbf\x9f\xce\x6a\x39\xe7\x9c\x2f\xb4\xce\x4b\xce\x25\x12\x6a\xb1\xc5\x7c\xba\xc0\x55\x75\x92\x3b\xeb\x0a\x85\xe9\x79\x4e\x5a\xa9\x5a\x87\x8a\xbe\xee\x24\x5f\x70\x49\x3f\x76\xd2\xd6\x2c\xa7\x9f\x3a\x69\x39\x97\xf4\x71\x0e\x13\x77\x99\xd3\x13\xfd\x74\xfc\x85\x1d\xad\xe0\xf6\x65\xbe\xbf\xab\x1f\x7c\xcb\xa2\xdb\xee\x36\x31\x80\x06\x4d\x45\xdc\x4c\xbc\xae\xef\x8f\xde\x85\x6f\x55\xa8\x06\x59\x47\xbd\x7c\xf7\x0d\xf9\xd7\x2c\x07\x2e\xe8\x9b\x9c\x6e\x05\x7a\x92\xea\x00\x94\x98\xbc\x85\x77\x0d\x73\x88\xa7\xf5\x21\x0c\x03\xe2\xd9\x17\xa6\xe2\x6d\x1e\xbe\xcd\x1b\xbd\x89\xbd\x29\x79\x71\xeb\x94\xe8\x8e\xd4\xe6\xc9\xad\x6a\xe7\x72\xb1\x37\x37\x07\x94\x87\xd3\x60\x42\x78\x45\x5e\x7d\x95\x87\xaf\x35\xc8\xbe\xba\x1c\x10\x41\x23\xb7\xc7\x83\x37\xcd\x7a\x67\x67\x49\xb6\x64\xf9\xfa\x6c\xad\x7e\x6a\x96\xcc\xd9\x99\x0e\xd0\x69\x8e\x69\x2d\x5f\x7b\x95\x37\x3e\xa1\x43\x55\x8f\xf5\xf4\x4f\x5e\x7e\x5b\x5f\x1f\x7d\xbd\xaf\x56\x8b\x3e\x0f\x5b\x9a\xcc\xc1\x4b\xa7\x6d\x3d\xe9\x4f\xbe\xe1\xf8\xef\xcd\xef\xc8\x5d\x96\x70\x12\x4c\x09\x28\x48\xbf\xcd\x2d\x7e\xa5\xd0\x98\xf0\x0b\x13\x13\xec\xc1\x85\xcf\xff\x93\x70\xe1\xf3\x3e\x5c\x78\x96\x93\xcf\x3d\x70\xe1\x45\x27\x59\xc1\x85\x3b\x9d\x34\x05\x17\x1e\x75\xd2\x14\x5c\x78\xa2\xa1\xc1\xfb\x9c\x7e\xd6\x4f\x0f\xf7\x0f\x83\xde\xef\xa4\x7d\x30\x76\xda\x0b\x06\xbf\x1e\xbc\xcf\xc9\x86\x6d\xd5\x23\x7a\x93\x97\xe5\x65\x8e\x89\x66\xa9\x9b\xaf\x56\xf9\xaa\x77\x07\x18\x3e\xc1\xac\xeb\x01\x98\xbb\x1c\x78\xee\x72\xd9\x79\x8b\x0f\x0f\x2b\x06\x43\x3a\x3b\x03\x9e\x65\x60\x48\x5c\xa9\x5b\x7d\x7a\xcb\x56\xd9\xdb\x27\xff\x80\x44\x29\x9d\xef\x69\x41\xf3\xd0\x26\x05\x9e\x1a\xb3\xb7\x08\xd2\xf1\x86\x6d\x75\xfd\xbf\xf6\x8d\xea\x69\x6e\x5d\x90\x7d\x01\x16\x36\xe7\x1d\x2a\xfa\xad\x17\xb6\x39\x35\xb9\x80\xf0\xcf\xaf\x65\x36\x50\x50\x7b\x43\xec\x9f\x82\x26\x37\x78\x5b\x51\x5d\x6a\x5c\x81\xa8\xcd\x28\xeb\x00\x11\xfa\xf8\xe8\x3c\x94\x0a\x38\x3c\x9d\xa3\xf0\xe1\x7f\xf2\x28\x7c\xd8\x3f\x0a\x0f\x73\xf2\xa1\xe7\x28\xfc\xda\x49\x56\x47\xe1\xb7\x4e\x9a\x3a\x0a\x7f\x76\xd2\xd4\x51\xf8\x5d\x1f\x80\xe7\x39\xfd\xa0\x9f\xfe\xfa\x16\x30\xa3\xf0\x61\x57\x4c\x75\x99\x37\x96\xea\x6e\xa6\xe1\x1b\xd0\x07\xd0\x53\x71\x7f\xfa\xf3\xcf\x8d\x46\x93\x83\x84\x38\x17\xcc\x68\xa4\x27\x1c\x92\x66\x9d\x66\xe1\x8a\x7e\x9e\x23\x51\xd3\x15\x7d\x6b\x46\x9d\x1a\x9c\xb5\xfa\x3b\xbf\x05\x04\x9b\x8b\xbf\x8e\x1e\xe2\x5c\xd9\xd5\xdf\xfb\x6b\x70\x9c\x93\xbf\x7b\xd6\xe0\x41\x27\x59\xad\xc1\x1f\x9d\x34\xb5\x06\xef\x3a\x69\x6a\x0d\xfe\xd2\x33\x2f\x13\xfa\xb7\x7e\xe2\xbd\xea\xa1\xed\x2b\x5f\x0f\xfc\x0b\x90\x1b\x9b\x19\x80\xf5\xfb\x86\x0a\xed\xe9\xa9\x67\x4c\x24\xff\xc6\xee\xee\xac\x91\xdd\xe5\xda\x59\xe0\x72\x09\xce\xc1\x70\x25\x5c\xd5\x30\xb6\x5c\xd2\x56\x82\xda\x12\x94\x27\xa4\x95\xa8\x26\x2d\x4d\xb4\x82\x47\x42\x85\x7e\x8a\x93\x5b\x29\x8d\x83\x29\x11\xfd\xa4\x6a\x7a\x5f\x00\xe9\xc1\x51\xed\xd1\xbf\x09\x08\x68\x1e\x0c\xaa\xcd\xba\xf5\xd7\x1a\xb6\x6a\x96\xb8\x81\x31\x45\x72\x0b\xe3\x4b\x93\xc3\x53\x3f\x05\x7f\x2a\x86\x08\x8c\x6a\xaa\x43\x9d\x8c\x62\x48\x23\xdf\x1f\x22\xe6\xfb\xd1\x2f\xdd\xc8\x82\xb9\x76\xd5\xa1\x08\xb2\xc4\x3c\x72\x50\x10\xcc\x7d\x3f\xa9\xa5\x6f\xe0\x98\x4d\x0d\x73\xa6\xbd\x0a\x1c\x4c\xc9\x96\x0e\x27\x64\x49\x8f\xfc\x54\x07\xa9\x49\xac\x7f\x00\x35\x3f\x71\x73\x58\xf4\x23\x90\x29\xa3\xd1\xea\x7e\x61\xc0\xd1\x9a\xca\xf9\x6a\x41\xae\x28\x9f\xaf\x80\x8a\x16\x18\xc8\x76\xca\x42\x81\xae\xc8\x9a\xac\x08\x27\x92\xc4\x38\x10\x68\x4d\xae\xc8\x8a\xa8\x61\xc7\xb8\x25\xc0\xba\x01\x72\xf9\x06\x47\x59\x2a\xe3\xb4\xe0\xb3\x2d\x1d\x4e\x67\x9a\xfc\x8e\x57\x68\x69\x5c\x7d\x26\xfb\x6e\x90\x55\x3a\x4b\xd0\x92\x70\x45\xa6\xad\xd5\x7d\x56\x96\x19\x5a\x2b\xe2\x94\x08\x45\xc4\xdb\xb1\x2f\x8d\x66\x14\x78\x27\xde\x39\x0d\x54\xd6\x47\xf3\x7a\x48\xe9\x95\xef\x0f\x33\xe8\xa8\x29\xde\xca\x69\xaa\x8a\x9b\xdb\x8a\xd4\xcf\x1c\x93\x6d\x45\xa2\x84\x3e\x49\xc7\xef\xe3\x54\xfe\x04\xa4\xa8\x5e\x9b\xa4\xe7\xee\x83\xe3\x61\xdc\x36\x03\xe4\x68\x6e\xbe\x3e\x56\x8d\xa2\xc8\xd3\xf9\x68\xc4\x17\x74\x2e\x88\x66\xcf\x18\xea\x20\xf9\x6f\xa8\xbe\xae\x5c\xea\x8a\xc9\x2a\xa1\x9f\xd3\xf0\x73\xda\x1c\x2b\x1b\xc2\x69\x9b\xd0\x55\x12\xae\x12\x1d\xc6\xe4\xf5\xca\xee\x17\xd5\xee\xb2\x7f\x7b\x13\x86\x77\xf9\x75\x0c\xde\x9a\xf0\x2e\x62\x39\x77\x63\x09\xb0\x3f\x62\x7e\xbd\xf0\x02\xf0\x36\x74\x7e\x23\xb9\xb6\x0b\x1c\x52\xee\xbc\x95\xa5\xfe\xf6\x7a\xb5\xca\xb9\xb4\xdf\xf4\x5b\x73\x12\x24\xb5\xf6\xe5\x44\x01\x64\xfd\x38\x6b\x35\xd8\x8a\x7f\x11\x58\x3a\xff\x4b\x0d\x0f\x63\x60\xd0\x45\x09\xd8\x15\xe8\x27\x8e\x31\x6e\xd7\xfb\x50\xa3\x5a\x0b\x2f\xe8\x8e\x8f\x77\xd3\xb4\x4f\xae\xba\xf5\xc1\x95\x40\x23\x49\x46\xbc\x53\x23\x70\x04\x9b\x5c\x12\xdc\x0b\x52\xca\xe1\xdf\xf7\x65\x6d\xff\x42\xb9\x7d\x6c\x57\x60\x95\x0f\xdb\xad\x6b\xcd\x07\xa7\x5e\x4a\xf9\xc8\xf3\xda\x45\x5f\x32\x55\x4e\x8b\x5c\xf2\xa4\xfd\xed\x84\x4b\xf3\x2d\xa2\x53\x1f\xfc\x9d\x17\x65\x89\x0a\x9a\x24\x98\xe8\xcd\x36\x34\xb7\xa1\xef\x0f\xa3\x2e\x9c\x62\x06\x4e\x01\x70\x72\x21\xd3\x4c\x94\xf4\x88\xb0\x1a\xe4\xe8\xcd\x4d\x8b\x04\x41\x2c\x4d\x1d\xb4\xc7\x6c\xa7\x26\x50\x59\x73\x14\xbb\xdd\x04\x44\x58\xef\xab\x6d\x0d\x02\xb7\x89\x55\x00\xa2\xd4\x3e\x73\x8b\x1c\x58\x58\xbe\xfe\xca\x5d\x61\xa1\x32\x38\xdc\x6a\x5f\x16\x72\x9e\x8d\x8c\x76\x7e\x63\x8c\xa0\xf9\xa5\xdd\xb3\x61\xf1\x1f\x17\xeb\x7d\x28\x14\xd1\x25\x82\x75\x82\x04\xb0\xd7\xcc\xbd\x71\xf3\x6f\xdf\x5e\x24\xa3\x13\x08\xde\x64\x7b\x56\x73\x5c\xd3\xc5\x8c\x83\x58\x04\x1c\xbb\xc7\xf3\x6c\x34\x5a\x50\x56\x23\x48\xb1\x6e\xf1\x22\xd9\xb7\x9f\x9a\x2f\x2a\xb2\x49\xf6\xe9\xd8\xad\xa1\x60\x9f\xe5\x8f\xeb\x58\x60\xe4\xbc\xce\x78\xc1\xa5\x43\xe6\xea\x75\xc9\xc9\x59\x42\xcf\x93\xb0\x07\xc7\xb0\x63\x99\x2f\x02\x24\x69\xed\xc3\x81\xdc\x24\xe8\x1c\xce\x60\x9f\x15\xf8\xc6\xae\xab\x76\x4a\x8e\xab\xe0\x42\xdf\xfb\xd7\xbd\x78\xcc\x95\xca\x29\x32\x72\x96\xe0\x8a\xbc\xee\x19\x52\x0f\x69\xfe\xf1\x5b\xee\xee\x6b\xe8\x61\x44\x0b\xe7\xe2\x8e\x86\x2a\x99\xe3\xda\x99\xf5\x90\x35\x87\xc2\x2e\x64\x4e\xa3\x59\x5e\xf3\xa6\x13\x5a\xcc\x73\xcd\x95\x46\x2c\x4c\x06\x71\x3a\xe0\xc1\x6b\xbb\x5f\x49\x82\x9b\xeb\x5f\x7b\x50\x6e\xae\xff\x6d\xeb\xfa\x5f\xf9\xfe\xd6\xee\xfd\x15\x5c\xff\x5b\x7b\xfd\x43\x64\xdd\xfe\x1b\xde\x76\x6a\x4d\xd9\x6c\x34\xca\xef\x47\xa6\x5b\x57\x54\xce\x75\xd7\x16\xe4\x86\xf2\x79\xe2\x5c\xf9\x17\x70\xe5\xdf\x90\x2b\x92\x34\x57\xfe\x15\xb9\x21\x89\x73\xe5\x0f\x1b\xf5\xaa\x8b\xf0\x8a\x52\x7a\xa3\xae\x6b\x95\x4b\xdf\xb7\xc1\x05\xc6\xbb\x65\x73\xe5\xae\xcb\x12\xad\xa9\xe7\xc6\xf3\xa6\x34\x01\x0f\x45\x4b\xdf\x1f\x1a\xc7\x74\x9b\x76\x10\x22\x72\x4e\x5b\xd1\xb7\x67\x1b\x4a\xcf\xcb\x72\x88\x5a\xf5\x40\x28\xa6\xbe\x54\xde\x8a\x60\x5c\xd3\xb7\x1b\xdf\xdf\xb8\x04\xcc\xa6\x37\x72\xc6\xb9\xef\x9f\xbb\xb9\xce\xcb\x12\xa9\xf1\xe0\xaf\x21\x0f\xcb\x8a\x7c\x4a\x2c\x2b\xce\xde\x8a\x1e\x26\x8f\xeb\x44\x1b\x95\x1b\x93\x93\x3a\xed\x84\x4b\x0f\x93\xcb\xfa\xfd\x4f\xce\x2e\x35\x1f\xef\x38\xa1\x42\xa0\x4f\x09\x26\x0f\xe0\xe9\x4d\x8e\xc9\x1f\xf0\xf4\x38\xc1\xe4\x1d\x3c\x9d\x24\x98\xbc\x81\xa7\xcb\x04\x93\xb7\x09\xfd\x90\xce\xd0\xa7\xc4\x71\x59\xd3\x5c\xcf\x43\xfa\x36\x81\x7b\xf0\x93\xfe\x73\xbd\xc5\x4c\x31\xc6\x65\xf9\x26\x77\x0a\xc2\x05\x52\x97\x79\x93\xe3\xb2\x7c\xec\x56\x6c\x06\x63\xf2\x3c\x4e\x6a\x4b\x63\x55\xd3\x89\x9b\x13\xae\x9b\xba\xa6\x93\x04\x97\xe5\xa5\xfb\xdd\x0c\xd9\xc9\x73\x09\x0e\xb1\xd0\xdb\x3e\xbc\xe8\x43\xaa\xad\x03\xeb\xe2\xfa\xe4\x2f\x80\x45\xd2\xda\x45\x16\xdf\x11\x34\x0d\x85\x40\x29\x0e\x3c\x4f\xef\x76\x83\xca\x08\x8d\xca\x0c\x8e\x93\xa0\xa3\xf5\xdf\xcc\x1a\x5c\x49\x83\x07\x7b\x39\xa0\xc3\xfa\xe3\x1f\x7b\x1f\xeb\xb9\xd1\x19\xde\xed\x65\x80\x29\xd1\x1f\xdf\xec\x7d\xac\xe7\xa3\x91\x5c\x19\xf6\x6d\x42\xdf\x26\xe4\xc5\xb7\x01\xbb\x57\x5f\x06\x76\x70\x4f\x91\x42\xfd\x73\x05\xee\x58\xd8\x0d\x03\x17\x3c\x03\x48\x98\xd3\xa2\xf7\x13\x57\x74\x4a\xcf\x22\xa0\x88\x3a\xd9\x8d\xe0\x56\x7d\x88\xc2\xbd\xdc\x41\x84\xc9\xaa\xb7\x92\xfc\x96\x4a\xf2\x9e\x4a\x72\x05\x32\x23\x4a\x41\x33\x71\xeb\xfb\x4f\xc1\xbc\x03\x28\x8b\xa7\x02\x71\x87\xce\x62\x8a\x54\x4a\xe8\x70\x5a\xe9\x9c\xc3\x1a\xab\x88\xcb\x12\x69\x0f\x9a\x32\xc1\x84\x95\xe5\x73\xb8\xc7\x8b\xa4\x35\x77\xc1\x52\xbf\x47\x75\x8a\x06\x89\x53\x3f\x35\xd6\x02\x4b\x9a\xf8\xfe\x8b\xfa\x2a\xf3\xce\xce\xae\x05\xdb\x6e\x0d\x71\xbe\xa6\xab\xe6\x2b\xef\x7c\x55\x55\x2d\xcb\x72\x6d\x01\xf5\x32\x34\x81\x77\x11\x0e\x24\xb9\xa1\xeb\x90\xd7\xef\x35\x03\xab\xdd\x6f\x17\x10\x5b\x62\x67\x38\xdc\x2a\x24\xa1\x95\xef\x63\x7b\x58\x06\x45\xb9\x93\xf4\xaa\x4a\x37\xae\x38\x29\xa5\xa0\xb7\x03\xd7\x3b\xb7\x1a\x44\x69\x59\x0e\xef\x08\x6d\x7b\x71\x47\x1d\xb3\x50\x61\x8f\xbe\x9f\x0e\x69\x1a\xbc\x4a\xea\x8a\x64\xd3\xd2\xcb\xfd\xbd\x69\x43\x36\x3a\xf2\xd3\x8c\x30\x3a\x14\xb3\x5a\x0e\x5b\x93\x09\xb1\x66\x41\x34\x98\xc5\x2c\xab\xef\xdd\x42\xdb\x49\xc4\x2b\x45\x65\x17\xf3\xa3\x45\x58\xcc\xa7\x0b\x30\xf6\x2c\xe6\x93\xc5\x22\x18\x22\xf5\x0f\x77\x47\x73\x03\x83\x21\xa1\x2b\xd8\x8e\x28\xd2\x35\xe1\xf9\x64\x41\x72\x2a\xe7\xd1\x82\xa8\x8b\x73\xea\xd6\x0d\x9b\xac\xbe\x0f\x73\x45\xdb\x47\x83\x4e\xd5\xb5\xb2\xf1\xca\x4c\x7f\x73\xe1\x6e\xa9\x40\x39\x49\x48\x04\xf7\xeb\xaa\x7b\xbf\x6e\xc3\x3b\x09\x4a\x48\x4e\xee\x12\x41\x56\x38\xd8\x3a\xb5\xda\xc5\x35\xc2\x99\x47\xfd\xbc\x1e\x1d\xed\xef\x79\x5a\x73\x48\x9f\xb4\xf3\x35\x56\xa3\x22\xd3\x50\x95\xb7\x64\xb6\x16\xbf\xd5\xca\xa1\x72\x2e\x16\x33\x30\xda\x99\xab\xf5\x7c\x94\xa0\x0c\x2f\x1a\x18\xa5\x4d\xbb\x6f\x61\xa2\x34\xa2\xf5\x4e\x3c\xc2\xd4\xfa\x6f\x01\xd4\xa6\xe1\x28\xf0\xb2\x04\xed\xb3\x5a\x76\x8e\xad\x6d\xf3\xfb\xbe\x5b\xe1\x49\xe2\xe0\xe0\xd3\x46\xd8\xeb\xfb\x7c\x3e\x59\xa8\x6d\xf0\x39\x41\xf0\x38\x59\x10\xf8\x9f\x2e\x1c\xe7\xce\x4e\xaf\x34\x07\xe2\x65\x1d\x5d\x57\x37\xfa\xb0\x6f\x82\xf7\xad\x21\xcb\xf2\x8e\x00\x59\xd8\x1e\x11\x43\xf5\xc5\x55\x91\x7f\x12\x7a\x78\x3a\x2e\x4f\xe7\x28\x0c\xe6\xff\x9a\x9f\x2e\x16\xdf\x97\x68\xee\xfd\x9f\x0b\x8c\xc2\x00\x85\xc3\xd3\x29\x9e\xff\xeb\xf4\x74\x51\x9e\x9e\x8e\xf1\xf7\xe1\xe9\x14\x9f\x2e\x0e\xc9\xd3\x84\x1e\xfe\xeb\xf4\xfa\xfb\x3b\x87\x9a\x19\xdf\x9d\xe6\x78\x85\x00\xa2\xb7\x69\xb5\xb4\x2b\x76\x18\x22\x2b\x6b\x80\x99\xb7\x03\xd0\x2f\x56\xd6\x00\x6f\x75\x78\xaa\xe1\x43\x35\xb5\xb8\x2c\xd1\xd3\x44\xbb\xea\x05\xa4\xeb\x1f\xe7\x45\xe7\xe5\x3a\x9c\xde\xa0\xd6\xdd\x70\xf9\x8a\xbf\x25\x75\x3f\xfb\xa3\x52\xd7\x75\xf4\x7c\xe6\xb7\x28\x8b\x7f\xda\x82\xcb\x10\x47\x47\xbc\x56\xb4\xee\xe8\x1b\x89\x46\xa1\x88\x64\x94\x87\xdc\xda\xd7\xac\xe3\x9c\x08\x1c\x00\x0f\x3e\xa6\xe9\x38\x62\xd1\x9a\x6b\xcf\xc1\x6b\x96\xa3\xac\xe6\x3e\x69\x94\x3c\xb3\xea\x6c\xb2\x5d\x41\x23\x4f\x80\x0a\xa8\xc6\xc4\x33\xc2\x70\x59\xc6\x84\x55\xdd\xef\x29\xbf\x46\xbf\x25\xe3\x63\xf5\x52\x96\xcf\x73\x4c\xd2\xca\xbe\xd3\xe7\x9a\x21\xfc\x67\x42\x7f\xd3\x14\xd0\xef\x09\x3d\x9c\xff\x6b\xac\xf6\xca\x48\x6f\x1c\x74\x10\x9e\x2e\x47\x28\x0c\x4e\xc7\xa7\xcb\x11\x0e\xb1\xdd\x42\x66\x0f\x1d\xb5\xf6\x10\x3e\x3d\xc2\xa7\x8b\x12\x85\x14\x4a\x94\xa7\xf3\x53\xd8\x6d\xe6\xb1\xbc\x83\xf1\xe1\x05\xf9\xa0\x36\xe6\x29\x3a\x3d\xc5\xe1\xe1\x05\x79\xde\x77\xca\xfe\x4c\xba\x51\xc8\xcc\xb8\x7e\x9c\x4c\xc0\xa4\x5b\xb3\x0c\x52\x2b\xf7\x20\x9a\x19\xa5\x90\x79\x98\xd7\x1a\x56\xa0\xbd\x10\xc4\x5c\x11\xba\xe6\x3b\x18\xd5\x4a\xd7\xe6\x74\x02\x91\x54\xb5\x4b\x01\x4f\x3b\x02\xd5\xd6\xc0\xbf\x27\x2d\x86\xa2\x89\x25\x61\xb2\x8a\x30\xab\x33\x7e\x48\x88\x77\x67\xea\xe1\x20\x2d\x4b\xed\x98\x94\x5b\xe5\x99\xbf\xfe\x2b\xa4\xb9\xe6\xcc\x09\x6c\x89\xf3\x0c\x4c\xfa\x1b\x2e\xf3\xac\x31\x71\xfd\xfb\x56\x4e\x9c\x5c\xd1\xbf\x93\xf0\xef\xa4\xb6\x24\x75\x59\x71\x7c\xd5\xba\x8e\xfb\x9d\x14\xf2\x96\xb1\xe7\x43\x07\xdd\x19\xfc\xa5\x05\xc9\x23\x8d\xf4\x3e\x4c\x9c\x4f\x72\x15\xca\x95\x65\x9d\x28\xac\xd8\x88\xcd\x47\xb5\x46\xa9\x37\xf1\xa8\x02\x03\xd3\x43\x4e\xe9\xc1\xf4\x70\x12\x7a\x07\x13\x2f\x30\x0c\xcb\x74\xd5\xeb\xe4\xdc\xcc\x93\xe7\x05\x7c\x55\x5f\x39\x62\xd5\x7f\x23\x68\x46\x89\x0c\x7e\xd5\x90\x21\x9c\xcb\x45\xf0\x3c\x41\xe9\xaa\xe1\x99\x64\xab\xae\x1d\xca\xbe\xe7\xa6\xb2\xd4\xf0\xc9\x8e\xcc\x9a\x88\x74\x86\xc2\xd5\x50\xa4\x3b\x14\x73\x61\xb1\x6e\xf7\xda\x41\x82\x11\xa7\x62\x05\xf3\x88\xeb\x9b\xd1\x42\x46\xcd\x2e\xa2\x72\x9e\xad\x10\x9f\xa7\xa3\xd1\x02\xd7\x5b\x58\x41\x50\x4a\x45\x28\xad\xfa\x80\x16\x1e\xac\x6e\xe1\x20\xd9\xa9\x33\xda\x08\x6c\x85\x5c\x37\x27\x8d\xfb\xd5\x30\x0d\x8c\x9e\x56\x74\xcb\xb4\xd6\xbd\xe3\x0e\x2c\xb6\x6b\x91\xef\xb7\xdf\x38\x42\x38\x98\x92\xac\x67\xbc\x24\x56\xc4\xfc\x68\x24\xee\x67\x35\x0b\x0a\x06\x2c\x16\x06\x61\xd1\x5a\x82\x7a\x4a\x90\x24\x0c\x1b\xc5\xbb\x99\x9a\x1b\x56\x63\x08\x71\x59\x8e\x46\x62\x48\xb3\x30\x0e\x86\x43\x94\xf5\x9c\x2b\xec\xfb\xc7\x02\x62\x11\xbc\x13\x88\x41\xfc\x64\x7d\xad\x95\xe5\x7b\xd1\xec\x8b\xe4\x6b\x63\xcf\x57\x1a\x4d\x5f\x99\x02\xab\x5b\x0a\xa8\xbd\x87\x7d\xff\x91\x3a\x06\x0a\x41\xc8\x56\xe0\x4b\xa7\x8d\x18\xe8\xd9\x29\x56\x2d\x0d\x2b\xd7\x23\xae\x00\x7d\x8a\x44\x67\x08\xee\xa8\x63\x27\xc8\x5d\x8b\x39\x6c\x7b\xcf\x4a\x0f\x03\xcc\xa0\xd5\x8d\xe2\x98\x5c\x98\x2a\x96\xdf\x5a\x05\xd3\x4b\x67\x8a\xad\x7b\x8b\xc1\x98\xc3\xed\x4a\x0f\x16\x07\xcb\xe6\xa8\x5e\xf5\x15\xe8\x33\x92\x08\xad\xf2\x81\x0c\xcf\x45\xb0\x1f\xe0\x3b\xd4\x87\x7b\xb5\x42\x10\xf2\x08\xc2\x1d\x05\xef\xc1\xa4\x71\xdd\x34\x77\x73\xcb\xaa\xb4\xd5\x30\x35\x59\xf0\x10\x08\x8b\xab\x3c\xd8\xe4\xa0\x59\xa9\x88\xa0\x46\x73\x37\x03\x64\xed\x4a\xe1\xd5\x40\xf9\xb4\x55\x27\xd5\x36\x5f\x0b\xb8\x1d\x80\xb5\xd8\x60\x25\x17\xaa\x33\xbb\x5f\xa3\x7e\x8f\x68\x45\x3b\x58\x43\x1b\xd9\xaf\x5d\x4d\xb6\xc3\x24\x34\x6a\x17\x45\xce\xc5\x18\x3c\x23\xcd\x52\xf0\x6f\xd2\x9b\x9f\x7a\x0f\x39\x13\x5c\x0c\xbc\xc6\xb0\xdd\x31\x88\x37\xa6\x01\x9b\x15\xdd\xe9\xd0\x28\x27\x46\x95\xd9\x23\xf1\x32\xf0\xf2\xe6\x2d\xca\xd2\x96\x87\x57\xcf\xc4\x73\x7e\xbc\x8c\x65\x26\x82\xe1\x54\xc7\x97\xd5\x01\xc0\xe6\x0b\x3b\x75\x3b\xb6\xdd\x3e\x4b\x57\x59\xb0\x59\x91\x5c\x66\x82\x07\xd0\x50\xbe\x65\x11\x5f\x06\xc3\x09\xb8\xb4\xe7\xc1\xce\xf8\xad\xd7\xee\xd8\xd3\x58\x6a\x33\x87\xa5\xaa\xd7\x28\xba\x07\xbb\xaa\x22\x17\xdc\x98\x7d\x9b\xfc\x7d\x44\x89\x71\x3c\x5f\xb5\xea\xe9\xcd\xe8\x64\xa8\xdc\xee\xf7\x64\x3e\x67\x9a\xb9\xc4\xa5\x35\x81\xd4\xba\xde\x48\x8e\x4d\xff\xf0\x78\xc3\xb6\x7d\xfe\x0e\x07\x72\x5c\xd7\x5d\x61\x8c\xb1\x36\x3e\xc1\x30\x9a\x87\xba\xf0\xc3\x9b\xc7\x36\x4b\x5f\xeb\x3d\x47\xf1\xd6\x5e\xdc\xee\x78\xd1\xed\x88\xda\x61\x95\xed\xca\x2d\x8a\xc0\x20\x46\x82\x58\x38\x09\x3f\xce\x36\x5b\x26\x38\xd2\xb2\x25\x70\x01\x06\xfd\x3f\xe1\xe2\x8a\x8b\x27\x99\x78\x9e\x1f\x27\x31\x4f\xe5\x5e\x5c\x9a\xc6\x35\x8c\x59\x98\x42\xe8\xd8\x3a\x39\x14\x75\x83\x6f\xd8\x48\xc0\x84\x41\x0d\x79\xb0\x4b\x32\xb6\x3c\xee\x2e\xb5\xea\x23\x9a\x10\x09\xde\x6e\x63\x89\x91\xf7\xe2\xf5\x83\x47\x67\xc7\xaf\x5f\x3d\x79\xf6\xd4\x03\x17\x46\xcd\xca\xf6\x4d\xe7\x9d\x14\xbd\x48\xc7\x1b\x26\x2e\x9b\xa1\x0f\x38\xaa\x2d\x54\xed\xb1\x7f\x91\x8e\xaf\x45\x6b\x51\xcd\xfd\x3d\x9b\x59\x16\x1f\x1f\x6f\x05\xbf\xa2\x7c\x9c\xf2\x4f\xd2\xb0\xfb\x26\x41\x4d\xeb\xd9\x3e\x12\x88\xc0\x12\xe7\xe0\x24\x8f\xe8\xdc\xf4\x2e\x11\xc8\x5b\x71\x19\xad\xcd\x2e\xf0\xb4\x7c\x6f\x70\x37\x48\x91\x77\xf2\xf8\xdd\xd9\xb3\x57\xcf\xde\x3d\x7b\xf0\xe2\xd9\xdf\x8f\x1f\x79\x64\x38\x31\x9f\x7f\xd0\xe2\x3a\x9e\x2e\x6b\x11\x1d\x1f\xe7\x32\xdb\x22\x5c\x55\xd8\x88\x37\xd4\xfe\x72\xeb\xfe\xaf\xcc\x83\x16\xa5\xfd\x4f\xcf\x46\x46\x41\x00\x04\x46\xa8\x0a\x60\x8e\x45\x96\xc9\xa7\x3a\x01\x13\x53\xe5\x91\x9d\xb4\x1f\xc9\x32\x47\x3b\x6b\x93\x91\x8d\xfb\xf6\x20\x39\xcf\x96\x37\x0a\x5e\x98\x09\xfb\x31\x38\x9a\x4c\x29\xa5\x28\xa6\x7c\x9c\xf3\x54\x62\x13\xa5\xc2\xf7\x11\x62\x34\x06\x2f\xbf\xf5\x09\x0a\x11\xeb\x17\x80\xcb\xb1\x85\x87\xb7\x7d\x8f\x53\x09\x06\x58\xa1\x1c\xab\xab\x8a\x5a\x62\x38\x90\xc6\x65\x78\xfb\xab\xd5\x86\x93\x63\x45\x1a\xb7\xbf\x59\x62\x59\x15\x8d\xd3\x8b\x84\x1f\xaf\xb3\x38\xe2\x9d\x0a\x9c\x2f\x2a\xe7\xa6\x48\x64\xdc\x97\xd1\xf9\xa0\xf2\xe9\xc4\x42\x9b\xf4\x7a\x95\x0e\xc6\x6c\xf6\xdc\xc3\xf7\xaf\x1e\xbd\x78\x7c\xe2\x29\x3c\x2b\xe8\xa6\xcd\x17\x8a\xb0\xd1\x2b\x31\x3d\xd2\x22\x18\x3d\xc7\x3f\x07\x66\xa5\x7e\x26\x7c\x2c\x27\x40\x92\xa9\x2d\x71\x84\xd5\x2e\xcf\xd7\xd9\xb5\x09\x77\xe1\x91\x9d\x89\x2e\xf9\x44\x47\x11\x91\xd9\x00\x36\xea\xc0\x2c\xc0\xd8\xb3\x71\x4f\xbc\x25\x4b\x2f\xb8\xf0\x2a\xb2\x53\x7b\x22\x18\x4e\xec\x8a\x4e\x8f\xbe\x72\x06\x74\x60\x8f\xf9\xfc\x88\xfc\xbc\x58\xd4\x07\x22\x67\x57\x7a\x62\xfa\x7d\x6f\xf4\x9e\x87\x9a\xc4\x77\x0d\xe4\x6f\x3f\x13\x69\xf7\x4c\xa4\x7a\x5a\xd2\xde\x33\x21\x9a\x33\x91\xb9\x67\x22\x76\xce\x04\xa3\xad\x23\x41\x0a\xd8\xc4\xb0\x11\x41\xff\x67\xcb\x6e\x14\x98\x54\x67\x87\x81\x43\x33\xd5\xdc\x5d\xa2\x1b\xa4\xf7\xc8\xda\x39\x2f\xf1\x97\xce\x0b\xdc\x25\x41\x54\x1f\x9b\x7b\xf6\xd8\xe4\x8a\xf2\x6e\x1d\x9b\x5c\x1f\x19\x28\xe1\xfb\x42\xef\x92\x93\xc7\xef\xde\x3d\x7b\xf5\xf4\xe4\xec\x8f\x07\x2f\xde\x3f\xf6\x88\x9b\xc9\x59\x41\xdb\xb3\xe9\x5d\x77\xff\x4c\x27\x81\xe9\xfa\x74\x42\x52\xb5\x83\x52\xb3\x83\xee\x62\x92\x7d\x75\x07\xa9\x95\x1d\xfc\xe7\xff\x53\x63\x39\x05\xcc\x65\xc2\x6e\x20\x54\xa2\xf7\x9f\xff\xf7\xd8\xc3\xdf\xb0\xad\xee\xee\x6f\xab\xd4\xd9\x56\xa9\xdd\x56\x77\xc9\x74\xd2\xec\xab\x8a\x6c\x0a\xc9\xcc\x95\xd5\x81\xdb\x9d\x9d\xd6\x42\x3a\x28\xaf\x88\x73\xbc\xf6\xb2\x9a\x03\x41\x6f\x14\xda\xed\xc5\x10\x5c\xd4\xb9\xea\xf6\xf2\xdb\xc8\x96\x55\x55\x11\x91\x15\x92\xe7\xc1\xdc\xe0\x75\x0d\x26\xb7\x65\x72\x1d\x78\x87\x41\x8d\x0a\x84\x1e\x78\xfc\x03\x97\x6e\x79\xa0\x10\xb6\xe0\xcf\xb8\xaa\x16\x24\x65\x57\xcf\x24\xdf\x34\x95\x9c\xb4\xd0\xc1\x97\x4c\x82\x39\x6a\xb0\x59\x8d\xd5\xbb\x6e\x32\xb8\xad\xc1\x7a\x69\x54\xf6\x25\xf1\x0e\x3d\xf0\x33\x95\x16\x01\x04\x59\xf4\xaa\x05\x38\x74\xfd\x3f\xfe\xdf\x00\x00\x00\xff\xff\x03\xec\xaa\xb7\xa9\xab\x01\x00") +var FileSettingsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xe9\x7a\x1b\x37\xb6\x28\xfa\xfb\xee\xa7\x20\x6b\x6b\x57\x03\xcd\x25\x9a\x74\x3a\xc9\xee\xa2\x61\xb6\x07\x79\x48\x6c\xcb\x91\x64\x27\x0e\xcd\xd6\x29\x15\x41\x09\x16\x09\x30\x28\x50\x83\x59\x75\xde\xe7\xbe\xc6\x7d\xb2\xfb\x61\xaa\x89\x45\xd9\xe9\x61\xef\x3e\xe7\xdb\xfd\xa5\x2d\x16\x0a\x40\x61\x58\x58\x33\xd6\x9a\xd1\x39\xe3\x14\xa1\xf9\x9a\x27\x8a\x09\x8e\xf0\x26\x58\xa7\xb4\x93\x2a\xc9\x12\x15\x8c\xae\x62\xd9\x51\x24\x58\x73\x5b\x71\x16\x74\x89\xba\x5d\x51\x31\xef\x9c\x2f\xc4\x59\xbc\x38\xb9\x60\xe9\xb8\xfc\x19\xb5\xd5\xbc\x66\x7c\x26\xae\xc7\xf6\x4f\x6b\x0d\xdb\x81\xeb\xa7\xb5\x46\x4a\x17\xf3\xb1\xfe\x27\xda\xe4\x23\x3f\xd8\x0e\x45\x0a\x28\xde\x48\xaa\xd6\x92\x77\x14\xa2\x64\x43\x6f\x56\x42\xaa\x34\xda\xe4\x39\xd0\xbe\x7b\xc2\xe5\xcf\x5c\xcf\x88\x93\xea\x94\x15\xde\xe8\x42\x4a\xb6\x4b\x0e\xcf\x3e\xd1\x44\xf5\x57\x52\x28\xa1\x47\x02\x9c\xd0\xfe\x45\x9c\x1e\x5e\xf3\xb7\x52\xac\xa8\x54\xb7\x20\x49\xe0\x1b\x06\xc4\x8f\xf7\xf8\x76\x79\x26\x16\x63\xfb\x27\xda\xe4\x20\x88\xec\x33\x45\x65\xac\x84\xcc\xb2\xe0\x2f\x7f\xf1\x0f\x01\x30\x22\xfb\x71\x7a\xcb\x93\x97\xd5\xf7\xb5\x92\x00\x62\x22\xfb\x4a\x1c\x2b\xc9\xf8\xf9\x49\x7c\x6e\xaa\x54\x9e\x83\x72\x51\xd6\x7a\x51\x80\x17\xcb\xe2\xe6\x60\x97\xd4\x8f\xda\xd4\xd9\x5c\xc5\x8b\x35\x8d\x38\x50\xbe\x5e\x52\x19\x9f\x2d\x68\xd4\x1d\x40\x22\xf8\x9c\x9d\xaf\x8b\xe7\x6b\xc9\x94\xfb\x9d\x63\x50\x13\x3a\xcd\x95\xbc\xdd\xac\xd1\x26\x87\x20\xc0\x79\x12\xab\xe4\x42\xaf\xd9\xba\xb2\x82\xb5\x21\xe8\x36\x84\xe7\x79\x31\xc6\xc4\x56\x00\x69\x17\x5a\x10\x1a\x86\xb4\x5c\xe6\x0e\xe3\xa9\x8a\x79\xa2\x57\x72\x3e\xa6\xd1\x1c\x98\xdf\x8a\x44\xd2\x58\x51\x24\xca\xca\x18\x62\xc2\xe9\x75\xe7\x13\x92\x59\x36\x99\xe2\x91\xfb\x28\xeb\x9f\x32\x7e\x25\x2e\xe9\xd6\xa8\xf4\x27\x25\x09\xd2\x75\xba\xa2\x7c\x46\x67\xc7\x2a\x96\x2a\xf0\xed\x8a\xda\x02\x18\xde\xb0\x39\x0a\xe8\x0d\x4d\xd6\x8a\xf1\xf3\x80\x10\x22\xb1\xba\x90\xe2\xba\xa3\x3f\x79\x20\xa5\x90\x28\x78\x4e\xb9\xdd\xa6\x0e\x4b\x3b\xf1\x42\xd2\x78\x76\xdb\x91\x6b\xce\x75\x13\x3c\xd2\x5d\x24\x62\xb9\x5a\x50\x45\x67\xb6\x0b\xd3\xad\xe9\x47\x3f\x0b\xd7\x25\xf3\x43\x38\x40\x38\x9f\x0b\x89\x78\x7f\x49\xd5\x85\x98\x11\x01\xbc\x1f\xcb\x73\xc2\x46\x23\x3b\xfc\x98\xf0\xfe\x8c\x2e\xe8\x79\xac\xa8\xfe\x40\x6c\x8b\xd7\xe4\x14\xc5\xc0\xcd\x37\xd7\xe6\x2b\x6b\x42\xc8\x02\x27\x82\x2b\xc6\xd7\xd4\x7f\x60\x9d\xe7\x7a\x04\x9c\xde\x28\x3d\x00\xff\x1d\xcc\xfb\x29\xe5\x8a\xf0\xfe\xa9\xfb\x1b\xcb\xf3\x11\x5d\xa4\xb4\x53\x1b\x70\x51\xdf\xcc\xa3\xb1\x8e\x95\x35\x92\xa4\x32\x71\x3b\x85\x11\xef\xcf\x58\xba\xd2\x20\x73\x70\x93\xd0\x95\x59\x69\xf3\x06\xe7\xfa\x43\x81\x1d\x61\xf5\x2b\x61\xc8\xfb\xf1\x99\x5c\xaf\x14\xf2\x6f\x6d\x5f\x78\x24\x49\x65\x73\x0c\xb2\x4a\x48\xea\xb6\xd9\xac\x3b\x17\x72\x19\x2f\x74\x6f\x49\xdf\x00\x8b\x1e\xb1\xd4\x8b\x27\x38\x1d\x57\x46\x17\x95\xd3\xf8\xc0\xe8\x62\x16\x40\x62\x56\xbc\x65\xf5\xdc\xb1\x31\xef\x41\xf7\x13\xd9\xee\xf2\xbc\x5c\x21\xfb\xb5\x30\x44\xcd\x25\x70\x1b\xea\x6a\xba\x6d\x4d\xec\xfc\xf3\x1c\x29\xe0\x10\x63\x60\xe5\x51\xf1\xd3\xd9\xe8\x33\xe7\x06\xa0\xfb\x8e\xfc\xdc\x20\x96\xe7\x91\xea\x27\xf1\x62\x81\x74\xc5\xbc\x3c\x90\xb5\xea\xee\x8b\xa6\x76\x9e\xe7\xaa\x7f\x2d\xe3\x15\x49\xcc\xaa\x2d\x48\x15\xad\xce\x11\xde\x94\x03\x58\xd5\x9e\x66\xfa\x49\x37\xb9\xd0\x4d\x2e\x26\x62\x4a\x2a\xb4\xc3\x9f\xf7\x0b\x96\xe6\xa6\xe3\x2b\x7f\x6e\xcf\xa9\x7a\xeb\x4f\xec\xe1\x1c\x6e\xc9\x55\x18\x5e\xa1\x2b\x74\x83\x26\x53\x8c\xf1\xe8\x36\x0c\x6f\xbb\x44\xe3\x01\x6e\xa7\x72\x0b\x02\x87\x21\xba\x20\xb7\xd8\xf4\x74\x4e\x66\xe5\x99\x27\xf3\xca\xef\x3a\x66\xb8\xc0\xe5\x44\x96\x7a\x11\x26\x16\xcc\xc1\x2f\x80\x87\xa1\x69\x7f\x2e\xe4\x41\x9c\x5c\x54\x48\x01\xc5\x1b\x8b\x3e\x6b\xd4\xa1\x32\x2b\x8f\x53\x10\x05\x85\x73\x6c\xfe\x2b\x3e\x77\x66\xc9\x91\x41\x2f\xa3\x6a\x6d\x52\xc7\x29\x45\x83\xb8\x5c\x32\x8d\x4e\xaa\x44\x49\x42\x8c\x37\xdd\xa2\xa6\xd4\x2d\x21\x86\xb5\xed\xde\x40\xf9\x44\x4c\x41\x01\xb3\x80\x6e\x27\xd7\x2d\xe1\xdc\x6e\xab\x05\xd2\x39\x59\xf4\x0d\xd0\x16\x38\x2e\x0c\x03\x61\x96\xad\x24\x59\xf3\x62\xe9\xe7\x10\x9c\x9e\xc6\xd7\x31\x53\x01\x1e\xd3\xbe\xa4\xa9\x58\x5c\x51\x34\xef\xbb\x52\xdc\x57\x17\x94\xd7\x29\xa8\x74\xd8\x04\x94\x19\x65\x8e\xa1\xf9\xda\x2d\xbf\x7f\x8f\xa3\x4a\xcf\x6d\x3d\xba\x21\x13\x05\x31\x5a\x6c\x77\x68\x27\xd2\xd2\x6f\xbe\x46\xee\x3c\x99\x35\xd3\x0b\xa9\x4b\x7d\x03\x22\xc7\xd2\x7e\x2d\x86\x18\x47\x31\xc2\x15\xba\x74\x5a\xee\x20\x27\xaa\x20\xd8\x13\xea\xce\xed\x54\xaf\xf5\x95\x60\xb3\xce\x40\x23\x28\x83\x4d\x68\x81\x88\x09\x5f\x2f\x16\x50\x22\x01\x5a\x45\x93\x65\x6f\x7d\x3b\x94\x30\x44\xb4\x40\x07\x1e\xaf\x51\x83\x0f\xec\x17\xc0\x8e\xa6\xad\x43\xec\x66\xb3\x18\xd1\x26\x46\xb1\x3d\x68\x70\x3a\xb9\x5d\x51\x47\xa1\x4e\x2e\x68\xc7\x7f\xbe\x33\x13\x34\xed\x70\xa1\x3a\x2b\x29\xae\xd8\x8c\x76\xe2\xce\x1f\x4c\xe3\x3f\x74\x6c\x5f\x41\xb1\x5a\x8b\xdc\xd2\xca\x14\x71\x28\x27\x60\xbf\x51\x85\x3b\x8d\xf3\x2d\xdc\xb9\x86\x3b\x86\x25\x0d\x38\x36\x57\x6c\x31\xb2\x4c\x80\x79\xeb\x41\x54\x8c\x85\x45\xd2\x88\x4e\x94\x86\x94\xf5\x42\xbd\x89\x97\x74\x4a\x84\x05\x0c\xa0\x7d\x0d\x71\x44\x99\x3f\xaf\x44\x52\x9c\xec\x6e\xb9\x52\xb5\x45\xb6\x00\x5a\x5d\x62\xbc\x3d\x16\x1c\x89\x08\x7d\xdd\xaa\x16\x2b\x6a\x47\xa7\xa9\xbf\x5e\xd6\x98\x77\xdc\xd9\x6a\xeb\xbe\x04\xb6\xeb\x92\xcf\xd4\xc8\xfd\x95\x48\x22\x35\x19\x4c\xf3\xd1\xb0\xc3\x78\x47\x99\xa1\x1b\x54\xfe\x4a\x24\x44\x4d\x86\x53\x0c\xf7\xcb\x37\x73\xc6\xe3\xc5\xe2\xd6\xbe\xbb\x3f\xd5\x23\x9c\x2b\x2a\xed\xf3\x37\x53\x0c\x06\x01\x29\x79\x7b\xc0\x95\x64\x34\xed\xaf\xd6\xe9\x05\xa2\x95\xef\x1f\x96\xdf\x57\x7d\x47\xa4\x98\xe0\x59\xb6\xc9\x47\xd4\xec\x26\x29\x68\x8c\x9e\x85\xa2\x1d\xb3\x0c\x50\xad\x4d\x68\xd9\xe1\x27\xdd\x61\xe3\xb3\x64\xe2\xe7\x16\x48\x21\x54\x90\x4f\x41\x15\x88\xf7\xda\x0c\xd2\x0d\x55\xd2\x94\x2a\xd4\x1d\x54\x46\x78\xa3\x3b\xd4\x67\xa7\x18\xe7\x44\x98\x23\x58\x81\x33\x83\xb1\x94\x05\xc6\x6d\x3e\xdc\x02\x87\xaf\xad\x74\xad\x2e\x4b\xdf\xc4\x6f\x90\xea\x2f\x28\x3f\x57\x17\xd8\xf3\x83\xfb\x43\x60\xa4\x22\x5a\xe0\x8d\x66\xc1\x46\xbd\x9e\x7c\xe0\xeb\x8e\x30\x9b\x23\x87\x24\x15\x48\x5c\x8e\xc2\xa1\xaa\x89\xd4\x1b\xa1\xc1\x96\x74\x87\x50\xa0\x5b\xff\xde\x9d\x6b\x5f\x63\x00\x34\x2f\xb9\x55\x03\xcc\x2c\x77\x47\x6f\xa3\x1f\xa3\x83\x0a\x6e\x3a\x28\x88\x85\x63\x40\x5c\x6f\x86\x03\xe9\x0e\x7c\xc3\xce\xaa\x42\x1a\xcf\xfb\x89\xe0\xa9\x92\xeb\x44\x09\x49\x66\x30\xab\x3d\xaf\x60\x65\x98\xb1\x45\x7c\xab\x4f\x16\x59\xa3\x19\xc4\x50\xb2\xb3\xcf\xfc\x72\x62\x7d\xf8\xd3\xad\xf2\x16\x81\xa9\x6d\x0b\xc2\x50\x55\x3f\xeb\x66\xdc\xed\x6a\xf6\x88\x12\x42\x56\x59\xd6\xf2\x4d\x42\x88\x46\xad\xe5\xf0\xb2\x8c\xf6\x79\xbc\xa4\x18\xe7\xa0\xfa\xcb\x58\x5e\x92\x16\x82\xe0\x98\x81\xb4\xc6\x6e\x8c\x5b\x4b\x91\x82\x19\x8e\x90\xea\x9f\x9e\x9a\x15\x3b\x3d\x25\x33\xd0\xe4\xbf\x7d\x0d\xf4\x22\xec\x62\x3a\xce\x31\x28\x3d\xaa\xd8\xf0\x54\xdb\xc3\xda\x38\xca\xa9\x39\x2f\x58\xa2\xb3\xaa\xf4\x52\x79\x98\xb0\x9d\xdc\x14\xa8\xfe\xa3\xaa\x44\x48\xce\xf4\xe7\x74\x49\xd9\xc2\x48\x54\x60\x58\x8c\x82\x46\xb1\x30\x44\x8c\xbc\x95\x62\xc9\x52\x6a\x39\x29\x2b\x2e\x9d\xa1\xc4\x37\xc0\x9a\x89\xf0\x1f\x6b\xdb\x68\xc4\xf1\x38\x8e\x62\x03\xa2\xa8\x95\xfa\xfb\xc6\x06\x63\x2b\x0b\xee\x45\x03\x4d\x7e\x61\xa9\x17\x69\x8d\xce\x6b\xab\x1b\x60\x38\xbf\x83\x85\x84\xf3\x42\xe6\xdd\xae\x12\x4c\x2c\x96\xed\x14\xbd\x4d\x03\xbd\x4c\x97\xf4\x36\x6d\x81\xcc\xc9\x74\xa4\xcf\xb3\x21\xed\x06\x8b\x62\x6a\x51\x22\xc7\xe5\x31\x95\xf4\x8a\xca\x94\x22\x0c\xc5\xb1\xe3\x1e\x11\xd0\x02\x09\x38\x84\x41\xfb\x2b\xb1\x42\x06\xf3\x48\xdb\xa3\xe7\xe5\xdc\x71\x97\xc0\x0b\x5c\xc0\xf3\xe2\xa5\x3f\xfc\x3c\xd7\xc3\x35\x55\x53\x72\x03\x9f\x2a\xd0\xb5\xa9\x9c\x97\xe8\x13\x18\xd4\x18\x55\xe7\xa4\x91\xa2\x46\x9a\x2b\x49\xaf\xc8\xc0\x22\x50\x83\x40\xdc\x6f\x23\xbe\x59\x16\xd4\xfc\x74\xb8\xc2\x94\xf8\x21\xd9\x87\x1a\x79\x32\x45\x75\x72\x69\x8a\x2a\x4c\x49\x93\xac\x78\x5c\x7e\x88\xa1\xab\xb0\x5f\x62\x6a\x16\x44\x23\xf7\x40\x59\xce\x25\xb9\x88\xe5\x23\x85\x06\xb8\x60\x33\xf5\x6b\xa0\x38\x0c\x1d\x46\xee\xd1\x7e\xba\x60\x09\x45\x43\xac\x39\x7f\xfd\x7a\x42\xa7\x9e\x52\xe7\x90\x2a\xb1\x8a\x2a\x60\x50\x99\xcc\xc0\x29\xaa\x1a\x83\x9b\x0c\xa6\x15\x52\x55\xe7\x57\x94\xe5\x57\xac\xa0\xaa\xaa\x9c\x87\xa5\x46\x57\xf1\x22\x87\x2d\x51\xb5\x75\x13\xf4\x18\x7c\x47\x23\x47\xa8\x2e\x58\x3a\xaa\x70\xef\x46\xd5\xe1\xfa\x8f\x1d\x6d\xf5\x02\x99\x59\x5d\xe5\xd9\x19\x0e\xf2\x8b\x4c\x4b\xb7\x2b\x73\xbf\xd2\xa2\x39\x69\x07\xa6\xfb\xc3\x91\x78\x48\x06\xa3\xfd\x7d\x61\x01\x96\x6d\xad\x8e\x98\x42\x4c\x58\x73\x85\x0c\x99\xd6\x98\xa3\x6f\x09\x37\x2e\x59\x6d\xca\x67\x56\x9f\xe1\xdf\x3d\x20\x05\x14\x7a\x05\x84\xdb\x5c\x06\x81\xe7\x5d\x02\x0c\x49\xa5\xb8\x64\x5c\x6c\x5f\xeb\x30\x4c\xea\x00\xfd\x80\x15\x7c\x4f\xf9\xf1\xb2\x0c\xba\x03\xd3\xb0\x5a\xbf\xec\xb4\xda\xa2\x52\x9a\x7b\x2d\xc6\xfa\x77\x7f\xcb\x34\xd5\x8d\xba\xc9\xb6\xee\x47\xc9\xdb\x4e\xaa\x62\x45\x97\x94\xab\xce\x35\x53\x17\x62\xad\x3a\xa6\x79\x47\xc8\x8e\x1b\x41\xf0\x37\x0c\x38\xcf\x73\xb0\x6a\x8f\xa8\xaa\xc0\xb2\xd8\xc8\x62\xa0\x9d\x3b\x2f\xed\xce\x17\xea\xb5\xe6\xce\x4b\xc3\x45\x89\xed\x5d\x2c\x0e\xa7\xa8\x6f\x54\x18\x96\x83\x17\xd5\x61\x3a\xd0\x12\xa3\x33\x49\xe3\xcb\x3c\xd7\xf4\x26\x30\xbf\xcd\x21\xcb\xb2\xc0\x6b\x4f\xcc\x33\x0e\xc3\x12\x76\x68\x18\xd2\x07\xa4\x3a\x6b\x43\xac\x34\x26\xf2\x94\x8a\x8d\xab\xf0\x19\x6d\x0a\x7e\xc9\x1d\x22\xe5\x8e\x0f\x05\x36\x46\xbb\xb0\x97\xe5\xac\x2a\x9f\xd1\x5c\xbe\x79\xe3\x55\x33\x28\xc6\x39\xf8\x87\xc6\x72\x7f\x1d\xd6\xa8\xcc\xd9\x54\x69\x4e\xdc\x14\x8e\xcb\xe1\x98\xb6\x51\x45\xdb\xe5\x6a\xa0\x02\xfb\x90\x02\xf3\x2a\xcb\x75\x57\x67\xe7\xe5\xc5\xb2\x43\x7b\x38\xa3\x8a\xc6\x4b\x39\x1d\x14\x75\xc8\xd4\xd6\xa3\x18\x16\x39\xcc\x19\x67\xe9\x45\x0d\x9b\x15\xa8\x7b\x37\x58\x51\x0b\x56\xa5\x84\xdc\x00\x2b\x6a\xc0\x8a\x57\x65\x13\xbd\xe7\x55\xbc\x5a\xac\x38\xaf\xec\x2b\xf0\x42\x78\xc1\x70\x88\xb8\x1e\x62\x0e\xe6\x10\xfd\xb3\x86\x68\x61\xd0\x0c\xcf\x91\x73\xbe\x93\x54\xc8\x8a\x4a\xc5\x4b\xa9\x7a\x94\x9e\xa4\x8b\x3c\xdf\xc2\x0b\x6c\xa1\xe9\xea\xc2\x61\x82\x58\x29\xba\x5c\xa9\x00\xe7\xe0\x09\xae\xd1\x32\x46\xbb\x14\xe6\x35\xd2\xbc\xf1\x82\x66\xa4\x05\x22\x28\x65\xe1\x88\x82\x93\x7d\x23\x9e\x43\xa1\xce\xad\x40\x8a\xdf\xfa\x2a\xf5\xd0\x6b\xab\x72\xa4\x0a\xeb\xc8\xc8\xaa\x16\xcf\x3d\x1f\x75\xb4\xe6\x8a\x2d\x29\xa1\xa5\x26\xb1\xe0\x04\x03\x69\x34\x68\xcd\xba\x1d\xd2\x91\x01\xd6\xe2\x65\x8e\x31\xc8\x36\xce\xdc\xc8\x01\xaf\x63\x75\x41\x88\xfe\x37\x0c\x95\xb1\x8a\xa0\x2d\x45\x54\x69\x4e\x0a\xc3\xf2\x37\xce\xb2\x96\xba\xd6\xa8\x14\x86\xf6\x6f\x7b\x9d\x94\x2e\xe6\x61\xa8\xff\x6d\x7f\xaf\x07\x86\xb3\x6c\x07\x0f\x8a\x70\x96\x55\x66\x5f\xbe\x09\x30\xc2\x15\x89\xd1\xc8\xbe\x85\x8a\xb6\xdb\xd5\x7c\x6f\x43\x11\xab\x85\x34\x88\x49\x97\xd5\xec\x6d\xae\xcb\xef\xbb\xa4\xdd\x52\xb3\xc9\x61\x08\x9b\xf3\x2a\x03\x58\x36\xca\x73\x3c\x19\x4e\xf5\x9a\xaf\xc9\x26\xd7\x1c\xa4\x69\xf4\x32\x3d\x28\x4c\x3a\x90\x54\x74\xb0\x15\xc3\xd5\x53\x9a\x26\x92\xad\x94\x90\x90\x92\xcd\x3c\x4a\xc2\xb0\xbb\xb6\xc8\x7f\x33\x8c\xee\xe7\x30\xc4\xe3\x6d\x36\x3a\xb1\x6c\x9b\xc2\x55\x31\x8e\xf6\x4b\x0b\x52\x1e\xad\x73\x58\x90\x3a\x0e\x75\x52\x50\xd5\xce\x84\x86\xa1\xc2\x0d\x5b\x13\xba\xaf\xcb\x4a\x7b\x13\xfa\x93\x7e\xb6\xc2\x04\xcd\x73\x98\xeb\x39\x7a\x89\x00\xda\x04\xad\xce\xdc\x2b\x04\x1c\x2f\xf9\x9f\xb0\x3f\xd4\xa7\x8e\x04\x41\x3f\x5d\x2d\x98\x82\x0b\xd2\xb6\xfe\x5d\xbb\x46\x28\xf8\x1c\xe0\xd6\x65\x44\x03\x2d\xc7\x8c\xb7\x3f\x19\xd8\xe1\x04\x84\xac\x90\xc2\xe3\x99\x57\x0f\x04\x01\x8e\x5c\xa7\x0a\xe7\xee\x27\x5c\x91\x06\x07\xa9\xa9\x9d\xc6\x42\x16\x83\x54\xb4\x4b\x4f\x62\xfe\x07\xcd\x49\x2c\x16\x4e\x2d\xd7\x11\xbc\x13\xf4\x54\x29\xaa\xe5\x70\xdb\xb6\x04\x17\xe8\x0a\x29\x2d\x72\x9d\xb7\xbc\xdd\x86\xfe\xb1\x1e\x41\x97\x10\x15\xb5\x09\xef\x39\x2c\xc9\x16\x3d\xec\x9e\xeb\x0f\x14\x4a\x15\x83\x69\x41\x1a\xc5\x4c\x18\x6e\xf7\x82\xb8\xa6\x45\x6e\xdb\x34\xbf\x7f\x6e\x4c\x30\x6e\xa3\x8a\x8e\x64\xbb\x0e\xc7\xb4\x36\x30\x70\x38\xff\x42\xe3\xee\xdf\xf7\xf9\x5d\x5b\x20\xf8\x15\x95\xca\x29\xf5\x3a\x4a\x74\x56\x92\x2d\x99\x62\x57\xb4\x63\xc6\xa5\xd1\xfa\x99\x06\xcd\x86\x65\xf8\xb4\xf5\x14\x74\xce\x3c\x84\x50\x9c\xc3\x35\x11\xfd\x99\x48\xd6\x9a\x7d\x84\x43\x72\x8e\xae\x71\x18\x9e\xa3\x6b\xa7\x59\x38\x58\x18\xc6\x12\xc3\xa7\x56\x65\xc7\xb8\x51\x0f\x29\x6c\x2c\xdf\x37\xa4\x1b\x6b\xb9\xea\x77\x21\x9a\x4f\x28\x98\xb1\xab\x00\x43\x10\x07\x77\x21\x9c\x7e\xac\xf1\xcd\xc1\x17\xb1\xca\xb1\xc6\x2a\xf1\xf8\x60\x9b\x9f\x52\xe4\x56\x13\x32\x4a\x96\x88\x6a\x0e\x1b\x6e\x70\x89\x3a\x3b\x07\x76\x69\x0a\xe4\x99\xb3\x39\xb2\xaa\xf0\x42\xed\x8d\xba\x69\x7f\x5e\x2e\xa3\x31\x4a\xe3\x3c\x87\xcb\xe6\xe9\xb2\x90\xda\xdc\x58\x0b\x0a\x48\xe1\x5e\xd0\xa2\xb4\xad\x9c\xaf\x47\xed\x4b\x05\x4f\xec\xd4\x1e\x6d\xd1\x6f\x36\x47\x97\xf5\xa9\x5d\x6a\x76\xa6\x36\xbf\x47\xae\x72\x7d\x86\xc1\x39\x55\x01\xe3\x1d\x9e\x65\x41\xea\x7e\x6e\x23\x85\x47\x49\x42\xd3\x54\x48\x3b\xe8\x74\xbd\xd2\x14\x9c\xce\x8a\x41\x07\x16\x20\x75\x63\x4d\xfa\x8d\xdd\xdd\x1e\x1e\x0c\x2a\xcf\xe1\x3d\x89\xc7\x3b\x78\x8e\x27\xfd\xb9\x29\x59\xa0\x21\x70\x8c\xf3\x9d\xbc\x89\xe9\x14\x54\x0e\x6f\x1b\xf0\xad\xe7\xf8\x1e\x09\xa8\x6c\x1f\xc7\x1b\x31\x51\x53\x42\x3d\xaf\x44\x73\x38\x21\x62\x12\x9c\x9e\x26\x42\xd2\xfd\x4f\xe9\x69\x7a\x11\x4b\x3a\x3b\x3d\x0d\xa6\x59\xf6\x16\xb5\xbd\x80\x4d\x8e\xe1\x88\x78\x2a\x5c\x9c\xe5\x51\x79\xd6\x0b\x47\x91\x93\x3e\xe3\xe9\x8a\x26\xea\x58\xac\x65\xa2\x59\xdf\x46\x49\xdb\x39\x3a\xf2\xc8\x20\xb7\x72\xc7\x4b\x78\x05\x6f\x60\x8f\x34\x9a\xc2\x6b\x22\xfa\x3f\xd3\xf8\xf2\x75\xbc\x82\xa7\x6d\xba\xce\xd7\x61\x78\x8f\xc7\x06\x33\x24\x62\x46\xef\xf5\x15\x4d\x15\xda\x43\xaf\x31\x86\x67\x4d\xa7\x93\x92\x03\x6b\xc7\x13\x27\x13\x35\xcd\x32\xa4\xff\x38\xde\xad\x4b\x08\x1d\xd3\x68\x93\xe3\x1c\xa3\xe0\x8a\xca\x94\x09\x9e\x06\x30\x99\x62\xab\xcb\xda\xb8\xb2\x28\xf8\xa6\xff\x9f\xfd\x6f\x02\x58\x8a\x19\x8d\x02\xcb\x45\x05\x90\x88\xd5\xad\x64\xe7\x17\x2a\x0a\xfe\xbf\xff\xb7\x73\x7f\x70\x7f\xd8\x79\x4a\x39\x4b\x3b\x6f\xd7\xe9\xc5\x65\x2c\xe9\x55\x07\x7d\x5e\x08\x26\x45\x72\xd9\x97\x6b\x1c\xe8\x0f\x61\x78\x47\x06\xf0\xd9\x30\x6d\x7d\x19\xf3\x99\x58\x22\x0c\x8f\xdb\x68\x8b\x75\x77\x41\x41\xcf\x1d\xb0\x42\x0b\xa9\xc6\x41\x10\xe9\xe3\x86\x4f\x83\x1e\xea\xf5\xde\xf5\x3e\xe3\x62\x1b\xd1\x37\xdf\xe1\x1c\x7e\x23\xcf\x50\x70\x49\x6f\xd3\x00\xc3\xf3\xb6\x4d\xfa\xcd\x2e\x87\xfe\x43\x1e\x5b\x02\xf7\x82\x6c\x72\xf8\xb1\xdc\x14\x4d\x03\x9e\x5a\x4e\xe5\x67\x72\xd2\x37\x72\xb9\x5e\x41\xfb\xcb\xa8\x3d\x7f\xc4\xf0\x13\xf9\x59\x23\x2d\xf8\x85\xfc\xac\x31\x36\xfc\x40\x7e\xee\xa7\x54\x8d\x5e\xb6\x6f\x03\xed\xcf\xe3\x24\x9e\x69\x59\xf3\x07\x0b\x27\x3f\x1b\x08\x07\x9a\xc3\xab\xb6\x81\xfe\x54\xd4\xc2\x59\xa6\xb1\xf1\x9b\xb6\x5a\xbf\x94\xb5\x72\xab\x61\xd0\xc3\xfe\x40\x9e\xa3\xc0\x8c\x36\xc0\xa3\x17\x93\x0f\x53\xd2\x1d\xc0\x97\x07\xf6\x1e\x29\xf8\x70\xd7\x98\x34\xfe\xfc\x80\xc7\x6a\xf2\x61\x1a\xed\x1c\x92\xad\x94\x1b\x9b\xdf\xaf\x64\x93\x52\x15\xbd\x04\x4d\x07\x5e\xc1\x45\x9c\x46\x6f\x80\xf2\xb9\x90\x09\x8d\x5a\xda\xbe\xd1\xbc\xcf\x2b\x4d\x7f\x5e\x22\xa5\x0f\x6c\xae\x5b\x2a\x2a\x9f\x09\xd9\x56\xbf\x6a\x72\x37\xfc\xc3\xc8\x62\x6b\x8a\xb3\x0c\x71\xf2\x0a\x51\x8c\x8d\xd8\xd5\x6d\x65\x8e\x5e\x72\x2d\xac\xc5\x8a\x9d\x2d\x68\x47\xd2\x84\xb2\x2b\x2a\x41\xb3\x47\xbd\xa0\x23\xe9\x6f\x6b\x26\x2b\x58\xb1\xc3\x73\x2d\xf3\xa8\x76\xb7\xaf\x5f\x0d\x34\x70\xf2\x6b\xdf\xcd\x0f\x24\x71\x90\xe9\x78\x06\xcb\x39\x22\xcf\xe9\xe1\xd1\x8e\xa3\x0b\x0c\xbc\x23\x0e\x24\xa4\x6b\x68\x70\x37\xee\xaf\x79\x1a\xcf\x29\xa4\x65\x49\xc9\x08\xc3\xa2\x2c\xe5\xe2\x24\x96\xe7\x54\x3d\xa7\x6a\xd4\x82\x5c\x8c\x6a\x25\xb5\x43\x28\xf0\x1d\xcd\xb2\x53\xc4\x20\xe0\xf1\x92\x06\x38\xcb\xde\x17\x0f\x1a\x1c\xd0\x9a\x70\xc4\x30\xee\xa7\x06\x81\x65\x19\x5a\xbb\x9f\x44\xf6\x3f\x09\xc6\x8b\x0e\x8b\xaf\x68\x04\x13\x04\x18\x63\x50\x5d\x42\xc4\x18\x25\xe3\xee\x22\x0c\x35\xd6\x0f\x43\x94\x92\xee\x00\x47\xce\x1a\xa8\xcb\x20\x1d\x1b\x82\xc0\xa2\xf7\x76\x05\x30\x8e\x8a\xa2\xb7\x48\x17\xe4\x18\x15\xa8\xbb\xf4\xa4\x0b\xfc\xf1\x0f\x60\x9b\x49\x69\xe3\x44\x8d\x3c\x48\x8d\xf8\x51\xce\x67\xcf\x3e\x5b\x4f\x0c\xa0\x8a\x08\xe0\xaa\x0d\x35\xb5\x74\x38\x56\xce\x84\x96\x83\x54\xed\x47\x2c\x96\xe7\x86\x33\xf3\x0a\x86\x07\xf7\xc7\x5c\x21\xaa\x26\x6a\x8a\xb3\x8c\x2b\xa4\x89\x1b\x8e\x4c\x41\x18\x9a\x3f\x13\x3a\xcd\x32\x61\x9e\x85\x7d\xcc\x41\x28\x8b\x3d\x13\xca\x16\xc0\xdc\xc3\x7c\x21\x84\x84\xb8\x6d\xb4\x1d\x67\xa2\x24\x3d\x85\xc7\x83\x08\xa9\x87\x83\x31\x53\x91\x50\x58\xd3\x28\x58\xbb\x1e\x96\x8c\x43\xd2\xda\x5e\x37\x58\x2b\x14\x6b\x86\x10\xfe\x3c\x18\x7c\x3f\xfc\xf3\x9f\xef\x7f\xfb\xa7\xef\xff\x34\xf8\xf3\x9f\x87\x38\x1a\xe4\x90\xfa\x3e\xe2\x1b\x58\x54\xfa\x9b\x37\x57\xc2\xaa\x51\x4c\x4f\xc5\x69\x7a\x30\x18\xa7\x0a\xf1\x1e\x85\x01\x8e\x16\x0a\x71\xc3\xca\xae\x5a\x87\x52\xb7\x4e\x39\x25\x0a\x30\x72\x8b\x8c\xe7\x5e\xa2\x10\xf3\x96\x58\x58\x93\xb9\x32\x9e\x2f\x46\x5b\x1a\x86\xbc\x4b\xb8\xb3\xbe\xc4\x0f\xd7\xc6\xfa\x8a\x04\x61\x93\x75\xaf\x37\xc5\x5d\x22\x70\x21\x57\x1b\xed\x6e\x51\x71\xdd\xeb\x99\xba\x2a\xcb\xd6\x1d\xc6\x3b\x0c\x87\x21\x9b\xac\xa7\xc6\x67\xc3\x2f\x51\x96\xad\xb3\x6c\xe0\xc5\x58\x15\x86\xfb\xc3\x3c\x87\x99\x22\x1b\xc6\x93\xc5\x7a\x46\xd3\x68\x65\xec\xd1\xc0\xf8\x8c\xde\x1c\xce\xcd\xa3\x16\x26\x2f\x14\x99\xa9\xbe\x2b\x85\xab\xd6\x15\x03\x69\x79\x5c\x41\x06\xc0\xbc\xf1\xc9\x18\x9e\x24\xee\x9e\xa2\x17\xc0\x71\x18\x9e\x22\x69\xfe\xb2\xc2\x12\x55\xb3\x34\x3d\x14\x23\x6c\xaa\x10\x3a\x11\x7a\xca\x61\x88\xfe\xf7\x85\x42\x0c\x38\xce\xb2\xa2\x51\xe9\xf1\x98\xc3\xad\x22\x93\xa0\x62\x3c\x0a\x20\xa8\x0b\x25\x01\x04\x2c\xad\x18\x41\x03\x08\xda\xa4\xdd\x40\x9f\xcf\x57\x22\x89\x17\xd4\x9f\xd2\xca\x81\x0d\x9c\x38\x16\x4c\xe1\x5c\x91\x5b\x63\xde\x4d\x62\x85\x02\x3b\x6e\xdb\xa7\xfd\x42\x80\x61\xa9\x34\xb7\xdc\x2a\x2d\xbc\x89\x97\x34\xad\xa8\x5e\x4a\xb0\xb9\x52\x48\xc1\xb9\xa6\x8d\x70\xb6\xbb\xbd\x65\x38\xd2\x1c\x4e\x15\x91\x0a\x05\x47\x74\xbe\xd0\x3c\x3c\x04\xe2\x9a\xff\x68\x98\x89\x7a\xef\x16\xe3\x2f\x55\xdf\xf2\xe9\x18\x38\x39\x53\xfd\x79\x01\xd9\x63\xea\xe7\xa2\xab\xe3\x88\xe6\x70\xdd\xdc\xdf\xc2\x8c\x48\x4e\x95\x06\x62\x49\x9e\xf4\xe7\x20\xc8\x71\x7f\x0e\x8c\x0c\x46\xec\x01\xf7\xa6\x42\xd6\xeb\x15\xfe\x9a\x13\x36\x1d\x69\x0a\x1b\x1b\x2d\x94\x82\x18\x04\xa2\x10\x63\x3d\xc5\x43\x45\xee\xfd\x7b\xf6\xb1\x44\x8f\x1f\xfb\xf7\xe0\x53\xfb\x51\x3c\x50\x93\x1b\x7d\x1a\xa7\xc5\xa0\x09\xb9\x54\x59\xc6\xbb\xe4\x58\x69\x12\xb1\x8d\xea\xe8\x98\x21\x8a\xa3\x6e\x57\x1f\xd3\x1b\x45\x3e\xa9\xbe\x55\x13\xb3\xcf\xad\xfc\x70\x21\x1f\xf5\x25\x5d\x2d\xe2\x84\xa2\x43\x05\x41\x3f\xd0\x3c\xdb\x2b\x71\x4d\xe5\x93\x38\xa5\x08\xe7\x70\x60\xfa\x9a\xc5\x2a\xd6\x9c\xd8\xb1\x79\x7a\xf3\xe8\xe4\xe5\xfb\x03\x12\xbc\x09\xe0\xd2\x14\xbc\x3d\x7c\xf5\xe1\xd9\xcb\x57\xaf\x48\xf0\x36\x80\x47\xba\x08\x9e\x28\xb3\x5a\xef\x77\x1c\x1d\xeb\xea\x06\x89\x96\xdb\x0d\x45\x84\x94\xa8\xbe\xe5\x62\x61\x41\x94\xe1\xe7\x8c\x1e\x97\xa4\x63\x11\x2d\xc6\x62\x92\x18\xe9\x21\xd1\x9c\x47\x84\xec\xe3\x26\xc7\x15\x3b\xbb\xde\x35\x63\xa6\xb5\x22\x68\x4c\xe8\x44\x4e\x81\x11\x55\x25\xbb\x63\xb4\x26\x4f\x94\xb1\xd6\xe1\x30\x5c\x3b\x3b\x36\xd7\x35\xbb\x8f\x14\x4a\xc7\x32\x4a\x7a\x68\x31\x0e\xfa\x41\x14\xfc\x7b\x80\x7b\xd2\x7a\xb3\x24\x74\x86\xc3\xb0\x60\xd2\xad\xdf\xb0\x5b\xfc\xb8\x24\xe0\xa5\x27\xe9\xb5\x42\xb1\x26\x8d\x48\xf5\xd3\x8b\x78\x99\x65\x4c\x63\x01\xfd\x13\x87\xe1\x7b\x14\x43\xa0\x7f\x07\x46\x82\x54\x66\x40\x10\x1b\x4e\x11\xde\xaa\xa6\x8c\xdb\x22\x05\x6d\x73\x4c\x6d\x22\x6f\x81\x9b\x6b\x32\xef\x89\xda\x72\x98\x66\x73\xf4\xd6\x90\x92\x82\xa1\xa7\xa5\xf6\x27\xbd\x66\x4e\xd2\x4b\xe2\x94\x76\x06\x51\x13\xf1\x57\xdc\x03\xac\x93\x2a\xce\x47\xa6\xea\x70\xab\x2a\xdf\xaa\xab\xe5\x64\x5b\xfb\xfe\x76\xed\x8a\x51\xb5\xac\x0f\xd2\xb7\xf8\xa6\xad\x05\x88\xd6\x36\x20\x70\xe1\x41\xd3\x36\xf2\x78\xb5\x5a\xdc\xea\xf3\xea\x39\x02\xbd\x17\x47\xad\x14\xcf\x29\xfd\x9c\x12\xee\xa5\x22\x8f\xa4\x8c\x6f\xfb\x2c\x35\x7f\xdb\xb0\x5d\x60\xde\x38\x0d\x62\x0e\xaf\x14\xe9\x76\xef\xc2\x77\x3b\x54\x3b\x5d\xcf\xb5\x5a\x31\xcc\xf2\x44\x6f\x14\x79\xa5\xc2\xb0\x6b\x0b\x0d\x88\x85\x61\x90\x9a\xa7\xe6\x7d\x85\xd2\xc3\x6f\x4f\x69\x71\xec\xfa\x52\x4b\x63\xaf\x15\x11\x7d\x5b\x01\x9e\x2a\xf2\x46\x8d\x5f\xab\xe8\xb5\x0a\xc3\xd7\xaa\xef\x0c\x9e\xc7\x86\xd5\xcf\xb2\xc7\xf0\xac\x75\x49\x4e\xd1\x9e\x32\xe2\x10\xd2\x63\x39\x45\xaf\xf5\xd3\x78\x4f\xf3\x4b\xe4\xb5\xfe\x37\xb2\xbf\x9f\x6a\x26\xdb\x0e\x25\xe8\x69\xf4\x6c\x8a\x73\x78\xa7\xc8\x33\x85\x02\x2d\x8b\x33\xaa\xc7\xf4\xb9\x15\x73\x78\x28\x7e\xa9\x81\xb5\x86\x0a\xbb\x55\x5d\x60\x85\x3e\x62\x83\x37\xed\x0e\x85\x61\xf7\xa5\x42\x15\x1e\x15\x8f\xcf\x91\x26\xcf\x56\x45\x4b\x10\x27\x7c\xf2\x4e\x19\x32\xcc\xbd\x35\x25\x2a\x7e\x01\xa7\xd7\x15\xdf\xd0\xb1\xe9\x33\xe2\x18\x99\xf3\x32\x1e\x44\x1a\xf9\x3e\x56\x64\x32\x35\x84\x1b\x7e\x53\x2d\x5e\x2a\x43\x42\xb4\x28\x72\x5f\xff\x91\xe4\x1b\xfd\x47\x90\x3f\xe9\x3f\x8c\x7c\xa7\xff\xc4\xe4\x7b\xfd\x67\x4d\xbe\x35\xd6\x55\xb6\x75\x6b\x21\x81\x14\x16\x30\x2f\xc9\xd4\x0a\x66\x70\x45\x8e\x14\x4a\x30\xdc\x92\x0b\x74\x85\xe1\x9c\x9c\x28\xa4\xab\x7d\x83\x61\xa9\x59\xb0\xdb\x82\x05\x3b\x23\x03\x38\x25\xf3\x2c\xfb\xac\xe0\x9a\xd0\xf1\x29\x4a\x60\x89\x23\x9e\x65\xb1\xf9\x3d\xc0\x8e\x69\x1e\x2d\x1f\x9e\x8d\xce\x1c\xa3\xb5\xce\xb2\x33\x8d\x5b\x6f\xf5\xda\xcc\xc8\x39\x5a\x91\xdb\xc9\xd9\x14\xce\xe0\x0a\x83\xc2\xd8\xb8\xec\x5d\x4f\xce\xa6\x64\x56\x5c\x27\x98\x61\x87\x39\x94\xc3\x1c\xfe\xb8\x76\x07\xf6\xf8\x7e\xeb\x8f\xef\xca\x3e\x7f\xe7\x9f\xcf\x3c\x42\x78\xec\x4e\xf0\x35\xac\x9c\x81\xbf\xd1\xe5\x9f\x7c\x97\x43\xdb\xe4\xfb\x7a\x13\xcf\x37\x8d\xf7\x87\x91\xcc\x32\x31\x16\xd1\x75\x9e\xc3\x73\xcd\x70\x58\xb7\x96\xe8\x37\x85\x06\x18\x96\xf1\x4a\xff\x1a\x62\x98\xb3\x85\xa2\x52\x3f\xdc\xc7\x90\x8a\x25\xd5\x3f\xbf\xc1\x40\xaf\xa8\xbc\xd5\xbf\xff\xa4\xeb\xf0\x99\xfe\xf9\xad\xfd\xf9\x52\x33\x8a\xfa\xf9\x3b\xdf\xfc\x70\xad\xf4\xf3\xf7\x38\x87\x17\xed\x44\x7e\x32\x9d\xa8\x69\x61\x62\xe1\x61\x58\x3f\xef\x4e\x7b\x6d\x7c\x76\x68\xcd\x74\x65\xf1\xfe\x30\x87\xa1\x75\xbb\xfa\x51\xed\x50\x61\xfe\xac\x34\xc9\xfe\xa9\x0e\x84\xce\xae\x9d\xc3\x2f\xcd\x61\x19\x1d\xec\xcf\xfa\xd8\x7a\xcc\xff\xb3\x3e\x9a\x23\x2d\x53\x52\xb2\x71\x8a\x33\x37\x70\x90\xa4\xdb\x3d\x45\x14\x82\x47\x4f\x9e\x1c\x1c\x1f\x1f\x1e\x1d\x07\x38\x0c\x69\xbf\x78\x04\x41\xf4\xfb\x01\x1e\xd3\xc9\x60\x1a\xfd\xa4\x21\x5a\x17\x0c\x75\xc1\x70\xea\x61\xac\xfa\x29\x62\xd6\xa1\x81\xf8\xd8\x1c\xc9\x30\xec\xc6\x85\x24\xe0\x1c\x81\x36\x16\x9e\xa3\xfd\x61\x3e\x92\xe3\x1f\x35\x33\x39\x84\x4d\xfd\x9e\xd3\x39\x55\xd1\x4f\x2a\xc7\x91\x9a\x0c\xa7\x64\x08\x85\x63\xa7\x70\x8e\xe4\xf0\x83\x22\xcf\x0b\x6f\x55\xf8\xa0\xc8\x0b\x85\x02\xf7\x18\x60\xf8\x55\x91\x5f\x6a\x05\x8a\x92\x0f\x2a\x0c\x7f\x55\xe3\x49\x71\xbb\xa0\x4d\xf9\xf1\x83\x72\x56\x34\x68\x0a\x98\x0f\x87\xe3\xa2\xa8\x5c\x07\x9c\x8f\xde\x2b\xb4\xb1\xbc\x50\xe4\xa8\x05\x18\x3c\xa5\x27\x62\x19\x90\xa8\xfc\x66\x97\x28\x9a\x43\x01\xc3\x8a\xba\xed\xa1\x14\x78\xe1\xba\x78\x49\x6f\xef\x60\xbd\x6f\x35\x21\x92\x94\xc4\xe3\x36\xf0\x61\x34\x6d\x68\xf5\x35\x37\x5d\x3a\xd8\x81\x24\x9c\x6a\xde\x58\x10\xe9\x66\x66\x58\x63\xf1\x90\x8d\xb0\x55\x34\x73\x22\x27\xac\xd7\x9b\x02\x9d\xf0\x69\x95\xff\x10\xd4\xb0\xf2\xde\x28\x12\x40\xf1\xd3\x19\x39\x02\x0c\x8c\x92\xe7\x28\x78\x79\x70\xfa\xf6\xe8\xf0\xe4\x30\xc0\x10\xd3\xaa\x83\x60\x0e\xeb\x36\xbe\x36\x78\x60\x6d\x13\x0f\x8d\x9a\xe8\xc1\xc7\x7b\xfe\x31\x87\xa4\xd6\x5e\xc9\xdb\x0d\xa5\xc4\x7f\xb7\x3f\x13\xcb\x98\xf1\x30\xe4\xf4\xba\xf3\x28\x51\xec\x8a\xfe\xe2\xcd\x85\x17\x6a\xb9\x98\xb3\x05\xad\xde\x83\x33\x0a\x34\x05\x74\x94\x50\x42\x69\xcd\x64\xa8\xfa\xd7\x92\x29\x8a\xd6\x14\x05\xd6\xa5\x34\x59\x08\xcd\x4b\x7b\xbf\xb1\xfe\x2a\x96\x94\xab\x9f\x8d\x3d\xbb\x6f\xbf\x52\x2c\x8e\x75\xd2\xa3\x39\xa2\x14\x47\x08\x51\xf2\x09\x05\x6c\x2e\x8d\xea\x07\xf7\x53\x75\xbb\x28\x3c\x66\x49\xc0\x05\xa7\x01\x08\xaa\x59\x17\xca\x67\x4f\x2e\xd8\x62\xa6\xb7\x84\xf6\x53\x99\x78\x05\x57\xf0\x29\xbe\x8a\xed\x32\x44\x01\x06\xa4\x88\x11\x80\x54\x39\x04\xbf\x08\xb8\x2f\x56\x94\x23\x3d\xe4\x72\x0a\xc5\x0a\x3d\x73\x50\x55\x9b\x13\xa8\xfe\xb3\x0a\x50\x68\x41\xd1\xc9\x45\x7c\x7f\x7f\x84\x9d\x16\x29\xa9\x5c\xfc\x9b\xdc\xaa\x09\x9f\x16\x92\x4d\xa2\x85\x8c\xd1\x8b\x09\xa3\x53\xef\xe3\x97\x36\x5c\x6f\xab\x10\xbc\xc5\x07\x78\xcb\xe6\x18\xc5\x95\x8f\x10\x63\xa1\xe1\x46\x1d\x1c\x53\xa8\xbd\x32\x0b\xcc\xcd\x07\x95\xa6\xed\x7a\x04\x15\xae\x77\xcc\x23\x49\x9d\xba\x63\x41\x0d\x4f\xb2\xe6\x69\x22\x56\x1a\xa7\x68\xbe\x64\x4e\x1d\xb7\x57\x74\x39\xb2\xdc\xc3\x9c\x4e\x16\x74\x1a\x86\x1a\xf8\xe7\x14\x16\x14\x36\xcd\x7b\x96\x56\xd8\x48\xa9\x41\xeb\xde\x14\xb1\xaa\x03\xb2\xed\xc6\x60\xc3\x41\x0e\x33\x6a\x15\x11\x56\x5d\x01\x17\xd4\xe0\x23\xa7\x98\x08\x60\x53\xa0\x5b\xdd\xfd\x30\x1a\xe4\xf8\x6b\xf0\x48\xf7\x42\x23\x8f\x42\x09\xd2\x82\x21\x66\xf4\xf7\xe2\xaf\x1c\xc3\x8a\xea\xa1\xd9\x4e\x03\x3b\xb9\x2b\x0a\xb7\x14\xce\x77\xdd\xd0\x5c\x22\x8a\x47\xd6\xb5\x76\x6c\x91\x86\x84\x05\x1a\x00\xc7\x1a\x67\xcb\x29\xe1\x39\x2c\x2d\xb6\xe0\xf1\x15\x3b\xb7\x37\x65\x83\x75\x4a\xe5\xa3\x73\x83\x28\xb2\x2c\x08\xe0\x8c\x12\x73\x5d\x34\xa1\x69\x0a\xa7\x94\x9c\xd1\x30\x3c\xa3\x7d\x6f\x3e\x81\x6b\x4a\x4e\x69\x18\x9e\xd2\xfe\xd5\x7f\x8e\xae\xe9\xf8\x96\x12\x74\x45\xc9\x35\xf5\x6a\xdf\x7e\x80\xf1\x64\x30\xed\x5d\x19\xd2\xb4\xa4\x61\x88\xba\xba\xc6\x92\xf6\x97\xe6\xcc\xdf\x3b\x98\x9d\xd3\x8f\xf7\xd0\xc7\x59\x0f\xdf\xc3\x38\xcb\x4c\xcd\x87\xe4\xfb\x3f\x69\x7e\xa8\x56\xf3\xc9\x85\x14\xcb\x4a\xdd\x30\x44\xb7\x94\x98\xfa\x76\x4d\x0e\x29\xb9\xa5\x61\xd8\xbb\xa5\xf0\x89\x36\xb8\xde\x9b\x56\x69\xfd\x90\x3e\x24\xdf\x0e\xb3\xac\x41\x1a\x0b\xb7\x67\x5b\x0d\xd1\x9a\xef\xff\x26\xc7\x93\x4f\xb4\xc5\xf3\x7a\x33\x17\x22\x1a\xe6\x39\x0c\xbb\x84\xd0\x89\x9a\xa2\xc7\x42\x2c\x68\xcc\x71\x7f\x2e\x84\x21\x8b\x07\x94\xdc\x50\x14\x18\x07\x8b\x00\xc3\xb1\x05\x3b\xfb\xd8\x00\xba\x41\xa4\x01\xef\x7e\x8e\xe1\xb2\x39\x99\x47\x7a\x70\xd6\x4b\x03\x9e\xd0\x42\x1b\xf9\x55\x10\x7a\x40\xb3\xac\x7b\xac\xc1\xd4\xb4\x8f\xda\xb5\x08\x56\xcd\x68\xaf\x98\xb4\x69\x1a\x15\xc4\x18\x12\xfd\xab\x72\xc2\xe3\x88\x3a\x05\xe4\x4b\x85\xd8\x4e\x29\x82\xfd\x5d\x52\xc4\x25\xdd\x21\x45\x00\x27\xae\x9f\x2c\xab\xdc\x33\xf3\x3c\xd7\x23\xea\xdd\x68\xd7\x90\x58\xd4\xaa\x29\x6d\xbb\xdc\xf1\x84\xa2\x64\x7f\x0d\x03\x6c\xb4\x90\xa3\xf5\x83\x64\xb4\xee\xf5\x40\xf4\x7a\xd8\x6a\x45\xc3\xf0\x9c\x22\xb3\x4c\x93\x75\x49\x82\x3d\xc1\x26\x02\x64\xee\xb0\xd0\xfb\x1a\x79\xb4\x2c\xd6\xa5\x5b\x59\x4a\x82\xa0\xbc\x3d\x60\x95\x34\x61\x88\x68\x8f\x04\xe7\xf6\xe6\xc8\x39\x17\x92\x3e\x89\x53\xea\x8a\x99\x29\x5e\xae\x17\x8a\x2d\x18\xf7\xa5\x4b\x53\x3a\x13\xea\xd1\xc2\xb7\x4f\x4d\xd1\x9a\xb3\x44\xcc\x7c\xb5\xb5\x29\x4b\x15\x4b\x2e\x6f\x5d\xd1\x6d\x80\x81\x56\xee\xaf\xbe\xad\xc7\x05\x38\xa2\xe7\x07\x37\x2b\xeb\x54\xa0\x87\x7e\x42\xe1\x88\xc2\x4b\x4a\x36\xef\xde\x1c\xbf\x7b\xfb\xf6\xf0\xe8\xe4\xe0\xe9\xe9\x87\x68\xfb\xf8\x28\xf2\x96\xa2\x20\x0e\x40\x7f\xa2\x9c\xe3\x22\x4e\x95\x61\xea\xc9\x7d\xb0\x24\x46\xf5\xe9\x0d\x4d\x50\x10\x9f\x25\xb3\xc0\x88\xdd\x8f\x8f\x0e\x7f\x3c\x78\x73\xfa\xe4\xd1\xd1\xc1\xc9\xce\x9e\xff\xaa\xd1\xd5\xf9\x57\xf6\x9d\x2a\x19\x58\xb6\xf4\x15\x25\x76\x4e\x25\x90\x99\x3a\xf0\x86\x3a\xba\x5e\x79\xe1\x34\x78\xb0\x47\xc9\x2b\x0a\xaf\x29\x41\x27\x94\xdc\x8b\xef\xc1\x11\x25\xf7\xce\xfe\x78\xef\x1c\x5e\x39\xa0\x3a\xa1\x10\xc4\x01\x2e\x9e\x8f\xdc\xf3\xa0\x4b\xc8\x09\x2d\x47\x96\x65\xba\xe4\xa8\x52\x82\xe1\x29\x25\x2f\x69\xbf\xb6\x9e\x59\xf6\x92\xf6\xab\xcb\x00\xcf\x68\x69\xc7\xbe\x87\xf0\x78\x7c\xcf\x4d\x2d\xc0\x93\xe1\x74\x84\x5e\xd3\x2c\x7b\x46\xb3\xec\x29\xd5\x87\x63\xaf\x25\x20\x83\xbf\xe0\x62\x5c\x1c\x21\x26\x4f\xa9\x51\x9b\x19\x60\x80\x35\x79\xef\x8f\x87\x3e\xd6\xcc\x19\x89\x20\x25\x03\x58\x90\x82\x8b\x8a\xc3\x10\xed\x0f\xf5\x49\x5c\x93\x75\xa1\xe0\x0c\x6e\x03\xd0\x1c\x99\x57\xeb\x23\x0d\xbc\x61\x88\xd6\x0e\x8c\x17\xa4\x54\x8a\x5a\xcf\x32\x56\x9d\x7f\xe5\xe1\xe1\x40\xd3\x07\x56\xc2\x77\x96\xb1\x2a\xb0\x07\x1f\xcd\x0d\x45\x35\xa9\xb4\xd9\x1f\x1a\x7c\x90\x90\x00\x8d\xa3\x4e\xd0\x4b\x7a\x01\x0e\x60\x41\x82\x4e\xd0\x5b\x40\xda\xeb\x79\x7e\xc5\xc1\x72\xf0\x57\x34\x8e\x7c\xb5\x35\xc6\xf0\x8c\x1a\x74\x52\xab\x62\xde\xef\xa1\x71\xf7\xe3\xc7\xd4\x55\x7b\x6d\xef\x5c\xd5\x86\x2e\x89\xdf\xf0\x78\xcc\x23\x06\x0b\x0c\xf1\x58\x8e\x91\xec\x33\xbe\x5a\x2b\xe2\xfe\xba\x59\xa7\x18\xe4\x64\x30\x25\xfa\x9f\x4a\x91\x5d\xb6\x6a\xc7\xd5\x25\xe9\xd9\xea\x0e\xf9\x46\x95\x37\x64\x10\xe9\x31\xc9\x30\xac\xae\x27\x61\x0e\x8f\x8c\x5d\xc7\xbd\x4a\xfb\x88\xda\xe9\xca\x30\x94\x05\xd7\x11\x86\x6f\xdc\x24\x74\x4d\xe0\x35\x9b\xa2\x46\x93\x82\x0c\x47\xe2\x41\x93\x5d\xd9\xbf\x3f\xd2\xe8\xb0\xc0\x9e\x25\xef\x22\xa6\x61\x88\xe4\x44\x94\xf7\x4f\x30\x06\xe9\xd0\xe1\x3b\x4a\xf6\x68\x8d\x50\xd9\x45\xdf\xa6\x54\xf7\xfa\x16\xc6\xbb\x84\xbc\xd3\xe4\x4a\xff\x8e\xde\x79\x79\xec\xb3\xa5\x89\x86\x35\x08\x30\x3c\xa6\x4d\xd5\xee\xd6\x01\xf0\x40\x7c\x6e\x15\x5c\xc5\x71\x42\x94\xa8\xc9\x67\x3a\xc5\xe3\x6e\x97\x16\xc3\xb1\x0a\x45\x9c\xb7\xf9\x40\x99\x3b\xc1\xce\xb1\x70\x26\x68\xca\xff\xa0\x3a\x71\x92\xd0\x95\xea\x48\x7a\xbe\x5e\xe8\xaf\xdd\xac\x24\x4d\xad\x8f\x49\x55\x42\xfb\xad\x36\xec\xda\x3a\x78\x0b\xd1\x16\xc5\xde\x56\x75\xdd\xeb\xdf\x33\x8e\xc7\xc1\xbd\xfe\xbd\x40\xf3\x19\x55\xa7\xa1\x8a\xbb\x14\x9d\xfc\xa6\xd9\xff\x21\x6c\x57\xd4\xb2\x56\xee\x35\x3c\x79\x95\xbd\xbc\x9b\x81\xed\x76\xff\xb7\xf7\x50\xb1\x44\xac\x3c\xf6\x8f\xa9\x16\x0e\xbe\x9e\xad\x35\xfb\xf8\xbc\xc9\xdb\xbc\xa0\x4d\x2f\x5f\x8b\xf4\xf5\x9c\x0b\x54\xaf\x61\x61\x9b\xac\x16\x0c\x9b\x26\xa6\x52\xac\x57\x29\xd9\xc4\x51\xf0\x7d\x90\x83\xca\x21\xf8\x5e\xe3\x8e\x20\x28\xf0\x96\x82\x60\xef\x41\xfc\xd0\x12\x9d\x1f\x29\x09\xf6\x06\x01\x21\x24\x88\xcb\x2a\xf7\xfa\xf7\x40\x17\x63\xf8\xd9\x8e\xd3\xbd\x08\x30\xfc\x44\x49\xb7\x7b\xaf\x7f\x6f\xf2\xb3\x96\x4d\x02\xdd\xd2\x3d\x59\xb2\x67\x5a\xfd\xb2\x6b\x32\x68\x1c\xe1\x7b\x40\x1d\x85\x1a\x6d\xcf\xa8\x70\x54\xb1\xda\x73\x8b\xb4\x4b\x05\xba\x53\x19\x05\xf1\x99\xf3\xcd\xad\xd8\x98\xef\x77\x09\xf1\x66\xb4\x2c\x0b\x62\x3d\x6d\x3e\x19\x4c\xb3\x2c\x38\xb3\xbf\xad\xdb\xf3\x0f\xad\x2c\x71\xd5\xe8\xec\xa4\x09\x43\x36\x8a\x5d\xa7\x58\xb3\x84\xb1\x42\x5c\xf3\x82\x9e\x2f\x2c\x48\xc4\x83\x41\x96\xc5\x0f\xc9\x7a\x6c\x1c\x97\xec\x6e\x47\x48\x6a\xae\xef\x22\x96\x4f\xc4\x8c\x3e\x52\x28\xc6\xf8\xc1\xb7\xdf\xde\xff\xf3\x77\x59\x26\x1f\x7e\xfb\xdd\x37\xc3\x3f\x67\x59\xdc\xd3\x94\x65\x9d\x65\x48\x34\x2a\xf7\x86\xba\xfa\x77\xdf\xdc\x1f\x64\x99\x78\xf8\xed\xf7\xdf\xfc\xe9\x9b\xb1\x1a\x33\x7f\x2f\x2e\xc6\x91\x8c\xf4\xb3\xc5\xa9\x31\xc4\xbd\xfb\x38\x12\xfb\xa6\x45\x0f\xc9\x7d\xf3\xa5\x07\x0f\x86\x03\xdc\xfb\xee\xdb\x6f\xbf\xf9\x2e\xcf\xe1\x83\xb9\x28\xa8\xbb\x8f\x7e\xa0\xa8\x3b\xc4\x60\x3b\x33\x4f\x03\x9c\xc3\xaf\x94\x7c\xf0\x37\xef\x40\xf1\x5d\xe1\x79\x68\x0f\xf1\xf1\xaf\x96\x69\xf2\x48\x76\x88\x73\xa0\xbc\xea\xa9\xc0\x79\x05\xee\x40\x72\x72\xef\xe3\x1e\x9a\xec\x85\x7f\xf8\x5f\xd3\xec\xe3\xec\xe3\x6c\x9c\x3d\x98\xfc\xf5\xe1\xf4\x8f\x0f\xf1\xbd\x73\x10\xdb\xaf\x75\x71\xdc\x1c\x43\x71\x5f\xd5\xda\x48\x7b\x5e\x43\x00\xeb\x52\x71\x94\x10\x51\x48\xf4\x05\xc2\x13\x61\x88\x04\x39\x52\x48\x68\x5a\x2f\x39\x06\x5e\x5c\x31\x4b\x2a\xd8\x9f\x81\xbb\xa3\x94\x7a\x43\x55\x52\x5e\x45\xb4\x5a\xe2\x60\x2f\x70\x6a\xe2\x60\x2f\x30\x7a\xe2\x20\xf4\x25\x1d\x65\x0b\xfe\x57\x51\xe0\x2f\x29\x6a\x31\xd4\xbe\xfb\xc3\xd6\xbb\xd8\xbd\x79\x10\x44\x29\x11\x93\xc4\xdf\x6b\x84\xfd\x21\x9e\xda\x9b\x52\xa3\x19\x9d\xc7\xeb\x85\x8a\x6c\x9c\x8e\x5e\xa2\x25\x8e\x81\x09\x37\xe3\xb5\xd2\xba\x64\xf1\xd0\x45\xfc\x98\x13\xca\xd1\xe2\xde\x70\x50\x9c\x10\x5d\x79\x3e\x66\xd1\xfc\x01\x59\x8f\x0b\x0a\x26\x27\xf3\xfd\xe1\x74\x5c\x4c\x72\x88\x23\x5b\xd4\xab\x16\xb1\x3c\x25\x72\xb2\xd8\x1f\x4e\xf3\xda\xc2\x12\x42\x52\x0d\xf1\xa9\xe1\x33\xd7\xbc\x55\x37\xed\x8e\x7b\xfb\x85\x7b\x5e\xb9\x4e\xe3\xdd\x73\x4d\x55\xe7\x5d\x5b\x98\x28\xe5\x36\x45\xb2\x54\xab\xa3\x7b\xf7\x94\xc9\x8e\x8e\xce\x3a\xa9\xd0\x25\x8c\x9f\x77\x84\xba\xa0\xb2\xa3\x2e\x62\xde\x89\xbd\xb1\xad\x23\xa4\x51\xf6\x94\x64\x4a\x1a\x9f\x5a\x47\x07\xbb\x8e\x10\xee\xf8\xe2\xbf\x9b\x2f\xea\xe1\x52\xe3\x64\xcf\xda\x9c\xcb\xca\xae\xdf\xd1\xaa\x03\x77\xc2\x4b\x47\x9a\x94\x17\x8e\x34\xa3\x6e\x13\xd0\xfd\xfd\xa1\x67\xc6\x92\xba\x75\x0d\xc4\x05\x82\x28\x2e\xb8\xd1\xf6\x7b\xd1\xdf\xe7\xf0\x7d\x97\x04\x9e\x0e\x9a\x8b\x1f\xdb\xae\xde\xb6\xb3\xee\x10\xb8\x66\xf5\xbd\x6f\xb0\xc1\xb1\xe6\x82\x50\x18\x22\xc4\xc9\x26\xc7\x0d\x9d\x00\xf0\x6a\xc1\xe4\x79\x9b\x82\xa0\xc3\x75\xb5\xf9\x22\x3e\x4f\x49\x10\x00\xd7\xe3\xd4\x44\x43\x4c\x31\xf0\x9d\x24\xc0\x5c\x78\x5e\x2f\x16\xb9\x69\xa0\x59\x7e\xe8\xd2\x1c\x1b\xd8\xe8\xc6\x59\xd6\x5d\x67\x59\x41\x98\xdc\x10\xbb\x2f\xb4\x98\xff\x23\xcd\xb2\x9f\x28\xce\xb2\xda\xf8\xbb\xbf\x50\x1f\x0a\xc7\x7e\x1c\x52\xc2\x91\x00\xb3\x32\xd5\x50\x31\x1e\xcb\x54\xa8\x91\x19\xa3\x66\xc8\xc6\x7a\xe5\xc4\x78\xe3\x42\x28\x80\x0f\xec\x54\x35\x25\x47\x8d\xb7\xce\x7e\xc4\x81\x56\xdf\x0e\xf3\x1c\xc3\xe6\xe8\xe0\xed\xab\x47\x4f\x0e\x4e\x7f\x3c\x38\x78\x7b\x7c\xba\x37\x88\x7e\xa4\x70\x74\xf0\xfc\xe0\x97\xb7\xa7\xfe\xd5\xf1\xbb\xc7\xc7\x27\x2f\x4f\xde\x9d\x1c\x1c\x9f\xbe\x7b\xf3\xf4\xe0\xd9\xcb\x37\x07\x4f\x4f\x9f\x3c\x7a\x7b\xf2\xee\xe8\x20\xfa\x89\xe6\x5a\xd4\x48\x35\x0f\x3b\x27\x9a\xd5\x18\x29\x85\x9a\x32\x1d\x28\xcd\xa4\x2b\x85\x9a\x52\x20\x08\xb8\x4f\x08\x1d\xb7\xfa\xb2\x15\xfe\xf2\xee\xde\x75\xde\xea\x96\x59\xad\x84\x73\x9c\xcb\x30\x7c\xbf\xf5\x1d\xbd\xdc\xa5\x83\x42\x5e\x72\x14\x70\x7f\x7b\xe9\xcb\x7b\x73\xbf\x67\x29\x4c\x54\xbc\xe6\x7a\x42\x4c\xc4\x58\xa3\x6b\xcd\x98\x38\xa8\x9e\xd4\xdd\x01\xec\xb7\x1c\x5b\x07\xf6\x32\x29\x21\xdc\x21\xc8\x88\x97\x66\xb5\x92\x96\x98\x4b\xa6\x76\x53\x05\x48\x1c\xb9\xf3\xed\x98\x05\x81\x2d\x20\x40\x65\x62\x36\x82\x5b\x57\x84\x21\xd3\x70\xd9\x70\xa1\x94\x61\x68\x04\x4c\x59\x70\x95\x31\x2e\xae\x47\x23\xbd\x7d\x66\x0b\xa4\xbd\xfe\x6c\xaf\x8f\xbb\x31\x39\x97\x93\xdc\x42\xb6\x51\x54\xa7\x85\xe4\x69\xa6\xb4\x68\xf3\x3b\x97\xa3\x45\x96\xa1\xc2\x6d\x55\x62\xcb\x97\xce\x49\xe2\x04\x29\xfd\xa5\xb9\x1d\xc3\x8a\x24\x5e\xa5\x32\x4a\xaa\x92\x58\x71\xa5\x7c\xa6\x99\x50\x17\xe6\xe0\x82\xac\x8d\x4d\xd9\x8c\xd5\xa9\xb0\x2e\xb0\x25\x61\x6c\x8e\x66\xd6\x09\xed\x02\x43\x77\xee\x4a\x0d\x17\xe9\x06\x72\x31\x19\x58\xc1\xb6\xf2\x1d\xc5\x51\x0a\x89\xaa\x96\x61\x58\x61\x5c\x7c\xfe\x0a\x6e\x35\x62\x39\x27\x03\x58\x92\xc1\x68\xf9\x60\xe6\xd9\xb3\x65\xaf\x87\x37\x17\x64\x36\x59\x96\xc1\x1c\xce\x6a\xdf\x82\x53\x92\x70\x94\x72\x14\x2b\x74\x61\x97\x1f\x43\x5a\xa8\xfd\x06\x18\xae\xc9\x64\x0a\x87\x64\x38\x3a\x7c\x70\xe1\xfb\x3d\xec\xf5\xf0\xb5\x9d\x49\x41\x07\xd1\x15\xb9\x98\x1c\x4e\xf1\xf8\x2a\xf2\x5c\xa3\x5b\xd5\x4f\xe4\xc2\x71\xe6\x86\x42\xdb\x75\xba\x21\x93\xb3\xa9\xf7\x1d\xbb\x86\x53\xbd\x62\x05\x80\x7d\x0a\xc3\x1b\xdb\xfd\x27\xdb\xc5\x41\xb1\x53\x8e\x35\x76\xda\xbf\x1b\xec\xec\xd8\x07\x24\xe6\xe8\x0c\x52\x38\x85\x6b\xf8\xa4\x41\xe5\xf4\x21\x39\x0f\x43\x74\xdb\x23\xa9\x63\x27\xce\xe1\x14\xf7\x0e\xe0\x9c\x9c\xf6\xce\xfc\x0c\x3d\x39\xbf\xed\x15\xb5\x70\xae\x19\x65\x1b\xe6\x8d\x93\xcd\x93\xe3\xe3\xa3\xf5\x82\xbe\x62\xa9\x8a\x06\xf0\xe4\xf8\xf8\x58\xdd\x2e\xe8\x53\x9a\x2c\x62\x19\x6b\xa8\xb2\xa5\xef\x35\x18\xfa\x4a\x0b\x46\xb9\x3a\xa2\x89\x72\x05\x4f\x0f\x5f\xd7\x9f\xec\x6c\xca\xe7\x13\x71\x49\xb9\x79\x1c\xc2\xd3\x58\xc5\x27\x32\xe6\xe9\x9c\xca\x97\x8a\x2e\x5d\xad\x67\xac\x18\xc4\x8b\x93\xd7\xaf\x1e\x2d\x16\x4f\xc4\x62\x41\x13\x37\x04\x5d\xb6\x55\xf0\x4c\xc8\xa5\x33\x02\xba\x92\x63\xaa\x6b\x94\x65\xaf\xe9\x8c\xc5\xae\xdb\xd7\x6c\x49\x35\xad\xb7\x0a\xd1\x01\xbc\x89\x97\x74\xf6\x46\xcc\xe8\xeb\x78\xa5\x1f\xc5\x8c\xba\x21\xbe\x8d\x99\x9e\xdf\x6f\x6b\x9a\xfa\x49\xbd\x5d\xac\xcf\x19\x2f\x7e\xf8\x3e\x8e\xdf\x3f\x7f\x65\x56\xda\x55\x3b\x7e\xff\xfc\xcd\x7a\x79\x46\x65\xf9\xfc\x36\x56\x17\xc7\xf4\xbc\x52\x20\x18\x57\xe5\x63\x6d\xad\x8e\xdf\x3f\xb7\x6b\x23\xa4\x5f\x18\x7b\xd7\xe4\xf1\x7a\x3e\x2f\x7b\xd5\x5b\x74\x7c\x41\xa9\xef\xe6\x84\xde\xa8\x13\x19\x27\x97\x4f\x8a\x4d\x2a\x8a\xfc\xb3\x58\x27\x6e\x94\x79\x71\x58\xe6\xc6\x03\x75\xe1\x98\xb4\x15\x27\x62\x32\xe7\x53\x98\x71\xb2\xe2\x61\xb8\xaa\x68\xad\xcd\xe1\xe6\x61\x38\xe3\xa5\x51\x99\x28\x8a\xed\x1d\x9f\x19\x87\xc2\xec\x0d\xaa\x2a\x8f\x97\xf5\x89\xa2\xf6\x2a\xc1\xc5\x6e\xc1\xc3\xda\x76\xfe\xb1\x11\x4a\xa3\xf2\x82\xd2\x15\xbf\x23\x74\xed\xd7\x85\x9b\xfd\x72\x40\xdb\x8d\x95\x63\x6f\x39\x41\x5f\xae\x5c\xa0\x84\x2b\x3e\xbe\xe2\x91\xe6\xc0\x4e\x4f\xdf\xbf\x3b\x38\x7d\x7a\xf0\xfe\xe4\xf0\xf0\xd5\xf1\xe9\xf3\x57\x87\x8f\x1f\xbd\x3a\x7d\x71\x78\xf8\xe3\xe9\x69\xa9\xd3\x3e\x77\xc4\xbc\x62\xbc\x47\x0a\xb7\x84\x30\xac\xac\x2e\x52\x13\x3e\x05\x5e\x0f\x52\xb8\xac\x92\x7b\x6f\x20\x6d\x09\x07\xa8\xcc\xde\x9d\x35\x45\x00\x1b\x9e\xc0\x5f\x10\xb7\xf1\x07\x4e\x93\x0b\xb6\x98\x49\xca\x1b\x51\x91\x8c\x1d\xd3\x55\x91\xf1\xf5\x6b\x31\x5b\x2f\x28\x71\xf7\x45\x9d\x17\x27\xb5\x81\x12\xed\x05\x9d\x56\x81\x62\xcc\x11\x8e\xb8\xbb\x4a\x73\xca\xc9\x86\xc7\x4b\x9a\xae\xe2\x84\xce\xa2\xa6\x0d\x35\xcf\x47\xa7\xbc\x5f\x56\xe8\x9f\x53\xb5\xcd\x8d\x76\xbb\x8d\x31\x55\x5a\xe4\x70\x56\x39\x05\xfd\x78\x66\x0d\xe7\x6d\xab\x50\x4c\xdb\x5e\x70\xab\x37\x94\x74\x29\xae\x68\xb3\x2d\xde\xf8\xab\x13\xcd\x0e\x1a\xcd\xcf\xa9\xda\x6e\xeb\x45\xd2\x2f\xb4\xbd\x88\xd3\xdd\x6d\x7d\x5c\x9e\xb2\x83\x46\xeb\xf5\x6a\xa6\xb7\xa2\xee\x15\xb4\x6b\xb5\x88\xaa\x3c\x80\xea\xc7\xa6\x4d\xea\xa3\x0e\x54\xda\xb8\x37\xa4\xa8\x63\x4d\x40\x2a\xde\xd5\xa0\x78\x47\x2a\xf5\x74\x23\x7b\xad\xa8\xad\x89\x7b\x43\x8a\x3a\xb8\x31\x37\x77\x5a\xb6\x57\x47\x9f\xae\xda\xa2\x80\xda\xd1\xf6\xb9\xe9\xf9\xce\xe5\x29\x06\x58\xf4\xba\xf5\x6e\x67\xf7\x8f\x4c\xaf\x77\x76\x5f\xac\x71\x4b\xf7\xee\xdd\xce\xee\x5f\xbb\x85\xbc\xf3\x03\x95\x5d\x69\xf9\x44\xf1\xd6\x7c\x64\x87\x73\x10\xaa\x7e\x1c\x4e\xb9\x65\x3f\xae\x39\x1c\xb6\x7c\x5a\xd2\x73\x96\x2a\x2a\xd1\x64\x0a\x0a\xba\x43\x9c\x8f\x0e\x1b\x67\xa1\x15\x94\xfb\x92\xce\xd6\x49\xed\x4a\x57\x35\x1a\x78\x71\x86\x8c\x9c\xec\x62\x0c\x0a\x61\x46\xdd\xe8\xfe\x8d\x87\xe1\x16\x8f\xcc\xa2\xdd\xe8\xae\xef\x56\x1c\x97\x7b\x08\x51\x52\x9e\x60\xc4\x31\xae\x1c\x92\x31\xef\x05\xf7\x82\x28\x08\xf4\x98\xf4\xbf\xf5\xc1\xb4\x9c\xbe\x32\x08\xac\xf2\x77\x68\x4c\x04\x13\x5b\x15\x49\x0c\xb2\xbf\x34\x7b\x93\x16\xe1\xb7\x84\xb9\x68\x52\x14\x1b\x61\x85\x97\x43\x12\xde\xa0\x3c\x52\xa8\xb8\xf0\xa0\xe5\x9c\x6a\x95\xb2\x5b\x2d\xda\xe7\xb9\xd9\x1e\xbf\x18\xb0\xb5\x8c\x7e\x17\x77\xf8\x72\x98\x80\x58\xa5\x95\xda\x58\xab\xba\x03\xec\x22\x7f\x9a\x80\x74\x56\x5b\x3b\x32\xf7\x45\x1d\x3f\x3b\x2e\x3e\x48\x84\x8d\xd8\x73\x4e\x15\x52\x85\x0a\x6e\x7f\x88\x71\x81\xa3\x91\x9a\xa8\x22\x10\xcc\x14\x04\x1e\x51\x3f\x03\x03\xc9\xc5\x53\x45\x46\xa5\x46\x31\x50\x82\xa0\xaa\xac\x06\x75\xa4\xb3\xb1\x43\xbc\x65\xa6\x35\x60\xd9\x1e\x22\x70\x52\x1f\x9b\xac\x03\xc8\xc8\xd8\xb2\x1c\x55\x0d\xc3\x1a\xf5\x40\xbc\x39\x02\x96\x1e\xb9\x11\xd0\xd9\xdf\x3e\x86\x7a\xfc\x0e\x4f\x33\xf4\xd7\xac\x90\xd3\x16\xdd\xb1\xbe\x89\x4a\xa3\x60\xb2\xc9\x31\x74\xaf\x79\x18\xee\x66\x7e\x7c\x78\x96\xfe\xfb\x35\x0d\xc3\x86\x89\x4b\x37\x55\x84\x90\x6b\x7f\x33\x6b\xd4\xfd\xb7\x7b\x7f\xec\xfe\xdb\xff\xd3\xf9\x63\xe7\x6a\x4d\x6f\x3a\x57\xdf\xf4\xbf\xeb\xdf\x37\xcf\x28\xc1\xf6\xd6\xf2\xc1\x55\xcc\x3b\x1f\xc4\xda\x94\xfe\x45\xcf\x92\xa7\xb4\xf3\xfa\xe5\x89\x2e\xb8\xf7\x6f\x8d\x4f\x58\x0e\x1d\x29\xef\xf2\x53\xf1\xeb\xd1\x32\xe3\x43\x72\x1f\xab\xfe\x92\xdd\x30\x8e\x36\x67\x74\x2e\x24\x7d\x62\x18\x98\x88\xe7\x78\x54\x5c\xcd\x35\xce\x79\xc5\x26\x9c\x32\xce\xd4\x68\xab\xa4\xbe\x68\xdb\x2b\xa5\xfa\xa6\x96\xfd\x33\x9e\xf0\x42\x64\xb4\x25\x58\xb3\xba\x95\xe8\x78\xaa\x1a\x9c\xb8\xb4\xbc\x98\x2d\xde\x13\x26\x22\x5d\x3a\xd2\x8c\x94\x90\x2e\xb8\xd4\x9e\xf9\xdd\x1a\x87\xd3\x57\xb3\x7f\x11\x8e\xdc\xaf\xc8\x3b\x1d\x86\xa1\xff\xe5\xba\xf1\x34\xd6\x75\xda\x78\xab\x71\xc2\x35\x27\x0a\xe7\xa8\xdc\x5f\x5c\x70\x77\x2b\x23\x38\x6d\x1d\xfa\x89\xf3\x73\x92\x86\x01\x94\x2c\x51\x65\x0d\x69\x02\xa6\x77\x87\x9e\x69\x4c\xc4\x72\xc9\x94\x62\xfc\xbc\x88\x57\x78\xea\x19\x89\xdd\xac\xa6\xad\x71\xbc\x3e\x4b\x13\xc9\xce\x34\x43\xe0\x31\xd7\x69\xc9\x54\xec\x6e\x7e\x2d\xe3\xd5\x8a\xce\x9e\x3b\x66\x62\x77\x45\x87\x4d\x0c\xf2\x3a\xd4\x1b\x5e\x2f\x2f\x88\xca\xeb\x78\x75\x47\x2f\x69\xdb\x38\xaf\xb5\x38\x45\xe5\xfb\xd7\xa6\xf3\x6b\xee\x7b\x8e\x2f\xa9\xb9\x94\xe7\x06\xf7\x24\x4e\x2e\x9a\xa1\x48\xcb\xe8\x69\x36\xec\x9b\x73\x96\x28\xa2\xee\x43\x4c\x7c\x20\xae\xa5\x86\xe0\xea\xbb\xf6\x4b\xb0\xcc\x47\x84\xb3\x0a\xef\x4a\xeb\x5d\x72\x5d\x5c\x69\xa1\x91\xa8\x8b\x49\x69\x76\x9b\xc8\x91\xd5\x84\xd5\x16\xcb\xe0\x78\x27\x10\x3c\xb2\x4c\x07\xac\xa1\xdc\xb7\x4a\x2d\x0c\x97\xbe\x82\xa6\x58\xdb\x12\x90\xaa\x66\x04\x31\x2a\xf2\xd2\x4e\xae\x59\x95\x2b\x25\xc4\x22\x1d\x97\x3f\xa3\x6b\xa3\xf6\x9e\xb3\xf3\xa2\x08\xd7\xf1\xd4\xad\x89\xa6\xd1\x3f\x75\xaf\x5f\x08\x71\x49\x6e\x39\xdc\xf2\x3e\x5d\x6a\x4c\xa2\x11\x55\xa4\x0f\x70\x00\x0a\xeb\x62\xc1\x5d\xa1\x92\xf1\x15\x5d\xec\x2b\xb1\x6f\x6f\xf5\x43\x2d\xd8\xbc\xf2\xf6\xb4\x63\xfd\xd2\x8d\x56\xf5\x0b\x98\x68\xf2\x36\xf5\x0f\x7a\x68\x0e\xec\xce\x60\xd8\xac\x24\x5d\x51\x3e\x73\x99\x3a\xca\x7e\x2c\x5b\x79\x77\x6f\xf6\xd8\xb4\xf7\x85\x73\x77\xcf\x1a\x6e\x38\xd9\x98\x99\xb4\xc9\x5e\x05\xaa\x3a\xd8\x92\xf4\x0b\x55\xa8\xc2\x0f\x06\x1a\x11\x84\xa1\xa6\x69\xe6\x13\x63\x4d\x55\xd3\x0b\x36\x37\xf1\x6b\x5c\x58\x56\x85\xcb\x20\xac\xc8\x9b\x9e\xaa\xdd\x8c\xf8\xc3\xfd\xa1\xa6\x5d\x1a\x9b\x27\x14\x71\x18\x56\xb1\xe5\xb1\x17\xd5\xbe\x80\x32\xbe\x88\x14\xbe\x0e\x23\x7c\xf5\xb1\x6f\x48\xbf\x8f\x0c\xf7\x68\x20\xbd\x0e\xe6\x36\x78\x8c\x7d\x5b\x8d\xda\x7d\xd9\x64\xac\xfa\xa7\x57\xcb\x51\x21\xf2\x90\x4d\x6e\x7a\xfa\xbd\x98\xa2\x39\x4b\x60\x64\x93\x8f\xce\x39\x12\x35\x6e\x89\xe3\x0d\x9b\xf0\x69\x3b\xa2\x68\xb9\x37\x67\x22\xc2\x99\x64\x09\xad\xa2\xc2\x2d\x2a\x06\x0e\x7c\x57\xcc\x21\x33\xc3\x09\x9f\xe6\x75\x2d\x90\x89\x4d\xe2\xc2\x44\x96\x07\x38\x65\x0b\xca\xd5\xa8\x59\x40\xba\x03\x30\xfd\x38\x84\x8a\x36\xb3\x58\xc5\xd1\x66\x6f\xcf\x02\x33\xb5\xe1\x1f\xd7\x8a\xce\x22\x96\x63\xd8\x6a\x1f\x83\x27\x57\x75\xcc\x60\x3a\xed\xef\x19\x84\xdd\x16\x6d\xc9\xe2\x2f\xfd\xb1\xbe\xfb\x56\x2d\x93\x01\xd6\x4c\xc1\x66\x46\xe9\x2a\xea\x0e\x20\xbd\xe5\x89\x9d\x99\x89\xf3\x67\x8f\x89\xde\x1a\xa6\x2e\x9e\x18\x8c\x5b\xff\x44\xbd\x63\x63\xeb\xd0\x08\xe4\x9a\x9b\x50\x8f\x27\x2c\xb9\x6c\x1b\x92\xec\xef\xcd\x68\xaa\xa4\xb8\x35\xa1\x99\x2b\xb0\xf5\xa8\x66\x2f\xb3\x91\x3d\xbb\xde\x0b\x43\x13\x8e\x12\x44\xab\x52\x13\xb2\xc9\x56\x64\x45\xcc\xb1\xe8\xb2\xe5\x48\x4c\xe2\xe9\x8e\xc3\x32\x89\xa7\x44\x62\xe8\xb2\x30\xec\x0a\x6f\x2e\x79\x62\x80\xae\xce\xc8\x26\x84\x4f\x78\x85\x91\xdd\xbd\x40\xd7\xbc\x9f\x52\x85\xd6\x90\x80\xb4\xe7\xcd\x30\xf4\xc6\x1d\x80\x48\x7b\xd1\xe1\x66\x9b\x8a\xd9\x83\x65\xec\x18\x14\x04\xd9\x78\xf2\x18\x49\x4d\x34\xfc\x43\xf3\x52\xa9\x5d\xae\xf7\xfe\xd9\x84\xd6\x5d\xc5\xb7\x0b\x11\xcf\x8c\x8b\x89\x63\xd7\x8c\x67\xa2\xd1\xb0\x7a\x93\x4f\x18\xae\xcd\x89\xcf\x32\x94\x10\xda\x4b\x8c\x1b\xac\xfb\x0a\x4a\xc0\x85\x26\x5d\x32\x65\xbe\xef\x7e\xfe\xdd\x5f\x6f\xfd\xac\xed\x5c\x7f\x14\xd6\x38\x2f\x6c\xd1\xbb\xa4\x7c\x61\x8e\xac\x3e\xbd\x91\x39\xbb\x72\xdc\x76\x7a\x5d\x95\xbc\xe5\x68\x6f\xdd\x31\xeb\xee\xc2\x5d\x13\x3a\xf5\x44\x60\x93\x1b\xf9\xc9\xdb\x6e\xaa\x0a\xd1\x42\xf1\xd3\xc2\x16\x08\xf3\x01\x51\xc0\x92\xc4\xe6\x1e\xb3\x0f\x60\xeb\xca\x25\x1e\xb5\x23\x2a\x0e\x6c\x37\x82\x72\x9f\x9d\x88\x16\x24\x65\x49\xfa\xce\x59\x91\x22\x32\xf8\x1d\x95\x72\xeb\x6c\x90\x83\x23\xbd\xed\xe3\x78\xc2\x91\x23\x2b\x26\x0d\x50\x8e\x41\xe4\x26\xd0\x80\x96\x30\x9b\x2a\x20\xd4\x40\xeb\x2d\xfe\x0a\xa8\x4a\x1c\x4d\x5c\x93\x66\x89\xe6\xe6\x5d\xe8\xa9\x1a\x5f\x53\xe6\x48\x70\xe3\xb1\x07\x4f\x0f\xa6\xc7\x81\x42\x6a\xdd\x29\xeb\x5a\xaf\xe6\x88\x7c\x94\x75\x0d\xa4\x63\x1e\xe9\x96\xc2\xa4\x5f\xe3\xb3\x05\x95\x59\x46\xdb\x7c\x2c\x50\x49\xef\x8b\x11\x97\xcf\xbb\xc6\xeb\x83\x92\x14\xe3\xae\x9c\xf9\x92\x73\xf6\xa7\xd0\x1d\x13\xf0\xb0\x2f\x0b\x1a\x66\xb7\xc7\x4f\x5a\x0f\xdc\x6d\x64\x54\xd2\x39\x5d\x6a\xd8\xbd\xc8\x6d\x56\x0e\xd4\xfb\x96\x20\x41\x18\x6e\x8b\x61\xd8\x11\x26\xea\x7e\x96\x95\xc1\xfc\x8b\xec\x39\xcc\x02\x58\x85\x37\x1d\xbb\x00\xd6\xf5\x49\xfa\xa0\xc5\xd5\x9a\x55\x06\x90\x4a\x29\x64\x60\xa3\x48\x61\xac\xc9\xa0\xd9\x31\x09\xa2\xb9\x5f\x76\x52\x5f\x01\x41\x26\xef\x4d\x83\xb3\xd0\x27\xd9\x6b\x9f\x5a\xde\xb5\xa9\xfa\x38\x2a\x96\xb4\xd4\xa0\xba\x92\x8a\xb2\x77\x27\x7c\x59\xd5\x46\x35\xb9\x12\xc3\x1b\x4f\xec\xbc\x04\xce\xb0\x8d\x02\x50\x25\x88\x4f\x9a\x11\xb7\xee\x56\x39\xea\x93\x8a\xb5\xd0\x5e\x74\xf0\xbe\xc9\x08\x1b\xf3\x8b\x26\xea\x2e\x3f\x18\x27\x14\x28\x51\xa0\x7c\x68\x69\xb0\xe9\xba\x14\x38\xec\x1d\x51\x70\xb8\x3b\xe2\x79\x7e\xc3\xed\xb4\xdb\x0d\x1b\x8e\xdb\xb8\x5a\x36\x38\x0e\x28\x9a\xa5\x0d\x5d\x6a\x0e\x9f\xaa\xaa\xa5\x1d\x62\x5d\xa9\xc2\x03\x41\x8a\x29\x81\xc6\x9a\x46\xc1\x1b\x13\x51\x21\x36\x76\x02\xac\x98\x40\x9c\x43\x42\x1a\xf2\xf7\x84\x4d\x47\x49\xa1\xc2\xdf\x41\xbe\x93\x76\xe1\x4e\xa1\xd8\x07\x7c\xda\x12\xa1\x1d\x16\x6f\xc3\xff\x55\xb1\x70\x5d\xe5\x07\x70\x63\x11\x76\x48\xc3\x65\x3c\x69\x90\x6e\x11\xec\xfd\x56\xb3\x04\x8c\xc8\x62\x09\x62\xb7\x04\xa2\x58\x02\x96\x83\x17\x78\x3d\x32\xb2\x89\x6c\xd6\xd6\xd5\x79\x87\xe2\xa2\x9c\x8d\xb9\x36\xbe\x23\xe7\x86\x55\x59\xe5\xf8\x0b\x93\x76\xf5\x50\x0c\xbc\xc2\x0b\xd5\x2f\xad\x26\x64\x5d\x7a\x3c\x7b\x3c\xa3\x31\xe2\xba\xbf\x8c\x57\x3b\x16\x93\x99\x45\x8c\xd6\x93\xc1\x14\x95\x89\x44\x34\x9f\xed\x7a\x68\x1e\x97\xa4\x99\x41\xc4\xc5\x8e\xe4\x6d\x4b\x70\xe7\xd4\x4d\xd4\xf0\x2f\xcf\xdc\x54\xdb\x39\x71\xab\x25\xa8\xa7\x17\xfb\xdb\x86\x63\x30\x68\xfb\x70\xaa\x48\xc4\x54\x2b\x87\xe3\x32\xc9\x95\x03\xa2\xa8\xc8\x2d\xd7\x00\xcd\x02\xd2\xdb\x05\x30\x23\x76\x6f\x9d\x09\xa3\xb5\x69\xef\x66\xcb\xdc\x54\xef\xac\x35\x6a\x9a\x53\x91\x46\x2a\x8f\xd4\x2e\x8d\xdb\xf6\x27\xaf\xb7\x4e\x54\xc3\x36\x50\xc3\x60\x85\xfe\xeb\x2e\xc9\x6a\x9b\x28\xe8\x6d\xb4\x0a\xa7\x4f\x7c\xfb\x0a\x94\x21\xba\xbb\xb4\xda\x77\x22\x22\xba\x8d\x53\x89\xca\xb7\x10\x87\x37\x0c\x38\x43\xf7\xd6\x64\xeb\x8a\x50\x2d\xf9\x6d\xb9\x8e\x59\x4d\xf1\x44\x4d\x71\x53\xf3\x55\x58\x28\x34\xda\xf1\x2a\xb2\xd2\x76\x0e\xaa\xd1\xc0\x58\x00\x30\x18\x25\x4b\x4a\xe5\x95\x9d\x7e\xa9\x3c\x2b\x9b\x36\xa7\x51\x5a\x38\xb6\x26\x52\x5b\xb2\xaf\x1f\x7c\xd9\x63\xa9\x25\xdd\xb1\xd4\x16\xcb\x6a\xb1\xaf\xa0\xef\x55\xe1\x4f\x0b\xf6\xd6\x84\x8e\x38\xd4\xec\x19\x86\x1e\x1c\x73\xaf\xa7\xfa\xd4\xb0\x88\xb7\x4c\xc5\x7b\xc5\x7e\xed\x2c\xaa\x76\x17\x13\xa7\xa7\xfe\x0d\xa1\xde\xed\x32\x9d\x17\xeb\x60\x4d\x76\xaa\x18\xa8\x71\x9f\xac\xf7\x53\x59\x98\x5d\xc6\x9d\x8a\x5e\x7c\xb4\xad\x28\x1f\x80\x42\x2d\x0a\x74\xba\xdb\x58\x5b\xfd\x3e\xdc\x38\x63\xed\x5b\x4e\x5e\x6d\x69\x0c\xbd\x00\x56\x04\xda\xd1\x88\xad\x1d\xdb\x79\xee\xfd\x92\xde\x1a\xb6\xfd\x2a\x5e\x8c\xf8\x44\xd6\x1c\x8a\xcb\x7c\x0e\x93\x29\x70\xd2\xbc\x75\x63\xc3\x04\xd0\x09\x9f\x56\x2e\x66\xf1\xe9\xa8\xc4\x1a\xce\x12\xe1\x95\xd9\x65\xaa\x38\x46\xde\xf0\xaa\xed\x02\x82\x65\xbc\xf2\xa2\x4f\x1a\x80\x4d\x18\xd7\x65\x9e\x13\x95\xf6\x42\xaf\xa2\x37\x5e\x08\x76\x52\x59\x1b\x2b\x3e\x16\xd5\x0b\x2d\x13\x59\x18\x71\x28\xc6\x91\xac\xbc\xf3\x1f\x9f\x88\x6a\x15\x23\x11\x72\xfd\xcf\xc9\x3f\x61\x8d\x05\x51\x3d\x01\xcd\x95\x36\xa2\x75\x96\xb5\x2c\x8a\xe3\xbc\x83\x4a\x64\x97\xea\xca\x56\x25\x5b\xdd\x69\x5f\x8b\x0a\xc4\xe8\x84\xed\x1c\x8e\xfe\x4f\x82\x13\xcf\xda\x7d\x09\x52\x2c\x5d\xfc\x02\x9c\xf8\xce\xfe\x0b\x20\xa5\xd4\xac\xbf\x6c\xbd\xe6\x54\x16\xd5\x62\x8d\x21\x85\xb3\xcc\x48\x1c\x39\x52\x78\xdc\x7c\x37\x56\xbb\xb8\xba\xcd\x25\xbd\x8d\x14\x5c\xc5\x8b\x48\xe9\x41\x44\x0d\xb7\xb3\x7a\x33\x5a\x6b\x46\x6d\x33\x2d\x0b\xe9\x96\x93\x69\x29\x0d\xbd\xda\x7d\x47\xab\x8e\x8c\xcb\xf0\xb6\x63\x27\x21\x05\x01\x8e\x82\x7b\x36\xb5\xa7\xbb\xc7\x42\x0b\xe4\x8f\xdd\x45\xf0\x7b\x01\x06\xe5\x92\x20\x17\x1f\x7d\xb3\x15\xc0\xbc\x5d\xfd\xc8\xa7\x86\x05\xde\xe3\x84\x97\xcb\xfd\xba\x76\x4f\x09\x62\xcb\x19\x3a\x03\xd6\x84\x4d\x91\x89\x20\xe0\xbd\xb6\x1b\xf9\x3e\xac\x87\xb9\x59\x7e\xeb\xe5\x3d\xa6\x28\xc1\x51\x53\x7e\x4f\x5c\x46\x3d\x23\x7d\xea\xae\x9f\xf2\x3b\xef\xb4\x55\x69\x41\xf5\x34\xdc\xcd\x79\x57\xb4\x84\x65\x34\x3b\x5e\x81\xac\x58\x7f\xeb\x35\x47\xcc\xcc\x35\x86\x35\xf8\x1c\x4a\x15\x79\x76\xbd\x5d\xc9\xe7\xdf\xc5\x79\x8c\xca\xbb\xb2\x79\x0e\xcf\x38\x69\xcd\xb5\xa2\xa5\x5f\x0b\x4f\x84\x38\x93\x44\x18\x2a\x78\xd7\x52\xbd\x4c\xdd\x62\xff\xdd\x6e\xa7\x4b\xe1\x33\x27\xcf\x78\x96\xbd\xe3\x77\xa5\x6a\x79\xcc\xc9\x67\xee\xe3\xd8\xfd\xc6\xb7\x73\xfb\x3f\xe7\xe4\x37\xde\xcc\xe1\xf0\xc2\x14\x16\x39\x47\x7e\xe4\xe4\x31\x1f\x3f\xe6\xd5\x5c\xfc\x3e\x58\x95\x5e\xdc\x9f\xdb\xdc\x26\x9e\x17\x6a\xa5\x1f\xb9\xf5\xc3\xf8\x91\x4f\xcd\xdd\x57\xf3\x8b\x54\xda\x4b\x8d\x5a\xeb\x32\x99\x20\x2f\x8a\x64\x15\xc5\xed\x26\x0d\xf0\x63\xdb\x9a\x97\xe1\x98\x7f\xe4\x53\x0c\x22\x87\x9f\xb6\x67\x57\x06\xcd\xd7\x7d\xfe\xd2\x0a\x61\x3f\x15\xdf\xc9\xe1\x87\x2f\x4c\xf4\x43\x6b\x0f\x2e\x99\xc9\xb8\x1a\xf8\xdd\xa7\x69\x7c\xe7\xdd\x43\xa6\x41\x54\x14\xbe\x59\x2f\x16\xd3\x20\xfa\x81\x87\xe1\x0f\xc6\x37\xb9\xc8\x98\x32\xfe\x59\x77\x1c\xfd\x62\x8e\x8f\xf9\xe4\xaf\xad\x2e\x29\x0e\xae\xea\x21\x7f\x4c\x1c\xd4\x02\x98\x68\x96\x55\x91\x33\x75\xfd\x29\xb9\x95\x2d\xe2\x57\x5e\x26\x36\xe9\x0e\x5d\x4c\xa6\x0f\xbc\x5c\xf9\x62\xe0\x1e\xce\xa6\xae\xff\xad\x64\x94\xbb\x2a\x98\x2c\x9e\xbb\x5e\xbe\x95\xe2\xe6\xd6\x14\xe6\x40\x25\xf9\xcc\xdb\x13\x25\x00\x97\xdb\x17\x87\xef\x4d\xfe\xda\x9f\xf6\xf6\x5c\x4c\x05\x2a\xc3\x90\x4a\x83\xb0\x8b\x1f\x7d\x1f\x30\x2b\xcb\x82\xca\x85\xee\xb1\x8f\xdb\x9f\xca\x04\x9f\x0e\xfb\x41\x4f\x45\x41\x90\xbb\x98\x54\xb2\x2d\x99\x53\xb7\xcb\x65\x18\x72\x1b\x9b\x27\x07\x21\xc9\x76\x84\xef\x3a\xc4\xb1\xad\xc5\x76\x3b\x55\xbb\xeb\x2d\x64\x01\x81\x15\xf9\xbc\x7c\xaf\x7a\x41\xb0\x7d\xf7\x3b\x08\x72\x88\x25\xb9\xf7\xd7\x8f\x7e\x1d\xfb\xbd\xf1\x93\xf2\x1e\xdb\xc7\xe9\xde\x3d\x58\xb7\x8d\x11\x12\xb9\x8d\x07\x52\x49\xd6\xb2\x3c\xf2\x0b\x49\x12\xd9\x44\x0b\x73\x49\x2a\x71\x16\x52\x37\xec\x85\x2c\x23\xe6\xde\x9b\x7c\xfc\xf8\xd7\xbd\xfe\x1f\x7b\x63\x84\x27\x1f\xa7\x9b\x3c\x9b\xde\x3b\x87\xe0\xe3\xc7\xbd\x30\xa8\xd4\xaa\xf7\x9b\x15\xf8\x1a\xf7\xff\x38\x46\x63\xf2\xf1\xe3\x47\x84\xb3\xce\x5c\x48\x3d\x27\x5b\x30\xc5\xba\xa3\xbd\x61\xff\x8f\xe3\x00\xf7\x82\x3d\x17\x4c\x69\xd5\xba\x51\x0e\xa6\xb3\x4c\x6a\xd9\xcb\xe4\xd5\xd4\x3f\xc6\x73\x19\xc5\x12\xdb\xfc\x14\xcc\xbc\xb2\x87\x62\x26\xdb\xb5\x01\xf5\x93\x6d\xc9\xbb\x69\x70\xd1\x6c\x60\x79\xbf\x99\x95\x54\x3d\x90\xad\x24\xe2\x78\xcc\x8b\x80\xeb\x57\xb2\x19\x6f\xcd\x02\xf1\x85\x44\x2e\x51\x52\x50\xb7\xbf\x54\xe0\x15\x6d\x72\x08\x6c\x52\x10\x55\x05\x06\x07\xb0\xb7\xdb\x2e\x88\x41\x91\xe1\x57\x1f\xad\x30\xbc\x92\xe3\x2b\x69\x2f\x18\x34\xaf\x12\xd4\x2f\x1a\xf8\xeb\x07\x6d\x17\x0c\xec\xf4\xcf\x77\xac\x97\xa6\x51\x34\xcb\x94\xc1\x45\xb4\xab\x0f\xf4\x72\x1b\xd6\x1a\x60\x65\x7a\x3c\xdb\xe9\x42\x39\xa1\xd3\xd1\x52\x96\x97\x4f\xc3\xf0\x5c\xba\x08\xe2\xa5\x87\x0b\xcf\x32\x7b\xad\x02\x67\xd9\xad\xf4\xa9\x66\x4c\xcf\xa7\xcd\x9e\xcb\x0b\x73\x5d\x3e\xe2\x26\xf1\xc2\x26\x2f\x23\xb6\x31\xb2\x3f\x84\xb8\x34\xb5\xf5\x7a\xec\x41\x3c\xf2\xa6\x59\x3a\x61\x53\x48\x88\x1c\x4b\xc4\x27\xeb\x29\x28\xfd\xcf\x1a\x38\xa8\x22\x44\x68\x41\x06\x12\x13\xdc\x44\xd7\xc0\x20\xc6\xb7\x12\x71\x13\xc0\x28\x3a\xf3\xbf\x8a\xec\xb8\x76\xa4\xd7\xed\x19\xe4\xec\xcb\xc3\xed\x05\xf2\x31\x88\xfd\x35\xa8\x46\x28\xe2\x22\xf0\x70\x23\xee\x70\x19\x00\x78\x32\x98\xe2\x46\x98\xe1\xda\x4b\xe0\x26\x40\x57\x3d\xac\xf0\x76\x0d\xe0\x93\xfb\x53\x5c\x1a\xf4\x4a\x3e\x2b\x87\x4f\xb2\x8c\x71\x65\x6e\x8c\x6d\x4f\xa3\xb8\x2c\xfb\x49\x56\x43\x52\x95\x5a\x8e\x88\xc2\xa0\xe6\x16\x53\xe6\x02\x2d\xd8\x40\x10\x36\x95\xf9\x27\x89\xfc\x15\xfa\x7d\xd3\x2c\xb6\x81\xa5\x10\xc3\xa3\x5e\x4f\x3c\x60\x23\x1c\x4f\xc4\x94\xc8\x09\xed\x89\xe9\x48\xb7\x2a\x76\x7e\xed\xaa\xd2\xde\xd0\x56\xa6\x23\xbc\xb6\x95\x45\x71\x7f\x72\x6d\x8e\x81\xe6\x80\x0f\xa5\xbf\x56\x6a\xac\xc6\xe6\x86\x5b\xeb\x0e\xb6\x68\xf1\xf2\x1c\x8e\x25\xb9\x92\xed\x97\x56\xcd\x31\xad\x44\x9e\xbf\xf3\xbc\x0e\xdd\x79\x3d\x90\x88\xe2\xfa\x99\xcd\xa3\x6b\x09\x97\x92\x3c\x8d\x15\xed\x73\x71\x6d\xc6\xf8\xa8\xcd\x85\x77\x00\x9c\x0c\xb6\xa2\xea\xfa\x33\x78\x29\x11\x06\x41\x86\xdf\xed\x23\xb9\x6f\xdd\x1e\x38\x91\x20\x1e\x0e\x0c\x4d\xeb\xf5\xe8\x43\xf2\x9f\x83\x81\x97\xa4\x4b\x71\x74\x30\xb5\x17\xfb\x68\xd9\xb9\xaa\xdf\xfd\xab\x46\x96\x46\xc7\xd2\x22\xb3\x27\x3b\xd0\xcb\x23\x89\x6e\xec\xe1\xbe\x96\x18\x34\x59\x74\x67\xfc\x7d\xdb\xba\x07\xdc\x78\xc0\xd6\xd9\x70\xe3\x3d\xa5\xfe\x63\x48\xc8\x20\x0c\xd5\x03\xd2\x4c\x13\x61\xfb\x7b\xdb\xba\x8f\x05\x97\xf5\x5e\x96\x89\xf4\xc3\xb0\x6b\x68\x4b\x0e\x27\x9a\x18\xa3\x71\x34\xc8\x26\xc3\xfd\x3f\x4f\x3f\xce\xfe\x88\xf7\xee\x99\xee\x8e\xda\xa9\x45\x83\x8b\xeb\x76\x11\x75\x37\x77\xe9\xb8\x39\xae\xc8\x44\x87\x2a\xa7\x64\x12\x66\xd9\x70\xd6\x5d\xc2\xc3\xf0\x44\x5a\xaa\x66\xa8\x5d\x73\x96\xd4\xce\xea\xe5\xf6\xd9\x73\xec\x1f\x6f\xb0\x7f\xb2\x90\x44\xcb\xb1\x95\xdf\x96\xe3\xb7\xd2\x04\x77\x3b\x92\xc6\x4f\xc5\x47\x38\x2a\x95\x8a\x9a\x0d\xeb\x98\x5c\x5e\x06\x5b\xf3\x09\x9d\x82\x67\x68\x5f\xb5\xae\xed\x93\x2d\xc3\xaa\x1d\xc7\xfe\x10\x44\x11\x12\x05\x18\x11\x0f\x87\x63\x3e\x11\xfb\x45\x38\x1a\x88\x89\x78\x78\x7f\xac\x51\x90\x47\xc0\xfa\x3c\xb3\xc2\x9b\xfe\xe1\x37\xad\xa6\x65\x36\x46\x62\x7f\x1f\x18\x2e\xfa\x09\xc3\x97\x7a\xa8\x1e\xa9\xc5\xd8\xe4\xe5\x15\x0f\xbe\xf1\xe4\x9f\xe9\x33\x80\xc1\x7b\x94\x69\xcc\xda\xeb\xc9\x07\xa2\x20\x0e\x7c\x22\xa7\xa3\x75\x18\x6a\x69\x7c\x0d\x12\x18\x2e\x13\x80\x61\x9c\xc3\x9b\x6d\x5a\x68\x96\x64\xaf\xd5\xab\x5e\x4b\x8c\x95\xb8\x04\xa3\x0a\x8d\x6d\x4d\x77\x10\x86\x95\x98\x9e\x59\xf6\x46\xba\x05\x7f\xdd\x84\xbe\x32\x36\xe9\xfe\x10\x24\xf1\x8a\x91\x51\xaf\xc7\x1f\xa8\x11\x96\x13\x3e\x25\xb4\x92\x21\x5e\xda\x7e\x9e\xde\x7d\x28\x5a\xee\xd2\x99\x66\xcf\x5a\x9b\x3d\x95\xc6\x22\x5c\x0a\x08\x1e\x0f\x68\x39\xc0\xc8\x1e\x39\xbc\x6b\x61\x53\x3f\x4b\xf2\x6e\x8b\x2f\x7d\x6c\x0a\x5b\xd3\x80\xfe\x26\xc9\x33\xd9\x62\x47\x29\xf0\x4e\x8e\x30\x1e\x3f\x6b\xcd\xd6\xe4\xc6\xf8\xb9\x60\x3e\x02\x13\x2d\x83\x06\xfa\xd0\x3f\xde\x2e\xcd\xe1\xb9\xac\x87\xbd\x37\x0b\xf0\x42\xb6\x5c\xc6\x1b\xe6\xf0\xa3\x24\x5b\x46\x42\xe7\xf0\x19\x86\x5d\x8d\xb0\x67\xe6\x26\x6f\x18\x52\x90\xfa\x8c\x2b\x8d\x6b\x2a\xc5\x0a\x04\x31\x77\x28\x7c\x56\x26\x42\xf8\xf8\x33\xef\xdb\x5b\xb4\x1e\xae\x19\x41\x62\x2c\xfa\x2c\xad\x15\xe3\x2c\x7b\x21\x47\x65\x42\x27\x96\x63\x0c\x3f\x4b\xb2\xc9\x47\x3f\xcb\x49\x29\xf0\x2d\x44\xac\xbe\xb9\x6f\x26\x33\x0d\xa6\x64\xeb\xdd\x77\x7f\x6a\x7d\xf7\x92\xab\xff\xdc\xf5\x62\xf8\xdd\xae\x37\x3b\x3e\xf4\x8e\xed\xea\xcd\xbc\x79\xb2\x88\x97\x2b\x3a\xdb\x59\x61\xc7\xf7\xf4\xab\xca\x07\xbb\x03\xa8\xbe\xad\xc0\x63\xbd\x59\x6b\x5f\xa6\xd0\xae\x6f\xf3\x95\x8b\x23\xda\x2c\x7e\x1a\xab\xf8\x3d\xa3\xd7\x2d\xe5\xb4\x59\x66\xc2\xb6\x6c\xad\x7e\x21\x4c\xd7\xcb\x5f\xc7\xab\x66\x91\xbd\x09\xd2\x2c\xb5\x47\xab\x59\x6a\xe5\xbb\x66\xe9\x31\xdd\xaa\x68\x79\x93\x66\xa9\x4b\x49\x67\x16\xd4\x92\x92\x9f\xee\x3a\xfe\x0d\x42\xda\xfd\x59\x4e\xcc\xd9\x77\x52\xd6\x2f\x77\xb3\x53\xb4\xe1\x71\x0b\x3f\xfc\x33\x4e\x54\x18\x3e\xe3\x45\x20\x5d\xd6\x2e\xc0\xd9\x9b\x4c\x36\x01\x5b\xe5\x27\x0a\xd6\x8a\x2d\x02\x9b\xd2\xad\x34\xf6\x66\x99\x08\x43\xd1\x3f\x63\x7c\xc6\xf8\x79\xe5\xa7\xaf\xdf\x90\xef\x1a\xa7\xf4\x83\x24\x3f\xc8\x30\xfc\x41\xf6\x59\xaa\x87\x6d\x21\x1f\x7e\x95\xe4\x83\x1c\xff\x22\xd1\x07\x89\xa3\x9f\x24\x28\xf1\x55\x82\x17\x15\xad\xbc\xc9\x73\x63\xb4\x94\xa4\xcb\xc3\xf0\x37\x69\x73\x3a\x99\x48\xf4\x32\x0c\x7f\x34\xcf\xac\x78\xee\x8a\x30\xfc\x55\xda\xf8\x3e\x3c\xcb\x64\x96\x89\x2c\x63\xb0\x26\xf1\xf8\x75\xb9\xc1\xe0\xd2\xca\x45\x93\x29\x94\x1e\x17\x05\xf3\x9d\x5a\xf1\xad\xab\x77\x4a\x09\x8f\x5b\x53\x9c\x65\xb1\x66\x7c\x5c\x8e\x25\x42\x52\xb3\x7a\x28\x10\xf3\x79\x4a\x95\x2d\x08\xec\x0d\x1d\xfd\x80\x4d\x52\x19\x14\x9c\x99\xc3\xe8\x5e\x9f\xdd\x2a\xfa\xaa\xd2\x81\x29\x38\x2c\x3a\xc0\x59\x76\x24\x51\x0a\x09\xc6\x59\xb6\xb6\x8e\x72\x69\x41\xfd\xd6\x2e\x62\x5b\x73\x9d\x9a\xd0\xc8\xab\xd0\xa8\x39\xaa\x3c\x47\x15\x03\x82\xb3\x43\x62\x90\x5f\xb7\x2f\x42\x6c\xe9\xe9\xf6\x64\x25\x01\x31\x17\x9a\x64\x7b\xfb\x50\x19\x6f\xbc\xa6\x4e\xc4\xb2\x58\x49\xcd\x8a\xd5\x72\x64\x19\xb6\x91\x16\x39\xb8\x0a\x46\xc5\x2a\xae\x44\xdb\xc9\x7b\x6b\x94\x28\x54\x7f\x39\x12\xc2\xd0\xe8\xf8\x8b\xb3\x81\xb5\x20\xaf\x64\xf3\x58\xb2\x39\xda\x93\x26\xef\xe1\x5b\xfd\x07\x9f\x6a\x56\x92\x09\x2d\xc2\x28\x7b\xfd\xac\x53\x9b\x12\xc5\xb1\x28\x93\xe3\x84\xe1\x99\xb4\x77\x04\x26\x7c\x5a\x78\xc4\x27\xad\x83\x76\x3a\x9c\xca\x3d\x8d\x54\xd4\xcd\x1b\x5a\x16\x87\x14\x6f\x82\x33\x8b\xab\x4b\x43\x4c\x6c\x24\xf8\xb5\x06\x65\x88\x49\x77\x88\x47\x66\x05\x3b\xad\xe1\x68\xf8\x98\xf7\x0b\xa7\xb5\xd1\x82\xaa\xce\xdc\x65\x74\x53\x7d\x49\xf9\x8c\xca\x30\x44\x0b\xf7\x93\xf8\x32\x58\x18\x93\x3f\x4b\x8e\xcc\xe3\x33\x73\xf5\xbb\x51\x02\x0b\x63\xd4\x5e\xb1\x05\x9d\x69\x42\x25\x4c\x47\x7e\x04\xf1\x82\x74\x07\xd8\x7a\xce\x2f\xfa\xa7\x69\x22\x56\xf4\xe5\x8c\x48\x0c\x6c\x8c\xe6\xb5\x25\x41\x8a\xa8\x2c\xb3\xa6\xb7\x2b\x6e\xc2\x0b\x57\x1e\xfa\x69\x2a\x9f\x58\x33\x9f\xab\x54\xdc\x90\x2b\x1f\xea\x0d\x6b\x65\x95\xf6\x38\xcb\x2a\x37\x23\x8b\x25\xb2\x51\x1f\x8e\x8f\x8f\x4e\x9f\x1c\xbe\x39\x39\xf8\xe5\xe4\xf4\x34\xcb\x90\x22\x2d\xe5\x18\x0c\x43\x5b\xde\x0a\x4c\xcc\xe5\x18\xb3\x9a\xa7\xb2\x70\x49\x78\x22\x96\x2b\xc1\x35\xa1\xde\xf9\xa2\x1f\xcf\x66\x88\xe1\x5c\xaf\x62\x9a\xca\xa3\xe2\x22\x2b\x8e\x68\x18\xa2\x79\x2d\x39\x30\xde\x54\xbf\x99\x7a\xcf\xa2\x3d\x73\x53\xcb\x5f\x3e\xec\xa7\x17\xf1\x4c\x5c\x1f\x09\xa1\x70\x23\xa2\x54\xb5\xf5\xda\x28\x18\x31\xcc\x31\x9b\xd7\xf6\x0b\x6f\x2c\x18\x29\xe2\xc1\x61\x54\xc0\x45\x9b\x81\xd0\x07\xa8\xe2\xa5\xa1\xcf\x5c\xd0\x2c\x7b\xa9\x5e\xe0\x1c\xd5\x1f\x89\xc9\xcb\xe1\x2f\x5c\xc2\x1c\x47\x93\xf9\xb4\xd4\x3c\x39\x80\x16\x36\xc2\x44\x14\x1c\x53\xe3\x39\xe1\xd8\x16\x13\xd3\x74\x95\x46\x9b\xb3\x35\x9f\x2d\x68\x64\x5d\xfc\x9c\xb2\xd2\x67\x1c\x8d\xba\x83\x1c\x52\xdb\xee\x8e\x1a\x2b\x2a\x53\xbd\xf2\x33\x13\x65\x67\x57\x45\x93\x8e\x30\x56\xf1\xb6\xa7\xb7\x0f\x8b\xb2\x5e\x2c\xf2\x1c\x6c\xa8\xbc\x34\xda\x18\x75\x82\xed\x72\xcb\x3a\x50\xf5\xb1\x7a\xca\xd1\x1e\xef\x2f\x63\x59\xb9\x1e\xd2\xa1\xa8\x91\x3c\x61\x8f\xf7\xaf\x65\xd3\xce\x6b\xf2\x13\x8e\x7c\xe6\x1e\x2d\x65\xd1\x2b\x42\xcd\x75\x93\xa6\xd2\x8d\x93\x8d\xc6\x22\xef\x5d\xd4\x34\x6b\x21\x85\x44\x20\xd5\xaf\xcf\xdf\x64\x7c\xed\xb3\x19\x69\xbe\xe8\xb3\x19\x06\xdb\x39\xf9\x13\xa8\xfe\x9e\x75\x56\x16\xfc\x38\xbe\xa2\x01\xf8\x9d\x50\x7d\xfb\xa3\x58\x78\xd5\x77\xbf\x0a\xff\x4b\x9e\x3b\xdd\xdd\x9f\x22\x13\x98\x91\xf2\x59\x35\x68\xa3\x12\x2b\x64\x72\x14\x58\x7f\x50\xfd\x1b\x96\x62\xcd\x15\x9d\x55\x57\x52\x8f\xdd\x1c\xf5\xad\xe1\x9b\x62\x33\x43\xd2\x52\xa3\x5f\xac\x03\x06\xdf\x87\xcd\xc9\x1d\x86\x5d\x5f\xe0\x86\x5c\xd6\xed\xbb\x08\x91\xd8\xbb\xc9\x56\xfa\xdf\x5d\xd9\xa9\xdf\xe6\x62\xdb\x40\x64\xe3\xbe\x11\xd5\xdf\xab\xe5\x8c\x07\x4e\x54\xff\xd4\x58\x57\x4f\x93\x2c\x2b\xee\xa5\x70\x9b\x0e\x1e\x26\x1c\x05\x22\xd9\x4f\x2e\x68\x72\x79\x26\x6e\x02\xd8\xc4\x4a\xc9\x34\xda\x2c\xe2\x33\xba\x28\x17\xbb\x32\x18\xf3\x26\x07\xc1\xa3\x4d\x72\x11\xf3\x73\xbd\x47\x25\x70\xe6\x26\x2b\xf5\x22\xda\x5c\x55\x41\x03\xf4\xb9\x3e\x8b\x93\xcb\xa8\xe6\x16\xea\x66\x4d\x73\x28\xa3\x11\x47\x2e\xcb\x79\x9e\xe3\x29\x0c\x71\x3e\x9a\x0b\xeb\x36\xa5\xf9\xaa\xd5\xca\x50\x06\x47\x9e\x56\x82\xa4\x02\x6d\x2c\x46\x89\xe6\x02\x1a\xf4\x24\x9a\x4c\x73\x97\xdf\x03\x16\xc2\xff\xea\x0e\xb7\x7f\xd5\xfe\x58\x2a\x7b\x61\x82\x39\x06\x2c\x7d\x62\x50\xca\xf1\x4a\xd2\x78\x66\xb2\x67\x62\xb8\x12\xe4\x8e\xbc\x0c\xb5\x30\xbf\x93\x0b\x61\xe2\x1b\x17\xb1\x07\xf0\x64\x30\xed\x12\xe3\x61\x08\xb7\xc2\xe4\x5a\xb0\x6f\x02\x0c\xe7\xdb\xcc\xd0\x79\x8b\xcd\xd2\x74\xba\x15\xe8\x8e\x9a\xe8\xd0\x26\x3b\xda\x57\x65\x14\xea\x5e\x89\x2c\xeb\xde\x8a\xdc\xe8\x5d\x93\x58\x45\x5b\xca\x99\x92\x77\x20\x47\xca\x85\xa8\x5b\x93\xcf\x0a\xc5\x30\xc0\x90\x10\xab\x83\xa2\x56\xbf\xb2\xe5\xb8\x43\x1f\xc8\x11\xb5\x39\xc4\xce\x05\x62\xc4\x84\xcd\xa3\xe3\x38\x2a\x15\xa7\x74\x8a\xcd\x34\x93\x1e\x12\xb5\x1c\x0e\xf8\xe1\x56\x62\xdb\xad\xf8\x9e\xaf\xe3\x1b\xb6\x5c\x2f\x3b\xf1\x62\x21\xae\xe9\xac\x63\x6e\x8f\x76\xe8\x4d\x42\xe9\xcc\xe4\x87\x36\x59\x59\xc9\x60\xc4\x1f\x88\x11\xef\xf5\x20\xe9\xf5\x30\x2f\x93\x23\x68\x76\x88\x19\xc6\xca\x50\x19\x3d\x8c\x87\x5b\x8a\xd2\xbf\xe1\xb3\xb6\xeb\x5e\xaf\xa2\x17\xf3\x62\x00\x49\x60\xed\xe3\x4a\x2f\x85\xc9\x3f\x65\x5c\x8e\xe1\xcc\x42\x82\x7d\x0a\x30\x9c\x0a\x9b\x7d\xca\x3d\x7f\xd5\x7e\x9e\xe9\xfd\x3c\xd5\xfb\xe9\xf2\x98\xb5\x70\x89\x4b\xf1\xfb\x93\xbb\x58\xa3\x8d\x68\xd3\xdd\xf5\x9d\xe7\x14\x9b\x97\x36\xaa\x22\xdc\xe1\x25\xf2\x5c\x02\xc6\x9e\x42\x1c\x8a\x16\x2b\x55\xc5\x06\x2c\xc7\x14\x5d\x22\x8e\x0b\xab\x4c\xa4\x65\x0c\x27\x28\x16\xd7\x5c\xae\x35\x53\x0e\x34\xcf\xe1\x93\x20\x9b\x1c\x6e\xdc\x59\x75\x09\x0e\x03\x0c\x07\xa2\x99\xaa\x07\x8e\x5b\xd9\xe6\xf2\xf2\x78\x18\xa2\x4f\xa2\x6f\x5a\x11\x93\x7e\xef\x40\x4c\x6e\xc4\x54\xff\xc6\x39\x5c\xea\x0f\x8d\x2e\xc5\x44\x7f\xa8\xe2\x36\x11\xe0\x29\x09\x3e\x07\xd6\xe4\x20\x48\xa1\x21\xf8\x3c\xad\x44\x4a\xbc\x14\x18\x9e\xd8\x31\xd6\x9a\xc2\x7b\x41\x82\x42\x05\x63\x22\xba\x7f\x41\x85\x07\x6f\x05\x79\x24\xc6\xab\xf6\xb3\x5a\xc7\x09\xd6\x43\xa3\xf0\xcc\x08\x22\x17\xe1\x51\x8d\x83\x37\xeb\xc5\x22\x88\x9a\xde\xb1\x68\x2b\x1e\x58\xc5\x38\x3f\xa1\xd3\x9a\xbc\x5e\xa8\x87\x95\x9e\x1b\xc6\x63\x1e\xbd\x17\xe3\x15\xa2\x38\x0a\x0e\xbd\x8a\x14\x49\xa2\x4b\xda\x6f\x3d\x59\xe8\xa0\x74\x5c\x59\x82\x48\xe6\x70\xb2\xb5\x9b\x47\x5b\x78\xd1\xfb\x17\x14\xa3\x3b\x11\xd3\x2c\x53\x93\xe0\x2f\x7f\x29\xda\x4d\xb3\xec\x93\x98\xbc\x15\x46\xd1\x02\x2f\xb7\x7a\x7d\x25\x48\x77\x38\xf2\xda\x8d\x37\x82\x0c\x60\x4f\xf3\x87\xf4\xa6\xe5\xfe\x9d\x0b\x05\xdb\x7d\x23\x7a\xbd\x3c\x07\x5b\x58\xad\xa6\x7b\x1b\xe4\xf9\x68\x4f\x4c\x5e\xb6\x06\xf7\xd5\xe7\x2e\x07\x0b\x95\x73\x29\x96\x68\x4f\xd4\xee\x0a\x5b\xd0\xbe\xbf\x7d\x6f\xe3\x75\x53\x24\xd7\x74\x81\x86\x61\xf7\x95\xa8\x53\x06\x5e\x9d\x8f\xd1\x71\xca\xf6\xb1\xdc\x39\x47\x6e\xe6\x91\xe7\xa0\x90\xac\x0e\xa5\x60\xa5\xe1\xa9\x20\xdd\xd7\xa2\xee\x5a\x58\x99\x97\xb9\xdf\xd0\x86\xb1\x34\x79\xae\x20\xac\xa7\x06\x55\x49\xb1\xbc\x8b\xf0\xc0\xda\x90\x1e\x4d\x6d\x76\xe4\x8d\x37\xa1\x51\x22\xab\x1c\x4a\xb7\xa8\x10\x2c\x48\xda\x8e\xda\x60\x5e\x26\x2c\x59\xc0\x8a\x1c\x09\xb4\xc6\x30\x23\x03\x13\x4e\x55\x0b\x99\xe4\x44\xa1\x05\xa4\x0f\xef\x57\x9a\x17\xe6\x17\xb8\x8f\x31\xd8\x13\xb5\xca\xb2\xa4\x48\x10\x74\x2c\xd0\x0a\x63\x4b\x7a\x38\xbd\xee\x24\x88\x6a\xca\xb6\x2e\x28\xdb\x88\x3e\x9c\x8d\x66\xbd\x1e\x8e\xc9\x7c\xbc\x40\xeb\xc9\x6c\x0a\x33\x1c\x99\xbf\xe7\x14\x71\x98\x41\x5c\x51\x0d\x30\x82\x04\x59\x59\x44\xba\xc6\xd8\x30\xcc\x2e\x5f\x48\x32\xea\xda\xb0\xf5\x26\x1e\x07\xc6\xc6\x0d\xb1\xe8\xfa\x50\x20\x01\x0b\x98\x48\xc7\x82\xcd\xa6\xd0\x1d\xe0\xc8\x3f\x96\x9f\xf2\x1b\xeb\x69\xd4\x0c\xb8\xc7\xfa\xcf\x04\xbc\x13\xf0\x59\xc0\x63\xd1\x0c\x69\x5d\xc8\x16\x0a\x95\xc0\xa1\x6a\xd7\xcd\xca\xe0\xd3\x26\xf3\x5a\x99\xf4\xb6\x92\xa2\x1c\xe9\x89\x28\x6c\xa2\x77\x14\x6d\x35\x6f\xf4\x9b\x68\x64\x01\x7c\xbe\xad\x82\x81\x17\x82\x3c\x16\xe3\xd6\x8e\xdb\xa8\x9f\x72\xb0\x74\x8a\x14\xfc\x26\xf0\x58\x4d\x7e\x13\xd3\xa8\x35\x9c\x4e\x65\xf4\x61\xa8\x3a\x8c\xa7\x2a\xe6\xc9\xd6\xbb\x71\xed\xa9\x1c\x59\x54\x6b\x62\x07\x38\x7e\x2e\xac\x54\x07\x3f\x6e\xe1\xa2\x9f\x0d\x2e\x9a\x4c\x9d\x4f\x17\xb2\xde\x99\x8c\xa3\xcf\x82\xb8\x52\x84\xf1\x18\xbd\x13\xe4\x85\x40\x2f\x04\xfa\x2c\x30\xd6\xab\xd6\x5c\x92\x30\x44\xcf\x04\x79\x27\x70\xa4\xbb\x1c\x60\x70\x71\x7d\x9f\x89\x2c\x6b\x63\x55\x4b\x37\xee\x67\x62\xf2\xa3\x98\x7a\x8a\xed\x58\x54\x6c\xfb\xdb\xe4\x7a\xd1\x9e\x09\xf8\x51\xe0\x2c\x7b\x6f\x7f\xc1\x8e\x88\x08\x5e\x4f\xf5\x93\x20\x9b\x97\x6e\x8a\xc5\xc6\x44\xcf\x04\x3c\x7e\xf7\xfc\xf9\x87\xd3\xe3\x47\xcf\x1e\x1d\xbd\x3c\x7d\x79\x72\x70\xf4\xe8\xe4\xf0\xe8\x38\xfa\x59\xe4\xf0\x8b\x30\xf9\xd6\x7f\x68\x23\x96\x1f\x9a\xbc\x03\xde\xa8\x30\xec\x9e\x22\x45\xf8\x58\x45\x55\xb8\xf8\x41\xe0\x30\xfc\x45\x20\x05\x3f\x88\x5d\xb9\xf8\x68\x8e\x73\xf8\x55\x90\x9f\x44\x7f\x6b\x94\xa0\xd8\x4e\x0c\x4e\x99\x5f\xf4\xb4\x06\x70\x59\x86\x2a\xae\x48\x8c\x6f\xf2\x71\x73\xb5\xc1\x85\x6d\xdf\xe4\x06\x4d\xa3\x22\x7d\x6b\x3d\x11\xf4\x53\x6a\x93\x36\x0a\xef\x2f\x55\x99\x59\xe5\x13\x58\x0f\x00\xfb\xe0\xd6\x93\x29\x06\x4a\x78\x15\xec\x0c\x46\xda\xc6\xe0\xa5\x2a\xb7\x92\x62\x5b\x33\x5d\xd0\x26\x7c\xd8\xdc\x66\x1a\x1c\xb6\x59\xe1\x27\x31\xff\x83\xea\xa4\x54\x75\x82\x5e\x35\x07\x79\x9c\x76\xe2\x4e\x31\xe6\x00\xe7\x48\x62\xa0\xe3\x22\xba\xba\xc4\x11\xef\x17\x13\x21\x52\x23\x1c\xe4\x2d\xd4\x18\x38\x6b\xdf\x14\x69\xca\xdb\xa1\x07\x04\x6b\x9e\x29\xb6\x7b\x0f\x63\xd6\x9a\xaa\x02\xe2\xad\x8b\xce\xc5\x1d\x86\x5e\xd0\xf1\x23\x0a\xaa\xa1\xc1\x48\x4a\xd1\xaf\x02\x2c\x49\x5d\xa0\xa1\x89\x2b\x07\x1f\x84\xb9\x5c\xdd\x1d\x62\xf8\x24\x26\x72\x4a\x14\xcb\x5d\x58\x79\x1b\x21\x09\x12\x48\x61\xde\x64\x6b\x14\x31\xc9\x2f\x6e\x3d\x5f\x73\x6b\x2e\x28\x48\x66\x51\x50\xe7\xc2\x97\x5f\x4c\xd4\x74\x54\x4f\x87\x1c\x68\x1c\x11\x58\x0d\x88\x01\x70\xff\x40\xb9\x92\x4c\x3f\xed\x74\xd3\xd1\x28\x98\x97\x31\xc9\xbe\xa2\x1e\xce\x73\x58\xd5\xd7\x04\x66\x1a\xb6\x2f\xaa\x68\x1c\xae\xc8\xc5\x44\xb0\x69\x96\x5d\x34\x19\x33\x11\x86\x17\x13\x31\x85\x5b\x62\x66\x77\x95\x65\x73\x24\x30\x9c\x93\x22\x5b\x3a\x0d\xc3\x8b\xbe\x1b\x7b\x96\x5d\xe9\x85\x38\x0f\x43\xb4\xd6\xf8\xef\xdc\x01\x92\x21\x1d\x1a\x5e\x5a\x11\xe1\xda\xd0\xca\x30\xd4\xe8\x72\xad\x11\x1a\x67\x61\x88\x28\x1b\x53\x86\xd6\xc0\x19\x8e\x5a\x92\xeb\xaf\xf5\x80\xc3\xf0\x3d\x5a\x83\x60\xc0\x18\x36\x7b\xb9\x86\x95\x26\x9e\x18\x83\x5f\x5b\xb3\x4f\x57\x61\xe8\x9f\xbb\x84\x5c\x99\x10\x29\x26\x47\x76\x77\x00\xb7\x2d\xc0\x77\x55\x6a\x4d\x35\x90\x98\xc5\xe9\x12\x72\xab\xbf\x77\xa1\xbf\x77\x6b\xc0\x85\x4e\xc9\x2d\x08\x2d\x37\x27\xc4\xea\x51\xd2\x68\x8e\xfc\x97\x30\xe8\x9d\x8e\xd8\xf8\x56\x17\x9a\x5d\xc7\xe0\x16\x4a\x97\xf8\xfd\xc6\x39\xc4\x86\x0f\x31\x26\xa7\x04\x23\xc9\xb2\x6c\x96\x65\x5d\x5b\x70\x61\x3c\x68\x14\xba\x80\x14\x92\x49\x3a\x75\x2c\x47\x85\x6d\xa3\x5b\x22\xa6\xe9\x21\x87\xa4\xe0\x19\x92\x1c\xd6\x8c\xfc\xaa\x11\x11\x24\xfa\x87\xbd\x51\xf4\x4c\x23\x07\xb3\x91\x25\x7c\x60\x48\x19\x89\x19\xb2\x8c\x9a\x67\x09\x1b\xe6\x92\x35\xb3\x60\x68\x95\xa6\xcd\x2e\xc0\x0d\xec\xd6\xd8\xe5\x4c\xe2\xed\x01\x5c\x32\x3e\x33\xb8\xbc\x1e\x79\xc7\x52\xb7\x84\x15\x79\x0c\x55\xdf\xb6\x36\x1a\x31\xdd\x08\xa4\x89\xd4\x37\xa3\x37\xbd\x9e\x77\xff\xa1\x59\x26\x1f\x16\x3e\x91\x63\xe4\x1b\xf9\x04\x8e\x4e\xab\xe5\x9e\x5c\xee\x88\x1c\x47\x76\x1b\x08\xe1\x63\x57\x43\x82\x4f\x1d\x11\x95\x10\x53\xbc\xa5\x13\x39\x2d\x2b\xb8\xc2\x89\x04\x5d\x5e\xbe\xc8\x4b\x68\xc3\x23\x23\x9a\x3a\x26\x94\x78\x39\xd5\xa4\x5d\x75\x10\xa0\x7f\x16\x10\xa2\x1f\x0a\x38\xb0\xd1\xe1\x99\xe6\x23\x3e\x09\xc6\x61\xce\xc8\x45\xd7\x9d\x17\x58\x31\x93\xf7\x5a\xbf\x08\x20\x80\xaf\x53\x35\xcc\x59\x96\x75\x57\x2c\x87\x8d\x6e\xd7\xc6\x69\x2d\x1c\x57\xea\x33\x74\x56\x25\x52\x08\x22\x55\xe8\x15\x66\x8c\x3c\x37\x37\x95\xe0\x82\x19\x15\xc8\x32\x5e\x05\x18\xae\x98\xd1\x7f\x98\x87\xaf\x4b\x6b\xab\x87\x74\xa5\x87\xb4\x8c\x57\xad\x69\x6d\xd9\xdf\xa8\xf9\xb8\x65\x5a\xe2\xde\xe4\x85\xd3\xf8\xb6\xe0\x54\x48\xfd\x41\xef\xad\x55\xb0\xe0\x5e\x30\x0d\xf2\xd1\x23\x91\x65\x4a\xb5\x50\xf1\xd2\xe9\xf1\x96\xc1\x66\xcd\xd3\x78\x6e\x41\xc9\xfa\x1d\xb3\x4a\x6a\xa7\xa5\x3f\x60\x67\x8d\x03\x66\x7b\xa8\x9c\xb0\x51\xcc\x5c\x5e\x0b\x28\x72\xb5\xd5\x84\xb4\x65\xfd\x78\x35\x3b\x00\xab\x0f\x88\x0a\x52\xee\x0f\x59\xfb\xe9\x02\x4a\xce\xfc\xf9\xe2\x84\xf6\x6d\x6b\x13\xbe\xc7\xb4\x2b\xfc\xaa\x1e\x16\x9e\x6d\xe3\xf6\x03\x14\x21\x45\xce\x99\x61\x0c\xc0\x35\xee\x15\x8e\x6d\xfe\xd0\xa9\xe2\x60\x14\x96\xd0\xd3\x2d\x9a\x7f\xcd\x5a\x18\xc7\x43\x46\x52\x66\xc5\x9e\xb4\xb0\x20\x7f\x62\xd5\x68\xf9\x37\x8c\x88\xc9\x27\x36\x85\x03\x46\x6e\x58\x18\xde\xb0\x7a\xb4\xfc\x03\x66\xe8\xf3\x01\x9b\x9c\x1a\x94\x7d\xc8\x5c\xb0\xfc\x03\x06\xa7\x0c\x0e\x59\x45\x52\xb6\x95\xc8\x21\xcb\x6d\x8b\x6b\x4d\x01\x4d\xcd\x6b\x06\x9f\x18\x86\x05\xd7\x9f\x2a\xe2\xf9\x1e\x9b\x91\xa4\x0c\xdb\xea\xc7\xe6\x03\xa9\xf9\x51\x7e\xe4\x98\x81\x2b\xaa\x7d\xe8\x98\x4d\x5d\xd5\x3c\x77\x36\xae\x4b\xd6\xb0\x71\xbd\x5e\x2f\x14\x7b\x72\x21\x4c\x06\xdf\x7f\x21\x3b\x57\x6a\xd2\x3b\xd0\xd9\xa1\x37\x26\x5b\x8b\x57\x11\xaa\xad\x59\xe1\xa9\x4d\x7e\xfe\xde\x11\xc4\x2d\xea\x5a\x55\x41\x58\x3b\x4a\xad\x79\xf3\x62\x63\x35\xb6\xc3\xac\xd2\x75\x8e\xb1\xc1\x93\x28\x80\x8e\x26\xa2\x33\x29\x56\xce\x9a\xf2\x72\xd6\x72\xf6\x4d\xf6\xcf\xfd\xc4\xac\xef\xbe\xae\xbc\x1f\x14\x66\xc8\xaa\x39\x87\xcd\x70\x0e\x67\x6b\xa5\x04\xff\xea\xee\x94\x38\x3f\x5f\xd0\x3b\x3a\xac\x18\x08\xb5\x0c\x61\x66\xda\xd2\x7b\xe9\x2c\xbc\xab\x2b\x08\xf6\x03\x5c\xbc\xc3\x39\x08\x7e\x5c\x5b\xbf\xbf\xc7\xea\x58\x6a\x26\xff\x7e\xbb\xe3\x64\x6a\xcd\x8c\xcd\xdd\xcd\xb2\xad\xb2\x1d\x11\x66\x2c\x26\xe8\x33\xae\xcc\x7e\x9b\x58\x95\xeb\xf4\x02\x6d\x7c\x49\xd4\xac\x62\xe2\x6d\xda\x22\x8b\xe4\x1a\x0d\x2b\x85\x51\x4b\xc5\xdc\x06\x2c\x22\x9b\x05\x4b\xdd\x17\x3c\x5b\xc7\xf3\x9d\x56\x53\xf9\x25\xab\xe9\x77\x7f\x97\xd5\x54\x7a\xab\xe9\x77\x7f\x8f\xd5\x54\x8b\x27\x3b\x2c\xa7\x15\xf3\x67\x63\x0e\xc5\x32\xe0\x8a\xc1\xec\xce\x8a\x0e\x79\x7b\x6f\x8c\xbb\x6b\xb5\x5f\x45\xaf\x6e\xb8\xb2\xfb\x56\x16\xe9\x35\xad\xed\x6c\x51\xa3\x52\x6a\x76\x71\x3b\x80\x79\x03\xe8\xc8\x64\x1a\xb5\x96\xd7\x0e\xdc\xb2\xc4\xc9\x76\xe8\xde\xe5\x62\x2b\x04\x4d\x35\xb6\x4c\x1d\x2a\xc7\x9a\x7d\xb5\x69\x50\x51\xf3\x1d\x8e\xba\x5d\xda\x06\xb2\x2d\x6d\x1a\x53\xcc\xbd\x99\xa0\x65\x12\xde\x5a\xfd\x0f\x9a\x5b\x0d\x05\x5b\x1b\xb7\x09\xd9\x64\xcd\xdc\x8f\xd8\x3f\xda\xcc\x6d\xb1\x6f\x00\x1b\x6b\x28\x7e\xb2\x88\xd3\x34\x0a\xd6\x97\xfb\xd7\x6c\xa6\x2e\xf6\xe9\xcd\x2a\xe6\xb3\x00\x9c\x09\x9c\xcd\xcc\x39\xaa\x21\x6c\x08\x3e\xad\x53\xc5\xe6\xb7\xfb\x26\x50\x00\x57\x41\x14\x98\x4b\xe6\xfb\x67\x54\x5d\x53\xca\x83\x3c\x87\x89\xd7\x98\x6c\x2f\xdf\x36\x8e\x72\x3c\xe8\x60\xcc\x91\xee\x89\x07\x30\x51\xfd\xd3\x2b\x14\x7c\xe4\x1d\xf3\xbf\xa0\xa7\xa7\xb6\x8d\xf1\x6a\xe4\x10\xf7\x5c\xfd\x00\x4f\x71\xf4\x15\x5d\xd9\xad\x32\xf7\x14\x2f\xc4\x62\x46\xa5\xc6\x9f\x7b\x86\xbb\xbc\x51\x28\x78\xbb\xa0\x1a\x37\xd8\x4f\x06\xb8\xd6\x3d\xd8\x4e\x3b\x01\x06\xbb\xac\x2c\x31\x8b\xea\x96\xcd\xf2\x1e\x76\x2d\x4f\x97\x42\x16\xa6\xfc\xad\x76\x9a\x58\x96\xed\x02\x43\x3b\xd9\x2c\x88\x54\xbf\x46\x73\xc1\x52\xc1\x28\xf8\x77\x3d\xfe\xe6\x86\x2c\xc5\x8c\x46\x41\xb2\x60\xc9\x65\x00\x2b\x91\x32\x43\xac\x82\x33\xa1\x94\x58\xee\xbb\xdd\x0a\x8a\x30\x6b\x1b\xeb\x50\x19\x0d\x60\x46\x17\xf1\xed\x0b\x36\xa3\xd1\xfd\xc1\x00\xe6\x0b\xb6\x32\xdc\x4a\x6e\x80\x65\xbd\x68\x81\x12\x8d\x68\x02\x13\x81\x77\x51\x59\xc3\x5d\xe0\x5e\x0b\xad\x2b\x2b\xe1\xee\x82\x05\x0b\xc0\x06\x61\xe8\x6f\x13\x6d\x24\x71\xbe\xdb\x2d\xc3\xf6\x1d\x51\xb0\xfe\x19\xb4\xce\xb9\x18\xa7\x0c\x93\xd0\x3b\x52\xfd\x26\x01\xdf\xf2\xcc\x68\xc0\xd3\x2e\x1f\x8d\xe6\x59\x6f\x78\x6b\x34\x5e\x17\x7e\x1b\x1a\x57\xe2\xa9\xf3\xe1\x78\xc4\x76\xf9\x70\x3c\x61\x55\x1f\x8e\x47\xec\x2e\x1f\x8e\x4b\xf6\x3b\x7c\x38\x6c\xf7\xef\x9b\xcc\xb0\x75\x12\xff\x97\xe2\x83\x19\x67\x8a\xc5\xce\x97\xca\x58\x4a\x6a\x1e\x60\x25\x3f\xcc\xd2\x27\xc6\xe1\xa6\x85\x6d\xb4\x61\x5d\xaa\x3d\x75\x1d\x06\x77\x86\x77\x03\x15\x8f\x94\x92\xec\x6c\xad\xea\xec\x73\xd3\x10\xd0\x74\x5a\xf2\x34\xa5\xbf\x64\xdc\xf8\x43\xe9\x1f\x64\x77\x15\xd8\xdd\x41\x7c\xe3\x3a\x88\x6f\x76\x75\x10\xdf\xdc\xd1\x41\xaa\xe8\xca\xf6\xa0\x7f\xed\xe8\xc2\x54\x02\x55\xe5\x8d\x93\x98\x27\x74\x11\xd5\xac\xad\x75\xa7\xab\xea\xd2\xe5\xf0\x2f\xe7\x6c\xd7\x64\x4d\xff\x05\x7c\xed\x54\x6d\xcd\x88\x1b\x98\x7d\xfb\xed\x7f\x8b\x27\x5e\xc9\xcd\x7d\xd1\x11\xaf\x00\x96\xaf\xf0\xc3\xdb\xaa\x0b\x5b\x10\x53\x3d\x6a\xee\x6a\xe5\x3f\x84\x79\x11\xc9\xfe\xb9\x64\xb3\x12\xff\xcf\x17\xf4\x26\x0a\x02\x47\xa5\x0c\x6f\x73\x37\x33\x53\xd0\x12\x4d\xd7\xf7\x0d\x16\x08\x34\x05\x3b\x43\xbe\x4b\xab\x0b\xe2\x1e\x2f\x96\x1c\x41\xc5\xfb\xaf\x58\x82\xca\x6b\x68\xba\x08\xce\x9c\xd9\xca\xd0\x1a\x4d\x89\x2e\xe9\xed\x4c\x5c\xf3\x68\xb2\xcd\xcc\x76\x69\xdf\xa6\xbb\x71\x11\xff\x83\x4b\x7a\x1b\x98\xd0\xa9\xa7\x97\xc8\xc4\x8b\x7a\x22\x66\x14\x02\xca\x95\x1e\xd5\xf0\x1b\xb0\x41\xa4\x82\x03\x53\x80\xc7\x1a\x39\xd6\x1c\x0f\x11\xad\x66\x71\xfd\xfd\x1f\x4a\x93\x00\xee\x7f\xef\x3e\x33\x09\x0e\xf4\xb3\xfe\x37\x5e\xd1\x60\x5a\x7c\xcf\x22\x12\xfd\xad\xe9\x3f\xd0\xd3\x11\xb6\x37\xa8\x81\xaf\xa1\x3b\xc4\x4d\x26\x4a\xf5\x0b\x82\x30\xfe\x2a\x46\x57\x24\xfb\xcb\xc5\x7e\x1a\x58\xdf\x4d\xcd\x31\x15\x33\x72\x00\xa5\x64\xcc\xd3\x85\x49\x65\xe1\x58\xc7\x27\xe6\x75\xe0\x28\xf9\x16\x0b\xf7\x85\x0f\x39\x10\xbb\x8a\x25\xb3\xe9\x47\x83\x95\x64\xcb\x58\xde\x06\x79\x6d\x10\x15\xff\xd1\x5d\x03\x31\xa8\xca\x0d\x43\xff\x3f\x52\xfd\x53\x8a\xf0\x14\xe7\xa3\xb7\x3b\xb9\x8b\x93\x1a\x77\xf1\xf6\x4e\xee\xe2\xfd\xef\xe7\x2e\x8e\x9a\xdc\xc5\x31\xe3\xe7\x0b\xfa\x2f\xaf\x6b\xdb\x66\x2d\xbe\xa4\xe4\x4a\xcd\xc4\xfe\x71\x5a\xae\x7a\x7f\xff\xa3\xe6\xfa\x4a\x35\x97\xe3\x7d\x6a\x65\x5f\xa3\xce\xba\xb3\x85\xcd\x26\xd3\x56\xe3\x2b\x94\x5d\x5f\x6a\xf7\x3f\x9a\xaf\xbb\x35\x5f\x5f\xa3\xd0\x9a\x0c\xa6\xd0\xe0\x49\xd2\x0a\xa2\xf9\x6a\x05\x92\x2a\x55\x47\x4d\x7d\x91\xd1\x6a\x15\x00\xd3\xa2\x19\x32\x15\xea\xfb\x3a\xa2\x85\xf2\xa2\x5d\x2f\x44\xe8\x64\x30\xc5\x39\x9b\xa3\x92\xfd\xaa\x41\x73\x35\xee\xf6\xdf\x32\xb5\x76\xfd\xd1\x68\x48\x48\x61\x71\xda\x31\x32\x13\x13\x26\x77\xbc\xda\xcb\xff\x63\x15\x4d\xcd\xf3\xf7\x7b\x95\x48\x35\xf5\xc1\xff\xe8\x90\x8c\x0e\x29\x48\x16\x22\xa5\xfb\x82\xef\xdb\x82\x28\xf8\xef\xd1\x2b\xed\x3c\x07\xff\x00\xc5\x92\x8c\x67\x4c\xfc\x57\x68\x95\xbe\x4e\xa9\x74\xb7\x4e\xa9\x5d\xa5\xf4\x72\x27\xd3\xf7\xaa\xc6\xf4\xbd\xbc\x93\xe9\x3b\xfa\xfd\x4c\xdf\x9b\x2d\xa6\xcf\x99\xda\xff\x85\xd8\xbd\xff\x0a\x95\xd2\xbf\xf2\xdd\xc4\x16\x83\xdc\xff\x25\x1a\x13\xf8\x9d\xaa\xac\x7f\xac\x86\xa5\x6a\x2a\xfa\xb2\x92\xa5\x52\xfb\x6b\xf4\x2c\x6d\xd5\xbf\x46\xd5\xb2\xf7\xaf\xac\x6a\xf1\xbd\xb5\xeb\x55\xaa\x53\xfe\x1f\xd5\xca\x3f\x43\xb5\xf2\x3f\x4a\x93\x1d\x4a\x93\xbd\x9d\xf4\xf3\x75\x8d\x7e\xee\xdd\x49\x3f\xdf\xfc\x7e\xfa\xf9\xb4\x49\x3f\xdf\xf1\x4b\x2e\xae\xff\x7b\xee\xe0\xbb\xd8\x5d\x3b\x30\x48\x13\x7b\xf8\x14\x0d\x05\x02\x29\x22\x13\x53\x0f\x4a\xb4\xb6\x0d\x05\x5f\x5a\x94\xed\xaf\x62\x19\x2f\xd3\xc0\x8d\xa9\x86\x00\xcd\xd5\x17\xc3\xd6\xdb\x4c\x4f\xc8\xaf\x50\xda\xd1\xaf\x3a\x5c\xa8\x0e\x5b\xae\xec\x60\xe8\x2c\xea\xfc\x87\xe9\x24\x0f\x0a\xa6\xe8\xd9\xce\x4d\x7d\x57\xdb\xd4\x67\x77\x6e\xea\xd3\xdf\xb3\xa9\x05\x1d\xff\xcc\xaa\x81\x75\xea\x31\xe5\x47\x6c\x8e\x5a\xaf\x3a\xd8\xe0\xc4\xa9\xf7\xb2\xbf\xab\x8e\xee\x86\x9a\x1c\xd2\xf2\x2e\x21\xf7\x4b\x37\x2a\xf4\x18\xfb\x65\x60\x49\x4d\x56\xc1\xaa\x36\x5c\xc4\x46\x0e\xb2\x12\xb1\xb4\x98\xde\x63\xa6\xc5\xcd\x32\x59\xc1\x70\x44\x1f\x6c\x5f\x79\xee\xf5\xfc\x02\x58\x1f\x80\xea\x55\xe7\x71\xf5\x21\xda\xe4\x23\xfa\x1f\xf7\xc7\x9f\x99\x5b\x18\xc4\x31\x74\x07\x3b\xf2\x28\x5c\xb8\xdb\x08\x13\x6a\xc2\xc0\x44\x5f\x98\x64\x3a\xde\x95\x0d\x44\xc1\x97\x9a\x22\x8e\x71\x54\x1d\xd5\x8e\x21\xed\xc8\xf8\x0a\xf4\x4b\x5f\x40\x1c\xa8\xcd\x7f\xe4\xf9\x4c\xe7\xb8\xf8\x5b\x13\x31\xa4\x8f\x0d\x26\xf8\x6a\xc4\x50\x61\x6c\x4f\x38\x9a\x04\xe7\x54\xf9\x9e\x0c\x1e\x08\xa6\xb8\xe0\x59\x1f\x33\xf4\x98\xa1\x4d\x0e\x47\xbc\x3c\x66\x01\x4c\x82\x34\xbe\xa2\xbe\x36\x86\x4d\x6e\xf2\x42\xba\x0a\x45\xb0\x95\x36\x95\xa3\xab\xa3\xe5\x4b\x3d\xc0\xc9\x60\xda\x57\xe2\xdd\x6a\x45\xe5\x93\x38\xa5\x08\xbb\x72\x93\x9f\x49\x49\x34\xc4\x39\x9c\x53\xd5\xe0\x9a\x55\x9d\xfb\x6e\xce\x00\x6d\x1c\xae\x78\x39\xd3\xdc\xe4\x2c\xb7\x1a\x4c\x3f\xe4\xed\x8b\x94\x5f\x66\xbf\x8b\xf0\xa7\x20\x80\xed\x66\xc1\x79\x93\x05\xe7\x96\x05\xe7\xad\x2c\xb8\x24\x05\x67\x2c\x48\xc9\x13\x33\x93\x65\xde\xe6\x51\x63\x64\x2d\xf4\xfa\x33\xcf\x4c\xbf\x9c\x45\xb2\xcf\x66\x50\xce\x50\xe8\xc7\x38\x49\x34\x03\xfb\x6e\xcd\x66\x51\xb0\xa4\x01\x48\x9a\x8a\xb5\x4c\x68\x24\xfa\xfe\x67\xae\x8f\xb0\xe3\xd5\x69\xbf\xd8\x41\xe4\x21\x46\x16\x24\xa3\x9a\xb5\x6d\x77\xd4\x10\x5e\xe1\xbc\x79\xa1\x05\xc4\x06\xbc\x6c\xb0\x9d\x68\x53\x0f\x20\x13\xad\x04\x6c\xbb\xdb\x46\x4f\x18\xd4\xfc\x0e\xa2\x93\xa2\xa0\x6a\x2a\x88\x5e\x95\xc5\xd6\x05\xfb\x75\x51\xe0\xa8\x63\xf4\x8e\x39\x62\xf5\xfc\x1f\xa7\xad\xda\xc1\xcf\x0e\xf7\x87\x9d\xe2\xe1\xfe\xfe\x37\x7f\x59\x76\x2a\xef\xee\xff\x65\x51\x7d\xfc\xe6\x2f\x37\x8b\x60\x27\x8f\xec\xb9\xe1\x33\xb1\x98\x75\x34\x87\x73\xb6\x9f\x06\x3b\xb8\x15\xa7\x57\xb2\x7b\xe6\x55\x10\x6f\xe2\x25\xc5\xbb\x18\xa9\x3a\xc3\x7e\xbe\x56\x8a\xca\x28\x48\x97\xf1\x62\xe1\xd4\x63\x46\xa3\xe2\x7a\x74\x30\x90\x42\x1b\xd9\x28\x86\x6f\xb2\x9c\x18\x38\xdc\xb5\x36\x6e\xfc\x86\x47\x6f\x99\xaf\x2b\xf7\x52\x84\x90\xa6\x3b\x37\x1c\x37\xcb\xad\xe9\xd5\xa6\xa6\xfa\x2d\x28\x07\x99\xec\x91\xf1\x79\x64\xc7\xd9\x1c\x9d\xd7\x50\xed\x4b\xba\x88\x15\xd3\x42\x6a\xa9\x5d\x34\xf3\xd9\x25\xb2\x52\x08\x0a\x76\x69\xdf\xb2\xcd\x56\x7f\x54\xf2\xfe\x9a\xeb\xb4\x68\xc6\x6a\x80\xfc\x01\x2b\x15\x33\x53\xb8\xef\x58\x90\xe7\x2d\x2c\x48\x81\x6c\x5e\xfc\xdf\xcd\x23\xfc\xf8\xcf\xe1\x11\x5e\xfc\x4b\xf2\x08\x2f\xfe\x3b\x78\x84\x9f\xb7\x78\x84\x47\xab\x55\xd0\x86\x98\x1d\xf3\x10\x55\xb8\xde\xe7\x77\x72\xbd\xbf\xfd\x0e\xae\x77\xa7\xe2\x4d\x93\x16\x7d\xa8\xba\x03\xf0\x4a\xcc\x83\x1b\x45\xb9\x11\x4a\x5d\x7e\x84\x0a\x9b\xf2\x23\x43\xf6\xbf\x4d\x0e\x86\x65\x49\xab\xd4\x3e\x7d\x25\xe2\x19\x9d\x05\x10\x98\x84\xec\x57\x2f\x15\x5d\xa6\x86\x2d\x39\x69\x30\x2d\xd4\x7f\x23\x0d\x20\x70\xda\x12\xf6\xd9\x37\xb5\x2b\x91\x3e\xbe\x2d\x86\x52\xf0\x36\x45\xc3\x23\xb1\x56\xf4\xad\x96\x4d\x76\x69\x02\xf7\xa4\xae\xd2\xb7\xf2\x4b\xbf\x68\x98\x6f\x4f\x54\x23\xb5\x5d\xbd\x9c\x53\x55\xab\x57\xb7\xce\x14\xaf\x70\xd9\xad\x1b\xfd\xae\x0e\xb7\x9a\x8e\xfd\x77\xb6\xa7\xbd\xeb\x63\x1a\x0c\xf2\x92\x37\xac\xee\x4a\x93\x3d\x2c\x17\xd7\xac\xe1\x5b\xbd\x69\x8f\x9e\x3e\x3d\x7d\xf3\xe8\xfd\xe9\xcb\x93\x83\xd7\xc5\xca\x4a\x9a\x6a\x24\xde\x84\x81\xa6\xde\xae\xdc\xb9\x2d\x63\x5a\xcb\xde\x38\x07\xf8\x4a\xa3\xc2\x9b\x7b\x57\x13\x3c\x6e\x9f\x34\xd9\xd5\x20\xfa\xaa\xfa\xa9\x31\xa0\x81\x99\xe5\x6b\xca\xd7\x06\x36\x77\x68\x7f\x9b\x63\xde\x99\x2a\x8e\xbb\xc3\xad\xb6\xc1\x84\x62\x60\x89\xe0\xaf\x63\x45\x25\x8b\x17\x8d\x2a\x2f\x13\xd3\x09\x18\x10\xf5\xe6\xa3\xb4\xd8\xb6\x55\xac\x2e\xa2\xe0\x9e\x2f\xb8\x17\x94\x69\xd8\x72\x58\x52\xbe\x8e\x82\x75\x4a\x65\x90\x8f\x54\xbf\xba\x99\xa8\x3c\x1f\xd5\xee\xb8\x3d\x8a\x11\x37\x17\x3b\x0c\x1b\xbf\x03\xf6\x55\x91\xbd\xc2\x44\xa4\x0c\x02\x77\x57\x5b\x24\x2c\xdd\x77\x9c\x6d\x79\x33\xdb\x1e\xb3\xc2\x7e\xf6\xc8\xbe\x0f\x2c\x9f\x6a\xdb\x5c\xd0\xc5\x42\xec\x6a\xf0\xc2\xbc\xc4\x23\xa7\x3c\x8d\xca\x20\x4d\x36\x1f\x8d\xed\x22\x80\x4a\x7e\xa0\x22\xdf\xda\x00\x37\xa4\x15\xea\x52\x73\x0e\x71\x5e\x9f\xa1\x5e\xeb\xbf\x71\x86\x81\x2b\x38\x4d\x98\x4c\x16\x34\xd8\x35\xb1\x40\xc5\xe7\xa7\xf3\x38\xa1\x69\x50\x4c\xc6\xf7\xb0\x5a\x2d\x58\x12\x3b\xbb\x90\xe6\xc9\x0d\xc3\x3b\xdb\x3a\x58\xe5\x41\x45\x38\x07\x93\x68\x36\xda\x04\x7b\x8b\x98\x9f\xaf\xe3\x73\xda\x4f\xd6\xd2\x04\xd3\x8d\x36\x2e\xe7\xfc\x56\x0f\x75\xd8\x36\x7e\x00\x15\xd4\xfa\xf5\xed\xa0\x2c\xdd\xc2\x07\x7a\x6c\x6c\xb9\xa4\x33\x16\x2b\x73\x15\x12\xbe\x80\x91\xef\xee\xcb\x89\x08\x3f\xfd\xb3\x44\x04\x91\xec\xaf\x76\x33\xfb\xeb\xcb\xfd\xf9\x82\xde\x74\xdc\xdf\xfd\x44\x2c\xd6\x4b\x5e\x65\x44\x8b\x43\xb4\x1f\xaf\x56\x8e\x45\xaf\xac\xe9\x78\x62\xaf\xd7\x6c\x21\xc5\xb1\xe5\xf7\xe3\x05\x95\x15\x9d\x7a\x8b\x86\x14\x02\x2e\xf6\x8d\x01\x37\x28\x75\xf7\xab\x2f\x0d\x74\xc9\x66\xb3\x05\x2d\x15\xf8\xce\x18\xbd\xa5\x9e\x95\x15\xf5\xac\xc5\x31\x8c\xcf\x45\x90\xe7\x0d\xd1\x64\x5b\x11\xfb\x46\x74\xfc\xd4\x3b\xf1\x55\xcc\x16\x36\x92\xa0\xd3\xcc\xe2\xa8\x62\xc9\xaf\xa1\x92\xf1\x57\x2e\xb5\x73\x0a\x68\x9f\xd1\xc5\xb0\x6d\x1f\xe3\x73\xba\xaf\x98\xb2\xb5\xea\x36\x7e\xff\xbf\x2d\xaf\x81\xda\xd8\x0a\x83\x7e\x51\x5d\xcf\xa7\xb1\x14\x17\x32\xc0\x53\xa7\x76\xae\xa9\xe1\xdb\x38\x9d\x71\x61\x02\xaf\x91\x7e\x68\xf3\xf8\xe0\xa8\x04\xa6\x33\xa7\x27\x32\xc2\x5b\x60\x9f\xf6\xf5\xe0\x9b\x62\x9c\xde\x44\x55\x6c\xa1\x97\x88\x72\x83\xc7\xa3\x9d\x20\xbf\x54\x25\x68\x68\x06\x8f\xca\x8a\x66\x57\xc3\xa0\x93\xf9\xa2\xaa\xf7\xc3\x2b\xcb\x09\x76\xb4\x6c\x25\x78\xbc\x28\xf6\x3f\xc0\x5b\xf0\xb2\x0d\xda\xb6\xdb\x0b\x36\x9b\x51\x1e\xd8\x98\x35\x92\x7d\x25\xa8\xcf\x98\xa4\x89\x16\x01\xd3\x68\xe2\xc0\xb4\x02\x90\x32\xbe\x36\x34\x2a\xb8\xda\x2f\x4b\xf3\x69\x01\x03\x3b\xc7\xdd\xef\xf7\xed\x06\x1b\x90\x9d\x46\xb5\xf5\xb0\x02\x20\xce\x47\x3f\xed\xd4\x40\xff\x52\xd3\x40\xff\x74\x27\x2f\xfe\xf3\xef\xd1\x40\x6b\xfc\xf6\x03\x33\x71\x83\x3e\xb0\xb6\x3c\x70\xbf\x32\xf2\x81\x95\x39\xdf\x54\x4c\xee\xfd\xf5\x63\xfa\xc7\x42\x6c\x43\x93\xbf\x76\xd0\xf4\x8f\xf8\xde\x28\x0e\xc3\x2e\x0a\xf4\x9a\x05\x8c\x77\x3e\x30\x1c\x86\x3f\x30\xf4\x81\x81\x2d\xdb\x0e\x25\x74\x4e\x6b\x71\xd4\x2a\x01\xf3\x7e\x65\x95\x60\x1f\xfd\xa5\xbd\xb3\x1d\xe3\xc9\x70\xda\xcc\x24\x1a\x18\x42\x66\x63\x7b\xc6\x24\xed\xcf\x81\xc7\x5f\x4a\x08\x50\x04\x0d\x07\x49\x6e\x35\xe7\x23\x08\xa7\x48\x62\x60\x44\xf8\x7b\xf3\x6b\x32\x80\x84\x4c\xa6\x23\xf6\x70\x3d\xc2\x9c\x88\xc9\xba\xd7\x9b\x82\x9e\x23\x8d\xed\xe0\x24\x70\x9c\x65\x89\xf5\xec\x53\xe3\x09\x07\x39\xe1\xd3\x69\xa4\xff\xad\x04\xf9\xc8\x41\xc6\x64\xe3\x63\x8c\xf0\x18\x75\x07\x18\xbc\x1f\x5f\x8c\xba\x43\x9c\xfb\xeb\xf5\xd5\x58\x0d\x2e\x0c\xa0\x8f\xfb\x96\x43\x11\xcc\x64\x7b\x72\x32\x46\x65\x50\x08\x11\x37\xa3\x8d\xd5\x05\x77\x96\x3a\x44\x74\xb6\xa0\x65\x70\x05\x7a\x45\x79\xc9\xa6\xa4\x68\x63\xd3\xec\x03\x8b\xeb\xe9\x12\xbc\x6a\x54\x03\x0c\x27\x8f\x51\xb0\xa4\x2a\x0e\x30\x48\x32\x80\x22\xc6\x58\xf5\x13\x59\xb6\x35\x12\x3d\x1b\x56\xdb\x24\x6a\x02\xb5\x3b\x8b\xe5\xc6\xc6\x83\x78\xf9\x34\x0a\x0e\x83\x5e\xa7\xd7\x93\x70\x4d\xe3\xcb\xa7\x5a\x68\xdc\xe8\xdd\xce\x21\x26\x65\xbe\x83\xcd\xd1\xc1\x4f\xef\x5e\x1e\x1d\x3c\x8d\xba\x43\x98\xc7\xa9\xfa\x91\xde\x46\xdb\x31\xff\x2a\xb1\x60\x7d\x52\xa4\x4a\xea\x7e\x15\xa1\xed\x74\xe7\xe3\xe0\x38\x88\x82\xb7\x01\xee\x99\x04\xda\xdd\x53\x13\x22\xdf\x76\x27\x2a\xdd\x3d\x0b\xcc\x6b\x1f\xbb\x33\x38\x08\x46\x4c\x6f\x48\x11\x5f\x91\x4f\xfb\x7e\x4e\x86\x1d\xfc\xd9\x4f\x67\x7b\x98\x3b\xbe\xd1\x1d\xd4\x3e\xd1\x1d\x6e\x7f\xc1\xaf\x51\x0e\x82\x3f\x93\x94\x7e\x6e\xd5\x8c\x8b\x38\x0c\xe3\xbe\x5f\xb2\x30\x14\x26\x4a\x95\xfb\x6c\x18\x32\x93\x86\x3e\xcf\x47\x2f\x26\x7c\xea\x92\x59\xc7\x31\x41\xac\x6c\x03\x2c\xee\xbb\x65\xd6\x3f\x2b\xd3\xd1\x8f\xfe\xdb\x50\x9f\x9a\x15\x8b\x94\x30\x58\x4d\x15\x4c\xdd\x7a\xa1\x08\xcd\x31\xac\xe3\xf6\xcc\x7e\xd5\xd8\xfb\xb0\x20\x3c\x0c\x79\x5f\x5d\xc4\x0a\xe6\xa4\x8b\xba\x3c\xcb\xba\xbc\xff\xe8\xf8\xf4\xe0\xcd\xc9\xd1\xcb\x83\x63\x0c\xab\xb2\xf8\xe5\x71\x11\xdf\x0a\xc3\xac\x52\xfe\xe6\xe4\xe0\xe8\xe8\xdd\xdb\x93\x83\xa7\x18\x2e\xc8\x89\x42\x14\x16\x30\xec\xcd\x7b\x33\x0c\x57\x6d\xa8\x43\x86\xe1\xb5\xd0\xe8\x81\xd3\xeb\x4e\xac\xcf\x2f\x28\x9c\x57\x63\x14\x55\xd0\xcc\x18\x5d\xea\x25\x9c\x8d\x2f\x90\x9a\x0c\xa6\xa0\x26\xc3\x29\x5c\xe1\xa8\xf2\x88\x71\x64\x5e\xbb\x62\x9c\xeb\xad\x5d\x61\x49\xd4\xc8\xc7\xd2\xdd\x8e\xad\x84\x04\x39\x32\xf0\xb0\x1d\x48\xec\xc4\x60\x8c\x0e\x4b\xad\x8d\x53\x59\xbd\x5b\x60\x74\x82\xc7\x02\x09\x6c\x31\x1e\x23\x03\x88\x49\xa2\xca\x6c\x2a\xa3\xf8\x21\x1b\x31\x1b\x64\x18\xad\xc9\x2d\x52\x13\x36\xc5\x38\x0c\xd7\xd5\x40\x68\x71\xec\x03\x67\xad\xab\x79\x94\x63\x8b\xba\x24\x11\x45\x62\x52\xfd\x95\x84\x48\x63\x4c\x18\x75\x51\x4a\x12\x87\x28\x7d\x74\x45\x8b\xe3\xf5\x97\xbc\xe3\x4b\x89\xce\x8b\xe0\xb4\x52\x03\xa0\x5e\x83\x66\xae\xa8\x75\x18\xae\x77\x8f\x2d\xdf\x1e\x1b\x24\xdb\x60\xa5\x4f\x11\xaa\xc5\x17\xa4\x2d\x4b\xfa\x92\x27\x42\x4a\x1b\x94\x06\xf1\x31\xef\x05\x1d\xcd\x27\xe0\x5e\xc0\xf8\x95\x70\x12\x54\x99\x77\x33\x87\x74\xfb\x4b\x45\x02\x42\x9b\x9a\x42\x29\x13\xd4\xcc\x44\x2f\xe2\xd5\xa6\x8b\xd8\x44\x5d\x49\x57\x34\x31\x11\x87\x60\x1e\xb7\x44\x0b\x96\x26\xf6\x22\xd7\x78\x57\x13\x5a\x93\xab\x66\xb2\x88\xa7\x61\xc8\x35\x00\xc7\x5f\xa4\xae\xd5\x10\x6e\x1a\x85\xae\x62\x83\xc3\x67\x31\xa9\x9c\xe7\x8b\xd8\x85\xcb\xb9\x8a\xab\xe1\x72\x46\x3b\xe2\xba\xed\x0f\xbb\xc4\xc7\x81\x3a\x9c\xa3\xe0\xb5\x09\x3f\x14\x6f\x95\x6b\x04\x11\x60\x58\x13\x39\xd6\x7c\x67\x10\x05\xf1\x6c\x16\x40\x42\xc4\x44\x4d\x21\x25\x49\x18\x26\x15\x96\x63\x41\x12\x98\x93\x4d\x0e\xab\x96\x85\x48\x27\x6a\x3a\x52\x0a\xa5\xa0\xc0\x74\x43\x88\x1a\xb7\x9c\xc4\x6a\x92\x05\x1b\x3b\x69\x10\x39\x97\xa8\x3c\x0a\x6c\x62\xe8\x1d\x6d\xbb\x48\x93\xf9\x73\x9b\x27\xaf\xbd\x9f\x3c\x0a\xce\x4d\x62\x98\xd6\x6f\xfb\xe6\x3e\x29\xdc\xce\x3e\x2e\xe2\xf4\xef\x19\x43\x65\x57\xf8\xdd\x13\x07\xee\xa6\x6e\xb1\xcd\x23\x0d\x8c\x2d\x01\xdc\x92\x2c\xeb\xa2\x38\xcb\x0a\x35\x53\x18\x36\x78\x09\x13\x37\x2e\xc1\x3e\xb8\x1c\xb2\x31\x55\x91\xb1\xf3\x61\xbc\x20\x5c\x43\x4d\x25\xc3\x30\xa2\xa0\xc1\x7e\xad\x39\x89\x82\x84\x68\xbe\xd6\x04\x4c\xf3\x43\xe9\x0e\x9c\x3b\xfb\xcc\xc4\x66\x5d\xc0\x05\x99\x4d\xd6\x53\x14\x8f\x37\x79\xb4\x3f\x80\x21\xee\x92\x19\x5c\x91\xfa\x58\x66\xfd\x8b\x38\x45\xd6\xb7\xf5\x96\x34\x83\xea\xda\xf8\xb1\x26\x9e\x2e\x2c\x49\x37\xd6\xc4\xad\x16\x83\xd5\x9d\x4f\x65\xc3\xc1\x02\x25\xdf\x8e\xe8\xfe\xfe\x08\x2b\xfd\x65\x5a\xa6\xe8\xed\x2a\xf3\x9d\x7d\x93\xbd\x7d\x74\x9b\x65\x08\x2d\x6a\x4c\x91\x39\x11\x49\x6c\x08\x89\xcb\xb7\xb3\x1d\x6d\xd3\xd1\xb3\x42\x77\xc4\xda\xc2\x3a\x23\x49\x6a\xb1\x5f\x71\x18\xca\xae\xc9\x2f\x75\x8e\x04\xa9\x84\x48\xc5\x61\x28\xfe\x7f\xf2\xde\x74\xb9\x6d\x9c\x6b\x18\xfc\x3f\x57\x21\xf1\x4b\x73\x80\x16\x2c\x4b\x4e\x77\x9e\x0e\x15\x34\x2b\x76\xd6\xce\xda\x71\x96\xee\x96\xf5\xb8\x60\x0a\xb2\x98\xd0\xa4\x42\x82\x76\x1c\x91\x57\x34\x97\x30\xff\xbe\x2b\x9b\xc2\xc1\x42\x90\xa2\x93\x3c\x6f\xbd\x6f\xd5\x54\x7d\x7f\x24\x12\xc4\xbe\x1c\x9c\xfd\xc8\x0f\xae\xcb\x3e\x1e\x23\x41\x32\x09\x3d\x91\x1e\x11\x49\x70\x3b\xfa\x77\xea\xfb\x25\x43\x29\xc9\xe6\xe5\x82\x6c\xe5\x4d\x1a\x64\xa4\xb9\x40\x83\xbc\xc6\x24\x93\x4b\xe9\xba\x68\x24\x45\xcb\x1d\x6d\x82\x09\xba\xac\xaa\x0b\xec\xfb\x68\x83\xcc\x49\xc2\x64\x83\x60\x3b\x43\x8c\x99\x0d\x82\xe3\x81\x31\x41\x17\x55\xb5\xc6\x32\xa5\xc4\x12\x7b\x2e\xc6\x51\xc2\x59\xee\xfb\x3a\x34\xbb\x7e\xaf\x57\x73\xb1\xa0\x09\x91\x18\xf0\x79\x92\x9d\xb1\xc4\xf1\x4f\x96\x0c\x69\x54\x93\x15\x38\x13\x94\x33\x4c\x58\x55\xa5\x12\x4c\x1d\x8b\x3c\x4b\xcf\x65\x1a\xc9\x71\x0d\xbc\x66\xaf\x97\xde\xed\x81\x83\xea\x80\x74\x05\x4c\xa1\x1b\x97\xd4\x71\x66\x06\x8a\x0c\xce\xb6\x0e\xda\xcb\xdb\x84\x0b\x16\xad\x20\x46\x31\xec\x0b\x41\x32\xc2\x31\x59\xcb\x27\xa5\x7f\xc1\xb5\x73\xb0\x82\x83\x87\x59\x4c\x56\x71\x5e\x08\xe3\xd9\x2b\x61\xcd\x73\x11\x7f\xe5\xc1\xa4\x86\x31\x4b\xe2\x3e\xfe\xca\xe9\x44\xf9\x4e\x1e\xd2\x18\x96\x33\x26\x42\x5e\x2a\x6a\x39\x85\xbb\x9c\x8a\xc7\x4a\x62\x7a\xc9\x24\x99\x53\xde\x88\x64\x95\x14\x10\xbf\x82\x46\xad\xd8\xd4\x45\x68\x74\x4d\xd3\x00\x95\x63\xd9\x2f\x5a\xd0\xad\xea\x7b\x46\x97\x72\xcb\x4b\x6a\x06\xc4\xbe\x36\x24\xb4\x24\x26\xe2\xac\x2c\x82\x9c\xaa\x32\x04\xdc\x7b\xea\x01\xe5\xfc\x22\xbb\x54\x0a\x64\xa4\x1c\xc3\xb8\xab\x0a\xe9\x27\x5a\xa8\x10\x45\x0a\x87\x90\x6f\x2c\x2c\x61\xd0\xa3\x51\x20\xf4\x03\xf1\x1e\x79\x43\x70\x21\x89\x4a\x75\xc7\xcc\xb3\x05\x2d\xb0\xdc\xf9\x24\xea\x8b\x54\x46\x72\x35\x3e\xd5\x65\x40\x8c\x74\x1d\x06\x7d\xc8\x6d\x45\x3a\xf0\x41\xae\x3a\x34\x4b\x67\xa9\x51\xd3\x88\x57\x28\x1d\x7f\xe2\xd7\x8e\x97\xfe\xd4\xda\xfd\x17\x0c\x65\xce\x15\xb6\x85\x5d\x1d\xf4\x82\x1b\xd7\xad\x22\xb4\x0a\x6c\x44\xd3\x1c\x4e\xc7\x7a\x8a\xe8\x70\x42\x94\xa2\x88\x9c\x4d\xdf\x47\xcd\x0b\x6d\x1e\xd5\x4c\x19\xef\xaf\xfa\x54\xf1\x79\xaa\xaa\x5e\x10\xd3\xfd\x99\x6e\x82\x0a\xb5\x8e\x26\xa2\x69\x68\x36\x95\x16\x5d\xc0\x73\xad\x2b\xea\xd1\x89\x69\x9c\xd6\x45\xc6\xeb\x29\xc4\xfa\x35\x38\x81\x6a\x0d\x02\xb2\x9a\x2e\xce\x4c\xaf\xf4\x24\x37\x7d\x73\x87\x2a\xd7\x33\x53\xa3\xc9\xcd\x2e\xb0\xe3\xcd\x30\xe1\xba\xff\x12\x88\x21\xf3\x02\x3e\xef\x60\x3c\x3a\x19\x9e\x33\xb9\x6f\x38\x8c\x65\x6f\xaf\x19\xd7\xde\x9e\x46\x12\x87\xc3\xb4\x26\xfa\x86\x6b\x0d\xd1\x4a\x9f\x49\x6a\x07\x9a\x4b\x1a\xe1\x47\x1d\x1f\x92\xdb\x78\xc6\x29\x0f\x95\xf6\x7b\x90\xea\x65\x05\x77\x75\xb9\x71\x1a\xa4\x95\x79\xa1\xfa\x19\x44\xb0\xd2\xd3\x30\xc3\x9c\x72\x3b\xe8\x9a\xac\x59\x1f\xb9\x3f\x1c\x46\x8d\xbf\x59\x4c\x3a\x3b\x2f\x0d\xb7\x2d\xcc\xcf\x2e\x5c\xb3\x5c\xe6\x0a\x92\x2d\x6b\xf5\xfe\xa2\x55\xc4\x09\x5d\x57\x76\x11\x09\x8e\xeb\x3a\xd8\xb2\x65\x9f\xe5\xa8\xc9\x2d\x68\x93\x5f\x75\x92\xf9\xfe\xa6\xdd\x4f\x4f\xae\x88\x47\xb6\xfd\x68\xaa\x9e\x7c\x58\xb6\x1a\x2e\x25\x62\xe1\x7d\xd0\x8f\x8c\xb6\x1d\xea\x66\x1a\xe6\x01\xec\xcb\xc1\xbb\xa3\xcc\xdd\x71\x99\x2a\x41\x72\xe3\xd3\x31\x37\x3e\x52\x05\x70\x5d\x78\x00\x91\x32\x94\x8f\x54\x17\x28\xef\x78\x74\xec\x3f\xdb\xe0\x27\x35\xd5\xe7\x6d\x06\xb4\xab\x5d\xe7\xd4\x3d\x1e\xd6\x0c\x4f\x35\xef\xfb\x48\x9f\xd1\x94\xa6\xa1\x3a\x4f\x81\x8a\xf7\xa6\xb7\x3d\x0e\x8d\xcf\x54\x6e\x9c\x42\x02\x64\xea\xf3\x9b\xea\xe4\xd0\xae\xec\xbb\xae\x53\x55\x51\xfd\xd9\x71\xad\xfa\xa3\x0e\x5c\x6b\x4c\xd2\xb0\xf1\x94\x6c\x9a\x26\xc3\x14\x2e\x87\x15\x83\xc0\x9b\xda\x1f\x28\xeb\xc0\x67\xed\x61\x9d\x57\x15\xff\xdd\x09\xf3\x89\x38\x6d\xc8\xd4\x26\x16\xf1\x84\xe4\x80\xad\xe9\x18\xec\x78\x96\xde\xe3\xb3\x74\x34\x52\xf1\x88\xc5\x3c\x5d\x74\xe2\x11\x9f\xb3\xae\x97\xe8\x56\xec\x5d\x27\x56\xe2\x35\xf0\xd0\x54\x70\x99\x9d\x42\x4e\x9c\x3a\x8b\x2b\x2b\xad\x19\xdf\x57\xff\x63\xe3\x47\xb3\x13\x5b\x71\xd7\xbb\xa2\x6e\xe4\xac\x3b\x13\xf1\xca\x34\xb6\xc3\x88\x72\xfb\x28\xaf\xe7\x96\x06\x50\x13\x34\xc0\x30\x69\x0d\x41\xae\x85\x90\xbf\x91\xbd\xa9\x39\xf4\x4d\x74\x11\x08\x6d\xda\xf6\xd4\x8f\xe4\x66\x75\x3d\xf2\xa7\xec\x82\x63\x02\x64\x1d\x55\xe1\xc4\x8f\xb9\x2a\x1b\xb6\x46\x14\xb4\xe2\xb0\xc8\x8c\x10\xe4\xfc\x5d\x5c\x3d\xc5\xa9\x40\x61\xf0\x5b\x35\xbd\x53\xdd\x3e\xc0\x28\x0c\x74\x24\x5e\xac\x6a\xb8\xb5\xaf\x42\x92\xa7\x38\xd4\x83\xb3\x8a\x1e\xca\x49\x29\x6b\x05\x53\x05\x3a\x5d\x6e\x80\x16\xad\x7e\xc9\x92\x78\x39\x60\x42\xf0\x8b\x8d\x18\x88\x6c\x50\x40\xbc\xa9\x41\x9a\xa5\x7b\x86\x1d\x62\x29\xfe\xf1\x49\xfa\x34\x1d\x64\xf9\x92\xe7\x32\xeb\x19\xb7\x1c\x13\x02\x05\x18\xb8\x4d\x56\xbc\x87\x62\x70\x51\x16\x62\xb0\x66\x97\x7c\xc0\x06\xf3\xce\x4a\x2f\x10\x1e\x28\xad\x87\xb1\x89\x31\x7f\xd5\xcb\x7b\x3e\x97\x5b\xab\xaa\x2e\xd4\xdf\x99\xfa\x3b\x65\x08\xd7\xe4\x15\xeb\xd0\x34\x29\x57\x04\xcd\xb7\x78\xc1\x06\x2f\x7e\xc5\x6a\x90\xda\xf4\xf2\x84\x53\x8e\x20\x5e\x83\x3d\x7a\x1f\x19\xf9\xc2\xc8\x43\x46\x8e\x19\xcd\xc6\xaf\xf3\xec\x22\x2e\x38\xf9\xd4\xe5\x3e\xdc\x67\x74\x1f\xc5\x9b\x75\x96\xf2\x2a\xde\x64\xcb\x2a\xde\xb0\x25\x1e\xff\xcc\x36\x9b\x84\x5f\xf1\xb3\x4f\xb1\xd8\x8f\xd5\xa2\xc9\xcd\x71\xc4\xa8\xa7\x03\xdf\x42\x08\x9e\xcc\x84\xc1\xc5\xe4\xbd\x6c\x27\xd1\xdc\x12\xf2\x5a\xbe\x15\x5c\x3c\x35\x02\x5b\xf2\x56\xa6\x00\x9e\xd4\xa4\xbd\x91\x69\x26\x90\xee\x53\xf9\xf2\x82\x17\x05\x3b\xe7\x47\x6b\x96\xa6\x3c\x21\xcf\x65\xda\x83\xb8\xd8\x30\x11\xad\xc9\x4b\x46\x27\xe4\x16\xa3\xdb\x9a\xbc\xd8\x39\xb4\xb7\x58\x27\xca\xa8\x9c\x0d\x7d\x19\xde\x62\x73\xb1\x30\x78\x09\xbc\x10\x0e\x42\xea\x07\xdf\x96\x1e\xe0\xed\x0b\xc5\x6b\x27\x8f\xda\x19\x65\xf2\x78\xc9\x04\xc3\x35\x79\xd7\xfe\x94\x8d\x37\x59\x21\xf4\x38\x90\x18\x79\x1e\x79\xcf\xd4\xb1\x8d\xb2\x64\xe4\xed\xef\x7b\xa3\xf7\x6c\xbc\xce\x0a\x09\x1b\x5e\x33\xdf\x7f\x2b\x91\xfd\xd7\xed\x5a\x1a\xc5\xb8\xb9\x44\xea\xa6\xb3\x1d\x84\x24\x9d\x61\x1d\xaa\xb5\x41\x4c\xd2\xd1\xa8\x91\x45\xdc\x62\xf3\xd1\xe8\x25\x6b\xc5\xb4\xe9\x8b\x12\x2f\x42\x11\x3c\x6a\x9a\xc6\x5a\x6f\x4f\xc3\x7d\x8e\x6b\xf2\x91\xa1\x97\x0c\x93\x97\xac\x96\xab\xe8\x76\xd3\x9d\xd2\x9a\x1c\xb1\xf0\x63\xfb\xfb\x1b\x06\xf7\xd9\xdb\x38\xfa\x84\x1e\x30\xd8\x9f\xc1\x73\xe6\xfb\xcf\xd9\x38\xcd\xae\xba\xb9\x55\xaa\xcd\xf8\x94\xf9\xfe\xf0\x3e\x0b\xd1\x43\x46\xd1\x17\x06\x57\xc1\x53\x86\xc7\x9b\x2c\x17\x07\xe4\x0b\x83\x87\xe9\x38\x4b\x2f\xd4\x64\xd3\x47\x8c\x7c\x64\x12\x7f\x7b\xc8\xdc\x45\x90\xa7\x60\x8a\x71\x90\x8d\xd9\x72\xf9\xf0\x92\xa7\xe2\x79\x5c\x08\x9e\xf2\xbc\x37\xd6\x92\x53\xd2\xf7\x87\xd9\x38\xbe\x90\xed\x1c\x83\xba\x5d\xe1\xfb\xef\x99\x2c\x15\x27\x3c\x90\x24\x85\xb3\xb4\xc0\x3c\x79\xc7\x70\x88\x3e\x32\xfa\x8e\x91\xdd\xe6\x90\xa7\x7b\xea\x91\x47\x0c\xdc\xd4\x04\x1f\x19\xf5\xb2\x54\xc2\xaf\x6b\xb8\xf1\x55\x98\x40\x2f\x4e\x07\x1f\x91\xa7\x54\xfc\x3c\xdc\x62\x18\x65\x5c\x2e\x10\x4f\x97\x47\xeb\x38\x59\x22\x27\x1b\x1e\xef\xd6\xe4\x2e\x7e\x66\x30\x4f\x55\x52\xa1\x2e\x7a\x83\xb7\xb5\x54\xb8\x78\x1b\x5f\xf0\xac\x14\x6a\x2d\xc8\x04\x6b\xa8\xf2\x95\x91\x43\x46\x3e\x33\xf2\x98\x91\x27\x8c\x3c\x63\xe4\x03\x23\x7f\x32\xf2\x17\xa3\xb2\x54\xf0\x9a\x11\x45\x0a\xbd\x65\x35\xf9\x83\xd1\xfd\x2b\x7e\x36\x29\x50\x38\x1c\xff\x1c\xad\xf3\xec\x82\x63\x17\x9a\xfc\xcd\xe8\xf1\x78\x45\xfe\x61\xf4\x2f\x06\x7c\x48\x51\x4a\x10\x50\x0a\x80\x21\xaf\xce\x0a\x9e\x5f\xf2\xbc\xaa\xb2\xf1\x07\x7e\xf6\x2c\x16\xdd\x2f\x84\xcb\xfc\xcb\x2c\x2a\x95\x7a\x46\xe9\x40\x93\xbc\x74\xc0\x5e\x56\xd2\xbf\x19\xca\x88\xf7\xb9\xe4\x25\x7f\x11\x47\x79\x26\x58\xf1\xc9\xc3\x24\x2e\x69\x56\xfa\x7e\x56\x6a\x03\xd3\xb8\xac\x2a\xf4\x95\xed\xe8\x84\x10\x0e\x78\xc9\x11\x93\xe8\x1a\x4d\xcb\xf1\x32\xbb\x60\x71\x0a\x26\x7c\xfc\x4b\x2c\x10\x9e\x1d\xb2\x19\xde\x72\x7a\xc8\xc6\xab\x94\x1c\x32\xf9\xa0\x28\xb1\xfc\x7a\x2b\xa1\x4d\x87\xf7\x7d\xc8\xc2\xc7\x0c\xe1\xe0\x33\x33\x08\x97\xa8\x6b\xe7\x05\x6a\x4e\x05\xcf\xe5\xc5\x71\x9f\x55\xd5\x11\xab\xaa\x3f\x58\x55\x0d\x45\x59\x55\x43\x5e\x86\x79\xe9\xfb\x79\x09\x9a\xfd\xc9\x25\x0f\xd1\x07\x46\x9b\x57\x64\x68\xc4\x3f\x19\xfd\xc0\xc6\x62\xcd\x53\xf2\xb8\x35\xae\x3f\xb5\x60\xf3\x03\x23\x5f\x19\xae\x71\xf0\x98\xd1\x23\xe6\x06\x62\x49\xcb\xe6\xf4\xca\x2c\x2e\xe6\xfe\x8f\x2e\x9d\x41\xe1\x00\x3d\x61\x92\xaa\x7b\xc6\x28\x2f\xc7\x4a\x6b\xe6\x2d\xff\x22\x5e\x66\x4b\x8e\x3c\x4f\x09\x53\x44\x29\x6b\x19\x67\x6a\xf5\xd0\x33\x46\xb6\xd1\x9a\xe5\x2c\x12\x3c\x07\xf9\x98\x44\x2f\x3b\x9d\x7c\xc6\x00\xcc\x52\x59\xfd\x13\x66\x9c\x99\xb3\x92\x94\x25\x89\x4a\x52\x94\x24\x29\xa9\x5c\xb4\x5d\x0a\x68\xbb\x4a\x83\x16\x33\xa2\x9e\x7d\x96\xcb\xf7\x59\xad\x0b\xe5\x98\x1c\x4a\xc8\x7b\xc8\x28\x27\x72\x29\x30\xf9\xcc\x28\xaf\xc9\xaa\xdc\x65\x44\x93\x54\x7b\xdd\x55\x3b\x0a\x60\x51\x9b\xf9\x93\xc3\x2d\xd4\x84\xf6\xab\x2a\xfb\x9c\xee\x8a\x1c\x0e\xd9\x72\xa0\x77\xe7\xc0\x0d\xc1\x2d\xe9\x49\x41\x52\x9a\xd7\xb8\x51\x86\x92\xeb\x49\x5f\x83\x5a\xbb\x4e\x92\x08\x82\x4c\x49\x71\x4d\x36\x25\xdd\xf6\x86\x70\x92\x7d\x5c\x95\xea\xfe\x5a\x96\xbb\xf8\x27\x88\xae\xce\x11\x57\x2c\x67\x87\xe7\x47\x9b\x68\x71\x5c\x63\x9f\x9b\x72\x2c\x11\x56\x7d\xb7\xa0\x09\x10\xf3\xd0\x31\x2c\xbb\x95\x9a\x89\xa9\xc9\xba\x3d\x7b\x8d\x98\x7f\xcb\xe5\xd0\x83\xe1\x54\xb3\x8e\x84\xbc\x81\x3b\xf2\x7d\x93\xc7\x04\x1e\x12\x75\x5d\x93\xcb\xd2\xc0\x87\xeb\xb2\x83\xbe\x9c\x97\xd4\xd3\xd3\xe8\x91\x8b\x52\x49\x31\xc8\x59\xa9\xe5\x1a\xa7\x65\x2b\x0c\xc0\x79\x89\xc9\x55\x49\x8f\x19\x79\x25\xa1\x83\x5d\x0e\xf2\xb1\x05\x47\xbe\xb8\x70\xe4\x61\x49\x73\x81\xbc\x15\x17\xd1\xda\xc3\xe4\xb8\x84\xa9\x20\x9f\x4a\x7a\x5c\x92\xfb\x25\x1d\x0e\xd1\xc7\xd2\xf7\x3f\x9a\x5d\x0f\x00\xdf\xf7\x33\xb0\x5a\x90\x83\x83\x04\x4c\x8e\xca\xbe\xa0\x6c\xba\xef\x6f\x60\x41\xe3\x2c\x85\xcc\xe4\x7d\x49\xef\x0b\x74\x5e\xb6\xa8\x4e\x10\x65\xdd\x42\x57\x10\x9e\x45\x87\x1d\xb8\x2a\xb1\x12\x1e\xdf\xb9\x43\x29\x7d\xc5\xdb\xe2\x63\x09\xac\x86\x47\xa5\x4d\xac\xe3\x15\x52\xb1\x58\x7d\x7f\x3f\x05\xcb\x87\x41\x94\x2d\xb9\x46\xca\x65\x65\x56\xde\xac\xe8\xdb\xab\x06\x9c\x4c\x25\x95\xdb\x5a\xd8\x16\x22\xdb\x21\x91\x6b\x8c\x0d\xaf\x0c\xb5\x88\x0c\xba\xad\xf1\xfc\xba\x5c\x50\x4e\x86\x92\xe2\x5c\xf3\xb4\x53\x0f\x6e\x09\xeb\xe4\x31\x78\x5d\xd2\xf7\x12\xe4\x75\x59\xfe\x57\xe5\x58\x53\x3e\x6a\x17\x75\x3b\x80\x31\x79\xdb\x73\x94\x0d\x9f\x5f\x29\x09\x54\x55\x8f\xf4\x15\x42\xa0\xac\x79\x0a\xd2\x98\x9a\xbc\xe9\x39\x3c\x43\x31\x4e\x33\x11\xaf\x62\xbe\xc4\xdb\xe6\x99\x0e\x27\xfa\xc4\x88\x71\xce\x19\x94\x29\x66\x49\xd9\x2b\x8b\xc8\x8d\x5f\x03\x92\xd1\x29\xd5\x41\xde\x39\x89\xe9\x64\x66\x7c\xf2\xfc\x1e\xcf\x54\xb7\xb5\x58\x9c\xa6\xf3\x78\x34\x5a\x90\x84\x66\x61\x31\xce\x3e\x05\xc5\x78\xc5\xe2\x84\xac\xa8\x85\x14\x64\x43\x0d\x88\x20\x4b\x5a\xe8\x9b\x0a\xae\xa1\x24\x44\x59\x55\xa1\x03\xd0\x1c\xcc\xcd\xa6\xf3\xfd\x5b\x25\x28\x02\x34\x49\x74\x8a\xc9\x70\x42\x29\x4d\x42\x46\xf3\x00\x2d\x7d\x7f\x69\x6e\x23\xc2\x68\x82\x72\x4c\x96\xbe\x8f\x96\xfa\xf2\x23\x91\x0a\x38\xcf\x28\xa5\x16\x48\x86\x1b\xf4\xaa\x44\xe6\x7c\xee\x45\x6b\x16\xa7\x83\xe8\x3a\x4a\xb8\x87\x71\x80\x4a\xfa\xb6\x44\x0c\xe3\xb0\x54\x37\x09\x23\x2b\xb2\xc1\xc1\x4a\xa6\x05\x9b\x56\x40\xc5\xa5\xef\x0f\x23\xe8\x82\x6a\x6d\x03\x40\xcd\x99\x61\x89\x25\xbb\x8b\x30\x25\x12\x77\x6b\x8d\xf1\x79\xa9\xa4\x43\x75\x4d\x9e\xde\xc4\x1a\x8f\x67\xf7\xcb\x10\xa1\x9c\xb6\x8f\x33\xf2\xe0\xcf\x53\x82\x12\x80\xff\x9c\xe4\xb2\xf5\x22\x4b\x69\x4a\x72\x50\xcc\x54\x59\x05\x19\x4e\x81\x11\xd2\x81\x00\x28\xc7\x38\xc8\xe9\x56\x57\x10\x70\xa2\x8a\x07\x69\x4d\x86\x47\xa5\xef\xa3\x98\x66\x73\x2f\x4b\xbd\x91\x58\xe0\x30\x46\x39\x0e\xbc\x32\x55\x8a\xb3\x4b\x3b\x0e\x49\x70\x0b\xdf\xef\xe1\x7a\x4b\xea\x2a\x4b\x8b\x2c\xe1\x8a\xf9\x04\x90\xd4\xf7\xd1\x94\xd2\x9d\x48\x8f\xa1\xfe\x2c\x89\x79\xfb\x08\x66\x24\xc8\x7b\x67\xda\x1c\xe8\xae\x0e\x9a\xc6\x89\xbc\x6f\x9e\x77\xce\x54\x69\x10\x81\x6e\xd4\x13\xae\x38\xdd\x2c\x62\x4b\x4e\xec\x5e\x97\xa0\xe9\x65\x09\x7a\x28\x88\xd3\x75\xfb\x64\x1c\xb1\xf0\x4b\x39\x56\x0e\x44\xec\xe0\xdf\x34\xed\xe7\x24\xc5\xc1\xd3\x12\xf5\xcd\x0c\xc8\x65\xe0\xda\x74\xf6\xb1\x44\x9a\xa0\xb5\xf0\x20\x98\x12\xae\xc6\x6a\x54\x00\x0c\x3f\x14\xe3\x9a\xbc\x2c\xfb\x28\x41\x25\xd9\x76\x76\xd1\x50\x8c\x37\x2c\xe7\xa9\xa8\xc9\xad\x1f\x9e\x07\x3b\x0b\x33\x77\x7c\xb6\xd6\x27\x6a\x24\x1e\xe1\x6a\x6c\xf6\xc3\xda\x7e\x30\x31\x15\x94\x12\xfd\x8b\xdd\xfd\xdb\xa5\x5c\x73\x09\xa0\x39\xcc\x97\x24\x73\x77\x0b\x08\xd0\xd1\x00\x29\x93\x7c\x00\xe9\x83\xc2\x6d\x6d\x00\x07\x2a\x9b\x05\x90\x44\x0f\xc8\x9b\x52\x0b\x6e\x6b\xf2\x68\xb7\x36\x05\x10\x65\x45\xa6\x66\xb7\x42\x80\x3d\xf1\x0a\x99\x69\xa0\x94\x72\xbd\x04\x0e\x80\x18\x44\x10\x22\xef\x4c\x6e\x38\x00\x64\xcb\x41\x2c\x0a\x9e\xac\x74\x58\xa6\x5c\xc2\x0b\x8e\x67\x79\xd8\x01\xa7\xda\x1c\xc2\x70\x32\xa1\xb5\x5c\x2d\x06\x27\x2f\x4a\xf4\xa8\x24\x29\x11\x58\x3e\x3e\x50\x8f\x4e\x94\xe4\x07\x25\xc4\x9a\x03\xbe\x35\x0e\xd0\xee\xd0\xa7\x7a\xe8\xd3\x4e\x29\xdb\x9e\x2e\x5d\xcf\xde\xcb\x53\x7c\xd5\xde\x15\x91\x66\x39\x5f\x95\x44\x62\x1f\xaf\x41\xaf\x83\x95\x8e\xbe\xa3\x0e\x54\x7e\x51\xea\x57\xd9\x7b\x81\x54\xb7\xb9\xe9\x34\x77\x23\xdd\x3e\x28\x91\x6a\x92\x20\xd6\x6e\xed\xac\x74\x19\xdc\xe7\xa5\xe1\xee\x12\x03\x19\xe5\xb3\xda\xbf\xf2\xc9\x82\xcf\x60\xbe\x20\x76\xd7\xc9\x2f\x8a\x21\x6e\xb0\xb0\x86\x0f\xee\x0a\x8a\x19\xba\x2a\x5d\x19\x98\xbc\x30\x83\x5e\x71\x1c\xc9\x48\x4c\x4f\xf5\x00\x09\xa3\xc7\x25\x42\x29\xbd\x2a\x9b\x50\x57\x28\xa3\x9f\xb4\x0c\xc0\x95\x87\x57\x95\xe2\x17\xa3\x9c\x7e\x42\x19\x9e\x7f\x62\x0b\x1c\xa6\xc1\x6b\x80\xa6\x96\xd1\xc1\xc6\xd9\x27\xda\xa3\xde\x20\xaa\x4a\x10\x06\xf7\x63\x1f\xee\xc5\x7d\x9f\x13\xa6\xaf\x47\xaa\x4e\xa6\x7a\x31\x3c\xef\x58\x9f\x75\xb9\x97\xe3\xe6\xb2\xd1\x5c\x17\x4c\x26\x43\x1a\xab\x5d\xe2\xfb\x6f\x4a\x14\x43\x0c\x43\xd6\xa0\xc2\xb0\x62\x37\x1a\xac\x03\xee\x63\xa8\x3d\x10\x9b\x94\xe5\xae\x2d\x02\x28\x38\x95\x44\x6d\x10\xdc\x26\x42\x44\x9b\x42\xb0\x7b\xc6\x25\x12\xcc\xfe\x91\x74\xc2\x78\x45\x8f\x7b\xc1\x9c\xa0\x94\x5e\x95\x55\x25\xff\xa3\x32\x94\x6d\x96\xb2\xb9\xe0\x13\x5c\x9a\xa4\x67\xf6\x8e\x25\x29\x55\x48\x64\xda\x65\x49\x4b\x2a\x53\x08\xe4\x26\x12\x4f\xa6\xee\x84\xaf\x6b\xbc\x19\xba\x6a\x66\x57\x25\xea\xe4\x2b\x4a\x13\x09\x53\x28\xcf\x4e\x6a\xde\xd4\x4b\x2b\x1c\x58\x5f\x2f\x1f\x96\xbe\xdf\x56\x32\x68\x4c\x55\xdd\x90\x68\x93\x9a\x6c\x01\xc5\xef\x0d\x87\x56\xa2\xab\x92\x3c\x2c\x35\x63\x2c\x6b\x84\x83\xc0\x6e\xc5\xb8\xa3\xc7\x70\x95\xb3\x8d\x53\xf9\xfb\xb2\x26\x5b\x0d\xe3\x82\xab\x52\x45\xbc\x04\x78\x00\xfb\x65\xc5\x80\x2e\x89\x80\xce\x90\x4f\x0e\x2b\xf8\xbc\xec\x32\x81\xa1\x32\xb5\xb4\x3d\x42\xbf\x63\x03\x44\xac\x72\x90\xca\xaa\xa6\xd0\xee\x35\xc2\xed\x1e\xad\x7f\xac\x3d\xd8\x60\x37\xcc\x8d\x23\x9c\xfc\x66\x55\xaf\x65\x55\x2c\x49\x6e\xf0\xbc\x40\x52\xd9\x7d\x8e\x49\x4e\x2d\x6d\x09\x72\x65\x8d\xca\xc6\x5d\x5c\x41\xed\x20\x49\x16\x5b\x52\x94\xc4\x12\x11\x64\x74\x42\x4a\x3a\x9d\x95\x0c\x09\xb2\xa3\xcc\x1c\x51\x36\x1a\x91\x82\x0e\xa7\xb3\x58\x9d\x64\xc3\x29\x29\x47\x23\x92\x9a\x7b\x43\xe0\x2e\x71\x22\xf0\xb6\xa8\x2a\x54\x00\x34\x98\x47\x0b\x2a\xc8\xde\x5e\x59\x55\x39\x8a\x25\xb1\x41\x32\x40\x3e\x6c\x52\xdd\x00\xa8\xd8\x20\x63\x19\xd2\xb1\xd5\x5a\x14\x73\xce\xa2\x9b\xdc\x51\x74\x26\x05\x26\x22\xeb\x9b\x88\xac\x3d\x11\x3d\x63\xcf\xba\x23\x6b\x66\x19\xd0\x26\xa7\xbf\x99\xe9\x6f\x8e\xb2\xdd\xfe\x6a\x56\xe0\xbb\x2e\x51\xb4\xcb\x3c\x6f\x24\x79\x8d\x14\xaf\x8b\x8a\x82\x2e\xf9\x2c\xbf\x67\x08\x9e\x59\x3e\x1a\xe1\x74\x9e\x2f\x1c\x5b\xef\x7c\xd1\x08\x4d\xd5\x19\xe4\x0a\xaf\xf9\x5a\xde\x2c\x16\x6b\x2c\xe9\x0f\x4b\xc7\x80\xc0\x84\x1f\x84\xde\x2c\x24\x3a\xfd\xb5\x6c\x54\x5a\x4d\x91\xcf\x4e\x91\x41\x13\x90\xb1\xc9\xf0\xd8\xcd\x60\x62\xd8\xf8\xfe\x8e\x16\xab\x53\xe4\x49\x69\x24\x7e\xa6\x0f\xaa\xef\x0b\x6f\xe8\x76\xa2\x4d\x83\x73\xda\x1f\x0a\x5c\xb4\x54\xbd\xa8\x12\xa9\xd2\xdd\xd0\xae\x8e\xc1\x7d\xdf\x2c\x18\xbe\xff\x8d\x13\xf1\xa1\xb4\x14\xaf\x1a\x25\x28\xc6\x98\x61\x36\x57\x2d\x60\x7a\x73\xb1\xc0\x04\x66\x1b\xb7\x85\xb8\x46\xb8\x3b\x4b\xef\xe5\x20\xc0\xd5\x5a\x8b\xe0\x6e\x51\xcc\xd3\x05\x60\x65\x4d\x20\x77\xd8\xd1\x83\x38\x1d\x08\xbc\xb3\xbe\x6d\x21\x8f\xee\x31\xc9\x1a\xbd\x49\x5d\x69\xb6\x20\x99\x04\x4b\x60\xe4\x57\xd2\xad\x96\x01\x07\x87\x25\xd1\x8f\x87\xe5\x6a\xe5\xda\x24\xde\xb0\x49\x54\xb6\xee\x0c\x91\xb8\xb8\xb1\xbc\xb3\x21\x86\x9f\xcb\x56\x60\xe8\xb6\x08\x16\xbe\x76\x34\x00\xbf\x17\x62\x7d\x6c\x1a\xee\x08\x74\x6d\xba\xee\xdd\xa3\x2c\xbf\xe8\x58\x1d\xd8\xf1\xf5\xc8\xb7\x4d\xf6\x4e\x04\x77\x93\x5c\xb7\x27\xed\x7d\xcc\xaf\x7e\xb0\x62\xa7\x94\xef\x3b\x2f\xe3\xb8\x90\xb5\x84\xbb\x49\x12\xf1\x00\xf6\xf7\x99\x1d\xa7\x7a\xda\x09\xd8\xad\x8a\xc9\xbe\x75\xc3\x8d\x36\x5d\xda\x11\xaf\xcb\xec\xda\xc5\x4c\x4f\x76\x1d\xdc\xa1\x9d\x5d\x6d\xc2\xe0\xb1\xdc\x3a\xaf\x13\x16\xa7\x3a\xe1\x89\x4c\x78\x67\xc6\x1c\x7c\x96\xaf\x0f\x98\xe8\xbb\x29\xed\x9e\x92\xdf\x7b\x36\xd3\xa3\x38\xf9\x66\x31\xf9\xbd\x6f\x0f\x26\xd9\xd9\xb7\x8a\xc9\xef\x7d\xad\xe9\x12\xc1\xb3\x52\x4d\x1e\x77\x4d\x67\x9b\x8d\xfc\x58\xed\x5e\x09\x3b\xc6\x9b\x78\xc3\xa1\xf0\xbb\x37\xcf\x8f\x39\xcb\xa3\x35\x58\xdc\xf6\x89\xa3\xfb\xf6\x41\xa7\x54\x67\x9f\x75\xbe\xaa\x25\x65\xe9\x92\xe5\xcb\xc3\x3c\xbb\x2a\x78\xfe\x30\xbd\xdc\xd5\x1c\x72\x55\x35\xec\x92\xa5\xec\x32\x3e\x67\x22\xcb\xab\xca\x7b\x23\x91\xf6\x97\xca\xcb\xcb\x90\x52\xfb\x49\x02\x94\x65\x19\x49\x90\xad\xbe\x2a\xf9\xde\x8d\x79\x8e\x7b\xbf\x60\xdf\xef\x55\x16\xb9\x8a\xd3\x65\x76\xe5\xfb\x7d\xdf\x0c\x9b\x19\x37\x3a\x69\x1f\x4a\x72\xc1\xf3\xf3\x66\xfd\x07\xc2\xb2\x0e\xb6\x75\x73\x91\xe9\x30\xf4\x4f\x4a\xc4\xe7\xf9\x02\xfb\xfe\x93\x12\xa5\x38\xe4\x10\x34\x1d\x69\x5b\x83\xa0\x95\xb8\xad\x65\xd2\x61\x93\x94\x6a\x35\x11\x1c\xa8\xd7\xba\x61\x46\x4e\x48\xb6\xc3\x29\x9a\xe5\xf7\x32\xb8\x92\x3f\x94\xc8\xbd\x90\x1d\xa3\x06\xae\x0d\xb1\x97\x3b\x9a\x5a\x3a\xc3\x07\x49\xaf\x76\x1c\x31\x0b\x68\xbc\x17\xda\xf1\xf0\x5d\x09\x17\x7c\x00\x1e\xf1\x45\x4d\x44\x1e\xf7\xee\xce\xc6\x5c\x1f\x8c\x14\xf7\x89\xe7\xe1\x26\xe9\xa4\xf8\xf9\x16\x24\xd5\x10\xac\x77\x73\xf8\xea\x45\x5f\x25\x77\x7e\x3d\xf8\xd7\x5d\x60\x88\x46\x6b\x96\x1f\x65\x4b\x0e\x26\xfe\x70\xa1\x09\x6b\xd8\xaf\xcc\xa4\xec\x4a\xfc\xe5\x5e\xff\x3c\x8d\xb2\x25\x7f\xf7\xe6\x69\xe3\x80\x48\x38\xfd\xf8\xe9\xf6\xfd\xfd\xf3\x98\x78\x81\xdb\xb9\x9f\x0e\x7e\xd9\x3f\x27\xde\xad\x76\xda\x11\x64\x24\xed\xc4\x89\xcc\x38\x6a\xa5\xfd\x7a\x08\x19\xe7\xed\xc4\x07\x90\xb8\xf0\xd4\x9d\xf7\x47\x3f\x97\xc6\x2a\xb3\x0a\xc5\x54\x51\xda\x9c\x39\x4d\x11\xc7\x56\x4b\xff\xcf\x72\xbc\x73\xcc\x11\xc7\x38\xa7\x0d\x7e\x85\x54\x76\x8d\x7d\xce\x17\xb3\x3f\x4b\xeb\xad\x62\x47\xf3\x4e\xe3\x0e\xbe\xaf\xaa\x36\xda\x58\x21\x1f\x51\x6f\xbe\xf0\x02\xc0\x1d\x88\x53\x43\x07\x79\x85\x52\x12\x72\xca\x42\x72\x5d\x44\xf6\xf4\xf8\x95\xe9\x48\x00\x9f\xad\x1a\x16\x2c\xdd\x1f\xc7\xaf\x5e\x6a\x9f\xb1\xf1\x0a\x74\x41\x48\xa6\xd0\xfd\xbf\x24\x42\x3d\xf2\xa8\x37\x82\x55\x04\x5b\x06\x15\x7a\x21\xd3\xc1\x6c\x7d\x0f\x3c\xf1\x6b\x2d\xef\xd8\xb5\x6d\xf9\x5f\x1e\x9e\x81\xbd\x4b\xdc\xda\x20\x13\x12\xcb\x2d\x32\xa2\x68\x6f\x4a\x5b\xc6\x30\xa1\x87\x43\x2f\xf4\x02\x59\xe9\x28\x6f\x7c\xf4\x34\x7b\xe9\xef\xd2\xf8\x2a\xd0\x5e\x12\x0a\x3a\x5f\xd4\x7f\x3b\xbc\x95\x71\x59\xf0\x7e\x64\xbb\x55\x4c\x07\x9d\x58\x95\xc9\x2a\x4e\x12\xbe\x0c\x84\x66\xea\x70\x88\xfa\x4e\xda\x99\xd5\xf9\xde\x9b\xd6\xa4\xd5\x94\xe2\x1a\xb4\x04\x3d\x6e\xb1\xb9\x58\x18\x9f\x2b\x4e\x12\x78\x67\xc2\x9d\x9a\xf4\x52\xd2\xce\x3a\xda\x15\x76\xeb\x68\xfb\x19\xd3\xc8\x12\xf7\x7d\x70\x3b\x82\xb5\xba\xd5\x3f\x25\xfd\xbb\x24\x22\xba\x89\xf9\xe9\x54\x9e\x92\x96\x3b\x3e\x41\x0d\xc7\x00\xe0\x09\x8f\x7a\x98\x20\x43\x34\x14\x55\x35\x14\xe3\xd3\xd3\xa3\xfb\x2f\x8f\x1e\x3e\x3f\x3d\xc5\x2e\xec\x8d\x5a\x1a\x69\x5a\x8c\xdb\x68\x4a\x0c\xd6\x4c\x59\xe4\x9d\x71\x9e\x0e\x0c\xd4\x77\x30\xe9\xbc\xb7\x02\xd0\x96\xf8\x4e\x15\x70\xc2\x22\x9a\x46\x24\x8e\x68\x1e\x35\x7d\x62\x91\xa6\x28\xb2\x88\x52\xda\xf4\xc5\x1c\x71\x47\x8f\x43\x90\x09\x28\x6e\xab\xac\x69\x54\x55\xc3\x2c\xc2\xbe\xbf\x5b\x28\x8b\x9c\x9a\x48\xb7\x0a\xc7\x6a\x3b\x8b\x20\xa9\x61\x8a\xb6\xbe\xb9\xb8\x78\x2b\x57\x27\x87\xe2\x1e\xc8\x1c\x75\xdd\x73\x19\x5c\x82\xe5\x87\xee\x82\xef\xa3\x56\xef\x7a\x59\x3e\x97\xe9\xd8\x9d\x54\xdf\x47\x71\x44\xdd\x14\x45\xbe\x96\x11\x89\x22\x3a\x5f\x90\x22\xa2\xc3\x29\x49\x22\xba\x37\x6d\x66\x76\x25\x17\xab\x88\x7c\xbf\x8c\x7c\x1f\xa9\x2c\x65\x64\xa4\x27\x51\x44\xcb\xc8\xf8\xc5\x89\x22\x1c\x40\x69\x12\x45\x36\x90\xc6\x26\x42\xd8\x59\x7b\xf9\x0a\xd0\xb7\x88\x0c\x5f\x8f\x45\x68\x15\xe1\x99\xac\x7a\x32\x6b\xb4\xbd\x6c\x1d\x33\x3e\x53\x04\x74\x19\xd1\x48\xf7\x75\x36\x1a\x25\xd1\x3d\x3e\xc3\x25\xf4\x6c\x9e\x44\x8b\x71\x5e\xa6\x08\xcf\x54\x07\x9c\xe2\x75\x19\xc1\xa1\xd4\xc3\xeb\xe8\xca\xc5\x72\x13\xb4\xe6\xc4\xd8\xaf\x3b\x69\xda\xcf\x9c\xca\x9c\xcb\x1d\x13\xcb\x1d\xd3\x57\xac\x33\xc3\xa4\x5b\x0d\xf0\xff\xc1\x3a\xab\x6f\xb3\xc4\xad\xcd\xb2\xbb\x55\xe2\xd6\x56\x91\x1b\x05\xc4\x7f\x76\x76\x97\x91\x63\x75\xbc\x2a\x53\xc3\x17\x05\xdd\x4e\xca\xeb\xa5\x63\x6d\x28\xe7\xab\xad\x63\xaa\xca\x18\x67\x75\xd0\x05\x5b\xd8\x05\x00\x6b\xb9\x86\x70\x16\x2f\x23\xba\x8e\xc8\x35\xfc\x9e\xc3\xef\x05\xfc\x9e\xc1\xef\x29\xfc\x5e\xc9\x5f\xd8\x68\xaf\x22\x7a\x99\x8e\x37\x3c\x5f\x65\xf9\x85\xc4\x76\xab\x6a\x5b\x93\x8f\x11\x7d\x15\x8d\xd3\xec\xaa\xaa\x5e\x45\xe3\x8b\xec\xeb\x4b\xf3\x58\x98\xa7\xcc\x3c\x28\x35\x4c\x78\xdb\x45\x80\x25\x2c\x91\x17\x23\x1e\x9f\xab\x73\x81\x34\xb4\xfc\x12\x51\xf3\x0d\xde\x1f\x46\x74\x6b\xb4\x79\x7a\xb8\x4d\x37\x73\x68\xf6\xa6\xb0\x0f\x76\x2d\x22\x1c\x22\x7f\x3a\x4b\x77\xbd\xf7\x01\xa1\x3f\x4f\xf7\xa6\x2e\x2f\x27\x5d\xcc\x22\xed\x44\x41\x36\xa9\xd7\x0e\x13\x79\xa7\xda\xdd\x5b\x55\x45\x54\x55\x2c\x42\x9b\x08\xd7\x04\x3c\xaf\x04\xde\x99\xa2\x03\x3c\xa2\x1f\x14\x37\xf7\x32\xd8\xd6\x84\xe5\xe7\x97\xc1\x7c\x41\x2e\x79\xae\x1c\x50\x79\xe6\xb1\x90\x9f\xb3\x34\xb8\x8c\x08\x5b\x2e\x8d\x22\x5e\x70\x1d\x91\x2c\x8d\x78\x70\x1e\x91\x6c\xb5\x0a\x2e\x22\x6d\xa8\x64\x33\x9c\x99\x94\xfb\x49\x62\x12\x8b\xe0\x34\x22\xfc\x22\x16\xc1\x55\x44\xce\xe2\x74\xd9\xa5\x38\x77\xa0\xbb\x56\x22\x19\xeb\xcc\xc6\x68\xbb\x28\x37\x9b\x2c\x17\x00\xdc\x49\x74\xd5\x17\xf4\x6b\xdf\xab\x49\xb4\x5e\xc6\xf9\x8f\x35\x00\x59\x7b\xab\x2f\x2f\x58\xf1\xa9\xc7\xe4\x62\x52\x93\x75\x2e\xe2\x8b\x3e\xce\xe3\x78\x32\x99\xfe\xfc\x51\x9f\xba\x57\x11\x26\x29\x7d\xc1\xc4\x7a\xbc\x4a\xb2\x2c\x57\xdc\x48\xf7\xfd\xa7\xe9\xcf\x53\x7e\xb7\x31\x72\xf6\x7d\x94\xee\x51\x30\x80\x47\xb9\x7c\x98\x2e\xf0\xbd\x09\xa4\xee\x91\x7c\x44\x65\x66\x4c\xe6\x29\xc9\x17\x35\xd9\x24\x4c\xc8\x93\xe1\xac\x6f\xce\x21\x1a\x8e\x5c\x39\x65\xe5\x2c\x9f\xca\x4d\xbb\xb3\x3b\x07\x60\xef\x4b\x84\xf7\xa7\xfc\x76\x5d\x93\xe3\xae\x59\xd8\x0d\x88\x25\x50\x53\xb9\xc2\x34\xf2\xb6\x4f\x2f\x4a\x01\xd5\x75\x52\x24\xda\x33\xe7\x0b\x9a\x1a\xab\x2b\x49\xc2\x28\x79\xec\xa7\x2e\x4a\x42\x72\x92\xed\x32\x44\x77\x3f\x01\x03\x67\x15\x9f\x53\xae\x64\xa5\x63\x49\x48\x28\x09\x6c\xce\x3f\x97\xbc\x10\x34\x87\xe7\x62\x93\xa5\x05\xa7\x19\xf8\xe4\xbf\xff\x25\xce\x0a\xd8\x00\x74\x38\x21\x12\x17\x96\xc8\x2e\xdd\x99\x9a\xad\xd6\x36\x55\x26\x51\xfa\x85\x28\xaf\x71\x32\x45\x3e\x11\x27\x5c\x82\x4a\x75\x12\x88\x62\x86\xe8\xdc\xf0\x4c\x56\x71\xc2\x5f\xda\x2a\xcc\x1b\x49\xe2\x94\xbf\x74\x72\x37\xef\x44\xb9\xb6\x72\x3f\xba\x29\xa4\x10\x2c\xfa\xa4\xad\xb6\xe4\xa3\x59\x73\x9d\x53\x3e\x13\x39\x2d\x26\x61\xc9\xeb\xda\x18\xbd\x3e\xd4\x4a\x0c\x76\x62\x6b\x72\x3f\xa2\x40\x0d\xec\x72\x0f\x10\x0e\xb7\x57\x79\xdc\xe2\xce\x98\x82\x24\xd6\x5a\x36\xf2\x96\x65\xda\xc7\x0b\xd0\x08\x3d\xc4\x9d\x04\x57\xd0\x86\x1a\x01\x4a\xb1\xef\xeb\x32\x1e\xff\xb2\x89\x73\x5e\x50\x6f\x64\xf6\x25\x4a\xf1\x58\x64\x8f\x5f\xbc\x35\xd4\x8a\x2e\xac\x5f\x73\xa7\xf0\x86\x89\x35\xf5\x46\x79\x3b\x47\xe6\xe4\xd0\xc2\x4a\x6f\x94\x69\xfd\x9c\xb8\xf9\x56\xf0\xa8\xcc\xb9\x87\x89\xe1\x30\x8c\xa3\x2c\xfb\x14\x73\xca\x34\x59\x33\x1b\x78\xe0\x86\x90\x2d\x7b\xce\x7c\xa7\x90\xf6\xc2\x23\x07\xf1\x86\x9f\x3f\xfc\xb2\x41\x1e\xfa\x77\x35\x3b\x39\x29\x7e\xc6\xc8\x1b\x89\x91\x87\x29\x9a\xff\x7b\xb6\xf8\x19\x7b\x8d\xe0\x80\x87\x4b\xbe\x3b\x5d\xf3\xdb\x0b\xac\xc2\xe9\x68\x98\x1a\xec\x90\x17\xb0\x2e\x48\x10\xcf\x23\x72\xce\x40\x0d\x1c\xef\xfd\x76\xe7\x17\xfe\x2b\x18\xa0\x75\xd6\x0d\x6f\xbb\xe3\x68\xb1\x5e\x77\xdb\xc1\xdb\xba\x26\x47\x11\x9d\x7b\xa0\x7d\xed\xb1\x52\xac\xb3\x3c\xfe\xaa\x5c\x3b\x10\x4f\x07\x0e\xdb\x53\xd7\x8f\x93\x20\x71\x06\x8f\x78\x5c\xb0\x73\xf9\xa7\x56\xd7\x23\xde\x2a\xcf\x2e\x3c\xe2\xad\xb3\x42\x78\xc4\x8b\x57\x7b\x17\xd9\x12\x24\xec\x7b\x45\x9c\x46\x5c\xa5\x95\xe9\x4e\x6a\xc2\x0a\x61\xf3\xca\x77\xe3\x5e\x82\x78\x17\xec\xcb\xde\x2a\xcb\xaf\x58\xbe\x94\x2d\x6c\xf2\xec\xcb\xf5\x5e\xb7\xa3\x39\x5f\xf1\x5c\x02\x49\x2f\xe7\x22\xbf\xde\x63\x2b\x88\x4c\x02\x3e\x19\xf7\xd8\x39\x4f\x85\xb7\x20\xef\xbf\x75\x06\x76\x35\x9b\xe9\x3e\xba\x28\x62\x5e\x89\x3c\x5e\xf2\x54\x58\x15\xed\x86\xdd\x25\x6b\xbf\x7f\x0e\x7a\x8c\xa9\xb3\x53\x5c\xe7\x78\xc8\x63\x9e\x13\xe1\x20\x37\x3b\x2b\xa7\xc2\xb1\x40\x44\x80\xce\xdb\x58\xad\xc8\x5b\xe7\x7c\xe5\x91\x5c\x09\xb8\xe4\x0b\x26\x37\x66\xd9\xca\xa7\x40\x65\x23\x46\xeb\x3e\x48\xad\x02\x7e\xd8\x3c\x36\x6c\x91\x40\xf1\x80\x24\x4a\x20\x17\x4b\x16\xcf\x0a\x49\xd7\xb0\x3c\x5a\x07\xb2\x2d\xf9\x10\x9a\x07\x97\xa3\x14\x36\x25\x59\x21\xf3\xca\xbf\x50\xfd\x39\xf9\xfe\x57\xab\x01\x00\xaf\xaa\x11\x80\xaf\xf2\x26\x96\x7d\xcc\x72\x01\xbe\x35\x95\x93\xb1\x7d\x30\x9c\x1a\x9b\x84\xc6\xb3\x64\xd8\x24\xca\x5c\xa3\xe6\xb5\xb6\xbc\x03\x9a\x23\xc5\x60\xb4\xe6\x36\x7a\xe6\x5c\x1a\x5a\xe1\x65\x2e\x1c\xe1\x38\x94\x97\x77\xd0\xf8\x2d\xb4\xd3\x05\x2c\x8b\xc6\x8e\x41\x75\x1f\x12\xe5\x43\x5d\x23\xbc\x7b\xd2\x86\x93\x9a\xbc\xee\x23\xa4\x01\x3f\xd1\xf2\xee\xae\xdb\x04\xa3\xf5\xb8\x64\x82\x81\xbb\xfb\x35\x67\x4b\x9e\x17\x33\xe8\xa8\x11\x36\x00\x50\xd4\xb7\x6c\x36\xf7\x8e\xf4\x59\x7c\x2b\xcf\xe2\x62\xa6\x78\x32\xb2\x91\xbf\x5e\x3c\x7f\x22\xc4\xe6\x8d\xba\x2a\x67\xa0\x61\x24\x0f\x8c\x81\xe5\xea\x0d\x76\xaf\x9c\xc1\xaa\xf2\x3c\x52\x9a\xd4\x0d\x2b\x8a\xab\x2c\x5f\x86\x65\xca\x21\xbe\x0e\xea\xe3\xe3\xb5\xf3\x62\xb9\xcc\xb3\x6c\x7c\xdf\x3d\x95\xd4\x3b\x64\x45\x1c\x0d\xbc\xd1\x99\xc8\x18\x62\x23\x2f\xf0\x46\xa5\x22\xdb\x95\x23\x23\x14\x51\x31\x3e\x63\x05\x7f\xf7\xe6\x39\x29\xa8\x18\x97\x79\x42\x22\xdf\x1f\xee\xff\x1b\xcd\xd9\xde\xd7\x85\xfc\x39\x59\x9e\x8c\x4e\xf6\x4e\xc6\x8b\x9f\x03\x1c\x9e\xec\x9f\xec\x9b\x63\x58\xb8\xf6\x1f\x0e\xef\x87\x87\x0e\xff\xf3\x64\x7f\xa4\x36\xfa\x48\xee\x1a\xee\x6e\xe3\xfd\x91\xda\xa0\xa2\x46\x11\x29\x70\x50\x00\x3a\x1f\x8f\xb3\x0d\x4f\x91\x18\x6b\x9b\xb6\x16\xae\x43\xfe\x28\x51\x42\x84\x76\x60\x6c\x1f\x8e\xc1\x9f\x6c\xfc\x95\xe7\xe0\x5b\x9b\xc4\x63\xa1\x68\x3c\x2a\xcc\x13\x89\xbf\x63\x84\x22\x9b\xf6\xfd\x5f\xe4\xd5\x35\x86\x7c\xc7\x4a\x7f\x06\x4d\x86\x54\x6b\xd3\x94\x45\x55\xc5\x16\xe9\x79\xf7\xe6\xb9\xef\x4f\x74\x7e\x9b\xd4\x30\xd8\x94\x29\x0e\xc6\x8d\x7b\x03\xa3\x2a\xeb\x9d\x73\x71\x3f\x49\xde\xe8\x52\x4f\xd4\x56\xf3\xe2\x74\x10\x87\x28\xa7\xf1\xb8\xf7\x3b\x28\xb3\xca\xfb\x25\x44\x0e\xda\x98\x8f\x8b\x4d\x12\x0b\xe4\x9d\xa4\x1e\x6e\xf3\x26\xe3\x15\x2a\x5d\x8e\x5f\xe0\x61\x92\xc9\x93\x27\xf2\xf8\x02\x09\x13\xc4\x62\x42\x4a\x2c\x31\x81\xe7\xd9\x95\x9d\x66\xb6\x9b\xad\x1c\x4d\x31\x96\x28\x62\xbc\x42\xd1\x3c\x5b\xf8\xfe\x51\x64\xeb\xce\xf0\xef\x74\xa2\x89\xee\x99\xfc\x4a\xbd\x82\x8b\x3d\x75\x65\x4b\x90\x92\x85\x50\x28\x94\x3f\xc1\x7c\x61\xc3\xf7\xce\xd9\x02\x07\xf6\xcb\xc8\x23\x03\x6f\xc4\x02\x56\xd7\x18\x93\x08\x07\x91\xba\x9f\x49\x42\xb7\xe0\xac\xbb\x41\x39\xdf\x82\xaf\x11\x4f\xf0\x2f\x20\x1b\x69\x7f\x08\x9b\x25\x09\x9a\xc7\xb7\xfc\x8b\xb2\xa8\x2e\x8b\xc0\x2c\xa8\x7e\x97\x9f\x6c\x1a\xe4\xd3\xe7\x3f\x28\x2c\xda\x47\x34\xe6\x1b\xc4\xf5\x4d\x8e\x88\x52\x8d\x17\x8e\xc1\x14\x94\x09\x7e\x0c\x15\xce\x52\x5d\xb3\xef\xe7\xbe\x3f\xcc\x91\x79\xc7\x21\x47\x9f\x22\xe4\x69\x40\x31\x58\xb1\x38\xe1\xcb\xc1\x55\x2c\xd6\x03\x95\x03\xf4\xe0\x07\x12\xdc\xea\xfe\x9a\x26\xc0\xf5\x06\x18\x3b\x40\x51\x92\x62\x1c\x80\xd9\x85\x84\x67\x24\xc1\x24\xa6\x3a\x50\xa0\xdc\xf8\xec\x2c\xcb\x45\x6b\xb7\xcb\x2b\xaf\xd5\x36\x64\x91\x57\xbf\x20\xde\xc3\xa3\x57\x2f\x5f\xde\x3f\x7c\xf5\xe6\xed\xc3\x07\x1e\x70\x90\x63\xc3\x49\x95\xb5\x81\x12\x86\x5b\x9b\xaa\xe9\x25\x17\x57\x59\xfe\x49\x21\xbf\xb2\x1e\xe8\x62\x53\x5a\x15\x36\x27\x73\x47\x17\xd5\xd3\x5f\x06\xd9\x0a\x9c\x96\xea\xd7\x91\x77\x51\x0c\xf8\x97\x88\xf3\x25\x5f\x7a\x33\x9b\x0e\xad\x58\x73\x38\xa5\x19\xbf\xfb\x05\x13\xe8\x1b\xff\xd6\xa8\x6a\x72\x23\x52\xa2\xfa\xb6\xa2\x48\x8c\xe5\xa2\x1c\xe5\x5c\x22\x22\x31\x4b\x8a\xaa\x7a\x1f\xa1\x04\x83\x9d\xd5\x97\x22\x5f\x1d\xc1\x56\x07\x77\xaf\xf7\x23\x00\x20\xa8\xfb\xc1\xd8\x14\xcf\x56\xbe\x8f\xb2\xb9\xfa\xac\x0e\xb7\xfc\xbc\xa0\x2b\xe0\xee\xcb\x93\xa3\x17\x45\x7d\x04\xc0\xe0\xfb\xce\xa1\xcf\x76\x94\xd6\x8c\x26\x48\xee\xfb\x6d\x14\x51\xd3\x8b\xce\xe1\x0e\xed\x05\xc6\x17\x72\xcf\x77\x5a\x53\x2a\x9c\x86\x18\xb0\x32\xe4\xdd\x19\xc0\x55\x85\xe2\x6e\x22\x1d\x0e\x77\x33\x92\xf6\xe9\xc4\xc0\x75\x6b\x25\x75\xce\x6f\xc3\x69\x93\xf3\xf1\xb1\x00\xe5\x49\xda\xad\x45\xa9\x4a\xf7\x31\x67\xc5\x38\x4b\x1f\x64\x57\x69\x92\xb1\xe5\xeb\x3c\x3b\xcf\x79\x51\xf8\x7e\xdc\x63\xf7\xb8\xd1\x5f\x3d\xd2\x57\xa6\x97\x8f\x2b\x33\xbe\xdb\x74\xab\x2e\x21\xa5\x79\xfa\x6e\x5b\xed\x2a\xe4\x1c\xa9\x80\x74\x6f\xb3\x4f\x5c\xd9\xc4\x37\xaf\x46\xc5\xa9\x47\xf3\x4b\x1e\xe4\x78\x0c\x87\x17\x41\xdc\x91\xe6\xac\x62\x4c\xf2\xaa\x42\xb9\x7a\x25\x72\xa9\x53\x88\x20\x8b\x71\x4d\xde\x46\x74\xdb\x46\x60\x02\xd7\x2f\xf7\xfe\x97\xbd\xab\xab\x2b\x89\xf6\x5f\xec\x95\x79\xa2\x30\x90\xa5\xe7\xb0\x1d\xdf\x68\xe6\xe6\xb0\xbb\x4f\x30\x6c\xd5\x56\x52\x17\x55\x52\x3c\x8b\x4e\x22\xe5\x0a\x35\x79\x1a\x91\xe7\x11\xdd\xb2\x25\xdb\x08\x9e\x07\xa8\x57\x90\xdd\xc6\xb0\x1c\x93\xb6\x87\x91\xef\x5b\x25\x03\xcd\x85\x02\x3d\x83\xef\xb8\x29\x78\x18\xc9\xb3\x8c\x9e\x46\xf4\x75\x84\xc9\xd3\x08\x13\xf0\xac\x2b\x27\x40\x37\xe2\xc4\x69\x74\xb1\x9d\x63\x09\x5d\xbc\xfb\x51\xc4\x37\xc2\xc3\x44\xbd\xb6\x46\xa6\x8f\x92\x45\x22\x05\xae\xaa\x46\xda\x68\x75\x63\x74\x62\xf7\x5d\xe9\x40\x34\xef\x8f\xe2\x84\x3b\xb9\x93\xec\x0c\x44\x8f\x41\xb7\x46\xad\xb0\x12\x1a\x1d\x95\xa0\x57\x76\x2a\x70\x88\xde\x40\x97\xbf\xbb\xf8\x33\x49\x0b\x14\x5c\xd0\x52\xac\xf6\x7e\x03\xff\xcf\x8d\xc8\xb5\x2b\xea\xec\xab\x55\x9e\xe3\x9d\x4a\x76\xc5\xa1\x81\xa8\x17\xee\xe4\xeb\x7b\x7c\xde\x41\x6d\x7a\xdc\x53\x80\x86\xba\x12\xb0\x6e\x64\x2b\x0d\x5f\x5f\xe0\x6d\x23\xe1\x5c\x10\x7d\x51\x04\x13\xd2\x86\xd0\x81\xf7\xd7\xf1\x9b\x47\x7b\x6f\x5f\x3d\x7b\xf8\xd2\x23\x6d\xf0\x1c\x78\x7f\xed\xb9\x5f\x2f\xd8\x17\xbd\xca\xcf\x81\x36\x0f\xf6\xa6\x32\xed\x30\x5b\x5e\x37\x09\x6d\x3c\xa0\x57\x55\xe0\x77\x7a\x30\x99\xf8\xbe\xb8\x77\x7b\x32\xa9\xeb\xd9\xf3\xc8\x90\x1e\x74\x1b\x65\x17\x17\x59\x1a\x6c\xd5\xe6\x0a\x76\x26\x93\x0c\x24\xfa\xb3\xbf\x49\x58\x9c\x92\xc1\xcf\xfb\x3f\x7b\x75\xed\xca\xaa\xe7\xc6\x2b\x1a\x44\x10\xf1\x88\x27\x6b\xf6\x16\x6d\x2c\xb1\x69\x70\x2e\x16\x74\x5b\x6b\xd0\xdf\xd4\xb1\x51\xac\x04\x88\x84\xea\x81\xdd\xd0\xb7\xab\xf8\xb3\x1c\x83\xd2\x08\x7a\x1b\x61\x63\x17\xfb\x32\xa2\xcf\x1d\xf9\xe0\x2d\x90\x0f\x7e\x13\xe2\x01\x74\x7f\xba\xd2\x67\x8f\x2f\x91\x02\x0e\x2f\x7a\x09\x3b\xa8\x8f\x58\xa2\xad\x21\xdf\x40\xa4\xa1\xa8\x3a\x2a\x22\xed\x1a\xa1\xc9\x28\xb7\x70\xe7\x94\xbb\xd5\xd8\x91\xd8\xa4\xb1\x5a\x12\x5d\xad\x1d\xb4\xa6\x55\x16\xed\x74\xfc\xfd\xb5\x20\x7d\xb3\x4b\x3c\xd5\x4a\x6b\x9a\xb9\xf5\x69\xd0\xb4\xcb\x17\x72\xb1\x24\x2d\xa8\x60\x65\x55\xbd\x8c\xcc\x33\x46\xbb\x8a\xc2\xbc\x33\x61\xdc\x4e\x8c\x7a\x22\xbc\x7f\x62\xd4\x09\xc4\x84\xb7\x8c\x29\x1d\x82\x2f\x42\x10\x78\x58\xd7\xaa\x3c\x49\xa9\x42\xe0\x0c\xcb\xbc\x38\xcd\xb5\x92\x88\xf3\xfe\xad\x0e\x60\x4c\x34\xf9\xae\x55\x8e\xb5\x10\x9e\x3c\xe8\xf2\xd5\x39\x05\x69\x96\xb6\x78\x94\x44\x13\x9d\x7b\x65\x9e\x78\xc4\x53\x4b\xe5\x11\x4f\xb6\xec\x2d\x48\x46\xe7\x9e\x6e\x54\xf3\xdf\x0c\x8f\x0b\x16\x04\x02\x7d\x2e\x48\x4c\xe7\x9e\x26\x94\x3d\xe2\x75\x37\x4d\x3b\x49\xf5\xd6\x96\x6e\x88\x53\x99\x4d\x41\x9e\xe6\xe9\x85\x71\xbc\xe0\x75\xb0\x26\xd9\x19\xb5\x94\xc0\x53\x6b\x10\x1f\x8f\x78\x6d\xa8\xa5\x13\x1a\x50\xe5\x11\xaf\x8b\x5f\x40\x52\x17\xbd\x91\x93\xc0\xa3\xec\x62\xa3\x5f\xba\x20\x4d\x25\x35\x10\x4d\xbd\xbf\xe1\xca\x39\x7d\x61\x46\xbd\xc9\x72\xd8\xd0\x42\x6c\x80\x17\xa7\x9f\x0b\xf3\xe2\x1c\x6b\x8f\x78\x45\x16\x7d\xe2\xe2\x35\x83\xea\xcc\xb8\x1e\xca\x2b\x46\x42\xf3\x05\x61\x74\xee\xb5\xc1\xa6\xb7\x68\x20\x47\xd9\xba\x7b\xe1\xce\x71\xf4\x1e\x1b\xe4\xc3\x4d\xe4\x38\x6c\x4e\x32\xe1\xfa\xaa\xba\x29\xc7\xb6\xb6\x59\x8c\x7b\xa7\x90\x37\xba\x69\x8d\x74\x37\x42\xb9\xd6\xff\x69\x30\x1d\x50\x7f\x0b\x77\xd0\x9f\x7c\x01\x41\xca\xe7\xf9\x82\x96\xd6\xda\x41\xa6\xe2\x40\x27\x82\xeb\x44\x28\x5d\xbb\xc4\x7d\x8f\xb2\x91\xdb\x98\xd0\xf5\x0a\xa7\x5e\x48\xc5\x1d\x28\x9e\x91\xa8\xf5\x1e\x3b\x15\xff\x37\x8e\xc2\x76\x41\x09\xa0\xdc\x16\x59\xbb\x45\xe5\x8d\x38\xdc\x19\x7d\x00\x1f\x40\x52\xd7\xd3\x8e\xb9\x4e\x0a\x9a\x1b\x06\x42\x66\x59\x09\xb1\x7d\x62\x98\x24\x9d\xc0\x74\xe6\x93\x9b\xca\x31\xde\x0d\x30\x67\x2f\x15\xd0\x97\x2a\x2c\x87\x43\xb8\x76\x08\xce\xb8\x12\x39\xb3\xa9\x83\x17\x3f\x8a\xac\xf0\x40\x87\xbd\x29\x8c\xdc\x3f\x4e\x05\xcf\xe5\x55\x9e\xc9\xdb\xdd\xb0\x13\x52\x7e\x35\xf8\xa7\x24\x96\x61\xa1\xde\xeb\xfa\x51\x4b\x3b\x40\x4b\xdd\xdc\x7e\xf6\x78\x8a\x47\x82\xba\xde\x00\x25\x0c\xc4\xe3\x32\x4f\x68\xcb\x9f\x28\x44\xf9\xd9\xd6\x04\x09\xfa\x40\xb9\xe3\xb3\x5d\x25\x02\x63\x7d\x9b\x85\xe6\x5a\xa3\x0e\x2f\xce\xa1\x23\x83\x56\xc1\xdd\x42\x3d\x5f\xbb\x15\x98\xbc\x70\x25\x6a\xb3\x82\xf9\x8b\x48\x9b\xdf\x2d\x48\x4a\x1b\x78\xaf\xac\xfd\x85\x72\xc3\xb6\x33\x9d\x66\x82\x7a\xe2\x52\x09\xbc\xe5\xe3\x32\x2d\xd6\xf1\x4a\x20\x31\xb6\x5a\x68\xd6\x1c\x97\x2f\xb1\x75\x6a\xd1\xa9\x53\x5f\x4a\x37\x54\xaa\xa4\x71\x37\xd6\x38\xe3\x46\xe1\x00\xfc\xec\xc1\x65\xcc\xc7\xaa\x1f\xf2\xf2\xd5\x4f\x8d\xc1\x44\x4d\x5a\x6b\x7e\xce\xc5\xbb\x3c\xee\x37\x8b\xeb\x59\x37\xf2\x47\x89\x14\x07\xf7\x5b\xfc\xd1\x5d\x39\xc2\x0f\xa0\x8c\xc4\xcb\x40\xee\x5a\x74\x31\x3f\xb7\xbf\x12\x0a\xb5\x99\xea\xae\x2e\xa0\x5e\x1f\xf4\x20\x42\x0a\x7d\xda\xaa\xb5\x0f\x04\x29\xf3\x24\xe0\x2a\x18\x9f\xfa\x86\x01\x2b\xa8\x95\x11\xdb\x7f\x8a\x8c\x7e\xab\x4b\x20\x56\xef\xef\x54\x7e\x73\xa7\x52\xdd\x13\x65\x5d\x14\xd1\x47\x0e\x26\xfb\xb5\x39\xed\xc6\xd9\x93\xa8\xbf\x46\x3d\x64\xe6\xae\x18\xdc\x84\x98\x1f\x21\xb7\x7c\xe8\x05\x03\x6f\xe4\xa6\x04\xb0\x48\xad\x4a\x1b\x55\x40\xe3\xd7\xe1\x30\xa2\x5f\x9d\x7e\x7d\x36\x1a\x78\x7d\xe6\xa7\xb8\xd7\x81\x1d\xff\xc2\xa3\x52\x64\xb9\x72\x36\x77\xc6\x07\xcc\x6a\x08\x8c\xb5\xa5\x33\xdf\xf5\x35\xb3\x2b\x4f\x91\x47\x83\x0a\x33\x5f\xda\x94\x52\x74\x9c\x62\x6b\x1f\x05\xf2\x3e\xb1\xee\x0a\xf8\xd5\xe0\x50\x61\x90\x36\x51\xc5\x8f\xfc\xdc\x9a\xcf\x0e\x61\xd0\xe1\xe1\xeb\x75\x85\xc2\x6a\x98\x4e\x4a\x4d\x3e\x47\x63\x15\x6e\x78\xc7\xa0\x55\x9f\xc2\xad\x90\x78\x0a\x00\xe1\xcf\x51\x1b\x77\x86\x18\x11\x98\x28\x74\x26\x10\x26\x94\x6f\x44\x3f\x3b\x13\xff\x24\x6a\xab\x2e\xbd\x8b\x94\xc3\xfc\x77\x25\x7a\xd7\x03\xd0\x1d\x2f\xc7\x7f\x96\x2a\x66\xd6\x12\xa5\xc4\xcd\x4a\x38\x9c\x01\xfb\x8d\xcb\xfb\x46\x36\xf0\x2c\xa2\x4f\x22\xf4\x32\xc2\xb3\x67\xd1\x18\x74\x2f\xe8\xbb\x88\x3c\x8b\xb4\xfc\xb3\x0f\x70\x3c\x89\xe4\x5e\x7f\x16\xb5\xe0\x7d\x2d\xcb\xa8\xbd\x48\x0f\xa3\xe6\x05\x30\x36\xfa\x18\x52\xe2\x42\x67\xe0\xf0\xca\x92\xa4\xaf\x7a\x03\xad\x8d\x3d\xc7\xb3\x68\xac\x7c\x20\x7e\x2f\x14\x4e\xc7\x8a\x0e\x18\xc7\x1c\xd7\xb5\x6a\xda\xd1\x2b\xe9\x31\xe9\xd8\xb1\x6c\xf3\xfd\xa1\x0a\x41\xe6\x96\x54\x8b\xf5\x21\xa2\xcf\x22\xf2\xa7\xfc\x9d\x7d\xb0\xb3\x40\xff\x54\x1a\x71\x7f\x45\xf4\x43\x44\xfe\x88\xb4\x17\x9b\xd6\x6a\x01\xd0\x24\x7f\x47\x54\x2b\xbe\xff\x13\x51\xef\xcd\xa3\xa3\xdb\x77\x7f\xbb\xe3\x11\x51\xd0\xad\x89\x71\xf7\x4f\x44\x40\xa1\x4e\x08\x9e\x17\xc1\xf6\xcd\xa3\xa3\xe9\xbf\x6e\xff\xd6\x47\xfa\xff\x61\xd4\x07\xc9\xdf\x11\x28\xd2\xd7\x44\xd7\xd8\x97\x5b\x73\x5a\xc0\xbc\xde\x54\xea\xe9\x07\xcf\x16\xfc\x27\xaa\x09\x2f\x76\x99\x5d\x6d\xe3\x34\x92\x16\xb4\xe5\x80\x94\xe4\x85\x7b\x20\x1a\x47\xb2\xf3\x05\xe1\x74\x32\xe3\xf7\x0e\x7e\xbd\x33\x1b\x8d\x38\x16\x5a\xa9\xe3\x27\x6f\x84\x10\xbf\x37\xbd\x13\x7a\x13\x15\x93\xc2\xd1\xc0\x9f\xde\xc1\x9d\x50\x84\x4e\xa4\x09\x84\x49\x56\x74\xe8\xb5\x46\x61\x0f\xa8\xc7\x4d\x83\x9b\xdb\x10\xb7\x6a\x53\x2b\x3f\xe5\x01\x50\x74\x93\x59\x7e\xcf\x1a\xf0\x8d\x46\x39\xb6\x4c\x40\x89\x2d\x1a\x14\x12\x30\x47\xe7\x8a\x8d\x0b\xba\x05\x1d\xca\xb7\x99\x36\x96\xca\x0a\xc2\x8a\x22\x3e\xef\x3a\x09\xd0\x65\xda\x28\xe3\x38\xe7\xcb\x32\x6a\xc1\x3b\xf7\xaa\x9b\xa7\x0b\xca\xe7\xe9\x82\x88\x1a\x43\x78\x96\x28\xbb\x38\x8b\x53\xde\x5b\xf5\x7c\x61\xd0\x52\xd0\x01\x87\x90\xb2\xac\x63\x3f\xed\xf8\x5b\xdc\x66\x67\x1f\x83\x6d\x16\x88\x1a\x82\xe9\x07\x5e\xe6\xd5\x12\x47\x9a\x2f\xf4\x64\x70\x77\x32\xac\xb9\x22\x05\xfb\x9b\x98\x66\xe3\xec\xec\xe3\x1c\x1c\x48\x6d\x24\x99\xe5\x8e\x2b\xc6\xa4\xa4\x93\x59\x79\x8f\x35\x55\x94\xd6\x2c\x79\x5e\x2e\x48\x41\xe3\x79\xb4\x98\xed\x9c\xb6\xc2\x9a\x10\x16\xbe\x0f\x38\x73\x6a\x71\xe6\x02\x5c\xa9\x68\xed\x7f\xd9\xf9\x58\x75\x3c\xaa\x4d\x28\x66\x54\x34\xe1\x81\xbb\xa3\x9e\x09\xab\xd0\x39\x6b\xfc\x95\x6c\xb2\x0d\x92\xf0\x94\xc3\x68\xb8\x1a\x0d\xd8\x8a\x40\x44\x63\xc7\x85\xd1\x5c\xd2\xf6\x93\x59\xd6\x58\xf0\x8e\x46\x59\xb3\x47\x52\x90\x61\xe6\x5a\xe3\x73\x9e\x2d\x24\xbe\xe6\xd4\x49\xf3\xba\xae\xc1\xb3\x59\x4d\x94\xf2\xd0\x0d\x0e\x9f\x5d\x61\xf7\x68\xff\x9c\x78\x03\x15\xf3\xc6\x8b\x8b\x6c\xef\xb7\xdf\x7e\xbd\xbb\x37\x05\xa5\x8a\xc6\xc7\x7b\x63\x1a\x33\x9f\xec\xdd\x65\x7b\xab\xc5\xf6\xa0\xde\x3f\x8f\x89\x91\xf8\xb7\xd4\xd9\x7b\x34\x97\x5c\x17\x44\xd6\xd1\x70\x4d\x14\xa3\xb6\x47\x8b\x0c\x6e\x46\x05\x13\xb5\x71\x73\xcb\xd6\x26\xa6\xa0\xa3\xd0\x13\x8f\x2a\xa6\xda\xd9\xec\xcd\xde\x7d\x03\x43\x86\xb4\x6c\x6e\x63\x6a\xe1\x15\x26\x37\xcd\x84\x56\x6f\x88\x5d\x63\xa1\xd2\x4e\xc9\x2f\x30\x25\x3d\x94\x99\xf7\xd3\xc1\x9d\x9f\x0e\x6e\x7b\x23\x60\xf2\x3e\x05\x6d\x08\x45\x9f\x1f\x60\x32\xbd\x83\x47\xde\x4f\xb7\x0f\x3d\x89\x80\x98\xcd\xc0\x28\x28\x58\xc8\x0d\x1e\xf7\x6c\xf0\xd8\xb5\xb0\x2a\xf1\xec\x97\x5f\x29\xa5\x51\x55\xfd\x72\x47\xfd\xdf\xd5\xef\xd3\x03\x9d\x10\xfd\x4e\x7f\xf9\xcd\xf7\xa3\x7b\xf4\xd7\x7f\xc1\xdb\x9d\x5f\xe1\xed\xee\x04\xde\xee\xfe\x0b\xde\xa6\x07\x07\x55\x95\xc9\x59\x2f\xc6\x1a\x50\xfb\x3e\xfa\x65\xa2\x2b\x97\x67\x25\xc2\x21\x1b\xe9\xf6\xa1\xed\x20\xba\x37\x3d\xf8\x4d\x26\xe6\xc5\x3c\x5a\x04\xd1\xbd\x83\xc9\x2f\xe6\x7d\x7a\xf7\xa0\x8a\x7e\xff\xfd\xce\x62\x24\x5f\x0e\x7e\xab\xee\xdc\xf6\x21\xcf\xaf\xbf\x1e\xdc\xbd\x03\x4d\xff\xfa\xaf\xdb\xbf\xfc\xa2\xb3\x1f\x1c\xfc\x22\xb3\x4f\x0f\x6c\x7e\x59\xd8\xbf\x73\xbb\x53\x1e\x95\x23\x3a\x25\x11\xbd\xf3\xeb\xaf\xb7\xef\x8c\x10\x9a\x4e\x0e\x6e\xfb\x11\xbe\x77\x6f\x3a\xa9\xe0\xb9\x33\x3f\x98\xe8\xfa\x7f\x99\x40\xfd\xbf\xb9\xf5\x4f\x0f\xdc\x06\x7a\x1b\xb4\x27\x9e\x7d\xd3\x58\x59\xd9\xbd\xec\x5a\x74\x63\xdf\x1f\x0e\x51\xc7\x60\xf9\x3f\xb6\x44\x06\x83\x51\xa5\x41\xf8\x2d\x33\x55\x95\xe3\x47\x04\x48\x12\xd8\x5f\xb0\xeb\x33\xfe\x82\x6d\x76\x03\xaa\xa5\x05\x78\xfd\x6d\xee\x39\x0b\xb4\x45\xe3\x5f\x80\x4e\xb1\x06\x8b\x5c\xb1\x5b\x9c\x7b\xcb\x1c\x19\xd5\x4e\xd7\x28\x53\xd3\x36\xf1\x0a\x0d\x9b\xd3\x35\xeb\x33\x88\x4f\x4d\x77\x38\x36\x6e\x7a\x53\x6c\x03\x7e\x0d\x79\xcf\x8c\x1b\xcb\xbc\x39\x27\xe9\x62\x86\x74\x48\x04\xe7\x8a\xae\xaa\x5c\xa2\x7c\xd9\x95\x75\x04\x50\xe0\xaa\x1a\xf2\x42\x2b\x6a\x77\x26\x8e\x80\xfb\x3a\xc4\x55\x68\x37\xbb\x1b\x78\xfd\xfd\x0e\xd8\x0b\x33\x35\xf1\x6d\x1a\xa5\xb1\x02\x1c\x46\x0e\xe1\x1e\xf0\x7d\x94\xd1\xac\x00\x93\x4e\x4c\xf4\x27\xf8\x12\xa2\xb4\x87\x9c\x4f\x35\x8c\x34\x5d\xe6\x24\xc3\xc6\xc8\x8e\xcf\xb3\xc5\x2c\xee\x71\xa1\x10\xfb\x7e\xda\x93\x9c\x86\xb2\x04\x15\x28\x86\x45\x09\xec\x2c\xd7\x60\xc5\x08\x1f\x25\x49\x49\xb8\x8d\xef\x0f\x77\x70\xda\x83\x5b\xc8\x7e\xe8\x6e\xc8\x2b\xca\x2a\x2c\x3a\xdd\x34\xad\xc9\x3f\x12\x43\x83\x32\x21\x06\x6e\x7d\x26\xb1\x45\xf6\x7d\x7c\xb0\x2c\xe8\xf6\x2c\x67\xd1\x27\x2e\xfa\xa5\x54\x23\x6f\xbe\xf0\x00\x43\xb9\x60\x01\xc8\x27\x98\x47\xe2\x74\x19\x47\xad\x50\x90\xae\x05\xe0\xc8\x9b\x7b\x23\x3e\xf2\x64\xb9\x9c\x6f\x38\x13\xbd\x35\xd7\x35\x89\xba\xd8\x68\x61\x12\x9a\x0e\xcb\x39\x24\x49\x17\x6f\x2c\x0a\x4d\x31\x08\x12\x15\xc0\xa9\x0d\xe6\x7c\x81\x6b\xb2\x2a\x28\xe8\xeb\xba\xa7\xd5\x1a\x66\x92\x4d\x21\x61\xb2\xc6\xd8\xc9\x52\x62\x84\xcb\xe5\x9f\x25\xcf\xaf\x5f\xe7\x7c\x15\x7f\x09\x86\x53\x02\x1b\xfa\x41\x26\x0a\xf9\xa2\xa5\x96\x81\xa7\xc4\x96\xe6\xfd\x98\xa7\x22\x4e\x79\x22\xb3\x2c\x79\x12\x5f\xc4\x82\xe7\x81\xe7\x7b\xe6\x2a\x06\x4b\x10\xf9\x94\x07\x71\x31\x56\x8f\x3a\x45\xc5\xcc\x7d\x95\x26\xd7\x10\x30\x12\x48\x86\x60\x53\x34\xc4\x43\x20\x20\xfc\x95\xa6\x24\xe6\x9b\x62\x61\x27\x7c\x38\x25\x85\x61\xe9\xdc\x60\xd6\x3f\x58\x15\x0d\x5c\x2a\x3e\xc5\x9b\x97\x65\x92\xa8\x92\x22\x8f\x23\x21\x5f\xc1\xbf\x5b\x9c\x9e\x83\xb3\xb0\x75\x33\xb7\x06\xa0\xb4\xc3\x1e\x92\x15\xd9\x90\x25\xd1\x4a\x8c\x97\xe4\x9a\x2a\x08\xb3\xab\x21\x51\x86\xd7\xb4\x44\x29\xb9\xc6\xc1\xb5\x6b\x4b\x2f\xbb\x1a\x5e\xd3\x04\x5d\x63\xb3\x87\x94\xca\x4a\x54\xa0\x6b\x79\x66\xaf\x69\x5c\x8c\x0d\x10\x45\xd7\xbd\x31\x94\xc4\x4e\x8d\x80\x85\x08\xf0\x77\xa4\x7d\x8e\x5c\x2b\xe3\x43\x03\x09\x99\xef\x0f\x97\x21\x43\x29\x59\x9a\x45\xc8\xc9\x9a\x78\x9f\xf8\xb5\x47\x56\x38\x48\x67\xd7\xd4\xf3\xea\x1e\xa1\x32\xba\xa4\xd7\xb8\xaa\x76\x9c\x2f\x5c\x56\x95\x77\x96\x65\x09\x67\x69\x3b\xb1\x8b\x42\x41\xc6\xf8\x3c\x4e\x45\x2b\x2d\x2e\x9a\xbb\xe8\xda\x86\x67\x60\xe1\x7c\x83\x96\x61\x1a\xdc\xd8\x55\x65\x1e\xbc\x41\x0c\x5d\x77\x32\x80\x37\x1c\xc8\xb2\x08\xe6\x1b\x94\x9a\x9c\x1a\x0d\xbb\xc6\x58\x29\xa8\x9e\x93\x0b\x08\x27\x6b\x3c\x02\xc3\x6c\xe9\xf6\x2f\x60\x3d\x77\x16\x06\x9f\xd3\xb9\x8e\xb9\x71\x6d\x50\xf2\x49\x78\xad\x95\xf7\x89\xa7\xbd\xa1\x19\x6f\x6c\x0b\x6b\xad\x1d\x15\x12\x5b\x38\xa7\x65\x63\x90\x7d\xd6\x22\x3b\xae\xf1\xec\x9c\x46\xe1\xd9\xb8\xc8\x72\x81\x22\x1c\x9c\x59\xab\xff\x53\x3a\x99\x9d\xde\x3b\x6f\xb0\xb5\x53\xb5\xef\xae\xe8\xf9\xfc\x74\x41\x5e\xd1\x1d\xb8\x7b\xe5\xfb\x16\xb9\xbf\x52\xde\x81\x42\xfd\x1f\x5c\xcf\xaf\x60\xcc\xc3\x58\xf5\x75\x48\xe9\x2b\x55\xdf\x47\x0a\x63\x0c\x7b\xb6\x71\x1e\xe6\x28\x25\x57\x38\x48\x83\x74\x84\x8a\xd0\x1b\x7b\xa3\xab\x40\x42\xb5\x2b\x09\xd5\xf0\x2c\x29\xd0\x05\x11\xe8\x15\xf9\x78\xe3\x59\xc1\x56\x3b\xfa\xa2\x26\x97\x05\xdd\xb9\x0c\xbb\x90\xb8\x0d\x08\x3b\x5a\x5e\x3a\x88\x94\x20\x59\x37\xc8\xc0\xd0\x9a\x3c\x2e\x8b\x99\xf5\x89\x43\x85\xd9\x22\xce\xdc\x38\x69\x7d\xcc\x41\xf3\xb5\x9f\x49\xf8\x50\x7d\x04\x8b\x60\x15\xb6\xa2\x87\x4b\xa8\x5d\x16\x14\x5c\x54\xd5\xb2\x30\xcf\x33\xd7\x0b\xb5\xcd\xe1\xfb\x1a\xa6\x76\x12\x1d\x92\xc1\xfd\xd2\xdf\xab\xb7\x6b\x3e\xd0\x19\x06\x8a\x53\x6d\x99\x98\x3c\x16\x6b\x9e\x0f\xa0\x0d\x32\x68\x6a\x25\x83\x2c\x1f\x34\x8a\x45\x96\x59\x69\xaf\x85\x4e\x77\x15\x24\x56\x73\xcd\x0c\x68\x75\x01\x34\xb1\x79\xfa\xfb\xf8\x2e\xfd\x94\x66\x57\xe9\x40\x65\x32\xdd\xdc\xe4\xd9\x65\xbc\xe4\x4b\x39\x77\xa9\x6d\xa6\xd6\x94\x65\xeb\x02\x48\x25\x3d\xbb\x2c\xb4\xc8\xca\x38\x31\xee\x55\x50\x53\x59\xaa\x2a\x2a\x90\x79\xc1\x0a\x27\xb2\xaf\xa4\x7b\xe5\xed\xc2\x33\x31\x6e\x67\x09\xbb\x09\xc1\xb2\xe8\xa4\x38\xb7\x66\xe3\x9c\x6a\x6c\x13\x43\x59\xa0\xb9\x57\x87\xce\x27\x7b\xc5\xf2\x9d\xcb\xb5\xaf\x67\x9d\x3c\xe1\x4e\x4a\xd0\x6c\x3c\x93\xe4\x5c\xd1\x4e\xe7\x6c\xa2\xec\x5c\x93\xc3\xf9\x60\x2e\xf3\xbe\x7e\xa8\x4f\xa1\x79\x08\x96\x9d\x5b\x3e\x0f\x7a\x17\x48\x7f\xb4\xe5\xf2\xc0\x81\xe6\x3b\xf8\xc1\xcd\x0d\x37\x99\xc2\xdd\xa4\xa6\xce\x26\x8d\xa8\xe5\x0f\x32\x83\x71\xa4\x0e\xc2\x91\x77\xb0\x8a\xde\xae\xb7\xb2\x84\x9d\x77\xd9\x64\x2b\xc1\x41\x3d\xfa\x46\x61\xbf\x86\xce\x33\x54\x62\x5e\x88\xbc\x1a\x6e\xe8\x49\x96\x8b\x50\xfd\x29\x2d\xf1\x1e\xcc\xa6\xb7\xd1\x9d\x6c\x61\x5f\x22\x74\x63\x27\x15\x78\x42\xb3\x9e\xfe\x64\xfa\x64\x85\x39\x45\x13\x62\xde\x30\xf2\x3c\x89\x93\x47\x05\xb2\x49\x10\xe1\xc8\xbe\x29\x0e\x0c\x61\xfa\x56\xde\x21\x7e\x72\xe3\x6b\x94\xe6\x26\xb0\xb7\x37\x8b\x15\x9f\x14\xf8\x98\x8f\x14\x40\x89\xd3\x41\x59\x84\xad\xb4\x80\x4b\x40\xaa\x70\x46\x0f\xe4\xed\x10\xfa\x4e\xbe\x86\x36\x3d\xf0\x14\x72\xee\x05\x36\x49\xf9\x21\xa0\x65\x31\x8f\x17\x33\x90\xd1\xb4\x6e\xed\x1c\x5c\x96\xc8\x69\xf7\xfd\x54\x5d\xdd\xea\xb5\x61\xb8\x44\x74\x32\x8b\x5c\xc6\x9b\x76\x2f\x50\xd0\x74\x1e\x2d\x66\x59\xb3\xbe\x8a\x7d\x28\x47\x37\x2f\x16\x55\x95\x14\x88\x91\x75\x81\xe4\x1b\x29\x48\x29\x1b\xda\x59\x03\xe2\x94\x27\x99\x39\x83\x99\x3d\x4b\xb0\x19\xcc\x04\xeb\xae\x92\xcc\x81\x35\x59\x67\x93\x66\x1a\xce\xda\x07\x55\x6e\xe7\xf0\x64\xf6\x1a\x52\xda\x68\x89\x31\x61\xcc\x1a\x68\x81\xc9\x8a\x82\xfc\x21\xeb\x82\x4f\xf0\xb6\xe2\x35\xbe\x0c\x3b\xe0\xc9\xf7\xbb\x2c\x43\x9b\x25\x5c\x8d\xa8\xbc\x26\x7f\xa3\x8a\xf5\x35\x9d\x4c\x26\xb7\x7f\xba\x7d\xe8\x7b\x41\xf3\xe5\xe1\xc1\x4f\x77\x8f\x7e\xba\x7b\xdb\xf7\x30\x49\x1a\x3c\x6d\x35\x4a\x02\xcf\xab\x31\xb9\x2e\x7a\x8c\x81\x49\x8c\xb7\xca\x6d\x8d\x23\x98\x57\xa1\x2c\x1a\xd2\xba\xbd\xf8\xb6\x6a\xdf\x47\x8c\xf2\x91\x17\x7a\xa3\x4b\xb5\x2b\xd2\xf0\xaf\x68\x2e\x16\x88\x91\x94\xc4\xd8\xc4\x26\xa6\xc2\x26\xc7\x38\x30\x8f\x97\x05\xca\x30\x89\x71\x4d\xce\x8b\x9e\xa8\x26\x3b\x0e\x9f\x64\x7b\xf6\x3e\x76\xd5\x19\xda\xb1\x52\xb7\x35\x30\x87\x6f\x29\x83\xd4\xd0\x3e\x05\xf2\x1c\xca\x0f\xda\x7c\x22\xa3\xde\x3e\xdb\xc4\xfb\x97\x93\xfd\x82\x0b\x11\xa7\xe7\xc5\xfe\x59\x99\x2e\x13\x5e\xec\x25\x71\x21\x3c\x12\xd3\x6d\x4d\x18\xdd\xda\xd8\x9a\x4d\x08\x8d\xf1\x59\xb6\xbc\x06\x3f\x3b\xea\x11\x37\x0e\x83\x55\x42\xd8\xd1\x53\x73\x2c\xe3\x5f\xc4\x45\x11\xa7\xe7\x83\x9c\x7f\x2e\xe3\x9c\x2f\x07\x03\x90\xd1\x73\x09\x80\x07\xb2\x2c\xf8\xa0\xe7\xe3\x5b\x9f\x61\xeb\x98\x6f\x85\xef\xb7\x04\x11\x3b\xdf\x71\xbf\x96\x42\x3c\x17\x0b\xba\x9b\x7b\x2e\x40\x77\xf0\xba\x40\x5a\xa4\x9e\x8e\x32\x22\x00\x85\xcd\x31\xae\xc9\xc5\xff\x5f\xd6\x44\x45\xf1\xdb\x2b\xd8\x25\xff\x3f\x7b\x49\x54\xb4\xbe\xdd\x33\xdc\x30\x15\x33\xba\x37\xd5\xca\xff\x3a\xea\xa5\x23\xf8\xb8\x67\xe3\x35\x50\x31\xcf\x16\x33\x8e\x72\xc2\x48\x8a\x18\x88\xa9\xac\x10\x41\x45\xbb\x2b\xbe\x2d\xaf\xed\x6d\xd6\xaa\xd2\x11\x46\x73\x15\xe6\xd7\x0a\x93\xca\xbd\xbd\x59\x23\x4d\x12\x61\x19\x8c\x46\x99\x22\xc8\x40\x62\x84\xe2\x79\xb4\x20\x11\x89\x31\x3e\xcb\x39\xfb\xd4\xb0\x04\x6b\x0d\x8d\xae\xba\x9c\x9f\x6e\xa7\x0c\xff\x53\x8d\xde\x32\x41\x53\x68\xe4\x75\x8e\x52\x4b\x65\x0b\xc8\x3b\x6b\xba\x6f\xae\x29\x12\x53\x1e\x66\xc1\xde\xd4\x0a\xc7\x50\x8a\x67\x88\x87\xf1\xde\x5e\x30\x1a\xc5\xf7\x32\xec\xfb\xc3\xe9\x90\xd2\x1c\xb1\x79\xbc\x90\x4b\x83\x67\x0e\x8f\xb6\xee\xfa\x88\x6e\x1c\x4f\x9c\x16\xb0\x5e\x71\x66\x75\xd8\x5e\xf5\x2d\xa5\x2e\x70\x55\xb4\xfd\x8c\x29\x38\x2d\x97\x4c\x68\x13\x0f\x65\xdd\xa1\x96\xeb\x63\xb1\xe3\x38\xe6\xf4\x74\xc9\x04\x3b\x3d\x85\xf0\x13\x4e\x3c\x5d\xe5\x80\xe5\x66\xe9\x6b\xe3\x0f\x55\xae\x58\xbc\x42\xe7\x39\x12\xf3\x74\x31\x9f\x2c\x08\xc7\xcd\xa4\x1a\x15\xb9\x9a\x3c\xdc\x65\xd5\x15\x9b\x24\x8e\x94\x6f\x97\xe3\xa2\x27\x74\x7e\xab\x87\x24\xa5\x5f\x0a\xb0\x39\xb2\xe1\x4f\xd2\x7b\x13\x85\x23\x51\x6e\x3d\xbd\x84\x5c\x49\xfe\x82\x87\x96\xf5\x99\x92\x29\x26\x7b\x7b\x76\x78\x64\x38\xd1\xa7\xe4\xd3\x7f\xde\xea\x20\xbd\x37\xb1\x61\xf2\xe5\x80\xa7\x0b\x55\xd7\xfd\xde\xb3\xf0\xa5\x40\xed\xfa\x04\xfe\x7d\x6f\xaa\x4a\x1c\x75\xa7\xb7\x51\x83\x69\xf2\xe7\xb2\xfd\xd4\x69\x3f\xbf\x37\x09\xd1\x68\xd4\x8c\x46\x4b\x02\xe6\x82\x70\xa3\x61\x39\x9f\x2e\x28\x57\xf1\xf3\x1b\x85\x93\xf7\x45\x33\xc6\xbd\x29\x49\xfb\xce\xbf\x55\x99\x03\xff\x47\x08\xcf\x46\x23\x7e\x2f\x9d\x59\x09\xe6\x9c\x2f\x94\x66\x4f\xc1\x05\xca\xe5\x62\xe7\xf3\xe9\x02\xd7\xf5\xfb\xc2\x59\x57\x28\x4c\x3f\x16\xa4\x95\xaa\xf4\xc5\xe8\x71\x27\xf9\x9c\x0b\xfa\xa9\x93\xb6\x66\x05\xbd\xdf\x49\x2b\xb8\xa0\x47\x05\x4c\xdc\xeb\x82\xbe\x57\x4f\x6f\xbf\xb1\xa3\x41\xe9\xa8\xd8\xdd\xd5\x6f\x7e\x64\xd1\x4d\x77\x1d\x37\xc5\x4d\x45\x5c\x4f\xbc\xaa\xef\x69\xef\xc2\xb7\x2a\x94\x83\xb4\x81\x54\x9f\xff\x40\xfe\x35\x2b\x80\x1f\xfb\xb2\xa0\xeb\x1c\x7d\x4d\x55\x4c\x53\x4c\x6e\xc1\xbb\x82\x39\xc4\x53\x9a\x0e\x9a\x25\xf1\xe2\x1b\x53\x71\xab\x08\x6f\x15\x8d\x46\xc4\xce\x94\x3c\xb8\x71\x4a\x54\x47\xac\x2d\x7b\xab\xda\xb9\x58\xec\xcc\xcd\x1e\xe5\xe1\x34\x98\x10\x5e\x93\x47\xdf\x95\x26\x28\x3d\xb9\xef\x2e\x87\x84\xcc\xb7\x0a\x73\x3c\x78\xd3\xac\x77\x7a\x9a\x64\x4b\x56\xac\x4f\xd7\xf2\xc7\x32\x69\x4e\x4f\x55\xcc\x57\x7d\x4c\xad\x4c\xec\x51\xd1\x78\x10\x0f\x65\x3d\x86\x13\x49\xbe\xfe\x58\x5f\x0f\xbf\xdf\x57\x63\x37\x51\x84\x0d\xca\x21\x5b\xfa\xea\xb4\xad\x26\xfd\xf3\x0f\x1c\xff\x9d\xf9\x1d\xb9\xcb\x12\x4e\x82\x29\x01\xa5\xee\x5b\x85\xc1\xaf\x24\x1a\x13\x7e\x63\x62\x82\x1d\xb8\xf0\xf8\x7f\x12\x2e\x3c\xde\x85\x0b\x2f\x0a\xf2\xb8\x07\x2e\x3c\xe8\x24\x4b\xb8\xf0\xae\x93\x26\xe1\xc2\x61\x27\x4d\xc2\x85\xcf\x0a\x1a\x3c\x29\xe8\x63\xf5\xf4\x6c\xf7\x30\xa8\xfd\x4e\xda\x07\x63\xab\xfc\x62\xf0\xab\xc1\x93\x82\x5c\xb0\x8d\x7c\x44\x2f\x8b\xaa\x7a\x5d\x60\xa2\x58\xfc\xfa\xab\x56\xe2\xfb\xd0\xbb\x03\x34\xc3\xc0\x6c\x4b\x2b\x1b\xe0\xae\x44\x80\xbb\x5c\x7f\xde\x92\x0b\xc0\x8a\xc1\x90\x4e\x4f\x81\x8b\x19\x68\x5a\x57\xa8\x56\xff\xbc\x61\xab\xec\xec\x93\x0f\x20\xdb\x4a\xe7\x3b\x1a\xdf\x3c\x34\x49\x81\x27\xc7\xec\x2d\x82\x74\x7c\xc1\x36\xaa\xfe\xbf\xfa\x46\xf5\x67\x61\xfc\xd5\x7d\x03\x16\x36\xe7\x1d\x2a\xfa\xa3\x17\xb6\x39\x35\xb9\x80\xf0\xef\xef\x65\xd6\x50\x50\xb9\xce\xec\x9f\x82\x26\x37\xf8\x5f\x91\x5d\x6a\x9c\x83\xc8\xcd\x28\x6c\x38\x11\x75\x7c\x54\x1e\x4a\x73\x38\x3c\x9d\xa3\x20\x92\xff\xc1\xa3\x20\x92\x9d\xa3\xf0\xac\x20\xad\x54\x7d\x14\xfe\xea\x24\xcb\xa3\xf0\x47\x27\x4d\x1e\x85\xbf\x3b\x69\xf2\x28\xfc\xa3\x0e\x00\x4f\xa8\x48\x14\xab\x3a\xf9\x01\x30\x23\xf1\x61\x57\x5c\xf6\xba\x68\x3c\x15\xb8\x99\x86\x2f\x41\x86\xaf\xa6\xe2\xde\xf4\xee\xdd\x46\x57\xc9\x41\x42\x9c\x0b\x66\x34\x52\x13\x0e\x49\xb3\x4e\xb3\x70\x45\xf3\x04\xe5\x96\xae\xe8\x5b\x33\xea\xd4\xe0\xac\x55\x9e\xdc\x00\x82\xf5\xc5\x6f\x63\xcd\x38\x57\x76\x9d\xef\xae\xc1\xdb\x82\xe4\x3d\x6b\xf0\xa6\x93\x2c\xd7\xe0\x69\x27\x4d\xae\xc1\xf3\x4e\x9a\x5c\x83\x54\xcd\x7c\x96\xd0\x5c\x3d\xc5\xbd\x4a\xb0\xed\x2b\x5f\x0d\xfc\x1b\x90\x1b\xeb\x19\x00\xda\xec\x07\x2a\x34\xa7\xa7\x31\x89\xfa\x4f\x76\x77\x67\x8d\xcc\x2e\x57\x9e\x25\x97\x4b\xf0\x24\x87\xeb\xd2\x1d\x3a\x5b\x2e\x69\x2b\x41\x6e\x09\x1a\x27\xa4\xec\x4e\x1a\x53\xd3\x12\x25\xb4\x54\x4f\x45\x77\x93\x36\x94\xc6\xde\x94\xe4\xfd\xa4\x6a\x7a\x2f\x07\xd2\x83\x23\x1b\x80\xa1\x09\x1f\xa9\x1f\x34\xaa\x9d\x74\xeb\xb7\x7a\xc4\x72\x96\xb8\x86\x31\xab\xe4\x06\xc6\x97\x22\x87\xa7\x7e\x0a\xce\x77\x34\x11\x18\x59\xaa\x43\x9e\x8c\x72\x48\x23\xdf\x1f\x22\xe6\xfb\xd1\xef\xdd\x38\x94\x85\x72\xd5\x22\x09\xb2\x44\x3f\x72\x50\xfd\x2b\x7c\x3f\xb1\xbe\x6e\xc1\x8b\x9f\x1c\xa6\xea\x8c\x1c\xf9\x86\x0e\x27\x64\x49\x0f\xfc\x14\x42\x1a\x45\x89\xf5\x0c\x91\xe5\x28\x6e\x0e\x8b\x7a\x04\x32\x65\x34\x5a\xdd\x2b\x35\x38\x5a\x53\x31\x5f\x2d\xc8\x25\xe5\xf3\x15\x50\xd1\x39\x96\xc9\xd7\x94\x85\x39\xba\x24\x6b\xb2\x22\x9c\x08\x12\xe3\x20\x47\x6b\x72\x49\x56\x04\x68\x4f\xdc\x12\x69\x29\x19\xf9\x35\x8e\xb2\x54\xc4\x69\xc9\x67\x1b\x3a\x9c\xce\x14\xf9\x1d\xaf\xd0\x52\xfb\x85\x4d\x76\x7d\x66\xcb\xf4\x24\x41\x4b\xc2\x25\x99\xb6\x96\xf7\x59\x55\x65\x68\x2d\x89\x53\x92\x4b\x22\xde\xca\x22\xb5\x36\x13\xb8\xb2\xde\x3a\x0d\xd4\x46\x44\xbc\x1e\x52\x7a\xe9\xfb\xc3\x0c\x3a\xaa\x8b\xb7\x72\x1a\x5f\xab\xcd\x6d\x45\xec\x33\xc7\x64\x53\x93\x4d\x42\xbf\xa6\xe3\x77\x71\x2a\x7e\x03\x52\x14\xe6\x79\x99\xf4\xdc\x7d\x70\x3c\xb4\x8f\x6f\x80\x1c\xcd\xcd\xd7\xc7\xaa\x91\x14\x79\x3a\x1f\x8d\xf8\x82\xce\x73\xa2\xd8\x33\x9a\x3a\x58\xff\x37\x54\x6f\x2b\x17\xaa\x62\x72\x99\xd0\xc3\x34\x3c\x4c\x9b\x63\x65\x02\x7e\x5d\x27\xf4\x32\x09\x2f\x13\x25\xce\x7e\xb5\x32\xfb\x05\x24\xfa\xfd\xdb\x9b\x30\xbc\x2d\xae\x62\x70\x96\x87\xb7\x11\x2b\xb8\x1b\xe9\x81\xbd\x8f\xf9\xd5\xc2\x0b\xc0\x35\xd5\xd9\xb5\xe0\xca\xc2\x73\x48\xb9\xf3\x56\x55\xea\xdb\xab\xd5\xaa\xe0\xc2\x7c\x53\x6f\xcd\x49\x10\xd4\xb8\x18\x20\x12\x20\xab\xc7\x59\xab\xc1\x56\xb8\x92\xc0\xd0\xf9\xdf\x6a\x78\x18\x03\x83\x6e\x93\x80\xf5\x84\x7a\xe2\x18\xe3\x76\xbd\x87\x0a\xd5\x5a\x78\x41\x77\x7c\xbc\x9b\xa6\x5c\x22\xda\xd6\x07\xe7\x39\x1a\x09\x32\xe2\x9d\x1a\x81\x23\xd8\xe4\x12\xe0\x8b\x92\x52\x0e\xff\xbe\x2f\xac\x95\x0f\xe5\xe6\xb1\x5d\x81\x51\x18\x6c\xb7\xae\xb4\x30\x9c\x7a\x29\xe5\x23\xcf\x6b\x17\x7d\xc1\x64\x39\x25\x7b\x59\x26\xed\x6f\xc7\x5c\xe8\x6f\x11\x9d\xfa\xe0\x1c\xbf\xac\x2a\x54\xd2\x75\x82\x89\xda\x6c\x43\x7d\x1b\xfa\xfe\x30\xea\xc2\x29\xa6\xe1\x14\x00\x27\x17\x32\xcd\xf2\x8a\x1e\x10\x66\x41\x8e\x02\xab\x74\x95\x20\x88\xbc\xaa\x42\x3c\xe9\xed\xd4\x84\xb5\x6b\x8e\x62\xb7\x9b\x80\x08\xab\x7d\x75\x6d\x41\xe0\x75\x62\x54\x91\x28\x35\xcf\xdc\x20\x07\x06\x96\x5f\x7c\xe7\xae\x30\x50\x19\xbc\xb3\xb5\x2f\x0b\x31\xcf\x46\x5a\xef\xbe\x31\x33\x50\xfc\xd2\xee\xd9\x30\xf8\x8f\x8b\xf5\x3e\xce\x25\xd1\x95\x07\x17\x09\xca\x81\xbd\xa6\xef\x8d\xd3\xff\xf8\xf6\x22\x19\x9d\x40\xa8\x2f\xd3\x33\xcb\x71\x4d\x17\x33\x0e\x62\x11\x88\x02\x10\xcf\xb3\xd1\x68\x41\x99\x45\x90\x62\xd5\xe2\x55\xb2\x6b\x25\x36\x5f\xd4\xe4\x55\xb2\x4b\xc7\x6e\x34\x05\xfb\xb4\x78\x68\x23\xc7\x91\x8f\x89\x13\x96\xc9\x21\x73\xd5\xba\x14\xe4\x4b\x42\x3f\x26\x61\x0f\x8e\x61\xc6\x32\x5f\x04\x48\x50\x6b\x4d\x4d\x4e\x13\xf4\x11\xce\x60\x9f\xdd\xff\x2b\xb3\xae\xca\x83\x3d\xae\x83\x2b\x75\xef\x3f\xec\xc5\x63\xce\x64\xce\x38\x23\x5f\x12\x5c\x93\xe3\x9e\x21\xf5\x90\xe6\x9f\x7e\xe4\xee\x7e\x08\x3d\x8c\x68\xe9\x5c\xdc\xd1\x50\x26\x73\x6c\x3d\x9f\x0f\x59\x73\x28\xcc\x42\x16\x34\x9a\x15\x96\x37\x9d\xd0\x72\x5e\x28\xae\x34\x62\x61\x02\x16\xca\xc1\xb1\xd9\xaf\x24\xc1\xcd\xf5\x5f\xab\xab\xdc\x5e\xff\x9b\xd6\xf5\xbf\xf2\xfd\x8d\xd9\xfb\x2b\xb8\xfe\x37\xe6\xfa\x87\x38\xcc\xfd\x37\xbc\xe9\xd4\x9a\xb2\xd9\x68\x54\xdc\x8b\x74\xb7\x2e\xa9\x98\xab\xae\x2d\xc8\x35\xe5\xf3\xc4\xb9\xf2\xcf\xe1\xca\xbf\x26\x97\x24\x69\xae\xfc\x4b\x72\x4d\x12\xe7\xca\x1f\x36\xaa\x5e\xe7\xe1\x25\xa5\xf4\x5a\x5e\xd7\x32\x97\xba\x6f\x83\x73\x8c\xb7\xcb\xe6\xca\x5d\x57\x15\x5a\x53\xcf\x8d\xfe\x4e\x69\x02\xbe\xa9\x96\xbe\x3f\xd4\x0a\x80\x17\xed\x98\x51\xe4\x8c\xb6\x62\xb5\xcf\x2e\x28\x3d\xab\xaa\x21\x6a\xd5\x03\x91\xb3\xfa\x52\x79\x2b\xde\xb5\xa5\x6f\x2f\x7c\xff\xc2\x25\x60\x2e\x7a\x03\xb3\x9c\xf9\xfe\x99\x9b\xeb\xac\xaa\x90\x1c\x0f\xfe\x1e\xf2\xb0\xac\xc9\xfd\xc4\xb0\xe2\xcc\xad\xe8\x61\x72\x64\x13\x4d\x0c\x77\x4c\xde\xdb\xb4\x63\x2e\x3c\x4c\x5e\xdb\xf7\x0f\x9c\x7d\x52\x7c\xbc\xb7\x09\x8d\x73\x74\x3f\xc1\xe4\x0d\x3c\xbd\x2c\x30\x79\x0a\x4f\x47\x09\x26\xcf\xe1\xe9\x7d\x82\xc9\x4b\x78\x7a\x9d\x60\x72\x2b\xa1\x7f\xa7\x33\x74\x3f\x71\xbc\x16\x35\xd7\xf3\x90\xde\x4a\xe0\x1e\xbc\xaf\xff\x1c\x87\x41\x53\x8c\x71\x55\xbd\x2c\x9c\x82\x70\x81\xd8\x32\x2f\x0b\x5c\x55\x47\x6e\xc5\x7a\x30\x3a\xcf\x51\x62\xad\xaa\x65\x4d\xef\xdd\x9c\x70\xdd\xd8\x9a\xde\x27\xb8\xaa\x5e\xbb\xdf\xf5\x90\x9d\x3c\xaf\xc1\x17\x1a\xba\xd5\x87\x17\xfd\x9d\x2a\x1b\xc8\x9d\xf8\x72\x94\xf2\xb0\xb5\x8b\x0c\xbe\x93\xd3\x34\x8c\x73\x94\x82\x5b\x4b\xd8\xed\x1a\x95\xc9\x15\x2a\x33\x78\x9b\x04\x1d\x4d\xfd\x66\xd6\xe0\x4a\x1a\xbc\xd9\xc9\x01\x1d\x56\x1f\x9f\xee\x7c\xb4\x73\xa3\x32\x3c\xdf\xc9\x00\x53\xa2\x3e\xbe\xdc\xf9\x68\xe7\xa3\x91\x5c\x69\xf6\x6d\x42\x6f\x25\xe4\xc1\x8f\x01\xbb\x47\xdf\x06\x76\x70\x4f\x91\x52\xfe\x73\x09\xee\x58\xd8\x0d\x1a\x18\xbc\x00\x48\x58\xd0\xb2\xf7\x13\x97\x74\x4a\xcf\x22\xa0\x88\x3a\xd9\xb5\xe0\x56\x7e\x88\xc2\x9d\xdc\x41\x84\xc9\xaa\xb7\x92\xe2\x86\x4a\x8a\x9e\x4a\x0a\x09\x32\x23\x4a\x41\x57\x71\xe3\xfb\xcf\xc0\x24\x03\x28\x8b\x67\x39\xe2\x0e\x9d\xc5\x24\xa9\x94\xd0\xe1\xb4\x56\x39\x87\x16\xab\x88\xab\x0a\x29\x77\xab\x59\x82\x09\xab\xaa\x7f\xe0\x1e\x5f\x25\xad\xb9\x0b\xce\xd5\x7b\x64\x53\x14\x48\x9c\xfa\xa9\xd6\xf0\x5f\xd2\xc4\xf7\x1f\xd8\xab\xcc\x3b\x3d\xbd\xca\xd9\x66\xa3\x89\xf3\x35\x5d\x35\x5f\x79\xe7\xab\xac\x6a\x59\x55\x46\x25\x9a\x2e\x43\x1d\xa6\x19\xe1\x40\x90\x6b\xba\x0e\xb9\x7d\xb7\x0c\xac\x76\xbf\x5d\x40\x6c\x88\x9d\xe1\x70\x23\x91\x84\x56\xbe\x4f\xed\x61\x69\x14\xe5\x5d\xd2\xab\xb4\xdd\x78\xe6\xa1\x94\x82\x02\x0f\x5c\xef\xdc\xa8\x12\xa5\x55\x35\x7c\x90\x2b\x7b\x89\x07\x39\x84\xe0\x1a\xca\x6b\x2a\x1d\xd2\x34\x78\x94\xd8\x8a\x44\xd3\xd2\xd7\xdd\xbd\x69\x02\x7c\x3a\xf2\xd3\x8c\x30\x3a\xcc\x67\x56\x0e\x6b\xc9\x84\x58\xb1\x20\x1a\xcc\x62\x96\xd9\x7b\xb7\x54\xb6\x0d\xf1\x4a\x52\xd9\xe5\xfc\x60\x11\x96\xf3\xe9\x02\xcc\x38\xcb\xf9\x64\xb1\x08\x86\x48\xfe\xc3\xdd\xd1\xdc\xc0\x60\x22\xe8\x0a\xb6\x23\x8a\x54\x4d\x78\x3e\x59\x90\x82\x8a\x79\xb4\x20\xf2\xe2\x9c\xba\x75\xc3\x26\xb3\xf7\x61\x21\x69\xfb\x68\xd0\xa9\xda\x6a\x2b\xaf\xf4\xf4\x37\x17\xee\x86\xe6\xa8\x20\x09\x89\xe0\x7e\x5d\x75\xef\xd7\x4d\xf8\x2e\x41\x09\x29\xc8\x6d\x92\x93\x15\x0e\x36\x4e\xad\x66\x71\xb5\x70\xe6\xb0\x9f\xd7\xa3\x82\x33\xfe\x93\x5a\x0e\xe9\xe7\x76\xbe\xc6\x1e\x34\xce\x14\x54\xe5\x2d\x99\xad\xc1\x6f\x95\xba\xa8\x98\xe7\x8b\x19\x18\xda\xcc\xe5\x7a\x1e\x26\x28\xc3\x8b\x06\x46\x29\x03\xf6\x1b\x98\x28\x8d\x68\xbd\x13\x3e\x32\x05\xd3\x5a\xb1\xa0\x80\xda\x34\x1c\x05\x5e\x55\xa0\x86\x66\x65\xe7\x18\x6b\xf6\xfa\x93\xbe\x5b\xe1\x73\xe2\xe0\xe0\xd3\x46\xd8\xeb\xfb\x7c\x3e\x59\xc8\x6d\xf0\x38\x41\xf0\x38\x59\x10\xf8\x9f\x2e\x1c\x77\xcf\x4e\xaf\x14\x07\xe2\xab\x8d\xc5\xac\x1a\x7d\xd6\x37\xc1\xbb\x36\x8e\x55\xf5\x20\x07\x59\xd8\x0e\x11\x43\xd5\xc5\x55\x93\x0f\x09\xdd\x3f\x19\x57\x27\x73\x14\x06\xf3\x7f\xcf\x4f\x16\x8b\x9f\x2b\x34\xf7\xfe\xef\x05\x46\x61\x80\xc2\xe1\xc9\x14\xcf\xff\x7d\x72\xb2\xa8\x4e\x4e\xc6\xf8\xe7\xf0\x64\x8a\x4f\x16\xfb\xe4\xcf\x84\xee\xff\xfb\xe4\xea\xe7\x5b\xfb\x8a\x19\xdf\x9d\xe6\x78\x85\x00\xa2\xb7\x69\xb5\xb4\x2b\x76\x18\x22\x23\x6b\x80\x99\x37\x03\x50\x2f\x46\xd6\x00\x6f\x36\x96\xd9\xf0\x19\xc4\x6b\xad\x2a\xf4\x67\xa2\x5c\x35\x03\xd2\xf5\xc1\x79\x51\x79\xb9\x0a\x76\x38\xb0\xba\x1b\x2e\x5f\xf1\x8f\xc4\xf6\xb3\x3f\x86\xb9\xad\xa3\xe7\x33\xbf\x41\x7d\xfc\xcb\x06\xdc\xa3\x38\x5a\xe3\x56\xf5\xba\xa3\x6f\x94\x37\x0a\x45\x24\xa3\x3c\xe4\xc6\xd2\x67\x1d\x17\x24\xc7\x01\xf0\xe0\x63\x9a\x8e\x23\x16\xad\xb9\xf2\x1c\xbd\x66\x05\xca\x2c\xf7\x49\xa1\xe4\x99\x51\x67\x13\xed\x0a\x1a\x79\x02\x54\x40\x15\x26\x9e\x11\x86\xab\x2a\x26\xac\xee\x7e\x4f\xf9\x15\xfa\x23\x19\x1f\xc9\x97\xaa\xe2\x09\x26\x69\x6d\xde\x29\x57\x74\xcf\xdf\x09\xfd\x43\x3d\xfd\x93\xd0\xfd\xf9\xbf\xc7\x72\xaf\x8c\xd4\xc6\x41\x7b\xe1\xc9\x72\x84\xc2\xe0\x64\x7c\xb2\x1c\xe1\x10\x9b\x2d\xa4\xf7\xd0\x41\x6b\x0f\xe1\x93\x03\x7c\xb2\xa8\x50\x48\xa1\x44\x75\x32\x3f\x81\xdd\xa6\x1f\xab\x5b\x18\xef\x9f\x13\xb1\xa2\xfb\x27\x27\xe8\xe4\x04\x87\xfb\xe7\x84\xaf\xfa\x70\xaf\xa4\x1b\xb2\x4e\x8f\xeb\xd7\xc9\x04\x8c\xb5\x15\xcb\x20\x35\x72\x0f\xa2\x98\x51\x12\x99\x87\x79\xb5\xb0\x02\xed\x04\xac\xe6\x92\xd0\xd5\xdf\xc1\x54\x76\x27\x52\xa1\x36\x7d\xf3\x3c\xe5\x02\x56\xd9\xf8\xfe\x93\xb4\x18\x8a\xda\x40\x59\x67\xcd\xc3\xcc\x66\x14\x2b\xe2\xdd\x9a\x7a\x38\x48\xab\x4a\xb9\xa4\xe5\xd6\xab\xc8\xea\xbf\x40\x9a\x2b\xce\x5c\x8e\x0d\x71\x9e\x81\xb1\x7e\xc3\x65\xb6\x9a\x99\x35\xc9\x57\x37\x71\xe2\xb2\x15\xcd\x57\x61\xbe\xb2\xd6\x9f\x2e\x2b\x8e\xad\x5a\xd7\x71\xbf\x9f\x4a\xde\x32\xd0\x7c\xec\xa0\x3b\x83\x74\x05\xa4\xe0\x48\x21\xbd\xcf\x12\xe7\x53\xb6\x0a\xb3\x95\x61\x9d\x48\xac\x58\x8b\xcd\x47\x56\xa3\xd4\x9b\x78\x54\x82\x81\xe9\x3e\xa7\x74\x6f\xba\x3f\x09\xbd\xbd\x89\x17\x68\x86\x65\xb9\xea\xf5\x88\xaf\xe7\xc9\xf3\x02\xb6\xb2\x57\x4e\xd4\x9d\xdd\x16\xa3\x44\x04\x7f\x29\xc8\x10\xce\xc5\x22\xe0\x2b\x54\xae\x1a\x9e\x49\xb1\xea\x5a\xa6\xec\x7a\xa9\xaa\xaa\x67\x4e\x3c\x69\x6d\x83\xce\xa9\xe8\x0c\x85\xcb\xa1\x08\x77\x28\xfa\xc2\x4a\x6e\x5e\x7c\x49\x39\x20\x4e\x23\x35\x8f\xd8\xde\x8c\x06\x32\x2a\x76\x11\x15\xf3\x62\x85\xf8\x3c\x1d\x8d\x16\xd8\x6e\x61\x09\x41\x29\xcd\x43\x61\xd4\x07\x14\xbf\x7e\x75\x03\x07\xc9\x4c\x9d\xd6\x46\x48\x56\xc8\x75\xe6\xd2\x38\x64\x0e\xd3\x40\xeb\x69\x6d\x6e\x98\x56\xdb\x3b\xee\xc0\x62\xb3\x16\xcb\xdd\xf6\x1b\x17\x07\x7b\x53\x92\xf5\x8c\x97\xc4\x92\x98\x1f\x8d\xf2\x7b\x99\x65\x41\xc1\x80\xf3\x85\x46\x58\x94\x96\xa0\x9a\x12\x24\x08\xc3\x5a\xf1\x6e\x26\xe7\x86\x59\x0c\x21\xae\xaa\xd1\x28\x1f\xd2\x2c\x8c\x83\xe1\x10\x65\x3d\xe7\x0a\xfb\xfe\xfb\x1c\x42\xc1\xbc\xc9\x11\x83\x70\xd7\xea\x5a\xab\xaa\xcf\x79\xb3\x2f\xd6\xdf\x1b\xfb\x12\xe6\x8f\x6c\x56\xba\xc0\xe5\x0d\x05\xe4\xde\xc3\xbe\x7f\x28\x8f\x81\x44\x10\x8a\x15\x78\x0c\x6a\x23\x06\x6a\x76\x56\xab\x96\x86\x95\xeb\x23\x3b\x07\x7d\x8a\xb5\xca\x10\xbc\x93\x18\x6f\x4e\x6e\x1b\xcc\xe1\xba\xf7\xac\xf4\x30\xc0\x34\x5a\xdd\x28\x8e\x89\x85\xae\xe2\xfc\x47\xab\x48\xd4\xd2\xe9\x62\x17\xbd\xc5\x60\xcc\xe1\xf5\x4a\x0d\x16\x07\xe7\xcd\x51\x3d\xeb\x2b\xd0\x67\x2d\x11\x1a\xe5\x03\x11\x5e\xe5\xc1\xae\xd3\x9c\x50\x1d\xee\xcb\x15\x82\xf8\x58\x10\x1b\x2b\x78\x02\xa6\x95\x17\x4d\x73\xa7\x37\xac\x4a\x5b\x0d\x53\x91\x05\x8f\x81\xb0\x38\x2b\x82\x57\x05\x68\x56\x4a\x22\xa8\xd1\xdc\xcd\x00\x59\x3b\x93\x78\x35\x50\x3e\x6d\xd5\x49\xb9\xcd\xaf\x73\xb8\x1d\x80\xb5\xd8\x60\x25\x57\xb2\x33\xdb\xbf\xa2\x7e\xef\x6f\x65\x3b\xb2\x47\x1b\xd9\xb7\xce\x45\xdb\x61\x32\x1a\xb5\x8b\xb2\xe0\xf9\x18\xfc\x3f\xcd\x52\xf0\x5c\xd2\x9b\x9f\x7a\x87\x9c\xe5\x3c\x1f\x78\x8d\x31\xba\x63\xc4\xae\x4d\x03\x5e\xad\xe8\x56\x05\x4b\x39\xd6\xaa\xcc\x1e\x89\x97\x81\x57\x34\x6f\x51\x96\xb6\x7c\xfa\x7a\x3a\xda\xf6\xc3\x65\x2c\xb2\x3c\x18\x4e\x55\xf8\x62\x15\x2d\x6e\xbe\x30\x53\xb7\x65\x9b\xcd\xd3\x74\x95\x05\xaf\x56\xa4\x10\x59\xce\x03\x68\xa8\xd8\xb0\x88\x2f\x83\xe1\x04\x42\x1a\xf0\x60\xab\xe3\x16\x28\x27\xfc\x69\x2c\x94\xbd\xc3\x52\xd6\xab\x15\xdd\x83\x6d\x5d\x93\x73\xae\x3d\x15\xe9\xfc\x7d\x44\x89\x8e\x39\x50\xb7\xea\xe9\xcd\xe8\x64\xa8\xdd\xee\xf7\x64\xbe\x62\xc0\x38\x3a\xe6\xd6\x2b\xa3\xd2\xf5\x46\x62\xac\xfb\x87\xc7\x17\x6c\xd3\xe7\x9b\x71\x20\xc6\xb6\xee\x1a\x63\x8c\x95\x15\x0a\x86\xd1\x1c\xaa\xc2\x87\xd7\x0f\x4d\x96\x5e\xf3\xe8\x1e\x76\xf6\x4d\xbd\xb8\xd9\x49\xa4\xdb\x11\xb9\xc3\x6a\xd3\x95\x1b\x14\x81\x41\x8c\x04\xd1\x71\x12\x7e\x94\x5d\x6c\x58\xce\x91\x92\x2d\x81\xa3\x33\xe8\xff\x31\xcf\x2f\x79\xfe\x28\xcb\xff\x28\x8e\x92\x98\xa7\x62\xc7\xa1\x4b\xe3\xf4\x45\x2f\x4c\x99\xab\x68\x3b\x05\x14\x75\x83\xaf\xe8\x40\xd3\x35\x61\x50\x43\x11\x6c\x93\x8c\x2d\x8f\xba\x4b\x2d\xfb\x88\x26\x44\x80\x7f\xe3\x58\x60\xe4\x3d\x7f\x75\xff\xc1\xe9\xd1\xab\x97\x8f\x9e\x3e\xf6\xc0\x39\x51\xb3\xb2\x7d\xd3\xf9\x20\x45\xb7\xd2\xf1\x05\xcb\x3f\x35\x43\x1f\x70\x64\x6d\x56\xad\x02\x5d\x3a\xbe\xca\x5b\x8b\xaa\xef\xef\xd9\xcc\xb0\xf8\xf8\x78\x93\xf3\x4b\xca\xc7\x29\xff\x22\x34\xbb\x6f\x12\x58\x5a\xcf\xf4\x91\x40\xb8\x9e\xb8\x00\x27\x80\x44\xe5\xa6\xb7\x49\x8e\xbc\x15\x17\xd1\x5a\xef\x02\x4f\xc9\xf7\x06\xb7\x83\x14\x79\xc7\x0f\xdf\x9e\x3e\x7d\xf9\xf4\xed\xd3\xfb\xcf\x9f\xfe\xf3\xf0\x81\x47\x86\x13\xfd\xf9\x17\x25\xae\xe3\xe9\xd2\x8a\xe8\xf8\xb8\x10\xd9\x06\xe1\xba\xc6\x5a\xbc\x21\xf7\x97\x5b\xf7\x7f\x65\x1e\x94\x28\xed\x7f\x7a\x36\x32\x0a\x02\x20\x30\x4b\x95\x00\x73\x9c\x67\x99\x78\xac\x12\x30\xd1\x55\x1e\x98\x49\xfb\x95\x9c\x17\x68\x6b\x6c\x32\xb2\x71\xdf\x1e\x24\x67\xd9\xf2\x5a\xc2\x0b\x3d\x61\xbf\x06\x07\x93\x29\xa5\x14\xc5\x94\x8f\x0b\x9e\x0a\x6c\x43\x9c\x20\xc4\x68\x0c\x1e\x1c\xed\x09\x0a\x11\xeb\x17\x80\x8b\xb1\x81\x87\x37\x7d\x8f\x53\x01\x06\x58\xa1\x18\xcb\xab\x8a\x1a\x62\x38\x10\xda\x6b\x7c\xfb\xab\xd1\x86\x13\x63\x49\x1a\xb7\xbf\x19\x62\x59\x16\x8d\xd3\xf3\x84\x1f\xad\xb3\x38\xe2\x9d\x0a\x9c\x2f\x32\xe7\x45\x99\x88\xb8\x2f\xa3\xf3\x41\xe6\x53\x89\xa5\x32\xf2\xf5\x6a\xe5\x81\x57\xef\xb9\xc3\x77\x2f\x1f\x3c\x7f\x78\xec\x49\x3c\x2b\xe8\xa6\xcd\x17\x92\xb0\x51\x2b\x31\x3d\x50\x22\x18\x35\xc7\x77\x03\xbd\x52\x77\x09\x1f\x8b\x09\x90\x64\x72\x4b\x1c\x60\xb9\xcb\x8b\x75\x76\x65\x9d\x47\x6f\x75\x28\xd2\x47\x2a\x80\x8c\xc8\x06\xb0\x51\x07\x7a\x01\xc6\x9e\x89\x7b\xe3\x2d\x59\x7a\xce\x73\xaf\x26\x5b\xb9\x27\x82\xe1\xc4\xac\xe8\xf4\xe0\x3b\x67\x40\x85\x73\x99\xcf\x0f\xc8\xdd\xc5\xc2\x1e\x88\x82\x5d\xaa\x89\xe9\xf7\x02\xd2\x7b\x1e\x2c\x89\xef\x1a\xcd\xdf\x7c\x26\xd2\xee\x99\x48\xd5\xb4\xa4\xbd\x67\x22\x6f\xce\x44\xe6\x9e\x89\xd8\x39\x13\x8c\xb6\x8e\x04\x29\x61\x13\xc3\x46\x04\xfd\x9f\x0d\xbb\x96\x60\x52\x9e\x1d\x06\xae\xca\x64\x73\xb7\x89\x6a\x90\xde\x21\x17\xce\x79\x89\xbf\x75\x5e\x94\xf7\x81\xc8\x1e\x9b\x3b\xe6\xd8\x14\x92\xf2\x6e\x1d\x9b\x42\x1d\x19\x28\xe1\xfb\xb9\xda\x25\xc7\x0f\xdf\xbe\x7d\xfa\xf2\xf1\xf1\xe9\xfb\xfb\xcf\xdf\x3d\xf4\x88\x9b\xc9\x59\x41\xd3\xb3\xe9\x6d\x77\xff\x4c\x27\x81\xee\xfa\x74\x42\x52\xb9\x83\x52\xbd\x83\x6e\x63\x92\x7d\x77\x07\xc9\x95\x1d\xfc\xef\xff\xd7\x62\x39\x25\xcc\x65\xc2\xae\x21\xae\xa6\xf7\xbf\xff\x9f\xb1\x87\x7f\x60\x5b\xdd\xde\xdd\x56\xa9\xb3\xad\x52\xb3\xad\x6e\x93\xe9\xa4\xd9\x57\x35\xb9\x28\x05\xd3\x57\x56\x07\x6e\x77\x76\x5a\x0b\xe9\xa0\xbc\x26\xce\xf1\xda\xc9\xaa\x0f\x04\x3d\x95\x68\xb7\x17\x43\x24\x5a\xe7\xaa\xdb\xc9\x6f\xc2\xa0\xd6\x75\x4d\xf2\xac\x14\xbc\x08\xe6\x1a\xaf\x6b\x30\xb9\x0d\x13\xeb\xc0\xdb\x0f\x2c\x2a\x10\x7a\xe0\xcb\x0f\x9c\xb5\x15\x81\x44\xd8\x82\xbf\xe2\xba\x5e\x90\x94\x5d\x3e\x15\xfc\xa2\xa9\xe4\xb8\x85\x0e\xbe\x60\x02\xec\x52\x83\x57\xab\xb1\x7c\x57\x4d\x06\x37\x35\x68\x97\x46\x66\x5f\x12\x6f\xdf\x03\xdf\x50\x69\x19\x40\xd8\x45\xaf\x5e\x80\xdb\xda\xff\xeb\xff\x0b\x00\x00\xff\xff\x07\xfd\x27\xc7\x44\xae\x01\x00") func init() { err := CTX.Err() diff --git a/settings/yarn.lock b/settings/yarn.lock index 17de4b26b5..1a874469f5 100644 --- a/settings/yarn.lock +++ b/settings/yarn.lock @@ -2,10 +2,10 @@ # yarn lockfile v1 -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.5.5": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" - integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.11", "@babel/code-frame@^7.5.5": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== dependencies: "@babel/highlight" "^7.10.4" @@ -35,12 +35,12 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.12.10": - version "7.12.10" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.10.tgz#2b188fc329fb8e4f762181703beffc0fe6df3460" - integrity sha512-6mCdfhWgmqLdtTkhXjnIz0LcdVCd26wS2JXRtj2XY0u5klDsXBREA/pG5NVOuVnF2LUrBGNFtQkIqqTbblg0ww== +"@babel/generator@^7.12.10", "@babel/generator@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.11.tgz#98a7df7b8c358c9a37ab07a24056853016aba3af" + integrity sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA== dependencies: - "@babel/types" "^7.12.10" + "@babel/types" "^7.12.11" jsesc "^2.5.1" source-map "^0.5.0" @@ -104,16 +104,16 @@ dependencies: "@babel/types" "^7.12.1" -"@babel/helper-function-name@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" - integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== +"@babel/helper-function-name@^7.10.4", "@babel/helper-function-name@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz#1fd7738aee5dcf53c3ecff24f1da9c511ec47b42" + integrity sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA== dependencies: - "@babel/helper-get-function-arity" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/helper-get-function-arity" "^7.12.10" + "@babel/template" "^7.12.7" + "@babel/types" "^7.12.11" -"@babel/helper-get-function-arity@^7.10.4": +"@babel/helper-get-function-arity@^7.12.10": version "7.12.10" resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz#b158817a3165b5faa2047825dfa61970ddcc16cf" integrity sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag== @@ -127,7 +127,7 @@ dependencies: "@babel/types" "^7.10.4" -"@babel/helper-member-expression-to-functions@^7.12.1": +"@babel/helper-member-expression-to-functions@^7.12.1", "@babel/helper-member-expression-to-functions@^7.12.7": version "7.12.7" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855" integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw== @@ -156,7 +156,7 @@ "@babel/types" "^7.12.1" lodash "^4.17.19" -"@babel/helper-optimise-call-expression@^7.10.4": +"@babel/helper-optimise-call-expression@^7.10.4", "@babel/helper-optimise-call-expression@^7.12.10": version "7.12.10" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz#94ca4e306ee11a7dd6e9f42823e2ac6b49881e2d" integrity sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ== @@ -178,14 +178,14 @@ "@babel/types" "^7.12.1" "@babel/helper-replace-supers@^7.12.1": - version "7.12.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz#f009a17543bbbbce16b06206ae73b63d3fca68d9" - integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA== + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz#ea511658fc66c7908f923106dd88e08d1997d60d" + integrity sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA== dependencies: - "@babel/helper-member-expression-to-functions" "^7.12.1" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/traverse" "^7.12.5" - "@babel/types" "^7.12.5" + "@babel/helper-member-expression-to-functions" "^7.12.7" + "@babel/helper-optimise-call-expression" "^7.12.10" + "@babel/traverse" "^7.12.10" + "@babel/types" "^7.12.11" "@babel/helper-simple-access@^7.12.1": version "7.12.1" @@ -201,22 +201,22 @@ dependencies: "@babel/types" "^7.12.1" -"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" - integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== +"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0", "@babel/helper-split-export-declaration@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz#1b4cc424458643c47d37022223da33d76ea4603a" + integrity sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g== dependencies: - "@babel/types" "^7.11.0" + "@babel/types" "^7.12.11" -"@babel/helper-validator-identifier@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" - integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== +"@babel/helper-validator-identifier@^7.10.4", "@babel/helper-validator-identifier@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" + integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== -"@babel/helper-validator-option@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz#175567380c3e77d60ff98a54bb015fe78f2178d9" - integrity sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A== +"@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz#d66cb8b7a3e7fe4c6962b32020a131ecf0847f4f" + integrity sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw== "@babel/helper-wrap-function@^7.10.4": version "7.12.3" @@ -246,15 +246,15 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.12.0", "@babel/parser@^7.12.10", "@babel/parser@^7.12.7", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6": - version "7.12.10" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.10.tgz#824600d59e96aea26a5a2af5a9d812af05c3ae81" - integrity sha512-PJdRPwyoOqFAWfLytxrWwGrAxghCgh/yTNCYciOz8QgjflA7aZhECPZAa2VUedKg2+QMWkI0L9lynh2SNmNEgA== +"@babel/parser@^7.12.0", "@babel/parser@^7.12.10", "@babel/parser@^7.12.11", "@babel/parser@^7.12.7", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.11.tgz#9ce3595bcd74bc5c466905e86c535b8b25011e79" + integrity sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg== "@babel/plugin-proposal-async-generator-functions@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e" - integrity sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A== + version "7.12.12" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.12.tgz#04b8f24fd4532008ab4e79f788468fd5a8476566" + integrity sha512-nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-remap-async-to-generator" "^7.12.1" @@ -480,10 +480,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-block-scoping@^7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz#f0ee727874b42a208a48a586b84c3d222c2bbef1" - integrity sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w== +"@babel/plugin-transform-block-scoping@^7.12.11": + version "7.12.12" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.12.tgz#d93a567a152c22aea3b1929bb118d1d0a175cdca" + integrity sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ== dependencies: "@babel/helper-plugin-utils" "^7.10.4" @@ -724,15 +724,15 @@ regenerator-runtime "^0.13.4" "@babel/preset-env@^7.7.7": - version "7.12.10" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.10.tgz#ca981b95f641f2610531bd71948656306905e6ab" - integrity sha512-Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA== + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.11.tgz#55d5f7981487365c93dbbc84507b1c7215e857f9" + integrity sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw== dependencies: "@babel/compat-data" "^7.12.7" "@babel/helper-compilation-targets" "^7.12.5" "@babel/helper-module-imports" "^7.12.5" "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-validator-option" "^7.12.1" + "@babel/helper-validator-option" "^7.12.11" "@babel/plugin-proposal-async-generator-functions" "^7.12.1" "@babel/plugin-proposal-class-properties" "^7.12.1" "@babel/plugin-proposal-dynamic-import" "^7.12.1" @@ -761,7 +761,7 @@ "@babel/plugin-transform-arrow-functions" "^7.12.1" "@babel/plugin-transform-async-to-generator" "^7.12.1" "@babel/plugin-transform-block-scoped-functions" "^7.12.1" - "@babel/plugin-transform-block-scoping" "^7.12.1" + "@babel/plugin-transform-block-scoping" "^7.12.11" "@babel/plugin-transform-classes" "^7.12.1" "@babel/plugin-transform-computed-properties" "^7.12.1" "@babel/plugin-transform-destructuring" "^7.12.1" @@ -791,7 +791,7 @@ "@babel/plugin-transform-unicode-escapes" "^7.12.1" "@babel/plugin-transform-unicode-regex" "^7.12.1" "@babel/preset-modules" "^0.1.3" - "@babel/types" "^7.12.10" + "@babel/types" "^7.12.11" core-js-compat "^3.8.0" semver "^5.5.0" @@ -842,26 +842,26 @@ "@babel/types" "^7.12.7" "@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.10", "@babel/traverse@^7.12.5": - version "7.12.10" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.10.tgz#2d1f4041e8bf42ea099e5b2dc48d6a594c00017a" - integrity sha512-6aEtf0IeRgbYWzta29lePeYSk+YAFIC3kyqESeft8o5CkFlYIMX+EQDDWEiAQ9LHOA3d0oHdgrSsID/CKqXJlg== + version "7.12.12" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.12.tgz#d0cd87892704edd8da002d674bc811ce64743376" + integrity sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w== dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.10" - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.11.0" - "@babel/parser" "^7.12.10" - "@babel/types" "^7.12.10" + "@babel/code-frame" "^7.12.11" + "@babel/generator" "^7.12.11" + "@babel/helper-function-name" "^7.12.11" + "@babel/helper-split-export-declaration" "^7.12.11" + "@babel/parser" "^7.12.11" + "@babel/types" "^7.12.12" debug "^4.1.0" globals "^11.1.0" lodash "^4.17.19" -"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.0", "@babel/types@^7.12.1", "@babel/types@^7.12.10", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6": - version "7.12.10" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.10.tgz#7965e4a7260b26f09c56bcfcb0498af1f6d9b260" - integrity sha512-sf6wboJV5mGyip2hIpDSKsr80RszPinEFjsHTalMxZAZkoQ2/2yQzxlcFN52SJqsyPfLtPmenL4g2KB3KJXPDw== +"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.12.0", "@babel/types@^7.12.1", "@babel/types@^7.12.10", "@babel/types@^7.12.11", "@babel/types@^7.12.12", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6": + version "7.12.12" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.12.tgz#4608a6ec313abbd87afa55004d373ad04a96c299" + integrity sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ== dependencies: - "@babel/helper-validator-identifier" "^7.10.4" + "@babel/helper-validator-identifier" "^7.12.11" lodash "^4.17.19" to-fast-properties "^2.0.0" @@ -939,9 +939,9 @@ integrity sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ== "@types/estree@*": - version "0.0.45" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884" - integrity sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== + version "0.0.46" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.46.tgz#0fb6bfbbeabd7a30880504993369c4bf1deab1fe" + integrity sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg== "@types/estree@0.0.39": version "0.0.39" @@ -954,9 +954,9 @@ integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= "@types/node@*": - version "14.14.13" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.13.tgz#9e425079799322113ae8477297ae6ef51b8e0cdf" - integrity sha512-vbxr0VZ8exFMMAjCW8rJwaya0dMCDyYW2ZRdTyjtrCvJoENMpdUHOT/eTzvgyA5ZnqRZ/sI0NwqAxNHKYokLJQ== + version "14.14.22" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.22.tgz#0d29f382472c4ccf3bd96ff0ce47daf5b7b84b18" + integrity sha512-g+f/qj/cNcqKkc3tFqlXOYjrmZA+jNBiDzbP3kH+B+otKFqAdPgVTGP1IeKRdMml/aE69as5S4FqtxAbl+LaMw== "@types/resolve@0.0.8": version "0.0.8" @@ -965,36 +965,36 @@ dependencies: "@types/node" "*" -"@vue/compiler-core@3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.4.tgz#0122aca6eada4cb28b39ed930af917444755e330" - integrity sha512-snpMICsbWTZqBFnPB03qr4DtiSxVYfDF3DvbDSkN9Z9NTM8Chl8E/lYhKBSsvauq91DAWAh8PU3lr9vrLyQsug== +"@vue/compiler-core@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.5.tgz#a6e54cabe9536e74c6513acd2649f311af1d43ac" + integrity sha512-iFXwk2gmU/GGwN4hpBwDWWMLvpkIejf/AybcFtlQ5V1ur+5jwfBaV0Y1RXoR6ePfBPJixtKZ3PmN+M+HgMAtfQ== dependencies: "@babel/parser" "^7.12.0" "@babel/types" "^7.12.0" - "@vue/shared" "3.0.4" + "@vue/shared" "3.0.5" estree-walker "^2.0.1" source-map "^0.6.1" -"@vue/compiler-dom@3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.4.tgz#834fd4b15c5698cf9f4505c2bfbccca058a843eb" - integrity sha512-FOxbHBIkkGjYQeTz1DlXQjS1Ms8EPXQWsdTdTPeohoS0KzCz6RiOjiAG+jLtMi6Nr5GX2h0TlCvcnI8mcsicFQ== +"@vue/compiler-dom@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.5.tgz#7885a13e6d18f64dde8ebceec052ed2c102696c2" + integrity sha512-HSOSe2XSPuCkp20h4+HXSiPH9qkhz6YbW9z9ZtL5vef2T2PMugH7/osIFVSrRZP/Ul5twFZ7MIRlp8tPX6e4/g== dependencies: - "@vue/compiler-core" "3.0.4" - "@vue/shared" "3.0.4" + "@vue/compiler-core" "3.0.5" + "@vue/shared" "3.0.5" "@vue/compiler-sfc@^3.0.0": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.4.tgz#2119fe1e68d2c268aafa20461c82c139a9adf8e0" - integrity sha512-brDn6HTuK6R3oBCjtMPPsIpyJEZFinlnxjtBXww/goFJOJBAU9CrsdegwyZItNnixCFUIg4CLv4Nj1Eg/eKlfg== + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.5.tgz#3ae08e60244a72faf9598361874fb7bdb5b1d37c" + integrity sha512-uOAC4X0Gx3SQ9YvDC7YMpbDvoCmPvP0afVhJoxRotDdJ+r8VO3q4hFf/2f7U62k4Vkdftp6DVni8QixrfYzs+w== dependencies: "@babel/parser" "^7.12.0" "@babel/types" "^7.12.0" - "@vue/compiler-core" "3.0.4" - "@vue/compiler-dom" "3.0.4" - "@vue/compiler-ssr" "3.0.4" - "@vue/shared" "3.0.4" + "@vue/compiler-core" "3.0.5" + "@vue/compiler-dom" "3.0.5" + "@vue/compiler-ssr" "3.0.5" + "@vue/shared" "3.0.5" consolidate "^0.16.0" estree-walker "^2.0.1" hash-sum "^2.0.0" @@ -1006,13 +1006,13 @@ postcss-selector-parser "^6.0.4" source-map "^0.6.1" -"@vue/compiler-ssr@3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.4.tgz#ccbd1f55734d51d1402fad825ac102002a7a07c7" - integrity sha512-4aYWQEL4+LS4+D44K9Z7xMOWMEjBsz4Li9nMcj2rxRQ35ewK6uFPodvs6ORP60iBDSkwUFZoldFlNemQlu1BFw== +"@vue/compiler-ssr@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.5.tgz#7661ad891a0be948726c7f7ad1e425253c587b83" + integrity sha512-Wm//Kuxa1DpgjE4P9W0coZr8wklOfJ35Jtq61CbU+t601CpPTK4+FL2QDBItaG7aoUUDCWL5nnxMkuaOgzTBKg== dependencies: - "@vue/compiler-dom" "3.0.4" - "@vue/shared" "3.0.4" + "@vue/compiler-dom" "3.0.5" + "@vue/shared" "3.0.5" "@vue/component-compiler-utils@^3.0.0", "@vue/component-compiler-utils@^3.1.2": version "3.2.0" @@ -1046,10 +1046,10 @@ sass "^1.18.0" stylus "^0.54.5" -"@vue/shared@3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.4.tgz#6dc50f593bdfdeaa6183d1dbc15e2d45e7c6b8b3" - integrity sha512-Swfbz31AaMX48CpFl+YmIrqOH9MgJMTrltG9e26A4ZxYx9LjGuMV+41WnxFzS3Bc9nbrc6sDPM37G6nIT8NJSg== +"@vue/shared@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.5.tgz#c131d88bd6713cc4d93b3bb1372edb1983225ff0" + integrity sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw== abbrev@1: version "1.1.1" @@ -1123,9 +1123,9 @@ acorn-static-class-features@^0.2.4: acorn-private-class-elements "^0.2.7" acorn-walk@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.0.0.tgz#56ae4c0f434a45fff4a125e7ea95fa9c98f67a16" - integrity sha512-oZRad/3SMOI/pxbbmqyurIx7jHw1wZDcR9G44L8pUVFEomX/0dH89SrM1KaDXuv1NpzAXz6Op/Xu/Qd5XXzdEA== + version "8.0.2" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.0.2.tgz#d4632bfc63fd93d0f15fd05ea0e984ffd3f5a8c3" + integrity sha512-+bpA9MJsHdZ4bgfDcpk0ozQyhhVct7rzOmO0s1IIr0AGGgKBljss8n2zp11rRP2wid5VGeh04CgeKzgat5/25A== acorn@^3.1.0: version "3.3.0" @@ -1499,9 +1499,9 @@ big.js@^5.2.2: integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== binary-extensions@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" - integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== bl@^4.0.3: version "4.0.3" @@ -1527,7 +1527,7 @@ bn.js@^5.0.0, bn.js@^5.1.1: resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b" integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ== -boolbase@~1.0.0: +boolbase@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= @@ -1632,16 +1632,16 @@ browserify-sign@^4.0.0: readable-stream "^3.6.0" safe-buffer "^5.2.0" -browserslist@^4.14.5, browserslist@^4.15.0: - version "4.16.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.0.tgz#410277627500be3cb28a1bfe037586fbedf9488b" - integrity sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ== +browserslist@^4.14.5, browserslist@^4.16.1: + version "4.16.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.1.tgz#bf757a2da376b3447b800a16f0f1c96358138766" + integrity sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA== dependencies: - caniuse-lite "^1.0.30001165" + caniuse-lite "^1.0.30001173" colorette "^1.2.1" - electron-to-chromium "^1.3.621" + electron-to-chromium "^1.3.634" escalade "^3.1.1" - node-releases "^1.1.67" + node-releases "^1.1.69" buffer-crc32@^0.2.1, buffer-crc32@^0.2.13: version "0.2.13" @@ -1672,9 +1672,9 @@ buffer@^5.1.0, buffer@^5.5.0: ieee754 "^1.1.13" builtin-modules@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484" - integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== + version "3.2.0" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887" + integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== buntis@0.2.1: version "0.2.1" @@ -1695,13 +1695,13 @@ bytes@3.1.0: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== -call-bind@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz#24127054bb3f9bdcb4b1fb82418186072f77b8ce" - integrity sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w== +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== dependencies: function-bind "^1.1.1" - get-intrinsic "^1.0.0" + get-intrinsic "^1.0.2" callsites@^3.0.0: version "3.1.0" @@ -1718,10 +1718,10 @@ camelcase@^5.0.0, camelcase@^5.3.1: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== -caniuse-lite@^1.0.30001165: - version "1.0.30001166" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001166.tgz#ca73e8747acfd16a4fd6c4b784f1b995f9698cf8" - integrity sha512-nCL4LzYK7F4mL0TjEMeYavafOGnBa98vTudH5c8lW9izUjnB99InG6pmC1ElAI1p0GlyZajv4ltUdFXvOHIl1A== +caniuse-lite@^1.0.30001173: + version "1.0.30001181" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001181.tgz#4f0e5184e1ea7c3bf2727e735cbe7ca9a451d673" + integrity sha512-m5ul/ARCX50JB8BSNM+oiPmQrR5UmngaQ3QThTTp5HcIIQGP/nPBs82BYLE+tigzm3VW+F4BJIhUyaVtEweelQ== caseless@~0.12.0: version "0.12.0" @@ -1809,17 +1809,29 @@ check-error@^1.0.2: resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= -cheerio@^1.0.0-rc.3: - version "1.0.0-rc.3" - resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" - integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA== +cheerio-select-tmp@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/cheerio-select-tmp/-/cheerio-select-tmp-0.1.1.tgz#55bbef02a4771710195ad736d5e346763ca4e646" + integrity sha512-YYs5JvbpU19VYJyj+F7oYrIE2BOll1/hRU7rEy/5+v9BzkSo3bK81iAeeQEMI92vRIxz677m72UmJUiVwwgjfQ== dependencies: - css-select "~1.2.0" - dom-serializer "~0.1.1" - entities "~1.1.1" - htmlparser2 "^3.9.1" - lodash "^4.15.0" - parse5 "^3.0.1" + css-select "^3.1.2" + css-what "^4.0.0" + domelementtype "^2.1.0" + domhandler "^4.0.0" + domutils "^2.4.4" + +cheerio@^1.0.0-rc.3: + version "1.0.0-rc.5" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.5.tgz#88907e1828674e8f9fee375188b27dadd4f0fa2f" + integrity sha512-yoqps/VCaZgN4pfXtenwHROTp8NG6/Hlt4Jpz2FEP0ZJQ+ZUkVDd0hAPDNKhj3nakpfPt/CNs57yEtxD1bXQiw== + dependencies: + cheerio-select-tmp "^0.1.0" + dom-serializer "~1.2.0" + domhandler "^4.0.0" + entities "~2.1.0" + htmlparser2 "^6.0.0" + parse5 "^6.0.0" + parse5-htmlparser2-tree-adapter "^6.0.0" child_process@^1.0.2: version "1.0.2" @@ -1827,9 +1839,9 @@ child_process@^1.0.2: integrity sha1-sffn/HPSXn/R1FWtyU4UODAYK1o= "chokidar@>=2.0.0 <4.0.0": - version "3.4.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b" - integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ== + version "3.5.1" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" + integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== dependencies: anymatch "~3.1.1" braces "~3.0.2" @@ -1839,7 +1851,7 @@ child_process@^1.0.2: normalize-path "~3.0.0" readdirp "~3.5.0" optionalDependencies: - fsevents "~2.1.2" + fsevents "~2.3.1" ci-info@^2.0.0: version "2.0.0" @@ -2059,23 +2071,30 @@ convert-source-map@^1.7.0: dependencies: safe-buffer "~5.1.1" -core-js-compat@^3.8.0: - version "3.8.1" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.8.1.tgz#8d1ddd341d660ba6194cbe0ce60f4c794c87a36e" - integrity sha512-a16TLmy9NVD1rkjUGbwuyWkiDoN0FDpAwrfLONvHFQx0D9k7J9y0srwMT8QP/Z6HE3MIFaVynEeYwZwPX1o5RQ== +copy-anything@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-2.0.1.tgz#2afbce6da684bdfcbec93752fa762819cb480d9a" + integrity sha512-lA57e7viQHOdPQcrytv5jFeudZZOXuyk47lZym279FiDQ8jeZomXiGuVf6ffMKkJ+3TIai3J1J3yi6M+/4U35g== dependencies: - browserslist "^4.15.0" + is-what "^3.7.1" + +core-js-compat@^3.8.0: + version "3.8.3" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.8.3.tgz#9123fb6b9cad30f0651332dc77deba48ef9b0b3f" + integrity sha512-1sCb0wBXnBIL16pfFG1Gkvei6UzvKyTNYpiC41yrdjEv0UoJoq9E/abTMzyYJ6JpTkAj15dLjbqifIzEBDVvog== + dependencies: + browserslist "^4.16.1" semver "7.0.0" core-js-pure@^3.0.0: - version "3.8.1" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.8.1.tgz#23f84048f366fdfcf52d3fd1c68fec349177d119" - integrity sha512-Se+LaxqXlVXGvmexKGPvnUIYC1jwXu1H6Pkyb3uBM5d8/NELMYCHs/4/roD7721NxrTLyv7e5nXd5/QLBO+10g== + version "3.8.3" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.8.3.tgz#10e9e3b2592ecaede4283e8f3ad7020811587c02" + integrity sha512-V5qQZVAr9K0xu7jXg1M7qTEwuxUgqr7dUOezGaNa7i+Xn9oXAU/d1fzqD9ObuwpVQOaorO5s70ckyi1woP9lVA== core-js@3: - version "3.8.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.8.1.tgz#f51523668ac8a294d1285c3b9db44025fda66d47" - integrity sha512-9Id2xHY1W7m8hCl8NkhQn5CufmF/WuR30BTRewvCXc1aZd3kMECwNZ69ndLbekKfakw9Rf2Xyc+QR6E7Gg+obg== + version "3.8.3" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.8.3.tgz#c21906e1f14f3689f93abcc6e26883550dd92dd0" + integrity sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q== core-js@^2.4.0, core-js@^2.6.5: version "2.6.12" @@ -2184,15 +2203,16 @@ css-parse@~2.0.0: dependencies: css "^2.0.0" -css-select@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" - integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= +css-select@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-3.1.2.tgz#d52cbdc6fee379fba97fb0d3925abbd18af2d9d8" + integrity sha512-qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA== dependencies: - boolbase "~1.0.0" - css-what "2.1" - domutils "1.5.1" - nth-check "~1.0.1" + boolbase "^1.0.0" + css-what "^4.0.0" + domhandler "^4.0.0" + domutils "^2.4.3" + nth-check "^2.0.0" css-selector-tokenizer@^0.7.0: version "0.7.3" @@ -2202,10 +2222,10 @@ css-selector-tokenizer@^0.7.0: cssesc "^3.0.0" fastparse "^1.1.2" -css-what@2.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" - integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== +css-what@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-4.0.0.tgz#35e73761cab2eeb3d3661126b23d7aa0e8432233" + integrity sha512-teijzG7kwYfNVsUh2H/YN62xW3KK9YhXEgSlbxMlcyjPNvdKJqFx5lrwlJgoFP1ZHlB89iGDlo/JyshKeRhv5A== css@^2.0.0: version "2.2.4" @@ -2466,54 +2486,35 @@ doctypes@^1.1.0: resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" integrity sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk= -dom-serializer@0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" - integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== +dom-serializer@^1.0.1, dom-serializer@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.2.0.tgz#3433d9136aeb3c627981daa385fc7f32d27c48f1" + integrity sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA== dependencies: domelementtype "^2.0.1" + domhandler "^4.0.0" entities "^2.0.0" -dom-serializer@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" - integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== - dependencies: - domelementtype "^1.3.0" - entities "^1.1.1" - -domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" - integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== - -domelementtype@^2.0.1: +domelementtype@^2.0.1, domelementtype@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e" integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== -domhandler@^2.3.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" - integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== +domhandler@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.0.0.tgz#01ea7821de996d85f69029e81fa873c21833098e" + integrity sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA== dependencies: - domelementtype "1" + domelementtype "^2.1.0" -domutils@1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" - integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= +domutils@^2.4.3, domutils@^2.4.4: + version "2.4.4" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.4.4.tgz#282739c4b150d022d34699797369aad8d19bbbd3" + integrity sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA== dependencies: - dom-serializer "0" - domelementtype "1" - -domutils@^1.5.1: - version "1.7.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" - integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== - dependencies: - dom-serializer "0" - domelementtype "1" + dom-serializer "^1.0.1" + domelementtype "^2.0.1" + domhandler "^4.0.0" dotenv@7.0.0: version "7.0.0" @@ -2587,10 +2588,10 @@ ejs@^2.7.4: resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== -electron-to-chromium@^1.3.621: - version "1.3.625" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.625.tgz#a7bd18da4dc732c180b2e95e0e296c0bf22f3bd6" - integrity sha512-CsLk/r0C9dAzVPa9QF74HIXduxaucsaRfqiOYvIv2PRhvyC6EOqc/KbpgToQuDVgPf3sNAFZi3iBu4vpGOwGag== +electron-to-chromium@^1.3.634: + version "1.3.648" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.648.tgz#b05926eca1843c04b283e682a1fc6c10af7e9dda" + integrity sha512-4POzwyQ80tkDiBwkxn7IpfzioimrjRSFX1sCQ3pLZsYJ5ERYmwzdq0hZZ3nFP7Z6GtmnSn3xwWDm8FPlMeOoEQ== elliptic@^6.5.3: version "6.5.3" @@ -2632,12 +2633,12 @@ end-of-stream@^1.4.1: dependencies: once "^1.4.0" -entities@^1.1.1, entities@~1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" - integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== - entities@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +entities@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== @@ -2648,9 +2649,9 @@ envinfo@^7.5.1: integrity sha512-46+j5QxbPWza0PB1i15nZx0xQ4I/EfQxg9J8Had3b408SV63nEtor2e+oiY63amTo9KTuh2a3XLObNwduxYwwA== errno@^0.1.1, errno@~0.1.1: - version "0.1.7" - resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" - integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== + version "0.1.8" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" + integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== dependencies: prr "~1.0.1" @@ -2669,22 +2670,24 @@ error-stack-parser@^2.0.6: stackframe "^1.1.1" es-abstract@^1.18.0-next.1: - version "1.18.0-next.1" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" - integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== + version "1.18.0-next.2" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.2.tgz#088101a55f0541f595e7e057199e27ddc8f3a5c2" + integrity sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw== dependencies: + call-bind "^1.0.2" es-to-primitive "^1.2.1" function-bind "^1.1.1" + get-intrinsic "^1.0.2" has "^1.0.3" has-symbols "^1.0.1" is-callable "^1.2.2" - is-negative-zero "^2.0.0" + is-negative-zero "^2.0.1" is-regex "^1.1.1" - object-inspect "^1.8.0" + object-inspect "^1.9.0" object-keys "^1.1.1" - object.assign "^4.1.1" - string.prototype.trimend "^1.0.1" - string.prototype.trimstart "^1.0.1" + object.assign "^4.1.2" + string.prototype.trimend "^1.0.3" + string.prototype.trimstart "^1.0.3" es-to-primitive@^1.2.1: version "1.2.1" @@ -3121,24 +3124,24 @@ flatted@^2.0.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== -flow-parser@^0.140.0: - version "0.140.0" - resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.140.0.tgz#f737901bf8343c843417cac695b0b428a54843c6" - integrity sha512-z57YJZXcO0mmlNoOf9uvdnoZXanu8ALTqSaAWAv6kQavpnA5Kpdd4R7B3wP56+/yi/yODjrtarQYV/bgv867Iw== +flow-parser@^0.143.1: + version "0.143.1" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.143.1.tgz#c18e1745df97d1132e60036e88cbf1925b5094e4" + integrity sha512-DWmnt0P1tieuQErYeWmxCNIkzm5Fqd5sMH685v/jCtu8CAvdLEwKi45jqYhij178k+NAy+FNe2jDvQNs7WLBIA== flow-remove-types@^2.135.0: - version "2.140.0" - resolved "https://registry.yarnpkg.com/flow-remove-types/-/flow-remove-types-2.140.0.tgz#8ff6400186cf79595c8b6c8166921c23a1d3b150" - integrity sha512-qxYbyvMjvWMk7DBIsSr+FHKZh2v0NgNxYfQLEYlQgsBwj7MGiaOcflcpEEJiUp5uXC+clGqPqnQD35oOkBDhKg== + version "2.143.1" + resolved "https://registry.yarnpkg.com/flow-remove-types/-/flow-remove-types-2.143.1.tgz#e205d42de99a91d1f28d83b394ee73927368258f" + integrity sha512-UUl8tigzcH8NGGQ38K72MZ0i3T4hvtb9+yQRR4AMJDaOAUcpo6zp6/tVSASj34q8Zwb0At0CcXV7rtBLW6OJZQ== dependencies: - flow-parser "^0.140.0" + flow-parser "^0.143.1" pirates "^3.0.2" vlq "^0.2.1" follow-redirects@^1.10.0: - version "1.13.1" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.1.tgz#5f69b813376cee4fd0474a3aba835df04ab763b7" - integrity sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg== + version "1.13.2" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.2.tgz#dd73c8effc12728ba5cf4259d760ea5fb83e3147" + integrity sha512-6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA== foreach@~2.0.1: version "2.0.5" @@ -3165,14 +3168,14 @@ fs-constants@^1.0.0: integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== fs-extra@^9.0.1: - version "9.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc" - integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ== + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== dependencies: at-least-node "^1.0.0" graceful-fs "^4.2.0" jsonfile "^6.0.1" - universalify "^1.0.0" + universalify "^2.0.0" fs.realpath@^1.0.0: version "1.0.0" @@ -3184,10 +3187,10 @@ fs@0.0.1-security: resolved "https://registry.yarnpkg.com/fs/-/fs-0.0.1-security.tgz#8a7bd37186b6dddf3813f23858b57ecaaf5e41d4" integrity sha1-invTcYa23d84E/I4WLV+yq9eQdQ= -fsevents@~2.1.2: - version "2.1.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" - integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== +fsevents@~2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.1.tgz#b209ab14c61012636c8863507edf7fb68cc54e9f" + integrity sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw== ftp@~0.3.10: version "0.3.10" @@ -3243,10 +3246,10 @@ get-func-name@^2.0.0: resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= -get-intrinsic@^1.0.0, get-intrinsic@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.1.tgz#94a9768fcbdd0595a1c9273aacf4c89d075631be" - integrity sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg== +get-intrinsic@^1.0.1, get-intrinsic@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.0.tgz#892e62931e6938c8a23ea5aaebcfb67bd97da97e" + integrity sha512-M11rgtQp5GZMZzDL7jLTNxbDfurpzuau5uqRWDPvlHjfvg3TdScAZo96GLvhMjImrmR8uAt0FS2RLoMrfWGKlg== dependencies: function-bind "^1.1.1" has "^1.0.3" @@ -3453,17 +3456,15 @@ hosted-git-info@^2.1.4: resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== -htmlparser2@^3.9.1: - version "3.10.1" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" - integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== +htmlparser2@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.0.0.tgz#c2da005030390908ca4c91e5629e418e0665ac01" + integrity sha512-numTQtDZMoh78zJpaNdJ9MXb2cv5G3jwUoe3dMQODubZvLoGvTE/Ofp6sHvH8OGKcN/8A47pGLi/k58xHP/Tfw== dependencies: - domelementtype "^1.3.1" - domhandler "^2.3.0" - domutils "^1.5.1" - entities "^1.1.1" - inherits "^2.0.1" - readable-stream "^3.1.1" + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.4.4" + entities "^2.0.0" http-errors@1.7.3: version "1.7.3" @@ -3551,9 +3552,9 @@ immediate@~3.2.3: integrity sha1-0UD6j2FGWb1lQSMwl92qwlzdmRw= import-fresh@^3.0.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz#fc129c160c5d68235507f4331a6baad186bdbc3e" - integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw== + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== dependencies: parent-module "^1.0.0" resolve-from "^4.0.0" @@ -3717,7 +3718,7 @@ is-module@^1.0.0: resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= -is-negative-zero@^2.0.0: +is-negative-zero@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== @@ -3773,6 +3774,11 @@ is-typedarray@^1.0.0, is-typedarray@~1.0.0: resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= +is-what@^3.7.1: + version "3.12.0" + resolved "https://registry.yarnpkg.com/is-what/-/is-what-3.12.0.tgz#f4405ce4bd6dd420d3ced51a026fb90e03705e55" + integrity sha512-2ilQz5/f/o9V7WRWJQmpFYNmQFZ9iM+OXRonZKcYgTkCzjb949Vi4h282PD1UfmgHk666rcWonbRJ++KI41VGw== + is@~0.2.6: version "0.2.7" resolved "https://registry.yarnpkg.com/is/-/is-0.2.7.tgz#3b34a2c48f359972f35042849193ae7264b63562" @@ -3821,9 +3827,9 @@ js-base64@^2.1.9: integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ== js-beautify@^1.6.12: - version "1.13.0" - resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.13.0.tgz#a056d5d3acfd4918549aae3ab039f9f3c51eebb2" - integrity sha512-/Tbp1OVzZjbwzwJQFIlYLm9eWQ+3aYbBXLSaqb1mEJzhcQAfrqMMQYtjb6io+U6KpD0ID4F+Id3/xcjH3l/sqA== + version "1.13.5" + resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.13.5.tgz#a08a97890cae55daf1d758d3f6577bd4a64d7014" + integrity sha512-MsXlH6Z/BiRYSkSRW3clNDqDjSpiSNOiG8xYVUBXt4k0LnGvDhlTGOlHX1VFtAdoLmtwjxMG5qiWKy/g+Ipv5w== dependencies: config-chain "^1.1.12" editorconfig "^0.15.3" @@ -3989,10 +3995,11 @@ ldap@^0.7.1: dtrace-provider "0.4.0" less@^3.9.0: - version "3.13.0" - resolved "https://registry.yarnpkg.com/less/-/less-3.13.0.tgz#6a47bb19d97edcf7a53d444b099275dd6b17c85a" - integrity sha512-uPhr9uoSGVKKYVGz0rXcYBK1zjwcIWRGcbnSgNt66XuIZYrYPaQiS+LeUOvqedBwrwdBYYaLqSff5ytGYuT7rA== + version "3.13.1" + resolved "https://registry.yarnpkg.com/less/-/less-3.13.1.tgz#0ebc91d2a0e9c0c6735b83d496b0ab0583077909" + integrity sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw== dependencies: + copy-anything "^2.0.1" tslib "^1.10.0" optionalDependencies: errno "^0.1.1" @@ -4289,7 +4296,7 @@ lodash.union@^4.6.0: resolved "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" integrity sha1-SLtQiECfFvGCFmZkHETdGqrjzYg= -lodash@^4.15.0, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.4: +lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.4: version "4.17.20" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== @@ -4389,17 +4396,17 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" -mime-db@1.44.0: - version "1.44.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" - integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== +mime-db@1.45.0: + version "1.45.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea" + integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w== mime-types@^2.1.12, mime-types@~2.1.19: - version "2.1.27" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" - integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== + version "2.1.28" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.28.tgz#1160c4757eab2c5363888e005273ecf79d2a0ecd" + integrity sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ== dependencies: - mime-db "1.44.0" + mime-db "1.45.0" mime@^1.4.1: version "1.6.0" @@ -4627,10 +4634,10 @@ node-modules-regexp@^1.0.0: resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= -node-releases@^1.1.67: - version "1.1.67" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12" - integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg== +node-releases@^1.1.69: + version "1.1.70" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.70.tgz#66e0ed0273aa65666d7fe78febe7634875426a08" + integrity sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw== nopt@^5.0.0: version "5.0.0" @@ -4654,12 +4661,12 @@ normalize-path@^3.0.0, normalize-path@~3.0.0: resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== -nth-check@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" - integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== +nth-check@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125" + integrity sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q== dependencies: - boolbase "~1.0.0" + boolbase "^1.0.0" oauth-sign@~0.9.0: version "0.9.0" @@ -4671,7 +4678,7 @@ object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= -object-inspect@^1.8.0: +object-inspect@^1.9.0: version "1.9.0" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== @@ -4700,7 +4707,7 @@ object.assign@4.1.0: has-symbols "^1.0.0" object-keys "^1.0.11" -object.assign@^4.1.0, object.assign@^4.1.1: +object.assign@^4.1.0, object.assign@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== @@ -4881,12 +4888,17 @@ parse-json@^2.2.0: dependencies: error-ex "^1.2.0" -parse5@^3.0.1: - version "3.0.3" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" - integrity sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA== +parse5-htmlparser2-tree-adapter@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz#2cdf9ad823321140370d4dbf5d3e92c7c8ddc6e6" + integrity sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA== dependencies: - "@types/node" "*" + parse5 "^6.0.1" + +parse5@^6.0.0, parse5@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" + integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== path-exists@^3.0.0: version "3.0.0" @@ -4929,9 +4941,9 @@ path@^0.12.7: util "^0.10.3" pathval@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" - integrity sha1-uULm1L3mUwBe9rcTYd74cn0GReA= + version "1.1.1" + resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" + integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== pbkdf2@^3.0.3: version "3.1.1" @@ -5423,9 +5435,9 @@ punycode@^2.1.0, punycode@^2.1.1: integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== qs@^6.9.1: - version "6.9.4" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.4.tgz#9090b290d1f91728d3c22e54843ca44aea5ab687" - integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ== + version "6.9.6" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.6.tgz#26ed3c8243a431b2924aca84cc90471f35d5a0ee" + integrity sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ== qs@~6.5.2: version "6.5.2" @@ -5585,9 +5597,9 @@ regjsgen@^0.5.1: integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== regjsparser@^0.6.4: - version "0.6.4" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" - integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== + version "0.6.6" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.6.tgz#6d8c939d1a654f78859b08ddcc4aa777f3fa800a" + integrity sha512-jjyuCp+IEMIm3N1H1LLTJW1EISEJV9+5oHdEyrt43Pg9cDSb6rrLZei2cVWpl0xTjmmlpec/lEQGYgM7xfpGCQ== dependencies: jsesc "~0.5.0" @@ -5838,9 +5850,9 @@ safe-json-stringify@~1: integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== sass@^1.18.0: - version "1.30.0" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.30.0.tgz#60bbbbaf76ba10117e61c6c24f00161c3d60610e" - integrity sha512-26EUhOXRLaUY7+mWuRFqGeGGNmhB1vblpTENO1Z7mAzzIZeVxZr9EZoaY1kyGLFWdSOZxRMAufiN2mkbO6dAlw== + version "1.32.5" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.32.5.tgz#2882d22ad5748c05fa9bff6c3b0ffbc4f4b9e1dc" + integrity sha512-kU1yJ5zUAmPxr7f3q0YXTAd1oZjSR1g3tYyv+xu0HZSl5JiNOaE987eiz7wCUvbm4I9fGWGU2TgApTtcP4GMNQ== dependencies: chokidar ">=2.0.0 <4.0.0" @@ -6145,7 +6157,7 @@ string-width@^4.0.0, string-width@^4.1.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.0" -string.prototype.trimend@^1.0.1: +string.prototype.trimend@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b" integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw== @@ -6153,7 +6165,7 @@ string.prototype.trimend@^1.0.1: call-bind "^1.0.0" define-properties "^1.1.3" -string.prototype.trimstart@^1.0.1: +string.prototype.trimstart@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa" integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg== @@ -6311,9 +6323,9 @@ table@^5.2.3: string-width "^3.0.0" tar-stream@^2.1.2: - version "2.1.4" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.4.tgz#c4fb1a11eb0da29b893a5b25476397ba2d053bfa" - integrity sha512-o3pS2zlG4gxr67GmFYBLlq+dM8gyRGUOvsrHclSkvtVtQbjV0s/+ZE8OpICbaj8clrX3tjeHngYGP7rweaBnuw== + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== dependencies: bl "^4.0.3" end-of-stream "^1.4.1" @@ -6435,9 +6447,9 @@ tslib@^1.10.0, tslib@^1.9.0: integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== tslib@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.3.tgz#8e0741ac45fc0c226e58a17bfc3e64b9bc6ca61c" - integrity sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ== + version "2.1.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a" + integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== tunnel-agent@^0.6.0: version "0.6.0" @@ -6516,9 +6528,9 @@ uglify-js@^2.6.1: uglify-to-browserify "~1.0.0" uglify-js@^3.1.4: - version "3.12.1" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.1.tgz#78307f539f7b9ca5557babb186ea78ad30cc0375" - integrity sha512-o8lHP20KjIiQe5b/67Rh68xEGRrc2SRsCuuoYclXXoC74AfSRGblU1HKzJWH3HxPZ+Ort85fWHpSX7KwBUC9CQ== + version "3.12.5" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.5.tgz#83241496087c640efe9dfc934832e71725aba008" + integrity sha512-SgpgScL4T7Hj/w/GexjnBHi3Ien9WS1Rpfg5y91WXMj9SY997ZCQU76mH4TpLwwfmMvoOU8wiaRkIf6NaH3mtg== uglify-to-browserify@~1.0.0: version "1.0.2" @@ -6553,11 +6565,6 @@ uniq@^1.0.1: resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= -universalify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d" - integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== - universalify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" @@ -6574,9 +6581,9 @@ upper-case@^1.0.3: integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= uri-js@^4.2.2: - version "4.4.0" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602" - integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g== + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" @@ -6681,9 +6688,9 @@ void-elements@^3.1.0: integrity sha1-YU9/v42AHwu18GYfWy9XhXUOTwk= vue-eslint-parser@^7.0.0: - version "7.3.0" - resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.3.0.tgz#894085839d99d81296fa081d19643733f23d7559" - integrity sha512-n5PJKZbyspD0+8LnaZgpEvNCrjQx1DyDHw8JdWwoxhhC+yRip4TAvSDpXGf9SWX6b0umeB5aR61gwUo6NVvFxw== + version "7.4.1" + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.4.1.tgz#e4adcf7876a7379758d9056a72235af18a587f92" + integrity sha512-AFvhdxpFvliYq1xt/biNBslTHE/zbEvSnr1qfHA/KxRIpErmEDrQZlQnvEexednRHmLfDNOMuDYwZL5xkLzIXQ== dependencies: debug "^4.1.1" eslint-scope "^5.0.0" @@ -6711,9 +6718,9 @@ vue-template-es2015-compiler@^1.9.0: integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw== vuex@^3.2.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/vuex/-/vuex-3.6.0.tgz#95efa56a58f7607c135b053350833a09e01aa813" - integrity sha512-W74OO2vCJPs9/YjNjW8lLbj+jzT24waTo2KShI8jLvJW8OaIkgb3wuAMA7D+ZiUxDOx3ubwSZTaJBip9G8a3aQ== + version "3.6.2" + resolved "https://registry.yarnpkg.com/vuex/-/vuex-3.6.2.tgz#236bc086a870c3ae79946f107f16de59d5895e71" + integrity sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw== wcwidth@^1.0.1: version "1.0.1" From 916746c719edd8390dc4460519fb7c3561403bd0 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Fri, 29 Jan 2021 19:06:09 +0100 Subject: [PATCH 77/88] remove misplaced changelog item --- changelog/reva-update-2020-11-26.md | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 changelog/reva-update-2020-11-26.md diff --git a/changelog/reva-update-2020-11-26.md b/changelog/reva-update-2020-11-26.md deleted file mode 100644 index d28b410cbe..0000000000 --- a/changelog/reva-update-2020-11-26.md +++ /dev/null @@ -1,6 +0,0 @@ -Enhancement: Update reva to v1.4.1-0.20201125172625-a5ab834a565d - -Mostly to bring fixes to pressing changes. - -https://github.com/cs3org/reva/pull/1320 -https://github.com/cs3org/reva/pull/1338 From b7f02b0d1c7a0371d07ba498535244e30c85b078 Mon Sep 17 00:00:00 2001 From: Willy Kloucek <34452982+wkloucek@users.noreply.github.com> Date: Fri, 29 Jan 2021 18:08:28 +0000 Subject: [PATCH 78/88] Automated changelog update [skip ci] --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 006278cffa..4f54670b3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ The following sections list the changes for unreleased. ## Summary * Bugfix - Check if roles are present in user object before looking those up: [#1388](https://github.com/owncloud/ocis/pull/1388) +* Bugfix - Fix etcd address configuration: [#1546](https://github.com/owncloud/ocis/pull/1546) * Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) * Enhancement - Update reva to v1.5.2-0.20210125114636-0c10b333ee69: [#1482](https://github.com/owncloud/ocis/pull/1482) @@ -16,6 +17,14 @@ The following sections list the changes for unreleased. https://github.com/owncloud/ocis/pull/1388 +* Bugfix - Fix etcd address configuration: [#1546](https://github.com/owncloud/ocis/pull/1546) + + The etcd server address in `MICRO_REGISTRY_ADDRESS` was not picked up when etcd was set as + service discovery registry `MICRO_REGISTRY=etcd`. Therefore etcd was only working if + available on localhost / 127.0.0.1. + + https://github.com/owncloud/ocis/pull/1546 + * Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) Tags: ocis, runtime From 45bb22863e33e7a1613de8dce7d30411f4610fb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 29 Jan 2021 19:18:26 +0000 Subject: [PATCH 79/88] Automated changelog update [skip ci] --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f54670b3f..918cdc55c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ The following sections list the changes for unreleased. * Bugfix - Check if roles are present in user object before looking those up: [#1388](https://github.com/owncloud/ocis/pull/1388) * Bugfix - Fix etcd address configuration: [#1546](https://github.com/owncloud/ocis/pull/1546) * Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) +* Enhancement - Functionality to map home directory to different storage providers: [#1186](https://github.com/owncloud/ocis/pull/1186) * Enhancement - Update reva to v1.5.2-0.20210125114636-0c10b333ee69: [#1482](https://github.com/owncloud/ocis/pull/1482) ## Details @@ -35,6 +36,17 @@ The following sections list the changes for unreleased. https://github.com/owncloud/ocis/pull/1483 +* Enhancement - Functionality to map home directory to different storage providers: [#1186](https://github.com/owncloud/ocis/pull/1186) + + We added a parameter in reva that allows us to redirect /home requests to different storage + providers based on a mapping derived from the user attributes, which was previously not + possible since we hardcode the /home path for all users. For example, having its value as + `/home/{{substr 0 1 .Username}}` can be used to redirect home requests for different users to + different storage providers. + + https://github.com/owncloud/ocis/pull/1186 + https://github.com/cs3org/reva/pull/1142 + * Enhancement - Update reva to v1.5.2-0.20210125114636-0c10b333ee69: [#1482](https://github.com/owncloud/ocis/pull/1482) * initial checksum support for ocis [cs3org/reva#1400](https://github.com/cs3org/reva/pull/1400) From f3404ab202a3c18ed0098dec4e12f8ed86b58d08 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Mon, 1 Feb 2021 09:21:03 +0100 Subject: [PATCH 80/88] fix typo --- .../continuous-deployment-config/cs3_users_ocis/latest.yml | 2 +- .../continuous-deployment-config/cs3_users_ocis/released.yml | 2 +- .../continuous-deployment-config/ocis_keycloak/latest.yml | 2 +- .../continuous-deployment-config/ocis_keycloak/released.yml | 2 +- .../continuous-deployment-config/ocis_traefik/latest.yml | 2 +- .../continuous-deployment-config/ocis_traefik/released.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deployments/continuous-deployment-config/cs3_users_ocis/latest.yml b/deployments/continuous-deployment-config/cs3_users_ocis/latest.yml index 4ad9fcecfb..d8cee1a5a4 100644 --- a/deployments/continuous-deployment-config/cs3_users_ocis/latest.yml +++ b/deployments/continuous-deployment-config/cs3_users_ocis/latest.yml @@ -4,7 +4,7 @@ server_type: cx21 image: ubuntu-20.04 location: nbg1 - inital_ssh_key_names: + initial_ssh_key_names: - owncloud-ocis@drone.owncloud.com labels: owner: wkloucek diff --git a/deployments/continuous-deployment-config/cs3_users_ocis/released.yml b/deployments/continuous-deployment-config/cs3_users_ocis/released.yml index ce0246a5f5..862bc636fe 100644 --- a/deployments/continuous-deployment-config/cs3_users_ocis/released.yml +++ b/deployments/continuous-deployment-config/cs3_users_ocis/released.yml @@ -4,7 +4,7 @@ server_type: cx21 image: ubuntu-20.04 location: nbg1 - inital_ssh_key_names: + initial_ssh_key_names: - owncloud-ocis@drone.owncloud.com labels: owner: wkloucek diff --git a/deployments/continuous-deployment-config/ocis_keycloak/latest.yml b/deployments/continuous-deployment-config/ocis_keycloak/latest.yml index 7baf4b1e87..46e74fbd04 100644 --- a/deployments/continuous-deployment-config/ocis_keycloak/latest.yml +++ b/deployments/continuous-deployment-config/ocis_keycloak/latest.yml @@ -4,7 +4,7 @@ server_type: cx21 image: ubuntu-20.04 location: nbg1 - inital_ssh_key_names: + initial_ssh_key_names: - owncloud-ocis@drone.owncloud.com labels: owner: wkloucek diff --git a/deployments/continuous-deployment-config/ocis_keycloak/released.yml b/deployments/continuous-deployment-config/ocis_keycloak/released.yml index d7a926c2e5..3259bcdcf6 100644 --- a/deployments/continuous-deployment-config/ocis_keycloak/released.yml +++ b/deployments/continuous-deployment-config/ocis_keycloak/released.yml @@ -4,7 +4,7 @@ server_type: cx21 image: ubuntu-20.04 location: nbg1 - inital_ssh_key_names: + initial_ssh_key_names: - owncloud-ocis@drone.owncloud.com labels: owner: wkloucek diff --git a/deployments/continuous-deployment-config/ocis_traefik/latest.yml b/deployments/continuous-deployment-config/ocis_traefik/latest.yml index 2caca75ba2..a52e5e6d8b 100644 --- a/deployments/continuous-deployment-config/ocis_traefik/latest.yml +++ b/deployments/continuous-deployment-config/ocis_traefik/latest.yml @@ -4,7 +4,7 @@ server_type: cx21 image: ubuntu-20.04 location: nbg1 - inital_ssh_key_names: + initial_ssh_key_names: - owncloud-ocis@drone.owncloud.com labels: owner: wkloucek diff --git a/deployments/continuous-deployment-config/ocis_traefik/released.yml b/deployments/continuous-deployment-config/ocis_traefik/released.yml index e3ff87c868..8110e85dc4 100644 --- a/deployments/continuous-deployment-config/ocis_traefik/released.yml +++ b/deployments/continuous-deployment-config/ocis_traefik/released.yml @@ -4,7 +4,7 @@ server_type: cx21 image: ubuntu-20.04 location: nbg1 - inital_ssh_key_names: + initial_ssh_key_names: - owncloud-ocis@drone.owncloud.com labels: owner: wkloucek From 10b5611167ac37f572d2e17ce56eb65775fc8abe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 1 Feb 2021 11:30:34 +0000 Subject: [PATCH 81/88] Automated changelog update [skip ci] --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 918cdc55c2..d1939d1847 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ The following sections list the changes for unreleased. * Bugfix - Check if roles are present in user object before looking those up: [#1388](https://github.com/owncloud/ocis/pull/1388) * Bugfix - Fix etcd address configuration: [#1546](https://github.com/owncloud/ocis/pull/1546) * Change - Move runtime code on refs/pman over to owncloud/ocis/ocis: [#1483](https://github.com/owncloud/ocis/pull/1483) +* Enhancement - Use a default protocol parameter instead of explicitly disabling tus: [#1331](https://github.com/cs3org/reva/pull/1331) * Enhancement - Functionality to map home directory to different storage providers: [#1186](https://github.com/owncloud/ocis/pull/1186) * Enhancement - Update reva to v1.5.2-0.20210125114636-0c10b333ee69: [#1482](https://github.com/owncloud/ocis/pull/1482) @@ -36,6 +37,11 @@ The following sections list the changes for unreleased. https://github.com/owncloud/ocis/pull/1483 +* Enhancement - Use a default protocol parameter instead of explicitly disabling tus: [#1331](https://github.com/cs3org/reva/pull/1331) + + https://github.com/cs3org/reva/pull/1331 + https://github.com/owncloud/ocis/pull/1374 + * Enhancement - Functionality to map home directory to different storage providers: [#1186](https://github.com/owncloud/ocis/pull/1186) We added a parameter in reva that allows us to redirect /home requests to different storage From 9bfc8693f2b0928ceca3057bca6982033d443a38 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Sat, 30 Jan 2021 14:58:25 +0545 Subject: [PATCH 82/88] Bump core commit id for tests --- .drone.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.env b/.drone.env index e4821599f9..0eb73cb02d 100644 --- a/.drone.env +++ b/.drone.env @@ -1,5 +1,5 @@ # The test runner source for API tests -CORE_COMMITID=81191d99368f5dcfa2b3b1a7ba4719fa61541bd5 +CORE_COMMITID=0331dc83cef8efb685b036649c177ee06522d212 CORE_BRANCH=master # The test runner source for UI tests From 5b8f5eb16de64da8d0ab615fb1b113764a73fb8a Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Sat, 30 Jan 2021 14:58:59 +0545 Subject: [PATCH 83/88] Bump web commit id for tests --- .drone.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.env b/.drone.env index 0eb73cb02d..6f85f457c0 100644 --- a/.drone.env +++ b/.drone.env @@ -3,5 +3,5 @@ CORE_COMMITID=0331dc83cef8efb685b036649c177ee06522d212 CORE_BRANCH=master # The test runner source for UI tests -WEB_COMMITID=9a3c3149646ec27a49b26fad0eaf96cd1ae5892e +WEB_COMMITID=33342537425e68697e27ba8fbbdb52b51d6a5a54 WEB_BRANCH=master From 10629889f21e0f8b1de529788583b244343f37d9 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Sat, 30 Jan 2021 15:25:21 +0545 Subject: [PATCH 84/88] Fix links in expected-failures --- ...pected-failures-API-on-OWNCLOUD-storage.md | 90 +++++++++---------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index 32ed1b3d42..7f281b150e 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -1342,51 +1342,51 @@ The following scenarios fail on OWNCLOUD storage but not on OCIS storage: - [apiShareReshareToShares1/reShare.feature:228](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L228) - [apiShareReshareToShares1/reShare.feature:229](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L229) - [apiShareReshareToShares1/reShare.feature:230](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L230) -- [apiShareReshareToShares1/reShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L231) -- [apiShareReshareToShares1/reShare.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L232) -- [apiShareReshareToShares1/reShare.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L233) -- [apiShareReshareToShares1/reShare.feature:235](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L235) -- [apiShareReshareToShares1/reShare.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L236) -- [apiShareReshareToShares1/reShare.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L237) -- [apiShareReshareToShares1/reShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L238) -- [apiShareReshareToShares1/reShare.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L239) -- [apiShareReshareToShares1/reShare.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares1/reShare.feature#L240) -- [apiShareReshareToShares2/reShareSubfolder.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L47) -- [apiShareReshareToShares2/reShareSubfolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L48) -- [apiShareReshareToShares2/reShareSubfolder.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L49) -- [apiShareReshareToShares2/reShareSubfolder.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L50) -- [apiShareReshareToShares2/reShareSubfolder.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L51) -- [apiShareReshareToShares2/reShareSubfolder.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L52) -- [apiShareReshareToShares2/reShareSubfolder.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L53) -- [apiShareReshareToShares2/reShareSubfolder.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L54) -- [apiShareReshareToShares2/reShareSubfolder.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L55) -- [apiShareReshareToShares2/reShareSubfolder.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L56) -- [apiShareReshareToShares2/reShareSubfolder.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L57) -- [apiShareReshareToShares2/reShareSubfolder.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L58) -- [apiShareReshareToShares2/reShareSubfolder.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L60) -- [apiShareReshareToShares2/reShareSubfolder.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L61) -- [apiShareReshareToShares2/reShareSubfolder.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L62) -- [apiShareReshareToShares2/reShareSubfolder.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L63) -- [apiShareReshareToShares2/reShareSubfolder.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L64) -- [apiShareReshareToShares2/reShareSubfolder.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L65) -- [apiShareReshareToShares2/reShareSubfolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L66) -- [apiShareReshareToShares2/reShareSubfolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L67) -- [apiShareReshareToShares2/reShareSubfolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L68) -- [apiShareReshareToShares2/reShareSubfolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L69) -- [apiShareReshareToShares2/reShareSubfolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L70) -- [apiShareReshareToShares2/reShareSubfolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L71) -- [apiShareReshareToShares2/reShareSubfolder.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L73) -- [apiShareReshareToShares2/reShareSubfolder.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L74) -- [apiShareReshareToShares2/reShareSubfolder.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L75) -- [apiShareReshareToShares2/reShareSubfolder.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L76) -- [apiShareReshareToShares2/reShareSubfolder.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L77) -- [apiShareReshareToShares2/reShareSubfolder.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L78) -- [apiShareReshareToShares2/reShareSubfolder.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L80) -- [apiShareReshareToShares2/reShareSubfolder.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L81) -- [apiShareReshareToShares2/reShareSubfolder.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L82) -- [apiShareReshareToShares2/reShareSubfolder.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L83) -- [apiShareReshareToShares2/reShareSubfolder.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L84) -- [apiShareReshareToShares2/reShareSubfolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares3/apiShareReshareToShares2/reShareSubfolder.feature#L85) +- [apiShareReshareToShares1/reShare.feature:231](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L231) +- [apiShareReshareToShares1/reShare.feature:232](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L232) +- [apiShareReshareToShares1/reShare.feature:233](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L233) +- [apiShareReshareToShares1/reShare.feature:235](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L235) +- [apiShareReshareToShares1/reShare.feature:236](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L236) +- [apiShareReshareToShares1/reShare.feature:237](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L237) +- [apiShareReshareToShares1/reShare.feature:238](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L238) +- [apiShareReshareToShares1/reShare.feature:239](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L239) +- [apiShareReshareToShares1/reShare.feature:240](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares1/reShare.feature#L240) +- [apiShareReshareToShares2/reShareSubfolder.feature:47](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L47) +- [apiShareReshareToShares2/reShareSubfolder.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L48) +- [apiShareReshareToShares2/reShareSubfolder.feature:49](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L49) +- [apiShareReshareToShares2/reShareSubfolder.feature:50](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L50) +- [apiShareReshareToShares2/reShareSubfolder.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L51) +- [apiShareReshareToShares2/reShareSubfolder.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L52) +- [apiShareReshareToShares2/reShareSubfolder.feature:53](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L53) +- [apiShareReshareToShares2/reShareSubfolder.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L54) +- [apiShareReshareToShares2/reShareSubfolder.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L55) +- [apiShareReshareToShares2/reShareSubfolder.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L56) +- [apiShareReshareToShares2/reShareSubfolder.feature:57](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L57) +- [apiShareReshareToShares2/reShareSubfolder.feature:58](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L58) +- [apiShareReshareToShares2/reShareSubfolder.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L60) +- [apiShareReshareToShares2/reShareSubfolder.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L61) +- [apiShareReshareToShares2/reShareSubfolder.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L62) +- [apiShareReshareToShares2/reShareSubfolder.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L63) +- [apiShareReshareToShares2/reShareSubfolder.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L64) +- [apiShareReshareToShares2/reShareSubfolder.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L65) +- [apiShareReshareToShares2/reShareSubfolder.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L66) +- [apiShareReshareToShares2/reShareSubfolder.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L67) +- [apiShareReshareToShares2/reShareSubfolder.feature:68](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L68) +- [apiShareReshareToShares2/reShareSubfolder.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L69) +- [apiShareReshareToShares2/reShareSubfolder.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L70) +- [apiShareReshareToShares2/reShareSubfolder.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L71) +- [apiShareReshareToShares2/reShareSubfolder.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L73) +- [apiShareReshareToShares2/reShareSubfolder.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L74) +- [apiShareReshareToShares2/reShareSubfolder.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L75) +- [apiShareReshareToShares2/reShareSubfolder.feature:76](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L76) +- [apiShareReshareToShares2/reShareSubfolder.feature:77](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L77) +- [apiShareReshareToShares2/reShareSubfolder.feature:78](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L78) +- [apiShareReshareToShares2/reShareSubfolder.feature:80](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L80) +- [apiShareReshareToShares2/reShareSubfolder.feature:81](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L81) +- [apiShareReshareToShares2/reShareSubfolder.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L82) +- [apiShareReshareToShares2/reShareSubfolder.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L83) +- [apiShareReshareToShares2/reShareSubfolder.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L84) +- [apiShareReshareToShares2/reShareSubfolder.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareReshareToShares2/reShareSubfolder.feature#L85) #### [cannot move from Shares folder](https://github.com/owncloud/ocis/issues/560) From 55b3464c4935ce5a52fd8fb07f22f8f00fcfbc4e Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Sat, 30 Jan 2021 15:19:24 +0545 Subject: [PATCH 85/88] Adjust API expected-failures --- .../expected-failures-API-on-OCIS-storage.md | 97 +++++++++++-------- ...pected-failures-API-on-OWNCLOUD-storage.md | 97 +++++++++++-------- 2 files changed, 112 insertions(+), 82 deletions(-) diff --git a/tests/acceptance/expected-failures-API-on-OCIS-storage.md b/tests/acceptance/expected-failures-API-on-OCIS-storage.md index 7f9046c710..5a395f2930 100644 --- a/tests/acceptance/expected-failures-API-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-API-on-OCIS-storage.md @@ -53,50 +53,50 @@ Basic file management like up and download, move, copy, properties, trash, versi - [apiTrashbin/trashbinFilesFolders.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L273) #### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -- [apiTrashbin/trashbinRestore.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L54) -- [apiTrashbin/trashbinRestore.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L55) +- [apiTrashbin/trashbinRestore.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L51) +- [apiTrashbin/trashbinRestore.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L52) +- [apiTrashbin/trashbinRestore.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L69) - [apiTrashbin/trashbinRestore.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L70) -- [apiTrashbin/trashbinRestore.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L71) +- [apiTrashbin/trashbinRestore.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L117) - [apiTrashbin/trashbinRestore.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L118) - [apiTrashbin/trashbinRestore.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L119) - [apiTrashbin/trashbinRestore.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L120) -- [apiTrashbin/trashbinRestore.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L121) -- [apiTrashbin/trashbinRestore.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L211) -- [apiTrashbin/trashbinRestore.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L212) -- [apiTrashbin/trashbinRestore.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L255) -- [apiTrashbin/trashbinRestore.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L256) -- [apiTrashbin/trashbinRestore.feature:257](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L257) +- [apiTrashbin/trashbinRestore.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L213) +- [apiTrashbin/trashbinRestore.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L214) - [apiTrashbin/trashbinRestore.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L258) - [apiTrashbin/trashbinRestore.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L259) - [apiTrashbin/trashbinRestore.feature:260](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L260) -- [apiTrashbin/trashbinRestore.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L275) -- [apiTrashbin/trashbinRestore.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L276) -- [apiTrashbin/trashbinRestore.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L292) -- [apiTrashbin/trashbinRestore.feature:293](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L293) +- [apiTrashbin/trashbinRestore.feature:261](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L261) +- [apiTrashbin/trashbinRestore.feature:262](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L262) +- [apiTrashbin/trashbinRestore.feature:263](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L263) +- [apiTrashbin/trashbinRestore.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L280) +- [apiTrashbin/trashbinRestore.feature:281](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L281) +- [apiTrashbin/trashbinRestore.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L298) +- [apiTrashbin/trashbinRestore.feature:299](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L299) #### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) #### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) -- [apiTrashbin/trashbinRestore.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L40) -- [apiTrashbin/trashbinRestore.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L41) -- [apiTrashbin/trashbinRestore.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L138) +- [apiTrashbin/trashbinRestore.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L35) +- [apiTrashbin/trashbinRestore.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L36) - [apiTrashbin/trashbinRestore.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L139) +- [apiTrashbin/trashbinRestore.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L140) #### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) #### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) #### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) +- [apiTrashbin/trashbinRestore.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L89) - [apiTrashbin/trashbinRestore.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L90) - [apiTrashbin/trashbinRestore.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L91) - [apiTrashbin/trashbinRestore.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L92) - [apiTrashbin/trashbinRestore.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L93) - [apiTrashbin/trashbinRestore.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L94) -- [apiTrashbin/trashbinRestore.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L95) #### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) #### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) -- [apiTrashbin/trashbinRestore.feature:311](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L311) -- [apiTrashbin/trashbinRestore.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L312) -- [apiTrashbin/trashbinRestore.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L330) -- [apiTrashbin/trashbinRestore.feature:331](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L331) +- [apiTrashbin/trashbinRestore.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L318) +- [apiTrashbin/trashbinRestore.feature:319](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L319) +- [apiTrashbin/trashbinRestore.feature:338](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L338) +- [apiTrashbin/trashbinRestore.feature:339](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L339) #### [requests to webdav URLs with an fileid containing an invalid storage_id result in error 500](https://github.com/owncloud/ocis/issues/772) - [apiVersions/fileVersions.feature:384](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L384) @@ -1416,12 +1416,12 @@ cannot share a folder with create permission - [apiTrashbin/trashbinSharingToShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L40) - [apiTrashbin/trashbinSharingToShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L41) -- [apiTrashbin/trashbinSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L63) - [apiTrashbin/trashbinSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L64) -- [apiTrashbin/trashbinSharingToShares.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L82) +- [apiTrashbin/trashbinSharingToShares.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L65) - [apiTrashbin/trashbinSharingToShares.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L83) -- [apiTrashbin/trashbinSharingToShares.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L102) +- [apiTrashbin/trashbinSharingToShares.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L84) - [apiTrashbin/trashbinSharingToShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L103) +- [apiTrashbin/trashbinSharingToShares.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L104) #### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - [apiShareOperationsToShares/uploadToShare.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L246) @@ -1723,6 +1723,7 @@ Scenario Outline: Moving a file into a shared folder as the sharee and as the sh - [apiShareManagementToShares/moveReceivedShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L198) - [apiShareManagementToShares/moveReceivedShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L221) - [apiShareManagementToShares/moveReceivedShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L222) +- [apiShareManagementToShares/moveReceivedShare.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L224) - [apiShareOperationsToShares/getWebDAVSharePermissions.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L59) - [apiShareOperationsToShares/getWebDAVSharePermissions.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L60) - [apiShareOperationsToShares/getWebDAVSharePermissions.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L94) @@ -1951,6 +1952,8 @@ _ocs: api compatibility, return correct status code_ #### [subadmin endpoints not implemented for users](https://github.com/owncloud/product/issues/289) - [apiProvisioning-v1/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L125) +- [apiProvisioning-v1/addUser.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L144) +- [apiProvisioning-v1/addUser.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L155) - [apiProvisioning-v1/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L48) - [apiProvisioning-v1/deleteUser.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L73) - [apiProvisioning-v1/disableUser.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L222) @@ -1960,6 +1963,8 @@ _ocs: api compatibility, return correct status code_ - [apiProvisioning-v1/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L113) - [apiProvisioning-v2/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L125) +- [apiProvisioning-v2/addUser.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L144) +- [apiProvisioning-v2/addUser.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L155) - [apiProvisioning-v2/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L48) - [apiProvisioning-v2/deleteUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L64) - [apiProvisioning-v2/deleteUser.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L74) @@ -1990,9 +1995,13 @@ _ocs: api compatibility, return correct status code_ - [apiProvisioningGroups-v1/addToGroup.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L146) - [apiProvisioningGroups-v1/deleteGroup.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L99) - [apiProvisioningGroups-v1/getGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L72) +- [apiProvisioningGroups-v1/getGroups.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroups.feature#L75) - [apiProvisioningGroups-v1/getSubAdminGroups.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L11) - [apiProvisioningGroups-v1/getSubAdminGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L24) +- [apiProvisioningGroups-v1/getSubAdminGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L25) +- [apiProvisioningGroups-v1/getSubAdminGroups.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L34) - [apiProvisioningGroups-v1/getUserGroups.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L56) +- [apiProvisioningGroups-v1/getUserGroups.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L132) - [apiProvisioningGroups-v1/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L110) - [apiProvisioningGroups-v1/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L123) @@ -2003,9 +2012,15 @@ _ocs: api compatibility, return correct status code_ - [apiProvisioningGroups-v2/deleteGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L101) - [apiProvisioningGroups-v2/getGroup.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroup.feature#L55) - [apiProvisioningGroups-v2/getGroup.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroup.feature#L73) +- [apiProvisioningGroups-v2/getGroups.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroups.feature#L75) - [apiProvisioningGroups-v2/getSubAdminGroups.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getSubAdminGroups.feature#L11) - [apiProvisioningGroups-v2/getSubAdminGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getSubAdminGroups.feature#L24) +- [apiProvisioningGroups-v2/getSubAdminGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getSubAdminGroups.feature#L25) +- [apiProvisioningGroups-v2/getSubAdminGroups.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getSubAdminGroups.feature#L34) +- [apiProvisioningGroups-v2/getSubAdminGroups.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getSubAdminGroups.feature#L51) +- [apiProvisioningGroups-v2/getSubAdminGroups.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getSubAdminGroups.feature#L66) - [apiProvisioningGroups-v2/getUserGroups.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L56) +- [apiProvisioningGroups-v2/getUserGroups.feature:133](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L133) - [apiProvisioningGroups-v2/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L110) - [apiProvisioningGroups-v2/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L123) @@ -2249,17 +2264,14 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiAuth/cors.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L37) - [apiAuth/cors.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L38) - [apiAuth/cors.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L39) -- [apiAuth/cors.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L40) -- [apiAuth/cors.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L41) -- [apiAuth/cors.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L59) -- [apiAuth/cors.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L60) -- [apiAuth/cors.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L61) +- [apiAuth/cors.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L43) +- [apiAuth/cors.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L44) - [apiAuth/cors.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L62) - [apiAuth/cors.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L63) - [apiAuth/cors.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L64) -- [apiAuth/cors.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L83) -- [apiAuth/cors.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L84) -- [apiAuth/cors.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L85) +- [apiAuth/cors.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L65) +- [apiAuth/cors.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L66) +- [apiAuth/cors.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L67) - [apiAuth/cors.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L86) - [apiAuth/cors.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L87) - [apiAuth/cors.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L88) @@ -2275,15 +2287,15 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiAuth/cors.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L98) - [apiAuth/cors.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L99) - [apiAuth/cors.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L100) -- [apiAuth/cors.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L118) -- [apiAuth/cors.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L119) -- [apiAuth/cors.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L120) +- [apiAuth/cors.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L101) +- [apiAuth/cors.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L102) +- [apiAuth/cors.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L103) - [apiAuth/cors.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L121) - [apiAuth/cors.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L122) - [apiAuth/cors.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L123) -- [apiAuth/cors.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L142) -- [apiAuth/cors.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L143) -- [apiAuth/cors.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L144) +- [apiAuth/cors.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L124) +- [apiAuth/cors.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L125) +- [apiAuth/cors.feature:126](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L126) - [apiAuth/cors.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L145) - [apiAuth/cors.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L146) - [apiAuth/cors.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L147) @@ -2297,12 +2309,15 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiAuth/cors.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L155) - [apiAuth/cors.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L156) - [apiAuth/cors.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L157) -- [apiAuth/cors.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L178) -- [apiAuth/cors.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L179) -- [apiAuth/cors.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L180) +- [apiAuth/cors.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L158) +- [apiAuth/cors.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L159) +- [apiAuth/cors.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L160) - [apiAuth/cors.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L181) - [apiAuth/cors.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L182) - [apiAuth/cors.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L183) +- [apiAuth/cors.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L184) +- [apiAuth/cors.feature:185](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L185) +- [apiAuth/cors.feature:186](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L186) #### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) #### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) diff --git a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md index 7f281b150e..f804bbe208 100644 --- a/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-API-on-OWNCLOUD-storage.md @@ -60,50 +60,50 @@ The following scenarios fail on OWNCLOUD storage but not on OCIS storage: - [apiTrashbin/trashbinFilesFolders.feature:273](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinFilesFolders.feature#L273) #### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) -- [apiTrashbin/trashbinRestore.feature:54](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L54) -- [apiTrashbin/trashbinRestore.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L55) +- [apiTrashbin/trashbinRestore.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L51) +- [apiTrashbin/trashbinRestore.feature:52](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L52) +- [apiTrashbin/trashbinRestore.feature:69](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L69) - [apiTrashbin/trashbinRestore.feature:70](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L70) -- [apiTrashbin/trashbinRestore.feature:71](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L71) +- [apiTrashbin/trashbinRestore.feature:117](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L117) - [apiTrashbin/trashbinRestore.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L118) - [apiTrashbin/trashbinRestore.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L119) - [apiTrashbin/trashbinRestore.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L120) -- [apiTrashbin/trashbinRestore.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L121) -- [apiTrashbin/trashbinRestore.feature:211](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L211) -- [apiTrashbin/trashbinRestore.feature:212](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L212) -- [apiTrashbin/trashbinRestore.feature:255](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L255) -- [apiTrashbin/trashbinRestore.feature:256](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L256) -- [apiTrashbin/trashbinRestore.feature:257](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L257) +- [apiTrashbin/trashbinRestore.feature:213](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L213) +- [apiTrashbin/trashbinRestore.feature:214](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L214) - [apiTrashbin/trashbinRestore.feature:258](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L258) - [apiTrashbin/trashbinRestore.feature:259](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L259) - [apiTrashbin/trashbinRestore.feature:260](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L260) -- [apiTrashbin/trashbinRestore.feature:275](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L275) -- [apiTrashbin/trashbinRestore.feature:276](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L276) -- [apiTrashbin/trashbinRestore.feature:292](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L292) -- [apiTrashbin/trashbinRestore.feature:293](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L293) +- [apiTrashbin/trashbinRestore.feature:261](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L261) +- [apiTrashbin/trashbinRestore.feature:262](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L262) +- [apiTrashbin/trashbinRestore.feature:263](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L263) +- [apiTrashbin/trashbinRestore.feature:280](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L280) +- [apiTrashbin/trashbinRestore.feature:281](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L281) +- [apiTrashbin/trashbinRestore.feature:298](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L298) +- [apiTrashbin/trashbinRestore.feature:299](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L299) #### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) #### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) -- [apiTrashbin/trashbinRestore.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L40) -- [apiTrashbin/trashbinRestore.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L41) -- [apiTrashbin/trashbinRestore.feature:138](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L138) +- [apiTrashbin/trashbinRestore.feature:35](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L35) +- [apiTrashbin/trashbinRestore.feature:36](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L36) - [apiTrashbin/trashbinRestore.feature:139](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L139) +- [apiTrashbin/trashbinRestore.feature:140](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L140) #### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) #### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) #### [trash-bin restore move does not send back Etag and other headers](https://github.com/owncloud/ocis/issues/1121) +- [apiTrashbin/trashbinRestore.feature:89](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L89) - [apiTrashbin/trashbinRestore.feature:90](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L90) - [apiTrashbin/trashbinRestore.feature:91](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L91) - [apiTrashbin/trashbinRestore.feature:92](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L92) - [apiTrashbin/trashbinRestore.feature:93](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L93) - [apiTrashbin/trashbinRestore.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L94) -- [apiTrashbin/trashbinRestore.feature:95](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L95) #### [href in trashbin PROPFIND response is wrong](https://github.com/owncloud/ocis/issues/1120) #### [cannot restore to a different file-name](https://github.com/owncloud/ocis/issues/1122) -- [apiTrashbin/trashbinRestore.feature:311](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L311) -- [apiTrashbin/trashbinRestore.feature:312](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L312) -- [apiTrashbin/trashbinRestore.feature:330](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L330) -- [apiTrashbin/trashbinRestore.feature:331](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L331) +- [apiTrashbin/trashbinRestore.feature:318](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L318) +- [apiTrashbin/trashbinRestore.feature:319](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L319) +- [apiTrashbin/trashbinRestore.feature:338](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L338) +- [apiTrashbin/trashbinRestore.feature:339](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinRestore.feature#L339) #### [requests to webdav URLs with an fileid containing an invalid storage_id result in error 500](https://github.com/owncloud/ocis/issues/772) - [apiVersions/fileVersions.feature:384](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiVersions/fileVersions.feature#L384) @@ -1516,12 +1516,12 @@ The following scenarios fail on OWNCLOUD storage but not on OCIS storage: - [apiTrashbin/trashbinSharingToShares.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L40) - [apiTrashbin/trashbinSharingToShares.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L41) -- [apiTrashbin/trashbinSharingToShares.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L63) - [apiTrashbin/trashbinSharingToShares.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L64) -- [apiTrashbin/trashbinSharingToShares.feature:82](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L82) +- [apiTrashbin/trashbinSharingToShares.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L65) - [apiTrashbin/trashbinSharingToShares.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L83) -- [apiTrashbin/trashbinSharingToShares.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L102) +- [apiTrashbin/trashbinSharingToShares.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L84) - [apiTrashbin/trashbinSharingToShares.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L103) +- [apiTrashbin/trashbinSharingToShares.feature:104](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiTrashbin/trashbinSharingToShares.feature#L104) #### [remote.php/dav/uploads endpoint does not exist](https://github.com/owncloud/ocis/issues/1321) - [apiShareOperationsToShares/uploadToShare.feature:246](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/uploadToShare.feature#L246) @@ -1829,6 +1829,7 @@ Scenario Outline: Moving a file into a shared folder as the sharee and as the sh - [apiShareManagementToShares/moveReceivedShare.feature:198](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L198) - [apiShareManagementToShares/moveReceivedShare.feature:221](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L221) - [apiShareManagementToShares/moveReceivedShare.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L222) +- [apiShareManagementToShares/moveReceivedShare.feature:224](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareManagementToShares/moveReceivedShare.feature#L224) - [apiShareOperationsToShares/getWebDAVSharePermissions.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L59) - [apiShareOperationsToShares/getWebDAVSharePermissions.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L60) - [apiShareOperationsToShares/getWebDAVSharePermissions.feature:94](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiShareOperationsToShares/getWebDAVSharePermissions.feature#L94) @@ -2065,6 +2066,8 @@ _ocs: api compatibility, return correct status code_ #### [subadmin endpoints not implemented for users](https://github.com/owncloud/product/issues/289) - [apiProvisioning-v1/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L125) +- [apiProvisioning-v1/addUser.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L144) +- [apiProvisioning-v1/addUser.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/addUser.feature#L155) - [apiProvisioning-v1/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/createSubAdmin.feature#L48) - [apiProvisioning-v1/deleteUser.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/deleteUser.feature#L73) - [apiProvisioning-v1/disableUser.feature:222](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/disableUser.feature#L222) @@ -2074,6 +2077,8 @@ _ocs: api compatibility, return correct status code_ - [apiProvisioning-v1/resetUserPassword.feature:113](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v1/resetUserPassword.feature#L113) - [apiProvisioning-v2/addUser.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L125) +- [apiProvisioning-v2/addUser.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L144) +- [apiProvisioning-v2/addUser.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/addUser.feature#L155) - [apiProvisioning-v2/createSubAdmin.feature:48](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/createSubAdmin.feature#L48) - [apiProvisioning-v2/deleteUser.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L64) - [apiProvisioning-v2/deleteUser.feature:74](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioning-v2/deleteUser.feature#L74) @@ -2104,9 +2109,13 @@ _ocs: api compatibility, return correct status code_ - [apiProvisioningGroups-v1/addToGroup.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/addToGroup.feature#L146) - [apiProvisioningGroups-v1/deleteGroup.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/deleteGroup.feature#L99) - [apiProvisioningGroups-v1/getGroup.feature:72](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroup.feature#L72) +- [apiProvisioningGroups-v1/getGroups.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getGroups.feature#L75) - [apiProvisioningGroups-v1/getSubAdminGroups.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L11) - [apiProvisioningGroups-v1/getSubAdminGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L24) +- [apiProvisioningGroups-v1/getSubAdminGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L25) +- [apiProvisioningGroups-v1/getSubAdminGroups.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getSubAdminGroups.feature#L34) - [apiProvisioningGroups-v1/getUserGroups.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L56) +- [apiProvisioningGroups-v1/getUserGroups.feature:132](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/getUserGroups.feature#L132) - [apiProvisioningGroups-v1/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L110) - [apiProvisioningGroups-v1/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v1/removeFromGroup.feature#L123) @@ -2116,10 +2125,16 @@ _ocs: api compatibility, return correct status code_ - [apiProvisioningGroups-v2/addToGroup.feature:141](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/addToGroup.feature#L141) - [apiProvisioningGroups-v2/deleteGroup.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/deleteGroup.feature#L101) - [apiProvisioningGroups-v2/getGroup.feature:55](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroup.feature#L55) +- [apiProvisioningGroups-v2/getGroups.feature:75](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroups.feature#L75) - [apiProvisioningGroups-v2/getGroup.feature:73](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getGroup.feature#L73) - [apiProvisioningGroups-v2/getSubAdminGroups.feature:11](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getSubAdminGroups.feature#L11) - [apiProvisioningGroups-v2/getSubAdminGroups.feature:24](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getSubAdminGroups.feature#L24) +- [apiProvisioningGroups-v2/getSubAdminGroups.feature:25](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getSubAdminGroups.feature#L25) +- [apiProvisioningGroups-v2/getSubAdminGroups.feature:34](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getSubAdminGroups.feature#L34) +- [apiProvisioningGroups-v2/getSubAdminGroups.feature:51](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getSubAdminGroups.feature#L51) +- [apiProvisioningGroups-v2/getSubAdminGroups.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getSubAdminGroups.feature#L66) - [apiProvisioningGroups-v2/getUserGroups.feature:56](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L56) +- [apiProvisioningGroups-v2/getUserGroups.feature:133](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/getUserGroups.feature#L133) - [apiProvisioningGroups-v2/removeFromGroup.feature:110](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L110) - [apiProvisioningGroups-v2/removeFromGroup.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiProvisioningGroups-v2/removeFromGroup.feature#L123) @@ -2368,17 +2383,14 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiAuth/cors.feature:37](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L37) - [apiAuth/cors.feature:38](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L38) - [apiAuth/cors.feature:39](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L39) -- [apiAuth/cors.feature:40](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L40) -- [apiAuth/cors.feature:41](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L41) -- [apiAuth/cors.feature:59](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L59) -- [apiAuth/cors.feature:60](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L60) -- [apiAuth/cors.feature:61](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L61) +- [apiAuth/cors.feature:43](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L43) +- [apiAuth/cors.feature:44](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L44) - [apiAuth/cors.feature:62](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L62) - [apiAuth/cors.feature:63](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L63) - [apiAuth/cors.feature:64](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L64) -- [apiAuth/cors.feature:83](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L83) -- [apiAuth/cors.feature:84](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L84) -- [apiAuth/cors.feature:85](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L85) +- [apiAuth/cors.feature:65](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L65) +- [apiAuth/cors.feature:66](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L66) +- [apiAuth/cors.feature:67](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L67) - [apiAuth/cors.feature:86](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L86) - [apiAuth/cors.feature:87](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L87) - [apiAuth/cors.feature:88](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L88) @@ -2394,15 +2406,15 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiAuth/cors.feature:98](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L98) - [apiAuth/cors.feature:99](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L99) - [apiAuth/cors.feature:100](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L100) -- [apiAuth/cors.feature:118](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L118) -- [apiAuth/cors.feature:119](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L119) -- [apiAuth/cors.feature:120](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L120) +- [apiAuth/cors.feature:101](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L101) +- [apiAuth/cors.feature:102](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L102) +- [apiAuth/cors.feature:103](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L103) - [apiAuth/cors.feature:121](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L121) - [apiAuth/cors.feature:122](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L122) - [apiAuth/cors.feature:123](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L123) -- [apiAuth/cors.feature:142](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L142) -- [apiAuth/cors.feature:143](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L143) -- [apiAuth/cors.feature:144](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L144) +- [apiAuth/cors.feature:124](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L124) +- [apiAuth/cors.feature:125](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L125) +- [apiAuth/cors.feature:126](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L126) - [apiAuth/cors.feature:145](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L145) - [apiAuth/cors.feature:146](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L146) - [apiAuth/cors.feature:147](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L147) @@ -2416,12 +2428,15 @@ Scenario Outline: Do a PROPFIND to a non-existing URL - [apiAuth/cors.feature:155](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L155) - [apiAuth/cors.feature:156](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L156) - [apiAuth/cors.feature:157](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L157) -- [apiAuth/cors.feature:178](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L178) -- [apiAuth/cors.feature:179](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L179) -- [apiAuth/cors.feature:180](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L180) +- [apiAuth/cors.feature:158](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L158) +- [apiAuth/cors.feature:159](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L159) +- [apiAuth/cors.feature:160](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L160) - [apiAuth/cors.feature:181](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L181) - [apiAuth/cors.feature:182](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L182) - [apiAuth/cors.feature:183](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L183) +- [apiAuth/cors.feature:184](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L184) +- [apiAuth/cors.feature:185](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L185) +- [apiAuth/cors.feature:186](https://github.com/owncloud/core/blob/master/tests/acceptance/features/apiAuth/cors.feature#L186) #### [HTTP 401 Unauthorized responses don't contain a body](https://github.com/owncloud/ocis/issues/1337) #### [app passwords are not possible](https://github.com/owncloud/ocis/issues/1320) From 01d5020b5ab66b0f44696ff9674426b11f6a6cb5 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Sat, 30 Jan 2021 20:13:02 +0545 Subject: [PATCH 86/88] Adjust web expected-failures --- .../expected-failures-webUI-on-OWNCLOUD-storage.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md index 18b16de768..db6c8059d6 100644 --- a/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md @@ -12,6 +12,15 @@ Other free text and markdown formatting can be used elsewhere in the document if - [webUIPreview/imageMediaViewer.feature:81](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L81) - [webUIPreview/imageMediaViewer.feature:88](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L88) +### [Media Viewer preview not visible for files with .jpeg, .ogg, .webm and .gif formats](https://github.com/owncloud/ocis/issues/1490) +- [webUIPreview/imageMediaViewer.feature:127](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L127) +- [webUIPreview/imageMediaViewer.feature:136](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L136) +- [webUIPreview/imageMediaViewer.feature:145](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L145) +- [webUIPreview/imageMediaViewer.feature:154](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L154) + +### [Media viewer previews are not visible in public share](https://github.com/owncloud/ocis/issues/1370) +- [webUIPreview/imageMediaViewer.feature:110](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L110) + ### [authentication dialog appears when user is deleted](https://github.com/owncloud/web/issues/4564) ### [login error page loops when logged in user is deleted](https://github.com/owncloud/ocis/issues/1129) - [webUILogin/login.feature:62](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUILogin/login.feature#L62) From 686f496c315d7ffd334b731bfddbf000bad24145 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Fri, 29 Jan 2021 17:39:34 +0100 Subject: [PATCH 87/88] bring back config file, strip commented stuff, fix makefile and rebuild --- idp/Makefile | 7 +- idp/assets/identifier-registration.yaml | 39 +++++ idp/pkg/assets/embed.go | 210 ++++++++++++------------ 3 files changed, 150 insertions(+), 106 deletions(-) create mode 100644 idp/assets/identifier-registration.yaml diff --git a/idp/Makefile b/idp/Makefile index 9f809ca1eb..f57ab2a45a 100644 --- a/idp/Makefile +++ b/idp/Makefile @@ -92,11 +92,16 @@ generate: assets # TODO find a docker container with go and yarn so we can properly build assets in ci #assets: assets/identifier/static assets/identifier/index.html -assets: assets/identifier/static +.PHONY: assets +assets: assets/identifier/static assets/identifier/static/logo.svg assets/identifier/static/favicon.ico assets/identifier/static: mkdir -p assets/identifier/static + +assets/identifier/static/logo.svg: curl -o assets/identifier/static/logo.svg ${LOGO_URL} + +assets/identifier/static/favicon.ico: curl -o assets/identifier/static/favicon.ico ${FAVICON_URL} assets/identifier/index.html: node_modules diff --git a/idp/assets/identifier-registration.yaml b/idp/assets/identifier-registration.yaml new file mode 100644 index 0000000000..009cdbdae1 --- /dev/null +++ b/idp/assets/identifier-registration.yaml @@ -0,0 +1,39 @@ +--- +# OpenID Connect client registry. +clients: + - id: web + name: ownCloud web app + trusted: yes + insecure: yes + redirect_uris: + - {{OCIS_URL}}/ + - {{OCIS_URL}}/oidc-callback.html + - {{OCIS_URL}}/oidc-silent-redirect.html + origins: + - {{OCIS_URL}} + + - id: ocis-explorer.js + name: oCIS Graph Explorer + trusted: yes + insecure: yes + + - id: xdXOt13JKxym1B1QcEncf2XDkLAexMBFwiT9j6EfhhHFJhs2KM9jbjTmf8JBXE69 + secret: UBntmLjC2yYCeHwsyj73Uwo9TAaecAetRwMw0xYcvNL9yRdLSUi0hUAHfvCHFeFh + name: ownCloud desktop app + application_type: native + insecure: true + + - id: e4rAsNUSIUs0lF4nbv9FmCeUkTlV9GdgTLDH1b5uie7syb90SzEVrbN7HIpmWJeD + secret: dInFYGV33xKzhbRmpqQltYNdfLdJIfJ9L5ISoKhNoT9qZftpdWSP71VrpGR9pmoD + name: ownCloud Android app + application_type: native + redirect_uris: + - oc://android.owncloud.com + + - id: mxd5OQDk6es5LzOzRvidJNfXLUZS2oN3oUFeXPP8LpPrhx3UroJFduGEYIBOxkY1 + secret: KFeFWWEZO9TkisIQzR3fo7hfiMXlOpaqP8CFuTbSHzV1TUuGECglPxpiVKJfOXIx + name: ownCloud iOS app + application_type: native + redirect_uris: + - oc://ios.owncloud.com + - oc.ios://ios.owncloud.com diff --git a/idp/pkg/assets/embed.go b/idp/pkg/assets/embed.go index c812de77fa..e9a506a495 100644 --- a/idp/pkg/assets/embed.go +++ b/idp/pkg/assets/embed.go @@ -1,5 +1,5 @@ -// Code generated by fileb0x at "2020-12-22 14:58:17.5916313 +0000 UTC m=+0.360893201" from config file "embed.yml" DO NOT EDIT. -// modification hash(ee8b9d2c747c27c1c2afee55da442e97.0aa2d0b1f716f88218c5e95a9b958fea) +// Code generated by fileb0x at "2021-02-01 14:18:37.768117003 +0100 CET m=+0.362219697" from config file "embed.yml" DO NOT EDIT. +// modification hash(e8c80841198671ed01da4dfa65a42f42.0aa2d0b1f716f88218c5e95a9b958fea) package assets @@ -36,19 +36,19 @@ type HTTPFS struct { } // FileIdentifierRegistrationYaml is "identifier-registration.yaml" -var FileIdentifierRegistrationYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\x5b\x73\xa2\x4a\x10\x7e\xcf\xaf\x98\xaa\x3c\x13\x6f\x9b\x8b\xbc\x45\x14\x2f\x31\x6a\x44\x8c\xe6\xc5\x42\x68\x64\x64\x98\x99\xcc\x0c\x02\x6e\xed\x7f\x3f\x45\xc0\x4b\x72\xdc\xad\xad\xb3\xfb\x70\xf2\x90\x2a\x7a\x3e\xba\xfb\xfb\xfa\x9b\x16\x4d\xd3\xae\xae\xae\xd1\x98\x03\xed\xb7\x91\xc1\x28\x05\x57\x21\x97\x60\xa0\x0a\x09\xd8\x60\xa9\x44\x76\x73\x55\x04\xa4\x7e\x85\x90\x86\xb0\xa7\xa3\x04\xd6\x57\x08\x21\x44\x9d\x08\x74\xc4\x12\x6a\x10\x16\x7b\x79\x18\x39\x9c\x7f\x1c\x29\x11\x4b\x05\x9e\x8e\x32\x90\x1f\x01\x4c\x25\xb8\xb1\x80\x53\x44\x80\x87\x05\xb8\x6a\x15\x0b\xfc\x91\x3c\xff\xd3\xd0\xf7\xef\x63\xa3\x6f\xad\xec\xe9\xf0\xc7\x8f\xca\xe5\x28\xc3\x9e\xab\xb9\x0e\x21\x6b\xc7\x0d\x6f\x02\x15\x91\x5f\xe0\x24\x26\x40\x95\x76\xa8\x76\x82\x33\x81\x37\x98\xfe\xa4\xf2\xd5\x91\x2c\x73\xb1\xd4\x20\xe5\x84\x09\x10\x37\x5b\x79\xce\xdc\xe8\x5b\xa8\x2b\x1c\x1e\xa0\x4e\x09\xf8\x1d\xf2\xc7\xd4\xa9\xb7\x18\xab\x5a\x63\xf0\x94\x66\x51\xad\x55\x7b\x71\x3b\xd4\xf5\xeb\x8b\x76\x38\x7c\x84\xf4\xb9\x65\x26\x78\xd6\xdc\xde\x75\xfc\x20\xe8\x99\x83\x40\xd6\x9f\x9e\x9b\xdb\xf5\x76\x16\xf9\x0f\x83\xd6\xa2\x73\xd7\xfc\xc8\x2d\xc1\x15\xa0\x74\x64\xb7\xa8\x8a\x86\x5b\xa3\x9e\x2d\x0d\xe8\x25\x32\xdb\xde\x37\xec\x84\x35\x67\x8f\x0e\xb8\x8f\xa0\xa6\xc9\x73\x52\x4d\x97\xee\x6e\x34\x6c\x66\x53\x6f\x68\xd9\xb8\x1a\xd8\x8f\x3d\x7f\x67\xf4\x4c\x30\x83\x4b\x13\xf5\x40\x86\x8a\xf1\xe3\x54\x1d\xce\x09\x76\x1d\x85\x19\x5d\xa9\x8c\x83\x8e\xa8\xa3\xf0\x0e\xbe\x90\x54\x22\x86\x13\x4b\xf8\x26\x1e\xe5\xc8\xb6\xfa\xb6\xac\x12\xf3\x1b\x5d\xef\x9a\x66\x64\x80\x1d\xce\xc8\xbc\xd9\xf5\x36\xb3\x61\xbb\x57\x5b\xdf\xc6\x18\xee\x65\xb6\x6e\x56\xad\x7d\x67\x2e\xd6\xa3\xfb\x5e\x9f\x47\xaf\x03\x68\x7f\x62\xe9\xf5\xa9\xb9\xec\xce\x1b\x8d\xf4\x69\x1f\xac\xa7\x11\x7f\x7f\x21\x6a\x39\xf2\xfc\xa1\x37\xe8\xfb\x83\xe6\xf0\xb6\x6f\xb1\xa7\x60\xc4\x66\xcd\xf7\x37\x5f\x71\xef\xd5\x9a\xdc\xd7\xe6\x82\x77\xa7\x4d\x1e\xb1\xf6\x25\x96\x8f\xd4\x13\x0c\x7b\xbf\xc7\xf2\x27\xae\x65\xae\x5e\xa9\x38\x45\xa2\x1b\x96\x50\x37\xcf\x7c\xe3\xb2\xe8\xa4\x43\x94\x7a\xb7\xe3\x97\x76\x78\x07\xf2\x76\xb8\x1f\xef\xa7\x3b\xec\x0d\x46\xfe\x62\x68\xbf\x59\x75\x36\x6a\x30\xdb\x84\xc5\x64\xf2\x30\xe4\x13\x11\xa4\x0d\x5b\xb0\x81\xe9\xc5\xdd\xce\xb2\xdf\x1a\xa7\xe1\xb2\xf6\x49\x87\x27\x13\xcc\xd7\xd7\xce\xdb\xb8\x39\x0b\xb1\xec\xbf\xec\xa7\x0d\x9f\xdd\x07\x3e\x7e\x5e\x90\x31\x77\xde\x27\x0f\x86\x19\xcf\xd6\x56\x6f\x3f\xaf\xcd\xec\xb8\xdb\x31\x36\x64\x92\x72\x3c\x7f\x1a\xf8\xe3\x45\x3f\xbd\xa4\x03\x1e\x5b\x7f\xae\x01\x66\xf2\x33\xff\xd3\xe9\x0d\x66\xf2\x12\x22\xdf\x41\xa5\x46\x9c\x38\xd9\x46\xb0\x98\x7a\x5a\x79\x89\xf2\x1b\x77\x7d\x6a\x76\x56\x44\xd1\xb8\xdf\x36\xd0\xe4\x88\x2e\x20\x9f\xee\xdd\xf5\x65\x1a\xf9\xee\xba\xbe\x40\xe2\x1a\x1d\x1a\x0d\x94\xe2\x79\x9f\x51\xa6\x05\x4c\x2a\xfd\xe1\xb6\xda\xac\x14\xe7\xc7\x95\xf1\x6b\xf4\x7f\x21\xd4\x2f\x6f\xcf\x5f\x60\xf6\x65\xdb\x1c\x7b\x29\xf6\xb8\x96\x60\x15\x68\x21\x64\x65\xa2\x83\xa3\x64\xcc\x41\xfc\x2c\x77\x39\xfc\x5f\x08\x57\x28\xa1\x57\x2a\x84\xb9\x0e\xc9\xa5\xf8\xd4\xf9\x4a\xba\x8c\xc3\x39\x3c\x2c\x7e\x6e\x2a\x9b\x18\xa4\x62\xe1\xf9\x01\x77\x28\xab\x84\x49\x54\xc4\xb6\x49\x78\x7a\x2f\xef\xfb\x24\x7f\x8e\x56\x99\x8e\x3a\xc6\x29\x84\x50\x2c\x41\x47\x12\x6f\xce\x63\xe1\x25\x01\xf2\x7f\x5a\xed\x1c\xe6\x8a\x9d\x8e\x26\x5a\xfd\xf6\xee\x3c\x9a\xea\x68\x3a\x7b\xe3\xaf\x6c\xba\xde\x26\x8b\xda\xd2\xd9\x45\x56\x6f\xde\xda\xde\x19\x59\x63\xb9\xf7\xc2\x90\xdf\xbd\x0c\x77\xb3\x6e\xab\x5e\x6f\x57\xdd\xf3\x37\x33\x1d\x6d\xc1\xd9\x6d\x13\x77\x51\x4d\x49\xdb\x72\x03\xd3\x6d\x3d\xef\x17\x96\x7d\x9f\x74\x65\x7d\x3e\xe1\xa3\xf4\xd5\x48\xa2\xd4\xdc\x45\x66\xf5\xa0\xef\x7b\x2e\xc9\x8a\xad\xb7\xb9\xca\x12\x6f\x28\xa6\x9b\x95\x43\x36\x3a\xea\x58\x79\x6b\xa7\x91\xfa\x58\x1c\x84\x3e\xcc\x91\x38\xc4\xf9\x93\x31\x46\x59\xbe\xc9\x38\x3f\xab\x22\xc1\x65\x07\x27\x1e\xcb\xc4\x24\xfe\xab\x6e\xb9\xba\x46\x9d\x54\x81\xa0\x0e\x41\x4e\xac\x02\x26\xb0\xca\xce\xbe\x42\x0e\x31\x5c\xba\xa8\x5c\xaa\x99\x16\x53\xbc\x03\x9a\x97\x3f\xbf\x57\xf6\x97\x68\x31\xfb\x55\xfe\x4e\x61\x30\xad\x34\x60\x49\xe2\x50\xb1\xa4\x90\x7f\x3a\xfc\x6d\xfb\x41\xea\x44\x9c\xc0\xff\xd3\x75\x1e\xf8\x4e\x4c\xd4\xf9\x86\x29\x24\xd9\x17\x93\x05\xea\x71\x86\xa9\xd2\xcf\x37\xde\x49\xfa\x4a\x61\xd3\xca\xae\x56\xc1\x5e\x1e\xf2\x31\x88\xca\xaa\x72\x48\x72\x74\x83\xe4\x8c\x4a\x28\x55\xc6\xde\x4a\xb1\x10\xca\x11\xfd\x6b\x45\x30\x0e\x14\x7b\xa7\x67\x2e\x98\x8f\x49\x99\xaa\x28\xa3\xb2\x95\x4b\x1c\x1c\xad\x8a\xa9\x73\x01\x3e\x08\x01\xde\x2a\x96\xb9\x95\xa2\xaf\x60\x87\x60\x47\x9e\x15\x81\xd2\x72\x5a\x8e\xd7\x1c\x1d\x7d\x18\xb2\x7c\xba\x0c\x5a\x7f\x02\xad\x2f\x15\x58\xe5\x77\x18\x8b\x7c\x61\x7f\x7c\x0b\xfd\x13\x00\x00\xff\xff\xa4\x16\x9b\x91\x69\x0b\x00\x00") +var FileIdentifierRegistrationYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x92\x51\x6f\xe2\x38\x14\x85\xdf\xf9\x15\x96\xf6\x39\xb4\x94\x69\x69\x78\x83\x90\x40\x42\x4a\x28\x49\x28\xf4\xa5\x4a\xec\x1b\x62\x48\x6c\xd7\x76\x48\xc2\x68\xfe\xfb\xaa\xcc\x6e\xd9\xae\x98\xd5\x48\xeb\xc7\x73\x8f\xce\xd5\x77\xae\x0d\xc3\xe8\xfc\x81\x02\x01\xcc\x9d\x20\x8b\x33\x06\x58\x23\x5c\x50\x60\x1a\x49\xd8\x51\xa5\x65\xdb\xed\xfc\x14\xd4\xb0\x83\x90\x81\x28\x19\xa2\x1a\xd2\x0e\x42\x08\xb1\xa4\x84\x21\xe2\x35\xb3\x0a\x5e\x91\x0f\x19\x25\x42\x9c\x47\x5a\x56\x4a\x03\x19\xa2\x16\xd4\x59\xa0\x4c\x01\xae\x24\x5c\x14\x09\x84\x4a\xc0\xfa\xad\x92\xf4\x1c\xfe\xf1\x0c\xf4\xfd\x7b\x60\xb9\xe1\x5b\xbc\xf2\x7f\xfc\xb8\xb9\xae\x72\x4a\xb0\x81\x93\xa2\x48\x13\x7c\xe8\xe6\xba\x2c\xfe\xc3\xa7\x68\x01\x4c\x1b\x7f\x6f\xbb\xd8\xb9\xa4\x3b\xca\x7e\xb1\xb9\xf3\x09\xcb\x31\x55\x06\x34\xa2\xe0\x12\x64\x77\xaf\xfe\x49\x6e\xb9\x21\x9a\xca\x44\xe4\xc8\xfe\xcb\xf0\x3b\xf0\x9f\xd1\x0d\xd9\x04\xba\xd7\xf7\xe6\x4d\x5b\xf6\xc6\xbd\x67\x6c\x33\x9c\xdd\x6d\x26\x07\x7f\x04\xcd\xd3\xd8\xa9\x69\x64\xee\x1f\xec\x2c\xcf\x67\x8e\x97\xab\xbb\xf9\x93\xb9\x4f\xf7\x51\x99\x3d\x7a\xe3\x8d\xfd\x60\x9e\xb3\x15\x60\x09\x7a\x88\xe2\x31\xd3\xa5\xbf\xb7\xee\xda\xad\x05\xb3\x5a\xb5\xfb\x41\x3f\xae\xb9\x19\x8d\x12\xc0\x23\xd0\xab\xfa\xa9\xbe\x6d\xb6\xf8\xb8\xf0\xcd\x76\x45\xfc\x30\xa6\xb7\x79\x3c\x9a\x65\x47\x6b\xe6\x80\x93\x5f\xbb\x28\x01\x75\xd0\x5c\x7c\x5e\x35\x11\xa2\xa0\x38\xd1\x94\xb3\x37\xdd\x0a\x18\x22\x96\x68\x7a\x84\x7f\x41\x6a\x59\xc1\x85\x12\xbe\xc9\x91\x5a\xc4\xa1\x1b\xab\xdb\xc2\xf9\xc6\xd2\xa3\xe9\x94\x16\xc4\x87\xa8\x58\x9b\x53\xb2\x8b\xfc\xc9\xac\x97\xde\x57\x14\x06\xaa\x4d\xcd\xdb\xf0\x64\xaf\x65\xba\x18\xcc\x5c\x51\xbe\x78\x30\xf9\x42\x49\x5c\xe6\x6c\xa7\xeb\x7e\xbf\x99\x9f\xf2\x74\x55\x8a\xf7\xe7\x42\x6f\x17\x24\xf3\x89\xe7\x66\x9e\xe9\xdf\xbb\x21\x9f\xe7\x0b\x1e\x99\xef\xaf\x99\x16\xe4\x25\x5c\x0e\x7a\x6b\x29\xa6\x2b\x53\x94\x7c\x72\x8d\x72\xc4\x88\xe4\x94\xfc\x1e\xe5\x2f\x7e\x2d\xc7\xc3\x9b\x9b\xe4\x67\x50\x97\xd7\x0c\x7f\x24\x77\x31\x2f\x2f\x3d\x94\x0d\xb9\x0f\x9e\x27\x87\x07\x50\xf7\xfe\x29\x38\xad\x8e\x94\x78\x8b\x6c\xe3\xc7\xaf\xe1\x1d\x5f\xf4\x79\xec\xc0\x66\xb9\x7c\xf4\xc5\x52\xe6\x4d\x3f\x96\xdc\x73\x48\x35\xb5\xb7\xee\x38\x68\x0e\xdb\xde\x97\x1e\xe6\x0e\x38\x2f\x2f\xf6\x6b\x60\x46\x07\xaa\xdc\xe7\xd3\xaa\x9f\xf1\x41\x9e\xd1\xa7\x4d\x11\x88\xe4\x7d\xf9\x68\x39\x55\x94\x86\xb3\xd3\xba\x17\xc5\xd5\xd4\xb6\x76\xc5\xb2\x11\x74\x3d\xf7\xb2\x60\xe3\x36\xd7\x7a\xa0\x41\xf8\xff\x3b\xa0\x5c\x7d\xe5\xbf\x4c\xbb\x94\xab\x6b\x8e\x3f\x03\x00\x00\xff\xff\x0a\x40\x4d\x2d\x86\x04\x00\x00") // FileIdentifierAssetManifestJSON is "identifier/asset-manifest.json" -var FileIdentifierAssetManifestJSON = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x95\x4d\x8f\x9b\x30\x10\x86\xef\xf9\x15\x88\x73\xe3\xf0\x15\xc0\xbd\x56\x7b\xa8\x54\xf5\xd2\x63\xd5\x83\x19\x8f\x13\x27\xc1\x20\x70\xba\xbb\xaa\xf6\xbf\x57\xe4\xa3\x21\x60\x63\xab\x47\xf0\x33\xaf\x1f\x1b\x33\xfe\xb3\x0a\x82\x50\xc8\x13\xf6\xe1\xe7\x60\x78\x08\x82\xb0\xd7\x4c\x4b\xd8\x1c\xfa\x4d\x44\x00\x0b\x0e\x98\xa4\x04\xf6\x67\x75\x24\x87\x01\x0b\xc9\x66\x19\xf9\xe4\x91\x43\x6a\xd6\x7a\x64\x5d\xb0\x5b\x1e\x34\x4a\x33\xa9\xb0\xeb\xd7\xbb\xa6\xe1\xd5\x3b\x1a\x7c\x0c\x10\x2b\x92\x6d\x9c\x41\x32\x13\x34\x06\x9a\xc4\x7c\x42\x2d\xa6\xa7\x66\x27\xd5\xb2\xe7\x15\x49\xb7\x55\x9c\x67\x90\x2d\x59\xde\xc3\x1c\x8e\x96\x40\x8b\xe1\x2b\x9e\xa0\xa9\x1d\x7b\x79\x87\xca\xa4\x62\x51\x0e\xf9\x92\xe5\x23\xd0\xe1\x69\x0d\x1d\x9b\x4a\x8e\x4a\x4b\x21\xb1\x5b\xb3\xb6\x35\x58\x4e\x00\x0e\x29\x47\x9e\x8a\x99\xe1\x2c\xc8\x64\xe7\x0a\xb3\x98\xd5\xcc\xf8\x91\xa7\x44\x59\x60\x89\x34\xda\x2e\xb9\xdd\xa2\x1c\x72\xe6\xb8\xb1\xdd\x85\x80\xfe\xd9\x09\xfa\x7e\x73\x19\x10\x22\x8b\x8b\x1c\xef\xc7\x77\xe0\xc6\x75\xf3\xa5\x5c\x5e\xa7\x31\x15\x94\x42\x34\xf3\x5f\x90\x36\x17\x8e\x4d\xbb\xb3\xd2\xb2\x46\xdb\x26\x3e\x0d\xe7\x59\x42\xb1\x12\xd1\x68\xee\x49\xb9\xc9\xc1\x16\x31\xb6\x78\xd0\x25\x89\xb7\x1c\x4b\x46\x63\x6b\xd7\x33\x21\x3e\x39\x26\x39\x1b\x36\xcb\xa3\x84\xa5\x98\x97\x1c\xd1\xea\x65\x42\x7c\x72\x4c\x5e\x36\x6c\x96\x17\x47\x04\x11\x8b\x38\xcd\x99\x55\xcc\xc8\x78\x25\x99\xd4\xac\xdc\xfd\x77\x52\x1c\xdf\xc8\x5e\xd7\xa7\x6b\xe5\xe8\xf9\x46\xb4\x1d\x02\x83\xfd\x70\x24\x94\x14\xd8\x6b\x92\x51\x8c\xd3\xa4\xa2\xc8\xd8\x96\x46\x15\xb0\x54\xb0\xa4\xac\x78\x0a\x11\x2b\x4a\x28\xff\x2d\xea\xff\x4a\xef\x6b\xc5\xee\xb7\x04\x5c\xbf\x36\xdd\x11\xbb\xc7\x46\xcd\x5e\x3f\xef\xcd\xc2\x7f\x3b\xdb\x1f\x17\xeb\x75\x3b\x7f\xfb\xfa\xe5\xe5\xfb\x8f\x17\xa2\xdf\xb4\xcf\x2d\x3d\xc6\xfd\xbe\xea\xc2\x04\x4e\xde\xeb\x44\x2f\x4c\xe0\xc2\x9f\xf3\x6b\xe4\x92\x6d\x86\xdb\x60\xda\x4d\xaf\x23\x15\x83\xe3\xae\x6b\xce\x8a\x13\x9e\xe5\x54\x40\x09\xe4\xd0\xee\xc2\x55\x10\x7c\x0c\x49\x21\x2a\xdd\xbd\xb7\x8d\x54\x7a\x28\xff\x39\x95\x77\xf5\x37\xff\xd6\xed\xec\xd6\xab\x20\xf8\xb5\xfa\xf8\x1b\x00\x00\xff\xff\x36\x96\xab\x4f\xf4\x09\x00\x00") +var FileIdentifierAssetManifestJSON = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x95\xcf\x8e\x9b\x30\x10\x87\xef\x79\x0a\xc4\xb9\xeb\xd8\x18\x16\xe8\xb5\xda\x43\xa5\xaa\x97\x1e\xab\x1e\xcc\x78\x9c\x38\x09\x06\x81\xd3\xdd\x55\xb5\xef\x5e\x91\x3f\x0d\x09\x36\x58\x3d\x82\xbf\xf9\xf9\xb3\x31\xe3\x3f\xab\x28\x8a\x95\x3e\x60\x1f\x7f\x8e\x86\x87\x28\x8a\x7b\x2b\xac\x86\xf5\xae\x5f\x53\x92\x2b\xa0\x95\x4c\x12\x02\xdb\xa3\xd9\x93\xdd\x80\xc5\x64\x3d\x8f\x7c\x0a\xc8\x21\xb5\x68\x03\xb2\x4e\xd8\x25\x0f\x1a\x63\x85\x36\xd8\xf5\x4f\x9b\xa6\x91\xd5\x3b\x3a\x7c\x1c\x90\x48\x8a\x84\x15\xd9\x54\xd0\x19\xe8\x12\x0b\x09\xf5\x98\x1e\x9a\x8d\x36\xf3\x9e\x67\x84\xe5\xc0\xe0\x59\xce\x5a\x5e\xc3\x16\x1c\x3d\x81\x1e\xc3\x57\x3c\x40\x53\x2f\xec\xe5\x15\x52\x2a\xcb\x05\xcf\xd8\x9c\xe5\x2d\x70\xc1\xd3\x1b\x3a\x36\xd5\x12\x8d\xd5\x4a\x63\xf7\x24\xda\xd6\x61\xf9\x00\x20\xe7\x25\x95\xa2\x98\x18\x4e\x82\x5c\x76\x4b\x61\x1e\xb3\x5a\x38\x3f\xf2\x23\x51\xd1\x34\xa7\x15\xe5\x73\x6e\x97\xa8\x05\x39\x77\xdc\xd8\xee\x44\x40\x7f\xef\x04\x7d\xbf\x3e\x0d\x28\x95\xb2\xfc\x19\xaf\x87\x63\xe0\xc6\x75\xd3\xa5\x9c\x5e\x73\x56\xaa\xb2\x04\x3a\xf1\x9f\x91\x76\x17\x8e\x4d\xbb\xa3\xb1\xba\x46\xdf\x26\xde\x0d\xa7\x19\xf0\xa4\x28\xf8\x68\xee\x87\x72\x97\x83\x2f\x62\x6c\x71\xa3\x0b\x02\x08\x92\x03\x05\x6f\xd7\x73\x21\x21\x39\x2e\x39\x1f\x36\xc9\x2b\x89\xca\x4a\xc5\x30\x2f\xbd\x5e\x2e\x24\x24\xc7\xe5\xe5\xc3\x26\x79\x8c\x12\x2e\x54\x9e\x24\x1c\xbd\x62\x4e\x26\x28\xc9\xa5\xe6\xe5\xae\xbf\x93\x91\xf8\x46\xb6\xb6\x3e\x9c\x2b\x47\xcf\x17\xa2\xed\x10\x04\x6c\x87\x23\x61\xb4\xc2\xde\x12\xca\xa4\x94\x42\x8a\x2c\x49\xaa\x8a\x31\xce\x33\xc6\x8a\x32\x2f\x10\xb3\x2c\xa5\x90\xfe\x5b\xd4\xff\x95\x5e\xd7\x8a\xdd\x6f\x0d\xf8\xf4\xda\x74\x7b\xec\x6e\x1b\x35\x79\x7d\xbf\x37\x33\xff\xed\x64\x7f\x96\xd8\xa0\xdb\xf9\xdb\xd7\x2f\x2f\xdf\x7f\xbc\x10\xfb\x66\x43\x6e\xe9\x31\x1e\xf6\x55\x67\x26\x58\xe4\x83\x4e\xf4\xcc\x04\x4b\xf8\x7d\x7e\x8d\x52\x8b\xf5\x70\x1b\x3c\x76\xd3\xf3\x48\x25\x60\xbf\xe9\x9a\xa3\x91\x44\xa6\xcf\xa5\x82\x02\xc8\xae\xdd\xc4\xab\x28\xfa\x18\x92\x62\x34\xb6\x7b\x6f\x1b\x6d\xec\x50\xfe\xf3\x51\x7e\xa9\xbf\x85\xb7\xee\xc5\x6e\xbd\x8a\xa2\x5f\xab\x8f\xbf\x01\x00\x00\xff\xff\xc4\x27\xf7\x2e\xf4\x09\x00\x00") // FileIdentifierIndexHTML is "identifier/index.html" -var FileIdentifierIndexHTML = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\xcd\x6e\xdb\x3a\x10\x85\x5f\x85\x97\x17\xc8\xa6\xd1\x8f\x9d\x20\xad\x13\x51\x6d\x11\xa4\x68\xbb\x48\x82\xba\x8b\x76\x65\xd0\xd4\x48\x64\x4c\x71\x08\xce\xc8\x8e\xdf\xbe\x90\xec\x04\x0e\xd0\x6e\x04\x68\x86\xe7\x70\xbe\x43\xb2\xfa\xaf\x41\xc3\xfb\x08\xc2\x72\xef\xeb\x6a\xfc\x0a\xaf\x43\xa7\x24\x04\x59\x57\x16\x74\x53\x57\x3d\xb0\x16\xc6\xea\x44\xc0\x4a\x0e\xdc\x66\x1f\xe4\xb1\x1a\x74\x0f\x4a\x6e\x1d\xec\x22\x26\x96\xc2\x60\x60\x08\xac\xe4\xce\x35\x6c\x55\x03\x5b\x67\x20\x9b\x7e\xce\x5d\x70\xec\xb4\xcf\xc8\x68\x0f\x6a\x76\x4e\x36\xb9\xb0\xc9\x18\xb3\xd6\xb1\x0a\xf8\xd6\x93\x2d\xf4\x90\x19\xf4\x98\x4e\x6c\xff\x9f\xad\xe7\xf3\x8b\x46\xd6\x95\x77\x61\x23\x12\x78\x25\xc9\x62\x62\x33\xb0\x70\x06\x83\x14\x36\x41\xab\x64\x5e\x10\x6b\x76\xa6\x68\xf5\x76\xac\xe7\xce\xa0\x14\x23\xaa\x92\xae\xd7\x1d\x14\xcf\xd9\xb4\xfe\xe8\x74\x50\x59\xe6\x48\xd7\x45\xd1\x62\x60\xca\x3b\xc4\xce\x83\x8e\x8e\x72\x83\x7d\x61\x88\xe6\x1f\x5b\xdd\x3b\xbf\x57\x0f\x11\xc2\xbb\xa5\x0e\x74\xbd\xeb\x2c\x7f\xba\x28\xcb\x9b\xcb\xb2\xbc\xb9\x2a\xcb\xb3\xc6\x51\xf4\x7a\xaf\x68\xa7\xa3\x3c\x4e\xc8\x7b\x0f\x64\x01\xf8\x85\x31\x26\x8c\x90\x78\xaf\xa4\xa1\x98\x05\x0c\x06\x4e\x28\x57\xab\xdb\xe5\xe3\xea\xfe\xe1\xfe\xf6\x6e\xb5\x92\x75\xc5\x8e\x3d\xd4\x4b\xd7\x05\xe1\x82\x38\xeb\x1b\x4d\xf6\x46\xe0\x2e\xdc\x7a\x1c\x9a\xaa\x38\xf4\x4f\x41\x5e\xf1\x0d\x51\xd1\x6b\x17\xf2\xb6\xbd\x9c\xbd\xbf\x82\x79\x6e\xec\x10\x36\xb9\x21\xfa\xdb\x70\xc5\xe1\xc4\xd7\xd8\xec\xeb\x2a\x20\x99\xe4\x22\xd7\xbf\x71\x10\x01\xa0\x11\x8c\x02\x82\x5e\x7b\x10\xdf\xf5\x56\x2f\xa7\xee\x58\x4c\x43\x10\x6c\x1d\x09\x1d\x63\x5e\x15\xaf\xc2\x6a\xdc\x5a\xb8\x46\xc9\x84\x38\x5e\x0f\xaf\x89\x94\x44\x93\x79\xec\x5c\xc8\xd6\x9d\x14\x8d\x66\x9d\x45\xcd\x36\x8b\x09\x5a\xf7\x3c\xe2\x3f\x7e\xfe\xf9\x75\xf5\xf8\xe3\xee\xcb\xb7\x5f\x53\x00\x13\x42\x5d\x1d\x5c\x05\x25\x73\x42\xf8\x44\x45\x1a\x02\xbb\x1e\xb2\x09\xf4\xea\x72\xbe\x80\x75\x5b\xe6\x4f\x34\x2a\x5f\x26\xf9\x97\x76\xd2\x5c\xcc\x16\xed\x62\x61\xca\x63\x38\x6f\x95\xc5\x21\x8d\x62\x7a\x22\x7f\x02\x00\x00\xff\xff\xcf\x7a\x6b\x4f\x32\x03\x00\x00") +var FileIdentifierIndexHTML = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\xcb\x6e\xdb\x3c\x10\x85\x5f\x85\x3f\x7f\x20\x9b\x46\x17\xdb\x69\x9a\x8b\xa8\xb6\x08\x52\xb4\x5d\x24\x41\xdd\x45\xbb\x32\x68\x6a\x24\x32\xa1\x38\x04\x67\x64\xc7\x6f\x5f\x48\x76\x02\x07\x68\x37\x02\x34\xc3\x73\x38\xdf\x21\x59\xfd\xd7\xa0\xe1\x5d\x04\x61\xb9\xf7\x75\x35\x7e\x85\xd7\xa1\x53\x12\x82\xac\x2b\x0b\xba\xa9\xab\x1e\x58\x0b\x63\x75\x22\x60\x25\x07\x6e\xb3\x0b\x79\xa8\x06\xdd\x83\x92\x1b\x07\xdb\x88\x89\xa5\x30\x18\x18\x02\x2b\xb9\x75\x0d\x5b\xd5\xc0\xc6\x19\xc8\xa6\x9f\x53\x17\x1c\x3b\xed\x33\x32\xda\x83\x9a\x9d\x92\x4d\x2e\x3c\x65\x8c\x59\xeb\x58\x05\x7c\xeb\xc9\x16\x7a\xc8\x0c\x7a\x4c\x47\xb6\xff\xcf\xd6\xf3\xf9\xa2\x91\x75\xe5\x5d\x78\x12\x09\xbc\x92\x64\x31\xb1\x19\x58\x38\x83\x41\x0a\x9b\xa0\x55\x32\x2f\x88\x35\x3b\x53\xb4\x7a\x33\xd6\x73\x67\x50\x8a\x11\x55\x49\xd7\xeb\x0e\x8a\xe7\x6c\x5a\x7f\x70\xda\xab\x2c\x73\xa4\xab\xa2\x68\x31\x30\xe5\x1d\x62\xe7\x41\x47\x47\xb9\xc1\xbe\x30\x44\xf3\x8f\xad\xee\x9d\xdf\xa9\xfb\x08\xe1\xdd\x52\x07\xba\xda\x76\x96\x3f\x2d\xca\xf2\xfa\xac\x2c\xaf\xcf\xcb\xf2\xa4\x71\x14\xbd\xde\x29\xda\xea\x28\x0f\x13\xf2\xce\x03\x59\x00\x7e\x61\x8c\x09\x23\x24\xde\x29\x69\x28\x66\x01\x83\x81\x23\xca\xd5\xea\x66\xf9\xb0\xba\xbb\xbf\xbb\xb9\x5d\xad\x64\x5d\xb1\x63\x0f\xf5\xd2\x75\x41\xb8\x20\x4e\xfa\x46\x93\xbd\x16\xb8\x0d\x37\x1e\x87\xa6\x2a\xf6\xfd\x63\x90\x57\x7c\x43\x54\xf4\xda\x85\xbc\x6d\xcf\x66\x1f\xce\x61\x9e\x1b\x3b\x84\xa7\xdc\x10\xfd\x6d\xb8\x62\x7f\xe2\x6b\x6c\x76\x75\x15\x90\x4c\x72\x91\xeb\xdf\x38\x88\x00\xd0\x08\x46\x01\x41\xaf\x3d\x88\xef\x7a\xa3\x97\x53\x77\x2c\xa6\x21\x08\xb6\x8e\x84\x8e\x31\xaf\x8a\x57\x61\x35\x6e\x2d\x5c\xa3\x64\x42\x1c\xaf\x87\xd7\x44\x4a\xa2\xc9\x3c\x76\x2e\x64\xeb\x4e\x8a\x46\xb3\xce\xa2\x66\x9b\xc5\x04\xad\x7b\x1e\xf1\x1f\x3e\xff\xfc\xba\x7a\xf8\x71\xfb\xe5\xdb\xaf\x29\x80\x09\xa1\xae\xf6\xae\x82\x92\x39\x22\x7c\xa4\x22\x0d\x81\x5d\x0f\xd9\x04\x7a\xf6\xde\x2c\xe6\x17\x17\x8b\xfc\x91\x46\xe5\xcb\x24\xff\xd2\x4e\x9a\xc5\xec\xb2\xbd\xbc\x34\xe5\x21\x9c\xb7\xca\x62\x9f\x46\x31\x3d\x91\x3f\x01\x00\x00\xff\xff\x0a\x2c\x03\x53\x32\x03\x00\x00") -// FileIdentifierPrecacheManifest49e132b9eaa590bca3fa28bd3c0a78c8Js is "identifier/precache-manifest.49e132b9eaa590bca3fa28bd3c0a78c8.js" -var FileIdentifierPrecacheManifest49e132b9eaa590bca3fa28bd3c0a78c8Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xd4\x4b\x8f\xdb\x36\x10\x07\xf0\xbb\x3f\x85\xe0\x53\x02\x24\x34\x1f\x43\x72\xd8\xa2\xa7\x22\x87\x02\x6d\x2f\x3d\x06\x41\x40\xce\xc3\x2b\xc7\x96\x0c\x4b\x6e\x53\x34\xfd\xee\xc5\x3e\x0a\x14\xd8\x5d\x55\x3e\x4b\xfc\xff\x30\xc3\xe1\x4c\x72\x54\xf3\xf9\xf3\xf9\x22\x54\xe9\x4e\x7e\xa9\x43\xaf\x32\xcd\xdd\x0f\xdd\x9b\xd7\x3e\x7d\xfb\xd6\x7d\xfc\xf4\xd6\xd0\x38\x50\x9d\xdf\x7c\xdc\x74\xdd\x5f\x9b\xae\xeb\xba\xed\x45\x7e\xef\xa7\x7e\x1c\xb6\xdf\x75\xdb\x14\xb1\x44\x8a\xc2\x94\x7d\x48\x2e\x06\x57\x63\xcc\x01\x89\xad\x0b\x54\xe3\xf6\xdd\xe3\x99\xeb\xe5\x78\xff\xbb\xd9\xf5\x03\xcb\x57\x73\x37\x9f\x8e\xdb\x4d\xd7\xfd\xfd\xee\xe5\x58\x6d\xa5\x01\x78\x62\x41\x66\xdf\xbc\x4f\xc1\x3d\x8b\x9a\xe6\x3a\xf7\xb4\xa3\x69\xda\x9d\x6a\x3f\x18\x55\x70\x39\x89\x37\x74\x77\x1d\xbe\x18\x9a\xa6\x25\x22\x6b\x76\x56\x40\xa9\x05\x0b\x3e\x8b\x26\xa4\xd7\x88\xc3\xb4\xb3\x86\x24\x33\x89\x0f\x4f\xf1\x87\xc5\x74\x55\x6f\x53\x2e\x9c\xa2\x2d\x1a\xc9\x5a\x4e\x49\x10\x1a\x17\xeb\xa3\x72\xba\x4d\x32\x3f\xff\xf4\xe3\x87\x5f\x7f\xfb\x60\xe6\xaf\xf3\x92\xea\x25\x22\x08\x14\x0c\x1c\x8a\xa0\xd6\x5c\x64\x41\x72\xd6\x88\x48\x76\x21\xd5\x75\x45\x71\x8e\x3e\x72\x04\x60\x2e\x94\x32\xdb\x8c\x31\x52\xc3\x9c\x51\x62\xb1\x37\x52\xab\xab\x72\x9c\x94\xd4\xb3\x12\x8a\x6a\xab\x0a\x65\x81\x42\xe3\x22\x0b\xd6\xe2\x56\x15\x05\xde\x71\xab\xc9\xd6\xcc\xcd\x7b\x68\x0c\x3e\x2c\xa4\x17\x53\x83\x24\x64\x91\x55\xe9\x84\x39\x46\x1b\x42\xe0\x8a\xac\x58\x1b\x10\xda\xc6\x8e\x93\x14\x16\x6d\xb7\x49\x6b\x3b\x06\xa5\x41\x06\xc5\x94\x52\x73\x8c\x36\x03\x2d\x4d\x1c\x8d\xc3\x5c\xfb\x41\x2e\xd3\xfb\xfd\x38\x72\xfb\x53\x4c\xcd\x3e\x3a\x20\xbf\xae\x85\xe2\x2d\x07\x1b\xee\x07\xcf\x66\xcc\xb1\xf0\xf3\x87\xff\x22\x77\x1c\xf7\xfd\x60\x42\x6c\x2e\x01\xc1\xba\x8e\x12\xa5\x48\x94\x51\x6d\x26\x90\xdc\x3c\x2d\xdd\xd7\x7f\xb0\x3f\xe4\x48\xe3\x49\x0c\xfa\x56\x6d\xa2\xb4\x8a\x63\x85\xca\x62\x4b\x6e\x50\x30\xda\x18\x02\xe1\x02\xd7\xb3\x0c\x73\xaf\xbd\x5c\xde\xd7\xf3\xd9\x30\x05\x16\x0e\xba\x8a\xc2\x56\x82\xfa\x1a\xb3\x00\x67\x68\x20\x15\x79\x1d\xf5\xb0\xfe\x30\x0b\x4a\xb1\x71\xdd\x53\xbe\x61\xc1\x1e\x9e\xf6\x6b\x70\x45\x4b\x21\xbb\x0a\x48\x89\x30\x7b\x49\x60\x81\xd4\xc7\x5a\xb5\x2c\x15\x73\xb9\x0e\x73\x7f\x92\xc7\x4a\x12\xf8\x22\x4d\xed\xff\x5d\x0d\xa4\xa2\x84\x14\x31\x62\xf1\x44\xa1\xba\x00\xf7\xa3\x8e\x36\x3b\xe7\x5e\xdd\x11\x27\xe1\xbe\xee\x5a\xa5\x2f\xfb\xcb\x78\x1d\xd8\xfc\x1b\x64\x0e\xe7\xfd\x03\xb8\xf9\xf4\xf6\xfb\x7f\x02\x00\x00\xff\xff\xa1\x94\xd9\x54\x32\x07\x00\x00") +// FileIdentifierPrecacheManifest01dddada522bb11335118978ee5540c4Js is "identifier/precache-manifest.01dddada522bb11335118978ee5540c4.js" +var FileIdentifierPrecacheManifest01dddada522bb11335118978ee5540c4Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xd4\xcd\x8e\xdc\x44\x10\x07\xf0\xfb\x3e\x85\x35\xa7\x44\x4a\x7a\xaa\xab\xbf\xaa\x41\x9c\x50\x0e\x48\xc0\x85\x63\x14\x45\xdd\xf5\xb1\xeb\xcd\x8c\xbd\x1a\x7b\x21\x88\xf0\xee\x28\x09\x11\x48\x61\x8d\xe7\x6c\xf7\xff\xa7\x2a\x55\xd5\xa2\x27\x73\x6f\xdf\x3e\x5c\x94\x1b\xdf\xe9\x4f\x6d\x1a\x4d\x97\x75\xf8\x6e\x78\xf6\xd4\xa7\x0f\x1f\x86\xd7\x6f\x9e\x3b\x9e\x27\x6e\xeb\xb3\xd7\x37\xc3\xf0\xc7\xcd\x30\x0c\xc3\xe1\xa2\xbf\x8e\xcb\x38\x4f\x87\x6f\x86\x43\xc9\xd8\xbc\x81\x22\x2a\x21\x18\x6b\x15\xf3\xd5\x73\xc7\x92\x0c\xcc\x0e\x2f\x3e\xbf\x79\xbc\x9c\x3e\xfe\xee\x8e\xe3\x24\xfa\xde\xdd\xad\xe7\xd3\xe1\x66\x18\xfe\x7c\xf1\xdf\xb1\xd6\x6b\x8f\x11\x59\x94\x44\xb0\x23\xe6\xe0\xbf\x8a\x5a\xd6\xb6\x8e\x7c\xe4\x65\x39\x9e\xdb\x38\x39\xb3\xe8\x4b\x56\x74\x7c\xf7\x38\xbd\x73\xbc\x2c\x5b\x44\xcb\xbd\x34\xb0\x8e\x45\x13\x17\xc5\x64\x59\x9f\x22\xee\x97\x23\xb8\x62\x0c\x5d\xf0\x4b\xfc\xfd\x66\xba\x19\x42\x2e\x55\x72\x82\x6a\x89\x01\x24\x67\xa5\xd8\xa5\x02\x26\x93\x7c\x9d\xe4\x7e\xfc\xe1\xfb\x57\x3f\xff\xf2\xca\xad\xef\xd7\x2d\x95\x63\xa4\xa0\x39\x16\xcb\xd8\x30\x54\x94\xc6\x1b\x92\x07\x17\x9a\x15\xc4\xa0\xfb\x8a\x92\x92\x30\x49\x8a\x51\xa4\x72\x2e\x02\x85\x52\xe2\x4e\xa5\x90\xa6\x0a\x57\x52\x7b\xab\x52\xec\x1a\x8d\x62\x11\x44\x88\x2d\x9b\x95\xaf\xe7\xea\x1f\x8a\x1c\x2b\x4b\x60\xe0\x5d\x45\x29\xc6\xdc\xbc\x2a\x55\x4e\x98\xba\x0f\xb1\x94\x8d\xf4\xea\x2c\x55\xf3\x5a\xea\xae\x74\xa6\x92\x12\x84\x10\xa4\x91\x18\xb5\x1e\x99\xa0\x8b\x97\xac\x55\xd4\xfa\x75\xd2\xde\x8e\x35\x22\x6e\x48\x1e\x6a\x6a\x0d\x72\x4e\xb1\x6e\x4d\x1c\xcf\xd3\xda\xc6\x49\x2f\xcb\xcb\xdb\x79\x96\xfe\xbb\xba\x86\x84\x9e\xd2\xbe\x61\x8f\x55\x81\x20\xc7\xd0\x0a\x59\xd7\x1e\x2c\x6e\xb5\xf0\x5f\xdc\x69\xbe\x1d\x27\xe7\x0b\x7b\xce\xb2\x0f\xd3\x28\x64\xa5\x01\x59\x0b\x15\xad\x43\xaa\x3b\xb1\xdf\xf4\xc4\xf3\x59\x9d\x59\x2a\x2d\x24\xbf\x8b\xcb\xa1\x15\xa8\x05\x63\x13\x55\x0f\x14\x91\xb7\xe6\x7c\x14\x9d\xd6\xd1\x46\xbd\xbc\x6c\x0f\x0f\x4e\x43\xa8\x20\x8d\x76\x51\xe8\x6b\x2c\x9e\xa0\x76\x84\x14\x4a\x07\xb5\xba\x8f\xfa\x74\xfe\x3a\xc4\x02\x1d\xc2\xbe\x55\xbe\xe2\xc0\xde\xff\x7d\x5f\x83\xaf\x56\x2b\xc3\x3e\x80\xb8\x03\xa0\xa0\x44\x05\x28\x2c\xe4\x71\x03\xb8\x3c\x4e\xeb\x78\xd6\xcf\x95\xc4\xc4\x01\x89\xc2\xff\x10\x12\x73\x35\x26\x4e\x94\xa8\x22\x73\x68\x1f\x97\x37\x72\x26\x28\xde\xfb\x27\x7b\x77\x56\x19\xdb\xb1\x37\x7e\x77\x7b\x99\x1f\x27\x71\x5f\x82\xdc\xfd\xc3\xed\x27\xf0\xe6\xcd\xf3\x6f\xff\x0a\x00\x00\xff\xff\xf0\x3c\xad\xbf\x32\x07\x00\x00") // FileIdentifierServiceWorkerJs is "identifier/service-worker.js" -var FileIdentifierServiceWorkerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x61\x6f\xdb\x36\x10\xfd\xae\x5f\x71\x33\x86\xda\x4e\x1d\xb2\x4d\x3a\x2c\x69\xe0\x0d\x45\xb7\x75\x41\xb3\x22\xb5\x53\x18\x43\xe2\x1a\x14\x79\x92\x38\x53\x3c\x8d\x47\xc5\x35\xda\xfe\xf7\x81\xb2\x9c\x6e\x5d\xfd\x4d\x22\xdf\xbd\xbb\x77\xef\x51\x1e\x1d\x65\x70\x04\x0b\x74\x9a\x6a\x84\x48\xb0\xa5\x36\xc0\x82\xc2\x3a\xa7\x0f\xc7\x0d\x6d\x30\xa0\x01\xc6\x70\x6f\x35\xc2\x86\xc2\x1a\xc3\x77\x19\x74\x55\x7f\x52\x3b\x74\x0e\x3c\xa2\x49\x95\x01\x4b\xcb\x11\x03\xc4\xca\x32\x14\xd6\x21\x58\xbf\xe3\xdb\x60\x0e\xaa\x69\x40\x79\x93\x0e\x80\x2b\x6a\x9d\x49\x1c\xc6\xb2\xca\x1d\xc2\xef\x37\x37\xd7\xa0\x95\xae\xac\x2f\xa1\xa0\x7f\x93\x44\x22\x91\xa0\x73\x44\xa8\x62\x6c\xf8\xb9\x94\x25\x91\x28\x9d\xf4\xd5\xdb\xea\x55\xd3\x8f\x73\x53\x21\x04\xe4\x08\x54\x40\xac\x10\x34\x19\x04\xcb\xa0\xda\x48\xc7\x25\x7a\x0c\x2a\xa2\x11\x70\xed\x50\x31\x82\x21\x3f\x8c\xd0\x36\x46\x45\xfc\xd2\x6d\x37\x53\x40\x1d\xdd\xf6\x02\xac\xe7\x88\xca\x4c\xa0\x56\x6b\x04\x5d\x29\x5f\x22\x7f\xbd\x25\xc8\x5b\xeb\x0c\x68\xf2\x85\x2d\xdb\xa0\xa2\x25\x9f\x68\x92\xd8\x80\xc7\xa1\xed\x97\xb0\x83\x35\x81\x34\x32\x1f\x52\x74\xa2\x66\xbf\x70\x95\xc1\x91\xcc\x32\x5b\x37\x14\xe2\x5c\x07\xdb\x44\x1e\x0d\xf6\x48\x8e\x14\x54\x89\xa2\x24\x2a\x1d\xaa\xc6\xb2\xd0\x54\xcb\x4d\xef\x99\x36\x5e\x06\xec\x34\xb2\x7c\x26\x4e\xc5\xd3\x87\x2b\xde\x88\xbf\x78\x30\xbe\xf8\x9a\x3a\x03\x18\x08\xd9\x04\x4c\x06\xe0\x71\xad\xbc\x2d\x90\xa3\x78\x76\x8e\x4f\x4f\x4f\xf2\x73\x54\xea\x87\xf3\x27\xb9\x56\xa7\x85\x3a\x39\xcb\xcd\xa9\x7e\xa2\x7e\x3c\xd3\x67\x89\x2d\x4b\x74\x8c\xae\x10\xca\x98\x5f\xef\xd1\xc7\xab\x94\x02\x8f\x61\x34\xac\x91\x59\x95\x38\x9c\xc0\x08\xd3\xcd\x18\xa6\x3f\xc1\xc7\x0c\xc0\x16\xfd\x89\x30\x2a\x2a\x78\xf4\x08\xbe\xfc\x89\xb8\x6d\x10\xa6\xd3\x29\x0c\xe7\xaf\x2f\xaf\x57\x8b\x17\x97\x37\x97\x6f\x5e\x0d\xc7\x5d\x25\x40\xd7\x8b\xd7\xb6\x59\x28\x1b\xad\x2f\x47\xe3\x8b\x0c\xe0\x73\xf6\x39\x0d\xd2\x2b\x15\x9a\x02\x0a\xed\x2c\xfa\xc8\x2f\x9d\xb2\x75\x42\x65\x7d\xda\x53\x50\x7a\xe0\x7c\x21\xf6\xb2\x5f\x78\x33\xa3\x36\xe2\x68\x0c\x35\xc6\x8a\x0c\x60\x51\x58\x9d\x28\xdc\xb6\x8b\x26\x72\xef\x29\x37\xe4\x4d\xca\x41\x62\x0b\xf8\x77\x8b\x1c\xb9\x4b\xed\xbb\xd9\x15\xa7\xd4\xa7\xfc\x3d\xac\xf1\x80\xd5\xf3\xf3\xb7\x33\x95\x77\x56\x77\x9a\x56\xab\xfd\x28\x7f\xf4\x95\x30\x85\xdb\xa5\xd0\xe4\xb5\x8a\xa3\x43\x98\x4f\x9f\xe0\x76\x39\xbe\x78\x90\xde\x03\xac\x2f\xff\x2f\xed\x00\xc7\x04\x3e\xfe\x67\x7b\x81\xda\xb4\x59\xb1\x7f\xd1\x6f\xd4\xbd\x2d\xbb\x5c\xef\x68\xbe\xd1\xaa\xc4\xf8\x32\x51\xbe\xc6\xed\x6f\x14\xde\xcd\xae\x46\x03\x21\xad\x37\xf8\x41\x54\xb1\x76\x83\xf1\xa4\xb3\x2f\x03\xc8\x9d\xd2\x6b\x67\x39\x3e\x87\x5b\xf9\xfe\x4e\xae\xe4\x44\xde\xc9\xdb\xf7\x77\xf2\xe7\xe5\xe3\x3b\x91\x3e\x96\x8f\xbf\x97\xcb\x49\xe7\xe8\x3f\x01\x00\x00\xff\xff\x4a\x0e\x18\xa7\xa1\x04\x00\x00") +var FileIdentifierServiceWorkerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x6f\x6f\xdb\x36\x10\xc6\xdf\xeb\x53\xdc\x8c\xa1\xb6\x53\x87\xac\xf3\x07\x6b\x1b\x78\x43\xd1\x6d\x5d\xd0\xac\x48\xed\x14\xc6\xe0\x38\x01\x45\x9e\x24\xce\x14\x4f\xe3\x51\x71\x8d\xb6\xdf\x7d\xa0\xa2\xa4\x5b\x37\xbf\x14\x79\xf7\xe3\x3d\xf7\x3c\x92\x07\x07\x19\x1c\xc0\x12\x9d\xa6\x1a\x21\x12\xec\xa8\x0d\xb0\xa4\xb0\xc9\xe9\xe3\x61\x43\x5b\x0c\x68\x80\x31\xdc\x59\x8d\xb0\xa5\xb0\xc1\xf0\x5d\x06\x5d\xd7\x1f\xd4\x0e\x9d\x03\x8f\x68\x52\x67\xc0\xd2\x72\xc4\x00\xb1\xb2\x0c\x85\x75\x08\xd6\xdf\xf3\xb6\x98\x83\x6a\x1a\x50\xde\xa4\x03\xe0\x8a\x5a\x67\x12\xc3\x58\x56\xb9\x43\xf8\xed\xea\xea\x12\xb4\xd2\x95\xf5\x25\x14\xf4\x4f\x48\x24\x12\xa9\x74\x81\x08\x55\x8c\x0d\xbf\x94\xb2\x24\x12\xa5\x93\xbe\x7a\x5f\xbd\x69\xfa\x71\xae\x2a\x84\x80\x1c\x81\x0a\x88\x15\x82\x26\x83\x60\x19\x54\x1b\xe9\xb0\x44\x8f\x41\x45\x34\x02\x2e\x1d\x2a\x46\x30\xe4\x87\x11\xda\xc6\xa8\x88\x5f\x5f\xbb\x9f\x29\xa0\x8e\x6e\x77\x06\xd6\x73\x44\x65\x26\x50\xab\x0d\x82\xae\x94\x2f\x91\xbf\xdd\x12\xe4\xad\x75\x06\x34\xf9\xc2\x96\x6d\x50\xd1\x92\x4f\x98\x24\x36\xe0\x61\x68\xfb\x25\xdc\x97\x35\x81\x34\x32\xef\x53\x74\xa4\xe6\x3f\x73\x95\xc1\x81\xcc\x32\x5b\x37\x14\xe2\x42\x07\xdb\x44\x1e\x0d\x1e\x2a\x39\x52\x50\x25\x8a\x92\xa8\x74\xa8\x1a\xcb\x42\x53\x2d\xb7\xbd\x67\xda\x78\x19\xb0\xd3\xc8\xf2\x44\x1c\x8b\xe9\xe3\x15\x6f\xc5\x9f\x3c\x18\x9f\x7d\x8b\xce\x00\x06\x42\x36\x01\x93\x01\x78\x58\x2b\x6f\x0b\xe4\x28\x9e\x4d\x8d\x31\xca\xa8\xd3\xa3\xa3\x3c\x9f\x4e\x8f\x8f\x4f\xa7\xd3\xe7\x2f\x7e\x78\x8e\x78\x7a\x7a\xf2\x4c\x9f\x24\x5a\x96\x70\x8c\xae\x10\xca\x98\x5f\xee\xd0\xc7\x8b\x94\x02\x8f\x61\x34\xac\x91\x59\x95\x38\x9c\xc0\x08\xd3\xcd\x18\x66\x3f\xc2\xa7\x0c\xc0\x16\xfd\x89\x30\x2a\x2a\x78\xf2\x04\xbe\x7e\x89\xb8\x6b\x10\x66\xb3\x19\x0c\x17\x6f\xcf\x2f\x6f\x97\xaf\xce\xaf\xce\xdf\xbd\x19\x8e\xbb\x4e\x80\xee\x2d\xde\xd8\x66\xa9\x6c\xb4\xbe\x1c\x8d\xcf\x32\x80\x2f\xd9\x97\x34\x48\xaf\x54\x68\x0a\x28\xb4\xb3\xe8\x23\xbf\x76\xca\xd6\xa9\x2a\xeb\xd3\x9e\x82\xd2\x17\x2e\x96\xe2\x41\xf6\x2b\x6f\xe6\xd4\x46\x1c\x8d\xa1\xc6\x58\x91\x01\x2c\x0a\xab\x13\xc2\xed\xba\x68\x22\xf7\x9e\x72\x43\xde\xa4\x1c\x24\x5a\xc0\xbf\x5a\xe4\xc8\x5d\x6a\x3f\xcc\x2f\x38\xa5\x3e\xe5\xef\x71\x8d\x7b\xac\x5e\xbc\x78\x3f\x57\x79\x67\x75\xa7\xe9\xf6\xf6\x61\x94\xdf\xfb\x4e\x98\xc1\x6a\x2d\x34\x79\xad\xe2\x68\x5f\xcd\xe7\xcf\xb0\x5a\x8f\xcf\x1e\xa5\xf7\x05\xd6\x97\xff\x95\xb6\x87\x31\x81\x4f\xff\xda\x5e\xa0\x36\x6d\x56\x3c\xfc\xd1\xef\xd4\x9d\x2d\xbb\x5c\xdf\x63\xfe\xe7\xa9\x12\xe3\xeb\x84\x7c\x8b\xbb\x5f\x29\x7c\x98\x5f\x8c\x06\x42\x5a\x6f\xf0\xa3\xa8\x62\xed\x06\xe3\x49\x67\x5f\x06\x90\x3b\xa5\x37\xce\x72\x7c\x09\x2b\x79\x73\x2d\x6f\xe5\x44\x5e\xcb\xd5\x8d\xfc\x69\xfd\xf4\x5a\xac\x6e\xe4\xfa\xe9\xf7\x72\x3d\xe9\xfc\xfc\x3b\x00\x00\xff\xff\x2a\xb5\x80\xf9\x9f\x04\x00\x00") // FileIdentifierStaticCSSMainFf4176e2ChunkCSS is "identifier/static/css/main.ff4176e2.chunk.css" var FileIdentifierStaticCSSMainFf4176e2ChunkCSS = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\xcb\x6e\xe3\x36\x17\xde\xff\x4f\xa1\x3f\x46\x80\x64\x2a\x2a\x74\x62\x3b\x0e\x85\x0e\xda\x5d\x17\x2d\x0a\x4c\x51\xa0\x5b\x4a\x3c\x92\x58\x53\x24\x41\xd2\x8e\x12\xc1\xef\x5e\x90\xba\x58\xf6\xd8\xee\x4c\x50\x08\x30\x2c\xf2\x5c\xbe\x73\xfb\x8e\x32\xc5\xde\xe2\xca\xd5\xa2\xad\x80\x97\x95\x23\x73\x8c\x6f\xf7\xfe\xb4\xad\xa9\x29\xb9\x24\x38\xd5\x94\x31\x2e\x4b\x82\xf7\xb3\xac\x6c\xb5\xb2\xdc\x71\x25\x49\xc1\x1b\x60\xa9\x53\x9a\xe0\x34\x53\xce\xa9\x9a\xe0\x54\x40\xe1\x08\x4e\x4d\xb0\x85\xd3\x8c\xe6\x9b\xd2\xa8\xad\x64\x64\x56\x14\xc5\x7e\x26\x14\x65\x60\x0e\x46\x68\x66\x95\xd8\x3a\x18\x2c\xac\x6e\x3b\x13\x4b\x7c\x9b\x16\x4a\x3a\xf4\xda\xc1\x5a\x60\xdc\xbd\x17\xb4\xe6\xe2\x8d\xdc\x7c\x51\x99\x72\xea\x26\xbe\xf9\x05\xc4\x0e\x1c\xcf\xe9\x4d\x7c\xf3\xb3\xe1\x54\xdc\xc4\x96\x4a\x8b\x2c\x18\x5e\xa4\xb9\x12\xca\x90\xd9\x6a\xb5\x4a\x9d\xa1\xd2\x16\xca\xd4\x24\xfc\x13\xd4\xc1\x1d\x5a\xe2\xdb\xd8\xff\xdc\x0f\xd0\x3e\xd3\xb6\xd7\x99\xc3\xcb\x9a\x3d\xef\x67\xc1\xad\x36\x70\x11\xba\x4f\x01\x5a\x62\xac\x9b\xaf\x20\xf7\xa6\x8a\xa2\xf8\x08\xfa\x53\xdf\x9f\xad\xa6\xb2\x9d\xfa\x58\x62\xbc\x9f\x19\xa5\xdc\xb4\x7c\x29\xe3\x56\x0b\xfa\x46\x0a\x01\xcd\xfe\x53\x6b\x73\xa3\x84\xc8\xa8\x41\xaf\x9c\xb9\x8a\xb8\x8a\xcb\xf4\x70\xd8\x63\x64\x8c\x45\xb3\x62\xe9\x9f\x50\x7f\x52\xa9\x1d\x98\x68\xaa\xde\x4b\x66\xcc\x3f\xa3\x30\x21\xe8\x15\xb2\x0d\x77\x68\x94\x1c\xd0\xac\x75\x93\x76\x3e\xfd\xbf\x49\x33\x84\x0a\x68\x6a\x40\xba\xd4\xbb\x29\x84\x7a\x25\x3b\x6e\x79\x26\xe0\x9c\x41\x94\x2b\x23\xc1\xb4\x43\x64\x52\x49\x38\x6e\xae\x8b\x58\x50\xb6\x75\x4e\xc9\x63\xd5\x1e\x1f\xee\xd1\xe1\x2b\x8a\x04\x24\x23\x5c\xe6\x06\x6a\x90\x2e\xbe\x22\x68\x1d\x35\x8e\x30\xe8\x45\x47\x8f\x99\x50\xf9\xe6\x9a\x87\x1d\x18\xdf\x02\x22\xb8\x1a\xf5\xaf\xb9\x1a\x35\x3a\x9f\x23\xbc\xa3\x28\xcf\xba\x74\x86\xe6\x9b\x16\xd5\xea\x1d\x1d\xf2\x87\x72\xc1\x35\xc9\x94\x61\x60\xd2\x41\xe7\xc2\xf5\xe9\x71\xcf\x0e\x28\x53\xcd\xd1\x5d\xdf\xf9\x97\xeb\x12\x90\x90\x4a\x19\xfe\xae\xa4\xa3\xe2\x6c\xbc\x9d\xd0\x10\x6e\xdb\x61\x40\x9e\x22\xfa\x66\xf6\xdc\x13\xce\x02\xe5\xa0\x6b\xf5\x74\xd5\xb6\xce\xfe\xd5\x61\x10\x1a\x1c\x5e\xc1\xf4\x21\xe0\xd6\xbd\x09\x20\x56\x09\xce\x06\xdc\x5d\xa2\x26\x03\x71\x19\x7b\xfb\x7d\xb9\x67\x8c\xa5\x35\x97\xa8\x1a\xf8\x48\x37\x03\x97\x23\xcf\x59\xf3\x40\x59\x43\xfa\x28\xe3\x5b\x4b\x16\xba\xb9\x9a\xbb\x1d\x98\x78\xc2\x0e\xdf\x06\x75\x4a\x1b\x57\xac\xd3\xdc\xf1\x1d\x9c\xd1\x7c\x59\xfb\xe7\xbf\xaa\xe9\x50\x8b\xa1\x55\xc2\xf6\x3b\x62\xe7\xdf\x35\xc8\xe8\x0f\x2a\xed\x11\x19\x5b\x67\x94\x2c\x8f\xe8\x77\x85\xf1\x3e\x51\x39\x12\xaa\xe4\x12\x65\xe5\x14\x3b\xaf\x69\x09\x64\x6b\xc4\x5d\x92\x3c\x24\xc9\x83\x75\xd4\xf1\xfc\xa1\x06\xc6\xe9\xc3\x41\x2e\x61\x8b\xd5\x4b\x91\xaf\xf3\xe4\x6f\x5d\xde\x4f\xab\x68\xf9\x3b\x90\xdc\xa7\x79\x7a\x6a\x40\x03\x75\x44\xaa\xfe\xdf\xf4\x6e\x5c\x4d\x7e\x7b\xbe\x23\x2e\x19\x34\x7e\x6b\xf7\x9b\x6b\xb2\x8c\x1c\x34\x0e\xd9\x8a\x32\xf5\x4a\x66\x18\xe3\xc8\x3f\x73\xdd\x0c\xd1\xa8\x4b\x6b\x6e\xfe\xe4\x7b\x66\x5c\xd1\x03\xcf\xfb\xc3\x33\xfb\xf5\xaf\xbb\x6e\xb7\x7a\xab\xda\xa8\xd2\x80\xb5\x5f\xd7\xd7\x94\x19\xbd\x7b\x5e\xc7\xf3\xa7\xa7\xf8\x11\xe3\x38\x59\xdf\xff\x9f\xd7\x5a\x19\x47\xa5\x1b\x5c\x2c\xc6\x55\x12\xda\xf6\xc8\xe4\x67\xc6\x77\x67\xda\x66\x01\xeb\x65\xbe\x3e\x98\x0a\x3a\x5c\xea\xad\x3b\x23\x8c\x17\x8f\x78\xf1\xdc\x4f\x03\x99\xeb\x26\x0a\x53\x1a\x9d\x01\x77\x32\x32\x4f\xba\xe9\xf7\x7c\x65\x05\xbd\xc3\x31\xbe\x8d\xfd\x1a\x0e\xa2\xd3\xd9\xeb\xe0\x3f\xe1\xc9\x1c\x92\xf9\x2a\x8c\x60\xe3\xab\xed\xdf\x7b\xd3\x7e\xa0\x43\xa3\x85\x26\x98\x1b\xa8\x0f\xe0\x49\xa1\xf2\xad\x6d\xd5\xd6\x09\x2e\xa1\x63\xfa\xc3\xe5\xd8\xfe\xe1\x15\x69\x41\x73\xa8\x94\x38\xd4\xff\x4c\x40\x47\xea\xb5\xfd\xa8\xea\x77\x2a\xfc\x70\x28\x47\xf7\xa9\xd9\x91\xd2\xb2\x2f\x6e\xbf\xb6\x27\x59\x48\xf0\xea\x71\x69\xa0\x3e\xa9\x68\x27\x88\xb4\xe1\x35\x35\x6f\xdf\xda\x07\xc7\x5a\x5d\x4e\xe3\x33\x17\x81\xe7\xce\x18\x7d\xc2\x2b\x96\x2d\x4f\x8c\xe6\x15\xe4\x1b\x5f\x4d\x46\xcd\x26\xb2\xbb\xb2\x2d\xb8\x10\x61\xe4\x4e\x24\x0b\xa5\x1c\x18\x54\x83\xb5\xb4\x84\xe9\x68\x8e\x9d\x31\x7e\x4f\x86\xe8\x93\xb5\x6f\x82\x9f\x02\x7d\x44\x4a\x8a\xb7\xc8\xe6\x06\x40\x46\x54\xb2\xe8\xae\xa6\x4d\xcf\x67\xcf\xab\xb5\x6e\xee\xdb\x71\x8e\xab\x81\xa9\xfc\x84\xfa\x09\x7e\xf1\xd3\x13\x30\xd4\x0e\x89\x69\xea\xfd\x68\x9f\xc0\xac\x33\x54\x0f\x22\xfd\x17\xfa\xe3\xd7\x52\xc2\xbb\x98\xc4\x30\xb9\xfe\xdf\xc3\xa7\x59\x64\xd5\xd6\xe4\xf0\x1b\xd5\x9a\xcb\xf2\xcf\x2f\xbf\xfe\x58\x53\x2e\x93\xa2\x58\xcc\x9f\x57\xf0\x98\xe4\xd5\x56\x6e\x92\xdc\xda\xa4\xa6\x3a\xfa\xf4\xf0\x4f\x00\x00\x00\xff\xff\x28\x14\x15\x24\x94\x0c\x00\x00") @@ -59,68 +59,68 @@ var FileIdentifierStaticCSSMainFf4176e2ChunkCSSMap = []byte("\x1f\x8b\x08\x00\x0 // FileIdentifierStaticFaviconIco is "identifier/static/favicon.ico" var FileIdentifierStaticFaviconIco = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x1b\x07\x58\x54\x67\xf2\x87\x7d\x21\xe5\xf2\x19\x2f\x5f\x72\x25\xc0\x93\x18\x8d\x25\x47\x24\xd1\x68\x12\x2f\x82\x0f\xb0\x1b\x8d\x44\x8d\x46\xd1\xd8\xa2\x67\x34\xca\xc5\x16\x1b\x26\x58\x01\x3f\xeb\x79\x46\x14\x2f\x0a\x58\xb0\x82\xe8\x01\x52\x0f\x05\x1b\x45\x51\x30\x8a\x80\x20\x4b\x6f\x4a\xdd\xdd\xb9\x6f\x66\xf7\xad\xbb\xb0\x2c\xb0\x20\x0b\xde\xcd\xf7\x8d\x8f\x7d\xe5\x9f\xf9\xe7\x9f\x7f\x66\xfe\x99\x91\x31\x13\x26\x61\x36\x36\x78\xb5\x62\x47\xba\x33\xd6\x9f\x31\x66\x65\xa5\xfa\xdd\x99\xb1\xb4\xee\x8c\x75\xee\xac\xfc\x3d\x97\x63\x6c\x43\x7f\xc6\x7a\x32\xc6\x6c\x18\x63\xd3\x99\xf2\x3e\x41\x37\xd6\x28\xd8\x77\x79\x81\x13\x78\xae\x9f\xc0\x73\x6e\x02\xcf\x45\x08\x3c\x97\x29\xf0\x5c\x99\xc0\x73\xb5\x02\xcf\x29\x04\x9e\x83\x67\x8c\x0a\x15\xad\x32\x15\xed\x08\x15\x2f\xfd\xec\xf9\x17\x38\x7d\xbc\x0b\x3c\x67\x29\xf0\x9c\x87\xc0\x73\xd9\x6d\xc4\x6b\x73\xe6\x94\xad\xe2\xcd\xb2\x01\xde\xad\x05\x9e\x8b\x6e\x07\xbc\x36\x86\xc8\xa3\xb5\x0e\xb9\x77\x04\xde\x35\xe7\x60\xa9\xd4\x77\x33\x89\x6a\x5d\x8c\xcd\x53\x73\xd1\xc3\xbe\xcb\x0b\xc8\xfb\x47\x02\xcf\x65\xb5\x03\x7e\x9a\x8b\x59\x2a\xde\xdd\xda\xd9\x5e\x6d\x2a\x2a\x34\x6c\xa4\xb1\x79\x31\x14\x91\xf7\x8c\x76\xc0\x87\xa1\x98\xa1\xf2\x13\xc6\xe6\xc3\x50\x14\xfd\xaa\xb1\xf9\x30\x14\xdb\x2a\x26\x78\x56\xd8\x91\x79\xff\x9f\x42\x3b\x0b\x53\xb0\x7d\x8b\x11\xda\x99\x9b\x80\xc0\x4b\x94\xf7\xcd\x4d\x94\xf7\x2c\x4c\xb5\xde\x1f\x6c\x29\x51\x3f\xb3\x35\xaf\xff\x5c\xf9\xce\xd3\x31\x95\x63\x98\x68\x7f\x6f\x61\x4a\xd7\x96\xf0\x2d\x7e\x3f\xe5\xb3\x1e\xb0\x7a\xd6\x38\xf8\x69\xfe\x24\x98\x37\x6a\x00\x0c\x7b\xf7\x55\x70\xec\xfa\x12\x7c\x37\xf6\xaf\xf0\xd3\xdf\x26\xc1\x0c\x87\xf7\xb5\xf8\x1e\xd5\xfb\xf7\x30\x7b\x58\x5f\x58\xf2\xf5\x30\x58\x3c\x41\x80\xaf\x07\x76\x07\x87\xb7\x5f\x54\xf3\x88\xbc\x8d\xff\xc8\x12\xd6\xcc\x76\x82\x9d\x6b\xbe\x87\x4d\x2e\xdf\xc0\x0c\xc7\x3e\x60\x6f\x65\x46\xcf\x46\xf4\x7c\x8d\x68\x8e\x7d\xff\x0f\x34\x4f\x43\x79\xc7\x71\xbc\x36\xaf\x02\xe9\xc3\x74\x90\xd5\xd6\x82\x42\x2e\x87\xf2\xd2\x12\xf0\xf6\x74\x85\x5f\x36\xae\x80\xf2\xd2\x62\x50\x28\x14\x90\x9b\x9d\x49\xbc\x0c\xed\xf6\x3b\xd8\xb8\x78\x3a\x24\xc6\x46\x42\x69\x71\x21\xd4\x54\x57\x41\x55\x65\x05\x48\xb3\xd2\xe1\xfc\x51\x6f\x98\x33\xbc\x1f\xd8\x77\x31\x03\xb7\x05\x53\xe0\xfe\x9d\x24\x1a\x13\x01\xc7\x28\xcc\xcd\x81\xc3\x3b\x37\xc0\x4c\x47\x1b\x88\xbe\x70\x1a\x0a\x72\x1f\xc1\x9d\x84\x2b\xb0\x62\xda\x68\x83\xd6\xc1\xc1\xca\x0c\x7e\xdd\xf6\xb3\x9a\x86\x08\x48\xeb\xec\xe1\xbd\x34\x27\xcd\x7b\xc7\xbd\xb6\xc1\x29\xef\x5d\xc4\x73\x43\x90\x93\xf9\x00\x36\x2e\x9a\x06\x31\xc1\x67\x75\x3e\x97\xcb\x65\x70\xf1\xcc\x11\x48\xb8\x1c\xa9\xbe\x97\x76\xe7\x26\x4c\xe8\xdf\x05\x06\xeb\xd0\xc1\x06\xf5\xdd\xdc\x84\x64\x55\x94\x2f\xad\x47\x43\x26\xab\x85\x93\xde\xbb\xa0\xa4\xa8\x40\x7d\x2f\x31\x36\x0a\xce\xfc\xba\xa7\xde\x5c\x1b\x9a\xc3\xee\x75\x2e\x90\x2f\xcd\xd6\xf9\x1c\xd7\xf4\xa4\xf7\x4e\x78\x52\x5e\x46\xbf\xf1\x3a\x7f\xcc\xa7\x60\x6b\x6e\xd2\x64\xfe\x71\x3f\x6d\x5f\xf5\x9d\xce\xf1\x53\x93\xae\xc3\xd6\xe5\x73\x21\xfe\x52\x04\xfd\xae\xae\xaa\x04\xbf\x7f\x6c\x21\x1d\x6a\x2a\x84\x9e\xf6\x83\xa0\x23\x07\x1a\x7e\x7e\xca\x97\xe4\x8e\xf0\x20\x35\x19\x26\x0e\xb0\x6a\x96\xfc\xd1\x66\xec\xdf\xb2\xaa\xde\xb8\x79\x39\x59\xe0\xbb\x7b\x13\x64\xde\x4f\x85\x0b\xc7\xff\x05\xff\xf9\xf7\x19\x88\x08\xf4\x87\x13\x07\x76\x34\x99\x77\x84\xdc\xac\x0c\xd8\xb7\xe9\x47\xa8\xae\xd2\xad\x6b\x97\x42\x02\x48\xc7\x70\x8f\xac\x9a\xf9\x45\xb3\xf5\x1f\xe5\xbf\xe1\x7b\x67\x90\xcb\xe5\x5a\xe3\x06\x9f\x38\x04\x89\x71\x51\xf4\x37\xca\x3d\xfd\xee\x6d\xf0\xdf\xbf\x1d\xc2\x03\x8e\x35\x8b\xff\xea\xca\x0a\xb2\x0b\x45\xf9\xb9\x3a\x9f\x07\xfa\xee\x83\xaf\x3e\xe9\x0a\xe3\x3e\x7c\xcb\xa0\xbd\x8b\x6b\xf5\xd5\xc7\x6f\x43\x5a\xca\x2d\x0d\x9a\x95\x70\xec\x97\xad\xa4\x9f\x9a\x70\x23\x26\x0c\x2e\x87\x06\x36\x8b\xff\xda\x9a\x6a\xf0\xf6\x58\x4b\x36\xa6\x2e\xe0\x1e\xda\xb0\xd0\x19\x06\xfd\x99\xb5\xc8\xfe\xe3\x1c\xd6\x7e\x3b\x1e\x8a\xf2\x94\x7b\xb8\xac\xb8\x08\xfc\xbd\xb6\x43\x6d\x4d\x8d\x16\xbd\xbb\x37\x6f\x40\xe8\x29\x9f\x66\xf1\x8f\x32\x38\xe0\xb1\x46\xbd\x47\x35\x21\x2e\xec\x3c\x8c\xb1\x7e\xb3\xc5\xbe\x4b\xc4\xc5\x13\xec\x21\xe2\x9c\x3f\xfc\x96\x9c\x00\x87\x76\xac\x87\xca\x8a\x27\x5a\xf4\x4a\x8b\x0a\xc0\xdf\x6b\x1b\xd9\xf9\xa6\xc2\x9d\xf8\x2b\xe0\xbb\x7b\x73\x3d\xb9\xc7\x85\x9f\x87\x69\x76\xbd\x75\xfa\x6b\x43\x11\x6d\xe9\x90\x77\x5e\x86\x2f\xfb\x5a\xc0\xb4\xc1\xef\x91\xce\xd7\x85\x8b\xa7\xfd\x20\x29\x2e\xba\x49\xbc\xd7\xd6\xd6\x90\x9f\x42\xbf\x7b\xce\x6f\x3f\xed\x9d\xb3\x87\xf6\xc2\xfa\x85\x53\xe1\x73\xeb\x37\x5b\x95\xf7\xba\xfa\x84\xb8\x73\xed\x22\xa8\xa9\xae\xd6\xe2\x29\x35\xe9\x1a\x78\x2c\x9d\x03\xd9\xe9\xf7\xf5\xf2\x8e\xfe\x3b\xf2\xdc\x09\xb2\x5d\xa8\x43\x77\xe2\xe3\x60\xee\xc8\xfe\x64\xef\x10\x5b\x4b\x67\x1a\x9c\x83\xa5\x04\x86\x75\x7f\x15\x0e\xb8\xaf\x81\xe2\x02\xa5\xed\x40\xdf\x1b\xe8\xeb\x45\xf6\xee\xe8\x5e\x4f\xb8\x75\xed\x12\xed\xcf\xba\x80\xf1\x44\xc8\xc9\xc3\x24\x73\x51\xd7\x32\xee\xa5\x90\x9d\x68\x8e\x6d\x6f\xb1\x3e\x61\xec\xd5\xcf\x12\x0e\x6e\x5d\x47\xbc\x04\xfb\x1f\x22\x5d\x46\xbf\x5c\x5c\x90\x47\xbe\x07\x7d\x31\xfa\x06\x8c\x03\xae\x47\x87\x52\x4c\xb0\xc7\x6d\x09\xe9\x89\x4c\x26\x23\xde\xd1\xf6\xef\x58\xbd\xf0\x99\xcb\xbc\x2e\xa2\x6f\x58\x36\x75\x04\x94\x15\x17\xd2\x5e\x88\x08\x38\x4e\xf2\x57\xeb\x88\x42\x01\x25\x85\xf9\x64\x97\x90\x7f\x5c\x8f\x47\x19\x69\x34\x0f\xd4\x1d\x84\xbc\x47\x0f\x69\x3e\x18\xef\xb5\x35\xff\xb8\x9f\xbf\x1d\xd9\x1f\x4a\x0a\xf3\x88\x17\x94\x39\xae\x81\x42\x21\xd7\xab\xfb\x97\x42\x03\x29\x46\x75\x5f\x32\x1b\xa6\x0b\x7f\x51\xeb\x63\x5b\xf2\x2e\xa2\xe3\xdb\x2f\xc1\xde\xf5\xcb\x20\x3f\x27\x9b\x7c\x10\xea\x52\x81\xb4\xbe\x2f\xd2\x5c\x93\xdd\xae\x2e\xe4\x93\x74\x9d\x77\xda\x1c\x2d\x25\x14\x5f\x3b\xdb\xf6\x82\x59\x43\x3e\x80\x91\xbd\x3a\xd3\x1c\xd0\x36\xea\x02\xd4\x1d\xa7\x0f\xcd\x8d\x26\xef\x06\x75\xc9\xc2\x94\xce\x54\x78\x46\x1a\xde\xa3\x13\xfc\xd3\x6d\x29\x64\x3d\xf8\x0d\x6a\x6a\xaa\x41\x2e\x93\x91\x6f\xc3\x98\x69\xca\x67\xef\x1a\x5f\xe6\x8d\x20\xc9\xd6\x52\x02\x93\x3e\xe9\x0a\xcb\x9d\x47\x91\xae\xcf\x19\xd6\x17\x86\x76\x7b\xa5\xdd\xf3\xae\x35\x8f\x7a\x67\xfd\x67\x4a\xaf\x23\xe7\x80\x14\xcf\x41\xfe\xb0\xa3\xe7\x6f\x3b\x7a\xfe\xbc\xa3\xd7\x2f\x3a\x7a\xfd\xa8\x43\xd7\xef\x3a\x76\xfd\xd4\x4c\xd2\xd1\xeb\xd7\xcf\x43\xff\xc0\xf3\xd0\xbf\xa1\xee\x9f\xe1\xeb\xf5\xcf\x64\x18\xb1\x7f\x26\xa3\xb1\xfe\x19\x19\xfe\x63\xcb\x58\x09\x5e\x5f\x63\x2c\x1d\xaf\x2f\x32\x16\x81\x57\x09\x63\xae\x8c\x1a\x88\xd4\xd7\xff\x83\x7e\xa8\x2b\x2f\x51\x8e\xa2\x5c\x45\x39\x8b\x72\xef\xc9\x18\x75\x67\xd9\x69\xf6\x69\x75\x6e\x78\x7c\x81\xe7\x3a\x09\x3c\x37\x43\xe0\xb9\x50\x81\xe7\xa4\x02\xcf\x55\xb5\x92\x5e\x29\x54\x63\x49\x55\x63\x23\x8d\x4e\x75\x68\x5b\x08\x3c\xe7\x23\xf0\x5c\x65\x1b\xe8\x71\xa5\x8a\x96\x85\xc6\xbc\x7d\x8c\xb0\xf7\x7d\x34\x64\x5e\x61\x04\xfa\x15\x2a\xda\x21\x46\xa0\x2d\x22\xd2\xce\x31\x22\xfd\x1c\x95\x6e\x1a\x8b\x7e\x6b\xed\x31\x43\xb1\x3d\xf9\x42\x2d\xb4\xb3\x30\xa1\xba\xa0\x9d\x88\x16\x4f\xff\x16\x34\xcf\xf2\xe6\xda\x79\x2b\xca\xbb\x98\x9b\x50\xce\x02\xbf\x1f\x4c\x79\x18\xe5\xbb\xcd\xc9\xe5\xce\x19\xde\x0f\xf6\x6f\x59\x4d\x75\x89\x45\xe3\x07\xc3\x82\x71\x83\xe0\xf0\x8e\x0d\xb0\x72\xc6\x58\xca\x4f\x4d\xfe\xb4\x1b\x6c\xfe\xfb\x4c\xca\x37\xbb\x2f\x99\x0d\x53\x07\xf5\x20\x9a\xce\xb6\xbd\x60\xdf\xc6\x1f\x29\x1f\xbb\x7b\x9d\x0b\xd5\x07\x67\x3a\xda\xc0\xfa\x05\x53\x61\xf2\xc0\x6e\x8d\xe6\xa9\x90\xd7\x65\x53\x47\x50\x1d\xef\x69\x8e\xeb\xa2\xba\x5e\xf5\x20\x35\x19\x76\xad\x5d\x44\xf9\x55\x31\x2f\xa9\x50\x28\x28\xb7\xe4\xb9\x7c\x6e\xbd\xfa\x71\x52\x5c\x34\x44\x06\x29\x73\xab\xf1\x31\xe1\xf0\x85\xcd\x9f\x1a\xe4\x41\xac\xcb\x5f\x8b\x0a\xd1\xca\x0f\x46\x9e\xf3\xa7\xbc\xac\x42\x2e\xa7\xdc\x73\x7e\x4e\x96\xce\x5c\x5c\x61\x9e\x14\xce\x1f\x3b\xa8\x55\xaf\xc1\xef\xaf\x45\x87\x52\xde\xb7\xb8\x20\x0f\xbe\xb1\xb7\xd6\xea\x87\xd0\xa2\x6f\x61\x4a\xf5\x6c\xcd\x5a\xc3\xfd\xdb\x49\x10\x76\xf6\x28\x5c\x8d\x0c\xa6\xda\xff\xe5\x8b\xe7\xf4\xe7\x62\x43\x02\x20\x2d\xe5\xa6\xd6\xbd\x94\x84\xab\xf4\xed\x89\xfd\x3b\xa8\x3f\x42\xd0\x33\xff\x51\xbd\x5f\x57\xd7\x6b\x6a\xaa\xab\xa8\x5f\xa0\xe2\x49\x39\x3c\x2e\x2b\xa5\xb1\x93\xaf\xc7\xea\xa5\x9f\x9a\x74\x1d\x12\x2e\x47\x68\xdd\x8b\x0a\x3a\x41\xb5\x84\xa6\xe4\xb4\x71\xfd\x7f\x9e\x3f\x19\xca\x4a\x8a\xa8\x2e\x71\x25\xfc\x82\x7a\x9c\xcc\x7b\x29\x70\xfb\x86\x7e\xfa\xb7\xe3\xe3\x20\xf9\xfa\x65\xf5\x6f\xe4\x7d\xdd\xbc\x89\xa4\xff\x62\x6f\x4b\x63\x68\x6f\x65\x46\xfd\x21\x7e\x7b\xb6\x90\x1e\x8b\x80\x3c\xc5\x5e\x0c\xa2\xfc\x65\x43\x80\xeb\x9f\x18\x1b\x05\xe5\x25\xc5\x90\x7e\x37\x19\xb6\xad\x9c\x0f\x8e\x5d\x5f\x6e\xfe\xfe\x57\xed\xf5\x19\x0e\x7d\x48\xb7\x45\x08\x0f\x38\x46\x75\x03\x5d\x70\xff\x76\x22\x84\x07\x1c\xa7\x5a\xdf\x8a\x69\xa3\xc1\x49\xac\x11\xb7\xa4\xd6\x6a\x29\x81\x65\xce\x23\xa9\x5f\x44\xfa\x30\x9d\xea\x14\x38\x3e\xae\x71\x41\xee\x23\xd2\x8b\xc2\xbc\x1c\xd2\xcf\xd8\xb0\x20\xaa\x9f\xa1\xbe\x8d\xed\xf3\xc7\x56\xc9\x31\x8a\x32\x88\xbf\x14\x01\x61\x67\x8e\xc0\x55\xd5\xde\x7c\x94\x91\x46\x7a\x7a\x23\x26\x0c\x6e\x5e\x8d\xa1\x9e\x85\x02\x69\x36\xe9\xfe\x0f\x93\x87\xb4\x5a\xdd\x0a\xf5\x11\xed\x16\xea\x5e\x59\x71\x51\x3d\xdd\x16\xe1\xd0\x76\x37\x70\x99\xe8\xa0\xec\x87\x30\xb0\x2f\x48\x1f\xce\x1d\x39\x00\xdc\x7f\x98\x05\xab\x67\x39\x69\xf5\xd7\x80\xca\x26\xa2\xdd\xa5\xba\xfa\x33\xca\x47\x93\x3f\x42\x1f\x62\x69\x0a\x2e\x13\xed\xa9\x37\x03\xd7\x39\xe4\xa4\x0f\xcc\x1b\xfd\x71\x9b\xd6\x1f\x90\x17\xc7\xae\x2f\x91\xad\x52\xf6\x6e\xb5\x68\xce\x06\xc7\x00\xad\x30\x67\x45\x3b\x88\xbf\x8c\x1d\x7f\x1a\x3b\xfe\x36\xf6\xf9\xc3\xa8\xe7\x2f\x63\x9f\x3f\x8d\x7d\xfe\x2e\x61\xec\xb5\x08\xc6\x24\xae\x8c\x99\xb8\xb6\x41\x26\x46\xa4\x83\x34\x91\x76\x4f\x55\x5a\xc2\x4a\x33\x4f\xa1\xe3\x7f\x63\x09\x3c\xf7\x86\xc0\x73\x9e\x02\xcf\xe5\x09\x3c\x27\x6f\xc2\xbc\xe5\xaa\x77\x3d\x55\xdf\x6e\x15\x78\xae\xc6\x00\xf9\xd5\xa8\xbe\x95\xb6\x60\x0d\xa4\x4d\xe4\x59\xdf\x5c\xe8\x6f\xb4\xb9\x18\x9f\xa1\xdd\x77\xb0\x7a\x51\xfd\x8e\xd8\xc3\x8b\x67\x93\x21\xef\xbc\xf2\x34\xee\xd1\xb0\xd1\xe8\xbb\xd0\x3f\x07\xfa\xec\x53\xa2\xef\x3e\x3a\x4b\x1c\xdb\xbb\x15\xa2\x82\x4e\xd2\x39\xc6\x6f\x8f\x3b\xf5\xbc\x79\x6d\x5e\x09\x07\x3d\x5d\xa9\x5f\x58\xb4\xf3\x78\xd6\xda\xe5\xba\x58\xe9\x73\x53\x6e\x51\xac\xf1\x30\xed\x2e\x46\xf9\x74\xef\x71\x69\x09\xf5\x15\x22\x60\x2c\x82\xf1\xf2\x97\x7d\xcd\xd5\xf1\x00\xc6\x32\x6b\x66\x3b\xd1\x59\x02\x63\x7c\x44\xcd\xde\x4c\x99\x4c\x06\x77\x6f\xc5\xd3\x99\x21\x26\x38\x00\x9c\xfa\x9a\xd7\x93\xc5\x90\x77\x5e\x86\xf9\x63\x06\x52\x5f\x5b\xc5\xe3\x72\xb8\x97\x9c\xa0\xee\x4d\x2d\x2d\x2a\xa0\xb3\xc6\x91\x3d\xee\x14\x0f\x34\xe4\x17\x31\x4e\x98\x35\xf4\x03\x8a\x9f\x30\x5e\xc7\xf8\x12\xe7\x91\x18\x17\x45\xbd\xc4\x23\x7a\x74\xd2\x1b\xbb\xa1\x3c\x3e\xb7\x7e\x03\xbc\x3d\xd7\xc2\xd5\xa8\x60\xe2\x37\x27\xf3\x01\xc5\x9c\xa3\xdf\x7b\xbd\x69\x7e\x91\xde\x91\xd0\x79\xc7\x63\xe9\x1c\xea\x85\x13\xf4\xfb\x54\x9d\xfa\x23\xf6\x9a\x37\x12\x6b\xca\x5b\x41\x7f\x5b\xba\x7f\x5a\xb4\x7f\x5d\x5b\x60\x99\xf0\xdb\xff\x06\x00\x00\xff\xff\x44\xc1\x59\xbf\xee\x3a\x00\x00") -// FileIdentifierStaticJs0Ce7dce23ChunkJs is "identifier/static/js/0.ce7dce23.chunk.js" -var FileIdentifierStaticJs0Ce7dce23ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xbd\xf9\x9b\xdb\x36\xb6\x28\xf8\xfb\xfc\x15\x12\x5e\x9a\x97\x88\x20\x96\x54\x5e\x92\x50\x41\x14\xc7\x71\xd2\x4e\xc7\xcb\x75\x39\xe9\x45\x56\x67\x58\x22\x54\x82\x8b\x02\x15\x10\xaa\xc5\x12\xe7\x6f\x9f\x0f\x07\x00\x09\x52\x54\x55\xa5\xef\xed\x37\xef\xce\xf7\x25\x2e\x0a\x3b\x0e\x0e\x0e\xce\x86\x83\x93\xcf\xfb\xbd\x1f\x72\xd9\xcb\xf8\x82\x89\x82\xf5\xb8\x58\xe6\x72\x9d\x28\x9e\x8b\xde\x26\x63\x49\xc1\x7a\x05\x63\xbd\x51\xb4\x60\x5f\xa4\x0b\x76\xfa\x28\x5a\xac\xb6\xe2\x32\xfa\x58\x44\x3f\xbf\x7c\xfe\xe2\xf5\xd9\x8b\x48\xdd\xa8\xde\xe7\x27\xff\x57\xa8\x56\xbc\x88\xae\xd9\xf9\x26\x59\x5c\xfe\x54\xe4\x62\xc3\x53\x26\x14\x5f\x72\x26\xe9\x1d\x79\xfb\xfd\x6c\x8e\xa3\xcd\xb6\x58\x85\xb3\xd9\x68\x4e\x76\xe3\x51\xbc\xdc\x8a\x85\x1e\x42\xc8\x88\x22\x02\xef\xd0\x56\x8f\x43\x49\xbe\x50\x68\xe2\x32\x7b\x32\x64\x78\x77\x95\xc8\x9e\x22\x82\x70\x8a\xd0\x84\x2f\x43\xa4\x8b\x89\x0b\x44\x29\x55\xb7\x1b\x96\x2f\x7b\x6c\xbf\x47\x62\xbb\x3e\x67\xd2\x4f\xc4\x7c\x40\xd9\x84\x65\x7a\xce\xcb\x10\xe5\xe7\x1f\xd9\x42\x35\x0b\x2c\xc3\x67\x52\x26\xb7\x11\x2f\xe0\x6f\xc8\x30\x5e\xe6\x32\x54\x74\x34\x51\x5f\xb3\x28\x63\xe2\x42\xad\x26\x6a\x30\xc0\x6c\xa6\xe6\x41\x10\x0a\x2a\x43\xfd\x89\x71\x10\x84\x5c\xff\x3f\xa0\xa8\x87\x30\xe1\x03\x2a\xb0\xe9\x0c\x5a\xe8\x71\xd1\x63\xae\x56\xab\xa0\xc2\x13\xc9\xd4\x56\x8a\x1e\x2f\x55\x94\xd0\x0a\x16\x78\xa7\xeb\xea\xf9\x02\x54\xe8\xc8\xcc\x59\x7c\x9d\xc8\x8b\xed\x9a\x09\x55\xb8\x21\xe1\x90\xd1\x2a\x71\x26\x06\x83\xb9\x1e\x90\xd2\xa3\xeb\x1a\x9a\xdf\x63\x49\xc6\xe3\xbb\xc1\xaf\x07\x20\xa9\x08\xbf\xc0\x84\x53\x11\x3e\x7a\x82\xeb\x15\xc9\x75\x0d\xbc\xe3\xcb\x50\x6c\xb3\x8c\x52\x86\x4d\xc3\xbb\x12\xaa\x09\x22\x09\xa7\x7e\xeb\xf7\x95\xdd\x95\x24\xa7\x6f\x60\x6d\xa2\x4b\x76\x5b\x84\x0c\x4f\x34\x14\x24\x1d\x4d\xe4\xd7\xb9\x9b\xb0\x1c\x0c\xb0\xa0\xf9\x4c\xce\x89\x8a\xb8\x48\xd9\xcd\x9b\x65\x28\xf0\x37\x74\xb4\xdf\x87\x7c\x26\xe6\x94\xcd\xc4\xdc\x9b\x26\xf4\xad\xd1\xc5\xb6\x7d\xc1\xd4\x9b\x6b\xf1\x56\xe6\x1b\x26\xd5\xed\xd9\xed\xfa\x3c\xcf\x0a\x83\x5c\x55\xff\x9d\x65\xfe\x85\x01\xd9\xe6\x36\x32\x57\xb9\x46\x36\xfd\x05\x4d\xbe\x2c\x5e\x88\xed\x9a\xc9\xe4\x3c\x63\xd1\x22\xc9\xb2\x90\x11\x01\xeb\x55\xcd\xa0\xac\x66\xa0\x87\x96\x50\x11\x3e\xc1\xa4\xa0\x22\x12\x61\x82\xc9\x96\x86\x22\x7c\x8a\x89\x08\x1f\x7f\x81\x31\x59\x40\xfa\xd6\x5b\x9f\x2c\xc4\x3b\xd3\x42\x98\xb9\x69\x25\x45\xc1\x2f\xc4\x7e\x5f\x2f\x4b\x8d\x68\x8a\x8e\x27\xea\x10\xbf\x34\xca\x03\x6c\x84\x87\x66\x6a\x3e\x71\xd5\xa4\xc6\x6f\x81\x0f\x26\xba\x4a\x0a\x0f\x82\x66\x8a\x82\x48\x3d\x45\x36\x93\x73\x2a\x66\xb2\x9e\x22\x2b\x71\x94\x6c\x36\xd9\x2d\x10\x16\x52\x75\x84\x61\xea\x4b\x8a\xdc\x80\xbd\x4d\x6b\x16\x25\x08\x50\x01\x1f\x07\x39\x11\x57\x4c\x26\x2a\x97\x53\x7f\xb6\xb6\x43\xb7\xf1\xcb\xb8\x23\x93\x05\xc1\x5d\x1d\xb2\x68\x91\x8b\x42\xc9\xed\x42\xe5\x92\x52\x5a\xa5\xf7\xdd\x77\x0d\x86\xa9\x1b\x5d\x5c\xf5\x48\x52\xea\x51\xa0\x10\x6d\x45\xca\x96\x5c\xb0\xd4\xeb\xea\x9a\x8b\x34\xbf\x9e\x7a\x79\xf1\x32\x34\x89\x7a\x53\xdf\x5b\x3f\xcd\x17\x00\xc0\x56\x0b\x2e\x59\xb7\xf1\x15\xa5\xd4\xfd\x8e\x44\x9e\xb2\xf7\xb7\x1b\x36\x11\xe1\xe9\x23\x0f\x87\x36\x66\xdf\xba\xb5\x16\x74\x34\x11\x5f\x2b\x87\x1a\xc2\xa1\x86\xa4\x6a\x26\xe6\x13\x19\xb1\x0a\xa7\xa9\xff\x63\xbf\xef\x8f\x89\xd4\x60\x5b\xf2\x8b\xad\xc9\xef\x8f\x08\xba\x4a\xb2\x2d\x43\x5c\xf4\x64\x10\x84\x32\xba\x96\x5c\xd9\x3c\x4c\x2c\x42\x99\xd1\x3b\x34\x0a\x19\x91\x9a\x36\x10\x89\xcb\xb2\x1a\xe5\xca\xd1\x2e\xb7\xb8\x41\xb0\x09\x59\xbd\x08\x44\x61\x22\x20\x8d\x08\x4c\x58\x5d\x71\x6d\xa6\xe7\x15\x75\x1b\x65\x21\x59\xa2\x58\xe8\x21\x34\x26\x5e\xb1\x06\x06\x30\xc2\xa2\xdf\x7e\x83\xbc\xdf\x7e\xa3\xaa\x6e\xfe\x4a\xe3\x14\x5f\x86\x57\x39\x4f\x7b\x23\xaa\xc9\x9e\x5a\xc9\xfc\xba\x27\xd8\x75\xef\x1d\x5b\x32\xc9\xc4\x82\xbd\x90\x32\x97\x21\xd2\x88\xdf\x5b\x25\x85\xf8\x0f\xd5\x3b\x67\x4c\xf4\xb8\xe0\x8a\x27\x19\x2f\x58\xda\x1b\xf6\x8a\xed\x86\xc9\x10\x37\x4a\xe8\x3d\xc5\x52\x54\x91\x3a\x06\xbb\xe5\x96\xee\x4a\x7f\x7c\xf5\x6a\x5e\xd8\xf1\x58\x1a\xbc\xdf\x3b\x3c\xea\x7b\x27\xa1\x6b\x6b\xd2\x75\x24\xba\xcc\x68\x9d\x6c\xc2\x0b\x20\xaa\x0d\x58\xf4\x29\xbd\xad\x5b\x30\x54\x65\x57\x56\xb4\x42\x98\xb3\x50\x23\x0b\xbd\x08\x1b\x64\xda\x03\xdb\xb9\x5b\xce\x1a\x6e\x9a\x68\x50\xb4\x15\x22\x59\xc3\x84\xed\xb9\x14\x7d\x2c\x0a\xc2\xe9\x45\xa8\x30\xc9\xa9\x8c\x36\xd9\xf6\x82\x8b\x22\xca\xc5\x73\x58\xbf\x77\xdb\x8c\x85\x8c\x70\x22\xaa\x7e\xf2\xfd\x3e\x64\x9a\xf5\xd0\x40\x30\xe4\xe5\xa6\x75\x4a\xd5\xd8\x8e\x10\x31\xb4\xde\x31\x00\x41\x80\xfa\x7c\xbd\xc9\xa5\x4a\x04\x80\x4d\x93\x32\x73\x00\x68\x96\x40\x1f\xaf\x44\x0c\x6c\xaa\xe9\x50\x94\xf5\x02\x5c\x57\xc7\x60\x35\x35\x05\x87\x75\x7f\x8c\x49\xff\x28\xb4\x27\x6e\x34\x1d\x6b\x32\x1b\xcd\x0d\xa7\x62\x40\xf2\x87\x06\x8b\x88\x66\x0a\xc4\x80\xde\x00\x49\x26\x9a\x47\x30\x8c\x8b\xd0\x49\x04\xf2\xab\x05\xda\xef\x0f\x9a\x73\x3d\x0d\xc7\xf3\xfd\x1e\x5a\xec\x79\x45\x30\x11\xf5\xa2\x9e\x1d\x85\xad\x32\x43\xd2\x95\x7b\xa8\x82\xda\xc0\xdb\xa6\x6f\x0e\x10\x02\x26\x40\x77\xa5\xc3\x04\x03\x9a\xbe\x72\x20\x93\x90\xce\xa9\x80\xf3\x58\x28\x92\xd3\xaa\x2e\x9f\x8e\x62\x4e\x12\xaa\xa2\x65\x92\x65\xe7\xc9\xe2\xb2\x00\x3c\x0e\x82\x7c\x30\x20\xc9\x21\x2b\x98\xd4\x00\x2e\xe8\x68\x52\x7c\x9d\x38\x02\x58\x38\x02\xb8\xa5\xc9\xac\xa8\xcf\xc4\x85\xc6\xf3\xad\xc9\xca\xe8\x76\xb6\x98\x4f\x34\xba\xf5\x69\xa6\xe9\x9c\xfe\x7f\x40\xd1\x07\x81\x30\xd1\x1f\x68\x70\x16\x2e\x06\x28\xee\xa1\xc1\x75\x98\xe1\x01\x9a\x20\x92\x63\x5c\x96\x15\x0f\x09\x87\xa0\x6e\x33\x31\x6d\xa6\x34\x99\x2d\x5d\x9b\xe9\xb1\x36\x97\xae\xcd\xb4\x6e\xd3\xb5\xb6\xd1\xad\x29\xd3\xda\x8a\xaa\xd9\xc6\xb5\xa6\xb1\xa6\x82\x8b\x5e\xe5\xcd\xb1\xe6\x37\xae\xf9\x55\xdd\xbc\xe5\x37\xe4\x7e\x2f\xa2\x24\xcb\xf2\xeb\x17\xeb\x8d\xba\xc5\x41\xc0\xa6\xa6\x11\x68\x63\x20\x07\xa6\xa9\xb3\x90\x0d\x50\x6f\x87\x06\x92\x0c\x87\x39\x1e\x9c\x85\xa8\x84\x86\x62\x09\x3b\xf3\x23\x3d\x09\x67\xb3\x0f\xf3\xe8\x7f\x7d\xfe\xd9\x37\x5f\x0f\xfe\x1f\xba\xff\x67\x1c\x62\x82\xfe\xe3\xff\xfe\x50\xcc\xf1\xc9\x05\xb9\xa4\xde\x01\x57\x53\xb1\xe7\x67\x67\x41\xf0\xfc\xec\x2c\x62\xc5\x22\xd9\x30\xf2\x9c\x76\x9c\xf2\x97\xd3\xcb\x90\xe1\x98\x45\x92\x6d\xb2\x64\xc1\xc2\x8f\x04\x7d\xf8\xf0\xd9\x18\xe1\x92\xbc\x6b\x70\xe2\x0e\x0f\x99\xc3\x43\x90\x70\xe0\xb8\x40\x85\xba\xcd\x18\x22\x90\x72\xc9\x6e\x2d\x9a\x99\xdf\xbc\x78\x2b\xf3\x05\x2b\x0a\x96\xd2\xfe\xd8\xa4\x41\xf9\x46\x29\xc9\x44\xca\x24\x93\x1d\x89\x70\x18\xfa\xc9\xf9\x46\x0f\xa4\xb0\x69\x15\x19\x2c\x56\x8c\x29\xcd\xa1\x47\xef\x6c\x63\x93\x6a\x40\xac\x59\x53\xf8\xc3\x50\x44\x4e\x9b\x63\x90\xd5\x67\xac\x05\x87\x66\xa6\x3e\xb6\x78\xcd\xb3\xb5\xb8\x5a\xda\x96\x24\x1a\x64\xce\xed\xcc\xba\xf7\x19\x9b\xdb\x09\xf4\xfb\x22\x08\x44\xb4\xcc\xe5\x02\x8e\x9d\xbe\x0c\x82\x46\xb9\x76\x03\x76\x77\xab\x89\x08\x82\xfe\x58\xd3\x03\x3d\x02\x0d\x69\x2d\x02\x50\x7f\xc2\xfa\x88\xf0\xcf\x85\x55\x22\x2e\xd8\xaf\x9a\xef\x08\x15\x31\xb0\xc1\x86\x8a\xe4\xd4\x9c\x8b\x5c\x73\x2b\x9a\x4e\x90\x84\x32\xd8\x26\xd5\x50\xf4\xe0\xf2\x20\xe8\x27\x41\xd0\x97\x07\x03\x2a\x68\x1e\x04\x89\x2e\x53\x4c\x53\x96\x31\xc5\x9a\xb3\x8d\x9b\x73\xe2\xed\x95\xb6\x93\x76\xe0\x76\xed\x17\xcd\x25\x8a\x24\x5b\xe7\x57\x35\x47\xd4\x6a\x84\x30\x1c\x37\xcb\x17\x4c\x1d\x2f\x4c\x38\x26\xd5\x04\xb6\x4d\xc8\x01\x56\x39\x82\xbc\x0d\x82\x6d\x94\x28\x95\x2c\x56\x2c\x85\x2a\x25\x61\x65\x88\xc9\xdb\xc6\xde\xaa\xf6\x8a\x0a\xb5\xa0\x2e\x0d\x85\xe1\x93\x90\x53\x2b\xe6\x00\x83\x6f\xf2\xf6\x7b\x00\x7f\x54\xb0\x8c\x69\xee\xe1\x3d\xbb\x51\x0e\xdd\x79\xc4\xd3\xfa\xfb\x60\x3b\xd8\x15\x93\x55\x5d\x92\xe8\x1f\x8b\x7c\xc3\x52\x52\xe8\x4f\xd8\x12\x5b\x2a\xa3\x0b\x26\xb4\x1c\xc0\x5e\xa6\x15\x0f\x30\xe5\xcd\x3e\xf3\xb8\x3f\xee\x53\x9a\x68\xf1\x4b\xf7\xbb\x0d\xaf\xc2\xab\x90\x63\x4c\x0a\x4c\x5a\x65\x51\x84\x06\xcf\xa1\x18\xc6\x84\x97\x6b\x8d\x46\xd8\x9e\xd0\x1e\xbb\x58\x1d\x64\x46\xae\x79\x9f\x37\xc0\x64\x38\xa3\xc6\x3a\x69\xbc\x51\x4e\xd2\x32\x04\x26\xff\xe9\xec\xcd\xeb\x10\xb7\x45\x2d\xd5\x58\x52\x46\x24\x69\xc8\x52\x66\x6d\x84\xad\xee\x13\x32\x50\x27\xf8\xfc\x98\x6a\xa2\x77\xa3\x77\x83\xa7\x6a\x3e\x39\x64\x12\xc5\x54\x67\x50\x11\x37\xcf\x49\x61\x64\x3b\x35\xa7\xd7\xa1\xc0\x9e\x6c\x07\x83\x39\x03\x55\xcd\x31\x28\x34\x70\x8e\x08\xda\xef\xab\x20\x50\x55\x72\xc6\xc5\xe5\x34\x0b\x77\x25\x61\x64\x57\x1f\x2c\x71\x7f\x54\xe2\xb8\x82\xf5\x1b\x83\xdf\xfe\x72\x79\xd4\x8e\x08\x5c\x92\x55\xa8\xc8\x6c\x77\xc9\x6e\x63\xe4\x8a\x21\x52\x30\xd5\x10\x03\x35\x37\xa0\x67\xdb\x6e\xcc\x12\xfe\x06\x3a\x38\x2e\xb7\xb1\x96\x44\xd0\xd6\x4e\xd3\xab\x2b\x82\x40\x99\xc5\x3b\xb3\x2d\x84\x82\x30\xbd\x0b\xdc\x11\x04\xfc\xaa\xa1\xd0\xb8\x2c\xc9\x85\x3f\xae\x5a\xba\x69\x8f\xa1\x2c\xe7\x98\xa8\x32\x7c\x87\xc9\x0b\xba\xf3\x79\xdf\x03\xe5\x8e\x69\x02\x7d\xab\x45\x45\xcd\x3a\xea\x73\x7a\x93\x48\x26\x54\x10\xa0\x4b\x76\xbb\x94\xc9\x9a\x15\xc8\x50\x54\x48\x87\x63\x6e\xaa\x29\x63\xac\xc9\xff\x5b\xdb\x52\x59\x92\xf7\x74\x67\x98\xab\x78\x4c\x16\x2b\x9e\xa5\x92\x09\xbd\x20\xe4\x35\x3d\xf9\x36\x9c\x7d\xb8\x1e\xce\x07\xf8\x84\x3c\x7b\xf0\x51\xba\xc8\x45\xca\x75\x6e\x92\xd9\x03\x35\x51\x8d\xd3\xaf\x7d\xbe\xfe\xbe\x65\xb2\x99\x22\xb7\x19\x2b\xee\x38\x31\x8f\x9f\xcb\x47\x0e\x5c\xef\x04\x35\xbd\x89\x48\xcb\x20\xf6\xe0\xd2\x72\x90\x5a\xac\xc2\xd7\xf5\x1e\xe5\xd5\x96\x4a\x14\x95\x53\x39\x1b\xcf\x63\xb4\x15\x97\x22\xbf\x16\xa8\xf3\x28\x36\x63\xd6\xc0\x55\x2c\x04\x1c\x17\x64\x67\x80\x0f\x94\xbc\xc4\x98\x28\x5c\x17\x8d\x92\x34\x0d\x39\x51\x33\x3e\xc7\x13\x2f\xd9\x9e\x80\xa1\x11\x6a\x14\x65\x87\xc4\x08\xf4\x5a\x1a\x31\xba\xf8\x21\xaf\xa9\x0b\xa6\x42\x86\xcb\x5a\x9d\x75\x4f\x79\xa7\xf4\x32\x75\x92\x34\x6d\xf5\x61\xb9\x77\xa3\x29\x68\x4e\xc4\xe4\xb9\x01\xca\x69\x78\xc7\xe1\x6d\x57\x0d\x76\x89\xc4\x44\xe2\x58\xe3\xa5\xee\xb2\x93\xbc\x34\x24\x6f\x90\x20\xdf\x63\x62\x65\x5f\x2b\x17\xe8\x54\xfb\x49\xdf\xdb\x8f\xba\x8c\xc3\x6a\x28\xe5\x7e\xd0\xf7\xd5\x27\x26\xc0\x28\xd4\x79\x0d\x26\x07\xf0\x45\xb3\xb7\x25\x6a\xd0\x08\x98\xba\x1b\x70\xc8\x6a\x01\x6b\xda\xac\xa6\x19\x65\xa5\x19\xe5\x12\xc5\x08\xd9\xd3\xf6\x15\x3d\xf9\x76\xcd\x52\x9e\xec\xbf\x2d\xb6\x1b\x2d\x69\x15\x1f\x8a\xc1\x09\x79\xf9\xa0\x8d\xdf\x7b\x15\x29\x56\xe8\xb5\x9d\x6a\x7c\x7b\x66\x73\x0d\x18\x4b\xf2\xe9\xd8\x8e\xfe\x99\x9e\x7c\x5b\x51\x87\x0f\xc5\xa0\xde\xdd\xdf\x3d\x78\x77\xd7\xd4\xa5\xda\xdb\xe8\xdb\x76\x62\x7b\x87\xeb\xbd\xd6\xdc\xba\xe9\xbf\x6b\xbf\xb7\xb6\xf4\xcf\x78\x22\x83\x40\x6f\xdf\x69\x3d\x12\xd8\xcd\xf5\x4f\x24\x72\xfd\xd7\x1b\x7b\x35\xdf\x01\x1a\xa2\x41\x55\xb2\xb5\xef\x2b\xe1\xd4\xf2\x2b\x79\xc5\xc2\x27\x54\xf8\xfc\x4a\x25\x76\x56\x44\x85\xeb\x19\x80\x10\x5b\x35\x1e\x3f\x0f\x13\xc3\x55\xe5\x18\xff\x17\x48\x4a\x41\xd4\xac\x98\x93\xee\xe2\xdd\x84\xa6\x43\x12\x78\xe0\x4e\xfc\x74\xd7\x4e\xfc\xf4\xc0\x9d\xf8\xe9\x81\x3b\x31\x51\x03\xd4\xb3\xcb\xc1\xd3\x3f\xb2\x25\x41\x39\x83\xaa\x9d\x88\x30\x39\xd2\x20\x14\x28\xdd\x2e\xfd\xbe\xb5\x5f\x4e\xc8\xaf\xf4\xe4\xc3\x67\xd5\xb6\xb9\x20\xbf\xb7\x74\x4e\xf6\x60\x3e\xb4\x67\x4d\x6b\xf9\xf4\x57\x12\x7a\x95\xea\x4d\x0d\x5a\x35\x35\x55\x33\x31\x8f\x59\x89\x71\xcc\x4a\xf2\xcb\x11\xea\xab\xd9\x33\xc2\xe9\xef\xa1\xd4\x54\x97\xf7\x29\x95\x8e\x69\xe3\xb8\x24\x3f\x3c\x8c\x7f\x38\x1c\x66\x10\x7c\xdf\x20\x2d\xdf\x35\x48\x0b\xa9\x68\xf7\x99\xe6\xc4\x8e\x37\xab\x65\x69\xdd\x2a\xec\xa1\x20\x10\xd3\x10\x25\x82\x1b\x13\xe5\x10\xf6\x1a\x07\xf5\xfc\x2f\x21\x23\xed\x1c\x22\xa2\x0a\xe6\xd8\xcb\xed\xac\xd2\x2a\xcd\x00\x68\x0d\xf1\xf0\x60\x90\x4e\xd8\x6e\x8a\x47\x20\xae\xd6\x9a\xba\xe2\x9a\x6b\xea\xa1\xf0\x6e\x91\x14\xcc\xeb\x2f\x6e\xfe\x36\x43\x8e\x6d\xbd\xdf\x9d\x5e\xdb\x8e\x67\x92\xb2\x65\xb2\xcd\x54\x5c\xb1\xd0\x65\x49\xfe\x7a\x4c\xd0\xf2\x4c\x38\xc4\x33\xd2\x58\x25\x15\x31\x72\xbb\x63\xd1\x09\xa7\xa3\x09\xff\x5a\x4c\xf8\x60\x80\xe5\x8c\xcf\x3d\xab\x0e\x77\x4a\xcb\x50\x59\x69\xcd\x1a\x65\x18\x99\x69\x5c\x9f\x47\x8b\x5c\x2c\x12\x15\x4a\x5c\xc9\x6e\x1d\x7c\x93\x23\x0b\x46\x34\x22\xea\x3e\xea\xf0\x6f\x12\x03\x2e\xd9\x6d\x9b\xfb\x37\x4c\xf2\x67\x0f\x3b\x2b\x1f\xc8\x19\xb3\xeb\xde\x5f\x5b\xe7\xe8\x6f\x0f\x3e\x14\x97\xb9\x50\xc3\x65\xb2\x60\xfe\xa1\xd8\x4e\x6c\x1f\x8a\x87\x2a\xa4\xff\x3e\x26\xd7\xe9\x85\x9a\x07\xd6\x1f\x21\xf4\x4d\x99\xd0\x13\x2e\x7d\x4b\x23\x42\xc4\xda\x92\xaa\x7c\xdf\xa8\xa4\x06\xd4\x2e\x62\xe2\x4b\x70\x33\x31\xc7\x8d\x9f\x83\xf1\x5c\x53\x68\xab\x99\xac\x4d\x09\x4d\x44\x68\xb4\x41\x34\x8f\x0a\x44\xfa\x47\x7a\x52\x83\xfa\x84\xfc\xed\x61\x58\xf1\x63\x83\xcc\xfd\xd6\x5a\xf9\x3f\x3f\x78\xe5\xaf\x38\xbb\xd6\xec\x9b\xbf\xf0\xad\xb4\xff\x41\xeb\x7e\xe7\xce\xab\x20\xfe\xd3\x03\xa5\xd3\x0a\x0e\xd4\x58\xa9\xbe\x1d\xae\x8b\x61\x23\x11\x80\xff\xe7\x16\xf0\xff\xf2\x70\xa5\x2d\x5f\x6f\x8e\x6a\x6d\xc1\x28\xf9\x6f\x02\xb3\x69\xfb\xbf\x79\x7b\x41\xa3\x77\x6c\x2f\xc8\x6f\x6d\x2f\x37\xb0\x9a\x8f\x81\x52\x33\x31\x07\x5d\xbe\x9f\x72\xcf\x26\x3b\xd2\x92\x6e\xc6\x2e\xfb\xdf\xe9\x0e\x7d\xbb\x58\x25\xb2\x60\x0a\xc5\xfd\x11\x41\xdf\x1a\x23\x91\xfd\xa1\x8f\xc2\x62\xa3\xe9\x1d\x08\x1b\xff\xa0\xb3\x17\xe4\x25\xf9\x81\x7c\x46\xfe\x46\x7e\x22\x0f\xda\x95\xa0\xa7\xfd\x3b\x60\xc5\x5f\x9a\x58\x31\x27\xff\x49\x77\x96\x63\x85\xe6\x19\xa3\x3b\xd0\x34\xeb\xce\xfd\x0c\xc5\x8e\xe1\x8f\xc5\x9d\x75\xb2\xa1\xbb\xd2\x2e\x75\x72\x5d\x7d\x83\xf4\x4b\x67\x73\xf3\x6b\x91\x6f\x85\x62\x92\xde\x81\x3b\x8b\x2c\x29\x8a\x96\xdc\x52\x1d\x31\x9d\x98\xc7\x9a\x15\x99\xfb\x6a\xd7\x65\xf5\xf7\x5d\x5a\x80\x24\x4d\xef\x92\xce\x6d\xaf\x84\x53\x69\xcf\x3a\xb0\xae\x3a\x11\x45\x82\xd9\xb5\xa0\xb2\xb2\x36\xb4\xf4\xac\x64\x51\xeb\x62\x97\x34\x0b\x77\x76\xb4\xb1\x3f\x09\x62\x05\x0c\x4e\xa0\xdd\x38\x27\x1f\x8b\x22\x4e\x88\x6b\x33\x2e\x48\xdd\x62\xbc\x25\xa6\xbd\x78\x41\x40\xe6\x61\xa4\x9a\x68\xdc\x84\x01\x71\xaa\xb1\xd8\x00\xb2\x24\x02\x93\x94\xb2\x49\xad\xcb\x97\xc9\x75\x10\x84\x29\xd5\x52\x5a\x6a\x91\xd6\x2e\xdb\x60\x80\xab\x05\x9e\xa5\x73\xaa\x48\x5a\x55\xb3\x03\x0f\x82\x70\x59\xe9\xdf\xac\x3a\xd8\xcf\x9f\xa5\x73\x6b\x51\xd8\xd0\xf3\x30\x25\x8a\x2c\xc1\x50\xde\xdf\x38\x36\x51\x63\xa6\x15\xa8\xd8\x05\x2f\x14\x93\xe1\xc6\xd4\x58\xd5\x66\xca\xa5\xc1\xab\x69\x8d\x62\x76\x0b\xc7\x36\x67\xe2\x6f\x40\x53\xa0\xd8\x64\x7c\xc1\xc2\x15\x19\x91\x0d\x26\x9b\x92\x80\xc2\xe7\xa8\xf2\x66\x9d\x6c\x66\x6c\xae\x4b\x19\x9b\x42\xa3\x20\x94\xd8\x8a\x6a\x84\x0c\x13\xdf\xa8\xa1\xe1\x03\xd8\x36\x27\x87\x03\xf0\x52\x6a\xd5\x10\x19\x3f\x48\xa3\xd4\xae\x56\x1a\x06\x52\x6f\xd3\x43\x5d\xf6\x31\x65\xd1\xc4\x1f\x13\x0c\x69\x84\xa3\x65\x2e\x5f\x24\x8b\x55\xc8\x9a\xaa\x24\x62\xfa\x70\x13\x3d\x04\x02\x80\x09\xa6\x4a\x19\xd1\x58\x54\xa8\x44\x2c\xb4\xd8\xf3\xd6\xaa\xab\x4c\x09\x87\x13\x50\x2c\xe2\xa9\xb3\x9f\x39\xbc\x70\x6d\x80\xe9\x20\x6e\x34\xf4\x9d\xb5\xfd\x54\x58\xec\xea\x56\x09\x33\x06\xc2\xbe\xad\xae\x07\x5c\xaf\x4d\x63\xc8\xfe\x22\xd5\x23\x3f\x18\xf7\x61\xb1\x6a\xf8\x8d\x75\x6e\x0e\xfe\x70\xd8\x7e\xd9\x83\xc1\xc2\x30\x37\x69\xd2\x24\xad\x95\x57\x63\xa7\x0b\x67\xd8\x16\x60\xbe\xa6\xa3\xa9\xd9\x15\x71\x2d\xaa\x8c\xe6\x78\xea\x3b\x3e\xde\x5d\x96\xa8\x8e\x92\xe3\xc3\x92\xe3\x79\x87\x00\xf5\x35\x3d\x3d\x2c\x79\x3a\xc7\x71\xd8\xd5\x6a\x77\xff\x5d\xad\x76\xf7\xcf\xc0\x0a\xa9\x25\x52\xb3\x01\x01\x7a\x6f\x04\xf3\x10\x6d\x6e\x54\xa6\x0d\xef\x00\xeb\x4a\xd1\xa6\x15\xe0\x5a\xd1\xd5\x10\x14\x02\x8f\x45\x23\x18\xd5\xf9\xf5\x4a\x39\x03\x9e\xa3\x48\xc6\x80\xff\x9f\xd8\x59\x5f\xfd\xa3\x22\xa7\xdc\xdf\x7f\x24\xa1\xbc\x16\x90\x95\xd1\xb0\xf8\x98\xc3\xb0\x4d\xb4\x1d\x83\x6b\x20\x4c\x69\x67\x4c\xa9\x8a\x6c\xa9\x6f\x75\x8d\x72\xf1\x8b\x2b\xa9\x48\x42\x24\x26\xd2\xd1\x85\x20\xd8\x06\xc1\xb6\x4f\x69\x65\xc7\x6a\x38\x62\xe4\x51\x53\xfd\x10\x3a\xc6\xb4\x20\x09\x26\x0d\xdb\x57\xe6\x9a\x98\x2d\xe6\x93\xac\x4f\xc1\x77\x23\x08\x40\xe7\xb5\x09\x17\x24\x23\x8c\xd5\x4e\x14\x4b\xcf\xcd\x23\xad\x6a\x2e\xe7\x64\x43\xb7\xce\x3f\x83\xd2\x34\x08\x52\xe3\x47\x61\x9b\x59\x82\x5a\x0b\x5a\xd2\x72\xfd\x11\xed\x75\x8b\x9b\xeb\x10\x8f\x2b\xc3\xb9\x2f\x1e\x5b\xf9\xfe\x10\x13\xb8\xf3\x55\xc9\xa9\x87\x01\x7c\xde\xd0\x7b\x85\xf9\x7e\x0f\x2e\x9a\xca\x63\xf9\x88\x1a\xd0\xbc\x36\x2f\x5a\xae\x4e\x1c\x65\x97\x1a\x7e\x3e\xd5\xe9\xd9\xc5\x08\xa5\x6c\x93\xe5\xb7\xac\xa9\xd3\x75\x46\xe6\x7b\x14\xbd\x9d\x6e\x13\x0f\xe7\xac\x7e\xdf\xb2\x16\x97\x5f\xf5\xeb\xd8\xf9\x6a\x74\x2e\xc1\xb5\xee\x18\xbf\xba\x65\x97\xe2\x26\x09\x3a\x0a\x45\x76\x86\xb5\x01\xe5\xac\xa7\x4f\x25\x9d\xfc\xd0\x31\x86\xa6\xc4\x44\x55\x9c\x56\xa7\x4f\x46\x9d\x0d\x99\x9d\x5a\x60\x7f\x78\x15\x75\xa9\x95\xbf\x82\x18\x6f\xbc\x4e\x35\xef\x5d\x9c\x24\x00\x8d\x1e\xb1\x52\x3a\x90\xee\xf7\xcd\x51\xb7\x3c\x1d\x6c\xb9\x10\xb7\x17\xa2\x85\x26\x46\xe7\x64\x7f\x86\x76\x9a\x7a\x03\xa5\xec\x21\xa3\x98\xde\x3d\x08\xd3\xc8\xe1\x20\xcc\xe2\x1b\xaf\x8a\x07\x9a\xb7\x00\xb9\x26\x8d\x76\x82\xa0\x5f\x2d\x9e\xc1\xbd\xd9\xbc\x41\x49\x8f\x99\xc4\xf8\x83\x4d\x62\xbc\x35\xf4\x69\x03\x78\xd3\x50\x4e\xa5\xb9\x7a\xc1\xf5\xd9\x65\x68\x40\xc1\xa4\x6a\x54\x86\xb1\x35\x06\x5a\xf1\x4d\xad\x2a\x06\x2c\x87\xbb\x09\x63\xc2\x71\xcc\x6d\x17\xfe\x26\xe2\xb8\xb6\xd8\xd5\xed\x1c\x32\x5c\xc7\x56\xc8\x1b\x6e\xc3\xd2\x58\xb4\x94\xe9\xc6\x8b\x61\xd6\xf2\x51\xb7\x24\xde\x82\xdb\x56\x0d\x25\x01\xd7\x47\x85\x27\x5c\x93\x52\x0b\x9f\xb2\x72\xde\x24\x7f\xdc\x66\x6a\x58\xa2\x83\x2a\x96\x98\x1f\x5e\x3e\x99\xb2\xf8\xa0\x1d\xbb\xfa\xa0\xff\x0c\xbd\x5c\xc3\xa8\x87\x0a\x93\x7e\xd8\xc2\x2f\x75\x87\x2b\x91\xdd\x39\x1e\xae\xbb\x21\x86\x7e\x35\xfc\x2f\xdb\x7c\xcd\x32\x1f\xdb\x81\xc7\xb7\x9c\xd9\xc9\x6d\x7a\x3b\xaa\x76\xf6\x11\xee\xd1\xe9\xa9\x99\xb7\x77\xb0\x2d\x5c\xe9\xac\xeb\x5b\x04\xad\xe6\x1a\x5c\x4e\xcb\x75\xbc\x9e\x60\xcd\x31\x99\x22\x55\x23\x77\x69\xc0\xbc\xfa\xde\xb9\x6a\x8f\x4c\x79\xec\xc8\xb4\x78\x6f\xb7\x35\xdd\x71\x2d\x8a\x8a\x24\x8b\x67\x73\xc2\x6e\xaa\x6f\xa7\x7b\x00\xb6\xbf\xf2\x7c\xb8\x8b\x3c\xfb\xba\x93\x83\x29\x77\xf0\x8e\xae\xe9\x46\x45\x9f\x97\xf4\xb7\x50\x67\xe1\x99\x9c\x3b\x02\xc6\x97\x21\xc7\xd5\x1d\x16\x4f\xf6\xd5\x40\x6c\x90\xae\xb6\x92\xab\xcf\x7c\xfd\x9a\xcf\x0b\xb1\x03\x13\x41\xa5\xe6\xf2\x86\xe3\x35\xdd\xd0\x7b\x1d\x2f\x36\x13\x73\x73\x4d\x88\x19\x2e\xce\x62\x6a\x8b\x71\x64\x4e\xa3\x49\x14\x26\xac\xa9\x03\x1c\x95\x8d\x69\x41\x85\x3f\x08\x72\xbf\x6a\x83\x81\x77\xea\xd9\x3b\xca\x6b\xb8\xdb\x72\x15\x4f\x5f\x97\xd0\xb0\x3a\xc2\x5d\x8e\x26\xea\xe8\x40\x74\x35\xff\x1e\xd0\x5d\xe5\x66\x6a\x6e\x69\x81\xe3\xd4\x5b\xb3\xd7\xb2\x44\xe5\x25\x53\x33\xa9\x5e\x73\xa6\x9a\xcf\xb0\x76\x97\x98\xf1\x79\xd5\xa4\xe9\xd0\xb3\xdb\xdd\x01\x73\x46\xba\xfb\xf5\x6a\xfb\x9d\xcb\x43\x34\xaf\x0b\xea\x31\xc8\xa6\xef\x0a\x10\x98\x82\xb5\x0f\xa3\xa6\xa7\xff\x0e\x8e\xca\x18\xb9\x6d\x8d\xca\xca\x79\xd0\x23\x01\x33\x65\x8e\xd4\xf9\x64\x68\xdc\x5b\x6b\x6a\x1b\x04\xa1\x3d\xa6\x18\x6e\xd1\x83\x59\x65\xa0\xf3\xdb\x8a\x5c\x57\xa4\x91\xea\x68\x0c\x8e\x24\x4b\xb7\x0b\x16\x86\x47\x6e\x41\x18\x4f\x71\x73\x75\x23\x08\xf4\x4e\x31\xdd\x2b\xff\xfa\x06\x2b\x71\x4b\x53\x3b\x9b\x93\xc6\x0e\x6b\x24\x18\x33\x70\x23\x05\x38\x65\x48\xf1\x8d\xb0\x90\x60\x56\x5d\x13\x40\xec\x48\x29\x67\x9a\xb1\x0d\xef\x24\xa7\x1e\x5c\x1e\xae\x0c\x6d\xf9\x66\x9a\x16\x88\xf0\x08\x8f\x51\xbe\xf1\x65\x08\x4b\xa3\xbc\xa5\xc1\x7c\x19\xc2\x4a\x5b\x2c\xda\xef\xc5\x37\x9e\xb0\x85\x95\x5b\xb7\x4e\xd9\xdd\xdf\xf1\x5a\x68\x9e\xc9\x79\xb3\xcf\x6f\x2a\xaf\x06\xc0\x29\xe5\xb4\x6d\x92\x8c\x2a\x1d\x56\xe1\xef\xf3\x0e\x38\x74\xeb\xfa\x3a\xa6\xec\x4d\x6b\xd2\xcc\x70\x3a\x3e\xab\xcf\xbb\x47\x78\xad\xfd\x3e\xa6\xbb\x32\x66\x5a\x92\xad\xdd\x88\xe5\xff\x19\xf7\x43\x15\x99\x21\x37\x26\x34\xc7\x70\xd5\x96\xe4\x74\x34\xc9\x5b\xa4\xc2\xf6\x90\xbb\x83\x30\x69\xc2\x6c\x96\xbb\x5b\x14\x22\x08\x92\x6a\x9a\x7d\x4a\x85\xee\xda\x5e\xc4\x05\x91\x9a\x0f\x68\x52\x73\x08\x12\x7b\x97\x3d\xc9\x2a\x64\xce\x47\x15\x86\x8f\x8e\x38\x82\x02\xaa\x75\x8c\x6f\x3a\x8a\x9b\xc3\xea\x2a\x34\x1c\xb7\xb0\x0b\xbc\x48\xf5\xde\xc2\x24\x67\xcd\x6b\x15\x8d\x4b\x89\x41\x60\xfe\x46\xaf\x12\xb5\xa2\x54\xff\x3b\x35\x29\x71\x57\xa5\x82\x65\xcb\x20\xd0\xff\xfa\x15\xf4\xef\xf8\x07\x37\x23\xe4\x31\x4f\x08\x87\x98\x24\x8c\xa2\xd3\xe5\x38\x59\x2c\x9e\x2e\x1e\x25\x4f\x47\x4f\xcf\x47\x5f\x9e\xb2\x27\x8c\x2d\x9f\xb0\x27\x8f\x1f\x8f\x1f\x2f\x97\xe7\xc8\xaa\x57\x72\x36\x4b\xd8\x3c\x08\x42\xf3\x41\x47\x86\x9e\x16\xcc\xe6\x0c\x06\x64\xdb\xc2\xf6\xa6\x2b\x92\xbb\x45\xa4\x8f\x42\x3b\x90\xaa\x34\x1c\x5a\x6a\x40\xc7\x56\x52\x03\xbc\x40\xd5\x2d\x25\x73\x6d\xd1\x81\x11\x04\xf9\xd7\xc9\x9a\xbd\x95\x6c\xc9\x6f\xf4\x90\xe8\xd1\x5c\xe3\xdb\xd4\xf7\x0a\x68\xc1\x0e\x94\xc6\x9c\x3a\xb4\x68\xe5\x61\xac\xb9\x8e\x35\x17\x7c\x79\x3b\x45\x68\x10\xe6\xfb\x3d\x5a\x20\x3c\x28\xd8\x80\x0f\x54\x9c\x0f\x84\xb1\xc4\x0d\x91\x4e\x0a\xf9\x54\x7f\xf1\x18\x21\x6c\xfc\xd1\xca\x92\x2c\x3a\x76\xfe\xc1\xb4\x6b\x76\x56\x4b\xee\x94\x81\xac\x5d\x7a\x17\xd9\x32\xab\xe6\x51\xf2\xb6\x32\xc1\x69\x7c\x97\xfc\x7c\xab\x18\x50\xf7\x57\xc9\x66\xda\x91\x06\xf2\x8d\xc2\xb1\x65\xa5\xf4\x4f\xe7\xca\x6e\x6f\x65\xe0\x72\x01\x1e\x78\xb5\x41\x18\x79\x77\x3d\x97\xb5\x3d\x57\xde\x3a\x9f\x9c\xc3\x7b\x71\xe0\x8b\x2e\xe9\x75\x28\x48\x7f\x84\x89\x7f\x73\x4d\x9f\xa7\x33\x51\x6f\x03\xef\x56\xa3\x19\x52\xe3\xc2\x04\x91\x04\xf9\x57\xda\xfa\xa3\xc9\x43\x67\x5a\xe8\x99\x12\x59\xcf\xb5\xd5\xb0\x9b\x28\x77\x13\xed\x8f\x2d\x15\xe8\x8f\xea\x09\xa7\x1e\xa8\x1f\xda\xb3\x11\xef\x7c\x30\xb7\x2f\x8d\x78\x40\xf6\x80\xbb\x61\xbe\x37\x5a\x8f\x35\x5d\xdd\x15\x69\x25\x50\xaa\xe0\x60\x5d\x31\xda\xe0\x1f\xaa\x06\xaa\xfb\xc5\xe0\xd4\x5a\x79\xbd\xa3\x15\x4b\x52\x84\x4b\xec\xdd\x34\x5e\xb3\xfa\x20\xe2\xac\xa2\x56\x46\x7d\x6c\xd6\xea\x9b\x91\x13\xed\x8f\xdd\xd7\xd4\xb2\x00\xeb\xb8\x9d\xac\x09\xbe\x6e\x49\x7a\xe2\xb2\x6c\x1d\xae\xf6\xac\x68\x66\x14\x4c\xea\xcf\xb7\x39\x17\xca\x1e\xf6\x7e\x52\x75\xdd\xb0\x21\xdd\x98\x1b\x21\xc6\xe1\x5f\xb4\xaf\xf3\x38\xbf\xca\x3a\x23\x62\x19\x03\x20\x99\x9c\xd7\x79\xca\x88\xc8\x53\xd6\x51\xa4\xd4\xad\x86\xc7\xe7\x5f\xdf\xc7\x9c\x88\x6f\x34\x34\x86\xc3\x87\x82\xe0\x5f\x9f\x29\xfe\xef\x9e\x65\x24\xd8\x8d\x3a\xe3\xe7\x19\x17\x17\x65\xe9\xdc\x72\x9b\xe3\x81\xa9\x04\xc1\xa1\x27\xa2\xbb\x71\x74\x84\x1d\x59\xb1\x10\x3b\xa1\xd1\x38\x8b\xea\x91\x14\x5d\x37\xda\xbd\x6c\x0b\xbb\x2f\x29\xa5\xb2\xba\x2b\xaf\xe1\xa7\xbf\x8d\xdc\xa0\x24\x5f\x87\x98\xd6\xac\x4b\x1b\x54\xb2\x21\x10\x3b\x00\xf1\x03\x78\xf0\xe6\xf4\x2b\xca\xa0\x47\x75\x75\xb0\xd1\x8c\x19\xf4\xc8\x3e\xfb\x8f\x35\x53\xc9\xcc\x45\x9c\xa0\x68\x51\x6c\x86\x22\x17\x0b\x86\xe6\xff\x51\x73\xee\x53\x20\xc2\xcf\x1c\x11\x09\xd1\x22\x17\x8a\x69\x62\x67\x94\x75\x18\x93\xdb\x63\xda\x4e\x16\x2d\x0c\x77\x5f\x41\xb0\x76\xf4\x15\x9a\xfd\x05\x63\x82\xa0\x12\x4f\x34\xfd\xe2\xcb\x10\xd5\x4a\x3c\x64\x02\xa3\xf8\x6a\xbd\xda\xb0\xa5\x8b\x26\x9b\x0d\x13\x69\x5d\x74\x07\xba\x1d\x9b\xa4\x69\xd8\x51\x02\xda\xab\x07\x36\x13\xf3\x92\x5c\xdc\xe7\xdb\xd1\x3e\x86\x68\xe6\x1c\xa3\xea\x0c\xba\x64\x4e\xe0\xf2\x89\x29\x4d\xeb\xa2\x0e\xf4\x74\x63\xd3\x2c\x4a\x37\xfd\xb8\x40\x1a\xf7\x53\x56\x49\xf1\x12\x80\xc0\xac\x3e\xb3\x3f\x26\x2c\x08\x38\x33\xfa\x60\xec\xd7\x6b\x5c\x38\x82\xa4\x69\xfd\xe9\x36\x74\xbc\x2b\x81\xd3\x86\xab\x02\x44\xc2\x97\x4a\x08\xa7\xca\x8d\x68\xd2\x18\x1e\xf7\x42\x82\x1c\x20\x95\x89\x85\xf0\xc2\x14\x0d\xad\x97\x6e\x8d\x3f\x91\x62\x37\xea\xb9\xc1\x19\xe0\x6e\x8d\x84\xe6\xb7\xaf\x41\xe3\x21\x58\x9a\xa8\x64\xf8\xb1\x28\x10\x41\x08\x22\x33\xdc\x51\x16\x66\x80\x88\xc0\x44\xde\x59\x0e\xda\xd4\x93\x44\x44\xba\xfb\x9c\x57\x2c\xc4\x93\xfc\xce\x6a\x66\x3b\x90\xfc\x0f\x1a\x39\xe0\xb2\xb9\xdf\x6a\xbd\x8b\xdd\xd5\x55\xbd\x1c\x78\xd7\xef\xd2\x4c\xb7\x89\x2b\x91\x74\xad\xf1\x19\xbc\x44\xc6\xc6\x27\xdb\x79\xde\x60\xf7\x61\xeb\x7c\xc7\x96\xb9\x64\xe0\x2f\xac\xc9\x45\xbd\x5b\x44\x10\x1c\x46\x3e\x12\x15\xb5\x72\x64\x51\x80\xa9\xb6\x1e\xae\x86\x4f\xde\x6e\xbb\x41\x83\xb0\xb9\x87\xae\x29\xa7\xdd\x7e\xcf\x35\x61\x0c\x19\x2e\x43\x1f\x06\xe4\x10\x0d\xcd\x42\x30\xfa\x5d\x9e\x67\x2c\x11\x61\x5d\xc2\x87\x52\xa5\xf8\xb5\x92\x66\x7b\x37\x04\x41\x65\x90\xe8\xda\x28\x4d\x9b\x50\xd9\x6d\x0f\xf2\xdc\x45\x0e\x97\x6c\xc2\x82\xc0\xb1\x48\x66\x6e\x7e\xc1\x23\xfa\x6d\xaf\x45\x63\xe8\x06\x69\xa2\xe9\xaa\xdc\xb2\x98\x14\x21\xb3\xaa\xea\xb8\x31\x92\xf6\x06\x1a\xd4\xee\x7f\x21\x36\xf7\x0e\x9a\x26\x93\xb6\xc1\xa3\xcd\x01\x35\x0c\xbf\x95\xe6\xd3\x37\x9f\x58\xf3\xaf\x98\x13\x41\x14\x3e\x6a\x90\x39\xbc\xc8\x6d\x22\x2f\x34\x77\x14\xa0\x3a\x71\x73\xdb\xd5\xca\x36\xe1\xf4\xf4\x8d\xbb\x7d\x7d\x4a\x99\x75\xf0\xf7\x3c\xab\xab\xd4\xfd\x1e\xf6\x40\xc8\xe9\x2d\xb8\x05\xd4\xb0\xd8\xd5\x97\x92\xc6\x25\x26\x0a\x43\x80\xab\x03\x20\x4b\x33\x10\xc2\x31\xe1\xb8\x84\x10\x25\xbe\x65\xc4\xff\x65\x91\x00\x18\x67\xa3\x24\xa5\x5d\x73\xab\x48\x9d\x77\xa1\xd3\x90\x18\x7f\xa5\x60\xfb\xe6\xd8\x1d\x45\x13\xa3\x21\x80\x49\xe4\xa4\x8a\xbb\x55\xdd\x34\x3e\x82\xd0\x23\xe2\x77\x43\x13\x92\xdc\x6f\x54\x3a\x1c\xb2\xf3\x18\xf0\xb4\x38\xa6\xfb\xa1\xee\x5e\x2f\xa2\xdf\x64\x28\xb4\x60\x73\xd4\xf8\x53\xb3\x4f\x87\x1d\x55\xe7\x2c\xe9\x08\x0e\xa4\x61\xaf\x21\x3a\x13\xf3\xca\xf7\xad\x1a\x87\xd1\x45\x55\xf7\x5e\x3b\x6d\x78\xf7\xcd\xe1\x70\x38\xcd\x49\xb5\xf1\x5e\xa3\x33\xf6\x6c\x7a\xc5\x31\x8b\x55\xf7\x1c\xad\xf2\xf1\x9c\xd1\x11\xb9\xb9\x8f\xa5\xe0\x29\x3d\x67\x83\x81\xf5\xa5\x65\xb2\xe0\xb9\xa0\x68\x3c\x8a\x1e\x47\x23\xd4\xd0\xc5\x82\x8d\x5e\xb6\x6e\x89\xed\x78\x1a\xef\x8c\xac\xaf\xd1\x9d\x98\x53\xf8\x47\xcf\x25\x92\xd5\xbe\x92\xe9\xf4\x82\x01\xb7\x46\x6c\x93\xb5\xb5\xa8\x76\xa2\xa4\x5b\x16\x7a\x2d\xd6\x77\x56\x8d\x11\xe0\x1f\x07\x9a\x7e\xa7\x2a\xde\x16\x2c\xfc\xc7\x4c\xcd\x89\x53\x5e\x3b\xdd\x31\x2a\x2d\xc9\x2e\x98\xda\x6e\xf4\x89\x70\xc7\x29\x0a\x65\xba\x6c\x66\x87\xfa\x18\xc2\xa2\xf6\x74\xdd\x6a\x57\xea\x94\x56\x3e\x3d\xac\x82\x1b\x5e\x78\x95\xa8\x93\x5a\xef\x8c\x66\x22\x31\x6e\x79\x24\x3c\x6c\x67\xbf\x87\x3c\xd7\x90\x07\xd0\x3b\x47\xd4\xee\x16\x3b\x95\x4f\x5b\x96\x39\x18\x61\x53\x18\x6b\x17\xc7\x04\xb9\x75\xb7\x57\x9b\x9a\xd5\x5d\x26\x65\xd5\x27\xc4\xae\x32\x8b\x69\x0f\xde\x6d\xc1\xfc\x80\x6b\x55\x76\x6d\xe5\x34\xd3\xf1\x28\xe3\xdd\x66\x8d\xda\x8c\x61\x15\xe4\x8e\x19\xf1\xc2\x06\xc0\xd1\x01\x21\x78\xec\xf9\x33\x1d\xc5\xee\x73\x30\xae\xa2\x3a\xb1\xeb\x1e\x18\x5d\x9d\x13\xcd\xc7\xc2\xb8\xc4\xf8\xfe\xc0\xca\x5b\x06\x6b\xdc\xf6\xfc\x8f\x9b\x00\x8b\xef\x80\x6e\xbd\x85\x3a\x61\x48\x60\x6c\xb1\x28\x31\x6e\xb8\xdb\x1e\x38\x60\x00\x88\xe0\x52\x72\xad\x62\xef\x84\x9d\xa7\x5c\xa9\x1c\x4e\xb8\x63\x3e\x1c\xab\x5f\xc3\xff\xde\xf3\xb8\x02\x3f\x39\x0c\x8e\x44\xba\x22\x5d\xfa\xd3\xa8\xfb\xb0\x0d\x82\x65\xd3\xae\x83\xbb\x08\x6a\xfd\xad\xab\x55\xb8\x1b\x62\x25\x9e\xc8\xc6\xda\x84\xf2\x60\xc7\x5c\x78\x5b\x54\x3a\xff\x27\x28\x59\x7b\x58\x61\xff\x42\x1c\xe4\xf9\xde\x56\xce\x73\xc6\x84\x0a\x93\xb5\x32\xdf\xa2\xf7\x51\x07\x19\x7e\x60\xa4\xf3\x22\x6d\xc2\xe8\x3a\x7c\x45\x89\xf0\xae\xd0\x29\xdc\x8c\x5b\x35\x93\xfe\x15\x3a\x2f\xee\x57\xe5\x37\x53\xcb\xeb\x26\xd6\x9c\x47\x55\x15\x2e\x2b\x37\x26\x7d\xb4\xc0\xb4\xae\xd9\xdd\x51\x8d\x6a\x46\x9f\x0b\x9d\x48\xce\x3a\x7d\x53\xf4\x90\x6f\xc0\x53\x66\x72\xa6\x05\xa1\x3a\x9c\x16\xab\xd8\xd7\xf6\x4c\xbf\x19\x05\x81\xc1\x04\xcd\xa4\x78\x1e\xac\x53\xff\x87\x96\x2e\x35\x5d\x3a\x4f\x0a\xf6\xdc\x7a\xaf\x09\xca\x22\xc1\xae\xed\xcf\x09\x8b\x9e\xe7\xeb\x4d\x2e\x98\x51\xd5\xf4\xeb\x0b\xb9\x16\xbb\x8c\x1d\x27\xe4\x51\x82\x61\x9b\x57\x4b\xe8\x1b\x78\x04\xee\x00\x22\xc3\x3b\x31\x03\x8d\xbf\x9c\xb1\x39\x45\xa8\x32\x7a\xce\x98\x89\x61\xe6\x12\x74\x31\x0c\x10\xb6\xe1\xa4\x18\xdd\x35\x63\x7d\x10\x3f\x48\x0d\x65\x56\x39\x3d\xe1\x10\x46\x48\x03\xf0\x55\xb2\x01\xad\xa7\x0a\x15\xe1\xd8\x04\x83\x51\xa1\x31\x3c\x5f\x1c\x34\x55\xab\x45\x6c\x43\x55\x58\x03\x09\x29\x02\x57\x97\x12\x0c\x9f\x72\x50\xdf\xd5\x74\x2a\x5c\x88\xb4\x71\xc9\xa8\x08\x4f\xbf\x7c\x84\xc9\x73\xfd\x35\x1e\x3d\xc6\xe4\x1d\xa3\x33\xb4\x58\xb1\xc5\x25\x4b\x11\x41\x29\x2f\x34\xbb\xa8\x3f\x99\x94\xb9\x44\x04\x2d\xf3\xc5\xb6\x80\x14\xf8\xfa\x95\x17\xfc\x3c\x63\x88\x20\xc9\x7e\xdf\x72\x69\xca\xde\x6c\x12\x91\xc2\xa7\xd1\xec\xb2\x14\x99\xa8\x4c\x6f\x19\xfd\x3e\x51\x2c\x12\xf9\x75\x88\xc9\x0b\x46\xd1\x52\x80\x66\xa4\x40\x83\xb7\x8c\xbc\x87\x04\xa0\x70\x68\xd0\x1b\x0c\xde\x1a\x86\xf8\x35\x3b\x64\xa8\xee\xbe\xc0\xc3\x97\x61\x1d\x6b\xb3\xc6\x75\xd5\xb8\x2b\x61\xa0\xaa\x37\xbb\x26\x49\x35\x58\x67\xef\xd9\x9c\x2a\x4d\x73\xef\xb8\x60\x0c\x7d\xbc\x30\xb7\x3f\xf6\xfb\xf7\xe6\xa3\x1d\x5b\xcf\x0b\x8a\xd3\x74\x16\x83\x98\x79\x5d\xd1\x40\x79\x10\x38\x27\x7a\xf0\x20\x03\x42\x50\x7b\x8e\xa9\xd9\x0b\x36\xa7\x82\xc0\xb5\x62\x6b\xc0\x3e\x86\x77\x4a\xcb\xe4\x7a\x2e\x5a\x18\x0f\xb9\xf5\xf6\xc8\x43\x86\xf7\x7b\x47\xeb\x12\xca\x75\x8b\x7a\x33\x25\xb8\x11\x17\x20\xc1\xdc\xf8\x15\x17\x24\x99\x15\x73\x7d\x86\x48\x5c\xfa\xd6\x9a\x67\xac\x0e\x05\xfb\x8c\xfd\xcf\x8e\x05\xfb\x8a\x51\xf4\xed\x45\x96\x9f\x27\x19\x22\x2f\xef\xf0\x41\x6e\xb8\x7e\x54\x5e\xc8\xe6\xfe\x9f\xab\x6f\x3d\xe8\xe8\x2b\xf6\x47\xc2\x49\x3c\x24\xcc\xdb\xf1\xc8\x6b\x0d\xaf\xdc\x67\xec\x81\xc1\x19\x24\x51\x1a\x46\xff\xf6\x78\x2f\xff\x85\xd8\x2d\x0d\x76\xe0\xee\xc0\x2d\xff\xaa\x97\xe1\xa1\xaf\xc1\x9d\x8e\x77\xce\x59\xe4\xd3\x3d\x68\xf2\x00\xcc\xe8\xc2\x03\xdd\xdb\x83\x10\xe1\xc8\x65\xd0\x66\x3c\x10\x7d\x6a\x14\xdb\xf3\x42\xc9\xd0\x21\x78\x0f\xd9\x8d\xe7\xad\xbb\x09\x7a\xea\x73\x6e\x92\x28\x72\x04\x8f\xfe\xe8\xfd\xdd\xaa\x97\x69\xf5\xe5\xbb\x31\xd6\x61\x68\x7e\x66\xf4\xe4\x43\xf1\x39\xf9\x50\x7c\x7e\x72\x51\x13\x9a\xef\xda\xde\xff\x7a\x4e\x9b\x8c\xab\xf0\x67\x4d\x95\x28\x42\x2e\xfc\x40\xc3\xcf\x6a\x40\x4d\x3c\x0d\x01\xd7\x11\xc0\x90\x42\xc4\x8c\x9b\x8b\xa7\xd2\xc6\x29\xad\xdd\xac\x74\xcb\xdf\xff\x2b\x07\x4d\x9f\x35\x4e\x15\xab\x9d\x78\x55\xa7\xb2\xeb\xde\x4b\xe6\xb9\x2f\xd6\x81\xb2\x82\xa0\x5e\x14\x08\x34\x62\x97\x6a\x44\x0e\x17\xcb\x6f\xee\x53\xd5\x9c\x0b\x1f\x61\x56\xc8\xf7\x20\x70\x48\x07\xd6\x25\xa3\x01\xab\x2d\x73\x55\x0c\x02\xbf\x50\x33\x13\xea\x18\xbf\x30\x73\x49\xd2\x84\x93\x35\x8e\x63\x26\xc5\x64\x3a\xe3\x04\x33\x92\x68\xd9\x72\xd0\xf2\x11\xa2\x8e\xc5\xe1\x54\x75\xe1\xa1\xda\xa9\xd2\x76\x02\xf7\x67\x7c\x0f\x25\x15\x53\x31\x7b\xc5\xe6\xb1\x83\xb1\xef\xf6\xa7\xe9\xb0\xc4\x4e\xad\xe2\x7c\xb0\x39\x91\x33\x3e\xb7\x48\xac\xc8\xae\xba\xc1\xf9\x9d\xce\xab\x8d\xce\x60\x31\xb6\x67\x2e\xf4\x51\x96\xfa\xb4\x7b\xd0\xc0\xda\x67\x54\xb5\xba\x12\x56\x57\xd6\x0b\xfa\xca\x59\x51\xb1\x41\x0e\x7b\x48\x7f\xc7\xc2\xaa\x50\x5d\xc4\x1f\xdd\xe4\x70\x5e\xfa\x60\xeb\x98\x17\xd7\x34\xbe\x9a\x88\x34\xf3\x68\x9e\xd9\xbf\x7a\x67\xf6\xaf\xff\xc3\xcf\xec\xdf\x7d\x6a\x41\x7e\x61\xf4\x24\x38\xb9\x20\x3f\xb0\x66\x4c\x1c\xd8\x21\x7f\xbd\xf3\x56\x51\xa7\x7b\x8e\xc7\xbb\xdb\x03\x66\xbf\x87\xa8\x21\x75\x82\x77\x97\x82\x53\x5e\x07\x9c\x8c\xa5\xe7\xfc\xa0\xda\xb4\x4b\x59\xda\xf5\x3b\xd0\x2e\xe6\xfd\xf2\x1c\xc4\x84\xef\x14\xe6\xea\x26\x54\xcc\xf2\x39\x31\xd1\x82\x65\x47\xb4\x60\x39\x2b\xe6\x13\xe7\x10\x46\xec\xd3\x0c\xa0\xd6\xdc\x56\x47\x1e\x0a\x10\x9e\x6e\xab\xe8\x3f\xbf\x30\x92\xe0\x38\x01\x42\xb9\xad\xbd\xc5\xaa\xe1\xfb\x84\xae\x92\xb6\x7e\x75\xe7\x82\xd5\x63\x38\x5d\x4b\x15\x38\xb9\x36\x58\x08\x56\x28\x2e\x2e\x7e\x66\x57\x2c\x9b\xc8\xda\x6f\x4f\x4e\xc7\xb1\x1c\x38\x07\x28\xd3\x60\xbd\xbf\x76\x7e\xb5\xd8\xe9\x4b\x7c\xa7\x48\xe8\xcc\xf9\x83\x18\x94\xe7\x26\x28\x96\xf3\x09\xdf\x1d\x63\xde\x25\xe1\x24\x37\x22\x82\x21\x47\x7d\x4a\xb9\xa1\x76\x8e\x7c\x1a\xde\x98\x14\x64\x4b\x39\x59\xd0\x6d\x8b\x34\x56\x58\x9e\x19\xca\x03\xe0\x5f\x1a\x48\x67\x0d\x48\x93\x94\x1a\x7a\x90\xcd\x46\xc0\x65\x2f\xf7\xfb\x14\xfa\x4e\xa8\x08\xb7\x64\x41\x12\x4c\x96\xa6\x81\x0d\x55\x61\x46\xb6\xde\xce\x2f\xf6\xfb\xb0\xa0\x2c\x5c\x40\x0c\xae\x0d\xdd\x54\xcb\xf6\x03\x23\x05\x26\x8b\x8a\x26\x6c\x88\x9c\x65\x73\x62\xe0\x98\x78\x34\x61\xa3\xcf\x6b\xb0\xb4\xa5\x41\x50\x97\xcf\xb4\xc8\x93\xe0\xea\xf7\xd6\x84\xbf\xd7\x6d\xd4\x75\xeb\xa1\x94\x15\x81\xd4\x45\x9c\xfb\x40\x4f\x96\x65\x49\x3e\x63\xf4\x64\xf6\x6c\xf8\x8f\xf9\xc9\x05\xf9\x8d\xd1\x93\x7f\xae\x8b\xe1\x09\xf9\xd1\x44\x04\x75\x68\xf4\x37\x56\xf3\x03\x68\x68\x4c\x51\x3f\xe7\xd7\x4c\x3e\x4f\x0a\x66\x79\xcd\x3f\x1f\x38\xec\xff\xd8\xa6\x17\x5e\xf8\xf2\x1f\xab\x48\xbf\x9a\x30\x3b\xb8\x7c\xc6\xc8\xdf\xea\x40\x5b\x50\x86\xfe\xc6\x4c\x70\x15\x85\xc1\x71\x4d\xc5\xca\x1b\xd8\x4f\x9e\x83\xd0\x61\x48\xf9\x9d\x9a\x8d\x1a\x8e\xd2\x68\x38\x44\x78\x2a\xe2\x3f\x6b\x19\xda\xb8\x7c\xd6\xdc\x50\x15\xe0\x3a\x08\xda\xf1\xd4\xeb\x3c\x3c\xf5\x22\x84\x53\x2f\x03\x82\xdf\xff\xc4\x70\xec\xe7\xeb\xe1\x79\x75\x31\x31\xae\x51\x7f\xe9\xe6\x53\x8e\x08\xab\x1d\x11\x3e\x9a\x81\x3d\x3a\x1f\xa3\x81\xbe\x67\xca\x77\xc6\xb6\x1f\x3f\x99\x8b\x52\x77\xc7\xb5\xaa\x9c\x96\x1b\xa0\x6b\x0a\xc8\x92\xfe\x99\x79\xfa\x0c\x05\x74\x81\xc5\xa1\x30\x92\xa7\x24\x96\xa5\xd0\x67\x18\xf9\x3b\xa3\xd7\x0c\x34\x55\xd3\xe7\x67\x67\xd1\xe6\x26\x46\x9b\x1b\x44\xfe\xd1\x4c\x5e\x17\x31\x5a\x17\x88\xfc\x67\xab\x34\x93\x0b\xcd\xc1\xa2\x3f\x79\x8f\xff\x80\x78\x62\xd7\xfe\x24\x1c\xce\x92\xe1\x27\x08\xff\x2d\x3a\x15\xab\xb3\xf1\x3c\x52\xf9\x2f\x9b\x4d\x85\xb4\x44\xfa\x28\xc3\x0d\xca\x40\xf0\x2b\xa6\x19\x0f\x39\xe3\x15\x5e\x6a\x90\x98\xe4\x26\xc3\xa9\x14\x65\x2a\xdc\x79\x11\xbc\x52\x96\x25\xb7\x28\xfe\x47\x23\x12\x59\xba\x95\x36\xde\x97\x4e\xd7\xb8\x70\x21\xf3\xad\x48\x87\x9b\xbc\xe0\x26\xe3\xef\xdd\x19\xc3\x9b\xe3\x59\xb7\x07\x59\x05\xff\xc4\x20\xf1\x3c\x97\x29\x93\x26\x1b\x3e\x87\xe7\xb9\x52\xf9\x1a\x1d\x26\x0d\x33\xb6\x54\x43\x99\xa4\x7c\x5b\x74\x65\x4b\x7e\xb1\xba\x2b\xff\x9a\xa7\x6a\xd5\xc8\xd0\x0d\x1e\x24\x74\x94\xeb\x68\x13\x3a\x3b\x4c\xe9\xa8\xac\xf2\x4d\xfb\xf7\xd1\x99\xe8\xbc\xa3\xd3\xd0\x99\x87\xcd\xd7\x29\xeb\x44\x5e\x70\x01\x79\xe6\xb3\x01\x4a\x9b\x54\x4f\xd9\x26\x78\x13\xb1\x29\x6e\xc0\x9b\x24\x4d\xb9\xb8\x80\x2c\xfb\xdd\x68\xd1\xa5\xd5\x4d\xba\x14\xaf\x4d\x97\x54\x41\x61\x9d\x14\x97\x07\x48\xd3\x4c\xbc\xf5\x12\x2b\x44\x59\x31\xdd\xa8\xfe\x82\x19\x9b\x12\x5c\x0c\x4d\xba\xab\x71\xd3\xfc\xcd\x85\x0f\x31\x9d\x5d\xff\x34\x53\xd1\x5f\x7a\x02\xfa\xaf\xca\x37\xfa\x8f\x74\x1d\xa1\xf3\xfc\x66\x58\xac\x92\x34\xbf\x36\x0d\x28\x76\xa3\x1a\x09\x8b\x3c\xdb\xae\xc5\xf0\x22\xd9\x34\x7e\x6b\xc1\xf3\x20\xc1\x1f\x89\x4d\xf6\x52\x20\x92\x57\x35\xd9\xfa\xa7\xde\xa6\x2a\x31\x89\x19\x53\x8a\xc9\x61\xb1\x49\x16\x5c\x5c\x78\x43\x32\xe1\x26\xfd\x31\x2a\x99\x5f\xb2\x83\x04\xbf\xc3\xeb\x5c\xa6\x8d\xa6\xd6\xb9\x06\xbe\x01\x14\x7c\x0e\xf3\xe5\x12\x42\x1e\xfd\x9d\x91\x7c\xab\x32\x2e\x18\xe4\xda\x6f\x3f\xbb\x4a\xab\x3b\xd8\x30\x59\x6c\xd8\x42\xf1\x2b\x53\xcb\xfb\x3d\xcc\x25\xd7\x88\x76\x83\xe2\xff\xec\xce\xb9\x35\x39\x4a\x26\xa2\x58\xe6\x72\x6d\xd3\xbb\x53\x5d\x3b\x07\xe9\x47\x5a\x19\x7e\xf2\xd2\x79\x9b\x16\xfa\xa9\x0d\x62\x78\xc5\xa4\xe2\x8b\x24\x1b\x26\x19\xbf\xb0\x74\x70\x99\xb1\x9b\xe1\x79\x52\x70\xbb\x53\x8b\x55\xb2\x61\x43\xb3\x8f\x20\x45\x2f\xa1\xfe\x7b\x21\x79\x0a\x25\xf4\x47\x8d\x2f\xf0\x4b\xe6\xd7\xad\x94\x36\x5a\x41\xa2\x62\xeb\x4d\x96\x28\xa6\xcb\x17\x5d\xe9\xa6\x96\x9f\x95\x6c\x55\xde\x2e\x0e\x69\x8d\xa2\x35\x96\x57\x34\xbc\x4e\xb9\x3d\x48\x39\xcf\xb6\xf2\x20\xb1\xd8\x48\x96\xa4\x1e\xee\x02\x36\xf8\x7b\xd1\xdb\x3b\xae\x1b\x3f\xe9\xf6\x30\xc9\x75\x54\x7a\xb6\x1f\xa1\x7c\x7d\x48\xfd\xa8\xc2\xa1\x07\xbd\x6a\x3f\x2b\xd3\xb8\xa0\xa4\x40\x04\x84\xc6\x40\xf9\x8d\xef\x78\x5d\x4f\x81\xb0\x5d\x3f\x2a\x02\x4e\xb2\xcd\x78\xd9\x58\xe9\xc3\x58\x28\x1b\xd7\xfa\x20\xbc\x49\xee\x4a\xe5\xa6\x57\xb8\xce\x90\x13\xfd\xbb\xd1\xf7\x81\x03\x9c\x72\x17\x75\xc4\x8c\xcd\xf7\x7b\xa5\x34\x2f\x6a\x27\x9d\x4c\xbb\xf4\xfa\xc9\x34\x09\x15\xf6\x94\x88\x31\x42\x03\x35\x48\x62\xe5\x2b\x16\xab\x60\x18\x00\x1f\xf5\xb0\xfb\x25\xfe\xcd\xee\xe3\x4c\xa0\xb3\x8a\x54\x22\x8f\x68\x88\x3c\xac\x6d\xa8\x60\x76\x29\xea\x9b\xec\x15\x1b\x78\x9c\xf3\xf3\xc2\x5c\xaa\x50\x80\xd9\xb7\xa1\x7e\xe0\x56\x1a\xb6\xf7\xb1\xd4\x7e\xaf\xbe\xa9\x94\x1e\x60\x72\xae\x7e\x4d\x3c\xef\xb3\x46\xb0\x51\x85\x27\xe2\x6b\x05\x8e\x40\xd2\x5d\xbb\xaa\x99\xaa\xaa\xab\x5c\x79\xcc\xdb\x7d\xbc\xb0\x93\x7b\x41\x5f\x0d\x06\x92\x56\x8d\x4e\xcb\xa9\x7b\xa1\xad\xf5\x30\x9c\x86\x9f\xb5\x43\xd6\x4d\x9b\x2e\x97\x32\x5f\x77\x74\x61\xad\x49\xcc\xad\x50\x3b\x0c\xae\x3f\x3e\x67\x49\x17\xf4\x40\xb7\xe2\x10\xc9\x3e\xfc\x87\x6d\x8c\xaa\x2f\xc9\x70\xec\x56\x0f\xbd\xa9\xb6\x91\x68\x3d\x39\x07\xe6\xfd\x46\x0a\xc8\xd3\x98\xa0\x57\xc9\x06\x19\xcf\x6b\x74\xc6\x4c\xdd\x69\x63\x3e\x31\x7a\xe6\x54\x33\xb6\xe0\xc9\x3f\xc3\x69\xfc\x0b\xdf\xbf\xc4\x42\x85\xd3\xf8\xcb\xfd\xf8\xe9\xfe\xd1\x29\x0e\xa7\xf1\xf3\x2c\x59\x6f\x58\x8a\x4d\x0b\x9f\x9d\x18\xd9\x4c\xe0\xa9\x9d\x9c\x33\x65\xb6\x60\x84\x77\xf5\x1b\x67\xef\x6f\x37\xee\x79\xb3\x97\xe2\x2a\xc9\x78\xda\x4b\x94\xa6\xb7\xaa\xa7\xf2\x9e\xa1\x79\x3d\x91\x8b\x21\xac\xc8\x79\x56\x07\x97\x8a\x3e\x88\x97\xa2\x07\x1c\x9a\x2e\x7a\xce\x7a\xae\x08\x81\x0a\x89\x1e\x53\xcf\x90\x9a\xa2\xb7\xde\x16\xaa\xb7\x4a\xae\x58\x2f\xe9\xcd\x5a\x8b\x3c\x0f\x71\x6f\xcd\xd4\x2a\x4f\x23\x84\x4b\x2b\xc1\x26\x10\x55\xa7\x80\x7f\xb7\xf0\xef\x02\xfe\xcd\x14\x4d\x83\x00\xe5\x42\xe5\xdb\xc5\xaa\x50\x89\x54\x88\x7b\xf7\x58\xdc\x87\x75\x86\xd6\x54\x33\xb5\x4a\x05\x45\x77\xaf\xf2\x4f\x31\x1a\xae\xf3\x4f\x43\x44\xb4\x78\x33\x5c\x17\x43\x44\xde\xc4\x68\x98\x0f\x11\xf9\x2b\x3b\xbf\xe4\x2a\x46\xc3\x6b\xf8\x18\xa2\x92\xa4\xea\xa8\x97\xf5\x06\xe1\x96\xe2\x72\x03\xaf\x75\x2c\x81\x9a\x6e\xd4\x00\xbd\x77\xc7\x32\x8c\x50\xe1\x5d\xa2\xe8\x46\xe9\x49\x2d\xd5\x6c\xa3\xe6\x93\x73\xc9\x92\xcb\x12\x99\x7e\xf5\x72\x27\x2a\x08\xd0\xba\xf8\xf3\xed\x66\xc5\x44\x61\xaa\x05\x41\xa8\x81\xa1\x25\x31\xa8\x19\xad\x0b\x80\x05\x4b\x2f\x18\xc2\xa4\x5d\x7b\x98\x6c\x36\x19\x1b\x2a\x99\xf0\x4c\xb3\xa5\x9a\x0b\xaa\x1a\xd2\x90\x84\x7c\x64\xa0\xbc\x52\x34\x51\x64\xad\x68\xa1\xc8\x95\xa2\x5b\x45\x6e\x15\x5d\x28\x72\xa1\x68\x66\xfc\x00\xce\x15\xdd\x89\x1c\x6e\xc4\x65\x59\x3c\x03\x8f\xff\x44\x26\x70\x45\x81\xd8\x00\xf7\x2c\x75\x4a\x85\x8e\xb7\x1a\xfd\x1a\x96\xe2\xea\xb9\x50\x4a\x57\x6a\x5a\x83\x7a\xc0\xe2\xb5\x1a\x30\x5c\x96\xe4\xa6\xd5\xe5\x22\xcf\x72\x39\x4c\xd2\x8f\xdb\x42\x3d\xb4\xd3\x46\x1d\xd7\x6d\x0d\xa9\x95\x9a\xae\xd5\x00\x6d\x24\x17\xa6\x6f\xe8\xf8\x5a\xd1\x93\xd9\xf0\x43\x31\x1f\x84\x11\x9e\xfa\x66\x93\x33\xd5\x50\x6f\xaa\xa9\x6a\xca\xaf\x31\x42\xde\x63\x68\xaa\xe1\x44\xe4\xe4\xd6\x6b\x45\xce\x14\xae\x8b\x7d\xf4\x8b\xbd\x51\x21\xe8\x72\xcc\xb2\x5c\x2a\xf2\xbc\x05\x04\x2d\x2a\xdc\x33\x79\x4b\xfa\xfa\x27\xff\xd4\x85\x4f\x5c\x18\xdc\xda\xdd\x55\x53\x44\x1f\x06\x50\x5c\xf7\x0c\x72\x08\x5f\x27\x1a\xa1\x9a\xb6\x77\xbe\x0c\x57\x6a\xf0\xf1\x8e\x32\x7a\xd5\x6a\x25\x73\x49\xde\xb5\x06\x0e\xfc\x4e\x2e\x39\x13\xca\xb0\x9a\x0f\x5c\xc1\x83\x7a\x6e\x15\x0d\xfe\xf6\x29\xbd\x52\xfb\xfd\x85\x9a\xd6\x88\xf3\xb6\xdd\x75\xb5\xff\xee\x03\x9c\x17\xdb\xb6\xae\x64\x3b\x14\x51\x95\xe4\xf5\xf5\xa2\xab\x2f\xfe\x80\x09\x1e\x76\xc6\xfd\xe9\xd9\xde\x20\xcd\xeb\xee\x7d\xab\xbb\x6b\xc9\x95\xde\xdd\xeb\x3c\x7d\xf0\x46\x6c\xd4\xe9\xda\x13\xfb\x7d\xb5\x33\x83\xc0\xd0\x97\x3e\xa5\xb7\xb0\x57\xec\x16\x79\xdd\x1a\xc7\xb6\xd0\xe2\x1a\xa8\x36\x1f\x3a\x0c\xbf\x8a\x1b\xc5\xab\xfc\xd3\xc1\x10\xf6\x7b\xbb\xd4\x54\x2f\xb5\x37\x86\x67\x8a\xee\xee\xdb\x07\x16\xe7\xfb\x27\xff\x04\x1a\x3b\xac\x76\xc3\x01\x1d\xb0\xbf\x9e\x83\xbc\x80\x06\xb0\x2b\x39\x3c\x2c\xa0\x29\x84\x95\x53\x34\x89\xa8\x07\xa9\xdb\xd8\xe8\x8d\xe0\x97\x86\x14\xd8\xc2\x7a\x8c\xaf\x1e\x30\x46\xb3\x57\x43\xa3\xe5\xd8\x1b\x91\x6a\x6f\xb5\x09\x78\xc8\x85\x16\x30\x8e\xec\xe2\x6a\x28\x6d\x2f\x99\x9a\xdc\x20\xdb\x02\x5c\xe1\x71\x4c\x9d\xd9\xcb\xa2\x9e\xa0\x28\x4b\xf2\xf2\xc1\xf0\x34\xa4\xcd\x54\xd6\x7b\xfd\xd3\x03\x6a\x9a\x71\x7d\xf4\x18\x6b\x34\xac\x1f\x37\xaa\xbf\xf5\xd1\x65\xbe\xc7\xf3\x29\x8b\x57\x6a\x60\x5f\x4d\x80\x85\x77\x6b\xd6\xb7\xc8\x69\x7f\xda\x32\xba\x6e\x7d\x90\x94\x25\xf9\xf9\x9e\x81\xd5\x0f\x1a\x2c\x64\x9e\x65\xc3\x42\x18\xbe\xcc\x59\x8d\xb5\x08\x31\x22\xe3\x31\x6e\x9e\x56\x68\x50\x63\xe1\x77\x0f\xed\x22\xbf\x62\xd2\x76\x73\xce\x56\xc9\x15\xcf\xe5\xe1\x41\xa8\x71\xcd\x16\x5a\xac\x12\x2e\x40\x65\x01\xfd\x7c\xaf\xe8\xce\x48\xe1\x17\x32\xbf\x46\xb1\xf9\x36\x9a\xa4\x2b\xbd\xba\xf0\xbb\x58\x49\x2e\x2e\x5d\xae\x60\x17\x89\x9f\x6b\xe5\x77\x5b\x55\xb2\x25\x93\x92\x59\x15\x25\x41\xfa\x8c\xe4\xcb\xdb\xa1\xbb\x55\xe8\xca\x25\x8b\x4b\x44\x8c\xf2\xd2\xa4\xc0\x37\x22\x08\xd4\x03\x9a\x23\x5c\x57\x8d\x1a\x8d\x81\xcb\x6a\xb5\x04\x92\x32\x34\x57\x92\x5f\x1f\x8c\x32\xdf\x7b\x92\x20\x84\x51\x0c\x0f\xb1\x57\x03\xe8\x77\x45\x77\xba\x9b\x18\xa4\x75\xfd\xe5\xa6\x6d\x01\xd6\x4e\x4e\xb9\x64\x46\xa6\x8c\x67\x90\x69\x4e\x19\x64\xc4\xfd\x3a\x77\xee\x26\x6f\xca\xa4\x5c\x24\x99\x6e\x73\xbb\x39\x80\x81\x2e\xe1\x40\x00\x7d\x2c\x33\xdd\xf5\x3d\xcd\x77\x40\x5e\x17\xb1\x90\xfa\x45\x35\x42\x69\xfc\xae\x30\xf9\xa1\xd3\x4f\x19\x4e\x60\xf2\x57\x45\x67\xe7\x8a\xdc\x68\xd6\x81\xbc\x53\xe4\xad\x22\x2f\x14\x79\xaf\xc8\x6b\x45\x9e\x29\xf2\x4a\x91\x97\x8a\x7c\x52\xe4\x67\x45\xbe\x53\xe4\x57\x45\xee\x59\x06\xff\x41\x8d\xf5\x36\x53\x7c\x63\xe2\x7c\xfe\xe2\x9b\x0e\xbf\x19\x8e\x9d\x79\xf7\x77\x58\x2e\x4d\xd3\x9a\x22\x21\xaf\xe4\x36\xb3\x7c\xbc\x5e\x3e\xde\x78\x9b\xa3\x3f\xae\x18\x69\x63\xb8\xe5\xbe\xe1\x56\x97\xb4\x08\xc0\x67\xa3\xb9\x61\x41\xea\x9a\x4e\xaa\x03\xcb\xcf\x0f\x0a\xd7\xb7\x72\xcb\x39\xf9\x4c\xd1\xbf\xaa\x68\xc9\x33\xc5\x64\xd3\x4d\xb5\xbe\x46\xdf\x86\x45\x89\x31\xb4\xf5\xf0\xe2\xe4\xb7\xfb\xbb\xa9\x8e\x4e\xdd\x7c\x77\x54\x9f\xda\x21\x68\x5b\xac\xaa\x48\x69\xb9\x0a\x55\x5d\x1b\x63\xc2\x4a\x4c\x66\x73\x4c\x7e\x04\x5b\x9b\x91\x72\x2e\xef\x14\x56\xe0\x84\xf8\x9b\xa2\x36\x38\xc8\x05\x53\xcf\xf3\xf5\x66\xab\x58\x6a\x42\x67\x1d\x13\xa1\xe0\xfc\x70\x2b\xf3\x67\x10\x71\xfe\xa6\x30\x2f\x5e\x27\xaf\xc3\x3f\x2b\xbc\xdf\x87\x3f\xaa\xd9\xdf\xd4\xec\xcf\x6a\x3e\xa7\xe6\x2f\x9e\xfc\xa6\xba\xfd\x82\x9b\x66\xe6\x1f\x35\xce\x94\xd8\x63\x8a\x7f\x52\xc7\x1e\x60\xde\x95\x98\xf4\x2f\x9b\xac\xa9\xb9\xad\x01\xad\x54\xb6\x4c\x40\x43\x9f\xb1\xea\x03\xad\xf5\xf8\xba\x3e\xbc\x59\x00\xce\xc8\xe6\xf9\xd0\x4b\x1b\x96\xab\xa1\x28\x99\x88\xaf\x3f\x53\xd5\x3b\xcd\x21\xb4\x4b\x3f\x53\x26\x0c\xd9\x65\x15\xc8\x0b\x93\xbe\xe9\x1f\xb4\x28\x70\x87\xda\x65\x1a\xdf\x67\x7b\x03\x5a\x1e\xde\x80\x36\xb3\x07\x1b\xa4\x22\x7f\xd7\x33\x24\xff\x50\x74\x57\x0f\x3d\x1e\x37\x94\xb5\xee\x9a\x38\xd2\xe9\xee\xbc\xf3\x26\xda\x9d\xec\x57\x2b\xc9\x7f\x2a\x7a\x12\xfe\xf3\x43\xf1\xb9\x75\xea\xd8\x93\x5e\x58\xff\x0a\xa7\xfd\xd9\x3f\x43\x3c\xff\xfc\x03\xc6\xbe\xf8\xc3\x1a\xce\xc0\x57\x89\xd1\xdf\x59\x90\xc3\x6f\xe0\x4a\x92\x2c\x6b\x64\xe8\xdf\x7e\x86\x73\x7a\x40\xa4\x07\x59\xd6\x65\x71\xfa\x13\xc4\x1b\x41\xa4\x87\x06\x3f\x69\xfa\x5e\xa9\xa0\xf4\x2a\xed\xf7\xc2\xc3\x0f\xd5\xbc\x7c\x06\x04\xe4\x2f\x9a\x55\x74\x24\xd4\xbf\xdf\xaf\xfc\xf0\xd5\xde\x2d\x97\xfd\xbe\x6f\xd0\x77\x93\xc8\x82\xbd\x04\xfd\xda\x78\x84\x6b\xb7\x30\xe7\x7a\x31\x10\x35\x96\xfd\x1d\xdc\x3b\x6d\x09\xf8\x01\x8b\xfd\x17\x6f\xb1\x45\xfb\xb6\xbb\x29\x47\xfb\x63\xd2\x1f\x97\x7c\x19\xfe\x03\x30\x45\x50\x51\x71\x69\xff\xa9\x08\xf3\xd5\xa3\x7a\xfc\x5e\x93\x9a\x47\x18\xae\x0b\x73\x7c\x51\x4a\x43\x41\xe1\xd8\x0b\x82\xd0\xef\xb8\x2a\x73\x9e\xdf\x20\x4c\x1a\x63\x22\xed\x36\x31\x3e\x1c\x9c\x83\x78\xa3\x51\x44\x4c\x09\x61\xfe\x96\x29\xf4\x7a\x17\x89\xb1\xea\x34\x71\xc4\x43\xe8\x30\x66\x99\xf3\x5a\xb5\xe1\x1b\x9a\x2a\x68\x11\x04\xcd\xa3\x44\x62\xf3\x30\xbd\x04\xca\xcc\xbc\x68\xd4\x5c\x4f\x23\xa7\x06\x7b\xf2\x20\xc8\xed\xf5\x43\x4e\xfb\x23\xe7\x9d\xdd\x1f\x93\x82\x2a\x11\xe6\xe4\x5a\xb7\x34\x29\x82\xa0\xb0\xaf\x6b\x25\xba\x18\x09\xf9\x7e\x9f\x68\xd0\xf2\x3a\x68\xfa\x4c\xcc\x89\x9a\xe5\xfb\xbd\x98\xd3\x62\xbf\x97\xb8\xac\x15\xcb\x6d\x35\xf1\x81\x8b\x9e\x9e\x51\xe3\x61\x22\xe3\xa9\x57\xf9\xc0\x4d\x14\xbc\x2a\x33\xb4\x2b\xab\x7f\xe1\xd9\x78\xee\xc9\x40\x53\x11\xa3\x6f\x81\xeb\xf4\x1a\x1a\x08\xe7\xe5\x36\x1e\x19\x7d\x81\x38\xee\x5e\x7f\xf8\x7a\x57\xa5\xaf\x9e\xaa\x18\xee\xb7\xdc\xe1\x7d\x50\x6b\x3c\x74\x4b\xd7\x5a\x0e\xd9\xef\x59\x59\x9a\xa0\x5f\x52\x1c\x5e\xb7\x3e\x72\x98\x19\x3a\xea\x45\x5e\x9b\xb2\x6f\xd4\x74\x1c\x0f\xc7\x71\x15\x12\xc5\x65\x95\xf7\x29\xe0\xd5\x3d\x0a\xf8\xda\xa9\x48\x6a\xa2\xca\x1b\x7c\x94\xc2\x51\x91\x4b\x2d\x8e\x90\x0e\x36\x43\xce\xf8\x2c\x9f\xcf\xa9\x32\x7f\x27\x9e\x77\x4e\x4d\x0e\x7d\x4f\x91\xea\x36\xe7\x6b\x16\x62\xf2\xbd\xfe\xe7\xaf\xfa\x9f\xbf\xe8\x7f\xa4\x0a\x31\xf1\xf4\xdd\xb5\x1e\xda\x1c\xc2\xf6\xd5\x56\xa1\x8b\x8a\x10\xcf\x4d\x2c\x95\x44\xd0\x33\x16\xea\x4e\x30\x29\x04\xdd\xd9\x9b\x23\xf6\xde\xa2\x3e\x17\xfa\xe3\xea\xa6\xdd\x73\x17\xb4\x2a\x3e\x58\x8a\xff\xda\xd5\x21\xd7\x2b\x38\xb5\x12\x41\xab\x9a\x2a\x08\x14\x78\xdb\x6d\x64\x9e\x6e\xa1\x4b\x13\x30\x8b\x70\xdf\x27\x0d\x7d\x2c\x0a\x14\x4b\x92\x6b\xa1\x8a\xb1\x94\x24\x75\x6e\x3e\x45\x28\xce\x49\x41\x81\x36\x25\xfa\x57\x7d\x49\x28\x21\x68\x88\x30\xd9\xd2\x11\x59\x74\xb8\x91\x6f\x07\x74\x5c\x1e\xc4\xc3\xaa\x0e\x05\x49\xeb\xc7\xc8\xe0\x1d\x58\x13\x86\x06\xc6\x54\xfb\xcf\xbc\xda\x72\x84\x83\xa0\xdf\x7c\xb8\x2c\x08\xfa\x06\xb1\xc0\xfb\xec\x1d\xab\x19\x5d\x8d\x3a\x8e\x6e\xea\xca\xc3\x6a\xb4\x26\xcb\xde\x35\xaf\x27\x51\x54\x57\x9c\x24\x4c\xa7\x55\xbc\xf2\xfe\x77\xdd\xab\x15\x5b\xb3\xd9\x73\x16\x25\x5a\x10\x76\x50\x71\xb5\xf2\x46\x1b\x8b\x10\xe3\x38\xb7\xe4\xa7\xab\x4b\xde\x28\x5a\x96\x21\x36\x2f\xb7\x08\xf3\x90\x4b\xf1\x3c\x59\xac\xec\x65\x64\x93\xf0\x2a\x11\xc9\x05\x93\xb1\xbb\x4f\x65\x52\xdf\xd9\x08\x4f\x36\x22\xf4\x56\xd0\x22\x4a\x2c\xd5\x87\x60\x08\x37\x2a\x2c\xac\xdf\xf4\x42\xd0\xe1\x98\x7d\xe5\xc5\x1f\xf3\x96\x6c\x21\xf4\x9a\x81\x0e\x5e\x50\x11\x3e\x1a\x8d\x3d\x7b\x67\xea\x87\x5e\xee\xb0\xf6\xb9\xab\x12\x3b\xd3\x71\x7c\xe8\x5a\x9a\xc3\x41\x9c\x53\x35\x65\xa1\xc0\x31\xb3\xa7\xf0\xd6\xd9\x39\xb6\x25\x88\x19\xfb\x7d\x5f\x44\x5a\x18\x97\x3c\x65\x45\xf3\x97\x77\xb4\xe7\xf6\xb8\x68\xe6\x92\xa2\x7d\x1f\x2e\xef\xbc\x0f\x97\x1c\xb9\x0f\x57\xe8\x13\xd5\xb6\xb0\x14\xba\x09\x9d\x42\x12\x7d\x1e\x6b\xd9\xa1\x28\x49\x1d\x18\xc6\x90\x81\x8d\x68\xb8\xfd\xad\x0e\x6e\xb0\x15\x2a\x51\x80\xdf\xd6\x81\xba\x78\x63\x91\xe9\x80\x60\x54\x84\x71\xbf\xdf\x95\x13\x19\x2d\x34\x02\x3c\xf7\x6f\x75\x7a\x09\x74\x07\xcf\x43\x19\xfc\xc8\x92\x02\xa2\xeb\xd4\xbf\x7e\x3a\x3b\xd3\x43\x74\xf7\x3b\x6b\xde\xa1\xba\x1b\xaa\x0f\xd5\x46\x8b\x91\xad\x07\xb1\xf8\xba\x32\x68\x55\x97\xc0\x89\x4d\x54\x77\x1b\x7a\x24\xdd\x8d\xe8\x1c\xaa\x6c\x6d\x7e\x58\xc6\x3c\xeb\xf5\x86\x85\x3b\xef\x4a\x64\xdc\x3d\x1a\x52\xdf\x92\x8c\x15\xa9\x6e\x49\xc2\x1d\x63\xd2\xd5\x6e\xcd\x9e\xae\x1b\xec\xa9\x5d\x22\x20\x96\xb0\xc1\x0d\x31\xf4\xd7\x8a\x24\x55\x0a\xdc\x8c\xc8\x25\x29\x28\xab\x28\x57\x3f\xef\x58\x4c\xeb\xa1\xfc\xd1\xdc\x44\xcc\xa3\xc6\x1e\x86\x87\x37\x26\xdb\xfd\x3e\xdc\xd2\x9d\x64\xcb\x22\x1e\x11\x3d\x0a\xbe\x30\xf1\x5b\x61\x1d\xd3\x5b\x91\xac\xf9\x02\x8e\xd5\xc2\x6e\xef\x8f\xe6\x12\x65\x47\x73\x64\x6b\x19\xbb\x45\x63\x0f\x1c\xfb\xde\x95\x24\xa9\xdf\x31\xc8\x31\xd9\x95\x64\x07\xd3\x8f\x25\x59\x66\x7c\x13\xa3\x73\x13\x6d\xc6\xdb\xe5\x79\xa4\x73\xa6\xe6\x4f\x8c\xa4\xb2\xf7\x28\x2a\x75\x49\x89\x27\x0b\xff\x9a\xf2\x22\x2a\x98\xbc\x62\xf2\xc7\xf6\x39\xb8\xdf\xd7\xe5\xaa\x44\x18\x7e\x46\xdd\xe4\xde\x79\xb1\xeb\xf4\xc9\xb0\x8d\x34\xa4\xac\x99\x70\xe2\x4a\x01\x99\x0c\x82\x70\xd9\x06\x35\x64\x00\xa0\x0d\x5c\x52\xea\xc8\x62\x28\x49\x81\x27\xcb\xfd\x3e\x0c\x97\x34\xf7\xee\x01\xd5\x37\xcd\xc3\x94\x34\xa0\xa5\x0f\x1e\x13\x3e\x02\x63\x5c\xbf\xb3\xd0\x1a\x44\x6b\x75\xaa\x11\x90\x25\xc6\x24\x0b\x82\x0c\xae\x7b\x2d\x31\xd9\x46\xde\x6a\xd3\x25\xd9\x46\x8d\xc5\xa6\x4d\x76\xdc\xe0\x29\xdc\x03\x69\xde\xc4\xab\x2e\x3e\x6a\xda\x97\x57\x37\x2a\x27\x8d\xcb\xa0\xfa\x24\xc7\x62\xbf\xb7\x77\xd9\xcd\xfd\xca\x2e\x37\x93\x3c\x08\x8c\x10\x45\x79\x10\x1c\xea\x87\xac\x03\x08\x0b\x39\x9e\x24\x41\x10\xb6\x9a\x4c\x6a\xa6\x5b\x94\x61\x0a\x01\x63\x5a\xd3\x72\x5e\xdf\x47\x40\xde\x2a\xdd\xb5\x00\x23\x58\x80\xc9\xc6\xbd\x76\xa3\x30\xd9\xd4\xab\x21\xaa\x06\x00\xac\x1b\x22\xaa\x8b\xf0\x6d\x9a\xd2\x58\x80\x8a\xac\x79\x24\x65\xe3\x12\x4b\x6f\xe5\x36\xd6\xb3\xbc\x6e\xb7\xb3\x9d\x89\xc1\x54\x7d\x9c\xd6\x44\xe7\xaa\x8b\xe8\x4c\x9a\x43\x0e\x82\xe6\xef\x7a\x9a\x75\x3b\xb7\x8d\xfb\x39\x86\x74\x89\x8a\x74\xc9\x03\xd2\xc5\xdb\xa4\xcb\xa8\xf3\x8e\x51\xac\xdc\x6d\x23\xd9\x22\x31\x9c\x68\xa1\x0d\x26\x36\xa4\x2e\x28\x8f\x6c\x6f\x55\xe0\x1b\xa1\x50\x10\x84\x1f\x99\xbb\x7e\xdd\xd5\x18\x81\xf7\xef\x0e\x62\x3c\xe8\xdd\x53\x83\x14\x93\x24\x08\x12\x17\xd6\xa1\x99\x85\x89\x6a\x41\x2f\x3c\xd2\x64\xb3\x5c\xb3\xcd\x56\x1e\xf6\x96\xec\xc2\x5f\x32\x22\x81\xb1\xda\x16\xec\x1d\x5b\x86\x33\x08\x6f\x6c\x13\x5e\xb1\x75\xde\x11\xb6\x53\x9f\xbf\xe0\x46\x14\x2d\xb6\x52\x32\xa1\xcc\xce\x0a\xab\xdf\x94\xeb\x95\x03\x01\xc2\x34\xf4\x62\xb9\xd4\x18\xdf\x11\x01\xd4\x4b\x11\x41\x20\x42\xac\xdb\x9e\xf1\xb9\x87\x18\xe7\x1e\x62\x1c\x08\x15\xe3\x4e\xa1\x62\xec\x0b\x15\xe3\xb9\x8b\x76\x07\xb7\x4a\x20\x72\x63\x33\xd6\x2e\x49\xa8\xaa\xe3\x11\x90\x2d\x55\x91\x7d\x60\xf9\x3d\x20\xdf\xa2\x96\x1d\xb6\xd3\x8d\x88\xb7\x24\xa3\x39\x44\x85\x36\x0f\x4b\xa3\x56\x7b\x88\xa0\xaa\x35\x44\x90\xdf\x16\x9a\x63\xb2\xa4\xc0\x75\x92\x94\x8a\xfd\x5e\x6a\x79\x3b\xb9\x34\xab\x5a\xa0\xc9\xd2\x0b\xf0\x03\x77\x65\x34\x2b\x6b\xde\x34\x14\x64\xcd\x54\x12\xa7\xa4\xd5\x5d\x9c\x96\xf6\x39\xc1\xff\x56\x21\xcc\x92\xa9\x4b\xa6\xe9\x14\xde\xef\x17\x44\x1e\x3d\x81\x77\xa5\x5b\x6a\xc7\x9a\x6f\x85\x3e\x1a\xb4\x94\xeb\x61\x17\x86\x47\xbb\xea\x9f\x93\x0b\x71\x10\xad\x92\xd3\x9d\x9d\x2d\xd0\x00\x3d\x96\xc6\x36\x8f\x97\xa4\x41\x08\x62\x49\xcc\xf1\xae\x2a\xb9\x6c\x2d\x42\x4e\x98\x3e\x8d\x1c\x42\xf6\xc7\x24\xf7\xb0\xd3\xeb\xf2\x56\x84\xdc\x20\x9d\x22\xcb\xf9\x5d\x18\x5b\xb5\x16\x04\x57\x22\xac\x9a\x6b\x75\x34\x2a\xab\x63\x79\xd5\x28\x55\x11\xe3\xa4\xbe\xee\x54\x8d\x78\x53\xa3\xfb\x4d\x83\x0e\x1a\xea\x27\x2c\x53\xe6\x04\xdf\x4d\x01\xc4\x4e\xed\xf7\x7d\x65\x7e\xd7\x5f\x5e\x2c\x2d\x73\xfb\x89\xeb\x13\xb4\xca\x83\x93\x16\x9c\x2a\x73\x5c\xcb\xcb\x33\x6e\xe2\x65\xf0\x39\xcd\xf5\xee\x6b\xde\x6d\xb8\x16\x1d\x31\xc5\xfe\xe5\xad\x78\x18\x44\xbb\x96\x9d\x1b\xdb\x4e\xef\xca\x6b\xae\x56\xe6\xd7\xb6\xd6\x01\x68\x32\x47\x32\xb7\xa1\x97\x76\x2f\x36\xb6\x19\x41\x55\x4d\x44\xcc\x36\x9d\xbb\x75\xc9\xc8\x86\x6a\xa2\xd2\x3c\x88\xfd\xea\xb1\xf4\x19\x6f\xb3\xfb\xb2\xfd\x5e\xe8\xc3\x65\x93\x25\xb7\x7a\xef\x75\xec\x42\x60\x87\x56\x80\xe1\xcb\x5c\x5e\x27\x32\xd5\x58\xde\xb2\xb0\x54\x88\x60\xaf\xa6\x2d\x20\x80\x93\x60\xf2\x1d\x5b\xc2\x5c\x18\x99\x21\x5b\x04\x11\xe4\xb2\x34\xe1\x48\xe9\xe6\x2e\xbe\x57\x38\xf0\x69\x71\x04\x1e\xf1\xd2\xa3\x59\x56\x31\xf6\x0e\xdc\x11\xb3\xfd\x7e\x8b\x41\x01\xd9\xde\xeb\x52\xf3\x06\xe1\x8a\xde\x88\xd0\x32\xcf\x89\x85\x02\x01\x44\x8a\x97\x5a\x1a\xd9\x06\x41\x7f\x65\x50\x54\x97\x36\x5f\x34\xb1\x74\xbf\xa9\xa0\x15\x4d\x68\x4b\xb6\x8c\x17\xfb\xbd\xaa\x9e\x3a\x4b\x4b\xb2\x82\x58\x2c\x0e\x3d\x16\x21\x0e\x57\xfa\x38\x5d\x95\x25\x39\xd3\x92\xfb\xf8\xd1\x08\x4f\x54\x94\x74\x6b\xf9\xae\xbd\x15\x95\x87\x2b\x7a\x26\xa2\xa4\x24\x70\x0e\x92\xf1\xe9\x81\xad\x11\x6d\x0b\xd6\xd3\x00\x5a\x28\x6b\x19\x20\x7a\xdf\x88\xf0\xf1\x97\x98\x24\x54\x84\x4f\x30\x29\xf4\xcf\xaf\x34\x0d\x13\xe1\xe9\x18\x4f\xfa\xfe\xa6\x80\x67\xb0\xd6\x89\xfa\x3e\x51\x8c\xa2\x1f\xe0\x5b\xb1\x54\xff\x44\xc4\x65\xbe\xe7\x6b\x3f\x53\xff\xac\x33\x5f\x83\x6f\xb2\x97\x6d\x12\xea\x02\x3f\xf3\x42\x79\xd9\xfa\x67\x9d\xf9\x7d\x8d\x99\x7e\xf7\x75\x2a\x2a\x43\xa9\xa5\x6d\xcd\xd9\x36\xef\x44\xdf\x31\xf4\xb7\x89\x54\xc5\x9d\xe3\x6f\x95\x38\x32\x89\x56\xa9\x8e\x99\x98\x12\x65\x68\x42\xeb\xec\x1a\xb1\xbf\x17\x35\xd5\xf1\x43\x25\x39\x37\xed\x16\xa6\x6d\xa3\x24\x7a\x9e\x8b\x62\xbb\x66\xd2\xbc\xa4\x18\xfa\xa4\xc6\xa2\x48\x11\x2d\x70\x58\x5d\xbb\x57\x46\x94\x86\x00\xb8\x2e\x88\x24\xa9\xb6\x45\xae\xcb\x6a\x12\x03\x85\xf4\x79\x6f\x8b\xe8\x4d\xb9\xa5\x1d\x41\xa6\xe1\xa5\xe9\xef\x41\x24\xdb\xef\x47\x38\x96\x95\x89\x38\x44\x35\xb0\xed\x53\xe5\x1e\xf8\xdf\xe7\x00\x87\x70\x4b\x12\x1c\x0b\x0f\xea\x7e\x86\xde\x25\x65\xad\xc4\xf3\x68\x12\xe5\xf0\xfa\x67\x7d\x98\x64\xff\xdf\x40\x6e\xfb\x20\xc8\x2d\xc0\xe9\x3e\xd4\x12\xfe\x81\x64\xe7\x44\xbe\xca\x61\x3a\x5c\x60\x2b\x46\x0b\x1b\x0f\xd5\xd2\xe7\xfd\x3e\x89\x7e\x90\xc9\xc5\xda\x8b\x9a\xd0\x9e\x58\x66\x66\xb3\xb8\x03\x72\xb2\x05\xb9\xa5\x6f\x39\x2f\x45\x94\x86\x8a\xa0\x04\x91\x2e\x1e\x56\x23\x6b\xd6\x58\x58\x4c\xaa\xdf\xb0\xc9\xbd\xdf\x76\x57\x7b\x29\xb0\x91\xbd\xdf\xfe\xa6\xc5\x64\xd1\x6a\x78\xd1\x6c\x58\x53\xb3\x7b\xc8\x19\x8b\xd8\xcd\x26\x97\xaa\x1d\x15\xf6\x90\x05\xaf\x0d\xd0\xb5\x97\x7e\xfb\x9c\x77\xe1\xcd\x44\xe3\x3d\x95\x63\x51\xce\xaa\x28\x82\x44\xc0\xdd\xcf\xf1\xe9\xa3\x07\xd0\x5e\x4d\xec\x1f\x7b\x04\x80\xfb\x8b\x21\x16\x79\xca\x7e\x79\xf7\xb2\xc2\x80\x90\xe1\xca\xa2\x79\xf2\xa7\xc7\xa3\x93\x0b\x4e\xd0\xb7\xc8\x4f\x7c\xf4\x0c\x12\xe3\x46\xe2\xe9\xe3\x93\x0b\x82\x3e\x6b\xa6\x3d\x87\x82\xa4\x99\x38\xd2\x05\x07\x8d\xb4\x27\xdf\x41\xc1\x59\x33\xf1\x7b\x48\x9c\x23\x5c\x76\x03\xfd\xe0\x62\x8d\x8d\x13\x0b\x86\x5e\xac\xcf\x1b\x55\x9b\x63\x65\xc4\x8b\x5f\xde\xfd\x7c\xc6\x12\xb9\x58\xbd\x4d\x64\xb2\x2e\x42\x85\xb1\xe6\xe6\xbc\xa0\xb2\x95\x15\x32\xa1\xb3\xf9\x44\xd6\xaf\x31\x92\x16\xe3\x61\x75\x20\x2c\x08\x3a\xef\x40\x30\x90\xe0\xea\xab\x14\x53\x35\xa0\x68\x36\x47\x31\xa3\x7a\x6b\xd4\x0d\x33\xd2\xf4\xa9\x88\x78\x01\x94\x8e\xe1\x29\x83\x78\xb7\x2f\xcf\xde\x54\x77\x63\x74\x6e\x75\x85\x02\xae\xbb\xfc\x74\xf6\xe6\x75\x64\x28\x26\x5f\xc2\x9d\x0d\x92\xd8\x67\x15\x43\x85\x07\x88\xa2\x01\x87\x68\x17\xd8\x84\x66\xcb\x69\x12\x7d\xcc\xb9\x80\x5b\xf8\x25\x5f\x86\x39\xb6\x4f\x00\xd7\x16\x12\xf4\xbf\x10\x9e\x80\xd9\xa4\x80\x3e\x98\x7b\xd4\x9b\x14\x18\x13\x36\xa0\xe6\x2d\x26\xaf\xc2\x14\xe1\x29\x9a\xa2\x58\x37\x3a\xc8\x7d\x0f\xe2\xf1\xe9\xe3\x3f\xbe\x9d\x2a\xf7\x8a\xb0\xcf\xf6\xfb\x3e\x8b\x7e\xfb\xed\xf9\xb3\xd7\xcf\x5f\xfc\xfc\xdb\x6f\x86\xe1\x78\x72\x77\x9b\x8d\x10\x80\xde\x16\x20\x5c\xf3\x1a\x8f\xc7\x1a\x0c\x3b\x64\x63\x40\x0f\xdf\xdf\x6e\x18\x8a\xc1\x3f\x95\x2f\x40\xc7\x71\x72\x33\xbc\xbe\xbe\x1e\xc2\x25\xbc\xad\xcc\xcc\x1e\x49\x91\xa7\xc0\x4f\x0c\x12\xf4\x01\xa9\xdc\xf2\xc3\x9a\xb4\x52\x66\xcd\x6e\xe6\x26\xa0\x47\x2b\x91\x2a\x63\xfa\x2d\xe8\x2e\x49\x93\x8d\x62\xf2\xc0\x00\x58\xb1\x9d\x5d\xc8\xf6\xb7\x57\x3f\xff\x59\xa9\xcd\x3b\xf6\xfb\x96\x15\x6a\xbf\xef\x2c\xa4\x82\x00\xcd\x8c\x1a\xaf\x67\x83\x59\xcd\xf5\xd9\x70\xcf\x75\x19\x85\x0d\xa2\x89\x70\x7c\xfa\x14\x63\x1b\x6d\xde\xf9\xdf\xd8\x2e\xe3\x59\x27\x2d\xe4\x9a\xca\x3f\x5b\x2c\xd8\x46\x53\x64\xf8\xd5\x98\x38\x26\x1a\x5a\x9a\x71\xf9\x3e\x51\x09\x5c\x6c\xa9\xf6\xcc\x77\xdb\xe5\x12\xde\xc1\x37\x69\xad\x9f\x67\x4a\xb2\x64\x5d\xfd\xfc\x81\xc3\x23\xa5\xb6\x68\x96\x9f\xc3\xf6\x89\x5b\x8d\xfd\xca\xd9\x35\x64\x44\xe7\xf0\x3b\xee\x22\x09\x0c\x4f\xc3\x04\x4e\xa7\xfb\xf0\x61\xb2\x58\x25\xb2\x60\x8a\x6e\xd5\x72\xf8\x25\xc2\xc4\x8f\x4e\xdd\xda\xab\x1d\x6d\x7e\x2c\x72\x71\xd0\xc4\xe1\x76\x8e\x59\x39\xf7\xe1\x5d\x6c\x72\x51\x30\x1f\xe0\x47\x6f\x47\xc1\x1b\x36\x86\x42\x80\x73\x4c\xc8\xdc\x3b\x34\x0a\xef\xea\x4d\x3a\x27\x8a\xaf\x59\xbe\x55\xf1\x88\xdc\x14\x72\xf9\x3c\xcf\x2f\x39\x03\x33\x34\xfa\xdb\xd9\xbb\x1f\x86\xef\xdf\xfc\xe5\xc5\x6b\x04\x79\x7f\x66\x49\xca\xa4\xcd\x1b\xfa\xb9\xeb\xe4\xc6\xae\xed\xcf\x70\x90\xc5\xc3\x31\x81\x3b\x48\xa0\xbd\x4d\xd4\xb6\xe8\xf0\xa7\xed\xb1\x6f\xe8\xe9\x68\x14\x04\xec\xeb\x47\xa3\x51\x49\x56\xd0\x7c\x11\xef\x16\xf9\x7a\x9d\x8b\x78\x67\x90\x27\x3e\x00\x1c\xe9\x69\xae\xe5\x64\x93\x25\x5c\x90\xde\xe7\x27\x9f\xa3\xb2\x2c\x3d\x72\xad\xe5\xd7\x8c\x69\x61\x01\x5d\x30\x85\x88\x79\x03\x67\xde\xa4\xb5\x45\x64\xfb\x9b\xb1\x39\xdd\x95\xc6\x22\x54\xb7\xb0\xc9\xb5\x44\x80\x36\x5b\xf8\x57\xc3\xed\xce\x06\x64\xb4\x66\xf2\x82\x85\x39\xd0\xd9\x9a\xac\x15\x25\xb6\x3b\x69\xc5\x0b\xa2\xe9\xcf\x08\x03\x9f\xf1\xf4\xc1\x47\xb7\xa5\x5b\xa7\x18\x64\xa8\xf1\xe9\x23\x23\x44\x9d\x3e\x7e\x6c\xc4\xa8\xd3\xc7\x5f\x58\x39\x4a\xcb\x57\x0b\x28\xf3\x05\xbe\x93\xb4\xc2\x85\xb1\xb7\x32\x5f\xf3\xc2\xf7\x5a\x54\x24\x73\x51\x5b\x58\x94\x26\x2a\x21\x29\x65\x6e\x96\x93\xc6\x6e\x5d\xe2\xca\xb3\x26\x6d\x13\x34\xab\x40\xd3\x7d\x34\x69\x93\xb1\x70\x26\x5b\xb5\x32\xdd\xac\xa8\xf9\x15\x6d\x0b\x26\x05\x58\x7c\x10\x22\x6b\x97\xba\x49\x8a\xe2\x3a\x97\xa9\x4e\x9d\xa4\xd1\xb3\xad\x5a\xe5\x92\x7f\x02\x3c\xa0\xe8\xbb\xa4\xe0\x8b\x1e\x1a\x9c\xab\x3c\x09\x57\x03\x14\xa3\xc1\xda\x10\xd2\x2b\x9a\x84\x26\x60\xea\x2f\xef\x7e\x26\x2c\xda\xca\x0c\x98\xe2\x4d\x94\x6f\x98\x08\x59\x64\xaf\xa8\x35\xee\xfd\x90\x3c\xbc\x22\x10\xa3\x3e\x59\x17\xd5\xc7\x19\x93\x3c\xc9\xf8\x27\x26\x21\x68\x3b\xd9\x44\x76\xb7\xe8\xc3\xd9\x7c\x91\x4d\x94\x0b\xc9\x92\xf4\x16\x74\x6c\x0b\xf0\xbf\x69\xbd\x5f\xb1\x09\x82\xc7\x94\x42\xa4\x9a\x24\xbd\xd5\x1b\x42\x73\x08\xa3\xbe\x4e\x2a\x60\x7b\xec\xf7\x3a\xd3\x6c\xef\x5f\xde\xfd\x6c\xdc\x1c\x1a\x49\xf5\x79\xbb\xe4\x19\x8b\x11\xc6\xce\x4e\xa0\x91\xfc\x59\x96\x39\xea\x60\x76\x29\x5c\x39\xdb\x4c\x8b\x10\x5e\x01\x3b\xcc\x0e\xed\xfb\xd0\x44\xd2\x9d\x5e\xea\x98\x55\x9d\x99\x07\x77\xe0\xda\x8e\x79\x29\xc0\xcf\x98\xd6\x83\x8a\xeb\xcf\xf7\xec\x46\x11\x33\x93\xd8\x4d\xc9\xfe\xd6\x59\x55\x1a\x94\x73\xfb\x5c\x90\x45\x2e\x96\xfc\x22\x66\x44\xda\x93\x64\x53\x4e\xf4\x41\x91\x11\x89\xc9\x06\xac\x59\x65\x09\x00\x4e\xce\x73\xd9\x78\x6d\x71\x13\x04\x61\x16\x2e\x42\x64\x71\xab\x07\x25\x58\x8a\x08\x23\xe8\xc5\xf3\x37\xaf\x5f\x3f\xfb\xee\xcd\xbb\xf7\x2f\xbe\x47\x64\x83\x5d\x63\xd8\x34\x06\x51\x5b\xfd\xc6\xa0\xa1\xd7\x4c\x5d\xe7\xf2\xb2\xf7\xc2\xc4\x74\x65\x46\xce\xa9\x2b\x9b\xba\x6e\xfd\x5b\x47\xb4\xa2\xc8\xe6\xf4\xf2\x65\x0f\x42\xf9\x98\x9f\x03\xb4\x2e\x7a\xec\x66\xc1\x98\x66\x22\x26\x55\x3a\xf4\xf2\x8a\x15\x45\x72\xc1\xec\x1d\xdf\x8e\x1c\x2d\xc9\x2c\x42\x75\xd7\x9c\x4a\x62\x8e\xc4\x44\xa4\x89\x4c\xbf\x93\xf9\x75\xc1\xe4\x0b\x71\x15\x5a\xfc\xb8\x05\xca\xf0\x15\x26\x17\x34\x64\xa0\x03\x7c\x2e\x59\xca\x84\xe2\x49\x56\xec\xf7\xdb\xf0\x4a\x9f\xf1\x2c\x6a\x12\xff\xe9\x2d\xe0\x6a\xd8\x4e\x77\x37\x51\x27\x17\x41\x10\xa6\x33\x93\x5d\x9f\x0b\x73\x7a\x01\x7c\x25\x2a\x98\xb2\x0b\x63\x32\x01\x1b\x35\x7f\xe4\x28\x6c\xda\x66\xa9\x3b\x9d\xab\x96\x41\xe0\xfc\x41\x87\x3a\x09\xb2\x9a\x51\x92\xa6\x15\x19\x52\xf3\x18\x1e\x82\x6b\x74\x0c\xcf\x66\x19\xe2\xde\x60\xcd\xda\x90\xc0\xfb\x7d\xb8\x69\x27\xd2\x7e\xff\xb0\x20\x69\x6e\x08\x38\x68\x37\x8d\xa4\xd6\x96\xb1\xc7\xee\xb9\x39\xaa\xf5\x01\x76\xb8\xad\xb0\x71\x70\x39\x2f\x3b\x1d\x67\xa2\x5c\x7c\x9f\x5f\x8b\x2c\x4f\xd2\xb7\x32\xbf\x90\xac\x28\x82\x60\x13\x25\x69\xfa\xe2\x4a\x9f\xb9\xbc\x50\x4c\x30\x19\xa2\x8d\xcd\x45\xa4\xab\x0e\x26\xc7\x5a\xff\x65\xd3\x6e\x7b\x0b\x29\xf5\xd7\xbd\x9d\x35\x9b\x80\x67\x05\x12\xb1\x60\xd9\xfb\xfc\x92\x99\x5b\xd5\xf5\x4f\xcd\x6f\xea\xb3\x27\x52\x2b\x26\x9a\xee\x35\x7a\x5f\x6f\x22\xd8\xcc\xa1\xc6\x7e\x56\xef\x5d\xec\xc5\x5d\x5f\x82\x35\x1f\xd2\x89\x5e\x74\x91\x86\x4b\xd0\x48\xe8\xb3\xf5\x8b\x87\x9d\xad\xa7\x8f\x1f\x75\x1f\x93\x10\x31\x18\xc2\xa1\x59\x07\x22\x76\x6d\xa8\x42\x7d\xf3\xa9\x27\xc3\xa4\x2a\x06\x9d\x7e\xf9\x70\x59\xfc\x98\x12\x41\x51\xe3\xd6\x73\x65\xc3\x24\x13\x4e\x67\x68\x2b\x33\x44\x90\x39\xb2\x80\x15\xd1\xe7\x12\x22\xf0\x08\x13\x9a\x93\x9c\xce\x90\x25\xa8\x88\x20\x7d\x6e\xea\x42\x32\xbf\xb9\x45\x73\x92\xd0\x19\xb2\xe7\x20\x22\xb6\xa5\x36\xf7\xde\x4c\x32\x18\x59\xf5\x53\x9f\x7f\xba\x98\xa1\x4f\xd6\x1e\xe0\x6d\x09\xdd\xb1\x91\x5c\x20\xe2\x75\x8d\xd5\x88\xa0\x26\xf9\xb0\x09\x35\xc1\x40\x04\xb5\x51\x07\x92\xda\xa8\x8b\x20\x22\x4e\x83\xc7\x44\x04\x35\x59\x4c\x53\xe6\x1d\x33\x9e\x26\xfa\xe7\x4a\xa9\xcd\xb3\x0b\x63\x39\xd4\xdf\x85\xfb\xe1\xe1\x22\x22\xa8\xc8\x17\x97\x4c\xbd\x4d\xd4\x0a\xf9\x52\x3f\x6f\xf2\x7b\xdd\x72\x95\x71\xed\x16\x9a\x07\x54\xce\x05\xac\x6e\x22\xf7\x9a\xe0\x46\xbe\xb7\x52\x81\x9a\xf1\x39\x9e\x8a\x19\xd7\xbc\x63\xca\xd8\xe6\x15\xf0\x8f\x10\x23\x0b\xf2\xe2\x23\xfd\xf1\xb9\xa9\xa5\xbf\x1a\x62\xc6\xf1\x06\x8f\xb4\xc5\x8c\xa5\x4a\xb8\xd8\x5c\xad\xb1\x27\xde\xd8\xe5\xd1\xe9\x4b\x3d\x1c\x39\x07\xf7\x92\x63\xdd\x48\xd3\x8d\x9c\x43\x84\x6f\xec\xac\x7a\x05\xe5\x95\x5b\x64\xe5\xe7\x98\xe0\x4a\xe3\x59\x79\xf9\x1e\xbf\x88\x03\xaa\x88\x46\xe4\xe2\xda\xe8\x51\xcf\x64\xfb\x6f\x9c\x09\x11\xb0\xfb\xbf\xba\x7b\xf7\x57\xaa\x03\x59\x3d\x59\xb3\x36\x27\x3c\x65\xa5\xbc\x33\x62\x70\xe5\xf3\xfd\x1c\x70\x16\x0d\x42\xbf\xfa\x14\xc5\x3d\x34\xf0\x53\x62\x84\xb0\xe6\x09\xea\x36\x6b\xfd\x89\x79\xf1\xc8\x11\x1f\x59\x92\xf1\xa3\xd1\x03\x69\xe5\x93\x47\xb8\x72\xbf\x36\x36\x21\x63\x3f\xe2\xba\x91\xf1\xdd\x8d\xdc\xa9\xf1\x5d\x39\x74\x90\xc6\x32\x04\xd2\xce\x13\x2d\xec\xf4\x47\xc4\xfa\xfa\x03\x27\xb6\xa5\x3b\xcd\x92\xc6\xfd\x11\x29\x40\x66\xd7\x5f\x5b\x99\xe9\x3f\x8a\xc1\x1f\xb6\x4e\x38\x7c\x38\xd1\x41\x7f\x9b\x38\x35\xfa\x0b\x02\xc3\xf7\x47\x64\x9d\x0b\x05\xb5\xaf\x19\xbb\x84\xea\x7c\xcd\x5c\x01\xf7\x8d\xdc\x8f\x61\x96\x2f\x92\x0c\xc5\xfd\x51\xd9\x32\xa3\x80\x24\x91\xfc\x85\xdd\xee\xf7\x2c\x4a\x32\x65\xbf\x16\x4a\x66\xf0\x19\xea\x39\x60\xdf\x82\x80\x77\x39\xed\x8f\x7d\xcd\x38\xde\xa1\x15\x4f\x53\x66\x4e\x64\x78\xbe\x88\x17\xfc\x9c\x67\x5c\x39\x41\x21\x81\xd7\x8d\x1b\x2d\xa5\x0d\xbb\x76\x22\x2f\x98\x9a\x78\xef\x03\xab\x68\xad\x59\x0e\x56\x84\x28\x86\x07\x09\x86\x57\xf6\x45\x02\xff\x2d\x5a\xe7\x26\xdb\x8c\xeb\x52\xb5\x7a\xbb\xb1\x4e\x43\xc9\x05\x38\xde\x39\xad\x1c\x7a\xf9\xfa\xed\x2f\xef\x91\x79\x69\xbb\xbf\x9d\xa9\xb9\x9e\xb4\xe6\x16\xdf\x88\xec\x56\xf3\x51\xe8\xfd\x8b\xbf\xbd\x7f\xf6\xee\xc5\x33\x7b\xf7\xa3\x5f\x67\xef\xf7\x9a\xa5\xe2\x85\xa5\xe4\x2f\x52\xae\x92\xf3\x0c\x9e\xb7\xf3\xa6\xb7\x09\xf1\x2e\xd1\xeb\x6f\x6f\xb8\x2d\x32\x96\xc8\xf7\xe6\xf8\x09\x0b\x2d\xf6\xda\x8c\x82\x29\x97\xec\xa3\x96\x46\x9b\x12\x93\xf1\xc8\x87\xd9\xaa\x76\xba\xd1\x82\x6c\xfd\x4c\x43\x9c\x92\x5c\x7c\x97\x6d\xa5\xfb\xbd\x21\x92\x2d\x63\x09\x2e\x18\xf6\x1a\x4b\x78\x18\x92\x99\x08\xca\xa3\x25\x17\xe9\xf7\x6f\x5e\xbd\xce\x53\xa6\x99\x83\xea\x45\xf2\x30\x54\x54\x44\xf9\xb5\x60\xf2\x7b\x7b\xcb\x06\x77\xb0\x50\x97\xec\x36\xcd\xaf\x05\x22\x0b\x10\x2f\x55\x47\x91\x75\xbe\x2d\x98\x29\x94\x1d\x2d\xb4\xc9\xe1\x99\xa8\xfb\x8a\x79\x91\x56\xee\x28\x55\x23\xa0\x11\x66\x11\x59\xea\xb2\xd8\xdc\x53\x04\xcb\xc3\xa3\x7b\xcc\x24\x3e\xbd\xfb\xf7\x86\x36\xba\x93\xb6\xc8\x12\x94\x2d\x8f\xee\xb1\x93\xdc\xd9\x06\xf7\xe9\xd3\xf8\xd1\x69\xd3\x94\xf2\xd0\x20\x45\x3e\xe1\xfc\xff\x6f\xb4\xa2\xf6\x2c\xab\xb0\x45\x7a\x11\xee\x31\x05\xb4\x51\xc6\x5e\xd7\xab\x2f\x01\x3a\xc6\x98\x48\xc2\x35\x73\x9c\x37\xd8\x04\x7b\xe5\xd3\xd8\xd3\xf2\x86\x3d\x8d\xe6\x10\xab\xab\xe2\x12\x04\xfe\x86\x8e\xf6\xfb\x90\x3b\x6c\xaa\x63\x56\x3f\x0c\x9d\xee\x31\x40\xb4\x67\xe2\xbd\x08\xe0\x86\x6c\x7d\x8c\xbd\x95\x87\x67\xc3\x2a\x34\xf0\x56\x90\x32\xa2\x8f\x70\xc8\xfb\xed\x37\xaa\x1e\x36\xc4\x07\xaa\x17\xcd\x79\x1b\x69\xb6\xc8\x9c\xe6\x07\xd7\x42\xac\xda\x64\x7c\xcf\xea\x55\x1b\xe4\xf4\xb4\xe6\x13\x3a\xf0\xda\xbb\x7a\xe5\x05\x56\x70\x96\x09\xc0\x27\xb0\x4b\x70\xb7\x01\x4a\xdf\xea\x52\x47\x1e\xe9\xd0\x15\x78\xce\xfb\x85\xaf\xea\xac\x4d\x75\x87\x2f\x74\xd5\x55\xb6\x1d\xc3\xf9\xc1\x66\x1e\x1b\xd1\xa2\x81\xa9\x77\xd9\x03\xb1\xe7\x45\xdd\x34\x13\x82\x45\x10\x13\x0d\x0d\xdc\xa4\x80\xf5\xe3\xea\x5f\x4b\xf3\xb0\xa8\x0d\x0c\xaf\x99\x21\x66\x9e\x13\x65\xad\xd8\x7d\x36\xdc\xee\x83\x02\xcc\x33\xc2\x71\x10\x34\x1b\xe5\x73\xc2\x09\xf3\x2d\xae\x3b\x6b\x44\x89\x73\xd2\x30\xa7\x74\xc5\xc7\x68\x2c\xa3\x29\xd6\x02\x1d\x71\xb6\x9c\x2e\x73\x40\x0d\xc4\x7e\x02\xd6\x34\x97\xd0\x24\x71\x3a\xd3\x4f\xc1\x41\xd0\xad\xd6\xf0\xc9\xa0\xeb\xb7\x45\x30\x7d\xdb\x92\x1e\x9c\xd3\x6f\x77\x46\xbb\xe9\x58\x58\x57\x3e\x08\xea\x70\x6a\x5e\x72\x49\x0e\x4c\x50\x0f\x6d\xd9\xab\x66\x2f\xcf\x9a\x1f\x11\x2f\x74\x33\xd3\xc3\x24\x4d\xc4\xe1\xc9\xd5\xf3\x6a\xa6\xe6\xcb\x1f\x99\x57\x4d\x0f\xce\x6c\xca\xce\x70\x2a\x07\x47\x99\x2e\x6f\x1c\x2e\xba\xca\x1f\x44\x83\x84\xf2\x06\x11\xe3\x82\x78\xba\xb7\x38\x21\xc6\xca\x7d\x17\x0a\xe9\xfc\x43\xdc\xf9\x81\x67\x77\xd6\xd2\xf9\x1d\x18\x97\xe5\xe7\x77\xd5\xd2\xf9\x1d\x7d\xd9\x0a\xf1\x96\x38\x8b\x63\x17\xd2\x16\x80\xa9\xdb\x90\x45\x1b\xbe\x31\x35\x5b\x46\xc5\x87\xae\x78\xab\x5a\x0b\xa5\x5a\xb9\x66\xf1\xda\x3a\xdf\xf8\xe0\x40\x08\x3b\x49\xa5\x48\xae\xf8\x45\xa2\x72\xb9\xdf\xa3\x77\x2c\x59\xa8\xd7\x26\xc8\x8c\xe6\xe9\x5d\x96\xbb\x14\x1a\x04\xc8\xe4\x9e\x2d\x24\xdf\xa8\xa3\x65\xce\x3a\x73\x20\xec\x4e\xd7\x6c\x0d\x03\x7f\x84\x5e\xba\x8b\xe9\xb8\x24\x56\x86\x8f\x17\x04\x0c\x6c\xb1\x77\xeb\xc5\x8f\x50\xef\x52\xed\x65\xc2\x8e\xc0\xa8\x20\xbb\x1f\xa6\x8b\x29\xdc\x8c\x67\xa1\x8d\xad\x1a\x9b\x8b\xf2\xa5\x17\x8f\x95\xf0\x03\x07\xdd\x89\xfc\x9a\x03\x73\xb1\x08\x7d\x4f\x1d\xff\x85\xa6\x92\x54\x4a\x98\xff\x4d\x83\xee\x2a\x67\xde\xa4\xc0\xf1\x7f\xcb\x84\xd8\x8d\x62\x22\x3d\x12\x01\xad\xb7\x68\xb8\xc9\x28\xc2\xf1\x8e\x41\xa4\xd9\x6e\xfa\xac\xa6\x12\x3c\x99\x62\x05\x16\xd3\x92\x28\xc9\x3b\x77\x58\x1d\x08\xeb\xe4\x9f\x1f\x8a\xcf\x4f\x08\xf2\xfd\x84\x3e\x14\x9f\x7f\x06\x49\x9a\xc9\xbc\xcf\x21\xea\xd0\xe1\x15\x2a\xdd\xc3\xcf\xb5\x6d\xb1\xc0\xe3\xe4\x54\x84\xa7\x8f\x9e\x1a\x5b\xec\xf8\xf4\x4b\x4f\x2c\x28\x6a\x31\x5a\x4b\x31\xfa\x68\xd7\xb2\x62\x98\x7b\x07\xb2\x35\x78\x79\x11\x64\x65\x64\xc0\x1b\x0a\xe2\x15\x24\x0a\x13\x2f\x47\x61\x22\x4a\x73\x69\xb0\x08\x75\xbf\x4f\x30\x9e\x6c\xa3\x67\x37\x3c\x2f\x68\x4e\xb6\x96\x79\xeb\x32\xf9\x16\x61\x12\x6e\x9d\x57\x73\x41\x98\xe6\x13\xb7\x91\x51\x2a\xc1\x14\xbe\xc2\xd5\x6f\x50\x8c\x82\x1e\x66\xa4\x13\x79\xe1\x15\x7b\xac\x53\x92\x2c\xeb\xea\xc3\x9a\x94\x23\x47\x45\xb7\x91\x89\x3b\x0a\x4d\x8d\x7d\xbb\xf8\xb6\xfe\x76\x63\xa2\x5b\xbd\x16\x7f\xd0\x2e\x0e\xe6\x70\xb3\x16\x5f\x58\xbb\xf8\xa3\x2f\x8d\x5d\xbc\xb9\x28\xdb\x4a\xf1\xe6\x40\xe0\x9e\x06\x03\xc9\x79\xc1\x36\x2a\x97\x05\xdd\x39\x4b\x24\xac\x1c\xa9\x4c\x9d\xf0\xb3\x2c\xb7\x87\x4b\xd8\x80\x43\xc7\xb1\x39\x0d\x59\xc3\x85\x1f\x9e\x19\x8c\xb6\x32\x6b\xdc\x19\x89\x19\x65\x3a\x87\x84\x8c\x16\x61\x63\x9c\x7a\xa9\xac\xc9\x7a\xea\x6c\xd7\xd4\x33\x62\x7b\xb6\xb0\xb8\x51\xf1\xa0\x52\x57\x6e\xab\x81\xaa\x2c\x78\x4e\xd8\x58\xca\xb3\xc4\x1a\x5e\xe6\x44\x50\xb7\xc6\x92\x15\x79\x06\xcf\xe8\x82\xe0\x75\x00\x4a\x07\x9f\xee\x5b\xd4\x2a\xda\x8a\x62\xc5\x97\x2a\x64\xd1\x72\x9b\x2d\x79\x96\xb1\x14\x2c\x6b\x1f\xe1\x65\xcc\xea\xad\xd6\x76\x9b\x66\x3d\x8e\x35\x0a\xbe\x6f\xc7\x5b\x9c\x54\x71\xb5\x21\x74\x0b\x58\x9f\x54\x64\xc6\x81\x49\xf5\x55\xed\x49\xa1\x51\xb8\x5e\xf1\x0b\xa6\x7e\x91\xbc\xf3\x1d\x8c\x8e\x45\x23\x3c\x04\xdf\x83\x3b\xbd\x0a\x7c\xda\x36\x35\x74\x8c\xdc\xe7\xc8\x42\x90\xbd\xd6\xd4\xf6\x48\xf1\xc6\x3a\x63\x73\xcf\x4b\xd9\xa3\xd2\xe6\xb1\x39\xb3\x34\xa1\xf3\x5a\x11\x80\x7a\x3b\xb3\xf4\x31\x03\xad\xaa\x02\x6b\xda\x1f\xf6\x8a\xb9\x63\x0c\x84\xdf\x3d\x0a\xde\x35\x0a\x02\xce\x09\xc2\x0d\xc6\xa3\x20\x9a\x5a\x3c\xd0\xd2\xd7\x72\x80\xb5\x84\x60\x95\x88\x34\x63\xb2\xa0\xb3\x79\xc9\xbd\x65\x6e\x3c\x59\xdc\x08\x9d\xe2\xd7\x32\xb8\xb6\xab\x50\x0d\xbc\x18\x0c\xaa\x69\xd8\x91\x66\x61\x1b\x18\x65\x5c\x12\xbf\x27\x28\xdf\xc0\xa7\x46\x2d\x63\x5b\x6a\x27\x39\x4f\x06\xbf\x21\xbb\x42\x4d\xd4\xac\xdd\x57\xfd\x16\x48\xc3\x3f\xd2\x8a\x58\x2a\x08\xec\x03\xc9\xa5\x07\x62\xae\x41\xfc\x70\xbb\xa6\x51\xdd\x3f\xfa\xca\x39\x2a\x3d\x76\x87\xe3\x93\xf6\xe1\x78\xa7\x6d\x18\x2c\xe1\x2f\x97\xd6\x3c\xc9\xd2\xb0\xdb\x01\xb8\xc1\x81\x93\xca\x4d\xa9\x76\x58\x02\x6c\x32\x7e\x4c\x54\x6f\x45\x70\x68\xaa\x72\x09\x8b\xda\x96\x50\xbf\x15\x87\x93\x55\x4a\x64\x9c\xd2\x6c\xa3\x95\xe7\x97\x25\x97\xf3\x66\x3a\x7e\xc0\x1e\xee\xd8\x4a\x04\x99\x4e\x1a\x7b\x4a\xe1\x9d\x7b\xfa\xb6\xea\x56\xcd\x4b\xf3\x7c\xbe\x35\xbb\xee\xf7\x89\xfb\xc4\x21\xc3\x6d\xb3\xba\x6a\xc2\x4a\x39\x98\x98\x0f\xa2\xba\x61\x62\x28\x2d\x26\x1a\x99\xbb\xda\xca\x43\x08\x19\x67\x9a\x0c\x02\x55\x11\x67\x8d\xb3\x35\xa5\xae\xfa\x6a\xa4\x10\xef\xf7\x5d\xbd\x63\x4c\xea\x03\xc7\x18\x4e\xad\x99\xff\xf4\xd1\x3d\x36\xb7\xfb\x2d\xee\x1e\x59\xac\xd7\x4b\x34\x2f\x6a\x30\x6a\x68\x80\x61\x52\x4b\x72\x9f\x47\xf3\xc3\x75\xc9\xa7\x5f\x1e\xb8\xe5\x77\x06\x39\x73\xbe\x21\xb5\x17\x82\xaf\x66\xfd\xa2\x3e\xad\x58\xb4\x58\x25\xf2\x99\x0a\x47\xb8\xe9\xdb\x36\x70\x3e\xdc\x63\x00\xdc\xe3\x51\x57\x94\x4e\x50\xab\x7a\x7a\x1f\x3f\x4a\x52\x23\xd0\xbc\x0d\x32\x5f\x9b\x5e\x7a\xab\xa4\xe8\x89\x5c\xf5\xce\x19\x13\x3d\x27\xcd\x35\x34\x77\x1d\xf5\x7d\x9b\xce\xbd\x2d\x14\x16\x3a\x82\x52\x5a\x77\xec\x94\xeb\x9e\x15\x88\x91\x11\xf8\xfa\x41\xc9\x7c\xbf\xef\x0b\x1c\x04\x87\x35\x84\xd7\x0a\x69\x57\xf7\x0c\x69\x02\x52\x6a\xbf\x59\x3f\xcb\x57\x9c\x35\x0a\x35\x0b\x80\xe3\x27\x14\x28\xcb\xbe\x87\x12\xba\x29\xd1\x19\x27\xa7\x1e\xcf\xb4\xfe\x8c\x73\xdb\x01\xc3\x3b\x41\xf3\x12\x46\xd2\x59\xdd\x07\xec\xd4\xff\x11\x27\x75\x13\x92\x26\xa5\x7b\x03\x7f\x4b\x16\x74\x36\x27\x19\xed\x8f\xc9\x92\x0e\xc7\x5e\x44\x9f\x10\xef\xb2\x20\xd8\x06\x41\x08\xb9\x5b\x17\xf2\x6b\x41\xb7\x55\x60\x22\x1c\xeb\x4a\x64\x51\x45\x58\xdc\x84\xb8\x65\xcb\xe3\xcb\xb0\x9f\xb9\x7b\xd4\x45\x98\xe2\x49\x46\xfb\xa3\x49\xfd\xd6\xda\xa2\x7a\x67\x6d\x62\x6e\xce\x6c\xe9\x02\x46\x35\x19\x0c\x96\x5f\xab\x09\xde\x06\xc1\x76\xb6\x9c\x47\x72\x2b\x42\x3c\x81\x0e\xeb\x5a\xe5\xd6\x58\x88\xcd\x0c\x9a\xae\xd1\x92\x52\xea\x03\xc1\x61\x40\xc3\xa4\xc8\x0c\xce\xe8\xb2\xc9\x7e\xdf\x97\x38\x08\xba\xea\xc8\x46\x4b\xa4\xdd\x04\x2c\x49\xc3\xcd\xda\x43\x17\xe9\xa3\xcb\x21\xb2\x48\x1f\x59\x34\xaa\xe8\x76\x7c\xdb\xa5\x71\x10\xd2\x07\xf9\x72\x2b\x9c\xe8\x02\x2f\x33\x50\xef\xa6\xd5\x3a\xc4\xbb\x92\x47\x82\xdd\xa8\xf7\x7c\x71\xd9\x71\xd5\xf8\xf8\x65\xa4\xe1\x18\xa0\x70\x78\x17\xd9\xd3\x4b\x8f\x27\xe2\xf0\xd5\x53\xd0\x4d\xcf\xc4\x70\xec\x5f\x5b\x12\xf3\xc9\xc2\xb0\x48\xba\x47\x33\x7e\x4c\xc6\x7d\x5a\xad\xda\x7e\x9f\xed\xf7\x45\xb8\xc1\x25\x59\xf9\x62\xd5\xb6\x11\x8b\xce\x4d\xd9\xde\x7d\x02\xf8\xd5\x73\x07\x36\x48\x71\x95\x31\x8a\xce\x8d\x1a\x0c\x11\x1e\xd9\x4f\xda\x1f\x11\x1e\x31\x71\x05\xbe\x54\x51\x22\x2f\xae\x34\xa2\xf3\xe8\x8a\xc9\x02\x9c\x88\x51\xfd\xa3\x30\x85\x72\x41\xd7\xba\x6c\x9a\x3a\x83\x28\xfc\xce\xc5\x82\x99\x8f\xe5\x12\xfe\x9a\xc8\x10\x8d\x32\x26\xe9\x59\x96\xb9\xd4\x02\x92\xd9\x9a\x2b\xf8\xd8\x48\xb6\x61\xa2\xd9\xae\x4d\x7b\x23\x16\xcd\xb6\xb2\xaa\x89\x43\x8e\x67\x36\xd7\x03\x3d\xe7\x22\x6d\x3f\x2d\x7d\x40\x64\xed\x55\x0f\x57\xb8\xc7\x0d\x99\xad\x82\xde\x22\x00\xe0\xe2\x3a\xed\xf0\x37\x39\x41\x90\xb7\x4a\xb9\x7c\x58\x27\x50\xf4\x48\x17\xdb\x75\x52\x5c\x76\xc4\x80\x1b\xc1\x81\x74\x8f\xff\xc8\x43\x7c\xe7\xba\xef\x54\x81\x5e\x4d\x1a\x06\x57\x36\x0f\x45\xeb\x49\xea\xa5\xc0\xe5\x1c\x35\xa7\xc2\x3d\x17\xec\x7c\x7c\x60\x8c\x0f\xb9\xe7\x7c\x97\xef\x7d\x1d\xf1\x8b\x53\x11\x19\xcf\xe7\xa8\xe9\xc0\x36\xe9\xf3\xfd\x9e\x87\xc2\x3a\x4b\x63\x13\x05\x4d\x85\xb2\xf6\x72\x5e\x26\x3c\x63\x69\xef\x9a\xab\x55\xcf\x94\xea\x2d\xf2\x94\xf5\x20\x94\xa4\x71\xbb\x76\x8d\x1b\xff\x65\x51\xa9\x9a\x84\x9d\xc8\x3d\x3a\xb2\xa3\x0e\x91\xd2\x93\xdf\x98\xed\x83\x2a\x22\x34\xd8\x22\x3d\x08\x2a\x8c\x6f\xac\x51\x8b\x48\xcf\x4f\x96\x72\xc2\x22\x5e\x80\x9a\x0a\x90\xc6\x38\x22\xa9\xfc\xa7\xb3\x37\xaf\x3b\x1e\xed\x74\xae\x4c\xbe\x5f\x93\xb9\x33\x0f\x29\x10\xaa\x20\x65\x05\x28\xa4\x79\x2e\x9c\xda\xa3\x4a\x70\x3e\x3f\xa6\x34\x7c\x93\x25\xcf\xcc\xb5\x16\x43\x51\xec\x2f\x92\x71\xc1\x5e\x7b\xa5\xeb\xdf\xc4\xbc\x18\xe0\x67\xfa\x29\xa4\x50\xc9\xe2\xd2\xa4\xc3\xa7\xf3\x66\xb7\x25\x61\x09\x34\x58\x5c\x42\xaa\xd9\x47\xc3\x42\x3e\xd0\x98\x7a\xfa\xd8\xf9\x43\x3d\x7e\x7a\x07\xe6\xdb\x25\x09\x82\xbe\x0c\x15\x9e\x1a\xaf\x84\x58\x41\x4f\xf7\xa8\x36\xef\x12\xac\x4e\xfe\x19\xc2\xe3\x9f\xfa\x9f\x0f\xe9\x87\xc1\x87\xe1\x87\x68\xfe\x79\x8c\xa7\x1f\x4e\x3e\x9c\x9c\x70\xf7\x9c\x01\x74\x73\x8f\xd6\xee\x9e\xa1\xab\xa9\xa7\xe3\xfd\x70\x32\x30\x0a\xdd\x01\x3a\x41\x03\xe5\x2b\x48\x4e\x06\x90\x11\x1b\x20\x3e\x5c\xf6\x07\x3f\xda\xe4\x82\x59\x07\xd9\xea\x12\x09\x08\x5c\xc6\xb9\x3c\x73\x2e\xa5\x0d\x6f\x73\x82\x98\x4a\x2e\xf4\x9f\x9b\x0d\x97\x10\x43\x62\x29\xf3\xb5\x16\xe2\x8c\xf4\xc6\x97\xc3\x75\x9e\xf2\x25\x87\x18\xfc\x62\xc1\x4c\xda\x56\x1c\xa4\x66\x49\xa1\xaa\xb2\xfa\x77\xbe\x70\x63\x58\x27\x37\x43\x1b\xe3\xa2\x70\xce\xbb\xc3\xf6\x40\x21\xd4\xbf\x75\xb0\x55\xf2\x76\x98\x2c\x8d\xbb\x2d\xbc\xc1\x91\x80\x5b\xeb\xfc\xc8\x72\x5a\x6f\x25\x92\x93\x84\xd6\x21\x43\xd8\x34\xf4\x68\xa6\x7d\x70\x1b\x7d\x10\x08\x37\x15\x3a\x7c\x19\xe6\xfe\x6d\xcf\x18\x61\xa2\xa8\x8c\x94\xe4\xeb\xd0\x7b\x9b\x3f\xc7\xb8\xa9\x4b\x24\xe2\xa0\x54\x3e\x18\x63\x6c\x4d\xe6\xc9\x4c\xcd\x83\x80\x57\x0d\x2b\xfc\x0d\x1d\x59\x4e\x6b\xa2\x33\xa9\x16\x31\x86\x0b\xf0\x1d\x06\xf6\x76\x0a\x75\xa6\xfa\x9f\x78\x36\xaf\x3c\x46\x67\x62\x8e\xe3\x2a\x67\x00\xc1\xa7\x45\x2c\x40\x5d\x94\xe0\x38\x01\x64\xf9\x97\xbc\xb3\x8f\x5d\xac\x98\x7a\x14\x0b\x78\x5a\xa2\xe8\x49\xb8\x2e\x38\xdb\x2b\xc9\x53\x26\x14\x76\xfb\xa3\x36\x88\xe9\x85\x02\xf7\x63\x0d\x98\x63\x91\x97\x13\xd4\x16\x09\x6d\x88\xc8\xca\x0a\x03\x0f\xcb\x14\x4c\x3d\x53\x4a\xf2\xf3\xad\x62\x21\x5a\x49\xb6\x44\x44\x62\x22\xa9\x88\xf4\x0f\x4c\x8e\x16\xd9\xe9\xaf\xd8\x14\x23\xc0\x74\x2d\xf2\x2c\x16\x91\xfb\x9c\xd6\x9f\xf5\xce\x8b\xcd\x86\x8c\x11\x22\x1a\xef\x75\xf5\xbc\x50\xce\x0b\x53\xf7\xa5\x3f\xa6\xee\xe3\x50\xa7\x09\x35\x93\x42\x97\xd5\x7f\xa6\xe6\x8f\x57\xee\x7f\x35\x3a\x30\x31\x8b\x22\xf7\x49\xf4\x6a\xe8\x31\xe6\x52\x91\x4d\xa2\x56\x90\x8f\x4e\xc0\x4f\x29\x72\x09\xb5\xf0\x3b\xad\x13\x75\xa9\x41\xfd\xb3\x8a\x3e\xc7\x28\x0f\xad\x0b\xa1\xdb\x88\x16\x72\xbe\xa2\xc3\xf0\xbc\xf6\xc6\x29\x17\x17\x86\xba\x6a\xda\x5a\x29\x88\x2b\x68\xc1\x95\x68\xf7\x23\x08\xcc\xe8\x21\x51\x7f\x68\x59\xeb\xd0\x38\xdb\x37\xdc\xcf\xbf\xa4\xc7\x38\x8a\x9b\xbb\x6b\xc9\x55\xfb\xe5\x69\xc2\xf5\xee\x77\x97\xbd\x67\xf3\x89\x55\x5f\x32\xb8\x23\xde\x11\x06\x40\xd9\x1b\x33\xe6\xac\x0b\x41\x8a\x36\x55\x1c\x2d\xa4\x68\x50\x05\xe6\x10\x7a\xeb\xff\xf8\xea\x7d\x75\xff\x95\x78\x40\xe3\x5e\x5d\xbd\x10\x14\x0d\x78\xa3\x40\xee\x15\x48\xf3\x75\xc2\x05\x45\x83\x1c\x93\xfe\x88\x42\x7c\x22\x97\x57\xb0\xc5\x56\x32\x84\x49\xbd\x7b\x80\x38\xd0\xc2\x5e\x6a\x9f\xf4\x40\x7d\xce\x92\x34\x3e\x14\x7c\x5a\x95\x8c\x87\x2c\x08\x27\xef\xd8\xc5\x8b\x9b\x4d\x88\xc2\x7f\xee\x27\x1f\x3e\x14\x9f\xe3\x10\x0d\xd8\x00\x61\x1a\xce\xfe\x39\x99\x7f\x8e\x51\xad\x62\x51\xd3\x94\x1d\xc2\x6a\xf6\x68\x8e\x6d\xec\x4d\x23\x03\xc4\x07\x2a\x5d\x58\x94\x90\x11\x84\x88\x86\x58\x24\xf2\xeb\x10\x0f\xbf\x7c\xfa\x98\x3d\xc1\x65\x19\xb7\x17\x0d\xef\xda\xf3\x68\x78\xc9\x1c\xf6\x83\x77\x60\xff\x7c\xf2\x40\x77\xee\xf1\xe9\x57\x5d\xba\xa7\x4a\x9b\xd0\xad\x7d\xf2\x9e\x18\x64\x37\x6c\xb1\x55\xb9\x34\xcf\x01\x9e\xb3\x5e\x52\xc5\xbe\x88\xec\x03\x15\x6a\x02\x33\xb7\x57\x7d\x68\xf7\x95\x53\x0d\x1f\xca\x9c\x5a\x4c\x80\x89\x6a\xd2\x2a\xa0\x59\xd8\xa4\xc8\x21\x96\xa4\xfd\x84\xd6\x24\x68\x1e\xab\x34\x13\xcb\xc5\xd7\x8a\xb7\x35\xc9\xad\x5b\x99\xd6\x08\x01\x75\xcd\x24\xbd\x14\x2d\xb4\x14\xf9\x56\x2e\xd8\x41\x24\x38\x17\xc6\x58\xe5\x97\x4c\x80\x65\x90\x37\x95\xad\x8c\x82\x4d\xdb\x28\xb5\x81\x5b\x69\xea\xd4\x9f\xdc\x23\xef\xdc\xa9\xee\xee\xd0\xc4\xb2\x86\x70\x6c\x2c\xe1\x5f\x3e\xd0\x90\xfa\xa5\xe1\x30\xbf\x30\x4a\xfb\x27\x98\x24\x34\x14\xe1\x53\x4c\x44\x38\x1e\x61\x6b\x49\x1d\x63\xb2\xa5\xb3\x11\x19\x93\x53\xf2\x88\x3c\x26\x4f\xc8\x53\xf2\x05\xf9\x92\x7c\x45\xc6\xa3\x39\x59\x68\xee\x6a\xab\x72\x44\xfa\xdd\x45\xc8\x78\x4c\xc6\xa7\x73\x2f\xa4\xf4\x7f\x39\xf4\xd9\x98\x08\x0a\xd7\xda\x7f\xc8\xf2\xc4\x7f\x91\xaa\x0a\xa2\x2d\x4e\x54\xc5\x22\x58\x42\xe3\xc5\x36\xb1\x29\x02\xeb\x73\x67\xbf\x47\x9b\x1b\xfb\x8e\xe2\x92\xe6\x77\x04\x1c\x73\x81\x39\xe1\x85\x20\xeb\xc3\x4e\x8a\x3a\xa4\xa1\x98\xa2\x42\x49\xa6\x16\x2b\x14\x0b\xb2\x75\x25\x5f\x2a\xb6\x2e\x9a\xa1\x0f\xeb\x72\x5b\x92\xd1\x3a\xa2\xdd\xd2\x7d\x83\x74\x92\x82\xf3\x9b\x0b\xa6\xb8\xa9\x1b\x48\xa7\x28\xe5\x57\x28\x4e\xc9\xca\xf8\xc7\xa9\x84\x0b\x26\xc9\xba\x8e\xec\xb6\x0a\x82\x15\xb9\x82\xf8\xef\x36\xf2\x2e\xb9\xad\x1b\xb8\x9a\x22\x78\x53\xe9\x8a\x5c\x68\xee\x4e\xb1\x35\x39\xaf\xeb\x5e\x04\xc1\x05\xb9\xa1\x2c\xb2\xef\x1a\x91\xeb\xba\xe6\xcd\xd4\x3e\x54\x05\x7e\xe4\xf1\x0d\x39\xa3\x2c\xca\x2e\xc8\x9b\xba\xfa\x59\x10\x9c\x91\x8f\x94\x45\xeb\x94\x5c\xd6\xc9\x1f\x83\xe0\x23\x79\x4e\x59\x54\xac\xc9\xbb\x3a\xf9\x79\x10\x3c\x27\x6f\x75\xb2\x79\xe1\x9b\xbc\xa8\x3b\x7b\x3b\x1d\xc5\x6f\xc9\x7b\xca\xa2\x6b\x99\x6c\xc8\xeb\x3a\xe7\xfd\x14\xe9\x24\x14\xbf\x27\xcf\x28\x8b\x6e\x32\xf2\xaa\x6e\xf2\x59\x10\x3c\x23\x2f\x75\x72\x41\x3e\xd5\xc9\x2f\x83\xe0\x25\xf9\x99\xb2\xe8\x13\x93\xf9\x2b\x2e\xfe\xca\x53\xb5\x22\xdf\xd5\x05\x7e\x0e\x82\x9f\xc9\xf7\xb4\xe9\xc7\x3c\x43\xfe\x72\xbb\x17\xa3\x60\x4d\x5d\xbc\x4a\x56\xf8\x91\x2b\x8d\x21\xa7\x8a\x59\x59\xad\x0e\x22\xa8\x7e\x34\x8a\x20\x0d\xf4\xfa\xd1\x2e\x2d\x13\x68\x51\x63\xad\xa5\x83\x42\x67\xb8\x07\xcf\x89\x99\x28\x41\x37\x19\xdc\x9f\x43\x04\xf9\xe3\x47\x73\x4c\x7e\x75\x43\x4e\xf4\x90\xb3\x48\xe6\xb9\x22\x4b\xb2\x0e\x82\x59\xe6\x61\x87\x9e\xe2\x8b\x20\xc8\x66\xae\xed\xe1\x4d\x51\x07\xc0\xb7\x7b\xe2\x05\xc6\xf3\x39\x39\x0f\x82\xcc\xa0\xc5\x77\xfa\xab\x01\x30\xc0\x9c\x3e\xa5\xb7\xd0\x54\x35\xa5\xae\xc6\x6e\x31\x9e\xdb\xf1\xf7\x29\x7d\x0d\x15\xf4\xaf\xae\xb2\xaf\xa1\xac\xdb\x17\x7d\x4a\x17\x50\xdc\x7b\x9f\xab\xab\xd6\xa2\x5d\xab\xf0\x6a\x39\x69\xae\xa3\x5e\x01\xf5\x3c\x4c\xee\x53\x7a\x0d\x55\xdd\x5b\x5e\x1d\x95\xae\x75\xa5\xfe\xb8\x4f\xe9\x27\x28\x0a\xaf\x94\x77\x94\xfb\x54\x95\x7b\x57\x97\x2b\xd6\x07\xe5\xde\x55\xe5\x2e\xeb\x72\xeb\xf4\xa0\xdc\x65\x55\xee\x4d\x5d\x2e\xbb\x38\x28\xf7\xa6\x2a\xf7\xca\x1b\x5f\x76\x50\xee\x15\xc6\xb5\xd7\x7b\xde\x92\x42\x36\xcd\xf0\x82\x15\x5a\xc7\xbf\xc2\xbd\x18\x55\x92\xef\x4d\x38\xa1\x94\x56\x61\xcc\x12\xdc\xf9\x3a\x54\x33\x4e\x61\x9e\xab\x78\x57\x92\x0a\x1f\xe3\xdd\x79\x7e\x73\xc6\x3f\x71\x71\x11\x23\xf3\x78\xe2\xf0\x3c\xbf\x41\xc4\x06\x13\x33\x8f\xce\x21\xa2\xff\xfd\xab\x4c\x36\xb1\xdd\x08\xf0\x70\x7f\x8c\xc6\xa3\xd1\x9f\x50\x49\x34\x66\x1c\x6d\xc9\xbc\xc5\x18\xa3\x11\x2a\x89\x8f\xc3\xf1\x6e\xed\xbe\x46\x25\x69\xe2\xb0\xd1\xf2\xa0\x18\xde\xa2\xfb\xde\xe5\xc4\xf6\x05\x49\xd4\x5d\x7c\x28\xd9\x15\x93\x05\x3b\x56\xad\xca\x6f\x57\x97\xf9\xf5\xf1\xba\x7e\x66\x49\xaa\x9d\x23\x72\x43\xfa\x76\x35\x64\x6c\x92\x57\x08\xfe\x36\x5b\xae\x81\xe8\xb7\xda\xda\x60\x0b\x26\x14\x93\x28\xde\xd5\x64\x2e\x46\x36\xf1\xb0\xb4\x7f\x14\x34\x6a\x78\x19\x47\x6a\x31\x91\x76\xd5\xd1\xc9\x87\x35\xce\x93\x82\xc1\x23\x98\xcd\x1a\x55\x72\x49\x0e\xb7\x7c\x73\x26\x96\x7e\x1f\xce\xc5\xab\x71\x38\x9b\xaa\x56\xd7\x7c\xda\x35\xbd\x19\x35\xeb\x35\xe6\xe4\xd5\xd2\x64\x98\x0d\xcf\x99\xba\x66\x4c\x1c\x54\x6d\xe6\x1e\xaf\x9f\xc8\x7c\xdb\xd1\x73\x23\xb3\x24\x3e\x5d\xab\x20\x63\xd3\x3a\x60\xe3\x95\xf6\xe6\xd6\x2e\xef\xcf\xce\xab\xd1\x9e\x57\xbb\xda\xc1\xcc\x0e\xea\x56\x73\xea\xae\xda\x39\x2b\x93\xc5\xae\x98\xc8\x6e\x8f\xd6\xb4\xd9\x65\x49\xba\x58\xbb\x5a\x3f\xb6\xed\xf0\x31\x93\x4e\x81\x5f\xf1\x2a\xa1\xc4\x93\x91\x8d\xd9\x2d\xea\x63\xb5\xa2\xb7\xaa\xf1\xde\x8b\xc4\x73\xba\x73\x24\xa9\x2e\x94\x85\x9c\x9c\x62\xec\xe8\xda\x22\xc9\x16\xa1\x26\x6e\xbd\x41\xcf\x2f\x83\x09\xc2\x08\x13\x14\xf4\xbe\xe9\x7d\x06\xcc\x43\xbc\xb3\x8f\xcc\xc6\xa6\x89\xb2\xb4\x57\x92\xb5\xa4\x79\x53\x40\x54\x2a\x78\x35\x17\xee\x07\x16\x70\x53\xea\xf0\xb1\x42\xdf\x0f\xa2\xcb\x5e\x21\x35\x54\x16\xdd\x2e\x77\x36\xf6\x09\x9c\x33\x35\xeb\xdd\x7c\x28\x07\xcc\x8a\x7d\x0d\x25\x73\x0f\x06\x64\x05\xf8\x65\xa1\x59\x33\xed\xaf\x12\xb5\x8a\x60\x69\x43\x76\x32\x3e\xfd\x7c\xcc\xbe\xc4\x27\x63\xf6\x94\xa0\x3f\x21\x3c\x91\x33\x35\x37\x2f\x84\x7e\x97\x14\xbc\x88\x39\x9c\x0c\x3f\xca\xfc\x3a\x1e\x91\x75\x72\x63\xe8\x39\x2f\x4d\x00\xfe\x76\x69\x2b\xa3\x74\x55\x41\x22\xd7\x24\x64\xd2\x59\x6f\x54\x57\x19\x7b\x55\xcc\xe9\xa3\xc1\xad\x21\x0d\xbc\xbf\x7f\xda\x31\x22\x71\xcc\x66\xaa\x01\xff\xed\x26\x14\x78\x4e\x65\x09\x21\x5d\x84\xf1\xad\xd9\x95\x70\xb5\xd2\x44\xea\x46\xaf\xb6\xfc\x47\xc9\x53\x54\xe2\x70\x69\xee\x64\xa5\x5a\x9a\x7b\xa0\xb2\xfb\x0b\x23\xcd\x7d\x79\x97\x34\x07\x1e\xbc\x56\xaa\x5b\x50\x11\x3e\x7a\x8a\x49\xa6\x2b\x3d\xc1\xe4\x61\xd2\x8f\x93\x55\xb6\x0d\x59\x65\x01\x82\x48\x96\x4b\xb2\xac\xb9\xf4\xc5\x14\x6d\x24\x5f\x27\xf2\x16\xc5\x0b\x10\x67\x4c\x88\xd3\x8d\xfb\x32\x77\x51\x40\x8a\xb9\x4a\x24\x4f\x84\xaa\x64\x18\x4a\xe9\x6a\x8a\xb8\x48\x99\x62\x72\xcd\x45\xa2\x18\x8a\xb5\x48\xd3\x84\xf3\xec\x28\x0b\x9e\xe5\xd2\x04\x89\x80\x70\xa9\x5e\x77\xf0\x0b\x3a\xd3\xcc\xf3\xad\x6b\x30\x83\x6b\xed\xe4\x82\xee\x4a\x72\x4e\x77\xe7\x89\x1c\x6b\x7e\xe5\x3c\x91\xa7\xf1\xae\x84\xb7\x39\x91\x3f\x18\x4a\xe9\x7a\xbf\x47\xe6\x96\x0d\xfc\xc2\xd5\x6b\x97\x7d\x4a\x53\xbc\xbb\x98\x21\xdd\xcf\x10\xfa\x16\xf9\x35\x9a\x53\x0f\xc5\x53\x4c\x1a\x05\xd6\x5c\xa0\x39\x1d\xb5\x12\x93\x1b\x34\xa7\xe3\xd1\x08\x16\xf9\x86\xa6\x43\xfd\xed\xde\x55\xb9\xad\xa5\xbb\x20\x08\x6f\xe8\xf0\x06\x93\xf3\x48\x8f\xbc\x76\xa6\xa2\x26\xc0\x47\x96\x28\xf6\xb7\xb0\xda\x6a\x37\x04\xfd\x09\x23\xfb\x58\xc5\x08\xe6\x76\x6c\x22\x1b\xb3\xf4\xd7\x34\xdc\xec\xf7\x23\x7c\xc7\x00\xae\xe9\xf0\xda\x0e\xe0\xf4\xbe\x01\x5c\x37\x07\x70\x84\x19\x05\x31\xb7\x19\x8b\xba\x66\x48\x7d\xa1\x47\x18\xa1\x47\xcc\xec\xc2\xbb\x6e\x7c\x16\x75\xa9\xd9\xe3\x2d\xd9\x79\x8b\x18\x8b\xc8\xfb\x45\x1a\xd8\x16\x8b\xa8\xf1\x9b\xd8\xc8\x81\xc2\x5e\xac\x22\xbf\x6f\x99\xbc\x8d\x45\x04\x7f\xcb\xd9\x7a\x8e\x89\xcc\x33\x16\x57\xa1\x71\xce\x13\x7d\x96\x5e\x90\x9d\x65\x9c\xaf\x30\xf1\xa1\x3c\xed\x9e\xed\xd1\x19\xa6\x49\xb1\x62\xa9\x9e\xa3\xf9\x7a\x7e\xe7\x4c\x71\x69\x43\x7c\xfd\xc1\x5e\xce\x13\xa9\xbb\x38\x4f\xe4\xdd\xed\x93\xb0\xb5\x39\xed\x7e\x00\x68\x18\x2c\x0a\x02\x68\x6e\xfc\xb2\x01\xc6\x16\xfc\x75\x81\xef\x3b\xa1\x9c\xc8\xb1\xbd\xab\x06\xb0\x85\xb7\x0a\x62\x83\xde\x25\x26\x07\x7b\xd1\x3c\xc2\xf7\x2f\xcc\xf6\xc1\x13\x39\x6d\x4e\xa4\xb1\x96\xb3\xfb\x51\xcf\xb4\x61\x6f\x46\xc6\x0f\x81\x71\x63\xd2\xa7\x25\xb6\x5e\xec\x55\x38\xed\xed\x81\xe4\x75\x2c\x42\x35\xca\xf8\xc5\xca\xbc\xaa\x1a\x6d\x92\x8c\x29\x65\x62\x3c\xb8\x53\x6b\x11\xa5\x38\x54\x24\x7a\x7a\x8a\xe3\x2a\x29\x81\xa4\x27\x18\xde\xfc\x08\xeb\x8a\x96\xa6\x47\xeb\x84\x0b\x4c\x64\x23\xaf\x60\x8b\x5c\xa4\x55\xae\xd3\x96\x1a\xe9\xcf\xbc\x76\x0e\xa2\x0d\xcb\xec\xcb\xe6\xf9\x15\x93\xcb\x2c\xbf\x8e\x5d\x24\x0c\xb2\x62\x7a\xac\xf1\x63\x82\xbe\x5d\xb3\x94\x27\xbd\x8d\xe4\x42\xb3\xe4\x00\xdf\x67\xa9\xe6\xec\x62\xc4\x6e\x92\x85\xd2\x8c\x1c\xa4\xbe\x35\x43\x8a\x77\xe7\xc9\xe2\xf2\x02\x08\x2c\x80\x36\x16\xb6\xc0\x99\x1b\xd7\x61\x11\x59\x12\x1f\x25\x77\x65\x8b\x0e\xe8\x43\xc0\x20\xe5\x41\x55\x43\xda\x36\x89\x64\x42\x0b\x06\x86\x22\xec\x2a\xd2\xa7\x45\x38\x95\x28\x16\x8e\xbf\x1c\xa5\xec\x02\xa3\x92\x98\xad\xeb\x83\x22\x39\x2f\xf2\x6c\xab\x98\x13\x57\xdf\xe7\x9b\x78\xe4\x80\x60\x18\x8d\x86\xcc\x4b\x12\xc1\xd7\xe6\xfd\x48\xf4\x99\xbd\xe3\xf9\xa8\xe8\x71\xb1\xe4\x82\x2b\xd6\xd3\x02\x11\x10\x1e\x8f\x4a\x74\x80\xe7\xe5\x1a\xc2\xc5\xc8\x24\xe5\xf0\x1c\x7a\x92\x72\xd8\x2f\x1e\x1b\xd7\x1b\xfd\x89\xf4\x6a\x56\x4e\xa7\x8c\x9f\xfe\x89\xf4\xbc\x49\xf7\x1e\x9f\x6a\x32\x4e\xea\x76\xcf\xf8\x27\xa6\x47\xba\xb9\xe9\xe9\x7f\x90\x97\xf5\xb6\x9a\xf3\xa8\x37\x3c\x7d\xb4\xb9\x69\x0e\xb2\x73\x89\xee\x1b\xa6\x3c\x18\xa6\xfc\x77\x0c\xf3\x3c\x91\xf1\xae\xb1\x0a\x5d\x0b\x98\xb1\xa5\x8a\x47\xe4\x3c\x57\x2a\x5f\xc7\x23\xa2\x60\x29\xbd\x87\xa0\xeb\x60\x5b\xbd\x51\x74\x5a\xb8\xb5\xaa\x83\xbc\xbe\x91\x1c\xc4\x03\xdd\x92\xe9\xf6\xd8\xfa\x19\x04\xec\xde\x94\x75\xc5\x3b\xd0\xfe\xd8\x9e\x85\xca\x4d\x9a\x5d\x4d\xdd\x30\xd1\x3e\x02\x36\xb6\xca\xb8\x77\x1a\x8d\x8b\xde\x62\x7b\xce\x17\xc3\x73\xf6\x89\x33\x19\x8e\xa2\xa7\x4f\x48\x6f\x14\x7d\x39\x86\x3f\x5f\x3c\x82\x3f\x8f\xbe\x7a\x82\x2b\x94\x35\x13\xf5\x4f\x81\x78\xd7\x0d\xb4\xa8\x5a\xf7\xc7\x04\x55\xe0\xc3\xa6\xbe\xbd\x5b\xbe\xfb\xf4\x12\x9e\xfb\x19\x1f\x01\xfc\x5d\x6d\x9c\xfe\x4b\xd3\x3e\xed\x9c\xf6\xd8\xce\xfb\xb1\xfe\xf7\xf1\x63\xd2\x1b\xe3\xde\x38\x1a\x3f\x29\x5a\xf3\x3e\x75\xe3\xfe\x83\xc3\x45\xdf\x56\x4f\x09\xf7\x9a\xab\x80\xe2\x1d\x1a\xfd\x09\xc5\x3b\xc0\x47\x34\x7c\xf4\xe4\x4f\x88\x48\x8f\x9e\x94\x04\x3d\xf5\x0a\x18\x84\xb6\x05\x86\x5f\x99\x02\x90\x78\x47\x89\x3b\x06\x70\xda\x1e\xc0\xa9\x5f\xbd\x7b\x04\x5f\x78\xed\x7f\xd9\x35\x80\x76\x81\x66\xff\xf6\x28\x76\xfd\xe6\x5a\x12\x57\xb7\xf1\xf8\x9e\x6d\x8d\x9e\x34\x8a\x8f\xee\x2b\x6e\xc7\x74\x77\xf3\x7a\xba\x9b\x1b\x57\xa9\x2c\x1b\xe2\xdd\xcf\xb0\x7e\x55\x60\x3b\x10\xf4\xb4\x88\xf7\x40\x17\x95\x87\x88\x78\xc6\x60\x67\x44\xbd\x05\xdd\xad\xc6\x31\x5a\x8d\x11\x59\x9d\xc6\x68\x75\x8a\xc8\xea\x51\x8c\x56\x8f\x10\x59\x3d\x8e\xd1\xea\x31\x22\xab\x27\x31\x5a\x3d\x41\x64\xf5\x34\x46\xab\xa7\x88\x14\xdb\x73\xf0\xa9\x1d\x37\x7f\x9e\x9a\x9f\xe7\x79\x7a\x3b\x8e\xd1\xc6\x7c\x9d\xea\xaf\x92\x64\x0f\x37\x9b\xb5\xec\x65\x5c\xac\x98\xe4\x0a\xc5\xe2\x5e\x3b\x98\x96\x2d\x9b\x36\x30\xbd\x89\x78\x92\xd5\x76\x30\x67\x2a\x5b\x9b\x77\x8f\x37\x59\x72\x4b\xae\xea\x2a\x6b\xaf\xca\x9a\xdc\x52\x16\x5d\x6c\x95\x62\xf2\x3b\xa0\xd7\xe4\xa2\xb6\x04\xdd\x06\xc1\x2d\x39\xa7\x2c\x12\xf9\x5f\x65\xb2\x21\x37\x75\xd6\x79\x10\x9c\x93\x6b\x6a\x6e\xf3\x5d\xc8\x64\xb3\x22\x67\x75\xee\x75\x10\x5c\x93\x37\x9e\x38\xfb\xb1\xee\xfe\xcd\x14\x01\xf4\x50\xfc\x86\x5c\xd6\x45\x5e\x25\x9b\x0d\x17\x17\xe4\x79\x5d\xf2\x72\xba\x88\x2f\xc9\xbb\x03\x51\x17\x20\x78\x87\xd5\xc9\x88\xbc\xbe\xf5\xc9\x42\x01\x11\xe4\x4f\x15\x11\x64\x26\x66\x43\x3d\xc2\x34\x3c\xb1\xb8\xfa\xb2\x63\xd3\x72\xf2\x5b\xba\xda\xef\xc3\xb3\x29\xda\xa0\xf8\xf9\xec\xe3\x7c\xbf\x5f\xcc\x3e\xce\xf1\x7e\x8f\x8a\x4d\x22\xd0\x31\x09\xee\xed\x43\xa4\xb7\xca\x64\x55\xe1\x83\xb1\x17\x66\xb3\x8f\x73\x52\xad\x99\x96\x45\xc1\xae\xd1\xc9\x67\x03\x2f\xbc\xd1\x7c\xf6\x4d\x10\x64\x6e\xe1\x2e\xf4\x77\x63\x95\xcf\x74\x4a\xbd\x76\x7e\x8f\x9e\xed\xa8\xb3\x75\x63\x34\xf2\x86\x73\x65\x4d\x60\x06\xc6\x5d\x55\xae\x80\x8b\xb7\xf2\xdf\xbb\x03\x06\xfe\x98\xe9\xc4\xf2\xcb\x56\x59\x38\x2a\xed\x66\x03\x9e\x3d\x87\x81\xdf\x46\x90\x64\xf7\xe3\x41\xc6\x98\x2c\x12\xe3\x1d\xdb\xc8\xb2\x89\xe4\x7c\xab\x54\x3b\xcf\xa4\x91\x55\xab\xb5\xd5\x58\x53\x8e\x66\xd2\xa9\x26\x22\xcd\xa4\x47\x9a\x9e\x34\x93\x1e\x6b\xd2\xd2\x4c\x7a\xa2\xa9\x4c\x33\xe9\xa9\x47\x70\x1a\x39\x55\xb2\x47\x82\x3a\x0b\x9c\x82\x0c\xa1\x0f\xc6\x66\xbe\x4b\x25\x85\x7c\x23\xb2\xdb\x6e\x9e\xdb\xf2\xd9\x63\xcb\x62\x8f\x0f\xe5\x91\x92\x00\x46\xfc\xac\xcf\x21\x88\x41\xf8\x4c\xff\xac\x58\x34\xa3\x75\x07\xc5\x79\x23\xbb\xd2\xa5\x43\x81\x77\xd0\x8b\x9f\x0f\x67\x99\xcb\xfe\xc9\x28\xab\x1b\x05\x9c\x65\xb8\x24\x06\x97\xe3\xdd\xa1\xa8\xa4\x8b\xbf\xa9\x52\x59\x96\xf1\x4d\xc1\x0b\x44\xae\x57\x5c\xb1\xb3\x4d\xb2\x60\x9e\x6d\xc8\xdf\x06\x0e\xb7\xec\x2f\x34\x8a\x1e\x3d\x61\x6b\x54\x92\x6a\x67\xb4\x4a\x8c\x9f\x5a\x41\xea\xa5\xd9\x2f\x56\x1a\x8b\xab\xfd\xd3\x16\xc4\x16\x77\xf2\xa7\x6d\x99\xac\x5d\xba\xcd\x92\x42\xfe\x7b\x76\xa3\x8e\xb6\xaf\x41\xe1\x3a\xf1\xca\xdf\xd1\x07\xd4\xa8\x3a\xb2\x75\xc0\xc3\xe9\xb0\x2c\x04\x0d\xb7\x63\xb1\xfb\xfd\xa5\x00\x94\xdb\x55\xe6\x4a\x2e\xac\x2d\xca\xa6\x7c\x97\xe5\x8b\x4b\x2f\xff\x5c\xff\x46\x2d\x7e\xe0\x7d\x85\xaf\x9a\x17\xc8\x80\x17\x78\xa0\x4b\xe0\xc3\x9d\x77\x8c\x9a\x77\xa1\x79\x82\xaf\xac\xbe\x57\x33\x07\x0f\xd4\xf7\xba\xb7\xa8\x8a\xa3\xca\xdf\x65\x75\x40\xa7\xf5\x21\xb6\x9c\xba\x87\x04\x51\xbc\x04\x95\x6f\x7d\x40\xaf\xea\x62\x9b\x29\x32\x94\x07\xc5\x1b\x77\x70\x27\xe7\x19\x4b\xab\x93\xbb\x4f\xe9\x3a\x08\xcc\x81\x6d\x33\x5f\x64\xec\x0a\x58\xf1\xce\x43\xdb\x16\x82\x28\x8f\xef\xf8\x66\x93\xb1\xce\x03\x9c\x89\xf4\xe5\x22\x17\xe0\xc1\xb2\xf4\x22\x42\x56\xaf\x4d\xc3\x41\xbe\xdc\x66\x99\x71\x7c\xf8\x58\xb7\xf1\x26\x08\xcc\x19\x5e\xf0\x4f\xac\x79\x72\xa3\x35\x4b\xf9\x76\x8d\xe0\x00\x87\xe7\x77\xa5\x82\x6e\xde\xba\xb0\x9a\x0d\x07\x97\x6a\xf2\xc6\xcf\xc5\xb1\x0d\x4d\x57\x17\x08\xc6\x0f\xae\x2e\x6d\xdf\x94\xea\x15\xb0\x3f\xc8\x14\x00\x84\xeb\xcf\x0a\x9e\x75\x92\x07\x3d\x44\x90\x85\x15\x22\xa8\x13\x52\x3a\xdd\xc1\x09\x11\xa4\xa1\xa2\xff\xb8\xb9\x23\x82\xac\x47\xbd\xa7\x78\x7f\x45\xdf\x05\xc1\x81\xba\x0e\x98\x89\x63\xfa\xba\xc2\x03\x67\x31\x43\x7c\x91\x0b\x2d\xc7\xb7\x4f\x5e\xd0\xe4\x3f\x07\x1d\x28\x79\x87\xc9\x4b\xcd\x95\xfd\xd1\x8e\x1c\x72\x3c\xb0\x9b\xeb\xa3\xfe\x14\x8b\x28\x39\xe6\x51\xd1\xec\x11\x58\xa0\x62\xf6\x7a\x4e\xb6\x35\x57\x02\x8c\x6e\x11\x35\x28\x6f\xb5\xad\xfa\x94\xa6\x41\x50\xcc\x6a\x0b\xda\x6b\xdc\x35\xc6\x14\xf8\x16\x8b\x97\xc6\xe5\x6a\xd6\xa8\x45\x10\xcc\xaf\xb3\xb2\x9e\xa0\x86\x42\x71\x17\x04\xe6\x9a\xd1\x2a\x0e\x77\xe7\x95\x97\x9a\x92\x8f\xfa\x57\x85\x27\x98\x54\x38\x19\xaf\x88\x2b\x14\x5f\x91\x65\x8d\x79\x71\xff\x86\x74\x22\x5c\x0b\x76\x7e\x19\x72\x66\x19\x2e\xa2\x71\x2e\x7e\x51\x92\x67\xf8\x50\x09\x7e\xb0\xfc\x45\x94\x25\xe7\x2c\x2b\xc9\x2b\x22\xc8\xcb\x3f\xc8\xa9\xb5\xde\x0f\xed\xe2\xab\x8e\xfa\xa8\x38\x4f\x94\xa7\x8f\x89\xb3\xe7\xa2\xa7\x9b\x9b\xde\xf8\x29\xa8\xa5\xa0\xe8\xbb\x24\xe5\xdb\x22\x66\x51\xb1\x4a\x36\x2c\xf2\x13\xc9\x5d\x07\xa1\xaf\x02\xb1\x17\xec\xe1\x87\x7b\x5b\x3d\x9c\xa1\x5a\x82\x1d\x3a\x5a\x71\x9e\xdf\x0c\x8b\x55\x92\xe6\xd7\xf0\x43\xf7\x85\xe6\x64\x97\x6e\xcd\x33\xe0\xad\x96\x5c\x72\x54\xac\x72\xa9\x4a\x4c\x50\x10\xaf\x34\xab\x82\x0c\x3b\xf3\x3d\x5b\xe4\xb6\xa2\xb1\xb4\x92\xb6\x26\xaa\x62\x98\xcf\x71\x78\x64\x1e\x75\x72\x62\xdc\x8c\xa1\x87\x37\x46\x0e\xc7\x95\xa6\x38\x84\xe4\xb8\xa7\xfb\xc1\xe8\x5e\x7d\x2d\x0a\x3e\xab\x68\xe1\x7d\x85\xdb\xa5\xdb\x60\xb7\xe3\x72\x25\xf4\x29\x0f\x08\xd5\x52\x1b\x7a\xdc\x82\xd9\xe1\xc4\x77\x68\xa9\x12\xdb\xde\x0b\x35\x97\x05\x51\xb0\x77\x0d\x4c\xf9\x12\x94\x13\xea\x2e\xee\xc8\xe7\xbe\xfc\x05\x7a\xd8\x52\x34\x6a\xff\x5b\x96\xa2\x34\xe3\x7f\x30\x47\xf8\xc7\xe7\xd0\xaa\xff\xef\x9a\x45\xbe\x55\x19\xc4\x39\xac\x97\xe8\x89\xde\xcc\x4f\xea\xcd\x1c\xa3\xf1\xe6\xa6\x57\xe4\x19\x4f\x6b\x0f\x8f\xa3\x06\x1a\x24\x2f\xce\x93\x70\x44\x7a\xf6\xbf\xe8\xf4\x11\x46\xb1\x49\x3d\x7d\xf2\x84\xf4\xea\x7f\x4c\x1e\x6e\xa3\xf5\xf1\x4e\x8f\x62\xef\x77\xd5\x34\xb1\x37\xa7\x87\x61\xd7\x1d\xfd\x3d\x00\xbb\xa2\x27\xb8\x41\x41\x1e\x34\xfa\xa6\x41\xea\xff\x20\x9c\x76\x90\x7b\x38\x5e\xff\x61\xe8\xb5\xea\xff\x4b\xf0\x6b\x19\xed\x1e\x08\xc1\xff\x2d\x3b\xea\xbf\x01\x99\x71\x59\x7b\x9d\xa6\x87\x0b\x70\xc1\x94\x26\xb3\x32\x29\x94\x16\x18\xbd\x76\x2e\x24\xbb\x9d\x3d\x1a\x8d\xe6\x87\x10\xe9\x28\x44\xf4\x01\x0f\xa7\xa6\x39\xa7\xd3\xfc\xba\x98\x9d\xce\xef\xa2\x54\xcd\x56\xa2\x67\xe3\xd1\xa8\xb3\x95\xc7\xf3\xe3\xe0\xeb\xee\xf4\x01\xe3\xbd\xef\xf8\x7b\x00\x71\x30\xcb\xe3\x33\x5f\x47\x46\xf4\x14\x7a\x8b\xff\x5f\xd6\xbe\xb5\x3b\x6d\x64\x59\xfb\xfb\xfb\x2b\x80\x77\x9f\x3e\xea\x9d\x32\x01\x72\xd9\x1e\x79\x69\xb1\x26\xb1\xb3\x93\x99\x38\xce\x0e\xc9\x4c\x3c\x1c\x56\x96\x0c\x0d\x96\x2d\x24\x46\x12\x36\x0e\xe8\xbf\x9f\xd5\xd5\x77\x21\x30\x99\x33\x5f\xec\x6e\xd1\x5d\x7d\xab\xbe\x55\x57\x3d\xc5\x09\xdd\xed\x4a\x73\xbc\x55\xa3\x47\xb6\xd8\xda\xae\xea\xec\x6b\xfb\xbe\x86\x68\x0e\x79\x74\x95\x1b\x5b\xdc\xb2\xa7\xb0\x43\xb7\xdc\xed\x1c\x93\x30\xbb\x3d\x78\xbe\xec\x90\xb0\xd8\x2d\x3a\x68\xf5\x39\xb0\x55\x87\x6f\xc3\x75\x79\xfe\x62\xcb\x2a\xd2\xa0\xb2\x84\xea\x4d\xc3\x66\x29\x79\xca\x74\x16\x41\xf7\xb7\xfd\x6c\x6b\xd2\xd4\x31\xac\x45\xc1\x59\x97\x2a\xbf\x97\xce\xbd\xc5\x5f\x97\xe6\x86\xb3\x7e\x44\x92\x26\xf7\x00\xb9\x1c\x8e\x97\x19\x5f\x0a\x85\xa2\x88\x3c\x25\x45\xdf\xd9\x60\x1e\xc6\xb1\x75\xc8\x78\xbe\x58\x35\xf0\x8c\x31\x4d\x13\x4c\xe0\xca\x42\x17\xab\xcf\xe9\x27\x36\xf7\xba\xcf\xa8\xa1\xf1\x3e\xcc\x66\xcc\xa2\x71\xcc\x0f\x2a\xdd\x03\x88\xbc\xa0\xd6\xd6\x56\x53\x99\x67\x8b\x55\xe3\xa7\x03\x2b\x63\xd3\xa9\x56\xe8\x5f\x8b\x55\xa3\x77\x68\x85\x0c\xbb\xef\xe8\x1e\xf1\xce\x7f\x40\x95\x1c\x4a\x75\x9d\xd4\xeb\x1d\x58\xa7\xdc\x54\x45\x44\x24\xb5\x12\xf4\x35\xd8\xbd\x1f\x94\xa0\x25\x1c\x8e\x64\x51\x72\x86\x10\xc9\x0a\x61\xf2\xb1\x8c\xa1\x60\xfa\xe8\x39\x67\x48\x25\xa9\xc0\x22\x5b\x4a\x82\x2b\x12\xf4\xca\x12\xa4\x50\xe3\x31\xca\x47\xcf\x6d\xd2\xc7\xbb\x29\xcb\xe4\x9c\xb4\x93\xc0\x5f\xa3\x9a\xf2\x3f\xfd\x69\x94\xe5\xc5\x11\x0a\xa9\x5a\xfe\x5a\x77\x58\xf7\xd8\xca\x71\x8e\x72\x89\xc7\xb2\xf4\x3a\x56\x16\xd9\x8b\x8f\xe4\xe8\x55\xdf\x5e\x5f\x09\x51\x9b\x7a\x73\xfd\xe9\x40\x73\xd9\xc3\xdf\x5c\x7f\x44\x7d\x36\x77\x24\xa8\x4b\x14\x5b\xde\x45\x08\x85\x37\x36\x82\xc6\x25\x21\x4b\x88\x0f\xd4\x79\x55\x04\x5a\xbb\xad\x7b\x7e\x54\xa1\x32\x87\x31\x21\x89\xae\x9a\x7e\xca\x8a\x7f\xf4\x29\x6b\x1a\xb3\x95\xdf\xea\x36\xba\x0d\xa1\x4c\xf1\x3b\xbb\xba\x8d\xf4\xdb\xc5\x60\x9c\xa5\x71\x8c\xf3\x0b\xbd\xd4\x18\xb5\xb0\x4b\xa5\x7d\xe1\x4e\xc0\xe7\x7c\x02\xb6\x48\x65\xec\x65\x9a\xcf\xe9\x42\xf0\x8b\xaa\xb6\x35\x7d\xbb\x2f\x75\x76\xb1\xcc\xf2\xc4\xfb\x8f\x93\x92\x0a\x95\x19\xd4\x93\xc9\x41\x79\x2a\x1c\x78\x1a\x85\x71\x3a\x53\xb6\x84\x25\xf5\x96\xc8\x88\x07\x42\x50\xff\xbd\x8c\x28\xf7\xa3\x81\x34\xbb\xcc\x0d\xd3\x25\x84\x24\x46\xc2\xcf\x72\xa1\xdc\xad\x79\x75\x9b\x1d\x5d\x52\x3b\x64\xd1\x7f\x03\x53\x2e\x05\x53\x8e\xa1\x99\x13\xb2\x54\x56\x18\x8f\x31\xa5\xe4\xc0\x8a\x59\x59\x8d\x7d\x93\xe6\xb1\xe3\x2d\xf9\x8b\xb6\x74\x01\xc1\xc8\x9d\x46\x47\x30\x72\x09\xb2\x16\x72\x39\xf2\x93\xb4\xf0\x6c\xb6\xa4\xee\x3a\x7c\xcc\x4f\x2f\x55\x86\xf8\x19\x87\x27\x37\x0c\x71\xa0\xf9\x76\x0d\x43\x24\xed\xc4\x4b\x39\x2b\x28\xce\xe8\xf1\x0b\x21\x6a\xfc\x77\xc4\x13\xd0\xf3\x17\x14\xe2\x60\x0f\x2c\x7f\x3f\x6d\x2f\x73\xf6\x3e\x7c\x48\x97\xc5\xd9\x74\xca\xc6\x85\x8f\x5f\x44\xd8\xd8\x71\x4f\x8d\xc2\x29\xfe\xce\x79\xcd\xb8\xc8\x8c\x1d\x9f\x5c\x45\x5b\x9e\x63\xd0\xdc\x1f\xd2\x1d\xde\xb5\x0c\x28\x90\x4a\x2f\x8d\xdb\x05\x6f\x82\xb6\x02\x57\xee\xa8\x78\xf1\x13\xc9\xf6\x0b\x74\xd1\xd4\xa5\x70\xad\x7c\x35\xf1\x5f\xe7\x18\x79\x66\x01\x1e\xdc\xd5\xd9\xd3\x0b\x0c\x04\xe1\x14\x49\xba\xed\xf0\x18\xad\x38\x70\xba\x46\x86\xa7\x25\xfa\x9b\xaf\x64\xad\xed\xd0\xc1\xc3\xfc\x2a\x8d\x09\x11\xff\xdb\x51\xc1\xb2\xb0\x48\xb3\x46\xa4\x49\x9a\x32\x1c\x87\x4c\xa2\x08\x99\x66\x2e\x8a\xb5\x8a\xb4\x71\xd8\x2c\x5c\x86\x77\x09\x42\x8a\x35\xc2\xa2\x60\xf3\x45\xd1\x28\xd2\x86\x80\x60\xe7\x67\xec\x23\x2c\xfd\x2a\x36\x8e\x25\xda\xff\x93\xbc\x4b\x1a\xb8\xa8\xf1\xa4\x57\xac\xa1\x92\x00\x66\x40\x90\xbd\x86\xf0\x2b\x90\x0b\xac\x87\xeb\xf0\x8e\x35\xc2\xc6\xb0\xd2\xa0\x91\x47\x1b\x12\x51\xbc\x45\x4b\x4f\x8c\xcb\x03\xf6\xbc\x0d\x73\x3a\x33\x9e\x29\x66\xca\x4b\x50\x98\xe7\xd1\x2c\x71\xbb\xd3\x40\x43\x76\x4f\x8a\x6d\xc8\xc1\xe2\xc9\x13\xb5\x8c\x19\x58\x80\x62\xa4\x11\x25\xb1\x7f\x93\xc3\xfc\xe0\x24\x90\x09\xe8\xb7\x6c\x14\x24\x88\xf8\xa6\x9d\xe3\x53\xc9\x7b\x08\xcb\x68\x71\x1e\x2f\xe2\x0a\xdb\xf6\x82\xc2\x0a\x03\x2f\xad\x46\xde\xdb\xcb\xac\xeb\xf1\x09\xb1\x9b\x4f\x0c\x64\x57\xda\x7e\x2d\xdf\xef\xda\xf3\x70\xe1\x60\xd7\x59\xe8\xe2\x25\xa5\xf5\xe6\x57\xc9\x90\xb5\x6f\xd9\xc3\xa8\x0e\x28\xa2\x20\x44\x72\x4f\xda\x8e\xf2\xdf\x38\x5b\xc8\xe5\x96\xb3\x52\xbf\x40\x7f\x31\xa5\xf0\x99\x09\x89\xc1\x90\x1c\x54\xa0\x71\xa5\x4f\xbb\x61\x31\xea\xf3\x3f\x3e\xc2\xdc\x2c\x10\x84\x58\xe7\xb9\x70\xed\xc5\xee\x3d\xf3\x68\xcc\x17\x28\x77\xfb\xd1\xb9\x10\x60\x57\x95\xc2\x47\xac\xe8\x17\xc3\x64\xe4\xb3\x61\x32\x2a\x15\x20\xbe\xed\x14\x37\x33\xae\xa5\xec\xfe\x84\x34\x18\x9a\xb1\x0f\x85\x0f\xa4\x50\x10\x4c\x35\x2c\xa9\x17\x0d\xc3\x51\x90\x62\x62\xea\xa7\x02\x54\x26\x54\xae\x48\xd7\xa5\x26\xb0\xc4\x9c\x38\xa5\xa3\xe1\x72\x44\x8d\x5f\x31\x1e\xb5\x5d\x8b\x61\x73\xc7\x01\xff\x3c\xcc\x46\x27\xf9\x50\x86\x46\x41\xe2\x8d\x69\x99\x0f\x97\x3c\xb4\xa4\xe5\x0e\xd7\x64\xf9\x30\x95\xa9\xf9\x7f\xcd\x17\x79\xe9\x15\x90\xe9\xa8\xed\xe6\x2c\xaa\x63\x04\x0d\xec\xc3\x5b\x78\x12\x4d\xbd\x9d\xe3\x9e\x4b\xa7\xe0\xcb\x40\x74\x0f\x8c\x45\x20\x83\x38\x28\x86\xe1\x08\xa6\xc1\xce\xbc\x31\x25\xa4\x19\x8b\xc1\x6f\x47\xc9\x49\x73\xbc\xd9\x2c\x09\x69\x4e\xfb\xe3\xcd\xa6\xb9\xdc\x6c\xa6\xfd\x31\x62\xc5\xee\xa5\x20\x46\x41\x27\x19\xc7\x69\xc2\x4c\xf5\x60\x9d\x26\x67\xab\xa8\x60\x13\x3f\x41\xd0\x4a\x81\x69\x92\x53\x88\x12\xdf\x94\x0d\x6c\x15\x15\xfe\xc0\xcb\xa1\xc5\x43\x2d\x60\x14\x84\xfe\x8d\xf8\x26\xf6\x72\xe4\x6c\xff\x91\xf2\xa2\xc4\x6f\x76\xcb\x47\x93\xed\xa9\x56\xb3\x73\x78\x75\xd0\x5e\x30\xc2\xf5\xe3\x46\x71\x32\x5a\x79\xe5\xee\xf2\x57\x33\xf2\x8c\xe2\x0a\x51\x87\xc4\xcd\x04\x20\x78\x09\x2e\xe0\xab\x9e\x67\x85\x67\xe6\x26\x44\x81\x97\xf1\xc3\x9c\x86\x9b\xe5\xbf\x6d\x36\x3c\x48\x25\x48\xbc\x68\xaa\x68\x68\x65\x8f\xd3\x3a\x09\x36\x2e\xd0\x27\xc4\xa6\x4b\xc6\x6a\x13\xe2\xb4\x1a\xd7\x61\x9e\xfc\xb7\x44\x74\x96\x0a\x73\x51\xce\x26\x8d\xa3\x46\xbe\x5c\xb0\xcc\xa3\x4e\x0a\x5e\x1d\x36\x69\x99\xa5\xb1\xf4\x32\xdb\x95\x6f\x5e\x84\x05\x0b\xd6\x63\xe1\x95\xee\x37\xde\x65\xfe\x3a\xca\xcf\xd3\x65\x52\xf0\xa3\x57\xb3\x53\x82\x5d\x79\x3f\x02\x3c\x81\x7d\x62\xc9\x04\x9d\xbf\x96\x90\x95\x72\x78\xaf\x84\x59\x0b\xd3\x98\x43\x66\x83\x30\xb8\x5e\xfa\x65\xfa\x34\x9a\x60\x29\x5b\xa0\xb4\x73\xfe\x95\x4d\x82\x66\x47\x00\xd2\xe6\xac\x40\x87\xad\xde\x9e\x5a\x76\xcb\x92\x96\x60\x51\xff\x3d\x8a\xe3\x2f\xc9\x7c\x7f\x01\xdd\x12\x8a\xf6\x8c\x15\xa7\x2c\x8b\xee\xd8\x04\x4b\x79\x93\xa5\x73\xbe\x8f\x55\x21\x15\x0d\x96\x77\x61\xf4\x76\xc2\xa0\x70\x86\x56\xd9\xe4\xa8\x04\x7e\xd1\xb6\x7a\xab\xef\x25\x01\x83\x2c\x08\xe1\xde\x4b\x0c\x91\x3d\xf8\x0e\xd5\x09\xc3\xac\x09\x93\x59\x13\x86\xa9\x09\x13\x2e\x16\x2c\xe4\xd3\x83\x41\x4b\x84\x5b\x90\x98\x49\xc3\xf4\xa4\xe1\x1f\xc5\xe4\x62\x6a\x72\x25\x14\xad\x9c\xa9\xcf\x37\x9d\x08\x42\xea\x8e\x74\xb7\xe4\x1d\x6c\xb7\xb6\xae\x87\x82\x7b\x4f\xa1\x53\x2d\x72\xb3\x57\x9d\xe0\x76\x8a\x87\x87\xcd\xc6\x93\x3b\x5d\x5b\xb5\x85\x90\xea\x17\xaf\x90\x8e\x1e\xe4\x58\x11\xe2\xb2\x82\xb7\x0d\x27\x37\xf3\xf8\xa6\x66\x15\x29\xbb\x52\x62\xce\xaa\x1d\x1d\xcc\xe0\x20\x94\x21\xb2\x4d\x86\x6d\xdc\x02\xa4\x0a\x4c\x53\xa0\x70\xb4\xac\xb4\xf6\xd6\x9b\x70\x5c\xa4\xd9\x03\x64\x6a\x8d\x7b\xd0\x82\x04\x1b\xa9\xc6\x4a\xda\x1a\xf1\x9d\x5b\xc1\x9b\x16\x02\x64\x48\x71\x35\xa4\xc1\x8d\x67\xff\xa6\x5a\x83\x6b\xd4\x56\xa3\xb2\xb6\x18\x64\xd0\x71\x1c\x5e\x2b\xba\x8a\x0a\x10\xee\x3e\x83\xa2\x1f\x6a\x2f\x94\xea\x7e\xb8\x6a\x87\xed\x8f\x59\x8a\x37\x6a\x58\xe3\x8a\xe9\x47\x25\xa4\xd4\x3f\x38\xed\x76\xc2\x02\x32\x48\x79\xc7\x16\x25\xbf\x5c\xb6\x35\xa2\x1b\x3d\xb9\xc5\xde\xe4\xe7\x6a\x84\x85\xbe\x55\x7e\x5d\xc4\x8c\x5b\x1b\xb5\x15\x71\x71\xb5\xfb\xad\xd6\x85\x55\x29\xce\x2f\xaf\x83\x5b\xf8\x14\xd4\xba\x64\xb3\x2f\x5e\xf6\x95\xcb\xbe\x84\x21\x8d\x8f\x35\xa0\xde\xe6\x9e\xce\x07\x7c\xb1\x8c\xf3\xb0\xe0\x33\xd8\xbd\xcf\x47\x01\x6b\x67\xa8\x54\xf3\x15\x42\x1d\xbe\x44\x39\x94\x08\x0f\xa2\xef\xc2\x8e\x3b\x12\xca\xf8\x8a\xcd\x6d\xa5\xbe\xd8\x46\xbf\x2c\xfd\x18\xf5\xfa\x0a\x09\x89\x7e\x2d\xee\x81\x82\xf9\x9b\x5d\x0a\xf3\xe0\x7a\xd8\x19\xc1\x5d\x70\x3d\xec\x8e\x8c\xa5\x35\x6a\x46\x17\xb2\x54\x50\x01\xa5\xbe\x93\xa1\x37\x09\xfc\xf4\x51\xb4\x05\x8d\xb2\x85\x94\x34\x57\x0a\xbb\x39\x1a\x57\x1d\xe5\x4f\x7b\x4f\x42\x61\x77\x85\xe1\xa8\x84\xab\x4a\x31\x38\x3c\x30\x47\x67\x97\x3c\xf8\x9e\x85\x77\x51\x32\x13\xe5\xe0\x17\x5d\xcc\x2a\x98\x7a\x13\xcd\xbe\x9f\x9c\x8b\x69\x34\xf5\x9a\x63\xba\xbe\xf3\x9a\x1d\xb1\x75\x30\xcb\x8b\x80\xb7\x82\x85\xce\x67\x65\xaa\x80\xc4\xa3\x34\x68\xb8\x82\x31\x2c\x46\x87\xe8\x24\x3d\x48\xfb\xcf\x59\x79\x40\xe2\x2b\x3c\x04\x9c\x1d\x26\x84\x14\x33\x30\xac\xf0\x48\xfe\x03\x32\x1f\x25\x33\xd9\x21\xeb\x41\xe5\x52\xcd\x0c\xc3\x11\x85\x49\x30\xe5\xcc\xb0\x08\xa6\x9c\x19\xae\x8d\xcc\xa0\xc3\x19\x45\xc7\xc4\x1d\xc9\x9a\x09\xce\x28\xcc\x95\x5c\x80\x10\x4f\x87\x3d\x0a\x3a\x2c\xfd\xe3\x50\x18\x4e\x46\x62\x9c\x1e\x0c\x6d\xce\x93\xb3\x4a\x51\x70\x55\xfd\xb0\x3a\xb4\x32\x8f\x8c\xf7\x4c\xd5\x89\x96\x42\x5a\x71\x22\xec\xe8\x77\x09\x3f\xac\x09\xad\x26\x71\x62\x4d\xda\xcc\x9a\xb4\x91\x3b\x69\xf9\x7c\x1e\x5f\x9d\x2c\xea\xe4\xaf\xc3\x91\x92\x4e\xde\x79\x8c\xc2\x70\xdb\x40\x63\x7d\xcb\x1e\xfc\x6b\x55\x59\x90\xe3\xc9\x67\x98\xf4\x1c\xf1\xe2\x45\x07\x64\x8d\xfc\x02\x64\x7d\xfc\x44\x86\x2e\xfd\x0c\x4c\x5d\xfc\xa8\x44\xdb\x73\x0a\x9a\xe2\x93\xa0\x6b\x8d\x4f\xc8\xfb\x22\x1f\x51\x18\xec\xec\x08\xb5\xb1\x6d\xa1\x03\x76\x6a\xd1\x01\x3b\x36\x3a\x60\x67\xe4\xe3\xb5\xf1\x2f\x22\x0b\xae\x4b\x48\xb6\xf3\xf6\xac\x44\xbd\x91\xf4\x6b\x0d\x19\x3f\x3b\xca\x81\x8a\xcc\x4c\xca\x08\xc9\x20\xe5\x07\x30\x31\xc9\x2c\x83\xa7\xb4\x1f\x6e\x36\x3a\x93\x9f\xc2\x32\x28\xda\xd3\xf0\x56\x0d\x46\x55\xf2\x8f\xb8\x0c\xc6\x05\x3c\x2a\x07\xf1\x1d\x83\x90\x07\xcd\x5b\x3a\x14\x34\xbb\x08\x61\xb2\xb6\x1d\xbd\x5b\x59\x3c\x2b\xa5\x5c\xc2\x62\x98\xc2\x04\x16\xc1\x58\xd8\xce\xaf\x34\x0f\x5c\x07\x8b\xfe\x82\x1f\x3a\x5f\xa5\x4b\xf4\x1d\xf0\x3a\x8e\x58\x52\x7c\xe2\x33\x80\xaa\x17\x2b\x6d\xa4\xdc\x51\x86\xaf\x68\xef\x8a\x48\x19\xf9\x66\x83\xf7\x84\xf6\x18\x33\x7e\x25\xc4\x8e\x5e\x6e\x36\x4d\xeb\xa7\x26\x6b\x63\x95\x59\x4e\x63\x1b\x21\xe3\xba\x8d\x05\x3d\xed\xf1\xd5\xc4\xf9\x2e\x0a\x7e\xda\x13\x0e\x90\xd7\x42\xce\xa7\xa9\xf4\x75\x08\x7d\xeb\xc1\x5d\x30\x57\x85\xc1\x40\x87\x2f\x4f\x9c\xc2\xee\x8e\xae\xdb\xbc\x19\x95\xb2\x06\x47\xd7\xed\x22\x5d\xd0\x92\x37\x8a\x7a\x13\xf1\x5b\xfe\x67\x56\x78\x5e\xef\x9f\x18\x59\xa4\xf7\xaa\xaa\xd0\xa3\x4f\xac\x6f\xa2\x9a\xd0\xa3\xf4\xe9\x33\x4a\xff\xab\x17\x04\x41\x87\x10\x6f\xf2\x24\xe8\x5a\x35\xbf\x08\x24\xa1\x79\xb8\x12\x18\x38\xe1\x55\xee\x79\x7c\x04\x44\x4d\x25\x52\x19\x3d\x8a\x29\xc4\xf4\x49\x0f\x6e\x1e\xcb\xf1\x56\x0e\x0c\x3d\x9a\x52\x98\xd2\x27\xbd\x13\xbb\xe2\xba\x86\x17\x4e\x7d\x6f\x78\x45\x4b\xd3\x8b\xf2\x44\x76\x65\x2d\xb9\x3a\x6c\x9f\x42\xef\xbd\xb5\xe2\xe8\x48\xaf\x0e\xb1\x5e\x1d\xa6\xf6\xea\x30\x81\xf1\x95\x9f\xf0\x6b\x90\x5e\x1d\xed\x6d\xd4\x5e\x03\x6a\xcb\xf5\x28\x5c\x6d\x2d\xf5\xc7\x1d\x4a\xfd\xbf\x54\x0b\xbe\x16\x85\x70\x3f\xa2\x70\xb1\x67\x35\x1a\xf0\x43\xbb\xa6\xde\xec\x94\xb8\xbf\x0c\x46\x14\x6e\x76\x2f\xe6\x12\xe8\x7c\xc7\x8e\x00\x62\x92\xb2\x64\x62\x4f\x51\xdd\x34\xaa\xb1\x5d\x17\x2c\xcb\xa3\xdc\x69\xf7\x56\x1f\xa0\x7f\x46\xef\xd1\x0e\xbd\x51\xae\xac\xe8\x49\x25\x7f\xed\xc6\xd1\x60\x7a\xd9\xed\x1b\x17\x52\x3e\xca\xef\xcd\x72\x5e\xc8\xad\x4d\x3f\xed\x2c\x73\xf6\x6e\xbe\x60\x19\xc2\x3b\xbc\xc5\x8b\x98\xe3\x1a\x56\xbf\x0b\xaa\xfe\xbc\x10\x4f\xde\xfe\x00\x72\xbe\x7e\xdc\xe0\xa0\x5c\xc0\x00\x6e\x76\x9f\x91\xf6\xbf\x15\x2d\x2d\x85\xfa\xb1\x78\x1d\x5a\x95\x10\x6f\x53\x7b\x0d\xd6\x61\x5e\xdc\x51\xf9\x75\xb3\xd9\x29\x61\x22\x40\x0e\x3f\xab\x73\xcf\x64\xff\xf3\xe6\xb6\x69\x16\x82\x3e\xb1\xec\xec\x8e\xef\x1a\x4a\x27\xa5\xce\x02\x4d\x9a\xab\x2b\xb4\x80\x4c\x2e\xa9\x1a\x44\x40\x83\x0a\x58\x8a\xe0\x96\x3e\xb0\x60\x6b\xdb\x86\xb9\xa6\x10\x95\x4c\xab\xa3\xa8\xd4\xed\x67\x60\xa1\x55\xe4\xe3\x30\xe6\x83\xec\xda\xba\xe3\x36\x66\x1e\x39\xf9\x69\xa0\x35\xcf\x2d\xc4\x05\x57\x1f\x9c\x85\x79\x94\xcc\xf8\x3f\xf6\x2e\xb9\x58\x16\x54\x15\x2e\x8f\xd9\xfe\x5a\x13\x3f\x55\x1a\xe5\xad\x56\x3d\x2d\x57\xb7\x9c\x65\xbc\xe0\x16\x2d\xc5\x95\xcb\xb6\xc3\xae\x18\x59\xb9\x80\x19\x2e\x96\x86\xdb\x91\x2f\xf0\x53\x55\x07\xb1\xa2\x74\x63\xdf\x1b\xec\x9e\x76\x7a\x69\x15\x15\xff\xa7\x4e\xb2\xaf\x22\xf5\xb6\x8a\xf6\x2e\xeb\x94\x2d\xa7\x52\xa3\xf7\xa2\xd3\xe1\x85\x1e\x56\x26\xb4\x1a\x3d\x4c\xaf\xf1\x08\x2a\xa8\x02\x0a\x26\x50\xd8\xd4\x6f\xf1\x49\x87\xb6\x40\xf3\x51\xd7\x58\xc7\xd7\x32\x94\x61\xb8\x8a\xe5\x3e\x8a\x75\xb6\xec\xf6\xb7\x6d\xed\x3b\x95\x7c\xb2\xcd\xbb\xab\xd7\xa5\xc6\xc0\x7f\xbb\xee\xed\x9f\x7a\xb4\xb5\xbf\xce\x52\x7d\x64\x1a\x47\x0b\xbf\xd9\x05\x63\xb2\xc7\x57\x6e\x69\x19\x55\x52\x2f\x6d\xcf\xd9\x3c\xf5\xce\x28\x85\x0f\x87\xd9\xc1\x0b\x38\x66\x7e\x68\x17\xb6\x21\x9f\xd8\x54\x58\xbf\x63\x87\x4b\x8b\xb5\x89\x39\x0a\xc6\x84\xc4\xc2\xc2\x5d\x49\xe3\xe6\xd6\x45\xed\xce\xb9\xa8\x3d\x38\x12\xa0\x99\x39\x7b\x3e\x18\x53\x33\xc7\x4a\x6e\x52\x6b\x1b\x27\x7f\x94\x75\xa9\x33\x70\x97\x29\xac\xce\xa8\x35\x90\xb3\x8c\x79\xb4\x9d\x9c\x00\xbc\x15\xf6\x71\xf5\x86\x77\x1f\x51\xfc\xf0\x2a\x5e\x66\x70\x86\xc1\xd7\x71\x34\xbe\x85\x0f\x18\x46\xcb\x34\x84\x7d\x96\x61\x25\x39\x38\xc7\x4f\xbf\xb2\x87\xd3\xf4\x3e\x41\x00\x68\x8c\x7d\x59\xc0\x77\x0c\x9f\xf3\x93\x34\xfe\xf6\xde\xc4\xf9\xb4\x66\xf0\xca\x7c\xf8\xb2\x80\x53\x8c\x61\xd3\xce\x92\x09\xfc\x66\xa2\xe7\xe9\x1d\x83\x3f\x4d\x7c\xc0\xb7\x2e\xf8\x82\x1f\x4e\xb3\x70\x26\xa8\xbd\xe1\x3b\x7a\x78\x85\x0b\x3b\xfc\x6e\xc6\xe0\x4d\xbf\xe3\xbf\x81\x7f\x04\xac\x6d\x75\x1b\x4a\x95\xe0\x9b\xb2\x0e\xfc\xb7\x49\xfe\xcd\x0c\xd9\x37\xf8\xba\x8d\x06\xa0\xa0\xa4\x35\x17\xf1\x3b\xb8\xc5\x43\x4a\xa6\xb7\xdf\x3e\x70\x9f\x5d\xa0\xa6\xb3\x3d\xda\xca\x14\xd0\x8d\xd5\x18\x06\x8a\x71\xc4\x00\x8e\x22\x86\x70\xdc\x4c\x48\xa9\x61\xf2\x0f\x72\xfc\x54\xf8\xcb\x02\x43\x7a\xec\x4c\x0c\xfb\xda\x44\x65\x42\x35\x6a\x26\xc2\xc7\xcc\xc4\x70\xc4\x30\xaa\xc7\xab\x05\x2d\x35\x5a\x2d\x68\x55\x87\x46\x19\x2f\x8e\x28\xbc\xad\x4a\x06\xf8\x94\xfe\xa5\x2a\x3f\xf8\xb5\x2a\x06\xbb\x0c\x7e\x1d\x76\x46\xf0\x47\xf0\xeb\xb0\x3b\x3a\x59\x11\x72\x49\xc8\x1f\xfc\x17\xcc\xff\x1f\x35\xb0\x0b\x01\x40\xc8\x58\xf0\x9f\x76\x94\x3b\x9c\x5d\xf0\x6f\xa2\x23\xd5\xa7\x84\x7f\xca\xd8\xd4\x3c\x3c\x67\xcc\x5e\x67\xb6\x2f\xb1\xb5\x17\xe0\xde\xc8\xbd\xdb\xde\x68\x29\x96\x8b\x7c\x6a\x9e\x95\x0b\x2f\xa3\xd0\x4c\x08\xf9\xc5\x1c\xd0\x75\x70\xc8\x46\xf8\x73\xa7\xa4\xb4\xac\x3f\x0c\x26\x75\x87\x41\x47\x59\xd6\xfa\xf9\x0f\xaf\xd9\xa1\xf0\x56\x6b\x83\x60\x3a\x4f\x0a\xd2\x46\x52\x91\xa4\x46\x34\x73\x49\xc8\x6b\x42\x9a\x03\xab\x6a\xea\xda\xed\x89\xd3\x3b\xbc\x86\x4b\x29\x92\x89\x58\x90\x31\x4f\x98\xab\xb6\xe0\x3b\x85\x54\x7d\x48\x17\x2d\xf8\x42\x21\xb4\xe3\xaf\x28\xe4\x76\xdc\x39\x14\x5e\x8a\x57\x02\xc6\x4f\x7d\xa7\x42\x6a\xec\x51\x78\x4f\xc8\x7b\xf9\xd4\xbe\x74\xca\xfa\x93\xc2\xd8\xa6\x75\x4a\x21\xb6\xe3\xbf\x51\x98\xee\x2b\xcb\x2b\x98\xc7\x28\x20\x33\x51\xf8\x48\xc8\x47\x2c\x06\x38\xd7\x4d\x58\x30\x75\x4f\xac\xba\x1b\x37\x1b\xef\xad\x51\xc8\x51\xa1\xcf\x61\x36\x63\x05\x67\x40\x8f\x51\x42\x3c\xd1\xf7\x3f\x13\xf2\xb3\xc7\xf8\xe6\x46\xc8\x07\xd9\x88\xc5\xb6\x5b\x8c\x20\x6f\x4f\xa3\x64\x72\x7a\x71\xfe\x21\x9d\x30\x43\x5e\xdf\x0c\x66\x84\xa8\xd5\x4c\xb8\x18\x68\x7a\xad\x9f\xe5\xe5\x27\x9c\xf1\xb5\x82\x77\x1d\xba\xe1\x29\xe1\x9a\xb9\x42\xbb\xf9\x56\x5b\xf8\xe8\x5e\x33\xc3\x81\x97\x0e\x3f\xb6\x1a\x82\xf2\x2d\x7b\x20\xc4\x33\xe9\x84\xe7\x39\x73\xa7\x32\xcc\xc1\xfb\xd7\x51\xc0\xa0\x6b\xfb\xc7\x30\x2b\x44\xdb\x29\xf0\xfa\xf2\x8e\x12\xf2\x0c\xbb\xeb\x08\x59\xa0\x23\x41\xa7\xf4\x1a\x76\x38\x27\xe4\x5c\xb8\xad\x7e\x94\xd2\x19\x1e\xc1\x0c\xb5\xe6\x0a\x1d\xee\x6d\x91\x3c\x23\xe4\x8c\x8f\x12\x1f\x9d\xbb\xba\xce\x72\xea\xf4\x8b\xd3\x6f\x4d\x66\x1e\x38\x90\x2c\x9b\x54\x3a\xad\xfb\x57\x3a\x4d\x4d\x37\xd9\x6d\xef\x08\x79\xc7\x1b\x7d\xc6\xbb\xe4\x87\x7a\xb0\xb6\x7e\x67\x92\x15\x1f\x58\x30\x3b\x51\x8c\xc5\x8f\x39\x8c\x90\xaf\xc8\x46\x84\x78\x0f\x2c\x40\xa7\x5a\x9c\x43\x67\x2c\x58\x97\x6e\xca\xbe\x37\x13\x9b\x6e\xf0\x6f\x98\x99\x03\x51\xb0\xa2\xbe\xd7\x0a\x5d\x6a\x9b\x0d\x4f\x9c\xa5\xe8\x6b\x54\xd0\xa0\x30\x63\x12\xab\x55\xef\x9c\xa3\x60\x25\x8a\xbb\x62\x81\x8d\xa3\x18\x42\x41\x61\xe5\x7e\x4b\x18\xbc\xa5\x70\xef\x7e\xbc\x62\xb0\x62\x14\x06\xac\xba\x89\x5c\xb0\x60\xc0\xf8\x36\x72\x83\x81\xee\x68\xa7\x58\xfa\x86\xf1\x89\x6b\x89\x9c\x6f\x59\x70\xc1\xc4\x6a\xd8\x5c\xed\x52\xc2\x7c\x60\x87\xdc\xaa\xe7\xe2\x56\x7d\x07\x97\x84\x0c\xe7\xae\xdd\xf5\x27\x84\xde\x99\x1b\xbb\x2b\x10\x3b\x96\x3f\x65\x20\xf7\x7e\xff\x0c\xe4\x8e\xef\x4f\xf8\x47\xb9\xd7\xfb\x73\x19\xf9\xb2\xf0\xef\x78\x50\xef\xf6\x7e\xa4\xa3\xb8\x55\xfb\xb9\x8e\x7f\x59\xf8\x21\x8f\xe8\x6d\xdc\x4f\x79\x54\xed\xff\xfe\x58\xc7\xf8\x01\xc0\x8f\x75\x14\x4f\x00\xfe\x92\xa1\x60\xe0\x9e\x81\xda\xfb\xfd\x55\xff\xa8\xeb\xff\x5e\xc2\x8c\xc1\x57\x0a\xd7\x70\xcb\xb6\x20\x5a\x3f\xbb\x9d\xc4\x29\xfc\x02\xe2\xcc\xe5\x4f\x4a\xf8\x07\x15\xa0\xab\x55\x3d\xd4\x49\x9d\x1e\xaa\xc0\x0b\x39\xda\xad\x8e\xba\x03\x9e\x1d\xea\x60\x34\x85\x3e\xf5\xe7\x70\xf1\x36\x9a\x5d\xa3\x2d\x69\x8d\x39\xdd\xf6\x45\xd7\xf9\x55\x9a\x62\x68\x61\x03\x82\x64\x0b\x04\x22\xf7\xd6\xdc\xd1\x9a\xb2\x1d\x18\x2f\xb3\x9c\x53\x92\xf2\x8e\x16\x2c\x73\x96\x0d\x58\xcc\xc6\x85\x92\x7a\xdc\xb1\xac\x88\xc6\x61\x2c\x81\x6d\xe6\xd1\x64\x82\x67\xbd\xa3\x79\xfa\xfd\x48\xbc\x0d\x87\xc9\x98\xb5\xb4\xe5\xce\xd1\x3d\xb6\xa6\xee\xb7\x7a\x8b\xf2\xaa\x05\x4d\x8b\xf8\x3e\x52\x47\x06\x3d\x8a\x92\xc4\x32\x86\x1c\xe0\x9b\x5a\xbd\x1d\x4f\xad\xd4\x46\x35\x51\xe1\x2e\x94\x07\x22\x93\xda\x16\x3f\x15\x6b\xa0\x72\xcb\x2c\xe1\x55\x98\xe3\x75\xf2\x03\x2d\xe1\x31\xc7\x9d\x7b\xdd\xcc\xa7\xb6\x9b\x79\xe9\x42\xf4\xa5\xad\xff\x9a\x3a\xee\x37\xd1\x37\xe1\x39\xbf\xc1\xd6\xd0\x12\x22\x60\x46\x88\x08\x14\xe2\x9d\x40\xa7\x4b\xe8\xda\xbd\x94\x24\xd4\xc1\xba\xe0\x35\xc7\x93\x1a\x83\x62\x44\xcb\x12\x5e\x3c\xe2\xfb\x54\xaa\x3c\x89\x07\x72\xa5\xa8\xc9\x9b\xfa\xed\x1b\xcb\xcf\xd3\xc9\x92\xf3\x8d\x7c\xd5\xe7\x67\xcc\x93\x42\x6d\x0d\x87\x3a\xcb\xea\xd7\x39\x4d\x2f\xfa\x85\x47\x7d\x21\x02\x74\xfc\x75\x69\xf2\x25\xbc\xdc\x76\x01\x6c\xd2\x25\x5e\xef\xd9\x0b\x5a\xc2\xcb\x47\xdc\xeb\x9a\xb3\xba\x18\x83\xba\xca\xb0\x3e\xf3\x0a\xea\x33\xe1\x59\x57\x89\x59\x69\xb9\x77\xd0\x33\x7c\xfc\x3d\xde\xee\x5e\x64\x84\x13\xdb\xf5\xfc\x96\x26\x79\x12\xac\xcb\x8a\x6e\xac\xed\x1d\xce\xa8\xe3\xb2\x60\x38\x82\x22\xe8\xec\xd5\xc9\xcd\x5c\x9d\xdc\x68\xaa\xfc\x26\xa4\xaa\x81\x19\x3e\x6b\xe5\xe8\x8b\xa6\x25\x1c\xf5\xb7\x84\x9b\x5e\x8c\x51\x26\x94\x33\x33\xf1\x44\xd2\xd8\x52\xcb\xce\x28\x21\x99\x2c\x57\x90\x0e\x83\xc8\x76\x82\x96\xd1\x93\x10\x0f\x5e\x42\xc7\xb3\x54\x64\x5a\x42\x95\x59\x94\xa2\x1a\x95\xa3\x06\x24\x95\xfe\xfa\x33\xc8\x39\xf5\x61\x3e\xd2\x04\x72\x6a\x1c\x47\x4a\x57\x83\x8d\x16\x2d\xf5\xe0\xf7\xbd\x48\x33\x61\x64\xfb\x7a\xa3\xbe\xbe\xc9\x7b\x59\x8d\xf7\xeb\xa8\x54\x0a\xc6\x7c\xa7\xa6\xa8\x72\xa4\x1d\x3c\xa2\x16\x35\x1c\xff\x6d\x0b\x41\xef\xf8\x19\x5f\x0a\x3c\x5c\x12\x12\xaf\xfb\xac\x43\x9d\x25\xa1\xaa\xd4\x85\xfb\x1b\xdd\x6c\xa2\x76\x58\x96\xe5\x88\x9e\xfc\xbf\xa7\x4f\xff\x7f\x43\xf8\xc4\x93\xa8\x80\x5f\x3e\xbd\x0f\x3a\xed\x31\xfb\xd7\x64\xcc\x7a\xcf\xda\xe3\xeb\x65\x72\xdb\xbe\xc9\xdb\xf3\x70\xf1\xbf\x01\x00\x00\xff\xff\x0f\xdd\x9e\x73\x00\x55\x01\x00") +// FileIdentifierStaticJs07fc0bd22ChunkJs is "identifier/static/js/0.7fc0bd22.chunk.js" +var FileIdentifierStaticJs07fc0bd22ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xbd\xf9\x9b\xdb\x36\xb6\x28\xf8\xfb\xfc\x15\x12\x5e\x9a\x97\x88\x20\x96\x54\x5e\x92\x50\x41\x14\xc7\x71\xd2\x4e\xc7\xcb\x75\x39\xe9\x45\x56\x67\x58\x22\x54\x82\x8b\x02\x15\x10\xaa\xc5\x12\xe7\x6f\x9f\x0f\x07\x00\x09\x52\x54\x55\xa5\xef\xed\x37\xef\xce\xf7\x25\x2e\x0a\x3b\x0e\x0e\x0e\xce\x86\x83\x93\xcf\xfb\xbd\x1f\x72\xd9\xcb\xf8\x82\x89\x82\xf5\xb8\x58\xe6\x72\x9d\x28\x9e\x8b\xde\x26\x63\x49\xc1\x7a\x05\x63\xbd\x51\xf4\xc5\x72\x31\x3a\x4f\x4f\x4f\xa3\xc5\x6a\x2b\x2e\xa3\x8f\x45\xf4\xf3\xcb\xe7\x2f\x5e\x9f\xbd\x88\xd4\x8d\xea\x7d\x7e\xf2\x7f\x85\x6a\xc5\x8b\xe8\x9a\x9d\x6f\x92\xc5\xe5\x4f\x45\x2e\x36\x3c\x65\x42\xf1\x25\x67\x92\xde\x91\xb7\xdf\xcf\xe6\x38\xda\x6c\x8b\x55\x38\x9b\x8d\xe6\x64\x37\x1e\xc5\xcb\xad\x58\xe8\x21\x84\x8c\x28\x22\xf0\x0e\x6d\xf5\x38\x94\xe4\x0b\x85\x26\x2e\xb3\x27\x43\x86\x77\x57\x89\xec\x29\x22\x08\xa7\x08\x4d\xf8\x32\x44\xba\x98\xb8\x40\x94\x52\x75\xbb\x61\xf9\xb2\xc7\xf6\x7b\x24\xb6\xeb\x73\x26\xfd\x44\xcc\x07\x94\x4d\x58\xa6\xe7\xbc\x0c\x51\x7e\xfe\x91\x2d\x54\xb3\xc0\x32\x7c\x26\x65\x72\x1b\xf1\x02\xfe\x86\x0c\xe3\x65\x2e\x43\x45\x47\x13\xf5\x35\x8b\x32\x26\x2e\xd4\x6a\xa2\x06\x03\xcc\x66\x6a\x1e\x04\xa1\xa0\x32\xd4\x9f\x18\x07\x41\xc8\xf5\xff\x03\x8a\x7a\x08\x13\x3e\xa0\x02\x9b\xce\xa0\x85\x1e\x17\x3d\xe6\x6a\xb5\x0a\x2a\x3c\x91\x4c\x6d\xa5\xe8\xf1\x52\x45\x09\xad\x60\x81\x77\xba\xae\x9e\x2f\x40\x85\x8e\xcc\x9c\xc5\xd7\x89\xbc\xd8\xae\x99\x50\x85\x1b\x12\x0e\x19\xad\x12\x67\x62\x30\x98\xeb\x01\x29\x3d\xba\xae\xa1\xf9\x3d\x96\x64\x3c\xbe\x1b\xfc\x7a\x00\x92\x8a\xf0\x0b\x4c\x38\x15\xe1\xa3\x27\xb8\x5e\x91\x5c\xd7\xc0\x3b\xbe\x0c\xc5\x36\xcb\x28\x65\xd8\x34\xbc\x2b\xa1\x9a\x20\x92\x70\xea\xb7\x7e\x5f\xd9\x5d\x49\x72\xfa\x06\xd6\x26\xba\x64\xb7\x45\xc8\xf0\x44\x43\x41\xd2\xd1\x44\x7e\x9d\xbb\x09\xcb\xc1\x00\x0b\x9a\xcf\xe4\x9c\xa8\x88\x8b\x94\xdd\xbc\x59\x86\x02\x7f\x43\x47\xfb\x7d\xc8\x67\x62\x4e\xd9\x4c\xcc\xbd\x69\x42\xdf\x1a\x5d\x6c\xdb\x17\x4c\xbd\xb9\x16\x6f\x65\xbe\x61\x52\xdd\x9e\xdd\xae\xcf\xf3\xac\x30\xc8\x55\xf5\xdf\x59\xe6\x5f\x18\x90\x6d\x6e\x23\x73\x95\x6b\x64\xd3\x5f\xd0\xe4\xcb\xe2\x85\xd8\xae\x99\x4c\xce\x33\x16\x2d\x92\x2c\x0b\x19\x11\xb0\x5e\xd5\x0c\xca\x6a\x06\x7a\x68\x09\x15\xe1\x13\x4c\x0a\x2a\x22\x11\x26\x98\x6c\x69\x28\xc2\xa7\x98\x88\xf0\xf1\x17\x18\x93\x05\xa4\x6f\xbd\xf5\xc9\x42\xbc\x33\x2d\x84\x99\x9b\x56\x52\x14\xfc\x42\xec\xf7\xf5\xb2\xd4\x88\xa6\xe8\x78\xa2\x0e\xf1\x4b\xa3\x3c\xc0\x46\x78\x68\xa6\xe6\x13\x57\x4d\x6a\xfc\x16\xf8\x60\xa2\xab\xa4\xf0\x20\x68\xa6\x28\x88\xd4\x53\x64\x33\x39\xa7\x62\x26\xeb\x29\xb2\x12\x47\xc9\x66\x93\xdd\x02\x61\x21\x55\x47\x18\xa6\xbe\xa4\xc8\x0d\xd8\xdb\xb4\x66\x51\x82\x00\x15\xf0\x71\x90\x13\x71\xc5\x64\xa2\x72\x39\xf5\x67\x6b\x3b\x74\x1b\xbf\x8c\x3b\x32\x59\x10\xdc\xd5\x21\x8b\x16\xb9\x28\x94\xdc\x2e\x54\x2e\x29\xa5\x55\x7a\xdf\x7d\xd7\x60\x98\xba\xd1\xc5\x55\x8f\x24\xa5\x1e\x05\x0a\xd1\x56\xa4\x6c\xc9\x05\x4b\xbd\xae\xae\xb9\x48\xf3\xeb\xa9\x97\x17\x2f\x43\x93\xa8\x37\xf5\xbd\xf5\xd3\x7c\x01\x00\x6c\xb5\xe0\x92\x75\x1b\x5f\x51\x4a\xdd\xef\x48\xe4\x29\x7b\x7f\xbb\x61\x13\x11\x9e\x3e\xf2\x70\x68\x63\xf6\xad\x5b\x6b\x41\x47\x13\xf1\xb5\x72\xa8\x21\x1c\x6a\x48\xaa\x66\x62\x3e\x91\x11\xab\x70\x9a\xfa\x3f\xf6\xfb\xfe\x98\x48\x0d\xb6\x25\xbf\xd8\x9a\xfc\xfe\x88\xa0\xab\x24\xdb\x32\xc4\x45\x4f\x06\x41\x28\xa3\x6b\xc9\x95\xcd\xc3\xc4\x22\x94\x19\xbd\x43\xa3\x90\x11\xa9\x69\x03\x91\xb8\x2c\xab\x51\xae\x1c\xed\x72\x8b\x1b\x04\x9b\x90\xd5\x8b\x40\x14\x26\x02\xd2\x88\xc0\x84\xd5\x15\xd7\x66\x7a\x5e\x51\xb7\x51\x16\x92\x25\x8a\x85\x1e\x42\x63\xe2\x15\x6b\x60\x00\x23\x2c\xfa\xed\x37\xc8\xfb\xed\x37\xaa\xea\xe6\xaf\x34\x4e\xf1\x65\x78\x95\xf3\xb4\x37\xa2\x9a\xec\xa9\x95\xcc\xaf\x7b\x82\x5d\xf7\xde\xb1\x25\x93\x4c\x2c\xd8\x0b\x29\x73\x19\x22\x8d\xf8\xbd\x55\x52\x88\xff\x50\xbd\x73\xc6\x44\x8f\x0b\xae\x78\x92\xf1\x82\xa5\xbd\x61\xaf\xd8\x6e\x98\x0c\x71\xa3\x84\xde\x53\x2c\x45\x15\xa9\x63\xb0\x5b\x6e\xe9\xae\xf4\xc7\x57\xaf\xe6\x85\x1d\x8f\xa5\xc1\xfb\xbd\xc3\xa3\xbe\x77\x12\xba\xb6\x26\x5d\x47\xa2\xcb\x8c\xd6\xc9\x26\xbc\x00\xa2\xda\x80\x45\x9f\xd2\xdb\xba\x05\x43\x55\x76\x65\x45\x2b\x84\x39\x0b\x35\xb2\xd0\x8b\xb0\x41\xa6\x3d\xb0\x9d\xbb\xe5\xac\xe1\xa6\x89\x06\x45\x5b\x21\x92\x35\x4c\xd8\x9e\x4b\xd1\xc7\xa2\x20\x9c\x5e\x84\x0a\x93\x9c\xca\x68\x93\x6d\x2f\xb8\x28\xa2\x5c\x3c\x87\xf5\x7b\xb7\xcd\x58\xc8\x08\x27\xa2\xea\x27\xdf\xef\x43\xa6\x59\x0f\x0d\x04\x43\x5e\x6e\x5a\xa7\x54\x8d\xed\x08\x11\x43\xeb\x1d\x03\x10\x04\xa8\xcf\xd7\x9b\x5c\xaa\x44\x00\xd8\x34\x29\x33\x07\x80\x66\x09\xf4\xf1\x4a\xc4\xc0\xa6\x9a\x0e\x45\x59\x2f\xc0\x75\x75\x0c\x56\x53\x53\x70\x58\xf7\xc7\x98\xf4\x8f\x42\x7b\xe2\x46\xd3\xb1\x26\xb3\xd1\xdc\x70\x2a\x06\x24\x7f\x68\xb0\x88\x68\xa6\x40\x0c\xe8\x0d\x90\x64\xa2\x79\x04\xc3\xb8\x08\x9d\x44\x20\xbf\x5a\xa0\xfd\xfe\xa0\x39\xd7\xd3\x70\x3c\xdf\xef\xa1\xc5\x9e\x57\x04\x13\x51\x2f\xea\xd9\x51\xd8\x2a\x33\x24\x5d\xb9\x87\x2a\xa8\x0d\xbc\x6d\xfa\xe6\x00\x21\x60\x02\x74\x57\x3a\x4c\x30\xa0\xe9\x2b\x07\x32\x09\xe9\x9c\x0a\x38\x8f\x85\x22\x39\xad\xea\xf2\xe9\x28\xe6\x24\xa1\x2a\x5a\x26\x59\x76\x9e\x2c\x2e\x0b\xc0\xe3\x20\xc8\x07\x03\x92\x1c\xb2\x82\x49\x0d\xe0\x82\x8e\x26\xc5\xd7\x89\x23\x80\x85\x23\x80\x5b\x9a\xcc\x8a\xfa\x4c\x5c\x68\x3c\xdf\x9a\xac\x8c\x6e\x67\x8b\xf9\x44\xa3\x5b\x9f\x66\x9a\xce\xe9\xff\x07\x14\x7d\x10\x08\x13\xfd\x81\x06\x67\xe1\x62\x80\xe2\x1e\x1a\x5c\x87\x19\x1e\xa0\x09\x22\x39\xc6\x65\x59\xf1\x90\x70\x08\xea\x36\x13\xd3\x66\x4a\x93\xd9\xd2\xb5\x99\x1e\x6b\x73\xe9\xda\x4c\xeb\x36\x5d\x6b\x1b\xdd\x9a\x32\xad\xad\xa8\x9a\x6d\x5c\x6b\x1a\x6b\x2a\xb8\xe8\x55\xde\x1c\x6b\x7e\xe3\x9a\x5f\xd5\xcd\x5b\x7e\x43\xee\xf7\x22\x4a\xb2\x2c\xbf\x7e\xb1\xde\xa8\x5b\x1c\x04\x6c\x6a\x1a\x81\x36\x06\x72\x60\x9a\x3a\x0b\xd9\x00\xf5\x76\x68\x20\xc9\x70\x98\xe3\xc1\x59\x88\x4a\x68\x28\x96\xb0\x33\x3f\xd2\x93\x70\x36\xfb\x30\x8f\xfe\xd7\xe7\x9f\x7d\xf3\xf5\xe0\xff\xa1\xfb\x7f\xc6\x21\x26\xe8\x3f\xfe\xef\x0f\xc5\x1c\x9f\x5c\x90\x4b\xea\x1d\x70\x35\x15\x7b\x7e\x76\x16\x04\xcf\xcf\xce\x22\x56\x2c\x92\x0d\x23\xcf\x69\xc7\x29\x7f\x39\xbd\x0c\x19\x8e\x59\x24\xd9\x26\x4b\x16\x2c\xfc\x48\xd0\x87\x0f\x9f\x8d\x11\x2e\xc9\xbb\x06\x27\xee\xf0\x90\x39\x3c\x04\x09\x07\x8e\x0b\x54\xa8\xdb\x8c\x21\x02\x29\x97\xec\xd6\xa2\x99\xf9\xcd\x8b\xb7\x32\x5f\xb0\xa2\x60\x29\xed\x8f\x4d\x1a\x94\x6f\x94\x92\x4c\xa4\x4c\x32\xd9\x91\x08\x87\xa1\x9f\x9c\x6f\xf4\x40\x0a\x9b\x56\x91\xc1\x62\xc5\x98\xd2\x1c\x7a\xf4\xce\x36\x36\xa9\x06\xc4\x9a\x35\x85\x3f\x0c\x45\xe4\xb4\x39\x06\x59\x7d\xc6\x5a\x70\x68\x66\xea\x63\x8b\xd7\x3c\x5b\x8b\xab\xa5\x6d\x49\xa2\x41\xe6\xdc\xce\xac\x7b\x9f\xb1\xb9\x9d\x40\xbf\x2f\x82\x40\x44\xcb\x5c\x2e\xe0\xd8\xe9\xcb\x20\x68\x94\x6b\x37\x60\x77\xb7\x9a\x88\x20\xe8\x8f\x35\x3d\xd0\x23\xd0\x90\xd6\x22\x00\xf5\x27\xac\x8f\x08\xff\x5c\x58\x25\xe2\x82\xfd\xaa\xf9\x8e\x50\x11\x03\x1b\x6c\xa8\x48\x4e\xcd\xb9\xc8\x35\xb7\xa2\xe9\x04\x49\x28\x83\x6d\x52\x0d\x45\x0f\x2e\x0f\x82\x7e\x12\x04\x7d\x79\x30\xa0\x82\xe6\x41\x90\xe8\x32\xc5\x34\x65\x19\x53\xac\x39\xdb\xb8\x39\x27\xde\x5e\x69\x3b\x69\x07\x6e\xd7\x7e\xd1\x5c\xa2\x48\xb2\x75\x7e\x55\x73\x44\xad\x46\x08\xc3\x71\xb3\x7c\xc1\xd4\xf1\xc2\x84\x63\x52\x4d\x60\xdb\x84\x1c\x60\x95\x23\xc8\xdb\x20\xd8\x46\x89\x52\xc9\x62\xc5\x52\xa8\x52\x12\x56\x86\x98\xbc\x6d\xec\xad\x6a\xaf\xa8\x50\x0b\xea\xd2\x50\x18\x3e\x09\x39\xb5\x62\x0e\x30\xf8\x26\x6f\xbf\x07\xf0\x47\x05\xcb\x98\xe6\x1e\xde\xb3\x1b\xe5\xd0\x9d\x47\x3c\xad\xbf\x0f\xb6\x83\x5d\x31\x59\xd5\x25\x89\xfe\xb1\xc8\x37\x2c\x25\x85\xfe\x84\x2d\xb1\xa5\x32\xba\x60\x42\xcb\x01\xec\x65\x5a\xf1\x00\x53\xde\xec\x33\x8f\xfb\xe3\x3e\xa5\x89\x16\xbf\x74\xbf\xdb\xf0\x2a\xbc\x0a\x39\xc6\xa4\xc0\xa4\x55\x16\x45\x68\xf0\x1c\x8a\x61\x4c\x78\xb9\xd6\x68\x84\xed\x09\xed\xb1\x8b\xd5\x41\x66\xe4\x9a\xf7\x79\x03\x4c\x86\x33\x6a\xac\x93\xc6\x1b\xe5\x24\x2d\x43\x60\xf2\x9f\xce\xde\xbc\x0e\x71\x5b\xd4\x52\x8d\x25\x65\x44\x92\x86\x2c\x65\xd6\x46\xd8\xea\x3e\x21\x03\x75\x82\xcf\x8f\xa9\x26\x7a\x37\x7a\x37\x78\xaa\xe6\x93\x43\x26\x51\x4c\x75\x06\x15\x71\xf3\x9c\x14\x46\xb6\x53\x73\x7a\x1d\x0a\xec\xc9\x76\x30\x98\x33\x50\xd5\x1c\x83\x42\x03\xe7\x88\xa0\xfd\xbe\x0a\x02\x55\x25\x67\x5c\x5c\x4e\xb3\x70\x57\x12\x46\x76\xf5\xc1\x12\xf7\x47\x25\x8e\x2b\x58\xbf\x31\xf8\xed\x2f\x97\x47\xed\x88\xc0\x25\x59\x85\x8a\xcc\x76\x97\xec\x36\x46\xae\x18\x22\x05\x53\x0d\x31\x50\x73\x03\x7a\xb6\xed\xc6\x2c\xe1\x6f\xa0\x83\xe3\x72\x1b\x6b\x49\x04\x6d\xed\x34\xbd\xba\x22\x08\x94\x59\xbc\x33\xdb\x42\x28\x08\xd3\xbb\xc0\x1d\x41\xc0\xaf\x1a\x0a\x8d\xcb\x92\x5c\xf8\xe3\xaa\xa5\x9b\xf6\x18\xca\x72\x8e\x89\x2a\xc3\x77\x98\xbc\xa0\x3b\x9f\xf7\x3d\x50\xee\x98\x26\xd0\xb7\x5a\x54\xd4\xac\xa3\x3e\xa7\x37\x89\x64\x42\x05\x01\xba\x64\xb7\x4b\x99\xac\x59\x81\x0c\x45\x85\x74\x38\xe6\xa6\x9a\x32\xc6\x9a\xfc\xbf\xb5\x2d\x95\x25\x79\x4f\x77\x86\xb9\x8a\xc7\x64\xb1\xe2\x59\x2a\x99\xd0\x0b\x42\x5e\xd3\x93\x6f\xc3\xd9\x87\xeb\xe1\x7c\x80\x4f\xc8\xb3\x07\x1f\xa5\x8b\x5c\xa4\x5c\xe7\x26\x99\x3d\x50\x13\xd5\x38\xfd\xda\xe7\xeb\xef\x5b\x26\x9b\x29\x72\x9b\xb1\xe2\x8e\x13\xf3\xf8\xb9\x7c\xe4\xc0\xf5\x4e\x50\xd3\x9b\x88\xb4\x0c\x62\x0f\x2e\x2d\x07\xa9\xc5\x2a\x7c\x5d\xef\x51\x5e\x6d\xa9\x44\x51\x39\x95\xb3\xf1\x3c\x46\x5b\x71\x29\xf2\x6b\x81\x3a\x8f\x62\x33\x66\x0d\x5c\xc5\x42\xc0\x71\x41\x76\x06\xf8\x40\xc9\x4b\x8c\x89\xc2\x75\xd1\x28\x49\xd3\x90\x13\x35\xe3\x73\x3c\xf1\x92\xed\x09\x18\x1a\xa1\x46\x51\x76\x48\x8c\x40\xaf\xa5\x11\xa3\x8b\x1f\xf2\x9a\xba\x60\x2a\x64\xb8\xac\xd5\x59\xf7\x94\x77\x4a\x2f\x53\x27\x49\xd3\x56\x1f\x96\x7b\x37\x9a\x82\xe6\x44\x4c\x9e\x1b\xa0\x9c\x86\x77\x1c\xde\x76\xd5\x60\x97\x48\x4c\x24\x8e\x35\x5e\xea\x2e\x3b\xc9\x4b\x43\xf2\x06\x09\xf2\x3d\x26\x56\xf6\xb5\x72\x81\x4e\xb5\x9f\xf4\xbd\xfd\xa8\xcb\x38\xac\x86\x52\xee\x07\x7d\x5f\x7d\x62\x02\x8c\x42\x9d\xd7\x60\x72\x00\x5f\x34\x7b\x5b\xa2\x06\x8d\x80\xa9\xbb\x01\x87\xac\x16\xb0\xa6\xcd\x6a\x9a\x51\x56\x9a\x51\x2e\x51\x8c\x90\x3d\x6d\x5f\xd1\x93\x6f\xd7\x2c\xe5\xc9\xfe\xdb\x62\xbb\xd1\x92\x56\xf1\xa1\x18\x9c\x90\x97\x0f\xda\xf8\xbd\x57\x91\x62\x85\x5e\xdb\xa9\xc6\xb7\x67\x36\xd7\x80\xb1\x24\x9f\x8e\xed\xe8\x9f\xe9\xc9\xb7\x15\x75\xf8\x50\x0c\xea\xdd\xfd\xdd\x83\x77\x77\x4d\x5d\xaa\xbd\x8d\xbe\x6d\x27\xb6\x77\xb8\xde\x6b\xcd\xad\x9b\xfe\xbb\xf6\x7b\x6b\x4b\xff\x8c\x27\x32\x08\xf4\xf6\x9d\xd6\x23\x81\xdd\x5c\xff\x44\x22\xd7\x7f\xbd\xb1\x57\xf3\x1d\xa0\x21\x1a\x54\x25\x5b\xfb\xbe\x12\x4e\x2d\xbf\x92\x57\x2c\x7c\x42\x85\xcf\xaf\x54\x62\x67\x45\x54\xb8\x9e\x01\x08\xb1\x55\xe3\xf1\xf3\x30\x31\x5c\x55\x8e\xf1\x7f\x81\xa4\x14\x44\xcd\x8a\x39\xe9\x2e\xde\x4d\x68\x3a\x24\x81\x07\xee\xc4\x4f\x77\xed\xc4\x4f\x0f\xdc\x89\x9f\x1e\xb8\x13\x13\x35\x40\x3d\xbb\x1c\x3c\xfd\x23\x5b\x12\x94\x33\xa8\xda\x89\x08\x93\x23\x0d\x42\x81\xd2\xed\xd2\xef\x5b\xfb\xe5\x84\xfc\x4a\x4f\x3e\x7c\x56\x6d\x9b\x0b\xf2\x7b\x4b\xe7\x64\x0f\xe6\x43\x7b\xd6\xb4\x96\x4f\x7f\x25\xa1\x57\xa9\xde\xd4\xa0\x55\x53\x53\x35\x13\xf3\x98\x95\x18\xc7\xac\x24\xbf\x1c\xa1\xbe\x9a\x3d\x23\x9c\xfe\x1e\x4a\x4d\x75\x79\x9f\x52\xe9\x98\x36\x8e\x4b\xf2\xc3\xc3\xf8\x87\xc3\x61\x06\xc1\xf7\x0d\xd2\xf2\x5d\x83\xb4\x90\x8a\x76\x9f\x69\x4e\xec\x78\xb3\x5a\x96\xd6\xad\xc2\x1e\x0a\x02\x31\x0d\x51\x22\xb8\x31\x51\x0e\x61\xaf\x71\x50\xcf\xff\x12\x32\xd2\xce\x21\x22\xaa\x60\x8e\xbd\xdc\xce\x2a\xad\xd2\x0c\x80\xd6\x10\x0f\x0f\x06\xe9\x84\xed\xa6\x78\x04\xe2\x6a\xad\xa9\x2b\xae\xb9\xa6\x1e\x0a\xef\x16\x49\xc1\xbc\xfe\xe2\xe6\x6f\x33\xe4\xd8\xd6\xfb\xdd\xe9\xb5\xed\x78\x26\x29\x5b\x26\xdb\x4c\xc5\x15\x0b\x5d\x96\xe4\xaf\xc7\x04\x2d\xcf\x84\x43\x3c\x23\x8d\x55\x52\x11\x23\xb7\x3b\x16\x9d\x70\x3a\x9a\xf0\xaf\xc5\x84\x0f\x06\x58\xce\xf8\xdc\xb3\xea\x70\xa7\xb4\x0c\x95\x95\xd6\xac\x51\x86\x91\x99\xc6\xf5\x79\xb4\xc8\xc5\x22\x51\xa1\xc4\x95\xec\xd6\xc1\x37\x39\xb2\x60\x44\x23\xa2\xee\xa3\x0e\xff\x26\x31\xe0\x92\xdd\xb6\xb9\x7f\xc3\x24\x7f\xf6\xb0\xb3\xf2\x81\x9c\x31\xbb\xee\xfd\xb5\x75\x8e\xfe\xf6\xe0\x43\x71\x99\x0b\x35\x5c\x26\x0b\xe6\x1f\x8a\xed\xc4\xf6\xa1\x78\xa8\x42\xfa\xef\x63\x72\x9d\x5e\xa8\x79\x60\xfd\x11\x42\xdf\x94\x09\x3d\xe1\xd2\xb7\x34\x22\x44\xac\x2d\xa9\xca\xf7\x8d\x4a\x6a\x40\xed\x22\x26\xbe\x04\x37\x13\x73\xdc\xf8\x39\x18\xcf\x35\x85\xb6\x9a\xc9\xda\x94\xd0\x44\x84\x46\x1b\x44\xf3\xa8\x40\xa4\x7f\xa4\x27\x35\xa8\x4f\xc8\xdf\x1e\x86\x15\x3f\x36\xc8\xdc\x6f\xad\x95\xff\xf3\x83\x57\xfe\x8a\xb3\x6b\xcd\xbe\xf9\x0b\xdf\x4a\xfb\x1f\xb4\xee\x77\xee\xbc\x0a\xe2\x3f\x3d\x50\x3a\xad\xe0\x40\x8d\x95\xea\xdb\xe1\xba\x18\x36\x12\x01\xf8\x7f\x6e\x01\xff\x2f\x0f\x57\xda\xf2\xf5\xe6\xa8\xd6\x16\x8c\x92\xff\x26\x30\x9b\xb6\xff\x9b\xb7\x17\x34\x7a\xc7\xf6\x82\xfc\xd6\xf6\x72\x03\xab\xf9\x18\x28\x35\x13\x73\xd0\xe5\xfb\x29\xf7\x6c\xb2\x23\x2d\xe9\x66\xec\xb2\xff\x9d\xee\xd0\xb7\x8b\x55\x22\x0b\xa6\x50\xdc\x1f\x11\xf4\xad\x31\x12\xd9\x1f\xfa\x28\x2c\x36\x9a\xde\x81\xb0\xf1\x0f\x3a\x7b\x41\x5e\x92\x1f\xc8\x67\xe4\x6f\xe4\x27\xf2\xa0\x5d\x09\x7a\xda\xbf\x03\x56\xfc\xa5\x89\x15\x73\xf2\x9f\x74\x67\x39\x56\x68\x9e\x31\xba\x03\x4d\xb3\xee\xdc\xcf\x50\xec\x18\xfe\x58\xdc\x59\x27\x1b\xba\x2b\xed\x52\x27\xd7\xd5\x37\x48\xbf\x74\x36\x37\xbf\x16\xf9\x56\x28\x26\xe9\x1d\xb8\xb3\xc8\x92\xa2\x68\xc9\x2d\xd5\x11\xd3\x89\x79\xac\x59\x91\xb9\xaf\x76\x5d\x56\x7f\xdf\xa5\x05\x48\xd2\xf4\x2e\xe9\xdc\xf6\x4a\x38\x95\xf6\xac\x03\xeb\xaa\x13\x51\x24\x98\x5d\x0b\x2a\x2b\x6b\x43\x4b\xcf\x4a\x16\xb5\x2e\x76\x49\xb3\x70\x67\x47\x1b\xfb\x93\x20\x56\xc0\xe0\x04\xda\x8d\x73\xf2\xb1\x28\xe2\x84\xb8\x36\xe3\x82\xd4\x2d\xc6\x5b\x62\xda\x8b\x17\x04\x64\x1e\x46\xaa\x89\xc6\x4d\x18\x10\xa7\x1a\x8b\x0d\x20\x4b\x22\x30\x49\x29\x9b\xd4\xba\x7c\x99\x5c\x07\x41\x98\x52\x2d\xa5\xa5\x16\x69\xed\xb2\x0d\x06\xb8\x5a\xe0\x59\x3a\xa7\x8a\xa4\x55\x35\x3b\xf0\x20\x08\x97\x95\xfe\xcd\xaa\x83\xfd\xfc\x59\x3a\xb7\x16\x85\x0d\x3d\x0f\x53\xa2\xc8\x12\x0c\xe5\xfd\x8d\x63\x13\x35\x66\x5a\x81\x8a\x5d\xf0\x42\x31\x19\x6e\x4c\x8d\x55\x6d\xa6\x5c\x1a\xbc\x9a\xd6\x28\x66\xb7\x70\x6c\x73\x26\xfe\x06\x34\x05\x8a\x4d\xc6\x17\x2c\x5c\x91\x11\xd9\x60\xb2\x29\x09\x28\x7c\x8e\x2a\x6f\xd6\xc9\x66\xc6\xe6\xba\x94\xb1\x29\x34\x0a\x42\x89\xad\xa8\x46\xc8\x30\xf1\x8d\x1a\x1a\x3e\x80\x6d\x73\x72\x38\x00\x2f\xa5\x56\x0d\x91\xf1\x83\x34\x4a\xed\x6a\xa5\x61\x20\xf5\x36\x3d\xd4\x65\x1f\x53\x16\x4d\xfc\x31\xc1\x90\x46\x38\x5a\xe6\xf2\x45\xb2\x58\x85\xac\xa9\x4a\x22\xa6\x0f\x37\xd1\x43\x20\x00\x98\x60\xaa\x94\x11\x8d\x45\x85\x4a\xc4\x42\x8b\x3d\x6f\xad\xba\xca\x94\x70\x38\x01\xc5\x22\x9e\x3a\xfb\x99\xc3\x0b\xd7\x06\x98\x0e\xe2\x46\x43\xdf\x59\xdb\x4f\x85\xc5\xae\x6e\x95\x30\x63\x20\xec\xdb\xea\x7a\xc0\xf5\xda\x34\x86\xec\x2f\x52\x3d\xf2\x83\x71\x1f\x16\xab\x86\xdf\x58\xe7\xe6\xe0\x0f\x87\xed\x97\x3d\x18\x2c\x0c\x73\x93\x26\x4d\xd2\x5a\x79\x35\x76\xba\x70\x86\x6d\x01\xe6\x6b\x3a\x9a\x9a\x5d\x11\xd7\xa2\xca\x68\x8e\xa7\xbe\xe3\xe3\xdd\x65\x89\xea\x28\x39\x3e\x2c\x39\x9e\x77\x08\x50\x5f\xd3\xd3\xc3\x92\xa7\x73\x1c\x87\x5d\xad\x76\xf7\xdf\xd5\x6a\x77\xff\x0c\xac\x90\x5a\x22\x35\x1b\x10\xa0\xf7\x46\x30\x0f\xd1\xe6\x46\x65\xda\xf0\x0e\xb0\xae\x14\x6d\x5a\x01\xae\x15\x5d\x0d\x41\x21\xf0\x58\x34\x82\x51\x9d\x5f\xaf\x94\x33\xe0\x39\x8a\x64\x0c\xf8\xff\x89\x9d\xf5\xd5\x3f\x2a\x72\xca\xfd\xfd\x47\x12\xca\x6b\x01\x59\x19\x0d\x8b\x8f\x39\x0c\xdb\x44\xdb\x31\xb8\x06\xc2\x94\x76\xc6\x94\xaa\xc8\x96\xfa\x56\xd7\x28\x17\xbf\xb8\x92\x8a\x24\x44\x62\x22\x1d\x5d\x08\x82\x6d\x10\x6c\xfb\x94\x56\x76\xac\x86\x23\x46\x1e\x35\xd5\x0f\xa1\x63\x4c\x0b\x92\x60\xd2\xb0\x7d\x65\xae\x89\xd9\x62\x3e\xc9\xfa\x14\x7c\x37\x82\x00\x74\x5e\x9b\x70\x41\x32\xc2\x58\xed\x44\xb1\xf4\xdc\x3c\xd2\xaa\xe6\x72\x4e\x36\x74\xeb\xfc\x33\x28\x4d\x83\x20\x35\x7e\x14\xb6\x99\x25\xa8\xb5\xa0\x25\x2d\xd7\x1f\xd1\x5e\xb7\xb8\xb9\x0e\xf1\xb8\x32\x9c\xfb\xe2\xb1\x95\xef\x0f\x31\x81\x3b\x5f\x95\x9c\x7a\x18\xc0\xe7\x0d\xbd\x57\x98\xef\xf7\xe0\xa2\xa9\x3c\x96\x8f\xa8\x01\xcd\x6b\xf3\xa2\xe5\xea\xc4\x51\x76\xa9\xe1\xe7\x53\x9d\x9e\x5d\x8c\x50\xca\x36\x59\x7e\xcb\x9a\x3a\x5d\x67\x64\xbe\x47\xd1\xdb\xe9\x36\xf1\x70\xce\xea\xf7\x2d\x6b\x71\xf9\x55\xbf\x8e\x9d\xaf\x46\xe7\x12\x5c\xeb\x8e\xf1\xab\x5b\x76\x29\x6e\x92\xa0\xa3\x50\x64\x67\x58\x1b\x50\xce\x7a\xfa\x54\xd2\xc9\x0f\x1d\x63\x68\x4a\x4c\x54\xc5\x69\x75\xfa\x64\xd4\xd9\x90\xd9\xa9\x05\xf6\x87\x57\x51\x97\x5a\xf9\x2b\x88\xf1\xc6\xeb\x54\xf3\xde\xc5\x49\x02\xd0\xe8\x11\x2b\xa5\x03\xe9\x7e\xdf\x1c\x75\xcb\xd3\xc1\x96\x0b\x71\x7b\x21\x5a\x68\x62\x74\x4e\xf6\x67\x68\xa7\xa9\x37\x50\xca\x1e\x32\x8a\xe9\xdd\x83\x30\x8d\x1c\x0e\xc2\x2c\xbe\xf1\xaa\x78\xa0\x79\x0b\x90\x6b\xd2\x68\x27\x08\xfa\xd5\xe2\x19\xdc\x9b\xcd\x1b\x94\xf4\x98\x49\x8c\x3f\xd8\x24\xc6\x5b\x43\x9f\x36\x80\x37\x0d\xe5\x54\x9a\xab\x17\x5c\x9f\x5d\x86\x06\x14\x4c\xaa\x46\x65\x18\x5b\x63\xa0\x15\xdf\xd4\xaa\x62\xc0\x72\xb8\x9b\x30\x26\x1c\xc7\xdc\x76\xe1\x6f\x22\x8e\x6b\x8b\x5d\xdd\xce\x21\xc3\x75\x6c\x85\xbc\xe1\x36\x2c\x8d\x45\x4b\x99\x6e\xbc\x18\x66\x2d\x1f\x75\x4b\xe2\x2d\xb8\x6d\xd5\x50\x12\x70\x7d\x54\x78\xc2\x35\x29\xb5\xf0\x29\x2b\xe7\x4d\xf2\xc7\x6d\xa6\x86\x25\x3a\xa8\x62\x89\xf9\xe1\xe5\x93\x29\x8b\x0f\xda\xb1\xab\x0f\xfa\xcf\xd0\xcb\x35\x8c\x7a\xa8\x30\xe9\x87\x2d\xfc\x52\x77\xb8\x12\xd9\x9d\xe3\xe1\xba\x1b\x62\xe8\x57\xc3\xff\xb2\xcd\xd7\x2c\xf3\xb1\x1d\x78\x7c\xcb\x99\x9d\xdc\xa6\xb7\xa3\x6a\x67\x1f\xe1\x1e\x9d\x9e\x9a\x79\x7b\x07\xdb\xc2\x95\xce\xba\xbe\x45\xd0\x6a\xae\xc1\xe5\xb4\x5c\xc7\xeb\x09\xd6\x1c\x93\x29\x52\x35\x72\x97\x06\xcc\xab\xef\x9d\xab\xf6\xc8\x94\xc7\x8e\x4c\x8b\xf7\x76\x5b\xd3\x1d\xd7\xa2\xa8\x48\xb2\x78\x36\x27\xec\xa6\xfa\x76\xba\x07\x60\xfb\x2b\xcf\x87\xbb\xc8\xb3\xaf\x3b\x39\x98\x72\x07\xef\xe8\x9a\x6e\x54\xf4\x79\x49\x7f\x0b\x75\x16\x9e\xc9\xb9\x23\x60\x7c\x19\x72\x5c\xdd\x61\xf1\x64\x5f\x0d\xc4\x06\xe9\x6a\x2b\xb9\xfa\xcc\xd7\xaf\xf9\xbc\x10\x3b\x30\x11\x54\x6a\x2e\x6f\x38\x5e\xd3\x0d\xbd\xd7\xf1\x62\x33\x31\x37\xd7\x84\x98\xe1\xe2\x2c\xa6\xb6\x18\x47\xe6\x34\x9a\x44\x61\xc2\x9a\x3a\xc0\x51\xd9\x98\x16\x54\xf8\x83\x20\xf7\xab\x36\x18\x78\xa7\x9e\xbd\xa3\xbc\x86\xbb\x2d\x57\xf1\xf4\x75\x09\x0d\xab\x23\xdc\xe5\x68\xa2\x8e\x0e\x44\x57\xf3\xef\x01\xdd\x55\x6e\xa6\xe6\x96\x16\x38\x4e\xbd\x35\x7b\x2d\x4b\x54\x5e\x32\x35\x93\xea\x35\x67\xaa\xf9\x0c\x6b\x77\x89\x19\x9f\x57\x4d\x9a\x0e\x3d\xbb\xdd\x1d\x30\x67\xa4\xbb\x5f\xaf\xb6\xdf\xb9\x3c\x44\xf3\xba\xa0\x1e\x83\x6c\xfa\xae\x00\x81\x29\x58\xfb\x30\x6a\x7a\xfa\xef\xe0\xa8\x8c\x91\xdb\xd6\xa8\xac\x9c\x07\x3d\x12\x30\x53\xe6\x48\x9d\x4f\x86\xc6\xbd\xb5\xa6\xb6\x41\x10\xda\x63\x8a\xe1\x16\x3d\x98\x55\x06\x3a\xbf\xad\xc8\x75\x45\x1a\xa9\x8e\xc6\xe0\x48\xb2\x74\xbb\x60\x61\x78\xe4\x16\x84\xf1\x14\x37\x57\x37\x82\x40\xef\x14\xd3\xbd\xf2\xaf\x6f\xb0\x12\xb7\x34\xb5\xb3\x39\x69\xec\xb0\x46\x82\x31\x03\x37\x52\x80\x53\x86\x14\xdf\x08\x0b\x09\x66\xd5\x35\x01\xc4\x8e\x94\x72\xa6\x19\xdb\xf0\x4e\x72\xea\xc1\xe5\xe1\xca\xd0\x96\x6f\xa6\x69\x81\x08\x8f\xf0\x18\xe5\x1b\x5f\x86\xb0\x34\xca\x5b\x1a\xcc\x97\x21\xac\xb4\xc5\xa2\xfd\x5e\x7c\xe3\x09\x5b\x58\xb9\x75\xeb\x94\xdd\xfd\x1d\xaf\x85\xe6\x99\x9c\x37\xfb\xfc\xa6\xf2\x6a\x00\x9c\x52\x4e\xdb\x26\xc9\xa8\xd2\x61\x15\xfe\x3e\xef\x80\x43\xb7\xae\xaf\x63\xca\xde\xb4\x26\xcd\x0c\xa7\xe3\xb3\xfa\xbc\x7b\x84\xd7\xda\xef\x63\xba\x2b\x63\xa6\x25\xd9\xda\x8d\x58\xfe\x9f\x71\x3f\x54\x91\x19\x72\x63\x42\x73\x0c\x57\x6d\x49\x4e\x47\x93\xbc\x45\x2a\x6c\x0f\xb9\x3b\x08\x93\x26\xcc\x66\xb9\xbb\x45\x21\x82\x20\xa9\xa6\xd9\xa7\x54\xe8\xae\xed\x45\x5c\x10\xa9\xf9\x80\x26\x35\x87\x20\xb1\x77\xd9\x93\xac\x42\xe6\x7c\x54\x61\xf8\xe8\x88\x23\x28\xa0\x5a\xc7\xf8\xa6\xa3\xb8\x39\xac\xae\x42\xc3\x71\x0b\xbb\xc0\x8b\x54\xef\x2d\x4c\x72\xd6\xbc\x56\xd1\xb8\x94\x18\x04\xe6\x6f\xf4\x2a\x51\x2b\x4a\xf5\xbf\x53\x93\x12\x77\x55\x2a\x58\xb6\x0c\x02\xfd\xaf\x5f\x41\xff\x8e\x7f\x70\x33\x42\x1e\xf3\x84\x70\x88\x49\xc2\x28\x3a\x5d\x8e\x93\xc5\xe2\xe9\xe2\x51\xf2\x74\xf4\xf4\x7c\xf4\xe5\x29\x7b\xc2\xd8\xf2\x09\x7b\xf2\xf8\xf1\xf8\xf1\x72\x79\x8e\xac\x7a\x25\x67\xb3\x84\xcd\x83\x20\x34\x1f\x74\x64\xe8\x69\xc1\x6c\xce\x60\x40\xb6\x2d\x6c\x6f\xba\x22\xb9\x5b\x44\xfa\x28\xb4\x03\xa9\x4a\xc3\xa1\xa5\x06\x74\x6c\x25\x35\xc0\x0b\x54\xdd\x52\x32\xd7\x16\x1d\x18\x41\x90\x7f\x9d\xac\xd9\x5b\xc9\x96\xfc\x46\x0f\x89\x1e\xcd\x35\xbe\x4d\x7d\xaf\x80\x16\xec\x40\x69\xcc\xa9\x43\x8b\x56\x1e\xc6\x9a\xeb\x58\x73\xc1\x97\xb7\x53\x84\x06\x61\xbe\xdf\xa3\x05\xc2\x83\x82\x0d\xf8\x40\xc5\xf9\x40\x18\x4b\xdc\x10\xe9\xa4\x90\x4f\xf5\x17\x8f\x11\xc2\xc6\x1f\xad\x2c\xc9\xa2\x63\xe7\x1f\x4c\xbb\x66\x67\xb5\xe4\x4e\x19\xc8\xda\xa5\x77\x91\x2d\xb3\x6a\x1e\x25\x6f\x2b\x13\x9c\xc6\x77\xc9\xcf\xb7\x8a\x01\x75\x7f\x95\x6c\xa6\x1d\x69\x20\xdf\x28\x1c\x5b\x56\x4a\xff\x74\xae\xec\xf6\x56\x06\x2e\x17\xe0\x81\x57\x1b\x84\x91\x77\xd7\x73\x59\xdb\x73\xe5\xad\xf3\xc9\x39\xbc\x17\x07\xbe\xe8\x92\x5e\x87\x82\xf4\x47\x98\xf8\x37\xd7\xf4\x79\x3a\x13\xf5\x36\xf0\x6e\x35\x9a\x21\x35\x2e\x4c\x10\x49\x90\x7f\xa5\xad\x3f\x9a\x3c\x74\xa6\x85\x9e\x29\x91\xf5\x5c\x5b\x0d\xbb\x89\x72\x37\xd1\xfe\xd8\x52\x81\xfe\xa8\x9e\x70\xea\x81\xfa\xa1\x3d\x1b\xf1\xce\x07\x73\xfb\xd2\x88\x07\x64\x0f\xb8\x1b\xe6\x7b\xa3\xf5\x58\xd3\xd5\x5d\x91\x56\x02\xa5\x0a\x0e\xd6\x15\xa3\x0d\xfe\xa1\x6a\xa0\xba\x5f\x0c\x4e\xad\x95\xd7\x3b\x5a\xb1\x24\x45\xb8\xc4\xde\x4d\xe3\x35\xab\x0f\x22\xce\x2a\x6a\x65\xd4\xc7\x66\xad\xbe\x19\x39\xd1\xfe\xd8\x7d\x4d\x2d\x0b\xb0\x8e\xdb\xc9\x9a\xe0\xeb\x96\xa4\x27\x2e\xcb\xd6\xe1\x6a\xcf\x8a\x66\x46\xc1\xa4\xfe\x7c\x9b\x73\xa1\xec\x61\xef\x27\x55\xd7\x0d\x1b\xd2\x8d\xb9\x11\x62\x1c\xfe\x45\xfb\x3a\x8f\xf3\xab\xac\x33\x22\x96\x31\x00\x92\xc9\x79\x9d\xa7\x8c\x88\x3c\x65\x1d\x45\x4a\xdd\x6a\x78\x7c\xfe\xf5\x7d\xcc\x89\xf8\x46\x43\x63\x38\x7c\x28\x08\xfe\xf5\x99\xe2\xff\xee\x59\x46\x82\xdd\xa8\x33\x7e\x9e\x71\x71\x51\x96\xce\x2d\xb7\x39\x1e\x98\x4a\x10\x1c\x7a\x22\xba\x1b\x47\x47\xd8\x91\x15\x0b\xb1\x13\x1a\x8d\xb3\xa8\x1e\x49\xd1\x75\xa3\xdd\xcb\xb6\xb0\xfb\x92\x52\x2a\xab\xbb\xf2\x1a\x7e\xfa\xdb\xc8\x0d\x4a\xf2\x75\x88\x69\xcd\xba\xb4\x41\x25\x1b\x02\xb1\x03\x10\x3f\x80\x07\x6f\x4e\xbf\xa2\x0c\x7a\x54\x57\x07\x1b\xcd\x98\x41\x8f\xec\xb3\xff\x58\x33\x95\xcc\x5c\xc4\x09\x8a\x16\xc5\x66\x28\x72\xb1\x60\x68\xfe\x1f\x35\xe7\x3e\x05\x22\xfc\xcc\x11\x91\x10\x2d\x72\xa1\x98\x26\x76\x46\x59\x87\x31\xb9\x3d\xa6\xed\x64\xd1\xc2\x70\xf7\x15\x04\x6b\x47\x5f\xa1\xd9\x5f\x30\x26\x08\x2a\xf1\x44\xd3\x2f\xbe\x0c\x51\xad\xc4\x43\x26\x30\x8a\xaf\xd6\xab\x0d\x5b\xba\x68\xb2\xd9\x30\x91\xd6\x45\x77\xa0\xdb\xb1\x49\x9a\x86\x1d\x25\xa0\xbd\x7a\x60\x33\x31\x2f\xc9\xc5\x7d\xbe\x1d\xed\x63\x88\x66\xce\x31\xaa\xce\xa0\x4b\xe6\x04\x2e\x9f\x98\xd2\xb4\x2e\xea\x40\x4f\x37\x36\xcd\xa2\x74\xd3\x8f\x0b\xa4\x71\x3f\x65\x95\x14\x2f\x01\x08\xcc\xea\x33\xfb\x63\xc2\x82\x80\x33\xa3\x0f\xc6\x7e\xbd\xc6\x85\x23\x48\x9a\xd6\x9f\x6e\x43\xc7\xbb\x12\x38\x6d\xb8\x2a\x40\x24\x7c\xa9\x84\x70\xaa\xdc\x88\x26\x8d\xe1\x71\x2f\x24\xc8\x01\x52\x99\x58\x08\x2f\x4c\xd1\xd0\x7a\xe9\xd6\xf8\x13\x29\x76\xa3\x9e\x1b\x9c\x01\xee\xd6\x48\x68\x7e\xfb\x1a\x34\x1e\x82\xa5\x89\x4a\x86\x1f\x8b\x02\x11\x84\x20\x32\xc3\x1d\x65\x61\x06\x88\x08\x4c\xe4\x9d\xe5\xa0\x4d\x3d\x49\x44\xa4\xbb\xcf\x79\xc5\x42\x3c\xc9\xef\xac\x66\xb6\x03\xc9\xff\xa0\x91\x03\x2e\x9b\xfb\xad\xd6\xbb\xd8\x5d\x5d\xd5\xcb\x81\x77\xfd\x2e\xcd\x74\x9b\xb8\x12\x49\xd7\x1a\x9f\xc1\x4b\x64\x6c\x7c\xb2\x9d\xe7\x0d\x76\x1f\xb6\xce\x77\x6c\x99\x4b\x06\xfe\xc2\x9a\x5c\xd4\xbb\x45\x04\xc1\x61\xe4\x23\x51\x51\x2b\x47\x16\x05\x98\x6a\xeb\xe1\x6a\xf8\xe4\xed\xb6\x1b\x34\x08\x9b\x7b\xe8\x9a\x72\xda\xed\xf7\x5c\x13\xc6\x90\xe1\x32\xf4\x61\x40\x0e\xd1\xd0\x2c\x04\xa3\xdf\xe5\x79\xc6\x12\x11\xd6\x25\x7c\x28\x55\x8a\x5f\x2b\x69\xb6\x77\x43\x10\x54\x06\x89\xae\x8d\xd2\xb4\x09\x95\xdd\xf6\x20\xcf\x5d\xe4\x70\xc9\x26\x2c\x08\x1c\x8b\x64\xe6\xe6\x17\x3c\xa2\xdf\xf6\x5a\x34\x86\x6e\x90\x26\x9a\xae\xca\x2d\x8b\x49\x11\x32\xab\xaa\x8e\x1b\x23\x69\x6f\xa0\x41\xed\xfe\x17\x62\x73\xef\xa0\x69\x32\x69\x1b\x3c\xda\x1c\x50\xc3\xf0\x5b\x69\x3e\x7d\xf3\x89\x35\xff\x8a\x39\x11\x44\xe1\xa3\x06\x99\xc3\x8b\xdc\x26\xf2\x42\x73\x47\x01\xaa\x13\x37\xb7\x5d\xad\x6c\x13\x4e\x4f\xdf\xb8\xdb\xd7\xa7\x94\x59\x07\x7f\xcf\xb3\xba\x4a\xdd\xef\x61\x0f\x84\x9c\xde\x82\x5b\x40\x0d\x8b\x5d\x7d\x29\x69\x5c\x62\xa2\x30\x04\xb8\x3a\x00\xb2\x34\x03\x21\x1c\x13\x8e\x4b\x08\x51\xe2\x5b\x46\xfc\x5f\x16\x09\x80\x71\x36\x4a\x52\xda\x35\xb7\x8a\xd4\x79\x17\x3a\x0d\x89\xf1\x57\x0a\xb6\x6f\x8e\xdd\x51\x34\x31\x1a\x02\x98\x44\x4e\xaa\xb8\x5b\xd5\x4d\xe3\x23\x08\x3d\x22\x7e\x37\x34\x21\xc9\xfd\x46\xa5\xc3\x21\x3b\x8f\x01\x4f\x8b\x63\xba\x1f\xea\xee\xf5\x22\xfa\x4d\x86\x42\x0b\x36\x47\x8d\x3f\x35\xfb\x74\xd8\x51\x75\xce\x92\x8e\xe0\x40\x1a\xf6\x1a\xa2\x33\x31\xaf\x7c\xdf\xaa\x71\x18\x5d\x54\x75\xef\xb5\xd3\x86\x77\xdf\x1c\x0e\x87\xd3\x9c\x54\x1b\xef\x35\x3a\x63\xcf\xa6\x57\x1c\xb3\x58\x75\xcf\xd1\x2a\x1f\xcf\x19\x1d\x91\x9b\xfb\x58\x0a\x9e\xd2\x73\x36\x18\x58\x5f\x5a\x26\x0b\x9e\x0b\x8a\xc6\xa3\xe8\x71\x34\x42\x0d\x5d\x2c\xd8\xe8\x65\xeb\x96\xd8\x8e\xa7\xf1\xce\xc8\xfa\x1a\xdd\x89\x39\x85\x7f\xf4\x5c\x22\x59\xed\x2b\x99\x4e\x2f\x18\x70\x6b\xc4\x36\x59\x5b\x8b\x6a\x27\x4a\xba\x65\xa1\xd7\x62\x7d\x67\xd5\x18\x01\xfe\x71\xa0\xe9\x77\xaa\xe2\x6d\xc1\xc2\x7f\xcc\xd4\x9c\x38\xe5\xb5\xd3\x1d\xa3\xd2\x92\xec\x82\xa9\xed\x46\x9f\x08\x77\x9c\xa2\x50\xa6\xcb\x66\x76\xa8\x8f\x21\x2c\x6a\x4f\xd7\xad\x76\xa5\x4e\x69\xe5\xd3\xc3\x2a\xb8\xe1\x85\x57\x89\x3a\xa9\xf5\xce\x68\x26\x12\xe3\x96\x47\xc2\xc3\x76\xf6\x7b\xc8\x73\x0d\x79\x00\xbd\x73\x44\xed\x6e\xb1\x53\xf9\xb4\x65\x99\x83\x11\x36\x85\xb1\x76\x71\x4c\x90\x5b\x77\x7b\xb5\xa9\x59\xdd\x65\x52\x56\x7d\x42\xec\x2a\xb3\x98\xf6\xe0\xdd\x16\xcc\x0f\xb8\x56\x65\xd7\x56\x4e\x33\x1d\x8f\x32\xde\x6d\xd6\xa8\xcd\x18\x56\x41\xee\x98\x11\x2f\x6c\x00\x1c\x1d\x10\x82\xc7\x9e\x3f\xd3\x51\xec\x3e\x07\xe3\x2a\xaa\x13\xbb\xee\x81\xd1\xd5\x39\xd1\x7c\x2c\x8c\x4b\x8c\xef\x0f\xac\xbc\x65\xb0\xc6\x6d\xcf\xff\xb8\x09\xb0\xf8\x0e\xe8\xd6\x5b\xa8\x13\x86\x04\xc6\x16\x8b\x12\xe3\x86\xbb\xed\x81\x03\x06\x80\x08\x2e\x25\xd7\x2a\xf6\x4e\xd8\x79\xca\x95\xca\xe1\x84\x3b\xe6\xc3\xb1\xfa\x35\xfc\xef\x3d\x8f\x2b\xf0\x93\xc3\xe0\x48\xa4\x2b\xd2\xa5\x3f\x8d\xba\x0f\xdb\x20\x58\x36\xed\x3a\xb8\x8b\xa0\xd6\xdf\xba\x5a\x85\xbb\x21\x56\xe2\x89\x6c\xac\x4d\x28\x0f\x76\xcc\x85\xb7\x45\xa5\xf3\x7f\x82\x92\xb5\x87\x15\xf6\x2f\xc4\x41\x9e\xef\x6d\xe5\x3c\x67\x4c\xa8\x30\x59\x2b\xf3\x2d\x7a\x1f\x75\x90\xe1\x07\x46\x3a\x2f\xd2\x26\x8c\xae\xc3\x57\x94\x08\xef\x0a\x9d\xc2\xcd\xb8\x55\x33\xe9\x5f\xa1\xf3\xe2\x7e\x55\x7e\x33\xb5\xbc\x6e\x62\xcd\x79\x54\x55\xe1\xb2\x72\x63\xd2\x47\x0b\x4c\xeb\x9a\xdd\x1d\xd5\xa8\x66\xf4\xb9\xd0\x89\xe4\xac\xd3\x37\x45\x0f\xf9\x06\x3c\x65\x26\x67\x5a\x10\xaa\xc3\x69\xb1\x8a\x7d\x6d\xcf\xf4\x9b\x51\x10\x18\x4c\xd0\x4c\x8a\xe7\xc1\x3a\xf5\x7f\x68\xe9\x52\xd3\xa5\xf3\xa4\x60\xcf\xad\xf7\x9a\xa0\x2c\x12\xec\xda\xfe\x9c\xb0\xe8\x79\xbe\xde\xe4\x82\x19\x55\x4d\xbf\xbe\x90\x6b\xb1\xcb\xd8\x71\x42\x1e\x25\x18\xb6\x79\xb5\x84\xbe\x81\x47\xe0\x0e\x20\x32\xbc\x13\x33\xd0\xf8\xcb\x19\x9b\x53\x84\x2a\xa3\xe7\x8c\x99\x18\x66\x2e\x41\x17\xc3\x00\x61\x1b\x4e\x8a\xd1\x5d\x33\xd6\x07\xf1\x83\xd4\x50\x66\x95\xd3\x13\x0e\x61\x84\x34\x00\x5f\x25\x1b\xd0\x7a\xaa\x50\x11\x8e\x4d\x30\x18\x15\x1a\xc3\xf3\xc5\x41\x53\xb5\x5a\xc4\x36\x54\x85\x35\x90\x90\x22\x70\x75\x29\xc1\xf0\x29\x07\xf5\x5d\x4d\xa7\xc2\x85\x48\x1b\x97\x8c\x8a\xf0\xf4\xcb\x47\x98\x3c\xd7\x5f\xe3\xd1\x63\x4c\xde\x31\x3a\x43\x8b\x15\x5b\x5c\xb2\x14\x11\x94\xf2\x42\xb3\x8b\xfa\x93\x49\x99\x4b\x44\xd0\x32\x5f\x6c\x0b\x48\x81\xaf\x5f\x79\xc1\xcf\x33\x86\x08\x92\xec\xf7\x2d\x97\xa6\xec\xcd\x26\x11\x29\x7c\x1a\xcd\x2e\x4b\x91\x89\xca\xf4\x96\xd1\xef\x13\xc5\x22\x91\x5f\x87\x98\xbc\x60\x14\x2d\x05\x68\x46\x0a\x34\x78\xcb\xc8\x7b\x48\x00\x0a\x87\x06\xbd\xc1\xe0\xad\x61\x88\x5f\xb3\x43\x86\xea\xee\x0b\x3c\x7c\x19\xd6\xb1\x36\x6b\x5c\x57\x8d\xbb\x12\x06\xaa\x7a\xb3\x6b\x92\x54\x83\x75\xf6\x9e\xcd\xa9\xd2\x34\xf7\x8e\x0b\xc6\xd0\xc7\x0b\x73\xfb\x63\xbf\x7f\x6f\x3e\xda\xb1\xf5\xbc\xa0\x38\x4d\x67\x31\x88\x99\xd7\x15\x0d\x94\x07\x81\x73\xa2\x07\x0f\x32\x20\x04\xb5\xe7\x98\x9a\xbd\x60\x73\x2a\x08\x5c\x2b\xb6\x06\xec\x63\x78\xa7\xb4\x4c\xae\xe7\xa2\x85\xf1\x90\x5b\x6f\x8f\x3c\x64\x78\xbf\x77\xb4\x2e\xa1\x5c\xb7\xa8\x37\x53\x82\x1b\x71\x01\x12\xcc\x8d\x5f\x71\x41\x92\x59\x31\xd7\x67\x88\xc4\xa5\x6f\xad\x79\xc6\xea\x50\xb0\xcf\xd8\xff\xec\x58\xb0\xaf\x18\x45\xdf\x5e\x64\xf9\x79\x92\x21\xf2\xf2\x0e\x1f\xe4\x86\xeb\x47\xe5\x85\x6c\xee\xff\xb9\xfa\xd6\x83\x8e\xbe\x62\x7f\x24\x9c\xc4\x43\xc2\xbc\x1d\x8f\xbc\xd6\xf0\xca\x7d\xc6\x1e\x18\x9c\x41\x12\xa5\x61\xf4\x6f\x8f\xf7\xf2\x5f\x88\xdd\xd2\x60\x07\xee\x0e\xdc\xf2\xaf\x7a\x19\x1e\xfa\x1a\xdc\xe9\x78\xe7\x9c\x45\x3e\xdd\x83\x26\x0f\xc0\x8c\x2e\x3c\xd0\xbd\x3d\x08\x11\x8e\x5c\x06\x6d\xc6\x03\xd1\xa7\x46\xb1\x3d\x2f\x94\x0c\x1d\x82\xf7\x90\xdd\x78\xde\xba\x9b\xa0\xa7\x3e\xe7\x26\x89\x22\x47\xf0\xe8\x8f\xde\xdf\xad\x7a\x99\x56\x5f\xbe\x1b\x63\x1d\x86\xe6\x67\x46\x4f\x3e\x14\x9f\x93\x0f\xc5\xe7\x27\x17\x35\xa1\xf9\xae\xed\xfd\xaf\xe7\xb4\xc9\xb8\x0a\x7f\xd6\x54\x89\x22\xe4\xc2\x0f\x34\xfc\xac\x06\xd4\xc4\xd3\x10\x70\x1d\x01\x0c\x29\x44\xcc\xb8\xb9\x78\x2a\x6d\x9c\xd2\xda\xcd\x4a\xb7\xfc\xfd\xbf\x72\xd0\xf4\x59\xe3\x54\xb1\xda\x89\x57\x75\x2a\xbb\xee\xbd\x64\x9e\xfb\x62\x1d\x28\x2b\x08\xea\x45\x81\x40\x23\x76\xa9\x46\xe4\x70\xb1\xfc\xe6\x3e\x55\xcd\xb9\xf0\x11\x66\x85\x7c\x0f\x02\x87\x74\x60\x5d\x32\x1a\xb0\xda\x32\x57\xc5\x20\xf0\x0b\x35\x33\xa1\x8e\xf1\x0b\x33\x97\x24\x4d\x38\x59\xe3\x38\x66\x52\x4c\xa6\x33\x4e\x30\x23\x89\x96\x2d\x07\x2d\x1f\x21\xea\x58\x1c\x4e\x55\x17\x1e\xaa\x9d\x2a\x6d\x27\x70\x7f\xc6\xf7\x50\x52\x31\x15\xb3\x57\x6c\x1e\x3b\x18\xfb\x6e\x7f\x9a\x0e\x4b\xec\xd4\x2a\xce\x07\x9b\x13\x39\xe3\x73\x8b\xc4\x8a\xec\xaa\x1b\x9c\xdf\xe9\xbc\xda\xe8\x0c\x16\x63\x7b\xe6\x42\x1f\x65\xa9\x4f\xbb\x07\x0d\xac\x7d\x46\x55\xab\x2b\x61\x75\x65\xbd\xa0\xaf\x9c\x15\x15\x1b\xe4\xb0\x87\xf4\x77\x2c\xac\x0a\xd5\x45\xfc\xd1\x4d\x0e\xe7\xa5\x0f\xb6\x8e\x79\x71\x4d\xe3\xab\x89\x48\x33\x8f\xe6\x99\xfd\xab\x77\x66\xff\xfa\x3f\xfc\xcc\xfe\xdd\xa7\x16\xe4\x17\x46\x4f\x82\x93\x0b\xf2\x03\x6b\xc6\xc4\x81\x1d\xf2\xd7\x3b\x6f\x15\x75\xba\xe7\x78\xbc\xbb\x3d\x60\xf6\x7b\x88\x1a\x52\x27\x78\x77\x29\x38\xe5\x75\xc0\xc9\x58\x7a\xce\x0f\xaa\x4d\xbb\x94\xa5\x5d\xbf\x03\xed\x62\xde\x2f\xcf\x41\x4c\xf8\x4e\x61\xae\x6e\x42\xc5\x2c\x9f\x13\x13\x2d\x58\x76\x44\x0b\x96\xb3\x62\x3e\x71\x0e\x61\xc4\x3e\xcd\x00\x6a\xcd\x6d\x75\xe4\xa1\x00\xe1\xe9\xb6\x8a\xfe\xf3\x0b\x23\x09\x8e\x13\x20\x94\xdb\xda\x5b\xac\x1a\xbe\x4f\xe8\x2a\x69\xeb\x57\x77\x2e\x58\x3d\x86\xd3\xb5\x54\x81\x93\x6b\x83\x85\x60\x85\xe2\xe2\xe2\x67\x76\xc5\xb2\x89\xac\xfd\xf6\xe4\x74\x1c\xcb\x81\x73\x80\x32\x0d\xd6\xfb\x6b\xe7\x57\x8b\x9d\xbe\xc4\x77\x8a\x84\xce\x9c\x3f\x88\x41\x79\x6e\x82\x62\x39\x9f\xf0\xdd\x31\xe6\x5d\x12\x4e\x72\x23\x22\x18\x72\xd4\xa7\x94\x1b\x6a\xe7\xc8\xa7\xe1\x8d\x49\x41\xb6\x94\x93\x05\xdd\xb6\x48\x63\x85\xe5\x99\xa1\x3c\x00\xfe\xa5\x81\x74\xd6\x80\x34\x49\xa9\xa1\x07\xd9\x6c\x04\x5c\xf6\x72\xbf\x4f\xa1\xef\x84\x8a\x70\x4b\x16\x24\xc1\x64\x69\x1a\xd8\x50\x15\x66\x64\xeb\xed\xfc\x62\xbf\x0f\x0b\xca\xc2\x05\xc4\xe0\xda\xd0\x4d\xb5\x6c\x3f\x30\x52\x60\xb2\xa8\x68\xc2\x86\xc8\x59\x36\x27\x06\x8e\x89\x47\x13\x36\xfa\xbc\x06\x4b\x5b\x1a\x04\x75\xf9\x4c\x8b\x3c\x09\xae\x7e\x6f\x4d\xf8\x7b\xdd\x46\x5d\xb7\x1e\x4a\x59\x11\x48\x5d\xc4\xb9\x0f\xf4\x64\x59\x96\xe4\x33\x46\x4f\x66\xcf\x86\xff\x98\x9f\x5c\x90\xdf\x18\x3d\xf9\xe7\xba\x18\x9e\x90\x1f\x4d\x44\x50\x87\x46\x7f\x63\x35\x3f\x80\x86\xc6\x14\xf5\x73\x7e\xcd\xe4\xf3\xa4\x60\x96\xd7\xfc\xf3\x81\xc3\xfe\x8f\x6d\x7a\xe1\x85\x2f\xff\xb1\x8a\xf4\xab\x09\xb3\x83\xcb\x67\x8c\xfc\xad\x0e\xb4\x05\x65\xe8\x6f\xcc\x04\x57\x51\x18\x1c\xd7\x54\xac\xbc\x81\xfd\xe4\x39\x08\x1d\x86\x94\xdf\xa9\xd9\xa8\xe1\x28\x8d\x86\x43\x84\xa7\x22\xfe\xb3\x96\xa1\x8d\xcb\x67\xcd\x0d\x55\x01\xae\x83\xa0\x1d\x4f\xbd\xce\xc3\x53\x2f\x42\x38\xf5\x32\x20\xf8\xfd\x4f\x0c\xc7\x7e\xbe\x1e\x9e\x57\x17\x13\xe3\x1a\xf5\x97\x6e\x3e\xe5\x88\xb0\xda\x11\xe1\xa3\x19\xd8\xa3\xf3\x31\x1a\xe8\x7b\xa6\x7c\x67\x6c\xfb\xf1\x93\xb9\x28\x75\x77\x5c\xab\xca\x69\xb9\x01\xba\xa6\x80\x2c\xe9\x9f\x99\xa7\xcf\x50\x40\x17\x58\x1c\x0a\x23\x79\x4a\x62\x59\x0a\x7d\x86\x91\xbf\x33\x7a\xcd\x40\x53\x35\x7d\x7e\x76\x16\x6d\x6e\x62\xb4\xb9\x41\xe4\x1f\xcd\xe4\x75\x11\xa3\x75\x81\xc8\x7f\xb6\x4a\x33\xb9\xd0\x1c\x2c\xfa\x93\xf7\xf8\x0f\x88\x27\x76\xed\x4f\xc2\xe1\x2c\x19\x7e\x82\xf0\xdf\xa2\x53\xb1\x3a\x1b\xcf\x23\x95\xff\xb2\xd9\x54\x48\x4b\xa4\x8f\x32\xdc\xa0\x0c\x04\xbf\x62\x9a\xf1\x90\x33\x5e\xe1\xa5\x06\x89\x49\x6e\x32\x9c\x4a\x51\xa6\xc2\x9d\x17\xc1\x2b\x65\x59\x72\x8b\xe2\x7f\x34\x22\x91\xa5\x5b\x69\xe3\x7d\xe9\x74\x8d\x0b\x17\x32\xdf\x8a\x74\xb8\xc9\x0b\x6e\x32\xfe\xde\x9d\x31\xbc\x39\x9e\x75\x7b\x90\x55\xf0\x4f\x0c\x12\xcf\x73\x99\x32\x69\xb2\xe1\x73\x78\x9e\x2b\x95\xaf\xd1\x61\xd2\x30\x63\x4b\x35\x94\x49\xca\xb7\x45\x57\xb6\xe4\x17\xab\xbb\xf2\xaf\x79\xaa\x56\x8d\x0c\xdd\xe0\x41\x42\x47\xb9\x8e\x36\xa1\xb3\xc3\x94\x8e\xca\x2a\xdf\xb4\x7f\x1f\x9d\x89\xce\x3b\x3a\x0d\x9d\x79\xd8\x7c\x9d\xb2\x4e\xe4\x05\x17\x90\x67\x3e\x1b\xa0\xb4\x49\xf5\x94\x6d\x82\x37\x11\x9b\xe2\x06\xbc\x49\xd2\x94\x8b\x0b\xc8\xb2\xdf\x8d\x16\x5d\x5a\xdd\xa4\x4b\xf1\xda\x74\x49\x15\x14\xd6\x49\x71\x79\x80\x34\xcd\xc4\x5b\x2f\xb1\x42\x94\x15\xd3\x8d\xea\x2f\x98\xb1\x29\xc1\xc5\xd0\xa4\xbb\x1a\x37\xcd\xdf\x5c\xf8\x10\xd3\xd9\xf5\x4f\x33\x15\xfd\xa5\x27\xa0\xff\xaa\x7c\xa3\xff\x48\xd7\x11\x3a\xcf\x6f\x86\xc5\x2a\x49\xf3\x6b\xd3\x80\x62\x37\xaa\x91\xb0\xc8\xb3\xed\x5a\x0c\x2f\x92\x4d\xe3\xb7\x16\x3c\x0f\x12\xfc\x91\xd8\x64\x2f\x05\x22\x79\x55\x93\xad\x7f\xea\x6d\xaa\x12\x93\x98\x31\xa5\x98\x1c\x16\x9b\x64\xc1\xc5\x85\x37\x24\x13\x6e\xd2\x1f\xa3\x92\xf9\x25\x3b\x48\xf0\x3b\xbc\xce\x65\xda\x68\x6a\x9d\x6b\xe0\x1b\x40\xc1\xe7\x30\x5f\x2e\x21\xe4\xd1\xdf\x19\xc9\xb7\x2a\xe3\x82\x41\xae\xfd\xf6\xb3\xab\xb4\xba\x83\x0d\x93\xc5\x86\x2d\x14\xbf\x32\xb5\xbc\xdf\xc3\x5c\x72\x8d\x68\x37\x28\xfe\xcf\xee\x9c\x5b\x93\xa3\x64\x22\x8a\x65\x2e\xd7\x36\xbd\x3b\xd5\xb5\x73\x90\x7e\xa4\x95\xe1\x27\x2f\x9d\xb7\x69\xa1\x9f\xda\x20\x86\x57\x4c\x2a\xbe\x48\xb2\x61\x92\xf1\x0b\x4b\x07\x97\x19\xbb\x19\x9e\x27\x05\xb7\x3b\xb5\x58\x25\x1b\x36\x34\xfb\x08\x52\xf4\x12\xea\xbf\x17\x92\xa7\x50\x42\x7f\xd4\xf8\x02\xbf\x64\x7e\xdd\x4a\x69\xa3\x15\x24\x2a\xb6\xde\x64\x89\x62\xba\x7c\xd1\x95\x6e\x6a\xf9\x59\xc9\x56\xe5\xed\xe2\x90\xd6\x28\x5a\x63\x79\x45\xc3\xeb\x94\xdb\x83\x94\xf3\x6c\x2b\x0f\x12\x8b\x8d\x64\x49\xea\xe1\x2e\x60\x83\xbf\x17\xbd\xbd\xe3\xba\xf1\x93\x6e\x0f\x93\x5c\x47\xa5\x67\xfb\x11\xca\xd7\x87\xd4\x8f\x2a\x1c\x7a\xd0\xab\xf6\xb3\x32\x8d\x0b\x4a\x0a\x44\x40\x68\x0c\x94\xdf\xf8\x8e\xd7\xf5\x14\x08\xdb\xf5\xa3\x22\xe0\x24\xdb\x8c\x97\x8d\x95\x3e\x8c\x85\xb2\x71\xad\x0f\xc2\x9b\xe4\xae\x54\x6e\x7a\x85\xeb\x0c\x39\xd1\xbf\x1b\x7d\x1f\x38\xc0\x29\x77\x51\x47\xcc\xd8\x7c\xbf\x57\x4a\xf3\xa2\x76\xd2\xc9\xb4\x4b\xaf\x9f\x4c\x93\x50\x61\x4f\x89\x18\x23\x34\x50\x83\x24\x56\xbe\x62\xb1\x0a\x86\x01\xf0\x51\x0f\xbb\x5f\xe2\xdf\xec\x3e\xce\x04\x3a\xab\x48\x25\xf2\x88\x86\xc8\xc3\xda\x86\x0a\x66\x97\xa2\xbe\xc9\x5e\xb1\x81\xc7\x39\x3f\x2f\xcc\xa5\x0a\x05\x98\x7d\x1b\xea\x07\x6e\xa5\x61\x7b\x1f\x4b\xed\xf7\xea\x9b\x4a\xe9\x01\x26\xe7\xea\xd7\xc4\xf3\x3e\x6b\x04\x1b\x55\x78\x22\xbe\x56\xe0\x08\x24\xdd\xb5\xab\x9a\xa9\xaa\xba\xca\x95\xc7\xbc\xdd\xc7\x0b\x3b\xb9\x17\xf4\xd5\x60\x20\x69\xd5\xe8\xb4\x9c\xba\x17\xda\x5a\x0f\xc3\x69\xf8\x59\x3b\x64\xdd\xb4\xe9\x72\x29\xf3\x75\x47\x17\xd6\x9a\xc4\xdc\x0a\xb5\xc3\xe0\xfa\xe3\x73\x96\x74\x41\x0f\x74\x2b\x0e\x91\xec\xc3\x7f\xd8\xc6\xa8\xfa\x92\x0c\xc7\x6e\xf5\xd0\x9b\x6a\x1b\x89\xd6\x93\x73\x60\xde\x6f\xa4\x80\x3c\x8d\x09\x7a\x95\x6c\x90\xf1\xbc\x46\x67\xcc\xd4\x9d\x36\xe6\x13\xa3\x67\x4e\x35\x63\x0b\x9e\xfc\x33\x9c\xc6\xbf\xf0\xfd\x4b\x2c\x54\x38\x8d\xbf\xdc\x8f\x9f\xee\x1f\x9d\xe2\x70\x1a\x3f\xcf\x92\xf5\x86\xa5\xd8\xb4\xf0\xd9\x89\x91\xcd\x04\x9e\xda\xc9\x39\x53\x66\x0b\x46\x78\x57\xbf\x71\xf6\xfe\x76\xe3\x9e\x37\x7b\x29\xae\x92\x8c\xa7\xbd\x44\x69\x7a\xab\x7a\x2a\xef\x19\x9a\xd7\x13\xb9\x18\xc2\x8a\x9c\x67\x75\x70\xa9\xe8\x83\x78\x29\x7a\xc0\xa1\xe9\xa2\xe7\xac\xe7\x8a\x10\xa8\x90\xe8\x31\xf5\x0c\xa9\x29\x7a\xeb\x6d\xa1\x7a\xab\xe4\x8a\xf5\x92\xde\xac\xb5\xc8\xf3\x10\xf7\xd6\x4c\xad\xf2\x34\x42\xb8\xb4\x12\x6c\x02\x51\x75\x0a\xf8\x77\x0b\xff\x2e\xe0\xdf\x4c\xd1\x34\x08\x50\x2e\x54\xbe\x5d\xac\x0a\x95\x48\x85\xb8\x77\x8f\xc5\x7d\x58\x67\x68\x4d\x35\x53\xab\x54\x50\x74\xf7\x2a\xff\x14\xa3\xe1\x3a\xff\x34\x44\x44\x8b\x37\xc3\x75\x31\x44\xe4\x4d\x8c\x86\xf9\x10\x91\xbf\xb2\xf3\x4b\xae\x62\x34\xbc\x86\x8f\x21\x2a\x49\xaa\x8e\x7a\x59\x6f\x10\x6e\x29\x2e\x37\xf0\x5a\xc7\x12\xa8\xe9\x46\x0d\xd0\x7b\x77\x2c\xc3\x08\x15\xde\x25\x8a\x6e\x94\x9e\xd4\x52\xcd\x36\x6a\x3e\x39\x97\x2c\xb9\x2c\x91\xe9\x57\x2f\x77\xa2\x82\x00\xad\x8b\x3f\xdf\x6e\x56\x4c\x14\xa6\x5a\x10\x84\x1a\x18\x5a\x12\x83\x9a\xd1\xba\x00\x58\xb0\xf4\x82\x21\x4c\xda\xb5\x87\xc9\x66\x93\xb1\xa1\x92\x09\xcf\x34\x5b\xaa\xb9\xa0\xaa\x21\x0d\x49\xc8\x47\x06\xca\x2b\x45\x13\x45\xd6\x8a\x16\x8a\x5c\x29\xba\x55\xe4\x56\xd1\x85\x22\x17\x8a\x66\xc6\x0f\xe0\x5c\xd1\x9d\xc8\xe1\x46\x5c\x96\xc5\x33\xf0\xf8\x4f\x64\x02\x57\x14\x88\x0d\x70\xcf\x52\xa7\x54\xe8\x78\xab\xd1\xaf\x61\x29\xae\x9e\x0b\xa5\x74\xa5\xa6\x35\xa8\x07\x2c\x5e\xab\x01\xc3\x65\x49\x6e\x5a\x5d\x2e\xf2\x2c\x97\xc3\x24\xfd\xb8\x2d\xd4\x43\x3b\x6d\xd4\x71\xdd\xd6\x90\x5a\xa9\xe9\x5a\x0d\xd0\x46\x72\x61\xfa\x86\x8e\xaf\x15\x3d\x99\x0d\x3f\x14\xf3\x41\x18\xe1\xa9\x6f\x36\x39\x53\x0d\xf5\xa6\x9a\xaa\xa6\xfc\x1a\x23\xe4\x3d\x86\xa6\x1a\x4e\x44\x4e\x6e\xbd\x56\xe4\x4c\xe1\xba\xd8\x47\xbf\xd8\x1b\x15\x82\x2e\xc7\x2c\xcb\xa5\x22\xcf\x5b\x40\xd0\xa2\xc2\x3d\x93\xb7\xa4\xaf\x7f\xf2\x4f\x5d\xf8\xc4\x85\xc1\xad\xdd\x5d\x35\x45\xf4\x61\x00\xc5\x75\xcf\x20\x87\xf0\x75\xa2\x11\xaa\x69\x7b\xe7\xcb\x70\xa5\x06\x1f\xef\x28\xa3\x57\xad\x56\x32\x97\xe4\x5d\x6b\xe0\xc0\xef\xe4\x92\x33\xa1\x0c\xab\xf9\xc0\x15\x3c\xa8\xe7\x56\xd1\xe0\x6f\x9f\xd2\x2b\xb5\xdf\x5f\xa8\x69\x8d\x38\x6f\xdb\x5d\x57\xfb\xef\x3e\xc0\x79\xb1\x6d\xeb\x4a\xb6\x43\x11\x55\x49\x5e\x5f\x2f\xba\xfa\xe2\x0f\x98\xe0\x61\x67\xdc\x9f\x9e\xed\x0d\xd2\xbc\xee\xde\xb7\xba\xbb\x96\x5c\xe9\xdd\xbd\xce\xd3\x07\x6f\xc4\x46\x9d\xae\x3d\xb1\xdf\x57\x3b\x33\x08\x0c\x7d\xe9\x53\x7a\x0b\x7b\xc5\x6e\x91\xd7\xad\x71\x6c\x0b\x2d\xae\x81\x6a\xf3\xa1\xc3\xf0\xab\xb8\x51\xbc\xca\x3f\x1d\x0c\x61\xbf\xb7\x4b\x4d\xf5\x52\x7b\x63\x78\xa6\xe8\xee\xbe\x7d\x60\x71\xbe\x7f\xf2\x4f\xa0\xb1\xc3\x6a\x37\x1c\xd0\x01\xfb\xeb\x39\xc8\x0b\x68\x00\xbb\x92\xc3\xc3\x02\x9a\x42\x58\x39\x45\x93\x88\x7a\x90\xba\x8d\x8d\xde\x08\x7e\x69\x48\x81\x2d\xac\xc7\xf8\xea\x01\x63\x34\x7b\x35\x34\x5a\x8e\xbd\x11\xa9\xf6\x56\x9b\x80\x87\x5c\x68\x01\xe3\xc8\x2e\xae\x86\xd2\xf6\x92\xa9\xc9\x0d\xb2\x2d\xc0\x15\x1e\xc7\xd4\x99\xbd\x2c\xea\x09\x8a\xb2\x24\x2f\x1f\x0c\x4f\x43\xda\x4c\x65\xbd\xd7\x3f\x3d\xa0\xa6\x19\xd7\x47\x8f\xb1\x46\xc3\xfa\x71\xa3\xfa\x5b\x1f\x5d\xe6\x7b\x3c\x9f\xb2\x78\xa5\x06\xf6\xd5\x04\x58\x78\xb7\x66\x7d\x8b\x9c\xf6\xa7\x2d\xa3\xeb\xd6\x07\x49\x59\x92\x9f\xef\x19\x58\xfd\xa0\xc1\x42\xe6\x59\x36\x2c\x84\xe1\xcb\x9c\xd5\x58\x8b\x10\x23\x32\x1e\xe3\xe6\x69\x85\x06\x35\x16\x7e\xf7\xd0\x2e\xf2\x2b\x26\x6d\x37\xe7\x6c\x95\x5c\xf1\x5c\x1e\x1e\x84\x1a\xd7\x6c\xa1\xc5\x2a\xe1\x02\x54\x16\xd0\xcf\xf7\x8a\xee\x8c\x14\x7e\x21\xf3\x6b\x14\x9b\x6f\xa3\x49\xba\xd2\xab\x0b\xbf\x8b\x95\xe4\xe2\xd2\xe5\x0a\x76\x91\xf8\xb9\x56\x7e\xb7\x55\x25\x5b\x32\x29\x99\x55\x51\x12\xa4\xcf\x48\xbe\xbc\x1d\xba\x5b\x85\xae\x5c\xb2\xb8\x44\xc4\x28\x2f\x4d\x0a\x7c\x23\x82\x40\x3d\xa0\x39\xc2\x75\xd5\xa8\xd1\x18\xb8\xac\x56\x4b\x20\x29\x43\x73\x25\xf9\xf5\xc1\x28\xf3\xbd\x27\x09\x42\x18\xc5\xf0\x10\x7b\x35\x80\x7e\x57\x74\xa7\xbb\x89\x41\x5a\xd7\x5f\x6e\xda\x16\x60\xed\xe4\x94\x4b\x66\x64\xca\x78\x06\x99\xe6\x94\x41\x46\xdc\xaf\x73\xe7\x6e\xf2\xa6\x4c\xca\x45\x92\xe9\x36\xb7\x9b\x03\x18\xe8\x12\x0e\x04\xd0\xc7\x32\xd3\x5d\xdf\xd3\x7c\x07\xe4\x75\x11\x0b\xa9\x5f\x54\x23\x94\xc6\xef\x0a\x93\x1f\x3a\xfd\x94\xe1\x04\x26\x7f\x55\x74\x76\xae\xc8\x8d\x66\x1d\xc8\x3b\x45\xde\x2a\xf2\x42\x91\xf7\x8a\xbc\x56\xe4\x99\x22\xaf\x14\x79\xa9\xc8\x27\x45\x7e\x56\xe4\x3b\x45\x7e\x55\xe4\x9e\x65\xf0\x1f\xd4\x58\x6f\x33\xc5\x37\x26\xce\xe7\x2f\xbe\xe9\xf0\x9b\xe1\xd8\x99\x77\x7f\x87\xe5\xd2\x34\xad\x29\x12\xf2\x4a\x6e\x33\xcb\xc7\xeb\xe5\xe3\x8d\xb7\x39\xfa\xe3\x8a\x91\x36\x86\x5b\xee\x1b\x6e\x75\x49\x8b\x00\x7c\x36\x9a\x1b\x16\xa4\xae\xe9\xa4\x3a\xb0\xfc\xfc\xa0\x70\x7d\x2b\xb7\x9c\x93\xcf\x14\xfd\xab\x8a\x96\x3c\x53\x4c\x36\xdd\x54\xeb\x6b\xf4\x6d\x58\x94\x18\x43\x5b\x0f\x2f\x4e\x7e\xbb\xbf\x9b\xea\xe8\xd4\xcd\x77\x47\xf5\xa9\x1d\x82\xb6\xc5\xaa\x8a\x94\x96\xab\x50\xd5\xb5\x31\x26\xac\xc4\x64\x36\xc7\xe4\x47\xb0\xb5\x19\x29\xe7\xf2\x4e\x61\x05\x4e\x88\xbf\x29\x6a\x83\x83\x5c\x30\xf5\x3c\x5f\x6f\xb6\x8a\xa5\x26\x74\xd6\x31\x11\x0a\xce\x0f\xb7\x32\x7f\x06\x11\xe7\x6f\x0a\xf3\xe2\x75\xf2\x3a\xfc\xb3\xc2\xfb\x7d\xf8\xa3\x9a\xfd\x4d\xcd\xfe\xac\xe6\x73\x6a\xfe\xe2\xc9\x6f\xaa\xdb\x2f\xb8\x69\x66\xfe\x51\xe3\x4c\x89\x3d\xa6\xf8\x27\x75\xec\x01\xe6\x5d\x89\x49\xff\xb2\xc9\x9a\x9a\xdb\x1a\xd0\x4a\x65\xcb\x04\x34\xf4\x19\xab\x3e\xd0\x5a\x8f\xaf\xeb\xc3\x9b\x05\xe0\x8c\x6c\x9e\x0f\xbd\xb4\x61\xb9\x1a\x8a\x92\x89\xf8\xfa\x33\x55\xbd\xd3\x1c\x42\xbb\xf4\x33\x65\xc2\x90\x5d\x56\x81\xbc\x30\xe9\x9b\xfe\x41\x8b\x02\x77\xa8\x5d\xa6\xf1\x7d\xb6\x37\xa0\xe5\xe1\x0d\x68\x33\x7b\xb0\x41\x2a\xf2\x77\x3d\x43\xf2\x0f\x45\x77\xf5\xd0\xe3\x71\x43\x59\xeb\xae\x89\x23\x9d\xee\xce\x3b\x6f\xa2\xdd\xc9\x7e\xb5\x92\xfc\xa7\xa2\x27\xe1\x3f\x3f\x14\x9f\x5b\xa7\x8e\x3d\xe9\x85\xf5\xaf\x70\xda\x9f\xfd\x33\xc4\xf3\xcf\x3f\x60\xec\x8b\x3f\xac\xe1\x0c\x7c\x95\x18\xfd\x9d\x05\x39\xfc\x06\xae\x24\xc9\xb2\x46\x86\xfe\xed\x67\x38\xa7\x07\x44\x7a\x90\x65\x5d\x16\xa7\x3f\x41\xbc\x11\x44\x7a\x68\xf0\x93\xa6\xef\x95\x0a\x4a\xaf\xd2\x7e\x2f\x3c\xfc\x50\xcd\xcb\x67\x40\x40\xfe\xa2\x59\x45\x47\x42\xfd\xfb\xfd\xca\x0f\x5f\xed\xdd\x72\xd9\xef\xfb\x06\x7d\x37\x89\x2c\xd8\x4b\xd0\xaf\x8d\x47\xb8\x76\x0b\x73\xae\x17\x03\x51\x63\xd9\xdf\xc1\xbd\xd3\x96\x80\x1f\xb0\xd8\x7f\xf1\x16\x5b\xb4\x6f\xbb\x9b\x72\xb4\x3f\x26\xfd\x71\xc9\x97\xe1\x3f\x00\x53\x04\x15\x15\x97\xf6\x9f\x8a\x30\x5f\x3d\xaa\xc7\xef\x35\xa9\x79\x84\xe1\xba\x30\xc7\x17\xa5\x34\x14\x14\x8e\xbd\x20\x08\xfd\x8e\xab\x32\xe7\xf9\x0d\xc2\xa4\x31\x26\xd2\x6e\x13\xe3\xc3\xc1\x39\x88\x37\x1a\x45\xc4\x94\x10\xe6\x6f\x99\x42\xaf\x77\x91\x18\xab\x4e\x13\x47\x3c\x84\x0e\x63\x96\x39\xaf\x55\x1b\xbe\xa1\xa9\x82\x16\x41\xd0\x3c\x4a\x24\x36\x0f\xd3\x4b\xa0\xcc\xcc\x8b\x46\xcd\xf5\x34\x72\x6a\xb0\x27\x0f\x82\xdc\x5e\x3f\xe4\xb4\x3f\x72\xde\xd9\xfd\x31\x29\xa8\x12\x61\x4e\xae\x75\x4b\x93\x22\x08\x0a\xfb\xba\x56\xa2\x8b\x91\x90\xef\xf7\x89\x06\x2d\xaf\x83\xa6\xcf\xc4\x9c\xa8\x59\xbe\xdf\x8b\x39\x2d\xf6\x7b\x89\xcb\x5a\xb1\xdc\x56\x13\x1f\xb8\xe8\xe9\x19\x35\x1e\x26\x32\x9e\x7a\x95\x0f\xdc\x44\xc1\xab\x32\x43\xbb\xb2\xfa\x17\x9e\x8d\xe7\x9e\x0c\x34\x15\x31\xfa\x16\xb8\x4e\xaf\xa1\x81\x70\x5e\x6e\xe3\x91\xd1\x17\x88\xe3\xee\xf5\x87\xaf\x77\x55\xfa\xea\xa9\x8a\xe1\x7e\xcb\x1d\xde\x07\xb5\xc6\x43\xb7\x74\xad\xe5\x90\xfd\x9e\x95\xa5\x09\xfa\x25\xc5\xe1\x75\xeb\x23\x87\x99\xa1\xa3\x5e\xe4\xb5\x29\xfb\x46\x4d\xc7\xf1\x70\x1c\x57\x21\x51\x5c\x56\x79\x9f\x02\x5e\xdd\xa3\x80\xaf\x9d\x8a\xa4\x26\xaa\xbc\xc1\x47\x29\x1c\x15\xb9\xd4\xe2\x08\xe9\x60\x33\xe4\x8c\xcf\xf2\xf9\x9c\x2a\xf3\x77\xe2\x79\xe7\xd4\xe4\xd0\xf7\x14\xa9\x6e\x73\xbe\x66\x21\x26\xdf\xeb\x7f\xfe\xaa\xff\xf9\x8b\xfe\x47\xaa\x10\x13\x4f\xdf\x5d\xeb\xa1\xcd\x21\x6c\x5f\x6d\x15\xba\xa8\x08\xf1\xdc\xc4\x52\x49\x04\x3d\x63\xa1\xee\x04\x93\x42\xd0\x9d\xbd\x39\x62\xef\x2d\xea\x73\xa1\x3f\xae\x6e\xda\x3d\x77\x41\xab\xe2\x83\xa5\xf8\xaf\x5d\x1d\x72\xbd\x82\x53\x2b\x11\xb4\xaa\xa9\x82\x40\x81\xb7\xdd\x46\xe6\xe9\x16\xba\x34\x01\xb3\x08\xf7\x7d\xd2\xd0\xc7\xa2\x40\xb1\x24\xb9\x16\xaa\x18\x4b\x49\x52\xe7\xe6\x53\x84\xe2\x9c\x14\x14\x68\x53\xa2\x7f\xd5\x97\x84\x12\x82\x86\x08\x93\x2d\x1d\x91\x45\x87\x1b\xf9\x76\x40\xc7\xe5\x41\x3c\xac\xea\x50\x90\xb4\x7e\x8c\x0c\xde\x81\x35\x61\x68\x60\x4c\xb5\xff\xcc\xab\x2d\x47\x38\x08\xfa\xcd\x87\xcb\x82\xa0\x6f\x10\x0b\xbc\xcf\xde\xb1\x9a\xd1\xd5\xa8\xe3\xe8\xa6\xae\x3c\xac\x46\x6b\xb2\xec\x5d\xf3\x7a\x12\x45\x75\xc5\x49\xc2\x74\x5a\xc5\x2b\xef\x7f\xd7\xbd\x5a\xb1\x35\x9b\x3d\x67\x51\xa2\x05\x61\x07\x15\x57\x2b\x6f\xb4\xb1\x08\x31\x8e\x73\x4b\x7e\xba\xba\xe4\x8d\xa2\x65\x19\x62\xf3\x72\x8b\x30\x0f\xb9\x14\xcf\x93\xc5\xca\x5e\x46\x36\x09\xaf\x12\x91\x5c\x30\x19\xbb\xfb\x54\x26\xf5\x9d\x8d\xf0\x64\x23\x42\x6f\x05\x2d\xa2\xc4\x52\x7d\x08\x86\x70\xa3\xc2\xc2\xfa\x4d\x2f\x04\x1d\x8e\xd9\x57\x5e\xfc\x31\x6f\xc9\x16\x42\xaf\x19\xe8\xe0\x05\x15\xe1\xa3\xd1\xa9\x67\xef\x4c\xfd\xd0\xcb\x1d\xd6\x3e\x77\x55\x62\x67\x3a\x8e\x0f\x5d\x4b\x73\x38\x88\x73\xaa\xa6\x2c\x14\x38\x66\xf6\x14\xde\x3a\x3b\xc7\xb6\x04\x31\x63\xbf\xef\x8b\x48\x0b\xe3\x92\xa7\xac\x68\xfe\xf2\x8e\xf6\xdc\x1e\x17\xcd\x5c\x52\xb4\xef\xc3\xe5\x9d\xf7\xe1\x92\x23\xf7\xe1\x0a\x7d\xa2\xda\x16\x96\x42\x37\xa1\x53\x48\xa2\xcf\x63\x2d\x3b\x14\x25\xa9\x03\xc3\x18\x32\xb0\x11\x0d\xb7\xbf\xd5\xc1\x0d\xb6\x42\x25\x0a\xf0\xdb\x3a\x50\x17\x6f\x2c\x32\x1d\x10\x8c\x8a\x30\xee\xf7\xbb\x72\x22\xa3\x85\x46\x80\xe7\xfe\xad\x4e\x2f\x81\xee\xe0\x79\x28\x83\x1f\x59\x52\x40\x74\x9d\xfa\xd7\x4f\x67\x67\x7a\x88\xee\x7e\x67\xcd\x3b\x54\x77\x43\xf5\xa1\xda\x68\x31\xb2\xf5\x20\x16\x5f\x57\x06\xad\xea\x12\x38\xb1\x89\xea\x6e\x43\x8f\xa4\xbb\x11\x9d\x43\x95\xad\xcd\x0f\xcb\x98\x67\xbd\xde\xb0\x70\xe7\x5d\x89\x8c\xbb\x47\x43\xea\x5b\x92\xb1\x22\xd5\x2d\x49\xb8\x63\x4c\xba\xda\xad\xd9\xd3\x75\x83\x3d\xb5\x4b\x04\xc4\x12\x36\xb8\x21\x86\xfe\x5a\x91\xa4\x4a\x81\x9b\x11\xb9\x24\x05\x65\x15\xe5\xea\xe7\x1d\x8b\x69\x3d\x94\x3f\x9a\x9b\x88\x79\xd4\xd8\xc3\xf0\xf0\xc6\x64\xbb\xdf\x87\x5b\xba\x93\x6c\x59\xc4\x23\xa2\x47\xc1\x17\x26\x7e\x2b\xac\x63\x7a\x2b\x92\x35\x5f\xc0\xb1\x5a\xd8\xed\xfd\xd1\x5c\xa2\xec\x68\x8e\x6c\x2d\x63\xb7\x68\xec\x81\x63\xdf\xbb\x92\x24\xf5\x3b\x06\x39\x26\xbb\x92\xec\x60\xfa\xb1\x24\xcb\x8c\x6f\x62\x74\x6e\xa2\xcd\x78\xbb\x3c\x8f\x74\xce\xd4\xfc\x89\x91\x54\xf6\x1e\x45\xa5\x2e\x29\xf1\x64\xe1\x5f\x53\x5e\x44\x05\x93\x57\x4c\xfe\xd8\x3e\x07\xf7\xfb\xba\x5c\x95\x08\xc3\xcf\xa8\x9b\xdc\x3b\x2f\x76\x9d\x3e\x19\xb6\x91\x86\x94\x35\x13\x4e\x5c\x29\x20\x93\x41\x10\x2e\xdb\xa0\x86\x0c\x00\xb4\x81\x4b\x4a\x1d\x59\x0c\x25\x29\xf0\x64\xb9\xdf\x87\xe1\x92\xe6\xde\x3d\xa0\xfa\xa6\x79\x98\x92\x06\xb4\xf4\xc1\x63\xc2\x47\x60\x8c\xeb\x77\x16\x5a\x83\x68\xad\x4e\x35\x02\xb2\xc4\x98\x64\x41\x90\xc1\x75\xaf\x25\x26\xdb\xc8\x5b\x6d\xba\x24\xdb\xa8\xb1\xd8\xb4\xc9\x8e\x1b\x3c\x85\x7b\x20\xcd\x9b\x78\xd5\xc5\x47\x4d\xfb\xf2\xea\x46\xe5\xa4\x71\x19\x54\x9f\xe4\x58\xec\xf7\xf6\x2e\xbb\xb9\x5f\xd9\xe5\x66\x92\x07\x81\x11\xa2\x28\x0f\x82\x43\xfd\x90\x75\x00\x61\x21\xc7\x93\x24\x08\xc2\x56\x93\x49\xcd\x74\x8b\x32\x4c\x21\x60\x4c\x6b\x5a\xce\xeb\xfb\x08\xc8\x5b\xa5\xbb\x16\x60\x04\x0b\x30\xd9\xb8\xd7\x6e\x14\x26\x9b\x7a\x35\x44\xd5\x00\x80\x75\x43\x44\x75\x11\xbe\x4d\x53\x1a\x0b\x50\x91\x35\x8f\xa4\x6c\x5c\x62\xe9\xad\xdc\xc6\x7a\x96\xd7\xed\x76\xb6\x33\x31\x98\xaa\x8f\xd3\x9a\xe8\x5c\x75\x11\x9d\x49\x73\xc8\x41\xd0\xfc\x5d\x4f\xb3\x6e\xe7\xb6\x71\x3f\xc7\x90\x2e\x51\x91\x2e\x79\x40\xba\x78\x9b\x74\x19\x75\xde\x31\x8a\x95\xbb\x6d\x24\x5b\x24\x86\x13\x2d\xb4\xc1\xc4\x86\xd4\x05\xe5\x91\xed\xad\x0a\x7c\x23\x14\x0a\x82\xf0\x23\x73\xd7\xaf\xbb\x1a\x23\xf0\xfe\xdd\x41\x8c\x07\xbd\x7b\x6a\x90\x62\x92\x04\x41\xe2\xc2\x3a\x34\xb3\x30\x51\x2d\xe8\x85\x47\x9a\x6c\x96\x6b\xb6\xd9\xca\xc3\xde\x92\x5d\xf8\x4b\x46\x24\x30\x56\xdb\x82\xbd\x63\xcb\x70\x06\xe1\x8d\x6d\xc2\x2b\xb6\xce\x3b\xc2\x76\xea\xf3\x17\xdc\x88\xa2\xc5\x56\x4a\x26\x94\xd9\x59\x61\xf5\x9b\x72\xbd\x72\x20\x40\x98\x86\x5e\x2c\x97\x1a\xe3\x3b\x22\x80\x7a\x29\x22\x08\x44\x88\x75\xdb\x33\x3e\xf7\x10\xe3\xdc\x43\x8c\x03\xa1\x62\xdc\x29\x54\x8c\x7d\xa1\x62\x3c\x77\xd1\xee\xe0\x56\x09\x44\x6e\x6c\xc6\xda\x25\x09\x55\x75\x3c\x02\xb2\xa5\x2a\xb2\x0f\x2c\xbf\x07\xe4\x5b\xd4\xb2\xc3\x76\xba\x11\xf1\x96\x64\x34\x87\xa8\xd0\xe6\x61\x69\xd4\x6a\x0f\x11\x54\xb5\x86\x08\xf2\xdb\x42\x73\x4c\x96\x14\xb8\x4e\x92\x52\xb1\xdf\x4b\x2d\x6f\x27\x97\x66\x55\x0b\x34\x59\x7a\x01\x7e\xe0\xae\x8c\x66\x65\xcd\x9b\x86\x82\xac\x99\x4a\xe2\x94\xb4\xba\x8b\xd3\xd2\x3e\x27\xf8\xdf\x2a\x84\x59\x32\x75\xc9\x34\x9d\xc2\xfb\xfd\x82\xc8\xa3\x27\xf0\xae\x74\x4b\xed\x58\xf3\xad\xd0\x47\x83\x96\x72\x3d\xec\xc2\xf0\x68\x57\xfd\x73\x72\x21\x0e\xa2\x55\x72\xba\xb3\xb3\x05\x1a\xa0\xc7\xd2\xd8\xe6\xf1\x92\x34\x08\x41\x2c\x89\x39\xde\x55\x25\x97\xad\x45\xc8\x09\xd3\xa7\x91\x43\xc8\xfe\x98\xe4\x1e\x76\x7a\x5d\xde\x8a\x90\x1b\xa4\x53\x64\x39\xbf\x0b\x63\xab\xd6\x82\xe0\x4a\x84\x55\x73\xad\x8e\x46\x65\x75\x2c\xaf\x1a\xa5\x2a\x62\x9c\xd4\xd7\x9d\xaa\x11\x6f\x6a\x74\xbf\x69\xd0\x41\x43\xfd\x84\x65\xca\x9c\xe0\xbb\x29\x80\xd8\xa9\xfd\xbe\xaf\xcc\xef\xfa\xcb\x8b\xa5\x65\x6e\x3f\x71\x7d\x82\x56\x79\x70\xd2\x82\x53\x65\x8e\x6b\x79\x79\xc6\x4d\xbc\x0c\x3e\xa7\xb9\xde\x7d\xcd\xbb\x0d\xd7\xa2\x23\xa6\xd8\xbf\xbc\x15\x0f\x83\x68\xd7\xb2\x73\x63\xdb\xe9\x5d\x79\xcd\xd5\xca\xfc\xda\xd6\x3a\x00\x4d\xe6\x48\xe6\x36\xf4\xd2\xee\xc5\xc6\x36\x23\xa8\xaa\x89\x88\xd9\xa6\x73\xb7\x2e\x19\xd9\x50\x4d\x54\x9a\x07\xb1\x5f\x3d\x96\x3e\xe3\x6d\x76\x5f\xb6\xdf\x0b\x7d\xb8\x6c\xb2\xe4\x56\xef\xbd\x8e\x5d\x08\xec\xd0\x0a\x30\x7c\x99\xcb\xeb\x44\xa6\x1a\xcb\x5b\x16\x96\x0a\x11\xec\xd5\xb4\x05\x04\x70\x12\x4c\xbe\x63\x4b\x98\x0b\x23\x33\x64\x8b\x20\x82\x5c\x96\x26\x1c\x29\xdd\xdc\xc5\xf7\x0a\x07\x3e\x2d\x8e\xc0\x23\x5e\x7a\x34\xcb\x2a\xc6\xde\x81\x3b\x62\xb6\xdf\x6f\x31\x28\x20\xdb\x7b\x5d\x6a\xde\x20\x5c\xd1\x1b\x11\x5a\xe6\x39\xb1\x50\x20\x80\x48\xf1\x52\x4b\x23\xdb\x20\xe8\xaf\x0c\x8a\xea\xd2\xe6\x8b\x26\x96\xee\x37\x15\xb4\xa2\x09\x6d\xc9\x96\xf1\x62\xbf\x57\xd5\x53\x67\x69\x49\x56\x10\x8b\xc5\xa1\xc7\x22\xc4\xe1\x4a\x1f\xa7\xab\xb2\x24\x67\x5a\x72\x1f\x3f\x1a\xe1\x89\x8a\x92\x6e\x2d\xdf\xb5\xb7\xa2\xf2\x70\x45\xcf\x44\x94\x94\x04\xce\x41\x32\x3e\x3d\xb0\x35\xa2\x6d\xc1\x7a\x1a\x40\x0b\x65\x2d\x03\x44\xef\x1b\x11\x3e\xfe\x12\x93\x84\x8a\xf0\x09\x26\x85\xfe\xf9\x95\xa6\x61\x22\x3c\x1d\xe3\x49\xdf\xdf\x14\xf0\x0c\xd6\x3a\x51\xdf\x27\x8a\x51\xf4\x03\x7c\x2b\x96\xea\x9f\x88\xb8\xcc\xf7\x7c\xed\x67\xea\x9f\x75\xe6\x6b\xf0\x4d\xf6\xb2\x4d\x42\x5d\xe0\x67\x5e\x28\x2f\x5b\xff\xac\x33\xbf\xaf\x31\xd3\xef\xbe\x4e\x45\x65\x28\xb5\xb4\xad\x39\xdb\xe6\x9d\xe8\x3b\x86\xfe\x36\x91\xaa\xb8\x73\xfc\xad\x12\x47\x26\xd1\x2a\xd5\x31\x13\x53\xa2\x0c\x4d\x68\x9d\x5d\x23\xf6\xf7\xa2\xa6\x3a\x7e\xa8\x24\xe7\xa6\xdd\xc2\xb4\x6d\x94\x44\xcf\x73\x51\x6c\xd7\x4c\x9a\x97\x14\x43\x9f\xd4\x58\x14\x29\xa2\x05\x0e\xab\x6b\xf7\xca\x88\xd2\x10\x00\xd7\x05\x91\x24\xd5\xb6\xc8\x75\x59\x4d\x62\xa0\x90\x3e\xef\x6d\x11\xbd\x29\xb7\xb4\x23\xc8\x34\xbc\x34\xfd\x3d\x88\x64\xfb\xfd\x08\xc7\xb2\x32\x11\x87\xa8\x06\xb6\x7d\xaa\xdc\x03\xff\xfb\x1c\xe0\x10\x6e\x49\x82\x63\xe1\x41\xdd\xcf\xd0\xbb\xa4\xac\x95\x78\x1e\x4d\xa2\x1c\x5e\xff\xac\x0f\x93\xec\xff\x1b\xc8\x6d\x1f\x04\xb9\x05\x38\xdd\x87\x5a\xc2\x3f\x90\xec\x9c\xc8\x57\x39\x4c\x87\x0b\x6c\xc5\x68\x61\xe3\xa1\x5a\xfa\xbc\xdf\x27\xd1\x0f\x32\xb9\x58\x7b\x51\x13\xda\x13\xcb\xcc\x6c\x16\x77\x40\x4e\xb6\x20\xb7\xf4\x2d\xe7\xa5\x88\xd2\x50\x11\x94\x20\xd2\xc5\xc3\x6a\x64\xcd\x1a\x0b\x8b\x49\xf5\x1b\x36\xb9\xf7\xdb\xee\x6a\x2f\x05\x36\xb2\xf7\xdb\xdf\xb4\x98\x2c\x5a\x0d\x2f\x9a\x0d\x6b\x6a\x76\x0f\x39\x63\x11\xbb\xd9\xe4\x52\xb5\xa3\xc2\x1e\xb2\xe0\xb5\x01\xba\xf6\xd2\x6f\x9f\xf3\x2e\xbc\x99\x68\xbc\xa7\x72\x2c\xca\x59\x15\x45\x90\x08\xb8\xfb\x39\x3e\x7d\xf4\x00\xda\xab\x89\xfd\x63\x8f\x00\x70\x7f\x31\xc4\x22\x4f\xd9\x2f\xef\x5e\x56\x18\x10\x32\x5c\x59\x34\x4f\xfe\xf4\x78\x74\x72\xc1\x09\xfa\x16\xf9\x89\x8f\x9e\x41\x62\xdc\x48\x3c\x7d\x7c\x72\x41\xd0\x67\xcd\xb4\xe7\x50\x90\x34\x13\x47\xba\xe0\xa0\x91\xf6\xe4\x3b\x28\x38\x6b\x26\x7e\x0f\x89\x73\x84\xcb\x6e\xa0\x1f\x5c\xac\xb1\x71\x62\xc1\xd0\x8b\xf5\x79\xa3\x6a\x73\xac\x8c\x78\xf1\xcb\xbb\x9f\xcf\x58\x22\x17\xab\xb7\x89\x4c\xd6\x45\xa8\x30\xd6\xdc\x9c\x17\x54\xb6\xb2\x42\x26\x74\x36\x9f\xc8\xfa\x35\x46\xd2\x62\x3c\xac\x0e\x84\x05\x41\xe7\x1d\x08\x06\x12\x5c\x7d\x95\x62\xaa\x06\x14\xcd\xe6\x28\x66\x54\x6f\x8d\xba\x61\x46\x9a\x3e\x15\x11\x2f\x80\xd2\x31\x3c\x65\x10\xef\xf6\xe5\xd9\x9b\xea\x6e\x8c\xce\xad\xae\x50\xc0\x75\x97\x9f\xce\xde\xbc\x8e\x0c\xc5\xe4\x4b\xb8\xb3\x41\x12\xfb\xac\x62\xa8\xf0\x00\x51\x34\xe0\x10\xed\x02\x9b\xd0\x6c\x39\x4d\xa2\x8f\x39\x17\x70\x0b\xbf\xe4\xcb\x30\xc7\xf6\x09\xe0\xda\x42\x82\xfe\x17\xc2\x13\x30\x9b\x14\xd0\x07\x73\x8f\x7a\x93\x02\x63\xc2\x06\xd4\xbc\xc5\xe4\x55\x98\x22\x3c\x45\x53\x14\xeb\x46\x07\xb9\xef\x41\x3c\x3e\x7d\xfc\xc7\xb7\x53\xe5\x5e\x11\xf6\xd9\x7e\xdf\x67\xd1\x6f\xbf\x3d\x7f\xf6\xfa\xf9\x8b\x9f\x7f\xfb\xcd\x30\x1c\x4f\xee\x6e\xb3\x11\x02\xd0\xdb\x02\x84\x6b\x5e\xe3\xf1\x58\x83\x61\x87\x6c\x0c\xe8\xe1\xfb\xdb\x0d\x43\x31\xf8\xa7\xf2\x05\xe8\x38\x4e\x6e\x86\xd7\xd7\xd7\x43\xb8\x84\xb7\x95\x99\xd9\x23\x29\xf2\x14\xf8\x89\x41\x82\x3e\x20\x95\x5b\x7e\x58\x93\x56\xca\xac\xd9\xcd\xdc\x04\xf4\x68\x25\x52\x65\x4c\xbf\x05\xdd\x25\x69\xb2\x51\x4c\x1e\x18\x00\x2b\xb6\xb3\x0b\xd9\xfe\xf6\xea\xe7\x3f\x2b\xb5\x79\xc7\x7e\xdf\xb2\x42\xed\xf7\x9d\x85\x54\x10\xa0\x99\x51\xe3\xf5\x6c\x30\xab\xb9\x3e\x1b\xee\xb9\x2e\xa3\xb0\x41\x34\x11\x8e\x4f\x9f\x62\x6c\xa3\xcd\x3b\xff\x1b\xdb\x65\x3c\xeb\xa4\x85\x5c\x53\xf9\x67\x8b\x05\xdb\x68\x8a\x0c\xbf\x1a\x13\xc7\x44\x43\x4b\x33\x2e\xdf\x27\x2a\x81\x8b\x2d\xd5\x9e\xf9\x6e\xbb\x5c\xc2\x3b\xf8\x26\xad\xf5\xf3\x4c\x49\x96\xac\xab\x9f\x3f\x70\x78\xa4\xd4\x16\xcd\xf2\x73\xd8\x3e\x71\xab\xb1\x5f\x39\xbb\x86\x8c\xe8\x1c\x7e\xc7\x5d\x24\x81\xe1\x69\x98\xc0\xe9\x74\x1f\x3e\x4c\x16\xab\x44\x16\x4c\xd1\xad\x5a\x0e\xbf\x44\x98\xf8\xd1\xa9\x5b\x7b\xb5\xa3\xcd\x8f\x45\x2e\x0e\x9a\x38\xdc\xce\x31\x2b\xe7\x3e\xbc\x8b\x4d\x2e\x0a\xe6\x03\xfc\xe8\xed\x28\x78\xc3\xc6\x50\x08\x70\x8e\x09\x99\x7b\x87\x46\xe1\x5d\xbd\x49\xe7\x44\xf1\x35\xcb\xb7\x2a\x1e\x91\x9b\x42\x2e\x9f\xe7\xf9\x25\x67\x60\x86\x46\x7f\x3b\x7b\xf7\xc3\xf0\xfd\x9b\xbf\xbc\x78\x8d\x20\xef\xcf\x2c\x49\x99\xb4\x79\x43\x3f\x77\x9d\xdc\xd8\xb5\xfd\x19\x0e\xb2\x78\x38\x26\x70\x07\x09\xb4\xb7\x89\xda\x16\x1d\xfe\xb4\x3d\xf6\x0d\x3d\x1d\x8d\x82\x80\x7d\xfd\x68\x34\x2a\xc9\x0a\x9a\x2f\xe2\xdd\x22\x5f\xaf\x73\x11\xef\x0c\xf2\xc4\x07\x80\x23\x3d\xcd\xb5\x9c\x6c\xb2\x84\x0b\xd2\xfb\xfc\xe4\x73\x54\x96\xa5\x47\xae\xb5\xfc\x9a\x31\x2d\x2c\xa0\x0b\xa6\x10\x31\x6f\xe0\xcc\x9b\xb4\xb6\x88\x6c\x7f\x33\x36\xa7\xbb\xd2\x58\x84\xea\x16\x36\xb9\x96\x08\xd0\x66\x0b\xff\x6a\xb8\xdd\xd9\x80\x8c\xd6\x4c\x5e\xb0\x30\x07\x3a\x5b\x93\xb5\xa2\xc4\x76\x27\xad\x78\x41\x34\xfd\x19\x61\xe0\x33\x9e\x3e\xf8\xe8\xb6\x74\xeb\x14\x83\x0c\x35\x3e\x7d\x64\x84\xa8\xd3\xc7\x8f\x8d\x18\x75\xfa\xf8\x0b\x2b\x47\x69\xf9\x6a\x01\x65\xbe\xc0\x77\x92\x56\xb8\x30\xf6\x56\xe6\x6b\x5e\xf8\x5e\x8b\x8a\x64\x2e\x6a\x0b\x8b\xd2\x44\x25\x24\xa5\xcc\xcd\x72\xd2\xd8\xad\x4b\x5c\x79\xd6\xa4\x6d\x82\x66\x15\x68\xba\x8f\x26\x6d\x32\x16\xce\x64\xab\x56\xa6\x9b\x15\x35\xbf\xa2\x6d\xc1\xa4\x00\x8b\x0f\x42\x64\xed\x52\x37\x49\x51\x5c\xe7\x32\xd5\xa9\x93\x34\x7a\xb6\x55\xab\x5c\xf2\x4f\x80\x07\x14\x7d\x97\x14\x7c\xd1\x43\x83\x73\x95\x27\xe1\x6a\x80\x62\x34\x58\x1b\x42\x7a\x45\x93\xd0\x04\x4c\xfd\xe5\xdd\xcf\x84\x45\x5b\x99\x01\x53\xbc\x89\xf2\x0d\x13\x21\x8b\xec\x15\xb5\xc6\xbd\x1f\x92\x87\x57\x04\x62\xd4\x27\xeb\xa2\xfa\x38\x63\x92\x27\x19\xff\xc4\x24\x04\x6d\x27\x9b\xc8\xee\x16\x7d\x38\x9b\x2f\xb2\x89\x72\x21\x59\x92\xde\x82\x8e\x6d\x01\xfe\x37\xad\xf7\x2b\x36\x41\xf0\x98\x52\x88\x54\x93\xa4\xb7\x7a\x43\x68\x0e\x61\xd4\xd7\x49\x05\x6c\x8f\xfd\x5e\x67\x9a\xed\xfd\xcb\xbb\x9f\x8d\x9b\x43\x23\xa9\x3e\x6f\x97\x3c\x63\x31\xc2\xd8\xd9\x09\x34\x92\x3f\xcb\x32\x47\x1d\xcc\x2e\x85\x2b\x67\x9b\x69\x11\xc2\x2b\x60\x87\xd9\xa1\x7d\x1f\x9a\x48\xba\xd3\x4b\x1d\xb3\xaa\x33\xf3\xe0\x0e\x5c\xdb\x31\x2f\x05\xf8\x19\xd3\x7a\x50\x71\xfd\xf9\x9e\xdd\x28\x62\x66\x12\xbb\x29\xd9\xdf\x3a\xab\x4a\x83\x72\x6e\x9f\x0b\xb2\xc8\xc5\x92\x5f\xc4\x8c\x48\x7b\x92\x6c\xca\x89\x3e\x28\x32\x22\x31\xd9\x80\x35\xab\x2c\x01\xc0\xc9\x79\x2e\x1b\xaf\x2d\x6e\x82\x20\xcc\xc2\x45\x88\x2c\x6e\xf5\xa0\x04\x4b\x11\x61\x04\xbd\x78\xfe\xe6\xf5\xeb\x67\xdf\xbd\x79\xf7\xfe\xc5\xf7\x88\x6c\xb0\x6b\x0c\x9b\xc6\x20\x6a\xab\xdf\x18\x34\xf4\x9a\xa9\xeb\x5c\x5e\xf6\x5e\x98\x98\xae\xcc\xc8\x39\x75\x65\x53\xd7\xad\x7f\xeb\x88\x56\x14\xd9\x9c\x5e\xbe\xec\x41\x28\x1f\xf3\x73\x80\xd6\x45\x8f\xdd\x2c\x18\xd3\x4c\xc4\xa4\x4a\x87\x5e\x5e\xb1\xa2\x48\x2e\x98\xbd\xe3\xdb\x91\xa3\x25\x99\x45\xa8\xee\x9a\x53\x49\xcc\x91\x98\x88\x34\x91\xe9\x77\x32\xbf\x2e\x98\x7c\x21\xae\x42\x8b\x1f\xb7\x40\x19\xbe\xc2\xe4\x82\x86\x0c\x74\x80\xcf\x25\x4b\x99\x50\x3c\xc9\x8a\xfd\x7e\x1b\x5e\xe9\x33\x9e\x45\x4d\xe2\x3f\xbd\x05\x5c\x0d\xdb\xe9\xee\x26\xea\xe4\x22\x08\xc2\x74\x66\xb2\xeb\x73\x61\x4e\x2f\x80\xaf\x44\x05\x53\x76\x61\x4c\x26\x60\xa3\xe6\x8f\x1c\x85\x4d\xdb\x2c\x75\xa7\x73\xd5\x32\x08\x9c\x3f\xe8\x50\x27\x41\x56\x33\x4a\xd2\xb4\x22\x43\x6a\x1e\xc3\x43\x70\x8d\x8e\xe1\xd9\x2c\x43\xdc\x1b\xac\x59\x1b\x12\x78\xbf\x0f\x37\xed\x44\xda\xef\x1f\x16\x24\xcd\x0d\x01\x07\xed\xa6\x91\xd4\xda\x32\xf6\xd8\x3d\x37\x47\xb5\x3e\xc0\x0e\xb7\x15\x36\x0e\x2e\xe7\x65\xa7\xe3\x4c\x94\x8b\xef\xf3\x6b\x91\xe5\x49\xfa\x56\xe6\x17\x92\x15\x45\x10\x6c\xa2\x24\x4d\x5f\x5c\xe9\x33\x97\x17\x8a\x09\x26\x43\xb4\xb1\xb9\x88\x74\xd5\xc1\xe4\x58\xeb\xbf\x6c\xda\x6d\x6f\x21\xa5\xfe\xba\xb7\xb3\x66\x13\xf0\xac\x40\x22\x16\x2c\x7b\x9f\x5f\x32\x73\xab\xba\xfe\xa9\xf9\x4d\x7d\xf6\x44\x6a\xc5\x44\xd3\xbd\x46\xef\xeb\x4d\x04\x9b\x39\xd4\xd8\xcf\xea\xbd\x8b\xbd\xb8\xeb\x4b\xb0\xe6\x43\x3a\xd1\x8b\x2e\xd2\x70\x09\x1a\x09\x7d\xb6\x7e\xf1\xb0\xb3\xf5\xf4\xf1\xa3\xee\x63\x12\x22\x06\x43\x38\x34\xeb\x40\xc4\xae\x0d\x55\xa8\x6f\x3e\xf5\x64\x98\x54\xc5\xa0\xd3\x2f\x1f\x2e\x8b\x1f\x53\x22\x28\x6a\xdc\x7a\xae\x6c\x98\x64\xc2\xe9\x0c\x6d\x65\x86\x08\x32\x47\x16\xb0\x22\xfa\x5c\x42\x04\x1e\x61\x42\x73\x92\xd3\x19\xb2\x04\x15\x11\xa4\xcf\x4d\x5d\x48\xe6\x37\xb7\x68\x4e\x12\x3a\x43\xf6\x1c\x44\xc4\xb6\xd4\xe6\xde\x9b\x49\x06\x23\xab\x7e\xea\xf3\x4f\x17\x33\xf4\xc9\xda\x03\xbc\x2d\xa1\x3b\x36\x92\x0b\x44\xbc\xae\xb1\x1a\x11\xd4\x24\x1f\x36\xa1\x26\x18\x88\xa0\x36\xea\x40\x52\x1b\x75\x11\x44\xc4\x69\xf0\x98\x88\xa0\x26\x8b\x69\xca\xbc\x63\xc6\xd3\x44\xff\x5c\x29\xb5\x79\x76\x61\x2c\x87\xfa\xbb\x70\x3f\x3c\x5c\x44\x04\x15\xf9\xe2\x92\xa9\xb7\x89\x5a\x21\x5f\xea\xe7\x4d\x7e\xaf\x5b\xae\x32\xae\xdd\x42\xf3\x80\xca\xb9\x80\xd5\x4d\xe4\x5e\x13\xdc\xc8\xf7\x56\x2a\x50\x33\x3e\xc7\x53\x31\xe3\x9a\x77\x4c\x19\xdb\xbc\x02\xfe\x11\x62\x64\x41\x5e\x7c\xa4\x3f\x3e\x37\xb5\xf4\x57\x43\xcc\x38\xde\xe0\x91\xb6\x98\xb1\x54\x09\x17\x9b\xab\x35\xf6\xc4\x1b\xbb\x3c\x3a\x7d\xa9\x87\x23\xe7\xe0\x5e\x72\xac\x1b\x69\xba\x91\x73\x88\xf0\x8d\x9d\x55\xaf\xa0\xbc\x72\x8b\xac\xfc\x1c\x13\x5c\x69\x3c\x2b\x2f\xdf\xe3\x17\x71\x40\x15\xd1\x88\x5c\x5c\x1b\x3d\xea\x99\x6c\xff\x8d\x33\x21\x02\x76\xff\x57\x77\xef\xfe\x4a\x75\x20\xab\x27\x6b\xd6\xe6\x84\xa7\xac\x94\x77\x46\x0c\xae\x7c\xbe\x9f\x03\xce\xa2\x41\xe8\x57\x9f\xa2\xb8\x87\x06\x7e\x4a\x8c\x10\xd6\x3c\x41\xdd\x66\xad\x3f\x31\x2f\x1e\x39\xe2\x23\x4b\x32\x7e\x34\x7a\x20\xad\x7c\xf2\x08\x57\xee\xd7\xc6\x26\x64\xec\x47\x5c\x37\x32\xbe\xbb\x91\x3b\x35\xbe\x2b\x87\x0e\xd2\x58\x86\x40\xda\x79\xa2\x85\x9d\xfe\x88\x58\x5f\x7f\xe0\xc4\xb6\x74\xa7\x59\xd2\xb8\x3f\x22\x05\xc8\xec\xfa\x6b\x2b\x33\xfd\x47\x31\xf8\xc3\xd6\x09\x87\x0f\x27\x3a\xe8\x6f\x13\xa7\x46\x7f\x41\x60\xf8\xfe\x88\xac\x73\xa1\xa0\xf6\x35\x63\x97\x50\x9d\xaf\x99\x2b\xe0\xbe\x91\xfb\x31\xcc\xf2\x45\x92\xa1\xb8\x3f\x2a\x5b\x66\x14\x90\x24\x92\xbf\xb0\xdb\xfd\x9e\x45\x49\xa6\xec\xd7\x42\xc9\x0c\x3e\x43\x3d\x07\xec\x5b\x10\xf0\x2e\xa7\xfd\xb1\xaf\x19\xc7\x3b\xb4\xe2\x69\xca\xcc\x89\x0c\xcf\x17\xf1\x82\x9f\xf3\x8c\x2b\x27\x28\x24\xf0\xba\x71\xa3\xa5\xb4\x61\xd7\x4e\xe4\x05\x53\x13\xef\x7d\x60\x15\xad\x35\xcb\xc1\x8a\x10\xc5\xf0\x20\xc1\xf0\xca\xbe\x48\xe0\xbf\x45\xeb\xdc\x64\x9b\x71\x5d\xaa\x56\x6f\x37\xd6\x69\x28\xb9\x00\xc7\x3b\xa7\x95\x43\x2f\x5f\xbf\xfd\xe5\x3d\x32\x2f\x6d\xf7\xb7\x33\x35\xd7\x93\xd6\xdc\xe2\x1b\x91\xdd\x6a\x3e\x0a\xbd\x7f\xf1\xb7\xf7\xcf\xde\xbd\x78\x66\xef\x7e\xf4\xeb\xec\xfd\x5e\xb3\x54\xbc\xb0\x94\xfc\x45\xca\x55\x72\x9e\xc1\xf3\x76\xde\xf4\x36\x21\xde\x25\x7a\xfd\xed\x0d\xb7\x45\xc6\x12\xf9\xde\x1c\x3f\x61\xa1\xc5\x5e\x9b\x51\x30\xe5\x92\x7d\xd4\xd2\x68\x53\x62\x32\x1e\xf9\x30\x5b\xd5\x4e\x37\x5a\x90\xad\x9f\x69\x88\x53\x92\x8b\xef\xb2\xad\x74\xbf\x37\x44\xb2\x65\x2c\xc1\x05\xc3\x5e\x63\x09\x0f\x43\x32\x13\x41\x79\xb4\xe4\x22\xfd\xfe\xcd\xab\xd7\x79\xca\x34\x73\x50\xbd\x48\x1e\x86\x8a\x8a\x28\xbf\x16\x4c\x7e\x6f\x6f\xd9\xe0\x0e\x16\xea\x92\xdd\xa6\xf9\xb5\x40\x64\x01\xe2\xa5\xea\x28\xb2\xce\xb7\x05\x33\x85\xb2\xa3\x85\x36\x39\x3c\x13\x75\x5f\x31\x2f\xd2\xca\x1d\xa5\x6a\x04\x34\xc2\x2c\x22\x4b\x5d\x16\x9b\x7b\x8a\x60\x79\x78\x74\x8f\x99\xc4\xa7\x77\xff\xde\xd0\x46\x77\xd2\x16\x59\x82\xb2\xe5\xd1\x3d\x76\x92\x3b\xdb\xe0\x3e\x7d\x1a\x3f\x3a\x6d\x9a\x52\x1e\x1a\xa4\xc8\x27\x9c\xff\xff\x8d\x56\xd4\x9e\x65\x15\xb6\x48\x2f\xc2\x3d\xa6\x80\x36\xca\xd8\xeb\x7a\xf5\x25\x40\xc7\x18\x13\x49\xb8\x66\x8e\xf3\x06\x9b\x60\xaf\x7c\x1a\x7b\x5a\xde\xb0\xa7\xd1\x1c\x62\x75\x55\x5c\x82\xc0\xdf\xd0\xd1\x7e\x1f\x72\x87\x4d\x75\xcc\xea\x87\xa1\xd3\x3d\x06\x88\xf6\x4c\xbc\x17\x01\xdc\x90\xad\x8f\xb1\xb7\xf2\xf0\x6c\x58\x85\x06\xde\x0a\x52\x46\xf4\x11\x0e\x79\xbf\xfd\x46\xd5\xc3\x86\xf8\x40\xf5\xa2\x39\x6f\x23\xcd\x16\x99\xd3\xfc\xe0\x5a\x88\x55\x9b\x8c\xef\x59\xbd\x6a\x83\x9c\x9e\xd6\x7c\x42\x07\x5e\x7b\x57\xaf\xbc\xc0\x0a\xce\x32\x01\xf8\x04\x76\x09\xee\x36\x40\xe9\x5b\x5d\xea\xc8\x23\x1d\xba\x02\xcf\x79\xbf\xf0\x55\x9d\xb5\xa9\xee\xf0\x85\xae\xba\xca\xb6\x63\x38\x3f\xd8\xcc\x63\x23\x5a\x34\x30\xf5\x2e\x7b\x20\xf6\xbc\xa8\x9b\x66\x42\xb0\x08\x62\xa2\xa1\x81\x9b\x14\xb0\x7e\x5c\xfd\x6b\x69\x1e\x16\xb5\x81\xe1\x35\x33\xc4\xcc\x73\xa2\xac\x15\xbb\xcf\x86\xdb\x7d\x50\x80\x79\x46\x38\x0e\x82\x66\xa3\x7c\x4e\x38\x61\xbe\xc5\x75\x67\x8d\x28\x71\x4e\x1a\xe6\x94\xae\xf8\x18\x8d\x65\x34\xc5\x5a\xa0\x23\xce\x96\xd3\x65\x0e\xa8\x81\xd8\x4f\xc0\x9a\xe6\x12\x9a\x24\x4e\x67\xfa\x29\x38\x08\xba\xd5\x1a\x3e\x19\x74\xfd\xb6\x08\xa6\x6f\x5b\xd2\x83\x73\xfa\xed\xce\x68\x37\x1d\x0b\xeb\xca\x07\x41\x1d\x4e\xcd\x4b\x2e\xc9\x81\x09\xea\xa1\x2d\x7b\xd5\xec\xe5\x59\xf3\x23\xe2\x85\x6e\x66\x7a\x98\xa4\x89\x38\x3c\xb9\x7a\x5e\xcd\xd4\x7c\xf9\x23\xf3\xaa\xe9\xc1\x99\x4d\xd9\x19\x4e\xe5\xe0\x28\xd3\xe5\x8d\xc3\x45\x57\xf9\x83\x68\x90\x50\xde\x20\x62\x5c\x10\x4f\xf7\x16\x27\xc4\x58\xb9\xef\x42\x21\x9d\x7f\x88\x3b\x3f\xf0\xec\xce\x5a\x3a\xbf\x03\xe3\xb2\xfc\xfc\xae\x5a\x3a\xbf\xa3\x2f\x5b\x21\xde\x12\x67\x71\xec\x42\xda\x02\x30\x75\x1b\xb2\x68\xc3\x37\xa6\x66\xcb\xa8\xf8\xd0\x15\x6f\x55\x6b\xa1\x54\x2b\xd7\x2c\x5e\x5b\xe7\x1b\x1f\x1c\x08\x61\x27\xa9\x14\xc9\x15\xbf\x48\x54\x2e\xf7\x7b\xf4\x8e\x25\x0b\xf5\xda\x04\x99\xd1\x3c\xbd\xcb\x72\x97\x42\x83\x00\x99\xdc\xb3\x85\xe4\x1b\x75\xb4\xcc\x59\x67\x0e\x84\xdd\xe9\x9a\xad\x61\xe0\x8f\xd0\x4b\x77\x31\x1d\x97\xc4\xca\xf0\xf1\x82\x80\x81\x2d\xf6\x6e\xbd\xf8\x11\xea\x5d\xaa\xbd\x4c\xd8\x11\x18\x15\x64\xf7\xc3\x74\x31\x85\x9b\xf1\x2c\xb4\xb1\x55\x63\x73\x51\xbe\xf4\xe2\xb1\x12\x7e\xe0\xa0\x3b\x91\x5f\x73\x60\x2e\x16\xa1\xef\xa9\xe3\xbf\xd0\x54\x92\x4a\x09\xf3\xbf\x69\xd0\x5d\xe5\xcc\x9b\x14\x38\xfe\x6f\x99\x10\xbb\x51\x4c\xa4\x47\x22\xa0\xf5\x16\x0d\x37\x19\x45\x38\xde\x31\x88\x34\xdb\x4d\x9f\xd5\x54\x82\x27\x53\xac\xc0\x62\x5a\x12\x25\x79\xe7\x0e\xab\x03\x61\x9d\xfc\xf3\x43\xf1\xf9\x09\x41\xbe\x9f\xd0\x87\xe2\xf3\xcf\x20\x49\x33\x99\xf7\x39\x44\x1d\x3a\xbc\x42\xa5\x7b\xf8\xb9\xb6\x2d\x16\x78\x9c\x9c\x8a\xf0\xf4\xd1\x53\x63\x8b\x1d\x9f\x7e\xe9\x89\x05\x45\x2d\x46\x6b\x29\x46\x1f\xed\x5a\x56\x0c\x73\xef\x40\xb6\x06\x2f\x2f\x82\xac\x8c\x0c\x78\x43\x41\xbc\x82\x44\x61\xe2\xe5\x28\x4c\x44\x69\x2e\x0d\x16\xa1\xee\xf7\x09\xc6\x93\x6d\xf4\xec\x86\xe7\x05\xcd\xc9\xd6\x32\x6f\x5d\x26\xdf\x22\x4c\xc2\xad\xf3\x6a\x2e\x08\xd3\x7c\xe2\x36\x32\x4a\x25\x98\xc2\x57\xb8\xfa\x0d\x8a\x51\xd0\xc3\x8c\x74\x22\x2f\xbc\x62\x8f\x75\x4a\x92\x65\x5d\x7d\x58\x93\x72\xe4\xa8\xe8\x36\x32\x71\x47\xa1\xa9\xb1\x6f\x17\xdf\xd6\xdf\x6e\x4c\x74\xab\xd7\xe2\x0f\xda\xc5\xc1\x1c\x6e\xd6\xe2\x0b\x6b\x17\x7f\xf4\xa5\xb1\x8b\x37\x17\x65\x5b\x29\xde\x1c\x08\xdc\xd3\x60\x20\x39\x2f\xd8\x46\xe5\xb2\xa0\x3b\x67\x89\x84\x95\x23\x95\xa9\x13\x7e\x96\xe5\xf6\x70\x09\x1b\x70\xe8\x38\x36\xa7\x21\x6b\xb8\xf0\xc3\x33\x83\xd1\x56\x66\x8d\x3b\x23\x31\xa3\x4c\xe7\x90\x90\xd1\x22\x6c\x8c\x53\x2f\x95\x35\x59\x4f\x9d\xed\x9a\x7a\x46\x6c\xcf\x16\x16\x37\x2a\x1e\x54\xea\xca\x6d\x35\x50\x95\x05\xcf\x09\x1b\x4b\x79\x96\x58\xc3\xcb\x9c\x08\xea\xd6\x58\xb2\x22\xcf\xe0\x19\x5d\x10\xbc\x0e\x40\xe9\xe0\xd3\x7d\x8b\x5a\x45\x5b\x51\xac\xf8\x52\x85\x2c\x5a\x6e\xb3\x25\xcf\x32\x96\x82\x65\xed\x23\xbc\x8c\x59\xbd\xd5\xda\x6e\xd3\xac\xc7\xb1\x46\xc1\xf7\xed\x78\x8b\x93\x2a\xae\x36\x84\x6e\x01\xeb\x93\x8a\xcc\x38\x30\xa9\xbe\xaa\x3d\x29\x34\x0a\xd7\x2b\x7e\xc1\xd4\x2f\x92\x77\xbe\x83\xd1\xb1\x68\x84\x87\xe0\x7b\x70\xa7\x57\x81\x4f\xdb\xa6\x86\x8e\x91\xfb\x1c\x59\x08\xb2\xd7\x9a\xda\x1e\x29\xde\x58\x67\x6c\xee\x79\x29\x7b\x54\xda\x3c\x36\x67\x96\x26\x74\x5e\x2b\x02\x50\x6f\x67\x96\x3e\x66\xa0\x55\x55\x60\x4d\xfb\xc3\x5e\x31\x77\x8c\x81\xf0\xbb\x47\xc1\xbb\x46\x41\xc0\x39\x41\xb8\xc1\x78\x14\x44\x53\x8b\x07\x5a\xfa\x5a\x0e\xb0\x96\x10\xac\x12\x91\x66\x4c\x16\x74\x36\x2f\xb9\xb7\xcc\x8d\x27\x8b\x1b\xa1\x53\xfc\x5a\x06\xd7\x76\x15\xaa\x81\x17\x83\x41\x35\x0d\x3b\xd2\x2c\x6c\x03\xa3\x8c\x4b\xe2\xf7\x04\xe5\x1b\xf8\xd4\xa8\x65\x6c\x4b\xed\x24\xe7\xc9\xe0\x37\x64\x57\xa8\x89\x9a\xb5\xfb\xaa\xdf\x02\x69\xf8\x47\x5a\x11\x4b\x05\x81\x7d\x20\xb9\xf4\x40\xcc\x35\x88\x1f\x6e\xd7\x34\xaa\xfb\x47\x5f\x39\x47\xa5\xc7\xee\x70\x7c\xd2\x3e\x1c\xef\xb4\x0d\x83\x25\xfc\xe5\xd2\x9a\x27\x59\x1a\x76\x3b\x00\x37\x38\x70\x52\xb9\x29\xd5\x0e\x4b\x80\x4d\xc6\x8f\x89\xea\xad\x08\x0e\x4d\x55\x2e\x61\x51\xdb\x12\xea\xb7\xe2\x70\xb2\x4a\x89\x8c\x53\x9a\x6d\xb4\xf2\xfc\xb2\xe4\x72\xde\x4c\xc7\x0f\xd8\xc3\x1d\x5b\x89\x20\xd3\x49\x63\x4f\x29\xbc\x73\x4f\xdf\x56\xdd\xaa\x79\x69\x9e\xcf\xb7\x66\xd7\xfd\x3e\x71\x9f\x38\x64\xb8\x6d\x56\x57\x4d\x58\x29\x07\x13\xf3\x41\x54\x37\x4c\x0c\xa5\xc5\x44\x23\x73\x57\x5b\x79\x08\x21\xe3\x4c\x93\x41\xa0\x2a\xe2\xac\x71\xb6\xa6\xd4\x55\x5f\x8d\x14\xe2\xfd\xbe\xab\x77\x8c\x49\x7d\xe0\x18\xc3\xa9\x35\xf3\x9f\x3e\xba\xc7\xe6\x76\xbf\xc5\xdd\x23\x8b\xf5\x7a\x89\xe6\x45\x0d\x46\x0d\x0d\x30\x4c\x6a\x49\xee\xf3\x68\x7e\xb8\x2e\xf9\xf4\xcb\x03\xb7\xfc\xce\x20\x67\xce\x37\xa4\xf6\x42\xf0\xd5\xac\x5f\xd4\xa7\x15\x8b\x16\xab\x44\x3e\x53\xe1\x08\x37\x7d\xdb\x06\xce\x87\x7b\x0c\x80\x7b\x3c\xea\x8a\xd2\x09\x6a\x55\x4f\xef\xe3\x47\x49\x6a\x04\x9a\xb7\x41\xe6\x6b\xd3\x4b\x6f\x95\x14\x3d\x91\xab\xde\x39\x63\xa2\xe7\xa4\xb9\x86\xe6\xae\xa3\xbe\x6f\xd3\xb9\xb7\x85\xc2\x42\x47\x50\x4a\xeb\x8e\x9d\x72\xdd\xb3\x02\x31\x32\x02\x5f\x3f\x28\x99\xef\xf7\x7d\x81\x83\xe0\xb0\x86\xf0\x5a\x21\xed\xea\x9e\x21\x4d\x40\x4a\xed\x37\xeb\x67\xf9\x8a\xb3\x46\xa1\x66\x01\x70\xfc\x84\x02\x65\xd9\xf7\x50\x42\x37\x25\x3a\xe3\xe4\xd4\xe3\x99\xd6\x9f\x71\x6e\x3b\x60\x78\x27\x68\x5e\xc2\x48\x3a\xab\xfb\x80\x9d\xfa\x3f\xe2\xa4\x6e\x42\xd2\xa4\x74\x6f\xe0\x6f\xc9\x82\xce\xe6\x24\xa3\xfd\x31\x59\xd2\xe1\xd8\x8b\xe8\x13\xe2\x5d\x16\x04\xdb\x20\x08\x21\x77\xeb\x42\x7e\x2d\xe8\xb6\x0a\x4c\x84\x63\x5d\x89\x2c\xaa\x08\x8b\x9b\x10\xb7\x6c\x79\x7c\x19\xf6\x33\x77\x8f\xba\x08\x53\x3c\xc9\x68\x7f\x34\xa9\xdf\x5a\x5b\x54\xef\xac\x4d\xcc\xcd\x99\x2d\x5d\xc0\xa8\x26\x83\xc1\xf2\x6b\x35\xc1\xdb\x20\xd8\xce\x96\xf3\x48\x6e\x45\x88\x27\xd0\x61\x5d\xab\xdc\x1a\x0b\xb1\x99\x41\xd3\x35\x5a\x52\x4a\x7d\x20\x38\x0c\x68\x98\x14\x99\xc1\x19\x5d\x36\xd9\xef\xfb\x12\x07\x41\x57\x1d\xd9\x68\x89\xb4\x9b\x80\x25\x69\xb8\x59\x7b\xe8\x22\x7d\x74\x39\x44\x16\xe9\x23\x8b\x46\x15\xdd\x8e\x6f\xbb\x34\x0e\x42\xfa\x20\x5f\x6e\x85\x13\x5d\xe0\x65\x06\xea\xdd\xb4\x5a\x87\x78\x57\xf2\x48\xb0\x1b\xf5\x9e\x2f\x2e\x3b\xae\x1a\x1f\xbf\x8c\x34\x1c\x03\x14\x0e\xef\x22\x7b\x7a\xe9\xf1\x44\x1c\xbe\x7a\x0a\xba\xe9\x99\x18\x8e\xfd\x6b\x4b\x62\x3e\x59\x18\x16\x49\xf7\x68\xc6\x8f\xc9\xb8\x4f\xab\x55\xdb\xef\xb3\xfd\xbe\x08\x37\xb8\x24\x2b\x5f\xac\xda\x36\x62\xd1\xb9\x29\xdb\xbb\x4f\x00\xbf\x7a\xee\xc0\x06\x29\xae\x32\x46\xd1\xb9\x51\x83\x21\xc2\x23\xfb\x49\xfb\x23\xc2\x23\x26\xae\xc0\x97\x2a\x4a\xe4\xc5\x95\x46\x74\x1e\x5d\x31\x59\x80\x13\x31\xaa\x7f\x14\xa6\x50\x2e\xe8\x5a\x97\x4d\x53\x67\x10\x85\xdf\xb9\x58\x30\xf3\xb1\x5c\xc2\x5f\x13\x19\xa2\x51\xc6\x24\x3d\xcb\x32\x97\x5a\x40\x32\x5b\x73\x05\x1f\x1b\xc9\x36\x4c\x34\xdb\xb5\x69\x6f\xc4\xa2\xd9\x56\x56\x35\x71\xc8\xf1\xcc\xe6\x7a\xa0\xe7\x5c\xa4\xed\xa7\xa5\x0f\x88\xac\xbd\xea\xe1\x0a\xf7\xb8\x21\xb3\x55\xd0\x5b\x04\x00\x5c\x5c\xa7\x1d\xfe\x26\x27\x08\xf2\x56\x29\x97\x0f\xeb\x04\x8a\x1e\xe9\x62\xbb\x4e\x8a\xcb\x8e\x18\x70\x23\x38\x90\xee\xf1\x1f\x79\x88\xef\x5c\xf7\x9d\x2a\xd0\xab\x49\xc3\xe0\xca\xe6\xa1\x68\x3d\x49\xbd\x14\xb8\x9c\xa3\xe6\x54\xb8\xe7\x82\x9d\x8f\x0f\x8c\xf1\x21\xf7\x9c\xef\xf2\xbd\xaf\x23\x7e\x71\x2a\x22\xe3\xf9\x1c\x35\x1d\xd8\x26\x7d\xbe\xdf\xf3\x50\x58\x67\x69\x6c\xa2\xa0\xa9\x50\xd6\x5e\xce\xcb\x84\x67\x2c\xed\x5d\x73\xb5\xea\x99\x52\xbd\x45\x9e\xb2\x1e\x84\x92\x34\x6e\xd7\xae\x71\xe3\xbf\x2c\x2a\x55\x93\xb0\x13\xb9\x47\x47\x76\xd4\x21\x52\x7a\xf2\x1b\xb3\x7d\x50\x45\x84\x06\x5b\xa4\x07\x41\x85\xf1\x8d\x35\x6a\x11\xe9\xf9\xc9\x52\x4e\x58\xc4\x0b\x50\x53\x01\xd2\x18\x47\x24\x95\xff\x74\xf6\xe6\x75\xc7\xa3\x9d\xce\x95\xc9\xf7\x6b\x32\x77\xe6\x21\x05\x42\x15\xa4\xac\x00\x85\x34\xcf\x85\x53\x7b\x54\x09\xce\xe7\xc7\x94\x86\x6f\xb2\xe4\x99\xb9\xd6\x62\x28\x8a\xfd\x45\x32\x2e\xd8\x6b\xaf\x74\xfd\x9b\x98\x17\x03\xfc\x4c\x3f\x85\x14\x2a\x59\x5c\x9a\x74\xf8\x74\xde\xec\xb6\x24\x2c\x81\x06\x8b\x4b\x48\x35\xfb\x68\x58\xc8\x07\x1a\x53\x4f\x1f\x3b\x7f\xa8\xc7\x4f\xef\xc0\x7c\xbb\x24\x41\xd0\x97\xa1\xc2\x53\xe3\x95\x10\x2b\xe8\xe9\x1e\xd5\xe6\x5d\x82\xd5\xc9\x3f\x43\x78\xfc\x53\xff\xf3\x21\xfd\x30\xf8\x30\xfc\x10\xcd\x3f\x8f\xf1\xf4\xc3\xc9\x87\x93\x13\xee\x9e\x33\x80\x6e\xee\xd1\xda\xdd\x33\x74\x35\xf5\x74\xbc\x1f\x4e\x06\x46\xa1\x3b\x40\x27\x68\xa0\x7c\x05\xc9\xc9\x00\x32\x62\x03\xc4\x87\xcb\xfe\xe0\x47\x9b\x5c\x30\xeb\x20\x5b\x5d\x22\x01\x81\xcb\x38\x97\x67\xce\xa5\xb4\xe1\x6d\x4e\x10\x53\xc9\x85\xfe\x73\xb3\xe1\x12\x62\x48\x2c\x65\xbe\xd6\x42\x9c\x91\xde\xf8\x72\xb8\xce\x53\xbe\xe4\x10\x83\x5f\x2c\x98\x49\xdb\x8a\x83\xd4\x2c\x29\x54\x55\x56\xff\xce\x17\x6e\x0c\xeb\xe4\x66\x68\x63\x5c\x14\xce\x79\x77\xd8\x1e\x28\x84\xfa\xb7\x0e\xb6\x4a\xde\x0e\x93\xa5\x71\xb7\x85\x37\x38\x12\x70\x6b\x9d\x1f\x59\x4e\xeb\xad\x44\x72\x92\xd0\x3a\x64\x08\x9b\x86\x1e\xcd\xb4\x0f\x6e\xa3\x0f\x02\xe1\xa6\x42\x87\x2f\xc3\xdc\xbf\xed\x19\x23\x4c\x14\x95\x91\x92\x7c\x1d\x7a\x6f\xf3\xe7\x18\x37\x75\x89\x44\x1c\x94\xca\x07\x63\x8c\xad\xc9\x3c\x99\xa9\x79\x10\xf0\xaa\x61\x85\xbf\xa1\x23\xcb\x69\x4d\x74\x26\xd5\x22\xc6\x70\x01\xbe\xc3\xc0\xde\x4e\xa1\xce\x54\xff\x13\xcf\xe6\x95\xc7\xe8\x4c\xcc\x71\x5c\xe5\x0c\x20\xf8\xb4\x88\x05\xa8\x8b\x12\x1c\x27\x80\x2c\xff\x92\x77\xf6\xb1\x8b\x15\x53\x8f\x62\x01\x4f\x4b\x14\x3d\x09\xd7\x05\x67\x7b\x25\x79\xca\x84\xc2\x6e\x7f\xd4\x06\x31\xbd\x50\xe0\x7e\xac\x01\x73\x2c\xf2\x72\x82\xda\x22\xa1\x0d\x11\x59\x59\x61\xe0\x61\x99\x82\xa9\x67\x4a\x49\x7e\xbe\x55\x2c\x44\x2b\xc9\x96\x88\x48\x4c\x24\x15\x91\xfe\x81\xc9\xd1\x22\x3b\xfd\x15\x9b\x62\x04\x98\xae\x45\x9e\xc5\x22\x72\x9f\xd3\xfa\xb3\xde\x79\xb1\xd9\x90\x31\x42\x44\xe3\xbd\xae\x9e\x17\xca\x79\x61\xea\xbe\xf4\xc7\xd4\x7d\x1c\xea\x34\xa1\x66\x52\xe8\xb2\xfa\xcf\xd4\xfc\xf1\xca\xfd\xaf\x46\x07\x26\x66\x51\xe4\x3e\x89\x5e\x0d\x3d\xc6\x5c\x2a\xb2\x49\xd4\x0a\xf2\xd1\x09\xf8\x29\x45\x2e\xa1\x16\x7e\xa7\x75\xa2\x2e\x35\xa8\x7f\x56\xd1\xe7\x18\xe5\xa1\x75\x21\x74\x1b\xd1\x42\xce\x57\x74\x18\x9e\xd7\xde\x38\xe5\xe2\xc2\x50\x57\x4d\x5b\x2b\x05\x71\x05\x2d\xb8\x12\xed\x7e\x04\x81\x19\x3d\x24\xea\x0f\x2d\x6b\x1d\x1a\x67\xfb\x86\xfb\xf9\x97\xf4\x18\x47\x71\x73\x77\x2d\xb9\x6a\xbf\x3c\x4d\xb8\xde\xfd\xee\xb2\xf7\x6c\x3e\xb1\xea\x4b\x06\x77\xc4\x3b\xc2\x00\x28\x7b\x63\xc6\x9c\x75\x21\x48\xd1\xa6\x8a\xa3\x85\x14\x0d\xaa\xc0\x1c\x42\x6f\xfd\x1f\x5f\xbd\xaf\xee\xbf\x12\x0f\x68\xdc\xab\xab\x17\x82\xa2\x01\x6f\x14\xc8\xbd\x02\x69\xbe\x4e\xb8\xa0\x68\x90\x63\xd2\x1f\x51\x88\x4f\xe4\xf2\x0a\xb6\xd8\x4a\x86\x30\xa9\x77\x0f\x10\x07\x5a\xd8\x4b\xed\x93\x1e\xa8\xcf\x59\x92\xc6\x87\x82\x4f\xab\x92\xf1\x90\x05\xe1\xe4\x1d\xbb\x78\x71\xb3\x09\x51\xf8\xcf\xfd\xe4\xc3\x87\xe2\x73\x1c\xa2\x01\x1b\x20\x4c\xc3\xd9\x3f\x27\xf3\xcf\x31\xaa\x55\x2c\x6a\x9a\xb2\x43\x58\xcd\x1e\xcd\xb1\x8d\xbd\x69\x64\x80\xf8\x40\xa5\x0b\x8b\x12\x32\x82\x10\xd1\x10\x8b\x44\x7e\x1d\xe2\xe1\x97\x4f\x1f\xb3\x27\xb8\x2c\xe3\xf6\xa2\xe1\x5d\x7b\x1e\x0d\x2f\x99\xc3\x7e\xf0\x0e\xec\x9f\x4f\x1e\xe8\xce\x3d\x3e\xfd\xaa\x4b\xf7\x54\x69\x13\xba\xb5\x4f\xde\x13\x83\xec\x86\x2d\xb6\x2a\x97\xe6\x39\xc0\x73\xd6\x4b\xaa\xd8\x17\x91\x7d\xa0\x42\x4d\x60\xe6\xf6\xaa\x0f\xed\xbe\x72\xaa\xe1\x43\x99\x53\x8b\x09\x30\x51\x4d\x5a\x05\x34\x0b\x9b\x14\x39\xc4\x92\xb4\x9f\xd0\x9a\x04\xcd\x63\x95\x66\x62\xb9\xf8\x5a\xf1\xb6\x26\xb9\x75\x2b\xd3\x1a\x21\xa0\xae\x99\xa4\x97\xa2\x85\x96\x22\xdf\xca\x05\x3b\x88\x04\xe7\xc2\x18\xab\xfc\x92\x09\xb0\x0c\xf2\xa6\xb2\x95\x51\xb0\x69\x1b\xa5\x36\x70\x2b\x4d\x9d\xfa\x93\x7b\xe4\x9d\x3b\xd5\xdd\x1d\x9a\x58\xd6\x10\x8e\x8d\x25\xfc\xcb\x07\x1a\x52\xbf\x34\x1c\xe6\x17\x46\x69\xff\x04\x93\x84\x86\x22\x7c\x8a\x89\x08\xc7\x23\x6c\x2d\xa9\x63\x4c\xb6\x74\x36\x22\x63\x72\x4a\x1e\x91\xc7\xe4\x09\x79\x4a\xbe\x20\x5f\x92\xaf\xc8\x78\x34\x27\x0b\xcd\x5d\x6d\x55\x8e\x48\xbf\xbb\x08\x19\x8f\xc9\xf8\x74\xee\x85\x94\xfe\x2f\x87\x3e\x1b\x13\x41\xe1\x5a\xfb\x0f\x59\x9e\xf8\x2f\x52\x55\x41\xb4\xc5\x89\xaa\x58\x04\x4b\x68\xbc\xd8\x26\x36\x45\x60\x7d\xee\xec\xf7\x68\x73\x63\xdf\x51\x5c\xd2\xfc\x8e\x80\x63\x2e\x30\x27\xbc\x10\x64\x7d\xd8\x49\x51\x87\x34\x14\x53\x54\x28\xc9\xd4\x62\x85\x62\x41\xb6\xae\xe4\x4b\xc5\xd6\x45\x33\xf4\x61\x5d\x6e\x4b\x32\x5a\x47\xb4\x5b\xba\x6f\x90\x4e\x52\x70\x7e\x73\xc1\x14\x37\x75\x03\xe9\x14\xa5\xfc\x0a\xc5\x29\x59\x19\xff\x38\x95\x70\xc1\x24\x59\xd7\x91\xdd\x56\x41\xb0\x22\x57\x10\xff\xdd\x46\xde\x25\xb7\x75\x03\x57\x53\x04\x6f\x2a\x5d\x91\x0b\xcd\xdd\x29\xb6\x26\xe7\x75\xdd\x8b\x20\xb8\x20\x37\x94\x45\xf6\x5d\x23\x72\x5d\xd7\xbc\x99\xda\x87\xaa\xc0\x8f\x3c\xbe\x21\x67\x94\x45\xd9\x05\x79\x53\x57\x3f\x0b\x82\x33\xf2\x91\xb2\x68\x9d\x92\xcb\x3a\xf9\x63\x10\x7c\x24\xcf\x29\x8b\x8a\x35\x79\x57\x27\x3f\x0f\x82\xe7\xe4\xad\x4e\x36\x2f\x7c\x93\x17\x75\x67\x6f\xa7\xa3\xf8\x2d\x79\x4f\x59\x74\x2d\x93\x0d\x79\x5d\xe7\xbc\x9f\x22\x9d\x84\xe2\xf7\xe4\x19\x65\xd1\x4d\x46\x5e\xd5\x4d\x3e\x0b\x82\x67\xe4\xa5\x4e\x2e\xc8\xa7\x3a\xf9\x65\x10\xbc\x24\x3f\x53\x16\x7d\x62\x32\x7f\xc5\xc5\x5f\x79\xaa\x56\xe4\xbb\xba\xc0\xcf\x41\xf0\x33\xf9\x9e\x36\xfd\x98\x67\xc8\x5f\x6e\xf7\x62\x14\xac\xa9\x8b\x57\xc9\x0a\x3f\x72\xa5\x31\xe4\x54\x31\x2b\xab\xd5\x41\x04\xd5\x8f\x46\x11\xa4\x81\x5e\x3f\xda\xa5\x65\x02\x2d\x6a\xac\xb5\x74\x50\xe8\x0c\xf7\xe0\x39\x31\x13\x25\xe8\x26\x83\xfb\x73\x88\x20\x7f\xfc\x68\x8e\xc9\xaf\x6e\xc8\x89\x1e\x72\x16\xc9\x3c\x57\x64\x49\xd6\x41\x30\xcb\x3c\xec\xd0\x53\x7c\x11\x04\xd9\xcc\xb5\x3d\xbc\x29\xea\x00\xf8\x76\x4f\xbc\xc0\x78\x3e\x27\xe7\x41\x90\x19\xb4\xf8\x4e\x7f\x35\x00\x06\x98\xd3\xa7\xf4\x16\x9a\xaa\xa6\xd4\xd5\xd8\x2d\xc6\x73\x3b\xfe\x3e\xa5\xaf\xa1\x82\xfe\xd5\x55\xf6\x35\x94\x75\xfb\xa2\x4f\xe9\x02\x8a\x7b\xef\x73\x75\xd5\x5a\xb4\x6b\x15\x5e\x2d\x27\xcd\x75\xd4\x2b\xa0\x9e\x87\xc9\x7d\x4a\xaf\xa1\xaa\x7b\xcb\xab\xa3\xd2\xb5\xae\xd4\x1f\xf7\x29\xfd\x04\x45\xe1\x95\xf2\x8e\x72\x9f\xaa\x72\xef\xea\x72\xc5\xfa\xa0\xdc\xbb\xaa\xdc\x65\x5d\x6e\x9d\x1e\x94\xbb\xac\xca\xbd\xa9\xcb\x65\x17\x07\xe5\xde\x54\xe5\x5e\x79\xe3\xcb\x0e\xca\xbd\xc2\xb8\xf6\x7a\xcf\x5b\x52\xc8\xa6\x19\x5e\xb0\x42\xeb\xf8\x57\xb8\x17\xa3\x4a\xf2\xbd\x09\x27\x94\xd2\x2a\x8c\x59\x82\x3b\x5f\x87\x6a\xc6\x29\xcc\x73\x15\xef\x4a\x52\xe1\x63\xbc\x3b\xcf\x6f\xce\xf8\x27\x2e\x2e\x62\x64\x1e\x4f\x1c\x9e\xe7\x37\x88\xd8\x60\x62\xe6\xd1\x39\x44\xf4\xbf\x7f\x95\xc9\x26\xb6\x1b\x01\x1e\xee\x8f\xd1\x78\x34\xfa\x13\x2a\x89\xc6\x8c\xa3\x2d\x99\xb7\x18\x63\x34\x42\x25\xf1\x71\x38\xde\xad\xdd\xd7\xa8\x24\x4d\x1c\x36\x5a\x1e\x14\xc3\x5b\x74\xdf\xbb\x9c\xd8\xbe\x20\x89\xba\x8b\x0f\x25\xbb\x62\xb2\x60\xc7\xaa\x55\xf9\xed\xea\x32\xbf\x3e\x5e\xd7\xcf\x2c\x49\xb5\x73\x44\x6e\x48\xdf\xae\x86\x8c\x4d\xf2\x0a\xc1\xdf\x66\xcb\x35\x10\xfd\x56\x5b\x1b\x6c\xc1\x84\x62\x12\xc5\xbb\x9a\xcc\xc5\xc8\x26\x1e\x96\xf6\x8f\x82\x46\x0d\x2f\xe3\x48\x2d\x26\xd2\xae\x3a\x3a\xf9\xb0\xc6\x79\x52\x30\x78\x04\xb3\x59\xa3\x4a\x2e\xc9\xe1\x96\x6f\xce\xc4\xd2\xef\xc3\xb9\x78\x35\x0e\x67\x53\xd5\xea\x9a\x4f\xbb\xa6\x37\xa3\x66\xbd\xc6\x9c\xbc\x5a\x9a\x0c\xb3\xe1\x39\x53\xd7\x8c\x89\x83\xaa\xcd\xdc\xe3\xf5\x13\x99\x6f\x3b\x7a\x6e\x64\x96\xc4\xa7\x6b\x15\x64\x6c\x5a\x07\x6c\xbc\xd2\xde\xdc\xda\xe5\xfd\xd9\x79\x35\xda\xf3\x6a\x57\x3b\x98\xd9\x41\xdd\x6a\x4e\xdd\x55\x3b\x67\x65\xb2\xd8\x15\x13\xd9\xed\xd1\x9a\x36\xbb\x2c\x49\x17\x6b\x57\xeb\xc7\xb6\x1d\x3e\x66\xd2\x29\xf0\x2b\x5e\x25\x94\x78\x32\xb2\x31\xbb\x45\x7d\xac\x56\xf4\x56\x35\xde\x7b\x91\x78\x4e\x77\x8e\x24\xd5\x85\xb2\x90\x93\x53\x8c\x1d\x5d\x5b\x24\xd9\x22\xd4\xc4\xad\x37\xe8\xf9\x65\x30\x41\x18\x61\x82\x82\xde\x37\xbd\xcf\x80\x79\x88\x77\xf6\x91\xd9\xd8\x34\x51\x96\xf6\x4a\xb2\x96\x34\x6f\x0a\x88\x4a\x05\xaf\xe6\xc2\xfd\xc0\x02\x6e\x4a\x1d\x3e\x56\xe8\xfb\x41\x74\xd9\x2b\xa4\x86\xca\xa2\xdb\xe5\xce\xc6\x3e\x81\x73\xa6\x66\xbd\x9b\x0f\xe5\x80\x59\xb1\xaf\xa1\x64\xee\xc1\x80\xac\x00\xbf\x2c\x34\x6b\xa6\xfd\x55\xa2\x56\x11\x2c\x6d\xc8\x4e\xc6\xa7\x9f\x8f\xd9\x97\xf8\x64\xcc\x9e\x12\xf4\x27\x84\x27\x72\xa6\xe6\xe6\x85\xd0\xef\x92\x82\x17\x31\x87\x93\xe1\x47\x99\x5f\xc7\x23\xb2\x4e\x6e\x0c\x3d\xe7\xa5\x09\xc0\xdf\x2e\x6d\x65\x94\xae\x2a\x48\xe4\x9a\x84\x4c\x3a\xeb\x8d\xea\x2a\x63\xaf\x8a\x39\x7d\x34\xb8\x35\xa4\x81\xf7\xf7\x4f\x3b\x46\x24\x8e\xd9\x4c\x35\xe0\xbf\xdd\x84\x02\xcf\xa9\x2c\x21\xa4\x8b\x30\xbe\x35\xbb\x12\xae\x56\x9a\x48\xdd\xe8\xd5\x96\xff\x28\x79\x8a\x4a\x1c\x2e\xcd\x9d\xac\x54\x4b\x73\x0f\x54\x76\x7f\x61\xa4\xb9\x2f\xef\x92\xe6\xc0\x83\xd7\x4a\x75\x0b\x2a\xc2\x47\x4f\x31\xc9\x74\xa5\x27\x98\x3c\x4c\xfa\x71\xb2\xca\xb6\x21\xab\x2c\x40\x10\xc9\x72\x49\x96\x35\x97\xbe\x98\xa2\x8d\xe4\xeb\x44\xde\xa2\x78\x01\xe2\x8c\x09\x71\xba\x71\x5f\xe6\x2e\x0a\x48\x31\x57\x89\xe4\x89\x50\x95\x0c\x43\x29\x5d\x4d\x11\x17\x29\x53\x4c\xae\xb9\x48\x14\x43\xb1\x16\x69\x9a\x70\x9e\x1d\x65\xc1\xb3\x5c\x9a\x20\x11\x10\x2e\xd5\xeb\x0e\x7e\x41\x67\x9a\x79\xbe\x75\x0d\x66\x70\xad\x9d\x5c\xd0\x5d\x49\xce\xe9\xee\x3c\x91\x63\xcd\xaf\x9c\x27\xf2\x34\xde\x95\xf0\x36\x27\xf2\x07\x43\x29\x5d\xef\xf7\xc8\xdc\xb2\x81\x5f\xb8\x7a\xed\xb2\x4f\x69\x8a\x77\x17\x33\xa4\xfb\x19\x42\xdf\x22\xbf\x46\x73\xea\xa1\x78\x8a\x49\xa3\xc0\x9a\x0b\x34\xa7\xa3\x56\x62\x72\x83\xe6\x74\x3c\x1a\xc1\x22\xdf\xd0\x74\xa8\xbf\xdd\xbb\x2a\xb7\xb5\x74\x17\x04\xe1\x0d\x1d\xde\x60\x72\x1e\xe9\x91\xd7\xce\x54\xd4\x04\xf8\xc8\x12\xc5\xfe\x16\x56\x5b\xed\x86\xa0\x3f\x61\x64\x1f\xab\x18\xc1\xdc\x8e\x4d\x64\x63\x96\xfe\x9a\x86\x9b\xfd\x7e\x84\xef\x18\xc0\x35\x1d\x5e\xdb\x01\x9c\xde\x37\x80\xeb\xe6\x00\x8e\x30\xa3\x20\xe6\x36\x63\x51\xd7\x0c\xa9\x2f\xf4\x08\x23\xf4\x88\x99\x5d\x78\xd7\x8d\xcf\xa2\x2e\x35\x7b\xbc\x25\x3b\x6f\x11\x63\x11\x79\xbf\x48\x03\xdb\x62\x11\x35\x7e\x13\x1b\x39\x50\xd8\x8b\x55\xe4\xf7\x2d\x93\xb7\xb1\x88\xe0\x6f\x39\x5b\xcf\x31\x91\x79\xc6\xe2\x2a\x34\xce\x79\xa2\xcf\xd2\x0b\xb2\xb3\x8c\xf3\x15\x26\x3e\x94\xa7\xdd\xb3\x3d\x3a\xc3\x34\x29\x56\x2c\xd5\x73\x34\x5f\xcf\xef\x9c\x29\x2e\x6d\x88\xaf\x3f\xd8\xcb\x79\x22\x75\x17\xe7\x89\xbc\xbb\x7d\x12\xb6\x36\xa7\xdd\x0f\x00\x0d\x83\x45\x41\x00\xcd\x8d\x5f\x36\xc0\xd8\x82\xbf\x2e\xf0\x7d\x27\x94\x13\x39\xb6\x77\xd5\x00\xb6\xf0\x56\x41\x6c\xd0\xbb\xc4\xe4\x60\x2f\x9a\x47\xf8\xfe\x85\xd9\x3e\x78\x22\xa7\xcd\x89\x34\xd6\x72\x76\x3f\xea\x99\x36\xec\xcd\xc8\xf8\x21\x30\x6e\x4c\xfa\xb4\xc4\xd6\x8b\xbd\x0a\xa7\xbd\x3d\x90\xbc\x8e\x45\xa8\x46\x19\xbf\x58\x99\x57\x55\xa3\x4d\x92\x31\xa5\x4c\x8c\x07\x77\x6a\x2d\xa2\x14\x87\x8a\x44\x4f\x4f\x71\x5c\x25\x25\x90\xf4\x04\xc3\x9b\x1f\x61\x5d\xd1\xd2\xf4\x68\x9d\x70\x81\x89\x6c\xe4\x15\x6c\x91\x8b\xb4\xca\x75\xda\x52\x23\xfd\x99\xd7\xce\x41\xb4\x61\x99\x7d\xd9\x3c\xbf\x62\x72\x99\xe5\xd7\xb1\x8b\x84\x41\x56\x4c\x8f\x35\x7e\x4c\xd0\xb7\x6b\x96\xf2\xa4\xb7\x91\x5c\x68\x96\x1c\xe0\xfb\x2c\xd5\x9c\x5d\x8c\xd8\x4d\xb2\x50\x9a\x91\x83\xd4\xb7\x66\x48\xf1\xee\x3c\x59\x5c\x5e\x00\x81\x05\xd0\xc6\xc2\x16\x38\x73\xe3\x3a\x2c\x22\x4b\xe2\xa3\xe4\xae\x6c\xd1\x01\x7d\x08\x18\xa4\x3c\xa8\x6a\x48\xdb\x26\x91\x4c\x68\xc1\xc0\x50\x84\x5d\x45\xfa\xb4\x08\xa7\x12\xc5\xc2\xf1\x97\xa3\x94\x5d\x60\x54\x12\xb3\x75\x7d\x50\x24\xe7\x45\x9e\x6d\x15\x73\xe2\xea\xfb\x7c\x13\x8f\x1c\x10\x0c\xa3\xd1\x90\x79\x49\x22\xf8\xda\xbc\x1f\x89\x3e\xb3\x77\x3c\x1f\x15\x3d\x2e\x96\x5c\x70\xc5\x7a\x5a\x20\x02\xc2\xe3\x51\x89\x0e\xf0\xbc\x5c\x43\xb8\x18\x99\xa4\x1c\x9e\x43\x4f\x52\x0e\xfb\xc5\x63\xe3\x7a\xa3\x3f\x91\x5e\xcd\xca\xe9\x94\xf1\xd3\x3f\x91\x9e\x37\xe9\xde\xe3\x53\x4d\xc6\x49\xdd\xee\x19\xff\xc4\xf4\x48\x37\x37\x3d\xfd\x0f\xf2\xb2\xde\x56\x73\x1e\xf5\x86\xa7\x8f\x36\x37\xcd\x41\x76\x2e\xd1\x7d\xc3\x94\x07\xc3\x94\xff\x8e\x61\x9e\x27\x32\xde\x35\x56\xa1\x6b\x01\x33\xb6\x54\xf1\x88\x9c\xe7\x4a\xe5\xeb\x78\x44\x14\x2c\xa5\xf7\x10\x74\x1d\x6c\xab\x37\x8a\x4e\x0b\xb7\x56\x75\x90\xd7\x37\x92\x83\x78\xa0\x5b\x32\xdd\x1e\x5b\x3f\x83\x80\xdd\x9b\xb2\xae\x78\x07\xda\x1f\xdb\xb3\x50\xb9\x49\xb3\xab\xa9\x1b\x26\xda\x47\xc0\xc6\x56\x19\xf7\x4e\xa3\x71\xd1\x5b\x6c\xcf\xf9\x62\x78\xce\x3e\x71\x26\xc3\x51\xf4\xf4\x09\xe9\x8d\xa2\x2f\xc7\xf0\xe7\x8b\x47\xf0\xe7\xd1\x57\x4f\x70\x85\xb2\x66\xa2\xfe\x29\x10\xef\xba\x81\x16\x55\xeb\xfe\x98\xa0\x0a\x7c\xd8\xd4\xb7\x77\xcb\x77\x9f\x5e\xc2\x73\x3f\xe3\x23\x80\xbf\xab\x8d\xd3\x7f\x69\xda\xa7\x9d\xd3\x1e\xdb\x79\x3f\xd6\xff\x3e\x7e\x4c\x7a\x63\xdc\x1b\x47\xe3\x27\x45\x6b\xde\xa7\x6e\xdc\x7f\x70\xb8\xe8\xdb\xea\x29\xe1\x5e\x73\x15\x50\xbc\x43\xa3\x3f\xa1\x78\x07\xf8\x88\x86\x8f\x9e\xfc\x09\x11\xe9\xd1\x93\x92\xa0\xa7\x5e\x01\x83\xd0\xb6\xc0\xf0\x2b\x53\x00\x12\xef\x28\x71\xc7\x00\x4e\xdb\x03\x38\xf5\xab\x77\x8f\xe0\x0b\xaf\xfd\x2f\xbb\x06\xd0\x2e\xd0\xec\xdf\x1e\xc5\xae\xdf\x5c\x4b\xe2\xea\x36\x1e\xdf\xb3\xad\xd1\x93\x46\xf1\xd1\x7d\xc5\xed\x98\xee\x6e\x5e\x4f\x77\x73\xe3\x2a\x95\x65\x43\xbc\xfb\x19\xd6\xaf\x0a\x6c\x07\x82\x9e\x16\xf1\x1e\xe8\xa2\xf2\x10\x11\xcf\x18\xec\x8c\xa8\xb7\xa0\xbb\xd5\x38\x46\xab\x31\x22\xab\xd3\x18\xad\x4e\x11\x59\x3d\x8a\xd1\xea\x11\x22\xab\xc7\x31\x5a\x3d\x46\x64\xf5\x24\x46\xab\x27\x88\xac\x9e\xc6\x68\xf5\x14\x91\x62\x7b\x0e\x3e\xb5\xe3\xe6\xcf\x53\xf3\xf3\x3c\x4f\x6f\xc7\x31\xda\x98\xaf\x53\xfd\x55\x92\xec\xe1\x66\xb3\x96\xbd\x8c\x8b\x15\x93\x5c\xa1\x58\xdc\x6b\x07\xd3\xb2\x65\xd3\x06\xa6\x37\x11\x4f\xb2\xda\x0e\xe6\x4c\x65\x6b\xf3\xee\xf1\x26\x4b\x6e\xc9\x55\x5d\x65\xed\x55\x59\x93\x5b\xca\xa2\x8b\xad\x52\x4c\x7e\x07\xf4\x9a\x5c\xd4\x96\xa0\xdb\x20\xb8\x25\xe7\x94\x45\x22\xff\xab\x4c\x36\xe4\xa6\xce\x3a\x0f\x82\x73\x72\x4d\xcd\x6d\xbe\x0b\x99\x6c\x56\xe4\xac\xce\xbd\x0e\x82\x6b\xf2\xc6\x13\x67\x3f\xd6\xdd\xbf\x99\x22\x80\x1e\x8a\xdf\x90\xcb\xba\xc8\xab\x64\xb3\xe1\xe2\x82\x3c\xaf\x4b\x5e\x4e\x17\xf1\x25\x79\x77\x20\xea\x02\x04\xef\xb0\x3a\x19\x91\xd7\xb7\x3e\x59\x28\x20\x82\xfc\xa9\x22\x82\xcc\xc4\x6c\xa8\x47\x98\x86\x27\x16\x57\x5f\x76\x6c\x5a\x4e\x7e\x4b\x57\xfb\x7d\x78\x36\x45\x1b\x14\x3f\x9f\x7d\x9c\xef\xf7\x8b\xd9\xc7\x39\xde\xef\x51\xb1\x49\x04\x3a\x26\xc1\xbd\x7d\x88\xf4\x56\x99\xac\x2a\x7c\x30\xf6\xc2\x6c\xf6\x71\x4e\xaa\x35\xd3\xb2\x28\xd8\x35\x3a\xf9\x6c\xe0\x85\x37\x9a\xcf\xbe\x09\x82\xcc\x2d\xdc\x85\xfe\x6e\xac\xf2\x99\x4e\xa9\xd7\xce\xef\xd1\xb3\x1d\x75\xb6\x6e\x8c\x46\xde\x70\xae\xac\x09\xcc\xc0\xb8\xab\xca\x15\x70\xf1\x56\xfe\x7b\x77\xc0\xc0\x1f\x33\x9d\x58\x7e\xd9\x2a\x0b\x47\xa5\xdd\x6c\xc0\xb3\xe7\x30\xf0\xdb\x08\x92\xec\x7e\x3c\xc8\x18\x93\x45\x62\xbc\x63\x1b\x59\x36\x91\x9c\x6f\x95\x6a\xe7\x99\x34\xb2\x6a\xb5\xb6\x1a\x6b\xca\xd1\x4c\x3a\xd5\x44\xa4\x99\xf4\x48\xd3\x93\x66\xd2\x63\x4d\x5a\x9a\x49\x4f\x34\x95\x69\x26\x3d\xf5\x08\x4e\x23\xa7\x4a\xf6\x48\x50\x67\x81\x53\x90\x21\xf4\xc1\xd8\xcc\x77\xa9\xa4\x90\x6f\x44\x76\xdb\xcd\x73\x5b\x3e\x7b\x6c\x59\xec\xf1\xa1\x3c\x52\x12\xc0\x88\x9f\xf5\x39\x04\x31\x08\x9f\xe9\x9f\x15\x8b\x66\xb4\xee\xa0\x38\x6f\x64\x57\xba\x74\x28\xf0\x0e\x7a\xf1\xf3\xe1\x2c\x73\xd9\x3f\x19\x65\x75\xa3\x80\xb3\x0c\x97\xc4\xe0\x72\xbc\x3b\x14\x95\x74\xf1\x37\x55\x2a\xcb\x32\xbe\x29\x78\x81\xc8\xf5\x8a\x2b\x76\xb6\x49\x16\xcc\xb3\x0d\xf9\xdb\xc0\xe1\x96\xfd\x85\x46\xd1\xa3\x27\x6c\x8d\x4a\x52\xed\x8c\x56\x89\xf1\x53\x2b\x48\xbd\x34\xfb\xc5\x4a\x63\x71\xb5\x7f\xda\x82\xd8\xe2\x4e\xfe\xb4\x2d\x93\xb5\x4b\xb7\x59\x52\xc8\x7f\xcf\x6e\xd4\xd1\xf6\x35\x28\x5c\x27\x5e\xf9\x3b\xfa\x80\x1a\x55\x47\xb6\x0e\x78\x38\x1d\x96\x85\xa0\xe1\x76\x2c\x76\xbf\xbf\x14\x80\x72\xbb\xca\x5c\xc9\x85\xb5\x45\xd9\x94\xef\xb2\x7c\x71\xe9\xe5\x9f\xeb\xdf\xa8\xc5\x0f\xbc\xaf\xf0\x55\xf3\x02\x19\xf0\x02\x0f\x74\x09\x7c\xb8\xf3\x8e\x51\xf3\x2e\x34\x4f\xf0\x95\xd5\xf7\x6a\xe6\xe0\x81\xfa\x5e\xf7\x16\x55\x71\x54\xf9\xbb\xac\x0e\xe8\xb4\x3e\xc4\x96\x53\xf7\x90\x20\x8a\x97\xa0\xf2\xad\x0f\xe8\x55\x5d\x6c\x33\x45\x86\xf2\xa0\x78\xe3\x0e\xee\xe4\x3c\x63\x69\x75\x72\xf7\x29\x5d\x07\x81\x39\xb0\x6d\xe6\x8b\x8c\x5d\x01\x2b\xde\x79\x68\xdb\x42\x10\xe5\xf1\x1d\xdf\x6c\x32\xd6\x79\x80\x33\x91\xbe\x5c\xe4\x02\x3c\x58\x96\x5e\x44\xc8\xea\xb5\x69\x38\xc8\x97\xdb\x2c\x33\x8e\x0f\x1f\xeb\x36\xde\x04\x81\x39\xc3\x0b\xfe\x89\x35\x4f\x6e\xb4\x66\x29\xdf\xae\x11\x1c\xe0\xf0\xfc\xae\x54\xd0\xcd\x5b\x17\x56\xb3\xe1\xe0\x52\x4d\xde\xf8\xb9\x38\xb6\xa1\xe9\xea\x02\xc1\xf8\xc1\xd5\xa5\xed\x9b\x52\xbd\x02\xf6\x07\x99\x02\x80\x70\xfd\x59\xc1\xb3\x4e\xf2\xa0\x87\x08\xb2\xb0\x42\x04\x75\x42\x4a\xa7\x3b\x38\x21\x82\x34\x54\xf4\x1f\x37\x77\x44\x90\xf5\xa8\xf7\x14\xef\xaf\xe8\xbb\x20\x38\x50\xd7\x01\x33\x71\x4c\x5f\x57\x78\xe0\x2c\x66\x88\x2f\x72\xa1\xe5\xf8\xf6\xc9\x0b\x9a\xfc\xe7\xa0\x03\x25\xef\x30\x79\xa9\xb9\xb2\x3f\xda\x91\x43\x8e\x07\x76\x73\x7d\xd4\x9f\x62\x11\x25\xc7\x3c\x2a\x9a\x3d\x02\x0b\x54\xcc\x5e\xcf\xc9\xb6\xe6\x4a\x80\xd1\x2d\xa2\x06\xe5\xad\xb6\x55\x9f\xd2\x34\x08\x8a\x59\x6d\x41\x7b\x8d\xbb\xc6\x98\x02\xdf\x62\xf1\xd2\xb8\x5c\xcd\x1a\xb5\x08\x82\xf9\x75\x56\xd6\x13\xd4\x50\x28\xee\x82\xc0\x5c\x33\x5a\xc5\xe1\xee\xbc\xf2\x52\x53\xf2\x51\xff\xaa\xf0\x04\x93\x0a\x27\xe3\x15\x71\x85\xe2\x2b\xb2\xac\x31\x2f\xee\xdf\x90\x4e\x84\x6b\xc1\xce\x2f\x43\xce\x2c\xc3\x45\x34\xce\xc5\x2f\x4a\xf2\x0c\x1f\x2a\xc1\x0f\x96\xbf\x88\xb2\xe4\x9c\x65\x25\x79\x45\x04\x79\xf9\x07\x39\xb5\xd6\xfb\xa1\x5d\x7c\xd5\x51\x1f\x15\xe7\x89\xf2\xf4\x31\x71\xf6\x5c\xf4\x74\x73\xd3\x1b\x3f\x05\xb5\x14\x14\x7d\x97\xa4\x7c\x5b\xc4\x2c\x2a\x56\xc9\x86\x45\x7e\x22\xb9\xeb\x20\xf4\x55\x20\xf6\x82\x3d\xfc\x70\x6f\xab\x87\x33\x54\x4b\xb0\x43\x47\x2b\xce\xf3\x9b\x61\xb1\x4a\xd2\xfc\x1a\x7e\xe8\xbe\xd0\x9c\xec\xd2\xad\x79\x06\xbc\xd5\x92\x4b\x8e\x8a\x55\x2e\x55\x89\x09\x0a\xe2\x95\x66\x55\x90\x61\x67\xbe\x67\x8b\xdc\x56\x34\x96\x56\xd2\xd6\x44\x55\x0c\xf3\x39\x0e\x8f\xcc\xa3\x4e\x4e\x8c\x9b\x31\xf4\xf0\xc6\xc8\xe1\xb8\xd2\x14\x87\x90\x1c\xf7\x74\x3f\x18\xdd\xab\xaf\x45\xc1\x67\x15\x2d\xbc\xaf\x70\xbb\x74\x1b\xec\x76\x5c\xae\x84\x3e\xe5\x01\xa1\x5a\x6a\x43\x8f\x5b\x30\x3b\x9c\xf8\x0e\x2d\x55\x62\xdb\x7b\xa1\xe6\xb2\x20\x0a\xf6\xae\x81\x29\x5f\x82\x72\x42\xdd\xc5\x1d\xf9\xdc\x97\xbf\x40\x0f\x5b\x8a\x46\xed\x7f\xcb\x52\x94\x66\xfc\x0f\xe6\x08\xff\xf8\x1c\x5a\xf5\xff\x5d\xb3\xc8\xb7\x2a\x83\x38\x87\xf5\x12\x3d\xd1\x9b\xf9\x49\xbd\x99\x63\x34\xde\xdc\xf4\x8a\x3c\xe3\x69\xed\xe1\x71\xd4\x40\x83\xe4\xc5\x79\x12\x8e\x48\xcf\xfe\x17\x9d\x3e\xc2\x28\x36\xa9\xa7\x4f\x9e\x90\x5e\xfd\x8f\xc9\xc3\x6d\xb4\x3e\xde\xe9\x51\xec\xfd\xae\x9a\x26\xf6\xe6\xf4\x30\xec\xba\xa3\xbf\x07\x60\x57\xf4\x04\x37\x28\xc8\x83\x46\xdf\x34\x48\xfd\x1f\x84\xd3\x0e\x72\x0f\xc7\xeb\x3f\x0c\xbd\x56\xfd\x7f\x09\x7e\x2d\xa3\xdd\x03\x21\xf8\xbf\x65\x47\xfd\x37\x20\x33\x2e\x6b\xaf\xd3\xf4\x70\x01\x2e\x98\xd2\x64\x56\x26\x85\xd2\x02\xa3\xd7\xce\x85\x64\xb7\xb3\x47\xa3\xd1\xfc\x10\x22\x1d\x85\x88\x3e\xe0\xe1\xd4\x34\xe7\x74\x9a\x5f\x17\xb3\xd3\xf9\x5d\x94\xaa\xd9\x4a\xf4\x6c\x3c\x1a\x75\xb6\xf2\x78\x7e\x1c\x7c\xdd\x9d\x3e\x60\xbc\xf7\x1d\x7f\x0f\x20\x0e\x66\x79\x7c\xe6\xeb\xc8\x88\x9e\x42\x6f\xf1\xff\xcb\xda\xb7\x76\xa7\x8d\x2c\x6b\x7f\x7f\x7f\x05\xf0\xee\xd3\x47\xbd\x53\x26\x40\x2e\xdb\x23\x2f\x2d\xd6\x24\x76\x76\x32\x13\xc7\xd9\x21\x99\x89\x87\xc3\xca\x92\xa1\xc1\xb2\x85\xc4\x48\xc2\xc6\x01\xfd\xf7\xb3\xba\xfa\x2e\x04\x26\x73\xe6\x8b\xdd\x2d\xba\xab\x6f\xd5\xb7\xea\xaa\xa7\x38\xa1\xbb\x5d\x69\x8e\xb7\x6a\xf4\xc8\x16\x5b\xdb\x55\x9d\x7d\x6d\xdf\xd7\x10\xcd\x21\x8f\xae\x72\x63\x8b\x5b\xf6\x14\x76\xe8\x96\xbb\x9d\x63\x12\x66\xb7\x07\xcf\x97\x1d\x12\x16\xbb\x45\x07\xad\x3e\x07\xb6\xea\xf0\x6d\xb8\x2e\xcf\x5f\x6c\x59\x45\x1a\x54\x96\x50\xbd\x69\xd8\x2c\x25\x4f\x99\xce\x22\xe8\xfe\xb6\x9f\x6d\x4d\x9a\x3a\x86\xb5\x28\x38\xeb\x52\xe5\xf7\xd2\xb9\xb7\xf8\xeb\xd2\xdc\x70\xd6\x8f\x48\xd2\xe4\x1e\x20\x97\xc3\xf1\x32\xe3\x4b\xa1\x50\x14\x91\xa7\xa4\xe8\x3b\x1b\xcc\xc3\x38\xb6\x0e\x19\xcf\x17\xab\x06\x9e\x31\xa6\x69\x82\x09\x5c\x59\xe8\x62\xf5\x39\xfd\xc4\xe6\x5e\xf7\x19\x35\x34\xde\x87\xd9\x8c\x59\x34\x8e\xf9\x41\xa5\x7b\x00\x91\x17\xd4\xda\xda\x6a\x2a\xf3\x6c\xb1\x6a\xfc\x74\x60\x65\x6c\x3a\xd5\x0a\xfd\x6b\xb1\x6a\xf4\x0e\xad\x90\x61\xf7\x1d\xdd\x23\xde\xf9\x0f\xa8\x92\x43\xa9\xae\x93\x7a\xbd\x03\xeb\x94\x9b\xaa\x88\x88\xa4\x56\x82\xbe\x06\xbb\xf7\x83\x12\xb4\x84\xc3\x91\x2c\x4a\xce\x10\x22\x59\x21\x4c\x3e\x96\x31\x14\x4c\x1f\x3d\xe7\x0c\xa9\x24\x15\x58\x64\x4b\x49\x70\x45\x82\x5e\x59\x82\x14\x6a\x3c\x46\xf9\xe8\xb9\x4d\xfa\x78\x37\x65\x99\x9c\x93\x76\x12\xf8\x6b\x54\x53\xfe\xa7\x3f\x8d\xb2\xbc\x38\x42\x21\x55\xcb\x5f\xeb\x0e\xeb\x1e\x5b\x39\xce\x51\x2e\xf1\x58\x96\x5e\xc7\xca\x22\x7b\xf1\x91\x1c\xbd\xea\xdb\xeb\x2b\x21\x6a\x53\x6f\xae\x3f\x1d\x68\x2e\x7b\xf8\x9b\xeb\x8f\xa8\xcf\xe6\x8e\x04\x75\x89\x62\xcb\xbb\x08\xa1\xf0\xc6\x46\xd0\xb8\x24\x64\x09\xf1\x81\x3a\xaf\x8a\x40\x6b\xb7\x75\xcf\x8f\x2a\x54\xe6\x30\x26\x24\xd1\x55\xd3\x4f\x59\xf1\x8f\x3e\x65\x4d\x63\xb6\xf2\x5b\xdd\x46\xb7\x21\x94\x29\x7e\x67\x57\xb7\x91\x7e\xbb\x18\x8c\xb3\x34\x8e\x71\x7e\xa1\x97\x1a\xa3\x16\x76\xa9\xb4\x2f\xdc\x09\xf8\x9c\x4f\xc0\x16\xa9\x8c\xbd\x4c\xf3\x39\x5d\x08\x7e\x51\xd5\xb6\xa6\x6f\xf7\xa5\xce\x2e\x96\x59\x9e\x78\xff\x71\x52\x52\xa1\x32\x83\x7a\x32\x39\x28\x4f\x85\x03\x4f\xa3\x30\x4e\x67\xca\x96\xb0\xa4\xde\x12\x19\xf1\x40\x08\xea\xbf\x97\x11\xe5\x7e\x34\x90\x66\x97\xb9\x61\xba\x84\x90\xc4\x48\xf8\x59\x2e\x94\xbb\x35\xaf\x6e\xb3\xa3\x4b\x6a\x87\x2c\xfa\x6f\x60\xca\xa5\x60\xca\x31\x34\x73\x42\x96\xca\x0a\xe3\x31\xa6\x94\x1c\x58\x31\x2b\xab\xb1\x6f\xd2\x3c\x76\xbc\x25\x7f\xd1\x96\x2e\x20\x18\xb9\xd3\xe8\x08\x46\x2e\x41\xd6\x42\x2e\x47\x7e\x92\x16\x9e\xcd\x96\xd4\x5d\x87\x8f\xf9\xe9\xa5\xca\x10\x3f\xe3\xf0\xe4\x86\x21\x0e\x34\xdf\xae\x61\x88\xa4\x9d\x78\x29\x67\x05\xc5\x19\x3d\x7e\x21\x44\x8d\xff\x8e\x78\x02\x7a\xfe\x82\x42\x1c\xec\x81\xe5\xef\xa7\xed\x65\xce\xde\x87\x0f\xe9\xb2\x38\x9b\x4e\xd9\xb8\xf0\xf1\x8b\x08\x1b\x3b\xee\xa9\x51\x38\xc5\xdf\x39\xaf\x19\x17\x99\xb1\xe3\x93\xab\x68\xcb\x73\x0c\x9a\xfb\x43\xba\xc3\xbb\x96\x01\x05\x52\xe9\xa5\x71\xbb\xe0\x4d\xd0\x56\xe0\xca\x1d\x15\x2f\x7e\x22\xd9\x7e\x81\x2e\x9a\xba\x14\xae\x95\xaf\x26\xfe\xeb\x1c\x23\xcf\x2c\xc0\x83\xbb\x3a\x7b\x7a\x81\x81\x20\x9c\x22\x49\xb7\x1d\x1e\xa3\x15\x07\x4e\xd7\xc8\xf0\xb4\x44\x7f\xf3\x95\xac\xb5\x1d\x3a\x78\x98\x5f\xa5\x31\x21\xe2\x7f\x3b\x2a\x58\x16\x16\x69\xd6\x88\x34\x49\x53\x86\xe3\x90\x49\x14\x21\xd3\xcc\x45\xb1\x56\x91\x36\x0e\x9b\x85\xcb\xf0\x2e\x41\x48\xb1\x46\x58\x14\x6c\xbe\x28\x1a\x45\xda\x10\x10\xec\xfc\x8c\x7d\x84\xa5\x5f\xc5\xc6\xb1\x44\xfb\x7f\x92\x77\x49\x03\x17\x35\x9e\xf4\x8a\x35\x54\x12\xc0\x0c\x08\xb2\xd7\x10\x7e\x05\x72\x81\xf5\x70\x1d\xde\xb1\x46\xd8\x18\x56\x1a\x34\xf2\x68\x43\x22\x8a\xb7\x68\xe9\x89\x71\x79\xc0\x9e\xb7\x61\x4e\x67\xc6\x33\xc5\x4c\x79\x09\x0a\xf3\x3c\x9a\x25\x6e\x77\x1a\x68\xc8\xee\x49\xb1\x0d\x39\x58\x3c\x79\xa2\x96\x31\x03\x0b\x50\x8c\x34\xa2\x24\xf6\x6f\x72\x98\x1f\x9c\x04\x32\x01\xfd\x96\x8d\x82\x04\x11\xdf\xb4\x73\x7c\x2a\x79\x0f\x61\x19\x2d\xce\xe3\x45\x5c\x61\xdb\x5e\x50\x58\x61\xe0\xa5\xd5\xc8\x7b\x7b\x99\x75\x3d\x3e\x21\x76\xf3\x89\x81\xec\x4a\xdb\xaf\xe5\xfb\x5d\x7b\x1e\x2e\x1c\xec\x3a\x0b\x5d\xbc\xa4\xb4\xde\xfc\x2a\x19\xb2\xf6\x2d\x7b\x18\xd5\x01\x45\x14\x84\x48\xee\x49\xdb\x51\xfe\x1b\x67\x0b\xb9\xdc\x72\x56\xea\x17\xe8\x2f\xa6\x14\x3e\x33\x21\x31\x18\x92\x83\x0a\x34\xae\xf4\x69\x37\x2c\x46\x7d\xfe\xc7\x47\x98\x9b\x05\x82\x10\xeb\x3c\x17\xae\xbd\xd8\xbd\x67\x1e\x8d\xf9\x02\xe5\x6e\x3f\x3a\x17\x02\xec\xaa\x52\xf8\x88\x15\xfd\x62\x98\x8c\x7c\x36\x4c\x46\xa5\x02\xc4\xb7\x9d\xe2\x66\xc6\xb5\x94\xdd\x9f\x90\x06\x43\x33\xf6\xa1\xf0\x81\x14\x0a\x82\xa9\x86\x25\xf5\xa2\x61\x38\x0a\x52\x4c\x4c\xfd\x54\x80\xca\x84\xca\x15\xe9\xba\xd4\x04\x96\x98\x13\xa7\x74\x34\x5c\x8e\xa8\xf1\x2b\xc6\xa3\xb6\x6b\x31\x6c\xee\x38\xe0\x9f\x87\xd9\xe8\x24\x1f\xca\xd0\x28\x48\xbc\x31\x2d\xf3\xe1\x92\x87\x96\xb4\xdc\xe1\x9a\x2c\x1f\xa6\x32\x35\xff\xaf\xf9\x22\x2f\xbd\x02\x32\x1d\xb5\xdd\x9c\x45\x75\x8c\xa0\x81\x7d\x78\x0b\x4f\xa2\xa9\xb7\x73\xdc\x73\xe9\x14\x7c\x19\x88\xee\x81\xb1\x08\x64\x10\x07\xc5\x30\x1c\xc1\x34\xd8\x99\x37\xa6\x84\x34\x63\x31\xf8\xed\x28\x39\x69\x8e\x37\x9b\x25\x21\xcd\x69\x7f\xbc\xd9\x34\x97\x9b\xcd\xb4\x3f\x46\xac\xd8\xbd\x14\xc4\x28\xe8\x24\xe3\x38\x4d\x98\xa9\x1e\xac\xd3\xe4\x6c\x15\x15\x6c\xe2\x27\x08\x5a\x29\x30\x4d\x72\x0a\x51\xe2\x9b\xb2\x81\xad\xa2\xc2\x1f\x78\x39\xb4\x78\xa8\x05\x8c\x82\xd0\xbf\x11\xdf\xc4\x5e\x8e\x9c\xed\x3f\x52\x5e\x94\xf8\xcd\x6e\xf9\x68\xb2\x3d\xd5\x6a\x76\x0e\xaf\x0e\xda\x0b\x46\xb8\x7e\xdc\x28\x4e\x46\x2b\xaf\xdc\x5d\xfe\x6a\x46\x9e\x51\x5c\x21\xea\x90\xb8\x99\x00\x04\x2f\xc1\x05\x7c\xd5\xf3\xac\xf0\xcc\xdc\x84\x28\xf0\x32\x7e\x98\xd3\x70\xb3\xfc\xb7\xcd\x86\x07\xa9\x04\x89\x17\x4d\x15\x0d\xad\xec\x71\x5a\x27\xc1\xc6\x05\xfa\x84\xd8\x74\xc9\x58\x6d\x42\x9c\x56\xe3\x3a\xcc\x93\xff\x96\x88\xce\x52\x61\x2e\xca\xd9\xa4\x71\xd4\xc8\x97\x0b\x96\x79\xd4\x49\xc1\xab\xc3\x26\x2d\xb3\x34\x96\x5e\x66\xbb\xf2\xcd\x8b\xb0\x60\xc1\x7a\x2c\xbc\xd2\xfd\xc6\xbb\xcc\x5f\x47\xf9\x79\xba\x4c\x0a\x7e\xf4\x6a\x76\x4a\xb0\x2b\xef\x47\x80\x27\xb0\x4f\x2c\x99\xa0\xf3\xd7\x12\xb2\x52\x0e\xef\x95\x30\x6b\x61\x1a\x73\xc8\x6c\x10\x06\xd7\x4b\xbf\x4c\x9f\x46\x13\x2c\x65\x0b\x94\x76\xce\xbf\xb2\x49\xd0\xec\x08\x40\xda\x9c\x15\xe8\xb0\xd5\xdb\x53\xcb\x6e\x59\xd2\x12\x2c\xea\xbf\x47\x71\xfc\x25\x99\xef\x2f\xa0\x5b\x42\xd1\x9e\xb1\xe2\x94\x65\xd1\x1d\x9b\x60\x29\x6f\xb2\x74\xce\xf7\xb1\x2a\xa4\xa2\xc1\xf2\x2e\x8c\xde\x4e\x18\x14\xce\xd0\x2a\x9b\x1c\x95\xc0\x2f\xda\x56\x6f\xf5\xbd\x24\x60\x90\x05\x21\xdc\x7b\x89\x21\xb2\x07\xdf\xa1\x3a\x61\x98\x35\x61\x32\x6b\xc2\x30\x35\x61\xc2\xc5\x82\x85\x7c\x7a\x30\x68\x89\x70\x0b\x12\x33\x69\x98\x9e\x34\xfc\xa3\x98\x5c\x4c\x4d\xae\x84\xa2\x95\x33\xf5\xf9\xa6\x13\x41\x48\xdd\x91\xee\x96\xbc\x83\xed\xd6\xd6\xf5\x50\x70\xef\x29\x74\xaa\x45\x6e\xf6\xaa\x13\xdc\x4e\xf1\xf0\xb0\xd9\x78\x72\xa7\x6b\xab\xb6\x10\x52\xfd\xe2\x15\xd2\xd1\x83\x1c\x2b\x42\x5c\x56\xf0\xb6\xe1\xe4\x66\x1e\xdf\xd4\xac\x22\x65\x57\x4a\xcc\x59\xb5\xa3\x83\x19\x1c\x84\x32\x44\xb6\xc9\xb0\x8d\x5b\x80\x54\x81\x69\x0a\x14\x8e\x96\x95\xd6\xde\x7a\x13\x8e\x8b\x34\x7b\x80\x4c\xad\x71\x0f\x5a\x90\x60\x23\xd5\x58\x49\x5b\x23\xbe\x73\x2b\x78\xd3\x42\x80\x0c\x29\xae\x86\x34\xb8\xf1\xec\xdf\x54\x6b\x70\x8d\xda\x6a\x54\xd6\x16\x83\x0c\x3a\x8e\xc3\x6b\x45\x57\x51\x01\xc2\xdd\x67\x50\xf4\x43\xed\x85\x52\xdd\x0f\x57\xed\xb0\xfd\x31\x4b\xf1\x46\x0d\x6b\x5c\x31\xfd\xa8\x84\x94\xfa\x07\xa7\xdd\x4e\x58\x40\x06\x29\xef\xd8\xa2\xe4\x97\xcb\xb6\x46\x74\xa3\x27\xb7\xd8\x9b\xfc\x5c\x8d\xb0\xd0\xb7\xca\xaf\x8b\x98\x71\x6b\xa3\xb6\x22\x2e\xae\x76\xbf\xd5\xba\xb0\x2a\xc5\xf9\xe5\x75\x70\x0b\x9f\x82\x5a\x97\x6c\xf6\xc5\xcb\xbe\x72\xd9\x97\x30\xa4\xf1\xb1\x06\xd4\xdb\xdc\xd3\xf9\x80\x2f\x96\x71\x1e\x16\x7c\x06\xbb\xf7\xf9\x28\x60\xed\x0c\x95\x6a\xbe\x42\xa8\xc3\x97\x28\x87\x12\xe1\x41\xf4\x5d\xd8\x71\x47\x42\x19\x5f\xb1\xb9\xad\xd4\x17\xdb\xe8\x97\xa5\x1f\xa3\x5e\x5f\x21\x21\xd1\xaf\xc5\x3d\x50\x30\x7f\xb3\x4b\x61\x1e\x5c\x0f\x3b\x23\xb8\x0b\xae\x87\xdd\x91\xb1\xb4\x46\xcd\xe8\x42\x96\x0a\x2a\xa0\xd4\x77\x32\xf4\x26\x81\x9f\x3e\x8a\xb6\xa0\x51\xb6\x90\x92\xe6\x4a\x61\x37\x47\xe3\xaa\xa3\xfc\x69\xef\x49\x28\xec\xae\x30\x1c\x95\x70\x55\x29\x06\x87\x07\xe6\xe8\xec\x92\x07\xdf\xb3\xf0\x2e\x4a\x66\xa2\x1c\xfc\xa2\x8b\x59\x05\x53\x6f\xa2\xd9\xf7\x93\x73\x31\x8d\xa6\x5e\x73\x4c\xd7\x77\x5e\xb3\x23\xb6\x0e\x66\x79\x11\xf0\x56\xb0\xd0\xf9\xac\x4c\x15\x90\x78\x94\x06\x0d\x57\x30\x86\xc5\xe8\x10\x9d\xa4\x07\x69\xff\x39\x2b\x0f\x48\x7c\x85\x87\x80\xb3\xc3\x84\x90\x62\x06\x86\x15\x1e\xc9\x7f\x40\xe6\xa3\x64\x26\x3b\x64\x3d\xa8\x5c\xaa\x99\x61\x38\xa2\x30\x09\xa6\x9c\x19\x16\xc1\x94\x33\xc3\xb5\x91\x19\x74\x38\xa3\xe8\x98\xb8\x23\x59\x33\xc1\x19\x85\xb9\x92\x0b\x10\xe2\xe9\xb0\x47\x41\x87\xa5\x7f\x1c\x0a\xc3\xc9\x48\x8c\xd3\x83\xa1\xcd\x79\x72\x56\x29\x0a\xae\xaa\x1f\x56\x87\x56\xe6\x91\xf1\x9e\xa9\x3a\xd1\x52\x48\x2b\x4e\x84\x1d\xfd\x2e\xe1\x87\x35\xa1\xd5\x24\x4e\xac\x49\x9b\x59\x93\x36\x72\x27\x2d\x9f\xcf\xe3\xab\x93\x45\x9d\xfc\x75\x38\x52\xd2\xc9\x3b\x8f\x51\x18\x6e\x1b\x68\xac\x6f\xd9\x83\x7f\xad\x2a\x0b\x72\x3c\xf9\x0c\x93\x9e\x23\x5e\xbc\xe8\x80\xac\x91\x5f\x80\xac\x8f\x9f\xc8\xd0\xa5\x9f\x81\xa9\x8b\x1f\x95\x68\x7b\x4e\x41\x53\x7c\x12\x74\xad\xf1\x09\x79\x5f\xe4\x23\x0a\x83\x9d\x1d\xa1\x36\xb6\x2d\x74\xc0\x4e\x2d\x3a\x60\xc7\x46\x07\xec\x8c\x7c\xbc\x36\xfe\x45\x64\xc1\x75\x09\xc9\x76\xde\x9e\x95\xa8\x37\x92\x7e\xad\x21\xe3\x67\x47\x39\x50\x91\x99\x49\x19\x21\x19\xa4\xfc\x00\x26\x26\x99\x65\xf0\x94\xf6\xc3\xcd\x46\x67\xf2\x53\x58\x06\x45\x7b\x1a\xde\xaa\xc1\xa8\x4a\xfe\x11\x97\xc1\xb8\x80\x47\xe5\x20\xbe\x63\x10\xf2\xa0\x79\x4b\x87\x82\x66\x17\x21\x4c\xd6\xb6\xa3\x77\x2b\x8b\x67\xa5\x94\x4b\x58\x0c\x53\x98\xc0\x22\x18\x0b\xdb\xf9\x95\xe6\x81\xeb\x60\xd1\x5f\xf0\x43\xe7\xab\x74\x89\xbe\x03\x5e\xc7\x11\x4b\x8a\x4f\x7c\x06\x50\xf5\x62\xa5\x8d\x94\x3b\xca\xf0\x15\xed\x5d\x11\x29\x23\xdf\x6c\xf0\x9e\xd0\x1e\x63\xc6\xaf\x84\xd8\xd1\xcb\xcd\xa6\x69\xfd\xd4\x64\x6d\xac\x32\xcb\x69\x6c\x23\x64\x5c\xb7\xb1\xa0\xa7\x3d\xbe\x9a\x38\xdf\x45\xc1\x4f\x7b\xc2\x01\xf2\x5a\xc8\xf9\x34\x95\xbe\x0e\xa1\x6f\x3d\xb8\x0b\xe6\xaa\x30\x18\xe8\xf0\xe5\x89\x53\xd8\xdd\xd1\x75\x9b\x37\xa3\x52\xd6\xe0\xe8\xba\x5d\xa4\x0b\x5a\xf2\x46\x51\x6f\x22\x7e\xcb\xff\xcc\x0a\xcf\xeb\xfd\x13\x23\x8b\xf4\x5e\x55\x15\x7a\xf4\x89\xf5\x4d\x54\x13\x7a\x94\x3e\x7d\x46\xe9\x7f\xf5\x82\x20\xe8\x10\xe2\x4d\x9e\x04\x5d\xab\xe6\x17\x81\x24\x34\x0f\x57\x02\x03\x27\xbc\xca\x3d\x8f\x8f\x80\xa8\xa9\x44\x2a\xa3\x47\x31\x85\x98\x3e\xe9\xc1\xcd\x63\x39\xde\xca\x81\xa1\x47\x53\x0a\x53\xfa\xa4\x77\x62\x57\x5c\xd7\xf0\xc2\xa9\xef\x0d\xaf\x68\x69\x7a\x51\x9e\xc8\xae\xac\x25\x57\x87\xed\x53\xe8\xbd\xb7\x56\x1c\x1d\xe9\xd5\x21\xd6\xab\xc3\xd4\x5e\x1d\x26\x30\xbe\xf2\x13\x7e\x0d\xd2\xab\xa3\xbd\x8d\xda\x6b\x40\x6d\xb9\x1e\x85\xab\xad\xa5\xfe\xb8\x43\xa9\xff\x97\x6a\xc1\xd7\xa2\x10\xee\x47\x14\x2e\xf6\xac\x46\x03\x7e\x68\xd7\xd4\x9b\x9d\x12\xf7\x97\xc1\x88\xc2\xcd\xee\xc5\x5c\x02\x9d\xef\xd8\x11\x40\x4c\x52\x96\x4c\xec\x29\xaa\x9b\x46\x35\xb6\xeb\x82\x65\x79\x94\x3b\xed\xde\xea\x03\xf4\xcf\xe8\x3d\xda\xa1\x37\xca\x95\x15\x3d\xa9\xe4\xaf\xdd\x38\x1a\x4c\x2f\xbb\x7d\xe3\x42\xca\x47\xf9\xbd\x59\xce\x0b\xb9\xb5\xe9\xa7\x9d\x65\xce\xde\xcd\x17\x2c\x43\x78\x87\xb7\x78\x11\x73\x5c\xc3\xea\x77\x41\xd5\x9f\x17\xe2\xc9\xdb\x1f\x40\xce\xd7\x8f\x1b\x1c\x94\x0b\x18\xc0\xcd\xee\x33\xd2\xfe\xb7\xa2\xa5\xa5\x50\x3f\x16\xaf\x43\xab\x12\xe2\x6d\x6a\xaf\xc1\x3a\xcc\x8b\x3b\x2a\xbf\x6e\x36\x3b\x25\x4c\x04\xc8\xe1\x67\x75\xee\x99\xec\x7f\xde\xdc\x36\xcd\x42\xd0\x27\x96\x9d\xdd\xf1\x5d\x43\xe9\xa4\xd4\x59\xa0\x49\x73\x75\x85\x16\x90\xc9\x25\x55\x83\x08\x68\x50\x01\x4b\x11\xdc\xd2\x07\x16\x6c\x6d\xdb\x30\xd7\x14\xa2\x92\x69\x75\x14\x95\xba\xfd\x0c\x2c\xb4\x8a\x7c\x1c\xc6\x7c\x90\x5d\x5b\x77\xdc\xc6\xcc\x23\x27\x3f\x0d\xb4\xe6\xb9\x85\xb8\xe0\xea\x83\xb3\x30\x8f\x92\x19\xff\xc7\xde\x25\x17\xcb\x82\xaa\xc2\xe5\x31\xdb\x5f\x6b\xe2\xa7\x4a\xa3\xbc\xd5\xaa\xa7\xe5\xea\x96\xb3\x8c\x17\xdc\xa2\xa5\xb8\x72\xd9\x76\xd8\x15\x23\x2b\x17\x30\xc3\xc5\xd2\x70\x3b\xf2\x05\x7e\xaa\xea\x20\x56\x94\x6e\xec\x7b\x83\xdd\xd3\x4e\x2f\xad\xa2\xe2\xff\xd4\x49\xf6\x55\xa4\xde\x56\xd1\xde\x65\x9d\xb2\xe5\x54\x6a\xf4\x5e\x74\x3a\xbc\xd0\xc3\xca\x84\x56\xa3\x87\xe9\x35\x1e\x41\x05\x55\x40\xc1\x04\x0a\x9b\xfa\x2d\x3e\xe9\xd0\x16\x68\x3e\xea\x1a\xeb\xf8\x5a\x86\x32\x0c\x57\xb1\xdc\x47\xb1\xce\x96\xdd\xfe\xb6\xad\x7d\xa7\x92\x4f\xb6\x79\x77\xf5\xba\xd4\x18\xf8\x6f\xd7\xbd\xfd\x53\x8f\xb6\xf6\xd7\x59\xaa\x8f\x4c\xe3\x68\xe1\x37\xbb\x60\x4c\xf6\xf8\xca\x2d\x2d\xa3\x4a\xea\xa5\xed\x39\x9b\xa7\xde\x19\xa5\xf0\xe1\x30\x3b\x78\x01\xc7\xcc\x0f\xed\xc2\x36\xe4\x13\x9b\x0a\xeb\x77\xec\x70\x69\xb1\x36\x31\x47\xc1\x98\x90\x58\x58\xb8\x2b\x69\xdc\xdc\xba\xa8\xdd\x39\x17\xb5\x07\x47\x02\x34\x33\x67\xcf\x07\x63\x6a\xe6\x58\xc9\x4d\x6a\x6d\xe3\xe4\x8f\xb2\x2e\x75\x06\xee\x32\x85\xd5\x19\xb5\x06\x72\x96\x31\x8f\xb6\x93\x13\x80\xb7\xc2\x3e\xae\xde\xf0\xee\x23\x8a\x1f\x5e\xc5\xcb\x0c\xce\x30\xf8\x3a\x8e\xc6\xb7\xf0\x01\xc3\x68\x99\x86\xb0\xcf\x32\xac\x24\x07\xe7\xf8\xe9\x57\xf6\x70\x9a\xde\x27\x08\x00\x8d\xb1\x2f\x0b\xf8\x8e\xe1\x73\x7e\x92\xc6\xdf\xde\x9b\x38\x9f\xd6\x0c\x5e\x99\x0f\x5f\x16\x70\x8a\x31\x6c\xda\x59\x32\x81\xdf\x4c\xf4\x3c\xbd\x63\xf0\xa7\x89\x0f\xf8\xd6\x05\x5f\xf0\xc3\x69\x16\xce\x04\xb5\x37\x7c\x47\x0f\xaf\x70\x61\x87\xdf\xcd\x18\xbc\xe9\x77\xfc\x37\xf0\x8f\x80\xb5\xad\x6e\x43\xa9\x12\x7c\x53\xd6\x81\xff\x36\xc9\xbf\x99\x21\xfb\x06\x5f\xb7\xd1\x00\x14\x94\xb4\xe6\x22\x7e\x07\xb7\x78\x48\xc9\xf4\xf6\xdb\x07\xee\xb3\x0b\xd4\x74\xb6\x47\x5b\x99\x02\xba\xb1\x1a\xc3\x40\x31\x8e\x18\xc0\x51\xc4\x10\x8e\x9b\x09\x29\x35\x4c\xfe\x41\x8e\x9f\x0a\x7f\x59\x60\x48\x8f\x9d\x89\x61\x5f\x9b\xa8\x4c\xa8\x46\xcd\x44\xf8\x98\x99\x18\x8e\x18\x46\xf5\x78\xb5\xa0\xa5\x46\xab\x05\xad\xea\xd0\x28\xe3\xc5\x11\x85\xb7\x55\xc9\x00\x9f\xd2\xbf\x54\xe5\x07\xbf\x56\xc5\x60\x97\xc1\xaf\xc3\xce\x08\xfe\x08\x7e\x1d\x76\x47\x27\x2b\x42\x2e\x09\xf9\x83\xff\x82\xf9\xff\xa3\x06\x76\x21\x00\x08\x19\x0b\xfe\xd3\x8e\x72\x87\xb3\x0b\xfe\x4d\x74\xa4\xfa\x94\xf0\x4f\x19\x9b\x9a\x87\xe7\x8c\xd9\xeb\xcc\xf6\x25\xb6\xf6\x02\xdc\x1b\xb9\x77\xdb\x1b\x2d\xc5\x72\x91\x4f\xcd\xb3\x72\xe1\x65\x14\x9a\x09\x21\xbf\x98\x03\xba\x0e\x0e\xd9\x08\x7f\xee\x94\x94\x96\xf5\x87\xc1\xa4\xee\x30\xe8\x28\xcb\x5a\x3f\xff\xe1\x35\x3b\x14\xde\x6a\x6d\x10\x4c\xe7\x49\x41\xda\x48\x2a\x92\xd4\x88\x66\x2e\x09\x79\x4d\x48\x73\x60\x55\x4d\x5d\xbb\x3d\x71\x7a\x87\xd7\x70\x29\x45\x32\x11\x0b\x32\xe6\x09\x73\xd5\x16\x7c\xa7\x90\xaa\x0f\xe9\xa2\x05\x5f\x28\x84\x76\xfc\x15\x85\xdc\x8e\x3b\x87\xc2\x4b\xf1\x4a\xc0\xf8\xa9\xef\x54\x48\x8d\x3d\x0a\xef\x09\x79\x2f\x9f\xda\x97\x4e\x59\x7f\x52\x18\xdb\xb4\x4e\x29\xc4\x76\xfc\x37\x0a\xd3\x7d\x65\x79\x05\xf3\x18\x05\x64\x26\x0a\x1f\x09\xf9\x88\xc5\x00\xe7\xba\x09\x0b\xa6\xee\x89\x55\x77\xe3\x66\xe3\xbd\x35\x0a\x39\x2a\xf4\x39\xcc\x66\xac\xe0\x0c\xe8\x31\x4a\x88\x27\xfa\xfe\x67\x42\x7e\xf6\x18\xdf\xdc\x08\xf9\x20\x1b\xb1\xd8\x76\x8b\x11\xe4\xed\x69\x94\x4c\x4e\x2f\xce\x3f\xa4\x13\x66\xc8\xeb\x9b\xc1\x8c\x10\xb5\x9a\x09\x17\x03\x4d\xaf\xf5\xb3\xbc\xfc\x84\x33\xbe\x56\xf0\xae\x43\x37\x3c\x25\x5c\x33\x57\x68\x37\xdf\x6a\x0b\x1f\xdd\x6b\x66\x38\xf0\xd2\xe1\xc7\x56\x43\x50\xbe\x65\x0f\x84\x78\x26\x9d\xf0\x3c\x67\xee\x54\x86\x39\x78\xff\x3a\x0a\x18\x74\x6d\xff\x18\x66\x85\x68\x3b\x05\x5e\x5f\xde\x51\x42\x9e\x61\x77\x1d\x21\x0b\x74\x24\xe8\x94\x5e\xc3\x0e\xe7\x84\x9c\x0b\xb7\xd5\x8f\x52\x3a\xc3\x23\x98\xa1\xd6\x5c\xa1\xc3\xbd\x2d\x92\x67\x84\x9c\xf1\x51\xe2\xa3\x73\x57\xd7\x59\x4e\x9d\x7e\x71\xfa\xad\xc9\xcc\x03\x07\x92\x65\x93\x4a\xa7\x75\xff\x4a\xa7\xa9\xe9\x26\xbb\xed\x1d\x21\xef\x78\xa3\xcf\x78\x97\xfc\x50\x0f\xd6\xd6\xef\x4c\xb2\xe2\x03\x0b\x66\x27\x8a\xb1\xf8\x31\x87\x11\xf2\x15\xd9\x88\x10\xef\x81\x05\xe8\x54\x8b\x73\xe8\x8c\x05\xeb\xd2\x4d\xd9\xf7\x66\x62\xd3\x0d\xfe\x0d\x33\x73\x20\x0a\x56\xd4\xf7\x5a\xa1\x4b\x6d\xb3\xe1\x89\xb3\x14\x7d\x8d\x0a\x1a\x14\x66\x4c\x62\xb5\xea\x9d\x73\x14\xac\x44\x71\x57\x2c\xb0\x71\x14\x43\x28\x28\xac\xdc\x6f\x09\x83\xb7\x14\xee\xdd\x8f\x57\x0c\x56\x8c\xc2\x80\x55\x37\x91\x0b\x16\x0c\x18\xdf\x46\x6e\x30\xd0\x1d\xed\x14\x4b\xdf\x30\x3e\x71\x2d\x91\xf3\x2d\x0b\x2e\x98\x58\x0d\x9b\xab\x5d\x4a\x98\x0f\xec\x90\x5b\xf5\x5c\xdc\xaa\xef\xe0\x92\x90\xe1\xdc\xb5\xbb\xfe\x84\xd0\x3b\x73\x63\x77\x05\x62\xc7\xf2\xa7\x0c\xe4\xde\xef\x9f\x81\xdc\xf1\xfd\x09\xff\x28\xf7\x7a\x7f\x2e\x23\x5f\x16\xfe\x1d\x0f\xea\xdd\xde\x8f\x74\x14\xb7\x6a\x3f\xd7\xf1\x2f\x0b\x3f\xe4\x11\xbd\x8d\xfb\x29\x8f\xaa\xfd\xdf\x1f\xeb\x18\x3f\x00\xf8\xb1\x8e\xe2\x09\xc0\x5f\x32\x14\x0c\xdc\x33\x50\x7b\xbf\xbf\xea\x1f\x75\xfd\xdf\x4b\x98\x31\xf8\x4a\xe1\x1a\x6e\xd9\x16\x44\xeb\x67\xb7\x93\x38\x85\x5f\x40\x9c\xb9\xfc\x49\x09\xff\xa0\x02\x74\xb5\xaa\x87\x3a\xa9\xd3\x43\x15\x78\x21\x47\xbb\xd5\x51\x77\xc0\xb3\x43\x1d\x8c\xa6\xd0\xa7\xfe\x1c\x2e\xde\x46\xb3\x6b\xb4\x25\xad\x31\xa7\xdb\xbe\xe8\x3a\xbf\x4a\x53\x0c\x2d\x6c\x40\x90\x6c\x81\x40\xe4\xde\x9a\x3b\x5a\x53\xb6\x03\xe3\x65\x96\x73\x4a\x52\xde\xd1\x82\x65\xce\xb2\x01\x8b\xd9\xb8\x50\x52\x8f\x3b\x96\x15\xd1\x38\x8c\x25\xb0\xcd\x3c\x9a\x4c\xf0\xac\x77\x34\x4f\xbf\x1f\x89\xb7\xe1\x30\x19\xb3\x96\xb6\xdc\x39\xba\xc7\xd6\xd4\xfd\x56\x6f\x51\x5e\xb5\xa0\x69\x11\xdf\x47\xea\xc8\xa0\x47\x51\x92\x58\xc6\x90\x03\x7c\x53\xab\xb7\xe3\xa9\x95\xda\xa8\x26\x2a\xdc\x85\xf2\x40\x64\x52\xdb\xe2\xa7\x62\x0d\x54\x6e\x99\x25\xbc\x0a\x73\xbc\x4e\x7e\xa0\x25\x3c\xe6\xb8\x73\xaf\x9b\xf9\xd4\x76\x33\x2f\x5d\x88\xbe\xb4\xf5\x5f\x53\xc7\xfd\x26\xfa\x26\x3c\xe7\x37\xd8\x1a\x5a\x42\x04\xcc\x08\x11\x81\x42\xbc\x13\xe8\x74\x09\x5d\xbb\x97\x92\x84\x3a\x58\x17\xbc\xe6\x78\x52\x63\x50\x8c\x68\x59\xc2\x8b\x47\x7c\x9f\x4a\x95\x27\xf1\x40\xae\x14\x35\x79\x53\xbf\x7d\x63\xf9\x79\x3a\x59\x72\xbe\x91\xaf\xfa\xfc\x8c\x79\x52\xa8\xad\xe1\x50\x67\x59\xfd\x3a\xa7\xe9\x45\xbf\xf0\xa8\x2f\x44\x80\x8e\xbf\x2e\x4d\xbe\x84\x97\xdb\x2e\x80\x4d\xba\xc4\xeb\x3d\x7b\x41\x4b\x78\xf9\x88\x7b\x5d\x73\x56\x17\x63\x50\x57\x19\xd6\x67\x5e\x41\x7d\x26\x3c\xeb\x2a\x31\x2b\x2d\xf7\x0e\x7a\x86\x8f\xbf\xc7\xdb\xdd\x8b\x8c\x70\x62\xbb\x9e\xdf\xd2\x24\x4f\x82\x75\x59\xd1\x8d\xb5\xbd\xc3\x19\x75\x5c\x16\x0c\x47\x50\x04\x9d\xbd\x3a\xb9\x99\xab\x93\x1b\x4d\x95\xdf\x84\x54\x35\x30\xc3\x67\xad\x1c\x7d\xd1\xb4\x84\xa3\xfe\x96\x70\xd3\x8b\x31\xca\x84\x72\x66\x26\x9e\x48\x1a\x5b\x6a\xd9\x19\x25\x24\x93\xe5\x0a\xd2\x61\x10\xd9\x4e\xd0\x32\x7a\x12\xe2\xc1\x4b\xe8\x78\x96\x8a\x4c\x4b\xa8\x32\x8b\x52\x54\xa3\x72\xd4\x80\xa4\xd2\x5f\x7f\x06\x39\xa7\x3e\xcc\x47\x9a\x40\x4e\x8d\xe3\x48\xe9\x6a\xb0\xd1\xa2\xa5\x1e\xfc\xbe\x17\x69\x26\x8c\x6c\x5f\x6f\xd4\xd7\x37\x79\x2f\xab\xf1\x7e\x1d\x95\x4a\xc1\x98\xef\xd4\x14\x55\x8e\xb4\x83\x47\xd4\xa2\x86\xe3\xbf\x6d\x21\xe8\x1d\x3f\xe3\x4b\x81\x87\x4b\x42\xe2\x75\x9f\x75\xa8\xb3\x24\x54\x95\xba\x70\x7f\xa3\x9b\x4d\xd4\x0e\xcb\xb2\x1c\xd1\x93\xff\xf7\xf4\xe9\xff\x6f\x08\x9f\x78\x12\x15\xf0\xcb\xa7\xf7\x41\xa7\xfd\xaf\xe9\xb8\x73\x35\xe9\xf5\xda\xe3\xeb\x65\x72\xdb\xbe\xc9\xdb\xf3\x70\xf1\xbf\x01\x00\x00\xff\xff\xaa\x0c\x42\xaa\x00\x55\x01\x00") -// FileIdentifierStaticJs0Ce7dce23ChunkJsLICENSETxt is "identifier/static/js/0.ce7dce23.chunk.js.LICENSE.txt" -var FileIdentifierStaticJs0Ce7dce23ChunkJsLICENSETxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\x8f\xc1\x6a\xeb\x30\x10\x45\xf7\xfa\x8a\xfb\x76\xb6\x78\xf5\x24\xa1\x50\xc8\xaa\x25\x2b\x97\x9a\x2e\x6c\xe8\xda\x96\x06\x5b\xae\x23\x19\xcd\xa4\xa1\x7f\x5f\x70\x93\x6e\x2f\xe7\xc0\xb9\x64\xff\x19\xe0\x94\xd6\xef\x1c\xc6\x49\x51\xb8\x12\x87\xdd\xfe\x09\xaf\xec\xf1\xd1\xab\xa4\x58\x19\xe0\x2d\x38\x8e\xc2\x1e\x97\xe8\x39\x43\x27\x46\x53\x77\xf7\x19\x45\x53\x77\xe5\x7f\x08\xb3\x01\x26\xd5\xf5\x48\x34\xb3\xbf\xfe\xfa\x63\xd0\xe9\x32\x54\x21\x91\x5b\x7a\x91\xd8\x9f\x59\x8c\x25\x63\xc8\x5a\x03\x8b\x17\x0c\xac\xca\x19\xfd\x20\x9a\x7b\xa7\x21\x45\xa4\x2f\xce\x38\xb5\x6d\x65\xb0\x41\xcf\xee\xaf\xf1\x7d\xe1\x11\xb5\xa4\xc8\x11\x45\xbb\xa4\x21\x79\xf9\x4c\xa1\x04\xdd\xd7\xc3\x6e\xff\xf8\xb0\x66\x16\x8e\xba\xc9\x57\x1e\x24\x28\x6f\x6d\x72\x24\xba\x25\xb9\x74\x26\x27\x12\xe2\x2c\x34\x8b\x6c\xe8\x72\xfb\xd4\xd4\x9d\x81\x25\xf3\x13\x00\x00\xff\xff\x44\x92\xe0\x3f\x22\x01\x00\x00") +// FileIdentifierStaticJs07fc0bd22ChunkJsLICENSETxt is "identifier/static/js/0.7fc0bd22.chunk.js.LICENSE.txt" +var FileIdentifierStaticJs07fc0bd22ChunkJsLICENSETxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\x8f\xc1\x6a\xeb\x30\x10\x45\xf7\xfa\x8a\xfb\x76\xb6\x78\xf5\x24\xa1\x50\xc8\xaa\x25\x2b\x97\x9a\x2e\x6c\xe8\xda\x96\x06\x5b\xae\x23\x19\xcd\xa4\xa1\x7f\x5f\x70\x93\x6e\x2f\xe7\xc0\xb9\x64\xff\x19\xe0\x94\xd6\xef\x1c\xc6\x49\x51\xb8\x12\x87\xdd\xfe\x09\xaf\xec\xf1\xd1\xab\xa4\x58\x19\xe0\x2d\x38\x8e\xc2\x1e\x97\xe8\x39\x43\x27\x46\x53\x77\xf7\x19\x45\x53\x77\xe5\x7f\x08\xb3\x01\x26\xd5\xf5\x48\x34\xb3\xbf\xfe\xfa\x63\xd0\xe9\x32\x54\x21\x91\x5b\x7a\x91\xd8\x9f\x59\x8c\x25\x63\xc8\x5a\x03\x8b\x17\x0c\xac\xca\x19\xfd\x20\x9a\x7b\xa7\x21\x45\xa4\x2f\xce\x38\xb5\x6d\x65\xb0\x41\xcf\xee\xaf\xf1\x7d\xe1\x11\xb5\xa4\xc8\x11\x45\xbb\xa4\x21\x79\xf9\x4c\xa1\x04\xdd\xd7\xc3\x6e\xff\xf8\xb0\x66\x16\x8e\xba\xc9\x57\x1e\x24\x28\x6f\x6d\x72\x24\xba\x25\xb9\x74\x26\x27\x12\xe2\x2c\x34\x8b\x6c\xe8\x72\xfb\xd4\xd4\x9d\x81\x25\xf3\x13\x00\x00\xff\xff\x44\x92\xe0\x3f\x22\x01\x00\x00") -// FileIdentifierStaticJs0Ce7dce23ChunkJsMap is "identifier/static/js/0.ce7dce23.chunk.js.map" -var FileIdentifierStaticJs0Ce7dce23ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xfd\x6d\x77\xa2\xca\xf6\x37\x0a\x7f\x97\x8c\xfd\xae\x59\x3b\xcf\x9d\xce\xff\x7e\x73\x17\x05\x12\x62\x8c\x1a\x35\xc6\x5c\xe3\x1a\x6b\x10\x45\x45\x11\x0c\xa0\x31\x39\x5f\xfe\x8c\x9a\xbf\x59\x50\x18\xd3\xab\x7b\xed\xb5\xcf\x39\xe3\x7a\x91\x08\x45\x51\x0f\xb3\x66\xcd\xe7\x9a\xfc\x5f\x47\xdb\x30\xcb\xa3\x34\x39\xfa\x9f\x73\xeb\x28\x4f\x37\xd9\x38\xcc\x8f\xfe\xe7\x7f\x1d\xfd\xfb\xdf\xc7\xff\xfe\xf7\x71\x92\x4e\xc2\x3f\x57\xe9\x64\x13\x87\xf9\xf1\x38\xce\x77\xc7\x93\x28\x2f\xe8\xea\xdf\xab\x7f\x2f\xf2\x23\xeb\x50\xc5\xff\xff\x2a\x28\xc2\x2c\x0a\xe2\x3f\x36\xd1\x71\x5e\xbc\xab\xb2\x7a\x85\x97\xe0\x25\x8c\x8f\xb3\x4d\x52\x44\xab\xf0\x78\x1e\xc6\xeb\x30\xcb\x8f\xc3\x7c\x75\x9c\xbe\x2c\xc2\x71\x31\x8c\x8a\x79\xba\x29\x3a\x59\xba\x0e\xb3\x22\x0a\xf3\xff\x27\xfb\xba\x4b\xd3\x3c\xfc\xb2\xc3\x45\xfe\xeb\x1d\x84\xbb\x22\x4c\x26\x5f\x0f\x3e\xca\xff\x88\x92\x3f\x5e\xb2\xf4\x2d\x0f\x33\x80\x16\x8f\xfe\x91\xde\xc7\x59\x18\x14\xa1\x8c\x83\xfc\xeb\x11\xfc\x4e\x7b\x51\x32\x0f\xb3\xa8\xf8\x07\xe1\x13\xe4\x79\x98\x15\xfd\x79\x94\xfb\x49\x54\x44\x41\x1c\x7d\x84\x93\x9f\xb6\x4c\x30\x5a\xe4\xf9\xbf\xc3\xfc\x6b\xfc\xfb\x9d\x21\xfc\x2d\x1c\x38\x84\x74\xaa\xb1\x55\x98\xcd\x00\xf0\x30\xaf\xdd\xfc\x7e\x4b\xc1\x32\xec\xe1\x76\xb5\x89\x8b\xa8\x19\xbe\xf7\x8a\x34\xfb\xfd\x21\x01\x09\xbc\x30\x09\x33\x8d\x0c\xf7\xc1\x2a\xfc\xaa\xfc\x67\x30\xfd\x63\x1d\x6f\x66\x51\xf2\x47\xb6\x89\xc3\x3f\xb6\x41\xbc\x09\xff\x98\x6e\x92\x71\x11\xa5\x49\xb9\x2e\x3f\xa9\xf3\x57\x4b\xa6\x5f\x9d\xc5\xe9\x4b\x10\xff\x63\x7b\xec\x73\xcb\xfb\x63\x45\xf1\xaf\x0e\x2f\x09\xf3\x22\x9c\xfc\x37\x86\xc7\x2d\xef\x0f\x0f\xc5\x3f\x1d\xde\xfc\x7d\x3d\x0f\x93\xa0\x08\xff\xa0\x95\xff\x23\x51\x2b\x1c\x25\x93\x70\xf7\x2b\xfd\x8e\x83\x55\x18\xff\x31\x0e\xf2\xf0\x53\xdf\xd5\xa3\x5f\x05\xcf\x24\x9c\x06\x9b\xb8\xf8\x63\x93\x44\xc5\xa7\xe6\xcc\x87\x3f\x6d\x70\x9c\xe7\x7f\x6c\xc3\x64\x92\x66\xbf\x4e\x4b\xb2\x2c\x78\xbf\x8b\x96\x61\x3f\x15\xea\xf2\x9f\x6c\xbb\x48\x65\x9a\xe4\x9b\x55\xf0\x12\x87\xff\x78\xe3\x34\x70\x26\x40\x37\x69\xfc\x13\x62\xf1\x37\x1a\x8f\x8a\x30\x53\xa3\xfe\x2f\x00\x65\x93\xe4\x9b\xf5\x3a\xcd\x8a\x70\xe2\xff\xf7\x7a\x49\xd2\x44\xb7\xde\x5b\x67\x61\xf0\x35\x7b\x30\x1a\x87\x90\x52\xde\xff\x2a\xee\xa2\xf6\x1f\xeb\x2c\x9c\x46\x3b\xcd\x90\xbf\x7e\xfe\xab\xcd\xae\xb3\x74\x9d\xff\x91\xa7\xd9\xe7\x0d\x51\x3d\xfa\x69\x63\x5f\x11\xf7\x45\x9e\x77\xb2\x30\x0f\x8b\xea\xea\xb7\xdb\x00\x97\xe9\x64\xe9\x36\x9a\x84\xd9\xde\xed\x7f\xc2\xb7\x88\xfe\xc8\x74\x93\x14\x7f\xa3\x9d\x59\x58\xa0\x19\xa9\xf8\x54\x9a\x7d\x2a\xf8\xcf\x5b\x4c\xd2\x74\xdd\x9f\x87\x3f\xe1\x79\xbf\xc2\x9c\xcb\xcb\xbf\x33\x20\xea\x5e\x09\x1d\x79\xfd\xee\xb7\xdb\x7a\x8b\x8a\x39\x8f\xa8\xba\xfc\xb5\x56\xc6\x69\x16\x52\x1b\xf9\x2f\xbf\x9f\x85\xc1\xb8\xf8\x23\x4a\x8a\xf8\x38\x8e\x5e\x8e\xf3\x6c\x7c\x3c\x4e\x57\xeb\x34\x09\x93\x22\x67\xc9\xa2\x91\x66\xab\xa0\x28\xc2\x89\xd4\x4f\x7e\xb5\xb9\x9f\xf3\xad\x60\x17\xa5\x39\xd5\xd3\x54\xe2\x25\x4a\xbe\x26\x0a\x07\xaa\x6f\xa2\x78\x32\x78\xb8\xfb\x85\x57\xc6\x41\x32\x0e\xe3\xe3\x28\x97\x74\xf1\x0b\x6f\x30\x83\xfb\x1a\x74\x55\xd5\x60\x12\xac\x0b\x35\xa0\xdd\xfc\x6b\x64\x36\xc6\xa2\x96\x09\xa0\x75\xb3\xec\x27\xf8\xbf\xf7\x0a\xa4\xd0\x34\x99\x46\xb3\x5f\x9f\xf1\x5f\xcc\xf7\xa7\xf8\xc3\x20\xf8\x8d\x9d\x55\xb6\xb0\x29\xa2\x38\x3f\xde\xe4\xa1\x9f\x37\xd2\xf1\x26\x7f\x8c\xf2\xe8\xe5\x27\xca\xd0\xe7\x56\xfe\x71\x61\xe1\xef\x77\xf1\x37\xd8\x23\x36\x42\x91\x05\x49\x1e\x29\x89\xf9\x8f\x59\x96\x6e\xd6\xff\x5d\x55\xe6\x3f\xec\xf3\xd7\x74\xc2\x2f\x3a\x51\x0d\xf4\xcb\x42\x4f\x95\xc9\x34\x29\xc2\xdd\xd7\xb4\xa2\x42\x55\x42\x96\x2f\xeb\x15\x51\xf2\xfe\xc7\x5b\x90\x25\x51\x32\x03\xd7\x35\x4b\x7e\xca\x6c\x8d\x2d\xaa\xae\x7e\x75\xa3\x89\xdf\xa9\xec\x2b\xa6\x38\x0e\xd7\x45\x9a\xb5\x82\x24\x98\xfd\x84\x43\xee\xbd\x39\x89\xf2\x75\x50\x8c\xe7\x0f\xe1\xeb\x26\xcc\x7f\x05\x50\xf4\x1a\xc1\x7e\x9a\x66\x2b\x27\x28\x82\xbf\xb5\x2d\xc7\xc1\x3a\x2a\x48\x43\xff\xf2\xf5\x75\x96\x8e\xc3\x3c\x3f\x66\x83\xc6\x6f\x10\xe5\x44\x71\x0b\xd5\xf6\x4d\x18\x4c\xc2\xec\xa7\x9a\xe8\xde\xcc\xf2\xb0\x28\x7e\x42\x23\xf6\x6a\x87\xc9\x5c\xd1\xb6\xdf\x22\xa1\xc4\x31\x1a\x9b\x38\xee\x04\xc5\xfc\x37\x26\x15\xe5\xe2\x25\x4f\xe3\x4d\x11\xfe\x1a\xbb\xd1\xef\x8d\xd3\xd5\x4b\x94\xa8\x97\x7e\x05\x9f\xf4\x5b\xeb\x20\xcb\x19\x7c\xbf\xf3\x5a\x94\x0f\x1e\xee\x7a\xc1\x2a\x6c\x67\xd1\x2c\x4a\x7e\x6b\x98\xe9\xf2\x67\x96\xb9\x2f\xb8\x4a\x3f\x5d\x86\xbf\xd3\x4d\xfe\x73\xa9\xff\x30\xca\x7a\x59\x34\xa1\x7f\xbf\xf9\xde\x5d\x94\x84\x41\xd6\xc9\xd2\x59\xa6\x10\xb9\x7e\xfb\x9b\x6d\xf5\xdf\xd7\xe9\x2c\x0b\xd6\xf3\x77\xe3\xf2\x37\xdb\xb0\x37\x45\x91\x26\xfc\xf3\x9b\xef\x3a\x51\x10\xa7\x33\x22\xa8\x49\x51\xbf\xfb\x5b\x2d\x09\xb2\xe2\xe4\xf5\xbb\xbf\xcb\xe1\xdd\x6d\x98\x14\x32\x88\xe3\x97\x60\xbc\xfc\x2f\x70\xdf\x5f\xd7\xd8\xff\x43\x21\xe2\x97\x14\xf7\xbf\xdf\xc7\xaf\xea\xef\x7f\xbf\x87\x5f\x57\xb0\xff\x43\x51\xe1\xaf\x2c\x61\x3f\x11\x12\x80\x36\x72\x1e\xc5\x93\x56\xb0\x5e\x2b\x0e\xfe\x9f\x8b\x1a\xff\xad\x79\xfe\x9e\x51\xfb\x67\xfb\xde\x0e\xf2\xf0\xf8\x21\x5a\xaf\x7f\x4b\x06\xde\x7b\xbf\x9f\x6e\xc6\xf3\xff\xb4\x91\xea\xf2\xef\x6e\xf8\x46\x9a\x2d\x1f\xc2\xe9\x4f\x80\x9e\x4c\xc2\xec\x8f\x68\x4a\xc4\x1f\x77\xfe\xd7\xd5\xc1\x27\x7e\xae\x2a\xfe\x6c\x44\x79\x58\xfc\x6c\x34\xe3\x38\xc8\xf3\x24\x58\x85\x7f\xaf\x0f\x56\x85\x36\x79\x58\xaa\x41\xff\xdb\x3a\xa2\xf6\x8e\xfe\xe7\x7f\x1d\x15\xe9\x63\x10\x1f\x59\x47\xab\x68\x77\x64\x1d\x2d\x8f\xac\xa3\xf7\x23\xeb\x28\x2f\xb2\x23\xeb\x88\xb6\xf9\x91\x75\x14\xe5\xfa\x2a\x0e\x93\x59\x31\x3f\xb2\x8e\x8a\xd5\xfa\xc8\x3a\x52\xaf\x44\x47\xd6\x51\x90\xcd\x36\x2b\xa5\x70\x1f\x59\x47\x7f\x7e\x21\xfa\x1f\x69\x97\xde\x91\x75\x14\xee\xc6\xf1\x66\x12\x4e\x54\x8f\xa1\x6a\xb7\x08\xb2\x59\x58\x94\x55\x9a\xe1\xbb\xaa\xdf\xa6\x96\x50\x49\xdd\xd3\xf4\xdb\xd3\x23\xeb\x68\x16\x16\xed\xb7\x84\x1b\x7f\xef\xbd\xaf\x5e\xd2\xb8\xea\x01\xf7\xdc\xc8\x3a\x4b\x8b\xb4\x78\x5f\x87\xb8\xa6\x17\xfc\xdc\x4d\x36\x2b\x10\x9a\x23\xeb\x68\x1c\xc4\x0a\x04\x7f\x32\x55\x50\x13\xca\xf3\x68\x96\x1c\x59\x47\xf3\x20\x37\x3a\x52\x4f\xd6\xeb\x98\x46\x3c\x8f\x68\xb6\xaa\xe5\x54\x0d\x09\x9d\xaa\x51\x2a\x0a\x56\xa4\x0a\x80\xe9\xcb\x42\x35\x9f\x26\x79\x91\x6d\xc6\x28\x8b\x72\x1b\x22\xe9\x91\x75\xf4\x16\x25\x93\xf4\xed\xc8\x3a\x9a\xa4\x63\x02\xe0\x91\x75\xa4\x96\xb4\x8f\xe1\xfe\x39\x09\xa7\x51\x12\xd6\x60\x48\x56\x3a\xf5\x46\x98\x8f\xb3\x68\x8d\x36\xc3\xda\x6c\x48\xc1\xde\xe8\xdb\xb7\x2c\x2a\xf8\xb2\xd6\x9c\x9a\xc4\x9f\x86\x5b\xee\xc8\x3a\x92\xb5\x81\x12\xe0\x3a\xdc\x5d\x5e\x04\x45\x34\xd6\x77\x7f\xd6\x54\x2d\xf5\x78\xf3\xa2\x1b\xc9\x37\xeb\x30\xd3\x37\x68\x5f\xbd\xf1\x27\x35\xf7\xe7\x9f\xea\xfa\x20\x55\x52\xaf\x86\xb1\x82\xe4\x43\x38\x0d\xb3\x50\x4b\xc6\x6a\x24\x71\x10\x25\x40\x06\x1e\x62\xc6\x63\x1c\xc7\x69\x02\x9b\x17\x8d\x11\xbf\xab\x40\xe1\x66\x12\xbe\xe9\x07\x0a\xd9\xcb\xc1\x3c\x6c\x18\x16\x63\xb5\x58\xe9\x9a\x44\x87\x23\xeb\x68\x91\xe7\x5c\x2c\xd3\xb5\x02\x4e\x86\x8a\xb0\x8e\xaa\x67\x69\x22\xcd\x16\x16\x69\xa4\x30\x84\x1c\x4b\x47\xd6\xd1\x0b\xbd\x13\xe6\x9b\x58\xad\x62\x91\xca\x3c\x7f\xe4\x47\xd1\x2c\x49\xb3\xd0\x5f\x29\x0d\x3c\xa0\x45\x1e\x1b\x0f\x93\x49\x98\x14\x3d\xda\x70\xb8\xd6\x98\xae\x9b\x01\x64\x42\x9e\xf2\x9f\x3c\xe4\x7f\x95\x95\xa7\x2c\xba\xe4\xc6\x35\x63\x8a\xaa\xaf\x7f\xf5\x40\xa9\xe0\xac\x2c\x51\x57\x41\x1c\xa7\x6f\xee\x6a\x4d\x48\x11\xe6\xe3\x60\x1d\x3e\x84\x33\x1a\x41\x12\x14\xd1\x36\x74\xa9\x4c\xa1\x48\xaf\x57\x56\xa1\xf9\xae\xe3\x80\xb6\xb4\xa2\xc7\x04\x6f\x86\x0e\xef\xb8\x28\xef\x40\x11\xa3\x05\x06\x29\x25\xd4\xc7\x25\x23\x66\x3e\x0f\x69\xf7\x3f\x54\xcf\x37\x09\xb0\x55\xbd\x36\x4d\x41\x36\x92\xf0\x4d\x43\x8d\xd5\x3b\xac\xca\x3c\x48\x66\x61\x09\xcf\x5c\x4f\x24\xca\x9d\xb2\x89\x2c\x5c\xa5\xdb\xb0\xbc\x30\xf6\x40\x1e\x16\xe6\xf6\x2e\x8a\x60\x3c\xa7\x57\xcc\xd9\xfc\xb9\x3f\xbd\x3f\x79\xff\xeb\x85\xe9\x87\x3b\x5a\x37\x42\xe3\x71\xba\xa6\x16\x66\xec\xd1\xf4\x27\x0c\xf6\x22\x3d\xd3\x24\xa4\x9f\x12\xce\xa5\x09\xad\xf2\x6d\xaf\x7d\x4f\x17\xbd\x22\x8b\x92\x19\x10\x53\xb5\x1f\x47\xc9\x12\x83\xc4\xff\x5e\x85\x08\x0c\x7b\x1e\x10\xc8\x27\x90\xd5\x1c\xe8\x3a\xc8\x80\x25\xda\x16\xc6\x5d\xb4\x4b\xc4\x1f\x2b\x51\x26\x0b\x13\x9a\xfd\x43\x38\x73\x77\x6b\xd0\x82\x09\x49\x1c\x41\xcc\x2d\x81\x91\x50\xad\x23\xeb\xe8\x75\x13\x66\x7a\x97\xa0\xb0\x15\x14\xe3\x39\x6d\x3f\xfc\xaa\xd7\xee\xa2\x5c\x55\x0e\x26\x15\x04\x30\x56\x6e\x33\x98\x4c\xf8\x2a\x4d\x18\x51\xf8\x7e\x19\xbe\x97\x63\xc1\xac\x3e\x8f\xa8\x08\xf3\xaf\x67\xf6\xaf\x53\xde\xf9\x65\x33\xcd\xf0\x7d\x9a\x29\xbe\xc7\xaf\xe3\x86\x6b\xe9\xd1\x97\xfd\xd2\xfb\x59\x38\x2d\x5f\x9f\x46\xc9\xa4\x24\x4d\x13\xdd\x18\x28\x00\x5e\x2c\x1b\xd4\x4b\x13\x4e\xd1\x86\x51\x19\x73\x31\x27\xac\xa9\x94\xae\xa4\x31\x2c\xc6\x92\x64\x33\xa2\xb8\xe0\x93\xe3\x34\x19\x07\xd5\x42\xef\xbd\xd2\x48\x93\xa2\x51\xa1\x44\x35\x95\xb3\xf2\x8d\xbd\x2a\x8f\x51\xf8\xa6\xa8\xd2\x83\x49\xeb\xf6\x0a\x7b\xd1\x6a\x1d\x1b\x6d\xe6\x2d\xa2\xaf\x0c\xf5\xc1\x7a\x12\x14\x61\x85\x4d\xb4\x57\xf7\x0b\xb3\xe0\x8d\x06\x4f\xfe\x17\x22\xdb\x14\x89\xc0\xe8\x53\xd5\xa3\x5d\xf5\xaf\x8a\x26\x67\xe1\x2c\xca\xf1\x4a\xbe\x8e\x23\x22\x02\x9b\xc4\x2c\xe5\xc2\x69\x9a\xb9\x01\xad\xdf\x86\xba\x56\xe3\x0b\x8a\xa0\xbc\x6f\x27\xe1\x7e\xf3\x67\x1a\xa5\x4b\x04\x1c\xe8\x57\x93\x70\x57\x68\x72\xf2\x67\xed\x66\x9d\x85\x5b\x7d\x33\x26\xf2\x43\xab\xd7\x63\xfa\x35\x09\xd7\x71\xfa\x4e\x7b\xff\x75\x13\x52\x2d\x10\x94\xf2\x19\x5d\x70\xc9\x7a\x93\xcf\x89\xd6\x2b\x6e\x58\xdf\x10\x39\x2e\xa9\xa5\x49\x18\x87\x45\x8d\xee\xfc\x4b\x6f\xba\x0e\x78\xd3\x03\x01\x84\xb6\x63\xa4\x20\x9c\x10\x42\x2a\x69\x86\x2f\xb3\xaa\x42\x85\x76\x3c\xe6\xb5\xa6\xcf\x7a\x5e\x9b\x9c\x69\x6d\x47\xa3\x6a\x16\x4e\x36\xe3\x92\x4e\xd3\xac\xe9\xc2\xe8\x97\xfc\x7d\x34\xbe\x90\x24\xc3\x3f\x33\xc2\xfd\xaf\x84\x41\x2d\x37\x20\xdc\xa1\x0f\x5a\xda\x0a\x48\xb4\x6c\x70\x8c\x86\x1a\x84\x2a\x86\x78\x4b\x34\xb4\x1e\x28\x42\x45\x0a\x14\xb2\x44\xac\x45\x9e\x53\x29\xdc\xa2\x1a\xd3\xee\x83\x55\xd8\xd1\x25\x25\x85\x5d\x45\x49\x34\x55\x63\x5f\x85\xab\x34\xfa\x20\x34\x4a\x40\x9d\x34\x43\x30\x96\x5a\xaf\x4f\x51\x64\xd1\xcb\xa6\x00\x33\xc0\x4e\x08\xb3\xac\x5c\x26\xbc\x7f\x13\x06\x13\x4d\x23\x0d\x8a\xad\x28\x48\x27\x0b\xb7\xf7\xe9\x24\x2c\x17\x3e\x4a\x93\x4e\x1a\x81\x91\x47\xc9\xe4\x26\x9a\xcd\xc3\x4c\x2f\x4e\x18\x87\x2c\x16\x82\x8e\xf3\x9b\x09\x7e\xca\xfa\x79\xa1\x5f\x50\xd8\xda\x8b\x5e\x62\x4c\x71\x9c\xae\xf8\xf5\x02\xfc\x69\x8e\x81\x11\xc9\x57\x6d\xe5\xdc\x98\x9e\x68\x91\x45\x2b\x6e\x58\xe2\x5d\xee\x71\x16\x16\xf7\x69\x32\xe6\x4b\xa1\xa1\x00\x59\xd0\xc0\xdf\x71\x9a\x14\x41\x94\xd0\x62\xac\x82\x9d\xcf\x72\x0c\x03\x30\x07\xf7\x0b\x13\x4d\xf5\x9d\x74\x65\xf0\xfc\x79\x90\xfb\xd4\x58\x58\x6e\x82\x55\x38\x89\x02\xfa\xa5\xdd\x1c\xc6\x25\x16\xb8\x25\x68\xd4\xdc\xd8\x98\x54\x3e\x2d\x65\xc2\xfa\x60\x13\x9e\x83\x02\x53\x6d\x15\xec\x70\x9a\x66\x9f\x17\xa5\xea\x04\xc3\x26\xb5\xbf\xac\xa5\x3b\xb1\xd3\x34\x0e\x83\xa4\x94\x2e\xea\xb5\xf4\x54\x20\x49\x75\x34\x3f\x8e\x03\xc5\xbe\xee\xeb\x85\x58\xe5\x1a\x4d\x51\x08\x0e\xe9\x10\x0d\x54\xfc\x5e\x37\x1c\x25\x79\x11\x24\x63\x63\x1b\xdc\x12\x69\xd2\xd1\x94\x4a\x12\xf2\x93\x4a\xeb\xc8\xc3\x62\xb3\xae\x43\xaa\xec\x8c\xc6\x5f\x2b\x9a\x07\xb9\xec\xf5\xfa\xed\x56\x0f\x2e\x24\x5a\x8c\x2a\x9a\x4c\x49\xbe\x41\x6e\xdc\x25\xe1\x5b\x75\x53\x3a\x5c\x19\xe6\xd5\x93\x5a\x24\x19\xe9\x60\xe3\x39\x33\x98\x53\xfc\x9c\xb1\x5e\xc1\x0f\xb0\xd7\xd6\x79\xb8\x99\xa4\x46\x6f\xa4\x3e\x39\xa0\xdb\xd3\x84\xf0\x38\xbf\x27\x46\x94\x28\xf8\xe0\x92\x29\x4a\x49\xd0\x74\xc5\xb2\xda\x91\x75\xe4\x11\x29\x92\x1a\x7f\x6b\xa5\x20\x1e\xa1\xc6\xda\x7c\xf3\x02\x05\x39\x0f\xd7\x01\xe9\x7a\xa5\x90\x10\x4c\x26\x3d\x25\xfe\x69\x31\x10\x6b\x4a\x34\x53\x71\xb0\x02\x34\x0a\xad\x12\x70\x93\x49\x1c\xde\x53\x54\xd5\xe1\x01\xa0\x86\x1e\x00\xea\xd4\x44\xbb\xb2\xeb\x45\x9e\xa3\x21\xc6\x8e\xba\x0c\x42\x37\x1d\x7e\x63\x8a\x85\x52\x95\x3b\xd0\x0e\xd0\x56\xed\x46\x13\xae\xaa\xae\x59\xb2\x28\x4b\x59\x1d\x2f\x99\xb6\xe2\x91\xd5\x9d\xaa\x13\x25\xb3\xbb\x70\x4b\x7b\x37\xaa\xc6\xa8\x2f\x0d\xb9\x8e\xf8\xf5\x3a\xcc\xc6\x41\x1e\x76\x82\x42\xf1\x2f\x85\x2a\x79\x75\x5d\xa4\x37\x14\x5f\x76\x97\xbe\x11\x2e\x17\x29\x5d\xc9\x80\xd8\x49\x19\x7b\x46\x18\x7c\x0f\x89\x6b\xce\xbf\xe3\x34\xd9\x86\x59\xc1\x55\xf9\x8e\x46\x52\xbe\x46\x78\xb8\x0a\xe3\xfd\xe6\x4a\x28\xed\x68\x38\xea\x2a\xcc\xc6\x4c\x18\x26\x13\xa9\xdf\x99\x3c\x96\x5b\x2e\xd3\xcb\x52\xa4\x03\x35\x25\x6e\x32\x09\xdf\xda\x64\x14\xd8\x24\x11\x61\xc5\x4b\x9a\x4d\x98\x5a\x66\x40\xce\x75\x30\x99\x80\x7c\xcf\xc3\x68\x36\x2f\xc8\x4e\x30\x21\xd6\xf8\x92\x16\x45\xba\x22\x3b\xcc\x14\x5a\xa6\xea\x21\xe3\x5a\xab\x94\xd9\x66\xba\x29\xe2\x88\x24\x9e\x75\x98\xe5\xeb\x70\xac\xe8\x86\xc2\x40\x70\xb9\x59\x46\x6a\x0a\xec\x14\xa0\x79\x49\x98\xf1\x14\xff\x34\x6f\xd4\x20\x0d\x51\x0f\x77\x25\x84\x26\x86\xe0\xb6\xef\xc4\x26\xc9\x35\x83\xc5\x08\xd7\xa4\x71\x7e\x32\x85\xf3\x38\x48\x1a\xa7\x99\xa5\xe0\xcc\x77\xf4\x9a\xfa\xeb\xbf\xaf\x4b\x43\xc0\x02\x64\x2d\x99\xd0\xdd\x4b\x49\xd1\xa2\x9c\x2c\x8b\x86\x21\xa5\x22\xdc\x8b\x5c\xe6\x2c\xb2\xb6\xd2\x8f\x23\xeb\xa8\x7d\x64\x1d\x0d\xc3\x97\x65\xa4\xc9\x7a\x40\x12\x3d\x11\x13\xda\x67\x64\x0c\x2a\x1d\xe6\x86\x72\x38\x4e\xe3\x34\x13\x93\xc5\x26\x2f\xaa\x85\x55\xe5\x1a\x2a\x80\xef\x3a\xc8\xc7\x01\x5f\xaf\x82\x7c\xc9\x2c\xaa\x9d\x45\x61\x52\x04\xbc\x46\xa5\x13\x54\x5f\x47\xfc\xe0\x2d\x8b\xd4\x86\x69\x81\x3b\x6d\xf2\x30\xc3\xb6\xa3\x09\x87\xc1\x92\x6c\x30\x6d\xe6\x2f\x6a\x99\xef\xd2\x59\x34\x0e\x62\x14\x29\xb1\x4d\xaf\x1d\xc7\x86\x55\xf2\x10\x2e\xf5\xe8\xa0\xaa\x66\x69\x1c\xf7\x12\x02\x0f\xc8\x1a\xab\x9f\x8a\x79\xd0\x43\x3b\x9c\x07\xdb\x48\x5b\x84\xd6\x80\xa4\x46\xda\x69\x1c\xee\xce\x4e\x4e\xcf\xaa\x87\xa4\x36\xa9\x62\x2e\x2a\xad\x70\x6a\x00\x30\x66\xac\x35\xf9\x5f\xc7\xa6\x51\xce\x09\x8b\x92\xba\x4c\xa3\x18\x58\x11\x40\x8a\x59\x6f\x4a\x42\x23\xf9\x4e\x33\xdf\x65\xf8\x4e\x7d\x46\xf9\x7d\x70\x4f\x22\x02\xdd\x12\x3f\xa1\xab\x0a\xba\x35\x43\x1a\x15\x13\x30\x2b\x3d\x93\x06\x59\x99\xe6\xa5\x61\x4c\x51\x2d\xad\xcf\x0c\x50\x6a\x91\xa9\x44\x14\xc3\x34\xa1\x11\x86\xfc\xa0\x3e\xc4\x12\x35\x9e\x26\x29\x71\x8b\x3c\x7f\x24\x1c\x66\xaa\x9e\x95\xad\xea\x39\x8d\xc9\xa2\xc1\x0b\x59\xc3\xc4\xf2\xe1\xe1\xee\x69\xc2\x81\x16\xc6\x28\x10\x2f\x5d\xe7\x3d\xb0\xed\x1c\x3f\x6a\x7c\x27\xfc\x7b\xaa\x6b\xb1\xf8\xae\x39\x65\x5e\xca\xe6\xe5\x86\xab\x0d\xb6\x6a\x94\x69\x43\x45\x0a\x26\x51\xae\x76\x37\x0b\xe9\xc0\xe9\xd9\x7e\x68\xb7\x69\xc7\xd2\x2f\xa8\xee\x8c\xf7\x75\xef\x65\xbd\x75\x96\x4e\x36\xe0\xe3\x3c\x88\xf2\x96\x45\xfb\xb2\x6a\x1e\xb2\x3d\xb1\xfc\x29\xeb\x28\x41\x96\xe4\x45\x92\x95\x48\x59\xc8\x4d\x71\xa7\x98\x87\x86\xb1\xf0\x53\x4c\x7a\xa9\x04\x69\xb1\x04\x77\x1c\x38\x51\xde\x1b\x9a\x11\x07\xfa\x21\x96\x84\x6c\x5c\xc1\xb8\x92\x53\xab\x72\x33\x44\x91\x6e\xc7\x99\x26\x61\xfb\xe1\x82\xa5\x31\xa6\x9d\x55\x25\x6a\xe0\x51\x32\x73\x13\x05\xbd\x09\x6f\xe1\x2c\x82\x8c\x8f\xea\x4a\x0d\x6b\x1b\xa5\x93\x30\x5c\x93\x2c\x47\xb4\x8f\x23\x10\x79\x97\x95\x12\x56\x5e\x80\x49\x70\x8f\x95\xd9\x48\x01\xa0\xaa\x16\x07\xb9\x16\x1f\xd4\xe5\x2d\xd9\x09\xf5\xba\xb3\x42\x58\xaa\xdc\xe6\x44\x14\xbc\x2a\xf0\x65\x90\x4d\x60\x6e\x2e\xd5\xea\xf7\x24\x58\x45\xe3\x9e\x36\x40\x4d\xe3\x88\x2c\x10\x51\x16\x6a\x4d\x31\x0f\xb3\x6d\x98\x1d\x5a\xae\x59\x58\x38\x7b\xef\x93\x11\x2a\xdc\x15\x59\x30\x06\x59\xd1\x1d\x70\x7f\x6a\xac\xe7\xfc\x7b\x01\x22\xdc\x7b\x4f\xc6\xf3\x2c\x4d\xd2\x4d\xee\x4e\xa7\x20\xc7\x6a\xb3\x68\x03\x70\x0e\xb6\xbb\xde\x14\xa8\x0f\xb1\x6b\xbc\xc9\x94\x24\x85\x6d\xbf\xc9\xc3\x56\xb8\x4a\xab\x62\x94\x95\xcd\x55\xe1\x9b\x9f\xf5\x56\x80\xbd\xb6\x6b\x8c\xd0\x36\xc3\x06\xc6\xb7\xb5\xc5\x3a\xe3\x29\xe8\xb6\xb5\x2b\x08\x97\x26\x06\x42\x8f\xa0\x55\x49\x37\xf1\xa4\x34\x88\xd4\x02\x42\x41\xd7\x82\x95\xf6\x46\x30\x9c\x79\x04\xba\x4a\x15\xba\x69\x8e\x5a\x95\xea\xbe\xcd\xeb\x49\x94\xaf\xe3\xe0\x9d\x9b\x1a\x9a\xef\x4e\xd3\xec\x2d\xc8\x26\xa5\x2d\x4d\xcb\x2b\x28\x48\x8b\x39\xa4\x27\x68\x11\xf3\x34\xca\x95\xa2\x4a\x9b\xac\x47\x48\x54\x1f\x0c\x5b\x22\x1c\x0c\x56\xa9\x0e\xb5\x9e\x8d\xbb\x0e\x8b\xed\x7b\x21\xa4\x4a\xd5\xe8\x47\xfc\xd8\x54\x6f\xca\x6b\xfd\x62\x05\x58\xc8\x3c\xbc\xad\x0b\x12\x83\x93\x6d\x90\x45\x41\x52\xf8\x49\x11\x57\x15\xa7\xd4\x4b\xe9\x65\xf9\x33\x63\x03\x27\xab\x37\xf4\x94\x06\x90\xea\x4e\x50\xa6\x06\x54\x95\x7d\x15\xf4\x5a\x56\x37\x98\x15\xdb\xad\xa1\x42\x57\xf5\x60\x7b\x6f\x85\x79\x1e\xcc\xa0\xae\xe5\xb3\xca\x16\x43\xbb\x47\x71\x9d\x9c\x1d\x61\x22\x53\x32\x03\x79\x33\x69\x91\x5e\x37\x11\x2d\x47\x98\x8c\x21\xc6\xe0\x62\xf0\xe0\x9b\x9d\x6c\xb2\xb8\xc4\xa5\x1e\x39\x2e\xa3\x0f\x56\x50\xf9\x66\xd2\xd1\x88\x86\xd0\xa0\x30\xc8\xc6\xf3\xb2\x6c\x0b\x1b\x3f\x80\x53\xa4\x7e\xaf\x5d\xda\x76\xa2\xbc\xf4\x1d\xb2\x69\x1d\x92\x0d\x0c\x3e\xf3\x20\x9f\xaf\x82\x6c\xa9\xad\x13\x7f\xfe\x29\xc5\xbd\x74\xef\xc8\x3b\x75\x20\xfc\x4b\x21\x86\xdb\x10\x83\xbb\xfe\x9f\xb2\x7d\xdf\x77\xef\xfb\x7f\xf6\x47\x1d\x17\xaa\x34\x5b\x1e\x94\x98\xea\x4f\x07\x09\xf8\xe8\x1c\xb1\x4f\x18\xb8\xe1\xc9\xd0\x31\xb9\xa4\x37\x50\xcc\xed\x91\x75\xf4\xd4\xba\xbb\x29\x8a\x35\x47\xd1\x31\xc9\x42\x45\x51\x56\x2a\xe5\xc5\xaa\x5a\x94\x37\x38\x88\xae\xf2\xd1\xda\x9b\xe9\x94\x45\x62\xe3\xb2\x57\x64\x61\xb0\xc2\x2b\x51\x0c\x2f\x89\x1d\xa7\x2f\xfb\xef\x3d\x46\xa1\x52\xa7\x5f\xf4\x9b\x46\xa7\xf9\x3a\x4d\xf2\x50\xcb\x34\x6a\x49\xd5\xf3\x68\x15\xa6\x44\xf2\x76\x79\x36\x95\x14\x84\xc5\x00\x53\x05\x35\x08\xae\x82\x1d\x83\xea\x4e\x3b\x91\xb7\x41\x1c\x4d\x48\x5b\x0b\x8a\x8d\x26\xfb\x74\x31\x4e\x57\x2b\xa2\x77\xab\xb0\x98\xa7\x13\x6d\x73\x00\xc4\x0b\x9a\x81\x8e\x9d\xd6\x97\x3a\x28\x4e\x0f\xf1\xc6\x5c\x02\x33\xac\xac\xb2\x20\xb1\x56\x01\x87\xe9\x91\x75\xd4\xc9\xd2\x55\x94\xc3\x4b\x94\xa7\x31\xfb\x8b\x18\x8f\x32\xc0\x9d\xc1\xcd\x77\x55\x27\x59\xb9\x2c\xc1\x86\x06\xa1\x24\x77\x76\x3c\xae\x83\x3c\x7f\x4b\x33\x35\x0d\xb1\x29\xe6\x69\x16\x7d\x68\xc9\xe8\xa5\x48\x03\x62\x25\xe5\xe0\x5f\x82\x3c\xc4\xb4\xd2\x75\x08\x47\x41\x16\x06\x93\x77\xe2\xc3\x90\xfd\xa8\xbb\x60\xf2\xde\x63\xd6\x9c\xf1\xea\xe0\x35\x7d\x57\x8d\x6d\x16\x16\x22\x8e\x1f\x3e\x95\x67\xd5\xaa\xea\x4b\xf6\x3c\x97\xb7\x20\x0f\x58\x17\xbe\x49\x93\xe0\x05\xb2\x5f\x9a\x84\x0c\xc2\x34\xa9\x50\x81\xaf\x08\xba\x4c\x41\x18\x09\x83\x64\x12\x64\x13\x36\x44\xb9\xc9\x96\x60\x4f\x81\x7b\x8c\x30\x9a\x2a\x29\x7a\x2d\xb3\x70\x12\x26\x45\x14\x30\x4d\x09\x20\xca\x15\x0f\x26\xe4\xa9\x6b\x27\x7d\x4b\xe2\x34\x98\xe8\xd8\x38\x28\xe5\x14\xd5\x75\x17\xe5\x45\x98\x70\xbd\xc1\x7a\xaf\xd6\x86\x0a\x48\x96\x29\xa3\x01\xc1\xd4\x18\x0d\x8a\x39\x15\xe0\xb1\x6a\x96\x27\x9e\x87\xc9\x84\xa8\x5a\x15\xc0\x49\x28\xaa\x27\xab\xa9\x1e\x3f\xa8\x23\xda\x69\x79\x75\xa6\xa5\x87\x46\x96\xae\x10\x17\x7f\xc6\xfa\x12\xa1\xbb\x13\x86\xeb\x4a\x67\xe1\x27\xa5\xb7\xab\xfe\x82\x92\xe5\x5a\xbc\x47\x28\x20\x85\xcb\x89\x41\xf2\xb5\xd4\xf3\x00\xfe\xb7\x36\x91\xe6\xbf\xf3\x60\xd2\x0c\xdf\x5f\xd2\x20\x03\xdc\x50\x64\x06\xbe\x3f\x84\xe3\x30\x29\xe2\xf7\xaf\x9f\xf4\x4b\x0c\x88\x92\xf5\x86\x08\x62\x3e\x9c\x47\x45\x18\xc3\x09\x98\x13\xf5\x26\x66\x43\xee\x89\x55\x10\xa9\xdf\x64\xb3\x7a\x61\x16\x9e\xd0\x06\x78\x0b\xc3\x25\xa3\x11\xf3\x3e\xbe\x84\x29\xac\x19\xbe\xab\x05\x57\x2d\xf0\x48\x57\x61\x11\x40\xc4\x0a\x62\x96\xb5\xc6\x45\x16\xe3\x8a\xed\x67\x29\x39\x46\xf8\x45\x94\xd1\xf0\xa3\x38\x2a\xde\xa5\xde\x55\xdb\xb2\x48\x6f\xad\xa8\x16\xfd\xaf\xbd\x9b\x90\x22\x83\x19\x93\x36\x85\x9c\xed\x24\x86\xcf\x99\x89\x9c\x3b\x29\xc3\x2e\xa6\xaa\x85\x7e\x16\xcd\x66\x61\x96\x6b\x30\xb7\xd2\x49\xa0\x3a\x2a\x87\x63\xc7\x9b\xac\xea\x66\x1c\x87\x41\x56\x41\x34\x0f\x8b\xea\xe6\xd3\xa1\x04\xc2\xee\xfa\xfb\x93\x74\xac\x75\x0d\xa7\xdd\x52\x15\xde\x12\x35\xff\x32\xcc\xe4\xcf\xaf\xcf\x04\x28\x22\x14\x25\x30\xd1\x19\xce\x98\x98\x3c\x8c\x25\xc3\xd9\x67\x37\xcc\x3b\x88\xd9\x68\x26\x7c\xaf\xd7\x76\x1d\x11\x59\xf9\xcc\xc3\x93\x60\x1b\xcd\x82\x32\xe0\x44\x69\x74\x65\xf8\x8d\xa6\x06\x08\xcb\x51\xa3\x52\xd8\x81\xa8\x79\xec\xa1\x89\x36\x9a\x50\xc0\x7b\x69\x99\xd6\xf4\x1c\x68\xee\x57\x62\x2d\xef\x9d\xaa\x42\x29\x79\x05\xdc\x40\x65\x4b\xe7\x2a\xb2\x46\x1a\xf4\xf1\x1b\xc4\x4c\x54\xb4\x02\xf6\x5d\x26\x52\x93\x52\xb8\xfc\x1c\x5a\xcf\xb2\xae\x11\x35\xaf\x9d\x76\xa8\x06\x87\x7c\x40\x5c\xca\x28\x26\x7b\x4e\x3e\x8f\xa6\xd0\x3b\xe2\x69\x14\xc7\x1c\xd7\xa0\xd8\x13\xd4\x5c\x7e\x3c\x0b\x8b\x41\x16\x95\x78\x45\x4d\x6a\x26\x36\x37\x99\x3a\x2f\x64\x31\xcf\xd2\x37\x7f\x8a\x89\xc5\xc4\x98\x78\x68\xd4\x2c\x3f\x36\x8b\xb2\x30\x40\xe0\xc2\x94\x35\x41\x1d\x8d\x5f\xca\x59\x0a\xc1\x20\x6b\xb6\x36\xd1\x1e\x27\x18\xcf\x83\x4c\x94\x26\x91\x49\xcf\x44\x6d\x14\xc9\x3a\xf2\x33\x3c\x51\xb1\x56\xb4\x57\x31\xdb\x24\xd5\xcd\x74\x93\x54\xaa\x56\x97\xbd\xb1\x93\x2c\x88\x18\x7d\xc8\x41\x5b\xfa\xa7\xe2\x30\x48\x06\xeb\xfb\x70\x57\xf4\x23\x32\xf8\x50\x4d\xfd\x5a\x46\x6d\x29\x91\x11\x4a\xea\x26\xd9\xeb\xd9\x2f\xc2\x15\xcc\x9c\xb4\x7d\x94\x32\xcd\x1e\x0f\x6e\xae\x88\x20\xb5\x84\xc4\xf5\x82\x6c\xb6\xad\x1c\x34\x88\x62\x01\xd7\xaa\x31\x2c\xc2\xd9\x74\x3a\x2d\x1d\x33\xc6\x53\x14\x88\x38\xd6\x65\xb4\xcc\xab\x08\x16\x9e\x70\x1d\x26\x66\x5b\x5c\xd2\x4e\xc6\x66\x1b\xb1\xf1\xaa\xda\xf1\xbc\xaf\xde\xe0\x22\x9c\x44\xc0\x56\x42\x3e\xb6\x63\x96\xc2\xf1\x84\x49\x5f\x94\xd3\xd6\xd3\x1c\x4e\x47\xa5\x61\x57\x4e\xa3\xd2\x08\x1f\x47\x49\x58\x52\x83\x71\x1a\x6f\x56\x49\x79\x9b\x17\xb0\xb1\xd5\xce\x28\x40\x08\xd4\x67\x0f\x2a\x01\x2b\x9c\x68\x29\x27\x26\x77\x18\xee\x10\x61\xe5\x6c\xd6\x71\x34\x0e\x8a\x90\x62\x04\x49\x0a\x9c\x70\xdf\x64\xb3\x54\xd2\x1f\xea\xaf\xf2\x48\x5b\x57\xc5\xac\xd4\x46\x3a\x41\x96\x47\xc9\x8c\x1d\x83\x2c\x03\xe2\x85\x39\x34\x4f\x8a\x60\x19\x53\x98\xdf\x3c\xcd\xd9\x3d\x36\xe7\x3b\x2d\xed\xb1\x99\x2d\x28\xe6\x5c\x12\xa7\x63\x2d\xef\xf1\x2c\xd0\xe8\x5b\x16\x15\xac\x4c\x45\x19\xa2\xfb\x20\x03\x4e\xd2\x15\x48\x40\x1e\x8e\x37\x70\x8f\x91\x9c\x44\x7a\x8e\xd7\xea\x97\x24\xb6\x34\x5d\x4e\xc2\x03\x0a\x56\xb8\x0b\xc7\x1b\x1d\x2c\x44\x93\xa9\x24\xdc\x82\x29\xda\xb8\xb2\x71\xf6\x3a\x42\xfa\xf7\x5e\xef\xc8\x3a\xf2\x1e\x7c\xe7\xcf\x9e\xff\xec\xf6\xd8\xbb\x33\x9d\x42\xb1\x99\x44\x5b\x0d\xda\x46\x9c\x52\x28\x8a\x07\x77\x02\x85\x95\xe5\xff\x0a\xe2\x68\x96\x54\xde\xd8\xbd\x5b\xb3\x92\xda\x33\xb9\xae\xa2\x6f\x0c\xbb\x07\x8c\x9d\xa6\xc5\x10\x2f\x8f\x8d\x19\x9a\xd7\xe5\xe3\xca\x03\xcd\x45\xa6\xa1\x88\x8b\x22\x6c\x58\xfe\xe1\xc2\xc5\x26\x2f\xa0\x21\x56\x57\xfc\x28\x56\xd0\xa6\x7f\x5c\xb0\x22\xa5\xc4\x98\x78\xae\x1a\xca\x8d\xd6\xf2\x75\x30\xc6\x2a\x55\x57\xfc\xe8\x2d\x23\x2b\x3a\xff\x70\xe1\x4e\x61\x15\xfd\xd3\x05\x10\x8b\xab\x82\x8f\x30\x4b\x5b\x51\x32\x64\x6f\xd0\xde\xed\x38\xce\x15\x29\xcb\xd2\xb4\xd0\x66\xc7\x09\xaf\xcd\x4b\xba\xeb\x45\x1f\x18\x02\x9b\x5a\xd8\x4a\x3f\xc4\x10\x56\x55\x33\xaa\xd4\x31\x00\xc6\xa0\xa8\xd6\x90\xbc\x10\x6b\x0e\x59\x20\x73\x69\xaf\x9c\x9f\x36\xf8\x79\x9b\x02\x6a\x6b\x55\x99\x96\x7a\x3c\xde\xac\x36\x31\xf3\x7b\x18\x98\x4b\x43\x4f\x96\x6e\x88\xcb\xab\x01\xd8\x41\x1e\xe5\x7c\xed\x65\xe4\xe3\x5d\x05\x3b\x3d\x44\xf2\x5e\x97\x5d\x61\x8a\xf5\xe3\x31\x26\x3a\xc4\x2c\x7b\xe3\x97\xe4\xed\x52\x6c\xe1\x4a\x6c\x8c\xa1\xc7\xfa\x4a\xc1\x51\x5b\x62\xe0\x68\x29\x47\xfa\x12\x64\xa7\xf8\x81\x53\xcb\x70\xe5\x4c\xc2\x22\xcc\x56\x51\xa2\x1d\x6b\xf5\xfb\x2c\x85\x70\x16\xe4\x08\x31\x7c\x09\x32\x6e\xce\xdf\xab\xa9\xca\x9c\x4f\x25\xe5\xb8\x55\xd7\x07\x5e\x39\x2b\x2b\x90\xa3\x04\x33\x5e\x07\x71\x58\x14\x20\xc2\xb3\x79\x41\xbb\x7e\xa2\x58\x19\xe9\x9f\xc1\x78\x39\x23\xc8\x77\xb2\x68\x15\x90\xc5\x7a\x5d\x5e\x31\x15\xaa\x2a\xf5\x42\x25\x75\xe1\x61\x6e\x5c\xaf\xd3\xd2\x7f\x95\x6e\xc3\x6c\x1a\xa7\x6f\x1a\xe6\x55\xbb\x55\x33\xd2\x5c\x14\xb3\x4d\x38\x41\xfb\xb4\xf5\x83\x24\x5a\x69\xb2\x09\x88\xc9\xaf\xda\xf3\x57\x10\x2d\x8c\x81\x42\x1a\x31\xa6\x57\x8d\xd0\x68\xcc\xec\xbb\x5c\xc6\xd2\x4c\xf0\x12\x64\x9f\xba\xcc\x3e\xbd\xf7\xa1\x85\x88\x54\x6d\x83\xe2\xbd\x12\x4f\x1e\x81\x4c\x7c\x4c\x44\x71\x09\x85\x36\x73\x85\x34\xf3\x73\xf5\xef\x42\xfd\xbb\x54\xff\xbe\xc3\xff\x46\x62\xc2\xa9\x71\x7d\x46\xbb\x77\x42\x31\x11\xea\xf7\x0c\x1e\x51\x3e\xc1\xb5\x47\x51\x35\x31\x35\x29\x9f\xde\xec\x5c\x30\xa3\x8d\x69\x6b\x3f\xf2\xde\x2d\x57\x4a\x52\x26\x0b\xe5\x05\x3f\x58\x07\x59\x40\x3d\xb3\xdd\x4e\x5f\xd7\xb7\x51\x35\xdf\x4f\x05\x85\x39\xf4\x71\xa0\x05\x85\x17\x3a\xd2\xc1\xc8\xc3\xec\x3a\xcf\x58\xa5\xa2\x29\xdd\xb1\xc3\x3b\xdc\x15\xc2\x9c\xaa\x0c\xd9\x5f\x42\x77\x0f\xec\x09\xa7\x9b\xdb\x92\x86\x93\xf7\xb5\x42\xcb\x37\xa5\x94\x2a\x9a\x15\x96\x18\x57\x42\x80\x30\xd2\x47\x74\xbb\xbe\xed\x87\xbb\xa2\x42\x81\xb2\xc8\xc4\x01\x2a\x2c\x85\x20\x00\xdd\x4f\x78\x26\x7c\x6f\xc7\x29\xb1\x59\x5b\x4f\xb6\x5a\x23\xed\xb2\x31\x2e\xeb\x0f\xdd\x38\xdc\x06\x45\x54\x55\xe1\x82\x03\xed\x90\x62\xf8\x60\x54\xe5\x82\xf5\x9a\x05\xd0\x89\x3f\x86\x2b\xb4\xba\xd3\x4a\x2a\xeb\x8f\xf2\x33\xd3\x9d\x6e\xe2\xb8\xe4\x10\xc6\xb5\xe6\x75\x5a\xf8\x0f\xb2\xc2\x68\xbe\xbc\xaf\x6a\x72\x5c\x78\x75\x88\x47\xf7\x5d\x8e\x70\x5a\xd7\x6c\xe3\xe0\x85\xf4\x2d\x04\x4a\x3c\x04\x93\x08\xa6\xc2\x39\x22\xd0\x2b\xef\x2e\x59\x41\x36\xa5\xcf\x31\x9f\x43\x0e\x53\x8b\xef\x84\xe3\xb4\x7c\x30\x0d\x48\xbc\x0b\x34\x83\x9b\x2b\xa4\x6b\x97\x7b\xb7\xa8\xad\x76\xb1\xb7\xd0\x1c\x5a\x61\x2e\x96\x5d\xd2\x18\xe3\x79\xd5\x82\x2e\xa9\xa3\x0b\x64\x94\xd2\xa5\x9d\x14\x59\x90\x17\x6c\x60\x9b\x65\x64\xb9\x50\x4c\x7b\x1e\xe0\x7c\x48\x4e\x17\x6a\x86\xe2\xf4\xe4\xc4\x6c\xc1\x44\xcc\x5a\x2b\x8a\xc4\x9b\x15\xcd\xfe\x01\x4b\x4d\x85\x69\x8e\xd1\x47\xd8\x5b\x41\xa7\x9d\xa6\x49\xc1\xf4\x73\xbd\xeb\xa7\x0f\x24\x22\xe9\x4a\x77\x01\x6c\x4c\xe5\xb4\x8c\x17\xcd\x32\x5d\xaf\xea\xdf\xa8\x58\x2b\xd4\x35\x73\xa3\x42\x6e\x94\x63\x87\xea\xad\x8d\x3b\x26\x07\xd1\x38\x4d\xcc\x76\xf5\x7d\x2b\x9c\x44\x9b\x95\x51\xa0\xdb\xaa\x9d\x3c\x35\xb7\x0e\x65\x98\x81\xfb\xba\xbc\x44\x90\x88\x26\x1c\x3d\x8a\x86\xa8\xa2\x23\x54\xd9\xa8\x0a\xd7\x01\xcf\x02\x60\x71\xcd\x2d\x95\xa5\x25\x8d\xa9\x1d\x5a\xfd\xb4\x7f\x2b\x61\xea\x53\xc1\x26\x0f\x5d\x98\x1c\x27\xa5\xd7\x70\xff\xfc\xaa\xd6\x42\xeb\xb1\x38\x3f\x35\xf6\x28\x0c\x34\x8e\x33\xe2\x04\x4d\x43\x6d\x0d\x59\x1d\x0d\x18\xeb\x98\xc6\xfc\x31\x88\xa3\x49\x15\x5f\xb3\x0a\x38\x0a\x86\xe3\x66\x0d\x1f\x7b\xbd\xd1\x84\x36\x16\x3b\x10\xb3\x70\xbb\xf7\x38\x4d\xdc\x5d\x04\xfb\x42\xf2\xf9\x65\xf5\x02\x3f\x41\x07\x64\x1c\x6a\xa4\x19\xac\x7c\xaa\xbc\x19\xbe\xe7\x9d\x50\x6b\xb1\x6b\x5c\x55\xe1\x27\x5b\xb6\x0c\x7e\x1e\x14\x1e\xf0\x0b\xf7\x65\x01\x6c\x49\x46\xf5\x1c\xea\x5e\x07\x43\x99\x07\xf9\x3d\x46\x53\x4e\x86\xc0\x73\x17\x06\x5b\xb6\x7f\x25\xfa\x84\x52\x05\xad\x70\x47\x7c\x45\x73\xad\xbd\x63\xa0\x0a\x19\xc8\x66\xf7\x2f\x53\x8d\x83\x1d\xa7\x84\x0e\x1b\xad\xaa\xf3\x2e\xad\x74\x93\x14\xe8\x72\x1a\x65\x79\x81\x88\x5a\x53\x3b\x72\xa2\x09\x55\x22\x2b\xeb\x26\x61\x7b\x51\x58\x68\x2b\x67\x59\x71\x18\xc5\xf1\x20\x59\x71\x5d\xf2\x43\x65\xd1\x36\x9c\x50\xc5\x46\x96\xae\xf4\x02\x22\x6e\xaa\x32\xb0\xec\x2d\x57\xa6\x87\x80\x78\x75\x7d\x68\x8d\x80\xdf\x08\xc6\x45\x4a\x64\xe8\x70\xbe\x0d\x38\x62\xf4\xde\x51\xaf\x92\x29\x59\x69\xbb\x9a\x45\x68\x71\x64\x13\xe7\x98\x40\x75\x95\x51\x9d\xa7\xf2\x6a\x54\x5e\x31\x49\x8b\x34\x73\xe2\x46\x0c\xbc\x63\xd8\x93\xaf\x1c\xad\xc5\xe5\x62\xe6\x61\x51\xad\x2c\x1a\x34\xd9\x64\xa6\x87\x86\x8b\x8a\x7d\xe1\xbe\xb3\x37\xbe\xca\xcf\xaf\x20\x62\x36\x44\x05\x55\x4f\x74\x5b\xbd\xcd\xbe\x15\x0a\x5b\x31\x0e\xd3\x1a\xea\x8e\xc6\xac\xbd\x0b\x9e\x33\x7a\xcf\xd9\x93\x52\xde\xf0\x7c\x2a\x12\x42\xf6\x14\x8a\x42\xdb\xe4\x21\x5b\xcd\x89\x99\xf7\xa3\x95\xb6\xd9\xf0\x8d\x4c\x57\xb0\x3a\x51\x51\x79\x37\x7e\x51\x7b\x3a\x9e\x54\x9d\xd0\xf3\x5a\x40\x4f\x39\xad\xb2\xa8\x1c\x75\x59\x32\x0d\x96\xc6\xf6\xa9\xdf\x65\x20\x81\xb3\xb0\xb0\x15\xfb\x8d\x92\x99\x8c\x23\x0a\x70\x45\x84\x0d\xdd\x3c\x95\x57\x23\x32\x7b\x6c\xd8\x7c\x9f\xbf\xc2\x4c\x03\xfe\x1a\x7d\x10\xce\xac\x82\x1d\xb9\x79\xf2\xf2\x25\x2d\xe8\xa8\x1a\xa3\xb2\xf4\x46\x47\x66\xe6\x08\xc1\x5c\x87\x59\x0e\x2f\xc7\x1a\x9e\x06\xa2\xc9\x64\x92\x0b\x72\xac\x64\x18\xe4\xa1\x9f\xb4\xc9\x5c\x58\xaa\x36\xce\x9e\xbc\x02\x76\x41\xb2\xd1\x43\x38\xe5\x45\x2b\xef\xf7\x97\xb9\x5c\xfc\xbd\xdb\x3a\x43\x29\x8b\xf7\xef\xeb\xd5\x18\x9d\xaa\x7a\x07\xf1\xab\x2e\xaa\xc1\xeb\x80\x43\x78\x31\x0c\x9d\x69\x42\xf2\x66\x75\x65\xfa\x28\x2a\xdf\x0d\x5d\x0f\x28\x94\x30\x31\x91\x8c\xef\xd4\x06\x08\xab\x5b\xae\x48\x23\x72\x21\x67\xe1\xa6\x95\x72\x35\xba\xeb\x31\x86\xa5\x89\x93\x05\x33\xdd\x86\x16\x3c\x83\x17\xad\xa8\x19\x97\xc6\x24\x35\x69\xc3\x66\x00\xb8\xf3\xb0\xd8\x9b\xc4\x9f\x87\xbc\x2f\xd3\x9a\x3b\x6c\xca\x21\x40\xd4\xce\x0d\x8c\xf0\x65\xbb\x42\x8b\x9d\xe1\x1e\xd7\xce\x97\xd1\xfa\xa1\x5e\x65\xca\x90\x04\x03\x30\xc1\x84\x12\x73\x96\x46\x1d\x82\x96\x71\xaf\xab\x28\x3e\xa5\x98\x41\xe9\x9e\x40\x9d\x1a\xe8\x8c\x22\x00\xda\x28\x60\x60\x57\xee\xaa\xf2\x46\x2f\x39\x33\x83\xbe\x3e\xcd\x1d\xe5\xf7\x69\x82\x23\x0e\xa5\xd6\xb3\x0c\xdf\x27\xe9\x1b\xa3\x73\xe9\xd2\x1b\xac\xcd\x10\x22\x1a\x27\x91\xe4\x2a\xaa\xc6\xdc\x0b\x7a\xa9\xf0\xfa\x20\xd7\xd1\x40\xd5\xd9\xfe\xf2\x61\xbb\xde\x15\xef\xa2\x3a\xa1\x3f\xab\xf8\xa2\x26\xfc\x79\x58\xb4\xea\x25\x61\xf2\x79\x53\x40\x42\xec\x07\xeb\x9b\x68\x36\x27\xeb\x4a\x69\xd9\xd8\x64\x39\xec\x4d\x61\x56\x44\xe3\x20\xd6\x5a\x2b\x64\x41\x1d\xe8\x99\x85\x53\x81\x1f\x1b\x3f\x65\x58\x27\xe5\x04\xc0\xa2\x4d\xc8\xa6\xcd\xa7\x81\xda\x59\x7f\xbe\xa1\x33\xa1\x38\x9a\x6e\xda\x48\x73\xb8\x16\xf0\x9f\x3d\xf9\x14\x2b\x65\x04\x7d\xed\x05\x40\xfd\x6f\x08\x70\x24\xdd\xfc\xcf\xd1\xff\xef\xdd\x13\x42\x58\x3d\x21\x7a\xc2\x72\x85\x68\x49\xcb\x13\x72\x62\xf9\x42\xf8\x52\x15\x78\xc6\x7f\xdf\xf2\x84\x3b\xb1\x3c\x21\x56\xb6\xb5\xb4\x85\x78\xb8\xa1\x1b\x89\x1b\xd5\x80\xcc\xa4\xa7\xca\xda\x37\x56\x5b\x48\xc7\xac\x4b\x8f\x17\xb6\x2a\xf2\x7d\xab\x45\x7d\x75\x85\xe8\xde\xa9\x1e\x17\xb6\xea\xb2\x49\xdd\xb8\xd4\x23\x0d\xc7\x77\xe8\x7f\xcb\x6a\x53\x45\x5f\xc8\xcc\x46\x91\xb4\x9a\x42\xde\x60\x58\x37\x3c\x72\x94\xb7\x55\x6b\xae\x6a\xae\x2b\x68\x28\xaa\xe6\x14\x97\x8e\xd5\x15\xcd\x47\xea\xca\xb1\x9a\xf4\xdf\x15\xf2\x4e\x54\x4d\x76\xbe\x78\xb3\x61\x79\xa2\xf5\xa4\xc6\xd1\x56\xe3\xf3\xda\x56\xa8\x60\xe1\x0b\x47\xa8\x17\x7a\xbe\x6a\x02\xe3\x7f\xac\x66\x31\xbc\xd7\x70\x93\x93\x16\x77\x32\x10\x62\x70\x6b\xf5\x84\x9c\xdb\x54\xb1\xe5\x51\x91\x1a\x9a\x9c\x62\x72\x7d\x2a\xef\x5a\x2d\x21\x5f\x6e\x0f\x8f\xa7\x69\x79\xc2\x7f\xa4\xf1\xdc\x59\xbe\xb5\x72\x64\x26\xdb\xb4\x8e\x5d\xf5\xf2\x3b\xda\xee\xd2\x72\x6e\x69\x1d\xc6\x0a\xe6\x8f\xd4\xc1\xcc\x56\xd7\x6d\xf5\xec\x5c\x01\x5e\xfa\x34\xda\xe6\x9d\xe5\x0a\xe7\xae\x65\xb9\xf2\xa6\xa7\xda\xda\xc8\x9b\xaa\x95\xcb\xbf\x6a\xc5\x35\x5a\x69\xdc\xd1\x74\x7b\xea\x61\x9f\x86\x12\x48\x1a\xac\x24\xb0\xdf\x5b\x9e\xf0\xae\xb0\xe6\x37\x00\x51\xb5\xe6\x6d\x82\x1c\xcd\xad\xeb\xa9\xd1\x2d\x64\x93\x00\x02\x90\x76\x54\x9b\x2f\xf4\x42\xaf\xc5\x18\xa4\x40\xa4\x6a\x5e\x61\xda\x6d\x87\xd7\xcc\xa5\xe5\xf2\x85\xb7\xb5\xb9\x77\xd7\xe9\xb7\x2c\x29\xc4\x77\xbb\x9a\x9a\x17\x3b\x8c\x95\xaa\x8e\x67\xe5\xb6\x10\x1b\xdb\x92\x42\xce\x65\xb5\x13\x56\xf6\xad\xf1\x3c\xb7\x1f\xd4\x6e\x58\x3b\x87\xe7\x30\x52\xff\x23\x7b\x5a\x4d\x62\xcb\x93\x68\xe3\xc9\xb3\x9a\x45\x62\x1f\x98\x86\x27\xe4\xce\xf6\xa8\xab\x26\x61\x86\xb4\x5e\x6d\x21\x5e\x6d\x80\xee\x99\x86\xed\x2a\x54\xd8\x39\x87\x67\xeb\x7f\x94\xb3\xb5\x2e\xa4\xbb\xb0\x5b\x84\x18\x03\xcb\x17\x61\xa1\x1e\x4d\x04\x8d\x72\xf8\x40\xd5\x7a\xaa\xf7\x81\xaa\x32\x78\x52\xbd\xaf\x69\xd2\x4d\x9a\xf9\xfd\xfe\xc4\x34\xfe\xea\x79\x89\xa6\x82\xd3\x07\xe0\xe4\xd1\x6c\x1a\x8c\xcf\x9e\x70\xb7\x76\xd5\x54\x53\x0d\x9f\x46\x29\x1f\x9b\xc6\xf4\x9a\x56\x28\x44\x78\xb3\x3f\xb9\x63\x79\x78\x72\xcd\x73\x3d\x39\x5f\x78\xed\x80\x09\x49\x53\x88\x56\x62\x5b\x43\x39\xbd\xa6\x2e\xfd\xd4\x56\x6f\x5c\xd8\x56\x6a\x0b\xf1\x44\x94\x26\x75\x88\x10\xad\x6d\xc1\x0d\xf4\x84\x78\xb3\x69\xde\x12\xdb\x6b\x2c\xc4\x98\xb6\x17\x61\xff\x80\x37\x9d\xaa\x4c\x97\xef\xdc\x5a\x43\xb5\xf6\x6e\xbb\x0c\x90\xb1\xda\x0a\x37\x04\x44\x10\x8f\x06\xbd\xd2\x57\xb3\x1b\x59\x33\x5b\x88\xa5\x3d\x54\xdb\x75\xdb\x51\xaf\x34\x2e\x5c\x6b\x24\xc4\xc2\xa1\x65\x7d\xa2\x6d\xf1\x6e\xab\xa2\x31\x41\xbb\xdb\x52\x2f\x46\x9e\x2a\x49\x50\xe9\x85\xc6\x7a\x86\x4a\x1d\xaa\xd4\x56\xd7\x11\x61\x5f\x61\x83\x80\x4b\xab\x67\xb5\x64\x63\xdd\xe2\x3b\x57\x75\xbc\x23\x38\x74\xdf\x6d\xa2\xb2\xc6\xca\x1e\xdb\xfb\x4b\xfb\x8d\x4a\x5a\xb1\xdc\x5b\xdc\x0c\x8b\x3b\xc3\x36\xa6\xad\xdf\x3a\xa6\xf6\xb6\x36\x0a\x87\xd2\x1a\xea\x47\x43\x69\x05\x8a\x4c\x28\x62\xef\xa0\xc4\x55\x20\x0a\x55\x49\x61\xab\xb9\x0d\x1b\xaa\xc1\x11\x70\x90\xa8\xdf\x90\x46\xe7\xf0\xd2\x5e\xd8\x84\x12\xd7\x18\xfa\x09\xfd\x0c\xcf\x81\x4a\x67\xea\xc7\x4f\x08\x20\xbd\x26\x13\x96\xf2\xff\x88\xb6\xf3\xa5\x63\xb5\x45\xc3\x27\xcc\x19\xf5\x01\x07\xa2\x8a\xa3\x0f\xf4\x7f\x42\xa3\xcf\x1c\x5a\xf6\xe0\xd1\xa8\x11\xb8\xea\xc9\x87\x6c\x58\xae\x7c\x01\x20\x09\xa9\x43\x6a\x9e\xf0\x44\x1e\x4b\x9a\x56\xef\x8a\x1a\x1b\xdd\xd1\x98\x53\x90\x37\x4c\xf8\xda\xb6\x86\x42\x5e\xcb\xef\xb6\x51\x71\x30\xa2\xe5\x8b\x6c\x02\x8d\xa4\xd9\xf7\x68\xf6\x23\xd5\xdb\xcd\x43\xd5\xdb\xc6\xa6\x8e\xae\x08\x6d\x03\x35\xef\x3e\x71\xcf\x06\x61\x3b\x93\x24\x05\x22\xeb\xbb\x23\x3c\x86\x9a\x63\xb9\xd2\xeb\xd3\x43\xc2\x4c\x9a\xa4\xf0\x76\x0a\x6b\xd4\xca\xab\xd6\xdf\x6d\x5e\x22\x4f\xc8\x98\x9e\xd3\x06\xea\x13\x7a\x2f\xc1\xc7\x1f\x69\x64\xa9\xcd\x78\xef\x6a\xfe\xe1\xef\x1c\x83\x6b\x6f\xa8\xac\x5b\x56\x52\xe5\xaa\xeb\x06\xb1\x03\x02\x2c\xc8\x66\xeb\xd4\xc6\x0e\x79\xb3\xc1\x98\x4a\x1e\x2a\x4f\x9d\x6a\xb4\x0a\x03\xdc\x69\x85\x9e\xb4\xa5\xbb\x8a\xae\xca\x29\x55\xe8\x51\x9b\xdd\x5b\x9e\x00\x18\xa7\x2f\xbc\x75\x05\xf8\x76\x9f\x26\x89\xf6\x9c\x8a\x65\xd0\x90\x59\xc4\xe8\xdf\x28\x62\xdc\xa0\x21\xb7\xad\xa1\x60\x88\xd1\x3e\x68\x39\xcc\x12\x7c\x21\x27\x40\x6c\xc2\x9e\x61\x4b\x4d\xaa\x00\xb1\x06\x29\xf2\x3d\x82\x02\xe1\x7a\xf0\x40\x2f\x13\x32\x0e\x68\xfe\x6b\x85\x80\xaa\x8e\x2f\x5c\x41\x9b\x9a\xd8\xb5\x5a\x3e\xee\xaf\x87\xfe\x7b\x42\x8c\x41\xe6\x08\x71\x89\x76\x35\x44\xc5\x73\x14\xff\x74\x6f\x63\x77\x7f\xab\xce\x30\xaf\xc4\xb5\xba\xc2\xed\x28\x54\x78\x59\xa1\x68\xae\x10\xb8\x91\xdb\xaa\x11\xef\xd2\x5e\x1a\xe2\x0c\x91\x64\x59\x10\x6e\xa9\x81\x96\xd5\xbd\x18\x8b\xb2\x54\x37\xa3\x7e\x45\x3e\x86\xc4\xd7\xda\x4a\x7e\x69\x7e\xd8\x56\x57\xdc\xbe\x11\x10\xd7\xd4\xbc\x82\xa2\x42\x1b\x55\xe4\x4d\x3f\x5c\x03\x3b\x52\xb7\x8e\x1d\x32\x96\xcc\x03\xaa\xa5\x56\x18\x72\xba\xf7\x92\x0b\xf4\x56\x74\xa2\xc4\x84\xf9\x4f\x67\x2f\x3f\xcf\xde\xc1\xec\xdd\x4b\xfb\x95\x66\x0f\x3a\x3e\x52\xd2\xd4\xa9\x8d\xeb\xfb\x4a\x5a\xc3\x3b\xc2\xb7\x06\xc2\xdd\xa9\x37\x4a\xb1\x0d\xcf\xdb\x56\x4b\xb4\xaf\x15\x80\x6e\x9b\x0a\x10\xe2\x1b\x6d\xbd\x4b\x9b\x30\xb1\x25\xf4\x50\xda\x6a\xb5\x9a\x0a\xf7\xdf\x5c\xf4\x17\x0a\xaf\x23\x2a\xb4\x04\x05\xb9\x84\x8c\xf4\x9d\xe0\x5e\x18\xeb\x7d\x57\xad\x37\x89\x4e\xdd\x6a\xc2\x5d\x03\x2f\x63\x79\x4f\xcb\x67\x35\x85\xf7\x5c\xed\xbe\xde\x4e\xb5\xdb\x8e\x89\x9d\xf5\xbe\x69\xb4\x57\x3d\x6e\x69\xdf\xb5\x95\x8c\x01\xc1\xfe\x59\x54\x5b\x40\xc9\x04\xde\x73\x85\x92\x24\xb0\xbd\x10\xf0\xa7\x98\xbd\xea\x82\x68\x77\x02\x49\x51\x55\x73\x86\x31\x51\xb1\x99\x3d\x56\xe2\xf6\x39\x38\xea\x77\xc6\x0d\x5a\x2a\x90\x3e\x9f\x16\xff\x14\xac\x5c\x51\x5f\x35\xac\x77\x45\x0e\xd5\xdc\x3d\xd1\x20\x7a\x21\x06\x6a\x53\xba\x8f\x0a\x3b\x5c\x2a\xf0\x17\x0d\x03\x31\x66\xb4\xa9\xe6\x06\x4e\xdc\xee\x43\x88\xfa\x1c\x1c\xd3\x32\x74\xcf\x68\xd9\x7b\xc4\xbb\x1c\x03\xef\x08\x8c\x83\x5b\x05\xe3\x0f\xa3\xb1\x16\x91\x1a\x3c\x24\x61\x06\x12\xc4\x0b\x35\x1c\x94\xb4\xc7\x7d\x20\x52\xa9\x40\x28\x5d\x73\x5b\x29\xc4\x2a\x6c\xbe\xf6\x84\x68\x62\x30\x5d\xc0\x4f\x09\x3d\x4f\xbc\x99\x48\xb2\x50\xfd\xb6\xad\x81\x68\x15\x6e\x35\x86\xae\xaa\xd7\xbb\xc1\xf6\x90\x2c\x50\x33\x59\xea\xd1\x6c\x07\x4a\xaf\x72\xfb\x24\x7e\x13\x26\x90\xf6\xf1\x17\x63\xe8\x01\x4e\x6a\x0c\x24\x5a\x0d\x03\xd4\x50\xfd\x2a\x42\xd4\x3a\x35\xc6\xa0\x70\x4a\x0c\xc0\x75\xdb\x6a\x10\x3b\x0c\x02\x72\xc1\x00\x02\x43\xeb\x87\x5a\x37\xf7\x4e\x8d\xe3\x89\x28\xc9\x0f\xa2\xef\x4f\x0e\x49\xea\xf6\xf4\xaf\x07\x35\x04\xa2\xa9\x41\x4d\x68\x50\xa1\x7a\x38\xa4\x81\x3c\x29\x09\x6f\x47\xcb\xd8\xbc\xa3\xe2\xbe\x16\x02\x02\xe1\x26\x76\x5f\x75\xee\x3c\x70\x27\x65\x3b\x7c\xd9\x12\xf2\x1a\xe8\x37\xf0\x01\x4a\xf5\x50\xd5\x6e\x24\x52\x91\x60\xf7\xd5\x71\x34\xda\xab\xfd\xed\x8b\xbb\x0f\x5b\xed\xbc\xee\x15\x08\xd4\x92\x26\x39\xb6\xbe\xd9\x9a\x05\xfc\xb0\x49\x04\x7b\x20\x86\xb4\xb1\x35\x71\x56\x5a\xa6\xc3\x5b\x48\xc9\x8a\x57\x0d\x10\x57\xda\x2f\x67\x44\x5c\x43\x7a\x1c\x9c\x13\x46\x63\x88\xfe\x0f\x92\x1d\xc1\xc5\x02\xab\x27\xbc\x85\x4b\x58\x7f\xab\x04\x06\xb7\xd2\xc3\xc7\x6b\x6a\xa2\xf9\x43\xf2\xe6\x25\xe9\x2d\x83\x0a\x90\xbb\x34\x2f\xb5\xa1\x9f\x0b\xba\x6e\x4e\xd5\xab\x8a\x6e\xc8\xa7\x90\x0a\x36\x6e\x29\x86\x25\xf6\x16\x95\xbe\x29\xb1\x84\xb6\x8d\x7c\x39\xb6\xa9\xe8\x8d\x64\x33\xb5\x22\x72\x6e\xef\x50\xed\xdd\x25\xa1\x35\x20\xba\x6d\x7f\xa0\xf0\x95\x58\xdd\x80\xf8\x31\x81\xe0\x15\x0a\x66\x86\x9f\x57\xa9\x80\xcf\x1a\xed\xb0\x40\x61\xae\x84\x0e\xb9\xb5\xcf\xf5\x18\x7d\x26\x98\x7a\x90\xaf\xb4\xbf\x07\x54\x34\xe5\xc9\x7d\x23\xad\x92\x16\x57\xf6\xcf\x30\xfd\x53\x57\x0f\xb6\x47\xe2\xa4\xc2\xc3\x86\xba\x5e\xda\x24\xa6\x0e\xce\x6b\x15\x58\x17\xf1\xc4\x99\x4c\x94\x2c\xbe\x96\x01\x11\xf4\xf1\xa5\xab\xa8\xfc\xda\x8e\x18\x80\x8a\xfd\x42\x40\x6e\x0d\xa8\xa3\x0e\x29\x2d\x34\xaa\xf1\x86\x30\xe2\x71\x4e\x43\x78\xc5\xc2\x5e\x9a\x63\x6c\xd1\x8e\x3c\x07\xe2\x9c\xd1\x4f\x77\x07\xe6\x0a\xa2\xf4\x26\x81\x91\x84\x6c\xd0\x2b\xae\xdc\x7a\x03\x6a\xc7\x0d\x2a\x42\x4b\xed\xcb\x05\x88\xd6\x0f\xf0\xa2\x58\x0d\xc0\x7d\xec\xa8\xb2\x6f\x25\xfb\xa5\x4d\xa1\x94\x31\x59\xd8\x2c\x74\xba\x06\x4c\xbb\x5a\x21\x23\x59\x8d\x74\x94\xf1\x1a\xc0\x24\x71\x17\x52\xbe\xb7\xa0\xed\xef\x47\x84\x6c\x39\x0d\xea\x59\xd1\x62\x11\xd1\xfb\x2f\xb4\x0a\xbc\xa5\x46\x73\x32\x99\x74\x63\x03\x06\xee\x15\xec\x39\x4b\x1a\xf1\x88\x5e\x1a\xdf\x55\xf3\xa1\xe9\xba\x97\x18\xcc\x8a\x7a\xe9\xd1\x76\x20\x09\x4e\xc9\xa6\x8a\x07\x90\x6c\x1a\x26\x8d\x7d\xd8\xd2\xdc\xf7\xcb\xba\x17\x04\x8f\x9d\x73\x5d\x62\xab\x12\xab\x3f\x0c\x0c\x70\x4f\xd5\x6a\x39\x3e\x11\x9a\x2e\xb7\x0b\xdc\xe8\x8d\x48\x6e\x5e\x37\xf4\xbb\x43\x21\x46\x5b\x69\x76\xc6\x15\x03\xd5\xec\x28\xdb\xaf\xa8\x60\x77\x01\x35\xc0\xa3\x11\xb0\x40\x77\x42\x8b\xd5\x3d\xad\x2d\x02\xed\x8a\x16\x69\xe3\xb7\x3e\x10\x00\xf2\xc2\xc8\xea\x09\xff\xb9\x20\x81\xb0\x41\x32\xc7\x87\xa3\x48\xdb\x99\x03\x0a\xe4\xde\x96\x6a\xa9\x07\xbd\x00\x64\xab\xf0\x3e\x51\x85\x2b\xd6\x77\x49\xdf\xbe\x35\xe4\x85\xf0\x0a\x63\x27\xbd\xbb\x35\xad\xbf\xa8\x56\x2b\x23\xf4\x5c\x3b\x27\x0d\x92\xfb\x89\xc9\xb3\x79\xad\xa5\x44\x2b\xd1\xa4\xad\xca\x82\xa2\x5d\x11\x85\x04\x5d\x26\x50\x26\x16\x50\xd3\x22\x25\x7a\xc8\xc4\xce\x21\xb8\x6e\x21\xb3\x6c\x1c\xd8\xe3\x62\xfb\x10\xb5\x58\x51\x69\xb0\x43\xdd\x37\xc7\x1a\x8a\x1e\x41\xab\xe3\x13\xa8\x65\x63\x25\x59\x92\x09\xd4\xaa\x11\xdc\x09\xd5\x9e\x72\xe2\x81\xfd\x1b\x1e\xad\xe2\x2e\xd8\x2e\x09\xfd\x6c\xb0\x45\x36\xf6\x37\xaa\xde\x9b\x12\xa8\xdc\xd0\x68\x8d\xa8\x11\x0b\x47\xb9\xcd\xed\x34\x85\x97\x28\xe5\x4f\x64\x76\x7f\x4d\x2d\x85\x4b\xb4\xab\xfa\xfe\x61\x9f\xda\x2c\x32\xa8\xd5\x20\x4d\x7c\x70\xdd\xb0\x06\xe2\xcd\xdd\xa9\x71\x27\xae\x78\xf5\x58\x58\xd3\x46\x95\xc8\x2e\x0c\xe5\x1b\x16\xcd\xe1\xce\x44\xd7\x35\x36\x91\x28\x25\x10\x08\x64\x50\x98\xda\x73\xa2\x12\xcd\xc8\x53\x55\x4d\x21\x68\x0b\x1d\x89\x00\x2e\xa7\xa0\x63\x8c\xb6\xc4\xec\x47\xb4\xe6\x2d\x2c\x48\xb3\x50\xdd\xfb\x73\xd2\x4c\xda\xa7\x4a\x95\xeb\xf5\x7f\xd0\xda\x76\x3d\x08\xaf\x43\x4d\xda\x1d\x6c\x60\x4f\xb8\x4f\x55\x6f\x05\x7a\x3b\x75\x8c\x1d\xd9\x36\x44\x15\x12\x94\xba\x75\x02\x79\x46\x13\x07\x7a\x3d\x12\xaf\x4f\xed\xd4\xd1\xc3\x51\x9b\x99\x0a\xc3\x6c\x4f\x0d\x50\x1d\xd5\xeb\x69\x09\xca\x17\xde\x39\x6c\x63\x84\xf0\xed\x7e\x83\xc5\x3f\xa2\xfb\xc4\x11\xae\x48\xcd\x49\xa4\xc9\xa5\x0e\x6c\x4b\x37\xb3\xdf\xd5\xc8\x9d\xf6\x07\x81\x1f\xe2\x44\x2b\x43\x95\x6f\x0e\xd9\x5a\x77\x9e\x16\x8a\x85\xff\xce\x1a\x99\x14\xb2\x90\x27\x64\x8b\x19\x11\x0e\x9e\x92\x2c\x0c\x33\xc0\x0c\x88\x94\x01\x4a\x27\x0d\x62\xc2\xa7\x26\x65\x6b\xa7\x64\x90\xbc\x96\x31\x0d\x3d\xc8\x5d\x2d\xf4\x09\xa9\xda\xde\xda\x05\x9b\x5e\x86\x42\xde\xa5\x37\xb8\xee\x09\x11\x1c\x4b\x16\x83\x81\x2c\xbe\x10\x41\x61\xf6\x53\x90\xc9\x52\x70\x6f\x28\x0b\x89\xe8\xcb\xb5\x6d\x48\x37\x35\xe4\xd3\x3c\x3b\xf8\x70\x2b\x4a\x27\x09\x63\x99\x67\x85\x64\x23\xbf\x81\x88\xf5\x03\xf3\xbe\xa2\x86\x46\x44\x08\xbc\xb9\x83\x76\x7b\xdf\xf0\x10\x12\xe4\xe8\x43\xd1\x90\x76\x26\xdf\xaa\xe9\xdc\x10\x8c\x76\x9e\x1e\x60\x64\x0b\x9f\xb6\xf0\xd6\xeb\x5b\x52\xbc\x79\x2e\x19\x25\xa4\x9b\xb2\xf5\x4a\x4d\x68\x6d\x1f\x3b\x90\x65\x7a\x30\xbb\x2a\x00\xdf\x54\x04\xf0\x58\xad\x26\x1b\xa3\x9f\xa9\x9c\x10\x76\x8c\x7d\xf8\x4a\x94\x6c\x49\x1c\x70\x67\x67\xae\x2e\x54\x03\x59\x4b\x18\x1a\xd5\xae\x6f\x80\x11\x42\xd4\xcd\x9c\x5a\x27\x4d\xe1\xc7\x12\xeb\xf4\x6e\x03\xe5\x77\xb4\x8f\x48\x94\x7a\x78\x77\xc8\xbc\x43\x2a\x02\xe4\x1f\x6b\x24\x9a\x4f\xf2\x90\x5c\x37\xb3\xaf\x30\xc4\x1f\x37\x1a\x31\xc9\xe2\xba\x27\xd9\x8d\x2b\xc9\x6e\x76\x53\x92\xe2\xc7\xf9\xcd\x61\x61\x2f\xba\xa9\x04\xbb\x05\xea\x2c\x8d\xa2\xf8\xe6\x93\x08\xc7\xfd\x1d\x92\x12\x0f\x8a\x7f\x95\xec\xe6\x56\x7d\x2a\x39\x0d\xfa\x6c\x57\xf5\x20\x33\xdb\x90\x26\x06\x31\x49\x0d\xfe\x0a\xbe\x1e\x25\x59\xb5\x77\x06\xf5\x22\x91\xed\xbe\xcf\x4c\x77\x46\xca\x51\x93\xd6\x8c\xa5\x27\x2a\x50\x02\xce\x42\x26\x37\x5f\x8a\x8b\x4b\x0c\xa3\x14\xf9\x44\xef\xe3\xe6\xe0\x9e\xbd\x96\x58\xf5\xee\xa9\x12\x8a\xbc\xf6\x37\x8f\x9a\x39\xf6\x8c\x66\x5a\x3e\xb5\x03\xd9\xbb\xf5\x9d\xa6\xa6\x64\x18\xb5\x5f\xed\xd8\xec\xb0\x95\x28\xd9\xab\xfd\x02\x42\x8d\x5e\xfa\x58\xe0\xec\xc6\x1a\x88\xef\x8a\x2f\xb7\xc5\xb9\x14\x58\xe8\x76\x8d\x1f\x40\x9f\x85\xe1\xaa\xde\xec\x23\x68\xad\xea\xb2\xbd\xb3\x5f\x61\xf6\x5e\xf8\xc6\xcb\x4b\xc7\x78\x79\x57\x7b\xf9\x92\x50\xa5\x4b\xc2\x58\xfb\xd2\x86\x15\xa0\xed\x1a\x2f\x6f\x1b\xfb\xbb\xe7\xca\xb0\xdc\xef\x35\x57\x03\x86\xf1\xca\x96\xfa\x6e\x2a\x68\xcb\x3b\x7e\xe5\x80\xd4\x19\x35\x48\xea\x8c\x79\xb2\x8a\x96\x34\x86\x8a\xed\xac\xf5\xc8\x32\x7b\x9f\x6c\x2b\xe1\xb2\x2b\x3a\x33\xfb\x93\x9d\x22\x27\x83\x89\x52\x29\x45\x6c\x17\x40\x3a\xa2\x08\x33\x7b\xc2\x37\x8a\x89\xbd\x39\x60\xfb\x3b\x72\xa7\x5d\x12\x69\x58\x73\x8d\x0d\x09\x71\x4b\x85\xe7\x7c\xdb\xd3\x46\x81\x8d\x2d\xad\xa1\x70\x8f\x69\xfc\x59\xad\x86\x84\x93\xed\xd2\x33\xb1\x5e\xc9\x6d\xb0\x51\xc1\x6e\x33\xbc\xac\xa1\xd1\x1c\x66\x98\x92\x13\xa9\x06\x36\xae\x59\x51\xb7\xa3\xc6\x8c\x16\x34\x1a\x7b\x85\xa3\x6a\x5e\xba\x4a\x1e\xfc\xe1\x82\xaf\x8e\xac\xdc\x16\xf2\x99\xf0\xec\x8d\x48\xd0\xa9\x1d\x37\x0c\xaa\xf8\xe1\x7c\xa6\x2a\xc7\xe8\x38\xc7\x76\xc4\x3e\xbe\xf4\xe1\xd3\x50\x23\xff\x7e\xf3\x25\x45\x12\x43\xab\x2d\xfc\x0f\xf7\x9d\xde\x3d\xa3\x1e\xaf\x94\x1e\x77\x90\xe8\xb1\x18\x67\xbd\xd9\xa2\xf9\x72\x90\xec\x8d\x8f\xe1\x1f\x9d\xc1\x70\x73\x49\x38\x11\xef\x53\xbd\x51\x8d\xea\xd1\xf6\x0f\x7e\x42\xf5\x96\xe4\x8b\x6a\xab\x92\x67\xde\x45\x67\x8d\x8a\x58\x9e\x37\xfe\x51\x42\x48\x20\x7b\x27\x30\x8f\x16\xb7\x26\x69\x23\x7b\x66\x61\x13\xf5\x09\x58\x88\xf3\x84\xfc\xb0\x63\x5f\x8f\x53\x4d\x6f\xe6\xe9\x47\x6e\xb1\xf7\x48\x69\x03\x13\x9e\x02\x28\x6d\x58\x03\x8c\x2a\x61\xc0\xd0\x1b\x32\x96\xb1\xfc\x4c\x12\x69\x88\x1b\xe7\x3f\x92\xbf\x5b\xa6\x65\xec\x5c\x89\x17\x77\xfd\x0a\xb8\x3e\x31\x5a\x9f\x4c\x3f\xe4\x12\xbd\x6c\x98\xf3\x88\xa0\x5e\xb0\xc7\x06\xfa\x47\xeb\xc4\x25\xcb\x90\xcb\x32\xd8\xdf\x26\xd8\x91\x4f\x93\x5c\xf8\x5f\xd2\xa8\x6f\x20\x97\xc7\x30\xb8\x14\xf2\x60\xb3\x5b\xc7\x6c\xd6\x7f\x16\x9f\xa8\xfa\x89\xfd\xa2\x44\x79\x3b\x88\x08\x2e\xe3\xad\x0f\xab\xc1\xbb\xf7\xeb\xe4\xea\xbd\x61\x90\xab\x8f\xc6\x57\xe4\xea\x8c\x85\x8a\x73\x32\x65\x5f\xff\x02\xb9\x5a\xb2\x17\x25\xb6\x15\xc1\x82\xa5\xe0\x67\x04\x4b\x6f\x24\x85\x42\xbc\x91\xce\x1a\x28\x6a\x29\x5d\xc7\x10\x7b\x7e\x42\xc4\x5c\x22\x62\x8e\xbf\xd1\x06\xf5\xd2\xb8\x26\x34\xf1\x92\x6b\xf9\xd7\x5d\x12\x92\xd8\xfa\x6d\xef\x5a\x92\x9b\xf6\x9a\x74\xdf\x99\x0b\x2e\x34\x56\xbb\x8e\x8d\x6f\x23\x6b\x2c\x5c\x90\xbd\x77\x1a\xce\x0c\xa6\xe4\x26\x44\x61\x52\x1b\x74\x7c\x09\x89\xa9\x00\xbf\x1f\xbb\x30\x1c\x33\x2d\x53\xba\xf4\x1c\xda\x14\xd8\xd1\x15\x91\x46\x9f\xd6\xbe\x4b\x1a\x1b\x0b\xb8\x83\x4c\xe1\xa4\xff\xbc\x54\xb8\xeb\xdf\x2e\x95\x38\xda\xbe\x73\x2d\x36\xd7\x89\xd4\xfe\x00\xab\x3c\xb3\xb5\x8c\xa0\x06\x02\x83\xcd\x39\xd6\x99\x0c\xc7\xac\xfb\x4c\xc0\xea\xc6\xb7\xe0\x32\xc0\x84\x36\x81\xc3\xbd\x94\x2e\x36\xd4\x55\x83\x2c\xfb\xb6\xf1\xa2\xe8\x7e\x23\x4f\xfe\xa4\x42\xdc\xa7\xb9\xf7\x99\xe0\xd7\x08\x2a\x24\xe1\x9c\xe1\xb1\x26\x0f\x5d\x6a\x2f\xa9\xca\xe8\xfe\x13\xfd\xff\xe6\x7f\x45\x9a\x69\x41\xbd\xc2\xcb\x3d\x2b\xa4\x1d\x4f\x9e\xf2\x4b\xcc\x9c\x6c\xca\xad\x25\xad\x40\x42\x2e\xc1\x25\xf9\x37\x27\x31\x96\xe6\x07\x49\xe2\xaf\x36\x45\xbd\x9c\xda\xd6\xca\x56\xa3\x80\x4b\xb0\xfd\x4e\x6d\x0c\x19\x88\x4a\x01\x10\x4b\x1b\x56\xbe\xd6\x77\x45\x7f\x64\x06\x6f\xf1\xce\x3b\x54\x7f\x24\x44\x50\xab\xbd\x73\xa8\xe2\xcd\x2b\xc9\x17\xcd\x6b\x19\x39\x70\x36\xf7\x14\xb8\x73\x00\x09\x32\x6a\x0b\xba\xc5\x31\x1b\x7a\x41\x09\x79\xcc\x37\x86\x5e\xf8\xa1\xed\x75\xae\x56\x58\x2e\x54\x33\x5e\x9f\xa8\xc6\x25\x2d\xf8\x3d\x68\xe4\x48\x78\x77\xb8\x8a\x6c\x5d\xf9\xcc\xd5\x02\x05\x75\xed\x54\x83\x75\xcf\xc9\x0f\xe9\xb2\xbf\xb2\x29\x9a\x4f\xad\xca\xd6\x43\xcb\xc5\xc6\x9e\x54\xe1\x93\xd7\xa9\x9c\x43\x89\x6a\xc6\x6d\x42\x27\x6e\xcf\x9b\x46\x10\xc6\x6b\x13\xa0\x21\x8b\x40\x93\x76\x6e\xde\x24\xd8\x41\xc8\xb2\x4a\x27\x09\x3c\x97\x2d\x22\xc7\xc7\xae\x53\xee\x23\xd1\x8d\xd1\xe0\xb2\xc9\x8e\xbe\xb6\x68\x88\x02\x4c\xa1\x66\x4a\x02\xbf\x83\x50\x30\xb3\x49\x65\xdd\xc1\x51\x33\x43\x6c\x4c\x03\x2e\x04\x9f\xe8\x81\x6b\x32\xd0\x67\xd2\x8c\x23\x5b\x41\xf1\xd2\x16\x6c\x5b\xd9\x10\xe9\x1f\xd3\xdc\xc7\x73\xb6\x0d\x04\xc9\xad\x35\x10\xcd\xe4\x00\xc1\xd5\x7e\xc4\xff\x77\xd5\x7a\xb8\xa9\xc3\x03\x4a\xbd\x4d\xad\x5d\xd9\x4a\x9b\xfd\x61\xbb\x5b\x42\x16\xf7\x82\x26\xfb\x6a\x43\xbd\xdf\x1e\xd8\xc6\xa6\x41\xef\x5a\xd3\xa6\x5f\x53\x5f\x2f\x21\x99\x40\x3d\x0d\xce\x6f\xf7\xdb\xf3\x8e\xd5\x7a\xfa\x9d\xef\xde\x21\xc1\x2c\x58\x34\x3f\x0d\x60\xfe\x1f\xca\x65\x07\xdc\x0c\xff\x8c\xea\x69\x74\x50\xba\x08\x8c\x1e\xb4\x20\xf4\x66\x2f\xd4\x94\x17\x76\x40\x73\x16\xc1\x87\xc2\x27\xf7\x2b\x7c\x52\x48\x70\x6d\x86\x36\xbc\xd9\xba\x17\x92\x76\x25\x47\xaa\xf1\x56\xc4\x8a\xb5\xc8\x0f\x05\x0b\xbd\xe9\x87\x5c\x9b\xe6\xb1\x56\xe1\x54\xfe\x48\x79\x25\xaf\x89\x1d\xb5\xd9\x3b\xcb\xc8\x04\x88\xfa\x0c\x4c\x7e\xf1\xd5\x46\x34\x5b\xbd\xb9\x57\x08\x71\xaa\xc8\xe7\xb6\x14\x9d\xe6\x08\x08\x51\x12\xa9\x5f\xe8\x81\x4c\xc0\xde\x95\x4d\x10\x4a\xa4\xe2\xbf\xaf\x12\x31\x07\x63\xb5\xb8\x13\x69\xa2\xec\xe9\x2f\xa1\x6c\xfb\x07\x81\x7b\x54\xd8\x9f\x58\x4d\xd4\xfc\x02\xd9\xa0\x68\x6c\xdd\xd9\xcd\x41\xec\x5c\xff\x02\x76\x0e\x3f\x63\xe7\xe8\xff\xc3\xd8\x19\x10\x72\xde\x07\x34\x63\x11\x5c\xfe\x14\x37\x7f\x89\xf6\xb4\x40\x7a\xa8\xc1\x1d\x79\x48\x4f\x6c\xbf\xb6\x7e\x97\x7f\xbd\x7e\x2d\xc5\x34\xc7\xa5\xd8\xf0\xcd\x08\xda\x15\x27\xec\x62\x68\x7e\xb1\x26\x58\xc4\xb9\xb7\x3c\xb8\x88\xc3\x02\x2f\x9c\x81\x79\x51\xf8\xe6\xb5\xbd\xb7\x88\xbd\x9f\xb8\x32\x2f\x64\xb5\x62\x97\xf2\xbf\xb0\x62\x17\xd2\x58\xb1\xcb\x4f\x8a\xd5\x7b\x49\x4f\x96\x70\xd0\x5f\xd3\x9a\x2d\x7e\x93\x9e\x5c\xc8\x83\xf4\xa4\x70\x7f\x81\x9e\x60\x84\x1c\x66\xb2\x4f\x4f\x4e\x6c\x63\x5e\x86\xf6\xc8\x2f\x75\x75\xd8\x81\xdc\xc9\x7a\x73\xdd\x5f\x24\x27\x3f\xef\x40\x35\xe0\xcd\xe5\xd9\x67\x4a\xc2\xbe\x0c\xe2\xa8\x4a\x04\x50\xcb\x48\xae\xe6\x27\xb2\x0c\x29\x05\xea\xf9\xd8\xd3\x35\x85\x44\x5c\x4f\xc4\x6a\xe9\xc6\x1e\x5b\x88\x74\x24\xbf\x81\x87\x1f\x55\xe5\x7e\xde\xa0\xd8\x8e\x83\x78\x5d\x43\x33\x4c\x05\xb3\x6e\x6f\x10\xa1\x65\x78\x61\x3e\x63\xa6\x18\x5a\x5d\xd1\xba\x76\xd2\x1b\x0c\x01\xf1\x20\xa7\x40\x67\xb5\x46\x9d\x33\x82\x94\xde\x59\x57\x60\xc5\x6a\x52\x9d\xb2\x52\xb7\x93\x53\xc0\x88\xda\x09\x4d\x63\x27\xf4\xe6\x1c\xc8\xc2\x28\x3b\x93\x80\xa8\xa7\x84\x7b\xd6\xb1\x6f\xab\xa2\xf3\x5b\x2a\x4a\x1d\x40\xd9\x13\xf2\x45\xaf\xdf\x2d\x6c\x7a\x0a\xfd\x2f\x6f\xbf\xda\x11\xdf\x6f\xab\xa2\x2b\xd4\xda\xf8\x4a\xa0\x1f\x21\x12\x7f\xeb\x7f\x69\x55\xfd\x8e\x0e\x76\x30\x09\xbd\x29\xf1\x58\x4d\xb6\x6c\x64\x20\xc4\x28\x86\x81\x7d\xe9\x59\x03\xd1\x63\x27\x10\x94\xac\x1e\x1c\xbd\x97\x37\x4a\x99\xbe\xa7\x98\x88\xdd\xbd\x36\x84\x3a\x98\x60\x4f\x51\x12\x2d\x90\xaa\xff\x27\x37\x55\xec\x31\xd0\x67\x66\x1f\xdf\x56\x23\x94\x19\x07\x67\xf5\x5e\xa1\x96\x67\x64\xda\xd8\xda\x73\xb6\x69\x34\x50\xda\x40\xd4\x09\x9c\xdd\xad\x77\x08\x98\x1f\x14\xf5\xb7\xb6\x21\x37\x0e\x53\xd4\x5d\x37\x14\xdd\xf9\xb0\xa1\x53\x07\x70\xf4\x8d\x63\xf2\x80\x9c\xc3\x11\xda\x43\x60\xd9\x98\x76\x9e\xbb\xb5\x61\x56\x19\x7c\x54\x42\x63\x66\x47\x4d\x05\xac\x1e\x43\x87\x40\x27\x27\x09\x58\x3f\x41\xf5\x61\x4e\x1b\x05\x91\x70\x1d\x0e\xaf\xa6\x9b\xbb\x57\xc9\x91\xc6\xae\x90\x8f\x4b\x62\x4d\x14\x17\x2b\x9f\xcd\xf7\xe1\x74\x03\xcd\xba\x7f\x45\xc4\x2c\xaf\x1e\x2d\x86\x9c\xdb\x0b\xb2\xb6\x0e\x72\xd2\x71\xfa\x4b\x85\x68\x4d\x79\x85\x90\x73\xb2\x63\xb8\xf7\xd0\x76\xe3\x12\xd1\x5a\x42\x4e\x4f\x8d\x1a\x1c\xac\xc4\x15\x2e\x08\x7b\xcf\x6d\xc6\x2f\x20\xa6\x7f\x0a\xd5\x62\x45\x2d\x3e\x27\xd8\x58\xa1\x9e\xf8\x40\xb8\x13\xc6\x99\xc8\x2e\x43\x31\x5a\x64\xc2\x6c\x27\xae\x81\x5a\xdd\xcb\xa6\x22\x1b\xac\x8c\xc1\x66\xd5\x86\x21\x34\xc6\x3e\x5e\x41\xce\x92\x46\xdc\xb2\x07\x4a\xd9\xe6\x93\x10\xb1\xcd\xc6\xe7\x19\xf9\xc7\x7a\xbb\x9b\xea\xec\xca\x48\xd5\x3a\xb1\x11\xae\x18\xdb\x70\xdc\x77\x43\xe8\xc7\xbc\x8b\xb0\xb1\x5a\xb0\x6a\xf6\x2e\x9c\xb2\x8a\x5b\xa8\x22\x47\xd4\xeb\x7d\x87\xdf\xf1\xca\xab\xd4\x2a\x0a\xe2\xcf\x28\xc2\xa9\xdd\x67\xa3\xf6\xb4\xc2\xef\xc2\x45\x30\xbf\x69\xe7\xc7\x9e\xf7\xc9\xc0\x1f\x6b\x03\x3f\x48\x6e\x0f\xf6\x21\xd2\x94\xe5\xb5\x9e\xdc\xb2\x49\x64\xf3\x54\x6d\x26\xd9\xdf\x99\x64\xc2\x4f\x60\xb9\xdd\x3a\xf0\xbe\x84\x07\x86\xbb\x68\x9a\x85\xd7\x8e\xf6\x10\xb0\x68\xd6\xbe\x96\x3c\xee\xbf\x74\x32\x7c\x6a\xc2\x74\x32\xec\xd8\xbf\x51\xfa\x90\x61\x7d\x53\x1b\xe5\xa0\x7b\xc0\x3b\xb6\x3f\x6a\xcd\x7e\xf3\x10\xdb\xec\xd1\x61\x23\x55\xf9\x9c\x11\x89\x10\x3b\x5c\x34\x54\x7f\x19\xb3\xc8\xf6\xbb\x34\x58\x2f\x16\x3e\x96\xbb\x1a\x88\xbb\x15\x6c\x44\x9b\x30\xcc\x5d\xd8\x42\x91\xc4\x99\xfd\x8d\x23\xa0\xb7\x8d\xcf\x6f\x8c\x89\xba\x4d\x10\xae\x2e\x34\x2e\x36\x61\xdf\x31\x30\x38\xbb\xf9\xd4\x01\xd7\x94\xb1\x4c\x1c\x74\xf4\x46\xe6\x94\xc8\x9e\x97\xbb\x75\x24\xe4\xb1\x34\x37\xaf\x18\x1c\x23\xd6\xeb\x9e\xe8\x7c\xab\x6a\xa7\x9b\xc9\x0b\x58\xad\xce\x10\x60\x0f\x0b\x14\x50\xe1\xd8\xfe\x72\xba\xee\xc2\xde\x38\xe5\x44\x07\x42\x3e\x1d\x9e\x67\x64\x0b\x39\x61\x17\xf2\xa7\x49\x91\x81\x78\x53\x4d\x63\xa0\xe0\x35\x3f\x3c\xee\xb6\xe8\x1e\x6b\x5c\xfe\x21\xcb\x68\x02\x6c\xc5\x84\xec\xb6\x22\xc5\xcf\x42\xfd\x84\xb7\x96\x27\x5e\x96\x2e\xc9\x98\x85\xb3\x73\xd8\x9e\x41\x28\xa4\x94\xdf\x15\x34\x89\x63\x1c\x25\xc1\x59\x17\x90\xfd\x76\xf6\x57\x95\x3d\xe1\x66\xce\x3b\x82\x90\x3e\xee\x7e\xa5\x32\x9c\x46\x83\x5f\x18\x86\xbb\xfb\xef\xb4\xec\x19\x13\x54\x32\xd8\x1d\xc2\xfd\x99\x66\x6c\x60\x9e\xd9\x36\xeb\x14\x44\x6d\xe1\x14\x81\xeb\xb4\x79\xdd\xcc\x38\xde\x11\x7e\x21\x49\xd6\x88\x5e\x29\x49\xf2\xc3\x7a\x47\x5c\x95\x82\x00\xba\x10\x7d\x55\x47\xbe\xe8\x5d\xcb\x25\x16\x7b\xe6\xe0\x90\x4b\x4f\x88\x95\x7d\x8c\x2a\x3f\x6e\xaa\x21\xf1\x01\xaa\x9a\x69\x3c\x55\xbb\x95\x63\x8e\x43\x08\x7c\xbb\xa6\xc1\xe7\x39\xce\x7e\xf0\x8d\xda\x09\x63\xbf\x24\x1a\xf2\xca\x86\x87\xa1\x8b\xc0\x95\xf0\x5a\x31\x7b\xf7\x1c\x11\x11\x6c\xca\x3b\x71\xc9\xaa\x18\x91\xc0\x28\x77\x4a\x42\xe3\x62\x35\x99\x95\xa3\x4f\x46\x61\x88\x6d\xe1\x9c\x2a\x51\xae\x09\x61\x1c\xe0\x1c\x11\x92\xca\x67\x0e\x3d\xc5\x70\x4e\x7d\x76\xfa\x79\xa2\x41\x42\x95\xe8\x46\x14\x76\x82\xf0\xdc\xd6\x35\xa6\x0d\xbb\x62\x3b\x23\x01\x70\x2e\xcb\x40\x3d\x45\xad\xe6\x0e\x87\x80\xf9\x42\x0c\xcc\x66\x29\x90\xc6\xff\x70\xaa\xe5\x3b\x53\x22\x77\xa3\xcf\xb1\x55\x4b\xb2\xc3\x86\x3f\x6c\xf3\x15\x34\x30\x24\x6f\x87\x1b\x4b\x38\x3f\x8c\xf6\xf4\xe1\xb5\x0b\xcc\xc9\x7c\x0c\x1b\xb3\x7f\x69\x47\x4a\x2e\xba\x19\x5d\x02\x8b\x70\xb6\x66\x6d\x7f\x83\x4c\xce\xae\x71\x18\xd0\x22\xa8\x3e\x74\x88\xa2\x69\x9e\x10\x3b\x26\xd2\xd2\xbb\xac\xc2\x86\x71\xe8\xcb\xff\x4e\x8d\x06\x37\x66\xbf\x17\x36\x42\xd6\x80\x4d\xc1\x35\xfa\xa5\x52\x8f\x42\x8a\x27\x11\xa9\xf0\x88\xe0\x17\x21\x8e\x2f\xca\x5b\x73\x3c\xb2\x14\x55\x5a\xdf\x1a\x56\x57\x0c\xd6\x32\x61\xa0\x7f\xf2\x27\x37\xc9\x5e\x78\x8b\xc5\x3d\x2e\x2d\x37\xf2\x3e\x85\xf0\x7a\xc0\x80\x28\x33\x1b\xfa\x6e\xfb\xf4\x2b\x03\xa2\xbb\xb3\xe7\xce\xaf\xef\x2f\x36\x2e\x52\x80\xb4\x7f\xa2\x66\xee\xb4\xaf\x3f\x6d\x31\xd9\xf9\x21\xb5\xc3\xc5\x27\x8b\x00\xd9\x4f\x30\x44\xd9\xbf\xbe\xb1\xca\x28\xd2\x36\x88\x33\xae\xdf\xc8\xc8\x07\x45\x6d\x47\xd7\x0d\x32\xec\xc7\x1d\x52\xc5\x3a\xfe\x89\xa3\x75\x91\x9a\x56\x3e\x2f\x03\x16\x3d\x71\xc2\x71\x6d\x58\xd1\x1b\xab\x29\x3e\xec\x7e\xfc\xa5\xaa\x3d\xbb\x33\x82\x86\xe7\x77\x50\xe4\x1b\x46\x59\xf1\xa5\xeb\xf5\x50\xbc\xf1\x2f\xea\x29\xd1\x9d\x11\xe4\x52\x76\x3a\xd8\xef\x74\x76\x67\x94\xf1\xe0\x58\x9d\x51\x50\x9e\xd6\x95\x18\x9c\x3d\xae\x6b\x42\x1f\x87\x1d\x87\x89\x7c\x85\x18\x8f\x15\xe9\x9c\x78\xda\x8d\xd8\x14\xf2\x01\x5d\xec\x29\x01\x7c\xdc\x6d\x6b\x30\x7f\x6f\xc2\x7a\x53\xae\x58\xba\x7c\x3c\x10\xb9\x9c\x18\xd1\xd3\xa2\x47\x98\xe4\x6d\xa5\xe9\xa7\x34\xbd\xa7\x59\xe9\xd3\xee\x09\x77\x42\x61\xa8\xff\x68\x54\xcb\x1b\xab\xca\x0a\xac\x17\xb7\x24\xcc\x9e\xde\x6a\x65\xee\xcc\x31\x98\xbd\xe2\x6b\x71\xb9\x30\x43\x21\xef\x8a\x32\xf4\x56\xb1\x15\x33\xec\x4c\xf4\x4e\x3c\xa5\x7c\x2d\x64\xbc\xbf\x94\xee\x53\x6d\x25\x07\xbc\x86\x2b\x75\x77\x2b\x13\x45\x26\x46\x97\x36\x3c\x07\xed\xef\x7b\x03\x68\xae\x8d\xe6\xe4\xfd\xcf\x06\x70\xc1\x03\x58\x7f\xc2\xa5\x3e\x05\xe6\xde\xa4\xb6\xb0\x5a\x62\x78\xa5\xfb\x3a\x10\x48\xe3\x56\x3a\xca\xa5\x49\x6d\xbb\x8c\xa0\x91\x1a\xad\x6f\xa0\xab\x92\xe2\xe0\x47\x6f\x9b\x55\x70\x7a\xf9\x14\x4d\x7c\xf8\xd6\x5f\x04\xe3\x18\xdd\x16\xbf\x1f\x8c\xe3\x26\x5a\x52\xce\x49\x01\x6e\x98\xf0\xf6\xee\x41\x4b\x41\xf5\x80\xb8\x57\x3e\xb4\x67\xfd\x16\x6d\xc4\xe1\x35\xa5\x03\x78\xe6\xc2\xe8\x8e\x0e\x63\xd5\x26\xd5\x7a\xa1\xbe\xd7\x4d\xe3\xb5\x51\x71\x07\x67\xb1\x30\x37\x75\x46\x47\xf9\x1e\x29\xc0\xf7\x29\x25\xca\x36\xb3\xaf\x4a\x09\xb7\xda\xd2\xfd\x9d\x1a\x4b\x66\x0f\xad\x96\xb8\xb0\xcb\x48\xa2\x6f\x8e\x21\x1f\xd3\xc0\x2a\x75\x80\x16\x5f\x76\xea\x8b\xff\xc3\xd3\x73\xf0\x45\xef\x4a\x37\x33\x73\x4d\xad\xc2\x20\x90\x7a\x69\x56\x7c\xf0\x48\x4d\xdc\x08\x8d\xa5\x4d\xdf\xfd\xce\xd6\xbb\x8a\x05\x6e\x5d\x73\x25\xdf\xe1\x65\xdc\xee\xef\x43\x8f\x0e\x95\x2b\x11\x10\xb9\x13\x5a\x70\xc5\xb6\x6e\x34\xf0\xbd\xf2\xfc\xfa\xec\x96\x54\xcd\x05\xde\xfd\xfd\x98\xb2\x6e\x19\x53\xb6\x74\x0d\x88\x6d\x6f\x19\x95\xca\xd8\xe6\x0d\xec\xbf\x7d\x3a\x37\x91\x42\x0d\xfa\xaa\x59\xe4\x06\xe8\x0a\xd1\xa4\xb3\x7b\x77\x75\xc4\x3d\xc6\xc8\xcf\x55\xa1\x3b\xa9\x10\x4f\x51\xdf\x6b\x88\x6c\x91\xdc\x0b\xe1\x1f\x2a\x04\xa9\x2f\x18\x42\x1c\x87\x88\xbc\x51\x6f\x8c\x15\xa1\x66\x23\xf4\x7f\x16\x20\x77\x51\xd2\x10\x6f\x42\x07\x87\x93\xbb\xaf\xa9\xc6\x19\x53\x0d\xae\x63\xa2\xe6\x5c\x61\x76\xbb\xcf\xd4\xe2\x93\x1e\x44\xde\x1b\xff\x56\xf5\x00\xb1\x70\x7c\x7a\xa7\x07\xd7\x86\x4d\x45\xfd\x14\xf0\xe1\x9e\x91\x9a\x11\x5c\xb5\xac\xa1\x70\xaf\xe5\xca\x36\xdb\xfe\xb9\xd8\xad\x04\x4f\x87\x0c\x18\xb5\x18\xc9\xd6\x2b\xb4\x90\x03\xf5\xe5\xa9\x4d\x87\x01\xca\x0e\x3e\x4b\x52\xda\x1b\x51\x6f\xb2\x8a\x11\xf1\x95\x6c\x4c\x22\x69\xdc\x22\xc1\xa3\xe5\x8f\x3e\xc9\x1d\xbe\x90\x9d\x73\x4c\xfa\x9d\x91\x57\x0a\xf9\xb2\x82\x07\x5c\xf5\xf2\x08\x7b\x98\x92\x80\x9e\xaf\x50\xf3\x47\x29\x6d\x78\xb1\xb9\xad\x7a\x38\x2f\x3a\xb3\xe3\x96\x35\x10\xd1\x0d\x05\x5c\x5e\x7a\x9a\x35\x5d\xb9\x88\xf2\x37\x82\x86\x4d\xb2\x69\xc8\xda\x30\x1c\x9b\x07\x4c\x53\x5b\xf7\xac\xc6\xbd\x26\xf9\x24\x58\xb8\x7b\xe7\xe2\xf9\xf8\x32\x0c\x47\x1a\xd3\xea\xef\x5c\x93\xc4\xef\xe5\xce\x7e\xff\x19\x8e\x54\x1b\x16\x2d\xb2\xb7\x27\xd8\x2c\xb4\x14\x8c\x9d\x1e\x4e\x4f\x23\xa0\x01\xd1\x2b\xcc\x6a\x60\x9b\x40\xd0\x75\xdf\x92\x6a\xf0\xa5\x57\x01\x32\xc6\x81\xe8\x86\xb9\x7d\xdd\xf8\x8b\xe9\x92\x88\x36\x5e\x54\x39\x1e\x64\xe1\x1c\xac\x42\x84\x56\x78\x00\x00\x22\x42\xbc\x44\x72\xa7\x90\x48\xd9\xff\x75\x46\xf2\x5c\x98\x78\xfc\xa8\xb5\x17\x47\x52\x38\xfc\xd6\x37\x1b\x16\x7d\x5f\xe1\xe0\x0c\x90\x4d\x29\x1d\x40\xf4\x75\x14\xca\xb9\xb1\x98\x7f\x35\xbb\xc4\xa1\x91\xc4\xcd\x72\x76\xee\xd6\xc1\x0c\x30\xae\xee\xf1\xa1\xfa\xc7\xb7\xc6\x54\xf7\x27\xe0\x8b\x6e\xe2\x7e\x07\x29\x7a\x73\xcd\xc1\x66\x37\xec\x86\xf8\xe5\xf1\xe1\x5c\x7f\x71\x6f\x24\x0e\x71\x0e\xd5\x48\xe8\x18\xb0\xf7\x43\xc9\x12\xdd\xb5\xe4\xde\x57\x8e\xb1\x6f\xbf\xd4\x4b\xf9\x54\xec\x2f\x62\x3f\xb6\xf8\xa2\x65\xe4\x63\xd9\x47\x07\x54\xb9\xa6\x03\x9b\xde\xc9\xdd\xe1\x7e\x7d\xd1\x5d\x38\x6c\x37\xd8\x4a\x13\xab\xf9\x60\x1a\xb9\x7b\x10\xa5\xe3\x91\x2e\xcc\xb8\xfc\x46\x13\x89\xec\xf5\x2d\x19\x9d\x3f\x9f\x07\xaf\x8f\xe6\x9a\x76\xcc\x78\xeb\xd5\xf0\xf7\x1e\x6d\xcc\x5b\x07\xaa\xae\x89\xed\x7a\xa8\x33\xb3\x0b\xdf\x18\x08\xce\xa2\xb6\xdf\xc0\x78\x3f\xb0\x27\x29\xa4\x91\x8d\xbc\xf0\x28\x5c\x91\xc0\x9f\x7c\x0e\x04\x54\x84\xe2\xe1\x82\x95\xf2\x40\xf8\x74\xa2\xc6\xdf\x41\xf9\x67\x13\x28\x68\x21\x0e\x85\x76\x2f\xc8\x94\x43\x18\x33\x97\xa8\xd7\x4d\x60\x73\xbd\xa0\xa3\x08\x6b\xfb\xa3\xac\xa9\xde\x0e\xc8\x33\x14\x9b\x13\x1b\xd2\x7c\xd8\xfb\x35\xbf\x35\x3b\x49\x41\x6b\xaf\x4c\x2a\xdc\x5d\xdd\x12\x67\x68\xab\x1b\x3a\x15\x39\xa0\x35\x44\x4c\x92\x5c\x78\x15\xb6\xe0\xec\x46\xf7\x8d\x8c\x2b\x4f\x7c\x77\x41\xe2\x03\xf2\x46\xf4\x2e\x69\xa7\xb4\x56\xe8\xf5\x1c\x4b\xbb\x53\x4d\x68\x51\xe0\xe2\x56\xc1\xe7\x5e\x41\xc6\x01\x9d\x1c\x93\xe1\x7e\x06\x4b\x2f\x69\x69\x91\xcd\x91\x67\xe4\x2f\x4b\x1d\xf3\xee\xd8\xab\xea\x9d\x34\xc0\x2f\xda\xc2\xef\x50\x60\xe1\xe9\x0d\xc5\x4d\xdf\xfb\x3d\xed\xf6\xbc\x6c\xbc\x54\x3c\x88\x4e\x8d\x75\xb2\x7d\x60\xed\x71\x16\x18\x99\xc3\x4b\xc5\x58\xbe\xbb\x97\xe4\xc0\x72\x0f\x38\xb0\x2e\x25\x1b\xf8\xc9\x76\xc4\xce\xe1\xbb\xaa\x6d\x39\xb7\x4f\xb1\x82\x7c\xc0\x8c\xad\x08\x21\x72\x11\x58\xe5\x41\xcb\x2b\xb0\x4e\xd1\xdb\x21\x15\x50\x4a\x72\x7a\x46\x06\x08\x9d\x72\x01\xed\xf7\xb2\x7b\x55\x63\x66\xc3\x0f\xd9\x33\xcd\x0e\xf2\x43\x72\x33\x7d\x00\x5f\xc9\xfe\x4d\xf3\xc8\xd8\x67\xea\xb3\xbc\xd7\xad\x96\xbb\x25\x81\x0f\x9b\x9f\xc4\x20\x34\xef\x4e\x39\x72\x98\x44\xdc\x6b\xc5\x78\x1c\xc1\x3d\x5e\x61\x6d\x33\x42\x1c\x22\xd1\xa0\x4d\x83\x4b\x9b\x69\xd3\x37\x17\x8a\xce\x50\xc8\x97\xa2\xbe\x00\xe4\x0b\x61\x61\xb9\xe6\x0b\xe9\xc3\x15\x02\x49\x13\xb6\x30\x9e\x30\xef\x60\x13\x5e\x32\x96\x6c\xcf\xe1\x87\x3c\x26\xed\xb1\xf1\x45\xfb\xda\x5e\x1d\x38\x7a\xf0\xaa\xf6\x7f\x9b\x4c\x45\xf7\xd5\xf9\x6e\x45\xc4\x7d\x9d\xeb\x6a\xa5\x0f\x44\xb9\x42\x1e\xdb\x0b\x2c\x35\xac\x58\xcd\xf8\x06\x4b\xbd\x70\x2c\x57\x9e\x9e\x23\x0d\xd7\x46\x16\x3a\x6b\xc3\xff\x41\xb9\xb3\x7e\x9c\xc9\xde\x46\xed\x5c\xf1\x83\x0f\x8a\xe2\xdc\x5a\x20\xdc\x63\x79\x0a\x1c\xa7\x48\x86\xb8\xf5\x73\x22\x6d\xe0\x1b\x84\x29\x3e\x87\xc2\x27\x12\xeb\xeb\x48\x28\xe8\x3e\xd2\x01\xaf\x13\x0f\x51\xad\x74\xc2\xb1\x35\x22\x25\x46\xad\x99\xbf\x95\x6f\x8d\x2f\x4c\x64\x6b\x88\x59\x6f\xa6\xb0\xca\x5e\x39\x32\xb2\x79\xfd\x2b\x1c\xc8\x4f\xef\xac\x2a\xb2\x51\x8d\xea\xd2\x5e\x73\xa8\x67\x57\x34\xef\x36\x7c\x18\x4f\x9f\x64\x83\x25\xfe\xc3\xe6\x03\x6d\xb5\xa9\x91\x65\xdb\xdf\xd4\x39\xd3\xdd\xe7\x7a\x3d\x2d\x57\x60\x77\x0d\x84\x9f\x35\x22\x35\x9a\xb8\xd1\xb7\x7c\x31\xf3\xfc\x26\x27\x59\x48\x6d\x21\x1e\x93\x16\x72\x4f\x21\x85\x55\xda\xe2\xed\xd8\x54\xb3\x24\x0e\xfd\x86\x8a\x0f\x29\x21\xd8\xc6\x16\x5a\x4d\xa9\x2a\xc2\xa0\xd2\x8e\x30\x0c\x45\x4b\x29\xff\x8f\x9b\xf9\x12\xe1\x53\x2b\x29\x64\x80\xd0\x75\xb2\xc6\x0e\xc9\x37\x17\xe8\x6b\x0e\x50\x68\x5e\x69\x5f\xbd\x2a\xbe\x2d\x2b\xf6\x0a\x9b\x48\xd3\x8a\xc0\x7d\x62\x9f\x2a\xe0\xc9\xe3\x03\xac\xb1\x4c\x3d\x72\x46\x38\x3a\xe6\x83\x16\x6d\xcd\x84\x76\x4d\x43\xc8\xcb\xec\x9c\xc4\x4d\x05\xd8\xd6\xb4\x8a\x12\xa0\xc0\x88\x87\xd2\x64\x37\x7a\xb1\xda\xe2\xd1\x27\x33\x81\x74\x6b\xb6\xdb\x1f\x4d\xa5\xd3\xca\x39\x7b\xf6\xc1\x5b\x8d\x87\x91\x2d\x3c\x9a\xe9\xce\xfe\xa8\x3d\xe3\x98\x53\x72\xed\xad\xed\x1c\x7e\x49\xb8\x57\x4f\x0f\x57\x6c\x09\x7f\xa1\x09\xc0\xec\xce\x6a\x0b\x97\x50\xa7\x75\xa3\x73\xb7\x88\xb6\x06\x98\x0e\xb2\xf5\x2e\x25\x98\x0f\x5c\xf2\xcd\xad\x53\x85\xdb\x7c\x27\x24\x1c\xa1\x72\x19\xbe\xc4\x97\xf4\x8f\x34\xda\x63\xb7\x85\xf6\x49\x0f\x96\xc6\xe9\xf0\x73\x3a\x12\x83\x18\x5d\xa5\x50\xaa\x21\x39\xf0\x79\xc0\xd2\xd3\x3d\x6b\xaa\xd9\xbd\x9c\x2b\x3e\xd1\x7d\x82\x81\xac\x09\xdf\x25\x60\x4b\x12\x30\x3c\xf1\x2e\xc9\x44\xfe\xb7\x5b\x26\x70\x0a\xaa\x37\x4e\x75\x23\x96\x76\x7c\x03\x7e\x43\x3a\xc1\x5c\x72\xd5\x53\x98\x85\xde\xef\xd8\x45\x73\xad\xed\x0e\x8a\x16\x46\x94\xa0\xa3\x03\xba\x58\x0e\xa2\xa0\x45\x1f\xc1\x31\xa3\x06\xa1\xc0\x3d\x29\x43\x81\x11\x42\xcf\xf9\x5d\xd4\xee\xe5\xc4\x42\x9f\x4f\x14\xcb\xb9\x8d\x5a\x44\x61\x90\x8c\x85\xce\x38\x7b\x48\xe7\x03\x54\xa9\xa7\xf3\xf1\x29\x83\x9d\xd2\xa4\x67\x1d\x73\x02\xb9\x43\x41\x4d\xe7\x20\x78\x7d\x60\xf3\x58\xc0\x0f\xd1\xec\xbc\x35\x0d\xc0\x3c\xd6\x01\x93\x01\x30\x90\x8b\x48\x53\x76\xd7\x92\x5f\xf8\xa2\x75\x72\xef\xc0\xe5\xc3\x20\xe2\x90\x23\xb6\xfa\x57\x29\x86\xb6\xd8\x21\xaf\xbe\xb1\x62\xb4\xf1\xdc\x56\x6d\xb1\xf6\xc6\x04\x11\x37\xa6\xc6\x17\x7b\x6b\xf5\x0a\xfd\x87\x7c\x21\xee\xb1\xad\x57\xaa\x29\x7a\x58\x1f\xd2\x70\xc4\x68\x05\xe1\xe4\xf8\x06\x7e\x25\xab\x2d\x6e\x04\x1c\x78\xdd\xe3\x1b\x52\xc4\x49\xbf\x9d\xdb\x55\x21\xa9\x49\xaa\xb4\xcb\x41\xdd\x2b\x1a\xfd\xa0\x03\x8e\x34\xa4\x53\xcb\x6a\x60\xd7\xc8\xc3\x96\xdf\x23\x6a\x6c\x28\x36\xce\x5c\xb2\x34\xe7\x09\x11\x9c\x52\x06\x51\x3e\xe2\xfc\x8e\x04\x61\xb4\x11\xda\xf7\x56\x4f\xb8\x85\x71\xba\xbe\x24\xba\x24\xa4\x48\x9d\xa0\xd0\x8f\xd4\xd6\x2a\x1c\x8a\xbe\x7f\x67\x49\x6b\xf0\x71\xbb\x9f\x33\xef\xb3\xae\xf4\x59\x7c\x02\x3b\xdb\xd5\xd8\x19\x8b\x6e\xe0\x63\x90\xea\xf8\x51\x6b\x44\x96\x9c\xe7\x7d\xe9\x50\x74\xe9\xf0\x7e\x37\xa4\xe1\xd6\xa5\xc7\x33\x6c\x9f\x95\x7d\x7e\x87\xad\x7b\x67\x85\x42\xae\x41\x90\x0a\x35\x7f\xff\x49\x07\xc9\x7c\x97\xed\xcd\xad\x62\x67\x33\x3b\x91\xd5\xac\x5c\x1c\xab\xf7\x5f\xa5\x91\x94\x82\x8c\xc1\x8b\xea\x60\xff\xdd\x12\x11\x8b\x08\xb0\x42\xc2\x95\xde\xc9\x2d\x53\xba\xa1\x42\x2d\x24\x5e\x3c\xbd\xad\x57\xe8\x89\xf6\x07\x22\x1c\x77\xea\xc9\xdc\xb9\x05\x27\xa8\xc1\x35\xfe\x0c\xd7\x1a\x30\xb1\x46\x1e\x38\x12\x00\x7e\x58\x56\xf8\x3d\xe0\x1e\x06\xde\x95\x73\x08\x78\x1b\xe9\x9d\x11\xf0\x22\x0e\x20\x52\x43\x6f\x2a\x8c\x7a\x95\xff\x2c\xc4\xba\x94\xc3\x20\x20\x07\x8c\xaf\xd3\x6e\x46\xb5\x31\xea\x54\x2b\x24\xd2\x5c\x60\xeb\x26\xa0\x5a\xdf\x29\x18\x71\x07\x73\x94\x22\x07\xd7\x92\x31\x59\xb2\xed\xb8\x9e\x55\xae\xfd\xac\x66\xd1\x58\x74\xf6\xb1\xf9\x3b\x95\x34\x25\x4c\xad\xdd\x3d\x9c\xe6\x60\xad\x37\xaa\xd4\x6e\x1a\x55\xaf\x29\x6f\x0e\xfc\xf0\x39\x87\x5c\xa1\x5a\xf3\xfc\x5e\xad\xc1\xd2\x3e\x43\x4a\xb5\x36\x67\x34\xed\x91\xc8\xe0\xd2\x09\xa2\x36\x71\x43\x13\xf0\x2b\xd9\xeb\x01\x69\x5f\x54\xc3\xd7\x98\x79\xbb\x4c\x81\x08\x60\x5f\x91\x10\xd6\xc5\x31\xd6\x2e\x19\x1a\xe7\x0c\x5f\xcd\x56\x03\x32\x4e\x30\x91\x9c\xc9\x3e\x87\xbf\x28\xce\x0b\xad\x8d\xe8\x0c\x9f\x5b\x27\xfb\x43\xfb\xf2\xbe\x46\x6d\x7e\xd8\xa5\xe9\x93\x44\x5a\xb0\xcb\xe6\x90\xcc\x7b\x30\xa1\x77\x85\x77\x2e\x25\x04\x7c\x32\xa7\xc3\x24\xf0\xd1\x62\x1c\x2c\x0d\x2e\xfe\x0f\x44\xb8\x21\x28\x04\x0a\xe9\x69\x57\x09\xcf\x6b\x7b\x45\x70\x7e\xa4\x8c\x38\x3a\x7b\x49\xf7\xc7\x1d\x45\xf3\xc8\xeb\x3b\x7d\xeb\x09\xef\x11\x6c\x8f\x72\xd6\x91\x56\x4c\x07\xdf\x1e\x11\x1c\x78\xee\x68\xbf\x06\xfa\xee\x52\xca\x90\xaa\xee\x77\x3e\x6c\x4c\x3e\x0a\x52\xe3\xee\xe1\x09\xb9\x54\x72\x84\x1b\x03\x97\x57\x77\x87\xf8\x0c\xa8\x10\x8f\xfb\x58\x29\x0e\xa3\x9d\x1d\xb5\xb4\x95\xd7\x35\xbc\xcb\xa3\xf3\x26\xf2\xdb\xea\xcc\x4d\xf7\xbc\xeb\x04\x14\xe6\x1d\x4e\xa3\xbd\x36\xc8\xf0\x2f\x50\x97\x73\xed\xa4\x0d\xcd\x1a\x28\xa1\x16\xa7\xea\xc9\x3d\xb3\x6a\xc1\xfe\xcd\x76\xe5\x39\x8e\x29\x24\xa0\x79\xe2\x56\x5e\x62\xee\x3c\xef\xd0\x66\xa1\xa8\x62\x77\x6d\x5f\x22\x84\xf1\x04\x12\xc0\x35\x04\x08\x68\xf2\x85\x1e\x2f\xa2\x45\xa0\xe7\xc2\x1b\xca\xca\xff\xae\x65\x3e\xaf\xd5\x66\x0a\x83\xb3\xbf\x12\xb4\xac\x7b\xcc\x66\x4d\x8a\x2c\x78\xc1\xee\x9b\xf3\xd1\x3d\x92\x27\x9f\x0b\x0e\xea\xa0\x9f\xe6\x89\xad\x96\x2c\xb1\x79\x36\xcb\x36\xc7\xe6\x7a\xe2\xda\x76\x80\xe1\x34\x9c\x0d\xaa\x2f\x3a\x04\xf3\x65\x07\xc8\xda\x13\x4d\xf2\x7b\x38\x82\xba\xf0\x90\x1a\x49\x75\xf3\xd8\xa0\x83\x31\xaf\x74\x4a\x59\x9e\xda\x97\x1d\xa3\xfd\xee\x99\x5d\xa2\xf3\xc8\x48\x32\xd8\xde\x1e\xac\xd5\x15\xa2\x77\x0f\xa7\x18\x61\x7d\x6b\x77\xb0\xda\x48\x88\x00\xb9\xbd\x9d\xca\xaf\xd4\x9d\xdb\xe4\x2e\x27\x5b\x8e\x68\x5f\x7f\xd9\x81\x6a\xb9\xcd\xe7\x2a\xb7\x90\x67\xb0\x04\xa3\xcb\x8e\x35\x10\xab\x5b\x3a\xa6\xb6\x38\xe0\x89\x46\x5e\x3c\xed\x89\xe6\xa6\xc9\xc3\x14\x26\x6d\x63\xbd\xe8\x2c\x74\xe1\x11\x6f\x7a\xb5\xcf\x8d\xe3\x10\x9c\xe4\x07\x2e\x98\x3a\x15\x96\x1f\x36\xd2\xe1\x0d\xe7\x86\xf0\xe1\xe2\x10\x16\x0c\x06\x2f\x27\xf7\x3a\x84\x85\xb8\xd9\x2d\x9d\xc0\x96\xaf\xb7\xd5\xad\x68\xe7\xec\x53\x20\x7d\xbd\x3d\xa3\x9f\xde\xb9\x6d\x0d\x45\xf3\x18\xac\x99\xf4\x83\x57\xa4\x2c\x66\xe9\x34\xdc\x12\x6d\xba\x54\xaa\x29\x32\x10\x32\x31\x7e\xb3\x17\x12\xd1\x4e\x38\xf0\x84\x40\xa1\xdc\x46\x1e\xda\x44\x22\xe9\x25\xe2\x3e\xbe\xdb\x66\xcf\xcb\x36\x6a\x9e\x93\xbf\xcf\xdf\xba\x64\x39\x1a\xbc\x12\xbc\x46\x89\x12\x90\x5f\x1b\x6b\x3b\x55\x14\x57\x8c\x92\xae\x01\xd3\x5e\xdc\xde\xc3\xfe\x9e\xf0\x38\x57\xf0\x19\x62\x93\x52\x64\xbb\x5b\x77\x75\x45\xb5\x44\xf5\x4d\x93\x7b\xd6\x40\xb8\x97\x52\x87\x91\x60\xaf\xa6\x36\xb9\x2b\xe5\xb9\x5d\x2f\xa7\x3d\x2c\x77\x76\xd1\xd1\x31\x01\x23\xd1\xed\xe3\x90\x65\x3d\x16\x80\x0e\xb8\xc2\x78\x92\xb4\xeb\x98\x30\xac\xf2\x80\x02\x24\x4b\xcc\x36\x2b\x67\x37\x10\xed\x6b\x79\x0e\xb3\xd1\xc5\x7e\xab\x1f\xb5\xd0\x21\x9a\x86\x24\xbd\xd6\x75\x0e\x9c\x35\x9c\xdb\x6b\xd0\xaa\xbc\x4b\x9d\x5c\xc2\x3a\xfe\x26\x29\xc1\x82\xcd\x61\x31\x3c\x36\x4e\x03\x4d\xfa\xe1\x82\x2b\xda\x60\x32\x6d\xd1\xde\x3a\x38\x00\xd6\xfe\xe6\xa3\x1a\x21\x2e\x59\xc5\x45\xfb\xf5\xb6\x3a\xdc\xca\x87\xf7\x1f\xf6\xd9\x7b\x0e\xae\x70\x5d\x0b\x51\x82\x81\x5c\xb2\x79\x86\x7d\xfb\x38\x9e\xa9\x6b\xee\xdc\x4a\x82\xf6\xce\x1e\x94\x72\xb6\x95\x73\xf4\xbb\xef\x79\x07\xdb\x21\x5f\x84\xda\x06\x4d\x32\x5d\xdf\xd2\x79\x36\xb1\xb0\x0d\xf5\x3f\xdc\x9a\xc8\xd4\xdd\xa9\x7d\xe1\x9d\xda\x55\x14\x9f\xe6\xf3\x80\xfa\x03\x84\x3c\x0a\x6f\xe9\x63\xbf\xbc\x12\xe7\x73\x91\xec\x7c\x89\xfc\x64\x93\x63\xc8\x19\x38\x84\xfc\x46\x6e\x86\x09\x12\x12\xa9\xb2\xb6\x68\x3d\x59\x4d\x71\x7b\x6e\x2f\x5b\x68\x02\x0c\x77\x04\x7a\x3a\x86\x1d\xa8\x8d\x53\xb8\x24\x6a\x3a\x03\x44\x68\xfa\x42\x3e\x50\xd2\x9f\xf6\x3d\x5b\x20\xf5\x82\xe2\x95\x2e\x8d\x37\xbf\x05\x7f\x53\xd8\x45\x9a\x9b\xf0\xe7\x34\x56\xed\xe3\x5e\x94\x1e\x6f\x05\xe6\x59\x8b\x4e\x47\xbf\xda\x1f\xfb\xb0\x68\x09\xb9\x75\xb5\x2f\xbf\x7c\xc3\x03\x2c\x22\xa4\x1f\x8b\xd1\xf2\x09\xf1\x05\xb8\x1e\x9a\xd0\x24\x7b\x9a\x73\xbb\x2c\xda\x60\x23\x9c\xd7\xe6\x8a\x33\xb0\xc5\x3d\xa7\xb1\x6f\xd3\xee\xf2\x85\x98\x6e\xee\x2d\x5f\xf8\xb7\xe7\xdd\x43\x3b\xef\xba\x65\x4c\x20\x58\xe2\x9c\x96\x5a\xd6\x76\x9f\x31\xb1\x16\x59\x30\x93\x46\x64\x01\x4e\x9a\xeb\x9d\x53\x9b\x6c\x66\xd7\xcd\xbb\x8f\xf0\x4b\xb4\x91\x48\x03\x06\x35\x5f\x88\xa7\x4c\xe1\xb6\xbc\x65\x85\xe8\x1b\x64\x97\x8c\x8c\x3d\x8f\x34\x88\xd5\x81\x68\x76\x6a\xc6\xa3\x70\x48\x16\x83\x39\x43\x45\xd2\xf9\x34\x12\xd1\x7a\x6f\x2a\xad\xf1\xc3\x3e\x06\xd9\xaf\xf6\x4f\xf7\x1b\x72\xf4\x9e\x76\x8d\xd8\x59\x4e\x75\xfd\x4a\x7b\x6e\x84\x76\x95\x70\x54\x4b\x7f\xec\x9d\xf2\xd9\x2f\x4f\xf4\x1e\x79\x84\x73\xdb\xd8\xc4\xb0\x24\xf7\x16\x26\xbf\x1c\xfd\x06\x3c\xb8\x56\x7d\x22\x15\x74\x28\x55\xbb\x46\xdb\xbb\xba\x84\xd8\x14\xed\x63\x6d\x15\x7f\xbd\x85\x55\x1c\x72\x06\x65\x91\xf8\x8c\x98\x04\xa1\x81\xf0\x32\x3a\x8b\x15\xdf\x91\xb7\xff\xce\x7f\x23\xe4\x42\xf6\xc2\xd8\x96\x87\x62\x0e\xfd\x0f\x1a\xff\x53\x56\xe6\x13\x51\xca\xdd\xf2\x8e\x04\x94\x2b\xf4\xf4\xad\xab\x17\x4e\x4e\x8f\xbb\xb5\x50\x01\x3a\xb6\x7f\x0b\x01\x90\xa3\x08\x5e\x8d\x28\x82\x1c\x2e\x75\x75\xdd\x38\x81\xcb\x9b\xcc\xc6\xf7\x9c\x65\x40\x20\xe4\x7f\x4d\x41\xbb\x83\x57\xc2\xe3\x31\xb6\x04\x89\x48\x85\xbc\x24\xe3\x2a\x99\x7d\x9e\xd8\x35\xf7\x1d\x21\x5b\xcb\x1b\x98\xc2\x54\xe3\x0b\x09\xcb\x39\x45\x2c\x19\x3a\x6c\xfb\x93\x36\x05\x2b\xcb\xdc\xa0\xb3\xb1\xa6\xb3\xec\x78\x7b\xc3\x39\x8e\x1d\x4c\x2e\x57\xd5\x0c\xce\xed\xd7\x56\xe5\x33\xd4\x51\x55\x0f\x88\x62\x51\x50\xec\x41\x2c\x85\x3f\xb5\xb7\x41\x42\x9a\xec\xc1\x1a\x88\xf7\x1b\x3a\xae\xb8\xbd\xd1\xa2\xd1\xc9\x2d\x1c\x2f\x3d\x21\x42\x7a\xf7\xdd\xbe\x54\xc8\xb7\xb3\x0f\x24\x2e\x51\xb3\x7a\xe0\xa8\xe5\xa6\xa2\x4e\xf2\xf1\xb8\x65\x46\x95\x9d\x34\x59\x94\x87\x9d\x52\xdd\x2f\x6d\xe1\x15\x92\xef\x73\x62\x7b\x3a\xfb\x0e\xbf\x84\xb5\x69\xe2\xc0\x00\x22\x2b\xfd\xcf\xcf\x7d\xb6\x98\xe6\x0e\x85\x5a\x3b\x7c\x8b\x1e\x44\x6a\x57\x3d\xb4\xd4\x72\xe9\xe3\x18\x58\xa2\xab\xc6\x81\x51\x46\x76\x7d\xf0\x34\x38\x6f\x41\xd6\xb4\x53\x9b\xdb\x67\x93\xc0\x9b\x3d\x6f\x9b\x75\x49\xde\xab\x89\x7f\x33\x9b\x8e\x06\x05\x0a\x6f\xe8\x63\x34\xe5\x49\x3e\xdd\x3c\x14\xdb\x2a\xfd\xed\x40\xf8\xd7\x36\xdf\x22\x58\x9c\xf1\x2a\x42\x16\xff\xb8\x65\x55\xdf\xaf\x78\xad\xea\xc9\x73\xf9\x51\x0b\xc8\x39\xbb\x65\xa8\xc3\x92\x92\x34\x35\x25\xed\xea\xd8\xb4\x83\xa6\x75\x49\x11\xf6\xce\x70\xaa\xc8\x74\x8b\xce\x36\x09\x9d\xe4\xdf\x17\x92\xbe\x2a\x20\xde\x99\x39\x53\x70\x19\xf9\x8b\x5b\x30\xc6\x0b\xbf\x56\xd4\xe5\x4f\xa5\x50\xba\x01\x3e\x8a\x4e\xf6\x6e\xe4\x6a\xe5\x80\xe2\xe4\x70\x36\x9f\xad\x03\xd1\x84\xd2\x48\xca\x3b\x2c\xda\xa8\xca\x3c\xa4\x68\xe1\x95\xb1\xa0\x72\x2b\x57\xac\xb3\x1e\x58\x16\x79\x65\x67\x70\x64\x9f\xbb\x9f\x16\x40\x6e\xed\xad\xcd\x07\xee\x9a\x50\x5e\xcb\xb3\x5c\xbc\xef\xf2\x5b\xb2\x6a\x22\x3c\x43\x1f\xe0\x62\x3f\xe5\x45\x1d\xd4\x1f\x2d\x9e\x76\x5b\x34\xf0\xd9\x94\x16\x42\x57\xef\x59\x87\x59\x20\x7c\x8b\x5c\x95\x1d\x4a\x68\xdf\xd5\xab\xb6\x6e\x94\xac\x30\xb7\xeb\x39\x05\x3d\xca\x32\xd8\x15\xfd\x31\xe9\xfd\xf7\xd5\xe2\xa9\x8d\xea\x11\x7a\x3c\xb7\xea\x4b\xea\x77\x11\x94\x47\xc7\xac\xfb\x66\xa4\xdf\x4a\x92\xf4\x33\x04\xc0\x87\xa7\x92\xfb\xf2\x84\xcf\x91\x8b\xb0\xbb\x8e\xe3\xe6\xc1\xd5\x29\x24\xc9\xa1\x7c\xc2\xd0\x37\x57\xea\xcc\x3d\x0c\xe7\xa1\xf0\xd6\x36\x52\xfa\x8e\x16\xb4\x29\x46\x91\xab\xef\x8c\x0d\xf9\x5d\xe9\xf8\xb2\x70\xf8\x21\xc5\xa0\x21\x17\xfe\xc8\xd1\x74\x5d\x9e\x73\x86\xf8\x2d\x31\xc5\x21\x24\x14\x75\x37\x80\x46\xca\xdf\xd9\xf1\x41\x40\xda\x86\x19\x85\x01\xfa\xed\x06\xc1\x47\x94\xa5\xa8\xb8\x81\x5a\x5a\x8b\xae\xa8\xa5\xa3\xbb\xae\x9f\xd9\xd3\xf1\x1c\x43\xe1\x3d\x55\x42\x02\xb2\x84\x74\x3f\xd4\x3c\xdc\x1b\x1c\x67\xa8\xe7\x5e\xc1\x81\x65\x70\xa6\xd8\xfd\xd5\xdc\x2b\x71\xa3\xe0\x10\x70\xef\x53\xf6\x95\x16\xdb\xce\xb9\xc6\xd9\x8d\x02\x3e\x91\xee\x01\x99\xe0\xe5\x8e\xdc\xcc\x42\xb4\xe6\x8e\xc9\x41\xe8\xc0\x96\xfb\x82\x43\x2a\x8d\x1f\x4a\x6a\xf9\xb8\xa5\x54\x00\x77\x6a\x32\x67\xae\x4f\x16\xf1\x25\xbe\x25\xf4\x10\x93\xfd\x85\xbd\x83\x6d\x3e\x75\xea\x8b\xe6\xda\x3d\x85\x45\x18\xee\xf7\x80\xfd\xd3\x6d\x9d\xc7\xe1\xbd\x4d\x98\xf3\xa1\xee\x5a\x77\x2f\x56\xd3\x3d\x7f\x75\xe9\x14\x7c\xef\x7b\x87\x98\x28\x9f\x03\x46\x6a\xdc\xf2\xdc\x13\x69\x50\x5d\xb5\x0b\x60\xe7\x5a\xd8\xd5\xc9\x27\xb2\x0a\xe9\x6b\x32\x1b\x5d\xbb\xef\x64\xfd\x1d\xc3\x42\xd9\x8d\x3a\x84\x42\x9c\xa8\x34\x46\xe1\xb2\xa3\xa8\x44\x9f\xef\x56\x1d\x7c\xbf\xc1\xf2\xf5\x47\xbd\xb0\x2b\x39\x73\x4f\x19\x12\x37\xbe\x7a\x50\x18\x86\x0d\x70\xf2\x60\x79\xe2\xcd\xa6\xb0\x94\xa9\x88\x7b\x86\x93\x7d\x49\x35\x46\x89\x01\xff\x44\x09\x67\xc3\xb5\xcc\x69\x6c\xc3\x82\xbe\xf6\xf0\xf2\x46\x77\xa3\x5d\x4f\xfb\x93\x84\xf7\x8d\x55\x7c\x9c\xbb\xc9\xe8\x09\xb8\x10\x3f\xd9\xf8\xba\x85\xae\xf0\x12\x57\x35\x21\x13\x32\x4e\xa6\x36\x1d\x79\x59\xdb\x64\x70\x8d\xed\x8c\xd3\x0b\xf5\x84\x08\x72\x1c\x3c\xd3\x09\x91\x29\x78\xb3\x63\x55\xa9\x6e\x97\x04\x09\x7c\xb2\xa3\x95\xdc\x21\x26\x85\xac\x13\x6b\xfa\x1c\x1a\x67\xb8\x1a\xb2\x42\xe0\x0b\x39\x85\x15\xba\x40\xdd\xcd\x5d\x89\xa2\x5e\xcc\xc6\x8b\x0f\x3c\x7a\xbb\xd3\xdd\xf9\x4a\xa5\xb8\x70\xaa\x51\xad\xea\xa3\xaa\x5c\x8e\xf2\x8b\xd1\xb0\xf8\x8a\x1d\x32\x44\x37\x3c\x82\xd7\x3b\x42\xe9\x05\xa9\x24\x1f\x12\x39\x85\xba\x90\xe1\xbf\x39\xfb\xfd\x64\x76\xe3\x73\xe3\x73\x1b\xe2\x56\x3b\x72\xad\xa6\x95\xda\xb2\x33\x47\x62\x3e\xed\xd4\x1f\x40\xbe\x15\x23\x88\x7a\x74\x8b\xd8\x22\x2a\xa4\x7f\x23\xf9\x40\x01\x4b\xec\xdb\x06\x7b\x6e\x92\xd4\xf1\x44\xaa\x30\x0c\xbf\x0d\xd8\x8a\xc0\xfd\x48\x2a\xb8\xa1\x14\xde\x13\xdf\x6a\x8b\x53\x67\x0a\xe9\xb7\x34\x57\x9f\x77\x3e\x65\xb1\x35\x02\x42\xc9\x53\x2a\x52\x78\xef\xfb\x8e\x55\xe5\x9c\x57\x68\xb6\xc5\x12\xfb\x9f\xa8\x1f\x47\x91\xd2\x59\x33\xe2\x73\x88\xb0\xbc\x20\x27\xda\x68\x4e\x76\xd0\x47\x0a\x09\xee\xaf\x0e\x27\xf3\x82\x23\x5f\x35\x73\x46\xbe\xd7\xf1\x39\xe5\x41\xe8\x5e\xd0\xdd\xe8\xb2\x63\x95\x21\xaa\x7d\x36\xd8\x13\xb6\x74\xad\x03\x5f\xed\xb9\x24\x56\xdd\x3d\xaf\x0e\x83\x15\x66\x76\x68\x33\x33\x9a\x87\x80\x86\x89\x82\xd2\xad\xf9\xe0\xe5\x02\xd6\x30\x12\x55\x45\x77\x42\x56\x04\x78\x61\x11\xfc\x7d\x46\x93\x23\xfd\x55\x3e\x6f\x49\xc8\xef\x9f\x41\xaa\xff\xab\xc0\x47\xf6\x1c\xd5\x8f\xf9\x7d\xa3\x29\xf6\x50\x7f\x70\x46\x49\xa6\x13\xfa\xb0\x80\xd7\xb8\x36\x8f\xaf\x75\xdf\xf0\x4d\x0f\x3a\x04\x49\x7a\xc2\x88\xf3\x15\xcc\xb0\xa3\x91\x49\x73\x70\x42\x9f\x33\x41\xfe\x29\x22\x3b\xb2\x61\x98\x65\x08\x44\xbd\xb3\x36\x4e\x28\xf1\x2b\xb5\xb3\x6d\x67\x6c\x0e\x24\x00\xb4\xcf\x90\x09\x6d\xe1\x5b\x2d\xf9\xe1\xec\xe0\xf9\xb4\x9a\xe5\xa7\xdc\x08\xfd\x16\x70\xa3\xfc\x1f\xf5\x29\xb7\x67\x0e\xfc\x82\x5f\x98\x74\xce\xbb\xb7\xbb\x43\x8a\x65\x6a\x6f\xc9\x09\x5f\xcb\x61\x1a\xec\x8c\xc9\x47\x4a\xed\x7a\xee\xf3\x61\xe7\x03\x59\x67\x38\x75\x10\x29\x89\x3a\x77\xd0\xaf\xa5\x0e\xfd\xa5\x4f\x6f\xfc\xda\xb7\x2f\x0e\xe6\xc6\xf4\xfe\x3a\x37\xe6\x10\xc9\x8c\x13\xfb\xd0\xb9\x2f\xc8\xe5\x03\xa4\x2e\x6d\x53\x60\xad\x17\x4b\x86\xc4\xd7\xe7\xbe\xa2\x3b\x40\xf6\x58\x11\xc9\x99\x5c\x28\xf2\x72\x6d\xff\x13\xe9\x8c\xff\xe9\x84\xc4\xee\x56\x9a\xa7\x1d\x7e\x2d\x15\x71\x29\xfb\xfd\x67\x67\x47\x74\x1c\x61\x65\x31\x89\xf7\x93\x68\x8e\x84\xf7\x92\xb7\xca\x4f\x3c\x5c\x38\xfe\x41\xe3\xc8\xca\xde\x31\x0e\x1b\x9e\x88\x62\x3f\xd9\xd5\x5f\x60\xec\x01\xf4\x7c\x33\xb2\xe4\xee\xbe\x4e\x95\xf4\x09\x8b\xff\x02\x63\xf5\xae\x52\x64\x0f\x69\xe9\xfc\x77\xca\xed\xe7\x3e\x58\x43\x71\xe1\xbe\xd9\x8b\x01\x85\x44\x4b\x8e\x81\x7b\x43\x8a\x58\xfd\xd5\x4d\x1c\x34\x1d\x0a\x31\x44\xb6\x1f\xfd\x99\xaa\x44\x1e\x44\xf8\x9d\x6b\x22\xfc\xe0\xd9\x6a\x8b\xfb\x31\xa4\xc4\x95\x3d\xef\x2b\xe1\xef\xe3\x50\x3e\xa6\xa4\x76\x6a\x85\xc7\xb0\x33\xef\x9a\x27\x8e\x55\xe6\x39\x25\xe9\xc8\xbb\x94\xa9\xda\xf4\x05\x85\x9f\xbe\xdb\x38\x6a\x4f\xc9\x59\xdc\xc2\xae\x02\x4f\x7a\x05\xa4\xdc\x4d\x87\xf4\x2c\x45\xac\x6e\x0c\x2f\x7b\x77\x07\xbe\xf2\x4e\x8c\xb4\x45\x41\xcf\x5b\xfb\xb8\x8c\xed\x74\x6f\xe7\x9f\xc2\x37\x97\x74\xb0\xbc\x95\x0d\x2a\x93\xd1\x5c\x62\xa1\x07\x11\x3c\x8a\xb4\x2c\x10\x83\x62\x12\x99\xbd\x59\xd7\x6a\xd3\xa1\x6a\x57\x97\x52\xab\x4d\xc5\x97\x38\xe0\xac\x45\xdf\x96\xd3\xe6\xc8\x1f\x6e\x2b\xbd\xb7\xda\x62\x2b\x95\x8c\x12\x99\x42\x4a\xd1\xb5\x02\xb1\x90\x0d\x53\x4a\xf9\x6e\x1e\x84\xe3\xb0\x8d\x1b\xcb\x4c\xc5\x82\xb4\xfd\xfc\x51\x82\xde\x0f\xaa\xf8\x54\x69\x0d\x44\xb4\x45\x6a\x17\xdd\x4f\xed\x79\xf0\x76\xed\x67\xef\xcf\x6e\x15\x8a\xbe\xde\xc2\x41\xd3\x7c\xeb\x6a\x83\x76\x76\xbb\x53\xeb\xf0\x7a\x9b\x4a\xe0\x17\x32\xb9\xa2\x9f\x19\xab\x13\xdb\x03\xfd\x5c\x73\x6c\x1e\x62\xec\xcc\x44\x8a\xa3\xcc\xa6\x90\x41\xb2\x88\x20\x05\xcf\x9c\x0f\xbc\xad\x25\x52\x99\xa6\x2c\x43\x20\xab\x2c\x72\x32\xbe\x93\x05\xfc\x98\x6b\x56\x8f\x38\x33\xa3\x1a\x9a\x0b\x6b\x7f\x77\xe3\x68\xbb\x22\xe5\x7d\x11\x89\x5d\x65\x67\xee\x09\xf9\xc8\x77\x9c\x32\x87\xbe\x06\xe2\x4d\xac\x96\x18\x76\xde\x14\xe1\x7a\x68\x98\x87\x7f\x6e\x28\xd7\x2a\xe0\x42\x1e\x8d\xb9\xfb\x42\xc1\x1e\xf2\x1a\xdf\xe4\xd4\x7b\x0b\xdf\x0c\xd3\xe7\x7f\xe4\x14\xe8\x43\x5b\x86\x0e\xb0\xc8\x17\x68\xef\xdd\x04\x3f\x7c\xce\xbf\x01\x55\xb8\x49\x64\xb0\xfc\xac\xca\x9d\x25\x85\x2b\x2a\x7e\x3a\x27\xe5\xbe\x3b\x6b\xe0\xd4\x36\x83\x13\x69\xc5\xbe\x49\xf3\x9c\xe3\x8c\xbf\x1f\x53\x26\x65\x3e\xb4\xbd\xaf\x1c\x4c\x7e\x90\x93\xf0\xd9\x3b\xc5\x0a\xc2\xd7\x30\x56\x92\xa2\x7f\x6e\x83\x42\xa8\x11\x36\xc5\xab\xf3\x14\x51\xec\xf1\x4c\x7e\x28\x09\x30\x76\xd6\x24\x18\x2d\x89\xb8\xeb\xd4\x07\x7f\x0d\x04\x77\x61\x88\x35\x94\x74\x81\xa5\x57\x39\x35\xf0\x12\xc9\x7e\xf1\x59\x09\x40\x7e\x56\x06\x47\x08\xef\x14\xe7\x5e\xb6\x38\x51\xbe\x21\x69\x25\x73\xe8\x5b\x1c\xd4\xec\x29\x4e\x50\xf3\xd4\xa0\xb0\xea\x06\xaa\x77\x15\x86\x40\xc9\xa1\x0c\x34\x32\x73\x38\xf9\x43\x1d\xaa\xf8\xbc\x0d\x53\x4b\xce\x15\xdc\xc6\x31\xb3\x4f\x50\x5d\xb8\x0c\x55\x61\x8d\x84\x7b\x57\xbd\xe3\x8b\x77\xf9\xf2\xd6\x51\xf0\x7b\xb7\x4f\xbb\x56\x5b\x1e\x37\x27\x07\xe5\xca\xf5\xff\xc1\x72\xe5\x8f\x7e\x49\xd7\x65\x6c\x77\x11\x5c\xdc\x14\x72\x7a\x4c\x36\x9c\x91\x35\x16\xef\x9e\x43\xe1\xbb\x0b\x6f\x5a\x45\xb8\x20\x4b\x26\x5c\xa4\xc3\x6d\xd3\x90\x18\x08\x40\x27\x18\x54\xe2\x23\xa2\x04\xda\x12\x84\xaf\x77\x38\xee\x3e\xf8\x20\x30\xc9\x33\x5d\x4a\x15\xae\x63\xf0\x7e\x48\xfd\xc8\x13\xee\x25\x3e\x23\x4a\x9f\x5a\xd5\x9f\x2c\x25\xf4\x6e\x2a\x2d\xd2\xef\x64\x8a\xb2\xf9\x88\xc3\x7c\x25\xaa\xbf\x84\x8d\x84\x3e\x83\xdb\xcc\x8c\xdc\x17\xfc\x3d\x15\x60\x62\xbf\x62\x48\x89\x0c\xf1\x04\x27\x1a\x1e\xcc\x27\x57\x1d\xeb\x27\x9f\x20\xfd\x4e\x1d\xce\xec\x79\x75\xd8\xc0\x3b\x35\x5c\x6c\x10\x14\x7b\xdf\x5a\xa8\x76\x35\x80\x25\xe2\xdb\x60\xbf\x21\x3e\x0f\xb1\x40\x3b\xcb\x47\x6b\x2f\xde\x4c\x5a\x65\x4a\xb9\x19\x82\x9a\x3f\xec\x2b\x62\x83\xd5\x67\x06\xdd\x02\x09\x43\x56\x1c\x91\xff\x03\x8a\x5a\x31\x80\xa7\xa6\x29\xc4\x38\xc7\x67\xd6\x76\x1d\x38\xe7\x49\xb7\x1a\x7f\x20\x60\x1a\x56\x08\x22\x7c\x14\xb7\xe3\x2f\x10\x4c\x79\xdd\x85\xf9\x88\xbe\xa9\x09\x85\x37\x03\x4f\xc4\x4a\x0e\x29\xfd\xb7\xcb\x07\x66\x90\xb2\x14\x42\xe0\xa0\xda\x90\xe0\xe9\x01\x65\x64\x71\x4e\xe1\x27\x3e\xc1\xe7\x88\x71\xa7\xe6\xe2\xb2\xd5\xe4\x8c\x1e\x84\xdb\x07\xab\x3a\xb8\x79\xf2\x60\x05\x10\x5b\xe9\xcc\x41\xd2\x81\x05\x6d\x45\xcb\x63\x7c\x67\x93\x42\xe3\xdd\x63\xe8\xe7\xa7\x0f\x16\x9f\x30\x2b\x07\x72\x61\x9c\x06\x85\x4d\x5e\x52\xd3\xa0\x69\x72\x72\x8e\xb1\x21\x44\x6c\x70\xde\x31\x52\x85\xa9\x21\x36\x13\x69\x8d\x85\xc3\x12\x1c\x7d\xf0\xe5\x41\xed\xe6\x13\xd9\xaf\xe4\x07\xca\x18\xbe\x83\xfc\x70\x38\x63\xb8\xe4\x4d\x57\xcf\x18\xde\xa4\xb2\x36\x8e\x06\xea\xef\xc5\xba\x14\x33\x24\x05\x25\x4b\xba\x11\xc8\xfd\xa3\xb5\x76\xac\xc0\x08\xa7\xf4\x07\x6b\xbf\xe2\xbf\xbe\x19\x5a\xca\x1f\xad\xfb\x6c\x91\x88\x7a\x6c\x10\xf5\x85\xd8\xb2\x68\xd2\x5c\xbb\x1a\x61\xe4\xce\x3e\xc3\x96\x22\xf2\xfb\x0c\x99\xa2\xc9\x11\xd5\x1e\xfc\xff\x9e\x3e\xff\x17\xdb\x38\x7f\xeb\x89\x86\xb8\x04\xe4\xdf\xe8\x67\x08\xa7\xf8\xf0\x8d\xbf\xfe\xc1\xfa\xca\x19\xea\x54\xdf\xfa\x02\xc3\x1b\xce\xba\xd8\x8d\x6c\x75\xe1\x44\x3c\x89\xe2\xf9\xde\xa5\x5c\x1a\xdf\xcd\x0e\xbe\x37\xf7\xc8\x10\x9d\x64\x5d\x43\x22\x07\x42\x8f\x2d\x23\x09\x3e\xbc\xc0\x12\x09\xd5\x07\xbb\x9b\xdf\xe6\x26\x25\x8f\x16\x4a\xda\xbe\x39\x83\xe1\x65\xde\x30\xdb\x3b\x36\xac\x52\x14\x8a\xeb\x9d\xdb\x1c\x04\x34\xe3\x54\x58\xb0\x68\x42\xc9\xd1\x3d\x22\xbd\x0a\x1c\x3a\x88\x24\x57\x73\x5e\xda\xc2\x5f\xd8\x26\xd7\xf2\xa6\xc8\x25\x60\x5b\x4d\x99\x79\x9d\x55\xcf\xd2\xe7\x4c\x64\x82\xcf\x1a\x8f\x94\x28\xfc\x8c\xaf\x30\x72\x9a\x06\xfa\xee\x35\xc2\x33\xe7\xf7\x30\x1c\xea\x33\x06\x3a\xde\x3f\xba\xb7\xc6\x62\x74\xaf\x88\x78\x9f\x14\xa1\x0b\x7b\xdd\xe3\x48\x30\x82\x02\xb1\xee\xd6\xd5\x03\xf1\xa1\x14\x59\x89\xf8\x00\x11\x1e\x7d\xa8\x1f\x8f\xbf\x8c\x89\xaf\xae\x66\x90\x32\x96\x7c\xbe\xa4\x03\xbc\xd7\x41\x03\x8a\xd6\x61\x73\xe2\x5d\xd1\x05\x42\x0e\xf8\x68\xdc\x49\xcb\xd2\x5f\x8b\xe5\xc3\x1e\xc2\xf2\xe4\xfd\xb5\x53\xe9\x1f\xa3\x8f\x1e\x9c\xe1\x08\x69\x80\x21\x9a\x4c\x81\x06\x4b\x85\x0f\xdd\xc0\x7f\xb7\xb0\xa9\xaa\x13\x31\xea\x1f\xd7\x51\xbf\x25\xc4\x38\xe5\x74\x18\x0f\x34\xa2\xf9\x83\x1a\x73\x26\xcf\x0d\x2c\x69\xf3\x47\x0d\xcf\xcb\x4f\xfa\x8e\x84\xbc\xad\x7d\xb5\x17\x3c\x4f\x3d\x1a\x0a\x31\x8a\x80\xf1\x8b\x07\x12\x92\xcc\x2f\x01\x8b\x01\x1f\xa0\x7c\xa3\xd9\x32\x0b\xd3\x35\x31\x06\x35\xd5\xb2\x1f\x2f\xf1\xa9\xb5\x13\xd9\x52\xdb\x7d\x41\x5a\xcc\x99\x6d\x68\x31\xf3\x96\x15\x8a\x73\xbb\xa2\x42\x9e\xfe\xa4\xd9\xe1\x8f\x98\xcb\xd2\x75\x80\x05\x64\xe7\x66\x15\xf9\x91\x61\xbc\xb5\x7c\xde\x3b\xc9\xa5\xaf\xd4\x72\x2f\xad\x8d\x94\x22\x9e\x3c\xad\x7e\xda\x55\x14\xed\x7b\x4f\x57\xf3\xc5\xd2\x4e\x6c\xfa\x60\xc1\xb4\xf1\xd5\x49\x68\xce\x28\x4c\xe8\x2f\xb6\x9c\xaa\xd4\x58\x2c\x89\x2d\x91\x1b\x8e\x8e\x19\x8d\x20\xb2\x1b\x7a\xf5\x70\x72\xa3\x5d\x2a\x68\x4b\x5a\x8b\x8d\x3d\xef\x41\x96\x83\x59\x75\x09\x3d\x1d\x0f\x67\x78\xe8\x26\xb6\xd5\x93\x6b\xa7\x03\xe4\x6c\x22\x45\x59\x6a\xc7\xf7\x8c\x98\xcc\xb3\xf8\xe3\x1e\x72\x87\x88\xd0\xe6\xe9\xa1\x7a\x17\x9f\xea\x0d\xce\x0f\xd5\xfb\xde\xd5\x7e\xc1\xef\x37\x85\x81\xef\xaf\xf6\x25\x05\xd7\x72\xc6\x7b\x08\x20\x3d\x25\xda\xf6\xaf\xba\x96\x5b\x1a\x71\xae\x1b\xec\x86\x28\xbf\x8e\xcd\x79\x0a\x86\x56\x28\xbc\xe7\xf2\xa8\x18\x22\x7b\xb1\xe4\x6b\x7c\x04\xfa\x1c\xdf\x98\x81\x90\xd2\x5e\xd3\x1e\x44\x21\xc5\x34\xd2\x6e\x4b\x5b\xfa\x21\xc5\xb7\x63\x25\xbe\x23\x97\x32\xe4\x92\x11\x1f\x51\xa7\x37\xf4\x31\x6c\x7a\x8d\x57\x48\x7f\xca\xde\x13\x5b\x9f\xf6\xe4\xc2\xe6\x20\xab\x06\xef\xe8\x57\x1b\x11\xa4\xf4\xb1\x20\x2b\xb7\xd5\x72\x39\x4c\x76\xde\x6c\x9c\x00\x84\x2f\xa5\x7e\xb7\x2c\xa3\xac\xdd\xc4\x46\x9c\xd2\x03\x1d\x90\x23\xff\x30\x07\x55\x2f\x6c\xeb\xc2\x56\xa2\x83\x60\x40\x7d\xb7\x85\xf8\x81\xbb\x6b\xdd\x9b\xe0\xde\xc6\x74\x76\xc7\x53\x88\x96\x52\xac\x9a\x60\x1a\x5a\x6f\x90\x5c\x0b\xd0\xbd\xcc\xd1\xab\x6d\x17\xe8\xb8\xed\x89\xf5\x6e\x0b\x71\x82\x07\xa7\xb6\x75\x62\x2b\xc4\x16\xec\x64\xc4\x77\x42\x04\x9f\xe5\x29\xdb\x73\xe7\x36\x39\xe6\xba\xfd\x43\xf3\x30\x46\x57\x1b\x81\xee\xd3\x9d\x90\x08\xd8\x7b\xa4\xc3\xb4\xf5\x48\xa0\xfa\x1b\x87\xdb\x75\xa7\x06\x48\xd5\xc2\xd4\xef\x46\x74\xfa\x54\xa1\xd2\x90\xc6\x48\xca\xd1\xc3\x88\x28\x11\x25\x87\xed\x98\xb3\x37\x2e\xf5\x8b\xf2\xc5\x68\x83\x64\xc7\xee\x0b\xb5\x41\x41\xa0\x38\xe8\x76\x4f\xa1\x5e\x4d\xfa\x84\xe9\x1d\x1f\x1c\xa6\xa0\x7e\xb7\xd6\xba\x31\xe4\x03\xa5\x9f\x96\xcf\x04\xb0\x39\x9c\xfa\x04\xeb\x00\x33\x1a\xfb\xa5\x76\x23\x7c\x42\x61\x61\xef\x2f\x9d\xbb\x50\x94\x8c\x82\x88\xed\x43\x2b\x53\xab\xb9\xc2\xf8\x12\x78\x87\xac\x0d\xc5\xea\xe8\xd4\xba\xb8\xa3\x9a\xbb\x7d\x1c\xaa\xa3\xe1\x57\x77\x6a\x83\xe1\x3d\x87\xdf\xab\x36\x80\xd2\x4e\x31\x32\x87\x47\x56\x21\x56\x0d\x7d\x10\xd6\xd5\x22\xdb\x8d\x7b\xff\x8a\x3b\x92\x80\xe4\x3d\xbb\xd7\x3d\x25\xeb\xd5\x50\xae\x0e\xea\xfa\xf8\xea\xdb\xba\x0e\x9d\x0a\xe0\x5e\xb6\x87\xc5\x3f\x69\xbf\xbe\x4c\x75\x48\xd5\x91\xbf\x7e\xa7\x6b\x36\xc5\x85\xcd\xe6\xcf\x1c\x99\x11\x99\xd5\xd1\xe7\xaa\x90\x70\x1d\xa4\xb9\x89\xd8\xf2\x92\xfe\xba\x09\x78\xef\xfe\xa1\xcc\xbd\x8f\xfa\x7f\x4e\xec\x81\xf8\x0a\x9d\xf6\x5e\x9b\x43\x51\x38\xc7\x47\x7f\x37\x4f\x9f\x86\xc2\x8f\x7c\x4a\x59\xe0\xce\x99\x77\x20\xec\x89\xbd\x6e\x70\xe2\x8e\x85\xe8\x8f\xf7\xdc\x73\x27\xf4\x41\xf9\x80\x6c\xf1\x92\x3f\xb4\xdd\x7a\x23\x4b\x41\x00\x69\x01\x8e\x6d\x18\xeb\xf9\xc9\xe8\xb8\x6f\x75\x85\x77\x6a\xa4\x55\x99\xd1\x29\xdf\xf1\x07\xb5\x93\x71\x3b\xef\x54\x7b\xdc\x30\x86\x0c\x31\xf4\x0c\xc2\xdb\x47\xdf\xa8\x16\xcc\x15\xe9\xf2\xb6\xee\xfe\xf8\x45\x8a\xef\xa2\x42\x3d\x3e\xa1\x77\xda\x0b\xa4\x24\x45\xa0\x75\x8f\x22\x1b\x44\xeb\xf4\x81\x0f\x8f\x2a\xde\x7f\xa1\xfa\x90\xaf\xec\x61\xa6\x01\xf1\x19\x85\xe6\x29\x75\xa8\x84\x08\x0a\x57\x52\x70\xd5\xb1\x77\xaa\x75\x2f\x73\x4f\x31\x32\xaa\xc1\x52\x38\xd5\x58\xca\xd6\x99\x92\x6b\xce\xed\x29\x22\x59\x63\xb2\xca\xd2\x21\xd7\x2f\x0e\x7b\xaf\x06\x98\x03\x22\xaf\x5f\xed\xf3\x1e\xb2\xbd\xc9\x3d\x2d\x72\xba\xaf\x44\x82\x57\x55\xda\xa3\xf8\x42\x79\x74\x4d\xfd\xaf\x6e\xd3\x13\x86\xd6\xd1\x85\x24\xa6\x51\xe7\xbc\xa6\x03\xfd\xe8\x91\xf2\x02\xd6\xfd\xa1\xc4\x8e\x5e\x87\x24\xb5\xfb\x7d\x49\x0d\x58\x5f\x49\x76\xf5\x5d\x71\xd1\xb7\x5a\xf2\xbc\xb5\x30\xdc\x06\x2c\xe0\x36\x25\x02\x42\xd5\xac\x3b\xf8\xd0\x2e\x46\x87\xb3\x90\x0b\x3a\xbb\xd8\x5d\x8e\xea\x65\x5d\xfd\x91\xca\x66\x65\x4d\xc3\x8e\x99\x8d\x4a\x74\xf2\x33\xe2\x40\xad\x74\x44\x58\x70\x4c\x1f\x4f\xf6\xbf\xd1\x4f\xf3\xf8\x49\xf5\x7b\x2d\x51\xbf\x39\xa7\x3a\xcd\x1f\xa8\x73\xfd\x44\x91\xd2\x9c\x6c\x6e\x64\xb9\xf2\xa6\x55\x8d\x7c\x45\xe9\x00\xe4\x87\xb4\xda\xf2\x36\x80\x9e\x24\xb8\x44\x6d\xb8\x64\x64\xec\xef\x25\x3a\x87\x5d\xcc\x63\x82\xe2\x78\x1f\xd2\x92\xa0\x65\xbe\x7b\xf7\x8c\x10\x3b\x56\x4d\x2d\x9c\x1e\x54\x74\xf0\xe9\x72\xa8\x1a\x39\xe1\x3c\x07\x38\x9f\x01\xb4\x3b\x79\x82\xca\x48\xcb\x8d\x0e\xdf\x46\x1c\xa0\xe1\x35\xfc\xad\x83\x83\x83\xb7\x96\xef\xdd\xc2\x26\xfc\x2a\x49\x54\xf3\x8c\xc4\x5b\x14\x22\x44\x46\x6d\x9c\x8d\x89\xb0\xbd\xee\x05\x64\xdf\xda\xa0\xcb\x57\x91\x33\x0c\xf6\x28\x05\xa9\xca\x3e\x09\xc7\x53\x6f\x0b\xd7\xdf\x2b\x8d\xd0\xbb\x6a\x95\x19\xcd\x7d\x8e\xb1\x6f\x09\x67\xa0\xb6\xd8\xfd\x37\x44\x63\x21\x82\xc5\x3d\x1f\x2a\x52\x14\x7c\xa7\xef\xd5\xfb\x65\x99\x9a\xf3\x77\xc5\xee\xe5\x15\x81\xf4\x7e\xf6\xc8\xa4\xa0\xab\x87\x9a\xda\xe7\x35\x10\x20\x1f\x0d\x9d\x7a\xb8\xd7\x74\xe3\x4c\x0a\x71\x26\x33\x84\xba\xbf\xf2\x47\x2e\x3c\x28\x08\xae\xce\xb6\xbe\xf3\x2c\xef\xa6\xf1\x4e\xc0\x3b\xb3\x3b\x96\xef\xdf\x6d\x29\x0f\xdf\x0b\x26\xa1\x26\xde\x43\x94\xd6\x9b\x7f\xeb\xbf\xb9\x96\xd7\x74\xae\x1b\x95\x34\x4b\x96\x91\xbb\xa2\x85\x45\x57\x6c\x6f\xd3\xd2\x66\x04\xd9\x87\xb4\x6f\x21\xc1\x9b\xba\xdc\x7a\x30\xb7\x82\xb1\xed\x28\xc8\xa7\x37\x7b\xa2\x10\xdb\x1d\x82\x81\x11\x7e\x17\x58\x52\xeb\xd5\xef\x1c\x69\x23\xe9\x24\x1d\x67\xe5\x90\x77\x97\x40\x3e\xa5\xf8\xdf\x22\x84\xd3\x53\x30\xbb\xe1\x90\xfb\x91\xf0\xef\xaf\x14\xe0\x9c\x37\x7b\x6b\xd7\x8e\xcb\x35\x15\x7f\x3b\xbf\xb7\x5a\x75\x93\x11\xbe\x86\xd3\x7e\x1b\x41\x82\xa2\xb1\xa8\xeb\x9b\x9e\x35\x16\x5e\xef\x87\x2c\x6d\x16\xe7\xf6\x2b\x2d\x49\x33\xa1\xba\x77\xdf\xc9\x9a\xdf\x3a\xc3\xcc\x77\x74\x96\x6e\x6a\xb5\x14\x43\x1c\x0a\xd1\x59\x8d\xc8\x46\x09\x39\x2a\x7b\xa4\x74\x12\x92\x5b\xa0\x58\x4b\x06\x1f\xbf\x8f\x0f\x01\x4c\xdf\x18\x78\x5d\xe1\x13\x7d\xee\x34\xb8\x15\x08\xd3\x68\xe7\x58\xe6\x8f\x16\x07\xee\x0d\xe1\xc7\x4f\x68\x49\x5c\x0a\x2b\x74\x1a\x38\xdd\xef\x51\x86\xcd\xc6\x0d\x99\x30\xbc\xd6\x4a\x15\xde\xdc\x53\x4d\xbf\x9d\xaa\x9f\xdb\xce\x9a\xbe\x02\xd7\x7e\x55\x3f\xb9\x8d\x7c\x55\x2d\x30\x4c\x29\xe4\x94\x43\xa8\x28\x98\x6a\x4c\xdf\xa4\x5d\x96\xd1\xb2\x67\x76\x06\x0d\x8d\x20\x18\x28\x69\xa4\x4f\x4c\x80\xbe\x76\x39\xa1\x24\x5a\x4a\x95\x55\x5c\x86\x62\xde\x65\x26\x51\xa8\x6e\x9b\x4a\x7e\xca\xc9\x72\x3a\x26\x6b\xa9\xdd\x30\xfa\x9a\xd9\x7f\xd1\x59\x64\x57\xbd\x0d\xcb\xde\xbe\xe1\xa4\x17\x51\xab\x21\xfa\x5c\x3b\x4a\x98\xf1\x3b\x9b\x07\x40\x6c\x2c\x06\x2f\xc0\x3f\x30\x78\x28\x93\xed\x1f\x5d\x16\xc5\x2a\x35\x92\xfe\xbb\x73\x87\x93\x97\x79\x62\x78\x0c\x8c\x8a\x60\x32\xbb\x7a\x66\x99\xa6\x7a\xe5\x47\x43\xeb\x87\x1e\x8c\x60\xbe\x18\x5e\xe1\x25\x42\xe7\xc1\xf5\x33\xcb\x59\xea\x9d\xef\xcf\x95\xd5\x87\x1a\x6b\x91\x5d\xe2\x47\xd7\x5f\xa9\xc1\x5e\x77\xc5\x85\x5f\x62\x5f\xbf\x63\x80\xa7\x7b\x08\x3a\xcc\xd7\x94\xd4\xe8\xe8\x0d\x43\xc9\xd3\x15\x29\x48\xdc\x8a\x90\x2a\xae\x39\xd7\x96\xd9\x0a\x78\xf4\xa9\x61\x8f\x8d\x60\xd1\x1d\xbe\xe0\xac\xb6\xe8\x70\x3d\xc4\x71\x20\x7a\xfb\x8c\xcd\x1b\x1e\x92\xb5\x29\x81\x68\xa9\x2a\xdf\x3b\xaa\x72\xeb\xcd\xce\x86\x58\x6b\xaa\x4d\x87\x8b\x79\xfd\xfd\x9d\x86\x95\x2f\x5a\x9d\x8b\x01\x8f\x80\xbe\xfa\xfe\x60\xcc\x2e\xfd\xab\xc5\x7f\xd5\x8b\xef\x42\x38\x88\x6d\x04\xc6\x42\xab\xf5\xcf\x6d\xea\xee\xc6\x35\xb1\xad\x57\xd8\xdf\x07\x30\x1a\x4a\x21\x27\x7d\xa3\xbf\xe0\x27\xd0\x2c\x83\x33\x3e\x1c\xf4\xad\xc4\x48\x92\xbb\x5c\x91\x71\xbe\xf6\xa1\x35\x10\xf2\xe6\x4a\xbd\xe3\x35\xf6\x30\xfc\xc7\xa0\xda\x4c\x8f\x7f\xb5\x99\xbe\xea\x33\xfc\xd4\xe7\x8a\x82\x50\x6e\xae\x0f\xf6\xf9\xcd\xdc\x55\x4f\x7f\x6b\x57\xb9\xe5\xae\xf2\xe9\x60\x5d\x9b\x24\x30\x9f\x1c\xe1\x3d\xa4\x22\x50\x7a\x3c\xf8\x29\x56\xd7\x9b\xaa\x8d\xd6\xea\x80\x6f\x61\xc6\xcf\x46\xe7\xe1\x5f\xf4\x3d\x33\xfa\xee\x96\x7d\xbf\x1a\x7d\x23\xb8\x25\xe6\x63\xe5\x9f\xfb\xee\x76\x22\xea\x9b\xa2\x3f\x65\x6c\x3f\xff\x74\x87\x74\x11\x65\x26\x06\xd5\x0e\x69\x0a\xb7\x51\x6d\x08\x39\xc4\x91\x10\xc2\x6e\x31\x38\xa5\x2f\x53\x6c\x6d\x1c\x22\xea\x32\x62\x93\xd9\x12\x63\xa0\xcf\x03\xd3\xbb\x4d\x21\xe9\x93\x34\x3d\xf3\x55\x77\xca\x6f\x92\xbd\xeb\xcc\xa6\xe4\x49\x72\xf9\x08\x59\x0b\x1f\x17\x7a\xf9\xeb\x3d\xbd\x54\x02\x95\x3c\xbc\xab\xe5\xa9\xc3\x7b\xaa\x5b\xee\x6a\x8e\x2b\x05\x31\x64\x4f\xf9\xea\x11\x56\x77\xfa\x69\xb2\xdb\x6c\x80\x78\x18\xce\x31\xdd\xfe\xe1\x57\x5b\x5b\x0c\x48\x4f\x1a\x5d\x0f\xcd\xa9\x9f\xdd\x51\x92\x35\x47\x56\xeb\x3d\xfd\xe9\xf8\xc9\x30\x46\x4d\xf4\x3e\x48\x61\xea\x31\x44\xf0\x29\x82\x05\x73\x47\xf0\xfc\x52\xa3\xfd\x12\x16\x7e\x44\x62\x6c\xf0\xac\x61\x8c\xac\x14\xad\xd2\x91\x0f\x95\x41\x61\x54\xbb\x7e\x2f\x4e\x6a\x15\x3c\x3e\xeb\xe1\xed\x6c\x26\x68\x94\x8a\x41\x8c\x17\xd4\xc1\xd8\xa4\x61\xee\x56\x1a\x3b\xe3\x04\x41\x1c\x55\x75\x0f\x39\x6b\x44\x40\x53\x6a\xc7\x8d\x8d\xb1\x1b\xe2\x4f\x53\x2a\xd1\xff\x07\xf4\xf0\x53\x56\xd1\xde\x1e\x21\x7d\xb1\x78\xe3\x92\x7b\x7d\x32\x27\xa2\x40\xee\xea\xa6\x89\xfc\x6b\x1b\x3b\xef\x5d\x4b\x8c\x94\xef\x61\xfd\x75\x6f\xf4\xf1\xf6\x72\xb3\x95\xcc\x5a\x72\xab\x74\xc4\x6b\x4a\xd4\xc4\xef\x9c\x3c\x42\x20\xd1\x1f\x77\xa3\x8d\x2a\x5f\x90\x94\x51\x5d\xc2\x00\x45\x9f\xac\x9f\xe8\x1e\x47\x70\xd1\xf0\x91\x36\xd9\x41\xed\x40\x55\x86\xb9\x81\xdc\x3d\x53\x59\x2d\xf7\xf6\xaf\x97\xfb\x07\x49\xcc\x03\x04\x0a\x9f\x3e\x32\xbf\x56\xdb\x78\x85\x2c\x19\xe7\x77\xbf\x80\xb2\x4d\xe1\x5f\x3b\x06\x23\x40\xa8\x80\xa2\xa6\xf7\x98\x1e\x89\xc1\x90\x54\x35\x7b\x10\xf8\x7a\xce\x42\xde\x60\x4a\x8a\x41\xf1\x9c\x46\x6a\x4e\x23\xac\xb0\x59\xf7\xd2\xae\x60\xe1\x2e\x48\xe9\x11\xc3\x2c\x30\x0f\x1d\x04\xc8\x38\xe5\x61\x2c\x94\xdd\x59\x7f\xff\x8a\xf4\x50\x88\x61\xef\xea\xe7\xbb\x8c\xed\xf8\x49\x2f\x84\x90\x29\x2d\xca\x08\x1f\xa1\x27\x84\xa0\xb8\x72\xce\x03\x26\x86\xf0\x18\x61\x63\x1a\xd7\x21\x33\x7d\xb7\x2a\x1a\xe0\x9a\xfe\xa7\x34\x96\x0f\xb9\xbd\xfb\xf9\x92\x50\x70\x43\x93\x19\x14\x45\x58\x53\x54\xc8\x70\x8d\xd3\xd8\x29\x25\x62\x5a\x43\x8e\x40\x44\x6b\x12\x68\x2b\x90\x6f\xe4\x63\xe2\x34\x71\x9a\x1c\xd1\xa2\x0c\x48\x7a\xd7\x0e\x9a\xc4\x74\x31\xbd\x06\x86\xec\xf4\x4b\x6b\xed\x0a\x6f\x4e\x5d\x36\x43\x98\x25\xb4\xf4\x53\x98\x86\xa8\x97\x7d\x43\x54\x84\xf8\xf5\x75\x60\x1e\xe5\x24\x34\xc9\xdb\xf5\x5e\x5d\xf6\xa1\xb5\xa9\x6b\xd2\x95\xd1\x03\x67\xb7\x01\xca\x76\xaf\x70\x0c\xe3\x44\x89\xd7\x5e\x56\x06\xfa\xa7\x76\x87\xf3\x1b\xae\x61\xd7\x7a\x7d\xaa\x72\xb2\x92\xf2\x7d\x5c\x7d\x9d\x91\xd2\x4e\xbc\xda\x42\x3e\x1c\x3f\x52\xb4\x1f\xd5\x3a\x7b\x82\x55\x76\xbf\x96\xdb\x21\x4e\x30\xca\x1e\x0f\x37\xbc\x35\x1b\xbe\xb2\xd5\xd6\x7c\x38\xbf\xab\x2a\x5d\xd0\x52\x7a\xb7\x9c\x65\xa9\x2d\x1c\x40\xc8\x3d\xc5\xf1\xbc\x02\xf9\xc2\x66\x04\x29\x2f\x76\xc0\xc4\xe0\xe7\x55\xed\x8d\x84\xbc\xb6\xc9\xe7\x48\x5f\xcf\xf6\xe4\x1a\xdf\x37\x81\x93\x56\x21\xc6\x93\xd6\xf7\xe4\x74\x0b\x17\xfb\x5e\x7a\x93\xa6\xe8\xea\xaf\x1d\x13\x86\x0f\x3f\x9e\x61\x12\x78\xe6\xc3\x9e\x1f\xcf\x86\x1e\x89\x74\x1c\xee\xc2\x35\x8c\x7b\x44\x80\x7a\x94\x5c\xf5\x09\x1f\x1c\xc3\xc7\x15\x91\x38\xad\xf5\x4a\x3f\x3d\x8a\x88\x1d\x34\xca\xeb\xe6\xd6\x59\x63\x6b\x9c\xde\x57\xe7\x81\x3e\xee\xd8\x8d\xa1\xc6\x36\x23\xe9\xb7\x35\xef\x5b\x2d\x31\xde\x41\xbe\x4f\x9f\xb1\xb7\x78\x9b\x90\x35\xb8\x75\xac\xe8\xd3\xdd\xa1\x83\xb7\x8a\xb4\xa6\xf7\x5a\x97\x15\x6d\x3a\x7f\xce\xd9\x7b\xce\x68\x98\xd3\x88\x90\xad\xb5\xa0\x63\xd4\x73\xb0\x4f\xb3\xcc\x6f\xb0\xca\xe5\xe9\x6f\x46\x43\x21\x3a\xb7\x59\x48\x7c\xd5\x9f\xb4\x69\xe2\x38\xbb\x27\x84\x77\x7a\x6f\xb5\x85\x7f\x65\xe0\x7f\xf2\x29\xcd\x59\xf4\x82\xa9\xac\x95\xa2\x24\xd7\x72\xd9\xaf\x3a\x25\xd1\x93\x9e\x2e\xa8\x96\x87\xec\xb9\xad\xaa\x79\xfd\x91\x5a\xf7\x58\x22\x08\x4e\xbd\xe8\x8b\x9b\xa5\xbc\x56\xe0\xed\x5e\x23\x93\x1f\x74\x24\x7e\x41\x1b\xe9\x78\x83\x97\x09\x02\xe5\x7e\x56\x22\x84\x37\x60\x28\x64\x28\xe8\xfa\x27\x6a\x3c\x0f\x62\xdf\xe8\xa0\xbf\xe6\x79\xcd\x67\x7d\xe8\x93\xa4\xb0\xf5\xab\xeb\xad\x36\xc1\xe3\xcb\x6f\xd6\x0f\x9b\x3e\x83\xeb\x29\xec\xa5\x5f\x45\xf7\x4e\x24\x1d\x4b\x2c\x4d\x62\xef\xf6\x1a\xf6\xd7\x57\xfa\xf1\x91\x8f\x9c\xb9\x58\x57\x88\x0e\xbe\x55\x09\x26\xd1\x22\x5b\x7e\xf9\x48\x7c\xfd\x48\x1a\x8f\xba\xf4\xc8\xaf\xbe\x8a\x89\xaf\xae\x9d\x32\xe5\x3e\x41\x10\x01\x45\xce\xe9\xb2\x33\x1a\xc6\x29\x99\xcd\xc9\xce\x28\x72\x78\x83\x89\x27\x8c\x13\x9c\x21\x71\x99\x01\x90\xb7\x7d\xc4\x67\x88\xfc\xd2\x52\x38\xb3\xc9\x70\xc8\x89\xf5\x9a\x6f\x64\x09\x78\x25\x5f\xcc\x0b\xd1\xb9\x37\x90\xad\x85\x82\x24\x12\x28\x89\xef\x60\x10\xb1\xfd\x8d\x6a\x7f\xb3\x11\x50\x46\x21\xd9\x3d\x7c\xcf\x8b\x4e\x09\xba\x25\xad\xf1\xe1\x11\xc5\xf9\x99\x46\xf9\xdf\x85\xd2\x19\x21\x53\x8f\x4d\xdb\xa2\x3b\x30\xa4\xc6\xc7\xb2\xc4\xa7\x10\x4e\xd7\x25\x82\xd9\x64\xd3\xe7\x0f\xb2\x3e\xd2\x47\xaf\x24\x1f\x06\xa6\xe0\x0f\xaf\x43\x94\x0b\xd1\x15\x5d\x3a\xb9\x39\x82\x5b\x89\x86\xa2\x36\x5f\x1f\x22\x53\x1b\xfe\x4f\x8e\x3b\xc3\x5a\x6d\x87\x48\xc3\xc0\xf8\x4e\x87\x8d\x13\x87\x27\xde\x14\xe2\xc3\xbe\xdd\x1b\x44\x53\xf8\xae\x35\x16\x8d\x42\x37\xf4\x71\x0f\x1e\x7e\xaf\xe4\xff\x66\xe7\xc0\x98\xad\x50\xb8\x38\x2a\x70\x68\x36\x6e\x0b\x1d\xed\xbf\xe9\x0b\xf7\x85\xa6\xf6\x70\x60\x66\xdd\x27\x3a\x54\x7a\x08\x42\x70\x72\x3d\x94\xd0\x14\x23\x52\x0b\x5e\x2a\x88\x9f\x3b\x2f\xc7\x24\xda\x06\x29\x4e\x83\x5f\x3e\xd7\xa8\x72\x4b\xae\xc7\x73\x99\x53\x98\x24\x1d\x7a\xeb\x1a\x61\x92\xa3\xf8\xd9\x2a\x63\x54\x3e\x5b\xe4\x7f\x7e\x46\x8c\xc3\xca\x83\x32\x45\xad\x78\xb3\x6b\xfc\x1f\x3e\xa4\x9d\x7c\x31\xcd\xfa\xf0\x01\xc1\xd7\x10\x3d\xef\x7f\xe1\x8d\x55\x13\x57\x67\xe3\x9a\xd9\x6b\xa7\x24\xd3\x14\x6e\xf1\xfe\x64\xb1\xe5\x97\xa2\x51\x3e\x08\x93\x5b\x6f\x4f\x78\xd1\x2b\xbf\xfb\xe0\x42\xb4\x77\xf5\xc7\xd2\x57\x74\x5c\x40\x84\xe4\xa2\x09\xd7\x64\x5e\x1f\xd2\x77\x67\x2f\x9d\xf7\x11\xb8\xba\xc0\x1e\xfa\x20\x43\x20\x2c\x8c\xf4\xb1\x03\xf7\xda\xa1\xfd\x39\xa6\xb8\xd6\x67\xb2\x7b\xad\xec\xe4\xb9\x9a\x97\xbc\xb2\xd9\x43\x01\xb6\x12\xa9\x81\x91\xa6\xf4\x84\xa6\xa9\x4d\x7f\x8b\xdd\xa1\x00\x32\x32\xc2\xf2\xce\x1a\xd6\x58\x9c\xca\x5a\x20\x79\xa6\x7d\x29\xe3\x3d\x5f\x4a\x4e\x74\x92\x03\x12\x67\x44\x0b\x7a\xd7\x44\x2e\x5f\x7e\xc0\xc9\x50\x0c\x2c\xcf\x39\x71\x14\x9f\x6a\x0c\x8f\x6f\x2c\x57\xee\x9c\xde\xeb\x58\x3f\xf3\x9d\x13\x87\x0c\xaa\x1e\xc9\x57\x93\xa5\x92\x69\x6e\x36\x36\xe5\x9c\xf2\x41\x4f\x5a\xe0\x5b\x01\xb2\xe2\x20\x77\xc6\x7b\x5f\xc7\xf2\xdf\x23\x61\xde\x85\xfd\xd1\xb7\x3c\x39\xb7\x77\xf6\xc9\xad\x15\x8a\xa7\xc3\x2e\xa1\xd6\x41\x97\xd0\x3b\x92\x36\xca\x73\x7b\xf9\xac\x51\xd1\x17\x03\x8e\xb8\xe9\x7c\xed\xc7\x59\x12\x44\xc3\x98\x66\xde\x7a\xe2\x75\x6c\x52\x58\x5d\x53\x66\xf6\x56\x9e\x29\x5d\x7e\x67\xf3\x09\xcf\x92\x34\x93\xa0\x34\xc6\x25\x7f\xc4\x95\x3c\x6f\x7c\x60\x9b\x22\xac\x87\x11\xf0\x73\x31\xb1\xda\x42\xc6\xf6\x8c\x6e\xbb\x65\x2a\x63\x4a\x76\xe9\x6d\xed\xf2\x9d\xb6\x10\xbd\xea\x9d\x2e\x1d\xe4\xa8\xf2\x4d\x36\xbf\x38\xd3\x29\xaf\xcc\x38\xcb\xaf\x3c\x65\x30\x7b\xf3\xa1\x15\x04\x12\xaa\x77\x9f\x38\x17\x4f\x99\xf8\x9b\x02\xd2\x60\xf6\x7e\x7f\xa6\x3b\x01\xd5\xfa\x72\xbc\x2f\x29\x20\x3b\x5a\x0b\x3e\x47\xed\xb2\xc5\x97\x2d\x7b\x68\xb6\x05\x19\xbf\xc5\x1f\xf8\x5d\x1b\x85\x3a\x5e\xea\xd5\xb1\x9a\x72\xc2\xdf\x09\x7b\xe6\x73\xe5\xe5\xa4\xe3\x67\x1d\xc1\x2a\xe4\x8a\x86\x13\xd0\x10\x07\x0b\x3a\xf4\x32\xa0\xd3\x4a\xc1\x85\x9a\xad\x57\xe0\xc0\xfb\xd3\x9c\xe2\x33\xde\x09\x02\xed\xcd\x0b\x00\x41\x7e\xac\x2b\xec\xe6\x0f\xda\x55\x14\x70\x21\xda\xab\xc0\x6a\x89\xee\x0b\xe7\x3f\xa6\xe8\x44\x5b\x92\x23\x1c\x69\x90\xd4\xdd\xd2\x4e\x6c\x87\x75\x43\xd5\xc0\x15\x21\xd9\xdf\x3f\xf2\x9e\x4f\xc0\x53\xaf\x11\xe0\xfe\xed\xd9\x1a\x97\x41\xbf\x27\xc4\x97\x4f\x29\x08\x41\x9c\xd1\xd7\x83\xe4\xb9\xe3\xe2\x85\x39\xe8\x66\x44\xb6\x3a\xfd\xc6\xf7\xf2\x0d\x97\xa2\xa2\xcb\xef\xdb\x5f\x3b\xfa\xab\x39\x78\x6d\x15\x20\xd8\x55\x30\x7c\x28\x77\x27\xbd\x75\x66\xa4\xbc\xdf\x22\x37\x75\x4e\xf0\xfb\xbf\xb9\x7b\xf3\xe6\x46\x6e\x2c\x5f\xf4\xab\x70\x1c\x2f\xc6\xf6\x55\xb6\xb9\x89\x5b\x7b\xea\xce\x05\xc0\x64\x2a\x45\x51\x14\x45\x51\x94\x64\x77\xf4\x50\x64\x72\x67\x72\x5f\xe7\xf6\x77\x7f\x81\xf3\x3b\xc8\x85\xa2\xaa\xca\x9e\x9e\x89\x78\xcf\x7f\xb8\x44\x24\x80\x44\x62\x39\x38\xeb\xef\x3c\x31\x4f\xc3\x63\x17\xce\x01\xe7\x76\x0f\x1b\x31\x85\x8e\x94\x11\xfc\xa4\xb7\x87\xdd\x4b\x3d\x80\x3e\x5a\x6d\xd1\x24\xd1\xe1\x51\xa4\xe9\xfe\xf2\x2c\x87\x52\x4a\x9e\x23\x7e\xcf\x3a\x4c\xa0\x68\x65\x90\x3e\xfa\x48\xff\xb4\x37\x90\x1b\xf5\x79\x34\xb8\xa0\x74\x33\x00\x8b\xfd\xc0\xda\x92\x1c\xee\x07\xf8\x83\x2d\x7b\xd1\x96\x57\xc0\x73\x1b\xb4\xc1\x8d\x28\x61\xfb\x15\x56\x63\xba\x42\xac\x14\x99\x3f\x44\x37\xdd\x34\xee\xcf\x61\x86\xe5\x02\x6f\x42\x3d\x5c\x0e\xe5\x87\x91\x0a\xcf\x1d\x16\x4e\x46\x08\xdf\xa5\xa9\x99\x82\xd3\x81\x45\xff\xf5\x84\x89\x2a\x39\x66\xa2\x44\xb5\xe8\x7c\xe8\xc7\x46\xa6\xa1\x6a\x2a\x36\xee\x2d\xe2\x18\x86\xf4\x5e\xb8\x9b\x3c\x51\xb2\x39\x17\x1e\x82\x66\x15\x26\x9c\x85\x4c\x77\xce\x6f\x4f\x3d\x59\x55\x71\x93\x93\xb4\x26\x75\xbe\x16\x3e\x1d\xdd\x9a\xc3\x22\x36\x4f\xa6\x71\x6d\x26\x4b\x2a\x4b\xc9\xc9\x6a\x1b\xb9\xeb\x58\x06\x66\x5f\xdd\xed\x81\xf3\x48\x50\x08\x5a\xe0\xb8\x3f\x32\x00\x04\x69\x02\x0b\x72\x74\xc7\x04\xaa\x26\xec\x07\x0e\xf5\x42\xd6\x7b\x12\x4f\xba\x9a\x31\x50\x43\xc9\xae\xfe\x73\x6a\x4c\xc2\x91\x7a\x67\x26\xa2\x2a\x9a\x3d\xda\x32\x65\x7e\x66\x5b\x5d\xf5\x70\x13\x72\xb0\x8c\x74\xbe\x8b\x44\x0b\x5c\x93\xc5\x40\x2c\x68\x23\x6b\x99\x31\xa0\x1d\xc9\x77\xcb\x60\x0a\x0c\xe4\x9c\xf8\x86\x7a\xba\x63\x85\xb0\x05\x14\x34\x66\xdf\x86\xe8\xf1\xcd\x23\xed\x94\x91\xe4\x38\x05\xba\x1c\x9a\x6d\x0e\x85\xd7\x1d\xe7\x1e\x28\xe7\xbf\x55\x63\x57\x5d\xe7\x91\x26\x08\xd8\x09\xcd\x14\xed\xdb\x1a\x2e\xba\x77\xfe\x9b\xb2\xec\xbe\x47\xa4\x38\x7a\x2d\x7b\x07\xa6\xe8\x85\xaf\x1f\xea\xda\x39\xb9\x7f\xc7\x31\x2c\xf5\x42\x14\x8b\x99\x16\xdf\xdb\x24\xbe\x3f\x89\xec\x4d\x84\x64\xcf\x3d\x92\x28\x56\x4f\x67\x20\x16\xf5\x9d\x3a\x92\xfa\x63\x2e\x4f\x54\xa5\x9e\xf2\x28\x6e\xb4\x1c\x2d\xac\xed\xa1\x22\x39\x78\x56\x5d\xd8\x0b\xfb\xe8\x91\xc3\xf7\xea\x9d\x83\xd9\xd4\xb0\xac\x29\x9f\xf2\xb6\x7a\x70\x65\x65\x39\xaa\x3d\x8c\x88\x46\x26\x54\x02\xc8\x9a\xcd\xcc\x8d\x15\xa0\x69\xbb\x6b\x80\x81\x6e\x10\xe6\xb0\xd6\x52\x82\x43\x5e\x62\x95\xb9\xe4\xc2\xed\xa3\xd5\x15\xf6\x43\x49\x32\x68\x3f\x02\xeb\x9a\x16\x9b\xaf\x9d\xfe\x08\x62\xb5\x6d\x79\x42\x3d\x19\x78\x95\x8e\x39\xd3\x5a\x54\xad\x71\x74\xe2\xc3\xf2\x1d\xe8\x00\x55\x61\x3f\x2b\x0c\xbf\x2a\x6a\xef\x21\x43\xa8\x67\x7c\x2e\xfb\x56\x5d\x4c\xa5\xcb\x60\x17\x04\xfc\xf7\x1a\xbc\xa5\x23\x44\x87\x32\x09\x72\x3a\xda\xa0\xa8\x41\xe4\x9e\x9b\x50\xc4\x2b\x6c\x98\x34\xca\xa7\x0d\x38\xf1\x58\x37\x04\x41\x39\x56\x37\xb1\x22\x0a\xfd\xa3\xc8\xdd\x92\x8c\x76\x00\x1d\xc1\x5d\xa4\x2e\xbe\xac\x71\x64\x06\x8a\xe0\x7b\xc8\x43\xa2\xb3\xaf\x9d\x8d\x4c\x0d\x55\xb6\x46\xd2\x6e\xfa\x86\xe4\xdd\x0c\x85\x0f\xb6\xc9\x00\xfa\xb8\xae\x9d\xf7\xaa\x49\x18\x39\x78\xc1\xca\x38\x81\x6c\x7b\xea\x45\xc8\xf1\x0c\x0c\x0b\x9a\x6a\x51\x5d\xf5\xa6\x60\x17\xf6\xb8\xc9\x0f\xe4\xb2\xd0\x43\x58\xef\x00\xa0\xfb\xb5\x3b\x7d\x9b\x6d\x24\x07\x03\x99\xd4\xfe\x54\xe6\x83\x6f\x9c\xb0\xd3\x73\x17\x09\xcc\x71\x18\x69\xbb\x77\x4b\x46\xaa\xb4\x14\xbb\x30\xbb\xc0\xca\xf2\x28\x9e\x42\x74\xa7\x8c\x60\x02\xe5\xfc\x10\x06\x76\x40\x54\x79\x24\x56\xdb\x39\x9b\x92\xfa\x32\x06\x8a\xc7\x3e\x04\x55\x0e\x79\xbe\x57\x71\x2a\x26\x3c\x84\x06\x26\xd1\x3d\x50\x58\xdc\xd4\x27\xdd\x13\x82\x10\xb1\x2f\x3b\x30\x83\x63\xfa\x94\xd6\x89\x7a\x6d\x8a\xc8\xff\xe9\xc0\xe2\xec\x75\x87\x5d\x84\x8b\xbd\x83\x2a\x5a\x06\xfa\x6d\x57\xf1\x0d\x7a\x95\x2d\xd4\x03\xb8\xb6\x39\xd8\x8f\x9d\xc4\x18\xda\xba\x6c\x19\xfd\x91\x21\xbd\xf7\x42\x96\x18\x19\x91\x1c\xe5\x0b\xf6\xa6\x6b\x31\xc0\x16\xd9\xdc\x39\xec\xb4\x4b\xbe\x03\x19\xb9\xc3\xd3\xfc\x1b\xce\x18\x46\xdf\x05\xb9\xc3\x20\xfb\x5a\x1a\x45\xcc\x0e\xb2\x22\x6f\x24\x3e\x1c\x2c\xd7\x2b\xbc\x20\x02\xca\x6b\x0b\xda\x31\x5d\xf2\xa0\x55\x43\x09\x3c\xc4\x6e\xe9\xd2\x32\x8d\xe1\xd6\xb9\x0d\xe6\xd1\x15\x4e\x0e\x43\x28\x90\xfa\xb7\xb9\x46\xc5\x42\x17\x76\xa2\x08\xb5\xb6\x17\x6a\x4d\xfe\x1b\x58\xcf\x2e\xde\x7a\xc2\x89\xbe\xae\xb3\x3a\x90\x51\xd2\xfc\x1b\xcc\xbd\xd2\x9f\xb8\x77\x8c\x57\x8e\xba\x4b\xd2\xad\xde\xcc\xbb\x56\x53\xd8\x8f\xf9\xa6\x19\x56\x87\x60\x5b\xef\x2e\xac\xfd\x87\x31\x93\x8f\x17\xd9\xaa\x7c\x9b\x1c\xda\x0c\xba\x69\x1a\xd0\x07\x24\x4b\x38\x0c\x55\xd3\xb1\x19\xc3\x9a\xa4\x12\x14\x39\x56\x37\x2b\xaf\x8b\x65\xf6\x10\x73\x31\xf9\xe4\x87\x65\x12\x4b\xb1\xe3\x96\x3e\x17\x4f\xa1\x18\x5d\xe8\x13\x2f\xcb\x88\x17\x11\x31\x1a\x31\x3d\x0d\x86\x74\x2c\x11\xd9\xed\x2f\x49\xdc\xe9\xa6\x19\x9e\x11\x94\xa3\x23\xc4\x13\xad\x90\x72\xf6\x74\xa9\xbb\x81\x3d\x4c\x41\x66\x70\x0a\x14\x06\x0b\x74\x65\xc5\xf6\xcd\x36\x9a\x91\x73\x85\x5e\x99\x67\xe0\x25\xcf\xe4\x47\xff\x4e\xce\x86\x8a\x55\x9d\xd1\xce\x42\x22\xf2\x91\x1c\x77\xa1\x5a\x9b\x69\xf9\x57\x39\xe5\xaf\xbe\xbf\xd8\xb7\x5c\xca\x64\xc5\x98\x4e\x19\x39\xbc\x2a\xef\x65\x19\xe0\xfc\xec\xb5\x06\xb7\x21\xec\xae\x0e\xe7\x08\x53\x41\xfa\x28\x88\xe5\x88\xa9\xfd\xb0\x53\x60\xae\xe0\x46\x05\x2f\xd8\x2f\xa7\xca\xd9\x7e\xd1\x24\x24\x43\xdf\xd1\xc9\xc2\x78\x90\xbe\x85\x0f\xed\x92\x0e\x4c\xa7\xa4\x2f\x5b\xf5\x7e\xcd\x31\x6f\x32\xc8\x7d\xa1\x56\x12\x74\x12\xd7\x84\x68\xed\x6f\x02\xfa\x9d\x95\x20\x40\x83\xfb\x70\x9b\xbc\x66\xe9\x36\xd9\xa8\x14\xc1\x24\xbc\x1e\xf1\xcc\x7f\xb6\x5a\x5a\x3e\x9c\x3d\x7d\xdc\x6c\xa9\x17\x2d\x1f\x9e\xbf\xe7\xd8\x3a\xef\xd4\xc9\x2a\x2e\x54\x01\xae\x1f\x2b\x35\x11\xb8\x58\xbf\x46\x00\xc4\xc6\xfb\x48\xf8\x41\xd7\x6b\x44\xa3\x6c\xac\x52\x8d\x94\x08\xea\x91\xdf\x8b\x8f\x8e\xcd\x8f\x5b\x42\xf7\x47\xa0\xa3\x51\xe4\x2d\x03\xfb\x42\xfe\x6b\xcc\xd1\x76\x21\xa3\x37\xca\x1a\x51\x62\x94\x20\x26\xbc\x51\xc2\x11\x44\xef\x14\xb0\x59\xef\x9a\x69\x60\xfc\xee\xfb\x7f\xd2\xe5\xa1\xc6\x95\x94\x8c\x4e\x97\x1d\xcc\x09\x82\xd3\x62\xc4\xf2\xe9\x8c\x4a\xd6\x85\xea\x17\xf0\xa6\x12\x78\xbd\x59\xe3\xf3\x37\xd9\xb3\xd8\x06\xcd\x9b\x0d\x3a\x33\x3b\xa3\x23\xec\x9c\x8a\x51\x9a\x02\x0c\x4b\xb3\x37\xae\xd1\x15\xae\xaf\x9e\xcd\x4a\x78\x42\x3d\x8e\x2f\xf7\x99\xa9\x85\x8b\x67\xaf\x10\xee\x7f\xd6\x69\xe6\xd5\x54\x19\x48\x4a\xa6\x1f\xf8\x2d\x2d\x65\x04\x8a\x0b\xa9\x78\xe8\x06\x28\x8b\xd5\x80\xe3\xf4\x29\x6c\xa1\xb6\x0c\x00\x1a\x1c\x9f\x11\xdc\x00\x07\x5c\xdb\x2a\xf0\xa5\xed\x50\xb2\xaa\x0a\x75\xaf\xf7\x8b\xa3\x16\xe8\xc5\x3d\x0e\x00\x02\x58\x21\x9b\x9b\xdc\x45\x8a\x1b\x64\xa4\xb1\x85\xea\x01\x56\xb4\xa2\x65\xb0\x17\x78\xf2\xd5\x00\xcf\xd0\x0a\x12\x83\xd7\xf5\x5f\xe5\x3b\xfe\xc4\xba\x70\x6e\x48\x7f\xa0\x29\x93\xdb\x64\xd2\x4b\x4c\xab\x8a\xb0\xa9\xd3\x77\xeb\xcf\xcb\xf4\x76\xc9\x86\xde\xa3\x0e\x2c\x3f\x8a\x98\xed\x67\x58\xcc\x3f\xe0\x34\x15\xab\x64\x31\x1f\x2a\x00\x53\xbc\xfa\x11\x38\x3b\xb5\x90\xeb\x3a\x6a\x9f\x50\x3b\xd5\x8b\x44\x02\x1f\xe3\x22\x3e\xa4\xc0\x57\x82\xbb\x32\x52\xfe\x48\x4e\x87\x34\x5f\x47\x89\x68\x3c\x28\x4d\x20\x02\x05\xc6\x68\x78\xf9\xd8\xb9\xca\xa0\x8b\xa3\xd4\x8f\x88\x55\x63\xb5\xe0\x98\xd4\x31\x40\x8d\x33\x3d\xd8\x3d\xf4\x48\x76\xe5\x83\x34\xbc\x8c\xc1\xe1\xdd\x48\x0f\xd6\x1a\x62\xa7\x1e\xfc\xf7\x08\xb0\xe4\xfa\x1e\x71\x11\x34\xc6\x7b\x11\x09\x34\x70\x38\x8a\xb1\xc8\x51\x8c\x01\xda\xfa\x06\x79\x70\x4a\xf2\x4f\xa9\x55\x72\xf6\x15\x66\x6e\x4d\xae\x68\xa2\x7b\x03\x5b\xef\x90\x75\xbf\xbe\x77\xce\x9c\xad\x7b\xd0\x4e\x22\x8f\xc6\x94\xa2\x87\x47\xf2\x8a\x20\x7b\x0e\x36\xcc\x14\xf0\x3e\xa8\x51\xca\x7d\x35\x96\x34\x6b\x9e\x1f\x2d\x3c\xc9\x5b\xb6\x96\x04\xd0\xdc\xb8\x80\xe0\x35\x71\xe8\x45\x26\xe5\xfa\xdd\x08\xe4\xea\xa1\xce\x71\x35\x36\x41\x55\x84\x7f\x07\x1c\xa1\x83\xc4\xba\x37\x82\x5c\xfb\x45\x7d\x8f\x20\xb8\xa4\x07\xc7\xc3\x14\xcd\x56\xe7\x05\xe2\x0e\xd9\x3e\x50\xe1\x39\x84\xee\x79\x43\x6a\x7e\x10\xfa\x35\x45\xcf\x3f\xd2\xb6\x40\x36\xee\x3a\x49\xf0\xea\x05\xa3\x8e\x9e\xa3\xe7\x56\xd0\xb9\xea\xc3\x8c\x5c\xbf\x7a\x0e\xbb\xc7\x28\x9c\xec\xd9\x28\xaa\x04\x85\x16\xb2\x75\x2d\xc0\xb4\xb4\xb7\x2a\xde\x94\x08\x0d\xa5\xc2\x81\xac\x58\x4f\x83\x5c\x66\x09\xda\xf3\xc9\xf8\x0a\xd9\x6a\xda\x80\x4f\x3a\x14\x35\xb4\x4b\x39\x16\x22\xcb\x80\xbe\x38\x76\x59\x42\xec\xeb\xa7\xa1\x3f\xc2\xfd\x5c\x5f\x91\x01\xaa\x07\xc2\xdd\xb8\xa6\x91\xd6\x73\x7d\x3d\x0b\x6c\xa4\x18\x11\x22\x2b\x30\x01\x6a\x63\x6c\xec\x51\xd7\xfc\xd2\xcc\xc0\x56\x46\x4c\xfb\xd4\x53\xf5\x89\x08\x60\xbe\x4f\x14\x10\xd7\x4b\xa1\xfc\xa1\x8d\x03\xd5\x67\x75\x4d\x2a\xca\x57\xba\x1c\x9a\x05\x22\xcb\x0b\x89\xa4\xee\xb5\x7c\x9f\x22\xeb\x0b\x7d\xf3\x0b\x8e\x19\x36\xc5\x9f\x68\x3e\x13\xaf\xd5\xcf\xd5\x93\x7e\x6d\xd1\xf1\xae\x74\xad\x92\x43\x0a\xd3\xb9\xf4\x0d\xf2\xd1\x7f\x99\x84\xa9\x69\x25\xd4\xcd\x65\x9a\x70\x2c\xa0\xcb\x12\xdc\x54\x3a\x4a\x96\x76\x92\x2e\x8b\xa5\xdc\xd0\x4c\x37\xb6\x9e\xa6\x61\x05\x68\x16\x67\x1c\x6c\x4c\x3c\xda\x1e\x1a\xcc\x45\xf9\xe4\x7d\xa0\x8f\x10\xf9\x06\x72\xdc\xbf\x40\xb7\xa0\x4a\x7a\x85\x3b\x6f\x63\x01\xf7\xf3\x62\x35\xa0\x4f\xb6\xe8\x4c\x25\x4e\xfc\xeb\x9d\x21\xe7\xc8\xe1\xd1\x0b\x78\x3a\xbf\x3c\x1b\xc8\x08\xec\xc1\xae\xce\x22\xb1\x2d\xd4\x0b\x12\x4b\xd4\x48\xa5\xd8\x58\x03\xdf\x69\x49\xf0\xa3\x07\x99\x7e\x8a\x46\x46\x0d\xe5\x35\xa5\xcd\x54\x9c\x65\x22\x87\xf3\x9f\x27\x28\xe3\x36\x56\x82\x2f\xb1\xfa\x72\xc0\x3b\xc6\xdc\x8d\xd8\xe7\xc4\xdf\x37\xdc\x2b\x4d\xf3\x1e\x04\x6e\x80\xf6\x86\xab\xac\x49\xab\xaf\xc6\xb8\x33\x1b\x8b\x11\x13\xf2\x7c\x60\x37\x33\x68\x96\x1d\x51\x5d\x94\x27\xa4\x82\x68\xcd\xe1\x11\xb5\xc2\x34\x45\x09\xdb\x35\x02\xb0\x47\xf0\x52\x2a\xe9\x75\xb4\x7d\x7b\xcf\x23\xd4\xb3\xbc\x96\xfa\xd2\x5f\xc8\x39\xe7\xfe\x1f\xf6\x71\xd1\xa7\xf4\x6e\x75\x4a\x92\x01\x9e\x63\xa4\x74\x2a\x0b\x3d\x52\x50\x8c\x70\x92\xde\x2d\xe3\x67\xea\xcb\x74\x39\x22\xc6\xa6\x3b\x11\x92\xc7\x16\xd9\xed\x40\x92\x97\x1a\x05\xff\x76\x91\xcd\x60\x47\x6a\x8b\x95\xdc\xda\xe6\x27\x54\xd7\xae\x70\x01\x8a\x5c\x3b\x20\x33\x13\x72\x9c\xb4\x73\x8f\xc1\xc2\xa6\xcb\x73\x0e\x27\xc3\x55\x48\x30\xb0\x63\xe9\x93\xa7\x4b\x93\x16\xed\x71\xad\x3f\x71\xa9\xee\x48\x59\xa6\x40\xa3\x89\xb5\x7a\xdd\x3c\x58\x8e\x68\xa6\xe5\xfa\xc1\x72\xad\x96\xca\x39\xae\x26\xe1\xf7\xfd\xe0\x4c\xe1\x3e\x7d\xb7\x42\x54\xb1\x41\x1f\x57\x61\xa9\xfc\x61\x93\x1d\x22\x9b\xac\x26\xd4\x7b\xba\x67\xd5\xac\xb9\x52\x37\x65\x9a\xa8\x96\xa6\x11\xd6\x40\x89\x27\x20\xee\xd3\x89\x7d\x60\x7c\xd6\x36\x19\x1d\x06\xe4\x32\xf6\x79\x51\x87\x6e\x6f\x2d\xb7\x97\x3e\xd4\x72\x82\x5a\x13\x0a\x8f\xb4\xb6\x52\x3c\xec\x94\xa5\x44\x03\x69\xd4\x8c\x41\x1b\xe9\xa5\x68\x08\x2a\x1c\x02\xc0\x50\x47\x70\x2e\x1a\xab\xaf\x95\x61\x14\x5b\x89\x2c\x33\x67\xf5\x6e\x57\xfa\x95\x55\x87\xad\x9e\x0c\x73\x67\x55\x09\x20\x2b\x30\x11\xaf\xd5\xa6\x1f\xf1\xe9\xdb\xf6\x31\x99\x44\x73\x4a\xd0\x8b\x20\x00\x78\xdb\xa5\x8d\x37\x97\x7b\x92\x27\x1b\x0a\xf7\x4b\x8d\xb3\x31\xb7\xc0\x8a\x3a\x24\x4a\x2d\x11\xb0\xc9\x6c\xfa\x10\x4c\x04\xe0\xb8\x6a\x23\xb8\x21\x22\x8e\xb0\x3d\x86\x32\x7e\x44\x21\x3c\xad\x09\x34\x4e\xd4\x47\x7d\x31\x8c\x9e\x35\x52\x1b\x76\x84\xda\x54\x96\x28\xdf\x73\x4c\xde\xa2\x0f\xba\x07\xcd\x26\xe2\x6c\x36\x00\x7b\x0a\x2c\x28\x2e\xf3\xfe\xf4\xd2\x9b\x2d\x05\x6a\x3e\xa5\x29\x9b\x49\x1f\xd7\x65\xb5\xca\xd9\x18\x71\x6d\x70\x0c\x3b\x7c\x3d\x6a\xfc\xa8\xc2\x8f\x1a\xc2\x65\xcc\x43\xd2\x0b\x7a\xe4\x86\xd9\x6d\x61\xe2\x56\x7d\xa8\xc3\x69\x22\x6d\xda\x5f\xcd\x16\x68\xc7\x18\x74\x88\x93\xf4\x80\xbc\x91\x9f\x61\xab\xd0\xf8\x83\xf3\x5c\xa8\xfc\x37\xcf\xb3\xbd\xa9\x1c\x87\x2c\x5e\x41\x23\x9c\xa6\xe3\x56\x83\x68\x3a\xe9\x87\x41\x63\x9c\xf3\xf6\x9d\xee\x3a\x76\x10\x82\xee\x7e\xff\x0e\xd4\xa1\x88\x8d\x16\x20\x8b\x2d\x38\x72\x13\x40\xbb\x71\xaf\x14\xfc\xd9\x80\x45\x23\xf3\x4c\x4d\xaf\x1a\xc2\x00\xcb\x22\xd7\x08\xaf\x03\xd1\x05\xa3\xba\xe8\x63\x9d\xf4\x5c\x2a\x1f\x89\x0e\x19\x2a\xc8\x83\x2f\x50\x18\x0c\x72\xf3\x62\x4d\x94\x78\xcd\xc8\x3b\xac\x86\x16\x5f\x4f\x52\x84\x3f\x76\xc1\x0f\x7d\xd2\xb3\xd1\x47\xd3\xe0\xc7\x92\x1e\xbd\xe0\xe4\x90\x04\x8c\x83\xb7\x56\x96\x67\x8d\x94\x1a\xca\x8d\x8d\xbb\x22\x02\xd2\xd9\x85\x63\xb7\x4b\x5e\xa2\xe6\x7b\x91\x08\xd6\x15\x65\x11\x31\x60\x22\x80\x70\x57\xa5\xe5\xae\x31\xd3\xd0\xd0\x6c\x7d\x24\xd6\x90\xc1\x0a\x91\x02\x70\x55\x0d\x4d\xbd\x49\xc9\x85\x53\xf8\x24\xab\x10\xe7\x8b\x03\x69\x80\x6d\xeb\x1c\xe0\xe4\x75\x8d\x91\x36\x0b\x6f\x56\x4d\x0f\xfe\x9e\xad\x30\x45\x18\x41\xd9\x2a\xee\xd2\x12\x06\x04\xa3\x7e\xe8\x40\x7d\x50\x87\x59\x10\x76\xd9\x53\x07\x2a\xb3\x29\x43\x63\xb0\x96\x5f\x8d\xa5\xf8\xa4\xa0\xce\x48\x3f\xc3\xff\x42\x0d\x2e\x68\xad\x58\xff\x13\x99\xf3\x09\x34\x13\xd5\x13\xbe\x82\xec\xe7\x36\x60\x08\xab\x04\xd0\xcf\x10\xe5\x04\xb1\xc3\xa6\x1f\x1b\x69\x7a\x1d\x76\x1a\x50\x15\xf6\x2c\xe1\x0b\x26\xad\x38\x95\xb2\x13\x68\x31\x6a\x75\xa6\x0d\x39\x16\xd7\x32\xdc\x84\x13\x9a\xad\x3a\x96\x47\xe7\x53\x09\x05\x45\xc7\x35\x6c\x2f\xe4\x77\x59\x04\xce\xd0\xe1\x35\xe2\xd7\xd4\x80\xe3\xf1\x18\xf1\xa1\x2b\x52\x6f\x01\xdf\xec\x71\xc9\x21\x55\x00\x91\x47\xda\x6d\xb9\x86\xe6\x65\x81\x18\x83\x46\x11\x0d\xe4\x0a\x7e\xf3\xfa\x86\x79\x43\xee\x33\xe4\x0a\x27\x69\xef\x89\x1b\xf1\x8b\x61\xc8\xad\xe2\xaa\x2d\xc2\xa9\x57\xc1\x7a\xd4\x64\x95\x9f\x63\xa2\x77\x39\x08\xcb\xd6\x5b\xdf\x81\x9a\xc3\xb8\x97\xb1\x21\xdb\x0e\xb2\x8b\x60\xfb\xdd\x01\xb5\x9c\xd1\x27\x4f\x80\x91\x3b\xd2\x09\xaa\x17\xc6\x8c\x40\x44\xbc\xdb\xd8\x44\xda\xb4\x85\x9b\x56\x15\x4c\x24\xe4\xdf\x1a\xe7\x3e\xd3\xac\x10\x22\xa5\xdc\x2d\x78\x27\x13\xaf\x44\x93\xdb\xc0\x1d\x88\xd3\x96\x1e\xcb\x00\xa6\x85\xd6\xd7\x97\xf3\x09\x49\x57\x15\x0c\x1c\x63\x2d\xc0\x21\x8b\xce\xc5\xf6\x0d\x0e\xc1\xe4\xd0\x5b\x64\x8d\xbb\x88\xf7\x56\x85\xcf\x10\xfb\xfc\x5d\xd3\xa0\x1d\x06\x80\xae\x58\xae\x3e\x47\xbe\xfd\xf4\xf0\x61\x3b\x96\xfa\x7c\xf8\x01\xe2\xe4\x06\xa0\x73\x57\x03\x69\x75\xad\x89\x52\x37\x59\x72\x4e\x07\x3d\xe8\xc7\x8f\xa0\x1a\x42\xcb\xb5\x96\x78\x00\x03\x3c\xa6\xc0\x78\x56\x32\x83\xbe\x54\xc2\x99\x46\x0e\xec\x9a\x53\x48\xfb\xc4\x9e\xa9\xb1\x1a\x30\x8f\x3b\x27\x2e\xf5\x95\x2e\xfe\x57\xff\xac\x8c\x5e\x32\xd3\xd4\xae\xcc\x79\x31\x06\xb4\xd1\x7d\x72\x89\x1d\x48\xd6\xeb\xf2\x65\x6c\xc2\x42\x1b\xe2\xbd\x12\xba\xe5\xe8\x86\x0d\x2d\xf4\x3c\x14\xb1\x69\x7d\x49\x31\x4f\xce\x0c\x3f\xdf\x88\x7e\x8b\xad\x4d\xbf\x72\x2a\x5b\xf9\x34\xaa\x77\x5e\xb1\x6a\xa2\x9c\xb6\x67\x7d\x70\xd8\x8c\x11\x54\x13\xd5\x77\xc2\x0b\x72\x6d\xc2\x82\x7b\x52\xb1\x48\x01\x8a\x6f\x4e\xc2\x8f\xeb\xf8\xa6\xb7\xfe\x18\x99\x44\x48\x6d\x3f\x07\x51\x6d\x42\x50\x8a\x17\xe9\x2b\xe0\x24\x79\x52\x52\xc4\x55\xb5\x87\x1d\x42\xe6\x93\x6b\xa8\xe5\x32\xf0\x3d\x1e\x53\xe9\xc2\x94\x5e\xb3\x26\x97\x4a\xfb\x5c\x98\x47\xa1\x1f\x2b\x2c\xb2\x51\x95\x0a\xdf\xb9\x10\x3a\x7d\x4d\x37\x1c\x61\x53\x94\xb1\x7d\xc7\x8f\x06\x26\x61\xf4\xa6\x03\xa7\x3e\xa8\xeb\xb7\x1d\xab\x2e\xec\xe7\x71\x9c\x1e\x15\x28\xfa\x35\x2d\xf7\x6f\xd1\x2d\x60\xcd\xca\xfa\x90\x9e\xa8\xb0\xba\xb0\xf5\x76\x7b\x4e\x75\x23\xc7\x78\x4c\x79\x6b\xc6\xe7\xed\x26\x9a\xa9\x96\x0f\x91\x63\xed\xbf\x91\x7b\x37\xf9\xd4\x39\x4f\xfb\x8e\x51\x68\x99\x79\xcf\x48\xba\x27\xec\x82\x41\xd6\x9f\x18\xdc\x03\x3a\x8c\x6c\xde\xaf\x4f\xe0\xd0\xb4\x25\x91\xa4\x86\x5b\x84\xd3\xa0\xa6\x28\x1e\x03\x9a\xd0\x74\x87\xd2\x8b\x65\x90\x9d\x92\x12\xb0\x18\x79\xb4\x83\xbc\xb3\xf8\xe1\x09\x7b\x28\x55\x24\xe1\xa8\x1f\x3c\x22\x1f\x2d\x93\x0f\xad\xce\xea\x1c\xce\x06\xcf\x08\x84\x55\xe1\xae\x34\xb1\x6e\x98\x00\xb0\xb1\x5c\x03\x43\x45\xff\xa0\xbc\xc8\x2d\x6b\xab\x84\xdb\xe3\x04\xe2\x4c\x40\x83\x8f\x6e\x41\x97\xd4\xe4\x14\x1e\x79\x39\x27\x81\x65\x61\x43\xe1\xd1\x44\x34\xea\x51\x5a\x06\x16\xb8\xa0\x2f\x8e\x0f\x3d\xd5\x4d\x14\x03\xd4\x01\x4d\x4d\xf4\xd1\xd3\xea\x62\x4f\xdc\x47\x1e\x50\xa5\xe4\x70\xe1\x9c\xd4\x22\xca\x86\x6c\xa5\xe5\x5a\xf3\xb2\x2a\x55\xd8\xb8\xcb\x27\x28\x4a\x60\x10\xbe\xdd\x2c\x28\x43\x61\xd4\x98\x23\x08\xda\xa5\xb0\xcc\x97\x57\xac\xbe\x4b\x86\x85\x07\x09\x80\x39\x6f\x58\x0e\xca\x76\x72\x54\x06\x85\x1e\x87\x85\x69\x09\x9f\x9e\xee\x34\x28\xb3\xd3\x48\x19\x10\xa1\x96\x73\xb9\x8e\xe2\x47\x33\xff\x68\xdc\x28\xae\x79\x57\x7e\x80\x05\xe8\xa2\x9f\xf4\xbb\x7e\xd3\x4a\x5e\xbd\xe3\xde\x46\x8e\x8c\xb1\xee\xde\x3e\x9c\x9d\xe9\x22\xe9\x08\x81\x4a\x45\xe1\x53\xce\x21\xc2\xae\x22\xb7\x8c\xaf\xb7\x90\xc3\x20\xcb\xac\x00\xa8\xc3\x7a\xad\x8c\x4a\x06\xd3\xf4\x18\x3e\xc3\x31\x79\xc5\x57\xe0\xe9\x53\xe4\xa9\x1d\x3c\x65\x87\x06\xaf\xca\x61\xcd\x90\x06\xab\x06\xe5\xb9\xcd\xee\x3a\x0e\xf9\x0b\x05\xa8\x13\x6d\xd0\xdd\x2e\x72\x52\xe0\x58\xc0\x42\x4b\x90\x8b\xd7\x36\xf9\xd5\x66\x6d\xb1\xc6\x3c\xe3\xfa\x04\x2a\xc6\x23\x4d\xea\xa6\x41\xaa\x88\x23\xdd\x99\x4d\x70\x82\x2d\x30\xa1\x27\xa2\xc3\x8d\x23\x30\x5d\x93\x81\xef\x9d\x23\x9c\x8d\x03\xad\x7a\x03\xc7\xa4\x05\xb6\xab\x6f\x35\x84\x73\x92\x8c\xdc\xd6\xe4\xb4\x8a\x7a\x66\x11\x50\x58\x85\x53\x13\x6b\xa1\x70\x9f\xb4\xac\x8e\x68\x94\x71\x2f\xd3\x7d\xdc\x18\x52\x97\x13\xbe\xd5\x1a\x24\x64\xef\xa9\xc6\x49\xbd\x70\x11\x59\xd1\x7c\x19\x44\x48\x8e\x2b\xa1\x73\xf1\xb5\x6f\x38\x02\x40\x5b\xc1\x25\x90\x66\xbd\x83\xd0\xa0\x0e\x5b\xde\xf5\xae\xdb\x39\x2a\xbc\xb9\x4a\x5a\x16\xaf\x4c\x64\x0a\x73\xb8\x24\xd2\xbe\xa7\x2d\x77\xe0\xe8\x0d\x5d\xd8\x11\x62\x54\xc6\x05\x4c\xee\x03\x49\x09\x15\x1c\x91\x21\x67\x5a\x01\xa3\xd6\xe0\x0f\x20\x83\xa9\x1a\x4a\x64\x6b\x7c\x65\x40\xe1\x91\x44\x72\xfd\x03\x60\xa9\xc9\x0f\x53\x3d\x4d\x41\x67\x88\x3e\x3e\xd6\x02\x95\x89\xf3\x82\x15\x69\xf0\x86\xe7\x0e\x1c\xbd\x4d\x7b\x16\x87\x50\xb9\x88\x9b\x6c\x80\x05\x24\x65\xf1\xcb\x94\xac\xe2\x77\x80\xe9\xa7\x0d\xf6\xca\x54\x91\x0f\x2d\x11\xc5\x9a\x26\xde\xa5\xb2\x38\xef\x69\x16\xf4\xe4\x0c\x39\x35\xa4\xe9\x04\x3a\xb8\xe0\xe4\x6b\x29\xc5\x15\xce\xd4\xf4\x51\x0b\xfa\x98\x73\xfa\x28\x82\xf7\x0d\xcf\xc8\x5a\x62\x9f\xb3\x03\x7a\x1f\x2f\xd2\xe2\x57\x19\x7b\x29\x43\x08\x50\xca\x40\xe4\x70\xbd\x0c\xa2\xa8\x92\xf2\x10\x1d\xcd\x35\xfd\x58\x72\x25\xfd\x51\xaa\xa4\x68\x40\x95\x60\x3c\xb5\x47\x20\x40\xd7\x06\x15\x86\xab\x22\x57\x84\x88\xbf\x5a\x0b\x28\x9a\xfa\x73\x9c\xa9\x1c\x91\x2b\x78\x07\x9e\x1c\xf5\x2b\xc9\xe9\xc8\xc6\x4c\xf4\x08\x19\xac\x8b\x55\xe9\xd1\x0b\x6d\xf0\xfc\x0d\x30\x2a\xb0\x6d\xd4\x7b\x24\x29\x2e\x24\xf4\x89\xb6\x3d\x19\x83\xf3\x84\xd3\x82\x07\x92\xf4\xce\x3c\x15\x05\x8c\x6c\x21\x43\x4c\xa5\xcb\x81\x30\x07\xce\x38\xc5\xc3\xe7\x1b\x62\xd4\x65\x87\x15\xf0\x36\xb4\x09\x42\x31\x41\xb7\x1c\xca\x19\x10\x9f\x96\x65\x1a\xfb\x46\xfa\x38\x18\x5a\xfe\xd4\x93\xb8\x52\xc0\x28\xf4\x16\x3e\xce\xb4\x5c\xa2\x42\x23\x23\xd9\x38\x39\xc4\xe5\x51\x5d\xde\xea\x19\x4c\x1a\x29\x83\xb9\xc3\x81\x32\x73\x33\x23\x9d\x18\x3e\x4a\xdf\x46\xc8\x14\x98\x8c\xce\x9d\x3b\x56\xc9\xc8\x01\xe2\xdb\x1f\x87\x88\xfc\xde\xbc\xe8\xf9\x52\xec\x5f\x4d\x86\x40\x87\xd4\x38\xe0\xa8\x0e\x72\x10\xef\xa5\x66\x4c\x59\x9a\xbb\x9a\x4b\x21\x0c\x3b\x5c\x9f\x00\xb1\x60\x28\x73\x18\x57\xde\x7c\x15\x1d\x43\x5f\x45\x2a\xb9\x0f\xd4\x34\xc7\x89\x6f\xeb\x73\xe6\x1d\x14\x96\xbf\x71\xa5\x0f\x82\xca\x96\x93\xc1\x4f\xb0\xf9\x1f\xfb\x43\x4b\x67\x5c\x66\x97\xf6\xb5\xb2\x3a\xc2\x7e\xda\x04\xbf\x5e\xc9\x90\x80\xdc\x18\xb5\x40\xdc\xe2\xbc\x38\x64\x2e\x70\xef\xf8\xe4\x90\x9c\xf9\xb8\x0b\x9a\x3a\xc2\x7e\xf0\xf9\x42\xea\x0a\xb7\x96\x86\xa2\x75\x28\xf7\x60\xe9\x2b\x41\x2c\x93\x3b\x94\x01\x18\xbc\xde\x8d\x3b\x65\x35\xb4\x44\x92\xac\xf2\xb5\x8f\xf4\x22\x5e\x32\xd8\xf1\xaf\xd9\x0f\xb7\xef\x52\xce\x9c\x28\x27\xc0\x68\xb1\x07\xdc\xba\x5d\x70\x34\x16\x07\x93\x04\x79\x08\xc1\x7c\xdc\x44\x50\x3b\x68\xdf\x76\x1c\x73\x89\x5c\xea\xaa\xaa\x07\xd7\xe3\xf4\x72\x00\x13\x0e\x59\x92\xd6\xe2\xc2\xd0\xb6\x4e\x70\xf7\xdb\x05\xe8\x5e\x5a\xc2\xf8\xeb\x19\x4d\xd8\x94\xcd\x16\x94\x78\x89\xfe\xde\x32\x67\x6a\xf8\x33\xa0\xa9\x93\xc3\x60\x99\x5e\x98\x8a\x66\xa8\x62\x27\x55\x55\xc2\xcd\x1d\x08\x58\xf4\x90\xba\x00\x2c\x1b\xa3\xba\xb1\x9c\x84\xc7\xcc\x7b\x46\x52\x5b\x8d\x24\x05\xe6\xb2\x60\xc2\x2d\x35\x79\xd8\x28\xf3\x8b\x9f\x19\x0b\x8b\xe6\x6a\x28\x72\x99\xbc\x68\xba\xc2\x49\x4a\xe4\xbd\x36\x54\xe0\x8a\x7c\x44\xd7\x26\x49\x22\x60\xfc\x92\x90\xaa\xa6\x72\xcf\x0e\x1c\x87\xa9\x04\x17\xb7\x66\x95\xd4\x66\x84\x20\x9d\x68\x85\xba\x70\xb3\x72\xd2\x8f\xf6\x6e\x34\xeb\xe0\x61\xd3\xe8\xbd\x54\xe6\x4a\x10\x14\x32\x95\xa0\x07\x57\xcf\xcd\xf9\x2b\xb8\x72\xca\x61\x25\x00\x45\x34\x80\x87\xaa\x47\x5f\xef\x06\x58\x81\xf1\x71\x13\xe9\xfb\xda\xb8\x1d\xa1\x7a\xb1\x11\xa5\x2a\xc1\x4b\x28\xec\xe1\x7b\x47\xe4\x0a\x75\xc7\x03\xd8\x72\xff\x3b\x4c\xdc\xc7\x01\x44\x2b\x5c\x98\xb8\x51\x3f\xba\x2c\xd9\xaf\x2c\x8b\xf3\xad\x65\x21\xb8\x8b\x3f\x3b\x2a\x78\x9a\xa0\x94\x23\xca\x7c\xc6\xd5\x9a\x43\x09\xfd\xb0\xe0\xdf\x30\x8e\xd9\xf7\xb4\xbd\x5e\x17\x84\x4e\xc1\xce\x99\xd5\x3c\xc5\x8c\xab\xbb\xc5\x43\x10\x88\x7c\x94\x85\x0e\x7f\x54\x60\x57\xcc\xc9\x35\x38\xbf\xd6\x18\xe8\x58\x8d\x3b\xab\x46\x38\x3b\x75\xf1\x28\x32\x63\x19\x9d\xa2\x79\x1f\x87\xb5\x49\x54\x76\xca\xc1\x55\xff\xc3\x33\xb4\xa0\x0a\xa4\xab\x49\x96\x01\x30\xcf\x09\x9a\x28\x5e\xae\x57\xe0\x3c\xc1\xf9\xb9\x0c\x2c\xf7\xce\x18\x16\xd6\xfa\x70\x29\x23\x0a\x8a\x36\x12\xda\x07\xe2\xda\x2b\x67\x20\x32\x4d\x49\xbe\x3c\xef\x4f\x73\x1a\xe9\x72\xbc\xbb\xc9\x84\x6d\xab\xb6\xb0\x4b\xec\x44\xc6\x94\xef\xca\xb1\x1c\x3d\xd6\xa9\x84\x7b\xa4\x9b\x86\xc8\x90\xb9\xd5\x8c\xd3\x6d\xf6\xd6\xaa\xeb\xc7\x95\xbe\xb5\x2c\x0b\xc7\xbd\xbe\x85\x35\xd9\xc4\xca\xc0\x7b\xd4\xd6\xc3\x84\x3d\x96\x52\x8b\x8e\x95\xe1\xc7\x48\xb6\xdf\xbc\x1b\x35\x98\xba\xdf\xbe\x83\xbf\xd6\xbc\x28\xe7\xb4\xd2\x7f\xdf\x0d\x6e\xc2\xbf\x83\xc8\x7a\xf5\xc0\xd6\x6d\xca\x1b\x71\x2c\x87\x4d\xa7\x6e\xd8\xe5\xcc\x0d\xeb\xab\xb0\x38\xf6\x67\xd0\x09\xeb\x30\x2c\x47\x2c\x55\x54\xf5\x0c\x6f\x83\x31\xc3\x39\x2a\xb6\xdd\xc1\x89\xda\xb8\x23\x89\x9a\x3e\xdf\x6e\x96\x61\x26\x49\x6a\x69\xaf\x18\x27\x8a\x0e\xfb\xc3\x58\x06\xf3\xe3\xf0\x13\xe8\x05\xd7\x74\xa3\x9f\x64\x01\x08\xa2\xd5\xe2\x92\x28\x73\xf5\x06\x54\xa2\x52\x0e\x7a\x5c\x6a\x9e\x87\xa2\xcc\xc1\xcf\x3d\x58\x61\xb6\x89\x0d\xf8\x99\xe6\xda\xc0\x56\x53\xd0\x0d\xfc\x1b\x54\x18\x7a\x2b\xea\xc5\x15\xcb\x31\x13\x19\x84\x58\x91\xeb\x53\x03\xee\x16\x5a\x3c\x3c\x54\x68\x7b\x6e\x15\xe2\x15\xd8\x76\x54\xc2\xbd\x58\x04\x74\x74\x89\x00\x6e\xde\x32\x9c\xca\xa9\x40\xfa\x9c\x6a\xbe\xab\xe5\x5d\x88\x4a\xf0\xe2\xa2\x80\x77\xb1\x65\x09\x78\x2e\x41\x7e\x45\x8b\xbb\x29\x76\xad\x57\x82\x5f\xeb\x08\xf1\x46\x37\x72\x46\x72\x5f\x78\x34\x54\x25\xfc\xbc\xea\xea\x7b\xeb\xda\x9e\x48\x82\x13\x2c\xca\x29\x41\x92\xd6\xb3\x80\x8b\x9e\xad\x75\xbf\xd5\x07\x84\x54\x9b\xad\xb7\x5a\x80\xe0\x5c\x41\x8e\xea\xc0\xe5\x8e\x31\x3e\x47\x6a\xc3\x8f\x07\x2b\x24\xa1\x25\xcb\x50\x39\x2b\x03\xdf\x67\x7d\xff\x56\x85\x43\x17\x77\x93\x9c\x7e\xbb\xd1\xb0\xb4\x27\x03\xbe\x4a\x08\xa3\x2d\xba\x39\x6f\x91\x89\xab\x6a\xb9\x62\x28\x1b\xa5\xb2\xae\x32\x81\x69\x13\xa9\xc6\xc8\x71\x65\x5a\x46\x72\xcf\x49\xf9\x69\x03\x01\x79\x4b\xc0\xbd\x4b\xb9\xe3\xfc\x9d\xfa\x2d\x8f\xc3\xa6\x55\x15\x8b\x72\x93\x22\xc5\x96\xe5\x1b\xd4\xad\xee\xb5\x10\xb0\x28\xbf\xf3\x05\x3f\xc2\xcd\x3f\x57\x26\xc0\x4a\x25\x15\xd6\xc5\xdd\x05\x35\xf4\x31\x3f\xaa\x60\x33\xa9\x55\xb9\x7b\x56\x83\x24\xf3\x48\x8d\xdd\x87\x1a\x9a\x3d\x88\xd6\xd8\x7c\xa8\x01\xd6\x22\x65\x6c\x74\x35\x31\x29\x97\xca\xa0\x14\x49\x17\xd3\xb8\x88\xa6\x2d\xf9\xff\x06\x24\xa6\x78\x78\xb2\x66\x4a\x7f\x84\x10\xd6\x95\x12\xca\xc3\xd1\x26\x15\xc2\xb5\x2c\x00\xa3\xe7\x8f\x82\x4d\xbe\xfe\xff\x18\x6c\xf2\xf5\x23\xd8\x24\xb1\xdd\x0f\x84\xca\xd7\x44\xd0\x5f\x51\xa6\xef\x99\xfb\x76\x84\xca\x95\xe1\x48\x52\x13\xe2\x99\x03\xaf\x02\x2f\x39\xe2\x2e\x6c\xc4\xab\x56\xf5\xb9\xa9\xdc\x05\x49\xd5\xd4\x13\xbc\x71\x54\x24\x0c\x8a\xe2\xfe\x19\xdf\xe2\x43\xc6\x35\x32\x47\xb6\xc3\x1c\x36\x6a\xac\xaa\x4c\xd0\xf5\x03\x22\xab\xef\xd4\xa0\x59\x63\xce\xc2\x65\x7d\x65\x41\x5e\x4e\x3f\xe4\x04\x71\xb3\xb6\x78\x0b\xf6\x0a\x76\xc9\x0c\xd2\x0f\x44\x29\x85\xd3\x09\x51\xa1\x00\x6d\xc5\x1d\x78\x24\x15\xca\x2f\x6d\xc2\xab\x50\x25\x95\x97\x91\x8a\xad\x57\xb2\x42\x13\x97\x61\xfc\x31\x9a\x0e\xbb\xca\xda\xe2\x66\x27\xc3\x4d\xaa\x65\x51\x2f\x43\x57\x2a\x87\xdd\x59\x75\x6b\xa0\x94\xf1\x11\x83\x4d\xb6\x3e\xbe\xb5\x58\x24\xab\xf5\xb3\x5d\xbc\xda\x39\xdf\x78\x8d\x21\x5c\x37\xd2\x88\x3b\x80\xb5\xaf\xcf\x80\x55\x08\x51\x81\xfc\x69\x36\x28\x81\xe0\x37\xd9\xbd\x1c\xda\xad\xd7\xf4\x3b\x83\x02\xd4\x02\xc4\xd7\x47\xfd\x05\xd7\x36\x07\x90\x8d\xa8\x5e\x73\x8c\x10\x39\x9a\x4e\x8f\x2c\x90\x82\x0d\x90\x13\xd3\x64\xab\x78\x40\x47\x70\x79\xed\x13\xd0\xc6\xa1\xc2\x2f\x02\xcc\xfb\xe2\x98\xf6\x36\x0f\xaa\xc8\xca\x32\x58\xae\x67\xf7\x4c\x72\x39\x9b\x88\x78\xf4\xef\xe3\x56\x4f\x5b\xb4\xe8\x56\xb8\x9b\x05\xe3\x70\x85\x0d\x75\x91\xb1\x71\xba\xc2\xb9\x63\xe1\xff\x9a\xd8\xdb\xe7\x90\x42\x41\x81\x84\x4d\x38\x87\x6e\xcb\xcd\xe1\xaa\x76\xe1\x2e\xd0\x00\x11\xe3\x87\xce\x82\xee\x75\xb5\x52\x6c\x3c\xcf\xdd\x1b\x53\xa4\xa8\x91\x1e\xc5\x3d\x98\x48\x58\xfd\x78\xaf\xcf\x2c\xf3\xe0\x0c\xe8\x82\xb8\x67\x30\x64\xcf\x4c\xcb\x3e\xa6\xd6\x42\xc2\x12\xb0\x09\x39\xb5\xfe\xec\x65\xd0\xed\xc0\x78\x59\x25\xda\x3f\xaf\xac\xd4\x32\xee\x74\x40\xe8\x66\x8c\xf1\x0e\x9b\xcb\x15\x01\xc8\x2f\x4c\x36\x3b\x8a\xff\xe0\x5c\x2c\x45\x80\x99\x5e\x58\x26\x57\xcc\x1f\x57\x72\xd2\xb5\x9a\x62\xd8\xac\xc0\x8e\x39\xed\x7e\xdc\x15\xae\x26\x31\xe1\xee\x22\xec\x00\xfd\x88\x6f\x77\x77\xec\xea\x7d\x7f\x94\x2c\x0b\xe8\x3a\x41\xb1\x1a\x96\x49\x8c\x2e\xc8\x91\x6b\x4a\x35\x39\x9c\x21\x7a\x3e\xa3\x5f\x78\x56\x4c\x06\xb6\xae\xe5\x8a\xab\xc7\x61\x65\xd0\xb5\xda\x22\xd7\xa8\x40\x9f\x32\xec\x86\xdb\xef\x1a\x7b\xe6\x5d\xbf\xb5\xa5\x3f\x33\x3b\x46\x40\x08\x0a\xae\x1b\xb9\xf2\x8a\xf2\xdc\xf8\x68\x9d\x91\x9b\x2e\x27\x57\xa9\x89\x3b\x6e\x3d\x94\xd7\x68\x35\x52\x82\x75\x38\x75\x4d\x0e\xca\xc1\x0f\x63\xc6\xb6\x01\x84\xc8\x66\x5d\x77\x4b\xbe\xab\xaf\x08\xf2\xd2\xbf\xc0\xd4\x2e\x6f\xac\x8e\xb8\x7a\xc8\x96\x6d\xab\x29\x16\x0f\x3c\xa9\x25\x1c\x9b\xa1\x39\x93\xbc\xb1\x1d\x31\x7f\xe8\x5d\x51\x70\x52\xb6\xce\x55\x93\x9f\x55\xcd\xd4\x7b\xa3\x77\xb6\x2e\xeb\x8d\xd6\xe4\xbc\x02\x5a\xfa\xd3\x37\x58\x1a\xe0\xd9\x03\x99\x64\x07\x0e\x2c\xfd\xe4\xb3\xa5\x4f\xdd\xaf\xe4\xbc\x6b\xd5\xc5\xd8\x34\x5c\x74\xbf\xab\xe1\xe8\x7e\x25\x97\xba\xe1\xa1\xc6\x0d\x57\xdf\xd7\x70\x5f\x5b\x49\x4d\x48\xda\x9c\x66\x49\xbd\x6d\x6e\xac\xa6\xd8\xdc\xf1\xa7\xfb\x91\xad\x57\x0f\x89\x14\xa5\x71\x8b\xd0\x1f\xc2\xae\x27\xa0\x85\xf5\xdd\x4e\xf9\xb7\xfa\x85\x85\x2a\x2f\x31\xc4\xd7\x13\x60\x2b\xa0\x30\x5d\xc8\xd1\x84\xd5\xbc\x6a\xcc\x31\x43\x5c\x92\xaf\x0e\xed\x2c\x99\xa7\xc7\xb7\x6c\xd8\xae\x1b\x3f\x20\xd1\xbb\xb6\xf5\x50\xe7\xf0\xc8\xdc\xb0\xf7\x2e\x79\xa0\xbf\xb2\xe6\xb5\x1c\x2d\xaa\x47\x4b\xda\xc2\x65\xc5\xc0\x8b\xe6\x9e\x1b\x42\x01\x46\xf5\x5d\x3f\x4a\xb9\x4f\xd7\xb7\x91\xc3\xbb\xd4\xc2\x59\xd2\xa6\x4f\x68\x52\x48\xea\x03\x3c\xae\xd9\x81\x87\xae\x49\x30\xc6\x50\xdc\xbe\x2e\x38\x55\x0d\x34\xc3\x0e\xcd\xf9\x50\xe6\x21\xe4\x02\x74\x81\x75\x9d\x8f\xe4\x1e\xa2\x72\xea\x50\x31\x0f\x49\x47\xc3\x71\x3e\xfc\x0a\x2e\xae\x91\x0f\x8a\x3d\x3e\xab\x4c\x5d\xb8\xd3\x08\xcd\x83\x84\x1a\xa7\xb2\xfe\x46\xc6\x72\x13\x5e\x20\xb2\x59\xb5\x67\xc5\xcc\x5d\xe0\xbb\x24\xdc\x22\x65\x0f\xb2\x19\xad\x36\x47\xb7\xc3\xcc\x7e\xd8\x93\x9a\xed\x50\xfe\x30\x2d\x87\xd9\x7f\xdb\xb4\x2c\x59\xd3\xc1\xaf\x88\x4f\xcb\x2a\x56\xb9\xcc\x9c\x26\xf7\x54\x19\xc0\x64\x47\xee\xdd\xee\x10\x29\x44\x28\x82\xeb\x7f\x76\xe2\x52\xea\x21\x4f\xb2\x56\x52\xf2\xe9\xcc\x01\x00\x10\x11\x98\xce\xb8\x6a\x39\xa2\x41\x35\x1e\xc4\x8e\x78\xf2\xc6\x1e\x6a\x14\x07\x2a\xd8\x4d\x74\x12\xed\xb1\x2a\x92\x71\xc0\x2e\xe9\x93\x55\x16\xa9\xb1\x91\xd9\x34\x55\x7f\x5c\x11\xda\xcf\xcb\x1e\xe7\xb2\x7a\xe0\x7f\x09\x3b\xd0\x7e\x5e\x75\xb4\x4c\x77\x7f\x7c\xd4\x1c\x81\x7c\xf0\xef\xac\xaa\x38\xe1\xa8\x76\x37\x84\x3e\xf6\x66\x7d\x40\x73\x86\x7a\x16\x0e\x26\xe1\x6f\xe2\xa9\xb2\xb7\x53\x75\x24\x1c\x83\x29\x52\x22\xb0\xa9\xaa\x3d\xb6\xe1\xe2\x66\xd2\x17\xc1\x1f\x32\x66\xfe\x1e\xdd\x9e\xf1\x61\xaa\x0f\x77\xba\xc6\xb4\x1a\x14\x0d\xe5\x0c\x99\xdf\xfc\xa0\xac\x99\x66\x55\x40\xd5\x0a\xfc\x0e\x37\x1f\x8c\xc8\xf0\xc1\x72\x20\xf3\x96\x90\xbf\x30\x45\x4b\x56\x1d\xb1\x9e\x80\x57\x39\x0f\xeb\x5b\x33\xaf\x2b\x37\x28\xc3\xee\x9d\xd8\x81\x2d\x66\xdc\x8b\x1d\x32\x59\x72\x08\x19\x37\x6c\xa7\x36\xb0\x0c\xaa\x8b\x95\x49\x0e\xb1\x87\x48\x81\xcc\xb8\x5f\x88\x78\x6c\xdc\x50\xba\x65\x67\xc1\x9f\x54\x13\x47\xb9\x93\x5b\x13\x3a\x6e\xc0\x4b\x9c\x1e\x4a\x72\x00\x4c\x6c\x62\xf3\xe4\x57\x46\x85\x57\x37\x66\x39\x8f\x8e\xd3\x2b\xed\xe1\x9a\x8f\xbc\x72\x73\x02\x2f\x5d\x94\xa1\xae\xc9\x02\x05\x04\x88\x39\xec\x2c\xb0\x35\x8c\xbf\x66\xac\x4f\xe1\x8c\xe7\xcc\x13\xa8\xdb\xd2\xc1\x13\xe7\x64\x9e\xb8\xf0\xc7\x6a\x32\xb8\xa6\x49\x0e\xc7\x59\xf1\xb6\x37\xbc\x16\xe4\x87\x86\x50\x7e\x4a\x8c\xd0\x2c\x04\x7d\xd9\xbb\x98\xa9\x21\x55\x85\xc2\x2f\x5b\x0d\x0b\x1b\x23\x82\x63\x6c\x3d\xb0\x2e\xae\xcc\x61\x35\x90\x9f\x62\x3b\xe9\xa2\xd3\x04\x55\x5b\xca\x64\xf8\x65\x05\x39\xa0\xd1\x4c\xe4\xf0\xce\x0a\x1d\x24\x3e\x6c\xb0\x3a\x6f\x30\xec\xc6\x1a\x45\xc3\xbe\xaf\x36\xd0\x51\x8d\xc0\x0f\xb5\xe7\xc0\x13\x96\xa6\xbc\x88\xd4\x4f\x1e\x90\x97\x0f\x9c\x76\x92\x1c\x8f\x09\x8b\xe0\xfd\x00\x57\x60\x58\x85\xf4\x56\x6b\x4e\xe5\xfb\xa5\x8d\xc8\x79\xbd\xee\x39\x4e\x4c\x93\xb4\x17\x72\xe7\x07\xcf\xdd\xf4\x7d\x54\xc7\x22\x50\x9c\xe0\x6c\x82\xf0\x25\x7f\x22\x4d\x44\x8b\xbd\x23\xb3\xa4\xcd\x86\x6d\xa4\x24\xe1\xcc\x2c\xcd\x01\x89\x33\xaf\xc3\xf8\x37\xb5\xae\x28\x2a\xfd\x24\x1f\x35\xcb\xf5\x04\x5c\x78\x72\x5e\x68\x46\xfe\xae\xfb\x8f\x9a\x8b\x5c\xc9\x55\x2b\xda\xb8\xb9\x25\x4d\xf6\x4e\x46\x9b\xc1\x20\x72\x56\x87\x7b\xb0\x57\x9c\x17\x92\xeb\x52\x5e\x02\xce\x1f\xeb\x5a\xb6\x71\xce\x21\xd7\x88\x91\x1c\x43\x35\x9e\x36\x2c\x6d\x6b\x63\x6c\x7b\xfa\xff\x15\xcb\x11\x2d\xf2\x90\x7b\x14\xc3\x59\x6c\x41\x3a\xbc\x2b\xa7\xdd\xc0\x9f\x65\xae\xae\xc1\xd3\x2d\xec\x88\x36\xb3\x81\x53\x44\x8e\x22\x80\xe6\x7b\x75\xac\x8e\x70\xfc\xb2\xbf\x8d\xf7\x98\x86\x4a\x02\x08\x57\xd4\xe3\xc4\xf4\xe8\x73\x8f\xe9\x11\x9a\x64\x40\x6b\x3e\xf6\x7a\x62\x58\x8d\xcd\x8e\x78\x91\x97\x22\x2e\x4c\xc4\x61\x35\x38\x71\x3d\xf4\xab\x04\x63\xdf\xbc\xe3\xbf\x9b\x41\x8a\xb5\x42\x85\x7c\x4b\x91\x6b\x33\xd8\x44\xd7\xdb\x28\xb5\x58\xb9\xc8\xc0\x49\x1e\xdd\xdf\x5a\x7b\x22\x2b\xf4\x9e\x26\xce\xe1\x10\x90\xdb\x70\x35\xfa\xe8\xa5\xc2\x9e\x6f\x9e\xf1\xfa\xa4\x88\x56\x77\x55\x01\x92\xca\x67\xce\x5a\x9c\xa6\x02\x9e\xf8\xec\xb1\x65\x27\xed\xed\x4d\xec\x33\xae\xa6\xec\xb4\x45\x2a\x13\xe8\xcb\x28\x61\x81\xf1\x26\x33\xcb\xbc\xc6\xa1\x69\xb0\xd5\x9e\x7d\xb2\xea\x96\x63\x6e\x7e\x7d\x20\x73\xea\x31\xe2\xee\x71\x80\xfe\x4c\x58\x4d\x51\x7d\xb9\xfd\x38\xd6\x4f\xdd\xc1\xec\xd5\xf7\x0c\x33\x0d\x8d\x1d\x21\x5d\xa8\xdc\x3f\x6f\xb4\xb6\x50\x77\xe9\x57\x8e\x2b\x6a\x8a\xea\xdb\xec\x35\x42\x42\x97\x55\xd0\xc9\xac\x71\x38\xf3\xcf\xe8\xa4\x71\x2a\xbf\x22\xc0\x81\x87\x1c\xaf\xff\x7a\x0b\x7a\x66\x39\xa2\x3d\x85\x63\xd0\x4c\xea\x1d\xaf\x3f\x6f\x5f\x0b\x29\xfd\x08\x5b\x99\x22\x67\xaa\x27\x7d\xa1\xdc\x0a\x73\x32\xb8\x93\xe6\x78\x8c\xdf\xf0\xe5\xcb\xb3\x72\x16\xb1\x66\xa1\x23\xae\x7d\x77\xde\xae\xb0\xe3\x4d\xeb\x88\xc6\x50\xcd\xe0\x73\x17\x0e\xa3\x08\x77\x45\x3a\x6a\x5e\x6e\x0e\xf3\xa8\xca\x56\x62\x7d\x64\xc9\xe6\xa3\x86\xf2\x42\x39\xa7\xe6\x79\x3d\xc8\xd1\xfc\xac\xef\x4c\x35\x42\x73\x67\xd8\x61\xe5\xe5\x73\x74\x57\x2c\xaa\x41\x87\x66\x43\x70\x46\x36\x04\x45\xde\x13\x75\xae\x8c\xc1\x6f\x3a\x23\x12\x98\xaa\x4f\xc9\xbb\xc8\xf2\x4c\xee\xb0\x3c\xe3\xf2\x38\x80\x8c\x3a\xbf\xc6\xae\xa9\x68\x20\x73\xe1\xed\x74\x90\x74\x35\x46\xaf\x61\xe5\x4b\x7c\x43\x9b\xb1\x04\x08\xb2\x17\xdf\x8a\x64\xc6\x79\x99\x76\xe1\x9f\x02\xbb\x07\xb9\x46\xa8\x33\xd7\x88\xa5\x63\xcd\xa4\x68\xed\xe4\xb4\x66\xc5\x6d\xfe\x47\x38\x03\xe6\xe5\x41\x7f\x5d\x4e\x8a\x94\x1b\xe9\xd5\x29\xe0\x0e\x81\x7f\x9f\x68\x21\x4d\x71\x9d\xc3\xaa\xe8\xce\x52\x5c\x46\x7e\x81\xa2\x3e\x23\xf6\x55\xbd\x9d\xdc\xb0\x54\x3d\xb0\xe7\x17\xf5\xa2\x1e\xb8\x45\x16\xb8\xe8\x4f\xf0\x73\x30\xaf\x60\x0f\x42\x3a\x2c\x6a\x25\xeb\x91\x67\x8d\x3d\x5f\x99\x24\x63\x36\xa3\x4f\xb8\xcb\x47\x33\x2e\x35\x56\x8d\x70\xa8\xce\x93\x1f\x31\x93\xaa\xdb\x8b\x54\x2a\x24\x04\x74\x99\xb7\x29\x6a\x8b\xa4\xda\xf9\xbb\xd5\x42\x1a\xf5\xc8\x1b\x8f\x64\xeb\x7c\x43\x19\x20\x20\x60\x2e\x6b\xea\x9e\xed\xb4\x2c\xb2\x51\x35\x74\x48\xc9\x4b\xba\xd7\x5a\x04\x64\xf9\x24\x88\x55\x88\xcc\x34\x16\xba\x49\xde\x72\xc1\x44\xf6\x56\x37\x61\xa9\x7a\x2a\x92\xc2\xa3\xb9\x2a\xeb\xef\x78\xe2\xaf\x9e\x92\x76\xd2\xa9\xac\xc9\xf4\x78\x0f\x2f\x4e\x82\xe0\xe8\x12\xe7\xf8\x5e\x65\xa3\x19\x59\xde\xd4\x5b\x25\xfa\xde\x93\x44\xda\x15\x5c\x46\x9a\xad\xa3\xb0\xee\xfd\x8d\xf9\xd9\xfc\x30\xa6\x15\xfc\xb8\x63\x0f\xd5\x50\xae\x21\xb9\x98\x62\x8c\x91\x1c\xf4\x78\x90\x4b\x29\xaa\xf7\x4c\x13\x19\x9d\xcd\x85\x07\x4d\xda\xe0\x5a\x0c\x6b\xd6\xb7\xbc\x54\xb6\x12\xf8\xa3\xb5\x23\xf9\x89\x35\x8b\x5a\xa4\xaa\xad\x40\xa3\xc6\xb5\xe8\x59\x3e\x4e\xc2\xe0\x8b\x99\xdc\x0c\xc1\x07\x28\x78\xcc\xd6\xe1\x40\xeb\x8c\xcb\xa6\xb7\x9a\x70\x5e\x4e\x6f\x96\xab\x65\x9d\xa9\x7c\xb2\xae\x94\xa8\x42\xb5\xbd\x9f\x84\xe4\x50\x8d\x4d\x36\x2f\x66\xd6\x6c\xe3\x30\x45\x5f\x90\x24\x10\xd7\xbc\x33\x70\xf4\xc9\xdb\x12\x93\x05\x60\x3b\xa8\xbc\xeb\xf8\x72\x92\xf8\x92\x6f\x70\xd7\xcb\xc3\xe3\x2d\x37\x81\xa3\xb6\x55\xb5\x26\x52\x3d\xed\xf4\x85\x5c\x77\xaf\x30\xe9\x14\x79\xfd\x28\x16\x2c\x22\x03\x40\xcf\x4c\x8b\x23\x5a\x9c\xad\x27\x55\x83\xcb\x45\x30\x9e\x05\x83\xbc\xcc\x54\x70\x29\x2c\x9d\xb3\x3a\x2b\xae\xb3\x54\x62\x2d\xb9\xd2\xda\x09\xbf\x18\xd6\x5e\xf7\x0e\xb1\x8e\xd9\xb2\xd5\x66\x9c\x74\x2d\x3b\xb6\x85\x68\x23\x0e\xae\x8a\x10\x79\xba\xc1\xb8\xae\x8d\x7f\x2a\xd1\x96\x43\x9b\x18\x14\x44\xb2\xcf\x50\xa8\xde\xce\x3b\xb2\xd9\x14\x42\x6f\x21\x4a\x37\x02\xde\x96\xc9\x53\xae\x47\xbc\xa3\x1f\xb7\x61\x45\x70\xf1\x23\xb9\xdb\xc9\x50\xb5\x7b\x8d\x2b\x86\xea\xa6\x55\xd8\x10\x89\x26\x3e\xb4\x41\xa3\xad\x69\x54\x13\x3b\xe5\xd3\x18\xf5\xb4\xd9\x0d\x3d\x96\xf2\x1a\x02\x78\x1f\x83\x7f\xd5\x83\xb7\x05\x69\x3a\x6c\x68\xbf\xea\x0b\x64\x0d\x43\xe7\x33\x72\x1c\xb3\x77\xf4\x49\xc4\x7b\x96\x39\xb0\x6f\x2c\x0b\x65\x4d\xb0\xbb\xc2\xea\x08\x5b\x5c\x51\x17\x59\x76\xd3\x43\x17\x33\x16\x6e\xf4\x25\x34\x96\x39\x49\xfa\xfd\x32\x7d\xb3\x5e\xa3\x8a\xd8\x4d\xf8\x6e\x70\x84\x7a\xdc\x4f\x18\x6b\xdb\x16\xf6\x0b\x52\x83\x33\x2e\x12\x2c\xfd\xae\x50\x02\x4e\x98\x65\xf2\x2d\x95\x01\x48\x9c\x02\xa0\x77\x27\xb9\x87\x9b\x0a\x10\xd7\x1a\x5b\xf4\xde\x39\xcc\x58\x35\xa8\x80\xd7\xc7\x87\x0b\x30\x98\xa7\x09\x13\xd8\x9a\x3e\xf4\xf7\xb3\x83\x24\x14\xb6\x50\x77\x84\xf8\x2c\x22\x2a\xb7\xc8\x27\x1f\x8a\x77\x9a\x9d\xd1\x7b\x0d\x49\x16\x80\xe6\xad\x07\xe4\xbc\x84\x11\x7c\x25\x9c\xf9\xf4\x9d\x79\x4d\x5d\xa8\x67\xe4\xe1\xd3\x0c\x88\xf3\x60\xb9\xa2\x22\xf2\x54\xcb\xc3\x84\x70\x50\x15\x5d\xa3\xea\xc8\x5f\x91\x44\xe6\xb3\x3c\xfd\x03\x26\xb9\x83\xa4\x10\x0e\x01\xf5\xa9\x1b\x2b\x80\x3e\x4e\x7e\x7c\xa7\x3d\x94\x57\xc0\x82\x23\xac\x85\x7e\x30\x79\xbe\xdd\xc7\x75\x5a\xb5\x02\xfc\x61\xf7\x05\x2e\x01\xb4\xc2\xf6\xce\x1c\x18\x2d\x55\xec\x6d\xb8\x19\xd3\x59\xe1\x6a\x74\x56\xf6\x38\x2b\x41\x23\x9c\x15\xe8\xd0\x96\xbc\x57\x7a\x91\x3e\x90\x3b\xc2\x6e\xbf\x60\x9b\xd1\xdd\xc7\xa0\x90\x25\x6c\x9f\xf0\x70\xcc\x78\x2f\x1e\xa2\x87\x63\xb6\x97\x1c\x6d\x1a\xb4\x71\xee\x2e\x56\x47\xfd\x22\xfd\x1a\x94\x0b\x4a\x21\x1b\x61\x49\xb3\x98\x23\x19\x32\x9c\x36\xb9\xa4\x23\x12\xd5\x11\xaa\x3f\xde\xa3\xfd\x76\x07\xb9\x15\x1c\xa2\x39\x6d\xa3\xbd\x0c\x94\x20\xaf\x41\x2e\xc9\xaa\xc8\xc9\x27\x9f\xc3\x28\xe6\x2b\xe6\x5a\x9b\xe4\x44\xef\x04\xa0\xf1\x27\xd6\x13\x5e\x8a\xeb\x64\x0e\x53\x21\x5f\xbe\xeb\x46\x8b\xed\x38\x6a\xf7\x87\xe8\x4f\x15\x53\x08\x92\xdd\x3e\x8c\xfd\x34\x39\xb7\x23\x01\xa0\xce\x50\x2d\x71\xf1\x20\x36\x0f\x96\x47\x56\xe4\x61\x2a\xf4\x50\x5d\x90\x2a\x31\x96\x33\x15\x9e\x16\x31\x92\x03\x78\x23\xef\x10\x26\xd5\xd6\x44\xb9\xe9\x4b\x1a\x51\x75\xb7\x07\x23\x3a\xdf\x63\xf6\xc8\x75\x43\x16\x76\xb1\x39\x75\x0f\x3b\x73\x75\x90\x1d\xd4\x4c\x6c\x83\xbc\x9d\x4c\x82\x84\x15\x33\xd6\x2d\x52\x65\x70\xe9\xb6\x69\x19\x40\x95\xa9\xdc\xc1\x93\x7f\xbd\xe2\x77\xe9\xa3\xb2\x31\x15\x57\xb0\xb4\xd1\x9a\xee\xb8\x70\x50\x0b\x38\xb2\xa9\xe4\xcb\x7b\xbf\x0a\x84\x0c\xd7\x97\x07\xae\x79\xc4\x99\xa8\xde\xc3\x61\x8e\x4b\x53\x70\x48\xe9\x3e\x20\x31\x81\x29\xce\xf0\xbb\x1e\x81\x10\xc3\xa5\xd7\x3c\x2c\xca\x3b\xdb\x33\xa5\x79\xe4\x09\x1e\x91\x38\xa3\x4e\x41\x1f\x45\xce\x04\x0c\x28\x41\x55\x08\x1e\x5c\x71\xe7\x6f\xb1\xce\x07\x6b\xc9\x0e\xe3\xef\x70\xa9\x31\x0f\x46\x4c\xeb\xd7\x14\x13\x60\x97\x82\x07\x93\x35\x3b\xe1\xeb\xf9\x4b\x6e\x39\xa7\x43\x0d\xfb\xd1\x2e\x28\x44\xfc\x34\x66\xeb\x50\xd1\xd3\x1a\xee\xd8\xf9\x32\xbc\x7c\x8b\x33\x19\xdc\xbe\xce\x42\x8e\x99\x98\xcf\xd7\xc1\x7a\x9b\x6c\x09\x5a\x1c\x50\x8b\x35\xaf\xe6\x3a\x14\x93\x5a\x46\x2d\x1a\xde\xe8\x6e\xf4\xd6\x37\x7d\x6e\x4d\x1b\x4a\x85\x8b\xe0\x1f\xcd\x7e\xad\xee\x18\x64\x26\x5d\xb7\xce\xc5\xc8\x73\xf6\x2b\xcf\x81\x28\xcd\xfd\x3d\xdc\x40\xb2\xf5\x28\xcb\x95\xe1\x2c\x7f\xc4\xa8\xf9\x1c\xfc\xfe\x0c\x67\x00\xc4\x65\x2e\x77\x0c\xce\xbe\xe2\x1b\x76\xf0\xc4\x13\x0f\x94\x75\x6f\x45\x31\xfa\xca\xb7\xf3\x18\x0d\xbd\x48\x4c\x64\x96\x64\x3c\xe5\xcb\x19\xba\x6d\x14\x86\xd2\x6a\x52\x68\x35\x7b\x26\x73\x90\x6b\x24\xfc\xa9\xf9\x31\xfc\x69\x20\xf7\x86\x4f\x0f\x02\x3e\x14\x94\x1f\x2e\x3c\xd1\x47\x12\x48\xdf\x4d\xf6\x9a\x7a\x61\x1c\x2b\xe4\x1e\x81\x44\xe4\x71\x95\x12\x69\x74\x0a\x0a\xaa\x7c\xba\x12\x6d\x06\x25\x23\x7d\xad\xba\xd3\x6b\x20\x96\x6a\x19\xd4\x27\x0b\x67\x31\xf2\x06\xf5\xa4\x97\x56\x30\xff\xdf\x23\xd6\xbe\x0b\x8d\xfa\xd3\x7d\xd6\x3e\x1b\xff\x5a\x2e\xbf\xea\xf5\xed\x88\x6b\x49\x59\xa5\xb3\x52\x40\xb4\xaa\x21\xb1\x0e\xcc\x5d\x2f\x45\xe2\x01\x10\x7d\x5d\x2b\x73\x84\x9e\x23\x9c\x3e\x4a\x4e\x2a\x84\x53\x1a\xca\x23\x0a\xb3\x38\xd1\x02\xa8\x23\xdc\xeb\xd1\x85\x07\xb5\xad\x99\x41\xc8\x7b\xb5\xd2\x88\x65\x7b\x93\x5e\xb5\x6e\x29\x61\xdf\x5d\x8f\xa0\x75\x8f\xbb\x6a\xaa\x5e\x16\x9a\x92\xda\x94\x93\x44\xe9\x7f\xec\x17\x4d\xd4\x5e\x85\xe8\x9c\x0e\xa8\x7d\x3c\x90\xdb\xf6\x54\xee\x28\xaa\xbc\x31\x65\x0f\xc2\x09\xf9\xd3\xda\xef\x7b\x12\x38\x5a\x69\xae\x9e\xa2\x1c\x35\xfa\x6e\x6e\x0b\xf1\x9a\xe5\xd2\xcc\x41\x82\x74\x22\x6d\x55\x8e\x8b\xaf\x0f\xe4\xf4\x69\xf2\x77\x15\xb8\x38\x4f\x27\xd4\x7e\x2b\xd0\x55\xd8\x30\x1a\x9d\xc1\x0c\xac\x51\x11\xf8\xaa\x25\xfe\x9c\xe2\x5c\x17\x3b\x8f\x0a\xc7\x69\x83\x88\x68\xf7\x8a\xe6\x64\x20\xc7\x0f\x56\x28\xe2\x4f\x00\x1e\x3e\x0d\xca\xda\x1f\xb7\xe8\x56\x02\xe1\xb2\x49\xc9\x9d\x38\x2f\x92\xeb\x13\x0f\xf5\x3a\x22\x76\xa4\x6b\x83\xcf\x80\x1e\x73\x7a\x17\x56\xb7\x77\x52\x60\x1c\xcf\x4f\xbb\xf3\x48\xe9\xad\xd4\x44\xdd\xdd\xb0\xaf\xfe\x40\xdf\xe0\x0a\x38\x66\xd5\xd9\x3b\x5c\x97\x6e\x4a\xea\xbc\xd9\xd2\x0c\x68\x7e\x87\x90\x8a\xc0\x6e\xa4\x6e\x16\x50\x60\x9c\x46\x32\x6e\x3f\x82\x36\x29\x0f\x4b\xda\x6b\x61\x13\x7f\xac\x86\xf6\xd1\x78\x09\x3f\xdf\xc3\x6a\x74\x16\xa1\xe0\x0e\xe5\x92\x06\x82\x9c\xe0\xc6\x1f\x91\xd3\x1f\xc5\x9c\xfa\xeb\x94\xb9\x22\x8c\x2e\xa0\xff\x71\xf8\xc0\x5a\xd2\xf1\x1e\x84\x41\x25\xdc\x48\x3f\x28\x70\x4c\x02\x87\x02\x0c\x64\x4e\x9e\xce\x3f\x7e\x2d\x97\x21\xb4\x88\x72\x4b\x2c\x8f\xc1\xf0\x28\xc8\xa4\x78\x23\xb6\xa7\xc0\x2a\x5a\x25\x1c\xee\xea\x42\xdf\x94\xf6\x9d\x2f\xcf\xc8\x23\xf9\xe3\x20\x77\x4c\x00\x40\x35\x90\xcb\xbe\x6e\x39\xd6\xdc\xc4\xad\x38\xa0\x33\x77\x8f\x7f\xab\xa5\x63\x10\x1e\xaf\xc6\x6c\x64\x31\x9e\xdf\x43\x28\xe6\x8d\x09\x30\xdd\x37\xae\xc0\xc2\x29\x61\x1b\x1e\x9f\xad\xae\x16\x7b\xa1\xa2\xaa\x71\xb4\xd1\xe5\x76\x25\xa4\xfa\xa1\x0b\xcc\x88\x5b\x4a\x28\x72\x76\x73\x27\x0c\x0a\x3b\x05\xfb\xd5\x18\xe1\xf7\x44\xe6\x8e\x32\xea\x3f\x06\xf8\xf0\xba\x70\x44\xb4\x85\x23\xca\x8e\x9e\x79\x72\xa7\x50\x9d\xf8\x23\x51\x3f\xff\x8d\x13\x04\x09\x8d\xf4\x35\xcf\x7a\x50\x27\x95\x5f\x7c\xa3\x5d\xd5\x98\xcc\x35\xa7\x59\x13\xd5\x4d\x19\x9e\xf6\xbe\x1c\x98\x83\x51\x92\xcc\x40\xe2\x7c\x7c\x72\xdf\xa9\x3b\x28\xdb\x11\xda\xe6\x92\x62\x84\xec\x5c\xee\xb1\x4a\x72\x17\x14\x1b\xac\x19\x3f\x31\x51\xca\xb0\x55\xe6\x8a\x3c\x1a\x0e\x8a\x41\xba\x86\xc7\xf3\xfc\xcc\xcd\x1c\x9c\xbb\xae\x58\xd5\x7a\x7a\x60\xe7\x1a\x82\x3b\xc5\x26\x4c\xeb\x7f\xda\x2f\x56\x5d\x3c\xb9\x6b\x2d\xe2\xd8\x15\x1a\x93\x97\x85\x93\x2a\x72\xb6\xe5\x47\xac\xd8\x80\x0a\x87\xd4\x3b\x9e\xad\xc5\x99\x03\x5c\x13\x2f\x55\x77\x0a\xc0\xcd\xa0\x7c\x59\x35\xd3\x86\x42\x7b\xa1\x1a\x43\x4a\x23\xd8\x05\x23\x7f\x37\x77\xdb\x10\xab\xa1\x16\xb0\x89\xc3\xca\x1e\x6a\xde\x1a\xac\x94\x2e\xba\x2a\xb8\x30\x23\x10\x25\xf4\x4e\xf4\xab\x19\xfb\x55\xcf\x4e\x65\xc4\xa6\x60\xfa\xcb\xda\x47\xee\x0f\x30\x40\x24\x7c\xd4\x23\x7f\x57\x4f\x17\xc7\xb1\xb0\x53\x50\x05\xb7\xc8\xfa\xea\xd5\x00\x59\x08\x7a\x4d\x93\xea\xd5\x23\x5f\x39\x22\x1c\xaf\x0d\x00\x39\x3c\xa4\xea\x4e\x96\x8d\x86\x46\x1d\x14\x30\xda\xe8\x09\x82\x91\x6b\xa6\x6a\x4b\xbc\x66\x11\x84\x41\xb2\xd7\x2b\xe3\x27\x1e\xc1\x33\xa4\x78\xbd\x1f\xac\x9a\xf1\x2b\x3c\x4a\x92\xd0\x19\xdb\x01\x50\x0b\xd8\x80\xb5\x3d\xc0\x75\x8a\xc8\x1c\x4e\x67\xb0\x4d\x00\x4b\xc0\x71\x5b\x91\xce\xa8\x01\x18\x32\x70\x6f\xf4\x75\xad\x1a\x29\x26\x31\xfa\x3a\xc1\x89\x34\x81\xeb\x56\xb7\x6a\x62\x58\x26\x4d\xd5\xba\x4c\x30\xa4\x77\x11\x7e\xaf\x54\x46\x5c\xf5\xb0\xf1\xfd\xdb\x9f\xe8\xc0\xdd\xf6\x2e\x08\xf2\xf2\xc6\x70\xf6\x63\xd0\xa2\x3d\xc4\xe2\xa6\x81\x4e\x0d\xdc\x5d\x0f\x11\x6f\x5f\x38\x8d\x60\x9b\xfa\x7c\x79\xfa\x78\x25\x6e\x8b\x81\xe4\x70\x68\x9f\x32\x25\xd8\x87\x00\x4f\xe3\xc8\xf8\x43\x70\x64\x85\x70\x14\xf4\x01\x86\x96\x58\x40\x78\x3c\x4d\xa0\xb2\x6a\x56\x2d\x4f\x38\x27\x85\xb4\xd7\x66\x9a\x47\x37\xe8\xc3\x89\xf7\xa1\xe9\xfd\x80\xec\x07\xce\x42\x9e\x62\x2d\x26\xdc\xc2\x8e\xb7\x20\x10\x7d\x72\x88\x20\x55\x85\x78\x01\xcc\xac\x3a\xaf\xe5\xf4\x0a\xa4\x83\x6c\x0e\x4e\x32\xe0\xc4\x44\xbd\xc0\x82\xb1\x26\x95\x43\xb5\x84\xf9\x94\xec\x2f\x5d\x8e\xdd\x61\x6a\x30\x41\xf0\x55\xce\x89\x76\x52\x5f\xac\x23\x0c\xff\x7a\xcd\xce\xd6\x1d\x21\xbc\x03\xc7\xf1\x6a\xba\xef\x63\xef\x70\x17\x5a\x02\xc0\x04\xef\x20\x47\xf0\xc9\xa9\x09\x67\x5c\x1e\x2b\x2b\x4c\x20\x31\x86\x75\x44\x32\x6b\x36\x83\x5a\xab\x66\x16\x9d\x2e\x84\x01\x02\xdf\xcb\x46\x10\xa9\x27\x41\x53\x26\x43\xbe\xab\x3b\x42\xc1\xed\x04\x72\x0c\xe7\xe7\xb1\x6a\x42\x25\x65\x61\xc4\xe8\x0f\x04\xed\x94\x54\x43\x06\x19\x83\xac\x12\x71\x5f\x68\xac\x02\x80\x65\x7d\xce\xd6\x0e\x3b\xd8\x46\xd0\xb1\xce\x95\xb0\xa7\x2e\x8c\x37\x03\x25\x1c\xf6\x16\x21\x20\x0e\x75\x5b\x38\xb1\xe0\x6c\x82\x85\x28\xa8\x24\x84\x3f\x38\x22\x68\x74\x5a\xce\xdc\x83\x70\x67\xef\xad\x6a\x00\xe1\x8a\x44\x91\x8d\xd2\x09\x8a\xf4\xeb\x93\x0c\xa4\x9d\x81\x4c\x56\x31\x30\x30\x68\xb5\x69\xc5\x6a\x8a\xea\x33\x26\xbe\x06\xb4\x49\xf8\x08\xf8\x30\xaa\xbe\xc1\xc6\x0d\x37\x05\xb8\x4d\xeb\x6a\xaf\xa2\x7e\x92\x11\xae\x89\xc2\x97\x76\x26\x52\x5a\x1f\x65\x20\x83\xb9\x59\xb6\xab\xc1\x08\xac\x90\xa4\x23\x17\x29\x6c\x88\x46\x9f\x3b\xda\x6d\x43\xbe\x9c\xbf\x25\x45\x17\xa9\x7b\x1b\x46\x79\x2c\xf5\xe1\xbe\xc5\x94\x1c\xc2\x44\xad\x13\xb9\x78\x86\x75\x73\x8b\x48\xf9\x9d\x5e\x15\xf7\x69\xdb\x60\xc3\xa5\x2b\xdc\xb7\xa1\x13\xe1\x9a\xae\xd9\x3c\x39\x55\x63\x59\xa8\x5a\xe7\xf2\xd7\xf2\x31\x0c\x72\x43\x5e\xa9\x55\x8f\xd7\x94\x82\xe6\x48\xb5\xdd\x1c\xa6\x22\x2a\x8d\x4c\x1b\xf2\xd0\x41\x0e\x95\x35\x28\x8b\x91\x74\x91\x54\x88\xd3\x6d\x53\x8e\xd5\x3f\xf4\x3f\x57\xa8\x34\x2e\xe7\x4e\x80\xcd\x86\x33\xff\xc7\xfa\xe1\xa8\x04\xe2\x99\xae\xf5\x69\x0b\x02\xaa\x5a\xb9\x15\x07\xda\x81\x32\x99\x88\xa5\xf4\x9f\xc0\xfb\xb5\x85\x4a\xdb\x93\x19\x8b\xfe\x0f\xa4\x2b\x2f\xad\x58\x6b\x14\x26\xbd\x01\x2c\x39\xa0\x39\x1a\x73\xe4\xd1\xf3\x59\x53\x3f\x87\xe1\xa1\x44\xda\xce\x2a\x43\x89\x0d\xc0\x60\x21\xd1\x5a\x03\xfa\x9d\x9a\xc8\xcb\xb4\x6d\xb9\x22\x7f\x73\xb3\x66\x06\xdc\x7f\xd1\x6c\x0b\x90\x0b\xbb\xf0\xba\x35\xc8\x9f\x00\x07\x75\xd7\x74\x6b\xad\x65\x16\xfc\x58\x4d\x9f\x8d\x0e\x30\x1d\xeb\x42\x6c\x39\x85\x11\xc0\xbe\x80\xde\x41\x87\x36\x07\x34\xe7\xb9\x2c\x70\xbb\xe2\x49\x22\xe8\x2f\x82\xad\xba\x41\xbb\x2b\x19\xb6\x3b\x94\xb3\x6c\x09\x99\x82\xd7\x23\xd8\x51\x35\x94\x79\x14\x0f\x64\x92\x3b\x1c\xa4\x74\x33\xb5\x91\x0c\x1e\x36\x06\xe0\x79\x6d\x82\xf2\x93\x5c\x21\x4b\xd3\x08\x49\x92\xe4\x1c\x1c\x71\x31\x54\x4b\xaa\x29\x06\x39\x93\x3e\xb7\x5d\xd7\xd1\x54\x44\x1b\xe6\xe1\x1e\xb0\x56\xdc\x86\xdf\xb7\xe0\x36\x03\xef\x42\x1b\x60\x9a\xc6\xdf\x85\x68\xbc\x95\x79\x55\x8a\x68\xcd\x82\xe7\x91\x63\xd3\xc9\x03\x71\x84\x37\x1d\x14\x03\x62\xef\xb8\xc9\x3e\x45\xd2\xf5\x0e\x4d\xf2\xd4\xc4\xc7\x14\x5e\x47\x41\xfb\xf1\x55\xaf\x27\x6e\x96\x4a\xf1\x9d\x83\x99\xa7\x66\xbd\x32\xe2\x03\x00\x6a\x8b\x17\xbd\x66\xb9\xc1\xf5\xf7\x36\x28\x70\x83\xe2\x77\x36\x18\xc9\xa4\x99\xb4\xf4\xd7\x3e\xc5\x40\xa6\xa9\x34\xda\x75\xc7\x69\x5e\xdb\xf4\xe5\x49\x03\xcc\x60\xa0\x0b\x39\xf1\xf8\x7c\x6e\x36\x4f\x7f\xe7\x07\xad\xb8\xc1\xfa\x3b\x1b\xac\xe5\x8e\x5b\xec\xd3\x97\x8f\x85\x23\xc4\x91\x97\xb3\x3c\x04\x62\xcb\x02\xc1\x6c\x67\xb0\xb8\x06\x97\x49\x74\x21\xb9\xbe\x72\xa2\xc1\xe8\xff\xea\x41\x86\xfb\xaa\x21\xa0\xf8\x5f\x28\x21\x87\x65\x23\x29\xec\x34\x9d\x12\xfd\x65\x47\x7a\x67\x95\xb9\x83\xc6\x1e\x69\xd1\x38\x0f\xb6\x77\x32\xe9\x35\xf4\x50\x16\x60\x29\xe6\x44\xb3\x30\xc7\x6f\x29\x8a\x99\x10\x23\x59\x32\x20\x62\x5d\x4a\x0d\x15\x21\x40\xfa\xe6\xad\x09\xd1\x41\x96\xd3\x45\x44\xc7\x5f\x05\x1c\x3f\x21\x70\x6c\x78\x00\x9a\xaf\xe9\xd0\x62\x37\x84\xe8\x1d\x88\x4e\x6d\x65\xa9\x85\xce\xb5\x50\x3f\x90\xf1\xee\x1f\x75\x3f\x90\x01\x9e\x90\xee\x70\x26\x87\xdc\x1b\xd1\xcd\x58\xf5\x23\xb8\xb4\x3d\x7d\x76\x1f\xa1\x31\xd7\x32\xc7\x60\x3b\x2c\xdb\xc5\x5a\x2c\x11\x71\x32\x20\xcf\x8a\x31\xac\x55\x45\x99\x36\x2d\xe6\x14\x18\x18\x6b\x31\x43\x8b\x3c\x69\x2b\xde\x5e\xf1\x8a\xcd\xa7\x13\x74\x85\xe0\x21\xec\xa6\x07\x46\x24\x59\x7c\xfa\x05\x79\xcc\x27\xc1\xe6\x3d\x3c\xa2\x76\x6e\xf5\x59\xed\x65\xb4\x76\x05\xb5\xd3\x9f\xd6\x9e\x5d\xa8\x7d\xf8\xb4\xf6\x28\x5a\xbb\x85\xda\xd3\x4f\xc7\x9d\xa1\xda\x6a\x9a\xa1\x03\x39\x97\x85\x57\xc6\x28\x85\xbd\x2d\x8e\x7e\x7c\x95\x8a\x7a\x17\x65\x9f\xac\x20\x4d\xdb\xad\xee\xed\xca\x29\xcf\xe9\xd0\x74\x72\xcf\x56\x47\xf8\x8f\x0e\x38\x8d\x12\x31\xb1\x53\x76\xcb\x0a\x20\x8c\xed\xde\x31\xc3\xcc\xb6\x23\x9c\xfb\x85\xcf\x88\x12\x4a\xa8\xa7\xb5\xf9\xd1\x21\x37\xa6\x06\x90\x63\xd5\x13\xfb\x8b\xd4\x85\x7a\x1e\x1a\xf6\xb6\x21\xdc\xa7\x7d\x3f\x00\xab\xba\x5d\x47\x9a\x8e\x87\xd2\x9c\xb4\xea\x73\xde\x1c\x59\x25\xd4\x1b\x43\x64\x38\xc2\x0d\x52\x34\x2b\x08\xa4\xa4\x85\x6a\x51\xd6\x5f\xce\xd0\xac\x80\x32\x4e\x0f\x26\x92\x9e\x64\x24\x1d\x07\x85\x3b\x92\x9e\x78\xf4\x20\xc0\xe6\x53\x43\x38\x9f\xb7\x74\x5f\x6f\x11\x5c\x9e\x8d\x14\x28\x1f\x48\xfd\x60\x2f\x89\x1c\x2a\x4d\x5f\x87\xd0\x96\xea\x16\x3d\xeb\x5a\xd2\x6e\x55\x00\x6a\xa5\xf2\xae\x2e\x07\xf2\x13\xe0\x3a\xb8\xfc\xf5\x7b\xcb\x2b\x86\x66\xb9\xc3\xf3\xaf\x63\x30\x0e\xfd\x20\xfe\x66\x7a\xf0\x4a\x0f\x46\x8a\x22\x4a\x14\xf4\xf0\xf4\x60\x24\xe9\xc9\x40\xd1\x75\x4a\x09\xf6\xf9\xc9\x00\x4f\x58\x01\x48\x80\xdd\x4b\x43\x39\x5b\xe4\x78\x1a\x9d\x77\x11\x20\x83\xe8\x27\xf1\xe9\x0d\x30\x46\xf4\xa3\xf8\x67\xe2\xd1\xe0\xf3\x47\x23\x29\x92\xee\x86\xb1\xf1\x90\xc9\xb2\x3e\x8a\xe6\xe3\x2b\xed\x02\x9d\x21\x88\x58\x5f\x8c\x36\x2c\xfd\xc0\x9c\x0a\xeb\xce\x16\x8c\x1e\xeb\xac\xc0\x04\x7a\xc8\x71\x59\xbb\x82\x5e\x51\x20\xd5\x3c\x8c\x8b\x84\x4e\x75\x9b\xdc\xf1\xb5\xa1\x4f\xde\x08\x47\xc0\x68\x63\x49\x44\x28\x18\xd8\x5a\x58\x9a\x90\xef\xaa\xbc\x1a\xc8\x40\x85\xeb\x6e\xa0\xa2\x9c\xe0\xc8\xb7\xae\xc1\x9a\x20\x24\x62\x65\x4e\x81\xa7\x2f\x86\x0f\x15\x1d\x93\x0f\xbb\x8c\x3b\x49\x09\xf5\xb2\x03\x08\x59\x33\xe3\xc5\xba\x6b\x0a\x77\xa8\x30\xdc\x81\x7b\x3b\xa0\xbd\x2a\x3c\x1f\x33\x16\xe0\xac\x8b\xda\xbc\x03\x84\xb2\x2c\x6b\xdd\x6b\x01\x70\x46\xab\x08\xf2\xdb\x19\x52\x44\xa2\xe3\x6b\x69\x6b\x51\xbb\x85\xfa\x76\x04\x56\xa1\xbb\x89\xae\xc1\x49\x9d\xaf\x81\x7a\x9f\x60\x7a\xda\x85\xe8\xec\xe7\xef\x82\xc0\x5c\xe1\x0e\x91\x38\x17\x30\x31\xb7\x9f\xcf\xe9\x88\x22\x2d\xc7\xc4\x1a\x93\x62\x82\xdc\xb9\x5b\xb7\xb8\x3d\x9b\xfc\x9b\x5c\x21\x00\x57\xea\x3e\x5a\xec\xc2\x21\x1c\x9e\xcc\x4c\x19\x1a\xda\x25\xe4\xa0\xa9\x41\x92\x76\xd8\x74\xcf\x5a\xf6\xaa\x70\xb2\x65\x98\x13\x90\x11\x0b\xd2\xdc\xdb\xec\x1a\xd4\x28\x4b\xed\xd4\xcb\x35\xe2\x4f\x01\x02\x01\x6a\x56\xa0\xf5\xe8\x3f\xc3\xec\x77\xb1\xb5\x26\x78\xec\xcd\x19\x69\x68\x75\xc4\xdb\xdb\x0e\x1a\x9f\xcb\xcd\xec\x8b\xcd\xda\xe2\x28\x29\xec\xb6\x4f\x36\xdc\xca\x38\x0b\x2c\xff\x35\xf8\x8b\xae\x4f\xce\x08\xf6\x4e\xce\xd0\x77\x67\xd3\x89\xae\x3c\x84\x1c\x0a\x37\xf5\xb0\x70\xf9\xdb\x71\xf9\x88\x0d\xd3\xa1\x29\xe8\xac\xb0\xc8\xd9\x1e\x4b\xd7\x04\x66\x40\xf0\x92\xfb\x5b\x90\x9c\xa9\x4a\xa6\xa4\xd1\x49\x94\x9b\x7b\x4a\xaa\xd8\xcb\x3c\x59\x8e\x98\xc9\x57\x7d\x52\xc8\x88\xf3\xda\xb7\xf6\xb6\x48\xdd\xf1\x81\x2b\xca\x5d\x27\x94\x81\xf6\x32\x2e\x04\x0d\x91\xaf\xc1\x7f\xb9\x24\x92\xf0\xe6\x7c\x1d\xa6\x62\x12\xc9\x94\xb1\x1e\xbd\x24\x1b\xd4\x06\xe4\xf7\x43\x14\x29\x48\x58\x3b\x06\xd7\x9a\x8a\x88\x3e\x25\x55\x42\x47\x31\x30\x72\xd5\x1b\x80\xc5\xec\x8e\x39\x99\xf6\x88\x26\x57\x2d\x18\x97\x44\x4e\xb9\x7c\x96\xfd\x1a\x4f\x0d\x53\xac\x91\xb1\xda\x5f\xe1\x44\x43\xf6\xb3\xc1\x82\x6c\x13\xd7\xd1\xab\xb0\xa7\x0e\xd2\x8a\x34\xd6\x65\x4a\x9f\x95\x87\x8e\x94\x62\x8e\x18\x0e\x52\xc1\x18\xc7\xb7\xb0\xba\x57\x46\x91\xeb\x30\x13\x43\x43\x79\xbb\x05\x6b\xac\xa9\x18\x61\xdf\xa9\x24\xd1\x90\x2e\x1b\x21\x9e\x01\x09\xb7\xe4\x6b\x6c\x86\x39\x68\xb1\xb6\x64\x01\xae\x32\x38\x43\x3b\x08\x20\x07\x75\x56\x0f\x0e\x02\x22\x56\xe4\x06\x74\xfa\xd0\x87\xd8\x03\xb6\xdc\x72\x85\x4d\xa1\x51\x0b\x39\x60\x1a\x4c\xf3\xfc\xb8\x20\x65\x40\x07\xc6\xd4\x23\xf2\xc4\x40\x79\x96\xee\xc3\x51\x40\xb3\x7a\x3b\x60\xb8\x6f\x69\xb7\x12\x10\xc7\xaa\x7c\xd0\xa7\xa1\x6a\x92\x25\xea\x2f\xbd\x3a\xd2\x98\x28\x24\x6b\x2e\xf9\x5b\x87\x72\x00\x99\x36\x13\xcd\x62\x4e\x87\xa2\x1b\xe4\x1c\x26\xef\x13\xbb\x87\x01\x0e\xdf\xa3\x03\xdc\xbf\xb1\x4a\x99\x40\x1f\x48\xa7\xdf\xb1\x69\x80\xd9\x8f\x03\x64\xbf\x6c\x82\x18\xdc\x94\x17\xf4\x62\x58\xb6\xe6\x72\x66\x58\x35\x22\xce\x9b\x30\x35\xc4\x26\x60\xd4\x3e\x91\x23\x0e\x86\x1d\x6c\x50\x3a\x7c\xfd\xa2\xe2\x14\x98\x24\x79\x64\xb8\x06\xc6\x29\xf1\x62\x7e\x45\x3f\xf0\x4a\xcc\x5a\x6f\xb7\xf4\x19\x3b\x89\x63\xb8\xdb\x72\xd7\x5b\x46\x9b\xd7\xbd\xb5\x0e\x5c\x3a\x78\x47\x0e\x72\x3d\xc2\x26\xa6\xa1\x41\xee\xf9\x6a\x2c\xf3\x7b\x20\xce\xb0\x14\xe4\x09\x75\xf7\x10\xbc\xf4\x2d\xd9\x8e\x31\x97\xc0\xd7\xd5\x6b\x72\x4d\x87\x61\xae\x72\x9d\xe8\xd7\x13\xc0\x8f\x7d\x7c\xb9\xf4\xd5\x29\x68\xdd\x1a\xe9\xed\x07\x5e\x3f\xf2\xd5\x0d\x52\xf0\x57\x19\xe8\xfd\xac\xeb\x71\xf9\x72\xd7\x19\x08\x5c\xd5\xec\xf6\x03\x7f\x1d\xe9\xba\x46\x5c\x8e\x16\x62\xde\x68\x73\x66\x54\x08\x55\xb3\x97\x63\x6e\x7b\xcd\x75\x00\xcb\x5b\xb8\xa5\x59\xcf\xf1\xc3\xfc\x16\x90\xfd\x70\x5f\x6b\x15\xb8\xb8\xb8\x65\x9b\x3c\xe5\xc9\xad\x24\x19\xa4\x69\x04\x52\x86\xdc\x70\xf7\x38\xc1\x37\x4c\x59\xaa\xfa\xc3\x3e\x4e\x5e\xe1\x93\xc9\xcb\x6c\x4d\x4e\x77\x1a\xff\xf3\xe7\xe3\xbf\xe2\xf1\x5f\x61\x9d\x48\x2f\xc8\x90\x74\xa6\xca\xe7\xfb\xad\xc4\x09\xe1\x07\x70\x3a\xe8\x0e\x77\x5f\x9f\x50\x95\xac\xe7\xce\x3e\xd6\xb6\xda\x22\xa3\x9e\x0e\x2f\xc4\xf2\x3d\x56\xcf\x64\x0f\xd2\xe0\x03\x73\x02\xea\x54\x5f\x86\x2e\xac\x45\x3a\x2e\x3b\x99\x04\x29\x99\x51\x5c\x7b\xe3\x84\x0b\x6a\x26\x53\x29\x7a\x75\x83\x51\x1c\xe9\xda\x5f\x53\x51\x7d\x13\x14\x39\x59\x1b\x9f\x39\x87\xf9\xa6\x89\xa0\x7e\xd3\x99\x1b\xe0\x22\x1a\x38\xbe\xb5\x7c\xb8\x50\x0f\x11\x30\x15\x5d\x2f\x5b\x0e\x7d\x37\x92\x2a\x14\x70\x26\x65\x73\x8f\x07\x57\x7a\x53\x0b\x44\x13\xe6\x19\x6d\xa1\x1e\x99\xfb\x55\x42\xf5\xf6\x9c\x7b\xb6\x25\xaa\x63\x79\x1c\x46\x64\x20\xc5\xf6\xf8\x47\x38\x89\x35\x23\x8d\x8c\xa9\xfe\x0e\x8f\x38\x2d\xa9\xa6\x59\x26\x7f\xad\xa6\xaf\xc8\x08\x0e\xe8\xe8\x7c\xcb\x58\xf7\x3d\xdd\xe2\x74\x8c\x20\x17\xad\x1f\x03\xe0\x40\xf7\x7d\x30\x88\x00\x4e\x0f\x64\xf8\x2d\xd5\x90\x69\x59\x98\x6f\xa9\x0b\xf5\xa8\x4c\x7c\x80\x7a\x98\x4f\x98\xb3\x29\xea\x9e\x02\x6c\x41\x0a\x00\x34\x5f\xc3\xa6\x15\x38\xd0\x8a\xfa\x04\x4c\xcc\x8c\x31\x15\x3e\x94\xa6\xa4\x50\x63\xa7\x1b\x02\x13\x0e\x65\xd0\x6f\x5b\xb8\x1b\xa9\x18\xac\x14\x20\xfc\x37\x97\xdf\xb2\x44\x7f\x4b\xbc\x65\xf5\xa1\x54\xbf\x65\xe5\xb4\x3f\x7f\xcb\x89\x5d\x21\x95\x50\x37\xc9\x91\x0c\x3f\xb9\x38\x8e\x4c\x51\x6e\xcc\x3c\x93\x2d\xd4\x7d\x39\x5c\x6e\x1b\x8d\x6d\xa1\xee\xae\x59\x86\xdc\x4b\xa1\xde\x32\x43\x69\xc6\xdb\xd0\xab\x12\xcc\x91\x12\xaa\xff\xcc\x3f\x4a\x9f\x6c\x54\xf7\xa4\x46\x51\x9a\x34\x96\x2f\x17\x5b\x84\x5b\xd6\xcd\xaa\x97\x58\x83\xe1\x58\x5e\x58\xbc\xa3\x2d\xdc\x77\x5f\x46\xc7\x32\x1d\x48\x23\xe2\x8a\xee\x41\x5f\x7e\x53\xe7\xde\xb2\xc5\xc4\x99\x28\xab\x23\xdc\x43\x39\xb3\xe3\x1a\x4a\xa8\xe7\x4c\x64\xab\x97\x86\xe7\x4d\x0f\xd4\x74\x1f\x34\xbd\xde\xc5\x3f\xc3\xbf\x38\xaa\x94\x1e\xd5\x30\xf2\x92\xd5\x87\x31\xf9\x37\xba\xe3\xd9\x0d\x75\x5c\x3b\x94\x43\x49\xd9\xce\xca\xf0\x80\x66\x58\xa9\xa7\xa9\xaf\x6d\x94\x14\xce\x53\x78\x1e\x2a\x17\x9e\xdb\x91\xb3\xf4\xf1\x79\x53\x38\x2f\x9f\xbc\x8d\x2b\x37\xbe\xff\x65\xf5\x6f\xbc\xac\xa1\x5f\x16\x95\xdb\xc3\x97\xa5\x18\x71\x85\x4c\x7d\xf7\xe1\x0e\xb6\xa3\x40\x65\xb5\x4f\xab\x04\x2f\xbd\x54\x65\x2e\x45\xfe\xa6\x06\xed\x42\xd2\x7c\xe1\x52\x8a\x72\x1d\xd2\xc1\xdb\x55\x1b\x96\xf3\x5c\xf3\xc6\xda\x97\x45\xc6\x75\xc1\xbb\xef\x59\x53\x00\x8b\x9c\x96\x77\x6f\xff\xf4\x9f\xac\xb0\xd5\x72\x53\xe4\x4f\xf6\x8a\x60\x60\x3f\xca\xf9\x7e\xc7\x98\xaa\x63\x2f\x14\x48\xe6\x67\x02\xc9\x01\x18\xb2\xf3\x0e\xf4\xb6\x79\x56\xf1\xe7\xbf\x53\xc2\xd8\x1d\x2e\x1a\x57\xfe\xe9\x92\x0c\x40\x70\x5f\xa7\x71\x9b\xcc\x54\x1e\x1d\xc8\x2c\x59\x1e\x78\xfe\xa2\x1d\xa0\x68\x33\x6b\x11\xf4\x38\x35\x17\x5c\xce\x34\xcc\x7f\x5b\xdf\x4e\xbd\x0c\x64\x89\x9b\x5c\xe5\xc9\x9e\xba\x41\x93\x0c\xbd\x6b\x8a\x26\x33\x34\xc9\x29\xb6\x07\x0d\x0b\x2c\x6a\x15\xe4\x05\xe3\x4e\x39\x66\x0e\x32\x99\xd4\xbe\x4f\x0c\x0b\x7d\x30\xcb\x88\x89\xd9\xcb\x29\xbf\x6c\x56\xa0\xd4\xb7\x25\x1e\x5f\x3c\x55\x2a\x18\x85\x3d\x9c\x74\x55\xce\xce\x76\xbe\x22\xc1\x35\x90\x9f\x23\x26\xc6\xf1\x85\x1d\xe0\xeb\xd2\x05\x10\x16\xce\xa4\xb0\x0b\xb7\x79\xb2\x94\xbe\x2e\x61\xda\xec\x5e\x01\xdf\x94\xf4\x11\xf0\x4f\x42\xbe\xf5\xd7\x14\xaf\x46\x9a\x78\x88\x0e\xb9\xbe\x3a\x90\x21\x02\x46\xf0\x6b\xea\xde\x4f\xa4\x08\x08\x6f\xc4\x81\x8a\xb7\x19\x16\x33\xe0\x06\x47\xf0\xc4\x06\x9a\xf6\xf3\x0d\x1b\x0c\x36\xdf\xe2\x03\xaf\xa8\x9b\x56\xe1\xc0\x6c\x2f\x60\x3d\x1a\xac\xf4\xce\x72\x71\xe6\x00\x26\x86\x4c\xbe\x9d\x24\x97\x5e\x1d\x68\xb8\x4b\xbc\xf2\x01\xaf\x64\x27\x8c\x4b\xaf\xdc\x12\x95\x06\x1f\xf7\x56\xb0\x31\xfe\xac\x11\x8d\xf4\x95\x16\xaf\x9f\xba\xd1\xa7\x69\xf7\x72\x78\x3e\xd3\x7b\xa7\xec\xd6\xa3\x66\x3a\x17\x0f\xe7\x4c\x67\xc0\xbe\x1d\xdf\x42\x12\x9a\x34\xfc\x8f\x23\xdc\xe7\x6b\xce\x04\x82\x94\x96\xb5\x59\x9f\x39\x5e\x72\x1b\x03\xff\xb7\x8a\x3d\xea\xe1\x11\x45\x80\x37\x91\x18\xce\x3c\xd2\x5b\xc9\xd1\x54\x50\xf7\xbe\x8a\x3d\xd2\xc3\x74\x4e\x92\x51\xbc\x0a\xbd\xe8\x33\x40\x6a\xac\x98\x7a\x96\x62\xcf\x56\xb1\x67\xc9\xd8\xb3\x45\xec\xd9\x30\x36\x4a\x3f\xf6\x6c\x1c\x7b\x36\x8d\x3d\x9b\xc6\x9e\x8d\x83\x67\x7a\xe3\xf9\xb1\x67\x43\xbd\xbc\x4e\x8e\x9f\x2d\x62\xcf\xfa\x78\xc4\x81\xf5\x9b\xd8\xb7\x3b\xfa\xf2\xcc\xf2\xb4\xd0\xe5\x93\x53\x21\x47\x95\x1c\x47\x58\x09\x5e\x31\x5b\xa8\x87\x2b\xc3\x76\xb5\x84\xfb\x76\xad\x42\xd3\x04\xff\xd9\x20\xfe\x33\x50\xaa\xb2\xdf\x6b\x4b\xb8\xef\x76\xc8\x41\x54\x50\xda\x14\xee\xbb\x13\xb2\xdd\x37\x28\x6d\x0b\x97\x40\xab\x78\x50\xd3\x08\x2b\x3f\x62\x6c\xec\xb6\x50\xbd\x88\x49\x60\x1a\xe1\xdd\x67\x32\xa2\xca\xef\x87\xc3\xf3\x50\x4c\x8e\xbb\x2a\xac\x3e\xae\xe0\xd3\xda\xc2\x7d\x2a\x46\xba\x61\x2c\xfa\xb8\xe0\x13\x61\x01\x93\xb2\x1e\x91\x0a\x86\xea\x42\xed\x08\xfb\x37\x56\xc7\x72\xcc\x02\x32\xad\x5c\x68\xb0\x33\x4e\x9a\xc4\x2d\xbb\x39\x99\x29\xc7\x18\x79\xff\x6b\x8d\x8a\x94\x74\xc3\xcd\xc9\x63\x39\x9c\xe7\xc5\xa5\x16\x43\x72\x66\xac\x2d\xf5\x3f\x6e\x41\x5e\x97\x83\x84\xfd\xef\x07\xc7\x50\x5d\xf7\xe5\x18\x59\x99\x93\x63\xc8\xef\xfc\x66\xc6\x49\x14\x36\x46\x4d\x39\x8a\x70\x22\xc7\x0e\x38\x91\xc2\xc3\x8d\xe6\x66\x47\x4d\x17\x91\x08\x6b\x39\x1c\xc8\x90\x1f\x18\x9c\x2b\x28\xc1\x0f\x2c\x68\x9c\xb1\x84\x85\x6a\xcc\xa9\x64\xfe\xfb\xd5\x96\x9f\x79\x60\x9c\xdd\x9a\xf0\x88\x08\x02\x0e\x56\x65\x40\x84\x4c\xe4\x01\x51\x13\xb5\x23\x3d\xa6\x84\x68\x75\x12\xfb\x29\xc9\x30\x11\xf0\xa5\xe2\x5b\x93\x2f\xcd\x34\x37\xc9\x14\x01\x15\xcf\xb7\x66\x3e\xb8\x35\x49\xab\x80\x01\x9a\x36\x39\x6e\x93\x07\xec\xa3\x69\x73\x75\xa1\xcd\xd0\x86\xe3\x41\x89\x9b\x5c\x15\xe9\x52\x67\x9d\xeb\x5e\x0e\x4b\x3c\x47\x25\xf8\x9b\x97\x02\x2f\x14\x7e\x30\x29\x7d\x9b\x73\xc0\x2b\x7c\x6e\xb1\x7e\xbe\xe0\xda\x90\x87\x9b\xf9\x31\x32\x6d\x59\xc5\x49\x35\x16\xdc\x70\x59\x8a\x3a\xc2\x74\x37\x5c\x4c\x66\x86\xf3\xfe\x32\xb9\x0b\xfd\x2d\x9c\x3f\xc2\xc1\x04\x5e\x16\x49\xf5\x55\x35\x32\xd3\x98\x8f\x4c\x08\x3d\x08\x01\xfd\x85\xb1\xae\xb2\xd9\x32\xf4\x74\x88\xfe\x65\xef\xea\x4b\x7c\xd8\x6b\x19\x96\xf9\x02\x6b\x92\xe7\xa1\x0c\xf0\x99\xbe\x6e\xc6\x6c\x07\xbb\xf9\x5c\xd2\x01\x15\x5e\x09\xf8\xc6\x2e\x42\x89\xa3\x88\x79\x01\x20\xd8\x35\x65\xf0\x3f\x7b\xd5\xe2\x93\x57\xe5\x4f\x1c\x11\x73\xfa\xc6\xab\x56\xf6\x1e\xaf\xba\x01\xdf\x14\xbe\x63\x00\x8f\xc9\xd7\xcd\x95\x0c\x58\xa7\xec\xf7\x2a\x60\x99\x4b\x6a\xf9\x1c\x59\x4a\x9c\x0b\xb0\x5f\xd6\x01\xb7\x74\x45\xa9\xf0\x79\xb2\x9f\xc7\x95\x33\x5e\xca\x11\xc2\xe1\x21\xa3\xb7\x66\x89\x31\x7f\xe2\xbc\x15\x79\x2d\x8a\xa7\x34\x7c\x72\x97\xd0\xcc\x2d\x6a\x97\x3a\xb1\xd9\x92\xd0\x38\xef\xa9\x40\xf6\xb5\xa6\x69\x55\xa7\x04\x2f\x67\x15\x6a\x42\xb4\x96\x3e\x73\x7f\x27\x93\x37\xe5\x64\x2c\xe3\x34\xfc\xd7\x1d\x97\x6f\x81\x31\xde\x22\x37\xeb\x0e\xd3\xb8\xc6\x80\x32\x57\xa9\xcd\xdb\xf0\x36\xe2\x6f\xb0\x75\xad\x10\xf9\x11\xd7\x1c\xc5\x14\xf6\x1c\x36\x24\xef\x6e\x62\x93\xbd\x4d\xe1\x9e\x7b\x82\x2b\x69\xb6\x6b\x45\x40\x5d\xba\x96\xc9\xc2\xad\xee\xae\xbb\x98\x91\xa1\x7d\xbe\x6f\xa6\x46\xef\x6b\xb4\xdf\xfb\x94\x84\x46\x1b\xec\xf2\x02\x67\xb0\x55\x24\x7d\xc4\xda\x79\x19\xf6\xf4\x67\x9e\x3a\xdf\x62\x04\x4f\x19\x19\x26\xce\x1e\xf4\xce\x59\x35\xbc\x3d\xad\xd2\x95\xd0\x95\xc1\x31\x0e\x0b\xea\xd9\x67\x0b\xae\x9e\xa4\xa7\xab\x39\x3e\x33\x3d\x64\x4a\x02\x8b\x70\x8d\x82\x94\xd3\x32\xeb\x7c\xe3\x06\x6e\x50\x2d\x56\x75\xcc\xe1\x6d\x7e\x3d\x44\x16\x9c\x61\x89\xdd\x43\x89\x46\x30\x15\x08\xbd\x9e\x94\x50\xe3\xca\x08\xb0\x1b\x64\xc6\x8c\xb6\x35\x09\x98\x1b\x04\x86\x14\x61\x9f\x82\x60\xa1\xa1\x1c\x57\x58\x07\x34\x21\x23\x43\x75\xc8\x38\x71\x17\x87\x29\x9a\xbb\x98\xda\xa9\x88\x54\x8a\xca\xea\x52\x84\x76\xd4\xc1\x62\x51\x09\x75\x91\xb6\x1f\x61\x77\x84\x29\x1f\x48\x02\xc6\x0f\x1e\x24\x2f\xf1\x41\xfc\x86\x93\xfe\xa0\xea\x50\x8d\x22\x2a\x8e\xdc\x3c\x50\x21\xd9\x0f\x57\x03\x69\xf8\x09\xf5\x94\x94\x86\x98\xaa\xb7\x99\xf9\xda\xb6\x70\xa7\x72\x31\x8f\x28\x52\xae\x1c\xb3\x84\xee\xcb\x7e\x21\x43\x4e\x72\x71\xf3\x15\x8e\x8c\x20\xd5\xc2\xc9\xac\x7d\x75\xfa\xc2\x46\xa2\x76\xf8\xe3\x53\x37\x92\xa2\xb6\x93\xeb\x4a\xc8\x36\xad\x2e\x0d\xcd\xb0\x7f\x55\x52\xa6\x7f\xe7\xd0\xc2\x46\x5f\x1b\xda\xe9\xeb\x43\xdb\xb2\x7f\x8d\x12\xea\x31\xbd\x88\x1c\x09\xa0\x66\x51\xac\xcd\x8a\xac\xf8\x46\xbf\x7f\xfd\x64\x5d\xd2\xef\x13\xfd\xd8\x4b\x2b\x2f\x85\x5a\x55\xc2\x4d\x71\xd5\x38\xef\xa8\x1e\xef\xa1\x68\xb2\x79\xae\xa5\xa8\xae\xca\x31\xed\xea\xe1\x9b\xeb\x18\x88\x1e\xd1\xfe\xd3\xf2\x5b\x4b\x49\x8d\xcb\xe1\x4c\x5f\xec\xe6\xe9\x32\x3f\xaf\xa6\xe5\xff\x81\x3d\x93\xaa\xc4\xd4\xad\xa7\x6f\x6e\x9b\x3f\x30\x13\xd1\x9d\x43\x8d\xff\xd0\x4c\x44\xac\x2b\x8b\x6f\xcc\xc4\x7f\x71\x8b\x9e\x13\x98\xd5\xe4\x5b\x63\x8b\x51\x9b\x55\x79\x14\x21\x9a\xe9\x4b\x33\xb8\x75\xd8\xf3\x32\x1d\x1f\xf8\x9e\xd3\x99\xd4\x84\x3a\x94\x0b\x95\x8b\x2a\x7b\x53\x47\xf3\x9c\x0a\x2f\xca\x71\x2f\x79\x13\x42\xea\x84\xf9\xa0\x68\x72\xbf\xda\x93\x83\xae\x2a\x9f\x75\x65\x9f\x64\x6c\xa2\xca\x5f\x79\xe7\xd7\xdf\x64\xd5\x84\xbd\x89\x48\xb6\x9f\x7c\x61\x70\x34\x97\x52\x38\x69\x15\x93\x4a\x6b\x97\x5f\xee\x92\x5e\x3d\x10\x2a\x3f\x19\x22\x6a\x85\x02\xf4\xa5\xa5\x09\x97\xb2\x29\x54\x4e\xce\xbf\x36\xc3\x9f\x7c\x6d\x74\xfc\xd5\xb4\x6a\xc6\x3e\x60\xe8\x7e\x4a\x5b\x48\x9c\x55\x05\x39\x75\xbe\x6a\xdd\xa9\x52\x00\xcb\x07\x6a\x7d\xa9\x72\xca\x21\xf4\x50\x15\x5b\x3f\xff\xeb\xdd\x37\x44\xad\xa0\x52\x4e\x5c\xac\xbf\x34\x68\x9c\xb2\x35\x0d\x3a\xf9\xd9\xa0\x23\xb4\xe2\xf4\xcd\x41\xa3\xf2\x96\x06\x7d\xfa\xae\x41\x9b\xee\x1b\xa2\x96\x54\x13\x3b\x36\xd3\x13\x15\x3a\x60\x85\x6f\x16\x46\x07\x64\xbf\xc7\x6a\x47\xcb\x83\x7d\x14\x2d\x8c\x30\x22\xac\x19\xaa\xf6\x17\xbc\x9b\x1c\xe1\xf4\x8c\x77\x98\x23\x9c\xe7\xc7\x8f\xda\x9b\x96\x50\x0f\x73\x17\xbc\xc2\x40\x0a\xb7\xaf\xc2\xcb\xf9\xb4\x8c\x30\x21\x29\x18\x22\x5b\x2b\x8e\x4f\x66\xde\x72\x66\x9b\x60\x4d\x77\xa5\x22\x6d\x73\xcb\xc8\xed\xf9\x3d\x6d\xed\x18\x81\x2f\xfc\xd1\x57\x3b\xb1\xe6\xa5\x3f\xfa\x76\x37\xb6\xaf\x92\x7f\xb4\x79\x35\xd6\x7c\xb8\xfa\x83\xcd\xd9\x81\xdf\x11\x8e\xb1\x11\xe9\x3f\x73\x91\x8d\xb9\x98\x47\x5c\x93\xb7\xf3\x08\x11\x35\x20\xb5\x7a\xa2\x26\x55\x93\x0c\x4b\x19\x4d\xa2\xfe\x33\x36\x35\x02\xe5\xae\xa8\x8e\xe5\x18\xd9\x54\xf5\x83\x87\x69\xbc\x9f\x8e\x01\x4b\x62\x41\xde\x16\xea\x2d\xd6\x4f\xd9\x68\x05\xab\x53\x69\x87\xeb\x1e\x33\xf2\xbd\x60\xeb\x55\x45\xb5\xf7\x1a\xd1\xf9\xc5\xea\xbc\x85\x75\x3a\x9f\x74\x03\x7c\x7e\xab\x21\xd6\xb7\x03\x56\xa1\x25\x4b\xcc\xf8\x76\x42\x0d\xda\xbe\x0b\x0d\xda\xe2\xfd\xc6\x1a\x94\x45\x5e\xba\x80\x57\xca\xcb\xc2\x38\xa2\x41\xdb\x9e\x69\xd0\x4a\xf6\x9f\x71\xf1\x03\x2e\xd0\x44\xae\x90\xd6\xb3\xb6\x1e\xa8\x6f\xaa\xae\x4a\xfd\xaf\xa8\x4b\x42\x4d\x49\x47\xd8\x08\x0c\x9e\xcb\x6d\xf7\xcf\x3a\x64\xc1\x94\xd2\x5e\x53\x40\xe7\x2b\x4b\x95\x8d\x79\x96\x86\x5f\x28\x8f\x07\xf2\xcc\xe4\x90\x97\x30\x39\x94\xca\xdf\x65\x72\x28\x74\x8d\xa7\xa5\xba\x4f\xf9\xd2\x28\x6f\x1a\xfa\x5a\x8e\x10\xb8\x5c\xf4\x28\x84\xbc\xac\xdd\xcf\xaf\xf8\x5e\xac\x8a\xea\x50\xde\x44\xd8\x6e\xd3\xe2\x55\xa8\xa7\xe2\x2a\xf0\xbc\x17\x9d\x15\x94\x4f\x67\x3c\x0e\xc9\xf0\xaa\xa0\xf8\xfe\xd6\x15\x77\x9f\x55\xec\x88\x8c\x5a\xf0\x0e\x5a\x24\x79\x07\xcd\x23\x4a\x58\xbd\x25\x00\xf5\x61\xd3\x1e\xda\x4a\xb7\x89\x2d\xb4\x99\x7c\x7b\x0b\x1d\x07\x6c\xa4\x2b\xf1\xa6\xb8\x1a\xa8\x8b\x16\xbd\x50\xcf\x98\x2b\xe7\xb2\x7f\xcc\x22\x7b\x7a\xfa\xca\x26\xe2\x9b\x83\xa1\x2f\xec\xf4\x3f\x63\x1b\xe9\xfd\x63\xd2\x31\x15\x78\x1f\x15\x29\x74\x57\x2d\xec\x6c\xeb\xd2\x36\x1a\x48\x71\x28\x57\xf5\x8c\x4e\x65\xe6\x39\xdc\x34\x4e\x18\x76\x61\x64\xda\xa6\x50\x6f\xd3\x7e\x68\xba\x5f\x0e\x65\x20\xe0\xaa\xa1\x5c\xf4\xd0\xfa\x55\xb8\x8f\x58\x47\x50\x2b\xca\xbd\x92\xe2\x2c\x7c\x83\x3b\xb3\x95\x32\xca\x10\x88\xd3\xd5\x85\xe5\x2d\xd2\xf2\x4e\x1c\x95\x2c\x2b\xd2\x79\xae\xe1\x89\xf3\xb2\x40\x0e\xea\xa3\xcc\x20\xe3\xc8\x9e\xc8\x64\x7d\x8c\xa8\xcf\x14\x42\x97\x47\x72\x95\x32\x98\x6a\xb4\xdc\xd8\x5e\x25\xf2\x9d\xea\x64\x1f\x2c\x47\xb8\xe4\x4d\x77\x23\xe6\x29\xc6\x42\xc2\x57\x64\xb1\x31\x5c\x60\xa5\xb4\xfc\xa6\xe6\x24\x9e\x32\x0f\x9c\x5a\xad\x6d\xbc\xf0\xda\xc5\x72\xa4\x5e\x33\x4b\x57\x05\x34\x63\x64\xa8\x21\xa8\x12\x2b\xa3\xd4\x0b\xb0\x8a\x91\xfc\x6b\x26\x6f\x0c\x8c\xad\xba\xed\x00\x25\x54\x70\x89\xa3\x29\x1b\x32\x60\x21\x12\x16\xd0\x7a\x8c\x50\x52\x17\x42\xcc\x60\x59\xe6\x2c\x5f\xfe\x4a\x5a\x4e\xd9\x39\x11\x06\xdc\x44\x0a\xcb\xb5\xef\x88\x42\xa7\xa4\xcb\x9f\xee\x04\xf9\x8f\x5e\x72\x9a\x07\x11\x29\x6c\xef\x3a\x20\x69\x81\x37\x92\x7a\x81\xef\x38\x41\xe9\xc7\x32\x70\x95\x2d\xa7\xe2\xee\xca\xc0\x98\xbb\x05\xb0\x88\x1e\xc7\x3c\x32\x8e\x0c\x39\xf8\xba\xce\xdd\xce\x0e\x00\x87\x10\x00\xde\x44\xec\xec\xde\xbd\x71\xf7\xb6\xe5\x58\x1d\xf7\x2e\x89\x45\xda\xbd\x58\xae\xf0\xc8\x21\xa4\x07\xfc\xbf\x36\x90\xce\x49\xef\x08\x94\xae\x17\xcb\xa4\xaf\x63\x2c\x37\x0a\xfb\xfe\x1a\x42\x1c\xdc\xa7\x38\xa6\x00\x49\x74\x2b\x01\x3c\x1c\x70\x1f\xb9\x2b\x00\x59\x54\x48\x95\x58\xb5\x2e\x27\x2b\x02\x48\x0c\xa1\x71\x24\xd5\xe5\x44\x5c\xd5\xac\x49\xc4\xe5\x0a\xa7\xde\xe1\x95\xd3\x3b\xd9\x97\x56\xdb\x5a\x4b\xf5\xc0\x30\xc1\x13\x93\x5c\xdb\x87\xff\x40\x6b\x5e\x60\x27\x68\xcb\x15\xae\x3b\x05\xe6\x55\x33\x0d\xd4\x0b\xce\xce\x65\xd5\x08\x9f\xb7\x2e\xee\xdd\x39\xe9\x4d\x5b\xcb\x02\x9d\xc4\xe6\x78\x80\x8f\xbc\x26\xb3\x35\xe6\x6b\xfd\x18\x43\x05\xaa\x0a\x75\x5f\xba\x0f\x23\x28\x8a\x94\x52\xca\xf6\xe5\x82\x73\x55\xcf\xf1\x6f\x6d\x3c\xd6\x43\x7e\xe2\x4c\x19\x23\x82\xab\x50\x59\x93\x06\xda\xa1\xac\x5f\xfa\x00\x7b\xf4\xf5\x4d\x44\xd2\xd3\x7b\xc9\xb2\xd0\xf0\x95\xad\xf7\x47\xbd\x42\x92\x19\x77\x3f\xb1\x91\x73\x74\xcb\x69\xa5\x19\xc8\x16\x56\xb2\x5a\x52\x31\x42\x62\x9d\xb6\x67\x4d\x08\xa0\x44\xd6\xae\x14\x2c\xfd\x49\x15\xf9\xd9\xd8\x73\xb3\x1d\xec\x8f\x28\xee\x02\x18\xb8\x79\x7d\xc5\x5e\x97\xc8\x48\xa0\x2c\x4e\xf7\xe7\x90\x6e\x20\x00\xbd\x98\x11\x00\x9d\x18\x00\x3f\xb8\x95\x85\xaf\x08\xd2\x2b\x27\xcb\x0a\x07\xf1\x8a\x9d\x3b\x14\x51\x07\x15\x46\x91\x7b\xb9\xb1\x41\x77\x33\xb3\x2b\xea\x19\xac\x29\xe2\x62\xaa\x59\x20\xd2\xd6\x53\x63\xc6\x24\xa7\xdf\xb7\x07\x95\x0a\xaa\x39\x2c\xf4\xf5\xcf\x0a\x1a\x7d\xcb\x15\x5d\x77\x38\xd1\xe5\x3d\x31\x99\xf0\x47\xa4\x81\x05\x11\xd9\x0e\x6a\xa8\xb6\x43\x0e\xd8\xa1\x74\x4c\xe1\x96\xa6\x7d\xd7\xbe\x23\x36\x90\xb6\x77\x9b\xa0\x91\x9e\xe0\x15\xb2\x99\x10\xc7\xd3\x5b\x4e\x78\x1f\xd2\x02\x12\x56\x32\x05\x79\x71\x44\x91\x33\xc4\xdf\xaf\x69\x0e\xef\xc9\xd0\xae\xa9\xae\x22\xc9\x3e\x3c\x6c\xa3\xf3\x37\xd3\xe9\xac\x81\xc6\x13\x25\x63\x87\x1e\x37\x84\xd0\xa8\x6e\xf0\xf6\xe8\x19\x9e\x98\x01\x91\x33\x47\xf3\x34\x51\x67\xc7\x99\x33\x67\x6f\x27\x1c\x40\x71\x17\xad\xae\x3b\x24\x64\x72\xfe\xae\xce\xcd\xf9\x53\x57\x88\xda\x08\x0f\x3d\x42\xdd\x4a\x96\x69\x07\x77\x00\x1a\x6a\xb0\x6c\x1c\xe1\x82\x6e\x5c\x1a\xe3\x0c\x45\x34\x89\x11\x34\x4a\xf3\x4e\xe4\x18\xf0\xcf\x5e\x66\x47\x4a\x9d\x1c\xce\x35\x5a\xcc\x65\xc3\xd1\x27\x66\x26\xdf\xb0\xce\x7a\x2d\x66\xfa\x43\xeb\x62\xaa\xc4\x66\x1c\xcd\x2d\xb8\x25\xdf\x99\xd6\xbe\x1c\x9e\x64\xff\x8e\x41\xf9\xf5\xbc\x8c\xb0\xbb\x1a\x1b\x6c\xdd\x66\xf6\x26\x84\x3e\xad\x6a\xaa\x13\x1e\x5d\x30\x53\x22\x12\xbf\xd6\x5e\x10\xd8\x9b\xa8\x6f\xa9\x17\x35\x95\xf0\x90\x5e\x71\xf1\xd1\x14\x93\xcc\xfe\xda\xc7\x0a\xec\x70\x16\x0a\x92\xd7\xe4\x75\x85\xec\x6a\x1e\xf4\xdb\x48\xa9\xd9\xca\x8d\x70\x58\x8b\x64\x4e\xb5\xd3\x65\xfa\x10\xc2\xbb\x15\x6d\xbd\x29\x1b\x43\xa0\xac\xb6\x69\x70\xaf\xba\xa8\x76\x60\xdc\x59\x2a\x6a\x4f\xa3\xfd\xba\x25\x95\x2d\x46\xbe\x51\xd4\x8f\x13\x88\xf7\x9d\x43\xc0\x55\xa9\xa9\xaa\x07\x56\x22\xd1\xcc\xb6\xad\x00\x62\x75\xde\x06\xee\x0f\x8c\x64\xc8\x4b\x19\x1b\x24\xa5\xad\xa1\x10\x80\xda\x26\x4a\xb4\x68\xc9\xab\xf8\x62\x44\xb0\xd4\x77\xb1\xe7\x0d\x82\xb8\xa9\x89\x97\xb1\xca\x16\xbe\x63\x84\x30\xef\xba\x96\x2b\x9e\xef\x0b\xff\xa4\x4f\x72\xb1\x63\x35\x5b\xf7\x67\x3f\xa0\x29\xe6\xb2\x24\xe9\x0b\xd4\x98\xb3\xe7\x1c\x89\x67\x69\x8e\x39\x89\xe8\x68\x10\x41\xd1\x1c\xf7\xa3\xb9\x21\x64\x64\xcf\x22\x02\x06\xc1\x06\x30\xda\xe5\x4c\x2e\x5a\x5d\x09\xfc\xb6\x4b\x5c\xdc\x51\xbe\x1c\xa7\xf4\xfb\x4a\x06\x20\x9a\x4e\x16\xa4\x97\xf3\x72\x4e\x99\x80\xee\xd7\x32\x02\xdd\x94\x26\x63\xbb\x2b\xd6\x94\x46\xa3\x72\xbb\xc1\x3d\xd0\x58\x5e\x31\xff\xe7\x63\x13\x33\x62\x6e\x3b\xe8\xc2\xd5\xc7\x92\xdc\x55\xed\x92\xbc\x1a\x93\x28\xd2\x19\xbf\x5a\x55\x95\x53\x80\x58\x1c\x28\x1f\x60\x73\xc8\x54\x1a\x86\x0e\xaa\x4a\xc8\xdc\x90\x69\xc7\xb3\xf2\x65\x42\xdb\x66\x64\xf1\xf2\x56\xad\x15\xb1\x4b\x5b\x79\xa5\xb7\x7a\x6b\x6a\x53\x96\x29\x5c\x6f\xcb\x57\x80\xf4\x28\xa1\xde\x26\xb3\x98\x27\xfe\x2b\x02\xb3\xec\x1e\xec\x0f\x82\x2d\x9b\x1d\x78\xdd\xdb\x8f\x27\xfa\xac\xb1\x7c\x5a\x50\xfa\x20\x6f\x3f\x62\x7a\xa8\x27\x6c\x2e\x87\xa0\x06\x3b\xde\x4e\x6b\xfc\x3b\x90\x0b\x52\x60\x2d\x6d\x82\xa0\xf7\x6d\x51\xc4\x92\x5f\x73\x8e\x3a\x72\xcc\x55\xa7\x60\xae\xe6\x93\x30\x5c\xb0\xcf\xc4\xa1\xba\x44\x21\xf1\xf2\x6f\x77\x1f\x06\x5d\x13\xd5\xa9\xf1\xf0\xa8\x5f\x15\xc1\x6d\x6e\xa9\xe3\x9c\xdc\x9c\x77\xec\x08\x67\x8c\xc0\x87\x81\x6c\xd1\xf1\xce\xd0\x9c\x4f\x14\xee\xb5\x76\x12\x68\x0e\x9b\x8a\xe5\x96\x47\x72\xa6\x0a\xc8\xe9\x50\xd4\x8f\xd5\x58\x6e\x14\x23\x96\x0f\xe1\xf8\x52\xcd\x55\x20\xca\xcf\xe0\x70\xe0\xed\x20\xf5\x54\xb7\xa4\xa5\xb5\x0f\x11\xa3\x9d\x4f\xa6\xca\xca\x40\x5e\xd3\xe9\xaf\xa6\x74\x95\xb2\xf7\xaa\x09\x9a\xad\xde\xbb\xd7\xfa\x1d\xe5\xce\x83\xad\x7f\x4d\xa4\x96\xae\xca\xdd\x5d\x79\x68\x5c\x38\x86\x1c\xe9\xe7\x04\x49\x29\x5a\x6b\xb0\x71\x00\x87\xac\xef\xe5\x87\xd3\x7b\x92\x7f\xe4\xf4\x52\xb6\xc9\x86\xaf\xa2\xa7\x53\xb7\xd6\x9c\x0f\x81\xde\x6b\x72\x7f\xf9\x00\x73\x95\xa4\x1c\x8c\xd5\x27\x34\x40\x57\x69\xaa\x85\xcc\xab\x0c\x3e\xe5\x8c\x69\x22\xd2\xa8\xb2\x37\xbc\xed\x48\xeb\xc4\x34\xb7\xbe\x2f\x72\xb2\x25\x0a\xe6\x05\x99\xab\x97\x90\xe1\x1a\x11\xb6\xee\x32\xc3\x3e\x50\x69\x9e\xb0\xe4\x10\x8b\xdf\xa6\x53\x43\xd3\xa6\xc6\xe5\x75\x21\xe4\x3b\x69\xd2\x28\x3a\xc7\x7e\xdf\xa9\x18\x93\xa7\x17\xbc\x25\x54\xef\xe1\x43\x29\x45\x58\xa4\x10\x62\x2c\x17\xf5\xc8\xfe\x52\x0f\xd1\x3d\xdb\x62\x50\xa8\xd6\x8e\xf3\x47\x63\xa2\xa7\xc4\x08\xb6\x87\x48\xe9\x40\x97\xc1\x04\xce\x84\xd3\x17\xab\x25\x9c\xa9\xb2\xba\xa2\x0c\xae\xae\x19\x1d\x6c\x55\xa8\x3e\xed\xa3\xcc\x0d\x2f\x69\x43\xd4\xa6\x12\x94\x65\x56\x0a\xb1\x9d\x7a\x21\xb3\xd4\xcd\x4e\xc2\x39\x50\xbe\x64\x9f\xdd\x19\xfc\x1f\x5e\x4b\x0f\xfa\x1b\x0f\xf2\x0a\xa0\x78\xc0\x11\xa5\xdc\x21\x59\x39\x9e\x30\xb4\xec\x9d\x3e\x67\x45\x39\x41\x00\x35\x03\x25\x91\xf2\x69\x24\x85\x3d\xb6\xe9\x7b\xbc\x21\xbf\xa8\x48\x39\x28\x6b\x20\x2f\x2a\x6d\x1c\x8f\xda\x20\xe5\xf5\x55\x3f\x5a\x8b\xbe\x58\xb4\x72\x50\x89\x5c\xd3\x2d\x58\x4d\xea\x09\xb8\xad\xf3\xfb\x6b\xf9\xb1\xfe\xad\xee\x0b\x26\xd0\x95\x48\xa6\xba\x1f\xf3\x6f\xec\x37\x9b\xc4\xa8\x9e\x8f\x90\xc9\x89\x4c\x11\x0c\x65\xed\x70\x4f\xd1\x13\x33\x64\x96\xd8\x32\xaa\xa1\x9e\xc5\x9d\x3d\xc5\xe5\x5b\x9f\x63\xe7\xde\xeb\x91\x3a\xc2\xf1\xd6\xed\x3f\xda\xb4\x5e\x02\x4e\x87\x69\x83\x3d\xdb\x06\xe0\x5c\x7d\xe4\x58\x55\xe1\x8c\xcb\x23\x9a\x89\x74\x85\x34\x11\x99\xca\x58\x65\xb9\x55\xfa\xce\x6a\x0b\xfb\x71\x79\x64\xa2\x49\x4a\x99\x63\x99\xa0\xc1\x6e\xa7\x86\x92\x52\x8e\xd4\x5c\xd5\x81\x46\x75\xde\x82\xe2\xa6\x26\xd4\xcb\xd5\x03\x88\x62\x93\x37\x7f\x88\x76\xa1\x99\xad\x54\xd5\xcd\x48\xab\x61\x1f\xee\x5e\x70\xd3\x5d\xd2\x63\xbc\x42\x80\x9f\x48\x51\xac\x64\xcb\x45\x02\x1f\x39\x55\xfa\x90\xc9\x56\xe0\x72\xb1\xad\x26\xa4\x7a\x3a\xd7\x40\xcd\x0b\x7c\xeb\x31\xfb\x5a\xd3\xbc\xd9\x25\xb7\x30\x47\x88\x39\x7b\xda\xc1\x7f\xbe\x75\xe0\x16\x7b\xb4\x18\x82\x26\xb4\x4e\x5c\x7c\x8c\x15\x77\xd2\x5c\x9c\x9a\x28\xc0\x98\x01\x52\x30\xcb\xc5\xcc\x48\xf5\xb1\x02\x13\x99\x33\xe5\xc3\x4b\x1a\x57\xa0\x26\xe7\x91\x7c\x16\xe1\xce\xa7\xf2\x06\xfa\x97\x16\xe7\x60\xac\xad\x29\xe4\xc4\x1e\xca\xed\x80\x3b\xdd\xc0\xad\xdc\x03\x49\xdc\x02\xb2\xb9\x65\xb2\x78\x53\xc4\xb9\x1d\x72\xe6\x54\x64\x17\x00\x34\x38\x91\xbb\x87\x98\xee\xec\x0a\x69\xfd\x1a\xc9\x02\xfb\x1e\x15\x91\x9a\x9e\x54\x22\xed\x15\x97\x8e\x8a\xe4\xed\x3f\xae\x44\xc3\xa6\x37\x00\xcd\xaf\x23\xb3\x85\x7a\xe0\x94\x4a\x8d\x3c\x7e\x3f\x9e\x00\x0f\x5f\x3f\xee\xf8\xe0\xda\x9c\xaa\x5d\x9d\xe4\x09\x80\x61\x8d\x54\xf4\x59\x05\xa9\x04\x3a\x58\xc9\x5c\x7c\xa0\xcb\x6b\xbc\x6d\x0b\xde\x38\xc7\x23\x9b\xb3\x37\x6f\x3f\x36\xde\x65\x11\xe1\xb8\x15\x5c\x25\x9e\xcf\xcc\x82\xe6\x25\x3c\x62\xc3\xde\x45\x2f\xaa\xf4\x22\xd1\x27\xc3\x88\xdd\x4a\xd8\x2f\x24\x41\xe9\x1b\xca\x7e\x61\x5d\x8e\x26\x4d\x39\x72\x08\x6c\xef\x89\x96\x74\x4b\x9e\x15\x64\x64\xaa\x13\xbc\xe5\x12\x57\x47\xbe\x63\xd5\x45\x75\xc8\x3e\x66\x20\x84\x1c\x18\xb0\x1a\x00\x0a\x20\x79\x73\xee\x6c\x55\x52\xec\x6c\x35\x20\xc0\xf9\x97\x1c\x5f\x75\x03\xec\xfe\x7a\x61\xfe\xc1\xaf\x2f\x6d\x9a\x2c\x1f\xad\x9a\x9a\x97\x5f\x48\x6a\xcb\xc8\xe9\x22\xa2\xff\x5d\x9e\xe9\x7f\xd3\x20\x76\x4b\x73\xb0\xd3\x38\x95\xb5\x0c\x9d\x59\xf2\xcc\x0c\xb6\xe8\x14\xf2\xc8\xcc\x18\x05\xd8\xf7\xf5\x9f\xa3\xff\x65\xf7\x72\x68\x7f\x4b\xe5\xbc\x11\xfb\x37\x08\x75\xf6\x90\x2c\x7e\xcd\x69\xea\x86\x32\xba\xbf\x61\x4a\xee\x8c\x65\x74\x87\x23\xdd\x54\x6b\x88\x58\xc7\x0e\x70\xe9\xf6\x0b\xa6\x0c\x87\x05\x17\xd7\x34\x79\x22\x90\x16\x28\x6e\x9f\xb9\x8a\x37\x24\xd4\x1d\x35\x96\x03\x3f\x56\xd0\x8f\xfe\x6e\xc0\xba\x63\xa7\xb1\xba\x45\xa2\xa1\xf6\x6d\xa8\x73\x9b\xcb\xd3\x82\xd4\xd4\x14\x2e\x3a\x56\x80\x38\x14\x9d\x74\xf8\x7e\x3b\x2d\x33\x28\x9d\xc9\x6c\x64\x58\x43\x35\x26\x10\x8c\xd7\x51\x3d\x28\x63\x6c\x1a\x0c\xb5\x17\x6e\xb5\x39\xa1\x6c\x76\xd6\x14\x55\xde\x9e\xfa\x7a\x86\x6d\x8a\xa2\x54\xc8\x86\x39\xc7\xa0\xbb\xb9\x85\x64\xd5\xad\x9e\xf0\x65\x19\x28\x8a\x56\x24\x3b\x44\x2b\xcb\x49\x93\x32\x44\x6a\x08\x11\x81\xa4\x43\x2e\xbe\x8e\x17\x17\xb8\x38\x1f\x2b\xee\x94\xb8\xb8\x88\x33\xb5\x90\xd8\x0c\x55\x93\x47\x77\x3f\xe3\xac\xd6\xf7\x38\x5a\x4d\x42\x88\x0d\xd2\xd4\x03\x56\x63\x78\x05\x59\x22\x7f\x8f\xd9\x41\x62\x10\x5c\xfa\xdd\xd2\xc2\x9c\x80\x22\xbe\x8d\x0e\xc1\xa9\x92\x44\x7c\x73\x95\x55\x0f\x8d\xc3\x98\x06\xf6\x5e\x78\xb6\xc2\x04\xcb\xf3\x77\xab\x21\x4e\x6e\x5d\xdf\x48\xee\x03\x4b\x72\xfc\x4c\x7d\xfa\x37\xf2\x54\x37\x85\x33\x94\x7e\xd8\x79\x93\xe3\x74\x7d\x79\xbe\x33\x96\x48\xee\x7e\xc0\xe6\x98\x92\xac\xa6\xc4\x1c\x3c\x48\x23\x19\x2c\x05\x09\x07\xb4\x06\x6b\xa0\x79\x66\x57\x7f\x02\x90\x51\xaf\xa4\x8d\x44\x02\xad\x43\xf9\x4f\xb5\x2f\xd9\x93\x39\x14\x76\xd3\xb9\xb2\x62\xe9\x49\x4c\xbe\x12\xdd\x59\xf5\xaa\x02\xf7\xeb\xf5\x88\xd5\x89\x05\x9e\xec\xfc\x88\xee\xc7\x6c\xf4\x66\x5b\xc9\x81\x8a\x38\x8f\x0f\xcb\x7c\xb2\x4b\xdc\x66\x44\x8a\x24\x03\xaf\x98\xe7\xdb\xb0\x83\xcb\x10\xf8\x10\xd3\x58\xf7\x9c\xf4\x4d\x6d\x6c\x2a\xdd\xca\x24\x3f\x1e\x4c\x35\x2b\x48\xa0\x4b\x41\x64\xdd\x09\xd7\x7c\x8a\x5e\x6e\xe7\x10\x33\x47\x04\xb1\x9f\x83\xe3\xc3\x14\xd9\x2e\xf6\x72\x39\xe2\x91\x8d\x69\xfd\xd4\xb4\x3c\xf2\x65\x58\xc2\xc9\xd9\xca\x25\xbd\x9c\xd5\x19\x2d\x5e\xbf\x58\x0d\xfa\xa8\x0b\xf5\x18\xeb\xc2\x88\x78\xb4\xee\x0d\xf7\x48\x34\x16\x59\xb3\xf0\xff\x67\xe1\xb3\x09\x6d\x06\xe7\x76\xe4\x34\x5b\x80\xb7\x6d\x1d\x1b\x7a\x14\x27\x75\x8d\x51\xd4\x17\xa8\xc4\x39\x3a\x97\x39\x98\x2e\x61\x4a\x5a\x95\x4b\x46\xb8\x43\xda\xa4\x20\x8c\xc7\x09\x63\xa4\xd9\x7c\xe0\x88\x3a\xd0\xd3\x53\x7b\x06\x97\x03\x75\x2f\x01\x9a\x63\x40\x79\x45\x01\x73\x39\x95\x43\xf8\xe3\x8e\x7a\x7a\xf5\x27\x72\xdc\x33\x75\x5a\x9a\xc4\xe3\xd7\x84\x12\x44\xf8\x15\x08\x2d\xad\xc3\x75\x1c\xe2\x64\x46\x9c\x67\xb5\x70\xe0\x54\x1f\xc4\x11\x66\x70\xd7\xb7\x4e\x97\x2b\x97\x0e\x2c\x41\xd4\x49\xc7\xa1\x4c\xba\xa6\x21\xa0\x99\x07\x5e\xf8\x62\xd1\x9a\x46\x86\x01\xff\xed\x2a\x15\xa9\xb4\x82\x3b\x71\x8b\xa3\x22\xab\x83\x02\xad\x2c\x74\xce\xad\x31\x97\x8e\xa8\xd4\xf6\xcd\x9d\x71\xfe\x01\x4b\xa8\xc9\x21\x27\x67\xe9\x33\xd4\x42\x1d\x3f\xf9\x82\x35\x6a\x93\x44\x55\x45\x06\x08\x67\xa3\x22\x13\xae\x2a\x63\xbe\x04\xb8\xa5\x1e\x55\x8d\xcd\x65\xae\x1e\x6a\x95\x07\x15\x18\x7a\xcc\xe4\x01\x6a\xa9\xe4\x5e\xa8\xc1\x33\x16\x24\x3a\xb0\xc7\xb6\xf9\x53\xad\x64\x7e\xc7\xa9\xb1\xea\x9a\x87\x09\xa6\x73\x0f\xa8\x1a\xfa\xb2\x82\x3d\xe5\x57\xcf\xb8\x63\x9f\x7f\xcf\xf9\xdf\x42\x6c\x03\x16\x73\x80\xa7\xa0\x21\x15\xe8\x03\x5b\x02\x98\x2f\x9a\xab\xab\x80\x9f\x5d\x53\xdf\x25\x7b\xf3\x87\xfa\x1e\xe4\x59\xc0\xa6\xcf\x3d\xef\xbb\x54\x51\x1f\xe6\x4f\xff\x7b\x3e\x75\x8c\x86\x4f\xfb\xe1\xec\x11\x20\x80\x2d\x57\xb8\xe9\xf2\x29\xb2\x7d\x5c\x80\x71\x16\x90\x1a\x79\x24\x91\xec\xd8\xf6\x4d\x32\x63\x94\x34\x38\x60\xee\x24\xf9\x5e\x85\x73\x53\xee\x8f\x5c\x23\xb6\x50\x6f\xb0\xb5\xba\xc2\xaa\x8a\xea\xe3\x4d\x70\x77\x37\x80\xf1\xf5\xca\x68\x3c\x69\xb9\x8e\x8d\x46\x9d\x8d\x86\xb8\x94\x8f\xe3\x6b\x88\xe4\xfd\xbb\x55\x15\xf3\xfa\xe2\x9f\x35\xcc\xba\x70\x1e\xe8\x2e\x23\x68\xb0\x57\x8a\x02\x7f\xe3\x85\x1b\xce\x23\xd7\x59\x49\x5e\x81\xa5\x01\x2a\x37\xb9\x47\x70\x3a\x40\xcd\xf1\x3c\x53\x27\x57\xb8\x0f\x99\x53\x18\xaf\xa2\x9c\x09\x2e\xc2\xfa\x56\xef\x2e\x37\xa7\x37\xc0\x8d\x38\xbd\x9f\x33\x39\x4d\xe1\x90\x0a\x2e\x4a\x86\x09\x60\x66\x6b\x14\x82\x98\x8d\xfa\x50\x13\xc4\x7b\xc1\xd5\xae\x35\xf5\x52\xf7\xbb\x6f\xcf\x61\x4b\xdf\x65\x13\x14\x5f\x5a\x9a\x92\xbc\xee\x82\x2a\xf4\xcc\x78\x89\xd7\xaf\x9c\xf5\x53\xd5\xfd\x5c\xcd\xe4\x47\x66\xa7\xce\x80\xb1\xa2\xbd\x83\x65\x8b\x9c\x09\xfa\x5b\xdc\xc3\xed\x42\x91\x49\x03\xe9\x77\xf2\x45\x49\xf6\xf7\xfb\x4f\xd8\x0c\x57\x34\x6e\x48\xc3\x5a\x58\xc0\x8f\x3b\x25\x8b\x65\xdc\xee\x6d\x72\x96\x0f\xb4\x7f\x93\x49\x74\x13\x5c\xc9\x00\xd3\x4e\x3d\x4c\x24\x87\x83\x54\x85\x8d\xd5\x46\x3e\xca\x26\x74\xc9\xf5\x09\x96\x4d\xaf\x57\x44\x02\x89\xb8\x66\xec\xbe\xcb\x35\x43\x95\x24\x83\x66\x26\xc9\x56\x7b\x3b\x6a\x9e\x45\x9e\x64\x66\xbc\x1c\x08\x23\x1a\x3e\x84\x20\x04\xc5\xba\x99\x15\x75\x97\xd7\xd3\x36\x97\xad\xd2\x54\x6f\xa0\x74\xf3\xbb\x9c\x80\x66\xe5\x30\xc0\x34\x5f\x87\xf7\x56\x5d\xa8\x7e\xa9\x1e\x46\xc3\x7a\xe1\x25\x9a\x9e\xc8\x10\x54\x24\x12\x18\x7b\x13\x0d\x97\x0d\xee\xd9\x8c\x09\x0c\x69\x0b\x77\x28\xd7\x37\x61\x5c\xeb\xea\x2e\xf4\x17\x19\x06\x91\xec\xee\xdb\xba\x16\x3a\x90\x6d\xb8\x8e\xa3\xeb\x70\x0a\x63\x3d\x9e\x97\xf5\x50\x9a\xc0\x5a\xd1\x2a\x10\xaa\x4a\x56\xbe\x59\xae\xc8\xc8\xbc\x31\xc5\x46\x9c\x87\x4c\xec\x49\xf1\x36\xf0\x71\x70\x93\xf6\x29\xe2\xe9\x98\x52\xc6\x2f\x4e\x73\xdb\x87\xa4\xbc\xd4\x1c\x2a\xc6\x41\xd5\x38\xc0\xb8\xbe\xbd\x73\xc2\x8d\x94\xbd\x09\xbf\x28\xc9\x4e\x79\x0d\xfd\xf7\x20\x02\x2b\xc2\xec\x88\xe6\x90\x8a\x66\x6e\x6a\x42\xf5\x72\x76\xc4\x43\xdc\xf5\xe5\xb6\x16\x2a\xd4\xd3\x91\xa9\x7a\x36\x0e\xa2\xa2\x89\xef\x1e\x96\xb5\x20\x3e\x28\x5f\x7f\xe7\x77\x97\xec\x55\xc4\x4b\x3a\x5b\xfb\x04\x44\x46\x85\x8b\x3c\x32\xce\x48\x80\xb6\x29\xec\x2f\x4e\x4e\xf0\x0e\xaa\x3a\x97\xc2\xce\xda\x31\x87\xca\x70\xc7\x0d\xf7\x91\xa5\x1c\x70\xf6\x29\x7d\x4f\x47\xc2\x9e\x63\xcb\x1d\xd4\xa9\x0a\x27\xee\x08\x19\x76\x2a\xcc\x56\x89\xf6\x22\x4c\xd7\xce\x7b\x0c\xad\x27\x32\x16\xf3\x9e\x57\x61\xbf\x87\x6b\x29\x0c\xca\x82\xfd\x1e\xed\x8d\x0a\x07\x52\xec\xef\x3d\x78\x28\xcd\x1c\xc3\xae\xa8\xfb\x03\x7b\xd3\x4d\xa4\xa8\xc0\x59\xc9\xb1\x0f\xb4\xde\xed\xc9\x42\x5a\xae\xda\x3c\x1c\xe4\x94\x54\x11\x29\x39\x1c\xca\x6f\xe2\x83\xe4\x81\xb5\x3f\x65\x37\x87\x09\xc9\x80\xaa\x9f\xbf\x85\x70\x9f\xf4\x59\xd1\x4a\x02\x8a\x09\x1d\x5d\xcb\x31\x08\x66\x4d\x0b\x30\xdf\x44\xb3\xc6\xed\xf0\x5f\x8c\x39\xfe\x9f\x0c\x1d\xce\xdc\x41\xd2\xf1\xf9\x2b\xe7\x73\x52\x43\x17\x38\xc0\xf9\xa3\xa4\xa3\xd2\x26\x74\x78\xc5\x4d\xd6\x73\xf5\x9d\xa1\xc3\x4b\xb9\xe3\x36\xfb\x12\xc1\x33\xb1\x38\xb7\xa4\x26\x3b\x79\xa5\x45\x08\xb1\x47\x9b\x4d\x79\x77\x67\x7d\x12\x58\xbc\x47\x0e\xb0\x83\xe9\x8d\x2e\x38\xc3\x7c\x9f\xb8\xf4\x38\x8f\x69\x5a\xd3\x5c\x9c\x8a\x15\x8f\x64\x96\xcb\x33\x73\x72\x4c\xdc\xa1\xfc\x35\xc7\xc5\xd7\xd8\x0e\x53\xa3\x95\xe0\xe2\x7c\xac\x97\x6e\x89\x8b\x8b\x73\x15\xc1\xa1\xf4\x92\x5c\x7c\x85\xbd\xb3\xe2\xbe\x87\x0b\xde\x6a\x8b\x68\xdf\x9d\x31\x17\x8f\x16\x51\xa5\x6f\x77\xca\xc5\x93\x45\xac\x6f\x9f\x8b\x67\x8b\x68\xdf\xdd\x05\x17\xcf\x63\xb5\x27\x72\xc5\xe5\xeb\xc5\x65\xa7\x5c\x68\x88\x03\x94\xf9\x00\xf6\x65\xc7\xed\xb6\x0b\x72\xa5\x54\x27\x89\xbc\xd3\x7f\x22\xa6\x3a\x09\x98\xcc\xaf\xa8\xe9\xc8\xdc\x62\x5c\x1d\x63\xa1\xd2\x61\x94\x34\xd3\x75\xa6\x3f\x74\xe5\xb0\xa3\x6d\xa8\xe9\xa3\xff\xb1\xe3\x67\x88\xe7\xc2\xf8\xd1\x80\x06\x23\xa7\x62\xc2\x62\x0e\x0a\xe9\xcf\x68\x24\x76\x53\xd8\xa5\xce\x00\x6b\xf8\x7a\x5a\x05\x1a\xb4\x3a\xf3\xfa\x8c\x60\xfc\x3a\xde\x84\x3a\xb7\x93\x5c\xcf\x2f\x2a\xd0\x27\x50\x2d\x7a\x73\x76\x9e\x81\x19\xf1\xda\x46\xdd\x9c\x1d\x94\xda\x53\xb5\x20\xbd\xf0\x2b\x2a\xf5\x06\x35\xb8\x6b\x69\x56\x6d\x1a\x11\x40\x96\xb2\xe0\xe9\xc3\xba\x92\x4f\xf0\x54\x5c\xf7\xb1\x66\x9b\xbe\xde\xc9\x0b\xc5\xb8\xe4\xd7\x1e\x8a\x73\x54\xdb\x57\x79\x0f\x3a\x69\x36\xf1\xae\x34\x35\x15\x03\x79\xc2\x85\xbc\x5d\x30\xac\x3d\xf6\x93\x8a\x78\xc1\x18\x9d\xcc\x4a\xfd\x61\x25\xd0\x7c\x49\xda\x89\x2c\xe2\x6d\x56\x37\x78\x05\x2d\xd9\xe2\xc5\x72\x44\x9b\xac\x34\xcf\xee\x08\xdf\x5c\x81\xaf\x14\x5c\xb2\x9d\x9b\x09\x26\xc6\x46\xc2\xa7\x13\x85\x0f\xa8\x9d\x3c\x72\x5a\x0c\x0e\xca\x68\x14\x97\x90\x45\x87\x68\x46\xce\x55\x59\xf9\xb2\xb9\x67\x96\x35\x33\xe4\xc4\xa5\x6d\x7d\xd9\x84\xd7\xd3\x53\x80\x03\xf2\x16\x99\x6b\x35\x94\xb0\x1f\xb6\xc6\x08\x7b\x6c\x8c\x28\x83\xab\xb3\x82\xfa\xf3\xb4\x91\x11\xed\x2e\x67\x61\x1a\x48\xb2\xd2\x0e\xe4\x75\x15\x5c\xe2\x3c\x3e\xc4\x3d\x85\x70\xdb\x3e\x34\x77\x70\xc6\xf7\x72\x24\x3d\x74\xf4\x24\xcf\x8c\x8f\xc1\x9e\xdd\x8b\xef\x78\xa6\x1a\x94\x2e\x93\x94\xaa\x73\x76\xa4\xbd\xe7\x47\xfa\x46\x25\x4e\x37\xab\x3c\x8c\xe1\x21\xf2\x04\x49\x84\xb9\xd1\x8c\x50\x08\x85\x09\x8d\xa2\x6c\xae\xe4\x60\xb2\x28\x5f\x53\x04\x77\x25\x07\x3e\x64\x0f\x50\x6f\xe7\x76\x13\x59\x8f\xce\xb4\x6f\xd5\x84\xf3\x7e\x1c\x70\x67\xcf\x91\xc1\x3d\xc1\x95\x63\xce\xbb\xe7\x25\x32\x04\xf2\x31\x4d\xab\x2d\x8f\xfb\x2d\xf2\xe8\x19\xe3\xc6\xa3\xce\xfb\xe5\xc1\x95\xd4\xf5\x13\x41\x6f\x66\x91\x28\x6c\x8c\x73\x71\xdd\xe7\xb5\x72\x85\xd3\x1b\x47\xc6\x59\xcf\x7a\xfa\x28\xd2\x9c\xa8\x3c\x06\xdb\x3d\xdd\x9e\xef\x39\x7b\xa3\x66\x5e\xb0\xc0\x2d\xa1\xde\x47\x8b\xd8\x82\xb7\x58\xac\x2b\x0e\xb4\x00\xe0\x1c\x08\x90\xc0\x11\xc2\x7b\x40\x76\xc2\x60\x00\x8e\xb0\xdf\x7a\xe1\xfb\xbd\x92\x67\xb9\xc2\xed\xd3\x41\xe3\xb2\x46\x41\x8f\xc9\x7d\xbc\x1a\x18\xc8\xa6\x76\x60\x2b\xdf\xe8\x7d\x5d\xaa\x38\x1b\x42\x4d\x5d\x4a\xd6\x2d\x8d\x49\x67\x7f\x55\x61\xe7\x9f\x19\x60\x41\x89\x34\xf6\xc8\x37\xf2\x8a\xf6\xb0\x2f\x41\x52\xea\x43\xca\x41\x3e\x93\x03\xe4\x48\xdb\xe9\xf3\x59\x4f\xda\x45\x72\x6f\xee\x6c\xb6\x81\xb9\x40\xa5\xe5\xf2\x1e\x43\x5f\xbe\x7c\x98\x95\x93\xca\x3c\x61\x0f\xa3\x12\x25\xdf\xd1\x64\x3c\xc5\xbb\xeb\xea\x2e\x72\x0c\x05\x10\x28\x7b\x3c\x55\x3b\x4a\xbc\xac\xfc\xca\x76\xad\xa2\x8d\xc9\xd7\x65\x25\xe3\x72\xf2\x55\xfc\x6c\x70\x7e\x8a\x2a\xe1\x59\xc3\xfe\x90\x93\x99\x7e\xac\xce\x16\x6a\xfc\xda\x49\xcb\xc3\xee\x01\x7e\x94\xb5\x0d\x8f\x70\xcd\x79\x87\xb0\x60\x44\xc3\x6a\xc4\x5e\xe8\x11\x26\x39\xbb\xda\x8e\x80\x92\xd5\xce\xde\x72\xed\x60\xaf\x9f\x22\x7b\xa8\x95\xd4\x5f\xeb\x3e\x7e\xe7\x0b\x5a\x67\x2f\xa8\x11\x76\x30\x14\x11\xd9\x4a\xae\x19\x7d\x91\x5d\xc9\x45\x5e\xd4\xc8\x69\x71\xd0\x7d\x1e\x81\x80\x74\x0b\x1f\xf6\xa9\xb3\x53\x84\xd8\x2d\xf2\x98\xea\xec\x53\xe4\x3b\x84\x37\x59\xa9\xe8\x7a\xe8\x65\x72\xc9\xb2\x89\x6a\x9a\x30\x69\xf6\x6c\x5a\xa9\xfc\x77\x2c\xc8\x9e\x53\x1a\xa6\x3b\xfa\x2b\xd2\x72\xd0\x8f\x7c\xda\x50\xff\x70\xef\xaf\x3d\x18\x53\xbd\x3f\xb7\x58\x35\xbd\xe9\xcc\x62\xe9\xcf\x99\x48\xa1\x0e\x0e\x74\xaa\x7a\xfa\x6a\xc2\x79\x9c\x19\xfa\x5b\x6a\x5b\xb6\xb0\x09\x1e\x6a\x2a\x8b\xe4\xe4\x50\xa4\x8c\x95\xb4\x02\x8f\x64\x7c\x54\xa3\x37\x3e\xb9\xd5\xc8\x95\xea\xb0\xbf\xaf\x8b\xb6\x65\xce\x1d\xac\x6f\xe2\x8d\x0f\x57\x4d\x01\x7b\xcc\xda\x47\xf1\xa1\xce\xfc\x8d\x2b\x6c\x82\x11\x9b\xca\x2d\x65\xf7\x4b\x9d\xbd\x71\xaa\x26\x6f\xe8\xe8\x89\xfa\xb1\x5a\xfa\x1a\x59\xd3\xaa\xbe\x32\x0a\xf7\xa1\x0e\x4b\x1e\x5c\x02\xeb\x18\x20\xb9\xa0\xb4\x17\xb8\x27\xd2\x40\x47\x49\xab\x2b\x5c\x74\x1e\xe5\x1b\x68\x1f\x98\xe4\x66\xe1\x58\xa4\x96\x70\xf5\xa4\x78\x6b\xf8\x78\x7a\x5a\x02\xb2\x37\xca\x06\xd9\x4e\x6e\x43\xc6\x64\xaa\x06\x3b\xd3\x19\xf6\x9d\xbe\xf9\x50\x93\x71\x44\x46\x00\xaa\x57\xba\x59\x68\x23\x1c\xc1\xd3\x9f\xe6\x90\xd2\x45\xb2\x41\x50\x81\xbc\x51\x48\xf7\x48\xfa\x74\x1d\x4e\x64\x56\xd3\x8c\x76\xb6\x8c\xe0\x9b\x69\x00\xec\x72\x04\xe5\xf7\x92\x2b\x15\xa8\x79\x4a\xdf\x19\xc8\x75\xbc\xe5\x45\xd4\x57\x29\x27\x84\x8a\xe1\x91\x88\x3d\x6e\xc2\x18\x10\x4a\x4b\xa8\xdc\xcd\x15\x72\x1d\xc3\x8d\xe2\x71\xf8\x51\x57\x49\x96\x25\xf5\x54\xc2\x38\x68\x1f\xab\x97\x11\x82\x72\xd0\xea\x69\x08\xf7\x20\xd8\x1b\xdf\x19\x35\x0c\x1e\x8d\x3d\x98\x66\xdb\x78\xf6\xd2\xa7\x8a\x5d\xaa\x37\x06\x6b\x0b\x27\xcb\x37\xa4\x84\xef\xe0\xd7\x3b\x47\xb2\xa3\x55\x6f\xbc\x84\x6a\x68\x80\x94\x18\x77\x49\x46\x00\x41\xf8\x1a\xb1\xea\xf9\x1a\xa2\x9b\x33\xb8\x3e\xd3\xd8\x16\x0d\x64\x12\x68\xed\xa7\xe4\x61\x3f\x55\xd3\x9d\x99\xee\x09\x5b\x89\x0f\xb3\x70\xba\x0f\x6a\xce\x9e\x09\x33\x7a\xaa\xee\x0a\x50\xab\x6c\xe9\x3b\x1f\x30\x0c\x22\x2e\xc7\xea\xcb\x01\xd6\xd1\xa1\xf7\x79\x2c\x53\xf7\x2c\x96\x29\xc0\xe7\x68\x6a\x9e\x2a\x13\x81\x85\x2b\x36\x0d\xef\x4e\xa8\xe6\xd9\xa6\xe1\xee\xbb\xc2\x19\xcb\xec\x58\x46\x35\x35\x11\x85\x18\xff\x69\x3f\x0e\x4c\x58\xaf\x2d\x54\x2f\x39\x0f\xea\xdb\x4f\x57\x06\xbc\xb6\x25\xd4\x63\xee\xc4\xc3\xa9\x0b\xf5\x96\x3f\x31\xab\x4f\x69\x4e\x59\xfd\x51\x27\x9e\x8c\x85\x8a\xba\xb0\x37\x32\x77\x1f\x60\xa8\xd8\x43\x39\xbc\x09\x63\x83\x63\x19\x55\xf2\x2d\x83\xe5\xe4\xf4\x43\x45\x90\x6f\x1b\xcd\x9f\xdd\x1f\x31\xd6\x4c\x5b\xd8\xcf\x91\x88\xcf\x4d\x4a\x46\x10\xa3\xe7\xd3\x48\x4c\xb2\xc9\xa0\xe3\x8a\xc9\x3b\x07\x3d\xab\x69\xf1\x02\x40\xda\xbe\x67\xb9\xd6\x40\xa9\x92\x77\x63\x2d\xcb\xc2\xf6\x10\xab\x41\x5a\xdc\x36\x79\xcc\x51\x90\x45\x6d\x07\x0e\xe2\x00\x70\xdf\x2e\x67\x46\xac\xc3\xaf\x54\x3c\x6e\x77\x26\xc3\xa4\xfe\x45\x8c\xfa\x8b\xa6\x8c\x95\xc0\x57\x58\xcb\xd6\xaf\x42\xd4\x89\xd1\xa0\xb0\x14\x8e\xa6\x45\x98\x4e\x4d\x13\x6d\xbb\x47\x07\x31\x28\xd0\x03\xeb\xbf\x6d\x98\x7b\xb9\x26\x22\xef\xa5\x20\x05\x35\x83\xa9\xca\xaa\x12\xa7\x71\x76\x45\xed\xa9\x88\x70\xd0\xd1\x5d\xe8\x00\x3d\xe9\x83\x63\xb1\x4c\x06\x45\x1e\x90\x71\x06\x16\x77\x9e\x35\x97\xa2\x8a\xd4\xae\x9e\x00\x51\xe2\x58\x8b\xba\x70\x93\xf6\x0a\xa4\xb8\x1e\x66\x7b\xd7\x1d\x59\x33\xa9\xfa\x9c\xa5\x8f\x1f\x71\x1a\x4e\x1a\xb9\x7a\xa6\xb9\x64\x6b\x43\x9d\xb3\x4c\x55\x17\x1e\x5e\x3e\x97\x42\x3c\xce\xc9\x68\x84\xf4\x26\x2e\x9e\x54\xe7\xe4\x50\xc2\x65\x1c\xdc\x56\xd2\x47\xff\x6e\x2a\xad\x99\xd2\x6f\x15\x5a\x54\xae\x93\x8c\x2f\xac\x8e\xb0\x39\x56\x60\x09\x1f\x2f\x52\x99\x8e\x37\xfa\xcc\xd8\x43\x0e\x6b\x22\xf9\xcb\x79\xb4\x5c\x51\x41\x65\x1f\x5e\x81\x2d\x4a\xbb\x3d\x26\x7e\xec\xdb\x21\x5b\x69\x5c\x2d\xcb\x2d\x24\xfa\xc5\x56\x05\x61\x5b\x0a\x42\x5f\x95\x9f\xdd\xe9\xdd\x25\x98\x9c\x37\xf5\x89\x2c\x23\xf5\xbd\x15\xa6\x6d\x00\x9d\x8f\x24\xab\xc8\xca\x15\x47\x49\x70\xae\xd7\x6b\xa2\xab\x9c\x50\x3b\xbd\x55\x91\x90\xbb\x23\xf4\x67\x0d\x0c\xf7\xb0\x0d\x61\x23\xd9\x67\x24\xb5\x8d\x78\xe7\xb6\xc7\x48\xe2\x0e\xc0\xe7\xc9\x86\x5d\x70\x69\x1b\xde\x6c\xe2\x2f\x2d\xd2\x4b\xed\xc7\xc8\x48\xc9\x19\xec\x39\x8c\xa4\x19\x6f\x71\x99\x0f\xb6\xd8\xea\x88\x34\x5b\x6c\xe0\xd9\xb9\x06\x5f\x51\x1d\xf2\x10\x51\x4b\xb8\xf8\xad\x86\xea\xba\x1a\x7d\xdf\xa2\xa6\x37\xee\x98\x95\xb8\x78\x34\xbd\x31\xfe\xc7\xce\x40\x62\x4b\xd7\x49\xeb\x92\x55\x6b\xec\xc5\xf6\xaa\x0f\x0b\x4b\x1f\x6c\xd8\x2e\xb6\x45\xd7\xc4\x5b\x39\x04\xf2\xcd\xc9\x8c\x85\xe5\x88\x32\xa5\xc8\x20\xe3\x81\x26\x35\x1b\xf5\x80\xd3\xff\x50\xb6\xae\xca\xc2\xc1\xe1\x2f\x91\xef\x7d\x83\x42\xa8\x1e\x5e\x27\x1b\x3a\x76\xd7\x72\xb5\x91\x3f\x58\x3f\xf4\x47\x53\xef\x87\xbf\xfe\xb0\xde\x74\x36\xa3\x6e\x72\xbc\x4e\xa6\x7e\xe9\x7a\x85\x5e\xd7\xcb\x64\x7f\xe9\x0e\xb7\xfe\xe4\x97\xf1\xfa\x07\xeb\x87\xf5\x7c\xbb\xea\x7a\x6b\x35\xf7\x37\x9e\xbf\xf9\xe1\xaf\xbf\xfd\xd0\xdf\xfa\xdd\xcd\x68\xee\x27\x36\xf3\xe7\xce\xf4\xa7\xd9\xe8\xf0\x73\xe2\x3f\x7f\xf7\x7f\xdf\xec\x3a\xab\xc4\xc4\x4a\x1c\xad\xc4\x7a\xb3\xfa\xf2\xe3\x8f\xbf\xfe\xee\xeb\xe2\x51\x3f\xf1\xd3\xe6\xb8\xf0\xe6\xfd\xc4\x6c\x74\x48\x7c\xf9\xf2\x25\xf1\xe3\x7a\xb3\x1a\xf9\x83\x1f\x13\xff\xf7\xff\x26\xce\x1f\xf9\xdb\xd9\xbb\xb7\xfa\x91\xfb\xfc\x7d\xb3\xde\xac\x12\x57\x5f\xf4\x73\xdd\xdf\xe6\x1f\x09\x6f\xba\xf6\x12\x97\x3a\x9d\xbf\x8f\xbd\xee\x26\x6c\xa9\xeb\x88\xd5\xaa\x73\xfc\x65\xb4\xa6\x7f\x69\xac\xc1\xe3\xdf\x37\xfd\xf9\x2a\xf1\xd3\xe4\x4b\xea\xd7\xc4\x24\xf1\x6f\xba\x9f\x5f\xa6\x9e\x3f\xd8\x0c\x7f\x4d\x4c\xae\xae\x22\xf5\xd0\xd5\x6c\x74\xf8\x6d\xf2\xb7\x58\x31\x1e\x1c\x13\x5f\xc2\xb9\xd0\x55\xce\xea\xe0\x1b\xfe\xf5\x5f\x13\x3f\xf1\xb7\xfc\x98\xf8\xf1\xe7\x5f\x3f\xd6\xb8\xfa\x92\x38\xc6\x8a\xff\x11\xfe\x08\xfe\xe4\x3f\x78\x1a\xce\x3e\x25\x31\xf2\x13\xe1\x7a\x7c\x63\xe8\xdf\x1a\x14\x97\x4f\x7e\xfd\xca\x28\x68\x45\xb0\xcc\x2b\x6f\xb3\x5d\xf9\x7a\xe9\x7f\xfd\xdd\xa7\x32\xef\xb0\x98\xaf\x36\x89\x9e\xd7\xef\x6c\xa7\x9b\x44\xb0\x6f\x7e\x8a\xec\x97\xd1\x97\x94\x95\xd8\xcc\x16\x56\xe2\x10\xdd\x36\x9b\xfd\x70\x34\xf5\x12\x3f\x8d\x12\xff\x96\xe8\xac\x06\xdb\x99\xe7\x6f\xd6\xbc\x3a\xb1\xf5\xdd\xcc\x16\x89\x2f\x61\x95\xdf\x46\x57\x57\xd1\xef\xd4\x55\x0e\xc1\xf2\x6c\x66\x8b\xf8\xda\x7c\x7d\x0a\xb8\xf4\xf0\xd9\x47\x7f\xf8\xe4\x1f\xac\x1f\x46\x33\xfa\x66\x6c\xc5\xf6\x68\x33\x9c\x6f\x37\x0f\xab\xf9\xc2\x5b\x6d\x46\xde\xfa\x6e\x3e\x5f\x7b\x89\xfe\x6a\x3e\x4b\xfc\xfe\xc3\x2f\xc9\xaf\xd5\xfa\xfd\x87\x5f\x3f\x9f\xc1\xbf\x7f\xd2\xf2\x27\x9c\x56\x2b\xe1\x1d\xba\xd3\x6d\xcf\xeb\xd1\xd7\x26\xe8\xb4\xe0\x51\xe2\xcb\x97\x84\xbf\x9d\x4e\x7f\x4e\xf0\xe0\xff\xf3\x1f\xbf\xea\x1a\x7a\x2d\x36\x9d\xd5\xc0\xdb\x24\xbe\x7c\x75\xf4\x1f\x5f\x11\xb4\x9f\x78\x47\x2b\x31\xa2\x53\x8f\x57\xd6\xa9\x9f\x5f\x06\xde\xa6\xbe\xf7\xb9\x9f\x63\xf3\x38\x7b\x9f\x4f\xd7\x3c\x32\xb4\x44\x9f\x78\x52\xf5\x8e\xeb\xc4\x97\xc4\xd7\xda\xf2\x18\x7e\xe6\x57\x25\x12\xb4\xfb\x47\x89\x2f\x89\xd4\xaf\x09\xbd\x65\xce\xfb\x0b\xce\xf5\x88\xcf\x75\x82\xfe\x9b\x78\xfa\xe8\x9e\x57\xfe\x6d\xf4\xb7\x5f\x4d\x0d\xfd\x15\xe6\x43\x7f\x19\xf9\x3d\xef\x50\xef\xff\x34\xf1\x8e\x3f\x27\xfe\xf7\x97\x44\xea\xe7\x44\x77\xee\x6f\x46\xfe\xd6\x8b\x35\xf8\x17\x1e\xfb\x62\x35\xdf\xcc\x35\x91\xd2\x7f\xd1\xf8\xdd\xb5\xed\x6f\x67\xde\xaa\xf3\x3e\xf5\x7e\xe9\x76\xa6\xd3\x60\x36\x75\x9f\x17\xba\xc3\x92\xfc\x36\xf1\x8e\x7f\x0b\x46\x4a\xbf\xb8\xc6\x3f\xf4\x3f\xff\xc0\x34\xf0\x82\xa2\x89\xde\x90\x3f\x58\x3f\xfc\xd1\x0d\xf4\xc9\x12\xff\xa9\x5d\x14\x29\x43\xab\xf8\xca\x4e\xbc\x63\x74\x21\x2f\x6c\xa1\xcb\xab\xfa\xe9\x7a\x46\x57\x33\xbe\x8e\x7f\x70\x15\xbf\x3e\xe9\x7f\x66\xb6\xbd\xc3\xc6\xf3\x7b\xeb\x9f\x78\xac\xe6\x77\x38\x19\x9d\xf5\x7a\x34\xf0\xf5\x75\x18\x52\x49\x74\x1d\x7c\x1e\xcd\x06\x91\xcc\xc4\x97\x44\x1a\x33\x72\x4e\x1a\xcf\x37\x78\x38\xf7\x71\x22\xf9\xb7\xe0\xe4\x44\xfa\xd5\xf3\x37\xf2\xb9\x7e\xa4\x93\xd8\x59\x0e\xf7\xf4\xb0\xb3\x8e\x9c\xcc\x4b\xbb\x39\xd2\xc3\xb7\x77\x72\xb0\x9b\x23\x7f\xfc\xc3\x8c\xf2\x7c\xb2\x13\x89\x7f\xfc\x1a\x5b\x06\x33\xa3\xbf\x74\x16\x8b\xe9\xf1\xa7\xcd\x70\xb4\xb6\xc2\x0f\xfe\x99\xd7\x47\x7f\xe5\xdf\x99\x6b\xf8\x62\x18\x0f\x1c\x7c\xe2\x20\x7e\x0f\x78\x9b\xdf\x7f\xd0\xf7\x42\xac\xc6\x2f\xa3\x8d\xb7\xea\x6c\xe6\x2b\xae\xba\xa6\xd2\xdf\x7f\x48\xfc\x7b\x64\xcd\xe6\xef\xe3\x9f\x13\xff\x19\x8c\x17\xed\xe7\xef\xe3\x5f\x13\xff\x48\xfc\xf5\xd3\x7a\xf3\xf7\xf1\x87\xd7\x5d\x1c\xd0\xfc\x7d\xfc\x4b\x77\xee\xaf\x37\xab\x6d\xd7\x8c\x84\xab\xe3\x69\xe2\x5f\x82\x92\x70\xa9\x12\xff\x1e\x1d\xee\x5f\xe3\xc3\xfa\x35\x72\x53\xd3\xee\x5a\xcb\xd5\x7c\xbf\xf6\x56\x89\x2f\x01\x87\xb5\x1f\xf9\xbd\xf9\x9e\x47\xb4\xf5\x7b\x5e\x7f\xe4\x7b\x3d\xfa\xf4\xf8\xef\xbf\x9a\xe9\xfd\x09\x4d\x7e\xfe\x99\x1b\x81\xdc\xe0\x23\x4c\xaf\xbd\x79\x97\x96\xe7\x0f\xf5\x6b\x1a\x71\xcf\x86\xe7\xd3\xfd\x9a\x47\xbf\xf8\xf3\x9e\xf7\xa4\xbf\x5b\xd7\x28\xfd\x7a\x81\x15\x09\x3e\xf2\x57\xba\xb4\xc3\x83\x8a\x57\x46\x2e\x54\x6c\x39\x2b\xa1\x29\xb8\xb9\xb3\x62\x27\x91\x69\x13\x3d\xbf\x78\x0a\x75\xc5\x9e\xb7\xee\xae\x46\x0b\x5a\x32\x54\x0d\x89\x53\xf8\xec\x17\x2f\xb8\x1c\x12\x5f\x3e\x29\xd7\x14\xa2\x33\x5d\x7b\x1f\x1b\x77\xe7\x7e\x7f\x34\xd8\x9a\xe6\x9b\x55\x40\xcf\xf4\xf1\xfd\xfd\x87\x5d\x67\xba\xf5\x7e\xff\x41\x1f\xf1\xb0\xd5\xcf\xd1\x1e\xf6\xab\xd1\xe6\x63\x6b\x3e\xf8\xb1\x99\x39\x06\xf3\x12\x69\x4e\xb4\x3b\xd2\xb5\xa1\x96\x5f\xe5\x05\xff\xde\x5d\x79\x9d\x8d\xa7\xa6\x9d\xf5\xfa\x27\x15\x6e\x6d\x9a\xf1\xcd\x5c\xbf\x6f\xad\x19\x43\x2d\xa4\x3c\x44\xd6\x40\x7f\x53\x58\xe3\xe7\x0b\x2b\x17\xe9\x2c\x3c\x0a\xd1\x6e\x31\x40\xba\xd4\xa2\xdd\x7f\xb5\xa7\xf8\x50\x7e\x8d\x50\xa0\x48\xa5\x6f\xdd\x06\x23\x7f\xe8\xad\x46\x1b\x73\xd9\x6e\xdf\xe9\xeb\xad\xc4\x7a\xbb\xf0\x56\xf4\x37\x7f\xa4\x79\x14\x39\xca\xc1\x8d\x81\x79\xfb\x29\x6c\x13\x56\xc2\xb8\x3e\x36\x8e\x93\x8e\xa0\x42\xbc\xf6\xdf\xff\x4e\xf5\xff\xfe\x77\xaa\x61\x3a\xff\xd6\x27\x75\xd6\x6b\x6f\xb5\x79\x1a\x8e\xd6\xae\x3f\xda\x8c\x3a\xd3\xd1\xc9\xeb\xfd\xb4\xf6\xa6\xfd\x28\xef\xe0\x4d\xfb\x74\x26\x77\xf3\x51\x4f\xdf\xbb\x7c\x42\x36\xc3\xd5\x7c\x9f\xf0\xbd\x7d\xe2\xd1\xeb\x7b\x2b\xcf\xef\x7a\xf6\x6a\x35\x5f\xfd\xf4\xfb\x0f\x9a\x90\x27\x86\x9d\xb5\xff\xe3\x26\xf1\xee\x79\x7e\x62\xc4\xdd\xaf\xbd\x5e\xe2\x2f\x18\xe0\x4f\x3f\xc7\x6a\xe8\x8b\x48\x13\x8d\x9f\x2f\xdc\xd6\x7a\x04\xfc\x29\xcc\xa8\x07\x57\x31\x31\xe5\x3f\xfe\x9f\xf7\xce\xbb\x37\x4d\xae\xb6\xfe\x66\x34\xf3\x92\x43\x6f\xba\xf0\x56\xeb\xa4\xb7\x9e\x25\xb9\xa2\x16\x4f\xb8\xad\xfe\x58\x43\x2c\xd1\x7c\xb4\xfe\xcb\xc8\xff\xcb\x3b\xca\x22\x35\xf7\x9d\x95\x3f\xf2\x07\x5c\x6b\x33\xf2\x8f\x7f\xe1\xa2\x48\xa5\xe8\x51\xf8\xf6\x70\x22\x95\xa3\x7d\xc4\xf6\xd6\xb7\x7b\x89\x55\x8f\xf6\x73\x71\x41\xbf\xdd\xdf\xc5\x66\xd1\x7e\xbf\x2d\x18\x7d\xad\xfb\xaf\xb5\x86\xba\x41\x53\xdb\xc5\xb4\x33\xf2\x71\x4c\xf8\x54\xae\x78\xcb\xff\xe7\x3f\xa2\x67\xe0\xd7\xdf\xfd\x60\x07\x77\xa7\x73\xdf\x6b\x6e\x8e\x53\xef\xa7\xb5\xfe\x7f\x74\xdb\xea\xdf\x86\xe3\x8d\x68\x2c\x50\xfe\x2f\x31\xcd\x43\x20\x11\x1e\xa7\x5e\x40\x5e\xe2\x3a\x08\x74\x1f\xaf\xfa\xcb\xac\xb3\xf8\x29\x1c\x42\x94\x32\xe9\xa7\xd1\x73\xab\xdf\xf7\xc9\x07\x5e\x78\xbd\x9e\x0e\xdf\xdb\x37\xf1\x09\x60\xc9\x63\x57\x98\xdf\x99\x79\xc4\xf5\x45\x3e\x3a\x11\x34\xf9\x4d\x3f\xd6\xfc\xda\xf9\xf4\xe0\xc1\xa5\x23\x66\x9a\x1a\x25\x40\xf2\x7f\xfd\xaf\xdf\xfd\xc4\xff\x4a\x28\xda\xaf\x89\x4e\x62\xb5\x9d\xea\x37\xae\x37\x1d\xbf\xeb\xfd\xa2\x9f\x25\x75\xbd\x70\x25\xa8\xe2\xe3\x76\xea\xfd\xa4\x5f\xa2\xaf\x94\xee\xd4\x4a\xcc\x17\xfa\x69\x94\xfc\xd3\xd0\x2f\x90\x13\x94\x27\x7e\xdc\xfa\xfa\x2f\xda\x7d\xc1\x20\xf5\x27\x8f\xd7\x9a\xf1\xe6\xfe\x7e\x19\x33\x01\xc4\x35\xdd\x9d\xaa\xf9\xe2\x18\xff\x60\x5d\x1a\x4a\x28\x34\xfc\x2f\xba\x93\x5f\x16\xd3\xed\x60\xe4\xaf\x7f\x99\xfb\xea\xd2\x98\x75\x4f\xe1\xb8\x83\x25\xd5\x1d\x04\x2b\xa5\x7f\xfc\x9a\x48\x26\x13\xae\x26\x27\x89\x8e\x9f\xe8\x6c\xfe\x42\xaf\xe8\xf8\xbd\xc4\x68\xa3\x29\x5b\xc2\x9f\x47\xe7\x2b\xfa\xf9\xbf\xa5\xfe\x06\x36\xe8\xff\xfc\x18\x7c\xfe\x62\x35\xef\x7a\xeb\xf5\x2f\x9e\xbf\xfb\xe5\xbe\x5e\xb6\xff\x6e\xdf\x3f\xd3\xae\xf9\xfd\x87\xc5\x6a\xde\xdb\x1a\x76\xf2\xdf\x0d\x55\xfa\x89\x18\x0a\x2b\xf1\xfb\x0f\xbf\xdd\x36\x9b\x7f\x4b\xb4\xfc\x89\x3f\xdf\x63\x6c\x89\xdf\x7f\x48\x5c\xd1\x8c\xfe\x9c\xf8\x2b\x4f\xf4\xa5\x45\xdf\x4e\xa7\x66\xc1\x69\x8a\xe7\x23\x3f\xf1\x25\xbc\x1f\xf4\xef\x9f\x88\x01\xb1\x12\xef\x47\x1e\x2a\xcd\xa6\xb7\xd6\x17\xc9\x97\x04\x6b\x0b\x2f\x33\x57\xd4\xf2\x22\x73\x95\x4c\x26\x1e\xbd\xd9\x7c\xe7\x25\xfe\x05\x14\xa6\xe3\x6f\x40\x46\x36\x43\x2f\xc1\x6f\x1c\x6d\x12\xfb\xd1\x74\x9a\x78\xf7\x12\x2b\xaf\xd3\xeb\x79\xbd\xc4\xb4\xb3\xf1\x56\xbf\x84\xec\x11\xd5\xfc\x6d\xc4\xb3\x19\xf6\xf5\xe3\xcf\x89\xf7\x95\xd7\x99\x44\x38\x29\x0c\xf9\x67\x33\xf4\xab\x2f\x89\xf7\xe3\xaf\x46\x4c\x31\x45\xa6\xbf\x0b\x73\x85\x4a\x7a\xb6\x7e\x8d\x9c\x8e\xb9\xbf\xf3\x56\x9b\x75\xa2\xa3\x69\x04\x9a\xaf\x13\x9b\x79\x02\x8a\x52\x3a\x26\x54\xf1\x3f\x66\x9d\xd5\x60\xe4\xff\x35\xf1\xdb\x6f\x3f\xe6\x16\x87\x1f\xad\xc4\x8f\xe9\xd4\xe2\xf0\xe3\xdf\xfe\xf6\x1f\x89\xff\x1d\x3e\xcd\x2d\x0e\x09\x5d\xfe\xeb\x7f\xa0\xd5\xfb\x7c\xd5\xf3\x56\x7f\x4d\xfc\xf6\x63\x1a\x8d\x32\xba\x0d\x35\x31\x8f\xd2\x8b\x83\x95\xc8\x84\x4d\x3e\x7b\x91\x15\x9b\x9f\xcb\xaf\x8d\xac\x86\xe9\xae\x3b\x9f\xce\x69\x00\x2b\xaf\xf7\xa3\x15\xa9\x80\x1e\xf8\xf1\xca\xeb\x7d\x68\x4b\xe4\x21\x42\x20\x36\x73\xb5\x5e\x3f\xeb\x19\x32\x5b\x6a\x34\xf0\xe7\x2b\xcf\x35\xcd\x22\x34\xe2\xec\xc9\x25\x72\xf1\xa1\x4a\x84\xc1\xfe\x47\x78\xdc\xfe\x25\x4e\xc5\xe9\xcd\x21\x15\xa7\x9f\x01\x8d\xe8\xf2\xf8\xb0\xaf\xf5\x26\x6d\x6e\x17\x74\xff\xad\x17\x9d\xae\x97\x58\x7b\x8b\xce\xaa\xb3\xf1\x7a\x66\xa1\x77\xa3\x4e\xe2\x3f\x3e\xae\x68\xe4\xb4\x5f\x78\xfb\x6f\xa9\xbf\xfd\x7c\x59\x3b\xf0\xcd\x63\xf3\x87\x36\x3d\x2a\x9b\x6f\xfa\x39\xfc\xba\xab\x2f\x09\x3d\xda\xa0\x5a\xf4\x41\x78\xe2\x7f\x1b\xe9\x2d\x03\xcd\x6a\xa8\xb2\x82\xfa\x3a\x32\x51\x51\x12\xa1\x7b\xfd\x99\xe6\x4d\xf4\xa2\xfb\xc1\x4a\xbc\x7b\xdd\xce\x76\xed\xd1\x91\xee\xac\x79\xed\x7a\xbf\x60\x87\xf0\x42\x9d\x2f\xe8\xbf\xfe\x2b\x1f\xc7\xe8\x7c\x24\xfe\x92\x48\x5f\xfa\x70\x9e\xa0\xd8\x37\x46\x46\xf0\xe3\x85\x03\x6d\xea\x9e\xdf\x78\xae\xdf\xd3\xd2\x6d\x27\x7a\x86\x13\xc3\xcd\x66\xf1\xd7\x64\x72\xbc\x5e\x78\xab\xfe\x2f\xdd\xf9\x2c\x49\x27\xfe\x2f\xfa\xf3\xff\xb2\x5b\xff\xa5\x3f\x5f\xf1\x9e\x0f\xf6\xfb\x88\xfa\x69\x6e\x56\x3f\xad\x37\x2b\x8b\x7f\x7e\x27\x0d\xf5\x7b\xde\x81\x37\x04\xfd\xf9\x6f\xdc\x9c\x7f\x47\xb6\x44\x48\xbb\x7e\x4c\x24\x2e\x7d\xa6\xa9\x10\xaa\xbb\x3f\x12\xaf\x84\xbe\x02\x35\xd9\x52\xcd\x66\xf4\xb3\x2f\x1e\x61\x2d\x0f\x78\x46\xa8\x3a\x4e\xbd\x4b\x77\x3c\x97\x5c\x3a\xb7\xc1\x23\xa3\x68\x8c\x5c\xf1\xf1\x29\xe1\x7d\xc1\x2c\xce\x39\x19\x46\x8b\xbf\x87\xdd\xf1\x5f\x96\xd9\xd6\xe6\xd1\xff\x83\xa9\x4b\x7c\x09\x4a\x7e\x41\x49\x50\xf3\x43\x85\xa0\x49\x30\xfc\xc4\xbf\x27\x52\x89\xff\x97\xbd\x7f\xef\x6e\xe3\x46\x16\x45\xf1\xaf\x02\x6b\xfb\x98\x64\xcc\x87\xe5\x64\x32\x19\x79\x1c\x27\xe3\x38\x7b\x3c\x33\x8e\xbd\x2c\x67\xf2\x3b\x3f\x51\xdb\x82\xd8\x20\xd9\x56\xb3\x9b\xd3\x68\x4a\xd6\xc4\xba\x9f\xfd\x2e\x54\x15\x80\x02\x1a\x4d\x52\xb6\x93\xbd\xd7\x3d\x27\x7f\xc4\x22\x1a\xcf\x42\xa1\x50\x55\xa8\xc7\x51\x5c\xc1\x4d\x63\x2e\x8b\xe2\x5c\xce\x2e\xcc\x3c\x90\xf7\x73\x25\x8f\x98\x18\xa5\x90\xdd\xc3\xc6\xf7\xef\xe3\x51\x59\xaf\x8b\x6b\xd6\xc1\x3c\xaf\x75\xc3\x28\x88\xfb\xc2\x2f\x4f\x20\x27\x42\x5f\x97\x8d\x7c\x2f\x7e\x75\x55\x8e\xc4\xc9\xaf\xeb\xba\x5a\x1f\xe1\xc9\xb9\x39\xbd\xf1\xf7\x5f\x48\x89\x7c\xaf\x8c\xb8\x6c\xc3\x3f\xd7\xc0\x13\xa6\x08\x13\xad\xd2\xc4\xd6\x44\x8a\x8c\x8d\x4e\xa0\x32\x57\x5f\xb2\xd1\xcc\x8c\x0d\x2f\x6b\x6b\x47\x1a\x48\x53\xe5\x92\xa8\x8d\xad\x72\x62\xda\x84\xdd\x31\xda\x28\xee\x58\x35\x77\xd0\x51\x17\x1f\xd0\x9b\x4e\xcb\xde\xa3\xb0\xa6\xff\x3a\x3d\x00\x5e\xca\x9f\x66\x98\xee\x7d\x31\x3d\x38\x42\x2e\x2b\xbe\xd7\x06\xf0\xf1\xd1\xf4\xc0\x9d\xf9\xa0\xef\x9b\x2d\x7a\x53\xf7\x38\x88\xc5\x93\x09\x69\x0d\x52\x3b\x1d\x6c\xf4\x4d\x6b\x0b\xdf\xc6\x50\xd5\xad\x8d\x7a\x1b\x43\x55\x9f\xbc\x6d\xc3\xd5\xc0\xec\xed\x36\xb0\xee\x0b\xd4\x2d\x20\x7d\xbb\x05\xa6\x6f\x77\x03\x35\xa1\x7f\x76\x64\x25\x04\xc8\xc3\xb6\xcc\xe4\x21\xf1\xd0\x1e\x5e\x04\xc3\x43\x0f\x07\x0f\x83\x87\x16\x08\xe6\x7a\xa2\x2e\x41\x94\x74\x30\xec\x45\xb7\xf5\x2e\xd0\xec\x02\xcb\xc3\xad\x70\x79\xd8\x09\x18\xba\xaf\x0d\xb1\x28\x8a\xea\x4a\xa8\xd5\xba\xb9\x26\xe1\x37\x2f\x05\x68\x68\x66\xd2\x08\x10\xf6\x72\x5e\x3b\xc1\xdc\xf1\xdd\xc8\x75\x67\xd7\xa5\x5c\xe5\x33\x59\x14\xd7\xe1\x95\x4d\x73\xbf\x77\x4f\xdc\xb1\xa4\x55\x9a\xc1\x9e\x99\xb1\x62\x92\x6d\xa6\xf2\xcb\x52\x91\x80\x92\x6b\x71\xae\xf2\x72\x41\xd7\x4d\x3e\xcf\x55\x26\xce\xd5\xbc\xaa\x0d\x9f\x85\x94\x12\x78\x05\xd2\x26\x33\x8a\x78\xc7\x53\xd2\xf6\xa5\x80\x40\x18\x8d\xbc\xdc\x16\xc2\x1f\xc0\x3c\x2d\x01\x9a\xee\x6a\xa4\x22\xae\x17\x64\xb7\xb7\x9d\x8d\xa9\x27\x7e\x65\x2d\xfd\xa5\xce\x77\xad\x77\xd3\xe3\x7b\xe1\x84\x2b\xa5\x67\x72\xad\x5e\xab\x05\x90\xd6\x49\xff\xe4\x64\x3a\x3d\x1d\xff\xc7\x17\x77\xbf\xfd\xf3\xfd\xff\xe7\xf1\x87\xff\x3a\xea\x0f\x86\xd3\x83\xde\xd9\x74\xaa\x4f\x07\x93\xc5\x23\x6c\x55\xca\x26\xbf\x54\xcf\xa0\xad\x7f\xfc\x30\xf7\x34\xa0\x9d\xd3\xb6\x83\x2a\xfd\xe9\xf1\xf1\x18\x87\x79\xc4\xc7\x14\x8f\x45\xdf\xbf\x61\xe8\xa6\x26\x14\xb5\x52\x20\x1f\xe2\x49\xf0\x13\x2b\x1f\x99\x4d\x1a\xd7\x6a\x5d\xc8\x99\xea\xb3\x75\x0c\x0d\x2e\x4f\xa7\x77\x0f\x81\x4b\xbc\x19\x38\x55\xce\x5f\xa4\x46\x29\x1c\x18\x8b\xc7\x86\xe7\xf8\x8f\xb7\x6f\x5f\xfd\xfc\xfa\xd9\xdb\xb7\x01\x93\x64\x9f\xd6\x5c\x41\xd0\xb2\x0f\xba\xe9\x24\x97\x21\x00\x83\xc7\xa4\x5c\xed\x41\x1d\x7b\xa8\xe0\x0b\x3e\x2b\x32\xd1\x97\xca\x73\xfd\x0a\x25\x6d\x95\x05\x32\x03\x7d\x26\xad\x51\xa2\x61\xad\xca\x4c\xd5\xf0\xc0\xd2\xf5\x91\xb4\xf0\xed\xcf\x9e\x4b\x09\xbe\xc1\x3b\xdf\x52\xe1\xe3\x3d\x1d\x20\xf8\x3d\xf4\xc4\xed\xb5\x1f\xd6\x56\xb1\x45\xed\xe5\x5e\xa8\xeb\xf4\xb0\xf4\x57\x6a\xa5\x5e\xeb\x44\x7c\x8a\x99\xc0\xa0\xb5\x66\x28\x76\x05\x8f\x9c\x35\x8f\x9d\x4c\xbb\x05\x6a\x86\xf1\x67\xdf\xe9\x9c\x84\x40\xfe\x53\x88\x2f\xc4\x7f\xaa\x46\x54\xb5\xd0\x0a\xd9\x6d\x33\x1f\xfb\xe4\x8e\x42\xbe\xe5\x40\x89\x4c\x83\x8a\x5b\x3c\x0e\x91\xc4\x2b\xca\x89\x5e\x63\x35\x78\xbc\xe7\xca\x0c\xf3\x9b\xd4\x3c\x24\xaf\xc4\x18\x05\xfa\x9c\x9e\xe1\x87\x17\xaa\x49\x28\x1a\x80\x1f\x74\x27\xce\x51\x1f\x0f\x4d\x54\xaf\x01\xa5\xfb\xa1\x2a\x7b\x8d\xc8\x2a\x21\xcb\xeb\x66\x69\x08\x5d\x3e\xf7\xca\x0d\xd2\x0f\x35\x62\xb6\x94\xe5\xc2\x51\x37\x62\xa0\x2a\x7c\xf8\xb5\xbb\xf7\xc4\x6d\x3c\x7e\x39\x0a\xb0\x16\x28\x22\x7e\xb8\x77\xaf\x35\x17\x64\x61\xf1\x06\x65\xd3\x65\xf8\x57\xaa\x2b\x2b\xcb\x59\x69\x98\x75\x6c\xe7\xf0\xe1\x83\x9b\x04\x29\xaa\x80\xfe\xc0\x44\xd8\x85\xc7\x3a\xe3\x08\x38\x8e\xd4\x6e\xb0\xe8\x40\x15\x80\xfb\x62\xda\xb0\xfb\xcb\x4f\x32\xd7\x70\xa5\x20\x52\xd1\x08\x5e\xb1\xcb\xca\xc2\x13\x8d\x4d\x7f\xc0\xfd\x32\x8d\x49\x6b\xea\xa1\x04\x7b\x85\x8d\x73\x4d\x77\xa4\x2c\x33\x73\xf3\xc0\xfe\x51\x53\xbc\x98\xc6\x1c\x34\x76\x4a\xe6\xf2\xf3\x63\x98\x5f\xb0\x19\x21\xb8\xe1\xee\x53\x42\xd6\x4a\x2c\x2a\x83\x0c\x4d\x25\x6a\x54\x80\xc1\x45\x8c\x22\x2e\x5f\x31\x7d\x7d\x2c\xd8\x38\x6e\x98\x40\xad\x65\xea\x0d\x44\xa6\x0a\xd5\xa8\x36\x2e\xc2\x39\x6d\x63\x85\x83\xd9\x23\xd4\xc5\x39\xea\x95\xbb\x1b\xd7\x74\x0f\x87\xec\x18\x28\x14\x6e\xa5\x38\x2b\xf2\xf2\xe2\xcc\x54\x6b\xea\x4d\x08\x91\x98\x10\x5a\x74\xac\x1d\x85\x88\x18\x23\x9c\x79\x50\x67\x8c\xa5\xfe\xbd\x32\xec\x13\x11\x65\xc0\x56\xe5\x1a\x6a\xd5\x6c\x6f\x35\x74\x6b\x1e\x30\xe6\x2b\x3e\x12\x01\xda\x59\xda\x1c\xe0\x32\x14\x06\xa7\x04\xab\xdd\xbb\x47\x34\x52\x36\x8d\x9c\x2d\x9d\xf9\x8d\xf8\x14\xe5\x6e\x0f\x75\xbb\xaf\x89\x65\x32\x24\xc3\x6c\x80\xca\xc6\xe2\x45\xae\x35\x30\x50\x7c\x7b\xa6\x07\xe6\xf3\x11\x6c\xce\xf4\x60\xdc\x8b\xd4\xbf\x09\xdb\x0c\xbb\xf4\xc8\x32\x23\x20\xb1\xe6\x72\x07\x0a\x6e\x80\xb2\xdf\xbd\xfe\x36\xe8\xc0\x1a\xd0\x84\x4f\xa8\xee\xf3\x50\x44\xd5\xad\x42\xc4\x76\xb7\x1f\x47\x80\x76\x22\xb8\x20\x2c\x81\x5f\x46\xb0\x0f\x6f\x0c\x30\x7a\x41\x63\x93\x64\x7f\x1f\x3e\x70\x94\x78\x8b\xc7\x87\xd8\xc0\x37\xea\x7d\x13\xdf\xe3\x58\x23\xcf\xd2\xe5\xdd\xbc\x01\xe0\x98\x65\x2f\x19\x0b\x60\x15\x2c\x9e\x0b\xd0\xb3\x6a\x0d\x24\xcc\xd5\x81\x02\x5e\x63\x07\x1f\xb1\x50\xa5\xaa\x65\xa3\x9e\xf3\x5e\x7c\x61\x88\xd0\x8e\xc1\x76\x18\x9c\x04\x82\xfd\xf9\x28\x90\x5f\xa1\x07\x9c\x6f\xea\x8e\x60\xc0\xf2\xc3\xf7\x3b\x9e\xa2\xbb\x8a\xe1\xa6\x18\x0c\x71\xd5\xfe\x3c\x27\x67\x39\x3d\x18\x03\xd3\x8e\x8c\x6b\xdf\x8e\xdf\xba\x68\xac\x4d\x92\x3f\x12\x21\xb7\x72\xac\x1a\xbf\x5b\x5e\x4b\x66\x3e\x7d\xdf\x34\xaa\x34\x20\x3d\x12\x1b\xa2\x4c\xe2\x2a\x6f\x96\x62\x26\x37\xa6\x78\x2c\x5e\x54\xba\x11\xf4\xc2\xac\x45\x96\x67\xe6\x7a\xc9\x57\xeb\x42\xad\x54\xd9\x50\x37\xc1\xc4\x35\xf0\x20\x43\xa1\x2b\xec\x6f\x25\xaf\xad\xc4\x92\x1b\x91\x07\xd1\xca\x50\x80\x6a\x2e\xcc\xe8\xb5\xc2\x73\x22\x80\x60\x77\x33\x50\x46\xce\xed\xe6\x9e\xfc\x7a\x51\x33\x55\x93\x6a\x50\x96\x42\xe1\x64\x45\x5e\x16\x79\xa9\xfc\x00\x96\xe5\x7a\x88\x66\x5c\x6f\x2a\xce\x76\x51\x51\xdf\x9f\x82\xe0\xbc\x32\x7e\x31\xa0\xe7\x01\x3e\x26\x6e\x10\x7c\x11\xac\x4a\xdb\xae\xa9\xfe\x76\xfc\xf2\xa7\xfe\x20\x65\x21\x67\x55\x21\xa6\x7e\xa0\xbc\x48\x5e\x1e\xfc\xde\x30\x2d\x87\xd0\x0e\x35\x4e\x1e\xd3\xba\x4c\xdd\x3a\x70\xe7\x35\x7c\xd6\xc2\x4c\x52\xd4\x6a\x5d\x2b\xad\xca\x46\x02\x84\x2a\x64\x0c\x0d\xa0\x2d\x3e\xfd\xe8\xd4\x81\x86\x65\x30\x54\x5f\xe3\x4b\x04\xb0\x8a\x50\xe5\x67\xad\xe6\x9b\x02\x16\x89\xfb\x81\x54\x4c\xf3\x6d\x09\x18\xe2\x87\x04\x23\xbe\x39\x16\x6a\x7c\x47\x08\xaa\xee\xcd\x39\x01\x48\xcf\x4f\x44\x3b\x72\xc9\x99\x3f\x64\x38\xac\x46\xc9\x5f\xfc\x24\xc3\x5a\x9d\x12\x7f\x87\xf7\x90\x76\xec\xa8\x23\x29\xe9\x87\x9c\xa0\x45\x4b\x15\xd7\x71\xc4\x4d\xa3\xb4\x3c\x82\xf4\xc8\x88\x00\xa1\x2a\xbc\x13\xa2\xc7\x50\x25\x84\x29\x96\xf5\x53\xd7\xd3\x56\x8e\xc2\x56\x32\x57\xb8\x95\xb8\xc4\x13\xe2\x2a\x6c\x65\xf8\x78\xd4\x62\x73\xab\x75\x63\x2e\x3a\xf8\xfa\xc4\x5b\xae\xfe\x7a\xe3\xae\xb5\xa1\xdf\x2a\xaf\xa4\x21\x4e\x01\xa1\x64\x98\x85\x50\x50\xb4\x58\x0d\x7a\xff\x16\x6d\x1d\xb2\x7d\x86\x61\x88\x79\xb7\x98\x13\x18\x89\xb1\xcb\xfe\xc4\x5b\xfe\x1e\x89\xe9\x81\xed\x72\x7a\x40\xd7\x95\x56\x0d\x33\xba\xd4\xaa\x49\x5d\x48\xfc\x9e\x02\xc6\xbf\x35\x3d\xcb\x82\x7b\xab\xec\xdd\x57\xd8\x76\xa2\xc4\xae\x53\x4b\x3c\xac\xe1\x5d\x78\xd1\x87\x76\xe5\xac\xe6\x87\x0f\xe2\x8e\xa7\x66\xd1\xfc\xcc\xd0\x4b\xa9\x51\x3c\x32\xf7\x23\xa7\x4f\xc7\x34\xd1\x80\x3e\x39\xb8\xa0\x31\xc2\x9c\xdd\x4f\x70\x7b\x58\x9e\xd1\x5d\x34\x2a\x1b\xba\xab\x83\x53\x9d\x60\xbe\x7e\x0e\x69\x6a\x49\x9a\x20\xe0\xc7\xf8\x6c\xb8\xf8\x16\x2a\x63\xfd\x21\xb3\x62\x7f\xf2\x22\xb5\xa7\x4c\x08\x82\xf4\x22\xc0\x84\x85\x6a\xfa\x6c\x46\x81\xf8\xcd\x76\x35\x50\x80\x9e\x0e\x42\xbe\x36\xe4\x69\x5b\x5c\x27\xda\x21\x19\x41\x95\xb1\xb9\x38\x24\x37\x17\x61\x93\x4a\x58\x91\x74\xb0\xa7\x09\xeb\x8f\x40\xae\x96\xb5\xc2\x67\xcf\xb0\x84\x74\x5c\xa6\xc1\x85\xba\x9e\xd7\x72\xa5\x02\x25\x73\x68\xcb\x91\x22\x77\xa5\xba\x62\x1c\x74\x72\x8e\xce\xe8\xd3\xa9\xf0\xc8\x58\xf0\x0d\x51\xb3\x97\xfe\xd9\x6e\xea\xd4\xac\x47\xe2\x10\x36\x6a\xb6\xcc\x8b\xac\x56\xa5\xa5\x26\x37\x04\x49\xd9\xbc\x56\x8b\x67\xef\xd7\xe2\xb1\x98\x7c\xd7\x3f\x99\x4e\xaf\x46\xa7\xf7\x07\x93\xd0\x80\x22\xcb\x4d\xcf\xb2\x40\x4e\xc3\xdc\x35\xdf\xad\x54\x96\xcb\xa1\xf8\x8e\x2e\x3d\xed\xde\x22\x4d\xa7\xac\xc9\xad\xb5\x8b\x51\x5b\x26\x4d\xe8\x1d\x0a\xc6\x99\x6f\x19\xa8\x19\x65\x4b\x18\xd8\xaa\x7d\xfc\xd7\x46\xd5\xe9\x2f\x66\xf5\x2d\x05\xe1\x36\xe5\xe1\x3e\xda\xcc\x1d\x6a\x49\xaf\x34\x34\xe4\xe3\xef\xea\x5a\xac\xf2\xc5\xb2\x01\xc7\x0a\x99\x97\x42\x8a\x4d\x99\xff\x6b\xa3\x84\xde\xcc\xe7\xf9\x7b\x73\xf5\xcf\x24\xf0\xb7\x4a\x9c\x19\x3c\x3a\x13\x6b\x09\x63\x9f\x5f\x1b\xc6\x97\x34\xf6\x9b\x75\x91\xcf\x64\xe3\xe9\x4a\xb0\x74\x8b\xdd\xa6\x3d\xbb\xc0\x64\xf3\x42\x36\xb3\x25\xce\x67\xbc\x32\x7f\xf7\x2d\xfe\x0c\x5a\x10\xb7\xb5\x9f\xd8\xbf\x4e\x0e\x4f\xc5\x91\xe8\x6d\xd0\x08\xaa\xb7\xb7\x16\xd4\x82\x1d\x94\x95\x9b\x42\xfd\x23\xd7\x4d\x7f\xc7\xf5\x89\xe7\xf2\x08\x3a\xb0\x57\xe7\xa0\xcd\x2d\x05\x36\x7a\xfc\xf9\xcd\x0f\x3c\x96\x59\xc6\x0f\xa4\xe6\x06\x7a\xec\x20\xb3\x16\xa4\x4a\xe8\x56\xa8\x4a\xce\x49\xa6\xf5\xa7\xd1\x31\xe8\xd2\xa0\x2e\x54\x43\x04\x90\x93\x60\x47\x44\x98\x0d\x82\x27\xc4\x38\x49\x43\xa9\x51\x53\xd3\x31\x49\x7c\x56\xae\xe6\xad\xd9\x46\x2c\x96\x75\xfb\xe1\x73\xb0\x9e\x40\xf5\xa6\xd8\x36\x87\xa0\x5a\x6a\x1e\xd6\xb4\xb1\xcc\x44\xad\x16\xb9\x36\xf7\x65\x0d\x0c\x4a\xbd\x29\x85\x55\x57\x76\xce\x4c\x66\x59\x0c\x1d\x2a\xda\x7e\x0d\x30\x6b\xc4\x6e\x44\x88\x28\xb3\x65\x24\xb8\x0d\x22\x23\xf8\x5b\x74\xad\x44\x1e\xf0\xae\x76\x90\x10\x81\x21\xe3\xa7\x73\xc2\xb7\x63\x84\x77\x58\x88\x70\x1b\x91\xf4\x2d\x14\x1f\x0f\xd6\xe1\xd8\x99\x6e\xd0\x5b\x75\x5c\xde\xd1\xe5\x98\x59\x74\x84\x1d\xda\xcb\xad\xdd\xa5\xff\xd2\xd5\xa9\xad\xf1\x28\x35\x53\xd6\x71\x5b\x4b\xc2\xf1\x19\x29\x27\x3e\x3f\xde\xd0\x33\x65\xa4\xa9\x64\x53\x61\x48\xd5\xda\x81\x70\xf3\x5d\xa3\x27\xed\x71\xec\x1b\xa9\xab\x43\xaf\xa4\x37\xe0\xd6\x43\xf6\x39\x91\xce\x30\x22\x2b\x81\xd6\xf0\x42\x5d\x33\x5e\x00\x2e\xf8\x0f\xfe\x7e\x9f\xea\xfb\x93\x80\xfb\x6a\x5d\xf2\xfb\xf3\x60\x5b\xef\x74\x9a\xa9\x9b\xcd\xb8\x51\xba\x41\x9f\xc2\x27\x70\x07\xec\xc7\x21\x1c\xf9\xd3\xb7\x07\xd3\x74\xf7\xf0\x76\x6c\x93\xa1\x03\x0c\x58\x8e\xeb\x33\x60\x4a\x72\x51\xaf\x1d\xe7\xe4\xeb\x72\x96\xe9\xef\xb6\xf4\xd6\x0c\x53\xd0\x12\x81\x81\xbf\x77\xb0\x4b\x9e\x53\x6d\x5d\xdd\xbd\xef\xd2\x1f\xbb\x58\x26\xb2\x0b\x4f\xf0\x3e\x2d\x7d\xeb\x7f\x07\x23\x65\x37\xac\xcd\xbd\xf8\x6d\x1c\x04\xe7\xdf\xd7\xbe\x77\xcf\x37\x3d\x39\x3c\x8d\x59\x04\x5a\x39\xaf\x12\x6a\x5a\x93\xd5\x7b\x65\x65\xfe\xf2\x16\x26\x9f\x6c\x59\xfe\x17\x99\x09\xb7\x67\xc8\xd6\x00\x6d\x80\x63\xd3\xf5\xbe\xc0\xf6\xd4\x63\x86\x21\x22\x23\xb4\x64\xb1\x33\xde\x87\x53\x03\xcd\xc9\xef\xa0\x01\x0f\x51\xcb\x8e\x68\xa9\xb3\x25\x93\x00\x80\x23\xab\x4e\x66\x3a\x6c\x7c\x51\x40\x95\xf4\xe0\x77\x66\x32\x71\x73\x76\x31\x99\x58\x0b\x99\xcc\xe1\x2e\x2d\x51\x6a\x0e\x76\x16\x1f\xc9\x9d\x6e\x67\x2a\x12\x9c\x6a\x40\x7f\xba\xf8\xd4\xdf\x97\xf9\xb8\x7b\xf8\x1b\xb0\x1f\x77\x0f\x7f\x13\x06\xe4\xee\xe1\x67\x62\x41\x24\x9a\x49\x09\x7f\x76\xf3\xec\x73\x72\x24\x60\xaa\x4e\x2d\x06\xbc\xad\xb7\xd6\x8a\x39\x11\x37\xec\x9e\xf3\x6c\x77\x62\x67\x1e\xb1\x31\x01\xce\xa5\x99\x18\xb8\xd1\xa3\x9b\xd9\x32\x30\xb5\x9a\xfb\xcb\x7b\x3a\xbd\xeb\x6f\xec\x85\xe3\x13\xe6\x79\x99\x39\xa7\xc9\xcc\x0e\xc8\xf1\x37\x5d\xa3\x7f\x29\x8b\xa1\xa7\xc5\xcc\xe2\xda\x2b\xd5\x83\x48\x3d\x31\xe3\x73\x29\x0b\x67\xc8\xe5\x26\x3a\x64\x1e\xee\x70\x75\xd1\x33\x7b\xa8\x6c\xb5\x94\x26\x1e\x3d\x40\x16\xf7\x91\xcc\x0f\xa6\x5e\x19\xf8\xd9\xae\x23\x0f\x16\x76\x2b\xa1\xd7\xd3\x94\x6c\x28\x61\xae\x88\x27\xd3\x03\xab\x04\x75\x96\x84\x07\xad\x5b\xcb\xcd\x1f\x96\x6f\xd1\x39\xe5\x27\x77\x29\x8b\xc8\x07\xe8\x35\x82\x13\xb5\xa9\x76\x6a\x40\xa0\xa5\x90\x65\xbe\xc2\x47\x1e\x33\x23\x6e\x53\x8f\x98\x82\x7a\x54\x15\x88\xb7\xbe\xb4\x4f\xa2\x20\xbe\x42\xc5\x70\xe7\xef\x2d\xf1\x53\x0b\xe1\x21\x47\xac\x4e\x7c\xda\x28\xde\x37\x0b\x03\xc3\x3b\xb8\xe3\xcd\x88\x68\xd3\xd9\x90\xa0\xa9\x76\x75\xdb\x5c\x31\xb2\xf4\xb7\xe6\xe1\xbb\x18\xcd\x30\x4a\x03\xb0\x18\x3c\x36\xd5\xbd\x7b\xfc\x9c\xb6\x18\xfc\x7d\x38\x5a\xce\xde\x03\x03\x31\x99\x88\xef\x83\xad\x34\x0b\xb6\x3b\x85\x76\x62\x4e\xd4\x06\x4d\x6b\xb0\x30\xfe\xc1\xee\x29\x2a\x1a\xc8\xd6\x8e\x5d\x4d\xa0\x0d\x01\x5e\xe9\xce\x63\x67\xd7\x08\xcf\x06\x54\xb7\xe5\x2b\x8a\xed\x7a\x0e\xd5\x46\xc0\xfd\x31\x43\xe7\x36\x42\xc5\x95\x69\x22\xe3\x00\x0d\xda\x3d\xef\xdb\x69\x77\x7f\xad\xc9\x23\x78\x03\x93\xb0\x10\x27\x42\x53\x31\x7b\x16\x02\xd5\x0f\x7f\x57\x03\xf0\x75\x5b\xea\xdc\x09\x01\x1e\x9d\xea\x80\x50\xe9\xab\xdc\xb0\xe8\x60\xee\xcf\x1a\x80\xfe\x93\x2d\xf5\xa8\x45\x02\xb7\x51\xee\x04\x58\x3a\x3a\xc6\x8d\xf9\x6c\xbd\x13\x7b\xd0\xee\x2f\x58\x79\x74\x6e\x6d\xef\x9f\xc5\xd8\x87\x77\xb6\xd3\xde\x87\x57\xee\x6f\xb1\xef\xf1\xd6\xfd\x05\x70\x0b\x71\x60\x1d\x08\x26\x63\x39\x6f\x7c\x38\x36\x35\x07\x43\xf1\x16\x45\x93\x07\x8f\xf0\xaf\x3f\x43\x0f\xf8\x23\xf0\x69\x31\xed\x4f\xde\x52\xf8\x1b\x1f\x8a\xe7\x6d\x18\xcc\x09\xff\xd8\x62\x6d\x44\x01\x6e\xc2\x2f\x43\x71\x62\x5a\x9c\x8e\x67\x55\x39\x93\x4d\xdf\x8c\x35\x48\x5b\x1f\x75\xcb\x9f\x29\xab\x95\x4e\x36\x7a\x87\xc5\xc7\x6e\xad\xdf\xc7\x70\xdc\xff\x9f\x78\xf7\x86\x8b\x62\xfb\x73\x77\xc4\x3e\xee\xf3\xc8\x18\x9e\xb0\x8f\xd1\x71\xa5\x9f\x19\x3f\xd7\x9b\x22\xbb\x2f\x3b\xc7\xed\x7a\x74\x4c\x2a\xc8\x7e\xac\xca\xe6\x47\x7a\x3b\xbe\x95\x22\x8a\x37\xdc\xdf\x2d\x60\x5e\x95\xcd\x68\x2e\x67\x2a\xa5\x86\x4a\x7f\xec\x52\x43\x75\x3b\x06\xfc\x1e\xef\x73\x89\x89\x70\x0e\x60\x8b\xf6\xe4\xd3\x65\x70\x0e\xfa\xcf\x26\x82\x87\xd6\x3c\xcc\xa0\x28\x0e\x83\xd6\xd4\xdc\x45\x56\xec\x70\x53\xf4\x1d\x6d\xf5\x53\xa4\x10\x91\xec\x7c\xcb\xc0\x9a\x85\xfc\x15\xb9\x93\x99\xb3\x70\x66\x15\xc4\x7d\x71\x78\x3a\xb0\xbd\x85\x7e\x5d\x4c\xe2\x09\xe2\x4d\xa6\xce\x4a\xe7\x3c\xe2\x07\xfa\x90\xd2\xf0\x8d\xe9\x90\x53\x1f\x82\x9c\xea\x30\x3d\x54\xb2\x87\x87\xf1\xf3\x50\x9f\x58\xc1\x7e\xf7\x61\x8b\x03\xdf\x7d\x94\xbb\xd4\xeb\xff\xcc\xd5\xd5\xba\xaa\x9b\x5b\x53\x0f\xde\x70\x7f\xea\x71\x49\xad\x52\xc4\x23\xf9\xed\xff\xd2\x8e\x98\x76\x70\xc0\x7f\x16\xda\xb1\xdf\xcd\xdc\x79\x64\xf8\x7c\x82\x23\x83\x27\x22\x44\xb0\xcf\x7d\x22\xc8\xea\xc7\xa1\x8e\xe1\xf4\x7c\xf1\x68\xa5\x47\xfe\x13\x1e\x95\xdd\x78\xdb\x75\x54\x8e\xc1\xe4\xeb\xd6\x07\xc5\x37\xc3\xe1\x3a\x3c\xa5\x82\x63\xa2\xa1\xcd\x5e\x07\xc1\xea\x2b\xfe\xdb\x0f\xc2\x65\xe4\xf2\xf4\x79\x0f\x02\x28\x0c\x94\x2e\xf2\xb2\x19\x65\xb9\x36\x53\x1b\x95\xea\x7d\x33\x02\x3b\xdd\xb2\x1a\x6d\xca\x8d\x56\xd9\xe8\x52\xd6\x3a\x79\x6c\xfc\x36\xfc\x96\x17\xae\xb5\xa1\xfd\xe4\x0b\x37\x8a\x58\xb2\xe5\xc2\xb5\x1b\x12\x29\x69\x29\xe2\x08\x5c\xba\xd6\xa1\x39\x75\xf7\xb2\x7a\x9f\xed\xee\xdd\x36\xa5\x60\x2e\x11\x29\xf1\x7b\x14\xdf\xbd\xfa\x85\x5c\x5b\xea\xd1\xfb\x6e\xb6\x94\xb5\x56\x4d\x0f\x45\x8e\x21\x16\x62\x64\x92\xb0\xcc\x48\xfc\x10\x68\xa6\x17\x3f\x08\x93\x45\x22\x3b\xd2\xb7\x24\x4d\x1d\xc7\x98\x91\x26\x54\xec\xc2\xcc\x91\xf4\xec\xa2\x04\x5d\x84\x87\x4c\x4f\xc4\x63\x71\x12\x19\x52\x0e\xd3\x6f\xfb\xb6\x78\x98\x90\x89\x86\x09\x4e\x65\x98\xa0\xd5\xc3\x16\x88\x4e\xe3\x37\xf9\x9f\xd7\x99\x6c\x54\x64\xc6\x48\xba\xe8\x18\xde\xe0\xc1\x97\x6c\x00\x5f\xd8\xae\x45\x1d\x04\xe6\x45\x68\x44\x87\xaa\x69\x4d\xc1\xb9\x35\x98\x1b\x81\x1c\xaa\x85\xcc\xb2\xbc\x5c\x4c\xc0\xe5\xcd\x1c\x65\xd5\xcc\xac\x75\xff\x73\x2d\x0c\x85\x80\xa3\xa7\xc6\x8b\xb1\x38\xbf\x16\x67\xde\x1b\xef\x4c\x54\xb5\x38\x8b\x00\x79\xc6\x6f\x62\xbf\x21\xf6\xc1\x71\x9f\x7b\x60\x32\x81\xea\x9a\x0c\xa2\xea\x6b\xd4\x63\xcf\xc0\xe1\xf3\xfc\x5a\x8c\xd1\x04\x77\xa5\x9a\x65\x85\x9e\x08\x18\x03\x6d\x66\xd7\xda\x2c\x95\xd0\xa0\x1f\x35\x68\x6a\xcd\xaa\xd0\x40\x10\xf4\xa6\x66\xf9\xe7\xd7\xce\xfc\xd7\xf6\xf1\xb2\xce\x17\x79\x29\x0b\x32\xb5\x20\x68\xd9\xaf\x3f\x1b\x50\x34\x95\x50\xa5\xde\xd4\x4a\xcc\xaa\xba\x56\xb3\xc6\x02\xb6\xce\x48\x05\xeb\x96\xe3\xde\x58\x93\xf7\xd6\x0a\x4f\xe7\x4d\x70\x87\xc8\xab\x56\x99\xa5\x76\x27\xa7\xbc\x74\x56\x6d\xca\x06\x4c\xc3\xf7\xbe\xbf\x66\x85\xd4\xba\xc3\x26\xc1\xbf\x60\x6c\xbf\x15\x13\xa6\x8b\xbe\x5b\xf7\x9c\x87\x25\x5d\xfd\xdb\x6a\xae\xec\x36\x56\x71\x84\x5c\x54\xeb\x97\xbc\x28\xe0\x51\x85\x4c\xc9\xe5\xdc\xd4\x63\xee\x47\x60\x09\x4a\x16\xe3\x19\xa0\x05\x04\xb6\x11\x4d\xbe\xda\x6e\x9b\x68\xf7\xae\xeb\xe2\x93\x59\x16\x99\xdc\x05\xf1\x06\xcd\x54\x5f\x76\xf9\x05\xde\xf5\xf0\xe4\xe0\x65\x36\x02\xa4\x30\x79\x1c\xd6\x27\xad\x49\xc2\xd6\x20\xac\x16\x5b\x1c\x60\xc8\xc2\xb0\xce\x3b\xad\xd3\xde\xfd\x61\xb5\xd7\x6d\x97\x83\xc0\x7e\x21\xac\xed\x3f\xa5\x7c\x06\xa3\x49\x42\xf1\x23\xfe\x56\xeb\xc1\xe2\x15\x68\xb6\x1f\xc2\xa9\xa3\x00\xe7\xdc\x28\xd6\x42\x20\x02\x10\x00\xe2\x48\x84\xf0\x78\x67\xe8\x24\x5f\xbe\x5d\xe3\x91\x68\xad\xd6\x2f\xe8\x48\x24\x16\x87\x6b\x38\x12\x91\x0d\x88\x41\x84\x23\x74\xf6\xb5\x45\x0e\xd7\x8f\xa2\xf3\xe0\xfb\x22\x52\x74\xe4\x5d\xfb\x89\x53\x08\xb1\xc9\x07\x30\x01\x4b\xe7\x8d\x39\x7a\x14\xce\xd7\x13\xe6\xfe\x60\xe8\xed\x9f\x61\x26\xde\x85\x6b\x5d\x69\x9d\x83\xa3\xc4\xf9\x06\x3d\xfe\x4c\x8f\x67\xe4\x34\x4c\xa6\xa3\x83\x33\x51\xad\x15\x51\xd2\xac\xaa\x6a\xa4\xc0\xe5\x35\xeb\x16\x68\x2b\x3c\x28\xe2\x7c\x1a\x8c\xb6\xbb\x36\xed\x5c\xbf\x57\x4a\x94\x0a\xc9\xe6\x4a\x5e\xe0\xf3\xa4\xb9\xe8\xc9\xa2\xfb\x2a\x6f\x96\x36\x0c\x8c\xbb\x21\x6c\xb8\x4a\x84\xab\x8b\xf5\xe2\x62\xfc\x93\x31\x52\xcb\x9a\xc9\xf9\x84\xd5\xf2\xaa\x95\xa7\xc1\xbd\xc5\x8e\x32\xcf\x5d\x11\x15\xbd\x7f\xdf\x19\x34\xa1\x87\xbc\x9d\xb2\x96\x97\x38\xe5\xca\x5e\x0c\xe6\x78\xdb\x00\x31\x00\x75\x70\xa3\x27\x0f\x16\xb7\x6a\x1b\xcb\x66\x26\x67\x4b\x65\x1f\x1e\x4d\xa7\x10\x95\x91\x42\xd0\x49\xc3\xb7\x9b\xc9\x81\x17\x3e\xb0\x40\x12\x5b\x64\xde\x1f\x26\xbc\x1c\x6c\x00\x7c\x33\x8b\x60\xf9\xc4\x3b\xf1\xc3\x31\x08\x22\x38\x3d\x33\xb7\x37\xde\x54\x79\xa9\xf3\x4c\x89\x6a\x4e\x1e\x0e\xf6\xda\x54\xb5\xad\x1f\x7b\x00\xb7\xbd\x57\xf9\x40\x30\xa9\x64\xbc\x04\xb2\x2f\x9e\x45\x6c\x60\x18\x92\x75\x6f\xcb\x62\x7b\x0f\x04\x06\xc4\x5c\x1e\xe0\x46\x2e\xef\xc3\x28\x19\xd6\x68\x0a\x3e\xd9\x20\x7e\x47\x61\x8b\xd6\xa5\x3b\xd6\x06\xd5\x55\x1f\x7e\x0c\xc5\x03\x7a\xf0\xdb\xd7\x74\xb9\x6d\x03\x1f\x9b\x2b\x63\xa6\x8b\xc0\xb1\xa8\xd3\xa2\x7d\x25\xd7\xcc\x98\x21\x1a\xec\x07\x0c\xbb\xb0\x6b\x3c\x17\xcd\x81\xbd\xf2\x9b\x92\xd0\x86\x1d\x86\xdb\x94\x49\x70\xf3\xf8\x0e\x06\x1f\x61\x3c\xf6\x08\xd5\x06\x1e\x2b\x09\x4c\xe1\x87\xe2\xf0\xbf\xc7\x2c\x3f\x31\x97\xd4\x3c\x5e\x6f\x4a\x71\x16\x1a\xae\x0f\xce\x9c\x58\x51\x95\x42\x5d\xaa\xfa\x7a\xc7\xfc\x6c\x90\x92\x30\xfe\x0b\x9a\xa6\x71\xb6\xc0\x4b\x2b\x5d\x36\xf4\x8f\x22\xca\x04\x11\x86\x29\xde\xab\x0b\x6b\x39\x37\xe4\x76\x55\x65\xf9\xfc\x1a\x68\x12\xc2\x51\x57\x2b\x75\xb5\x54\xb5\x42\x6b\xcd\x6c\x03\x02\xbb\x14\x45\x55\xad\x39\x9d\x56\x65\x26\x36\x6b\x74\x18\x87\xb5\x2d\x65\x9d\x8d\x9a\x6a\xd4\xd4\x72\x76\x31\xca\xaa\xab\x52\x00\xe5\x50\xf3\xb9\x91\x21\x42\xbf\x1a\xda\x74\xd8\xf3\x07\x83\xf1\xbc\xaa\x9f\xc9\xd9\xb2\x9f\x74\x01\xb0\x72\x92\x4e\x43\xde\xf2\x7b\x2e\xda\xb3\x38\x33\xe8\x7f\x36\x14\x67\x96\xe6\x9c\x01\x67\x78\xe6\xef\xd1\x33\xb1\x92\xeb\x2d\x6e\x12\x8e\x89\x0c\x90\x9f\x63\x78\xcc\x9c\x7b\xdc\xa6\x07\xfd\xd0\x17\x9c\xc7\xa1\xae\xe6\x22\x7e\x76\x6e\xf7\x64\x89\x29\xeb\xce\xab\x15\xa0\x46\x9e\x0d\x02\x0a\xde\x9a\xc1\x38\xcf\x42\xcb\xdb\xd4\x4c\x42\x2b\x6b\x1b\xfd\x24\x65\x2e\x15\x7e\xc0\xd1\x6c\x60\x96\x68\xb8\xc4\x36\xfd\xec\x28\xc4\xce\x63\xea\x89\x09\x07\x7f\x4c\x62\xec\xc4\x38\x8d\x09\xf6\xe1\xd6\x1b\x90\xec\xc9\xed\xc3\xa3\x54\xb5\x16\xe8\x6f\x09\xf0\x8e\xd1\x53\x50\xde\x06\x5b\x10\xfa\x51\x5e\xb1\xe0\xa2\x60\xbf\x70\x3c\x25\xe8\x46\x32\xd9\xc8\x2d\x40\xc7\x3e\x38\xc0\xa1\x24\xa4\x3c\x91\xfb\x9b\xe9\xf2\x51\x8b\x23\x0f\x00\x4f\x06\x4f\xfd\xd8\xc8\x41\xfc\xf9\x31\x04\x28\xf5\x77\xee\x11\xb3\x54\x78\x70\x3a\x48\x5b\x04\xba\x88\xeb\xb7\xed\x0f\x28\xe2\xdd\x1f\x8b\xea\xea\xc7\xfc\xfd\x0b\xc5\x8c\x4c\x64\x23\x3b\xfa\x3b\xec\xec\xef\xb0\xbb\x3f\x2f\x96\xa4\xba\x7c\xd8\xd9\xe5\xc3\x2e\x33\xf9\x2d\x13\xfc\xa8\x05\x6f\x9f\xe0\xd6\x35\x47\x7b\x90\xf2\xde\xb5\xdc\x75\x4c\x38\x10\x9b\x5e\x96\x74\xc5\x3b\xfe\x64\x08\xeb\x6b\x3f\xcc\x47\x40\xd8\xa9\xcd\xe5\xac\x5a\x5a\x9b\x9b\x9a\x06\xd4\x23\x15\x6e\xc7\x4c\x5a\x01\x3a\xf9\xc9\x7b\xf6\x5e\xcd\x36\x8d\xe5\xd9\xf5\x90\x0e\x0d\xde\x44\x98\xa6\x67\xc7\x89\x7b\x59\x26\x0e\x9d\x99\x1f\xda\xda\x85\x53\xfa\x78\x73\xf0\x40\x2f\x98\x62\xbe\x03\x71\xfb\xe1\x16\x5d\x83\xe3\x3d\xc2\x16\x9c\xfb\xd8\xa5\x72\x78\x48\x46\x34\x2c\x17\x01\x09\x1b\x4e\xb6\x10\x45\x7e\xa1\xbc\x22\x31\xf6\xfd\x8c\x49\xfb\xd8\xc9\x2a\x96\xcc\x5a\xf1\x90\xdb\x87\xb8\x8a\x04\xfb\x7e\xc7\x86\x07\x11\x0e\xc2\xd8\x5a\xcc\xbf\x9e\xdd\xca\xee\x93\x7d\xa5\x84\x49\xf2\xf7\x4a\xcf\xd8\xfc\xcc\x87\x66\x06\x95\x6c\x1e\xc4\xbc\xd5\xaa\xb8\x36\xac\x23\x92\xef\x33\xe8\xee\x0c\x6c\x38\xad\x4b\x33\x45\x26\x5f\x6d\x1a\x08\xf0\x4e\xbc\x9a\x1d\x43\x2c\xab\xea\x62\x9c\xb2\xa0\xb7\x8c\xe6\xbd\x7b\x34\x6d\xf7\xc7\x9d\xc7\xad\x15\x84\x92\x21\x63\x2a\xeb\x4d\x09\x77\x8e\x45\x09\x3b\xab\x70\xb6\x45\xae\x80\x01\xa6\x68\xc0\x81\x87\x6a\x00\x98\xb6\xc1\xa9\x9f\xc3\xd0\x4f\xca\x85\x4f\x02\x1d\x2b\x2e\x14\xd4\xd3\x59\xe6\x4e\x5c\x8b\x6a\xd8\x18\x30\xdd\x4b\xb3\x71\x05\xdf\x37\xff\xe4\xe6\xc9\xbe\x6e\x14\x13\x86\x38\xf1\x5a\x5d\xfe\x33\x61\xce\x1c\x41\xca\xb0\xdb\x67\x4c\x0b\x7f\xe6\x98\xf0\xb3\xda\x0d\x70\x06\xf1\x15\x21\xad\x10\xa2\x67\x7a\x43\x21\xb6\x12\x36\x83\xe0\x90\x83\x33\x0c\x7c\x5b\x56\x8d\xa5\x3e\x66\x53\x9e\x1e\x1f\xbf\x7c\xc1\x18\x2d\xb6\x7f\x19\xc5\x66\x9a\x55\xab\xb5\xac\x73\x0d\x8f\x70\x42\x02\x11\xd9\x94\x66\xce\x2a\x8b\x46\x98\xc9\xa2\xd0\x43\xa1\xf3\x72\xa6\x0c\xf3\xbf\x74\x9a\x8e\x22\x73\x7b\x8d\xea\x6f\x61\x64\x07\xb6\x07\x74\x25\x38\xc0\x42\x4e\x19\x0b\xb6\x28\x2a\xb3\xe6\x01\x9e\xd6\x7d\x34\x9b\x75\x4d\x87\x89\x27\x8e\x74\x44\x65\x96\xaa\xc3\xa3\x44\x0b\x29\xde\x06\x58\xd1\x8e\x34\xbd\x0d\x19\xde\xa6\xb0\xe1\x6d\x1b\x1d\xde\xfe\x5f\x7c\x48\xe2\x03\x07\x2e\x8b\x4d\x1d\xa2\xc9\xdb\x3d\xf1\xe4\x2d\x21\xca\xa6\x28\xf6\xc7\x91\xee\x4b\x9d\x52\x0c\xd0\x95\x64\x40\xf1\xf9\xbd\xc9\xa3\x47\x6b\xf1\x5b\x59\x9c\x62\xab\x4f\xe6\x9e\x62\xf7\x7f\xce\x37\x3d\xe2\x95\x66\xa0\xbe\x40\x7f\x80\x96\xd7\x94\xc1\xb7\x9f\x2a\x7f\x7f\xd0\x2b\x4c\x49\x21\x4c\x53\x51\x7d\x66\x78\x4b\xdd\x31\xcb\xea\xc8\x80\x0b\xd1\x9e\x93\x2f\xea\x54\x38\xd3\x2d\x8e\x27\x7a\x60\x8f\x1e\xc9\x2d\xef\xe0\x9e\xc8\x59\x0c\x49\x7c\x27\xba\x95\x75\x8a\xd7\xb3\x6f\x0d\xda\xb2\xed\x31\x2e\x53\xeb\xa2\xba\x56\x69\xdf\x61\x1b\xba\xf3\x96\x8e\xc5\x5b\x43\x43\x7f\xfc\xeb\xdf\xbf\x36\xaa\xc3\x5a\x86\xcd\xb3\x65\x0e\xc3\x16\xd8\xfa\xe6\xe7\x12\x3e\x75\xf2\x79\x84\x5f\x52\x4f\x43\x49\xdb\x6a\x7a\xf2\x31\x8d\x5a\xaf\x43\x41\xe1\xf6\x07\xa5\xce\xf7\x1a\x42\xbb\x41\xd2\x8f\xf1\x75\x3b\x40\x60\xbc\x31\x86\x95\x8a\xab\x83\xe4\xb2\xc5\x9d\x35\x76\xd9\xe5\x10\xf9\x9f\x11\xf0\xe5\x7b\x40\x04\x1e\x8b\xac\xa9\xc8\x13\x0d\x43\x7c\xd5\x6a\xfb\x73\xab\x3f\x52\x9d\x0f\xae\x38\x04\x7f\x73\x85\x92\x7e\x20\x43\x05\x68\x99\x8a\x35\x1d\x45\x08\x6e\x05\x0c\x1f\xdb\x5e\x3b\xf0\x1c\x52\x9b\xa2\xa9\x40\x86\x81\xcd\x12\xf9\x85\xae\x94\x98\xc9\xb2\xd7\xe0\x4b\x4f\xa9\x15\x99\xf2\x7d\xff\xea\xb9\x99\x00\x32\xe6\x2e\x8c\x25\xba\x05\xda\x31\x02\xf6\xfe\x4e\x70\x94\x06\xfc\x64\xf5\xa3\x77\x88\xa6\x33\xe4\x23\x70\x4d\x6c\x6b\x20\xc1\x59\x72\x63\xe2\x0b\x30\x53\x31\xcc\xb1\x24\x84\xf9\x9d\x4f\x07\xba\xed\x76\x0f\xe2\xb2\x63\xb9\xdf\x67\x99\xd5\x1b\x13\x0a\xce\x36\x35\x3c\xa6\x23\xa2\xb3\x98\xa4\x68\x3d\x80\xdb\x63\xdb\xc8\x42\x57\x64\x45\x00\x36\x24\xae\x8d\x67\xdd\x9c\x35\x41\xca\x92\xe0\xd6\xd1\x79\x52\xe9\x09\xf1\x6c\x58\xb2\xeb\x69\x30\xe0\xdd\x2b\x92\xcd\x66\xd2\x26\x3b\x44\xb6\x86\x98\x40\x23\x80\x97\x68\x8c\x62\x00\x00\x11\x3e\x6b\x62\xe5\x6a\x88\xaa\x05\xdf\x86\xfc\x61\x16\x47\x92\x45\x21\xce\xec\x84\x2d\x43\xe8\x3a\xbd\x5a\xe6\xb3\x25\xbd\xee\x32\x00\x21\x0c\xce\x3c\x51\x21\x56\xb2\x1d\x91\xdb\x6d\xa7\xb9\xfc\x61\xc4\x41\x78\xbd\x38\xfb\x96\x5d\x91\x89\x3e\xf2\xf9\x70\xff\xc0\x44\x9d\xe4\x24\x70\x44\x8e\xcf\x66\x9c\x93\x11\x43\xef\x13\x7a\xc1\x7a\xb2\xbc\x56\xb3\xa6\xb8\xa6\x18\xfc\x35\xc5\xd2\x0e\x72\x8f\x5c\xaa\x5a\x1b\x2c\xb9\xb6\x68\x6a\x13\x02\xb8\x64\x28\xd8\xa3\x02\xf3\x2d\xd1\x54\x0b\x65\xba\x12\x57\x4b\x55\x0a\x4b\x24\x21\xa7\x4a\x51\x30\x62\x82\x53\x26\xb0\xc3\x3f\xe3\xf5\x46\x2f\x69\xc9\xa1\x66\xce\x3d\xe8\x58\xba\x15\x01\x26\x00\x0e\x75\x19\x30\xf3\xfe\x83\x7b\x06\x8a\x7a\x8c\x83\x34\xb6\x78\x0d\xa7\xb0\xdc\xc2\xe9\xb7\x9f\x60\xfd\x03\x3e\x92\x5f\x99\x65\x9c\xe7\x47\x2a\xa3\x32\x22\xc0\x65\x95\x29\x7f\x6a\x7e\x51\x08\xe1\x5a\xe1\x96\xe2\xf9\xc7\xa0\xe6\x46\x26\xc2\xb8\x72\xa6\x86\x05\x72\x13\x3f\xd0\x77\xb0\x3c\x3b\x1e\x8a\x9f\x33\x0c\xc9\x4b\x22\x5a\xfe\x3e\xec\x24\x2d\xec\x5e\x09\x9e\x3f\xc3\x5d\x6b\x5d\x8e\x89\x20\xc6\x21\x2d\x4e\xec\xbb\xe8\x92\xab\xbc\x91\x96\x03\x75\x40\x5c\xad\x40\xe0\xa9\xea\xad\x6d\xb3\x3a\x28\xaa\x4e\x90\x54\xdd\xc9\x8e\x43\x64\x3f\x48\x22\x44\x74\x66\x5f\x96\x29\xa6\x45\x89\xd0\x6a\x2e\x8e\x49\x4b\xeb\xe8\xf3\xb5\xc2\xd8\xfc\xc4\xa5\xa5\x17\xa8\xb6\xdd\x98\xc0\x5a\x30\x6e\x35\x2a\xf8\x2d\xc2\xe5\x05\x26\x06\xd1\x2c\x5c\x5c\xe9\x33\xd0\x7d\x1c\x99\x95\x43\x35\x77\x69\xe2\x5b\x58\xe6\x93\xab\xfe\xf0\xf2\xc5\x36\xbe\xc3\xd4\x8e\x57\xe1\x4b\xc3\x85\xf0\x3d\xc2\xb7\x29\x97\xdb\xd7\x25\xf8\x7f\x22\x28\x5c\x4e\xe7\x72\x53\x57\x48\xdb\xc6\x1f\x1a\x72\xa3\x89\xee\xeb\xc2\x5c\x74\xa8\xa0\xde\x2b\x17\x45\xb0\x1d\x9e\x2f\x72\x4b\x8e\xba\xea\x42\x21\x97\x7a\xff\x7f\x68\xb4\xc3\x1f\x90\xb8\xae\x37\xb5\x62\x3a\x18\xa4\xcf\x7e\x75\xdb\x50\x03\xda\x07\x68\x81\xec\xf0\x16\x4a\x17\x03\x35\xe0\x9f\x63\xd2\xed\x20\xb8\x93\xd7\xfc\xfd\x5e\x69\xf1\xb1\x05\x40\xec\x10\xae\xcf\x0a\x03\x56\x69\x40\x9d\x5a\x67\x6f\x5f\x6d\xe8\x1f\xff\x3c\xe2\xee\xb5\x48\x2d\xa4\xd0\x79\xb9\x28\xd4\xae\xa7\xfe\x8f\x7f\x03\x63\x68\xb4\xbd\xc1\x7e\xbb\xf3\x7b\x28\xfd\xda\x07\x20\x1d\x59\x28\xf6\xd9\x70\xb7\x7b\xa4\x90\x22\xe6\xfe\xb5\x35\x7b\xbf\x8d\x56\x2a\x6a\xdb\x0f\xe1\xea\x5f\xf9\x3c\x13\x5b\x36\xaa\x2e\x65\x71\x24\x4e\x4e\x9d\xe2\x43\xbd\xf7\x85\x44\x61\xda\x36\x78\x71\xec\xe0\x94\xaf\x7f\x34\x9d\x2d\xee\xfe\x4f\x41\xf2\xe0\xde\x22\x67\xa0\x07\xd7\x64\xfd\x8d\x57\x63\x69\xb5\xcf\xe6\x6e\x81\x32\x34\xe7\x97\xf6\x51\x2c\x0e\x0e\xc0\x3b\xe4\x9b\xd9\x91\x6f\xbd\x8d\x8f\xa9\xa4\xc8\x01\x10\x82\x21\x3a\x32\x25\xb7\x84\x99\x54\xdb\x93\xfc\x74\x9b\x6c\xd3\x95\xf9\x3d\x7d\x03\x70\x7f\x98\x14\x98\x99\xc4\x43\x70\xee\x3e\x0c\x41\xed\x10\x88\x2d\xc1\xa9\x15\x3e\x86\xf9\xcb\x45\x31\xe6\xf7\x0c\x95\xb2\xcf\x06\xb0\x69\x74\xec\xc0\x96\x16\x06\xee\x3c\x02\x4e\xca\xf4\xa1\x66\x6f\x8b\x28\x47\x86\xef\x9a\x35\x7b\xd2\x4c\xf4\x15\x43\x82\x5f\x30\xdb\x37\xe8\x98\x9e\x8c\xf6\xdc\xa1\x63\x7a\xad\xfe\x88\x80\x3f\xb7\x80\xf3\x71\xe8\xd3\x1e\x00\x3a\xb2\x4e\x21\xb6\xc6\x81\x27\x71\x02\x78\xa7\x76\x2f\xb6\xc0\x32\x29\x82\x44\x40\x43\xb7\xa4\xbd\x81\x46\x48\x98\x00\x1a\xaa\xf7\x3f\x1a\x4e\xa0\x67\xba\x15\x42\x42\x13\x03\x85\xbd\xd7\x8c\x57\xf3\x1e\xab\xfd\xb9\xc5\x64\xec\x63\xb5\x70\x9b\x65\x63\x6f\x7b\x2e\x18\x2b\x9b\xa5\x6e\xb3\x99\xd8\xbd\x7e\x16\x95\x69\x0f\x20\xb0\xda\xd1\x75\xd0\xce\x03\xd8\x11\xde\x69\x6d\x4f\x71\x3a\x55\xe1\x5e\x17\x86\x1f\xac\x03\x5a\xad\x41\xb6\x74\x61\x60\x18\xd6\x0f\xe6\xde\x71\x43\x84\x2d\x76\x98\xe0\x22\xe3\xb0\x85\xe1\xd3\x21\xab\xa7\x55\xbf\x54\x57\xaf\xc8\x97\xf2\x13\xec\x9c\x98\x4a\x09\xb4\x42\x47\xa2\x67\x99\x93\x9e\xfd\x74\x93\x32\xe9\x89\x8c\xa9\xe9\xe7\x89\xbd\x63\xa0\x33\x7c\xc0\xff\xde\x0c\xaf\x31\x37\x14\xe4\xb0\x33\x32\x22\x79\x6b\x34\x57\xf9\x4c\x0d\x85\x6c\x44\xa1\xa4\x6e\xc4\xb9\x34\xd4\x1b\xac\x86\xe7\x81\x76\xd3\xea\x12\xad\xe8\xe3\x56\x3f\x80\x27\xef\xd1\x61\x4b\xc8\x8b\x27\x6d\x7b\x00\xfd\x80\x6f\xde\xc1\x77\x9d\xb8\x40\x4d\x7c\x79\x63\x0b\x9b\x61\xb0\xea\xb1\x65\xf2\x06\xe3\x5a\x65\x9b\x99\x62\x19\x78\x6d\x9f\xd6\x1a\x7b\x90\x30\xce\xb3\x8a\x91\x56\x8d\xd0\xeb\xc6\x76\x15\x29\x02\x6d\x31\x6a\x48\x70\x7d\xd8\x53\xf8\xde\x24\x12\xf6\x81\xe2\x73\xc4\x68\xfc\x19\xf3\x30\x00\x71\xe8\x08\xcb\x98\x8e\xc3\x18\x6a\x1b\xa7\x91\xbe\x91\x96\x65\xf7\x91\x3d\x3f\x86\xae\xd0\x8c\xaf\x0e\xf8\x8e\xf4\x17\x8a\xd8\x97\xfc\x84\xaf\x9a\xc1\xa7\x20\x56\x5d\xf0\x05\xe9\x2b\xe3\xe0\x93\x42\x48\xc4\xa0\x33\x49\xc4\x86\x94\x84\x51\x99\x13\xae\x91\xa1\xd0\x07\xb7\x59\xaa\x15\xe8\x9f\x65\x23\xaa\xd2\x9c\x19\x39\x73\x71\x25\xe1\x65\x1d\x9a\x7e\x94\x1c\x13\x36\x8d\xc4\x98\xe0\x1c\x74\xca\x1e\x61\x17\x5b\x44\x0f\x46\xe7\x92\x39\xeb\xb6\xb9\x7b\x86\xbc\x01\x86\xba\x74\x93\x0b\x26\x9b\x70\x55\x0a\x4d\x3c\xb8\xfb\x11\x86\xbc\xa4\x99\x5b\x9a\x42\x63\x59\x7a\xe2\xc8\x48\xa2\x09\x19\xfe\x1a\xe2\xfa\x40\x7c\xf8\x40\x23\x7e\xcb\xcd\x3c\x02\x82\x64\x61\x64\xce\x66\x94\xc6\x30\xa4\x56\x86\x60\xfe\x98\x97\x99\xb9\x13\x2a\x0d\xb6\x9b\x4c\x01\x9e\xba\xfb\xa2\x39\xc5\x17\x1d\x9f\xf6\x49\x7e\x1a\x42\x43\x7c\x2b\xe2\xb9\xb2\xd9\x5a\xc7\x2c\x70\xca\x8a\x66\x2d\xe2\x7c\x56\x5b\x0c\x83\x5e\x2b\xad\x1a\x7a\xa8\xa6\xae\x3b\x2f\xba\x1a\xea\x06\xee\x23\x9a\x67\x82\xea\xc6\xcf\xc4\x73\x6c\x27\xbe\xed\xe9\xb0\xd5\x46\x3e\x8b\x59\x21\xb7\x10\x22\x50\xea\x46\x89\x9c\xdc\xd2\x4e\x59\x56\x97\x22\xdd\xf3\x87\xca\x10\xee\x9f\x4b\xb3\xf2\xb6\x51\xab\x75\xa8\xf3\xaa\x21\x20\x2d\x7c\x60\xbc\x82\x78\x22\x7e\xbd\x11\x47\x58\xce\xec\x92\xd9\x73\xb1\x69\xe9\xd4\xb0\xac\x0a\x33\x22\x41\x5d\xc2\x2f\x79\xb3\xac\x36\x36\xe7\x62\xae\x28\x46\xa4\x69\x3f\x14\x27\xd3\x03\xdb\xc7\xf4\xe0\x74\x10\x78\x2a\xa3\x51\x14\x8b\x4e\xb2\x9b\xf5\xeb\x56\x0f\x04\x26\x62\xec\x40\x3c\x0a\x1f\xef\xdc\x02\xef\x78\xf3\xba\x30\xd3\x2f\xd0\x87\xc4\x6b\xa5\x68\x9b\x59\xdd\x84\x7d\xcf\xb4\x1e\xc0\xa2\x5a\x16\x57\x54\x88\x03\x75\x85\xcd\x8e\x19\x4c\x6b\x9f\x95\xce\xc0\x17\x10\xe7\x56\x1a\x3e\xc0\x43\xc8\xc1\x87\xc5\x3c\x63\xdb\x53\x7a\xca\x5f\xe6\x8b\xa5\xd2\x56\xa1\x5d\x6e\x56\xe7\x2e\x4b\xba\x4b\xdd\xb6\x77\xce\xb6\x34\xe5\x7c\x22\x1e\xb8\xd7\x02\xbb\x25\xc9\xea\x23\x71\x78\x9a\x24\xe4\x1d\x89\xdf\x82\xd5\x27\x2e\xdd\x37\xcb\x5c\xa3\x01\xfd\xa2\xa8\xce\x65\x61\x8f\x99\x1b\x57\xbc\x2c\x8b\x6b\xf1\x43\xb5\x72\x4e\xfb\xf8\x2a\x99\xf1\x13\x09\x8f\x93\xe2\x0b\xf1\x12\x0d\xba\xc1\x06\xa0\x86\xab\x5a\x2f\xab\x4d\x91\x81\x65\x8a\x2c\x85\x61\x8e\xa2\xbb\xda\x79\x5f\xdb\x67\xbd\x66\xa9\xa0\x2f\xde\xbb\xb7\x75\xb9\xae\x36\xa1\x87\x37\xc4\xc6\x68\x2a\x6b\x9c\x80\x4a\x70\x1e\xc8\x03\x3a\x53\x68\x2f\xf4\xaf\x0d\xee\xa3\xb7\x58\x80\xdc\xd2\x4a\x5e\xd8\xe1\xe4\xac\xae\xb4\xb6\x55\xf5\x38\xc8\x28\x42\x75\xd0\x3e\x2a\x66\x1c\x08\xac\x51\x04\x24\x68\x3d\x99\x88\x65\xd3\xac\xf5\xd1\x64\xb2\xc8\x9b\xe5\xe6\x7c\x3c\xab\x56\x93\x7f\x17\x55\x5e\x57\xb3\x8b\xc9\xac\xaa\xd5\xe8\x9d\x9e\xe4\x5a\x6f\x94\x9e\x7c\xf3\xf5\x7f\xc0\x5f\xb3\x6a\xb5\x52\x65\x33\x3a\x3c\xfc\xc3\x1f\xff\xf0\xa7\x07\x0f\xbf\xc1\x49\xe0\x3e\xbd\xc1\xa0\xab\xf4\x02\x75\x95\x97\x59\x75\x65\x8e\x6a\xcf\x3d\x65\x43\x4c\x68\xfc\x30\x7e\x21\x01\xd3\x04\xfc\xfb\xc4\x56\x3f\xb2\xcd\xb5\x2a\xe6\x89\xc6\xa6\x38\x6e\x0a\x55\x8f\xc4\x8f\x84\xe9\xfd\x1e\xc3\xed\xde\x80\xe9\x96\x81\xf0\xf5\x1e\xce\x0f\xe5\x6c\xf6\xf5\xec\x4b\xf9\xf5\x83\xaf\xcf\x1f\x7c\xf3\x50\xfd\x41\xa9\xf9\x1f\xd4\x1f\xbe\xfa\xea\xf0\xab\xf9\xfc\xdc\x9c\x7c\x43\x11\xfc\xa2\x4e\x4a\x7d\xea\x63\xfe\xc7\xe5\x86\xd8\x4d\x26\xe2\x2f\x9b\x32\x2b\x14\x24\x07\xb6\x59\xdb\x56\x9b\xa2\xc9\xd7\x85\x12\x7f\x3b\x3e\xb6\x66\x0d\xda\x30\x8c\x2e\x38\x0b\x3c\xf4\x06\xe6\x2a\x79\xa6\xca\x26\x9f\x5f\xc3\x0e\x71\xe3\x1d\x6b\x16\x01\xef\x2a\xef\x36\xba\xb1\xb8\x5c\x37\x74\xfe\x01\x5d\xc9\xb3\xde\x50\x63\x6b\x63\x48\x61\x1b\x8c\xa0\x50\xa2\x9f\x2b\xa0\xbe\x20\xd7\xff\xb1\xf8\xbe\xd0\x06\xa3\xcd\x99\x5b\x55\xb5\x32\x2c\xee\xa6\x96\x8d\xf2\x28\x0e\x4f\xff\x33\x59\x8a\x95\x2c\x37\xb2\x28\xae\x45\xad\x94\x11\xfd\x65\xa3\xdc\x4c\x57\x55\x66\xad\x5d\x0d\xb4\xf1\x27\xc4\xc8\x08\x41\x06\xb1\x06\xa8\x8e\x7c\x6f\x9f\xb2\x0f\xd5\xe1\x83\x80\x0c\xd8\x17\x55\xe9\x69\x18\x9a\xe0\x2c\x5c\xd0\x2f\x0a\xa1\x00\x0b\xa5\x18\x0f\x4e\x48\xa5\xd5\xe1\x71\xc1\xf0\x0c\xe6\x88\x50\xe3\xaa\x66\x0f\x7b\x9a\x4e\x6a\x86\x4a\x03\xdb\xd4\x7c\x00\x0e\x07\x73\xfd\x7e\x11\xf8\x89\x78\xb6\x89\xb7\x30\x60\x3f\x3e\x7e\x8d\x4e\x3e\xec\x7c\x73\xc1\x00\xc7\xfa\x4f\x1e\x43\xc4\x4d\x25\xfe\x16\x3d\xb7\xec\xd0\x1d\x30\xcd\xc1\x4d\x2c\x19\x98\x69\x3e\x8d\x22\xe6\xd8\x37\x5e\x2f\x0f\x27\x54\xa3\xbc\xe1\xfd\xc7\xe2\xb0\xe5\x82\x6a\x3f\x7e\xeb\x76\xb3\xad\xca\xf9\x78\xf9\xf5\x7f\x57\x1b\xca\x85\x08\xf6\xf8\x52\xac\xd4\xaa\xaa\xaf\x81\x40\x8e\x31\xdf\x12\xdb\x2e\xd9\x60\xe0\xb0\x60\xd2\x22\x2d\xe2\x06\x1a\x93\x77\x5a\xc3\x4e\x04\x96\xeb\xeb\x5a\xcd\xf3\xf7\x21\x9b\x03\xd6\xd9\x51\xec\x72\x57\x36\x0e\xe2\xff\xfc\x24\x57\xea\x15\x74\x11\x70\x22\xae\xd7\xad\x4d\xba\xf8\x94\xb0\xd1\x3b\x0d\x79\x35\xee\x58\xda\xc4\x86\xb1\x2b\x22\x7e\x25\xd5\xae\x3b\x89\x36\x37\xe9\x5d\xe5\x65\x3e\xbf\x0e\xb5\xdc\x3f\x6b\xc3\xc5\x4e\x0f\x66\xd3\x03\x47\x23\xa4\x25\x43\x68\x79\x74\xae\x98\x41\xcb\x6c\x09\xfc\xb9\x21\x3a\xee\xac\x8e\x23\x56\x84\x54\x13\x7d\x82\xcf\x87\x0f\xa2\x37\xeb\x0d\xc4\x7d\x4f\x48\xee\xd3\xa2\x82\xfd\xed\xd4\xf0\x41\x2f\x58\xd5\x85\x95\xc3\x94\x47\xac\xc3\x3e\xf6\xf8\xc4\x7d\xc3\xdf\x47\xa2\x07\x43\xdb\xd2\x78\xbc\x9b\x47\x36\xb0\x97\xcb\x9f\x0a\x71\x4e\xcc\x8a\x31\x5e\x9d\x33\xf3\xf0\x16\x3d\x9c\x92\x71\xfb\x34\x47\x19\x0c\x6a\xe7\xff\x0e\x84\x1d\x2a\xea\xcf\xcb\x38\xd9\x44\xfa\x04\x87\x66\xa9\x94\x28\xc2\xc6\x58\x9c\x97\xb1\xc9\xac\xef\xe9\x26\x4a\xa6\x81\xf6\x36\xf8\x6c\xb1\xa6\x8c\xec\x58\x9d\x27\xcf\xe0\xdc\xa5\xcd\xdb\x8e\x6a\xe4\x99\x8b\x73\xe0\xc3\xf6\x1b\xee\x87\xa6\x37\x99\x88\x63\xcc\x39\x67\x04\xa7\x37\xd6\x14\xc6\xb2\xe2\xf0\x98\x25\x9b\xa6\xce\xcf\x37\x14\xd5\xe7\x85\x5c\xb7\xd9\xd7\xce\xaa\x60\xda\x02\x43\x77\x33\xe8\xde\xf5\x69\xdc\x9a\xbe\x6f\x7a\x23\x66\x90\x22\xac\xaf\x6a\x6f\xac\x32\x99\x88\xe7\xcf\xe0\xae\x6f\x96\x75\x75\x65\xa6\xed\x80\x94\x9b\x7b\x09\x94\x6e\xe3\x60\x44\x9b\xaa\x6f\x5a\xde\x30\x05\x53\x02\xcc\x49\x00\xf3\xc4\xf8\x01\x6c\x87\x41\x3a\x10\x06\x62\x92\xd2\xd2\x8a\xfa\xee\x3c\xee\xbf\x32\xb9\xc7\xe9\xdf\xa3\x74\xee\x43\x78\xc1\x1b\x44\xe2\x19\xc6\x84\xe4\x21\x28\x41\x34\x40\x33\xa4\x3b\xce\x48\xbc\x17\xca\x65\xc1\x3e\xf0\x55\xe2\xe2\xec\x2c\x86\xa2\xc7\x7a\x68\xa9\x3a\xb8\xcd\x8a\x27\x67\x49\x34\xe3\x20\xd8\x07\xd5\xba\x71\x4c\x13\x8e\xf9\x59\x76\xb9\x7a\xef\xbb\xca\xf0\xcd\xe7\x73\x61\x9e\x37\xe2\x0a\x53\xe8\x10\xcc\x6e\x38\xcf\x45\xba\x99\x3d\x30\x12\xf5\x30\x69\xa4\xfc\xfc\x07\xbe\x7b\x17\xd0\x42\x2c\x3c\xec\x5b\xc1\x1f\x4d\x3c\xa2\x12\x1d\x70\xff\x64\x46\xe6\x87\x97\x2f\x9e\xbd\x9f\x29\xb8\x54\xbd\x22\x5e\xd5\xf5\x78\xa5\xb4\x96\x0b\x96\x26\xe9\x4a\x6a\xdc\xdd\x72\x2c\xde\xd4\xb9\xe5\x38\x9d\xef\x27\x6c\xb6\xeb\x02\x3c\x3e\xbb\x75\xf9\x6d\x7a\x83\xe2\xb0\x0f\xfb\x98\xa2\x35\x2e\xc9\xbd\xdb\xd6\x30\xa1\x3f\x40\xc5\x81\x35\x9d\xc9\x1f\x52\xc0\xa3\xdb\xaa\x47\x43\xf0\xfe\xc0\x94\xf8\x66\x99\x46\xd6\xd5\x1b\x50\xa9\xcf\x37\x85\x0d\x33\x49\x5a\x8e\xe2\x5a\x5c\x55\xf5\x05\x7a\x61\x2f\xeb\x6a\xa5\x44\x55\x16\xd7\xe3\x00\x89\xd3\x93\x78\x1c\x4d\x23\x00\xc2\x7f\x82\x10\xbf\x54\xe2\x6c\xa9\x64\x76\xe6\xfc\x50\x36\xeb\xaa\xe4\x4c\x0b\xe8\xfa\xca\x0c\x23\x92\x69\xa7\x51\xf8\x45\x09\xa9\xf5\x66\x05\x82\x96\x63\x76\x0c\x03\x16\xe7\x95\x5a\xa8\xe6\xaf\x4a\x1a\x2e\xcc\xdd\xe3\xf1\x4d\x4d\xab\xc8\xaa\x19\x58\xa5\x61\xea\x57\x07\xfd\x9e\x99\x20\x90\x3b\x78\xc1\xb0\x0b\x40\x25\x74\xa0\x85\x24\x7b\x3b\x32\x53\x44\xfd\x50\x2d\x9a\xa5\x24\x7f\x76\xcc\x0e\x5e\x95\xec\xfa\x0e\x52\x9c\xfd\x15\x1a\xe0\x9b\xbf\x7f\x16\x0b\xc5\x8f\x5b\x6b\xb8\x03\x2b\x97\x84\x5a\xcf\x33\xb4\xdc\x64\x34\xf1\x32\x20\xbe\x8d\x42\x9b\x25\xaa\x69\x55\x9b\x3f\x5f\x55\x79\x89\x08\x90\xfe\xd4\x66\x22\xb8\x2f\xea\x4d\x9b\x4a\x92\x35\xd1\xcd\x1e\xe0\x37\x90\x0e\x34\x73\xc9\xe3\xe5\xc0\xad\x9b\x5b\xc0\x3b\xa1\x75\x33\x3b\xf0\x2d\xee\xc4\x68\xf4\x99\x81\xfe\x7b\x43\x53\x90\x6a\x09\x01\x39\x3d\x78\xa7\xf5\xf4\x80\x02\xf5\x75\x42\xf1\x29\xb6\xf9\xa9\xca\x54\xbf\xf1\x74\xc9\x40\x60\x89\xe7\x8e\x4e\x60\xdf\x25\x36\x4a\xa0\xb0\xa9\x8a\x09\x18\x4d\x47\xba\x13\x93\xcb\x2a\x33\xcc\x50\x54\x3d\x06\x2d\xf8\x54\x98\xff\xbd\xb1\x99\x5d\xbe\x81\xf4\xb2\xb6\x18\x0d\x1f\x9a\x3a\x5f\xf5\x31\x1e\x10\x9b\x38\x03\xa3\xa9\xba\x0f\x14\x5b\x70\x84\x59\x52\x78\x46\xd4\x97\xa0\x2f\x9e\xf5\xc3\x71\x4e\x1d\x16\xaa\x01\x44\x5f\xd5\xea\x12\xc0\x19\x62\x62\xf4\xb6\x87\x4a\x47\xfe\xba\x37\x2d\xd3\x8f\x70\xdf\x32\xf5\xc4\x64\x22\xde\xe0\x1b\x2a\x4d\x85\x66\x69\x66\x54\x1a\xaa\x4d\x44\x8b\x79\xa8\x05\xc8\xbc\x9b\x4c\xb5\x71\xdc\xa3\x76\xb7\xc1\x39\x97\xcd\xc9\x4f\x36\x6c\x32\xa6\x0b\x82\xa2\xcf\x1a\xf8\xb0\x37\x15\x03\xf0\xae\x16\x8e\x21\xe5\x4f\x88\x2f\x9b\xa5\xaa\xaf\x72\xe7\x18\xc9\x9c\xc9\x0a\xa9\x23\x3f\x48\x6c\xd7\x02\x41\x37\xe9\xf8\x1f\x07\x83\xb1\xd9\xdb\xe3\xfc\xbc\xc8\xcb\x45\x0b\x1e\xc8\x6f\x79\xcc\x98\x87\xc4\x00\x5e\xd5\x97\x55\x01\x8e\xa6\x73\x8f\x82\xb9\x46\xff\xfa\x31\x77\xa5\x8d\x89\x56\x07\xc9\x62\xd8\x1a\xb5\xb8\x77\xcf\x6a\x9f\x13\xf4\xaf\x15\xb6\x0b\xe4\x2b\x9a\xe7\xe3\x16\x39\x8a\xc8\x64\xb0\x2b\xd4\x6a\xaf\x5d\xa0\xba\xdb\xc0\x6e\xab\x6c\x83\x33\xc8\x0d\x73\xd4\xe3\xea\xb5\x9a\xe5\xf3\x5c\x69\xe1\xa8\x02\x84\x65\x84\xa5\x1a\x7e\x87\xb3\x35\xf3\x6a\x63\x4a\x4a\x0a\x83\x8b\x5c\x8a\x18\xb9\x13\x7d\x2e\x33\xdb\xe1\x2c\x07\x19\x44\x6f\x94\x06\x01\x45\xae\xd7\x4a\xd6\x0c\x8b\x3f\x99\x87\x7e\x1e\x4d\xd6\xf1\xc0\xd1\x7e\x39\x4e\xda\xb0\x97\xb0\x82\x24\x5f\xcc\x35\x28\x24\x22\xb1\x7b\x89\xbc\xd2\x22\x57\x65\xeb\x9e\x46\xde\x3b\xad\x6b\x09\x67\x12\x18\x9c\xb6\x49\xe9\xfe\x98\xea\x43\xf8\xfc\x84\xb7\x4f\x92\x48\x33\x94\x76\x55\xef\xb8\x6c\xd9\xe6\xf6\xa1\x52\x42\x23\x87\x79\x51\x39\x8d\xff\x17\xa0\xcb\x76\xfa\xae\x8e\xc1\xb6\x50\x7f\xf4\xc8\x1d\xdf\x5f\x80\x4f\x87\xbb\x3b\xa7\x00\x06\xf0\x78\x56\x5e\xe3\x85\x64\xce\x95\x0f\x59\x73\x8b\xb3\x17\x5e\xa5\x3d\x54\x31\xf6\xf8\x9d\x62\x9f\xb1\x74\x23\x67\x17\xd5\xa5\xaa\xe7\x45\x75\x05\xaf\x59\xa0\x7a\x37\x00\x9a\x7c\x75\xf8\xe5\xc3\x6f\xfe\xf8\xf0\x9b\x09\x44\x52\x19\xcd\xa4\x6e\xf2\x72\x31\xca\xcb\x91\xa9\x3c\x65\x26\x04\x7c\xec\x67\xb4\xe9\x8f\x45\x62\x5f\x48\x45\xec\x8e\x65\xab\xd6\xb3\x16\xc1\x64\xf6\x2d\xbe\x70\xc0\xfa\x48\xc2\x3f\xdd\x2b\x3b\xec\xe4\xbd\xfa\xd1\xa7\xab\x97\x3e\x5c\xe4\x95\x4f\x47\xdf\xe0\x7b\xaf\xa5\x43\xe7\x68\x80\x5b\xeb\x18\xae\x31\x38\x4a\x67\x4f\x0d\xa3\x84\x4b\x19\xc4\xba\x06\x99\x41\x60\xf6\x12\xbc\x4b\x8d\x50\x98\x97\x0b\xaf\x38\x5d\x1b\x99\x18\xfd\x84\x91\x6e\x2d\xa5\x36\xb5\xac\x1c\x16\xca\x59\x3f\x41\x27\x5b\x04\x2d\xc6\xc1\x75\x09\x5b\x2b\xd5\xc8\x13\x2b\x60\x3f\x9e\x1e\xcc\xf4\x7a\x04\x93\x9b\x1e\x9c\x92\xce\x89\x71\x67\xe2\x09\x32\x75\x0b\xd5\x7c\x6f\x95\x12\xfd\xde\xac\x2a\x1b\x05\x4a\x2e\x97\x97\xe3\xc6\xbf\x40\xbe\xdd\xe9\xb2\xea\xa2\xc5\x59\xa3\x60\x6e\x03\x44\x4f\x66\xcf\xc9\xd0\xc5\xd5\x1d\x93\x10\xec\x79\x57\x74\x82\x87\xd0\x65\xeb\x5a\x5d\xe6\xd5\x46\x33\x52\x3f\x97\x79\xa1\x87\x56\x28\x44\x89\x0a\x1f\x59\xce\x95\xb8\xaa\x2b\x73\x81\xf8\x73\xda\x0e\x25\xed\x8d\xaa\xdc\x74\xf8\x89\xdc\x96\x70\x67\x2d\x6b\xb9\x1a\xd5\x4a\x6a\x9d\x2f\xec\x9d\x48\xeb\xb1\x7d\x71\x7c\x62\x2a\x24\xc8\x81\xeb\x41\x05\x49\x70\x1d\x08\x22\x8b\x92\x19\x07\x8f\x37\xe5\x88\x5d\x7b\x2d\x78\xf9\x35\xf9\xf7\x20\x95\x35\xf1\xa1\x2e\xf4\x69\x0f\xd1\x7a\xeb\x04\xc8\x7a\x27\x9e\x83\xff\xfc\x76\x36\xf6\xdd\x04\xfe\xb0\xbf\xa9\x0a\x2a\xd6\x38\x75\x1c\xe7\x4e\x7d\x61\x1b\xdf\x7c\xb8\x24\x9f\xe6\x84\x45\xe2\x6f\x3f\x6d\xe2\xc5\xc8\xd0\x59\x15\xfc\x40\x62\x25\xa2\x71\x7d\x4a\xba\x4c\xc1\x03\xd1\x52\x09\x2c\x2f\x9e\x3f\x43\x8b\x0f\x7a\x12\x3c\xaf\xab\x0b\x55\x0a\x5d\x6d\xea\x99\xa2\xa7\xf4\x80\x27\x99\x8b\x2b\x45\xaa\x25\x16\x8d\x40\x13\xe3\x7d\xa5\x02\xd9\x08\x26\xde\xc8\x05\xcb\xaa\xa2\x95\x5a\x81\xd9\xc7\x45\x3e\xbb\x18\x55\x73\x24\x4a\x9d\xe3\xc9\x62\x51\xd5\x79\xb3\x5c\x91\xa6\x4a\x15\x63\x23\xe4\x3d\x45\xd2\x20\xb8\x81\x11\x41\x56\x15\x01\x08\xb9\x69\xcb\x7e\xc9\x62\xfe\xfa\xe6\xc5\x3f\x00\xb6\xf6\xce\xc2\x50\xfb\xf3\xfc\xbd\xa1\xa9\x09\x4b\x8f\xb9\x9c\xa9\xf3\xaa\xba\x98\x98\x0b\xd0\x9a\x79\x3c\xfc\xfa\x4f\x5f\x4f\xb9\x25\x2a\x9b\x48\xf4\xea\x09\x96\x40\xf1\xb3\x09\x0a\xdc\x41\x11\x37\xb8\x63\x7a\x6f\x50\x13\xba\x5f\xa1\x55\x1e\xd7\xce\x82\x0e\x83\x17\x44\xfd\x1d\xfb\xf8\xfc\xec\x17\xaf\xa4\xdc\x25\x9e\x48\x07\x48\x62\x55\xfb\xcb\x52\xea\xe7\x14\x65\xc2\xf9\xda\x33\x57\x68\x23\xb0\xf0\xf0\x15\xa8\x02\xc2\x14\x10\x36\xd2\x0c\xbe\x48\x63\xf2\x20\x73\xa7\x49\xa1\x1b\x59\x66\x12\xc2\x96\xfb\xa4\xc4\xd3\xf8\x59\x99\x84\x6b\x6f\x60\x9b\x9a\x71\xe8\x26\xc6\x8c\x05\x59\xad\x27\xec\x87\x0b\x1f\x75\x24\x7e\xbd\x61\x12\x04\xa6\x3f\x20\x83\x41\xf8\x11\x7c\x6c\xd8\xb7\x86\x7f\xf2\x50\x85\xaf\xf4\xf3\x51\x10\x0c\xc2\xd7\xb1\x7f\x7d\xf8\x10\x92\x81\xc4\x3e\x99\x4d\x65\xd7\x69\x26\x1b\x39\x7a\xa7\x75\x6f\x28\x7a\x3d\xee\xa6\x0e\x73\x1d\x6c\x6b\x0a\x35\x7a\x43\x5c\x62\xd8\xb4\xd9\xde\x12\x06\x35\xb5\xa0\x75\x23\x79\xa6\x85\x92\xf8\x0c\xcb\x72\xf4\x79\xcf\xf0\x71\x6b\xd7\x50\xa3\x37\xc4\x6e\x92\x86\xa6\xdd\x62\xc7\xbe\x91\xa4\xd8\xa1\xfd\xf8\x50\x52\xc8\x40\x80\x01\x92\x61\x22\xcc\x1f\x76\x32\xc0\xfc\x18\x09\x9c\xfc\x2d\xac\xcc\x98\x6b\x21\x8b\x5a\xc9\xec\x9a\x33\x8d\x1e\x3a\x01\x58\x18\xe3\xfc\xe1\x83\xb8\xe3\x31\x35\x72\x94\xe4\xf2\x14\xef\x60\x98\x40\x6e\x96\x19\x86\xe8\x7b\xcd\x82\xc5\x6c\xc0\x66\xe1\xcc\x73\x00\x67\xe2\xfb\x57\xcf\x87\x74\x09\x50\xf6\x17\x1b\x86\xc9\x05\xc1\x3a\x73\xe0\x58\x55\xba\x31\x57\xcd\x95\x56\xb5\x0e\x6d\xfb\x9e\x1e\x1f\x7b\x87\xe6\xa1\x50\xf0\xce\x03\x61\x06\x8a\x42\x3c\x7f\xe6\xc3\xb7\x62\x1a\x34\xe7\x68\xff\x97\xaa\x2a\x94\x2c\xfb\xec\xd0\xda\xf8\x08\x76\x3a\x14\x5b\xa7\x1d\x64\xa1\x45\xa1\xee\xdd\x13\x3e\x14\x4f\xe8\x79\xb6\x83\x9a\x89\x64\x54\xad\xb4\xb5\x38\x3c\x42\x85\xc8\xf9\x39\xa3\x69\xb5\x64\xaa\x0e\xa4\xd9\x2d\x4a\xe1\xb5\x81\xe2\x07\xef\xa4\xe3\xd0\x81\x63\x35\x0b\xc7\x00\x27\xce\x8e\xbb\x65\x41\xbb\x62\x31\xb4\xcc\x9b\xb9\x7e\x1c\x8c\x34\x62\xac\x8f\x2e\x84\x20\x0a\x66\xbc\xb1\x1e\x99\x35\xd5\xc6\xf8\x07\x1d\x0e\x0c\x29\xf2\x1c\xb1\x26\xd3\x83\xe9\xb4\x04\x46\x31\x32\x78\x1e\x90\x56\xa5\xb4\x49\x18\x93\x64\x8b\x65\x30\x6a\x2a\x08\x83\xb9\x0b\x84\x6c\x09\x69\x91\x48\xf7\x29\x72\x43\x29\x9b\xfc\x52\xbd\x0a\x35\x18\xc9\x37\x29\x1f\x88\x63\x9b\x3f\x66\x24\x0b\xb8\x08\xa0\xa7\x43\x91\x47\xa3\x6d\x39\x12\xcf\x83\xe8\x69\xfb\xa1\xcd\x5e\x81\x8b\x48\x36\xe9\x58\x37\xfa\x9e\xf9\x0f\x69\x5f\xc2\xb0\x46\x74\x31\x85\x0f\x35\xbe\x5b\x1f\x53\x3c\x12\xaa\x5c\x4e\xb6\x9a\x27\xef\x80\xf0\xad\xb2\x51\xba\xf9\x29\x1c\x8d\x0f\x1e\x99\x8a\x60\x30\x55\xa7\xd5\x99\xf9\x50\xe8\x90\x8b\x37\xfa\x9c\xcc\x8c\xdf\x8a\xdc\x4d\x04\xc8\xdc\x58\x2e\xe2\xfa\x15\x09\x0d\xf0\x5c\x53\xab\x12\x5f\x76\x59\xb4\xe0\xe4\xc4\x99\x94\x1e\xc0\x78\x28\x6c\xd2\x7e\x7b\x28\x02\x5f\x3d\x3b\x08\x45\xaa\xf5\x9f\x6e\x06\x4c\xce\xf4\xc5\x06\x10\xa9\xf1\xad\xe2\xae\xe5\x4a\xd8\x8a\xc8\x23\x3a\xbc\xf4\x5a\xb4\x81\xe6\x4d\x07\xa9\x3d\x68\x4c\x30\x12\x55\x02\x4d\xf2\x33\x71\xa1\xd4\x5a\xdb\x28\xcc\x2c\x8a\x2c\xde\xa6\x3e\xbc\x18\x8f\x1a\x18\x39\xa4\x4c\x26\x42\x57\x3c\x0a\xdf\x6c\xa9\x66\x17\x56\xe5\x73\xe6\x63\xe1\x40\x80\x78\x55\x2b\xc3\x79\xf9\x28\x7e\x38\x06\xd2\x56\xc3\x81\x94\x95\xcf\xe5\x56\x2b\x87\x0e\x95\xf6\xe1\x01\xdb\x58\x1e\x04\x26\x8a\x8a\xe8\xba\xe1\x21\x72\x1f\xa7\xce\x50\x5b\x8f\x1f\x75\x94\x32\x38\x35\x55\x8e\x21\x58\x72\x18\x58\xb8\x15\x8a\xe9\xb8\xa9\x5b\xd1\x98\x18\x3b\x0a\x3b\x44\x94\xa4\x1b\x6f\xa9\xa3\x16\x1a\x7a\x2a\x82\x5d\x24\x50\x2f\x81\x76\xe1\x3d\x92\x60\x2e\x78\x00\xa1\x08\xcc\x8f\xd9\x94\x43\xad\x43\x54\xfe\x71\xf9\xbd\x76\xc6\xcd\x22\xcd\x45\xf7\xfd\x9c\x22\x8f\x2d\xef\x32\xeb\x54\x66\x7b\x63\x9b\xe6\xf5\x65\xde\x4f\x31\x80\x9e\xe5\xec\xdc\x94\x02\x15\xd4\xed\x82\x58\x19\x86\xe5\xf5\xc7\x06\xb2\x4a\x81\xc2\x2a\x76\x92\xd0\x70\x6a\x9f\xbd\x82\x70\xb7\x74\x92\xed\x10\xdc\xcc\xf8\x0b\x20\x16\xa9\x95\x1c\xf8\x22\xa7\xa2\x00\x52\xa3\xc3\x34\x9c\xd0\x84\xde\x33\xe8\x14\xdd\x14\xe2\xe9\xc0\xb3\x22\xca\x34\xef\x73\x78\x0a\xb0\x96\x31\x3e\xb1\x2a\xf8\x18\xb9\xd4\xbf\x1a\x8c\x8f\x8a\xcc\x0b\x00\xd6\xec\xb9\x59\xaa\x6b\x7a\x2e\xd3\x68\xcc\xc9\x33\xea\x76\xf8\x34\xc2\x04\x62\x2c\x65\xc5\xde\xec\xaa\x15\x81\xe1\xb3\xe1\x61\x62\x7f\x77\x21\x65\x82\x6b\x0a\x34\xa8\xa9\x98\x7d\x45\x41\xc2\x18\x0d\xb5\x25\x42\x05\x05\xe9\xd3\x89\xc0\x7d\x2c\x5b\x1c\x9f\x4c\x27\x7a\xb6\x7c\xbd\x99\x50\x1c\x45\x9c\xb2\xde\x5e\xa1\x77\x04\x7e\xfb\x9b\xd6\xb7\xf2\xdc\xfe\x9b\xd6\xe9\x54\xc7\x79\x86\xef\x43\x7c\x24\x97\x73\x13\x6a\x58\xff\x1e\xc3\x82\x1f\x3e\x18\x7f\x35\x7e\xe0\x32\xaf\x47\xe1\xab\x0c\x42\xb7\x42\x5d\xf1\xaa\x89\x08\x12\x79\x76\xc4\xb9\x09\xb4\xe9\x8f\x18\x15\xaf\x17\x8a\xdd\x50\x8e\x5a\x25\x89\xd4\xb1\xb9\x7e\x5e\xfe\x05\x4f\x87\x78\x12\xa8\x30\xf1\x25\xc4\x07\x23\xc7\xb9\x77\xc4\xd7\x0a\x92\xeb\xb6\xfc\x61\xdc\x1a\x12\x2b\xb8\x49\x44\x02\x67\x52\x81\x8d\x07\xb1\x45\x22\xb0\x55\x36\x5a\xd9\xa0\x16\x20\x0e\x24\x02\x71\xd8\xa8\x12\x3e\x10\x47\x3a\x74\xb8\x56\xcd\x66\x1d\x85\x42\x0b\x4f\xc9\xab\x5a\x19\x46\x43\x9b\xd3\x0d\xef\x34\x2e\xa4\xbb\x5c\xaf\x21\xd3\x4c\x90\x5f\xe6\x0b\x71\x8c\xfe\x8b\x65\x05\xcf\x35\x40\xa2\x20\x54\x87\x20\xeb\x45\x8d\x21\x29\x10\xd7\x86\x9c\x50\x39\x85\x25\xf5\x48\x1d\x66\xca\xa6\xb4\x35\x08\x58\x54\x8b\x7c\xb6\x55\xc1\xf4\x37\xad\xbb\x14\x4b\xb0\x5c\x7e\x7e\xc3\xf5\x7f\x4c\x10\x94\x56\x84\x13\xee\x9c\x12\x23\x48\xbc\xa3\x5d\xf5\x78\xae\xee\xe8\xd3\xb6\xe1\xf2\xce\x01\xe0\x80\x07\x91\xf9\xa3\xcf\x43\xc1\x3a\xb9\xcd\x92\x8c\x40\xd4\x3d\x7e\x70\x5c\xb6\x2e\xb9\x1f\x4d\x68\xeb\x24\xa2\xd7\x79\xe7\x60\x14\xf6\x71\x2b\x83\x1b\x7a\xc0\xb3\x54\x01\x5e\xcf\x62\xbc\x88\x80\xca\x92\x72\xc7\x45\x5c\x1c\xe9\x7c\x6f\x5c\x83\xdc\x30\xd2\xeb\x5a\xc9\x2c\x64\xff\x5d\xda\x28\x4a\xc3\x89\x03\x6f\xb4\x8d\x19\x69\x7e\xfa\x2d\x0b\x92\x75\xee\x8e\xbb\x68\x75\x83\x7b\x45\x38\x88\x33\x57\x77\x3c\x9a\x6d\xcf\xb6\xf1\x49\x07\x0a\x0e\x77\x2b\xc3\x3d\xd3\xf6\x5b\x9e\xe3\x6d\xec\xe5\xed\x07\x77\xc6\x1b\xa6\xe6\x9d\x94\xa9\x86\x08\x43\x7f\xf0\x24\xc5\xd6\xd9\x3c\xf8\x70\x5f\x1c\xa6\x26\x6a\x99\x75\xf0\x77\x6e\x03\x66\x47\x72\x0c\x48\x7d\xde\xf0\x2c\x18\x3c\xc1\x79\x3b\x8b\xbb\x39\x7c\xd1\x39\x1b\xfa\xe5\x70\x2c\x3f\xda\x76\x36\x12\xd7\x65\x12\xd1\x87\x01\xa8\x8e\xf0\x1f\x7b\xbb\x0d\x12\xec\xc0\x38\x19\xae\x2d\x44\x53\x2f\xc9\xb4\x64\x2a\x50\xc7\xba\x68\xdb\x14\x94\x1a\x79\x64\x50\xf4\xe6\x8d\xb7\xc7\xd8\x27\x3e\x88\x69\x94\xc6\xe4\xf8\x5b\xf4\x9c\x18\x6a\xdf\xb9\xa4\xe4\x82\x0d\xa7\x96\xb6\xf3\x04\x02\xd3\x6f\xb5\x40\xa9\x03\x29\x4e\x7e\x50\xeb\x5a\xcd\x64\xa3\xb2\x53\x17\x61\x1e\x87\x74\x76\x6f\x60\x9d\xba\x92\xef\xaa\xda\xba\x61\xef\x3a\xce\x31\x6f\xef\x4b\xef\x1e\xf2\xd0\xd9\xe9\x93\x4c\xd1\x02\x53\xe7\xd8\x06\x12\xdc\x7a\x2d\xde\x9e\x04\x4c\x26\xe2\x59\x09\x02\x7a\x00\x31\x88\x13\x65\x98\xa9\xbc\x04\x82\x8a\xa7\x6c\xdc\x3a\xf6\xad\x70\xd3\x89\xa0\x88\xcf\x17\x65\x55\xfb\xa8\x88\x8c\x8b\x67\xd9\xd1\x9d\x8d\xc9\x50\x30\x28\x05\xf6\x19\x41\x67\xb1\x4a\xe5\xe5\xbe\x59\x72\x4c\xef\x47\x38\x46\x37\x6d\xd8\x71\x5a\x5b\x6c\xa7\x53\xda\xbc\x6c\x11\x92\x81\x48\x97\xdb\x5b\x7b\x11\xf3\x1f\xad\xbe\x5c\x52\xfb\x44\x21\xdf\xd3\x56\x43\x96\xf8\x38\x59\x6c\x1b\x87\x90\x0c\xb3\xd6\x07\x28\xcb\x7a\x19\xb4\xdc\xc1\x07\x1d\xf4\xa9\x65\xea\xb2\x23\x29\x80\x0b\x4c\x45\xe1\xf7\xc4\x2b\xb4\x56\xf2\xc1\x00\x5c\x36\x88\xcb\xea\x42\x65\x36\xe0\x74\xcd\x73\x13\xdf\x2a\x68\x5f\x3b\xde\x34\x6d\x4e\x5b\xac\x78\x5b\xa8\x32\x91\x6c\x76\x28\x42\x29\x0d\x3d\x2b\x4d\xe5\xc1\x50\xbc\xbd\x50\xd7\x28\x8d\xc0\x5f\x7f\x86\x4e\xf0\x47\x18\xfd\x90\x04\x8f\xb7\x94\xf6\xda\x67\xab\x7d\xcb\xb3\x31\x4f\xa3\xd0\x79\x36\xcf\x84\x17\x4e\x5b\x11\xeb\xde\x76\x08\x39\xee\x78\x75\x52\xd7\x50\x96\xfe\x1b\x04\xb7\x89\xc3\xb6\x3c\x7b\xdf\xd4\x72\xd6\x68\xeb\x3d\xa8\x6d\xb8\x62\xd8\x98\xaa\x2c\xae\x31\x71\xa1\x68\x96\xb2\x71\x31\x32\xa2\xb0\xe1\x2d\xa7\x84\x85\x6a\x7e\xb8\x2e\xe5\x2a\x9f\x01\xed\xb6\x09\x0e\x98\x05\x11\x88\x24\x64\x6a\x37\xe5\x2e\x1e\x06\xca\xed\x8c\x06\xce\x81\xda\xe6\x33\xd4\x27\x0c\xac\xd0\x21\x3c\x3c\x58\x73\xd4\xb6\xdf\xac\x7f\x98\xb0\xb3\xec\x45\x3a\xad\x3b\x4d\x35\xc0\x79\xb9\x53\x29\x44\x53\x9d\xd0\x8e\x5e\x32\xc3\x18\x96\x55\xdb\xf7\x6b\x63\xf6\xdf\xbb\x47\x53\xbd\xc3\x12\x0a\xde\xd9\xe1\xb7\x0b\x56\x55\xb8\x17\x8a\x5c\x60\x42\x08\x5e\x5a\x4f\x53\x3e\x65\xd7\xa2\x15\xe1\x30\xb9\x18\xbe\x1c\xd7\x34\x11\x4e\xa0\xe5\x72\x5a\xc5\x6e\x2b\x18\xb3\xe6\x85\x2c\xe5\x02\x2d\x66\x20\x4b\xae\x14\xbf\x28\x79\xf1\x42\xae\xc9\x87\x25\xd7\x22\x53\x3a\x5f\x94\xf4\x52\x50\x6d\xca\x26\x4c\x11\xf2\x85\x3b\xf4\x64\x7a\x0c\x8f\x0d\x13\x7a\x72\x96\x9b\xa6\x5a\xc9\x26\x9f\xc9\xa2\xb8\x6e\x87\xe9\xb3\xc3\xdf\x3e\x4a\x1f\xb5\x8c\x82\xa0\xd9\x40\x4a\x09\x73\x23\x4b\x1b\x68\x7d\x3e\x9b\x58\x4b\xcc\x0e\x06\xe8\x12\xb8\x17\x21\x9b\xb5\x50\x4d\xff\x42\x5d\x07\xd8\xae\x4a\x16\x91\x8f\x78\x2a\x5b\x2f\x3c\xf0\x58\xf3\xde\x3d\xfc\x83\xa9\xc0\x6f\x5a\x19\x48\xe2\x58\x80\x17\xea\x3a\x8e\x1c\xe2\x4c\x15\x68\xcc\xa5\xd4\x30\x66\x64\xe1\xc1\x00\x16\x6a\xc4\xa8\x99\xc6\xa9\xb6\x33\xdc\x61\xb8\x5c\xcf\x50\xcc\xf5\x91\x78\x10\x50\xb2\x68\xda\x2b\x00\x65\x10\x5e\x01\x4a\x6e\x0b\x31\xbf\x3c\xa8\x18\x1d\x7e\x84\x9d\x99\x0e\xca\x36\xc1\x81\x62\x80\x8d\xf3\xac\x05\x2f\x78\xbe\x13\x07\x93\x70\x97\xd2\xcf\xb7\x1d\x86\x9f\x01\x26\x1d\x91\xb6\x1a\x5c\x6d\x50\x9a\x82\xc0\x55\xe6\xe3\xf4\x20\xc2\x88\x30\x0b\x51\x04\xcf\x4d\xd9\x86\xa8\x2d\xfb\xcd\x60\xfa\x6d\x12\xa2\xe6\xd3\x68\xf4\x28\xa4\x5c\xed\x9d\xe0\xe0\x8f\x84\x0d\x16\x35\x20\x74\x1e\x6f\xc1\x74\x0f\x68\x5a\x28\x78\x78\xde\x4c\xb7\x47\x83\xa3\xee\x5a\xc1\xe0\x74\xfe\x6f\x05\xb1\xe0\xc4\x6d\x22\xba\x91\x8e\x93\x0f\x9d\x0e\xc3\x46\xc3\x26\xae\xf3\xef\xc5\x39\xba\x69\xcb\x73\x0d\xf4\x1d\x42\x45\x5f\xaa\x5a\x3c\x3d\x3e\x06\x0a\x0a\xd5\xbe\x9b\x55\xeb\x6b\x7c\x90\x7d\x59\xa8\x85\x78\xae\xab\x52\x95\xa2\x7f\x5c\x54\xe7\x55\xa6\x2f\xaa\x7c\x20\x26\xb6\xf4\xe1\x83\xc3\xaf\x46\x90\x90\xad\x44\x92\xfd\xdd\x95\x3a\xd7\x79\xa3\x52\x16\xaa\x33\xad\xf3\xf2\x9d\x9e\xbc\xd3\x1a\xeb\x16\xf9\x4c\x95\x5a\x89\x17\xcf\xdf\x38\xfb\x7f\xcf\x7c\x40\x68\x01\x69\xf8\x0a\x73\x0b\xc0\x2b\x19\x68\x34\xcb\x05\xbe\x28\xe7\xda\xbe\xdd\xc0\x93\x34\x06\x21\x10\x1a\x63\x12\xa0\x63\xb7\x9d\x44\xa6\x2e\x55\x51\xad\x55\xad\xc7\x8b\xaa\x5a\x14\x0a\xe6\x73\xa5\xce\x27\x98\x95\x43\x4f\x1e\x3e\x38\xfc\x66\xf2\xe0\x4b\x33\xc7\x6a\xc5\x6e\x93\xa5\xd4\xd8\xb1\x8d\x75\xe0\xd8\x88\xa7\xc7\xc7\xa8\x16\x09\xe3\x99\x99\xe2\x7b\xf7\x9c\xb2\xc4\xf0\x2b\x4f\x8f\x8f\x99\xab\x37\x4a\xb2\x9a\xde\xb1\x5c\x64\xba\x6a\x0e\x5a\xd8\x20\x14\x1c\x99\xa4\xb5\xa4\xce\x48\xfb\x6a\x9f\x5b\xd5\x55\xf0\x5c\x11\xc5\x7f\xf9\xde\x06\xdf\xfb\x9b\xd6\x01\x3b\xed\xc7\xb3\xea\x1c\x1a\x05\xd1\x47\xe1\x46\x50\x8a\x7e\xf7\x72\x47\xc5\xbf\x3a\x03\xa1\xa1\x88\xf0\x3e\x0e\x8a\x88\xbd\x0e\xdb\x2f\x0f\x4c\x2c\x19\xb6\x98\x9b\x61\x6b\x0b\xe8\x56\xd2\x43\x16\xc5\x04\x0e\xe2\xc1\xf0\x20\x9a\xac\x83\xdb\xf6\xe0\x98\x68\xf7\x0d\x66\x7e\xc5\x26\x73\x1c\x13\x08\xee\x68\x12\xee\x62\xc5\x59\xbf\xbe\x1b\xe7\xca\xd5\xc8\x1a\xaf\x6c\x56\x86\xad\xfe\xae\xae\x0d\x6f\xf0\x12\x86\x36\xd2\x99\xa6\xee\x06\xae\x22\x5c\x83\x39\xe7\x73\xd9\xfb\x86\xef\x25\xf9\xc4\x81\xd2\x87\xaf\x84\x7e\xcb\x9e\xfd\xc3\xb5\xb8\x17\x45\x20\xdf\xdf\x02\xd1\x8c\x42\x67\xe2\x0a\x2c\xf3\x87\x1d\x7a\x16\x3a\x62\xf7\xa0\xae\x41\xad\x83\xe1\x01\xc6\x6f\x71\x82\x39\x6a\x96\xa6\x07\xdf\x9d\xcb\x73\x55\x4c\xea\x4d\xd9\xe4\x2b\x35\x59\xaa\xc2\x9c\xbc\x89\xd2\xab\x09\xd5\x84\x87\x30\x6a\xfd\x2b\x6c\x79\xae\xd7\x85\xbc\xfe\x49\xae\x94\xb8\xc1\x7e\x7a\xdf\xad\x64\xa3\xea\x5c\x16\xa3\x4d\x3e\xd9\x34\x79\xa1\x7b\x8f\x5a\xe8\xc8\xe2\x2a\xd5\x0b\xa4\xbf\xfe\x69\xd1\x40\xd8\xeb\x48\x62\xd9\xce\x5c\x3c\xe6\xa8\x7a\x71\xec\xc1\x29\x9c\x68\xef\x16\xf3\x24\xfc\x78\xc4\xf7\xf8\x5c\x6a\x3b\x1e\xd3\x66\xb3\x52\xc7\xc8\x94\xea\xaa\x5d\xd1\x17\xba\x7a\x4f\xab\xd5\xda\x50\x55\xae\x78\x77\x65\xcc\x23\xf0\x8e\x6f\x1b\xbf\xa1\xb2\xe1\x63\x2e\xb4\x54\xef\x1b\x3f\x8d\x40\x99\xc2\x5a\x71\xcf\xc3\x4e\xf7\x94\x9e\xf7\x4e\xe9\x85\xcc\x21\x29\x8f\xd8\x82\x53\x8e\xb6\x10\xbc\x55\x57\x85\x1a\xab\xba\xae\xea\xfe\xc9\xf4\xe0\x85\xdd\xeb\x9f\x9f\x1f\x89\x37\x2e\xe8\xd6\xd9\xf4\xc0\x46\x86\x67\x00\x13\xd3\x83\x33\x31\x3d\x40\x03\xc6\x75\x5d\x5d\xe6\x19\x4a\x11\x60\x2b\x46\x23\x43\x14\x95\x6a\x2e\x7c\x0f\x21\x9e\xf5\x1d\x68\x07\xa6\x43\x48\x7b\x5b\xce\xaa\xba\x36\x87\x75\x7a\x30\x18\x8a\x9e\x0f\x55\x77\x65\x2e\x20\xca\x89\xef\x06\x01\x6c\xa5\xf4\xfc\xba\x51\x32\x1b\xf7\x4e\xc7\xef\xaa\xbc\xec\x83\x3b\xc8\xa0\x65\x83\x15\xef\x4e\x28\x50\x71\x3a\xc1\x76\x38\xa1\x07\xe0\x9c\xd8\xed\x37\x8a\x90\x88\x4d\x06\x8f\x3e\x78\x95\x5e\xf1\xa2\x38\xde\xee\x8e\x2d\x33\x04\x89\x6d\x18\xd0\xb6\xbd\x77\xca\x3a\x27\xae\xd6\x68\x01\x80\xba\xda\x3d\x37\x0f\xf7\x6b\x7a\x60\x36\x6c\x26\x4b\xd4\x4d\x18\xd6\xa6\xce\x33\x05\x61\x35\x2b\xb4\x41\x9b\x57\x45\x51\x5d\xe5\xe5\xe2\x88\x75\xcd\x01\xcf\x8f\x02\xed\xe5\xb0\xe7\xc6\xe8\xd8\xde\x28\xa2\x5f\x04\x45\xe6\x09\x1b\x7f\xb9\x93\x3e\x1d\xbf\x17\xb0\x2f\x65\x91\xa3\x35\xcc\x47\xc0\xd9\xda\xf8\xd1\x40\x10\xa8\xc2\x26\xc9\x77\x26\xd7\x70\x2c\x44\x35\xe7\xe0\x8e\x80\xb0\x1b\xb6\x22\x56\x8a\x77\xa3\x29\x23\x72\xf6\x3e\x9b\x1e\xf8\xa1\x63\x9c\x87\x83\x3f\x3d\x18\x74\x4c\x2d\x64\xf5\x43\x7f\x51\x3f\x10\x5d\x86\x10\x44\x51\x65\x29\xc6\xb7\x59\xe6\xe5\x45\x51\x55\xeb\x09\x04\x90\x1d\x5d\xa8\xeb\x11\x84\x20\x12\x12\x58\xb1\x75\x6e\xa3\xb9\x82\x3f\xa8\xa9\xf3\x77\x75\x7d\xdc\x54\xb5\xb2\x26\x1f\x3a\x10\x14\x8c\x04\x0d\x1d\x0c\x0d\x1e\x1c\xc2\xff\x1f\x86\x71\xe3\x88\x11\xd9\x9c\x63\x1c\xc3\xc7\x18\xf3\xc8\x0a\x68\x87\x91\x8a\xdb\xd6\xe3\xef\x12\xbe\xa9\xe1\x2c\xbd\x66\x03\xf0\x13\x3a\x23\x41\xfe\x70\xe8\x2a\xb7\x9e\xa0\xed\x07\x5b\xd7\xcd\x12\xaf\x27\xb8\xfb\xda\x42\x50\x6b\x6d\xfb\x2f\x8a\x91\x5b\x57\xef\x89\x9f\x06\x55\x7d\x38\x10\x47\xb1\x28\x0c\x73\x41\x83\x29\x36\x9d\xb7\x14\x8d\xec\x13\xa7\xe4\x26\x40\xdd\x41\x0f\xf6\x8a\xbe\x69\xf3\x35\x01\x12\x3c\xf2\xbc\x56\xa9\xb4\xcb\x39\xda\x1b\x8f\x27\x6f\x96\x6a\xa5\x5e\xe1\x11\xac\x27\xf8\xb5\xf7\xa8\x1d\x7a\x1b\x62\x91\xe4\xba\xb1\x84\x10\x5f\x9d\x40\xb5\x0e\x4f\x3d\x36\x86\xb0\x16\x19\x5e\x68\xd6\x78\x0d\x1d\x42\x2a\xb4\xc3\x3e\xdf\xe4\x45\x33\xca\x4b\xe8\x7a\xad\xd5\x26\xab\x1c\x61\xe9\x1f\x81\xb5\xaf\xca\x86\xe2\x88\x1e\xee\xcd\x9f\xf3\x6a\xb6\xd1\xe6\x2f\xd5\xcc\xc6\x03\x2f\x66\xfe\xb2\xbc\x16\x59\x85\xc6\x76\x60\xb3\x67\x9f\xe6\x30\x54\x17\x8c\xfd\x84\x96\xa0\xb4\xa7\x5f\xb2\x26\x0b\x19\x09\xa6\x79\xcc\x49\xb3\x9a\x8b\x87\x28\xf6\x3d\x07\x2b\xb5\xea\x8a\x92\x7a\x34\x95\xbf\x0b\xac\xef\x74\x71\x2d\x60\xf3\x73\x9b\x3a\x59\x9b\xb5\x5f\xa9\xa2\x10\x12\xa5\xd3\x73\x65\x48\xd8\xa6\x6c\xaa\x0d\x84\x54\x3a\xbf\x16\x1a\x6e\x27\xf4\x5d\xb7\x3d\x46\x22\x1b\x02\xc5\xf3\x59\x27\x3d\x82\x4a\x6f\x28\x7a\x16\x2c\xe6\x6f\xa0\xec\xe6\x0f\x02\x90\xfb\xf3\x9f\xb9\xce\xcf\x0b\x65\x7e\xd7\xea\x5f\x9b\xbc\xa6\xfa\xef\xd7\xb2\xcc\xf0\x6f\x34\x48\x54\x59\xef\x94\x45\x63\xfb\x1c\x71\x95\xad\xb3\xd5\xc7\xc6\x55\xa6\x2e\x3e\x25\xaa\xf2\x04\x43\x99\x3f\x6f\x7a\x96\x34\x02\xec\xbb\xe2\x9b\x33\x9d\xc2\xe4\xbc\xa8\xce\x27\x5f\xa9\xaf\xe5\x83\x3f\x64\xd9\x97\xf3\x3f\x9e\x7f\xfd\x87\x3f\x3e\x9c\x67\xd9\x97\xf2\xfc\xe1\xe1\xd7\xdf\x7c\x7d\x98\xfd\x49\x7d\xf5\xd5\xd7\xb3\x87\x0f\xbe\xfc\xf2\x70\xa2\xeb\x19\x4a\x15\x93\x50\x20\x7d\x6a\x59\xbb\xf1\x3b\x9d\x90\x7f\x3b\x22\x3b\xbb\x56\xbf\x8b\xec\x61\xcd\x36\xee\x12\x46\xfd\xa7\x91\xec\x99\xd4\xc0\x8b\xbd\x99\x5e\x50\xca\x8c\x3f\xa2\x5e\x78\x5a\x0a\x8c\x37\x72\x94\xae\xea\x3a\x76\x5f\x3d\xbb\xf9\x8a\x9b\xf8\xf0\x62\x35\xcf\xdf\x7b\xc3\xc1\xe8\x03\x9f\x54\xd8\x17\x9f\x54\xef\x9d\xd6\x3d\x3e\x29\x5e\xb5\x3d\x29\xad\x14\xb7\x0e\x33\x3f\x5d\x25\xfa\x16\xd5\x0d\x06\x0b\x46\x32\xdf\xbd\x94\xaf\x54\xe6\xe6\xed\x5a\xf6\x7a\xb6\x15\xe7\x3c\x60\x54\x8c\x3e\xec\xa5\xff\x76\x08\x6f\xfb\x65\xa1\x9a\x9f\xc0\x8b\x0b\x3e\x86\x21\xc5\xe3\x6f\xfd\xfd\x22\x7b\x7f\x8c\x90\x10\x44\x03\xc7\x88\xee\x49\x36\xf5\x4a\xd6\x65\xff\xa4\x17\x30\xa9\x5b\xe3\x7c\x1b\x2a\xf6\x86\xa8\xc2\x53\x4f\x44\x30\x78\xe4\x7a\x5d\x69\x24\x1f\x8b\xba\xba\xc2\xd7\xc5\xd5\x66\xb6\xf4\xe2\xd5\x36\x06\x91\xbd\x42\xc7\x01\x9e\xa7\x5b\x42\xa4\xbb\x97\xa7\x30\x42\x1c\x98\x41\xb0\xaf\xce\x64\xc0\x7c\xc1\xa8\x1c\x3c\xaf\x45\x23\x9b\x7c\x26\x5e\xfc\xfc\x1c\x9b\x3c\x09\xdd\x32\x56\x18\xba\xc7\xd0\x16\xab\x95\xe9\xbd\xd8\xe4\xbd\x01\xd9\x4c\xdd\xbb\x27\xee\x24\x86\x2a\xf2\xf2\x02\xbe\x05\x07\x38\x34\xc8\xf8\x05\x43\xc2\x61\xd8\x6e\xc8\x21\xb0\x84\x40\x97\x8e\xe0\x0f\xd1\x2f\xe7\x52\xd5\x4e\x88\x35\x02\x8f\x81\x32\x05\x48\x00\x3f\x2b\xe2\xf6\xf5\x98\xa3\x41\x70\xa9\x05\xf9\xb0\xc7\x20\x8a\xb6\x72\xc2\xb1\x10\xe0\x2f\x36\xf9\xc8\x1f\x03\xd7\x26\x25\x3b\x05\x11\xda\xe3\xc3\x43\x71\xd7\x1d\xa7\x0e\x4b\xc2\xf3\x94\xea\x3c\x10\x75\x13\x30\x35\x8c\x81\x3a\x41\x7e\xe9\x54\x7c\xf8\x80\xe7\x17\x8e\x43\x2f\xb5\x90\x75\x67\x0c\x77\x16\xec\xdc\x4e\x04\x2b\xc7\xd3\x6b\x9f\xdb\xa4\xc1\x66\xf2\x9c\x3e\xee\x3e\xa7\x89\xf1\x13\xf0\x8a\x29\xed\x6d\x66\x85\x0c\xee\xbc\xbd\x2f\x16\xe0\xfb\xac\x14\x62\x5a\xa8\x62\x8d\xc6\x03\x99\x3a\xdf\x2c\x16\xf2\x3c\x2f\xf2\xe6\x3a\x48\x3d\x98\xd8\xab\xee\xd8\xfb\xfb\xad\x7d\x77\x97\xf1\x02\x70\xb5\x5d\x91\xc6\x77\x0d\xc7\x1a\xdf\x84\x9a\x52\x7a\x79\x22\xf6\xbd\xc9\xcb\xeb\x11\x15\xf5\xb8\x42\x94\x59\x9c\x59\x65\xa8\xb9\xf2\x7c\xda\x93\xea\x4a\x3c\x16\x3f\xc8\x46\x8d\xcb\xea\x0a\xc4\x32\x53\x3c\x2f\x41\x17\xae\x7f\xd2\xb0\x4f\xf6\x27\xe6\x07\xac\xae\x5c\x2d\xd3\xb1\xab\x03\x5a\x76\xa8\x72\xff\x3e\x56\xf2\xe1\x23\xe9\x0f\x74\x4d\x88\xe2\xdb\xd2\x1e\x84\xc9\x01\x6f\x9f\x90\x3a\xd0\x1b\x9a\x2a\x78\x06\x99\x1d\x46\x9c\x02\x5a\xec\x30\x69\x62\xd6\x61\x4c\x01\xb7\x29\xd4\x89\x5d\xf9\xa9\x78\x0c\x43\xc5\xea\x39\x9e\x80\x7a\x68\x97\x17\x26\x32\xdc\x23\x13\x71\x8b\x2e\x5b\x5e\x98\xac\x2a\x5a\x79\xf5\x9d\x3d\xa6\x99\x93\x44\x4d\xc0\x50\xe8\x0a\x2f\x3e\x8a\xf5\x79\xa1\xd4\x5a\xcc\x2a\x23\xfc\x94\xf2\xca\x08\x41\x28\xc8\xad\xc6\xe9\xc1\x32\x6a\x8e\x9a\x30\x67\x38\xe5\xea\x65\x55\xd9\x6b\x3a\xa7\xa6\x8d\x5c\x00\x8c\x39\xde\x0d\xf8\x4a\x36\x14\x3a\x47\x8f\x4d\x48\x76\x50\x8a\x25\xc4\x3c\xda\x31\x06\x3d\xc8\xb5\x96\x8d\x91\x60\xcd\x32\xbc\x49\xe9\xc6\xdb\x22\x22\x62\x30\x94\xce\xf1\xbb\xa1\xd5\x0e\x85\xa9\xcc\x21\x09\xcc\x36\xc0\x12\xdb\x41\x68\x12\xc7\x6c\x8a\x48\x7f\x4b\x66\x89\x71\xc8\xa7\xc0\xae\x08\x22\x89\x9d\x46\x4f\xd2\xdc\xa8\xa8\x85\xbb\xad\x1c\x65\x56\xc1\xd0\xd1\xa1\x9d\x2d\x7e\x88\x0c\x8b\xb8\xb5\x24\xe5\xa3\x66\xb7\x10\x22\xb8\x85\xd6\x29\x24\x87\xc0\x5f\x31\x9a\x73\x20\x79\x3c\xb7\x09\x36\x3f\x2a\x9d\x32\xdd\x11\x36\x04\x4e\xca\xa1\x1c\xf7\xcc\x82\xf2\x75\x70\x1e\x1f\x51\x30\xcb\x2b\x65\x79\x45\x44\x3b\x3b\x97\x21\x7a\xf6\x95\x4d\x5e\x93\x20\x99\x6b\x91\xe1\x2b\x21\x98\x06\x61\x75\x7c\xe3\x63\x38\xe8\x8d\x7f\x29\xb7\x3e\x1d\x35\xe9\xb1\x71\x1c\xb2\x0a\x38\xa5\xd8\x29\xfd\x19\x28\x35\x9d\xf1\x5b\x51\x58\x6b\x6a\x59\x14\x36\x9d\x93\x55\x28\xa8\x0c\x8d\xe2\x82\x0e\x72\x8a\xdc\x16\x60\x3a\x4d\x0b\xe4\x76\x59\x68\x96\x8c\x83\xfe\x73\x90\x72\xc9\xc6\x71\x7a\xb0\x23\x03\x73\x10\x02\x94\xde\xc5\x3e\xd0\x23\xf8\x4a\xc5\x19\x1b\xba\x4e\xc3\x6b\x96\x26\x3e\xa8\x1e\x60\x7e\x54\xd5\xa2\x6e\x97\x35\x9d\xfd\xef\x53\x83\x1b\xfe\x98\x26\x27\x21\x2d\x01\x6d\x91\x13\x2a\xea\x46\x65\x89\x90\x87\xfe\xbf\xf3\x5a\xc9\x8b\xa8\xf4\x86\xff\x64\x3f\x52\x5e\xfa\x11\xc1\xe1\x98\xee\x0e\x66\x1b\xd7\xe7\x6e\x0d\x2b\xb9\x1e\xda\xb8\x3b\xde\x6c\x3b\x61\x51\x99\x22\x91\x01\x8c\xbd\x5d\xab\xdd\xd1\x64\x35\x8e\x63\xa6\x62\xff\x2d\x66\xaf\x70\x74\x08\x7e\x63\x4e\xf3\x41\xe2\x5a\x0d\xc1\x20\xb8\x55\xcc\xcd\x16\xdd\x09\x32\x14\x3b\x5e\xec\xed\x03\x25\x4d\xd8\x3d\x32\xbb\x07\x75\x0c\x38\x08\xf7\x81\x13\xe6\xf0\x79\x3a\x1d\x4b\xe4\x10\x5f\xd5\x63\x55\x4c\x32\x7d\x25\xbd\xfa\x33\x15\x4c\x90\xbb\xb2\x65\x91\x8a\xcf\xfa\xb1\xa1\x25\x4d\xd4\x19\xfa\x8d\x97\x52\xbf\xbc\x2a\x6d\xe4\xb3\xf1\x4c\x16\x85\x33\x3e\x40\x43\xba\x60\x73\xb6\x3f\xcc\x77\x6e\x40\xc0\xac\xba\x07\xfb\x96\x08\x6c\x21\x1a\xf8\x47\xb9\x05\x0f\xb6\xbd\xf1\xf7\x76\x3f\xf1\x07\x0c\xad\x0b\x22\x93\x64\x67\x25\x44\xd0\xfb\x0e\x65\xe8\xde\x23\x5b\xe8\x54\x2b\xf6\x93\xf0\x4d\x50\x04\x7e\x6a\xc3\x82\xe0\xd5\x72\x0b\x53\xcf\x44\x7b\x32\x78\xec\x70\xc7\x02\x23\x2c\xb2\x23\xee\xf9\x99\xba\x4f\xb0\x06\xd9\xf0\xa2\x9a\x3c\x9f\xdb\xb1\xe8\xbc\x5e\xb0\xfd\x0d\xad\x3a\xda\xe5\xb9\x7e\x65\x53\xdc\x47\xc1\x9e\x58\xb3\x0b\x75\x9d\x1e\x87\xfe\x4a\x4d\xaf\x54\x57\x6e\x7f\xfa\x3b\x7c\x2c\x6c\x0c\x6b\xd3\x01\xa1\xdb\x20\xe1\xa3\x6b\x1d\xe6\x13\xc6\xda\x7c\x70\x8c\x88\x47\x75\x2d\xe8\x4f\x6c\xc1\x69\xda\xfd\x16\x5b\xd2\xed\xd1\xef\xf6\x52\x8f\xc2\x4a\x24\xac\x71\x13\x38\xb0\xc5\x26\x37\xf6\xff\xa1\x22\x10\x3a\x92\x9e\xec\x38\xd1\x85\x42\x5d\x45\x3a\x05\x31\x39\x35\x81\x7b\x16\x39\x47\xd4\x14\x24\xa0\x8c\x9c\x84\x13\x1e\x0f\x32\xcb\xe2\x59\x51\xd1\x76\x87\x24\x26\x3d\x45\x9b\x91\x6c\x96\xc0\x28\x48\x37\xf7\xc9\x0e\x21\x51\xe8\x8b\xed\x71\x40\xb6\x84\xbd\x08\xa4\xae\xf6\x16\x04\xd5\xb6\x85\x96\xd0\x9f\x23\xe9\xf3\x96\x89\x44\x21\x61\x22\x72\x9c\x40\xc7\x28\xae\x01\xd6\x40\xb2\xa8\xb2\x8f\xa4\x79\xbc\x39\x23\x79\x9f\x85\xe2\x6d\xa3\x6b\x84\x70\x1f\x49\xd8\xba\xe8\xe4\x9e\x04\x2f\x20\x4a\xd0\x6a\xac\x37\xe7\xba\xa9\xfb\xf6\x9a\x21\x66\x60\x90\x98\x32\xc7\x79\xa6\x6d\x88\x08\xd7\x4e\x47\xd5\x2e\xda\x99\x70\x15\x78\xe8\xa8\x13\xdf\xad\x0e\xe2\xf4\x70\x3b\x3e\xc6\xdb\x1a\xa3\xa5\x0d\x2a\x1a\x06\x2d\x72\xad\x8e\x5c\x96\xbb\x14\xb6\xf2\xe9\x45\xc8\xaa\xd5\x5a\xc2\xf3\xe1\x6b\xb5\x78\xf6\x7e\x2d\x1e\x8b\xc9\x74\xaa\xbf\x18\x9a\xff\x4d\x16\x50\x8d\x53\xad\xe3\x59\xb5\x0e\x60\x6a\x7e\xb3\xa7\xb4\xb5\xac\xc1\xd1\xc2\xc5\x62\xd1\xeb\x22\x6f\xfa\xd1\x28\xfe\x69\x05\xda\x67\x3c\xd3\x67\x32\x82\x84\xe9\x35\xc9\x07\x52\xfb\xfb\x8f\xf1\x2f\x30\xa9\xc1\x70\xcb\xd0\xe6\x24\x3f\xa5\x8c\x2f\xcc\xe4\x92\xbe\x88\xfb\xe2\xf0\x74\xc0\x7a\xe8\x0d\x45\x2f\x61\x4a\x89\x15\x2c\xab\xec\x80\xb1\x94\x65\x56\xa8\x9f\x40\x33\x9d\x62\x53\x18\xb5\x0b\xdf\x18\x61\x07\x63\x57\x6f\x2b\x39\xd6\x4e\x40\x0b\x5e\x9f\x9c\x98\x22\x9e\x90\x4a\x42\x36\xa7\x3e\xd0\x39\xf3\x3d\xd4\x51\x40\x43\x07\xce\x12\x83\x53\x88\x30\xbe\x9c\x7b\x6d\x43\xc7\x88\xe0\x5a\x82\x9a\x27\xe6\xef\xd3\x9d\xa7\xc6\xee\xf7\x91\x47\x12\xdf\x89\x4b\x11\x36\x48\x1e\xa8\x40\xd5\x22\x9b\xd3\x0e\x50\x5b\x24\x46\x60\x7f\x2e\x18\x07\x30\x4a\x2b\x99\x48\x5c\x5f\xdb\xb7\xdf\xde\x77\x10\x2b\xcf\x14\x59\xf2\xf4\x60\x28\x64\x63\x69\x13\xe5\xc2\x6f\xa9\x95\x22\xea\xe6\x00\xc5\x3b\xf2\xbd\xc4\xa0\x7b\xb4\x6d\xc3\x22\x22\x87\xc2\xfd\x2d\x36\xcd\xfe\x15\xee\x4f\xa7\x16\x2c\x4c\x6d\xf7\xb4\x2a\x2f\x95\xb7\x79\x41\x7c\x6d\x2a\x4b\x5a\x0c\x12\xa0\x1a\x06\xac\x3c\x40\xb0\xa8\xea\x7c\x91\x97\xf0\x12\x67\xfd\x9a\xc9\xab\x01\xc2\xd4\x8b\x5f\xcd\xaa\x6e\xa0\x2b\x2c\x96\xeb\x5c\xac\x37\xe7\x45\x3e\x4b\xe5\xfe\x78\xa7\x35\x62\x45\xeb\x32\x4d\x28\xb8\xb7\x45\x72\xb8\x83\x6c\x62\xa8\xcb\xf6\x9f\x9d\xb7\xb5\x4c\x25\x8e\x52\x57\x49\x79\x25\x3d\x6a\xea\x49\xc9\xd4\x34\x48\xf6\x98\x90\xcc\x3e\x42\x72\x24\x0b\xaf\x41\x9a\x4c\xd7\x83\x8b\x9f\x52\xc0\x4e\xec\x37\xa3\x20\xf0\xa4\x33\x11\x08\x83\x4a\xfa\x30\xb0\xd1\x4b\x81\x8d\xd7\xe8\x3c\x2b\x89\x33\x81\x83\x83\xdf\xc2\x2e\xcd\x62\x93\x1f\xda\x7d\x04\xd2\xb7\x3b\x0f\xf6\x22\x09\xc3\x34\x6e\xcb\xaf\x6c\x9b\x24\x62\xef\x79\x23\x04\x77\x5c\xe1\x21\x39\x2d\xbb\x3b\x2a\x4c\x1f\xda\xaf\x0f\x31\xb5\x8a\x83\x71\x92\x81\x29\x04\xdd\x0f\x9d\xf4\xf6\xba\x66\x82\xba\x5d\x74\x32\x71\xb5\x25\x1f\x87\xf8\xaf\xf8\x79\xc5\xd6\x60\x3f\xa7\x5b\x14\x49\xee\x5c\xfe\x5f\x1d\xd2\xff\x21\x3a\xa4\xed\x2f\xa7\x7b\xb2\x9c\x9e\xf2\xf8\x1a\xf7\xdc\x97\x5a\xcd\x79\xc3\xbb\xfd\x93\xe9\xf4\x6a\x74\x7a\x7f\x00\x35\xfe\x9b\x2f\x25\x7e\x25\xe1\xa1\x65\xb9\x22\x50\xe1\xc1\x78\x7f\x17\x46\xcc\x20\xd9\xdd\x5a\xcd\xb9\x35\xe7\x38\x20\x25\x0b\xd5\xbc\xa6\x30\x85\x6a\xce\x93\xd5\x84\xae\xbf\x2d\xb3\x99\x95\x6c\x66\x4b\xc4\xb8\x10\xef\xed\xbb\xac\x4b\x2d\x62\x35\x25\x50\xf5\xc3\x07\x11\xa5\xb0\xe3\x9f\x13\x41\x85\x43\x63\x8c\xc4\xe3\x52\x18\xa3\x55\x87\x09\x23\x02\xf5\xfc\x27\xa7\x5b\x79\xea\xc2\xb4\x81\x73\x28\xc6\xd0\xa1\x38\xb6\x88\x0a\x3e\x81\x99\x4d\x50\x0f\x59\xcb\x72\x96\x20\xd8\xc3\xd8\x5d\x48\x90\x96\xe1\xc3\x07\x06\x33\xaf\x2a\x18\x6c\xc9\x04\xcc\x16\xef\x05\xe1\x9b\xe4\x8d\x41\xfb\xff\x8a\xb0\x7f\xae\xfb\x88\xc0\xaf\x40\xdf\x8f\x87\xe2\x95\xcf\xf3\xcc\x6f\x69\x9b\x83\xc3\x90\x4d\x5f\x71\x9b\x00\x66\x1d\x8e\xcc\x00\xbc\xb5\x1f\x72\x77\xeb\x5a\x69\x43\xcb\x99\x00\xd7\x29\xc2\xf1\x39\x6e\x21\xc8\x8e\xe7\x88\x9a\x74\x90\xe5\x77\x38\xc6\x3b\xf1\xe7\x78\x25\x6e\x8c\x77\xc1\x18\x7c\xd5\x6e\xb1\x7e\x94\x77\xf1\xcb\x31\xae\x70\x60\x57\x6a\x05\x45\xb4\xe8\xc5\x80\xa6\xb2\x28\xc4\x3d\x71\x7e\x4d\xe9\xb3\x60\xfe\x95\x33\x92\xba\xe7\x73\xd4\x12\x4b\xc3\x1f\x03\x7d\xb7\x38\x13\x6f\x72\x76\xaf\x67\x4d\xb6\xc4\x13\xfb\x91\xf0\xa3\xcf\xc9\xa3\xc5\x0b\x83\x75\x34\xb8\x17\x83\xb1\xdd\x4e\x2b\x3c\x98\x44\x12\x23\x17\xaa\xa1\x90\x33\x64\x82\xc7\x68\xcf\xba\x56\x97\x2f\x23\x36\x7a\x32\x11\x36\x16\x90\x8b\x40\x6d\xb3\x53\x38\xab\xe4\xb2\xba\x12\x57\x98\x54\x5a\xe4\xa5\x29\x86\xa4\x9c\x94\xb8\xd7\xc9\x5c\xac\xf7\xe8\x22\x03\x89\x86\x55\x18\x46\xc1\xce\x8e\xf8\x47\x1f\xd7\xcc\xca\x37\x11\xfa\xe7\xe5\xe2\x1f\xea\x12\x32\x22\x71\xc9\x71\xcc\xbf\x51\x93\xa8\x7a\xf8\x33\x32\x0c\x3e\x34\x12\x3a\xaf\x70\x9f\xd9\x7a\x86\x02\x6b\xb0\xae\x40\x7a\xe5\x4e\x33\xbe\xab\xb0\xe3\x38\x7a\x99\x27\x50\xa1\xee\xf5\xbe\x38\x4c\xd8\x95\x78\x9c\x05\xf9\x06\xaf\x25\xad\x1a\x37\x3d\x73\xd6\x66\xcb\x22\xcf\x1c\xe2\xb2\xd0\x4b\x24\x22\x06\xf6\x96\x01\x6e\x71\x15\x5f\x27\x83\xdc\x32\xcf\x49\xc5\xb4\xd8\xca\x2f\x07\xf6\x12\x5b\xcc\x1c\x30\x7b\xa8\x8d\x53\xcf\x5e\x7f\xc7\x2d\x19\x27\xda\xa6\x80\xea\xd9\xab\xb8\x4d\xf4\xba\x2c\x55\x80\x20\x12\x53\x60\xa8\x9b\x21\xaf\x89\xb3\xfe\x28\x55\xff\xa9\x8f\xd3\x4f\x4d\x99\x9c\xf8\x88\xdf\xc5\x77\xdc\x10\xf7\xee\x89\x3b\x89\xf6\x09\x6b\x17\x8f\x86\xec\xb0\x3b\xb8\x04\x27\xbe\x95\xec\x96\x62\x1e\xd3\x38\x2d\x32\xcb\x04\xa8\xf6\xd5\x86\x8f\xd8\xcc\x30\xc1\xe9\x3a\x0c\x96\xfe\x43\xfe\x3b\x2f\x2c\xcd\xb0\x97\xb8\xed\x85\x79\x3b\xbc\xdb\xe8\x06\xcc\x9a\xcc\x16\xf8\xd1\x27\x13\x20\xcb\x01\xff\x67\xe8\x30\xb9\xaf\xd8\x5c\xc7\x21\xad\xbf\xe3\x37\x76\xc0\x36\x19\x21\xb3\x8d\xff\x6a\x5d\x07\x86\x9b\xd3\x41\xff\x9a\x67\xcc\x22\xed\xa8\x25\xe7\x8e\xa7\x1d\xb2\x51\xf9\xfb\xbd\x3f\xd1\x9f\xa6\xf2\x11\x5b\xd4\x3e\x22\x50\xfd\x04\x11\x92\x92\x78\x14\x1a\xdf\xbc\x82\xa5\xb3\x84\x12\x94\x2d\xc0\xe7\x58\x26\x22\x03\xfc\x57\x53\x09\x55\xea\x4d\x6d\x73\x0a\x40\x2e\x37\xf7\x9a\xd3\xb1\x64\xc4\x17\x6e\x38\x68\x06\xfe\xb1\xa8\xae\x84\x7a\xbf\x56\xb3\x46\x8b\x55\x55\x3b\x5a\x24\xce\x37\x0d\x3a\x2e\x99\x81\x7b\x8d\xb0\x7e\x3a\xc1\xbc\xbf\x2f\x33\x31\x37\x5d\x64\x95\xd2\xa6\xd6\x45\x09\xc6\xec\xb9\x46\x13\x22\x59\x5c\xc9\x6b\x73\x8f\xd9\x28\x86\x40\x52\xd0\x71\xc7\x5c\x70\x66\x65\xf6\x85\x6f\xa5\x9a\x65\x15\x76\xcf\xcd\xc0\x6c\xb1\xdf\x43\x87\xfa\xfe\x85\xc7\x6e\x64\xd7\x96\xb5\x4e\x0b\xdf\xbc\x14\x3b\xdd\x69\xc9\x16\x33\x01\x9e\x80\x76\x68\x09\x42\x1b\xcb\xf0\xf7\x0e\x35\xc0\x4f\x96\x0d\x39\x18\x1e\x4c\xbe\x88\x02\xc7\x8a\xb2\x1a\x5d\x4a\xe4\x27\xe6\xaa\x1e\x35\x6a\xb5\x2e\xcc\xa1\xb7\xd1\x3d\x36\xeb\xb5\xaa\x67\x52\xab\x57\xb2\x69\x54\x5d\x1a\xc9\xef\xe4\xfb\xd1\xff\xff\x74\xb2\x20\x5f\x4c\xcd\xbe\xfc\xd7\x4a\x8f\xa8\xe1\x8c\x9c\xfd\x7e\x0d\x15\xca\x4d\xf5\xd7\xeb\xf5\x52\x95\xff\xa8\xae\x54\x8d\x22\x52\x68\x35\xdb\x1b\xf5\xc4\x7d\x01\x1f\xc6\x4d\x05\xd5\x9e\x4a\xad\xfa\x83\x96\x6a\x1a\xfa\xb1\xa1\x62\xc1\xb1\x88\xbd\x34\x43\x98\x7d\x70\x27\x0c\xb5\x01\x58\x27\x16\xda\xa0\x26\xea\xdb\xa7\xe1\x73\xd3\xf2\x27\xf4\x6f\x00\x6d\xa0\xa5\x19\x31\x50\x86\xe1\xb2\x06\x6c\x39\x7d\xd6\xb5\x78\xec\xa1\x35\x6e\x94\x6e\xfa\xd0\xfb\x40\x3c\xa1\x55\xe3\x60\x47\xf8\xef\x20\xbd\xa3\xed\x65\xc3\xce\x92\x12\xc0\x7d\x25\x35\x80\xfb\x3d\x02\x14\x1b\x99\x79\xf4\x82\x98\x37\x56\x5a\x9f\xc9\x95\x2a\xc0\x06\x0f\xcd\xf3\x20\x13\x21\xfa\xc1\x35\x95\xc8\xa4\x5e\x3a\x01\x3e\x6b\xcb\xe7\xa8\x83\xb9\x41\x44\xc6\x2f\x16\x85\xe9\x53\x5b\x4e\x9f\xe1\xc8\xb0\xbb\xfc\xc6\x26\x36\xe1\x12\x53\x98\x31\xab\xd4\x1d\xf7\xbc\xd5\x14\xc5\x17\xfc\x68\xe4\xdc\x47\x9e\x60\xd3\x23\x0f\x27\xa0\x6c\xf6\xf0\xba\x51\x9d\x32\xa8\xad\x7d\xb7\xc8\x05\x9f\xc6\x73\x59\x14\xe7\x72\x76\x11\xea\xb2\xc3\x68\x75\x71\xcd\x81\x1f\xc7\x97\xda\xc1\x7c\xc9\x78\x25\xd7\x7d\x06\x23\x4a\x79\x9c\x6e\xdb\x82\x25\x1b\x2f\x41\x57\x5c\x27\x61\x7a\xe2\xef\x0b\x43\x8d\xb7\x60\xc2\xf9\xb5\x6d\x9a\x97\x0b\xd4\xdf\x98\x31\x2c\x86\xa8\x3a\xff\x77\x0a\x3b\x42\xed\x4d\xfc\x84\x00\xe3\xe1\x19\x6f\x3d\x21\xb4\x79\xd4\x5d\x80\x1e\x84\xd6\xe5\x7f\x05\xc5\x2c\x31\x21\x10\x66\xef\xbb\x79\x55\x36\xa3\xb9\x9c\xa9\x21\xdd\x25\x68\xa8\x7d\xa9\xd0\xa5\x78\x5d\xd8\x98\xaf\x06\xc5\x64\x29\xa4\xe9\xbc\x25\xfc\x26\xb2\x7f\x20\xe0\xbb\x53\x7f\xd0\x3b\x18\x65\xfa\x48\xed\x9a\x4d\x02\xb2\xc5\x8b\x26\xb0\x4d\x8e\xae\x91\xf6\x89\xea\x60\xfd\x9f\x2e\x65\xb9\x50\x60\xc1\x88\xa1\x11\x87\x02\x6f\xf8\x96\xa2\xbc\xeb\x28\xb5\x5f\x3c\x82\x08\x8f\x5c\xd4\x72\x67\x0d\xf4\x1a\xe2\x71\xeb\xf0\xf9\xd4\xa2\x57\x12\x42\xf5\x7b\x0c\x34\x5b\x00\x34\x37\xf2\xff\x59\xc3\x2c\xc2\x9e\x07\xa9\x99\xd4\xce\x70\x33\xac\xec\x9c\xec\xcd\xe0\x4f\x0d\xeb\x02\x2c\x47\x0e\x31\x76\xd1\x00\xda\xe1\x3e\x5a\xae\x5f\xa1\x64\x06\xec\x14\x7c\x81\xa8\x19\xf2\xbc\xba\x54\xe3\x1d\xaf\x12\xb7\xb9\xcd\x9d\xde\x9f\xed\xd1\x51\xf8\x73\xdb\x85\xef\x0e\xd3\x23\x7e\x2d\xfc\xda\x8e\xd2\x95\xb4\x33\x5c\x1b\x8c\x6e\x55\xa5\x98\x5d\x4f\x20\x0a\xda\xfa\xbd\x38\x12\xbd\xf5\x7b\x6b\x85\xb8\xd2\x3b\x9b\xac\xb4\x69\xb2\xd2\xb6\x89\xb9\x3c\x51\xcf\xb4\x63\x28\xaa\x77\x24\x7a\xff\x8b\x7b\xec\x5b\x6b\x24\x48\xa5\x3e\x42\x23\xab\x11\x01\x60\xb4\x29\x73\x4c\x6a\xe8\xb6\xcf\x94\x68\x4f\x93\x40\x8a\x75\x86\xf0\xde\x2f\x9d\x3a\xf8\xd9\xd4\xb6\x31\x25\x80\x49\xcd\x57\x98\x24\x62\xed\x62\x62\x99\x4f\x3d\x69\x3f\x8c\x32\x55\xc8\xeb\xde\x91\x58\xe1\x83\x37\xff\xb2\x41\x67\x15\xff\x71\x32\x11\x7f\x91\xb3\x8b\x45\x5d\x6d\xca\x2c\xee\xf2\xdc\x7d\x19\xad\x2b\x9d\x53\xcb\x35\x7a\x03\xa7\xbe\x8e\xde\xef\xf8\x7e\x9d\xfe\xae\xf3\x7f\x2b\xff\xc5\xcc\x09\x33\x3a\xbf\x0a\xe6\x73\x0e\x85\xac\x03\xf8\x3d\x3a\xaf\x9a\xa6\x5a\xf5\x3a\xca\x47\x85\x9a\x37\xa3\x5a\x66\xf9\x46\x77\xd6\x01\xc9\x63\x57\xa5\xab\x3c\x6b\x96\xed\xaf\xa6\xff\x74\x69\x57\x8b\xae\x71\x60\x16\x1d\xc5\x5d\x7d\x35\xd5\x3a\x59\xb8\x7d\xd9\xa6\xc2\xf6\x35\x9b\x1a\x1d\x43\x46\xc5\x93\x89\x78\x21\xeb\x45\x1e\x23\xe4\x0a\x0a\x7d\x6b\xfc\xdd\xde\x2d\x2a\x8f\xc0\x48\xa5\x31\x48\xa8\x38\x58\xb5\x91\x38\x65\x96\x19\x0e\x20\x9c\xc1\x1a\x4b\x7d\x6b\x2a\x68\xcf\xc1\x7e\x88\x26\x61\x8b\xe3\x59\xd8\xf2\x78\x1a\x2f\xa4\xbe\x88\xcf\xd0\x4a\xea\x8b\xf4\xf9\x08\xbf\x5c\xc7\x5f\x5a\x67\xe2\x17\x03\x77\x30\x3d\x5d\x2a\x90\x94\xc3\x91\xb0\xd0\x35\x80\x5d\x62\x5d\xe6\xe5\x08\x6b\x04\xe3\xbc\x4f\x14\xe6\x65\x6b\xe7\x4d\xc5\xf6\xb6\xbf\xa2\xb9\x47\x13\x41\xe8\xba\x8a\x06\xa6\xee\x47\x53\xad\xdd\xdf\x75\x30\xdf\xc9\x44\x1c\x2f\x65\x56\x5d\xb5\x88\x50\xf5\x7e\xa4\xe1\x0b\x9b\x50\xa3\xde\x37\xad\x52\xb8\x39\x8b\xcd\xaa\x45\x1a\x67\x50\x3a\x5a\x48\x7e\x56\xa8\xd0\x5c\xc8\xe9\xd2\x16\x14\xe8\x5b\x1b\x10\x3f\x56\x25\xa6\x6c\x30\xd3\x8a\x07\x07\xf6\x2e\xdc\x4c\x5f\x66\x68\x75\x23\xd9\x97\x02\x02\x7e\x8e\xf4\x5a\xce\xf2\x72\x11\xaf\xd8\x30\x3e\x65\xd3\x82\x43\x53\x57\x17\x2a\x5d\xda\x5a\xc4\x55\x55\x67\xed\xee\x0d\xf2\x56\x89\xbd\x5c\x41\x21\x43\x04\xf8\x3d\xaa\xe6\x73\xad\x9a\xa0\xf9\xcb\x4d\x43\xf9\x5e\x78\xfb\x0a\x4b\x7d\x07\x54\xd0\xea\xc1\x7d\x48\xa0\x99\xaa\xf5\x5a\xcd\x9a\xfc\x32\xee\x7d\xed\xbf\xb0\xc3\xe9\x0b\x47\xf8\x8e\x8b\xa7\x0e\x2f\xef\xce\x3a\xd7\x51\x1d\xc3\x03\xd6\xb2\xd4\xf3\xaa\x5e\xc5\x5b\xda\xd8\x0f\xd4\x38\xee\x3e\xfe\xde\x9e\x40\xab\x46\x3c\x7c\xbb\xc6\xbf\x3b\x26\x98\x3a\x82\xd8\x3a\x4f\x72\x03\xfc\x53\x8a\x1d\xf8\xbe\xc8\x17\x25\xc4\x10\x8a\xfa\x04\x31\x6b\x26\x8b\x91\x34\x35\x38\x36\x17\xea\xfd\xe8\x5c\xea\x5c\x07\xfb\x76\x5c\xad\x94\xa8\x65\x99\x55\x2d\x00\xea\xa5\x5c\xab\x11\x12\x73\xdf\xc6\x1c\x08\xde\xc1\x7f\xd6\x79\xcc\x92\x2c\xea\x3c\xf3\x03\x9b\x5f\xd1\xa9\x86\xa2\xba\xba\x4a\x15\x27\xc9\x00\x7c\xb1\x6a\x26\xd3\x52\x77\x7e\xc4\xf6\xad\xef\x72\xd3\x54\xc9\x86\xf0\xa1\xd5\x68\x32\x11\x3f\x55\x8d\xcf\x7a\xe8\x17\x38\xa6\xcf\x3f\x53\x2c\x0d\x09\x0f\xc7\xb9\xd6\x1b\x52\x58\x73\xfe\x12\xa3\x0b\x89\xbc\x6c\xd4\x02\x77\x71\x1c\x91\xcb\x90\x19\xf3\xc5\xd7\xe9\xe2\xf3\x62\x53\xa7\xbf\x60\xee\xa6\x98\x7c\xc1\x69\x6d\xdd\x1e\x8c\x30\x07\xe3\xf3\xf2\xeb\x8e\x72\x37\x03\x8c\xaf\xc5\x74\x42\x45\x55\x2a\xd4\xaf\x92\x4b\x27\x44\x97\xcf\x32\x2d\x64\x5a\x3d\xc0\x52\xc4\x04\x26\xf6\x32\xcb\x9e\x5a\x89\x24\xfb\x27\x56\xea\x57\xe7\xef\x98\xaa\xa7\x76\x16\x25\xfd\xd1\x89\x1c\xfd\xfb\x74\x40\xc6\xcf\xc1\x7b\x4f\x22\x69\x64\x5f\x37\x75\xac\xc8\xd3\x4d\x7d\x72\x78\x3a\x6e\xaa\x9f\xd7\x6b\xab\x38\x0c\xac\x72\xf0\xdd\xf1\xea\xe5\xf9\xbb\xa4\x66\xe9\x2d\x99\x1a\xf9\x29\x0a\xaa\xee\x72\x53\x54\xf6\xef\x47\xad\xcf\xec\x51\x21\x78\x51\x18\xb4\xdb\x85\x92\x21\xf6\x61\x45\x3a\xd0\xbb\x92\x18\x92\x04\x20\x17\x55\x06\x4c\x30\x7a\xad\x66\x9b\x5a\x1b\xba\x9d\x29\xb5\x26\xab\xdb\xb5\xd4\x1a\xec\x82\x08\x7c\x6d\x45\x5c\xde\x80\x38\x45\x4a\x7e\xd2\x07\x84\x36\x9a\xf0\x42\x43\xc1\xf3\x22\x29\xdb\x7e\xde\x9a\xa2\x21\x65\x97\x80\xce\xbc\x5d\xd6\x08\xc5\x46\x9d\xe4\x06\x6e\x89\xd9\x41\x82\xc2\xb6\xf1\x64\x2b\xb3\x84\xf3\x3a\x4f\xa6\xe9\x09\x54\x09\x3d\xa7\x2f\xe3\x46\x8e\x4c\xdb\x53\xaa\xfa\x15\xa9\x1d\xc3\x20\x82\x6c\xba\xb6\x12\x9f\xb6\x2b\x1c\xb6\x6a\x25\xdc\x45\x3b\xe2\xb1\x7b\xfc\xdc\x6b\x22\x6f\x93\x33\x81\xb5\xde\xc7\x38\x1e\xe2\x3e\xeb\x6a\xd8\x6e\xb6\x65\x6a\x3b\xe1\x1c\x27\x41\xb3\xe8\xec\x6d\x59\xc9\x03\xfa\xc3\x07\x44\x73\xa7\x60\xf5\xfb\x62\xca\x13\x71\xde\x71\x2c\xec\x2c\x70\x9f\x16\x4f\xa0\x94\xd0\x8e\x67\xf0\xc7\x20\x53\xe2\x3e\xcd\xf0\x3e\xd4\xeb\xd0\x9f\x21\x46\xc6\x4e\x48\xc1\x49\xb5\x58\xcf\xb5\xa6\x59\x86\x53\x6a\x2a\x51\x6e\x56\xaa\xce\x67\x51\x66\x97\xe0\xb4\xb1\xc3\xdb\x6f\x1f\xb2\x2d\xd9\xac\x5a\xb9\xac\xd8\x33\x85\x53\xfb\x64\x3e\x1b\x54\x9a\xf6\x86\xaf\xc8\xb7\x89\xd6\xb1\xbf\x1d\xc0\x74\xbf\x67\xf9\xc0\x1b\x3e\x3a\xe7\xc1\x83\x5c\x6b\x75\x5d\x71\x67\x5a\xef\x68\xbb\x75\x9e\xf1\x0d\x92\x24\x86\x1d\x13\xf8\xfd\xd5\x7b\x0c\x79\x76\x18\xf6\x82\xd6\xfa\x1f\xf9\x85\x7a\x53\x21\x45\x96\x75\x3d\x14\x85\x2a\x19\xb2\x41\x46\x27\xca\xb2\xf3\xe1\x83\xf9\x28\xbe\x15\xb2\xae\x9d\x8d\xbb\x4d\xf9\x54\xfb\xec\x0a\xd3\x96\xa3\xd0\xd0\x54\x78\x18\xa4\x7f\x32\xc3\x20\x91\x87\x7c\x4f\x9c\xb6\x9b\xba\x48\xd8\x65\x5d\xdb\x80\xec\x21\x20\x4d\x95\xd0\x2e\x16\x16\x43\xa1\xe9\xff\x5a\x15\xca\x05\x52\x1f\x4f\x5a\x9f\x78\xe4\x74\xd8\xcc\xf3\xc2\xc2\xc0\xb7\x8a\x3e\xf0\x36\x9b\xd2\x85\x42\x78\xde\xd5\xbc\xbb\x0e\xef\xa9\xac\x4a\xfb\xf5\x18\x58\x3a\xdf\x41\xeb\x13\xb4\xeb\xdc\xcc\xa6\x7a\x5a\x95\x7a\xb3\x32\xf5\xdd\x6e\x86\xef\xa6\x2d\x38\x60\x95\x0f\x1f\x62\x20\xb8\xf2\xee\x45\xb8\x2a\xad\x69\xf6\x07\x89\x8d\x61\x58\x16\xed\x0b\xfb\xb2\x7d\x81\x1d\xb3\xff\x35\xcd\x5c\x98\x6f\x83\x60\xe1\x11\xa2\xdb\x59\x76\x8e\x17\xc3\xc4\xfc\x66\xc3\xd1\x45\x73\x7c\xbd\x3a\xaf\x0a\x32\x80\x75\xe6\x65\xd3\x03\x71\xef\x1e\x7d\x1b\x23\xb9\x40\x47\x6e\x7c\xe9\xc4\xbe\xdc\xf4\x70\xe6\x06\x2c\xf8\xe1\xb7\x81\xdf\x96\xbd\xac\x86\x62\x95\x97\xff\x08\x0e\xfe\x9d\x2a\xf0\x75\x60\x4b\xae\xe0\xe6\x99\x1e\xa0\x87\xef\xf4\xa0\x1b\xcc\xbe\x5f\xe7\x2f\x57\x7a\xb7\x01\x6f\x8d\x6f\xaf\x53\xb4\xc3\xaf\x06\x63\x5d\xe4\x33\xd5\xff\x66\x28\x46\x14\xfb\x17\x1c\x70\x68\x5c\x6c\x8e\x20\xae\xc6\x90\xd9\xa4\xde\x80\x65\x12\xf4\x1e\x14\x79\x8b\x37\xde\xc3\x0b\xb9\x9e\x1e\x00\xf2\x52\xc1\xb1\x6a\xd8\x3a\xd8\x7e\x54\xed\xe1\xbf\xb7\x86\xf9\xd8\xc5\xe4\xbf\xfa\x4f\x8e\x7e\xce\x3f\x3c\x1f\x94\x4d\xff\xc9\xd1\x37\x1f\x0e\xbf\xfe\xf0\xe5\xc3\x41\xff\xc9\xd1\xd3\x42\xae\xd6\x2a\x1b\x3c\x81\xfe\xee\x4e\xf0\x3d\xbf\xdc\x82\x96\x01\xbc\xb6\x22\x67\xe2\xd4\xe1\xd6\x35\xcb\xba\xba\x02\x32\xfb\xe6\x7a\xad\x9e\x41\xe4\xf3\xe9\xc1\xf3\x12\xa3\x94\xcb\xc6\x48\xce\xc0\x86\xa0\x04\x69\x8e\xef\xc8\x62\x3a\x4b\x68\x32\x2d\x9f\x97\x68\xf6\x43\x16\x87\xb6\xce\x10\x5a\xc0\xcc\x49\xf0\xd3\x62\xb5\xd1\x2e\x3e\xe5\x49\x84\xf4\xa7\xfd\x01\x19\xde\x8c\x31\x68\x27\xc3\x6c\x9e\x1a\x1d\x5f\x9a\x72\x3d\xca\xcb\x11\x25\xa4\x61\x8e\x0b\x6d\xea\xb6\xdb\xfd\xa1\xd5\x84\x8c\x1a\x26\x36\x2b\xce\x3b\x79\x29\xf5\xac\xce\xd7\x0d\x89\x41\x10\xeb\x51\x6b\xfa\x75\xa9\xca\xcc\x99\x09\x03\xa3\x06\x06\xcd\xda\x5a\x53\x03\x4f\xa5\x83\x9f\xd4\x84\x95\xd8\xdc\x3a\xac\x28\xd7\x6f\xaa\xcd\x6c\x69\xd8\x19\xb6\xfe\x7b\xf7\x44\xaf\xc2\x30\xc9\xba\x91\x75\x03\x39\x6f\xb2\x6a\x06\xa8\x36\xb6\x7f\x3c\xc3\xb0\xfe\x8f\xc8\x4e\x54\xfb\x94\xe7\x59\x25\x64\x79\xdd\x2c\x29\xb1\x8f\x35\xa6\x12\x5a\xd5\x20\x78\x67\xf8\x02\x89\xe6\x62\x6e\x58\xef\xfd\xf0\x12\xf6\x7a\x05\x96\x27\x7a\xcc\x83\xa0\x41\xe8\x65\xf1\x8b\x3a\xbf\xc8\xf1\x69\xb3\x90\x60\xd2\xa7\x6c\x0a\x75\xea\xa1\x6a\x96\xca\x82\x40\x63\x78\xcc\xca\x30\x98\xb6\xa9\x05\x24\x20\x5f\xb5\x8a\x15\x87\x08\xdc\xa7\x5a\xbf\x90\x6b\x9f\xa2\xff\x45\xf5\xef\x23\xd1\x1b\xad\xaa\x7f\x8f\x7a\xc4\x17\xad\x34\x94\x68\x57\xf0\xd2\xfc\xae\xdc\x4f\x1c\xce\x94\x5d\xc1\x5f\xa3\x5e\x2c\xdc\xbf\xb5\xe0\xbc\x8b\xe6\x8b\x00\x55\xf1\xd8\x83\x9b\x15\x97\x4d\xbf\xb7\xee\x0d\x5a\x6e\xaa\xc9\x3e\x02\xbf\x55\x48\x6b\xa3\x74\x43\x2f\xda\x3d\xa7\xba\x6c\xf9\x52\x93\x42\xc1\xae\x3e\xe0\xa6\xd1\x03\xc2\xf5\x93\x60\x91\x01\x23\xbd\xe7\x82\x20\xa4\xb4\xbd\x85\x6e\x4a\x3c\x38\x13\x89\x69\xf8\xb8\x5d\xab\x19\x46\xdf\x6a\xd4\x0c\xb7\xf9\x59\xb6\x50\x16\x7f\xc7\x36\xf6\x87\x99\xd2\x3b\x4a\x48\x82\x80\x06\x47\xc8\xde\x4a\xa3\x71\x93\xee\xb5\xa7\x88\x47\x06\xdf\x76\xdb\xf3\x1b\xaf\xac\xe9\x2e\x3b\x2b\x2a\x5b\x28\xf2\xf6\xee\x9c\xdf\xb1\x9c\xcb\x3a\xdf\x7b\x86\x23\xb9\x5e\x17\x6a\xd4\xd4\x32\x2f\xf2\x72\x31\xba\xaa\xea\x2c\x31\x59\x7f\x84\xa1\x7e\x2f\xe1\x51\xfb\x4f\x4e\x18\x6c\x96\x06\x1b\xdc\x9d\x02\x99\xb1\x69\x05\x8f\xca\xbf\xfe\xfa\x4e\x1f\x09\xbc\xed\x86\x06\x12\xfe\x07\x8e\xec\x7f\x53\x0f\xb6\xe0\xe6\x66\x8b\xaf\x6d\x10\xf4\x15\x56\x62\x86\x79\x87\x0a\x64\x18\x65\xa6\xf1\x87\x1d\x05\xff\x85\x22\x37\x10\xfd\x01\x85\x44\xa5\x8e\xec\x1f\xb1\xfe\xef\x8d\xd2\x8d\x81\xb5\x14\x36\x61\xae\x90\x0d\xbc\xd1\x58\xaa\x74\xae\xec\x91\xcf\x44\x55\x1b\x22\xd5\x32\xfa\xa1\x95\x85\xa4\x76\x1f\x88\x7a\xd3\x31\xea\x62\xb7\xcb\x97\x63\x7e\xfe\x6e\x13\xfc\xb2\x0c\x30\x93\x89\x70\xc5\x10\x38\x8c\x5c\x22\xec\x02\xc6\x42\x8d\x17\x63\x32\x1d\xeb\x7d\x67\x29\x8b\xcf\x15\x2c\x7b\x16\xf7\x2e\xd4\xf5\xc9\x21\x59\x7f\x8f\xbc\xdc\x6b\x0e\x28\xea\x99\x59\xce\x0f\x58\xee\xf3\x67\x13\x73\xd4\xc6\xe2\x65\x61\x48\x30\x2d\x53\x07\xc6\x26\x8c\x77\x63\xf1\x1d\x59\x30\xf7\x99\x2c\xf3\x8d\xc6\x8c\x6c\xff\xa1\x95\xac\x67\xcb\xc7\x6e\x76\x53\x96\x8c\x08\xfc\x93\xed\xf9\x58\xe9\x70\x82\x4c\x56\x98\x1e\x7c\x87\x81\x1a\xb0\x85\x39\xb3\xf7\xc5\xf4\xc0\xf7\x49\xee\x59\xd6\xfd\xf9\xf0\xc1\xc0\xa5\x30\xdd\x3e\x2d\xb9\x5e\x2b\x59\x1b\x36\xc3\x85\xae\x82\x12\x55\xce\x5c\xa2\x8e\xb2\x02\x3f\xd9\xa2\x38\x12\x27\x3d\xdf\xa0\x77\x8a\x8f\x12\x16\x16\xd6\x62\x93\x27\xf5\x88\xbf\xf5\x03\x09\xde\x29\xf4\x40\x37\xc1\x7a\x76\x70\xe0\x1e\xca\x3b\x40\x36\x3d\xb0\x88\x40\xa0\xaa\xd6\xa1\x73\x45\x00\x3c\xf7\xf9\xc6\x9d\xa5\xed\x80\x9a\x55\x45\x55\x8f\x64\xf6\x6e\xa3\x1b\x0b\x2a\x28\xfb\x1e\x8a\x92\xb0\xe2\x6d\x3e\x37\xb4\x82\xbe\xf7\x85\x17\x91\xe0\x41\x12\x24\xd3\x83\x75\x9d\x97\x5b\xc0\x17\x43\x2c\x7c\x0c\x38\x19\x4d\xa7\xfa\xf4\x7e\x7f\x3c\x78\x12\x78\x97\x92\xa5\x3f\xe5\xeb\xc0\x74\x8d\xce\xc9\x6b\x26\xd7\x79\x23\x0b\x2a\xef\x24\x49\x60\x5d\x9c\xfc\x32\xdb\x45\x80\xea\xfc\x52\x36\xaa\x4d\x81\xe8\xc5\xc1\x3a\x7d\xce\x42\xe1\x7c\x26\x9e\x88\x59\xf8\x2a\x61\xe3\xc6\x24\xa2\x39\x84\xc6\xb6\x44\x32\x81\xb5\x02\x3d\xd4\x08\xde\x5e\xda\x56\x96\x76\x0d\xba\xa9\x6f\xb9\x8a\xd8\x18\x33\xff\x37\x7f\x5c\xf1\x4f\x2b\xad\xf7\x0d\x5a\xd1\x20\x4e\x70\xbc\x7b\x25\x6b\xa9\x67\x92\x9e\x91\x3e\xe7\x52\xdc\x42\x70\x80\xe4\x4a\xdc\x1a\xad\x2a\xdc\xd4\x60\x04\xee\x7c\xe3\x82\x0a\x63\xb4\xf8\xa2\x2a\x17\x10\x2c\xde\xbd\x77\xd9\x74\x66\x3b\xcf\xf9\x4a\xea\x0b\x8b\xdc\xe6\xef\xe4\xc1\x36\x1f\x3e\xfa\x40\x0f\x13\x31\x53\xee\x4c\xfe\xcb\xf4\x49\x52\x29\x1c\xfb\xd6\x99\xde\x7d\xaa\x03\xff\x29\x07\x83\xc7\x64\x2f\x93\xaf\xe4\x42\xf5\x22\x6f\x24\x07\x5a\x5b\x7d\x90\x8e\x1c\x1c\x13\x01\xd1\xce\x11\xe6\x67\x75\x9f\x6d\xe6\xbe\xfd\xa6\x68\xb3\xe8\xf6\xc2\xbc\x35\xfd\x86\x77\xd4\xaa\xce\x55\xd9\x50\x62\x2a\xdc\x63\x53\xfe\xd2\x17\x27\xb7\x3b\x6e\xfb\xb9\x69\x79\xab\xff\xdd\x7b\x6f\x39\xe3\xc7\x8e\x37\x06\x27\x36\xfa\x4a\x6c\x62\xfb\x41\xa6\x0b\xce\x9f\x0e\x5e\x2b\x4f\x39\xb8\x3a\xdb\x90\x24\x44\x9d\xf8\xf5\x89\xa7\x28\x1d\x9b\x86\x81\xd6\x0d\xb4\x05\xa6\x2e\x83\x82\xad\x9c\x02\xdc\x16\x58\x7d\x0a\x5f\xe1\xad\x4d\x02\xc8\xe5\xdd\xc8\xe8\x3e\xff\x2e\xb0\xcb\x77\x21\x64\x00\x3c\xa8\xfd\x3b\x42\xef\xaa\xce\x1b\x23\x3f\xae\xaa\xcc\x31\xb0\x54\xf6\xa2\xca\xd2\x1c\x2c\x6f\xf3\xb9\x4f\x72\xd0\xf7\xad\x29\x38\x86\xca\x8a\x39\x5c\x08\xf7\x83\xa5\x56\x28\x87\xb1\x40\x2c\xff\x1d\x8f\xf8\x46\xab\x7a\x84\x9e\x74\xce\xe8\x41\xab\x1a\xc3\x01\x24\x21\xcd\x5a\x7c\x6e\x40\xf3\xae\xf7\x87\xf3\x8b\xea\xdf\x5d\x40\xf6\xa5\x6d\xd2\xfa\x3b\x02\x19\x3c\x5a\xd0\x24\xaa\x2b\x3f\xd8\xba\xd2\xcd\x4c\xeb\x89\xdc\x34\x15\x89\xc4\xf5\x04\x8d\xa0\x26\x5f\xfd\xe9\xf0\x63\x9a\x1d\xfe\xf1\x8f\x76\x4b\x41\x27\x65\x76\x40\xbf\x2c\x32\x97\xaa\xf1\x73\x31\x39\xd0\xfb\xe8\x73\xb2\x39\xef\x34\xa9\xf4\xa6\x07\x58\x01\x2d\x5c\x29\xae\xa1\xe5\x42\xb8\xd3\x98\xdb\x1c\x6a\x6a\xf9\x12\x70\x36\x0b\xe4\x21\xb2\x87\x73\x02\x91\x38\x0a\x04\xac\x9b\x1d\x98\x16\xcd\xf4\x2d\x9b\xea\x1a\xf2\xee\x27\xa7\x18\x4d\xf2\x6d\x7b\x96\xd8\x7c\xf7\xb4\x5a\x32\x21\x47\xc2\x63\x95\x4c\x68\xbf\x0d\x4b\xbe\x7c\xf8\xd5\x78\xea\xf2\xaa\x17\x79\xa9\xfe\x51\x2d\xf2\x99\x2c\x7e\x0b\x4c\xe9\xa3\x31\xfd\x07\xb4\x81\xfc\x40\x16\xe5\x83\x11\x0e\xbc\x15\x83\xb6\x6e\x49\xfb\x46\x22\x0b\x33\xda\x1b\xf0\x9f\xb2\x62\x53\x8f\x86\xeb\x0d\x45\xaf\x37\x48\xaa\x13\x22\x76\x97\x3a\x1a\x74\x62\x95\x1d\xe9\xa8\x63\x5f\x9e\x22\x43\x8e\xcc\x28\x24\x21\xa4\xb7\x03\xd2\xef\x93\xa0\xd3\x6b\x40\x0d\x2d\x36\x1a\x3d\xc1\x4d\xcb\xe3\x63\xa1\xaf\xcb\x46\xbe\xc7\x24\x84\xe3\xc5\xd8\xcc\xe2\xc7\x1f\xc7\xde\x46\xcd\xe9\x00\x3f\xdb\x76\xc5\x22\xda\xba\xbd\xfa\xae\xd5\x7a\x3d\xe9\xe7\x9c\x10\xc6\xc5\xa1\xfd\x80\xe8\x11\xd1\x11\xf3\xf9\x25\xc5\x6c\xa3\x9b\x6a\x05\x90\xbb\x94\x75\x0e\xcf\x6e\x57\xf8\xa8\x4d\x33\x43\xe8\x86\x37\x90\x8b\x27\x31\x8a\xf0\x89\xf5\x1c\xeb\x2c\xad\x4f\xda\x6d\x3a\xc7\x8b\xbf\x5a\xa7\x34\x98\x0c\x7f\x3b\x65\xaf\x8c\x89\x5c\x9d\xf7\x16\x9a\x49\x5f\x0b\xd4\x9d\x09\x6b\x55\x37\x4e\xd3\xb6\x3b\x91\x22\xdf\x12\xdd\x90\x96\x25\x06\xde\xa9\x9d\x4b\x9f\x86\x6d\x57\xa5\x9e\xd5\x55\x51\x8c\x74\x29\xd7\x16\x9b\xb0\xe8\xb8\xf4\x8f\x56\x9f\x81\xe1\x20\xa5\x6a\x5e\x2e\xfa\x0f\x86\xe2\xf0\x70\x40\xa6\x54\x7e\xf8\x5b\x70\x20\x2b\xdd\x91\xe8\x2c\xd6\xee\x7e\x4e\xa6\xa2\xba\x54\x35\x4d\xf7\x5c\x2d\xe5\x65\x5e\xd5\x16\x62\xfe\xd3\x5f\xe8\xcb\x67\x84\x1c\x02\x2a\x31\xfa\xa7\x02\x2c\xba\xa7\xa9\xf7\xd9\x52\xe6\x25\x18\x41\xec\x0d\x38\x6b\xed\xc6\x9e\x39\xd1\x5a\x7f\x51\x83\xe3\x0c\xfe\x40\x1f\xa4\x4b\xd5\x63\xe6\xfc\x7a\x59\xe7\xe5\x85\xab\x52\xaa\x85\x8c\xab\x58\x8b\x7f\xea\x04\x02\x36\xd4\x8a\x9c\xf9\xb0\xde\xbb\x8d\x6e\xf2\xf9\xf5\x68\x56\x95\x0d\x3a\xae\x50\x65\x39\xbb\xc0\x2a\xe4\xd2\x87\xc5\xf0\x83\x9a\x82\x93\xc1\x28\x6f\xd4\xca\x8f\x81\x8e\x07\xfc\x7b\xdc\x31\x18\xa5\x43\xef\xe6\xe0\x53\x25\xad\x8a\x79\xcf\x5c\x36\x18\x15\x13\x12\x03\x07\x9f\xd0\xa4\x1e\x68\xc2\x0d\x50\x0c\xeb\xfe\x59\x15\x99\x30\xfd\x42\xd6\x62\xb4\x02\x78\xf8\xe0\xf0\xa1\xbb\x71\xcc\x37\x53\xf0\x79\xc9\x7b\x78\x5b\xbf\x90\xeb\x20\x56\x07\x06\xa7\xb5\xf7\x70\x82\x37\xf8\x0d\x2f\x70\x86\x4f\x77\x0f\xed\xa2\x0d\x10\x8e\xd0\x61\xc0\xfc\xc9\x51\xc4\xa2\x59\xea\x5b\x96\xd7\x6a\x46\xde\x27\x27\x50\x03\x55\x44\x86\x19\x31\xbf\xfc\xf7\xd3\x00\x53\xb0\x66\x96\x97\xb2\x30\xfd\x6f\xd6\x69\x84\x31\xd5\x38\xbe\xc0\x98\xf3\x02\xe6\xb3\xcf\x70\x29\xdc\x35\xf5\x00\xb9\x10\x1e\x16\x1a\x7f\x57\xd7\x2c\x40\xe9\x85\xba\xc6\x78\x46\x00\xa4\x41\xc4\x0a\x3c\x85\xf7\x68\xaf\x15\xb6\x85\xfd\x75\xa8\x13\x0e\x89\xe5\xa3\xbd\x10\xf3\xc1\x9f\xc6\xfe\x85\x16\x51\xf3\xc1\x9f\x3e\x19\x35\x87\xe2\x6d\xad\xe6\x01\x82\xba\xb8\x04\x8f\xe1\xdb\xd8\xfe\x8e\xb3\xd7\x02\x64\x9c\xb7\x3e\xd2\xd0\x6f\xc3\xbc\xa3\x49\x7c\xbf\x7b\x18\x99\x60\x13\xd6\x87\x56\x77\x16\x95\xb7\x28\x5c\x3f\x07\xf2\x27\x54\xc1\x77\xec\x82\x3b\xe8\x7c\xda\xbf\x80\x3a\xef\xf0\x30\xa0\x9e\x3b\xd4\xcc\xd4\xf6\xe4\xc1\x29\x53\x34\x47\x71\x63\x13\xa4\x40\x74\xa4\xbd\xf2\x6e\x1e\x30\xa3\x95\x5c\xf7\x1d\x26\x76\xd9\x32\xa7\x39\x18\x4a\x29\x22\x1e\x8b\x13\xf8\x2d\xc4\x78\x6c\xf3\x8c\x0c\xa9\x24\x14\xba\x5d\x69\x2c\x63\xb9\x0f\x9e\x8f\x77\x45\xad\x02\xcf\x0a\xb9\x22\x4b\x8c\xa3\x82\x07\x7f\x82\xdf\xa7\xf0\xff\x57\x34\x5d\xcb\xa8\xf6\x9c\x42\xa7\x67\x6d\xab\x17\x55\x5e\x2e\xc0\xee\x08\xe5\x0e\xa4\x1c\x5f\xf4\xdc\x52\xbd\xc9\x81\x44\xe3\x10\x74\x78\x65\xb5\xcd\xa0\x3d\xea\x08\x83\x5e\xf5\xec\xe4\x7a\x54\xcd\x2e\x28\xaa\xe6\x97\xde\x73\x74\xc3\x43\xd8\xbf\x5d\x0f\xf9\xe3\xec\x10\x5e\x72\x86\xb1\xae\x7f\xe8\x95\xd4\x43\xa6\x75\x1d\x72\x0d\xe2\x90\xe9\xb8\x86\xd1\x3e\xb5\x37\x88\xef\x8c\xdf\x12\xbe\x17\x09\x86\x6b\xe8\x37\xc6\xed\xc8\x29\xa3\x9e\x86\xde\xfc\x00\x96\x36\x14\xb0\x94\x92\xd4\xcc\xf3\xa2\x51\x75\xdf\xc7\xaf\x8d\x29\xe4\xb8\x45\xb6\x0c\x99\x1c\x00\x36\xdf\xba\xd5\x23\x9b\xa7\x95\xd0\xe1\x56\x13\x71\xad\x70\x02\xb5\xca\x36\x33\xc5\x1a\xc8\xa1\xb0\x6d\xe4\x78\xbd\xd1\x4b\x0a\xbe\x2c\x87\x29\x53\x6a\xd6\x1f\x85\x60\xb3\x26\x9c\xa6\xfb\xa1\x38\x39\xf5\x97\x0a\x04\xa3\x0c\xc3\x5b\x3d\xea\x36\xbd\x83\x38\x95\x5b\x0c\xcf\xac\xa9\x1f\x88\xde\xea\x52\xd5\xd7\xfe\x85\xb1\x2a\x23\xcb\x19\x92\xdc\x5d\x7c\xe2\xc9\x44\xbc\x84\x5c\xa3\x10\xdf\x6b\x68\xa3\x99\x42\xe2\xd1\xd9\x52\x65\x63\xf1\xbc\x11\x8b\xfc\x52\x69\xb1\xd1\x62\xb3\x16\x4d\x25\xfe\xf8\xe0\x7f\x89\xb5\xaa\xe7\xe2\xbc\xaa\x74\xc3\xed\x4c\x8e\x26\x93\x77\xda\x7c\x02\x4e\x5f\xe1\x24\x29\x68\x14\x9a\x82\x8e\xe4\x6c\xa6\xb4\x1e\x5d\xea\xd1\xba\x90\x79\x39\xf2\xc9\x24\x27\x13\xea\xc9\x6e\x26\x42\x07\x9e\xe5\x2f\xca\xea\xaa\x04\xb3\x30\x6f\x12\x68\xa6\x82\x9b\x26\xe4\xaa\xda\x94\x8d\xa8\xe6\xd4\x03\xab\x74\xe5\xcd\x14\xe7\x4a\x36\x9b\x9a\x00\x25\x1b\x41\x26\xa1\xd1\x02\x32\x79\x99\x67\x57\xb2\xd0\x4b\xb0\x0c\x9e\x20\xfc\x46\x08\x3f\xe6\x2b\x53\xad\xd6\x1b\x0c\x2d\x75\x95\x97\x59\x75\x35\x5e\xa8\xe6\x29\x15\xa2\xfb\x4b\x97\x6d\xa6\xd5\xdb\x4c\x23\x0b\xbf\xbb\x87\x90\xc0\x92\xfa\xe0\x01\x59\xc3\x70\x6b\xa3\x52\xbd\x47\x4f\x4e\x51\x56\xa3\x5a\x19\x39\x70\xd6\xa8\x6c\x84\xf1\xf5\x35\xe3\x38\x73\xfd\x93\xfc\xa9\x0f\x7d\x0f\x06\x14\xa0\xcc\x0e\x70\x02\xc5\xa7\x18\x42\x28\x28\xf2\x66\x75\xaf\x18\xb4\x97\xb2\x11\x33\x59\x96\x55\x63\xa8\xe8\x2c\x32\xb8\x53\x19\xaa\x7d\x0c\x6d\x25\x80\xe2\xfe\xad\x69\x37\xad\x89\x2f\x19\xe1\xb9\xd3\x32\x9e\x57\xf5\x33\x39\x5b\xb2\x93\xf7\x3e\x56\xe4\x50\x08\x3c\x9c\xff\x7b\x9a\xdf\x20\xb4\x7b\xf0\xe6\x66\xfe\x7d\x5d\x7b\x26\x69\xe8\xd2\x80\x7a\x3b\x29\x57\x11\x70\x0c\x37\x1a\xfa\xa2\xc3\xc2\xac\x64\xc7\xa4\x43\xd1\xe2\x0c\xae\xd4\x33\xf3\x31\xcc\x78\xd9\x69\x7f\x00\x52\x67\x68\xc4\x90\x0c\x7b\x76\x42\xaf\x56\xa7\x29\x6b\x85\x0f\x7f\xa9\xaa\x42\xc9\x72\x9b\x8d\xdf\x4e\xd6\xf0\xb3\x78\x8a\x41\xe8\x84\x9a\xcc\x86\x47\x90\x0d\xb4\x56\x25\x0b\xff\x08\x98\xa7\x8a\x94\x1a\x0a\x22\xb6\x23\x5e\x18\xcc\x3f\x57\xe5\x6c\xb9\x92\xf5\x05\x9c\x49\x2d\xaa\x9a\xb7\x81\xad\x71\x59\x9b\x31\x0e\x1f\x37\x54\xeb\x88\x32\xde\x73\xbd\x82\x36\x08\x91\x06\xfd\xc3\xee\xa0\x9b\x52\x3a\x70\x9f\x17\xd7\xd0\xa2\x14\x8c\x9a\xf3\x79\xf0\xe4\x68\x66\xc8\x9e\x6f\x45\x09\xf2\x75\x71\xcd\x90\x2a\x2f\x93\x06\xa7\xde\x47\x94\x77\x47\x69\x68\xd8\x07\x7a\x16\x0e\xf7\xc0\xb9\xb7\x59\x27\x38\x55\xb0\x24\x43\x30\xdd\x1f\xf3\x32\x33\xb8\x0f\xd7\x1f\x46\xfc\x25\xab\x48\x42\x66\x0b\x51\x37\xab\x64\x94\xef\xf8\x6a\x4f\xf2\xbd\x1c\xa4\x8f\xdb\x6d\x4e\xf2\x53\xc2\x37\x3b\x4d\xe6\x08\x0a\x71\x82\x0c\xc7\x22\x8a\xca\x54\xc9\xad\xd7\xe7\xbc\xda\x94\x59\xa0\xe1\x63\xc3\x0c\x98\x59\xf2\x0d\xa2\x92\x56\x8d\x8d\xb0\x16\xae\xd6\x2d\x13\x51\x35\xaf\xd5\xbc\x7a\x0f\x76\x38\xea\x52\x95\xe4\xfe\x60\x7e\xd5\x75\x55\x43\xdb\x9c\x7c\x1f\xfc\xb5\x31\x04\x4d\xf5\x50\x4c\x0f\x1e\x4c\x0f\x1c\xc4\x9a\xfa\xda\x82\xc0\xae\xcc\x41\xc1\xa6\xef\x12\x33\xd9\xcc\x96\xa2\xaf\xea\x96\x5b\x79\xc0\x8b\x4f\xcb\x0e\xf4\x73\xce\xdb\x50\x8c\x02\xbb\x95\x5b\x3d\xea\x30\xc2\x4c\xa2\xa2\xff\x76\x24\x0e\x5b\x41\x23\x2c\x58\x7a\xee\xa3\x55\x7d\x32\x74\xdc\xf2\x2d\xe8\xc0\x0b\xd2\x50\x01\x78\x4f\x9f\xd2\xa1\xff\x5f\xd3\xa9\xfe\xc2\x26\x75\xf8\x30\x14\x7d\xfe\xbb\xff\xe4\xce\xc9\x7f\xf5\x07\xa7\x5f\x4c\xa7\x83\x81\xcb\x09\xa1\x8a\xbb\x87\x81\x79\x1e\xd2\xda\x48\x51\xed\xa7\x33\xf1\x96\x1c\x86\x0e\x2b\x95\x6d\x23\xc0\xdd\x96\x7a\xeb\xc3\x74\xf1\xc3\x8f\x36\x18\x83\x19\xfb\x10\x1f\x4f\x49\x75\x6d\x4d\xfa\xd6\x87\x43\xb1\x7e\xc8\x08\xf0\xfa\x10\x0f\xff\xa5\x64\x0a\x48\xf8\xf5\x28\xae\x22\x8b\x82\x55\x31\xbf\x7c\x95\x87\xa9\x2a\x43\xe1\x2a\xf1\x67\x8d\x7f\x52\xb2\xf5\xf5\xa1\x78\x92\xba\x2a\x0e\xd1\xdf\x79\x88\x01\xe8\x13\x15\x1e\x7a\x97\xa7\x3b\x41\xa7\x9e\xe4\x1f\x02\x69\x7b\xf8\xa8\xa5\x1c\xa1\x9a\x16\xd1\x5b\x2c\xaf\xc1\x84\x1d\xfc\xee\x4e\x3c\xf1\x28\x91\xba\xb5\xa9\x8e\xbe\xcd\xf5\x6d\xd6\x9d\xb6\x4b\x27\x5f\xdb\x8f\xb8\xaf\xdb\xb7\x35\xba\x15\xdb\xf1\x86\x81\x67\xfe\xce\x5b\x37\xb5\xc3\x3e\x86\x21\xdd\xc9\x77\x0f\xed\x95\x03\x97\xeb\x63\x34\xda\x45\x55\x59\x14\x93\x01\xf2\x67\x53\x8e\x6c\xb2\xb7\xaf\x6a\x21\x05\x3a\xe6\x0b\xc9\xca\x21\x22\x66\xef\xb0\x67\x69\xee\x2f\x4a\x5c\x49\xc3\x8f\x97\x85\x7d\x6c\x82\x57\x2c\x4a\xbf\xbd\x54\xb5\x63\xba\x6f\xcb\xd9\x4e\x43\x47\xc3\x70\xc1\xe4\x4d\x6e\xe6\x04\x57\x2b\xb1\xbf\x6b\x59\x6b\xf5\xbc\x6c\xfa\x41\xed\xa1\x38\x7c\x30\x68\xc5\xf0\x8d\x91\xd4\x32\x03\x18\xc4\x1c\x39\x97\x0b\x75\x1d\x5c\x39\x36\x9f\x3c\x77\xa4\x9f\x2d\xd5\xdf\x5d\x14\x59\x80\xf5\xfd\xa8\xef\x5b\x32\x44\x74\x49\x1a\x6e\xe8\x93\x38\xa1\xbb\x87\x27\x76\x76\xdb\xf9\x21\x5e\xd1\x03\xe2\xf9\xb3\xce\x9b\x14\x72\x2b\xad\x14\x58\xe3\xea\xa1\x7f\xee\xc5\x80\xa6\x84\x65\xe6\xa6\x3c\x97\x75\x2f\x75\xa7\x4e\x26\xc8\xc4\xe3\x52\xa5\xc6\x14\xed\x63\x7b\xe1\xde\x3d\x64\x57\xae\x01\x29\x32\x1f\xed\xfd\x4a\xdc\xc0\xfe\x0d\x14\xe8\x80\x27\x03\x2d\x1a\x60\xd9\x9b\x00\x4e\x8f\x53\xaa\x7a\x76\x9d\x53\xae\xf9\x34\xa7\x18\xdd\x9f\x6d\x46\x0c\xf0\x39\x71\xb3\xfb\x85\xba\x75\xb4\x48\x38\xff\xed\x2c\x04\xe2\x5b\x79\xd8\x79\x2d\x51\x04\x02\x1f\x88\x23\x0d\x66\x83\x4b\x3d\x0e\xcc\x7f\xba\x87\x63\x21\x43\x0d\xc3\x78\xdb\x44\xdd\x33\x62\x7c\x10\xfe\x2a\xeb\x6c\x56\x65\x24\x9b\x37\x95\x0d\x42\x2b\xa6\x07\xf3\x42\xbd\x9f\x1e\x98\xb2\xe9\xc1\x68\xa5\xe1\x45\xe2\xbc\x32\x45\x06\xc3\x9e\x3f\x3b\x7c\x90\x78\x16\x76\x03\xc3\x0b\x35\xb5\xea\x0d\xba\xb0\xa8\xc7\x3a\xc6\xcc\x30\x80\x88\xe1\xb5\xe2\x86\xd9\x0b\x15\xf7\x47\x39\x3f\xf7\x7d\x80\xbf\x1b\x3d\x93\x3a\xe5\x9b\x5b\x71\xce\x38\xa9\x2e\x60\x21\x84\x7e\xa9\xf3\x46\x85\x34\x10\x9d\x0b\x3c\x71\x4a\xcd\xb4\x7d\x60\xb7\x10\x1d\x1e\xbc\xe2\x57\x6a\x3a\x4c\xf8\x69\x0d\xdb\x5c\xca\x30\xba\x56\xc1\xbd\x93\xc7\xb2\xdd\xda\x0b\xdd\x10\xad\x5e\x5d\xc0\xdb\x99\xd6\x23\xc4\xfb\x20\x01\x7f\x53\x3d\xd5\x9a\xc6\x8b\x43\xe3\xf2\x48\x2f\xa1\x52\xae\xa9\xb8\xd6\x02\x92\xb8\x5c\x2d\x55\xd9\xe6\x6b\x77\x24\x2c\x43\xb7\x43\xca\x1f\x58\x77\x07\xc2\xde\x95\xcd\x10\x50\xce\xf9\x71\xc5\x26\x63\xb2\x69\x27\x65\x11\x54\x8a\xd9\xaa\x13\x8e\x74\xee\x73\x18\x69\x69\x1a\xc6\x57\x41\x78\xa4\xe2\x74\xef\x95\x9d\x85\xc2\x07\x45\x01\xd7\xa7\x81\x3b\x40\x3b\x52\x93\xb9\x1a\xb7\x86\x9d\x12\xad\x28\x33\x48\x0f\xfc\x03\xcc\xb1\x0f\x93\x4d\x67\x34\x4e\xd1\xc2\x9e\x71\x80\x41\x80\x40\x2d\xf4\x7e\x16\x1e\x5e\x30\x19\xe1\x78\xc7\x01\x1a\x9a\x36\x04\x89\x63\xc2\x36\xf7\xee\x45\x9d\x18\x7e\x00\xdf\xf2\x82\xb1\x9b\x7a\x13\x0e\x3d\xf3\x21\x64\xb6\x4f\x0d\xaa\x00\xaf\x1e\xf1\xaf\xc1\xb8\x43\x76\x24\x2c\x5c\xd3\xd3\xb6\xfd\xf1\x99\xdb\x32\x33\x79\x62\x86\xc3\xf9\xd1\xf4\x79\x87\x6c\x79\x1f\x3e\xf0\xea\xad\x67\x3b\x5f\x73\xd0\x9d\x64\xc3\x6f\x7e\x08\x4f\x62\xa3\x4f\x5b\xeb\x47\x16\x9b\x47\x0f\xef\xf4\x17\xd9\x16\x68\xe8\x33\x06\x52\x6a\xb1\xb7\xfc\x80\x7d\x5a\x9c\xa3\x84\xe8\x92\xda\xf1\x10\x22\xdb\x03\x1e\x25\x52\x94\xc6\x59\x4c\x7f\x8b\x98\x48\x2d\xf2\x69\x73\x9d\x20\xe9\x3d\x36\x75\xcd\xf2\x20\x7d\x01\x2a\xc5\x5a\x71\x0a\xdf\x69\xe4\xba\x4c\xe5\x3e\x0b\x4e\xa8\x4d\x63\x66\x3f\x60\x7e\x03\xac\x1e\x20\x54\x0f\x5b\x46\x4a\x0f\x48\xef\x06\xb4\x0a\xaa\xb8\x68\x4a\x29\x37\x86\x07\xe2\x5b\xac\x45\x49\xcb\x5c\x16\xaa\x94\xb1\x91\xeb\x7b\x14\xf4\x1c\x04\x38\xdc\x1e\x8c\xea\x36\x68\x7a\x5b\x44\x75\xc6\x05\xc7\x14\x46\x81\x94\xcf\xf6\x0b\xee\x41\x68\xb7\x81\x98\x3c\x06\xb0\x9a\xff\x0d\x76\xbc\xe9\x43\x1f\x9d\x2f\xfa\x76\x6c\x20\x03\xfa\x24\x3f\x0d\x73\x78\x40\xc9\x96\xd4\x0a\xb6\x79\x70\xcf\x75\x23\x9d\x43\x98\x80\x3d\xb1\x10\xd6\x9e\x89\xb0\x21\x44\x21\xc8\x31\x1c\xa6\x91\x0b\x5c\xe7\x59\x10\x14\x94\xdb\xad\x28\xf5\x32\x0b\x2b\x85\x79\xb5\x5a\x15\xb1\x9c\x55\x74\x51\xcb\xda\x75\xbd\x23\x29\xab\xcf\x82\x8b\xb5\x5b\xf0\xf8\xfa\xac\xcd\x65\x70\xf2\xda\xcd\x82\x37\xb8\x20\xec\xcb\xda\x82\xaf\xdd\x08\x3e\x8d\x0c\x3e\xf4\xc8\x0a\xe7\x1c\x92\xe2\xcd\x31\x20\x6b\x6d\xf8\x60\x3b\x21\x14\x65\x40\x5f\x01\xa9\x19\xe8\xf5\xde\xfc\xfd\x42\x36\xaa\xce\x65\x31\xfa\xf9\x39\xbc\x93\x55\xa5\x2a\x1b\x2d\x64\xad\x9c\x9d\x73\x77\x48\x25\xd8\x60\x33\x50\x3f\x7c\x7d\xb6\xe2\x1c\x8e\x73\x24\x4e\xdc\x86\xf7\x07\x43\xda\x44\xf3\x57\x49\x29\x68\x87\x3c\xbf\xc9\x30\x88\xfe\x37\x18\x9a\xc5\xfd\x40\x99\x98\xcc\x8c\xc3\xb0\x34\x81\xce\x68\x68\x64\xea\xac\x52\xa0\xfc\x5a\xfa\x7c\x5d\x90\x3b\x23\xd7\xe2\x4a\x5e\x0f\xad\xd7\xea\x02\xb2\xdd\xae\x55\x3d\xaf\xea\x95\x2c\x67\x8a\xbd\xf7\x42\x8b\xe7\x98\x89\xcd\xaa\xea\xc8\x7c\xe1\x4a\x79\xd8\x88\x33\x6e\xb2\x7f\x86\x71\x5d\x0a\x48\xda\x9b\xc3\x53\xee\x79\xa1\x56\xd4\x21\x69\x74\xf0\x31\x15\x79\x34\x17\x2c\xab\x27\x9e\x60\x7c\xb9\xa3\x08\x55\xcc\xea\xd7\x9e\xe4\x9e\xba\xc3\xd6\x95\x0d\x79\x7a\xb0\x3b\x1d\x32\x8f\xbe\xf6\x16\xdf\xa7\x29\xa8\x18\xd3\xba\xef\xee\xad\xa3\x25\xef\xfd\xb5\x92\x33\x8b\xb9\xb5\xf9\x9b\x61\xb6\x69\xf1\xe6\x7a\x6d\x87\xea\x99\x65\x8e\x0c\x90\x74\x20\x71\xa8\xf7\x72\x86\x81\x5f\xac\xc0\xf1\xdd\xca\x62\xec\x26\x9f\x6c\x9a\xbc\xe0\x0d\x50\x9d\x6a\x73\x5f\x3c\x2d\xa4\xd6\x90\x2e\x0a\x9b\x8e\xc7\x93\x8e\x0a\xc1\x98\x94\xd2\x2f\x92\x70\xe8\xb3\x43\x79\xdf\xa7\x2b\xc2\x83\xf8\x03\x9d\x92\xbf\x1d\x1f\xb3\x78\x52\xa5\x8d\x9e\x04\x99\x88\x60\x84\x3e\x3b\x3e\xf8\x72\xf4\x33\x78\x52\x1b\xd4\x2a\x54\x63\x2e\xa0\xda\xa6\x52\xb9\xcc\x33\x95\x61\xcc\x21\x3c\xc3\xa0\x70\x7a\x8f\xe6\x40\x60\xbd\xf3\x06\x0a\x37\x65\xa3\xea\xd1\x39\x04\x1e\x96\xeb\x75\x5d\xc9\xd9\xd2\xa5\x8e\x6b\xaa\x02\x96\x2d\x64\x79\x2d\x56\xb9\x6e\xe4\x85\x42\xd3\x9f\xe7\x4d\x4f\x8b\xd5\x66\xb6\x14\x5a\xce\x31\xe4\x15\xc4\x2f\x5a\x2a\xa1\x0d\xfc\xa8\x63\xb4\xbf\xb8\x22\x0d\x27\xae\x68\xd1\x02\xf6\xe3\xae\x6d\xe8\xe3\x2a\x31\xfa\x14\xa5\x95\x06\x8d\xc8\x7a\x53\xaf\x2b\x8d\x71\x3a\x88\xd6\x00\x63\xb1\x54\xaa\xd1\x2f\x64\x29\x17\x10\x15\xa7\x54\x57\xe2\x85\x5c\xf7\xad\x61\x0c\xd1\x09\x1f\xcd\x13\xe8\x0e\x29\x5b\x69\x74\x78\x30\xc2\x04\xcc\xe6\x63\x6b\xb6\x47\xed\x22\xa8\xf8\x4e\x43\xfc\x18\x8c\x19\x83\x13\x79\x6a\x44\xf7\x23\x38\xa9\xac\x94\xa6\x77\x14\xfe\x64\x15\x5e\xab\x45\xae\x9b\xfa\x1a\x5b\xe2\xe3\x12\x5b\x24\xdc\xa6\xfa\x29\x6e\xa7\x78\x8c\x87\x86\xde\x05\xa8\xb4\x1f\x2e\x74\xe0\xac\x69\xba\x55\xa3\x3e\x13\xb5\x95\x6f\x83\x71\xc6\x59\xae\xd7\x85\xbc\xa6\xfd\xea\x05\x1f\x7b\xfc\x99\x2e\x2f\xcd\x31\xff\x31\xaf\x75\xf3\x53\x95\xa9\x2d\xf1\xf5\xb0\x8f\x57\x88\xab\x35\xf0\x79\x9a\x67\x2b\x5b\xe6\x45\x56\x43\xac\x4c\x64\x50\x6c\x81\x8b\x2c\xf5\x16\xca\xef\xb2\x11\x5d\x5d\x56\xe6\xaa\x87\xf5\x52\x8d\xdd\xa3\xbf\x78\x42\x5a\xaa\xa3\x44\xbd\x78\xfc\x10\x7f\xdc\x14\x5a\x68\xe5\xda\xb5\xbe\xf8\xe9\xc4\x7d\x6d\x99\x51\x58\xd5\x75\x5e\x54\x33\x59\x78\x0c\xef\x22\xd8\x08\xee\xa1\x38\x99\x1e\x58\xb8\xe2\x13\x17\x5b\x28\x16\xb4\x66\x3b\x3d\x38\x1d\xb0\x88\x5d\xd5\xa6\x51\xb5\x1f\x10\xd1\x71\xa3\x1d\x2e\x06\xa8\xc2\x1b\xce\x1c\x0a\xbb\x24\x9f\x61\xb6\x4f\xd6\xf1\x00\xf3\x64\x12\x9f\x90\x38\xb1\xed\x59\x9a\xab\x6f\x18\x80\x63\xf0\x68\x9f\x47\x82\xf6\x49\x08\x9e\x58\x3a\x2e\xe4\x7b\xf7\xc4\x1d\x4b\x62\x83\x83\xcd\x35\x95\x55\xa9\xab\x42\x8d\xe1\x7d\xa0\xdf\x63\x9c\xd4\x91\xf8\xdf\xd5\xc6\x19\x66\x59\x4a\x7a\x0c\x8c\x0a\xc0\xef\x18\xba\x14\xdf\xbf\x7a\x8e\xaa\x30\xf7\xd6\x25\x2a\xca\xff\x0a\x75\xc7\xbd\x94\x3e\xe9\xe3\xd6\x6b\x57\xf3\x4e\x6b\x97\x4a\x38\x2f\xb5\x41\x9f\xaa\x7c\x55\xe5\x25\x24\x96\x62\xe8\x72\x8b\x95\x92\xdd\x14\x06\x02\x21\x07\xaf\xa8\x6f\x59\x66\xe2\xcf\x21\xad\x63\x63\x7d\x6b\xcd\x56\xe1\xb6\x01\xb3\xb5\xcf\xb8\x74\x4e\x14\xee\xdd\x0b\x70\xc8\x80\xe3\xe3\x16\x6a\x66\x6b\x6e\x73\x4c\x78\xe0\x07\x40\x09\x6e\xff\xe5\xdc\xb9\xf5\xc6\x98\x9f\x21\xf6\xde\x09\xb1\x37\xf4\xeb\x8c\x28\x78\xa4\x54\x5c\x2a\x99\xf1\x07\x69\xf3\xfb\x51\x82\xc4\xfe\x84\xae\xfd\xd1\xc3\xf5\xd3\x6a\x85\x0f\xd7\xab\x4d\x3e\xc2\xda\xa3\xb9\xa9\xde\xf3\x6a\x30\xd3\x23\x2d\xe8\x2f\x6a\x5e\xd5\xaa\x1f\x75\x3b\xc4\x2a\xd0\xee\xa9\x21\x5e\x2d\x6b\x6f\x06\x22\xcf\x3d\xb9\x65\x38\x31\x83\xf1\x53\xcc\xdc\xdb\x2e\x85\x43\xf4\x28\x5e\x1a\x0d\x98\x0a\x59\x3d\xf9\xe2\x3f\xde\xbe\x7d\xf5\xf3\xeb\x67\x6f\xdf\x7e\x31\xe1\xb7\xb3\x7d\xb5\x0f\x6f\x56\x7b\x01\x0e\xbd\x73\x02\xa8\x6a\x68\x0d\x44\xc7\x2c\x91\x26\x2b\xbf\x4e\x9c\x9e\x1e\x78\xa4\x9e\x1e\x88\x27\xd1\x2d\x0b\x59\xfb\x90\x8d\xb6\xd9\xd8\x40\xa3\x23\xc4\x17\x06\x5f\x6b\x2f\xd2\x89\xa6\x56\xf8\x2c\x0d\x4a\x1d\xe1\x66\x70\xe4\x59\xf1\x71\x59\x65\x6a\x9c\xeb\xd7\x64\x15\x38\x24\x8b\x38\xde\x25\xc8\x4e\x19\x13\xc7\x16\xfe\xda\xab\xe6\x88\xf4\xf8\xf8\x42\x01\xa7\x72\x4d\xd6\x51\x34\xb8\x78\x0e\x76\x96\xe2\xdc\x08\x51\x6a\xbe\x29\x90\x02\x36\xb5\x84\x30\x9d\x68\x62\x49\xa2\x83\x99\xb3\xb9\x37\xc0\x1e\x80\x7a\xff\xeb\x9b\x17\xff\xa0\x9e\x3c\xd5\xd4\x8d\x5a\x47\xa4\x93\xea\xfc\x43\x19\xd6\x56\xcb\x6b\x71\x5d\x6d\x98\xe8\x06\xf2\xc8\x48\xae\xab\xa2\xa8\x20\xdd\xf3\xfb\xa6\x36\x43\x4a\xc3\xa2\x41\x4b\xd3\xd7\xbf\x36\xaa\x36\xe2\xd0\x4a\x66\x8e\xf3\xce\x0d\x27\x3c\x97\x33\x15\x58\x2b\x8c\xa0\x7f\xb3\x30\x9d\x2f\xca\x7c\x9e\xcf\x64\xd9\x14\xd7\x42\xaf\xcd\x2d\xb0\x59\x43\x53\x5a\xa4\x2c\x18\x70\xc0\xdd\x91\xed\x4b\xe2\x32\xf4\x1b\x74\x5e\x55\x45\x6b\x57\xfe\x76\x7c\xdc\xd3\x62\x66\xd8\x57\x7c\x5d\xa1\x2d\xa9\x6a\xde\x6f\x82\xf3\xf5\xfd\x1a\x26\xae\xd5\xef\x5f\xae\x2d\x93\x37\xe4\xfb\x6a\x60\x88\xa7\x47\x65\x18\x0a\x95\x72\x96\xff\xd9\x1c\xe3\x6f\x05\xd9\x45\xdb\xfd\x5a\xcb\x85\xc5\x3b\xf1\xbd\x16\x92\x6c\xb0\x87\x98\xfa\x7a\x21\xf3\x12\xb3\x62\xeb\xb5\x9a\x19\xb0\xe5\x8d\x01\xb3\x2c\x41\x48\xc1\x90\xaa\xe8\x16\x63\x53\xa2\x23\x12\xcd\x01\xde\x60\x87\xd1\x54\x60\xe1\x5f\x9b\x6d\x60\x14\xbb\x47\x71\x6c\xf5\x90\x72\x52\x26\x80\xcd\xa8\xc0\x9e\x60\x66\x12\x9d\xeb\x05\x64\x05\xdf\x1a\x59\xb4\x56\xfb\xef\x30\x94\x21\x6b\x87\xf8\xd3\x12\x93\x76\x6e\x4c\xd0\x93\xdd\x2c\xd5\x48\x6b\x02\x3e\x0e\xbe\x3c\x75\xe6\x17\x2e\xb1\xbc\xe6\xb3\x0f\x84\x9b\xdb\xad\x82\xca\xde\xb8\x7e\xad\xac\x96\x43\xfc\x5b\xe0\x7e\x32\x95\x6d\xd6\x45\x3e\x93\xf6\xfd\x01\xab\x12\xe8\xc1\xe3\xbe\x6c\x21\x0a\xc8\xa3\xbe\xa5\x39\xb0\xce\xfc\x5a\xf4\x9b\xa5\x5a\x29\xf2\x04\xd3\x03\x23\x9c\xae\x0b\xd7\xf4\x25\xa7\x02\x43\xc0\x12\x72\x8e\x21\x31\x5a\x48\x10\x24\xed\x46\xa2\x25\x87\x11\x93\x6b\xf5\xaf\x8d\xb2\x1a\x20\x0e\x1b\x27\xe2\x7d\x14\x74\x9e\x56\x45\x61\x43\xb6\x76\x41\xdf\xcb\x88\xf1\x10\xd3\xf2\x46\x1c\x91\xd0\xf0\x51\x72\xdf\x67\xb9\x5a\x9c\x1a\xa6\xdf\x55\x69\xc0\x67\x79\x93\x4c\xa3\x8e\x1a\x94\x09\x65\x51\xb7\xba\x52\x12\x27\xbf\x40\x2d\xc6\x7f\xa2\x82\x17\xb3\x05\x5b\xad\x03\x86\x0a\x85\x1d\x15\xba\xda\xd4\x33\x85\x8e\x97\xa8\xbb\xf8\x45\x59\x8d\x8d\x23\x52\x84\x62\xd9\xa6\xb6\x38\x03\x35\xd8\x1d\xe5\xee\x45\x74\xcc\x72\xc2\xa9\x21\x6e\xd6\x23\x17\xdd\x9f\x10\x35\x6b\x55\x36\x86\x90\x54\x98\xf0\x09\x62\x45\x57\x73\x1a\x8d\x28\x9e\x16\x57\x2e\xee\x2b\x34\x18\x7d\x0b\xfd\x5a\x15\x0b\x1a\x9b\x91\x5a\x50\x18\x01\x6e\xb1\xc4\xcb\x4f\x52\x03\xc8\x43\xa4\x20\x81\x94\x25\x06\xd0\x16\x53\x30\x1b\x79\x42\x07\xd4\xce\x90\x48\x18\xc2\xd1\x3a\x1c\xcb\xcb\x18\x6e\xbd\xa6\x96\x58\x82\x59\xdb\x32\x5f\x00\x55\xf5\x04\x77\xe8\x22\x5d\xd8\x2b\xbc\x05\xe5\xe3\x4a\x18\x7e\x42\x57\xc5\xc6\x86\xc9\x00\x07\x15\x73\x03\x13\x12\x63\xae\x6b\x3a\xcd\xb5\x32\x37\x9d\x05\x15\x0c\x3f\xfa\x16\xea\x19\x28\x42\x97\x98\x40\x18\x17\xde\x35\xb3\xb1\xd5\x42\x64\xea\xfd\x53\x42\x87\xc7\x62\x74\xa8\xfe\xe4\x35\x11\x3e\x47\x53\x39\x43\xdf\x1f\xab\x8e\x0e\x9a\xdd\x7f\x2c\x0e\x3f\x49\x62\x0c\x7a\xfb\x36\xcc\xef\x6c\x05\x87\x2b\x59\x97\xfd\x93\xb6\xe0\xb0\x82\xe4\x98\x14\x22\x7e\xa5\x56\x55\x7d\x2d\x0a\x25\x2f\xc6\xbd\xa1\xe8\xbd\x01\xae\x82\x75\xce\xad\x37\x89\x8c\x2e\xea\xea\x0a\x21\xb6\xda\xcc\x96\xe3\xde\xe9\xf8\x5d\x95\x97\xfd\xde\x74\x5a\xf6\x06\x29\xd9\xc2\xa6\x6a\x61\xfd\x7e\x56\xcd\x31\x49\x20\xbb\x1b\x63\x45\xde\xf6\x57\x48\xbd\xb5\x52\xf5\x42\xed\xa7\xd6\x2d\xab\x6a\xfd\xc6\x10\x7d\xab\x74\x9d\xb8\x92\xde\x16\x8d\xd4\x42\x35\xc4\x9b\x9b\xd3\x5f\xd5\xf8\x92\xa6\x5f\xd6\xf4\x9b\x69\xa7\x0c\xea\xe6\xe5\xe2\x59\x69\x28\x95\x11\x88\x68\x79\x51\x8b\x28\xa3\xd2\x27\xa1\x13\x41\xb0\x3d\xa9\x3b\x2c\x11\x17\x28\x22\xc2\xc9\x75\x8a\xab\x11\xda\x19\xac\x3a\xc3\xce\xcf\x84\xa4\x9c\x0d\x5e\x97\x9c\x6b\xeb\x18\x00\x38\xc8\x15\x16\xfe\xa2\x64\xa0\x44\x76\x94\xc8\x29\xb1\x82\x60\x31\x6b\xff\xc6\x17\xcb\xbd\x11\xd3\x3a\x5b\x00\xe9\x66\x8f\xae\x24\xdd\xd1\x1d\x6f\xf8\xd9\x48\x62\xc5\xf1\xd8\x1b\x28\xb3\xb1\x74\xe6\x0c\xe6\xd2\x8a\xf6\xf4\x49\xbc\x99\x38\x86\xb9\xb8\xa2\x0f\xfe\xf9\x33\x65\x6c\xc9\x1e\xb2\x6f\xb1\xe3\xbe\x5d\x8c\x6a\x8f\xd1\xce\x03\xa4\x7a\xc0\x71\x53\xe2\xf0\x3b\xea\x00\xdf\xb2\x5e\xfe\xf0\xf2\xc8\x5c\x89\x6b\x55\x66\x64\x9e\xba\x52\x5a\xcb\x85\x9a\x80\x00\x40\x91\x57\xc3\x86\x9f\x19\x59\xcc\x4d\x89\xdf\xc1\x55\xd8\x6f\xa0\x75\x63\x96\xb4\x1c\xba\x10\xac\x0c\x6f\xda\xbf\x2c\x95\x17\x0f\x80\xfe\xbb\x2b\xd4\x5d\x72\xa8\x4c\x02\x18\x38\x6e\x23\x8d\x5c\xee\xa9\x9a\xfd\xe9\x7f\xa0\x19\xaf\xaa\xeb\x4e\xc7\x79\x00\xd9\x87\x0f\x78\xce\xd4\xd8\xde\xae\x3a\x55\x76\x62\x2a\x9f\xa6\xbc\xfb\x1d\x5a\xb6\x06\xb1\x31\x5f\xb0\x53\xc4\xcb\x56\x97\x8f\xc2\xfa\xd8\xdb\x2f\x79\xb3\x7c\xc9\x5a\x06\xfa\x54\x62\x7f\x59\x43\x6e\x34\xe0\xba\x1f\x24\x3c\x10\x7d\xdc\xf7\x4f\x47\xe7\x3b\x89\xa9\x42\xca\x85\x16\xe6\xee\xba\x23\x0d\x46\x35\xf5\x35\xd0\x18\xce\xe4\x10\x97\x05\x97\x9f\x7d\xdc\xc5\x54\xa5\x06\x99\xa6\x07\x3f\xe6\xef\x01\x95\xce\xa6\x07\xe3\x59\x55\xce\x64\x63\x16\x68\xbe\x9c\x81\x31\x7b\x35\x17\x67\x11\xcc\xc7\xd3\x83\x81\xad\x6b\xc0\x0f\x95\x4d\xe1\x47\x20\x58\xd7\xfa\xc5\x63\x7f\xcd\xf5\xbb\x2a\x0d\x3d\x66\x20\xd0\x3c\x02\xb5\x62\xe7\x25\xfa\xb0\xe4\xd5\x5a\x07\xa1\xfa\xf0\x48\xfc\xea\xed\x32\x0c\x2b\x0e\x4c\x72\xf0\xa0\xa7\x56\xeb\xc6\xe6\xaf\x41\x46\x6e\x8e\xec\x36\x27\xef\x04\xf1\xb2\xd7\xe0\xd5\x60\x4f\x34\x91\x7a\xeb\x9d\x6e\xef\x66\x32\x66\x89\x6e\x63\xf7\xfd\x11\x63\x3d\x7e\xd3\x67\xe7\x4f\x63\x6c\xb6\x3d\x5a\xff\x6a\x58\x8a\x1f\xae\x4b\xb9\xca\x67\xc8\x59\x74\xbc\x12\xc3\xa6\x83\x40\xef\x1e\xb8\xc7\xe3\x09\x2f\xe5\x95\x37\x45\x93\xff\x5d\x5d\x1f\x37\x55\xed\x39\x9c\xa0\x94\xd5\xde\x68\x15\xb0\x42\xe3\x89\x2d\x09\x26\x1a\xaa\xda\x6f\x7c\xed\x50\x80\x0b\xda\x38\xfe\xd9\xd7\x9f\x70\xfe\x91\x1b\xe2\x44\xac\x95\xef\x3f\xfe\xb2\x8d\x8d\x6b\xd7\x0e\x19\x3b\x66\x7c\xb6\x50\x0d\x41\xae\xff\xb6\x56\xf3\x21\x4a\x48\x4a\x0f\xc5\x53\x2b\xca\x71\x93\xb4\xc6\xc8\x83\x14\x09\x06\x7e\x84\xf9\x6b\x34\x7b\x51\xc3\x2a\xac\x90\x71\x75\x41\x79\xfb\x09\xb0\xe5\x59\x42\x3b\xfe\xe1\x43\xe4\x54\x4c\x84\x52\x36\x6a\x0c\x06\xe0\xb4\x14\xd7\xbe\xfd\xc9\x67\x00\xc2\x1c\xf2\x81\x12\x67\x9e\x97\x14\xf4\xcd\x8e\x68\x4d\xf8\xed\x0d\x02\x2a\x67\xf7\x52\x9d\xec\x04\x54\x77\xa0\xa5\xb1\x9d\x80\xf9\xf0\xba\x02\x05\xa7\xeb\xcb\x54\x33\xe7\x6c\xff\xee\x50\x28\xe4\xfd\x26\xba\xfc\xdb\xf1\xb1\x25\x53\x48\xa8\xc8\x7e\xff\x4d\x2d\x67\x17\xda\x00\x4c\xe5\xa0\xfc\x43\x61\x32\xea\xb1\xaa\xc3\x49\x1b\xf1\x11\xed\x5d\x33\x9b\xcf\x1a\x5d\xdb\x2d\xc3\x1a\x6a\xa9\x51\x03\xd4\x86\xa2\x23\x6c\xfe\x55\xd3\xaa\x4d\x99\xb5\xb0\x47\x0e\xd8\x34\x6a\x6b\xae\xca\xf6\x36\x8e\x69\xad\x5b\x76\xda\x56\x11\xae\x3d\x96\x13\x6d\x67\x13\x70\xd6\xcc\x0c\xab\xf6\x18\xfe\x15\xb7\x6c\xdd\x52\x47\x3c\x16\xb7\x1a\xda\x7e\xde\xd6\xb7\xb5\x59\xe7\xa4\xcf\xbf\xdc\x9c\x4b\x6d\x0b\x8f\xb6\x40\xc6\x21\x5d\xa9\xae\x5c\x75\x7b\xfe\xed\x37\x47\x06\x8e\xfc\x9f\xd3\xee\x57\x9d\xae\xb9\x5a\xdb\x07\x9f\x9d\xbb\x69\x0c\xf3\x64\xc8\xc4\x43\xb2\xc6\xea\x20\x34\x0f\x23\x4a\x43\xdc\x3c\x7d\x43\x81\x66\x1b\x15\x7a\x18\x92\xa1\xa8\xae\x93\x40\x83\xba\x54\xea\x21\x24\xd9\x90\x94\xfa\xef\xe3\x88\x19\x87\x99\x33\xc6\xf1\xb6\x38\xc1\xf5\x34\x5e\xa8\x26\xea\x3e\xb4\x86\x09\xd7\x30\x44\xd0\xf0\xf7\xfb\x3b\xbc\x7b\x8f\x50\xe1\x98\xcc\x36\x78\xae\x8f\xc4\x03\x06\x21\xd9\xe4\x33\x50\x78\x45\x64\x2a\xe3\x97\xb5\xb5\xc0\xf1\x24\x47\x44\xeb\xd0\x1f\xb3\x8e\x61\x30\xcf\x41\x0c\x38\x1f\x68\xa2\x6d\x17\x91\x60\xe8\xa9\x6f\xfb\x14\x3c\x18\x86\xb8\x12\x5a\x4e\xc0\xf8\x47\x82\xe3\xd6\xbc\xc8\xd7\x47\x91\xfa\x82\xd6\x62\x3e\xa1\x06\xe3\x1c\xbd\x77\x7b\x5e\x28\xe6\x55\xa8\xc3\xb1\x0b\x3f\x87\x8d\xea\xa6\xc0\x4c\x72\x76\xe3\xec\x6b\xb5\x25\x04\xcf\x33\x9f\xbe\x7a\xdc\xf1\xb8\x61\xee\xc6\xb8\x9d\xfb\xf8\x28\x40\x36\xa7\x15\xb7\x06\xca\xd1\xa6\xd8\xcf\x1c\xc5\xd9\x46\x8c\x0d\x96\xc0\xcc\x1f\x04\x81\xe2\x18\xb2\x04\xb1\xe1\x52\x43\xc0\x15\x17\x64\x63\x76\x6d\xf7\x3e\x03\xd0\x47\xf7\x09\x08\xe4\x09\x2f\xfa\xb9\x35\x5b\x7c\x48\xe8\x45\x82\xe9\xdf\x61\x73\xeb\x9c\x71\x38\xbf\x77\x5a\x53\xb7\x5e\x61\xdc\xb7\x6f\x66\x1e\x35\xbd\xa8\x53\xe4\xe5\x05\x59\xd3\x39\x31\xc5\x07\xbf\xf0\x02\x0b\x1b\x74\x4c\xf4\x73\x10\xf9\xb1\xec\x03\xed\x7d\x4f\xe7\x16\x08\x0f\xf9\x5c\x52\x79\xda\xd9\xfe\x07\x48\xc5\x41\x18\x7c\x18\xcb\x2c\xeb\x27\x3a\x75\x7d\x05\x38\x18\x83\x9f\xa3\x5e\xab\x72\x40\xac\xc4\xe3\x96\xb0\xd1\xf7\x22\x7f\x70\x11\x77\x77\x12\x20\xbe\xfd\x72\x0b\x5c\xe8\xec\x38\x85\x1f\x88\x1d\x86\x53\xb0\x52\x69\x0b\x35\xf8\x14\xc6\x9b\x75\x66\x93\x88\xeb\x64\x05\x86\x3a\x9e\xbd\x88\x56\xc1\x7f\x06\xf5\x66\x8e\x8f\xde\x87\xf7\xe8\xd8\xb3\x71\xcc\x65\x70\x0e\x24\x98\x2b\x55\x64\x1c\xc7\xc7\x61\x16\xef\x34\xd4\x9e\xa2\x17\xf3\xaf\xe9\x35\xee\x5a\x00\x47\x99\x36\x91\xa4\xa7\x91\x90\xf1\xa1\xed\x31\xac\xc4\x97\xdb\x19\x9f\x2f\x91\xf1\x69\xb1\xc6\xc1\x5a\xc2\x99\xef\x40\x84\x9b\x78\x32\x99\x72\x5c\xd8\x57\x1d\xb3\xf8\x6a\x0b\xfb\xf5\xd5\x1e\xec\xd7\x57\xb7\x60\xbf\xbe\x0a\xd9\xaf\xff\xe1\x4c\x56\x6a\xcb\x47\xb8\xe5\xbf\xed\x75\x1b\xce\x1f\x9d\x10\x3f\x76\x09\x22\x41\xb0\x6a\x08\x30\xd1\x45\xb0\x22\x22\x7d\xfb\xf3\x88\xdd\x6f\xed\x54\x24\x2c\xfa\xb6\x22\xff\xee\x25\xb4\x5b\x7f\xd2\xe4\x93\xdd\xf1\x69\x47\xa7\x5e\xab\xe3\xeb\x72\xb6\xac\xab\xb2\xda\xe8\x67\xf3\xb9\x9a\x35\xa0\x39\xa6\x78\x2d\x9c\x06\x60\x36\x50\x67\x21\xfc\x5a\xcd\xfb\x27\xa7\x3e\xd3\x79\xb5\x69\xd6\x1b\x4c\xd5\x8c\xaa\xad\xe9\xc1\x82\x59\x1d\x43\xf2\x4c\xf1\xb7\x8d\x6e\x5c\xec\x3a\x94\xcb\x49\x2b\x89\xb1\x1e\x9b\x7c\xa5\x98\x8d\x31\xfa\xe3\xff\x3d\x1c\xf8\x85\x5a\x55\x4c\xbb\x1d\x6b\x65\xac\x2a\xc6\xad\xe0\x51\x22\x34\x0b\x44\x65\x41\xa3\xb0\x65\x55\x5d\xe8\x89\x7a\xbf\x94\x1b\xdd\xe4\x97\x6a\x94\xa9\xb5\x26\xad\xc2\xf4\x00\xf5\x2f\x35\xcc\xba\xcc\x54\x3d\x3d\x18\x8a\xaa\x16\xd3\x83\x95\x5a\x55\x22\xab\xab\xf5\x5a\x65\xe8\xa8\x04\x4e\x99\x07\x1e\x31\xcc\x82\x6d\x44\x01\x23\xaf\xfb\xd5\xb8\x29\xf3\x2a\xbc\x02\xed\x19\x82\x94\x9c\x2d\xfb\x01\x23\xe0\xa0\xc1\xf6\x2c\x0d\x8f\xc4\x17\x8a\x96\x07\xbd\x07\x0c\x18\x16\xf5\xdb\x9c\x93\x05\xe9\x89\x9f\xe3\xe9\x47\x82\x75\xd0\xe1\x3e\xe8\xe6\xb9\x92\x17\x2a\xe0\x80\x52\x2f\xb8\x5e\xcc\xb2\xcf\x57\xd6\x07\x52\x7c\x2b\xc0\xef\xda\x95\x9f\x1c\x9e\x02\xfc\x9d\xc5\xac\x78\x12\x7e\x3c\xb2\x21\x4b\xc9\x5d\x13\x85\x6a\x2b\xb6\x94\x92\xdd\x24\xce\x50\x03\x7d\xb6\xf0\x68\xb3\xca\xd1\xf7\xb6\xba\x82\xd5\x7d\xca\x8c\x52\xb0\xd6\x5b\xfa\x74\x97\x60\x62\x15\xed\xb6\x05\x2f\xf6\x32\x6f\x58\xb7\xa3\x0f\xee\x8a\xe0\x15\xb3\x47\xe9\xea\xe9\x8b\xf3\xe1\x36\x87\x04\xea\x06\x5c\x12\x0c\xc4\xd0\xfb\x20\x02\x07\x16\x7a\x7d\x0d\x7a\x28\xb0\x81\x23\xe7\x84\xf8\x2e\xde\xf9\xc2\xef\x88\x51\x34\xb0\x78\x2c\xec\xb3\x5f\x7a\x07\x3f\x7c\x10\x3d\x8f\x77\x18\x65\x2c\x29\xa0\x7b\xbd\x04\xa8\xca\x8f\xb8\x15\x0a\x81\xad\x04\xa3\x3e\x86\x36\x2b\xd5\xc8\xa3\x78\x60\xfa\x16\x95\xb6\xaa\x4d\xa3\x5c\xee\x86\x60\x5b\x81\x21\xa0\xe2\x78\x60\xc2\x1c\x2d\xe4\x5d\x9c\x38\x21\x0f\xc2\x13\xf2\x60\xdb\x09\x79\xe0\x4e\x88\xed\xd8\xf2\x5a\xf6\x29\xa2\x0f\x3e\xf1\x7c\x23\x1f\xb5\x45\xdc\x97\x5b\x14\x23\xbf\xde\x0c\x77\xb9\x9e\xc4\x9a\x91\x87\x83\x60\x0c\x67\xdf\x17\xdd\x50\x03\x36\x6d\x34\x0c\xfc\x19\xd8\xcf\xae\x7a\x9d\x17\x62\x8b\x84\xb2\x0b\x8a\x2b\xab\x12\xfb\xef\xf8\x60\x03\xc6\xa0\x8c\x21\xd8\x91\x48\xab\xf8\xa2\x43\x78\x24\xd2\x6c\x6b\xa8\x1c\x72\xe4\x9b\x45\x34\x01\x8e\x9a\x26\x6c\x19\x7c\x2f\xc2\x33\xd0\xb0\x1b\x29\x8c\x98\xe1\x8c\x61\x5b\x57\x56\x2b\x58\x4f\x0a\x60\xc2\xb2\xf5\xd4\x88\xdd\x32\xee\x61\x53\x9c\x04\xd6\x9e\x04\x0c\xf7\x4e\xba\xc7\xad\x67\xd9\xa6\xf6\x7a\x82\xa9\x90\x10\x12\x2f\xa9\x05\x18\xf6\xf6\xdb\x01\x23\x16\x74\xe4\x86\x63\x9b\x97\xd6\xd8\x63\x56\xc7\x78\xe3\xc4\xf3\x56\x9c\xc9\xe0\x56\xcf\xf5\xdb\x82\xd1\xf1\xfb\x19\x92\xab\x8f\xaa\x39\xfe\xb4\xad\x1d\x98\x7f\x50\xe7\x9b\x05\x06\xbf\xa0\x19\x76\x85\xe6\x0f\x04\xcf\x30\xee\x82\xa3\x4e\x9d\xa6\xa2\x61\x78\x3c\xca\xb0\xf5\xc5\x64\xab\xa9\x97\x35\x15\x59\xeb\x3e\x44\x31\xd4\x91\x79\x17\xc4\xe9\x82\x0f\x91\x30\x48\xd7\x3b\x7d\x0b\x8e\xa9\x25\x98\xf4\x0d\x7e\x72\xad\x35\xf6\xeb\xed\x44\xb0\x7e\xf4\x3b\xb2\x19\x61\xb1\x2a\x74\x10\xf1\x15\x5c\xc7\xed\xca\xc8\x9f\x0f\xa2\x86\x9d\x57\x75\x5d\x5d\xe1\xa3\x29\x3e\x4f\xa3\x7d\x66\x9c\x03\x9f\xe5\x94\x9b\xcb\x99\x3a\xaf\xaa\x8b\x09\xec\xed\xe4\xbc\xa8\xce\x27\x87\x7f\x90\xdf\xcc\x1f\x7c\x79\xf8\xcd\x97\xdf\xc8\x3f\xfc\xe1\x4b\xf5\xd5\xe1\xec\xc1\xf9\xd7\x5f\xab\xf3\xc3\xf3\xd9\xfc\x30\x93\xdf\x7c\xf5\xd5\x37\x87\x0f\xbe\xca\x26\x6b\x39\xbb\x90\x0b\xa5\xa9\xb1\xae\x67\xe8\xf7\x42\x0e\x2f\xe3\x77\xfa\x3f\xfe\xf1\xf0\xe1\x21\x7f\x26\xa3\x69\xbf\x22\x78\xb5\x56\xcf\xa2\x74\x56\xeb\x9f\xfc\xbb\x04\xc4\xaf\xb0\x65\x22\x2f\x83\x8e\x5a\x71\x43\x30\x66\x9c\xa9\x8a\x81\xc3\xdc\xf5\xc4\x10\xbd\x55\x2f\xe8\xd2\x7f\xe8\xb6\x4c\xb3\x3b\xf3\x7f\x8a\x97\xfd\xb2\xca\x75\xf3\x53\x55\x42\x47\xc7\x20\xdf\xda\xfa\xf0\x69\x54\x56\xe5\x08\x69\x04\x4a\xbf\xa1\x8b\x3e\xa4\x80\x72\x03\x0d\x41\x6b\xc9\xbc\x8b\xf7\x32\xf0\xf4\x9c\x16\xb3\x96\x08\xb8\x2f\x6f\x77\xe0\xcf\x79\x60\x46\xe0\x8b\xf7\x34\x96\x30\x27\xe7\x1f\x79\x79\xe1\x0c\x8c\xd0\x68\x9c\xa2\xfe\x39\x03\x71\x67\xbd\xed\x4c\x8f\x56\x55\x96\xcf\xaf\x43\x33\x72\xb4\xdc\x06\xeb\xc9\xdc\x5c\x7e\x93\x89\x35\xc2\x83\x98\x14\xa1\x80\xeb\x8d\xcf\xed\x68\x67\x44\x2d\xcf\xc2\x30\x75\x90\x5a\x37\x6f\x96\x6d\x06\xcf\x97\xfe\xbe\x22\x51\xe2\x42\x8f\xed\x2f\x02\x82\xb0\x97\xc0\xc2\xe4\x1c\xb3\xae\xb8\x8d\x2b\x63\x0d\x78\xbd\x54\xe3\xa4\xa3\x75\xab\xde\x30\xe4\xd1\xba\x64\xbc\x84\xbe\x70\x1f\xa9\x27\x94\x63\x8c\x64\xe3\x06\xc6\x9f\x28\x16\x9d\x7e\xda\xc5\x6e\xda\x30\x61\xb2\x83\x2a\x5a\x3b\x48\x83\x7e\xcf\xc8\x00\xd4\xda\xdc\xcd\x64\x51\xe4\xe5\xa2\x8d\x53\x03\xbe\xb7\x88\xa9\x25\xc3\x10\x7f\x44\xac\x4d\xe8\x4a\x5e\xa3\x8d\xfb\xbc\xaa\x17\x55\xd3\xa8\x12\x0e\x04\x9e\xc5\xbc\xcb\x38\xb8\xfd\x1c\xd3\x2d\xb0\x7d\x32\xa8\xee\x44\x16\xc5\x94\x92\xc3\x1a\x3c\x9f\xab\xa6\x51\xb5\xf8\xe1\xff\xe7\xdc\x0e\x7d\x57\xff\x2f\x7b\xef\xbe\xde\x46\x6e\x2c\x0e\xbe\x0a\x46\x49\xdc\xa4\x4d\x91\x92\x6c\xcf\x85\x8e\xe2\xd1\xd8\x9e\x44\xbf\xf8\xb6\x92\x9c\xc9\x59\x49\xc7\x02\xd9\x20\xd9\xa3\x66\x77\x9f\x46\x53\x97\x19\xfb\x19\xf6\xff\xfd\x6b\x1f\x63\x9f\x67\x5f\x60\x5f\x61\x3f\x54\x15\xae\xdd\x4d\x52\x17\x4f\x2e\x9b\xf9\xf2\xc5\x22\x1a\x28\x14\x0a\x85\x42\x01\xa8\x4b\xdf\xb6\x01\x0e\xf7\x42\x28\xf8\x52\xaf\xd3\xa0\xb5\x69\x0c\xdc\x76\x5f\xb5\x4e\x57\xed\x20\xa8\x36\x32\xdb\xb2\x25\x97\x52\x8d\x8a\xee\xe9\xb0\xfd\x1a\xa5\xe9\x35\xc7\xe5\xde\x21\x6b\x5c\xb7\x4d\x26\x17\x9e\x56\x35\x34\x87\x6c\xf3\xdd\x8d\x3c\xd1\x76\x89\xd2\x78\xe6\x85\xc3\x80\xff\x14\xee\x2a\xd7\x3f\xb9\x62\x12\xd5\xd5\x49\x5e\x5e\xf2\x32\x56\x87\x39\x23\xad\x6c\x35\x1d\x31\xc1\xcd\x23\xe6\xe9\xe9\x4e\xfa\x2f\x59\x7b\x07\x82\xc9\xcc\x32\x51\x1e\x88\x89\x13\xa5\x02\x0b\xbc\x5a\xe8\xc2\xb8\x5e\xe4\x06\x7a\x43\xa2\xc0\x0d\x08\x0c\x04\x04\xa3\x00\x2f\x97\x25\x2f\x0a\x51\xb2\x52\x8c\x05\x64\xad\x81\x98\x4e\x0b\x29\x30\x72\x61\x9a\x50\xda\x0f\xd9\x23\x9f\xa1\xb1\x49\x0b\xc5\xa4\x0e\x10\xe5\x1c\x09\xd4\x1e\xc6\xc7\xd5\x82\xa7\xa4\xea\x5a\x49\x82\x1e\x2b\xd4\x11\x8b\x31\xfc\xe9\x5c\x94\x53\x2d\x2a\x3c\xbd\xaa\xef\x00\x3d\xcc\xd9\x38\x2f\xc0\x8e\x37\xa9\x20\x1c\x36\x39\x46\x4d\x15\xa4\x85\xb4\x56\xa8\x3a\x1d\x0f\x5a\x88\xeb\xc1\x71\xc9\x2e\x45\x9a\x1a\x33\x2c\x56\x3b\x3f\xd9\xeb\x8d\xe6\x9b\x03\x87\xdb\x5c\x75\x52\x9f\xe5\xba\x5e\xc8\xb5\x8a\xae\x27\x6c\x09\xf8\xa3\xee\xe2\xcc\x05\xcf\xd6\x64\x57\x81\xbb\x45\x10\x8f\xdb\x48\xf7\x50\xbc\x40\x6d\x9e\xc5\xce\xae\x85\x4e\xb4\x90\x00\x37\x33\x04\x80\x08\x19\x4c\x8e\xf3\x42\x78\xed\xef\x70\x70\x63\x37\xb9\x9a\xd1\x83\xac\x89\x48\xa6\x49\xe2\x1f\xb3\x02\xfb\xee\x06\x63\x14\xfd\x5f\xe3\x0d\x08\xd3\xda\xfa\x10\x49\xed\x7e\xf9\xec\xda\x5e\x7f\x76\x65\x34\xf8\x51\xc3\x98\xaa\xdc\x61\x9b\xd8\xd3\xd8\x1c\xe2\x1d\xe6\xec\x52\x90\x15\x33\xec\x4d\x4e\x44\x8e\x33\x33\x21\x9d\xee\x19\xfb\x0b\x78\x9f\x61\xc2\x4f\x87\x85\x5c\x36\x44\xfa\xd8\x69\x7c\xf0\x80\x7d\xa5\x48\xd3\xaf\x1a\x7c\x35\xec\x07\x7d\x22\x5a\x2f\x03\xde\xca\x80\x03\x56\xd8\x36\x5a\x69\x94\x62\x32\xb4\xc2\xe9\xd3\x27\x55\xe0\x90\x7d\x1c\x58\xd0\x19\x44\x7a\x80\xb1\xf5\xd9\xd1\x7f\xac\xef\x41\x6a\xa5\x6b\x3d\x30\x01\x4c\x07\x39\xca\x32\xf4\xd4\xd5\x16\xfe\x79\xc9\x70\x18\x9e\x9b\x39\x89\x33\x9a\xe5\x86\xd9\x45\x07\x5a\x6f\x48\x2d\x0e\xba\xf5\xbe\x3f\x48\x72\x28\x00\xf3\xd1\x2a\x07\xfd\x1d\x9c\xd3\x27\xba\xc7\x58\x8c\x73\xc8\x66\xd4\xd8\x37\xfb\x3e\x16\x45\x29\xc6\x94\xee\x28\xc4\x48\x93\x7f\x18\x1c\x8f\x3a\x0e\x86\x99\x78\x37\x51\x7f\x76\x8e\x03\x7f\xef\xda\x30\x4e\xbb\x3d\x47\xe1\x2e\xbc\xb3\x31\x73\xcf\xc7\x7d\xbb\x27\x05\xb1\xef\x3d\x0e\x53\x5f\x7c\x5e\x74\xb9\xc7\x56\x41\x3b\x5a\x1d\xf7\x91\x14\x47\x6f\x75\x31\xd6\xe0\x47\xa4\x91\x38\xa3\x70\xc6\x92\x59\x5a\x91\x1c\x4c\x53\xb5\x29\xe1\x1b\x25\x24\x15\xba\x78\xda\x67\x11\x7b\x14\x00\x67\x2c\x3a\x10\x13\x8c\x39\x90\xe5\x97\x8c\x2f\xaa\x7c\xae\x8e\xa0\x3c\x4d\x21\x4b\x81\xda\xe0\x2d\x93\x40\xc7\x9e\x5e\xea\xc1\x73\x9d\x2b\x88\xc7\x7d\xdf\x6a\x76\x4b\xc5\xd2\xe1\x7b\x5f\x2b\x3c\xd9\x70\x14\x0e\xeb\x9e\xd2\xaa\x2c\xaa\x8d\xbf\x7b\xb2\x51\xbb\x53\x6b\x3a\xa2\x77\x2c\xe8\xfb\xbc\x25\x7c\x75\x85\x3e\xa7\xb5\xe0\x6c\xfd\x86\xd1\xbe\xe5\xe7\xe0\x2d\x69\xba\x7f\xd6\x50\xc9\x1e\x43\x73\x63\x60\x5f\xab\xe4\x2a\xaa\xee\xfd\x20\x6b\xb8\x5a\xb4\xcd\xcc\xed\x22\xde\x30\x06\xb7\x83\xf6\x40\xf3\xec\xbe\xae\x72\x7e\x75\xcf\xe3\x5c\x3a\xbf\x48\xb1\xd3\xd1\xff\x1a\xaf\x3d\x64\x78\x9d\xe1\x9d\x92\xb5\xcb\x85\x5b\x18\x78\x41\xb4\x1f\xfb\xc3\xec\x67\x44\xaa\x36\xfc\x56\x9f\x00\xda\xf5\xff\x93\xac\x66\xdb\xd5\xf4\x7c\xdb\x48\xfd\x5f\xd9\xc7\x8f\xa5\xe2\xaa\xcf\x9a\xfe\x95\x4c\x93\x91\x4b\xe2\x87\x8a\xae\xcb\xbd\x70\x8c\xe6\xb4\x9f\x55\x69\x83\x8f\x4b\x78\xbd\xf4\x2b\xab\x55\x1a\x60\xfc\x09\x05\x20\xa2\x70\x82\x2f\xbd\xe3\x95\xf3\x94\xe0\x7c\x30\x6b\xc5\x29\x3b\x3e\xd9\x80\x18\xa2\xd5\x4b\x5e\xa9\xf3\x3c\xac\xfb\x1f\xa1\xa4\x12\x31\x16\x3e\x6b\x6f\x75\x94\xcc\xeb\xad\xb0\x70\x49\xab\xb7\x90\xa7\xa6\xd6\x4e\x17\x2f\x69\xf9\x3a\x91\x55\xad\x1d\x16\x52\xab\xc1\x80\xbd\xcd\x2b\xda\x20\x21\x6e\x8a\x7b\xa1\x97\xa0\x02\x0f\x51\xb4\x84\x3e\x93\xa2\x6e\x07\xd7\x63\x55\x8e\x09\x14\xb3\x09\x78\x83\x28\x36\x30\x60\x55\x43\xd0\x86\xc9\xfb\x53\x64\x8b\xb9\x3e\xaa\x24\x98\xaf\x01\x67\xde\x5e\xac\xb9\x1d\xe0\x05\xf1\x05\xab\xf2\x3c\xd5\xf2\xa8\x71\x22\x6c\x59\x7d\x3e\xdc\x6f\x90\x1b\xd5\x9d\x5f\xa5\x2e\x79\xbf\x77\xd9\xaf\x9f\xbb\xdd\x3a\x87\xbc\xe7\x65\x25\x5b\xd9\x04\xbe\x36\xf1\x0a\x7c\x58\xcd\x30\x50\xad\x69\x16\xfd\xf6\xad\xac\xb3\x66\xfb\xa5\x4c\xb4\x26\x8c\x56\x76\xb2\xed\x7d\x12\x43\x79\x48\x67\x2c\x34\xc4\x76\xe2\x63\x36\x61\xe5\xde\x84\x1a\x75\x48\x8b\xbc\x4e\xb3\xca\x8c\xde\xc7\x98\xd7\x56\x94\x3d\x74\x13\x70\xc0\x24\x59\x65\xb5\xa5\x26\x01\x83\x35\x9c\x2b\x87\x0b\x93\xfc\x45\x69\x5e\x14\x46\xbe\x3d\xcc\x25\x43\x7a\xe9\x27\x12\x94\x83\xce\xe9\x9f\xcc\x85\xc0\x4a\xc2\x84\x70\x34\x0f\x9d\xfa\x55\x8d\xbe\x00\x32\x7d\x77\x16\x8f\x72\x20\x8d\x0e\x67\xef\x74\x86\x12\xba\xdb\x7d\x06\x3b\x65\x13\x3d\xc3\x70\xa0\x4d\x75\xa2\x86\x80\x1b\x48\x63\x8f\x73\x0d\xf7\x19\x95\xc0\x3f\x4e\x2a\xc2\x99\x4f\xbf\xcd\x64\xae\x35\xa1\xff\x90\x49\xd5\x9d\x92\xfd\x01\x5d\x2e\x5c\xd8\xdc\x3e\xfa\x76\xe1\x39\xe8\xdf\x8a\xbe\x38\xbf\x6a\xf9\x6c\x41\xc8\x1d\x2f\x11\x03\x42\x9b\xe8\xf9\xd0\xe4\xb5\xb7\x15\x56\xec\x44\xfe\x39\xfc\x39\x73\x18\x0a\xe6\x91\xd8\x49\xa1\xe6\x73\x93\xdf\x70\xe8\x36\x54\x93\xdf\xde\xf0\x59\xed\x90\x61\xb8\xd9\x47\xd9\x9e\x40\x89\x67\x99\x7b\xd9\xd8\xc4\xb1\x35\xe9\x94\x39\x4f\x7c\xd4\x99\x0f\x00\x95\x96\x15\x0c\xbd\x0e\x0f\xff\xff\x9c\x7d\x4d\x38\x8a\x49\x72\xc5\x8e\x0e\x81\x87\x19\x5c\x68\x43\x26\x2e\xd8\xd2\x51\x55\x78\xc3\xab\xf1\x4c\x94\x6c\x51\xc8\xaa\x14\x7c\xde\xc2\xb4\x3a\xf7\x89\x1a\x1d\x4e\x63\x93\x48\x7b\xe6\x1f\x7e\x69\xe5\xd8\x81\x7a\x61\x5a\x6a\x91\x08\x5a\xd9\x0f\x33\xa9\x34\x5d\xd3\x20\x96\x47\x18\xe0\x16\x58\x5e\xcd\x81\xe5\x82\x4f\x9f\xe8\xd6\xf9\xc7\x92\x4f\xe7\xee\x49\xc8\x74\xd7\xc4\x0b\x0a\xa0\x99\xff\x46\x2c\x9a\x17\x41\x3b\xff\x2f\x65\x7d\xe4\x7a\x57\x1d\x6f\xe3\xf8\xde\x7a\xc2\xbd\xe7\x68\xd4\xb2\x1c\x0f\x6c\x0a\x81\x41\x1b\x64\x67\x23\xd1\xdd\x03\x57\xa3\x13\xcf\x87\xcc\x24\x5d\xd1\x4d\x4b\xb8\x77\xe8\xb1\x7d\x8c\x40\xf2\x22\xcf\x26\xc9\x94\xca\xde\x24\x52\x26\xd9\xf4\x25\xaf\xb8\x2e\xc1\x40\x28\xd8\xd8\xaf\x05\x09\xe2\x52\x30\x3f\x36\x20\xab\x14\xfe\x7c\x91\xc7\xc2\x9c\x3b\xbc\x52\xa7\x52\xbd\x82\x1d\xfe\xf7\x38\x7b\x3f\xcb\x41\x42\x47\x8a\x50\xb6\xe0\x2b\x0f\xa1\x27\x3b\x73\x39\x95\xa1\x4d\x88\x2a\x6b\x16\x4c\x5e\x63\xd5\xb6\xa1\xa9\xd7\xf2\x57\x73\x0e\xe3\x92\xd9\xb3\x4e\x4f\xdf\xa3\xe2\x60\xf8\xa5\x2a\xb4\x21\x4b\xf5\x31\x89\x4b\xe6\x48\x9a\x25\x93\xec\x9f\xa2\x9a\xfa\x5e\x40\x72\xca\xb4\x1d\x04\x55\x68\x6b\xef\x23\x68\xf9\xa5\x1d\x60\xe1\xc4\x36\x18\x0c\xd8\xfe\x9b\xf7\xef\x0e\x8e\xf6\xde\x1e\x0d\xd9\xab\xab\x22\x4d\xc6\xfa\x51\x02\xc3\xca\x5d\xa8\xd5\xcb\x8b\x64\x93\x22\x80\xea\x58\x06\x68\xf9\x0c\x59\x1e\x70\xb1\x74\xa8\x27\x34\x9f\xe8\xf6\x5f\x40\x9c\x63\xe4\x33\xe4\xc9\xb3\x66\xc5\xf5\x25\xee\xee\xad\x7b\x8b\xbb\x2b\xb7\x29\xbf\x6a\xe5\xad\x01\x43\x55\x6b\x85\x81\xca\xdc\x1a\x50\xb0\x62\x2b\x1c\xa5\xdc\xaf\x01\x45\x55\x6b\x85\xe1\x1f\xb1\x56\x92\xc6\xd6\x6e\x87\xa8\x8f\x4d\x75\x78\x2d\x7a\xe9\xba\x74\xbf\x15\xd4\x70\x26\x7e\x6d\x3e\xc8\xdc\x4d\x7a\x3a\xcb\xc4\xd4\x3c\x10\x29\x64\x6d\x07\x8e\x69\x05\x5f\x52\xad\x95\xe0\xde\xa7\x8b\x92\x2f\x5b\x6c\xf0\x7d\x25\x18\x92\x5c\xed\x70\x28\x7e\x55\x84\x79\x82\xa2\x85\x14\x0c\xed\xff\xf0\x06\x6c\x9e\xc7\x8b\x54\xf4\xb1\x0f\xef\xc8\x30\x4a\xb2\xb8\x33\xc9\x7a\x70\x51\xb1\x57\x4e\xfd\xfb\x2f\x7b\x73\x56\xf2\xc2\x37\x86\xe6\xe5\x54\x52\x52\x09\xcc\x8b\x17\x1a\xc9\xe8\x1d\xb8\x29\xc7\x92\x6a\xdc\x92\x62\x49\x7d\x3a\x4e\x4e\x5d\xab\x9b\xe3\xc4\x33\x37\xb3\xd8\x65\x7d\x5e\x14\xe9\x75\x87\x70\xef\x41\xe3\xae\x77\xab\xd9\x44\x0d\x78\xd9\xaf\x92\x54\xe1\x8f\x71\x2e\x84\x92\x4e\xe6\xe6\xab\xeb\xdf\x1a\x8a\x6c\x9c\xc7\x70\x72\xf0\x89\x83\xe5\x1f\x0e\xf6\x2d\xf7\xaa\x3a\x7d\x8d\x23\xa6\x5b\x1d\xfc\xe1\xc9\xd6\x60\x9a\xf4\x58\xf4\x7d\x54\xff\xf6\x78\x0f\xbf\x0d\x1b\xbe\xed\x3c\x19\x4c\x7b\x2c\xfa\x7d\xd3\xa7\x17\xd8\xac\xd7\xf4\x6d\x0b\x9a\x3d\x6a\xf8\xf4\xf4\x07\x6c\x76\xdc\xf4\xed\x25\x7e\x3b\x8d\xcc\x8d\xa4\x4e\x6f\xf6\xc3\x22\x49\x63\xc6\xd9\x87\x83\xd7\x6c\x74\xcd\x78\x51\x88\x0c\xc2\x96\xa1\x5d\xa7\x7e\x3e\x10\x59\x5c\x4b\x93\x2d\x29\x13\xf6\xa2\x4c\xe1\x71\x63\xc4\x6d\x94\x4c\x55\xd6\xc1\x4c\xfa\xb3\xaa\x2a\x86\x83\xc1\xe5\xe5\x65\x7f\x9a\xe7\x53\xc8\x08\x3c\xef\x7a\x90\xf0\x29\xe7\x33\x3b\xc6\x4e\x4f\x01\x9c\x45\x60\x24\x08\x2f\x78\x4f\x32\x09\xb7\xa5\x45\xe1\x08\xa3\xad\xe0\x82\x52\x9d\x53\x82\xb6\x25\x6b\x43\x8d\xfb\xc3\xc1\xeb\xce\xa2\x4c\x7b\xd4\x97\xfe\xf7\x10\x6e\xa5\x93\x5f\x4c\xb8\x85\xc1\x43\x7c\x67\x66\x59\xbe\x09\x55\x36\x4b\xc1\xa5\x4c\xa6\xd9\x70\x8b\xa2\x25\x43\x46\x74\xd7\xb6\xd6\x9a\xf4\x96\x69\xcd\x97\x51\x77\xa0\x0e\x75\x7c\x8e\x77\xf5\xf0\x28\xd1\xdc\x3f\xab\xb5\x30\x86\xb7\xb6\xae\x36\xed\x25\xc3\x59\x93\xd8\x17\xf8\xbe\x9f\xc8\x0f\x07\xaf\x0f\x05\x2f\xc7\x33\x84\xa0\xab\xaf\xee\xa2\x5f\xe5\x98\xd9\xbc\xe3\xc1\x76\x9d\x27\x68\x1b\x38\xb6\xb1\xda\xb0\x57\x1d\x5f\x4d\xd3\xd7\x26\xc2\xd3\x9d\xa9\x65\xd5\x63\x7e\xd4\x35\x85\xf5\x05\x4f\x31\xda\xdf\x22\x4d\xd5\x09\xc2\x5e\x00\x84\x09\x29\x1a\x22\xce\xb5\xc5\xb3\xd3\xa4\x30\xc9\x3e\xfd\x54\x9f\xe8\xb4\xa7\xfe\xff\x11\x8b\x8e\x4f\x23\x27\xd8\xa1\x3b\x62\x1c\x75\xaa\xc6\x7b\xc1\xd3\xc6\x8c\x70\xfe\xe8\x61\x88\x36\xd5\x29\x2f\xa5\xce\xaf\x58\x7b\xaa\xd4\x18\xe2\x7d\x46\x37\x38\x9e\x5d\xb0\x5d\x76\xd1\xaf\xf2\xfd\xc3\x77\xde\x8c\x78\x58\xba\x60\x30\xec\x5d\x33\xa0\xff\x75\xf8\xee\x6d\x1f\x17\x50\x32\xb9\xee\x5c\xb4\x9c\xed\x60\x6e\xfb\xc5\x42\xce\x3a\x24\x2c\x61\xb2\x1e\xb1\x68\x37\x62\x8f\x8c\x00\xed\x36\x84\x67\x73\x7c\xbd\x9b\x99\xab\x92\x64\xf4\xf6\x20\xaa\x7b\xee\x07\x2d\xbc\x0d\x6a\xc6\x25\x64\x37\xdf\x87\x60\xc8\xbb\x6a\x8d\xf5\xc1\xc7\xe8\xdd\xa4\x13\xfd\xce\x64\x58\x50\x70\xfc\xaa\x5f\xed\xee\xb2\xcd\x6d\x87\x1a\x4a\x50\x61\x7b\x99\x26\x63\xd1\xd9\xea\xf9\xc0\x6b\xef\x8d\xaa\xc1\xa3\x5d\xd6\xf1\xba\x7c\x1e\x75\x81\x2d\x37\xb7\xd9\x73\x16\x3d\x8f\xd8\x90\xa9\x31\xb1\x47\xcd\x4b\xdd\x37\xaa\x46\x01\xd1\xb6\xa1\xb5\x8b\xb0\x44\xbe\xe0\xd9\x58\xa4\x94\x6b\xd3\xdb\xbf\xbe\xfa\x8a\x6e\xc3\x1e\x3c\xa0\x00\x58\x1f\x3f\xbe\xd8\x7b\xfb\xe2\xd5\xeb\x8f\x1f\xbb\x37\xdf\x3e\xed\xde\x89\x71\xed\xca\x39\x8c\xe9\x2f\x82\xc7\xa2\x24\x4d\xd5\xa9\xae\x5f\x0a\x1b\x2a\xd2\x06\x0c\x4f\x06\xaf\x7e\xdc\xfb\xf0\xfa\xe8\xe3\x8b\x77\x6f\x8f\x5e\xbd\x3d\xfa\x78\xf4\x5f\xef\x5f\x69\x93\x88\xe8\x05\x66\x8d\xdf\x3c\xba\x2e\x44\x34\x64\x11\xd8\x3c\x8c\xe1\x80\x3a\xb8\xda\xbc\xbc\xbc\xdc\x54\xf2\x7e\x73\x51\xa6\xc8\x81\x71\xa4\x5f\x3a\x1d\x19\x53\x11\x14\x05\x64\x7f\xf2\x21\x93\xa2\xea\xcc\x00\x15\xd9\x63\x2e\xd5\x40\x7c\x1b\x41\xa9\x45\x8b\xae\xdb\x55\x54\x6c\xfd\x7a\xec\xe3\x7a\x6a\xd7\x5a\x4b\x05\x9d\x46\xb8\xd9\x9d\x7f\x2a\xf4\x43\xe4\x5e\xcc\x8b\xca\x66\x73\x06\xc5\x0c\x8b\xcc\x7e\x41\x52\xf1\xef\x6f\x5e\xff\xa5\xaa\x8a\x03\x8c\xd2\xde\x9a\xf3\x64\x30\x50\x5a\x27\x1b\x95\xf9\xa5\x14\x25\x9c\x3f\xd9\xdf\xff\x72\xa0\xa1\x62\x25\xfa\xe1\x4f\x28\x15\xca\xc1\xd5\xac\x8c\x6a\x3b\x0c\x61\x41\x2f\xea\x61\xf7\x8a\x78\x14\x7e\xb3\x28\xf3\x2a\x57\xb5\xcd\x96\xd2\x1f\xf3\x34\xd5\x6f\xf1\xb8\x86\xa2\x63\xf2\x72\xa6\xd2\xd3\xda\x00\xb2\x3c\xc6\x98\x8d\x7f\x39\x3a\x7a\x7f\x13\xec\x95\x2a\x62\x25\x8d\x59\x2c\x96\xaa\x26\xb7\x17\x29\xea\xc6\x44\x87\xaa\x0c\x9b\xa6\x87\x2c\x69\x20\xf7\xbe\x62\x4a\x9a\x06\x27\xb7\x63\xed\x5b\x27\xe6\x15\xef\x31\xc3\x5f\x34\xbe\x86\xf5\x62\xf9\x35\xda\x1b\x8f\x45\x61\xd3\xc7\x2c\xaf\xec\xb1\x9c\x2b\x0f\x35\x1f\xab\xf3\xc7\x4b\x5e\x71\x40\xa5\xcb\x3e\x7d\xf2\xf7\x2e\xda\x24\x7f\x58\x4c\x26\xa2\x6c\xad\xb3\xe2\xf3\x21\xdc\x66\xb6\x7e\xfe\x31\x49\x45\x3b\xe8\x34\x1f\xe1\x47\xfc\x52\xcf\x7f\xab\x3e\xfa\x67\x87\xda\x1e\x8f\xf8\xfd\x2d\x11\x97\x08\xaa\x19\x48\x7f\x04\xd5\xda\x61\x85\xaa\x53\x08\x6b\x85\xa4\x59\x2d\xbc\x9e\x8d\x67\x4a\x2b\xa8\x76\x17\xd5\x64\xf3\xdb\xa8\x16\xdf\x14\xb0\x0c\xd4\xb0\x46\x4c\x69\xc3\xbf\x0b\x82\x3f\xcb\x3c\x5b\x85\x4f\xa0\x3b\x40\x77\x8d\xc7\x38\x33\x47\x9f\x4f\xeb\xcb\x44\x16\x79\x26\x45\xcb\x3a\xc1\x8f\xc4\x1e\x7a\xfd\xaf\xd4\xc3\x3d\xb1\xa8\xda\x7a\x8f\x45\x0e\x45\x82\xc8\xd8\x58\x15\xc7\x05\x0a\x9a\x37\x26\x37\xdc\x75\x97\xfd\xca\x06\x0f\xd9\x3e\x64\xb3\x60\x0f\x07\x8e\x6d\xf9\xd2\x71\xdb\x4c\x18\x7b\x10\xb9\x21\x5f\x80\x71\xeb\x3c\x49\xd3\x44\x8a\x71\x9e\x61\x6c\x67\x3e\xca\xcb\x0a\xac\xed\x30\xe3\x06\xdb\x9f\x60\x8e\x96\x9c\x6d\x31\x9d\xed\xb0\xcb\x38\xc1\x32\x90\xd0\xff\x06\xaf\x46\x62\x37\x8b\x06\xd5\xc0\x98\x70\xaa\xe0\x4a\x96\x93\x17\x79\x7e\x9e\x08\xcc\xa8\x12\xfd\xfd\xf0\xe0\xc7\xcd\xa3\x77\x7f\x7d\xf5\x16\x8d\xc2\x54\x05\x2b\x53\x54\x85\x4d\xbf\x8a\xaa\x34\xe7\x57\xc4\x51\xaf\xe1\xa8\x3f\x64\x9b\xdb\x3d\x7d\xc2\x49\x93\x18\xa2\x25\xf1\x6a\x21\x9d\xf8\xe5\xfe\x07\x88\xbf\xb1\xa8\x1d\x97\xb0\x94\xfd\x69\x97\xed\x6c\x81\xe7\x35\x15\xfc\x91\x3d\xde\xda\x32\x5b\x26\xec\xf4\x5a\x48\xf7\x89\x91\xb5\xb0\x1e\xe7\xf3\x79\x9e\x0d\x35\x60\x2d\x38\x87\x75\x3e\xef\xb1\x4a\x5c\x55\x83\x22\xe5\x49\xd6\x63\x0f\x07\x0f\x23\xaf\x03\x5f\x8d\x3f\x8e\x30\x4c\x4b\xd4\x63\xd1\x54\x54\xea\x1f\xd5\x71\x74\xea\x28\xf7\x54\xf7\x8d\xa8\x66\x79\xfc\x36\x07\x01\x3b\x87\x1f\x34\xce\x10\xe7\x63\xfc\x7a\xaa\x43\x04\x93\xce\x1c\xf6\x5c\xe4\x12\x3a\x2c\x16\xf8\x8f\x62\xc6\xf6\x8e\x7f\x4a\xaa\xd9\x8d\xba\xc6\xee\x30\x1e\x73\x93\x5a\xd6\xb5\x98\xd5\xf4\x51\x0d\xf6\x0e\x17\x32\x78\x26\xae\xaa\x54\xd4\x2a\x8d\xf3\x52\x0c\xf0\x9b\xa9\xaa\xcf\xee\xb5\xca\x5a\xef\xd4\x15\xfc\x16\x3f\x2e\xd2\xf4\x3d\xaf\x66\x5e\x33\xea\xc1\xab\x60\x9a\x81\x24\xf8\x8b\x61\xae\xe6\xce\xdc\x4a\xa6\x25\xee\x19\x7c\x2e\xde\x95\xc9\x34\xc9\x5a\x1b\x07\xf5\x4c\x7b\x7a\x0a\x83\xa7\x95\x06\x74\x9d\xcf\x51\xcb\xb4\x18\xce\xb8\x9a\x95\x5a\x55\x19\xc3\x5d\xbc\x7f\x52\xc8\xc4\x25\x7b\x5f\xe6\xf3\x44\x0a\x6b\xb0\x13\x27\x12\x58\xec\xef\xb3\x52\x6b\x2c\x25\x7a\xe1\xf6\x58\x29\xd4\x16\xe3\x1d\xc7\x48\x58\xbd\x44\x21\x8a\xbd\xf4\x9d\xed\xd9\xa9\x63\xa9\x49\xd5\x88\x19\x3d\xdb\xcc\x9a\x8e\xe2\x74\xe0\x6e\x6b\xb8\x1e\x03\xd0\xa1\xba\x8d\xde\x8c\x02\xc3\x77\x93\xee\x0b\x22\x35\xa9\x82\xa3\x9d\x83\x26\xdd\x7e\xfa\x8a\xb5\x13\xa9\x6f\x30\x40\xe5\x73\xc4\x65\x32\x66\x7c\x51\xcd\x44\x56\x91\x64\xb1\xe3\xa0\x21\xaa\xcf\x81\x23\xcd\x42\x8a\x92\xfc\xea\x9c\x4a\x7d\x53\xfc\xe9\x13\x8b\x22\xcf\xf3\xa2\xe0\x52\x5e\xe6\x65\x1c\xb4\x30\xc5\x7e\x0b\x9f\x24\xfd\xbd\x45\x35\xcb\xcb\xe4\x17\x9d\x83\x35\xfa\x01\xf0\x56\x07\xf8\x51\x95\xf3\x8e\xe9\xf7\x11\x8b\x86\xaa\x54\x83\x6d\x0c\xc3\x38\xb1\x0b\xc9\x5b\x37\x7a\xbc\x23\x2e\xc5\x87\x83\xd7\x3d\x8d\xe8\xa2\x4c\xad\xad\x0e\x6e\x6b\x79\x21\x32\x5d\x1d\xc5\x50\xbf\xca\x3f\x14\x85\x28\x75\xa6\x73\x73\x41\xa7\x7b\x33\xe0\xf4\x65\x92\xf7\xd3\xb9\x33\xeb\x41\x98\x01\x6f\xae\x0e\x69\xfa\xf5\xec\x3a\x1b\xf0\x9b\x43\x1f\x33\xfd\xc9\x90\x99\x0a\x5c\x70\xaf\x13\x59\x09\x7c\xc0\x2f\x05\x8f\xaf\x31\x62\x45\x30\xc2\x0c\x3e\xc1\x17\x8c\xbf\xec\x2e\x4a\x4c\xa4\xf4\x3a\xe7\x71\x18\x8d\xe1\x2b\x8d\x23\x78\x27\x20\x2c\x80\x74\x08\x01\xdd\xd4\xe1\xea\xc9\x9a\x57\x5e\xe4\x19\xa5\x01\x42\x76\x0b\x11\x33\xc8\x40\x91\xc5\xe0\xfb\x91\xc4\x59\x54\x51\xc2\xf7\x92\x74\x2e\x7c\x2f\xd0\x96\xe8\x0e\x30\x9d\xfd\x69\x74\xcd\xf2\x0c\x73\x6b\x04\xe9\x34\x06\x03\xb0\x40\x86\x6c\xdc\xe2\x4a\xed\xba\x90\xa5\xcf\x90\x7d\xc6\x2b\xca\x56\x36\x49\x52\x31\x64\x70\x20\x1c\xe7\x69\x8f\xcd\x73\x59\x99\x93\xa9\x03\x0e\xb0\xf0\x55\x03\x2e\xd9\x16\x13\x17\x22\xd3\x89\xa2\x92\x2a\x92\xe0\xc5\x35\x56\xe7\xc5\xc9\x22\xd5\x1d\xba\x74\xd5\xb4\x24\x20\x10\x8d\x0d\x9c\x54\x3a\x96\xca\x38\x7e\xb5\xb3\x3c\x78\xc0\x1a\x8a\xed\x85\x0f\xa0\x4f\x97\x3e\x5b\xdd\xf5\xe7\xe3\x7d\x29\x0a\x48\xe6\x00\xf3\x82\x80\xdd\x55\xae\xcb\xac\x98\x54\xaa\xc6\x5e\x9a\x1e\xf8\x1f\x22\xc5\xba\x9a\xac\xcf\xbd\x8d\xca\x8c\xa7\xb1\x61\xa7\xdb\x65\x43\xdf\xcb\xc1\xed\x97\x44\xf8\x57\xc4\xfb\xba\x58\x49\x52\x08\x08\xd4\x50\x0c\x0a\x36\x24\xc7\x66\xcf\x6b\x44\x03\xab\x90\x61\xad\xb8\xb1\x6f\x3f\x32\x8c\xda\x3e\x86\x1e\x5e\x41\x84\x18\xa5\x5a\xfa\x93\x5a\xab\xa0\x7a\x0f\x2b\x81\x59\x89\xad\x48\xdb\xcf\x30\xa4\xbc\xeb\x15\x04\x83\x1e\xd2\xbf\x3d\x77\xa6\xe9\xa0\x1f\xb0\xdb\x67\xc7\x6d\x0c\x55\x97\x70\xf7\xec\x99\xee\x5c\x27\xd8\xc1\x80\xbd\x48\x05\xcf\xd8\xa2\x08\x41\x3a\xdb\x92\x9d\xba\xcf\xde\x76\x04\x8b\xd3\x6c\x70\xba\xc1\x18\xae\x08\xd1\xb2\x83\x75\xb8\x64\xb9\x4d\x9c\xc5\xd9\x9c\x67\x0b\x9e\x7a\x95\xba\xa1\x18\xc3\x13\x49\x4d\x76\xed\xa9\xe2\x36\xe1\xb5\xe6\x82\x40\x62\x74\x1c\x6d\xa6\x13\xe9\x4b\x2c\xe8\x56\xc4\x91\x96\xf3\x3d\x16\xbd\x7a\xf1\xee\xed\xdb\xbd\x1f\xde\x1d\x1c\xbd\x7a\x19\xf5\x34\x8a\xdd\xfb\x26\x61\x9a\x5f\xb2\x54\x5c\x88\x94\x65\xa2\xba\xcc\xcb\x73\x94\x9c\x32\x24\x8c\x20\xed\x2c\x20\x0c\x8e\xc3\xf7\x1c\x39\x10\x3c\x25\x28\x98\x47\x2f\x89\x63\xb5\x81\x94\xf9\x9c\x2d\xa4\x4e\x9f\x4a\x73\xe7\xb4\xd3\x9d\x50\x9a\x46\x70\x69\x9d\x24\x25\x5c\xbb\x91\xd4\xf3\x70\x5c\x46\xd8\xb7\x54\x11\xb5\x46\x4b\x56\xb4\xb0\xfa\x52\xc4\xa4\xdd\x33\xa4\x9d\xdd\x65\x03\xea\x1d\xe1\x87\x30\x78\x14\xd5\x07\xdc\xf5\x83\xb9\x12\x3b\x04\x26\x9f\x80\x2e\xe3\xef\xd8\x4a\x99\x99\x4b\xd8\x87\x44\x2c\x62\xab\x1c\x39\xaa\x59\x03\x5c\x3f\x34\x40\x63\xbf\xed\x8d\x43\xbf\xfd\xc6\xa9\x68\x68\xd7\xca\xe5\x35\x69\x73\x7f\x33\xb4\x17\xc7\x70\xd6\x27\x19\x68\xca\x8f\xd4\xee\x9f\x90\x03\x75\xac\xb6\xf2\x64\xc2\xca\x45\x96\x81\xdb\x72\x06\x41\x41\x78\x16\xf3\x32\x36\xd2\x46\x64\x17\x49\x99\x67\x73\xeb\x08\xa8\x94\x2e\xca\x55\x08\x0e\x69\x59\x5e\x29\x30\x97\x22\x02\xf7\x5e\xc6\xd9\xa5\x18\x31\xc5\x90\xa2\x84\x28\x91\xe8\xb0\x9b\x81\xe9\x45\xbf\x7e\x14\x38\xa4\x2e\x7f\xc0\x1e\x5f\x65\x17\x9d\x6e\xe8\x9c\x0e\x97\x1a\xed\x07\x35\xfa\x1e\x05\x04\x6c\x24\x03\x42\x54\xc5\xda\xe8\x52\x73\xcc\x65\x52\xcd\x5e\x94\x22\x56\xfa\x3e\x4f\xc1\x5a\x3f\x38\xc4\x19\x8d\xb5\x0b\x0f\x07\xd4\xce\xbf\x76\x61\xcf\xdd\xfd\x05\xf0\x02\x2d\xaf\xd3\x58\xbb\xcb\x86\xb6\xba\xb9\x59\x0f\xfc\xaf\x0d\xb2\x81\xf0\xf5\xce\x46\x0e\x78\x7b\xc5\x73\xca\x76\xed\x50\x5b\x23\x4f\x10\xa9\xf4\x5d\x0b\x19\x06\x78\x5c\xa7\xd0\x88\xa4\xa8\x0e\xdc\x4e\x5d\x55\xc5\x7d\x78\xf3\x6e\x38\x7c\x34\xbd\x87\x62\x1f\x5a\xd3\x7b\xb1\x77\xe9\xe7\x9d\x45\xeb\x2f\x11\xe7\xe2\xba\x5f\xe5\xaf\xf3\x4b\x7d\xd2\xc0\x4a\x63\x3a\x32\x56\x70\x5d\xee\x3f\x96\x82\xfc\x9e\xe7\x17\x82\xb9\x07\x4b\xd5\x27\xdc\x1a\x26\xd2\x4e\x89\xdb\xac\xf9\x70\x7a\x2e\xae\x4f\xeb\x6f\xb6\x61\x7f\xef\xaa\x99\x28\x2f\x13\x29\x18\x37\x24\x6f\xa4\xb8\x37\xc9\xfd\x1a\xb1\x20\xd9\xd7\x05\x4f\x1b\xdf\x76\x3f\xd7\x0e\x77\x34\xc5\x21\x8b\x43\x12\x2c\x94\x26\xc9\x04\xf2\x5d\xe9\x91\xb6\xbc\x9b\x35\x2f\x15\xff\xf6\x1d\x31\x0e\xbb\xda\x65\x5f\x7d\xd5\xdc\xba\x05\x57\x4f\x15\x5d\x8e\x68\x83\xf2\xda\x7e\x21\x5c\x53\x64\x41\xd5\x6d\x52\x80\x9b\xef\x88\x2d\x24\x74\x1c\xc5\x9c\xe0\x2f\xdf\xbd\x79\xa5\x8f\x45\x18\x76\x26\x53\x9b\xbf\x79\x91\x83\x3b\xdc\x7c\x5e\xf0\x2a\x19\xa5\x22\x7c\xd7\x7b\x0d\x4a\xc9\x8e\xef\xc4\xff\xc3\xa2\xa2\x03\x1b\xa5\x8e\x97\x8b\xa2\x28\x85\xd4\x8e\xaa\xd1\xcf\x32\xcf\x22\x34\x3e\xe7\x92\x25\x26\xc5\x3c\x9c\x19\xe0\x30\xa7\xad\xd2\xa2\xda\xf5\x7b\x64\x16\x62\xdf\x5f\x6c\x4d\x07\x01\x78\xf7\x83\xde\x82\x05\x44\x79\x06\xd7\x09\xcc\x62\x15\x87\xa2\xcc\xa7\x6a\x18\x4d\x33\xa9\x6d\xda\x11\x89\x3c\x7b\x99\x5f\x66\x69\xce\xe3\xf7\xba\x4d\xab\x91\xbb\x9e\x56\x1e\xc7\xaf\x2e\x44\x56\xe1\x49\x5e\x94\x9d\x48\xf7\x67\x34\xa3\x06\xb8\x4d\x0b\xe6\x6d\x0e\x99\xf1\xed\x1c\x92\x91\x36\x5b\x14\xaa\x29\x1c\x54\x2b\xd9\x8e\xfb\x87\x62\x09\xe6\xee\x39\x14\xe1\x35\x8c\x05\x3f\xac\x39\x24\xbf\xbb\xda\x80\x9c\xb9\xc5\x43\xc1\x51\x7e\x2e\x32\x5f\x99\xa5\x09\x72\x0f\x0d\xfa\x6b\xbd\x69\xbf\xc0\xbb\xc5\x7e\x35\x13\x8e\x47\x60\x9e\xa1\xed\x82\x12\x16\xf0\x47\x4d\x9c\x37\x1e\x25\x6a\x87\x89\x9a\x87\x3e\x4d\x2f\x1e\x4e\x3c\x47\x03\x54\xc3\xb0\x33\xdf\x4b\xa3\x4d\x85\x6a\x51\xa2\x9a\x24\xa7\x73\xc3\x60\x76\x9e\xa6\xe8\x45\xfe\x4d\xa9\xab\x99\x79\xb7\x55\x14\xef\xc1\xc3\xc7\x0a\xf9\x2c\xf6\x2e\x44\xf1\x51\x64\x95\x55\x87\xc8\x66\x6a\xec\xf5\x2b\xe5\x81\xfb\x85\x94\x23\x6d\x1d\xf8\x02\xb3\x87\xf3\x0c\x4f\x0d\x18\xdc\x06\x22\x51\xa0\x6e\x27\x62\x9d\x5d\xd5\x2a\xb0\x78\x62\x19\x83\x7f\x80\xa6\x1f\xcf\xac\xa4\xee\xb7\x1a\x12\x12\x28\xb8\xb4\xf2\x52\xb7\xf6\xbd\xea\xef\xc8\x5a\x10\x3b\x84\xda\xc4\x77\x8d\x50\x8f\x15\x2a\xa7\x0e\x50\x08\x1c\xd9\x81\xdc\xf6\x57\x7c\x5e\xa4\x22\x54\xba\xbb\xcd\xfd\x1d\xd3\x68\x4e\xdd\x5b\xb5\xd6\xaa\x38\x58\x5d\xd7\x19\xba\x63\xbe\x08\x44\x45\xeb\x45\x7a\xb9\x43\x14\xfb\x2b\xcd\x17\xdd\xe3\x44\x6d\x06\x3c\xda\x3b\x57\x0d\xd6\x8e\x44\x1f\x5d\x6d\xe8\x0a\x02\xd2\x75\x03\xd9\xb9\x8c\xd1\x11\xe8\xd4\xb1\xaa\x8f\x1b\xdb\x16\xf9\x86\xb9\x86\xf1\xa0\x9b\x4d\x9d\xee\x1c\x13\x95\x6c\x5a\x93\x65\x8c\xe0\x04\x44\xb0\xa1\x03\xa1\x09\x1a\x8f\x00\x90\xd1\xb5\x89\xca\x54\x5d\xe6\x54\x61\xa1\x73\xdd\x41\x3d\xa5\xdc\x4c\x85\xd2\xb6\xea\x6c\xe9\xf3\xd9\xf6\x92\x6f\x3b\xc1\xbc\xea\xaf\x6f\x6d\xc8\x7e\x8c\xe7\x04\x37\x9f\xea\xd0\xaf\xf1\xa2\xf6\x4a\x73\x71\xba\x59\x3a\xf5\x98\xb3\x05\x2a\x93\xa8\xde\xd6\xd3\xb2\xa3\xed\x55\x97\x04\x46\xaa\x3d\x9d\x9f\x64\xcc\xa0\xb1\x6b\xfe\xb2\x79\x1a\xf1\x68\x05\x4b\x6d\xd7\x0f\xfe\x0e\x56\x4c\x3f\x96\xf9\x1c\xb1\xd9\xf9\xab\xb8\x06\x2b\xd0\x68\x51\xa6\x51\x8f\x45\x78\xb1\x8f\xef\x95\x25\x9f\xab\x7d\x28\x52\x2a\x73\x64\x63\x9e\xc2\x60\x5e\x0a\x51\xd8\xa8\x5f\x06\x0a\x9d\x34\x54\x2b\xbe\xa8\x66\x00\xa7\xcc\xaf\xae\x9d\xe6\x3a\xf6\x42\x1e\x60\x80\x12\x33\xa2\x87\x08\xd5\x92\x50\x0a\x0d\x71\x82\x32\xd2\x7a\x0c\xc6\xf6\x55\x41\x9f\xc4\xf5\x95\x83\xaa\x13\x68\xa8\x80\x28\xbe\xb4\xa9\x3f\x5d\xdd\x48\xfd\xf6\x8f\x74\x06\x9e\x7f\x14\x53\x15\xc3\x4d\x1a\xcb\x42\x5d\xc4\x00\x08\x5f\xe2\x55\x75\xff\xa5\x1d\xe6\x82\x5f\x1d\x08\xcc\x5a\x06\xbf\x67\x55\x55\xec\x4d\x45\x56\x19\x38\x10\x2a\x97\x8a\x58\xe4\x6c\xe1\xea\xa7\xcc\xc7\xe7\xa2\x82\xc7\x51\x55\x5d\xdb\xf9\xd6\xec\x5c\x6b\xfc\xd0\xf3\x9e\xff\xbd\xcf\xe0\x4c\xe9\x05\xb2\xf5\x74\xa3\x1d\x08\x48\x7b\xda\x6a\xcd\xa6\xb9\x96\xaa\xed\xfa\xcd\xbc\x18\xb6\xdd\x46\x74\x5b\x78\xaf\x17\x2c\x35\xbf\x46\x1d\xe9\xc0\xf4\xc6\xc3\xa2\xdb\x8e\x2d\x36\x8b\x85\x28\xde\xc0\xb3\x3b\x2d\x65\xfc\xde\xf3\x07\x63\xd4\x8d\x9a\xcd\xdd\x7d\x92\xaa\xd5\x7c\xd8\x43\xed\xb6\x43\x5a\x35\x86\xed\xdb\x8d\x61\x7b\xed\xe9\x6e\x92\x15\x3d\xcf\x8d\xd0\xfb\xfc\x9b\x70\xe7\x6f\x47\x0b\xb0\x1e\xbd\x4a\x72\x2d\x5e\x9b\xd6\x2a\xb6\xd3\x91\x98\x5a\x96\x47\xd7\xaf\xd5\x44\x55\xb7\x4f\x08\x5f\x47\x7d\xbe\xd3\x5b\xb3\x6a\x0f\xa9\xd8\xf5\xb6\x45\x65\x93\x24\xad\x44\x69\x4f\x09\xf8\x7b\x4f\xa3\x1d\x24\x67\xd7\xd6\x9b\xfa\xb3\x79\x9d\x83\x6a\x68\x8e\x1d\x5a\xa2\xfb\x2c\x61\x90\x73\xf8\xc0\x94\xbd\xfc\xf7\x66\x08\xed\xe8\x0d\x15\x97\x68\x6d\x5a\x23\xdb\x63\x67\x78\x64\x3b\x63\x89\x54\x27\x02\x9d\x21\x7d\xc6\x2b\x0c\x7c\x03\xb7\x19\x97\x33\x91\xc1\xd7\x42\x27\x15\xc6\x9b\x09\x38\xeb\x39\x3a\x16\xc4\xa5\x6b\xd0\xd7\x77\xfd\x63\x80\x7b\x00\x18\x38\x56\xd2\x64\xf9\x3e\xf7\xae\xec\xab\x59\x22\xfb\x73\x73\x4b\x3f\x37\x57\xf2\x70\xb8\xc2\x26\x0d\x36\xc8\xae\x72\x65\x6d\x2c\x3d\x23\x99\x08\x1b\x47\xec\x11\xeb\x78\xbd\x3c\x67\xd1\x10\x9e\x1e\xbc\xd2\x21\x8b\xa2\xae\x09\xbd\x55\xeb\xd8\x9a\xe2\xdb\x94\x08\x0d\x1a\x1f\xb6\x7b\xe6\x3a\xa5\xa3\xc6\xfb\x66\x91\xf8\x61\xb1\xfc\x62\x1d\xb4\x29\x88\x33\xed\x57\xea\x74\xeb\xf9\xe8\xbd\xc8\x97\x98\x1c\x5f\x69\x50\x31\xcb\xb3\xa6\x40\xfa\x3f\xed\xbf\xf8\xf3\x60\x92\x8f\x17\x72\xf3\x22\x91\xc9\x28\x15\x18\x4c\xff\xe2\x49\x7f\xbb\xff\x14\xbc\x18\xbd\xaf\xfd\x9f\xe5\xfa\x91\xac\x6c\x85\x97\xef\xde\xb8\x75\x36\xe3\x7c\xae\x47\x38\xe3\xf1\x5f\xc5\xf5\x28\xe7\x25\x5e\x7d\x58\x72\xd2\xd7\x1f\x55\xff\x7f\xc3\xee\x0f\xc4\x58\x64\x55\x7a\xed\xa4\xea\x58\x52\xeb\xc8\x3c\x50\xd1\x21\x1d\x13\xa7\x14\x0b\xb0\xa0\x95\x3f\xcd\x92\x4a\xa4\xe8\xed\x8b\xbc\x07\x4f\xcd\xaa\x77\xd0\xa7\x24\x98\x0b\x3b\x05\x8b\x32\x75\x7e\x55\xc2\xfd\x25\xe6\x3c\x71\x7f\x6b\xe3\x1b\xa7\x28\x03\xc7\x58\xa7\x20\x86\x14\x29\xe6\xe7\x3c\xcf\x2a\xb7\xbb\x4b\x21\xce\xdd\xfe\x92\xb9\x08\x1a\x07\x45\x91\x2e\xdb\x84\x90\x14\x91\xce\x56\xa9\x58\xd8\x1e\xca\xe6\xc5\x42\x1d\xb8\x2e\x67\xc2\x24\x20\x9f\x26\x17\x22\x63\x02\x83\x36\xe8\x87\x4a\x3f\x18\x61\x55\x26\xd3\x29\x56\x07\x38\x67\x1e\x5b\x9c\x61\x8c\x4a\x36\x12\x6a\x2d\xf2\x38\x16\x71\x8f\x25\x7d\xd1\x37\xdd\x24\x16\x6e\x7a\xc9\xaf\x25\x9b\xf3\x6a\x3c\x43\x50\xc3\x00\x16\xc8\x1f\x28\x23\x71\x63\xe4\x0b\xc5\x95\xf8\x0c\xee\x03\xee\x81\x8d\xfd\x4a\x39\x7f\x3f\x93\x94\x71\xe4\x0c\x40\x3a\x42\xfc\xa5\xe6\xb5\x37\x79\xcc\xd3\xa4\xba\xee\x28\x48\x6e\x2a\x0d\xbc\x23\x56\xa5\x7d\xf5\xb7\xcd\xb7\xc8\xa7\xe4\x24\x83\xdf\xf0\xa7\x93\x2d\xc3\x54\x50\xf2\x7d\xff\xed\xfb\x0f\x47\x70\xf5\xd7\xc0\x6f\xc7\x0a\xf0\x29\x18\xae\x00\xac\x52\xf0\xf8\x5d\x96\x5e\x87\x66\xb4\x4d\x59\xc9\xbd\x5e\x8e\x5e\xfd\xfd\x68\xef\xe0\xd5\x5e\x74\x3b\x58\xd0\x20\x91\x74\xf2\x78\x15\x27\x95\x3a\x67\xae\x6a\xa9\x9d\x7b\x69\xfd\x7d\xb6\xbc\xf5\x57\x21\x0a\x56\x95\x7c\x7c\xce\xf2\x09\xcb\x17\x90\x42\x0f\xa8\xcd\xe6\x44\x6e\x4a\x69\x09\x77\x50\x67\xe1\xd2\x3f\xc3\xc9\xde\x47\xf7\x53\xb0\x26\x2a\x61\x29\x63\x08\x68\xc8\xb2\xcf\xe9\xf2\x80\x4b\x76\x91\x70\xa8\xa8\x3b\x79\x06\xad\x39\xdd\xbb\x9d\x8b\x6b\x06\x77\xe8\x2c\x4e\x62\x7c\xba\xcc\xc6\xe9\x02\xc2\xa0\xcf\x45\xc5\x7b\x8c\xa7\xd5\x00\xa3\xfc\xc1\xe3\xe5\x38\xcf\xaa\x32\x4f\x55\x43\x84\x54\xcd\x44\x46\x98\x10\xf2\x89\x34\x9d\xf5\xed\xfb\x4e\xaf\x56\x49\xf5\x66\x2a\x7a\x0c\xec\x8d\xf7\x33\x5e\x2c\x1b\x8e\x75\x78\x16\x1f\xd2\xff\x2a\xae\xd5\x91\xb1\x03\xd5\x1c\x37\x27\xf8\xdd\x57\xa3\xf8\xab\xb8\x56\xc7\x7c\x2c\xe0\x69\xe5\xfd\x1e\x57\x65\xea\x66\xdf\xab\x27\xe5\x6c\x17\xbe\xce\xb4\xee\x4f\x18\xaf\x18\xcf\xae\x59\x91\x27\x59\xc5\x38\x4e\xc7\x38\x4d\xc6\xe7\x52\xa7\x78\x80\x4f\x6a\xf1\xc7\xe2\x22\x19\x8b\x1e\x13\x99\x5c\x94\x14\x64\xef\x52\x30\x34\x9f\xd3\x74\xb5\xd4\xe2\x97\xfc\x1a\xb7\x06\x9f\x60\xf0\x80\xcd\x2f\xf2\x24\xa6\x80\xda\x49\xb5\xe0\x74\x6f\x24\x4a\xa1\x91\xc0\x57\x12\xc9\x38\xcc\x77\x0e\x6a\x0b\x4f\xd1\xa0\x8f\x24\x08\x80\x23\xd9\xd6\xd3\xec\x91\x69\xf4\x55\x13\x16\x27\x93\x89\x80\xf4\x46\xa6\x1e\x34\xa6\x18\xdf\x38\x44\x80\x53\x1b\xe6\xe5\x2c\x49\x85\x1a\xa0\xac\x92\x34\x55\x2a\x44\x76\x6e\x5f\xc8\x6b\xfc\xdf\x6f\x9f\xec\xf7\x39\x30\x38\x4c\x38\x4d\x59\xc3\xf4\x38\xcb\xae\x06\x01\xb6\xbf\x44\x75\xf3\x02\xa8\xdd\x71\x58\x06\x74\x9b\x0b\x53\x01\x0d\x11\x41\x88\xa0\x1d\x8b\xe7\xa0\x45\x2b\xb0\xe2\x23\x36\x12\xe3\x7c\xae\x08\x3c\xae\x92\x0b\xc1\xf8\x14\xac\xec\x5d\x33\x5c\xb0\xee\x9b\xe9\xf7\x04\xcc\xb5\x00\xd4\x33\xe0\x72\x5c\x46\x7a\x7f\xe9\x1c\xf2\x09\x2f\x13\x8a\xcc\x9e\x5e\x43\x2b\x78\xd5\xaa\x2e\x93\xb1\xe8\xf6\x7d\x3c\x94\x5e\xca\x47\xc4\x40\x6c\xcc\x21\xec\x22\x67\xa3\x74\x51\xd2\x84\x6b\xc0\x30\x4f\xde\x5e\xd2\x33\xa0\x4a\xb1\x09\xb1\x08\x30\xda\x32\x6c\x56\x97\x7a\x7d\x63\x80\xf9\xcb\xa4\x1a\xcf\x84\x64\x23\x25\xbf\xe8\x9d\xb6\xe2\x23\xc7\x8e\xa1\x45\xcd\x70\x34\xf8\xf6\xf5\xc4\x5a\x53\x92\x16\x68\x4e\xd8\x89\xf3\xb1\x36\xf2\xcf\xc7\x0d\x2f\x41\xe7\xe2\x3a\xce\x2f\xb3\xa8\xe7\x0b\x07\x6b\x29\xdb\xd6\x70\x9e\x2b\x92\xb9\x4d\x1d\x56\x5b\xdd\xbc\xc0\xca\xb7\x07\x50\xe5\x8b\xf1\x4c\x56\xbc\xac\x6e\xd7\xde\x72\x2d\xf2\x80\x81\x12\xf2\xbb\x05\xe5\x06\x6c\xb5\xe7\x02\xc1\x61\x14\x01\xa5\x31\x4a\xf3\xed\x88\xdd\xd8\xf6\x46\xf4\x6e\x84\x70\x43\x92\x37\xc2\xb8\x19\xd5\x1b\x41\xdc\x96\xf0\x8e\x77\xb3\xbb\x5e\xbc\x6d\x0c\x74\x2d\x5e\x4e\x21\xcb\x39\x6e\x57\xf8\xf3\x99\x76\x31\xbb\x0e\xf5\x10\xf8\xdc\x07\xbd\x51\xc8\x4e\xe4\x6b\x8d\xc6\xa3\x55\xbf\xdf\x97\x25\x24\x0b\x52\xe7\x1f\xf7\x65\x3e\x99\x17\x28\x2d\x94\x98\xf2\x41\xa0\x24\xc3\x87\x6e\xce\x0e\x21\x2b\xdb\x2b\x6b\x91\x37\x18\x28\x31\xaf\x8e\xd6\x4a\xb3\x51\xe7\xe4\x99\x58\x94\x89\xac\x92\x31\x46\x93\x9e\xe5\x52\x04\xe6\xcf\x18\x60\x1c\x20\x62\xc2\x89\x91\xd0\x39\x58\xb4\xf5\x1f\xc4\x94\x55\xd2\x51\xdb\x17\xe0\xbb\xce\x68\x51\xb1\x18\x62\xfb\x97\x42\x09\x49\x8b\x03\xcf\xc0\x93\x6c\x5c\x72\x39\x53\x50\xfc\x31\xcc\x79\xaa\xc9\x2f\xe2\xe7\x27\x3a\xff\x5a\x96\xc3\x03\x3c\x20\x0a\x17\xcb\x30\x31\x47\x38\x01\xe3\x99\x18\x9f\xf7\xad\x28\x84\x54\x50\xb0\x71\x8f\xae\x29\x91\x22\xed\x84\x55\x4e\x4f\x13\xd0\x29\xe4\xb2\xc3\xb7\x71\x30\x34\xd3\xa9\x04\x68\xc2\x6a\xc2\xf0\xd3\xa7\x15\xba\x38\x4e\x71\xd7\x57\x3f\x0e\x67\x3a\xc9\x87\xda\x27\x44\xac\xc6\x4c\xe2\x1f\xa3\x5b\x25\x12\xec\x29\x63\xdc\xcb\x7d\x72\xd0\xd6\xd0\xbe\xeb\xfe\x90\x2e\x4a\xcd\x9f\xf6\xe5\xe5\x28\x67\xb1\xa8\xc4\x58\x29\x3b\x15\x1f\x0d\x2e\x93\x2c\xce\x2f\x69\x8f\xe8\xa9\x59\x49\xf3\xfc\x1c\xa8\xe9\xa1\x32\xc9\xd3\x34\xbf\x44\x33\x07\x35\xf7\xbc\x48\xe2\xf4\x1a\xc8\xc8\xec\x6a\xa2\xbd\x4c\xe7\xb7\xdb\x9f\xd8\x14\x0e\x52\x88\xa6\xaa\xb0\xb5\x25\x19\xdb\xde\xda\x9a\xcb\x1e\x32\x4e\x51\xe6\x23\x3e\x4a\xaf\xd1\x8f\x10\x38\x6d\xba\x48\x21\xd6\xe0\x78\x21\xdd\x3e\xda\x0f\xd1\x66\x73\xc2\x01\xf6\xc7\xa9\xe0\xa5\x36\xdf\x5c\x7e\xaa\xc6\xf5\xb6\xf2\xe4\x4d\x80\xa5\xa8\x34\xd8\x86\x1c\x96\xab\x4f\xf9\x10\x92\x7b\x7b\x6b\x6b\x65\x32\xe5\x85\x14\xfb\xbe\xd4\x71\x04\x4e\x09\xd9\x6c\x6c\xe2\x55\x9e\xa6\x6a\xb7\xef\xb8\xa1\x29\x31\x5f\xa5\xe7\x1a\x05\xbe\xea\xbb\xe6\x26\xa3\x3f\x49\xb2\xf8\xe5\xbb\x37\x6f\xf3\xd8\x26\xd4\xf4\x03\xd3\x43\x8b\xaf\x6a\x39\x0a\xf4\x56\x0f\x07\xaf\xfc\x32\x53\xb2\x78\x0c\x31\x94\x3c\xcf\xdb\xcf\x3d\x76\x6c\xd2\x66\xdd\x3c\xce\xfd\x5d\x52\xaa\x34\x65\xc2\xf4\xa5\x78\xb7\xe1\x2c\xa8\xef\x53\xbd\x8a\xc3\xe0\x37\xe9\x62\x79\xe6\x2c\xb9\x61\x7d\x15\xf6\xb4\xd0\x9f\x0c\xd5\xff\x9d\xe8\x58\x51\x1b\xbd\x8d\xb6\x39\xff\xc8\xcb\x92\x5f\xbf\x4e\xce\xc5\x51\xae\x63\x5d\x95\x3d\x96\x1a\xa3\x17\x45\xc3\x14\xe2\x66\x9a\x58\x34\xea\xe7\x9f\x18\x2f\x4b\x1d\x0d\x0b\x4a\x76\x9d\x12\x37\x85\xa3\x09\x8f\xd5\x53\x15\x76\xbc\xb8\x5a\xaa\x1b\x8c\x9a\x95\x8a\xcc\x8f\x96\xa5\xea\xea\x58\x59\xa5\x8e\x92\xe5\x93\x4e\x55\xf1\x93\x31\x86\x83\xd1\x91\xe4\xfb\x83\xf0\x0b\x44\x9f\x6e\x25\xca\xc2\x86\x9a\xdc\x57\x07\xe7\x51\x6a\xc8\x93\xf7\xd8\x3c\xc9\x5e\x7b\xf4\xf9\x2a\xef\xba\x07\x44\xe7\xfa\x3a\x87\x73\xc2\xc9\x06\x5e\xee\x9e\x6c\x74\x1d\xdc\x7d\xb2\x5b\xb8\xe6\x75\x37\x33\x6f\x06\xad\x91\x23\xf2\x2e\xc5\x6d\xf9\xb6\xc7\x36\xb7\xbb\xa6\xfb\x8c\xfa\xa5\x27\x87\x0d\xf6\xe0\x01\xcb\xfb\xe3\x3c\x93\x55\xb9\x18\x43\x2e\x40\x48\x45\xee\x16\xf5\x33\x9d\x3d\xcc\x85\xf0\x86\x17\x27\x1b\x6a\xd6\x75\xc1\xa1\xa8\x9c\x71\x00\xf2\x7d\x45\xe6\x4e\x5e\xef\x7e\x4f\x87\x39\x43\x10\x83\xff\xee\x3c\x1f\x7e\x48\x3e\xed\x77\xb3\xaa\xf3\x7c\xf8\xed\xa7\xed\xaf\x3f\x3d\xde\xe9\x76\x9e\x0f\x5f\xa4\x7c\x5e\x88\xb8\xfb\x1c\xe0\xfd\x7e\xd0\xaf\x84\xac\x3a\x59\x77\x4d\x7a\x2d\xe5\xf0\x96\xec\x5a\xaf\xf3\x5c\x8a\x0e\xa6\x4b\xed\x31\x71\x05\x17\x1c\xb1\x33\xab\xf8\xc9\xa6\x4b\xd1\x0b\xd6\x9a\x05\x18\x25\xcc\x29\xc3\x56\xde\x8b\x0f\xbe\xf5\xe0\x07\x3b\xbb\x60\x9b\x9a\xb8\x2b\xc5\x09\x22\x67\xa1\x34\x86\x92\xc3\x48\x4d\xb6\x92\x8d\x22\x07\x57\x1c\x34\x16\xff\x41\xe8\x4f\xbb\x6c\xab\x0b\x37\x35\x49\x66\x8e\x55\x38\x02\xb0\xca\x35\x00\xad\x8d\xae\xbf\xdc\x8c\x8e\xb9\x94\xda\x49\x36\x13\x65\x52\x69\xf2\x2e\x46\x90\xce\xb8\xc7\xe4\xa2\x10\x25\xfc\x4d\xa3\xd0\x9f\x2c\x6f\x5b\x82\xe1\x5d\x7d\xc7\xb6\xb1\x95\x90\x80\xf5\xc6\x2e\x27\xab\xa1\x50\x05\xbf\xf6\xc7\x8f\x50\x1f\x1e\x1e\x2c\x70\x5f\x86\x34\xde\xca\x07\xc3\x75\xe3\xf5\xea\x98\xcb\xc0\x24\xcf\xda\x0c\x7f\x46\x49\x16\x37\x07\x09\x52\x5f\x8c\xf5\xcf\x34\xcd\x47\x3c\x35\xcf\x30\x43\xa5\x64\xa0\xf6\x35\x18\x90\xf1\x50\x22\x19\x67\x69\x32\x2a\x79\x79\xcd\xf2\x09\x9b\xaa\x03\x47\x32\x66\x08\xcf\xcc\x84\xd2\x8e\x33\x6b\x40\x54\xe5\xf8\x50\xa8\xf1\x71\x1e\x7f\x5a\x45\x8c\xf7\xfe\xf5\x52\x54\xa2\x9c\x27\xe8\x0d\xc1\x29\x9a\x34\xbe\x84\xa1\x40\x6d\x33\x1f\xba\xe0\x18\x1e\x0f\x5b\x54\x39\xa4\x8e\x09\x0c\x86\xf4\x05\x34\x3b\x2a\x17\xd0\x41\x0d\x7c\x0f\x1f\x26\xc1\x26\x1c\x14\x9b\xf0\x45\xcc\x8d\x6a\xe6\xbd\x5d\xf9\x02\x13\x3e\x7b\x61\x76\xa0\x19\x04\x3b\xfb\xbc\xce\x78\x5d\x5b\xf7\x7b\x1c\x70\x65\x1a\xb8\x7d\xac\x31\x6a\x6b\x75\x5e\x1f\x79\x6b\xcc\xb8\x75\x07\xcb\x19\x46\x90\xf9\x52\x93\x4b\xe0\xd7\x18\x26\x45\xda\xa9\x8d\x51\x21\xf0\x95\xd6\x4d\x1e\x3c\x60\x5f\xd5\x28\x82\x11\xc0\x3c\xf1\xb0\xac\x81\xb7\x49\xa2\x90\x7c\xf0\xc0\x21\xa5\xb7\x63\x6a\xbc\x1a\xcc\x96\xdb\xaa\x76\xc8\x1d\x61\x3d\xfa\x13\xf7\x7f\xd9\x59\xf0\x3a\x59\x77\xa1\xb5\x4d\xc8\x5a\xcb\x0d\x1b\xaf\xbf\xe8\x38\xd3\xa1\x10\xbe\x1c\x0d\x74\x0f\x6b\x10\xc0\xc4\x65\xa8\x8d\x5e\xeb\x7d\xba\x46\xdd\x62\xe1\xc1\x03\x0c\xee\xa8\x0f\x3f\x4e\xe5\xf5\xd9\x82\x5d\x24\xe2\x92\x6e\x70\x7f\x03\x06\x69\xe9\xee\x66\xac\x02\x51\xa8\x2c\xc1\xc8\xf3\x79\x91\x56\x46\x6b\xd4\xc4\x73\x1a\x35\xd3\xcf\xa9\xd0\x4f\xa4\x02\xdc\x75\x1e\x6a\x20\x71\xe8\x2e\xab\x57\xea\x18\x4f\x20\xdf\xed\xc8\x34\x31\x02\x03\x04\x01\x46\xc5\x0a\x7f\xbb\x13\xe7\x74\x51\x8f\xaa\x66\x06\xb7\xe6\x94\xe2\xb2\xf9\x62\x53\x88\xe0\xd7\x98\x32\x32\x00\x59\xb9\x9b\x50\x4c\xa9\xf5\x07\x48\x29\x85\xbe\xd4\x00\x11\xfc\x1a\x03\xc4\x8a\xab\x07\x88\x36\x07\xeb\x0f\x30\xb3\x06\x5e\x5f\x48\x44\x21\xa0\x35\x86\xa8\xe3\x9e\xae\xda\x2d\xc3\x21\xa3\x8c\xbe\xc1\x9c\xbe\xc4\xb8\x1f\x5f\x66\x46\x5f\x42\x9e\x98\x95\x83\xd5\xb9\x6f\x6e\xb6\x0f\xa9\x56\x37\xda\x80\x92\xf4\xcb\x8d\x54\x01\x5f\x67\xdf\x49\xd2\x5b\x8c\x54\xb5\xba\xc9\x48\x7f\x48\xf3\xd1\x97\x53\xf8\xd2\x7c\xb4\x8e\xba\x97\xe6\xa3\x9b\x8f\x54\xb5\xba\xd1\x9c\x52\x87\x5f\x6e\x5e\xa9\x83\x75\xe6\x96\xfe\xbc\xc5\xfc\x52\xcb\x9b\x8c\xfc\x50\xe7\xd9\xf9\x62\x9b\x8d\xe0\xf3\xf5\x36\x1b\xc1\xe7\xf5\x31\xfb\x22\xec\xc1\x83\x80\x40\xfd\x22\x29\xc4\x0d\xd4\xa5\x20\x80\x25\xcb\xbf\xa8\xa0\x6e\xe9\x6e\x9d\xc3\x5c\x10\x68\xb3\x6d\x8f\x0a\x3b\x68\x08\x39\x1b\xe8\x98\x41\x8b\x90\x74\x47\x65\x32\x87\x48\x11\xf0\xb6\x9f\x54\x42\x16\x7c\x2c\x58\x3e\xc1\x93\xe9\x48\x4c\x13\x8c\x7f\xc0\xb3\x98\x89\x2c\x66\xf9\x04\xe2\x20\x34\xaa\x2c\x87\xe4\x79\x26\xab\x12\xc8\x48\x37\x0d\x8a\x8e\x65\x32\x0f\xe8\x78\xe8\x84\xb0\xa7\x8a\x93\x52\x08\xe8\xa1\x86\x50\x48\x31\x05\xaf\x23\xab\xd2\x27\x92\xac\xca\xbe\x09\xfe\xff\xdf\x27\x27\xf2\xe1\xa0\xc7\xa2\xa8\x6b\x0b\x55\xd9\xef\xb1\x70\x29\x13\xa1\x31\xca\xda\xb1\x1f\x0c\x25\xd0\x02\x27\x4d\xf3\x4b\x89\xd7\x2e\xe0\x9a\xbd\xc8\xea\x91\x1f\xd0\x33\xd0\x0f\xfd\xf0\x90\xfd\x90\x57\x33\x17\xb0\xf5\xaa\xf5\x5d\xa2\x7b\xf0\xd6\x99\xe5\x15\xc4\x24\xbb\xb6\xc8\xe1\x3d\x92\xb4\x06\xc7\xb6\x4f\x39\x84\x02\xcd\x4a\xf4\x3c\xb7\xf9\x27\xff\x66\xc3\x7c\x8f\xe9\x95\xa5\x56\x03\x6a\xb9\xa8\x13\xdc\x8c\x5f\x24\x53\xae\x8e\xbc\xf4\xc0\xa2\x5a\x46\x70\x63\xf6\x16\x13\x8b\x40\x3d\x6c\x23\xc7\x65\x52\x54\xcb\x1a\x62\x9b\x43\xa8\x17\xb1\xbc\x64\xd1\xdb\xc3\xa8\x49\x90\xd4\xe3\x63\x38\x16\x3c\x3a\x37\x3f\xf5\xd0\xb4\x60\x3a\xf5\xfe\x41\xcc\xba\x98\x3b\x71\x7a\xd7\xfa\xaf\x05\xa4\x3f\xa6\x7b\x82\x79\x18\x75\x43\xf3\x43\xe7\x05\xd0\x3d\xa3\xd2\xd5\xaf\x37\xff\x75\x82\x78\xb5\x0c\x17\x04\xf5\x54\xa5\xda\x12\x82\x27\x93\x4a\xb0\xfc\x42\x94\xe6\xc8\xa8\xa6\xce\xa8\xb0\x2c\xc9\x2e\xf2\x73\x90\x27\x5e\x08\x4f\x26\xf8\x78\xc6\x92\x4a\xcc\x2d\xe7\xee\x4f\xd8\x59\x3e\xfa\xf9\xcc\xbd\xaa\x80\xe7\x6c\x30\x36\xd2\xf9\xc2\xe9\x7d\xbb\xe0\x90\xce\xcb\xd8\xca\x51\x7e\x38\xb8\x08\xc7\xc5\x36\xce\xe7\x05\x04\xa6\xe0\xf8\x40\xd4\xda\xa9\x52\x86\x23\x4f\xf1\xbe\x69\xaf\x70\xc3\xef\xf5\x49\x3b\xb6\xe9\xb4\xc0\xd7\x88\xeb\x36\xe7\xcb\x4f\x30\xda\xcf\xaa\x1d\x08\x48\xed\x73\x90\x2b\x74\x4b\xd2\xbd\x4d\x1b\xbd\x43\x7e\x66\x93\x0c\x9d\x6a\x35\xbe\xaa\x81\xa2\xb8\xf0\xc7\x1b\x2e\x23\xe3\x17\x32\xfa\xb9\xc7\x26\x99\x7d\xd3\x7f\x09\x0f\xec\xa3\x1c\xcd\x91\x27\x2c\xcb\x69\xbb\xa3\x84\x5a\xb1\x5e\x68\x0a\xd1\x86\xb4\x15\xba\xb8\xc9\x77\xa3\x6e\x59\x89\x61\xce\xc7\xe0\x77\x8d\xb3\x04\x5d\x56\xc6\x3a\x51\xe6\x73\x51\x91\x5d\x05\xbe\xce\x85\xcf\x6e\xa3\x9f\x91\x53\xe9\x40\x73\xa3\x08\xca\x80\x2c\x53\xda\xd5\x69\x68\xf5\xab\x2f\x99\xf3\xd1\xcf\x5d\xcf\xe8\xcf\xe3\x78\x40\x19\xe8\x43\x2f\xc3\xe1\x3b\x68\xca\x76\x55\x2f\xf6\x69\x87\xfd\x91\xa5\x61\xb2\xa0\x49\x86\x0a\x1f\xc6\xa7\xca\x47\x3f\x1f\x27\xa7\x3d\x96\xc0\x9f\xfe\x93\xb7\x77\x99\x11\x62\x43\x2c\x73\x6e\xfc\x9b\x0c\x32\xe7\xe2\x5a\xed\x47\x0a\x9c\x1f\xc5\xac\xf6\x20\x30\xe3\xf2\xdd\x65\xf6\x5e\x33\x2b\xbe\x3c\x2a\x1e\x39\x17\xd7\x7e\xf0\xbf\x3a\xd2\xe7\xe2\xfa\x94\x96\x82\x83\x38\xf3\xc2\x46\x7f\x0e\x04\x08\x06\x2c\x96\xec\x82\x97\x90\x8a\x09\xed\x7b\xd4\x7c\x03\xeb\xea\xe4\x49\x3a\x37\x4e\x66\x14\xac\x6a\x26\x40\x99\x67\xc9\x7c\xbe\xa8\xc0\xc2\x03\xdc\xb8\xd0\x0e\xb6\x30\x6f\x7f\xa0\x5c\x28\x50\x44\x1d\xdc\x85\x51\x23\xc1\x7b\x1b\xbb\x22\x7f\x9a\x89\x8c\xcd\x17\x69\x95\x14\xa9\x30\x6e\xd3\xe3\x3c\xab\x78\x82\x36\x90\x92\xcf\xd1\x66\x1a\x92\x5f\xf3\xca\x52\x3d\xc9\x8c\x4c\x30\x19\x9f\x18\xb8\x4d\xa0\xbd\x14\x3f\x57\x58\x89\xb1\x88\x45\x36\x76\x22\x03\xbc\x42\xc7\xfc\xa1\x29\x38\x3b\x3b\xfb\x19\xdd\x85\xec\xbd\x19\xb8\xf8\x94\x53\xd1\xf9\x75\x92\xe7\x43\xb6\xbd\xf3\xf8\x73\x8f\xe1\xdf\x4f\x9e\x7e\x8d\x31\x1a\x1e\x2a\x44\x65\x9e\x8a\x7e\x9a\x4f\x3b\x34\xb4\x49\x9e\x77\x21\x2a\x2c\x26\xb2\x93\xaa\xba\xee\xa5\x55\x27\xce\x47\x3f\x6f\x6b\x39\x58\xe5\xd8\xf3\x49\xb3\xdb\xf7\x01\xa2\xa7\x54\xc4\x34\xc5\x9a\x0e\xed\x43\xa1\x83\x63\x18\x3c\x84\x1e\x80\x49\x76\xe0\xff\x1f\xf7\x58\xbf\xdf\x67\x0f\x07\xb5\x0b\x43\xfb\xe0\x6a\x80\xe0\x1a\xa6\xac\x32\x61\x84\x24\x2f\x3a\x92\x02\x40\xef\x9d\x8e\x80\x58\x72\x19\xe2\x79\xdc\x39\xad\x09\x71\xa7\xcc\x0b\x35\x14\x46\x36\xf2\xdb\x5e\xf0\x34\x30\x6c\x6d\xb2\x97\x48\xdd\x4c\x61\xcb\xa4\x85\x16\xdc\x6e\x5a\xb1\x9e\x4b\x94\x75\xaf\x27\x7f\x34\x89\xc1\xfe\x67\x01\xef\x90\x34\x7d\x26\xf0\x85\x36\xf7\x1e\x0b\x72\x58\x01\x5b\xb7\x2c\x67\xa5\xa0\x72\xe4\xf8\x9c\xe5\x10\x0c\x8c\xa7\x66\xc9\x80\x07\x40\xe1\xac\xac\xef\xa5\x10\x2e\x23\xfd\x56\x1c\x67\x3d\x74\xff\x05\xb9\xce\x22\xbf\x82\xf3\x9c\xfe\x6f\x01\xfc\xd7\xcf\xff\x06\xdc\xfc\xea\xaa\x12\x59\x2c\x8d\x94\x87\x88\x18\xb4\x2f\xf0\x38\xa6\x43\x69\x52\x35\xec\x0e\xd4\x64\xd4\x1e\x16\x83\x07\x1a\xd9\x48\x30\x01\xfd\xe9\x2c\x6d\x41\xfd\x51\x50\x7f\x9c\x17\xd7\x6e\xa7\x93\x32\x9f\x37\x36\xa4\x0c\x80\x61\x77\x49\x16\xbb\x7e\x9b\x27\x9e\x47\x97\x6e\x4b\xd1\x57\x28\xf4\x06\xea\x6c\x76\x74\x3c\x5c\x19\x38\x80\x0e\xef\xb1\x51\x98\x35\x51\x4f\xca\xa8\x77\x13\xfe\x27\xd4\x1b\xf8\xbc\x29\x3a\x15\xd7\x0c\x05\x99\x1b\x01\xa2\x46\xa2\x85\x0f\x79\x1b\x0b\x7a\x81\x5c\xb8\x66\x8c\x9a\x8f\x29\x9e\x10\x51\xab\x1b\xea\x3f\x7a\x4e\x21\xbe\xee\x0c\xfd\x9f\x54\xc1\x7e\xf3\x8a\xf5\x73\xde\xd0\xf9\xbb\x0e\xf2\x6f\x89\xb8\x1c\xd6\x8b\xa8\x22\x99\x7f\x98\xbf\xa8\xf8\x2d\xb9\x41\xea\xbf\xa8\x18\x67\x7b\x68\xfe\xa2\x62\xf3\xae\x3d\x74\x7f\xd0\xc7\x97\xe0\x40\x89\xff\x6a\xc4\x13\xb2\x3c\x4c\x52\x5d\xf4\x43\x9a\x8f\x86\xf4\xaf\xae\x45\x13\x37\x74\xfe\xb6\x58\x0b\x3e\x1f\x9a\xbf\x34\x1e\xfe\xdd\xd3\xb0\x5e\x64\xda\x87\x87\xf8\x61\x63\x69\xcf\x61\xc8\xa1\xfe\x03\xfd\x40\x95\xf0\x1a\xe2\x3f\xe8\xea\xa9\x25\xda\xd0\xfe\x89\x4e\xa7\xc0\xea\x43\xfa\x17\xbd\x44\xcb\x64\x3e\xa4\x3b\x2a\x72\x07\xc7\x5c\x06\xef\x8d\xa5\x28\xe6\x49\xaf\x1b\x94\xee\x06\x06\xa5\xcf\x9c\x45\x75\xc9\xcb\x2c\xc9\x20\x58\x4d\x9c\xe0\x6d\xb0\xef\xb7\x0d\x26\x84\x6e\x2f\xde\x1a\x32\xcd\x6a\xae\xff\x4d\xb1\xe9\x2b\x4c\x43\x7e\xb2\xf1\x13\xf6\x3a\x64\x27\x1b\xec\x91\xe3\x0b\x5e\xdb\x9c\x48\x41\x5c\xee\x5b\x0f\x2a\xa4\x1a\x48\x47\x75\x50\x0b\xff\xe5\x05\x0f\x44\x9b\x7d\x0a\xf5\xea\xd6\xd6\xfe\x05\x57\x5d\xf6\xab\xa7\xf7\x07\xd6\x55\x44\xb0\xbb\xa4\x68\x5b\xc3\xdc\x4a\x55\x83\xd0\x0a\x7e\x3d\xc8\x2f\x01\xe5\xa6\x96\x13\x71\xa8\xa1\xae\xf3\xd5\xb4\x70\xd2\x67\x39\xd5\x75\x69\x6b\x90\x31\x7d\x5f\xab\x44\xf4\x1e\x5a\x6b\xb5\x6c\x3e\x04\xea\x85\x0d\x01\xa6\x89\x47\xa1\x8a\xd0\xab\x42\x18\x90\xfe\xf6\x00\xc0\x3f\xb3\x3d\x30\xc5\x6d\xec\xd5\xdd\x15\x74\x66\x6d\xac\xd6\xf1\xfa\x76\xd4\xa4\x31\x65\x08\x27\x03\x5f\x05\x29\xa8\x6b\x6c\x1f\x4d\x97\x24\xea\xa1\xb2\x73\xe0\x34\x71\xb5\x08\xa6\x36\xe8\x1e\x0c\xd8\x0b\xb5\x6d\x72\xbf\x3e\xde\x6f\x98\x81\x52\x94\x0b\xda\xcc\xf4\x87\x1e\x0b\x7a\x69\x85\xae\x07\xb2\x1e\xd4\x00\x88\x7e\xc0\xa0\xef\x46\x25\x19\xe8\x79\xae\x9c\xc9\x32\x74\xd0\xfa\x03\xda\x1c\x23\x13\x71\x62\xce\x66\xf2\x53\x94\x11\x8c\xae\x99\x4b\x41\xbc\x8c\xee\x79\x55\x8e\xb7\xcf\xf4\x93\x6c\x32\x71\x20\x48\x3b\xcd\xf9\xf0\xaf\x86\xf4\x23\x24\x39\xc7\x4b\x31\xe8\x55\x29\x0d\x2e\x8b\x48\xdd\x1c\x71\xaa\x47\x64\x33\x74\x79\xd1\x90\x6a\x25\x18\x88\x1b\xc8\x0b\xa1\xea\xa1\xf5\x58\x00\xc6\x06\x93\xb0\xe3\xc5\xf0\x10\xec\x01\xfd\x01\xa1\x9a\x34\x7a\xf4\xcd\x5f\xac\x50\x36\xa0\x48\x16\x0a\xa2\x5b\x17\x9a\x2f\x69\x80\x91\xa0\x6c\x2b\x9d\x7c\xb2\xb1\x89\xfe\x18\x85\x73\xc4\xd3\x74\x20\x8b\x12\x32\x46\x20\x1c\x75\x5e\x71\xa8\x48\xd9\x00\xe7\x89\x14\xd2\x27\x1e\xe5\xa8\xe9\x7b\x35\x88\x2c\x08\x0a\x01\x37\x4b\x3d\xfc\xd6\x96\x2b\x87\xbb\x4c\xb0\x07\x8c\xb3\xc0\x5c\xc6\x86\x51\xd1\x36\x56\x82\x63\x17\x4b\x32\x76\x74\x5d\xd0\x05\x76\x08\x4f\xcf\xa2\x03\xf7\x2e\x79\x91\x1a\x93\x1d\x2d\x49\x75\xb4\x9f\x55\xa2\x1c\x8b\xa2\xca\xcb\x37\x3c\xe3\xd3\x30\x19\x62\xfd\xbb\x95\xda\x94\xf5\xe7\xc0\x44\xbd\x74\x85\xb7\xff\x71\xf5\xe6\x10\xee\x0b\x75\x81\xdf\x2e\x7d\x1b\x65\xbe\xbf\x26\xd6\x15\xfa\xae\x20\x47\x99\xdc\xb8\x44\xc1\xc7\xd9\xd9\xb6\xfc\x4a\xcf\x4c\x95\xc4\x92\x4f\xda\x84\x15\x26\x13\x84\x1a\x51\x9d\xc2\x90\x23\x92\x8e\x8d\x94\xf3\xae\xad\xe2\x89\xf6\x59\xf1\xde\xe4\x88\xf6\x36\x2f\x5c\x2b\x91\x6a\x41\x31\x99\x31\x81\x46\xea\x24\xd2\x44\xe5\x44\x09\x14\xeb\xcb\x0d\x87\x00\x5d\xa2\x5c\xcb\xbe\xe4\xae\x58\x2a\xf2\x73\x4b\xad\xbe\x66\x36\x0b\x0d\xfc\xe0\x60\x5e\x22\x0a\xc7\x39\x58\x94\x69\x74\xac\x43\xa0\x9d\x76\x19\x67\x29\x67\x13\xa1\x08\xb0\xf7\x7e\x3f\xb8\xea\xd6\xa1\x09\x9b\xd2\xfc\x99\xb0\x85\xf6\x24\xbd\x7d\xea\x84\x36\x64\x4e\x86\x22\xaf\xd6\xd6\x69\x83\x99\x9c\x81\x46\x7f\x58\x38\xa4\x07\x9a\x0a\xae\x64\xf7\xe8\xaa\x07\xe5\xec\xb8\x87\x42\xb3\x2f\x25\x42\xd2\xe3\xf3\x0a\x83\x21\x51\xa9\x0d\x48\x6d\x72\x28\x39\x91\xcd\x6b\x69\x5a\x5d\x4c\x56\xc1\x6d\xaa\xdc\x0e\xbe\x05\x08\xa4\xc9\x0b\x5e\x36\xfe\x92\xe7\xe7\x6c\x51\x30\x6f\x21\xcd\x93\x38\x4e\xc5\x25\x2f\x85\x51\xa6\x66\x1c\xd2\xa6\x1d\x07\x72\xa7\x67\x1f\x61\x6d\x18\x48\xda\x0f\xd8\xae\xd9\x25\x28\xdf\x4a\xc7\x27\x77\x6d\x05\x6b\x86\x36\x11\xc1\xac\x2f\x60\x26\x67\xc9\x44\x87\x53\x77\x56\xaa\x92\x1f\xe6\x87\x25\x9f\x42\xb7\x4f\x8d\xdc\x1a\xfd\xc9\x22\x9d\x24\x69\x0a\x41\x6d\x9c\x62\x8c\x47\x2c\x62\x27\x7a\x6f\x1b\x86\x14\x3b\xb6\x86\x62\xb1\x90\x33\x1d\xb2\x72\x4d\x04\x21\x8d\xf7\xed\xb1\xc3\x80\x15\x1d\x84\xa5\x7d\xdf\xa8\x03\x3b\x07\x5e\xc4\x67\xac\x8b\x64\xe9\xf6\x98\xf7\xb3\xc9\x1d\x90\x1a\x1b\x7d\x27\x94\x40\x53\x51\x7d\x28\x13\x57\x00\x61\x89\x2f\x7f\x6e\xb6\x12\x4d\xe7\x26\xe7\x98\x15\x0b\x6b\x67\x1d\xf3\x2c\x2e\x9e\x5b\xdb\x0a\xad\x56\xbc\xc7\x97\x42\xc6\xd3\x84\x4b\x21\x41\xee\x19\x27\x3b\x23\x92\x71\xe9\xc8\x75\x53\x4f\xf6\x58\x84\x51\x68\xe4\xcd\xb2\x50\x1a\xf9\xac\x9a\x6c\x66\x7c\x2e\xa4\x16\xcc\x01\xc1\x9d\x24\x91\x1a\x7c\xc7\x21\x4b\x2d\xe0\x8f\xa2\xb1\xde\x12\xdc\xac\x92\xae\xcc\xec\xd9\xb3\x32\x42\x1f\xd2\xbf\x26\x60\x12\x44\xcb\x5a\x94\x29\x1d\x9c\x35\xa7\x7c\xd9\xfc\x98\xf7\x40\x14\x4c\xeb\xfc\x9b\x90\xc6\x14\x60\xa2\xac\x18\x7d\x03\x9a\xa9\x55\x53\x78\xf7\xee\xa8\x98\x3a\x3a\x55\x93\x12\xe3\xa8\x54\xe8\xa3\x0b\xba\xd2\xf1\x69\xa8\xd7\xec\xc5\xb1\xd1\x02\x0d\x14\x1d\x3f\x45\x56\x7c\x7c\x5e\xd3\x73\x9c\x37\x7e\x2d\xba\x40\xd9\x71\x6e\x82\x75\x40\x99\x33\x25\x80\xce\xc8\xd1\xfe\x8c\x76\x86\xb3\x16\x68\x5a\xe2\xb5\x02\xc3\x0a\x8d\xe0\xfc\xbb\x05\xbc\x99\xfc\xcc\xf6\x32\xb6\xff\x92\x2d\x28\xd7\x16\x06\xc9\xf0\xc6\x09\x2f\xa5\xa4\x68\xd5\xa9\xe8\xc8\xbc\x85\xf4\x4e\x9a\x0b\xc8\xd4\x69\xe4\xb6\x91\xd5\x0d\x54\x47\x81\xaf\x9f\x15\x74\x9b\xa1\xfd\xd3\xe8\xa5\x08\x63\x68\xfe\xaa\x5f\x22\xfb\x80\x51\xfa\xb3\x4d\xb6\x6d\x85\x1c\xcd\x2a\x25\x4b\x81\xfb\x1c\x3b\x5a\x70\x28\x6c\x9f\x57\x4d\xb5\x04\x67\x60\xff\x25\x45\x7f\xe2\x92\xfa\xc7\x54\x15\x67\x0b\xa2\xf9\x2a\x9a\xc1\x30\x5c\xaa\x61\xfc\xff\x24\x0e\xe3\x1a\xe9\x11\x1d\x27\xf1\xa9\x59\xb2\xb5\x2f\x6e\xb0\xfe\xcf\xe1\x80\x7d\xeb\x07\x88\x03\x22\x58\x29\xa6\x89\xac\x44\x29\x62\x4f\xd5\xf1\x4d\xe4\x48\x53\x4a\x24\x2b\x78\x59\x25\xe3\x45\xca\xcb\xf4\x5a\xcd\xf0\x64\x91\xe2\x16\x71\x9e\x14\x45\x92\x4d\xb5\x31\xd1\x35\x3e\xef\xbb\xca\x13\x10\x6a\xce\xaf\xd9\x8c\x5f\x08\x0a\xba\xc4\xce\x14\xba\x67\x26\xa8\xd2\x19\x72\x6f\xfd\x35\xa7\x66\x33\xe3\xf2\xbe\x6a\xed\x58\xcc\xd8\x4e\xd7\x99\x01\x92\xb8\xee\x1c\x18\x15\x46\xdf\xe5\xfa\x62\xdc\xa3\x7a\x5d\x76\x63\xde\x89\xb2\x33\xf3\xae\x87\x67\xc6\xa0\xdf\xb3\x1d\xe9\xcc\xba\xb5\xf7\x90\xcf\xcd\xc2\xb0\x3e\x8a\x3b\x1e\xd9\x4d\x40\x71\x4a\xf3\xe0\xd4\xf5\x3e\x39\xd9\x82\x1b\x2e\x53\x9a\x6f\x53\x5a\x6f\x57\x5b\xaf\x57\x8f\x66\x25\x98\x61\x3a\xf1\x5b\x27\x7e\x5a\xc0\x19\x97\x6c\x24\x84\x39\xcb\x51\xe4\x44\xcf\xd0\x54\x01\xd9\x9f\xbc\x70\x9a\x1d\xe8\xca\xbe\xea\xb5\x22\x83\x48\x43\x86\x10\x82\x6d\xe1\x19\xbd\x70\xc5\x21\xd8\xec\x14\xa2\x54\x8b\x03\x63\xae\x55\xe6\xe4\xbb\x50\x6b\x8f\x02\xb2\xd7\x19\x3f\x6f\x3d\x30\x9b\x88\xb6\x70\x27\xb9\xd0\x89\x74\xfc\x84\x1c\xee\x2b\x3c\xed\x05\xf8\xda\x48\x3f\xa8\xb5\x11\xb4\x27\xab\xc2\xfa\x07\xe7\x1c\x9f\xa8\xeb\x90\xdf\x1e\x29\x5f\x61\xf8\x3c\x9d\xa9\x4b\x5c\x25\x98\x43\xc4\xcf\xb8\x5c\x4b\xc1\x6c\x0e\xb4\x04\xe6\x48\xf3\xaa\xa1\xb7\x56\x32\x9c\x0c\xcf\x10\x08\xc6\xe1\xe9\x8e\x37\xcd\xb1\x4d\xdb\xe9\xf7\xe5\x17\x86\x51\xf9\x4f\xc8\xaa\x92\x10\xf9\x31\xe5\x55\x25\x32\x3d\xa0\xc6\xa1\xb8\x0a\x55\x53\x87\x7d\x4c\x0a\x4f\x5a\x56\x53\x8d\x63\xef\xf4\x7a\xba\xa4\xa6\x8b\x9e\x2f\xc1\xb0\xf6\x12\x6d\xbd\x51\x4f\xed\xb1\x08\xb1\x8b\x4e\x7b\x7a\xab\xd6\xb7\xca\xa9\xe0\x19\xa6\x07\xa0\x53\x4c\x70\x6e\x37\x79\xc6\x82\xc1\xd0\x28\x5c\x19\xe8\x85\x02\xc7\x65\xe1\x24\x93\xa6\x82\x4f\x9f\x6c\x9e\x78\x2a\xf3\x2f\xf6\xb9\x9f\x4b\xbc\x96\xd7\x87\x72\x8d\x1f\xa8\x03\xf8\x02\x34\xe3\x20\xff\xc8\x8d\xb8\xb9\xc6\x88\x94\x2a\xd6\xaa\xbb\xe6\x7c\xbc\x84\x1b\x83\x5a\xbd\x5a\xe9\x2c\x48\xfa\x5a\xe7\x4b\x37\x55\xaf\x45\xce\x5a\x5f\xd8\xb4\xb6\x9f\xdd\x60\xe2\x96\x1c\x4a\xda\x20\x35\xb8\x0c\x5e\x38\xbf\xd2\x12\x5e\x7f\xec\x06\x8f\x89\xeb\xd2\x6a\x35\xb5\x74\xa6\x22\xd5\x0d\x26\x97\x52\x7f\xf5\x6b\x53\x84\x83\xf3\xbe\x2d\x27\x70\x5b\x83\xde\xb2\x0a\x21\xd9\x57\x93\x5e\x93\x1f\xff\x0a\xb3\x87\x05\x4f\x05\x94\xf3\x89\x88\xba\x5e\x9a\xa4\xd5\x27\x1f\xeb\x32\xa2\xe9\x0c\x2f\x5a\x8a\x38\x78\x36\xd0\xd2\x92\x7e\x18\xf4\x1b\x0d\x9c\xb5\xfb\x07\xb4\x3f\xd2\x80\x70\xf3\x30\x34\x08\x2c\x6a\xc8\x28\x5a\x0b\x3f\xd5\x4a\xff\x1d\x6c\x54\x98\x58\xd3\x62\xe0\x83\xf8\xe4\x2a\x7f\x92\xed\x31\xb5\x81\xa6\x8e\x0a\x98\x97\xda\x76\x7d\x62\xe3\x6a\x04\x9b\xdf\xc3\xd0\xc8\xc6\xc1\x5a\x33\xde\xf2\x9d\xcf\x67\x28\x3c\x42\xcf\x4c\x22\xc8\x4c\xae\x7d\xa7\xec\xcb\xe2\x49\xe6\xea\x90\xa6\x13\xab\x7c\xe2\xd1\x59\x61\x92\xf9\xbd\x06\xb7\x5e\xc4\x55\xaa\x8a\x65\x1e\x7a\x10\xfa\x55\x51\x7c\xce\xab\x37\x8b\xc4\xcb\x11\xcb\x25\xfb\xd8\xfc\xe5\xb3\x8e\xc9\xf4\xfd\x5c\x9d\xff\x12\x9e\x6e\x2e\x12\x64\x30\x88\xc9\x04\xf6\xcb\x3a\xde\x35\xf2\x41\x96\xab\x83\x29\xa8\x25\x70\x7f\xef\xb8\x7d\x64\x51\xc5\x14\xa7\x5e\xf0\x94\x0c\x82\xcf\x2a\x71\x55\x6d\x9a\xe1\x0e\xd9\x98\x17\x49\x05\x97\x54\x4a\xfd\x1f\x0c\xf0\x91\x8b\x18\xdf\x7e\x45\x55\x90\xfa\x5d\x14\x85\x28\xc7\x5c\xe2\x6b\xed\x24\x29\x65\xc5\x52\x8c\x3d\xa8\x2d\x87\x2f\xf3\x52\x1d\xde\x51\xff\xca\x2a\xb2\xdf\x1d\x0c\xd8\x4f\x02\x33\xc7\xd2\xc1\xd9\x02\x50\x2d\xfa\xed\x41\xa7\x2c\x9e\x1d\xbc\xc7\xaf\xfb\xaf\x60\x39\x5a\x6a\x84\x77\xfd\x68\x75\x61\x13\x5a\xb5\xc6\x3d\x3b\xd9\xb0\x76\x2a\x27\x1b\xec\x39\xc4\x78\xa2\x99\xf8\xb0\x3f\x6c\xc2\x03\xed\xaf\xa5\xf1\xf8\x32\x2f\x05\xfd\x93\x0d\x36\x6c\x99\xe9\xce\x37\x8d\x17\x9c\x92\x7c\x19\x67\xbc\xdc\xab\x3a\x5b\xdd\x7e\x95\x7f\x50\xd4\xa6\x6c\xa4\x8f\x74\x05\x0c\x6b\xb5\xad\xa3\x3b\x0d\x06\x4c\xce\x92\x39\x2c\x70\x54\x74\x69\x80\x2c\xc9\x6c\xe2\x68\xba\x0c\x87\xf2\x5d\x56\xb7\xf6\x32\xb7\x91\x63\x3e\x9e\x29\xbd\x56\xb1\xe2\xe5\x8c\x57\x42\x29\xd0\x14\x7c\x47\x9d\x46\x4b\x21\x21\x9c\x7b\x4e\x6c\xa7\x64\x49\xb9\xc8\x32\xa1\xcf\x9b\xb2\x5a\x8c\x58\x52\x01\x30\x0c\x3f\x38\x2a\x05\x3f\x87\x20\xc6\x53\xd9\x67\xec\x87\x05\xc4\x6e\x86\xc8\x91\x55\xce\x2e\x4b\x5e\xb0\xa4\x42\x07\xb0\xaa\xbc\x26\x5b\x98\x44\xcd\xbb\x14\xf0\x45\x02\x30\x55\xb1\x80\x43\xb3\x66\xd1\x79\x1e\x0b\x4c\xda\x86\x69\xbf\xe2\x5c\x00\xdf\xe3\x33\x00\x04\x97\xd6\xee\x5e\x8c\xed\x57\x91\x22\x89\x84\xab\x56\x00\x68\x18\x6c\x24\x20\x00\xb0\xea\x7d\x30\xc6\x48\xa0\x2c\x16\x79\x51\x25\xf3\xe4\x17\x08\xb9\x3c\x16\x25\x18\xb5\x8b\x6c\x9a\x64\x42\xf6\xf5\xa6\x80\xd4\x3a\x34\x71\x08\x9f\xb9\xc5\x2f\x9c\xb8\x87\xfe\xd5\x18\xb1\x38\xb6\xf3\x92\x5a\x87\xcc\x1a\xd9\x18\x87\x70\x1a\xcb\xf2\x0a\x4f\x64\xc6\x1a\x09\xaf\xce\x42\xd0\x6e\xdf\x6c\x09\x78\x37\x36\xe3\xd2\x0e\x9a\x22\x2c\x06\x99\x51\xdd\xf5\x68\xb1\x6e\xb5\x69\xa4\x5d\x3d\xa0\x20\xdb\x75\x1a\xaf\xc8\x87\xdb\xd8\x3a\xa4\x6d\x3d\xb9\x68\x4b\x3a\xd6\xf5\x61\x7d\x5e\x35\x7c\x8f\xaa\x6b\x11\xc0\x9b\xaf\x5d\x0f\xc0\x9a\x44\x08\x20\x34\xf0\xc1\x0d\x29\xb1\x36\x40\x75\x1e\x67\x9d\x6e\xd7\xe1\xc2\x72\x91\x39\x91\x39\x7d\xab\xbd\x1a\x99\x77\xdd\x29\xf7\x10\x19\x0c\x32\x25\x40\x53\xf2\xf8\x44\x2f\x11\xb5\xfe\x79\xe6\x04\x6f\x97\xae\x66\x8a\xa2\xd4\x0b\x0c\xda\x63\x5b\x5d\x7f\xe6\x06\x03\x85\x8a\xc3\xa4\x97\x1c\x04\x07\xbf\xe0\x49\x0a\x01\x68\x47\x58\xc8\xe0\x80\x59\x32\x2f\x8b\x33\x44\x64\x69\x1c\x46\xc8\x2f\xea\xd0\xf4\x55\x58\x13\xbc\xb6\x5b\x06\xbc\xee\x6a\x58\x73\x9c\x01\x87\x2a\x21\x3a\x13\x94\x8a\x47\xe6\x73\x31\xca\xe3\x6b\x58\xf5\x72\x5c\x8a\x4b\xfd\xe0\xef\xd0\x05\x9d\x68\xd9\x7e\xff\x55\x9f\xcd\x79\x1c\x67\x42\xd6\xa9\x1d\x22\x1d\xe2\x82\x4c\xd6\x11\x5d\x07\x95\x00\x33\xc2\x0e\x3c\x8a\x2e\x05\xe3\x18\xe8\x1e\xba\x55\x28\x80\x2e\x01\x36\x35\xf6\x4a\x4a\x28\xcd\x26\x56\x1b\x11\x54\xd3\xb2\xbf\x2a\x17\x12\x1b\xd0\xa6\x45\x16\xdd\x30\x66\xf2\x4a\x44\xa6\xd2\xe1\x8f\x57\x8c\xc6\x75\xdb\xf2\x07\xd6\x3a\x38\x1a\x0d\x78\x3f\x71\xc9\xf8\x28\xbf\x20\x8e\x52\x48\x40\x9c\x5d\xce\x2e\x44\x29\x41\x95\x9e\xe0\x00\xf0\xb2\x56\x21\x0f\xb7\xb5\xf5\x11\x40\xce\x66\xa5\xe6\x45\x3d\x36\xcb\x0b\xf4\x6b\xce\x17\xd6\xbc\x70\x9c\x97\xa5\xaa\x68\x9d\xe9\x93\xca\x0f\x3f\x4d\x00\x85\x8d\x3f\xbd\xd6\xe0\x55\xa7\x8d\x83\x77\x4e\x59\xfe\x2e\x54\x2e\x32\x57\x50\x74\xe6\xbc\x3c\x17\x65\x83\x1c\x78\x11\x4a\x4a\x57\xf2\xdd\x8b\x2c\x18\x37\xe0\xd1\x24\x0d\x3c\x99\x7d\x5b\x79\x50\x1b\x4e\xd3\x76\x6c\x85\xc2\x0b\x6f\xb0\x0f\x1e\xb4\x8f\xfe\x26\xbb\xc4\xda\x03\xff\x2d\xc5\x43\x13\x3b\x84\xe6\xcf\xbf\x8d\x84\xb8\x2f\x11\xe1\x8e\xc8\x15\x12\xfe\xe0\xda\x07\xf8\x2f\x21\x25\xfa\x35\x7c\x0f\xf3\xb9\xd0\x68\x49\x83\x17\x60\x63\x33\x9e\x40\x14\x68\xb4\x96\x75\x59\xf6\x42\x3a\xdc\x73\x23\xd2\xa2\x08\x6a\x20\xad\x27\x82\x40\x08\x29\x05\xfc\x7f\x16\x62\x21\xf4\xcb\x32\xbc\x8c\x94\x3c\xc9\x28\xa5\x9b\x93\xe3\x6b\xbc\x28\x15\xbe\xff\x9b\xaa\xfe\xcc\x69\xba\x9f\xc5\xe2\x8a\x51\x9e\x40\xd7\xe0\x3b\x15\x3c\xfb\x50\xbc\x15\x57\xd5\x51\x32\x3e\xef\xf8\xb7\x75\xa6\x13\x58\xe1\x0e\xe8\xe0\xf6\xcc\x77\x51\x50\xff\x34\xa0\x67\xe4\xa4\x03\x27\x34\xad\x51\xff\xe9\xa1\x7a\xf5\x28\x07\x23\x7c\x6b\xf3\x10\x62\x0d\x43\x75\x50\x52\x7d\xff\x4f\x5b\xa7\x80\x2f\x74\xd5\x71\x64\x8a\x9f\xa7\xc1\xad\xe3\x92\x49\x8f\x75\x25\x51\xe0\xc5\xcc\x08\x3b\x47\xa5\x0c\x66\x41\x63\xe0\x10\xd1\xe4\xce\xd3\x70\x30\x0e\xb7\x3b\x1e\x6a\x04\x96\x4b\x9d\xd4\x4b\x65\xcf\x3c\x62\xea\x76\xcf\xea\x34\x3f\x3e\x75\x0a\xc9\x06\xea\xd1\x23\x87\xac\x7f\x64\x21\xe4\xa6\x69\xad\x55\x08\x51\x38\xb6\x20\x4f\xfb\xe5\x22\xf3\x12\xd8\x3b\x14\x0b\xfe\x6c\x9e\x5f\xf5\x5f\x2b\x39\xa8\x75\x30\x7e\x27\x1d\x7d\x0b\xa7\x86\x1b\x7e\x65\xe3\xf9\x03\x57\xe8\x4b\x97\x8c\xe6\xcc\xbd\xe6\xf3\x8e\x08\xf0\x06\x51\x4e\xa5\x17\x0d\x3d\x74\x8e\x64\x9b\x6c\xbb\xeb\xac\x91\xda\xf7\x3f\xb1\x6d\xdf\xfb\xde\xf5\xb8\xdc\x46\xdf\xca\x06\x8f\x4b\x2f\xcc\x00\xfe\xa7\x70\x39\x4e\x54\x87\xa7\x9e\x21\x68\x72\xda\x28\x85\x0c\xd9\xd1\xc0\x02\x8c\x79\x2b\x31\x47\x95\x58\xc1\xea\xba\x78\xbb\x13\x00\xea\xc2\x36\x04\x5e\x6d\x5e\x21\x96\xff\xed\xca\x72\x17\x9f\xbe\xc1\xb9\xf8\x96\xa5\xc9\xb9\x80\xbb\x9a\x38\x19\x57\x90\xb2\x82\x5c\x8d\x5d\xf3\x1c\x07\xad\x92\x5f\xfb\x16\x0e\x93\x45\x86\x33\xf4\xcc\x29\xc4\xf0\x0d\xbb\x58\x1f\x27\x56\x01\x71\xad\x80\x75\xb3\xda\x4d\x01\x01\xed\x43\xba\x24\xda\x28\x2d\x50\x7d\xf7\xae\xb9\xa4\x4a\xaa\x54\xf1\x5d\x44\xf7\x57\x91\xf3\x4d\x47\x17\x32\x8b\xdc\xb9\xcf\xd3\x37\x59\xba\x88\x97\xd3\x0b\xbd\x4c\x75\x99\xde\x51\x77\x59\x14\x81\xaf\xbf\x98\x17\x90\x42\x4e\x87\x62\x82\xfc\x60\xac\x14\x53\x71\x55\xb0\x44\x4a\x08\x56\x11\xb4\x76\xee\xcc\xcc\x68\xb3\x3c\x2f\x3a\xe8\xc0\x65\xeb\x43\x47\xea\x8b\x8b\x55\x1c\xeb\x74\x38\xf5\x8f\x39\x3a\xff\x84\xa5\x93\x49\xbd\x10\x2d\x87\xda\x41\xe1\xf7\xbd\x34\xd5\x55\x64\xbd\x8e\x98\x27\x55\xbd\xb4\x28\x45\x21\xb2\x25\x58\x52\x85\x77\xd9\xb8\xa1\x7f\x5b\x2d\x75\x3a\xb6\x5c\x91\xf1\xb9\x12\x79\x7a\xcb\x3f\x3e\x65\x1e\xc9\x46\x49\x16\x07\xc9\x57\x75\x93\x96\x4b\xac\xb0\x25\x25\xcb\x33\x46\x94\x8e\xbd\xa5\xae\x3a\xbe\x8c\x43\x4e\x35\x29\x5d\x07\x11\x73\x99\x68\x3c\x8b\x93\xd2\xab\x1c\x27\xe5\x6a\x64\xb0\x59\x2b\x2a\xba\xda\x62\xce\xa5\x2b\x0d\x5d\x4c\xb6\x9e\xb1\x9b\xbd\x48\xf9\xef\x51\xed\x0f\x2b\xa8\xdd\x26\xbf\x08\x9b\x5f\xbe\x63\x1e\x56\xcc\xc7\xf8\xad\xa5\xba\xff\x82\x62\x1f\x61\x6c\xbe\x31\x18\x0e\xc2\xeb\x50\x98\x1f\x6f\xd6\x20\xfb\x81\xd2\x75\xc1\x2a\xc7\xeb\x43\x09\x3d\xf5\x29\xb8\xf1\xde\xad\x55\xf4\x2b\xb8\x29\xd2\xe8\x71\xdb\xaf\x7e\xaa\xd3\x59\x1b\x51\x4d\x4f\xe2\xa6\xba\xaa\xd4\x68\x0d\xd4\x46\x73\xf4\xd4\x82\xa9\x0e\x1c\x9c\xec\x87\xe0\x39\xf0\x00\x2d\xce\xf1\xc5\x8d\xdc\xed\xb5\x2d\x88\xc9\xa2\x6b\x5e\x64\x25\x24\xe6\x5f\x66\x8e\x45\x16\xec\x6c\xcf\x79\xc3\x52\xa7\x02\x2a\x37\x11\x5d\xe0\xa5\x73\xa9\x51\x63\x03\x08\x0c\x48\xd1\x0a\x41\xdb\xc6\x18\x74\xe9\x85\x0f\x5f\x6d\x57\x3e\xe8\x49\x51\x55\x29\xc4\x67\x50\x98\x6a\x0b\xc5\x1e\x0b\x5e\x99\x15\xa1\x21\x9f\x14\xaf\xc4\x21\xd0\x03\x68\x4d\xbd\xd0\x3b\xb0\x5f\xc1\x84\x4a\xfe\x2a\x68\xf8\xe9\x53\x00\xca\x58\x1d\xf4\x91\xd4\x5e\x80\x64\x70\x0d\x30\xd8\x34\x46\x44\xc6\xc4\xf7\x76\xb6\xcd\x43\x77\xa4\xbd\xa3\x26\x3c\x49\xcd\x61\x19\xb1\x80\x47\x8a\x88\x3d\x62\x41\xe7\x75\x83\x03\x1c\x9d\x29\x87\x9d\xb2\x56\x49\x7b\x81\x86\x1f\xf0\xb7\x7d\x5d\x5a\x95\xba\xfb\x43\x11\x93\x83\x2d\x72\xb4\x09\x66\x42\xae\x41\x22\xa6\x57\xf7\x1e\x25\x10\x53\xe3\xd0\xa1\xf9\x9c\x49\xf7\x78\x04\x40\x7d\xa6\x06\x8a\x3f\xf0\xaf\x2a\x67\x0b\xe8\xae\xbf\x9e\x7b\x92\x5f\x4d\xd2\x6b\xf8\xb1\xc2\xe0\xd4\x01\x0b\x94\xed\x80\x29\x22\x3a\x09\xf5\x58\xf4\xea\xc5\xbb\xb7\x6f\xf7\x7e\x78\x77\x70\xf4\xea\x65\xd4\x6d\xee\xef\x98\x68\x78\x4a\x2c\x8c\xde\x1e\x6d\x55\x71\xac\xa7\x75\x76\x77\xde\xbb\x69\xdc\x06\xb5\xd5\xcb\x41\x64\x33\x9e\x8d\x89\x8d\xa0\x4d\xcf\xd0\x1b\x29\x6d\xdc\x7d\x83\x15\x82\x1d\x04\x7e\x47\x66\x0d\x8c\x6d\xf6\x61\x5b\x15\xb2\x4d\xa9\x7f\xdc\xa7\x47\xfc\x58\x7a\x6e\x7d\x42\xe2\x65\x92\xfe\x46\x2b\x7d\xd7\x37\x66\xc1\xaf\x89\x04\x83\x71\x2d\x0f\x9d\x63\x17\x7e\xaf\xf2\xff\x75\xf8\xee\x6d\xb0\xbd\x9d\xb8\x26\x19\x46\x84\x0f\x06\x4c\xc7\x33\xd0\x45\xe4\x9b\x3f\xf4\x72\xa8\xdb\xa5\xc1\xe7\xfa\x93\xfa\xb3\xe7\x00\x7a\x93\x8c\xcb\x5c\xe6\x93\xca\xca\x7d\xbc\x1c\x82\xe8\x0c\xe4\xee\x61\x4a\x9c\xc5\x46\xb9\xb4\x01\xa6\x8d\x23\xa1\xa1\xe6\xbf\x24\x69\x6a\xec\x65\x26\x49\x2a\xde\x5a\x1c\xf4\x4f\xd3\x22\x4d\x32\xf1\xd6\x85\x68\x0b\x1c\x73\xa2\x74\x31\xcf\xbc\x5a\x6e\x91\xa9\x07\xa6\xd1\x54\x01\xfe\x76\xf1\xd2\xce\x91\x04\x51\xb1\x82\x81\xe5\x09\x13\x35\xfb\xe6\x4b\x4c\xd2\xe2\xb3\xf1\x09\x30\x73\x02\x73\xb7\x62\x23\x4c\xe4\xde\x08\x0c\xb9\x44\xbb\x0b\xaa\x57\xc7\x18\xa9\x8e\xf3\xf9\x28\xc9\x54\x51\xa8\xbc\xe8\x76\x4e\x8d\x46\x07\x51\x49\xbe\x01\xaa\xe7\xd1\x35\x01\xd4\x26\x9e\x6a\x4b\x55\x1f\x8c\x2c\x33\xb6\xab\x1f\x0e\x5e\xf7\x00\x0a\x58\x21\x98\x44\xad\xee\x77\xad\xaf\xe9\x78\x7a\x3c\x63\x9c\x86\xa0\x7a\xf3\x52\x49\x53\x3b\x6a\xa5\xab\xf5\x02\x4b\x0c\x2d\x1e\x6a\x3d\x2d\x32\x48\xa6\x49\x26\xb5\x8d\xc2\x4e\x0f\xe5\x88\x86\xa5\x50\x68\xac\xe8\x01\xd6\x34\x47\x85\x23\x85\x88\x9a\x40\x2a\x08\xad\x03\x94\x0d\x24\x97\x74\x22\xcd\x52\x8d\x18\xe2\xa6\xb2\x82\x57\xb3\x95\x62\x0c\x9c\xa3\x7e\x5c\xa4\xe9\x7b\x5e\xcd\x3a\x84\x74\xcf\x43\xca\xb1\xd8\xd0\x83\xc2\x0c\x23\x0e\x83\x74\xbc\x06\xa1\x9c\x70\x78\xa2\xa5\x8b\x86\xd0\x47\xf6\xeb\x12\x6e\xae\xc5\xb7\xf5\xd3\xd8\xdb\xad\x30\x98\xe9\xd6\x69\x5b\x94\x18\x24\x99\x68\xbe\x6e\x92\x9b\xd6\x8e\xda\xc2\x23\xb7\xcf\x88\x4f\xd7\x45\x99\xda\x80\x95\x7b\x1a\xfa\x38\x07\x5b\x08\x30\x85\xd6\x1c\x03\xe9\x43\x31\xa6\x31\xe5\xe0\x3e\xd9\xf8\xa3\x1c\xcf\xc4\x5c\xfc\x69\x38\x18\x9c\x6c\x28\x9e\x3a\xd9\x80\xbf\x3a\x70\xec\x1f\xe7\xe9\xa6\xcb\x64\x5d\x9d\x7f\xf2\xe0\xc7\x17\xec\xf1\x77\xdf\x7e\x4d\x4f\x25\x92\x21\x18\x90\xda\x70\xdd\xcd\xa4\x9a\x1e\xf2\xef\x1e\xcf\x78\xc9\xc7\x95\x3a\x29\xda\x88\xca\x94\x04\x9c\xcc\x8b\x94\xd2\x11\x64\xc2\x1c\x5d\x83\x8d\x07\xb2\x06\x9a\x29\xe5\x13\xaa\x2f\x7b\x2c\x4e\xa6\x49\x25\x7b\xac\x48\x17\xea\xff\x45\x99\xe4\x31\x24\x65\x9f\x5d\x17\x33\x91\xf5\x1d\x56\x19\xfc\x77\xe7\x98\x6f\xfe\x72\xaa\xfe\xef\xe4\x24\x3e\x39\x79\x74\x72\xb2\x79\x72\xd2\x3f\x7d\x38\xec\x3e\x3f\x39\x19\x9c\x9c\x0c\x06\x09\xa6\x5e\x53\xd4\x5c\x83\x9b\xd6\x90\x54\xde\x84\xd7\xbd\xdb\x6f\x21\x05\x70\x1e\x74\x65\x77\x5e\xd6\x59\xf1\x54\x6d\x29\x67\xb5\x2c\x43\xd3\xb1\x1f\x9a\xc1\xf9\x80\x8b\xf9\xb9\x1e\x8d\x1b\x71\x7a\xf0\x88\x22\x4e\xb3\x47\x70\xf8\x7e\xe4\xb6\xf3\xbc\x27\x07\x8f\xb0\x22\x02\x1b\x6a\x60\x77\xb7\xdc\x1c\xb0\xbf\x90\x9d\xe4\x25\x24\xdc\x8d\x17\x45\x9a\x8c\x71\x02\x4b\xc1\x92\x69\x96\x97\xe8\x67\x94\xc1\xc6\x39\x18\xb0\x71\x7f\xd2\x67\xb3\xaa\x2a\xe4\x70\x30\x50\xa5\x3f\xcb\x7e\x5e\x4e\x07\xbc\x48\x06\xaa\xb8\x3f\xab\xe6\xe9\xef\xd4\x5f\x1f\x49\x73\xf9\x68\xac\xc4\x61\x03\x05\x98\x2f\x75\x47\xef\x26\x6c\x97\x1d\xab\x81\x45\x1c\x92\x22\x47\x7c\x51\xcd\xf2\x92\xec\xef\xd0\x14\x3c\xab\x44\x56\x6d\xe2\x7d\xa1\x5b\x52\x5d\x17\xd0\x44\x54\x7c\x1a\xc1\x76\x1f\x89\xab\x22\x29\x85\x54\xa5\x93\x32\x9f\x83\xa9\x39\x99\x98\x27\x93\xcd\x79\x1e\x03\xe7\x6d\xca\x24\x1b\x0b\x2a\x5c\x64\x61\x31\x40\x4a\xb9\xac\x4c\x03\x55\x35\xcd\xc7\x06\xa7\x39\xbf\xda\x9c\xe4\xe5\x25\x2f\x63\xe8\xab\x28\xf3\xab\xeb\xcd\x00\x75\x00\x83\x61\x10\x4b\x55\xa9\x14\x55\x79\xbd\xc9\x27\x15\xfe\x5c\x48\x51\x6e\xf2\xa9\xc8\xaa\xe8\x24\x3b\xf5\x56\xd1\x7b\x5e\x4a\x6b\xc3\x9a\x64\x55\x6e\x83\x9a\xba\x21\x40\x51\x80\x43\xe0\xae\x9f\x44\xdc\x63\x3b\xdf\xb0\xbd\xc5\x94\xed\x6c\x6d\x3f\x61\x5b\xdf\x0e\x9f\x7e\x3b\x7c\xf2\x1d\xfb\xf3\x9b\x23\x5c\x9a\x44\xb5\xa3\xeb\x42\x0c\x19\x2f\x70\x06\x92\x3c\x1b\xfc\x2c\x31\xe5\x81\xaa\x92\x09\x0a\xe6\x75\x2e\x44\xb1\xc9\xd3\xe4\x42\x38\xd6\xbd\xa2\xdc\x7c\x95\x8d\xf3\x18\x02\x49\x8d\x67\x8b\xec\x9c\x4c\x71\x9b\x22\x85\x6a\x53\x5e\x3d\x0e\xcd\x6b\x99\x10\x3a\xd4\xde\x48\xb0\x42\x8d\x35\x6e\x89\xe3\xa8\x9b\x60\xa5\x06\x4a\x2c\x5d\xb5\xd0\x8a\x40\xe8\xcb\x1b\xe7\xac\x4d\x40\xbd\x6c\x8d\xe7\xe2\xfa\x99\x73\x16\xb7\x01\x8a\x9c\x0c\xb2\x5f\x59\x50\xc6\x4b\x1b\x40\x3d\xd3\xe7\x8b\xc6\x6b\xa3\xbe\x2c\xd2\xa4\xea\x44\x27\x27\x59\xd4\xed\x05\x58\x96\x1d\xa5\x26\xdb\x5b\x23\xb6\x0b\x8a\xb4\xc9\xd8\x18\x0d\x23\x7d\xe9\x8d\xb9\x1e\xb1\x0b\x88\x77\x0f\x15\xe5\x62\x24\xab\xb2\xb3\xd5\x63\x49\xb7\xdb\x10\x98\x80\x61\xa4\xbd\xb6\x76\x09\x7b\xc4\xb6\xbb\x7e\xe2\x5d\x37\x78\x1f\xe5\xce\x85\x61\x62\x88\xbd\x07\x0f\xea\x6b\xb9\x29\xc1\x64\xdb\x6b\x97\xf3\x64\x43\x9d\x51\xcc\x0a\x51\x6d\x8e\xf3\xfc\x3c\x11\xbe\xd1\x98\xdb\xf7\xae\x8f\xca\x73\xef\xe3\x90\x1d\x9f\x76\xf5\x53\xe0\xf1\x05\x4f\x4f\x1d\x03\xf9\xda\x63\xa0\x0f\xb6\x1d\xea\x23\xa6\xd6\x2c\x7b\x04\x64\x1c\x3a\xe1\x05\x83\xc8\xc5\x81\x91\x34\x31\xc6\x5d\x25\x75\x8d\xc7\x3b\x96\xcd\x5a\x62\xdd\x3f\xb7\x11\x35\x1a\x32\x14\x48\x7c\xba\x06\x6d\x57\xa7\x12\xc8\x51\x21\xdb\x7b\xbf\x8f\x6b\x14\x0d\x55\x49\x8f\x23\x33\x09\xa3\x1f\xea\xc3\x33\xa9\x55\xd4\x16\x5e\xf5\x31\xd0\xab\xd2\x76\xe8\x3d\x8d\x69\xd1\x49\xcf\xea\xd6\xa8\x52\xb6\x46\xe9\x67\xf4\x28\x36\x97\x89\x3a\x84\x0f\x3a\xea\x8f\x4f\x55\x99\xc4\x22\xab\xba\x5a\x2b\xb1\xb1\xef\x95\x34\xdd\x9b\x3a\xd9\x9f\xb1\xf9\xa2\x4c\x95\x30\x4d\xb2\xe9\x5b\xbc\x0a\xd0\x81\xeb\x29\x62\xd5\x2b\xcc\x69\xde\x89\x78\xe4\x37\xc4\x41\xe0\x2e\x6b\x0e\x9d\x20\x9e\x19\x33\x12\x9a\x6b\x65\x37\x4e\xe4\x18\x1c\x52\xc1\x7e\x61\x9c\xcf\x8b\x3c\x83\x34\xb7\x58\x5d\xb7\x0a\x25\x63\xa0\x32\xbb\xd2\x10\xeb\x87\x02\x91\x3e\x0c\xcc\x61\xdc\x9e\xb7\xe0\x12\xcf\xd7\x7b\xed\x68\x66\x98\xad\x7b\x51\xa6\xce\x70\x70\xe1\x29\xba\x06\x16\x47\x6c\xff\x15\x30\x80\x64\xbc\xaa\xca\x64\xa4\x74\x64\x29\x2a\x56\x5d\x26\x18\x9a\xcc\xdc\x37\xfb\x41\x75\xcd\x7f\x3e\xd5\xfb\x52\x54\x7b\x1a\x50\x27\x52\xb8\x44\x3d\x40\xc9\x7f\xcf\xb5\x48\xba\x8d\x55\xa9\xff\xe6\x68\x7f\xdc\xa4\x1f\x6f\x80\x01\x5b\x50\xd4\x7a\x3c\xae\x7e\x28\xd3\x0f\x98\x58\x35\xab\x44\x39\xe1\x63\xc1\x36\x41\xe3\x19\x0e\x06\x8b\x32\xed\x2b\xfd\xb5\x7f\x39\xe3\xd5\xe5\x14\x34\x9f\xdf\x2d\xca\x14\xdd\x15\x42\x13\xa0\x5f\xc3\xd1\x0d\x9b\x06\xe7\x79\xfb\xe8\xd3\x45\xad\xa6\xfe\xc0\x9e\xb7\x7d\xb1\x2a\xe3\x50\x2b\x96\x43\x16\x45\x1e\x78\xa5\x0b\xd5\x91\xc8\x9d\x3b\x55\xf5\x9f\x84\x48\x9c\xb5\x7a\x58\x5c\x47\x00\xcb\x9b\xe2\x7d\x34\x20\xc0\x65\x1d\xb0\x2a\xac\x83\x55\xa5\x0e\xd0\xdf\x2d\x1b\x13\x5e\x8a\x35\x8c\xcb\xbb\x22\x03\x02\xe7\x65\x9d\x02\xaa\xd0\xaf\xc5\xab\x19\xc2\xec\x84\x55\xe9\x8b\x75\x58\xc0\x6d\x6b\x10\x81\xc8\x65\xac\x75\x15\xe8\x96\x6c\xe8\x57\x43\xdd\xbf\xa5\xb2\xc3\xf8\xee\x7e\xa3\xff\x34\x52\x0a\xef\x29\xb5\x08\xc0\x1c\x1e\x7d\x23\x76\xc3\x35\xe0\x08\xb2\x20\x47\x92\x02\x25\x67\xbc\xa4\xb5\x10\xc8\x73\xf0\x25\x0e\x64\xfa\x0a\x11\xe7\x5c\x17\xd5\x2f\x07\x02\x21\x57\xbb\x1f\x68\xc7\xa6\xe9\x72\xc0\x93\x8c\x3a\xe3\x89\x9f\x4b\x89\xcf\xc5\x3b\x68\xdf\xb1\x78\xd5\x84\xa5\xd1\x0b\x3b\x76\x83\x85\x14\x88\x4e\x9b\x2e\x7b\xee\x12\xdc\x85\x36\x74\xc6\x5c\x37\x4f\x24\xc5\xc5\xae\x67\xc5\x3d\x66\x1a\x6d\xb1\xce\xb7\x62\x39\x12\x9a\x29\x9e\x0e\x9a\xa8\x22\x47\xc3\xd1\xef\x7a\xdd\x4e\x57\x71\x1a\x6d\xdd\x6f\x9d\xcd\xd6\xd7\x03\x3a\x4e\x26\xa0\x9e\x97\xbf\xa7\xcb\x52\x3e\x3e\xd7\xaa\x00\x69\x09\xb5\x2d\x3c\xcb\xb3\xf6\x5c\x3b\xeb\xcc\x44\x83\x8a\xa8\x6f\xd4\xeb\x43\x3a\x01\xbf\xc5\x7f\x2a\x45\x4a\xab\x4f\x56\xb3\x00\xed\xf5\x66\xaa\x4e\x7d\xc7\xb8\x2c\x13\x75\xae\xb3\x51\x83\xd5\x6f\x78\x4a\xee\xe9\x7c\x32\x74\xd8\xed\x81\xb8\xea\xb1\x38\x9f\x73\xb5\x32\xa4\x18\x2f\xca\xd0\xba\x0a\xaf\xa0\x15\x62\xa1\x01\x17\xa3\x72\x32\xdd\x51\x6b\xec\x11\x8b\x76\x95\x50\x12\xea\xac\x27\x3e\x1c\xec\xbf\xd0\x1a\x0d\xbe\x71\x77\xfd\x0d\x15\x15\x09\x4d\x44\x4a\xa7\x49\xc8\x75\xeb\x9e\x1f\x4e\x6f\xfa\xbc\x0e\xbd\x65\xe2\x12\x0e\xb3\xa6\x69\xbf\xca\xff\xfc\xe6\x88\x16\x5f\xd7\x57\x16\x3e\xb7\x23\x40\x0d\x14\x51\x56\xf4\xae\xaa\x40\xd7\x50\xf7\x86\xf0\x91\xdc\x2b\x7a\xc0\x4a\xd0\x07\xd5\x5f\xd5\x0b\xce\x1e\xac\x71\xb5\x0a\x96\x83\xc7\xca\xd1\x52\xa0\x01\x5f\xc2\x73\x18\x80\xf8\x39\x4f\xb2\x4e\xf4\x8c\x79\xcd\x3f\xf7\xdc\xd6\xa5\xe0\xf1\xd0\xd5\x32\x79\xec\x1b\xa5\x58\xe6\x9a\x83\xad\xef\x6e\xd8\x5d\x1f\xca\xc1\x22\xec\x40\x4c\x5f\x5d\x15\x9d\xa8\xf3\xdf\x9f\x9e\x9d\x9c\x9c\x9c\xc8\x87\xdd\x0e\xcc\x3b\xb1\x5c\x77\xb7\x73\xfc\xdf\xcf\x4e\x1f\x76\xa3\x60\xae\xb5\xe8\xc4\x2e\x9e\xb3\x58\xd4\xd8\x12\x3e\x1d\x3f\x3e\x55\xe2\x17\x13\xef\xb7\x0f\x69\x9e\x5f\x08\x6f\x50\xaa\xa0\x69\x58\xf0\x64\xe4\xae\xbb\x28\xea\x01\x87\xf6\xb3\xfc\xb2\xd3\x65\x9b\xec\xdb\xaf\x9f\x6c\xa9\xff\x1a\x6c\x73\x6f\x2c\x8a\x7f\x33\x49\xbc\x52\xc8\x74\x6d\xa0\x87\x36\x26\x70\xee\x3e\xc0\x4a\x92\xf9\x0d\x9a\x49\xac\xc3\x7c\x87\xc4\x59\x2e\xd4\x9b\xe2\xea\xfa\xe1\x74\x75\xf4\x2c\x1d\xd1\x05\xc2\xa8\xe8\xfc\x60\x3a\x43\xc2\x8c\x57\x6c\xcc\x33\x13\xc2\x04\x62\x50\xe1\x19\xd6\x0b\xfe\x92\x4f\xa0\x55\x21\x4a\x73\x64\xa5\x6b\x2d\x88\x9d\xdc\x62\x59\x22\xae\xc4\x78\x51\xe9\x97\x7f\xfd\x43\x13\xa0\x16\x3e\xc6\xc1\xb3\xa3\x6b\xd7\xdd\x7b\x0d\x9c\xaf\x9a\x7d\xe9\xac\x11\xd6\xd1\x75\x41\xef\xe9\x91\x69\x04\xe6\xf2\x23\xe1\x64\x54\xeb\x47\x9e\x03\x2e\xa5\x32\x51\x3a\xcc\x7b\x13\x65\x90\xb8\xde\x46\x2f\x54\xe0\xe9\x73\xc7\xb5\x7b\x52\x05\xaf\xa8\x2f\x6d\xda\x12\xda\x94\xbc\x37\x50\xa8\xc0\x77\x24\x07\x4b\x67\x8a\xb3\xac\x7a\xc5\x17\x76\x0d\xd3\x71\x84\x86\x58\x10\x7e\x8c\x7c\x22\x14\x04\xcc\x09\x42\x48\x60\xe0\xee\x30\xa0\x8f\x7e\xdb\xf4\x03\xfb\xf8\x4b\xa3\x16\xc6\xde\x01\x4f\xa4\x78\xe1\x23\xf3\xac\x69\xbc\x3e\x5a\x4e\x9c\x85\xfb\x0a\x43\xe4\xb0\x8f\x63\x86\x1a\xc6\x0d\xf2\x62\x0a\xd4\x62\x0a\x05\x61\xbf\x02\x1a\x22\x6b\x39\x5f\x9a\x23\x7d\x1d\x90\xea\x1e\xae\x33\x4c\x86\xa5\x9f\x81\xfc\x65\xc9\xb3\xd8\xcd\xf2\xa7\x1a\xf4\x5c\x27\x14\x7c\xac\x46\x4a\xa0\xde\xef\xb5\x6f\xa2\x81\xcc\x17\xe5\xd8\x8b\x09\x87\x25\x1d\x37\x1a\x3d\xd4\x7f\x16\xf2\x9d\x9d\x53\x5c\x8d\x4e\xea\x13\xe2\xc3\xb1\x8d\xd5\xa4\x25\xd1\xd8\xce\x69\x28\x55\x01\xee\x10\xff\xe9\xb9\xcd\x86\xf4\xef\x89\x0e\x45\xd8\xac\x8f\x3a\xb8\xac\x78\x6a\x3b\xbc\xce\x2a\x3e\xae\x92\x31\x93\x8b\x29\x2f\xc1\xd8\xbb\x29\x8d\x22\x64\x68\xbd\x2a\x38\x1a\x89\x9a\x14\x7a\x10\x9b\xc3\xd8\x82\x1b\x29\xf7\x02\xc3\x02\xa9\x4e\xc1\x11\xfd\x12\xe2\x1f\x8c\xe0\xda\x47\x15\x9e\x69\x99\xe7\x30\x1e\x58\x37\x3b\xb1\xd4\x9c\xec\x64\x4e\xd0\xb2\xce\x55\x8f\x5d\xf7\xd8\x2f\xb4\x0b\x3c\xf4\x8c\xde\x8f\xb7\x7b\x6c\xa7\xc7\x1e\x83\x62\xaa\x9a\x79\x26\xd3\x60\x41\xfe\xcc\xc0\x36\x1d\xfd\x94\x54\x33\x76\x86\xb1\xcc\xcf\xd0\x02\x81\xcc\xa1\xb4\xa8\x2f\xc5\xa6\xda\xd3\x2a\x91\x35\xa3\x87\x6d\xcd\xac\xbb\x38\x76\x3b\x06\xa9\xa6\xbe\xeb\x7b\x80\xce\xae\x18\xbc\x65\x98\x0a\xab\xed\x04\x11\x19\x0d\xc7\x7f\x54\x74\xf6\x68\x5e\x74\x78\x59\xd6\x4c\x05\xa8\x59\x40\xb9\xd2\x89\x7e\xe9\x85\xea\xf8\x88\x2b\x56\xd1\x30\x5f\x54\xef\xfd\xc4\x43\xec\x64\xe3\xfb\x11\x1f\x89\x74\x50\x2e\xb2\x2a\x99\x0b\x63\xa5\x22\xe4\x7c\xd0\xd2\x12\xe2\x75\x68\xe8\x82\x72\x2d\xad\x86\x46\x35\x75\xb4\x8f\x3d\x36\x2d\x93\xd8\x5e\xa2\x3a\x71\xcc\xf0\x21\x5c\xfd\x4a\x93\x91\x64\x1c\x22\x1b\x14\x89\xd9\xa9\x29\x98\xc7\x8f\x3a\xec\xb9\xe2\x04\xc5\xdf\xf0\x7d\x08\xdf\x36\xcd\xe3\xe5\x54\x54\xa3\x3c\xaf\x64\x55\xf2\xa2\x3f\xce\xe7\x83\x38\x1f\xcb\xc1\x93\xfe\xe3\x41\xca\xaf\xf3\x45\x35\x50\x68\x0c\xc2\x46\x49\x35\x5b\x8c\xa0\xfa\x79\x99\xc8\x2a\x9f\x88\xf2\xe7\x5c\x8a\x62\x36\x98\xa4\xe2\x6a\x94\x5f\x41\xab\x51\x9a\x8f\x06\x73\x2e\x2b\x51\x0e\x64\x39\x1e\x8c\xa5\x74\xbf\xf7\xc7\x52\xb6\x03\x2e\xf3\xeb\x54\x88\xad\x6f\xb6\x9e\x0c\x50\x09\xa4\x96\x9b\xaa\x69\xd0\x4c\xc7\x4c\xe9\xf3\x6c\xba\x48\x79\x49\xaf\xb1\x29\xaf\x84\xac\xf4\x40\x92\xac\xb2\x11\x3e\x2c\x91\x20\xdc\x38\x9a\xed\x60\x07\xec\xcf\x8b\x24\xa6\x48\x6d\x60\x7c\xb0\xc8\x62\x51\x82\xae\x0a\xf4\x84\x9f\xe9\xb5\xa2\xff\x3c\x8f\x45\x1a\x52\x74\x2c\xe5\xa6\x12\x54\xe7\x10\x5d\x6c\x20\xb3\xa4\x28\x44\x25\x61\xf4\x7c\x73\xaa\x80\x6f\x56\xb9\x1e\xce\xc0\xf0\xca\x43\x35\x93\x90\x56\x17\xb9\x25\x82\x61\x47\x96\x99\x14\x8b\x29\x15\x87\xb8\x29\x2a\xca\xbc\x80\xd7\x5f\xe9\x54\x1a\xa7\xf2\x8a\xbe\xab\x3f\x9d\x2f\x97\x49\x35\x3b\xac\xae\x53\xd3\xbe\xdf\x1f\x48\xf8\x3d\xb0\x9f\x9c\xfa\xa4\x68\xaa\x5e\x4d\x06\x0c\xdd\x0e\x0e\x81\x83\x7a\x8d\x88\xcc\xbc\x0e\xdf\xef\xbd\xd8\x7f\xfb\xe7\x43\x25\xd3\xb6\x7a\x8c\x24\x48\x8f\x3d\xe9\xb1\xa7\x3d\xf6\x75\x8f\x7d\xd3\x63\xdf\xf6\xd8\x77\x3d\xb6\xbd\xa5\xbd\xf4\xfe\x7c\xb0\xff\xf2\xe3\xe1\xfe\xff\xfe\x0a\x5a\x45\x7c\x51\xe5\x51\x0f\x4e\x7f\x2b\x00\xf4\xd8\xf6\x76\x8f\x6d\xef\x9c\xfa\x2e\x19\x53\x91\x41\x00\xce\x3f\x97\x49\xdc\x41\xb7\x46\x1c\x23\x24\xc4\x54\x07\x19\x88\x4d\x52\xe4\x49\x56\x39\x3b\x24\x92\xc4\xbe\x87\x5a\xb4\xea\xb1\xb6\x3b\x32\xf9\x45\x78\xde\x4b\xf8\x2c\x79\xb2\xa1\x98\x74\xf3\x64\x43\x3f\xc0\xd9\x9e\x7a\xec\x64\x63\xf3\x64\xc3\x3c\xcd\x01\x04\xef\xc1\x51\x95\x34\x1d\x7c\x9d\x25\xad\x68\xc3\x90\xad\x31\xc1\x2e\xfc\x87\x98\xeb\x47\x3c\xd7\x01\x2a\x15\x57\x3f\x70\x99\xc8\x21\xdb\xea\xf9\xc5\x7f\x2e\xf3\xcb\x21\xdb\x76\x4a\xe7\xfc\xea\xa7\x24\xae\x66\x43\x16\x6d\x6f\x6d\xfd\x21\x0a\x8f\x2a\x6d\x5a\xa2\x87\x3a\xce\x9e\x83\xfc\x3a\xb8\xd1\x94\x37\x21\xb8\xd5\x8c\x60\x96\x67\x62\x25\x82\x8a\x70\x7f\x15\xa2\x60\xdf\x30\x99\x4c\xb3\x64\x92\x8c\x79\x56\x91\xbd\x27\x46\x73\xb1\xf3\x77\xa9\x20\xc3\x0c\xda\xc9\x7b\xc3\xab\x59\xbf\xcc\x17\x59\x8c\x03\x1c\xb0\xed\x1d\xf6\x90\x6d\x6f\x89\x6f\xba\xea\xc7\x96\x78\xaa\x66\xf5\x0f\x27\x1b\x98\x3f\xf4\x45\x9a\x63\xa4\x47\xb0\x48\xd4\xc2\xb5\x2e\x87\x69\x52\x1b\x64\x5f\x75\x39\x92\x03\xd3\x12\xe5\xe8\xb7\x93\xf1\x98\xf3\x9d\x27\x8f\xbf\x13\xdf\x7d\x23\xc6\xdf\xec\xf0\x27\xa3\x6f\xe2\xf1\x93\x9d\xf1\x78\xbc\x3d\xf9\xfa\xc9\x77\xdf\x7c\xb7\xc5\xe3\xd1\xd6\x40\x2a\x41\x33\x4f\xae\x92\x4c\x0e\x3e\x82\x9c\x55\x25\xbf\x7b\xfd\x64\x5b\x0f\xb4\x65\x32\x9c\xa9\x00\x32\xf4\xdc\x0f\xe1\x3c\xd8\x59\x80\xba\x44\x6b\xad\x11\xe2\x09\x1f\xc3\xfc\x60\xf8\xb3\xb9\x88\x13\xce\xfe\x67\x21\x28\x91\x8e\x0d\x00\xa5\x68\xda\xb7\x76\x05\x76\xa9\x20\x27\x5d\x49\xcb\x47\x7a\x3b\x0d\x96\x33\x8e\xa7\xc9\x62\xdf\xad\x77\x0c\xab\xbe\x6f\xe1\xcb\xfe\xa2\x70\xba\xeb\x2a\x62\x20\x28\x2f\xd2\xa8\x1b\x52\xfe\xdd\x64\x22\x05\x5c\xff\x39\x12\x23\x4e\x2e\x1a\x72\x38\xb2\x3f\xa1\x43\x9f\x97\x64\x42\x1d\x61\x4d\xa6\x02\xf6\xdc\xff\x38\x64\xdb\x36\x77\x01\xbc\xac\xd2\x53\xfc\x8f\x69\xce\xb1\x53\x57\xd5\x76\x59\x14\xab\x0f\x14\x2a\x46\xb2\xd0\x05\x9d\x6a\x66\x1e\x90\xcc\xa5\x60\x29\x45\x17\x5f\x92\x3e\x7d\x62\x51\x71\x65\x33\xfe\xd7\xe5\xe7\x42\xed\x82\x9d\x9b\xc8\x4c\x2d\xfe\x9b\x24\x66\xc1\xc7\xae\x77\x23\x9c\x42\x14\xe8\x43\xfc\x00\x87\x60\x35\x4f\x54\xd1\x34\xf0\x93\xb4\x79\x2d\x76\x7d\x13\x8b\x66\xf9\x44\x4c\x7f\xb2\x41\x00\xd7\x93\xce\xd4\xb9\xb7\x4e\xe6\xbc\x9c\x26\xd9\x10\xab\xea\x9a\x96\x39\x5c\xdc\x7a\x6c\xa7\xdb\x35\x6b\xe6\x12\x17\xcc\xc9\xc6\x98\xa7\xe3\x8e\x92\xae\xec\x11\x5b\x05\xa2\xab\x70\xea\x9e\x6c\x58\x30\xd1\x03\xf6\x27\xf6\xfb\xa4\x12\xf3\x68\xe8\x1b\x71\xc4\x68\x92\xd4\x8e\xcb\x89\x7d\x3c\xf3\xd6\xeb\x89\x1b\x89\x8c\x56\x00\x08\xce\x97\x14\x8f\xed\xc5\xe1\xa1\xc9\xdd\x3d\x18\x80\x44\x18\xb2\x68\x8b\x6d\x33\x2d\xb4\xa9\xf4\x65\x52\x6a\xdb\xa9\xa8\xcc\x2f\xe9\x0b\x4f\x93\x29\xf8\x8b\x2a\x31\xaf\xaa\x6d\xca\x8a\x97\x95\xd3\xee\xa7\x92\x17\x20\xd1\x95\x62\x4f\xe5\x3f\x2f\x64\x95\x4c\xae\xc9\x64\xab\xd6\xd2\xc9\x91\xe7\x31\xa1\xf3\xd8\xa0\x4a\x90\x08\xfe\x31\xc2\x08\x12\x22\xdf\xe0\x21\x23\xd5\x08\x2c\xc2\xc8\xe6\x63\x26\x58\x99\xe7\x15\x13\x28\xb7\xfb\xe6\x61\x4d\x95\x0e\xf1\x7a\xf0\x06\xed\x15\xe7\x9e\xd1\xa5\x80\x28\x77\x7f\x55\xfb\xfb\xe7\x33\x0b\xd5\x7c\x72\x66\x75\x94\x5f\x1d\x26\xbf\xc0\xac\x46\xa3\xbc\x8c\x45\xb9\x39\xca\xaf\xec\x26\x19\x27\xb2\x48\xf9\x35\xd1\x26\xf2\x44\x36\x91\x54\x13\xd4\xe3\x41\x77\x6f\xbf\xcd\x30\x14\xf7\xd5\x47\xa0\x4a\x6f\x80\xbc\x5e\x48\xd1\x56\xa4\xb5\x1b\x9b\x40\x0e\x6c\x48\x28\xe4\x39\xdc\x8b\xc0\x7d\x25\x99\x05\x9f\x61\x20\xe7\x33\x33\x35\x7a\x04\xb7\x19\xcb\x2f\xa2\xcc\xdf\x24\x19\x6c\x67\xf5\x31\xb9\x5f\x9d\xb1\xcd\x4d\xd1\xd6\xed\x7b\x8e\xf5\x62\xd9\x3d\xd9\x40\xd7\x8f\x93\x0d\xa7\xeb\xc8\x7c\xdf\xbc\x92\x9b\x58\xc1\x5d\xf2\xe1\x7a\xa3\x1a\xf7\x89\xcf\x66\x29\x2e\x44\x29\xc5\x4a\xbc\x74\xc5\xd5\xf8\x99\x9a\xf7\x83\x67\x99\x5f\xae\x81\xa4\x53\x6b\x19\x86\x6e\xb5\xdb\xa3\xa7\x56\xdc\xee\xc9\x06\xca\x32\x1f\x29\x55\xa2\xf0\x21\x39\x17\xa0\xe2\x0b\xc1\x3b\x23\xd0\x48\x16\x8d\x01\xfc\xdb\x42\x12\x47\x72\xdc\x03\x39\xac\xf0\x57\x6c\x25\xb2\x4a\x94\x3e\x4a\x50\x61\x53\x09\x0f\x09\x0c\x05\x55\x5c\x9c\xbc\xed\x83\x3e\xdf\x13\x3e\x76\x4b\x59\x8a\x93\xb3\xf3\xb4\xe1\xe5\x54\xb9\x4f\xdc\x44\x16\xaf\xc6\x4c\x64\xf1\x72\xbc\x54\x85\x7b\xc2\x6a\xc4\xa5\x48\x93\x4c\x2c\xc5\x4a\x57\x6a\xc5\xca\x54\xb8\x23\x56\xa4\x1c\x2c\xe5\x2c\x6d\x29\xdf\xce\x5b\x56\xc5\xb8\x1f\xee\xb2\x58\x2d\xe7\x2f\x07\xb3\x25\x1c\xd6\xa8\x00\xdd\x2f\x86\x2d\x5c\x16\xe2\xd7\xc4\x67\x01\x76\xf7\xc0\x69\x16\x37\xa5\x7f\x8b\xcd\x91\xa8\x2e\x85\xc8\x56\x20\xe8\xd5\x5d\x82\xa5\x5f\xef\x9e\x51\xe5\x70\x4f\xb0\x16\xa6\x58\x75\x25\xa2\x54\xed\xf6\x78\x92\x16\xdd\xb2\x42\xe8\x6b\xf3\xda\xa8\x29\xe0\x77\x5e\x1d\x16\x99\x66\xb6\x73\xd0\x69\x62\xb8\xe6\x13\xc1\xdd\x58\xce\xa2\xb4\x84\xdb\x1c\xbc\x5a\xf9\xac\x86\xdc\x7d\x71\x5a\x88\x61\x13\x93\xd5\x10\xac\xb3\x57\x0b\x7e\xf7\xc8\x60\x08\x50\x5c\x88\x2c\xbd\x5e\x81\x1e\x56\x5a\x03\x3d\xaa\x68\x4e\xf3\x90\x4a\xa1\xf9\x6e\x02\xee\x8a\xe8\x76\xd7\xbb\xe7\x39\x17\xd7\xb2\x5f\x8a\x78\x31\x76\x5e\xef\x3b\x7c\x3c\x5e\xcc\x17\x29\xaf\xf2\xb2\xc7\x5c\x37\x8f\xc1\x80\x7d\x90\x82\x41\xb4\x68\x31\x99\x40\xc0\x3c\x30\x6b\x9f\xcf\x17\x15\x1f\x25\x69\x52\xe1\x25\x16\x3d\x10\x14\xa2\x84\x58\xdf\x18\xec\x5c\x41\xf0\xee\x9e\xbd\x7e\x08\x55\xd5\x9d\x79\x35\xc7\x0c\x1a\xb6\x96\x4e\x18\xf1\xeb\x67\x93\xe2\x19\x2e\xc8\xcb\x24\x66\xbb\x6c\xf0\xf0\x77\x1f\x3f\xbe\xff\x70\xf0\xea\xe3\xc7\x87\x03\x78\x2f\xe8\x93\x13\xd6\x81\x98\xd8\xe1\x41\xd7\x45\x99\x17\x60\x45\x33\x71\x6e\x6b\x3e\x42\xe9\xef\x5d\x69\x83\xf9\x19\x0b\xd9\x77\x0b\x7b\x4d\x72\x89\xed\x36\xb7\xdf\xdd\x65\x10\x3a\x69\x8b\x3d\x87\x28\xec\xa2\x1a\xcf\x22\x36\x6c\xaa\x6c\xe0\xba\xdf\x40\x2f\xf0\xd1\x80\xa2\x5e\x5d\x7b\x08\x50\xa0\xb2\x75\x10\xf0\x21\x82\x25\x8b\xb0\x9d\xd2\x6f\xff\xfb\x5b\x3e\x87\x07\x0e\xbf\x96\xe7\xeb\x4f\x3d\xd8\xa7\x3a\x53\x55\x97\x98\xaa\x2f\x9c\x3a\xf5\x66\xde\x10\xe2\xe4\xc2\x41\xbf\x0e\xca\x7c\xa0\x4b\x03\xa7\x57\x2a\x71\xf3\x96\x98\x3a\xf5\x66\x6e\xaf\x60\x44\xec\xf6\x1a\x82\xa2\x0f\xe6\x6c\x65\x7a\x35\x25\xce\xd5\x84\xad\x53\x6f\xe6\x8d\xb5\xcc\x2f\x9d\xb1\xd6\x41\xd1\x07\xa5\x5d\x9a\x0e\xd5\x0f\x53\x81\xbe\x78\xf5\x96\x8c\xcb\x6b\x4b\x65\x24\x7e\x0c\x7c\xfa\xdd\x0b\xc4\x93\xed\xc5\x14\x78\x43\x71\x34\x34\xdb\x5f\x08\x8b\x8a\xd3\xa9\xe9\x2d\xb5\x81\x1a\xa0\xd4\xa9\xb1\x64\x1c\x4e\x2b\x2a\x99\xc7\x06\xe4\xdc\x66\x87\x84\x52\xa7\xc6\x12\x90\x4e\x2b\x2a\x91\x96\xe6\xd2\x52\x4d\x3a\xf4\x96\xcb\xa9\x2d\x6b\xb4\x96\xe6\xae\x97\xe0\xd2\x0d\xa5\x01\x6e\xbe\x87\x0d\xdc\x6e\xb6\x9c\x2e\x02\x00\x54\x0c\xe9\x05\x74\x27\xea\x87\xbd\x06\xc3\x2f\x5e\x3d\x6f\x1e\xe1\x04\x6e\x3b\xf0\x1a\x53\xd9\x55\x6a\x60\x5f\xd9\x38\x3d\x50\xea\xd4\x58\x42\x18\xa7\x95\x2e\xb1\xd2\xe8\xca\x0a\xa2\x2b\x47\xe4\x5d\xc9\xe5\x20\x65\x08\xd2\xbd\xbf\x32\xc0\xdd\x42\xd3\x20\xa8\xd9\xd8\x7e\x49\xd7\x8d\x30\xc1\x3f\x41\x01\x6b\x31\x96\xd0\x3b\xd4\xf1\xc9\x86\xbb\x45\x9c\x6c\xf4\x18\x95\x80\xcc\xc6\xdf\x24\xa0\x9d\x1f\x4a\x0e\xd3\x4f\x2d\x20\xf5\x4f\x92\x5c\xf8\xd3\x88\x14\xfc\xa9\xd6\x3f\xfe\x45\x2b\x13\x7f\xa4\x53\xfc\x77\x1e\xe3\xbf\x92\x2a\x11\x77\xe1\x0f\xbc\xd3\x51\x7f\x5d\xa5\xf4\x2f\x61\xe4\x12\xe0\x64\xe3\xd4\xb5\xef\x33\xc8\x42\xe0\x66\x79\xd5\xa1\xa1\xf4\x95\x32\xd5\xf3\x77\x9a\x9e\x23\xaf\x1f\x3c\x60\xc7\xba\xaa\x15\xc6\x66\x7d\x7c\xb5\xbb\xcb\xb6\x30\x74\x34\xd4\x71\x5e\x37\xae\xa4\xf3\x38\x41\xcf\x3e\xfa\x35\xa3\x7b\x7a\xda\x43\x91\x69\x9b\xa2\x3c\xf5\x79\xc0\xf9\xea\x4d\xae\x23\xda\xc1\x26\x13\xc4\xb7\x87\x85\x77\xf7\x56\xc3\xc3\x7c\xed\x76\x4f\x7b\xb8\x14\x01\x0e\xae\x39\x0f\x90\xbe\xad\xaa\xc1\x50\x1f\xa0\xb9\xa3\x03\xe8\x0c\x30\xb8\xf5\x7b\x70\x82\xeb\x89\x1a\x38\x0b\xc5\x02\xd5\xba\xcd\x4a\xb0\xce\xd1\xae\x19\x30\x41\x02\xd0\x7a\xdb\x40\x6b\x56\x67\xb7\xf0\x00\x3b\xfa\x72\x0d\x24\x7d\x03\x68\x57\x38\x6a\x5c\x8a\x1e\x04\xb0\x40\x68\x6a\x7e\x85\x43\x94\xf3\xa5\x2d\xe5\xbc\x81\x7f\xe6\xd0\x72\x1e\x2f\x6d\x39\x8f\xeb\x2d\xe7\x31\xb4\x4c\xa7\x4b\x5b\xa6\xd3\x7a\xcb\x74\x8a\xe3\x4c\x97\x8f\x33\x6d\x18\x67\xda\xed\x9e\x7a\x4f\x5b\x0d\x9a\xb3\xef\xff\x6a\xd4\xb3\x5e\xed\x85\xc8\x2c\xd1\x21\x0b\x35\x40\x70\x69\x2c\xc5\x84\xb4\x76\x10\x79\xa8\xb8\x77\xfd\x08\xa5\x2b\x32\x0e\x29\x8d\xbd\x5f\x18\x23\x1f\x7a\x71\xd4\x5e\x6a\x0f\xd9\x4b\x0a\xa6\x02\xc6\xa0\x1e\xe7\x9d\xe1\x53\x97\xf6\x43\xbd\xee\x53\x0b\x48\x7b\xa3\x8f\x6f\xf0\x0e\x9f\xa6\x10\xcf\x5d\x64\xf0\xec\x2e\xa9\x22\x9c\xd2\xfc\xdb\x07\x63\x6c\xd4\xcf\x33\xf1\x6e\xd2\x39\x36\x2b\xa0\x67\xae\x01\x7a\xfe\x8b\x9c\x73\x1a\xef\x85\x87\xdf\x5e\x70\xda\x3c\xed\xd2\x41\x73\xe9\xf0\x60\xbd\xde\xdf\xe0\xe8\xee\xb1\x3e\x34\x7f\x14\xc1\xe8\xf4\x78\xec\xf0\xcd\xdd\x65\xc3\x28\x28\x86\x1d\x08\x0e\x72\x07\x37\x5b\x93\x8b\xd0\x78\x96\xa4\x71\x29\x32\x17\x9d\x2c\x8f\x45\x0d\xe0\xbb\x0b\x51\x96\xea\x24\x0a\x51\xee\x14\x4f\x52\xbe\xe4\xa6\xb3\x79\xd8\x15\x3b\x14\x82\x1d\xbf\x38\x3c\x64\x7b\xef\xf7\x4f\x3b\xbf\x1b\x4b\xd9\x65\x23\x91\xe6\x97\x40\xb1\x79\x5e\x0a\x16\x8b\x8a\x27\xa9\x47\x2d\x5a\x5d\x1e\xa9\x60\xff\xee\x27\xf2\x00\x8d\xbe\xe2\x1a\xa2\xdf\x63\x20\x84\x10\x0c\xae\x19\x0b\x08\xa3\xcf\xb4\xd0\xcd\x1a\x3b\xba\xe9\x55\xf3\xbc\x82\xd0\x2b\x7a\x50\xaf\x12\xd0\x2a\xb8\x13\xb7\x77\x01\x7e\xe8\x7f\x39\x7a\xf3\xda\x5c\x4d\x80\xd9\x49\x33\xed\x75\xa1\x83\x17\x62\xc3\xbe\x07\x7b\x3a\x08\x0e\xb7\x59\xe5\x9b\x8a\xe7\xa0\x64\x13\x07\x47\x00\xfa\xd4\x87\x6a\x59\x1b\xc9\xfe\x84\x9d\x55\xe5\x42\x9c\xf5\xfc\x29\xc1\x38\xfb\x26\x72\xbf\xe2\x2d\xf6\xd0\x6c\xea\x0f\xd9\x48\xcc\xf8\x45\xa2\xa3\xee\x3f\x64\xff\x95\x2f\x74\xe2\xb5\x91\xc0\x04\x58\x6a\xb0\x0f\x61\x51\x3c\xd4\x2f\xa1\x0e\x04\x7f\x88\xe6\x2d\xd9\x92\x7e\x94\xe7\xe9\xf2\x65\x07\x0c\x6f\xb6\xe7\xf6\x95\x07\x5e\x25\x6b\x2e\xbd\xd8\xbe\xaf\xd5\x57\x1e\x98\x08\xf8\xef\x6e\x3d\xf3\x90\xd9\xab\x3d\x19\x36\x2c\xb8\x1b\x91\x5b\xd1\xee\x9e\x29\x8d\x6f\xde\x37\x21\xb2\xde\xdb\x57\x0a\xef\x9b\x50\x99\x80\xde\x5a\xba\x2d\x95\xd6\xbd\xe0\x32\x6e\x85\xf4\x46\xd3\x3a\x25\xfe\xd4\xe6\x2c\x83\x79\x49\x24\x9b\xe6\x76\xd9\xb6\x8a\x73\xa0\x55\x3a\x3d\x73\x4c\x8e\xc0\x8a\xff\x32\x89\x45\x49\x74\x90\x2c\x99\x40\xcc\xbe\x1c\xa5\x64\x4c\x91\xbd\x88\x28\xe9\xb4\x81\x1e\xa0\x43\xf4\xd8\x6d\x0c\x4c\x7f\xb3\x61\xcf\xe3\xbb\x0c\x7b\x1e\xff\x8b\x0e\x5b\xce\xef\x32\x6c\x39\xff\x2d\x87\x0d\x0b\x82\xd1\x8a\x81\x12\xb5\x51\xa0\x65\xcc\x59\x7d\x23\xde\x47\xbf\x3b\x88\x3e\xa9\x9d\xef\x72\xc8\x7a\x08\xad\x8c\x6c\xa9\x37\xc5\xb1\xe1\xd1\xad\x3e\x40\x6d\x6a\xb7\x42\x9f\x82\xb5\xae\x24\xdb\xbd\x68\x53\x97\x60\x1f\x50\x97\x34\xda\x7a\x4b\x1b\x1d\x05\x26\x04\xbf\x1d\x23\x5d\xa5\xcb\x19\xc9\x1d\xcc\x55\xfa\xaf\xb7\x5a\x38\x64\xec\x11\xde\x04\xd9\xa0\xa7\x69\x7e\x29\x64\xc5\x8a\x32\xc9\xcb\xc4\x4c\x31\x0e\xb6\x49\xff\xbd\xd7\xc1\x3a\xfb\x71\x52\x31\x29\x2a\xc9\xce\xe6\x49\xb6\x49\x86\x67\x5b\x67\x2c\xc7\xe5\xa2\x16\x8a\x1e\xe0\x81\x98\x88\x52\x2b\xb1\x69\x32\x4f\xd0\x48\x5a\x32\x49\xf7\x0c\xa4\x4a\x6b\xb7\x6a\x74\x0d\x6c\x77\xd1\x20\xbf\x2d\x77\xe4\xbe\x1d\x97\xbf\x5f\x9f\x64\x9f\xd9\x90\x2e\xb6\xb4\x07\x83\x5a\x25\x31\x3d\xb9\x58\xff\x88\x8e\x24\x9b\x63\x38\x9b\x61\x70\x94\xe8\xcd\x22\x51\x15\x23\x75\xe2\xeb\xa8\xbf\xf0\xea\x07\x62\x85\xb5\x9d\xfe\x22\x7b\xf8\x8b\x9c\xb7\x19\xc7\xa5\xc2\xfa\xfa\x3a\x0e\x16\x9d\x08\x7a\xc2\x63\xad\xc5\xd1\x3b\x36\xda\xa3\xeb\xe7\x5e\x63\x9d\x9e\x7e\xe8\xf2\x8f\x7c\x4e\x6f\x9d\xc8\x08\xa4\x48\x1b\x9e\xba\x47\xa8\x15\x55\x1d\x95\x6f\x45\x4d\xa3\xb6\xac\xa8\xa7\x76\x72\xaf\x0a\x98\xbf\xea\xaf\x6a\xc3\x6b\xff\xaa\xf6\x85\x25\x5f\xb5\x64\x5d\x81\x01\xca\xbc\x15\x95\xae\x42\xda\x78\x5d\xf9\x2c\xd8\x50\xef\xc4\xf3\x91\x0d\x52\x22\xdb\x99\x7c\xe6\xb8\xaf\xdd\xce\xc1\xec\x37\x71\x7e\xfb\xd2\x0e\x4d\x36\x25\x73\xe8\x98\x64\xbf\xdc\xc1\xff\xe9\x57\x16\xf3\xf2\x5c\x64\x3d\x96\x26\xd3\x59\x25\x32\x9d\xa4\xdb\x69\x38\xce\xd3\xbc\x7c\xc3\xb3\xa4\xc0\x97\x5b\xa7\xf9\x42\x8a\x23\x08\x7a\x1b\xb6\xd1\x1f\xb4\xaf\xd4\xd1\xc1\xde\xdb\xc3\xfd\xa3\xfd\x77\x6f\x3f\xbe\xfc\x70\xb0\xa7\xfe\x60\xbb\xec\x09\xf8\x50\x48\x31\xce\xd5\x9c\xdd\xc2\xd2\x59\x55\x9c\x8a\xea\x85\xc2\xd0\xad\xaa\xcb\x3a\x80\x7b\xe8\x3e\x89\x6f\xe7\x05\x87\x38\xba\x7d\xd0\x4d\xc0\x0b\x03\x48\x10\xb1\xe7\x9a\x16\xd8\xba\xc7\xb6\xfa\x5f\xef\x74\xd9\x90\x48\x65\x4b\x9f\x5a\x7f\x4b\x8d\xcc\x88\x8f\xcf\xa7\x70\x9e\x78\x5f\x26\x73\x5e\x5e\xb3\x5d\x8b\x8c\xdf\x6f\x81\x15\xfa\x36\x54\x88\x0f\xe0\x10\xc8\xb2\x14\x84\xd4\x55\x1c\x20\xbe\x8f\xf2\xed\x6c\xbe\xf5\xc3\x46\x91\xcb\x44\x1b\x8d\x52\xc0\x5a\x6b\xd8\xac\xf4\xd3\x49\x9a\x5f\x0e\x59\x34\x03\x35\xd5\x7e\x9a\x09\x45\xc0\x21\x7b\x62\xcd\xf9\xbf\x47\xdf\x98\xa2\x4c\xb2\xca\xb7\xe8\x07\x72\xee\xc5\x4a\x48\x0e\x59\x24\xae\xd4\xf2\xd1\x5f\xb5\x09\xff\x9a\x06\x1b\x6a\x6b\x1c\xf1\x72\x27\x30\x46\x4f\xf3\x72\xf7\x64\x83\xe8\x7d\xb2\x71\xf6\x0c\x2b\xa9\x8f\x17\xbc\x4c\x38\x98\x36\x8d\x16\x93\x49\x60\x37\x04\x2d\x69\x1e\x5d\x8b\x6f\x33\x45\x30\x27\xc3\xfa\xa4\xdf\x0d\x6b\xe9\xa1\x6d\xe6\xf8\xa6\x88\x1b\xfe\x59\x0f\x75\x53\xfd\x66\xc8\xbb\x94\xb6\x38\xc5\x14\x6a\x8c\x57\xbe\x05\xa5\x53\x7e\x4b\xd7\x02\xdb\x47\x92\xb5\xf5\xe2\x7d\xb9\x73\x3f\x0d\xf4\xc5\xa2\x65\x74\x8d\xaa\x92\x67\xb2\xe0\x25\xc6\xfc\xbd\x3b\x45\xc1\xa9\xcc\x43\x02\x4a\x1c\x1c\xa0\xc7\x49\x5e\xce\xc1\xc4\xbb\xe2\x95\xe8\x6c\x7f\xbb\x15\x8b\x69\x77\x7d\x04\x78\x1c\xc3\x82\xe7\xa9\xe2\xb4\xf5\x09\x12\x73\x39\x13\x71\xb3\xe4\xd0\xb1\xd7\x43\x97\x88\xa3\xbc\x70\x7d\xed\xb4\xcc\x40\xa7\x8d\x66\x57\x0e\x6b\x27\x93\x25\x73\x4e\xf0\x7f\x8f\xf8\xb0\xc7\x92\x25\xd9\x24\xc9\x92\x4a\x40\x40\x5d\x7e\x03\x13\xbe\x9b\x8d\x1b\x56\x6c\x83\x5c\x09\xe9\xf1\x62\x95\xfc\xd8\x9f\x43\xf2\x8f\x93\x8d\x92\xc7\x09\x4f\x37\xa7\xea\x5f\x91\x55\x1d\xc7\x6d\x2b\x94\x2d\x3d\x76\xb2\xc1\xb6\xfe\x00\x0e\x53\xcb\x2b\x6d\x7f\xfd\x87\x1e\x73\xf8\x90\x3d\xd9\xf9\x83\xe7\x63\xe5\x2c\xfe\xe4\x17\x01\x44\x2e\xae\x98\xfa\xbf\xa8\xa1\xce\x7b\x3b\xa5\x5b\x6c\x73\xe7\x71\x71\xf5\xdb\xd0\xd7\x15\x80\x8d\x14\x5e\x2e\xe8\x6e\x44\x63\x03\x6a\x39\x95\xfd\x6a\xff\x44\x74\x4e\xf9\x35\xe4\x3b\x18\xf1\x72\xbb\xbe\xaf\x38\x02\x8c\xbb\xd2\xab\x79\x8d\x2d\x5d\xc2\xa9\x98\x54\xee\xea\x1d\xe5\x55\x95\xcf\xdd\x92\xca\x5f\xde\x40\x1f\x0d\xcf\x88\x2a\xb6\xd5\xdf\x91\x7a\xb5\xf6\x6a\x92\x0c\xc3\x06\x0e\x59\xa4\xba\x5b\x9f\x0a\x0e\x8b\xc9\xb5\x55\x80\x33\xb8\x74\xb3\x5c\xe8\x11\x6b\xe5\x4a\x26\xb1\xdf\xae\xe1\xdd\x1d\xf9\xe5\x8a\xc0\x6a\xf4\xd7\xd2\x07\x96\xe9\x97\x37\x19\xc2\xf6\x3a\x9b\x36\xcb\x4b\x56\xdf\xd7\x54\xeb\xfd\x60\x07\x0f\x39\xd5\x77\xa2\xf7\x76\x03\xaf\x87\x6d\xb6\xd3\xdf\x96\x6c\xbc\x18\x25\xe3\xcd\x91\xf8\x25\x11\x65\x67\xab\xff\xf5\x53\xa5\xbd\x7f\xbb\x0d\xff\x7c\xf3\x18\xfe\x79\xfc\xdd\xd3\xae\xd9\x3f\x6e\xc4\x6a\x6d\x43\x6d\xd3\x4e\x54\x93\x97\x8d\xa3\x73\xd7\xc8\xc9\x86\x5d\x24\x7d\x2b\xaa\x1a\xce\x51\x60\xbc\x43\x6b\xe8\x64\xa3\x7b\x1f\xa8\x37\xa9\x3c\xbc\xdc\xfe\x21\x54\x7b\x7e\x81\xd4\xbb\x6e\x68\x85\xdf\x7c\x08\x3b\x77\x62\xb4\x9d\xfb\x62\xb4\x9d\x46\x46\xdb\x26\x4e\x7b\xa2\xfe\xff\xc9\x93\x1e\xdb\xee\xb2\xed\xfe\xf6\x53\x79\x3b\x4e\x6b\x1b\x6b\xf3\x74\xed\xd4\xa6\xeb\x9e\x27\x87\xa1\x15\xf9\x6b\x31\x15\x59\x2c\x6d\xac\x87\x4f\x9f\x58\x29\x8a\x52\x48\x10\x61\x0a\xf7\x8b\x44\x5c\xaa\x83\xbd\xa9\xb2\xc9\xdc\x2a\x1c\x0f\xdc\x8e\x34\x32\x15\xaf\x82\x8a\xea\x08\x5e\xab\x17\x7d\x7f\x2e\xae\x27\x25\x9f\x0b\xe9\xeb\xfe\xdb\xee\x49\x73\x30\x60\xec\xd3\xa6\xfa\x4f\xfd\xff\xd5\xe6\x27\xfa\x41\xff\x98\x93\xea\xd6\x1f\xfc\xf3\x29\x6e\x75\xd1\xe6\xe3\xa7\x7f\x70\xe3\x76\x94\xae\xba\x6a\xce\xab\xbd\xe6\xde\x6c\x37\x9f\xae\xae\xae\xae\x9c\xde\xbe\x6e\xe9\xce\xdf\x8b\x6d\x77\x9b\xdf\x35\x76\x87\xf5\x6f\x0f\xc8\x9f\xd5\x56\x82\xee\xd4\x08\xaa\x86\x73\x45\xff\x7f\x43\x82\xee\xb4\x60\x76\x53\x8a\x6e\x5e\xf9\xfd\xb5\x93\xf4\x9b\x66\x4a\x7c\x7b\x53\x8a\xae\x01\xa7\x9d\xa0\xb8\x5a\x5d\xc8\x35\x0a\xe5\x05\x1f\x27\xd5\xb5\x1f\xb3\x66\x0d\x0d\xd1\xc3\xff\x69\x2b\xd4\xad\x3b\x40\xad\x53\x65\x7d\x64\xd5\x8c\x17\x57\x21\x6c\xa2\xd4\x89\x13\xb9\x4c\xc7\xbd\xfb\xdd\xef\xd8\xde\xc1\xfe\x9e\x09\xc4\x46\x79\xe9\x8a\x32\x9f\x96\x42\x4a\xd0\x95\x12\x49\xb9\x0f\x47\x3a\x74\x58\x9a\x73\x88\x7f\x67\xaa\xe5\x13\xc6\x59\xc1\xcb\x2a\x19\x2f\x52\x78\x7f\x98\xea\xf0\x9f\xac\xa0\x84\x8b\x0f\xd9\xb5\x35\x90\x80\xe8\x77\x4a\xbc\x6e\x12\x68\x11\x8f\xae\xcf\x94\x24\xc6\xa7\x36\x12\xc9\x2e\x1e\x98\x33\x14\x52\x27\xcc\x74\xe3\xd1\x42\x5e\x63\xe2\x1e\x9b\x5c\xa1\xca\xe9\xe5\x88\xd9\x94\xb4\x80\xcd\x22\xab\x92\x94\x25\x15\xc4\x82\x54\x9b\x83\x3a\xdf\xe8\xb1\xe8\x48\x88\x78\x99\xfa\x1a\x64\xf1\x7b\xdd\xfb\xda\xde\x32\x7e\xbb\x66\xbf\x99\xb5\xfd\x45\xd6\xf1\x15\xc1\x5b\x59\xed\xb1\x91\xe6\x5e\x5a\xc8\xdc\xf3\xd4\x80\x9f\x9e\x71\x3a\x69\xcf\x9e\x7f\x88\x0b\x02\x22\x75\x18\xf0\x18\x27\xdb\xfb\x86\xfb\x9f\x5f\x03\xcb\x42\x4c\x69\x2b\x75\xaa\xc2\x6f\x07\x9c\xfe\x1e\x36\xf0\x30\xf6\x44\xa5\x83\x77\x08\xee\x06\xf6\xe2\xcb\xad\xc1\xd3\x9c\x4c\xbf\x61\x6c\xce\x9f\x3f\x90\x46\x80\x05\xd0\x7b\x60\xac\x0d\x8a\x3e\xdb\x35\x37\xf8\x1d\x7b\x05\x5d\xe6\x39\x20\x23\xfd\x7c\x49\x49\xa6\x74\x80\x43\x13\x05\xc7\xea\x85\x43\x1b\x44\x58\xe9\x1d\x43\x8a\xfd\xfb\xd9\x49\xa4\xe4\x12\x2c\xf2\xa8\x04\xe9\x8b\x9d\x8f\x24\x1e\xbd\xd8\xaf\x38\xd5\x5e\x5c\x21\x37\x14\x8e\xc6\xf7\x38\x82\x65\x07\xb5\xb3\xfc\x32\x3a\x65\xbb\xcc\x89\x6b\x85\xf1\xcc\x9f\x2d\x6d\x36\x4f\x32\x68\xb6\xb5\xa2\x1a\xbf\x82\x6a\xdb\x5b\x5b\x5e\x2a\x19\xab\x53\x51\x5e\x6e\xb6\x49\x75\x74\x2d\x13\xd8\xa7\xef\xfb\x09\x45\x65\x95\xfa\x59\x90\x5c\x58\x9b\xe6\x47\x53\x6a\x08\x77\x66\xfa\x6a\x42\xfa\x6e\x5b\xd2\xf4\x52\x5e\x89\xbf\x3b\x97\x1e\xa6\x0a\x84\xf5\xea\x9e\x6c\x74\x4d\x2c\x31\x08\x2e\x75\xd3\x87\x5d\x5c\xd5\x99\xcc\x53\xd1\x17\x18\x9f\xf8\x0d\x45\x2c\xdc\xfc\xb0\x3f\x04\xfb\x33\x08\x95\xa5\xa4\x28\x26\x61\x61\x9c\x88\xa4\xf8\x1d\x32\x2e\x45\x14\x04\x45\x8b\xf2\x40\x87\xa7\x9b\x3e\xcd\x2f\xf9\x24\x14\x85\x7d\x13\xe0\x1c\x39\xb0\x85\x01\x5b\x79\x8c\x44\x46\x1b\xa7\x81\x63\xa1\x4b\x5b\xaf\xd5\xa7\x4f\x6c\xab\x7b\x87\x09\xf7\x20\x6f\x7e\xbc\xd1\x94\xef\xac\x33\xe5\x1f\xff\x89\xe6\x9c\x68\xd6\x3a\xf3\xab\xa6\xba\x79\xa6\xd7\xb5\x81\x3f\xd9\x88\x93\x0b\x25\x1e\x97\x5a\xc0\x37\xbb\xb0\x80\x41\x3e\xc9\x5e\x4d\x59\xfb\x16\x4b\x2f\x8e\xdd\x53\xc7\xe1\xa5\xe7\xa8\x7a\xae\xec\x1b\x1a\xcf\x13\xa7\xd4\xaa\x5a\xfe\x76\x62\x2b\x7b\xe5\xb6\xba\xd1\x2b\x75\xbd\x91\xbf\xd7\x45\x70\x02\x76\xbe\xe3\x89\x18\x69\x78\x4c\x84\x3e\xd5\xb7\x96\x65\x9e\xc2\xad\xa9\xd6\x71\x46\xea\xf0\x77\x82\xc6\xff\x46\x24\xf6\xec\xc3\x6a\x83\x77\x40\xaf\x51\xb0\xb3\xe7\x37\x98\x9e\x15\xb3\x82\x97\xc0\xee\xbc\x38\xd7\xc2\x4b\x67\x87\xac\x10\x28\x85\x40\xef\xfe\x50\x02\x55\xd0\xe2\xa3\x2f\xdf\x56\xb0\x8a\x2f\x9e\x02\x3d\x22\xdc\x21\x71\x1e\xbb\xae\xe7\x52\xed\xce\x6c\x35\xcb\x05\xd7\x50\xcb\xf8\xc8\x5c\xfd\xb4\x31\x0b\xbc\xcc\x0f\xeb\xfb\x10\x12\x39\xe0\x03\x6f\x6c\xcf\x81\xfe\x6c\x78\xcf\x13\x70\x0f\xf4\xdc\x09\xe8\xd9\xc2\xcb\xc7\xb7\x90\x09\xd4\x01\xd2\xf4\x94\x0d\x6f\xca\x2f\x2b\xc8\xbe\x83\x64\xbf\x85\x73\x4e\x20\x62\xeb\x6e\x3a\x03\xb6\xb9\xec\x3f\xf6\x13\x2f\x21\xf9\xef\xd2\x5a\x9b\x9b\x9b\x04\xec\x13\x3b\x9a\x09\x29\x1c\x1b\x19\x5e\x0a\x13\x57\x20\x46\xab\x12\xb5\x1b\xa8\x8f\x87\xe0\xb0\x80\xa6\xa4\xb0\x35\x27\x68\x3d\xf7\xc9\x00\x53\xff\x1d\xe5\x6c\x51\xc4\x4a\x5f\x50\x9b\x2e\x13\x71\x82\x27\xb2\xb8\x5f\x49\x48\x68\x0f\xe7\xb4\x72\x91\xb1\x93\x8d\x6b\x5e\x42\x7e\x03\xf4\x7e\x38\xd9\x00\x00\x9f\xd6\x19\xe8\xda\xff\xfd\x53\x3b\xba\x7c\x11\xef\x16\x75\x90\xab\xf9\x04\xb1\xfd\x4a\xe7\x32\x91\xac\x82\x04\xc4\x78\x00\x81\xfa\x12\x0f\xc2\x73\x7e\x2e\x98\x14\x99\x14\x64\xe3\x9a\xc8\x36\xd7\x16\x78\xab\xa8\x9b\xe6\xea\x23\x63\x8f\x45\xe6\xe9\xa2\xcd\x7f\x09\x35\xcf\x3c\xb8\x51\x48\xb2\x38\x19\x73\x48\xe8\x41\x66\xb6\xae\x0a\x0a\x2f\x6a\x9e\x62\xa2\x09\xcd\xfe\x06\xe0\xb4\xa5\xf4\x16\x54\xdd\xde\xda\x72\xd1\x86\x1e\x3d\x57\x28\x30\x93\x5d\x82\x9d\xc6\xc1\xef\xf3\xa6\x5d\xea\x7b\xe0\x35\x3b\x46\x31\xe7\xdb\xe6\x7e\x50\xca\x61\xe3\x8d\x3a\x86\x2d\x54\xfb\xbd\x60\x89\x64\x59\x6e\x69\x09\x9d\xfb\xd8\x00\xec\xa6\x99\x23\x81\xda\xf3\xb7\x87\x5e\x28\xbb\x7b\x5a\x5a\xab\x0d\xdc\x33\x67\x0d\xec\x08\x57\x1b\xb3\xfa\xb2\x0e\xcd\x5a\xfd\xb2\xee\x7f\x4c\x10\x6f\x65\x53\xb8\xae\xc9\xe2\x2d\xc3\x9a\xde\x8b\x65\x9b\x8e\xca\x79\x87\xb8\x96\xce\xfb\x4b\x1e\x5f\xef\xf8\xcf\x2f\xaa\x44\xbf\xa6\x56\xd7\x45\x3e\x2d\x79\x31\xbb\xee\x43\xf9\x9d\xfb\xda\xae\xf5\xb5\xdd\xd2\xd7\xf6\x9d\xfa\x1a\xf3\x02\x55\x03\xd7\xb4\x0c\xcb\x1a\xfa\xa3\x2f\x77\xb4\xb5\xaa\xaa\xa0\x43\x2c\x6a\x1a\x1f\x7c\xb8\x53\x77\x33\x9f\x92\xb3\x26\x32\xce\xee\x46\xc3\x99\xcf\x18\xb3\x26\xae\x98\xdd\x8d\x25\x66\x8f\xfd\x2e\x1e\x37\x75\xf1\xf8\x6e\x5d\x3c\xf1\xbb\x78\xd2\xd4\xc5\x93\xbb\x75\xf1\xd4\xef\xe2\x69\x53\x17\x4f\xef\xd6\xc5\xd7\x7e\x17\x5f\x37\x75\xf1\xf5\x9d\xba\x90\x8b\x51\x95\x54\xa9\xf0\x19\xcb\x94\x36\x74\x68\xbe\xdd\x4b\xbf\x3b\x8d\xfd\x36\x31\x9d\xf9\x76\xa7\x7e\xf3\x0b\x51\xd6\xe2\x64\xea\xc2\x86\x5e\xf5\xa7\xbb\x0d\xb6\x7c\xa7\x63\xaf\xa9\x3f\x18\x1f\xab\xf3\x4d\x32\x4a\xe1\x79\x85\xdc\x85\x4a\x4a\xc5\x6f\x89\x01\xad\xd6\xb5\x51\xd4\xe6\x88\xdb\xa1\x25\xe2\xf6\x12\x03\xe8\xdb\x6f\x26\xe0\x77\xb2\x7b\xb2\x91\x8a\x89\x1f\x43\x13\x3e\xbc\x86\x87\x47\xfb\x8e\x2f\xae\xaa\x3d\x55\x7e\x63\xcb\xa8\xd6\x7e\x1b\xa2\x26\xa2\xdf\x0c\x94\xb7\xf4\x7d\x3f\x61\x44\x77\x4f\x36\xe0\x05\xb5\xde\xf9\x01\x4e\x41\x63\xdf\xd0\xe4\x1e\xba\x36\xb1\x71\xc2\xce\xff\x97\x76\xda\x69\xec\x9e\x9a\xdd\x01\x01\x74\x23\xac\x87\xe2\xce\x72\x0c\x4c\xfc\x6b\x3b\x9b\xf5\x5c\x8c\xde\xd9\xcf\x22\x4d\x93\x42\x26\xd2\xb1\x9e\x9d\x25\x15\x84\xc6\x17\xf7\x11\x71\x79\x0a\x81\x08\x7f\x00\x53\xbf\x3a\xe2\xee\xd7\x9a\xa6\xa5\x8b\xa3\xad\xfe\xe3\xa7\x62\x7e\x07\x24\x0a\x5e\x72\x10\x26\x75\x0c\xcc\xa7\xd6\xee\xb7\xbf\xbe\x7d\xc7\xda\x0e\x2f\xc9\x66\xa2\x4c\xaa\xba\xc1\xfd\x3e\x7e\x18\xba\x77\xe3\x68\x0c\x4e\x4d\xee\x30\xea\x65\xc6\xc6\x2d\x6e\x0a\xe3\x7b\x33\x49\x6c\xc5\xa6\xd9\x34\xb7\xd5\xfb\xa0\x11\xa3\x5b\xda\x18\xb6\xe2\xa4\xd6\xc4\xfb\x36\x2a\x1d\xd9\x8f\xab\xf0\x52\x70\x34\xb9\xee\x07\xab\xc3\x76\x6a\x1d\xb9\x9f\xd7\xc2\x4c\xde\xdd\x5d\x43\xe3\x06\x2f\x37\x75\x9c\x20\xc9\xe8\x2a\x5c\xa0\xed\x1d\x67\x8e\xd2\x3b\xc0\xd2\xaa\xe9\x12\xf4\x71\x3f\x43\x85\xc2\x60\x63\x73\x42\x60\xa3\x3b\x05\xda\xd7\xfd\x8f\xd2\x7c\x7c\xde\xd4\xfd\x0f\xea\x43\x63\xef\xd0\xc4\x0b\xdc\xea\x04\x33\xa5\xdb\x88\xbf\xa1\xe6\xf2\x86\x42\x6e\xd0\x65\xaa\x3a\x6d\x44\xb3\x6d\x14\xd6\xea\x5c\x10\xcd\x76\xe8\xc7\x63\xf5\xe3\x31\xfd\x78\xa2\x7e\x3c\xa1\x1f\x4f\xd5\x8f\xa7\xf4\xe3\x6b\xf5\xe3\x6b\xfc\xe1\xa8\x98\xb5\xb2\x1d\xa7\x8c\x4e\x8b\x51\x61\x7f\xee\xc0\x4f\x8b\xf5\x91\x51\xd7\xd6\x37\x2d\xb1\x6d\x56\x87\x63\xf5\x03\xa0\xfa\xb1\x4f\x83\xb0\xa7\x35\x03\x0b\x94\xa3\x41\xc4\xd3\x9b\x07\x3b\xfd\xe2\xc6\x2b\x70\x3b\xcd\xd3\x56\xe3\x95\x75\xe2\xa8\x9a\x48\xa1\xc0\x6b\x4e\x10\x52\xf8\x1d\x66\x47\x71\x03\x90\x52\xc1\x0a\x8c\x42\x40\x54\xec\xee\xe3\xa6\x53\xb7\xd0\x34\x08\x6a\x36\xb6\x5f\x12\x4b\xb1\x11\x26\x7d\x43\x2d\xc8\x74\x8f\x3f\x4d\x25\xf3\x35\xa8\xbd\xa4\xb3\x00\x02\x95\x1a\x8d\xc1\xf4\x64\x4a\xac\x1f\x84\x53\xa7\xde\x6c\x49\x97\x75\x50\xf7\x6b\x6e\x04\x4b\x79\x89\x99\x91\x5f\x6c\xa5\x8f\xd7\x29\x15\x87\x7d\xdb\xda\x2d\x50\x5c\x4c\x9a\xc5\x5c\x88\x57\xd8\xd3\x4d\xa3\x66\xae\x13\x1e\xd3\x18\x44\x05\x91\x32\x89\xd5\xf1\x87\xcb\x77\x58\x82\xcc\x81\x7f\x9b\x59\x0b\xac\xa7\x9c\x1f\x34\x92\xc0\xa2\xca\x0d\x7b\x6c\x97\xf7\xa7\x4f\xac\x63\xd9\xe5\xb9\x92\xb4\x6c\x18\x50\xd9\xbc\xa7\xaa\xda\x8d\xc4\xb4\x2f\xae\x90\xca\x4c\x16\x3c\x8b\xbe\x48\xd0\xbf\xf6\xa8\x9d\xf6\x05\xf4\x2b\x7c\x53\x25\x51\xec\xc4\x29\xd4\x48\xf6\x48\x42\x52\x45\x92\x3b\x5e\x40\xc3\x75\xde\x4a\x69\x55\x3b\xcf\xb2\xb4\x88\x7d\xc1\xe3\x7c\xf7\x24\x8a\xb3\x70\x9d\x2a\x76\x51\xd2\x86\xd3\x3a\x1a\xc3\x76\x0d\x48\xc2\x17\x40\x52\x0b\xdb\x25\x63\x35\xcc\xd7\x00\x88\xbe\x39\x8f\xba\xf7\x15\x68\xd1\xee\xc8\xcb\xc2\x2d\x1e\x92\xc1\xaa\xd2\x29\x37\x91\x20\x14\xb9\xa4\xf1\xe5\x8d\xe3\xf1\xb7\xfe\x7e\xa3\x09\xd8\xa3\x1b\x09\x2f\x06\x17\x9e\xd5\x7b\xf6\xd4\xfc\x9f\x90\x82\xff\x46\x8f\xae\x9a\xe9\x7b\xcc\xe5\x82\xc6\xa7\xd8\x1e\x8b\x9c\xe3\x99\xfe\x79\xe8\x7e\x87\x03\x45\x3b\x83\x7c\xf1\xd8\x89\x86\x6f\xd0\x73\x45\x47\xd1\xd3\xd4\x3d\xf3\x25\xf7\x19\x6c\xa6\xbf\x5d\xd8\xc5\x17\x79\x56\x95\x39\xe5\xca\xd7\xa2\x47\x01\x71\x30\x30\x67\x93\xa5\x53\x85\xe7\x96\x9e\x39\x3e\xad\x0e\x3a\xa8\xa6\xca\x89\x37\xc8\xc9\xe7\x93\x6e\x58\x5c\x1a\xf8\x37\x41\x2b\xa2\x06\xb6\xf6\x92\xe5\x15\xc4\xa3\xe9\xb1\xd1\xa2\x82\x9c\x79\x82\xc7\xf8\xa9\x2a\x17\x4a\x90\x0a\x1d\xb5\x10\x1a\xe9\x7b\x32\xa6\xaf\xc1\x08\x25\xea\xe7\x6d\x0e\x36\x21\xbc\x0a\x6a\x9b\x80\x65\x33\x5e\x14\x22\x43\x90\x40\x1d\x96\x6b\xa3\xe7\x4d\xfc\x9d\x8a\x0b\x91\x1a\xe7\x4c\x82\xdb\x51\x58\x6b\x96\xca\x84\x88\xa5\x62\x37\x22\x11\x66\xda\x4d\x32\x06\x89\x01\xd5\x07\xdd\x6f\xd7\x25\x98\xbe\xf3\xbb\x2d\xa9\x56\x4d\x88\x73\x31\xb6\xa2\x8b\x3d\x90\x8b\xc8\x5f\x28\x2c\xec\xe5\x3d\xc9\xce\x35\x5f\xf4\xd5\xc9\x16\x8f\xb4\x78\x96\xc5\x43\x2c\x9e\x5e\xf1\x38\xca\x22\x73\x68\x75\x7f\x40\x0b\xd4\x6d\xe9\x0f\x28\xa1\xe7\x45\x28\x83\x97\x3f\xf5\x97\x7e\x4e\x80\xf6\x70\xbf\xef\x8a\xa1\x95\x52\x64\xce\x0b\x72\x50\x23\xd5\x06\xcc\x51\xab\x9c\x71\x56\xf2\x6c\x0a\xe6\x21\x71\x32\x99\x08\x70\xeb\xf6\x84\x07\xac\x5c\x2d\x33\xfc\xa4\x8e\x66\x54\xe0\xec\xf1\xc7\xd9\xd7\x7f\x3a\xeb\xdb\x19\xbc\xce\x17\xec\x32\x91\x33\xf5\x71\x3c\x83\x5e\x48\x10\xa3\x7a\x0c\x15\x14\x53\x6a\x83\xd9\xeb\x7c\x51\xb2\xfc\x52\x4f\x28\xdb\x4b\x2b\x51\x66\x10\x8c\x25\xbd\xb6\xd5\x17\x28\xde\xd9\x99\x19\x5e\x5d\x38\xf9\xc2\xab\xbe\x4d\xdd\xd5\xa6\xc2\xea\x1c\x68\x4f\x61\x7f\x7b\xb6\x14\x5f\xd4\x1a\xe2\x6e\x96\x1a\xff\x6c\xb6\x14\xbf\xb2\x09\x8f\xc5\xcd\x82\x32\xfd\x00\xcb\xe3\x07\x2e\x1d\xfb\x0b\x5b\xf6\xaf\x61\xa8\xe1\x85\x77\x6b\x7b\xfa\xbf\x41\x12\x56\x13\x90\xec\xeb\x27\xce\xc1\x9e\x52\x09\x47\x5f\x17\x57\x6c\xfb\x6b\x2f\x1c\x03\x00\x39\xe0\x71\xb2\x90\xfa\xce\x53\xce\x78\x21\xfa\xee\x97\xde\xda\x37\xc8\x8d\x0e\xd2\x34\x2e\x53\x22\xe9\xd0\xd6\x39\x8e\xac\xff\xdc\x26\xc0\x46\x51\x78\xb5\x29\x67\x3c\xc6\x68\xc2\x88\x47\x74\xda\x73\x5d\x08\xe2\x45\xc9\xdb\x60\xeb\x6f\x7d\x39\x33\xae\xb8\x60\x9e\xab\xff\x8c\x1e\x0c\x67\x4a\xa0\xfa\xee\x7d\x6a\x14\x2f\xc5\x38\xd7\x80\x31\x1f\x7d\xa3\xab\x1f\xc5\x10\x50\x1c\xdb\x59\x42\x8a\x80\x4c\x1c\xf8\xa8\x0f\x5d\xbf\x43\x5f\xc2\xae\x03\x7e\x30\x60\x07\x42\x8a\x0a\xce\x25\xf9\x62\x3c\x63\xb1\xb8\x48\xc6\x4a\xfa\x24\x15\x8b\x73\x21\xb3\xa8\x62\x3c\x8e\x99\x2c\xc4\x38\x99\x24\x0a\x80\x6d\xae\x03\x4f\x75\x00\xfe\x90\x29\xec\xbb\xfe\x08\xd7\x0b\xdf\xc3\x3c\x3f\x48\x45\xad\xdf\xc7\x89\xe4\xa3\x54\xc4\xb7\x06\x67\x26\xc1\x99\x83\x16\xa8\x8d\x1c\x46\xa4\xd3\x2d\x0c\x38\xba\x8e\xee\xae\xbe\x0c\x97\x05\xcf\xec\x9e\xa6\xf6\x21\xa5\x72\x51\xc4\x4e\x3a\x6a\xd9\xb5\x99\x2a\x51\xba\x32\x70\xc8\x60\xc0\x5e\x65\x72\x51\x0a\x3a\x8f\x94\xa5\x18\x57\xa4\x0a\x29\x95\x3d\x79\x77\xc8\x0e\xf9\x84\x97\xc9\x49\xc3\x65\x3e\x9d\x20\xbc\x5b\x61\x9d\x4f\xb3\xf6\xb5\x96\x4e\xed\xee\x2f\x6d\xd6\xcc\x40\x31\xad\xf7\x18\xa0\x0a\x5c\xfb\x01\x4f\x7e\x7c\x7b\x93\x38\x2d\xab\x7b\x5d\x1d\x63\xa8\x5a\xff\x2d\xcb\x7d\xf5\x5b\xb1\xdc\xd7\x59\xcd\x1e\xb8\x7f\xe1\xd5\x1c\xae\x97\xfb\x9f\xb7\xe6\x07\xd2\xea\x26\xaf\x7d\xfe\xfb\xe8\x3d\xcc\x5e\x00\xf0\x3f\xf3\x47\x96\x4c\x8b\x4a\x9d\x24\xfc\x8c\x93\xba\xb0\x71\xd5\x3f\x55\x5a\xc3\xd3\xba\xd6\x30\x64\x27\x1b\xdb\xc5\x15\x93\x79\x9a\xc4\xcc\xf1\xb8\x5c\x15\x76\x32\x2a\xa7\x23\xde\xd9\xea\x31\xfa\x5f\x7f\xe7\x71\x37\x62\x43\x2a\xdf\x79\xfa\xb4\xc7\xec\xff\xe1\xd7\xee\xea\x9d\xe3\x26\x48\x05\x1b\xca\x0f\x66\x26\xba\x5f\x8a\xd6\xab\xe5\x9c\xae\x7c\x17\x59\xb7\x9c\x06\x2b\x45\xdc\x56\xff\x69\x77\x95\x9e\x74\x13\x32\x7b\xa1\x3f\x6f\xa8\x4a\xfd\x47\xf8\xde\x84\xa1\x9a\x05\xb0\xae\x7e\x57\x21\x7c\x63\xb6\x0a\x65\xef\x7d\x33\x56\x10\x10\xf6\x86\xac\xf5\x6f\xb8\x33\x7c\x51\xf1\x78\xbf\x42\x51\x07\xda\x8e\x03\x53\x1c\x2a\x5d\xc5\xa2\x10\x22\x38\xab\x4a\x2e\xab\x23\x71\x15\x62\x3e\x2d\xc5\xf5\xf1\xe3\xad\xad\xd3\xa6\xa8\x84\x8d\xb1\xdf\x4c\x8b\x9e\x7b\xc8\x86\xe3\xa7\x73\x20\x8e\xf3\x4b\x79\xbc\x73\x7a\x53\xb5\xa4\xde\x55\x7f\x6f\x7b\xcb\x8b\x4b\xd3\xd6\xd9\x93\xd3\xdf\x9a\xe9\xd6\x18\xf6\x4d\xe8\x79\xf7\xe3\xe4\x9a\x7b\xf6\xaa\xf5\x30\xc9\xc7\x0b\xf9\xb7\x04\x0c\xa7\xc3\x35\xd1\x32\xe4\xaf\x4f\x9b\x20\x0d\x15\x0a\x17\xeb\xc2\xf8\xb6\x11\xc6\x1d\x8e\xbd\xeb\x70\xcd\xd6\xe9\x32\x59\x78\x43\x82\xde\xfb\x72\x5f\xad\x04\x99\xda\x37\xd4\x82\xc6\x8e\x48\x58\x77\xe5\xdf\xe5\xb4\xd8\x0c\x29\xe6\xe5\xf9\x3f\x7a\xab\x58\x65\x07\xcb\xee\x5d\x29\x69\x9f\xe1\x36\xbb\x59\xaa\x7f\x0b\xb5\xe4\x36\xf3\x7c\xb7\x93\x65\x1b\xac\x7f\xbe\xb9\x6e\xb2\x30\xbe\xaf\xd9\x26\x21\xf1\x2a\x15\x17\x70\x3f\x5a\x37\x4a\x0f\x6b\x0c\xfd\x5b\x6b\x92\x56\xc1\xad\x6a\x9b\x26\x18\xd4\xbf\xbd\x58\x6f\x6f\xbf\x4a\x98\x2f\xe9\xb9\x4d\xc1\x6a\x6b\xdb\x40\xf6\xf7\x52\x2c\xe2\x7c\x13\x2c\x20\x42\xe2\x3b\xef\x1a\xe1\x3c\xa0\x93\xb4\xfa\xcc\x12\xc9\xce\xc5\xf5\x28\xe7\x65\xcc\x80\x14\x22\xb6\x93\xe1\xd2\x26\x0c\x0c\xbf\xac\xeb\xb6\x79\x8f\x5b\xe7\x3b\xbe\x65\xdc\xf9\x7b\xf0\x32\x08\x8e\x27\x5a\x55\x1e\x2f\x4a\xa5\x26\xc3\xcf\x3b\xdc\x54\xca\xe4\x17\xa1\x44\xd8\x9c\xa7\xa9\x11\x6c\x2b\x2e\x4d\x0f\x93\x5f\xc4\xa1\x6a\xd0\x78\x8f\xf2\xa4\xb8\x62\xde\x35\xca\x24\xcf\x2a\x8c\x94\x5d\x7b\xf9\x29\xae\x8e\xf2\x03\x31\xef\x6c\x3f\x5e\x3f\x4a\x6c\xdb\x10\x52\x5e\x4e\xc5\x4d\x86\xf0\x5a\x35\x68\x1c\xc2\xb7\xc5\x15\xdb\xde\xbe\xe9\x18\x9e\xde\x7d\x0c\x6d\xd3\xb0\xf4\x36\x6b\xf9\x74\x3c\x2e\xae\xd8\x77\xff\x44\xd3\xb1\x72\x28\xed\xd3\xf2\x4d\x71\xc5\x76\xfe\x99\xa6\x65\xc5\x19\x6f\xf5\x3a\xf1\x83\xc6\xff\x83\x67\x66\x8d\xd1\x2c\x5f\x32\x3b\x3b\xff\xc0\xb9\x71\x3c\x43\x1d\xb2\xdf\x03\x99\x7c\xc0\x9a\x02\xb7\x01\x3c\x59\xa4\x29\xbc\x5b\xd7\xb7\x19\xf3\xa9\xed\x39\x6e\x6d\x3a\x41\xd2\xd4\xfd\x71\x9e\xb9\x5d\xcb\x05\x56\x72\xc6\xa2\xab\xb5\x38\xe1\x04\x7b\x0f\x1a\x21\x91\x07\xe7\xb7\x41\x31\xfa\xb3\x6e\x3e\x71\x95\x87\x64\x9c\x67\x86\xff\x7d\x0d\xc2\x6b\xb4\x73\x73\xad\x4d\x64\xf1\xea\xf1\x51\xa5\x5b\x8c\xce\x19\x87\x8b\xe9\xb7\x37\x1a\x9d\x86\x75\x8b\xe1\x25\x2d\x63\xc3\xe5\xda\xca\xf5\x1e\x4a\x6e\x34\xe2\x07\xec\x4f\xec\xe1\x70\x92\x94\xb2\xda\x84\x37\x60\x1f\x5f\xbb\x4c\xb7\xbf\xfd\x42\xc8\x2a\x9d\x7f\x31\x6f\xc4\xf6\x0d\x7c\xba\x15\xba\x3b\x5b\x5f\x08\xdd\xfa\xc2\xd7\xd8\x86\xe2\xef\x06\xc8\xd6\x18\xe1\x24\x70\x2e\x43\x75\x78\x7d\x17\x2d\xac\xdf\x12\xf5\x97\x9e\xfa\xad\x37\x12\x15\xfc\x13\xba\x56\x91\x39\x5a\xab\x6b\x95\x29\x5c\xed\x61\xe5\xd6\xa9\x37\xf3\x9d\x6d\xd0\xe6\xd0\xed\xb4\xdd\x5f\x0b\x0e\x00\xae\xc3\x96\x7f\x4f\xe5\xd4\xa8\xb5\x59\xe2\x4f\x54\x83\xe3\x97\xd3\x09\x33\xec\xd6\x1c\x3c\xc3\xee\xcd\x87\x1a\x1a\x06\xd2\x6a\x64\xa8\x6a\x0b\x4a\x3f\xaa\xe3\xd6\x41\x0d\x25\x2a\x2e\x8a\x54\x84\x48\x39\x9f\x6a\x68\x19\x68\xab\xd1\xa2\xaa\x06\x3a\x09\x77\xca\x38\x8a\xc8\x50\x99\xa3\x7e\xd8\xb3\xe1\x8b\x1a\x37\x37\x7e\x0d\x87\x6d\x36\x65\xdb\x4c\x97\xd8\x6e\x9c\x3a\xf5\x66\x4b\x86\x56\x07\x45\x1f\x94\x14\x32\x1d\xaa\x1f\xa6\x02\x7d\xf1\xea\x79\x5c\x8d\x82\xd6\xe1\x6a\xbf\xb9\xde\xf2\x3d\xba\x99\xd2\x10\x0f\x7c\xd1\xa6\x5a\x15\x9a\xaf\x63\x05\xfa\xe2\xd5\x5b\xbe\xba\xbc\xe6\xf7\xeb\x36\xa7\x4e\x73\xf7\x14\x9c\x9b\x84\xe4\x1d\x3d\xd3\xd0\x76\xcb\xfd\x65\x96\xa6\x57\xea\xac\x0d\x2c\x27\x0e\xc6\x1f\x8d\x0c\x4a\x9f\x34\xe7\xe0\x4f\x35\xc7\xf4\x97\x9e\x4a\xfc\x09\x8e\x04\x4b\x62\x86\x5b\x4d\x71\x37\xe0\x8d\x07\x0f\xd6\x09\xe0\x29\x0b\x9e\xad\x11\xc1\xd3\x32\x98\xe3\x44\xa5\x77\xd4\x46\x2f\x2a\x35\x22\x13\xd4\xb5\xe7\xe3\x66\xe3\x9a\x6b\x35\x70\xd7\x13\x07\xf7\x8a\xba\x96\x29\xb7\x44\xdc\xc1\xab\x7b\x23\xf7\x3e\x7b\x35\x76\xdb\x90\xc6\x8e\xef\x9e\xf5\xf8\xb3\xdb\xaf\xf5\x90\x7b\x6e\x5c\xe9\xdc\xeb\x28\x36\x74\x7d\xfe\xcc\x16\xed\xf9\xc1\x59\x0a\x50\x67\xdd\xa5\xee\x7f\x20\xae\x00\x9c\x96\x52\x0f\x1e\xb8\xe1\x56\x6b\xe0\x14\xe3\x22\xa5\x9b\x00\x13\xa9\xdd\xa9\x91\x2b\xa6\x05\xdd\xfb\xfc\xbd\xd2\x71\x25\xac\x6d\xb0\x76\x63\xaf\xd7\x8a\x7b\x8e\xe4\x77\x3e\x9b\x42\xfd\x30\xeb\x38\x10\x85\x2a\x86\xbd\x5a\x0c\x54\x81\x89\x95\x0c\x43\xf6\x55\xeb\x2e\xdb\x28\x22\x02\xae\x70\xeb\xf4\x9a\x5b\x84\x9e\x8a\xf4\x53\x49\x8f\xa1\x71\x46\x72\xa2\x40\xdf\x71\x79\x21\x5e\x60\x7a\x1a\xae\xef\x9e\x51\x5c\xcd\xda\xb9\x8d\xab\x24\xae\x9e\xff\x84\xbb\xbd\xff\x70\xb7\x0d\x5e\x9d\xb8\xd5\xff\xeb\xbb\x74\xfe\xdb\xf9\x71\x6a\xa1\xbd\x86\x1f\xe7\x3f\xce\x3d\xf3\x37\xf0\xb1\x0c\xbc\xec\xe8\x59\x09\xfc\xec\x46\xc2\x48\x5e\x17\x1f\x2b\x97\xd7\x77\xe0\xcb\x72\x35\x50\xda\x54\x12\x09\x14\x6b\x80\xe9\x3c\x1b\xde\xcc\x39\x30\x78\x04\x63\x25\x9e\xa9\xd6\x18\xc6\x8f\xee\x66\x72\xb3\x4e\xa9\x13\x31\x99\xa0\xc5\x7f\x63\x5f\xd4\xf4\xff\xf9\x3f\xff\xaf\xff\xf7\xff\xfe\x3f\x18\xe9\xd7\x8c\xeb\xc6\x6e\x28\x61\xb5\xb2\x15\x83\x28\x4e\x1a\xc2\x38\x36\x2f\x70\x33\x62\xa3\x6b\xed\x97\xd6\x67\x3f\x08\x26\x17\x7a\xe5\x81\xf7\x65\x32\x9d\x61\x4a\x39\xd7\x39\x73\x74\x0d\x32\xe2\x5a\x41\x94\xa2\xe0\x4a\xe8\x6a\xe1\x01\x5e\x9f\xe0\x3e\xd7\xb8\xe5\x9d\x35\xd0\x69\x4d\x12\xd1\x26\xc7\x8a\x94\x8f\x45\xcc\xf8\xa4\x12\xa5\xef\x5e\xe1\x80\x36\x97\x90\x2b\x24\x61\x5d\xd6\xb4\xec\xed\x2b\xe5\xce\x12\x6e\xaf\x94\x48\x59\x14\x50\xae\xd4\x14\x72\xe1\xc8\x27\x2c\xa9\xa4\xb9\xe6\x2f\x5d\xfc\x9d\x5b\xe9\x15\x64\x51\xf2\xe2\xc3\xc1\x6b\x35\x5b\x69\x92\x9d\xab\x7f\x75\x24\x69\xe7\x25\x77\x9c\x26\xe3\x73\xc3\x39\x0a\x59\x4a\xca\xd2\x63\x3c\x63\x67\xfc\xcc\x4c\xae\x66\x36\x90\x3c\x5c\x36\x0a\x1e\x40\x71\x06\x6a\xcb\x5a\xf2\x18\x34\xd0\xa6\x6d\x8b\x9d\xc1\x75\xea\x99\x42\x51\xfc\xcf\x22\xb9\xe0\xa9\xb0\x69\xc1\x62\x90\xc2\x34\x08\x62\x61\x17\x03\x09\x17\x7c\x75\x01\x0c\xd7\x88\x4a\xd0\x92\xbe\xab\x44\x2e\x5c\x17\x37\x88\xdb\x80\xab\x46\x62\x92\x6b\x7f\x9b\x06\xb6\x72\xee\xee\x6f\xcc\x58\xa8\xd6\x05\xd8\xaa\x3f\x3b\xc7\x4d\x61\xbc\xb5\x67\x6e\x29\xa4\xa8\xc8\xad\x77\x8e\xbe\xb8\x35\xa2\xb7\x46\x66\x6f\x08\x41\xbe\xca\xdd\xd8\xbc\x3a\x81\x5b\x30\xbd\x0e\xea\x08\x03\xf7\x10\x2e\x1c\x75\x44\x74\x6b\xc5\xbf\xff\x13\x1e\xfc\x86\x2e\xad\xff\xc8\x78\xdf\x93\x54\x5c\x0d\x59\xb4\xcd\xb6\x99\x9f\xd2\xf5\x27\x31\x3a\x4f\x4c\x10\xcd\xc3\x71\x99\xa7\x29\x3e\x50\x82\xb5\x92\xe7\xd5\xb6\x17\xc7\xe0\xbc\x36\xcf\x55\x5f\x8b\x39\x93\xba\x7a\xdf\xdc\x1e\x11\xa0\xff\xaa\xe5\x8e\x0d\x5e\x3e\x9f\xb8\x2f\x9f\xd1\x83\xf6\x27\x81\xc1\x80\xc5\x09\x4f\xf3\x29\x10\x5a\x6d\x95\xe0\x5c\x6e\x2b\x10\x60\x48\xa7\x7f\x9b\x27\x8e\x06\xdb\x96\x8b\x24\x16\xa5\x6c\xb2\x6d\xc1\x2f\x8d\x0f\xba\xdb\x5f\xd7\xc6\x85\x06\x28\x80\xd9\x3a\xe6\xd5\x04\xbe\x1b\xb4\xd7\x81\x24\x6e\x02\xe2\xa4\xf9\xcd\xe4\x25\x50\x92\xdc\x05\xd7\x7f\x3a\xf1\x9a\x7d\xf1\xbc\x89\x9a\xca\xce\xb5\x39\x16\x38\x97\xe5\xa6\x46\xad\xcd\xd2\xcb\xf1\x00\xce\x3d\x25\x22\xd4\x70\x9d\xeb\xc2\xdf\x22\x11\x17\xde\x51\x99\x91\x7b\x77\x2e\x58\x76\xdf\x31\x95\x3c\x3e\xf8\xcf\x7d\xc1\x6f\x72\x5f\xf0\x6f\x14\x05\xea\x9e\xaf\x0c\x5e\xea\xf8\x3f\x33\xc1\xaa\xbc\xc0\xec\x34\x18\x02\x46\x2f\x00\xff\xd8\xa2\x85\xb7\xaf\x9a\xdf\x55\x33\xf2\x16\x05\x2a\x48\x5e\xd1\x7f\xf4\xa4\x7b\xd0\x93\x28\x6c\xdb\x0d\x54\x20\x4f\x01\xb2\xa6\x2c\x4a\x11\xd2\x1b\xb4\xe7\x5b\xaf\xc3\xb5\xe1\x27\xb3\xad\x6b\x2b\x96\x9a\xa7\xbd\x02\xb4\x29\xb2\x58\xb7\x20\x0d\x6b\x8b\x6d\xa1\x86\x85\xb2\x56\xf3\xec\x0d\xed\xa9\x0f\x0b\x3e\x4e\xb2\xe9\xee\xaf\xb0\x83\x59\x15\x44\x62\xb9\x19\x17\xd8\x53\x0c\xb3\xbc\xea\xb8\x0a\x94\x67\x20\xee\x99\xe4\xb8\x6a\x41\xa8\x15\xec\x8d\x51\x60\xde\x50\x2b\xa0\x66\x4b\xc3\xde\xfa\xa3\x0a\x9f\xc3\xa9\x38\x7c\x0a\xb7\xb5\x5b\xa0\xac\x7e\x06\x0f\x21\xdf\x87\x92\x72\x03\x9d\xc1\xc7\x62\xf9\x2b\xe9\x3f\x40\x73\xf8\x2a\x20\xa8\xa3\x40\x10\x9f\x7d\x19\xfd\x81\x38\xe6\x3f\xfa\xc3\x7f\xf4\x87\x7f\xa8\xfe\x10\x5c\xfd\x71\x92\x7f\x71\x0e\xa1\xf7\x30\xa6\x5c\x1c\x03\x1b\xf0\xb4\x21\xaa\x9c\xbf\x7c\xbe\x8c\x5a\x41\x6b\xc5\x55\x2b\xa8\xc8\x55\x2b\xda\xb7\x6e\x25\x84\x17\x52\xbc\xca\x66\x3c\x1b\x8b\xf8\x15\xde\x4c\xef\x02\x9b\xe7\x13\x76\x99\x64\x71\x7e\x89\xaf\xcc\x26\xe1\x73\xc4\x9e\x23\xb0\xfe\x42\x8a\xd7\xfc\x3a\x5f\x54\xd4\x6e\x68\xcb\xb1\xe4\xd9\x49\x86\xf4\x7c\xc8\x66\x55\x55\xc8\xe1\x60\x30\x4d\xaa\xd9\x62\xd4\x1f\xe7\xf3\xc1\x84\x8f\xc5\x28\xcf\xcf\x07\x80\xce\x20\x91\x72\x21\xe4\x60\xfb\xc9\xd6\x77\xdf\xfd\x0e\x7e\x8c\xf3\xb9\x92\x65\x9b\x4f\x9e\x6c\x6d\x6d\x3f\xfe\xf6\xbb\x1d\x05\x09\xa0\x7d\x5f\xf0\x92\xcf\xd9\xaf\x7a\xb3\xf9\xcc\x26\x6a\xf6\x14\xe1\x6b\xb4\x34\x1b\x92\x42\xeb\x42\x64\xd5\x0b\x9e\xa6\x23\x3e\x3e\xef\x4c\x32\x67\x2f\x2a\xc5\x84\xed\xda\x01\xc0\x56\x96\xa1\x99\x41\x8d\x42\x76\x93\xeb\x74\x9d\x1c\xbf\x7d\xf2\x21\x61\xbb\x6c\x92\x41\xcb\xcf\x9e\x9d\x82\x01\x6e\x31\x68\x82\x03\x75\x3b\x5b\x3d\x17\x64\xb7\x0f\x77\xf3\x1d\x64\x98\x1e\xe3\xe5\x74\x01\x61\x16\xb1\x83\xcf\x3d\x76\x0c\x5b\xc4\x67\x3b\xeb\xbc\x2c\xf9\x35\xed\x3f\x7f\xc9\x53\xab\x07\xf6\x07\xb5\x4f\xae\xa2\x97\x54\xa2\x54\x8c\x7b\x94\xef\xa9\x6a\xb6\x55\xf0\xc1\x6d\xb3\xc8\xe8\x05\x4e\xc4\xfb\x6d\xcd\xdb\xeb\xb8\x90\xb2\x3c\xd3\x5f\x0f\x8b\x52\xf0\xd8\x02\xa8\x7d\x82\x76\x6d\xb3\xfd\xb1\xca\x5f\xe4\x99\x5c\xcc\x55\x7d\xe8\xa6\xc3\xcb\xd2\xbf\x3b\xab\xd1\x01\xab\x7c\xfa\x14\x12\xc1\x94\xb7\x0f\xc2\x54\xa9\xa1\xd9\x69\x9a\x98\xd7\xc9\x79\x9d\x44\xe1\x97\xe5\x03\x6c\xc1\x1e\x06\x98\x4c\x58\x07\x40\xf4\x13\x69\xd1\xeb\x7a\x03\x77\x3a\x82\xaf\x84\x65\x6b\x7f\x21\x4d\xd4\x6f\xa7\x3b\x92\x19\x87\xd7\xf3\x51\x9e\xd2\x06\x6f\x84\xc6\xc9\x86\xd2\x1f\xf0\x5b\x1f\x00\x55\x10\x14\x92\xbd\x03\xd1\x8d\xb0\x0c\x7a\x88\xb9\x22\x0b\x7e\x58\x85\x59\x03\xc9\x11\xaf\x6a\x56\xe6\x97\x2c\x13\x97\xb0\x87\x43\xca\x8e\xce\xc9\xc6\x7e\x76\xc1\xd3\x24\x66\xbc\xaa\xc4\xbc\x80\x9b\x74\x89\xbc\x96\xe5\xd9\xa6\x1e\xa6\x09\x59\xd9\x3f\x39\xc9\xf6\x9d\x18\xa5\x23\x61\xd8\xa3\x07\x2d\x80\x9a\x0c\x37\x21\xc9\xe6\x0b\xa9\xb7\x07\x76\x1c\x8c\xf8\xb4\xd3\x65\x73\x51\xcd\xf2\xb8\x8f\xd9\xe5\x97\x0e\x4b\x6b\x6e\x34\x18\x73\x3a\xdc\x25\xaa\xf5\xb9\x94\xc9\x34\x53\x4c\x67\x05\x49\xc5\xcb\xa9\xa8\x8c\x38\x51\x3b\x69\x47\xc9\xb7\x84\xed\xb2\xed\x67\x2c\x61\x7f\xb4\xc2\xa3\x9f\x8a\x6c\x5a\xcd\x9e\xb1\xe4\xd1\xa3\x20\x8f\xbf\xcc\x17\xe5\x58\x29\xba\xa6\xf2\x71\x72\xea\xe4\xed\x37\x70\xcf\xc5\xb5\x9a\x47\xac\xef\x25\xec\x57\x4c\x41\x88\x16\x65\x5e\xe5\x8a\x41\xfa\x33\x2e\xdf\x5d\x66\xa4\x0f\x5f\xf7\xc7\x3c\x4d\x3b\xd8\xb6\xa7\x40\x75\xbb\xbe\xef\x2a\x8e\xe6\xf8\x5c\x5c\x9f\xb2\x5d\xea\x04\x7e\x3d\xb3\xb5\x6a\x8e\xaa\x1a\x4b\xe2\x26\x84\xf1\x4c\x5f\x76\x3a\xeb\x5f\x53\x94\x84\x6b\x35\x4b\x64\x20\x5a\x9d\x65\xfb\x2b\x7b\x61\xac\x69\xc6\x69\x9e\x69\x55\xbb\xc7\x12\xf9\x37\xc5\x4f\xfa\xd1\xe9\x73\xb8\xcb\xea\x3d\xf0\xcf\xc9\x85\xc8\xd8\x99\xea\xa6\xef\xdb\x91\x9f\xf5\xcc\xca\xcc\x88\x91\x74\xc4\x53\x20\x30\x04\x43\x4d\x52\x78\xe9\xf3\x77\xc0\x87\x9f\xad\x75\x7a\x23\x64\xac\xad\x1f\x0b\x10\xf6\x67\xa6\xb3\x10\xe4\x13\x0f\x7e\xb8\x87\x1a\xb6\x9a\x8a\x0a\x46\x4f\xed\x3a\xd6\xb0\x68\xce\x8b\x1f\xdd\x7d\x54\xa1\x0d\x27\x20\xd3\x16\x4b\xb0\x49\xb8\xcd\x41\x6b\x25\x1a\xfe\x3f\xf2\xbe\x76\xbb\x8d\x1b\x59\xf0\x55\x60\xcf\x5c\x93\x4c\x28\x52\xf6\x6c\xee\xec\xa5\xe3\x64\x1c\x3b\x9e\x78\x63\xc5\x3e\xb6\xbc\x1e\x1f\x49\xc7\x6a\xb2\x41\x11\xa3\x66\x83\xd3\xe8\x96\xc4\xc4\x7a\x86\xfd\xbf\xbf\xf6\x31\xf6\x79\xf6\x05\xf6\x15\xf6\xa0\xaa\x00\x14\xd0\x4d\x8a\x56\x9c\x99\xdc\xb3\xf9\x11\x8b\x0d\xa0\xf0\x55\x28\x54\x15\xea\x23\x5e\x43\x57\xf9\x5b\xac\xe0\x7e\x4e\x70\x94\xd1\x56\xe2\xdd\x6d\xec\xc9\xf1\xe7\x82\xe2\x44\x96\x4d\x51\xe0\xfd\x68\x51\xd1\x0d\x79\xe0\xf7\x71\xb4\xcc\x56\x6c\x26\xe1\x0c\xcd\xd2\x61\xce\xe8\x36\xb7\x82\xee\xf7\xd9\x6c\xc1\x2e\xee\x78\x5a\xe3\x31\x70\xf7\x96\x61\x5c\x66\xab\x00\x12\x5f\xed\x29\x48\xb3\xd1\x14\x69\x79\x21\xf1\xf8\x18\xcf\x1f\x37\x56\xf0\xd0\xa5\x74\xbd\xdb\x79\x1d\xe1\xd6\xd3\x19\x88\x56\xb3\x83\xc9\xc0\x36\x16\x75\x03\xe2\xbd\x5b\xc8\x52\xac\x75\xd3\xab\x90\x67\xb5\x1b\x6f\x57\x6d\xa9\x2f\xec\xdf\x1e\x81\x8c\x5e\xda\x71\xaf\x2d\x89\xcb\xf2\xdc\x0e\x85\xaa\xc9\xdc\x1e\xf2\x7a\x21\x01\x9e\xb1\x32\x70\x25\x4b\x4b\x10\x57\x99\x31\x23\xf1\x4e\x8a\x4b\x7a\x94\x34\x0b\x7d\x29\xbe\x98\xea\x7a\xf1\x85\x30\xaa\x9c\x49\x71\xc9\x0a\xd5\xb2\x29\xea\xac\x94\xba\x31\xc5\x1a\x80\x65\xa5\x5a\x5a\x89\xc9\x05\x8e\xb6\x1d\x59\x29\x49\x37\xf5\x48\x1c\x2e\x94\x09\xab\x58\x67\xe7\x56\xac\x10\xab\x4a\x5e\x28\xdd\x18\x01\x9e\xf3\x80\xc2\x86\x60\xe5\x22\x03\x7a\xcf\x4a\xe0\xeb\x52\x56\x67\x18\xb8\x79\x89\xd6\x0c\xaa\x36\x62\x2a\x4d\x2d\xce\x1a\x69\x4c\x10\x87\x20\x1c\x23\x00\x03\x82\xaf\xca\xb3\x91\x78\x5e\xd2\x2b\x7f\xdd\x54\x30\x1d\xbb\x46\xf6\x88\x18\x89\x6b\x46\xad\x9b\x5a\x15\x0a\x54\x6e\xe0\x48\xff\x05\x72\x7c\x07\x4d\x51\x2b\xc0\x39\xbb\x02\x60\x89\x04\xf6\x47\x32\x33\x6b\x8c\xde\x6d\x89\x69\xa9\x2f\x89\x47\x57\xb5\x91\xc5\x1c\x9c\xff\xad\xa8\x01\x80\x72\x65\x87\x05\x61\xb8\x2f\xa4\x33\x5f\x2a\x67\x72\xe5\x05\xb9\xa6\xb4\x2b\xa4\xe7\xb0\x38\x0e\xc3\x61\xea\xa5\xbc\xaa\xdd\x07\xdc\x3e\x6d\xe7\xa0\x96\x2b\xa7\x59\xaa\x01\x3f\xdb\xc4\xc5\x51\x0b\x0b\x12\xff\xe7\x51\x25\x33\x84\x70\x24\x28\x43\xbb\x53\x98\xc0\xa1\x8f\xaa\xca\x49\xc6\x28\x25\x21\x03\xb0\x1a\x69\x77\x66\x87\x8b\xff\xfb\x2d\x3a\x4b\x09\x61\x06\x27\xd0\x48\x0a\xef\x49\xef\xe4\x46\x64\x45\x81\xc8\xa3\x4a\x71\x6a\xa7\x8e\xee\x9d\xee\x33\x00\xb3\x45\x76\xa0\xa7\x80\xb2\xa2\x92\x99\xd1\x25\xb0\x0e\x80\x3a\xa3\x8d\xd4\x14\x90\x91\x8f\xcf\xf4\x6d\x17\x43\x98\x36\xd1\x12\x58\xee\x47\xf8\xcf\xc7\x8f\xe2\x97\x6b\x38\xe4\xb0\x2e\x8f\xf0\x1f\xf7\xf5\x18\x2c\x4b\x02\xa1\x86\xc4\xe7\xcf\x74\xf5\xa3\x5c\xf7\xed\x95\x9a\xd0\x32\xba\xb0\x01\xc4\xb7\xf0\x0f\x5e\xaf\x13\xe8\x2b\x5c\xae\xd7\x96\x98\x3d\xb3\x82\x7d\x36\x5b\x40\x2b\x3d\xa7\xf9\xa2\x44\x5c\x28\x13\xce\x58\xad\x2d\x79\x93\x55\x1d\x8c\x2d\xb2\x9a\xfa\x22\x9d\x06\xd1\xb8\xa9\xe5\x07\xa1\xb1\x1d\xba\x23\xe1\x16\xee\x8f\x72\x6d\x5e\xc9\x32\x47\xb5\xde\x26\x5a\x6e\x6b\xaf\xb0\x96\x6d\x20\x1e\x89\x23\xc7\x98\x78\xa6\xc4\xce\xe4\x47\x9c\xa7\xfd\xd3\x2f\x81\xbd\x07\x58\x19\x5b\x6e\x5f\x1a\x20\x13\x77\x14\x71\x24\xc9\x30\x8f\x08\x98\x25\xcc\xac\x25\x63\x4e\x3a\x46\x1a\x33\x2b\x42\x16\x46\xb2\x07\x63\xd6\xff\xaa\x31\x0b\x37\xdc\xc1\xc3\x58\x39\xeb\x56\x42\xf9\x35\x99\x31\x7c\x12\x8f\x18\x6a\xb8\x45\xa1\xb1\xb7\x26\x6e\xa7\x9d\xce\x8b\x7e\x9f\xb0\xc9\x03\x1c\xcb\x45\xee\x23\x17\xb9\xa9\xc9\x06\xa6\x32\xda\xb8\x9f\x68\x28\x8f\x36\x42\x41\x6e\xd3\x35\xe5\x73\x3b\xda\xd2\xc4\xee\x43\x72\x02\xe2\x1e\x07\xad\xf5\x77\xcc\x62\x57\x17\x1d\xe0\x4a\x0e\x07\x8f\x88\x2a\xb3\xa2\x58\x0f\x21\x4a\x0b\x5d\xe9\x46\x5c\x2e\xd4\x6c\x21\x72\x95\x43\xfc\x96\xd5\x4a\x66\x95\x3b\x19\x59\xb9\x76\x87\x10\x8f\x93\x3b\x07\xe9\x0a\xb7\x71\x31\x5e\xd4\x68\xc8\xac\xf2\xd6\x85\xa0\x0a\x34\x81\x88\x1d\xe6\xf0\x90\x81\x38\x2e\x39\x61\xb1\x5c\x3b\x32\x1e\x43\x50\x5c\xe2\xff\x4d\x2c\x53\xc3\xa7\x23\xfb\xff\x13\x71\xe7\x91\xb0\xe7\x56\x7c\x1b\x7d\x25\x2e\x6e\xc4\xbe\xb9\xde\x3a\xd8\xce\xe7\x98\x94\x23\xa2\xe6\xa4\x43\xd7\xe5\xf7\x57\xaa\x96\x79\x3c\x80\x94\xf4\x27\x1e\x9b\x62\x13\xeb\xe6\x16\x81\xb1\xf6\x6e\xb2\x1e\x89\x5d\x8f\x13\xff\xd7\x68\xaa\xca\x1c\xa8\x13\x59\xdb\x07\xf3\x0c\x55\x4e\x44\x5d\x35\xe1\x6d\x00\xd1\x60\x92\x2e\x65\x0f\xbf\xf7\xdc\x72\x32\xb7\x3c\x48\x2e\x9c\x56\x77\x89\x83\xd2\xda\x57\xaa\xee\xa8\x7c\x05\x86\xca\x58\x97\x50\x9e\xb1\x8d\xd7\x9d\x6b\xfe\x93\xe3\x18\xdc\x1a\x96\x10\x4c\x19\x16\xdd\xb3\x17\x2e\x61\x59\xba\x0d\x8e\xd4\x3c\x89\xe9\x51\xba\x2d\x1e\xa4\xdf\x9a\x41\x4c\xca\xd0\xdf\x76\xc3\x55\x19\x8f\x20\xed\x0e\x21\xd1\x05\x62\x8f\x63\x60\xfe\x3b\x38\x78\x7e\x47\xfa\xde\xc5\x23\x3f\x0a\x2e\x6f\x5a\x5a\x79\xa7\x53\x56\x71\xca\x8b\x87\x01\xd0\x22\x33\xaf\xf0\x16\xef\x9f\x87\xcb\xa8\x3d\x50\x5f\xfb\x27\xbc\xdd\xfb\xec\x8a\xde\x54\xdb\x43\x22\x1e\x81\xd7\xe3\x03\x86\x3b\xc2\xbc\x90\xd9\x05\x6e\x43\x32\x76\xdf\x74\x60\x85\xb0\x3b\xfe\x27\x49\x91\xaa\x7c\x68\x49\x9c\xaa\xe5\x12\x6c\x8e\xe5\xa5\xe8\x03\xfa\xd9\xd1\x38\xca\x69\xd7\xc4\x0d\xfe\xde\x3d\xd1\xbf\xe3\xe6\xfd\xf1\x63\xe8\x9a\x0b\xf6\xe3\xb1\xe5\xb3\x8c\x2e\xe4\xa8\xd0\x67\xfd\x9e\x83\xd8\x43\x15\x80\x7f\x6e\xe3\xeb\x6f\xf7\x63\xdb\xc9\xfc\xc4\xb3\xd9\x71\x3a\x6f\x38\x41\x1e\x5f\x39\x90\x1b\x4e\x68\x68\xe3\x6f\x1d\x7f\x8f\xe3\xbd\x0f\xf8\xc4\x16\xcf\x2d\x9d\xdd\x8c\xb0\x76\xd1\xd2\xb9\xcd\xd0\x45\x2e\xfa\x76\x70\xb8\x17\xdd\x4b\x5b\x20\x84\x5f\xb7\xb2\x76\xa9\xe0\x05\x75\xdb\x2c\xba\x27\xb1\x11\xdd\x3a\xe6\xb4\xc8\x20\xd8\x19\x66\x7d\xc9\x59\x2a\x08\x61\xea\xac\x46\x1f\x06\x3f\xc7\xd5\x1a\x8c\x09\x91\x11\xcd\x4c\xcd\xab\x03\xee\x3e\xdc\xb4\x24\x4d\x49\x3d\xfc\xd3\xd1\xad\x7d\xba\xfe\x55\xc8\xd7\x56\x1b\xb8\xd9\xc7\x3a\xaf\x4d\xaf\xd8\x2f\xb4\x76\xe9\x53\x6e\x63\x57\x02\xcd\x3f\x5f\x56\x9a\x0f\x99\xb1\x92\xc7\xe1\x42\x19\xe2\x16\xd4\xcf\x32\xdf\x01\x56\x67\xbb\x08\x32\xb9\xfa\xec\x3c\xe1\xa8\x3e\x87\xb4\x93\x75\xcc\x36\xf3\x9a\x20\xe8\xfe\xb5\xd2\xcd\x0a\x2c\x4d\xae\x5c\xe5\xd1\xb8\xbb\x38\x4a\x95\x93\xdc\xc0\xc3\x0d\xdc\xd5\xb0\x8b\x03\x08\x29\x76\x28\x05\x0e\x2f\xec\x81\xa4\x61\x6f\x9a\x0b\xcb\x6f\x32\x05\x35\xfd\x8e\x14\xd4\x7a\xfa\xf7\x98\x61\xe3\xf7\xb4\x2d\x04\xb5\x1c\xbb\x9e\x53\x0e\x4d\x4f\xff\x7e\x74\x7e\xc2\x78\x18\xdf\x3d\xa9\xd0\x01\xeb\x9d\xd5\x00\xf3\x86\xea\xe5\xea\x02\xed\x71\x00\xdb\x9f\x65\xb3\x5a\x57\xeb\x49\x18\x1b\xff\xbc\x81\x3b\x0c\xfa\x47\xec\xd8\xa9\xd8\x0e\x17\x52\x9c\x7e\x9d\xec\xc2\x37\xa7\x51\x36\xad\x32\x3b\x03\xf5\x15\xe9\xa6\x18\xc5\xf2\xb5\x50\xb1\xd0\xe7\x90\xbe\xa1\xc0\x52\x5f\x3f\x79\xf3\x86\x7f\x1d\xa0\xd6\xc1\x0a\xd2\x23\xf1\x42\x9d\xcb\xe0\xa5\x13\x20\x03\xb8\x00\x7d\xd8\x39\x46\x05\x83\xb2\x34\x56\x2c\xb3\xd9\x42\x95\xe8\x24\x07\x03\x06\x07\xb4\x85\x14\x4b\x6d\xb1\xbd\x3c\xf3\x6a\xb6\xa6\x74\x9f\xec\x5c\x42\x17\x44\x96\xd5\x92\xe9\x93\x9e\xe8\xd2\xa8\x9c\xa8\xb5\xbc\xca\x96\xab\x42\xe2\x4b\xff\x48\x3c\x36\x40\xfd\xd1\xf8\xc2\xe9\x1a\x75\x45\xfa\x47\x32\x1d\x38\xd4\xb9\x7e\xa1\x4c\xed\x35\x90\xa7\xaa\xc4\xfc\x5d\xa0\x3c\xd5\x67\x67\x85\xcc\xc1\xb0\x6a\x99\xd5\x6a\x66\xe5\x31\x31\x45\xd3\xbf\x8e\x09\x87\x81\x85\xac\x77\x5d\xeb\xe2\x55\x70\xe4\x56\x03\x92\x1b\xaa\x2b\xed\xa6\xb9\xe4\x87\x77\x00\xd4\xf7\x57\x19\x28\xe8\x3e\x2c\xf4\xe5\x07\xda\x17\xbc\xd7\x48\xc1\x69\xc0\x8f\x6d\xe5\x43\xe7\x94\x60\x71\xd8\x64\xc5\xc6\xed\x22\xf5\xe7\x52\x66\xa5\xf1\x89\xcc\x96\xea\x0a\x15\x9a\x59\x3d\x5b\x84\xd1\x18\x91\xcd\x2a\x6d\x0c\x4b\xc8\x86\x2a\x16\xf1\x05\xae\x6f\xd0\x46\x41\x12\xf3\x78\xb2\xa9\x55\x57\x38\x7d\x1f\x80\x26\xfd\xd1\x27\xc8\x75\x6f\x51\x11\xa1\xeb\x27\xe0\x86\xa2\xd5\x2c\xd5\x53\x25\x2d\x9c\x48\x37\x43\xba\x15\xf1\xe3\x1f\xea\x85\x32\xfe\xe9\x09\x7e\x89\x47\xad\x1e\xf0\x29\x09\x9f\x70\x52\x60\x1f\x3f\x8a\x08\x06\xb2\xdb\x65\x5e\x48\xbc\xb9\x2d\x38\x78\x3b\xe1\x1f\xf1\x3a\xef\xbe\x5b\xfa\x50\x7d\x30\x00\xee\x98\xbe\x33\x35\xfa\x42\x37\x05\xea\x0a\xa7\x52\x38\xee\x76\x28\x72\x69\x65\x70\x30\xbe\x29\x49\x18\x74\xa2\x3f\xcd\x6b\x84\xa7\xf0\x11\x8f\x5e\x09\x73\x00\x41\x3e\x72\x7c\x50\xe6\x80\xce\x1f\xf2\xb1\xfe\x92\xf7\x1c\x02\x9f\xcc\x24\xfa\x15\xa2\xad\xa8\xca\xd4\xaf\x41\x91\xcf\xa1\x5c\x3f\x8c\x88\x9e\xdb\x80\x48\xf1\xf4\x01\xde\xf4\xc4\xa3\x74\x27\xc3\x5b\x1f\x2d\x37\x56\x0c\xe1\x85\x9e\xaa\x1c\x46\xce\x9f\x88\x5a\x85\xc1\x1e\x02\x96\x05\x48\x0d\xec\x93\x1d\xe4\x43\x56\x62\x64\xfd\xc6\xae\x59\xff\xd3\x56\x2c\x66\x67\x63\xb9\x78\xc3\xb8\xdf\xa9\xa2\x78\x8b\x44\xaf\x73\xe8\xac\x7c\xe3\xe8\xa1\xdb\xa8\x97\x74\xf5\xce\x64\xfd\x54\x56\xea\x42\xe6\x30\xad\x67\x95\x5e\xba\xeb\x8c\x4b\xe8\x9d\x75\xb8\x98\xfe\x21\x58\x5a\x26\x02\x23\xcb\x5d\x0e\x06\x26\x69\x28\x2b\xd1\x3a\x1a\xb6\x5a\x27\xfa\x44\x08\xe4\x6a\xb2\x4f\x31\x1a\xfd\x92\x72\xda\x93\xa8\xf9\xb7\x9b\xb4\x3d\x6c\x56\x7c\x14\x03\x31\xf9\x74\x5d\x45\x04\xa0\xfb\x18\x30\xd4\xb8\x0e\x5a\xbe\x52\xe7\xe0\x76\x7b\xea\x4d\x1a\x4e\xd1\x23\xb3\x31\xb2\x72\xc9\x28\x73\x71\x6a\xeb\xbd\x96\x73\xbc\x9c\x6c\xeb\x18\x9b\x92\xa5\x0d\xef\x83\xec\xbb\xe3\xe4\x2d\xa8\x58\x31\x41\x21\x6a\xb7\x2b\x56\x3a\x1e\x81\x07\x4c\x7b\xe1\x1f\x13\x2d\xfb\xd0\x01\x91\xe9\x31\xd2\x46\x08\x34\x51\xf7\xf8\x0d\x4d\x8a\xfb\x30\xfc\x87\x89\x96\x15\x0c\x45\xd8\x99\x60\x40\xe2\xe3\x1c\x6e\x20\x20\x89\x2d\x45\x32\x53\x11\x45\xc9\x10\xa1\x76\x34\xf1\xd0\x2e\x97\x85\xac\x83\x0b\x28\x7b\x57\x65\xaa\xe6\x14\x59\x63\x84\x9d\x85\x77\x34\xfa\xef\xfa\xe1\x06\xf1\x2a\xde\xf8\xca\x9d\x11\x3f\x31\xfc\xd2\x6f\x5f\x75\x7f\x5c\xd1\x81\x0f\x3b\xc9\x4e\x1c\xcf\xa3\xcf\xaa\x77\x84\x6f\x8b\xd9\xdc\xb4\x3a\x2b\x62\x2d\x5c\xd7\x5b\x05\xbf\x3e\x03\x84\xde\x4f\x71\xd0\x26\x0e\x9b\x99\x2e\xd3\xc6\x31\xf2\xec\xe6\x48\x9b\xc6\x4a\x1e\x26\xea\x38\xdc\x69\x14\x27\xfa\xbc\x8d\xd7\xeb\xf9\xb7\x7c\xea\xd8\x6d\x06\x6d\x3a\xce\x1a\x2f\xdd\xae\x12\xb8\xa5\x3b\x0b\xae\x54\x1d\x9d\x85\x27\x51\x08\x3c\x78\x97\x0a\xd8\xb2\xab\x79\x76\xb7\xb8\x36\x7a\x85\x74\xa4\x1a\xc6\xe8\x0e\x37\x19\x5f\x9e\x70\xd9\x8b\xf4\x8c\xa7\xd6\x2f\x9f\x71\x28\x1b\x07\x72\xbd\x43\x14\x1b\xbf\x6c\x81\x3d\x73\x23\x1f\x74\xd9\xe6\x24\xc3\xb2\x72\x5e\x1f\xe1\x26\x4c\x65\x07\xff\xe1\xed\xc6\x77\xb7\x3d\x27\x0f\x12\x67\xfc\xdb\x25\x0e\xe0\x81\xb5\xb2\xd2\xe9\xd7\xb9\xba\xf8\xe6\x34\x8a\xb2\xf0\x9e\xf8\x73\x9f\xb4\x58\xb9\x14\xd8\x3e\x49\xfa\x74\x4d\x17\x85\x25\xdc\xd9\xa6\x54\xc4\x2e\x0b\x72\x63\x24\x29\x04\x2e\xee\xff\xfb\x97\xc0\xf3\x5f\x02\x5f\x59\x58\x59\xaf\xd6\x22\x03\x63\xd0\x0c\x52\x52\xc2\x5d\xe0\x86\x45\x96\x14\x04\xce\x27\x4c\xce\x0c\xbe\x66\xfb\x6e\x1f\xfd\x62\xb1\xf7\xfa\x94\xe4\x0c\x0c\xb3\x31\x6f\x0a\x17\x32\xde\x03\xce\xd5\x85\x9b\x8b\xae\xce\x0d\xe6\x5c\x9e\x19\xd3\x91\xf2\xba\x2b\xf8\xc8\x28\x2b\xd7\xed\x54\xda\x4e\x0c\x4e\x64\x5d\x2e\xac\x82\x64\x66\xe5\x42\x27\xe1\x81\xd8\x47\xc6\x21\x14\xc6\x60\x4d\xf0\x0a\x99\x5d\xc8\xd1\x26\x91\x0f\x03\x20\xa8\x12\x2c\xab\x5c\x2a\x85\x96\xce\x70\x28\x8c\x26\x70\x95\x5c\xca\xe5\x14\x0d\xfe\xc8\x38\x10\x6c\x47\xea\x45\xa5\x9b\xb3\x85\x5d\x22\xbb\xb0\x76\x70\x7e\x99\xd2\xbe\xad\xe4\xee\x90\x00\x64\x73\xbb\x6c\xa7\x5f\x3f\xcb\x72\x69\x77\x09\xe5\xe0\x38\xec\xc7\xbb\x85\x2a\x64\x12\x9e\x46\x90\x0c\x88\x76\x22\xcb\xa6\xa8\x95\x95\x9f\x4f\x43\x47\xa7\x56\x60\x3e\x8d\xf4\x03\xa7\x04\x30\xbc\x7b\x19\xbd\x94\x56\x2c\x47\x51\x72\x99\xad\xbd\x51\x0e\x19\x2b\x1a\x55\x9e\x15\x32\x52\x4b\xc0\x03\x83\x1d\xba\x83\x46\xce\x03\xb0\x31\x90\xaa\x9b\x40\x4c\x79\x3b\x49\xfb\x53\x82\xd1\xd0\x25\x19\x1f\xb9\x93\xa1\x1c\x62\xf6\xe5\xe8\x6c\x24\x2a\xdd\xd4\x90\xee\x62\x09\xda\x11\x59\xcf\x46\x03\x34\xb8\xc9\x6a\x31\xcb\x8c\xf4\x08\xec\x4f\x96\x14\xa7\xe7\x72\x4d\xf2\xbf\x9e\x13\xb8\x58\xf1\x41\x63\xcf\x4c\xdc\xb5\x71\x53\x18\xe2\x22\x03\x5a\xcc\xb2\xc6\xb8\xf0\x28\xa7\x09\xea\x9c\x82\xbc\x1e\xc0\xfa\x18\x12\x7e\x8a\xd3\x6c\x76\x2e\xd4\xed\x42\x36\x3d\xb6\xc3\xb9\x90\xa5\x92\xe5\x4c\x52\x7a\x75\x3b\x6f\x09\x66\x24\xc6\x6e\x2b\xb9\x11\x18\xf7\x88\x1c\x24\x7e\x82\x61\x91\xc2\x8a\x9a\x21\x1f\x6d\xd0\x6a\x20\xa6\xaf\x11\x39\xdd\x74\xb5\x73\xda\xc8\x4a\x4f\xbf\xc0\x94\x8a\x00\xea\x92\x2b\x27\xfc\xf5\x7b\xc8\x92\x25\xb3\xb9\xba\x47\xcd\x9b\x32\xe7\x7f\xc2\x4c\xe1\x2e\xfe\xdd\x4d\x94\xd4\xed\x9f\x73\x9e\x57\xaa\xfe\xfd\x4d\x13\xde\x21\x6e\x98\xe5\x7b\xa2\x20\xa5\x44\x1d\x1d\xd8\xcf\x0a\x50\x59\xab\x0b\x49\x3e\x50\x60\x14\x94\x85\x83\xa8\x80\x92\xd1\x8b\x95\xbb\xec\xdc\xcd\x83\x6e\x57\x45\xb1\x16\xb9\x2e\x21\x7e\x51\x63\xe0\x4e\xe3\xcf\x30\xa7\x62\xa1\x2f\xe5\x85\xac\xc8\x18\x11\xe9\x83\x9e\x8b\xac\x74\x70\x39\xd9\x8b\xc2\x1b\x2d\x32\x23\xb2\xc2\x12\xf2\xb5\x98\x4a\x59\x7a\x5d\x23\x98\xc8\xe9\x5a\x64\x33\xcb\x2a\x40\xf4\x24\xef\xb0\x54\x9a\x66\xe9\x43\xf8\xc4\xd7\x73\xae\xfd\xec\xc9\xe5\x2b\x9e\x2a\xdc\x47\x41\x6d\x47\x12\x22\x5c\xfb\x8c\x4b\x75\x64\xba\xd6\x70\x8d\x08\x3b\xb9\xb5\x20\x01\x50\x5e\x50\xc4\x1f\x5d\x4a\x13\x2e\x43\x7a\xd3\x8b\x47\x05\x91\xbd\xc4\x33\x12\x2e\x90\x13\x26\x7f\x1c\x5a\xbc\x81\xd8\xfb\x26\xfa\x90\x12\x2c\xaf\x0f\x0f\x9b\x6f\x85\x15\xf4\x54\x02\x73\xa2\x94\xd5\x4a\xf4\xed\xfc\x67\xdb\x71\x21\x65\xe8\xb6\x59\xbe\x77\x2b\xdd\x8c\x2c\xe6\xcc\xe1\x00\xac\x24\x83\x9b\x27\xd3\xb9\x38\xa3\xff\xd7\x12\x54\xa1\x33\x6f\xf9\x0f\x87\x86\xde\x19\x01\x09\x14\x81\x37\x32\x17\x7b\xc2\x34\x2b\x90\xc8\x78\x8d\x59\x56\x40\xfc\xd9\x2e\x83\x19\x3b\x82\xf8\xc1\xec\xb7\xf6\x92\x4e\x7d\x98\x82\xaf\x34\x3e\xcb\xa4\xe5\xbb\x3b\x79\x3d\xda\xec\xe4\xd5\x76\xef\xe2\x6e\x5f\xec\x11\x84\x1c\xee\xc4\x9e\x50\x96\x58\x96\x96\xdc\x70\xa7\x3f\xd4\x3f\xfb\x6d\xc6\x10\x61\x7d\x6e\x44\xb4\x4b\xac\x10\x72\xe2\x5d\x35\x85\x41\x65\x29\x56\xa3\xdf\x21\xa2\x8c\x2f\x4f\x1b\x6c\xf1\x0c\x4e\x81\x60\xd4\xb5\xbf\xf9\x4e\xe8\x77\x52\xfe\x3e\x29\x7f\x9f\x94\xbf\xe1\x21\xa8\xc3\x27\x66\x29\x14\x85\x90\x56\xad\xd8\xd1\x4e\xa9\xe2\xab\xb8\x0f\xc1\xef\x38\xd4\x68\xb5\x89\xe6\xcb\x3d\xce\xae\xc3\xc4\x5b\x00\x2d\xab\x68\x59\x1c\x1f\xb1\x1a\x7f\x33\xab\x7b\xd2\xc0\x37\x46\xbe\x21\xad\xb5\xc7\x0f\xd2\xe1\xd8\xb5\x0d\x5a\xb6\xc2\x1b\xa1\x24\x2d\x79\xfa\x41\x23\xeb\x17\x1b\xeb\xdd\x3f\xe1\x46\xff\xb0\x8e\x3c\x14\x79\xec\xcf\x8c\xa1\x5d\x45\xfc\xdb\x87\x6e\x75\xc8\xc0\xbc\x9a\xb1\xc6\x2b\x2c\x08\xc6\x48\xb4\x5f\x51\xa8\x01\x9f\x4c\xa4\xb5\x99\x0b\x89\x99\x2a\x5a\x05\xb5\x5e\x4d\xc4\x5e\x9f\x21\xc4\x58\x3c\x18\x88\x2f\x45\x8c\x32\x05\xa6\xf1\xd8\x58\xef\x6f\x4e\x54\x66\xca\x91\x8d\x6b\x40\xf7\x88\x5b\x78\x36\x57\x28\xa1\x85\xee\x5c\x0c\xa8\xd0\x5a\x8b\x44\x7d\xd9\xf2\xa8\xf4\xba\x41\x78\x18\xa1\x40\xf5\x14\xbe\x11\x18\x1b\xd0\x96\xce\xa5\xcc\x81\x78\xa1\x04\x00\x51\xec\x2c\x63\xb4\xaa\xa4\x31\x03\x32\x4f\x77\x92\x05\xb2\x16\x69\x1c\xc2\x85\x3a\x5b\x48\x53\x8b\x55\xa5\x74\x05\x29\xf1\x8e\x77\x75\xd4\x44\x13\x2e\x8c\x22\x1d\x19\xa1\x00\xa9\xde\x0b\xbc\xfe\xde\x99\xbd\xa7\xfe\x80\x73\x6a\xe3\x67\xbf\xae\x1a\x89\x13\xdd\xda\x52\xe6\x41\x07\x69\xd7\x90\x0e\xd2\x73\xbb\x80\x46\xd6\x87\xf8\xb3\x1f\x29\xd8\x5d\xa5\x60\xae\x4a\x37\x4e\xc7\x7c\x40\xd1\x57\xc8\xac\x72\x90\x7c\x07\xcc\xd8\x75\x83\x72\xc8\xd3\x7b\xef\x45\x1a\x0f\x03\x97\xc9\x0f\xe7\xe4\xd3\xc2\x6e\x6f\x0b\x5c\x9c\x9c\x5e\xc2\x7e\xd8\xe6\x49\x74\xe4\x68\x60\xbf\x2e\x4a\x72\x74\x4a\x00\xe2\x60\xe0\x6c\x4e\x77\xd7\x11\x21\x3e\x77\x04\x26\xf8\x7d\xfa\xc3\x8f\x94\x79\x2d\xff\xd1\xa8\x0a\xa8\xfa\x71\x97\x6b\x3c\xdc\xd4\xb6\xae\x33\x97\x49\x98\x34\xd6\x8d\xba\x39\xc6\xea\xa7\x03\x0d\x46\x54\x31\xcf\xb9\x63\x24\x55\xa2\x5b\x66\x68\x79\x19\x7a\xf6\xb7\xa2\xce\x2c\xab\x9d\x3e\x26\x89\xf3\x8a\xef\xab\x24\x31\x50\x44\x18\x36\x1e\x02\x78\xe3\x4c\x9f\xaa\x6c\x29\xad\x90\x4a\xce\x37\x38\x1e\x0e\x29\xd0\xef\x48\x09\xd0\x2c\xa7\xb2\x6a\x81\xfb\x41\x57\xea\x67\x5d\xd6\x59\x21\x56\x9a\x14\x0d\x11\x64\x81\xe1\x67\xda\x1d\xfc\x6d\x07\xe8\xff\x5d\x56\x60\x13\xf1\xa9\xb0\xdf\xef\x00\x1b\x44\xd8\x5c\x16\xd9\x9a\x35\x27\x6a\xd1\x6e\xce\x30\x72\x7b\xfc\x03\x3c\x69\x9f\x2f\x32\x52\xcb\x17\x7c\x07\x38\xad\x36\xff\xd9\x62\x2d\xfd\xd2\xb2\xf2\x88\x3c\x53\x5b\xf7\xd5\xe7\x0d\xd3\xe4\x4c\xda\x10\xc7\x9c\xf1\x18\xfe\x74\x52\xc9\xd3\xb7\xaf\x1f\x1f\x3e\x7f\xf9\x93\x78\x24\xbe\xfa\x6a\x3f\x8e\xed\xf4\xf4\xfb\x17\x8f\xdf\x7f\x78\xfd\xfc\xd5\xab\x17\xdf\x8b\x47\xe2\xbf\xee\xff\x8b\x43\x64\xba\xd0\x95\x13\xd1\x5b\xa8\x3c\x97\x25\x8b\x5d\xa9\x41\xdc\x01\x56\xc8\xb4\x92\xd5\xba\x53\x37\x11\xbd\x6c\x6a\x74\xd1\xd4\xac\xf0\xe7\xe7\x65\x2e\xaf\x26\x22\xe4\x76\x07\x3e\x71\x9f\x09\x10\xc0\x4e\xee\xb3\xa0\x8f\x18\xee\x71\x9f\xf1\xd5\xf3\xa4\x46\x95\xcb\xea\x75\x96\xab\xc6\xb0\xec\x6c\xc4\x01\xec\x90\xd4\xcb\xc9\x6e\xa7\xb8\x5b\x5c\x27\x2f\x4e\x2b\xf7\xad\x00\xc7\x4f\xbf\x5a\x14\xee\x39\xac\xd7\x2a\x9b\xa9\x7a\xcd\x07\xd6\xb5\x12\x9f\x75\x54\xc4\xdd\x6f\x18\x5c\x48\x6c\xdb\x1e\xe3\xe8\x4f\x61\x03\xec\xb1\x98\xeb\x6a\x39\x11\x3d\x33\xcb\x0a\xd9\xbf\x3f\x08\x1b\xe6\xd5\x75\x13\x71\x7c\xf7\x8f\xa8\xa9\x0c\xd1\x36\x1d\x42\x0f\xc5\xf1\xdd\xa5\x11\x2c\xd5\x06\xe5\x6c\x64\x3a\x37\x99\x19\x55\x9e\xd9\x7f\xe4\xf3\xf2\x65\x53\xef\x9e\xba\x71\x97\xa5\x20\xd6\x7d\xc3\x52\xbc\x72\xf7\xdc\x2f\xad\x79\x3d\x6d\x2a\x3f\xbf\x34\x8c\x28\x1f\x7e\x4e\xf5\x46\x66\xa1\xab\x5a\x56\x38\xe5\xe3\xbb\x9f\x6b\x1a\xc0\xb3\xb5\x86\x4f\x7a\xad\xf6\x0e\xde\xe7\xf1\xc1\x28\x98\xdb\xb4\xd0\xb3\xf3\xb0\x75\x51\xfe\xc7\x60\x25\x45\x02\x5b\xf2\x39\x39\x44\x5f\x45\x65\x69\x42\xed\x5b\x26\x0f\xde\x61\x01\x48\xd6\xe8\x5e\x07\x2a\xdc\x7e\xe8\x12\x84\xb5\xf7\xf5\xef\x0b\x5f\xb9\xa4\xd9\x3d\xcf\x36\xb6\x6e\xa5\xa9\x29\x3d\x4c\x28\x6a\xbc\x20\x4e\xf4\x7d\xf0\xd5\xfe\x3e\xac\xc0\xee\x0b\x60\x17\x4d\x3c\x80\x66\xaa\x84\x88\x60\x32\x42\x7f\x01\x09\xda\xcf\xe5\x7a\x5e\x65\x4b\xf7\xac\xc1\x63\xef\xf5\xf6\xff\x2d\x0e\x66\xdc\x26\x3d\xfb\x8c\xf4\x44\xf4\xea\xbe\x17\xed\x42\x98\x64\xc0\xe0\x1b\x00\xde\xdf\x04\xf0\x4f\x1e\xe0\x96\x19\x5c\xa9\x7a\xeb\x04\xc2\x71\xdc\x69\x78\xa1\xfb\x1d\x3a\xa7\x9d\xfa\xc4\x05\xbc\x3f\xe8\x4a\xc6\xfe\xd5\x0e\x2b\x3f\xfa\x8f\x07\x9d\x6d\x77\x5c\xe5\x74\x46\xc7\x2c\xd6\xf2\xce\xfa\x52\x34\x2d\x7f\xf9\xf4\xa5\xb8\xf8\x6a\x22\x0e\xb2\x73\x29\x56\x95\xba\xc8\x6a\x19\x5b\xf3\xea\x66\xb6\xf0\x69\x01\x77\x8c\xcf\xc8\x1a\x6d\x8d\xce\x88\xe2\x41\xd0\xc6\xc2\xcf\x10\x13\x11\x7e\x92\xfa\x32\x69\xb1\x45\xcf\x9a\x42\xf9\xe7\x46\x5e\xc4\xde\x77\x8c\xb8\xb8\x93\xaa\xf3\xe8\x64\x90\xe8\x7c\xcd\x8d\x7a\xce\xd7\x1b\xeb\x45\x7a\xce\xd2\xfb\x4a\x47\xc1\xc9\xf6\x53\x0d\xa5\x7f\x12\x48\x2a\x06\xcf\xf9\x44\xa1\xbf\x49\x39\x16\x83\xf3\x11\xc8\x98\x91\x53\x67\x85\x3e\x53\x56\x75\x56\x10\x68\x2d\x15\x19\xc9\x0d\xc5\x11\x2d\xd7\x09\xaa\xd2\xde\x1a\xbc\x37\xe6\xaa\x00\xf9\xba\xa9\xc5\x52\x37\x46\x0a\xb9\x6c\x0a\x08\xcb\x28\x2f\xd0\xcd\xa0\x14\x4b\x3d\x55\x20\x75\xbb\x85\x80\xe3\xa4\xca\xb3\x03\xdb\xe2\xa9\xbe\x2c\x5b\x11\xdd\x40\x23\x0d\x1d\xbd\x93\x94\x55\xc7\x0a\x68\xf0\xa0\xe8\x03\x3c\xe9\xb2\x58\x63\x18\x93\x20\x25\x1b\xcc\xd7\x63\xcf\x0c\xe0\x89\x9a\x9d\x1f\xdf\x45\x53\x1c\x1c\x10\xc8\xcf\x08\x37\xd7\x65\xaf\xf6\x0a\xcc\x9c\xc5\x21\x26\x89\x3b\x80\xc2\x10\xf9\x01\xc4\x31\xcf\x25\x78\x08\x23\xeb\xdc\x4e\xdb\x93\x7b\x3a\x05\x7d\xa8\xd6\xe7\xf4\x54\x25\x74\x39\x43\x2b\x09\x1f\x26\xc5\xe9\xf2\x95\x11\xf0\x00\xda\xd9\xd1\x13\xbd\x5c\xaa\x7a\x33\xf6\x38\xe3\x3d\xc8\x6a\xf2\xab\x90\x6c\x9b\x2e\x33\xd2\x64\x86\xc1\x79\x2c\x74\xd8\x13\x87\xbd\x63\x73\x69\x4f\xa3\x23\xda\x1e\x84\x1c\x31\xb1\x7d\x74\x78\x4e\x82\xc2\xd6\x7b\x52\xf4\x18\x84\x55\xd2\xd7\xa0\xe8\x3d\x88\x57\x79\xdf\xaa\xe2\x9e\x84\x78\xad\xe8\x4d\x48\x88\xd9\x34\x54\x98\x4d\x69\xe2\x81\x6e\xb0\xe9\xe8\x22\xa7\x8f\x6d\x53\xc4\xa3\x13\xc7\xd1\x74\x44\xc4\x63\x0d\x87\xe2\xe8\x46\x1d\x2b\xa5\xcb\xe3\x77\xdf\xb9\x5c\x4f\x1c\x89\x72\x9b\xc4\xe7\xe0\x94\x93\x29\x45\x67\x5a\x22\xcf\x84\x86\x32\xaf\x87\xdb\xb8\x09\x4e\x49\xdc\xb1\xf8\x13\xb1\x6d\xd1\xf9\xd3\x8c\xbf\xa3\x07\x27\x1e\xb1\xdc\x1f\xc9\x9c\xc4\x97\x8f\xc4\xfd\x87\x5c\x86\xea\x20\x6f\xb4\x4b\x16\x2d\x69\xbe\x29\x76\xde\x80\x97\x11\x46\x02\x51\xe0\x11\xd8\x28\x08\x84\xf8\x46\xec\x8b\x7b\xf7\x58\x64\xb6\xfd\x13\x50\x58\x7b\x6d\xbe\xf8\x36\x2e\x9c\xb8\xf0\x31\x08\x58\xaf\x5c\x28\xe7\x0e\xd0\xf7\x63\xd0\xf7\xb7\x81\xbe\xdf\x02\x0d\x38\xdb\x01\xf5\x41\xd4\xee\x81\x6d\x17\xbf\x3d\xd0\x3d\x4b\x43\x63\x8f\xbb\xf4\xa5\xe3\x38\xb2\x07\xde\x56\xb3\x4e\xd6\x23\xa9\xc5\x40\xf9\x22\xcf\xec\xb8\x6e\x13\x46\xc5\x31\x3c\xbc\xd3\x2e\x76\x87\xb1\x45\x1f\x3f\xa6\x73\xe0\x63\x69\xc1\xf7\x25\xf3\xec\xdc\x1d\x3c\x36\x1e\xf6\x95\xbb\x61\x44\x75\xbb\x41\x6c\x5d\x12\x56\x33\x32\x76\x06\x1c\x1c\xf9\x94\xc4\x3d\xb8\x8b\x73\x7d\x59\x42\xba\xd1\xd6\x7d\xdb\xc1\x2c\x6c\xac\x13\xb9\xc3\x04\x82\xd5\xe5\x31\x90\x8e\x02\xee\x4e\x38\x4f\xbd\x1d\x7b\x62\x6e\x43\xd7\xdc\x1a\x5d\xfa\x45\xe3\x6b\xf5\x2d\x86\x2d\x99\xb0\x2c\x5e\x04\x8a\xe1\x6a\x85\x56\x14\xd2\xb7\x71\x1a\xc4\x33\x59\x7f\xa7\x1b\x08\xb6\xf2\xa4\x50\xb2\xac\x5f\xdb\x7b\x70\x20\x98\xcc\x40\xaa\x88\xfd\x96\x16\x62\xb3\x56\x0f\xa5\x58\x77\xfb\xd9\xfb\xff\xaf\x12\x43\xc8\xf1\x3c\x5c\x48\x9a\xf8\x0c\x89\x4c\x3e\x4c\xbf\xbc\x6f\x7d\xb1\x14\x31\xf6\xfa\x40\xc4\xfe\xf8\x11\x49\xd1\x68\x06\xb3\xf9\x1b\xec\x01\x50\x20\xfe\xf9\x3d\x7d\xfe\xf8\x51\xdc\x89\xab\xdf\xbb\xe7\xbe\xc0\xbe\xc5\x97\x94\xbf\x52\x0f\xb2\x7a\x31\x02\xa5\x4a\xdf\xae\xec\x08\xb3\xa9\x8d\xc5\x83\x94\xad\x7c\xdf\x51\x19\x97\x8f\xd7\x4e\xe3\x2a\x01\x75\xc1\x18\xbf\xd1\x58\xec\xbe\xf1\xdf\x48\x2e\xe1\x13\x3b\x5f\xf6\x22\xa3\xb9\x93\xd7\x14\xfe\xec\xa8\xf2\x3e\xae\xf2\x9e\x79\xa0\x74\x4e\xd6\x01\xde\x03\x84\x1a\xd9\x6d\xbf\x61\xc6\xae\x1f\x6a\x51\xbb\x6c\xc8\xc9\xa1\xc1\xdd\x6b\xad\x35\x31\x1e\x00\xcf\xfc\xa3\xaa\xfb\xfd\x07\xe2\x0b\xfc\xb9\xd2\x97\x6c\xed\x87\x68\x76\x10\x97\xe0\x42\xdb\xa2\x81\x18\x8b\x3f\x21\x23\xfa\x4c\x57\x18\x06\x0f\x23\xa0\x61\xb8\x6c\xef\x26\xab\x8c\x98\x56\xfa\x5c\x96\x96\x65\x3f\x00\x96\x5d\x3c\x59\x54\xb6\x3e\xd9\x99\x03\x02\xab\x39\xac\xfa\x28\x2c\x57\x90\x45\x60\xcc\xff\x26\x1e\x20\x8a\x45\x2f\xdf\xac\x02\xbb\xa1\x37\x86\xd7\x82\x8b\x58\xfd\x1c\x36\x61\x99\x5d\xf5\xe1\x8f\x6c\x6a\xfa\xfd\xf6\x61\xc6\xc5\xc6\xbc\xc4\x13\xdb\xf7\x9e\xdb\xc6\xc1\xd0\xff\x25\xbe\x10\x0f\xc4\x97\xe2\xc1\xc3\xb4\x9b\xf7\x9f\xd6\xcd\x0f\x88\xc6\x51\x3f\xef\x7d\x3f\xef\xdb\xfd\x6c\xd8\x52\xbf\x67\x30\xd5\x74\x23\x61\x60\xb0\x85\xfe\xac\x58\x69\x02\xf0\x5f\xe4\xf2\x42\xcd\xa4\x09\x7e\xa9\x8c\xfe\xb6\x4e\xef\x78\x2c\x66\x0b\x39\x3b\x77\xe1\x2c\x41\x1e\x81\x80\x57\x25\x4a\xe3\x81\x50\x8b\xbc\x01\xbb\x4a\x30\x5f\x87\xcf\x0c\x08\x54\xbe\x54\x06\x43\x45\x82\x4d\xab\x15\xc1\x40\x16\x60\x86\xe9\x20\x0e\xa1\xd3\x5d\x70\x3e\xbf\x44\x8b\xf9\x4b\xcd\xe0\x81\x2b\x79\x53\x96\xce\x1e\x94\xa6\x91\xca\x3a\xe1\x7e\x68\x3b\xf2\x00\x9c\x57\x95\x5c\x65\x94\x38\x30\x4a\xde\x39\x0a\xd5\x36\x03\xdd\x64\xac\x21\xb8\xa0\xd2\x8f\x0a\xb6\x72\xbe\x62\x3b\xf7\x2b\xb6\x73\xc0\x62\x23\x17\x9c\x54\x9a\x4d\x27\x62\x36\xe5\xdf\xae\x07\x3c\xda\x2e\x1c\xf9\xa7\xd2\x89\xb4\xf2\x4a\xce\x9a\x8e\x57\x65\xbf\x50\xdc\x03\xaf\x2d\xd0\xc5\x46\x30\x1b\x57\x6c\xdb\xf6\x25\x55\x37\x6f\x49\x9f\xcf\xe3\x86\xbd\x63\x9a\x0a\x9a\x37\x5b\x82\x61\xf4\x3a\xe9\xf5\x09\x18\x9b\x93\x42\x7c\x66\xa2\xae\xb2\x5c\xea\xf9\xdc\x59\x2d\x29\x83\x1e\x54\xa3\x1b\x68\xd4\x06\xec\xf8\x27\xc9\x44\x91\x00\xca\x31\x21\x71\x6f\xb4\x32\x8e\x67\x72\x87\x7c\xd0\x4c\xe6\x09\x2c\xfa\x4e\x52\x0f\x00\x01\x37\xce\xa0\xe9\x77\xb3\x66\xde\xe9\x21\xe6\x3d\x34\x88\x64\x2c\xd0\x43\x6e\xeb\x0c\xaf\x76\x31\x9b\x86\x30\x7a\x37\xa9\x1c\x50\xd9\x22\x49\x65\x03\xaa\x5a\xcc\x06\x21\xf4\x6c\xd6\x54\x46\xd4\x5a\x8b\x7f\x34\x6a\x76\x5e\xac\x69\x73\x11\x21\x4c\x6d\x69\x59\x14\x18\xb7\x7d\x3a\xc4\x36\x26\x57\x96\x39\x70\xda\x3b\xe0\x3e\xb6\x5f\xc9\xca\x28\xc3\x51\x7d\x87\xd3\xb0\xeb\x39\xb8\xe5\xf1\xb5\xbb\xc2\xd6\xbd\xed\x30\xbb\x89\xf7\xdf\x6d\x5c\xbb\xab\x44\xec\x32\x87\x02\x26\x4e\xc7\x2c\x05\x85\x99\x09\x15\x4d\xa1\x66\xb2\x7f\x3f\x0a\x1e\x99\xa8\x59\x42\xed\x54\x91\xb0\x8b\xb6\xe0\x24\xd1\x9d\x3d\x5f\xae\x64\x95\xd5\xea\x42\xfe\x00\xf6\x78\xfd\x4a\xce\x87\x5d\xf7\x49\xea\xad\xbc\x91\x48\xc0\x52\x4e\xf0\x1f\xf6\xd1\x0a\x15\xf6\xff\xc7\x89\x56\xcd\x35\xa7\x06\x50\xe7\xd6\xd6\x7f\xb7\x4c\x41\x14\xa5\x17\xf2\x92\xd8\x31\x4f\x32\xb4\x83\x5d\x60\x2b\x34\x89\x1b\x44\x70\x54\x84\x90\x5d\xf8\x15\xbd\x5f\x1c\xad\xb9\x76\xac\x97\xb9\x4d\x3a\x23\xf6\xc0\xb2\xcd\x66\xb0\xdb\xb4\x0d\xd6\xdd\x08\x8a\x12\x4e\x92\x58\x9a\xb3\x87\x20\x54\x19\x32\x5b\x8b\xac\x74\x0d\xc0\x24\x05\x72\x51\x07\x6a\x15\x19\x0d\xee\xe6\xcd\xf4\x9f\xcd\x9e\x31\x05\xd3\x9d\xea\xe7\x76\xb9\x77\xe6\x85\x5a\x51\x74\x08\x40\x96\x90\x8b\x87\x6d\x34\x66\xe2\xe9\xc2\xca\xa5\x5c\xea\x3e\xab\x39\xf8\xff\x2b\xf1\x5f\x80\xf2\xf4\xe5\x41\x64\x86\x96\xeb\xe5\x4e\x96\x67\xbf\x38\x61\xc9\xf6\xf5\x78\x36\x93\x2b\xcb\xff\xbf\xb6\x84\xb1\x92\x90\x72\xdb\xdb\xb7\xfd\x65\x99\xd5\xb2\x52\x59\xb1\xd7\x28\x74\x8c\x89\x5d\x68\x9e\xe9\xea\xfc\xb5\x9c\x77\x38\xcf\x50\xc9\xaf\xf4\xb8\xb9\xa5\xad\x9c\x25\xfc\xe6\x19\xcb\x54\xdf\xd1\x57\x5c\x81\xc7\x87\x63\x6f\xc0\x3e\x28\x1c\x43\xcc\xdf\x3a\x73\xa2\x2a\x0b\x55\xca\xbd\x1d\x13\x28\xb6\xf2\x25\x26\xf9\x15\x83\x7d\x47\x25\x0b\xb8\x08\x5d\x11\x66\xa4\x3e\xcc\x56\x3f\xa8\xb3\x45\x61\xe5\x65\x67\x84\x03\xcf\xf0\x56\x5e\x2b\x6b\x57\xb9\x6d\xa9\xd3\x51\x69\x3c\x16\xaf\xa5\x91\x81\x02\x5c\x84\xc8\x06\xf4\xa0\x87\x1e\x9b\x98\x04\x00\xec\x88\x2d\x19\x21\x2a\xd6\x18\x39\x24\xd6\x30\x2b\xf3\x60\x70\xdc\x18\x9f\x61\x54\x50\xc6\xf5\xa0\xcf\x43\xf3\xa2\xf0\x1b\xd3\x87\x85\xdf\x30\xa6\xa5\xbe\x90\x94\x4a\xc2\x96\x0a\x55\x8a\x37\xd9\x3c\xab\x14\x87\xe1\x4c\x94\xf6\xd3\xd4\x94\xdd\xa0\xa8\xd8\xc2\x7a\xa6\x2a\x39\xd7\x57\x74\x1d\x36\x95\x81\x05\x22\x63\x46\xb7\x38\x76\x16\x6f\x64\x21\x67\x75\x62\xd8\x78\x41\x56\xc5\x8f\xed\x26\x4f\x44\x6f\xa9\xf2\xbc\xf0\xa5\xbd\xbd\xa5\xfe\x79\x0f\x7d\x83\xb3\x72\x26\x7b\x49\x6b\xb7\xe6\xae\xf6\x25\xec\xea\xce\x0d\x6a\x79\x55\x3f\x95\x33\xed\x4c\xd5\xd2\xaa\x6f\xc0\x85\xa4\x46\x7b\x09\x39\x93\x18\x74\xcb\xc5\x0b\x05\xe4\x07\x23\x70\x51\x02\x6e\x89\xaf\x33\x31\xfe\x26\x36\x08\x17\x33\xc2\x18\x67\x3f\xe9\x66\x76\x6f\x32\x81\xc9\x01\x22\xec\xa9\xb2\x8c\x8d\x7a\x70\x57\xde\xa0\x23\x03\x8e\x8b\x6d\x01\xad\xb9\xc8\x75\x5d\xa3\x9b\xbc\xc5\x0b\x2f\x07\x78\xbb\x97\x7b\x2e\x47\x65\x94\xee\x7c\xbb\xa1\xa9\x15\xcb\x09\x51\x0b\x55\x9e\xf3\xab\xdf\xc7\x4e\xf5\xdb\x4c\xb8\xde\x4b\xfa\xfd\xcb\x52\xe6\x2a\x13\xab\x4a\x95\x91\xa5\x0f\x2c\xc6\xe3\xdc\x1e\xdb\x89\xe8\xc9\x2b\x7b\x03\x44\xd2\xa0\xcf\x64\xfa\xca\xc8\x26\xd7\x7b\x70\xfd\xee\x9a\xcf\x34\x4f\x73\xa9\xbb\xef\x13\xf1\xcb\x2d\x41\xc7\x76\xff\x32\x77\x90\xe7\x8c\x7a\x5a\xe8\xb1\x41\xce\xe9\x77\x4d\x5d\xeb\xf2\xbb\xcc\x80\x91\x9a\xcb\x05\x61\xc4\x5c\x5e\x7a\xae\xc7\x58\xf2\x04\x00\x30\xa7\xc4\xf3\x5a\x64\x6a\x69\x28\x0c\x42\x26\x8c\xc2\xf8\x86\x8d\x2a\xe0\xa8\x81\x19\x22\x10\x0b\xe0\x4c\x31\xf8\xc7\x14\x3a\xf2\x00\x42\x5f\xa2\xd0\x59\x6e\x91\x13\xb1\xb4\x02\xca\x64\x09\x0b\x68\x58\x61\xf8\x63\xe2\x11\x0b\x7d\xa6\x66\x71\x5c\xbf\x30\xfe\xdd\x0d\x81\x42\x9b\x6e\x3b\x20\x92\x75\x9d\xe5\x0d\xfe\x0c\xc6\x90\xd0\xfa\xb5\x9c\x47\x2e\x8c\xfe\x6b\xea\xc9\x88\x74\xde\xdb\x2a\x71\x9b\x22\x7a\x5d\xf6\x28\x17\xd7\xec\x6c\x7f\xa3\x85\x51\x0a\x33\xc4\x12\x4a\xc2\xc2\xfb\x1a\x9f\x2f\x51\xfd\x8c\x45\x6a\xda\x14\xa3\x89\xd7\x69\x37\xe3\xd3\xeb\xe1\x92\xf6\xd8\x0c\x5b\xd0\xe2\xf4\xb6\x79\x9a\x49\x37\xe7\x36\xb2\xae\x46\xab\xcd\xcd\x79\x73\xf3\x0d\x1d\x26\xbb\x1a\x7d\x4d\xbb\x4e\xf7\x35\xf9\x7c\xf3\x20\x12\xb0\x71\x21\x31\x3e\xe9\x50\x18\x3f\x94\x8e\x27\x36\xa1\xdb\x00\xed\xe6\x51\x51\xd5\x74\x58\x70\x6c\x93\xe5\x61\xdf\x42\x20\xba\xa8\x5e\x57\xe3\x2d\x43\xd8\x08\x90\xc8\xdd\x93\x16\xea\x76\x96\x32\x97\xe2\xef\x8a\xa6\x62\x2e\xc7\xf6\x27\x2b\x7d\x02\x7e\x9b\xa1\x18\x7e\xb3\x72\x60\x54\x59\x39\xfc\x4e\xcb\x1d\xa7\x9b\x54\x73\x7e\xba\xa1\xf6\x8f\x72\x4d\x16\x5d\xae\x22\x7d\x89\xeb\xbc\x5d\xc5\x35\xde\xae\x58\x39\xb7\x0b\x73\x75\xfc\xb7\xb4\xde\x0b\x99\x5d\xc8\xb4\x22\x7c\x4c\x6b\x46\x7d\xd2\x17\x56\x07\x70\xe2\xfb\x92\x3b\x6f\xbb\x4f\x69\xad\x03\x1d\x75\xe9\xbf\xa5\xf5\xde\x90\x2d\x49\x54\xf1\x4d\xa4\xdb\xd1\xe5\xd3\x2a\x3b\x4b\x27\xe1\xbf\xa5\x18\x5a\x67\x53\x70\x45\x09\xfe\xde\xf4\x21\x3c\x40\x87\x1a\xad\x36\x1c\x2b\xf7\x03\x46\xb6\x60\xb0\x53\xe6\x82\x46\x60\x6f\x69\x41\x6b\x78\xa0\x16\x75\x43\x5b\xaf\xc2\xf8\xa9\x24\xaa\xb7\x9d\x6e\x46\xcd\x3f\xc1\x6a\x34\x23\xd5\xce\x50\x1c\xdf\xf5\xf7\x1b\xd9\x8d\xb2\xcb\x86\xc5\xc0\xab\x64\xb9\xdd\xc8\x14\x7e\xc6\xc1\xf3\x1c\x8d\x8d\x7e\x71\xc8\x6d\x82\x85\xdf\xd9\xf1\x67\x1f\xd2\xd3\x8d\x45\x78\x96\xdd\xdf\x4f\xd0\x9a\x11\x7f\xc0\xf1\x8b\x7e\x10\x08\xf7\x8d\x8e\x1d\xfb\xf9\x76\xe5\x7e\xf8\xc3\x14\x7d\x00\x84\x8b\xbe\x84\x16\xee\x24\x44\xbf\x2d\xca\x47\x1f\x00\xb5\xdd\x17\x8f\xc3\xf8\xc1\x21\x19\xfe\x4a\x11\x89\xea\xac\x57\xa9\x49\xaf\xdf\xc1\x4d\xa6\x8c\xc7\x49\x5a\x2d\x64\x93\x7e\xd2\xb9\xec\xf3\x74\x7f\x7f\x78\x53\x57\x6a\x56\x1f\xe8\x5c\xa2\x71\x65\xa4\x98\x75\x1a\x8f\xd1\x5c\x95\xf9\xd3\x97\x07\xd0\xdc\x77\x1d\x5b\x35\x5e\xa7\xb1\x0d\x6e\x18\xdc\x6d\x62\x30\xcc\x63\x9a\xbb\xdd\x40\xf9\xd9\xf6\xca\xde\x4a\x59\xcd\x45\xdf\xf3\x0f\xf7\xee\x45\x9d\x84\xb7\x9d\x18\x9e\x33\xc5\x4d\x26\xfe\xa1\xad\x03\x79\xd4\xd6\x8b\xf4\x59\x92\x9d\xb4\x72\x1b\xc2\x28\xae\x93\xdc\x6f\x5b\x5b\x46\x55\x3a\x17\x11\xf7\xa8\xa3\x69\x25\xe7\xb4\x3c\x9b\xb5\xfa\xc4\x4a\xef\xa2\xd8\x8f\xe5\x16\xdf\x60\x1e\xad\x4a\xf4\xe8\x92\xac\x37\x46\x2b\x08\xe5\x2d\x24\x44\x6e\xa0\xdf\xce\x90\xb5\xf1\x95\x62\xbb\x19\x79\x84\x6a\x0e\x2b\x88\x8d\xb9\x77\x4f\xdc\x89\x48\x5b\xcb\x4c\x85\x0f\x8c\x1e\x23\xfa\xad\x07\xc8\x98\x15\xe4\x3d\x0c\xa3\x95\x39\x69\x9d\x67\x7b\x9c\xa0\x22\xee\x44\x45\x86\x26\x8f\x69\x43\x24\xd7\xe8\x45\x46\x99\xe6\x5c\xad\x5e\xb3\xba\x9b\xcc\x1d\x23\x23\xca\x07\xdb\x8c\x28\xc1\x18\xb2\x4d\xd4\xe3\xd8\xc9\xed\xdc\xe5\xf1\x83\x66\xf2\xc8\xd5\x3d\x7e\xe1\x5e\x09\x3d\x14\x6c\xdb\xf5\xac\xe5\xcd\xe9\xed\xc9\x48\x27\xfd\x30\x36\xd2\xb9\x43\x15\xef\xdd\x6b\x6f\x5e\x87\xb1\x0e\x2b\x3d\xe2\xcb\x7e\xb2\x65\x38\x2e\x95\x2f\x33\xe3\x6b\xd1\x0e\x0c\x5d\xc1\x79\xbc\xd6\x2e\xf7\xd0\x68\x70\xc8\x79\xc1\x34\xba\x09\x67\x9b\xba\x00\xe8\x15\xb4\xf7\xd5\xd2\xf6\x81\x25\xdc\xd2\x9a\x2a\x75\xb6\xbd\xb1\xf3\x4d\x7b\x9f\x9e\xba\xf6\xe3\x70\x05\xff\x3e\x45\xdd\x4f\xbf\xd3\x6c\x8c\xdf\xd9\x03\x9e\xf9\x2c\x7c\x8e\xf7\x89\x27\x93\x09\x33\x89\xd8\xd4\x6d\xfb\x10\x2a\x76\x82\x40\xbe\x79\xcb\x4a\xba\x5a\x9d\xad\x89\x9f\xbe\xa9\xb9\xad\x96\xb6\x27\xd9\xe7\x73\x6e\x42\x74\x9b\xa4\xc8\xbe\xe5\x7e\x6c\xed\x90\x05\xd3\x82\xdb\xb5\x2b\x43\xc1\xc0\x84\xb9\x39\xc9\x6c\x67\xaa\x02\x69\x0e\xaf\x40\x87\xb5\xa8\xeb\x95\x99\x8c\xc7\x67\xaa\x5e\x34\xd3\xd1\x4c\x2f\xc7\xf3\x6c\x26\xa7\x5a\x9f\x8f\xe1\x41\x67\xac\x8c\x69\xa4\x19\xff\xf9\xcf\xff\xfe\x1f\x61\xd0\x77\xda\x4c\x0f\xd3\x99\xa6\x65\xde\x4a\x93\x7e\x1f\x86\x14\xde\xc9\x62\xc4\x77\x3b\x0d\x9b\x81\xde\x74\x0d\x72\xfa\x15\xf3\xb9\x83\x38\xcb\x53\x07\xf8\x8d\x39\x24\x19\xb0\x68\x7b\xe0\xcb\xa6\x53\xe3\xb6\x46\x99\x9f\x74\xf9\x13\xb0\x07\xc8\x6a\x72\x0b\xb2\x56\x61\xec\x2a\x30\x75\x0d\x12\x3e\x35\xbe\x44\x82\x66\xe9\xde\x3d\xf6\xc3\x5e\x4d\x5e\x4a\xb2\x37\x33\x31\xa8\xa3\x3a\x3b\x43\x75\x81\xad\xf0\x18\xca\xa8\x64\x51\xc9\x79\x88\xda\x1c\xbd\x66\x7f\x2f\xee\xdf\x17\x66\xa1\x96\x11\xb6\xe4\xf2\x42\x16\x56\xa6\x1a\x2d\xf5\xcf\xaa\x28\xb2\x91\xae\xce\xc6\xb2\xdc\x7b\xfb\x66\x9c\xeb\x99\x19\xbf\x93\xd3\xf1\xe3\x57\xcf\xc7\x3f\x92\xde\x16\xf0\x72\x5c\xc9\x95\xcc\x42\xa0\xc2\xb0\x58\xe7\x72\x9d\xeb\xcb\x2e\xf6\xbd\x13\xe1\x83\xf2\xe0\x53\x50\xfe\x09\xd8\x36\xa2\x32\x19\x92\xe4\x50\xf8\x48\xdb\x73\x08\xc0\x8c\x63\x34\x62\x2a\x21\x97\x36\xe5\x7a\xc8\x4c\x88\xd4\x0b\x51\x31\x59\x8c\xcf\x40\x23\x18\x3b\x14\x66\xe4\x0f\x41\xc2\x4a\x77\xde\xaf\xc1\x0c\xdb\x0e\x12\x76\x4a\x70\xa3\xf8\x0e\xb0\x91\x35\xfc\x66\xbb\xa1\x36\x1f\xc6\xed\x78\x36\x98\xfa\x74\x35\xca\xaa\xba\x75\x70\x3a\x09\x1b\x59\x40\xc1\x59\x87\xa9\x74\xd0\x00\x4c\x2a\xd7\x3e\x0c\x37\x2c\xc3\xa7\xdc\x7f\x84\x2c\xd1\x09\xa6\x6f\xc9\x19\xb6\x48\xe2\x10\xd6\xc7\x0f\x55\x85\xaa\xd7\x94\xd2\xbb\x0c\x8f\x30\x17\x21\xc3\x79\xa7\x71\xed\x67\x9a\xf5\xf7\xf0\x78\xc7\x19\xec\x7c\x97\x65\x88\xc9\x21\x28\x04\x12\x3a\x08\xdf\x36\x13\xc0\x0e\x16\xc0\x69\xe3\x3e\xe5\xc8\xcd\xb2\xa2\xb0\xc7\x28\x1e\xa2\x50\x90\xb6\xfa\xed\x0a\x12\xe7\x88\xaf\x91\x0a\x7d\x83\xa6\xc2\x90\x9f\x49\x99\x15\xe6\x43\xa2\x68\x72\xe8\x3b\xa5\xe6\xe2\xcd\x2a\x9b\x41\x08\x3a\x08\x2e\x27\x73\xdf\x93\xa3\x4c\x33\x9d\x4b\x93\x95\xf9\x54\x5f\x8d\x94\x1e\x9b\x31\x02\xdf\x3b\x97\xeb\x66\xb5\x47\xe3\xa0\xd7\xb2\xbd\xbc\xfc\xf3\x7c\x7f\xe3\x19\x6e\x21\xe0\xc6\x13\x9b\x1e\x6b\xf2\x8f\xf0\x01\x54\xe1\x67\xb4\x73\x9d\xe7\x38\xf6\x9f\xf9\x8d\x0f\xb2\x93\xc2\x76\x3a\xca\xa4\x17\x4a\xcf\xd0\xdb\xd5\x6f\x71\x82\x9c\x2a\xda\x6f\xc1\xe7\x23\x21\xbb\x6d\x4e\xe7\xe9\x48\x0f\x85\x4f\x5b\x40\x0f\x65\xfe\x02\x66\x5a\x94\xa4\x4e\x72\x31\x83\xae\x12\xef\x5e\xd7\x77\x0a\xb4\x97\xf5\x52\xb1\x08\x01\xf8\x9c\x78\xd7\x3b\x75\xe7\x3b\x60\xad\xc9\x36\x55\x50\x6e\xa7\xb4\x94\xbd\x29\xb9\x3f\x29\x7d\x0e\x37\x6f\x6e\x77\x0b\xec\x47\xd6\x03\xc7\xa1\x8e\x19\xc6\x9d\x54\x1a\x54\x35\x6e\x98\x29\xea\xb1\xaa\x47\xbd\xac\x52\xd9\x9e\x7f\x46\x3f\x69\x8d\x2b\x95\x1c\xdf\x1a\x59\x21\x43\x11\x0c\x81\xfa\xd1\xf3\x26\xbe\x8c\x26\x64\xee\xa5\x63\x43\x58\xab\x44\x43\x34\x0c\x1c\x6e\xda\xba\xd5\x34\x1a\xcb\x30\xea\x63\x8b\xe2\xef\xc1\x8d\x9a\x3f\x4a\xb8\xe3\xd4\x84\x69\xfb\x44\xf5\x77\x70\x43\x6d\xaf\xfb\xdb\x41\x19\x94\x80\x63\x9a\xa8\xc4\x7f\x1b\x63\xa4\xc7\x2f\x71\xd1\xb0\x5b\x6a\xa3\xe8\x9e\x63\x88\xbd\xd1\x48\xb3\x17\x6c\x34\x7b\xfc\xde\x91\xa6\x50\x65\xed\xb0\x65\xaf\x94\x57\xf5\x5e\xa1\x4a\x49\xa1\x3d\x17\x5a\x9f\x9b\x71\xd5\x14\xd2\xec\xe9\x39\xfe\xc4\xb6\x3b\xcc\x9f\xae\xf9\xd6\xe4\xec\xd8\xb7\xeb\x4b\x5c\xde\x5a\x09\xe1\xab\x8f\x7a\x07\xce\xac\xed\xed\xf3\x09\x66\x9c\x4c\x52\x88\x84\x44\x54\xb5\xe6\xb6\x00\xca\x08\x55\x5e\x64\x85\xca\x47\xbd\xa1\xe8\xbd\x2a\xa4\xfd\x0a\x7e\x0a\xa6\x21\x07\x17\xff\x36\xee\xd2\x2a\x62\xbe\x13\x99\x63\xb0\x75\x65\xc4\xac\x31\xb5\x5e\x32\x3b\xcf\xde\xc9\xe8\xef\x5a\x95\xfd\xde\xf1\x71\xd9\x1b\xb4\xd9\x82\xa1\x38\x6a\x4d\xbb\x33\xf3\xfc\xee\xd9\x63\xf0\x18\xde\xd2\xa2\x78\xd8\xba\x78\x9d\x9f\x76\xf4\x14\x3a\xec\x7e\x36\x3d\x19\x0a\xae\xe5\x76\x2d\x3d\x9b\x45\xe7\x07\xa5\xf1\x09\x53\x23\xf8\x02\xb8\x25\x26\x22\x7e\x2a\x25\xf1\x70\xc2\x65\x73\x5f\x44\x7c\xe7\x24\x96\x63\x78\xf1\xdb\xd5\x84\xf3\x5b\xbe\xc8\xeb\xb7\x26\xa9\x62\x2c\xae\x02\x1a\x9d\x49\x4b\xff\x14\x57\x0a\x9d\xc4\xcf\x9b\x4c\x0d\x36\x49\xd5\x67\xbe\x8a\xd3\xd0\x4c\x12\xbd\x4e\x5c\xe1\x40\x07\x18\xe9\xbb\x27\xd7\x12\x4d\x5a\x0a\x26\x6e\x26\xee\x89\x2a\x7d\x74\x8f\x43\x93\xb0\x75\xdf\x8a\xbd\xfb\x62\xe2\x4b\x88\x0e\xb1\x9b\x23\x18\x97\x87\xe4\x29\xed\xd3\xfb\x2d\xca\xbd\x0c\x6f\xbd\x9d\x12\xaf\xa6\x0c\xfa\xb2\x95\x52\xda\x63\x89\x7e\x7e\x7b\x46\xe5\x72\x28\xae\x1e\x88\xa9\xd6\x06\xd2\x41\x82\x5d\x9a\xac\x2e\x64\xe5\x2c\x95\x3a\x8d\xd9\x99\x01\x43\xeb\x10\xc0\x02\x78\x82\x42\x0b\xe0\x0c\xbd\xa3\x17\x4a\x9c\x72\xfa\x54\x36\x18\x08\xb4\x85\xbf\x85\xad\x7b\xa0\x35\x1d\xa6\xee\x63\xb1\xb7\xed\x3f\xf1\x2e\xab\x4a\xcb\xf4\x6f\xad\xb5\xb7\xb7\x47\xc0\x3e\x5a\xd2\x67\x24\xb3\x3b\xce\x2a\x49\x09\x24\x7c\xcc\x59\xc8\x1a\xbb\x5e\xc9\x37\xb3\x4a\xad\x6a\x7c\x25\x06\xed\x3b\x06\xf3\x12\x1f\x3d\x30\x01\xef\xd2\x2e\x89\x03\x24\xf9\x91\xb9\x42\x33\xfa\x7c\x54\x1b\x31\x57\x56\x86\x2f\x73\x51\x35\xa5\x38\xbe\xbb\xce\x2a\xa4\x91\x60\xe2\x7c\x7c\x17\x00\x7c\xdc\x65\xa2\x3b\xff\xd7\x4e\x2a\x52\xc9\x39\x30\xc4\xca\x3f\x21\x91\x59\x96\xf1\x59\xa3\x6a\x97\xcd\xaf\x58\x53\x04\x9b\x66\xb5\xd2\x55\x6d\xc4\x69\xfc\x4a\x74\x2a\xda\xfe\x00\xf8\x65\xe2\x2c\xa9\xb7\xdb\xd7\xd3\xb7\xb7\x86\xb2\x92\x60\x96\x13\x8d\x19\xa6\x32\x18\x2b\x59\xe5\x91\x79\x25\xa9\xa7\x5a\x0e\x02\x7f\xc9\xe5\xaa\x92\x33\xd8\x35\x0b\xed\xb4\x92\xf3\x53\xa1\x4a\x53\xcb\x2c\xe7\xc3\xf3\xec\xd3\xe6\x11\x76\xba\x51\x50\x86\x94\xa9\xf3\xa0\x90\x79\xc8\x3b\x22\xd7\xe2\x12\x02\xf5\xa0\x7f\xaa\xf3\xb4\x00\x03\xc9\xc8\xc9\xcb\x19\x23\xb7\xfd\x27\xf0\xf0\xdc\xe8\x45\x71\x88\xb9\x44\x20\x73\x52\xea\xc2\x71\xab\xb4\x41\xbf\x2b\xb7\x8c\x5f\xe7\x8b\xb1\x61\xb1\x9c\x6e\xd2\x07\x8e\xf7\x36\x9e\x76\x41\xdc\x4c\xbe\x57\x60\xbd\x91\x09\x84\x05\xb9\x58\x20\xa6\xd3\x0f\x87\x07\x2f\xbc\x35\xa8\xb6\x35\xba\x17\x3c\xf8\x00\x6d\xf2\x2d\xb8\x01\xcd\xa6\x96\x8f\x22\xf4\x76\xa8\xe6\x6e\x1a\xde\x53\x30\x68\xbd\x01\x57\xba\xbd\x81\xd0\x5d\x70\x53\x0f\xd4\xf4\xff\xfc\xcf\xff\xf5\x7f\xff\xf7\xff\x10\x64\xc2\x62\x0f\x22\x36\xb6\x6b\x04\x17\x51\xa9\x01\x45\x9c\xe9\xfa\x04\x2d\x98\x2f\x88\x1b\xe2\xc9\xec\xbe\x43\xbe\x90\x00\xd7\x1a\xe2\xed\x83\xb1\x7d\x94\x53\x67\xba\xc6\xf0\xfc\x16\xa2\x91\xab\xcc\xd2\xdf\x56\xa8\xfe\xd3\x4e\x66\xea\xb4\x63\x75\x76\x3c\x4e\xc9\x12\xa1\xe9\xfd\x4e\x0b\xc5\x3b\x63\xb7\xdf\xa7\xf6\xd8\xda\x74\x4a\xa0\x96\xc4\x1a\x6f\x07\x05\x67\xfa\xa2\x1d\x88\x06\x28\xad\xf4\x0a\xd2\x07\x2d\x64\xb1\x12\x99\x58\xc9\xca\xe8\x52\x9c\x97\xfa\x52\x5c\x2e\xd4\x6c\x11\xa5\x37\x6a\xc7\x3b\x1f\xf1\x43\x05\x66\xd3\x65\xb6\x94\x7e\x79\x1c\xa5\x00\x9f\x7a\xbe\xb1\x67\x19\x25\x58\xc2\x99\xb8\xa4\x77\x6c\x8a\x6d\xbf\x32\xf1\xbc\xee\x59\xf2\xbf\xd2\xc5\x7a\x6e\x3b\x70\xc7\x16\x68\x4d\x82\x6c\x06\x5c\x0a\x74\x75\xd2\xf7\x2f\x04\x55\x36\xaf\xcd\x68\x66\xcc\xe5\x19\x3c\x0e\xb8\x2a\x66\xef\xbf\x8c\xff\x50\x2f\xe4\x5e\x04\x61\x6f\x05\xc6\xe0\x03\x3e\x43\xf4\x06\xc8\x28\xc0\x1a\xe6\x8f\x02\xc1\x65\x2e\xb3\xda\x8a\x39\x47\x90\x7f\x6a\x55\x64\xf0\x08\x6f\x8f\x45\xe8\x9f\xbd\x67\xbd\x7b\xfe\xe4\xaf\xe3\xa8\xb7\xf1\xb4\xd0\xd3\xf1\x32\x33\xb5\xac\xc6\x0e\x42\x35\x5a\xe6\xbe\xff\xc7\xe2\xc8\x4f\xdc\x6e\xd8\x14\xc2\xcb\xe5\x3b\xc2\x1f\x84\x4c\x17\x19\x1d\x18\x57\x44\x21\x51\x21\x2e\x1d\x50\xbb\x10\x3b\x95\xba\x56\x73\xe2\x2e\x5b\xa8\x96\x1e\xba\x1d\xc8\x6f\x9b\x78\x2f\x80\xaf\xbc\x45\x43\x27\x08\xdd\x10\xda\xbf\xab\x21\x09\x4a\xb7\x68\xc9\xe4\x91\x5b\xb4\x26\x49\xec\x86\x96\xc1\x15\x4c\x55\xfc\xf4\x44\x19\x1b\xc9\xef\x00\xe9\x60\x38\x38\x0e\x5f\xde\x49\x51\x57\xea\xec\x0c\xae\xaf\x53\xea\xf9\x14\xf4\xdf\x00\xba\xd6\x7a\xd4\x1e\x9a\x37\x00\xba\xc5\xdc\xbc\x28\x79\xbb\xb6\x56\x04\xbc\x45\x4b\x26\x86\xde\xb6\xf5\xed\xb7\xd3\xcb\xae\xb7\x68\x1b\xa4\xd6\xdb\x36\x46\x89\xf6\xb6\xad\x49\xd8\xfd\xe4\xe6\x41\xe2\x65\x8c\x5a\x29\x5f\x02\xd7\xdc\x3f\x6a\x65\x74\x68\x9d\x6c\x88\x64\x1a\xf7\x82\xca\xe3\x84\xaf\x3c\x65\x37\xe8\x69\x57\x32\x8d\x54\xbe\xbc\x15\xeb\x68\x85\xac\x1b\xa7\x02\x1f\xfb\x47\x4e\x2b\x3c\x14\x3d\x70\x9b\xb1\x7f\x98\x66\xba\x54\x75\xef\x64\xd0\x35\xd1\xdb\x39\x02\x07\xc7\xdf\x20\xf5\xa2\xdf\x6f\xf8\xcd\x9d\x7b\x6f\x74\xa0\x35\xb2\x66\xde\xa8\x63\xfc\xd9\x6b\x0f\x88\x5b\xaf\x39\x75\x71\x25\xe7\x8f\x41\x2d\xfd\xdd\x20\x75\x2c\x3f\x0c\x09\x4e\x41\x89\x20\x32\x48\x8a\x17\x6c\x0a\x28\x5e\x8b\x9c\x53\xda\x6f\xca\x92\x6a\x45\xdd\xac\x22\x71\x99\x4b\x4c\x94\x87\xd6\xa0\x52\xd4\xe5\x4e\x2d\x0a\xcc\x51\x58\x00\xa3\x0e\x7e\xb5\x40\xf3\x4e\xcb\xa6\x28\x30\x5b\x2f\x88\x82\xf2\xd2\x95\x13\x40\xcf\x21\x56\x72\x3e\x12\x4f\x0a\x99\x95\xcd\xca\x8a\x8c\x0d\x26\x82\x94\x4b\x59\x9d\x39\xdf\x59\xb8\xc7\x5d\x26\x65\x86\x1f\xdc\xce\x76\xd4\x18\x79\x20\x97\x7a\x63\x60\x5b\x39\x7f\x2c\x28\xd4\x0f\x3c\xcd\xc9\xf9\x77\x62\x63\x0e\xef\x38\x56\xed\x71\x29\xba\x22\x97\x56\x72\x0e\x79\xb0\x63\x8b\x93\x68\x63\xb0\xfc\x61\xbb\xf8\xbb\x76\x71\xb0\xb5\x0c\xfb\x0a\x0a\xd3\xeb\xbb\xc3\xbb\x3d\x2b\xdb\x18\xb0\x36\xee\x81\xae\xfb\x25\xba\xc5\xe3\x3e\x91\xc9\xfa\xba\x8f\x48\x63\x86\xe2\xf8\xee\x87\x0f\xd2\x1c\xe8\xbc\x41\xe3\x6d\x72\xe8\x82\x1c\xde\x18\xe1\x00\x94\x3c\x68\x7b\xe2\x32\x47\xc6\x46\x27\x3e\x9f\xa4\x2a\x57\x4d\x1d\x67\xd5\xa0\xf4\x81\x50\x82\x6f\x47\xae\x61\x8f\xc2\x5c\x3b\x04\x36\xee\xed\x2c\x8a\x89\xb4\xaa\x24\x64\xea\x49\x92\x75\xb0\xc7\xe1\x42\x2e\x5f\x56\x87\x8b\xa6\x3c\x4f\xcd\x62\x7d\x5b\xf1\x2d\x1f\x65\xd4\x02\x83\x6b\xd1\x4f\x08\xbf\xc7\x7e\x93\xa6\xcb\x9b\xb0\xe0\x70\x97\xb0\x56\x23\x1a\xb5\x78\x24\xe8\xaf\x23\xef\x2e\x79\x62\xcf\x75\xab\x5a\x85\x61\x09\xfa\xbd\xd1\xb8\x50\xd3\x71\x76\xa5\xb4\xe9\x01\x09\x18\x8f\x43\xf8\xee\x99\x2e\x8d\xa2\x10\xc3\xa0\x7a\x57\x75\x88\xe6\xbd\xe9\xa8\x07\x74\x19\xe2\xde\xb1\x04\x98\xb4\x03\x10\xd5\x2e\x5a\x7f\xb6\x5c\xf3\xfe\x45\x40\x30\x7a\x8a\xa3\xb3\xc0\x6b\xb1\x47\xe5\x0b\x9f\x7f\xff\x1a\xf1\x6e\xfc\xc5\x1d\xfb\xeb\x89\x5e\xad\x21\x1b\x89\xe8\xcf\x06\xe2\xc1\xfe\xfd\x3f\x8b\xff\x26\x73\xf1\x2e\xab\x0d\xc9\x00\x2f\xd4\x4c\x96\x96\xe7\x69\xca\x9c\x5c\x6d\x0f\x9e\x1f\xba\xcf\xa2\x7f\xf0\xfc\x70\x30\x14\x46\x02\x7d\xb7\x7c\xf1\x64\x3c\xfe\xbb\xcc\x2f\x11\x02\x31\xc8\x4a\x8f\x81\xe1\xb5\x54\xd6\x1c\x97\xf6\x94\x8f\xbf\x10\x67\x85\x9e\x66\x05\x91\x24\xb2\x05\x4a\x8f\xf9\x71\xdd\x3a\x21\xc7\x35\xbe\xb4\x99\x97\x60\xfc\xf3\xcb\xf5\x08\xff\x76\x87\x85\x2a\x79\x40\x5e\x51\x61\x3c\x4c\x04\x11\xdc\x02\x8f\x4e\xa8\xd1\x71\x6d\xa5\x8c\x3e\x1c\x1f\xf1\x48\xec\x3f\x14\x4a\x7c\xdd\x32\x06\x7e\x28\xd4\x97\x5f\x7a\x50\x08\x2c\xab\xce\xb8\xd9\xf0\x91\x02\x90\x50\x0c\xa6\x72\x59\x75\x36\x00\x85\x91\x2a\x1b\xe9\x7b\xf3\x6d\x0f\xc3\x33\xac\x9e\xdb\x0f\xac\x8a\x6d\xef\xab\x58\x9c\xc0\xab\x0e\x5e\x57\xa3\xef\x78\xfb\xf7\xd8\xc8\x8e\x6b\xf7\xa2\xb1\x6a\xcc\xc2\x42\x19\xf8\x61\x31\xc4\x81\xc0\xc1\x23\x65\x30\x80\x30\x0c\x15\x6d\x9d\x69\xc2\x11\x44\x58\x9c\x12\xe3\x45\x87\xb5\x1d\x81\xa4\x03\xbe\x0c\x43\x11\xf5\x83\x13\x80\x16\x11\x9c\x64\x6c\x58\x81\xb5\xba\xee\x18\x68\x34\x5d\xe4\x37\xe2\xe9\xfa\xed\x03\xf3\xae\x12\x46\x12\x77\x6a\xc1\x20\xc2\x8c\xec\x3d\x67\x41\x0e\x6d\x6d\x37\xe5\xa3\x73\xb9\x3e\x49\xda\x24\x43\xb5\xb5\x1f\xf2\xf2\xeb\xae\x51\xe3\x1f\xd7\x6e\x1f\x9d\xbd\x1e\x01\xc2\x37\x36\xd1\x43\x40\x54\x8b\x11\x00\xa4\x47\xf8\xbe\xc9\x32\xb8\xde\xbb\x27\x62\x4a\xe5\x47\xca\xb6\x22\x50\xe6\xf0\x91\xc6\xdb\x22\x73\x49\x0d\xb6\xd6\x34\x10\x3a\x9e\x31\x31\xb2\xe3\x88\xca\x47\xd9\x32\x8f\x76\xc5\xd6\x08\x45\x7e\x94\x90\x58\xf1\x4c\x19\x48\x06\x6e\x44\x2f\x90\x85\xde\x10\x89\xa9\x01\x95\x2a\xf0\x11\xe5\x6a\x29\x56\xd9\xec\x3c\x3b\x93\xc0\xa0\x21\x08\x84\xda\x8f\x9b\x1e\x9d\xb4\xac\x5e\x70\x1b\xf8\xb2\xf3\x85\xb8\x1e\xf0\xf9\x52\x75\x4c\x9b\x3b\x62\x14\xa3\xbd\x40\xc7\xe5\x75\x1f\x9e\x45\x03\x33\xf8\x8b\x65\xde\x0e\x17\x72\x29\xed\x9c\xdc\xdf\xa4\xb3\x73\xe6\x4e\x9d\x71\x4c\x4c\x2b\xb5\xd6\x16\x96\x92\xb6\x15\x3b\x72\x8c\x25\xff\x78\x03\x7b\x09\x75\xfa\xcc\x09\x1c\xd2\xa1\xa0\xa5\x42\xc7\x88\xfb\x03\x4b\x60\x38\xfc\x7f\xed\x63\xfc\x53\x39\x6d\xce\x80\xb3\xa2\x7c\x60\x1d\x6f\xce\x35\x0d\xf3\xfa\xee\xc9\xf0\xae\xd1\x4d\x35\x93\xaf\xb5\xae\xef\x4e\xee\xde\xbd\xfe\x7f\x01\x00\x00\xff\xff\x93\xca\x1e\xb3\x38\x3e\x06\x00") +// FileIdentifierStaticJs07fc0bd22ChunkJsMap is "identifier/static/js/0.7fc0bd22.chunk.js.map" +var FileIdentifierStaticJs07fc0bd22ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xfd\x6d\x77\xa2\xca\xf6\x37\x0a\x7f\x97\x8c\xfd\xae\x59\x3b\xcf\x9d\xce\xff\x7e\x73\x17\x05\x12\x62\x8c\x1a\x35\xc6\x5c\xe3\x1a\x6b\x10\x45\x45\x11\x0c\xa0\x31\x39\x5f\xfe\x8c\x9a\xbf\x59\x50\x18\xd3\xab\x7b\xed\xb5\xcf\x39\xe3\x7a\x91\x08\x45\x51\x0f\xb3\x66\xcd\xe7\x9a\xfc\x5f\x47\xdb\x30\xcb\xa3\x34\x39\xfa\x9f\x73\xeb\x28\x4f\x37\xd9\x38\xcc\x8f\xfe\xe7\x7f\x1d\xfd\xfb\xdf\xc7\xff\xfe\xf7\x71\x92\x4e\xc2\x3f\x57\xe9\x64\x13\x87\xf9\xf1\x38\xce\x77\xc7\x93\x28\x2f\xe8\xea\xdf\xab\x7f\x2f\xf2\x23\xeb\x50\xc5\xff\xff\x2a\x28\xc2\x2c\x0a\xe2\x3f\x36\xd1\x71\x5e\xbc\xab\xb2\x7a\x85\x97\xe0\x25\x8c\x8f\xb3\x4d\x52\x44\xab\xf0\x78\x1e\xc6\xeb\x30\xcb\x8f\xc3\x7c\x75\x9c\xbe\x2c\xc2\x71\x31\x8c\x8a\x79\xba\x29\x3a\x59\xba\x0e\xb3\x22\x0a\xf3\xff\x27\xfb\xba\x4b\xd3\x3c\xfc\xb2\xc3\x45\xfe\xeb\x1d\x84\xbb\x22\x4c\x26\x5f\x0f\x3e\xca\xff\x88\x92\x3f\x5e\xb2\xf4\x2d\x0f\x33\x80\x16\x8f\xfe\x91\xde\xc7\x59\x18\x14\xa1\x8c\x83\xfc\xeb\x11\xfc\x4e\x7b\x51\x32\x0f\xb3\xa8\xf8\x07\xe1\x13\xe4\x79\x98\x15\xfd\x79\x94\xfb\x49\x54\x44\x41\x1c\x7d\x84\x93\x9f\xb6\x4c\x30\x5a\xe4\xf9\xbf\xc3\xfc\x6b\xfc\xfb\x9d\x21\xfc\x2d\x1c\x38\x84\x74\xaa\xb1\x55\x98\xcd\x00\xf0\x30\xaf\xdd\xfc\x7e\x4b\xc1\x32\xec\xe1\x76\xb5\x89\x8b\xa8\x19\xbe\xf7\x8a\x34\xfb\xfd\x21\x01\x09\xbc\x30\x09\x33\x8d\x0c\xf7\xc1\x2a\xfc\xaa\xfc\x67\x30\xfd\x63\x1d\x6f\x66\x51\xf2\x47\xb6\x89\xc3\x3f\xb6\x41\xbc\x09\xff\x98\x6e\x92\x71\x11\xa5\x49\xb9\x2e\x3f\xa9\xf3\x57\x4b\xa6\x5f\x9d\xc5\xe9\x4b\x10\xff\x63\x7b\xec\x73\xcb\xfb\x63\x45\xf1\xaf\x0e\x2f\x09\xf3\x22\x9c\xfc\x37\x86\xc7\x2d\xef\x0f\x0f\xc5\x3f\x1d\xde\xfc\x7d\x3d\x0f\x93\xa0\x08\xff\xa0\x95\xff\x23\x51\x2b\x1c\x25\x93\x70\xf7\x2b\xfd\x8e\x83\x55\x18\xff\x31\x0e\xf2\xf0\x53\xdf\xd5\xa3\x5f\x05\xcf\x24\x9c\x06\x9b\xb8\xf8\x63\x93\x44\xc5\xa7\xe6\xcc\x87\x3f\x6d\x70\x9c\xe7\x7f\x6c\xc3\x64\x92\x66\xbf\x4e\x4b\xb2\x2c\x78\xbf\x8b\x96\x61\x3f\x15\xea\xf2\x9f\x6c\xbb\x48\x65\x9a\xe4\x9b\x55\xf0\x12\x87\xff\x78\xe3\x34\x70\x26\x40\x37\x69\xfc\x13\x62\xf1\x37\x1a\x8f\x8a\x30\x53\xa3\xfe\x2f\x00\x65\x93\xe4\x9b\xf5\x3a\xcd\x8a\x70\xe2\xff\xf7\x7a\x49\xd2\x44\xb7\xde\x5b\x67\x61\xf0\x35\x7b\x30\x1a\x87\x90\x52\xde\xff\x2a\xee\xa2\xf6\x1f\xeb\x2c\x9c\x46\x3b\xcd\x90\xbf\x7e\xfe\xab\xcd\xae\xb3\x74\x9d\xff\x91\xa7\xd9\xe7\x0d\x51\x3d\xfa\x69\x63\x5f\x11\xf7\x45\x9e\x77\xb2\x30\x0f\x8b\xea\xea\xb7\xdb\x00\x97\xe9\x64\xe9\x36\x9a\x84\xd9\xde\xed\x7f\xc2\xb7\x88\xfe\xc8\x74\x93\x14\x7f\xa3\x9d\x59\x58\xa0\x19\xa9\xf8\x54\x9a\x7d\x2a\xf8\xcf\x5b\x4c\xd2\x74\xdd\x9f\x87\x3f\xe1\x79\xbf\xc2\x9c\xcb\xcb\xbf\x33\x20\xea\x5e\x09\x1d\x79\xfd\xee\xb7\xdb\x7a\x8b\x8a\x39\x8f\xa8\xba\xfc\xb5\x56\xc6\x69\x16\x52\x1b\xf9\x2f\xbf\x9f\x85\xc1\xb8\xf8\x23\x4a\x8a\xf8\x38\x8e\x5e\x8e\xf3\x6c\x7c\x3c\x4e\x57\xeb\x34\x09\x93\x22\x67\xc9\xa2\x91\x66\xab\xa0\x28\xc2\x89\xd4\x4f\x7e\xb5\xb9\x9f\xf3\xad\x60\x17\xa5\x39\xd5\xd3\x54\xe2\x25\x4a\xbe\x26\x0a\x07\xaa\x6f\xa2\x78\x32\x78\xb8\xfb\x85\x57\xc6\x41\x32\x0e\xe3\xe3\x28\x97\x74\xf1\x0b\x6f\x30\x83\xfb\x1a\x74\x55\xd5\x60\x12\xac\x0b\x35\xa0\xdd\xfc\x6b\x64\x36\xc6\xa2\x96\x09\xa0\x75\xb3\xec\x27\xf8\xbf\xf7\x0a\xa4\xd0\x34\x99\x46\xb3\x5f\x9f\xf1\x5f\xcc\xf7\xa7\xf8\xc3\x20\xf8\x8d\x9d\x55\xb6\xb0\x29\xa2\x38\x3f\xde\xe4\xa1\x9f\x37\xd2\xf1\x26\x7f\x8c\xf2\xe8\xe5\x27\xca\xd0\xe7\x56\xfe\x71\x61\xe1\xef\x77\xf1\x37\xd8\x23\x36\x42\x91\x05\x49\x1e\x29\x89\xf9\x8f\x59\x96\x6e\xd6\xff\x5d\x55\xe6\x3f\xec\xf3\xd7\x74\xc2\x2f\x3a\x51\x0d\xf4\xcb\x42\x4f\x95\xc9\x34\x29\xc2\xdd\xd7\xb4\xa2\x42\x55\x42\x96\x2f\xeb\x15\x51\xf2\xfe\xc7\x5b\x90\x25\x51\x32\x03\xd7\x35\x4b\x7e\xca\x6c\x8d\x2d\xaa\xae\x7e\x75\xa3\x89\xdf\xa9\xec\x2b\xa6\x38\x0e\xd7\x45\x9a\xb5\x82\x24\x98\xfd\x84\x43\xee\xbd\x39\x89\xf2\x75\x50\x8c\xe7\x0f\xe1\xeb\x26\xcc\x7f\x05\x50\xf4\x1a\xc1\x7e\x9a\x66\x2b\x27\x28\x82\xbf\xb5\x2d\xc7\xc1\x3a\x2a\x48\x43\xff\xf2\xf5\x75\x96\x8e\xc3\x3c\x3f\x66\x83\xc6\x6f\x10\xe5\x44\x71\x0b\xd5\xf6\x4d\x18\x4c\xc2\xec\xa7\x9a\xe8\xde\xcc\xf2\xb0\x28\x7e\x42\x23\xf6\x6a\x87\xc9\x5c\xd1\xb6\xdf\x22\xa1\xc4\x31\x1a\x9b\x38\xee\x04\xc5\xfc\x37\x26\x15\xe5\xe2\x25\x4f\xe3\x4d\x11\xfe\x1a\xbb\xd1\xef\x8d\xd3\xd5\x4b\x94\xa8\x97\x7e\x05\x9f\xf4\x5b\xeb\x20\xcb\x19\x7c\xbf\xf3\x5a\x94\x0f\x1e\xee\x7a\xc1\x2a\x6c\x67\xd1\x2c\x4a\x7e\x6b\x98\xe9\xf2\x67\x96\xb9\x2f\xb8\x4a\x3f\x5d\x86\xbf\xd3\x4d\xfe\x73\xa9\xff\x30\xca\x7a\x59\x34\xa1\x7f\xbf\xf9\xde\x5d\x94\x84\x41\xd6\xc9\xd2\x59\xa6\x10\xb9\x7e\xfb\x9b\x6d\xf5\xdf\xd7\xe9\x2c\x0b\xd6\xf3\x77\xe3\xf2\x37\xdb\xb0\x37\x45\x91\x26\xfc\xf3\x9b\xef\x3a\x51\x10\xa7\x33\x22\xa8\x49\x51\xbf\xfb\x5b\x2d\x09\xb2\xe2\xe4\xf5\xbb\xbf\xcb\xe1\xdd\x6d\x98\x14\x32\x88\xe3\x97\x60\xbc\xfc\x2f\x70\xdf\x5f\xd7\xd8\xff\x43\x21\xe2\x97\x14\xf7\xbf\xdf\xc7\xaf\xea\xef\x7f\xbf\x87\x5f\x57\xb0\xff\x43\x51\xe1\xaf\x2c\x61\x3f\x11\x12\x80\x36\x72\x1e\xc5\x93\x56\xb0\x5e\x2b\x0e\xfe\x9f\x8b\x1a\xff\xad\x79\xfe\x9e\x51\xfb\x67\xfb\xde\x0e\xf2\xf0\xf8\x21\x5a\xaf\x7f\x4b\x06\xde\x7b\xbf\x9f\x6e\xc6\xf3\xff\xb4\x91\xea\xf2\xef\x6e\xf8\x46\x9a\x2d\x1f\xc2\xe9\x4f\x80\x9e\x4c\xc2\xec\x8f\x68\x4a\xc4\x1f\x77\xfe\xd7\xd5\xc1\x27\x7e\xae\x2a\xfe\x6c\x44\x79\x58\xfc\x6c\x34\xe3\x38\xc8\xf3\x24\x58\x85\x7f\xaf\x0f\x56\x85\x36\x79\x58\xaa\x41\xff\xdb\x3a\xa2\xf6\x8e\xfe\xe7\x7f\x1d\x15\xe9\x63\x10\x1f\x59\x47\xab\x68\x77\x64\x1d\x2d\x8f\xac\xa3\xf7\x23\xeb\x28\x2f\xb2\x23\xeb\x88\xb6\xf9\x91\x75\x14\xe5\xfa\x2a\x0e\x93\x59\x31\x3f\xb2\x8e\x8a\xd5\xfa\xc8\x3a\x52\xaf\x44\x47\xd6\x51\x90\xcd\x36\x2b\xa5\x70\x1f\x59\x47\x7f\x7e\x21\xfa\x1f\x69\x97\xde\x91\x75\x14\xee\xc6\xf1\x66\x12\x4e\x54\x8f\xa1\x6a\xb7\x08\xb2\x59\x58\x94\x55\x9a\xe1\xbb\xaa\xdf\xa6\x96\x50\x49\xdd\xd3\xf4\xdb\xd3\x23\xeb\x68\x16\x16\xed\xb7\x84\x1b\x7f\xef\xbd\xaf\x5e\xd2\xb8\xea\x01\xf7\xdc\xc8\x3a\x4b\x8b\xb4\x78\x5f\x87\xb8\xa6\x17\xfc\xdc\x4d\x36\x2b\x10\x9a\x23\xeb\x68\x1c\xc4\x0a\x04\x7f\x32\x55\x50\x13\xca\xf3\x68\x96\x1c\x59\x47\xf3\x20\x37\x3a\x52\x4f\xd6\xeb\x98\x46\x3c\x8f\x68\xb6\xaa\xe5\x54\x0d\x09\x9d\xaa\x51\x2a\x0a\x56\xa4\x0a\x80\xe9\xcb\x42\x35\x9f\x26\x79\x91\x6d\xc6\x28\x8b\x72\x1b\x22\xe9\x91\x75\xf4\x16\x25\x93\xf4\xed\xc8\x3a\x9a\xa4\x63\x02\xe0\x91\x75\xa4\x96\xb4\x8f\xe1\xfe\x39\x09\xa7\x51\x12\xd6\x60\x48\x56\x3a\xf5\x46\x98\x8f\xb3\x68\x8d\x36\xc3\xda\x6c\x48\xc1\xde\xe8\xdb\xb7\x2c\x2a\xf8\xb2\xd6\x9c\x9a\xc4\x9f\x86\x5b\xee\xc8\x3a\x92\xb5\x81\x12\xe0\x3a\xdc\x5d\x5e\x04\x45\x34\xd6\x77\x7f\xd6\x54\x2d\xf5\x78\xf3\xa2\x1b\xc9\x37\xeb\x30\xd3\x37\x68\x5f\xbd\xf1\x27\x35\xf7\xe7\x9f\xea\xfa\x20\x55\x52\xaf\x86\xb1\x82\xe4\x43\x38\x0d\xb3\x50\x4b\xc6\x6a\x24\x71\x10\x25\x40\x06\x1e\x62\xc6\x63\x1c\xc7\x69\x02\x9b\x17\x8d\x11\xbf\xab\x40\xe1\x66\x12\xbe\xe9\x07\x0a\xd9\xcb\xc1\x3c\x6c\x18\x16\x63\xb5\x58\xe9\x9a\x44\x87\x23\xeb\x68\x91\xe7\x5c\x2c\xd3\xb5\x02\x4e\x86\x8a\xb0\x8e\xaa\x67\x69\x22\xcd\x16\x16\x69\xa4\x30\x84\x1c\x4b\x47\xd6\xd1\x0b\xbd\x13\xe6\x9b\x58\xad\x62\x91\xca\x3c\x7f\xe4\x47\xd1\x2c\x49\xb3\xd0\x5f\x29\x0d\x3c\xa0\x45\x1e\x1b\x0f\x93\x49\x98\x14\x3d\xda\x70\xb8\xd6\x98\xae\x9b\x01\x64\x42\x9e\xf2\x9f\x3c\xe4\x7f\x95\x95\xa7\x2c\xba\xe4\xc6\x35\x63\x8a\xaa\xaf\x7f\xf5\x40\xa9\xe0\xac\x2c\x51\x57\x41\x1c\xa7\x6f\xee\x6a\x4d\x48\x11\xe6\xe3\x60\x1d\x3e\x84\x33\x1a\x41\x12\x14\xd1\x36\x74\xa9\x4c\xa1\x48\xaf\x57\x56\xa1\xf9\xae\xe3\x80\xb6\xb4\xa2\xc7\x04\x6f\x86\x0e\xef\xb8\x28\xef\x40\x11\xa3\x05\x06\x29\x25\xd4\xc7\x25\x23\x66\x3e\x0f\x69\xf7\x3f\x54\xcf\x37\x09\xb0\x55\xbd\x36\x4d\x41\x36\x92\xf0\x4d\x43\x8d\xd5\x3b\xac\xca\x3c\x48\x66\x61\x09\xcf\x5c\x4f\x24\xca\x9d\xb2\x89\x2c\x5c\xa5\xdb\xb0\xbc\x30\xf6\x40\x1e\x16\xe6\xf6\x2e\x8a\x60\x3c\xa7\x57\xcc\xd9\xfc\xb9\x3f\xbd\x3f\x79\xff\xeb\x85\xe9\x87\x3b\x5a\x37\x42\xe3\x71\xba\xa6\x16\x66\xec\xd1\xf4\x27\x0c\xf6\x22\x3d\xd3\x24\xa4\x9f\x12\xce\xa5\x09\xad\xf2\x6d\xaf\x7d\x4f\x17\xbd\x22\x8b\x92\x19\x10\x53\xb5\x1f\x47\xc9\x12\x83\xc4\xff\x5e\x85\x08\x0c\x7b\x1e\x10\xc8\x27\x90\xd5\x1c\xe8\x3a\xc8\x80\x25\xda\x16\xc6\x5d\xb4\x4b\xc4\x1f\x2b\x51\x26\x0b\x13\x9a\xfd\x43\x38\x73\x77\x6b\xd0\x82\x09\x49\x1c\x41\xcc\x2d\x81\x91\x50\xad\x23\xeb\xe8\x75\x13\x66\x7a\x97\xa0\xb0\x15\x14\xe3\x39\x6d\x3f\xfc\xaa\xd7\xee\xa2\x5c\x55\x0e\x26\x15\x04\x30\x56\x6e\x33\x98\x4c\xf8\x2a\x4d\x18\x51\xf8\x7e\x19\xbe\x97\x63\xc1\xac\x3e\x8f\xa8\x08\xf3\xaf\x67\xf6\xaf\x53\xde\xf9\x65\x33\xcd\xf0\x7d\x9a\x29\xbe\xc7\xaf\xe3\x86\x6b\xe9\xd1\x97\xfd\xd2\xfb\x59\x38\x2d\x5f\x9f\x46\xc9\xa4\x24\x4d\x13\xdd\x18\x28\x00\x5e\x2c\x1b\xd4\x4b\x13\x4e\xd1\x86\x51\x19\x73\x31\x27\xac\xa9\x94\xae\xa4\x31\x2c\xc6\x92\x64\x33\xa2\xb8\xe0\x93\xe3\x34\x19\x07\xd5\x42\xef\xbd\xd2\x48\x93\xa2\x51\xa1\x44\x35\x95\xb3\xf2\x8d\xbd\x2a\x8f\x51\xf8\xa6\xa8\xd2\x83\x49\xeb\xf6\x0a\x7b\xd1\x6a\x1d\x1b\x6d\xe6\x2d\xa2\xaf\x0c\xf5\xc1\x7a\x12\x14\x61\x85\x4d\xb4\x57\xf7\x0b\xb3\xe0\x8d\x06\x4f\xfe\x17\x22\xdb\x14\x89\xc0\xe8\x53\xd5\xa3\x5d\xf5\xaf\x8a\x26\x67\xe1\x2c\xca\xf1\x4a\xbe\x8e\x23\x22\x02\x9b\xc4\x2c\xe5\xc2\x69\x9a\xb9\x01\xad\xdf\x86\xba\x56\xe3\x0b\x8a\xa0\xbc\x6f\x27\xe1\x7e\xf3\x67\x1a\xa5\x4b\x04\x1c\xe8\x57\x93\x70\x57\x68\x72\xf2\x67\xed\x66\x9d\x85\x5b\x7d\x33\x26\xf2\x43\xab\xd7\x63\xfa\x35\x09\xd7\x71\xfa\x4e\x7b\xff\x75\x13\x52\x2d\x10\x94\xf2\x19\x5d\x70\xc9\x7a\x93\xcf\x89\xd6\x2b\x6e\x58\xdf\x10\x39\x2e\xa9\xa5\x49\x18\x87\x45\x8d\xee\xfc\x4b\x6f\xba\x0e\x78\xd3\x03\x01\x84\xb6\x63\xa4\x20\x9c\x10\x42\x2a\x69\x86\x2f\xb3\xaa\x42\x85\x76\x3c\xe6\xb5\xa6\xcf\x7a\x5e\x9b\x9c\x69\x6d\x47\xa3\x6a\x16\x4e\x36\xe3\x92\x4e\xd3\xac\xe9\xc2\xe8\x97\xfc\x7d\x34\xbe\x90\x24\xc3\x3f\x33\xc2\xfd\xaf\x84\x41\x2d\x37\x20\xdc\xa1\x0f\x5a\xda\x0a\x48\xb4\x6c\x70\x8c\x86\x1a\x84\x2a\x86\x78\x4b\x34\xb4\x1e\x28\x42\x45\x0a\x14\xb2\x44\xac\x45\x9e\x53\x29\xdc\xa2\x1a\xd3\xee\x83\x55\xd8\xd1\x25\x25\x85\x5d\x45\x49\x34\x55\x63\x5f\x85\xab\x34\xfa\x20\x34\x4a\x40\x9d\x34\x43\x30\x96\x5a\xaf\x4f\x51\x64\xd1\xcb\xa6\x00\x33\xc0\x4e\x08\xb3\xac\x5c\x26\xbc\x7f\x13\x06\x13\x4d\x23\x0d\x8a\xad\x28\x48\x27\x0b\xb7\xf7\xe9\x24\x2c\x17\x3e\x4a\x93\x4e\x1a\x81\x91\x47\xc9\xe4\x26\x9a\xcd\xc3\x4c\x2f\x4e\x18\x87\x2c\x16\x82\x8e\xf3\x9b\x09\x7e\xca\xfa\x79\xa1\x5f\x50\xd8\xda\x8b\x5e\x62\x4c\x71\x9c\xae\xf8\xf5\x02\xfc\x69\x8e\x81\x11\xc9\x57\x6d\xe5\xdc\x98\x9e\x68\x91\x45\x2b\x6e\x58\xe2\x5d\xee\x71\x16\x16\xf7\x69\x32\xe6\x4b\xa1\xa1\x00\x59\xd0\xc0\xdf\x71\x9a\x14\x41\x94\xd0\x62\xac\x82\x9d\xcf\x72\x0c\x03\x30\x07\xf7\x0b\x13\x4d\xf5\x9d\x74\x65\xf0\xfc\x79\x90\xfb\xd4\x58\x58\x6e\x82\x55\x38\x89\x02\xfa\xa5\xdd\x1c\xc6\x25\x16\xb8\x25\x68\xd4\xdc\xd8\x98\x54\x3e\x2d\x65\xc2\xfa\x60\x13\x9e\x83\x02\x53\x6d\x15\xec\x70\x9a\x66\x9f\x17\xa5\xea\x04\xc3\x26\xb5\xbf\xac\xa5\x3b\xb1\xd3\x34\x0e\x83\xa4\x94\x2e\xea\xb5\xf4\x54\x20\x49\x75\x34\x3f\x8e\x03\xc5\xbe\xee\xeb\x85\x58\xe5\x1a\x4d\x51\x08\x0e\xe9\x10\x0d\x54\xfc\x5e\x37\x1c\x25\x79\x11\x24\x63\x63\x1b\xdc\x12\x69\xd2\xd1\x94\x4a\x12\xf2\x93\x4a\xeb\xc8\xc3\x62\xb3\xae\x43\xaa\xec\x8c\xc6\x5f\x2b\x9a\x07\xb9\xec\xf5\xfa\xed\x56\x0f\x2e\x24\x5a\x8c\x2a\x9a\x4c\x49\xbe\x41\x6e\xdc\x25\xe1\x5b\x75\x53\x3a\x5c\x19\xe6\xd5\x93\x5a\x24\x19\xe9\x60\xe3\x39\x33\x98\x53\xfc\x9c\xb1\x5e\xc1\x0f\xb0\xd7\xd6\x79\xb8\x99\xa4\x46\x6f\xa4\x3e\x39\xa0\xdb\xd3\x84\xf0\x38\xbf\x27\x46\x94\x28\xf8\xe0\x92\x29\x4a\x49\xd0\x74\xc5\xb2\xda\x91\x75\xe4\x11\x29\x92\x1a\x7f\x6b\xa5\x20\x1e\xa1\xc6\xda\x7c\xf3\x02\x05\x39\x0f\xd7\x01\xe9\x7a\xa5\x90\x10\x4c\x26\x3d\x25\xfe\x69\x31\x10\x6b\x4a\x34\x53\x71\xb0\x02\x34\x0a\xad\x12\x70\x93\x49\x1c\xde\x53\x54\xd5\xe1\x01\xa0\x86\x1e\x00\xea\xd4\x44\xbb\xb2\xeb\x45\x9e\xa3\x21\xc6\x8e\xba\x0c\x42\x37\x1d\x7e\x63\x8a\x85\x52\x95\x3b\xd0\x0e\xd0\x56\xed\x46\x13\xae\xaa\xae\x59\xb2\x28\x4b\x59\x1d\x2f\x99\xb6\xe2\x91\xd5\x9d\xaa\x13\x25\xb3\xbb\x70\x4b\x7b\x37\xaa\xc6\xa8\x2f\x0d\xb9\x8e\xf8\xf5\x3a\xcc\xc6\x41\x1e\x76\x82\x42\xf1\x2f\x85\x2a\x79\x75\x5d\xa4\x37\x14\x5f\x76\x97\xbe\x11\x2e\x17\x29\x5d\xc9\x80\xd8\x49\x19\x7b\x46\x18\x7c\x0f\x89\x6b\xce\xbf\xe3\x34\xd9\x86\x59\xc1\x55\xf9\x8e\x46\x52\xbe\x46\x78\xb8\x0a\xe3\xfd\xe6\x4a\x28\xed\x68\x38\xea\x2a\xcc\xc6\x4c\x18\x26\x13\xa9\xdf\x99\x3c\x96\x5b\x2e\xd3\xcb\x52\xa4\x03\x35\x25\x6e\x32\x09\xdf\xda\x64\x14\xd8\x24\x11\x61\xc5\x4b\x9a\x4d\x98\x5a\x66\x40\xce\x75\x30\x99\x80\x7c\xcf\xc3\x68\x36\x2f\xc8\x4e\x30\x21\xd6\xf8\x92\x16\x45\xba\x22\x3b\xcc\x14\x5a\xa6\xea\x21\xe3\x5a\xab\x94\xd9\x66\xba\x29\xe2\x88\x24\x9e\x75\x98\xe5\xeb\x70\xac\xe8\x86\xc2\x40\x70\xb9\x59\x46\x6a\x0a\xec\x14\xa0\x79\x49\x98\xf1\x14\xff\x34\x6f\xd4\x20\x0d\x51\x0f\x77\x25\x84\x26\x86\xe0\xb6\xef\xc4\x26\xc9\x35\x83\xc5\x08\xd7\xa4\x71\x7e\x32\x85\xf3\x38\x48\x1a\xa7\x99\xa5\xe0\xcc\x77\xf4\x9a\xfa\xeb\xbf\xaf\x4b\x43\xc0\x02\x64\x2d\x99\xd0\xdd\x4b\x49\xd1\xa2\x9c\x2c\x8b\x86\x21\xa5\x22\xdc\x8b\x5c\xe6\x2c\xb2\xb6\xd2\x8f\x23\xeb\xa8\x7d\x64\x1d\x0d\xc3\x97\x65\xa4\xc9\x7a\x40\x12\x3d\x11\x13\xda\x67\x64\x0c\x2a\x1d\xe6\x86\x72\x38\x4e\xe3\x34\x13\x93\xc5\x26\x2f\xaa\x85\x55\xe5\x1a\x2a\x80\xef\x3a\xc8\xc7\x01\x5f\xaf\x82\x7c\xc9\x2c\xaa\x9d\x45\x61\x52\x04\xbc\x46\xa5\x13\x54\x5f\x47\xfc\xe0\x2d\x8b\xd4\x86\x69\x81\x3b\x6d\xf2\x30\xc3\xb6\xa3\x09\x87\xc1\x92\x6c\x30\x6d\xe6\x2f\x6a\x99\xef\xd2\x59\x34\x0e\x62\x14\x29\xb1\x4d\xaf\x1d\xc7\x86\x55\xf2\x10\x2e\xf5\xe8\xa0\xaa\x66\x69\x1c\xf7\x12\x02\x0f\xc8\x1a\xab\x9f\x8a\x79\xd0\x43\x3b\x9c\x07\xdb\x48\x5b\x84\xd6\x80\xa4\x46\xda\x69\x1c\xee\xce\x4e\x4e\xcf\xaa\x87\xa4\x36\xa9\x62\x2e\x2a\xad\x70\x6a\x00\x30\x66\xac\x35\xf9\x5f\xc7\xa6\x51\xce\x09\x8b\x92\xba\x4c\xa3\x18\x58\x11\x40\x8a\x59\x6f\x4a\x42\x23\xf9\x4e\x33\xdf\x65\xf8\x4e\x7d\x46\xf9\x7d\x70\x4f\x22\x02\xdd\x12\x3f\xa1\xab\x0a\xba\x35\x43\x1a\x15\x13\x30\x2b\x3d\x93\x06\x59\x99\xe6\xa5\x61\x4c\x51\x2d\xad\xcf\x0c\x50\x6a\x91\xa9\x44\x14\xc3\x34\xa1\x11\x86\xfc\xa0\x3e\xc4\x12\x35\x9e\x26\x29\x71\x8b\x3c\x7f\x24\x1c\x66\xaa\x9e\x95\xad\xea\x39\x8d\xc9\xa2\xc1\x0b\x59\xc3\xc4\xf2\xe1\xe1\xee\x69\xc2\x81\x16\xc6\x28\x10\x2f\x5d\xe7\x3d\xb0\xed\x1c\x3f\x6a\x7c\x27\xfc\x7b\xaa\x6b\xb1\xf8\xae\x39\x65\x5e\xca\xe6\xe5\x86\xab\x0d\xb6\x6a\x94\x69\x43\x45\x0a\x26\x51\xae\x76\x37\x0b\xe9\xc0\xe9\xd9\x7e\x68\xb7\x69\xc7\xd2\x2f\xa8\xee\x8c\xf7\x75\xef\x65\xbd\x75\x96\x4e\x36\xe0\xe3\x3c\x88\xf2\x96\x45\xfb\xb2\x6a\x1e\xb2\x3d\xb1\xfc\x29\xeb\x28\x41\x96\xe4\x45\x92\x95\x48\x59\xc8\x4d\x71\xa7\x98\x87\x86\xb1\xf0\x53\x4c\x7a\xa9\x04\x69\xb1\x04\x77\x1c\x38\x51\xde\x1b\x9a\x11\x07\xfa\x21\x96\x84\x6c\x5c\xc1\xb8\x92\x53\xab\x72\x33\x44\x91\x6e\xc7\x99\x26\x61\xfb\xe1\x82\xa5\x31\xa6\x9d\x55\x25\x6a\xe0\x51\x32\x73\x13\x05\xbd\x09\x6f\xe1\x2c\x82\x8c\x8f\xea\x4a\x0d\x6b\x1b\xa5\x93\x30\x5c\x93\x2c\x47\xb4\x8f\x23\x10\x79\x97\x95\x12\x56\x5e\x80\x49\x70\x8f\x95\xd9\x48\x01\xa0\xaa\x16\x07\xb9\x16\x1f\xd4\xe5\x2d\xd9\x09\xf5\xba\xb3\x42\x58\xaa\xdc\xe6\x44\x14\xbc\x2a\xf0\x65\x90\x4d\x60\x6e\x2e\xd5\xea\xf7\x24\x58\x45\xe3\x9e\x36\x40\x4d\xe3\x88\x2c\x10\x51\x16\x6a\x4d\x31\x0f\xb3\x6d\x98\x1d\x5a\xae\x59\x58\x38\x7b\xef\x93\x11\x2a\xdc\x15\x59\x30\x06\x59\xd1\x1d\x70\x7f\x6a\xac\xe7\xfc\x7b\x01\x22\xdc\x7b\x4f\xc6\xf3\x2c\x4d\xd2\x4d\xee\x4e\xa7\x20\xc7\x6a\xb3\x68\x03\x70\x0e\xb6\xbb\xde\x14\xa8\x0f\xb1\x6b\xbc\xc9\x94\x24\x85\x6d\xbf\xc9\xc3\x56\xb8\x4a\xab\x62\x94\x95\xcd\x55\xe1\x9b\x9f\xf5\x56\x80\xbd\xb6\x6b\x8c\xd0\x36\xc3\x06\xc6\xb7\xb5\xc5\x3a\xe3\x29\xe8\xb6\xb5\x2b\x08\x97\x26\x06\x42\x8f\xa0\x55\x49\x37\xf1\xa4\x34\x88\xd4\x02\x42\x41\xd7\x82\x95\xf6\x46\x30\x9c\x79\x04\xba\x4a\x15\xba\x69\x8e\x5a\x95\xea\xbe\xcd\xeb\x49\x94\xaf\xe3\xe0\x9d\x9b\x1a\x9a\xef\x4e\xd3\xec\x2d\xc8\x26\xa5\x2d\x4d\xcb\x2b\x28\x48\x8b\x39\xa4\x27\x68\x11\xf3\x34\xca\x95\xa2\x4a\x9b\xac\x47\x48\x54\x1f\x0c\x5b\x22\x1c\x0c\x56\xa9\x0e\xb5\x9e\x8d\xbb\x0e\x8b\xed\x7b\x21\xa4\x4a\xd5\xe8\x47\xfc\xd8\x54\x6f\xca\x6b\xfd\x62\x05\x58\xc8\x3c\xbc\xad\x0b\x12\x83\x93\x6d\x90\x45\x41\x52\xf8\x49\x11\x57\x15\xa7\xd4\x4b\xe9\x65\xf9\x33\x63\x03\x27\xab\x37\xf4\x94\x06\x90\xea\x4e\x50\xa6\x06\x54\x95\x7d\x15\xf4\x5a\x56\x37\x98\x15\xdb\xad\xa1\x42\x57\xf5\x60\x7b\x6f\x85\x79\x1e\xcc\xa0\xae\xe5\xb3\xca\x16\x43\xbb\x47\x71\x9d\x9c\x1d\x61\x22\x53\x32\x03\x79\x33\x69\x91\x5e\x37\x11\x2d\x47\x98\x8c\x21\xc6\xe0\x62\xf0\xe0\x9b\x9d\x6c\xb2\xb8\xc4\xa5\x1e\x39\x2e\xa3\x0f\x56\x50\xf9\x66\xd2\xd1\x88\x86\xd0\xa0\x30\xc8\xc6\xf3\xb2\x6c\x0b\x1b\x3f\x80\x53\xa4\x7e\xaf\x5d\xda\x76\xa2\xbc\xf4\x1d\xb2\x69\x1d\x92\x0d\x0c\x3e\xf3\x20\x9f\xaf\x82\x6c\xa9\xad\x13\x7f\xfe\x29\xc5\xbd\x74\xef\xc8\x3b\x75\x20\xfc\x4b\x21\x86\xdb\x10\x83\xbb\xfe\x9f\xb2\x7d\xdf\x77\xef\xfb\x7f\xf6\x47\x1d\x17\xaa\x34\x5b\x1e\x94\x98\xea\x4f\x07\x09\xf8\xe8\x1c\xb1\x4f\x18\xb8\xe1\xc9\xd0\x31\xb9\xa4\x37\x50\xcc\xed\x91\x75\xf4\xd4\xba\xbb\x29\x8a\x35\x47\xd1\x31\xc9\x42\x45\x51\x56\x2a\xe5\xc5\xaa\x5a\x94\x37\x38\x88\xae\xf2\xd1\xda\x9b\xe9\x94\x45\x62\xe3\xb2\x57\x64\x61\xb0\xc2\x2b\x51\x0c\x2f\x89\x1d\xa7\x2f\xfb\xef\x3d\x46\xa1\x52\xa7\x5f\xf4\x9b\x46\xa7\xf9\x3a\x4d\xf2\x50\xcb\x34\x6a\x49\xd5\xf3\x68\x15\xa6\x44\xf2\x76\x79\x36\x95\x14\x84\xc5\x00\x53\x05\x35\x08\xae\x82\x1d\x83\xea\x4e\x3b\x91\xb7\x41\x1c\x4d\x48\x5b\x0b\x8a\x8d\x26\xfb\x74\x31\x4e\x57\x2b\xa2\x77\xab\xb0\x98\xa7\x13\x6d\x73\x00\xc4\x0b\x9a\x81\x8e\x9d\xd6\x97\x3a\x28\x4e\x0f\xf1\xc6\x5c\x02\x33\xac\xac\xb2\x20\xb1\x56\x01\x87\xe9\x91\x75\xd4\xc9\xd2\x55\x94\xc3\x4b\x94\xa7\x31\xfb\x8b\x18\x8f\x32\xc0\x9d\xc1\xcd\x77\x55\x27\x59\xb9\x2c\xc1\x86\x06\xa1\x24\x77\x76\x3c\xae\x83\x3c\x7f\x4b\x33\x35\x0d\xb1\x29\xe6\x69\x16\x7d\x68\xc9\xe8\xa5\x48\x03\x62\x25\xe5\xe0\x5f\x82\x3c\xc4\xb4\xd2\x75\x08\x47\x41\x16\x06\x93\x77\xe2\xc3\x90\xfd\xa8\xbb\x60\xf2\xde\x63\xd6\x9c\xf1\xea\xe0\x35\x7d\x57\x8d\x6d\x16\x16\x22\x8e\x1f\x3e\x95\x67\xd5\xaa\xea\x4b\xf6\x3c\x97\xb7\x20\x0f\x58\x17\xbe\x49\x93\xe0\x05\xb2\x5f\x9a\x84\x0c\xc2\x34\xa9\x50\x81\xaf\x08\xba\x4c\x41\x18\x09\x83\x64\x12\x64\x13\x36\x44\xb9\xc9\x96\x60\x4f\x81\x7b\x8c\x30\x9a\x2a\x29\x7a\x2d\xb3\x70\x12\x26\x45\x14\x30\x4d\x09\x20\xca\x15\x0f\x26\xe4\xa9\x6b\x27\x7d\x4b\xe2\x34\x98\xe8\xd8\x38\x28\xe5\x14\xd5\x75\x17\xe5\x45\x98\x70\xbd\xc1\x7a\xaf\xd6\x86\x0a\x48\x96\x29\xa3\x01\xc1\xd4\x18\x0d\x8a\x39\x15\xe0\xb1\x6a\x96\x27\x9e\x87\xc9\x84\xa8\x5a\x15\xc0\x49\x28\xaa\x27\xab\xa9\x1e\x3f\xa8\x23\xda\x69\x79\x75\xa6\xa5\x87\x46\x96\xae\x10\x17\x7f\xc6\xfa\x12\xa1\xbb\x13\x86\xeb\x4a\x67\xe1\x27\xa5\xb7\xab\xfe\x82\x92\xe5\x5a\xbc\x47\x28\x20\x85\xcb\x89\x41\xf2\xb5\xd4\xf3\x00\xfe\xb7\x36\x91\xe6\xbf\xf3\x60\xd2\x0c\xdf\x5f\xd2\x20\x03\xdc\x50\x64\x06\xbe\x3f\x84\xe3\x30\x29\xe2\xf7\xaf\x9f\xf4\x4b\x0c\x88\x92\xf5\x86\x08\x62\x3e\x9c\x47\x45\x18\xc3\x09\x98\x13\xf5\x26\x66\x43\xee\x89\x55\x10\xa9\xdf\x64\xb3\x7a\x61\x16\x9e\xd0\x06\x78\x0b\xc3\x25\xa3\x11\xf3\x3e\xbe\x84\x29\xac\x19\xbe\xab\x05\x57\x2d\xf0\x48\x57\x61\x11\x40\xc4\x0a\x62\x96\xb5\xc6\x45\x16\xe3\x8a\xed\x67\x29\x39\x46\xf8\x45\x94\xd1\xf0\xa3\x38\x2a\xde\xa5\xde\x55\xdb\xb2\x48\x6f\xad\xa8\x16\xfd\xaf\xbd\x9b\x90\x22\x83\x19\x93\x36\x85\x9c\xed\x24\x86\xcf\x99\x89\x9c\x3b\x29\xc3\x2e\xa6\xaa\x85\x7e\x16\xcd\x66\x61\x96\x6b\x30\xb7\xd2\x49\xa0\x3a\x2a\x87\x63\xc7\x9b\xac\xea\x66\x1c\x87\x41\x56\x41\x34\x0f\x8b\xea\xe6\xd3\xa1\x04\xc2\xee\xfa\xfb\x93\x74\xac\x75\x0d\xa7\xdd\x52\x15\xde\x12\x35\xff\x32\xcc\xe4\xcf\xaf\xcf\x04\x28\x22\x14\x25\x30\xd1\x19\xce\x98\x98\x3c\x8c\x25\xc3\xd9\x67\x37\xcc\x3b\x88\xd9\x68\x26\x7c\xaf\xd7\x76\x1d\x11\x59\xf9\xcc\xc3\x93\x60\x1b\xcd\x82\x32\xe0\x44\x69\x74\x65\xf8\x8d\xa6\x06\x08\xcb\x51\xa3\x52\xd8\x81\xa8\x79\xec\xa1\x89\x36\x9a\x50\xc0\x7b\x69\x99\xd6\xf4\x1c\x68\xee\x57\x62\x2d\xef\x9d\xaa\x42\x29\x79\x05\xdc\x40\x65\x4b\xe7\x2a\xb2\x46\x1a\xf4\xf1\x1b\xc4\x4c\x54\xb4\x02\xf6\x5d\x26\x52\x93\x52\xb8\xfc\x1c\x5a\xcf\xb2\xae\x11\x35\xaf\x9d\x76\xa8\x06\x87\x7c\x40\x5c\xca\x28\x26\x7b\x4e\x3e\x8f\xa6\xd0\x3b\xe2\x69\x14\xc7\x1c\xd7\xa0\xd8\x13\xd4\x5c\x7e\x3c\x0b\x8b\x41\x16\x95\x78\x45\x4d\x6a\x26\x36\x37\x99\x3a\x2f\x64\x31\xcf\xd2\x37\x7f\x8a\x89\xc5\xc4\x98\x78\x68\xd4\x2c\x3f\x36\x8b\xb2\x30\x40\xe0\xc2\x94\x35\x41\x1d\x8d\x5f\xca\x59\x0a\xc1\x20\x6b\xb6\x36\xd1\x1e\x27\x18\xcf\x83\x4c\x94\x26\x91\x49\xcf\x44\x6d\x14\xc9\x3a\xf2\x33\x3c\x51\xb1\x56\xb4\x57\x31\xdb\x24\xd5\xcd\x74\x93\x54\xaa\x56\x97\xbd\xb1\x93\x2c\x88\x18\x7d\xc8\x41\x5b\xfa\xa7\xe2\x30\x48\x06\xeb\xfb\x70\x57\xf4\x23\x32\xf8\x50\x4d\xfd\x5a\x46\x6d\x29\x91\x11\x4a\xea\x26\xd9\xeb\xd9\x2f\xc2\x15\xcc\x9c\xb4\x7d\x94\x32\xcd\x1e\x0f\x6e\xae\x88\x20\xb5\x84\xc4\xf5\x82\x6c\xb6\xad\x1c\x34\x88\x62\x01\xd7\xaa\x31\x2c\xc2\xd9\x74\x3a\x2d\x1d\x33\xc6\x53\x14\x88\x38\xd6\x65\xb4\xcc\xab\x08\x16\x9e\x70\x1d\x26\x66\x5b\x5c\xd2\x4e\xc6\x66\x1b\xb1\xf1\xaa\xda\xf1\xbc\xaf\xde\xe0\x22\x9c\x44\xc0\x56\x42\x3e\xb6\x63\x96\xc2\xf1\x84\x49\x5f\x94\xd3\xd6\xd3\x1c\x4e\x47\xa5\x61\x57\x4e\xa3\xd2\x08\x1f\x47\x49\x58\x52\x83\x71\x1a\x6f\x56\x49\x79\x9b\x17\xb0\xb1\xd5\xce\x28\x40\x08\xd4\x67\x0f\x2a\x01\x2b\x9c\x68\x29\x27\x26\x77\x18\xee\x10\x61\xe5\x6c\xd6\x71\x34\x0e\x8a\x90\x62\x04\x49\x0a\x9c\x70\xdf\x64\xb3\x54\xd2\x1f\xea\xaf\xf2\x48\x5b\x57\xc5\xac\xd4\x46\x3a\x41\x96\x47\xc9\x8c\x1d\x83\x2c\x03\xe2\x85\x39\x34\x4f\x8a\x60\x19\x53\x98\xdf\x3c\xcd\xd9\x3d\x36\xe7\x3b\x2d\xed\xb1\x99\x2d\x28\xe6\x5c\x12\xa7\x63\x2d\xef\xf1\x2c\xd0\xe8\x5b\x16\x15\xac\x4c\x45\x19\xa2\xfb\x20\x03\x4e\xd2\x15\x48\x40\x1e\x8e\x37\x70\x8f\x91\x9c\x44\x7a\x8e\xd7\xea\x97\x24\xb6\x34\x5d\x4e\xc2\x03\x0a\x56\xb8\x0b\xc7\x1b\x1d\x2c\x44\x93\xa9\x24\xdc\x82\x29\xda\xb8\xb2\x71\xf6\x3a\x42\xfa\xf7\x5e\xef\xc8\x3a\xf2\x1e\x7c\xe7\xcf\x9e\xff\xec\xf6\xd8\xbb\x33\x9d\x42\xb1\x99\x44\x5b\x0d\xda\x46\x9c\x52\x28\x8a\x07\x77\x02\x85\x95\xe5\xff\x0a\xe2\x68\x96\x54\xde\xd8\xbd\x5b\xb3\x92\xda\x33\xb9\xae\xa2\x6f\x0c\xbb\x07\x8c\x9d\xa6\xc5\x10\x2f\x8f\x8d\x19\x9a\xd7\xe5\xe3\xca\x03\xcd\x45\xa6\xa1\x88\x8b\x22\x6c\x58\xfe\xe1\xc2\xc5\x26\x2f\xa0\x21\x56\x57\xfc\x28\x56\xd0\xa6\x7f\x5c\xb0\x22\xa5\xc4\x98\x78\xae\x1a\xca\x8d\xd6\xf2\x75\x30\xc6\x2a\x55\x57\xfc\xe8\x2d\x23\x2b\x3a\xff\x70\xe1\x4e\x61\x15\xfd\xd3\x05\x10\x8b\xab\x82\x8f\x30\x4b\x5b\x51\x32\x64\x6f\xd0\xde\xed\x38\xce\x15\x29\xcb\xd2\xb4\xd0\x66\xc7\x09\xaf\xcd\x4b\xba\xeb\x45\x1f\x18\x02\x9b\x5a\xd8\x4a\x3f\xc4\x10\x56\x55\x33\xaa\xd4\x31\x00\xc6\xa0\xa8\xd6\x90\xbc\x10\x6b\x0e\x59\x20\x73\x69\xaf\x9c\x9f\x36\xf8\x79\x9b\x02\x6a\x6b\x55\x99\x96\x7a\x3c\xde\xac\x36\x31\xf3\x7b\x18\x98\x4b\x43\x4f\x96\x6e\x88\xcb\xab\x01\xd8\x41\x1e\xe5\x7c\xed\x65\xe4\xe3\x5d\x05\x3b\x3d\x44\xf2\x5e\x97\x5d\x61\x8a\xf5\xe3\x31\x26\x3a\xc4\x2c\x7b\xe3\x97\xe4\xed\x52\x6c\xe1\x4a\x6c\x8c\xa1\xc7\xfa\x4a\xc1\x51\x5b\x62\xe0\x68\x29\x47\xfa\x12\x64\xa7\xf8\x81\x53\xcb\x70\xe5\x4c\xc2\x22\xcc\x56\x51\xa2\x1d\x6b\xf5\xfb\x2c\x85\x70\x16\xe4\x08\x31\x7c\x09\x32\x6e\xce\xdf\xab\xa9\xca\x9c\x4f\x25\xe5\xb8\x55\xd7\x07\x5e\x39\x2b\x2b\x90\xa3\x04\x33\x5e\x07\x71\x58\x14\x20\xc2\xb3\x79\x41\xbb\x7e\xa2\x58\x19\xe9\x9f\xc1\x78\x39\x23\xc8\x77\xb2\x68\x15\x90\xc5\x7a\x5d\x5e\x31\x15\xaa\x2a\xf5\x42\x25\x75\xe1\x61\x6e\x5c\xaf\xd3\xd2\x7f\x95\x6e\xc3\x6c\x1a\xa7\x6f\x1a\xe6\x55\xbb\x55\x33\xd2\x5c\x14\xb3\x4d\x38\x41\xfb\xb4\xf5\x83\x24\x5a\x69\xb2\x09\x88\xc9\xaf\xda\xf3\x57\x10\x2d\x8c\x81\x42\x1a\x31\xa6\x57\x8d\xd0\x68\xcc\xec\xbb\x5c\xc6\xd2\x4c\xf0\x12\x64\x9f\xba\xcc\x3e\xbd\xf7\xa1\x85\x88\x54\x6d\x83\xe2\xbd\x12\x4f\x1e\x81\x4c\x7c\x4c\x44\x71\x09\x85\x36\x73\x85\x34\xf3\x73\xf5\xef\x42\xfd\xbb\x54\xff\xbe\xc3\xff\x46\x62\xc2\xa9\x71\x7d\x46\xbb\x77\x42\x31\x11\xea\xf7\x0c\x1e\x51\x3e\xc1\xb5\x47\x51\x35\x31\x35\x29\x9f\xde\xec\x5c\x30\xa3\x8d\x69\x6b\x3f\xf2\xde\x2d\x57\x4a\x52\x26\x0b\xe5\x05\x3f\x58\x07\x59\x40\x3d\xb3\xdd\x4e\x5f\xd7\xb7\x51\x35\xdf\x4f\x05\x85\x39\xf4\x71\xa0\x05\x85\x17\x3a\xd2\xc1\xc8\xc3\xec\x3a\xcf\x58\xa5\xa2\x29\xdd\xb1\xc3\x3b\xdc\x15\xc2\x9c\xaa\x0c\xd9\x5f\x42\x77\x0f\xec\x09\xa7\x9b\xdb\x92\x86\x93\xf7\xb5\x42\xcb\x37\xa5\x94\x2a\x9a\x15\x96\x18\x57\x42\x80\x30\xd2\x47\x74\xbb\xbe\xed\x87\xbb\xa2\x42\x81\xb2\xc8\xc4\x01\x2a\x2c\x85\x20\x00\xdd\x4f\x78\x26\x7c\x6f\xc7\x29\xb1\x59\x5b\x4f\xb6\x5a\x23\xed\xb2\x31\x2e\xeb\x0f\xdd\x38\xdc\x06\x45\x54\x55\xe1\x82\x03\xed\x90\x62\xf8\x60\x54\xe5\x82\xf5\x9a\x05\xd0\x89\x3f\x86\x2b\xb4\xba\xd3\x4a\x2a\xeb\x8f\xf2\x33\xd3\x9d\x6e\xe2\xb8\xe4\x10\xc6\xb5\xe6\x75\x5a\xf8\x0f\xb2\xc2\x68\xbe\xbc\xaf\x6a\x72\x5c\x78\x75\x88\x47\xf7\x5d\x8e\x70\x5a\xd7\x6c\xe3\xe0\x85\xf4\x2d\x04\x4a\x3c\x04\x93\x08\xa6\xc2\x39\x22\xd0\x2b\xef\x2e\x59\x41\x36\xa5\xcf\x31\x9f\x43\x0e\x53\x8b\xef\x84\xe3\xb4\x7c\x30\x0d\x48\xbc\x0b\x34\x83\x9b\x2b\xa4\x6b\x97\x7b\xb7\xa8\xad\x76\xb1\xb7\xd0\x1c\x5a\x61\x2e\x96\x5d\xd2\x18\xe3\x79\xd5\x82\x2e\xa9\xa3\x0b\x64\x94\xd2\xa5\x9d\x14\x59\x90\x17\x6c\x60\x9b\x65\x64\xb9\x50\x4c\x7b\x1e\xe0\x7c\x48\x4e\x17\x6a\x86\xe2\xf4\xe4\xc4\x6c\xc1\x44\xcc\x5a\x2b\x8a\xc4\x9b\x15\xcd\xfe\x01\x4b\x4d\x85\x69\x8e\xd1\x47\xd8\x5b\x41\xa7\x9d\xa6\x49\xc1\xf4\x73\xbd\xeb\xa7\x0f\x24\x22\xe9\x4a\x77\x01\x6c\x4c\xe5\xb4\x8c\x17\xcd\x32\x5d\xaf\xea\xdf\xa8\x58\x2b\xd4\x35\x73\xa3\x42\x6e\x94\x63\x87\xea\xad\x8d\x3b\x26\x07\xd1\x38\x4d\xcc\x76\xf5\x7d\x2b\x9c\x44\x9b\x95\x51\xa0\xdb\xaa\x9d\x3c\x35\xb7\x0e\x65\x98\x81\xfb\xba\xbc\x44\x90\x88\x26\x1c\x3d\x8a\x86\xa8\xa2\x23\x54\xd9\xa8\x0a\xd7\x01\xcf\x02\x60\x71\xcd\x2d\x95\xa5\x25\x8d\xa9\x1d\x5a\xfd\xb4\x7f\x2b\x61\xea\x53\xc1\x26\x0f\x5d\x98\x1c\x27\xa5\xd7\x70\xff\xfc\xaa\xd6\x42\xeb\xb1\x38\x3f\x35\xf6\x28\x0c\x34\x8e\x33\xe2\x04\x4d\x43\x6d\x0d\x59\x1d\x0d\x18\xeb\x98\xc6\xfc\x31\x88\xa3\x49\x15\x5f\xb3\x0a\x38\x0a\x86\xe3\x66\x0d\x1f\x7b\xbd\xd1\x84\x36\x16\x3b\x10\xb3\x70\xbb\xf7\x38\x4d\xdc\x5d\x04\xfb\x42\xf2\xf9\x65\xf5\x02\x3f\x41\x07\x64\x1c\x6a\xa4\x19\xac\x7c\xaa\xbc\x19\xbe\xe7\x9d\x50\x6b\xb1\x6b\x5c\x55\xe1\x27\x5b\xb6\x0c\x7e\x1e\x14\x1e\xf0\x0b\xf7\x65\x01\x6c\x49\x46\xf5\x1c\xea\x5e\x07\x43\x99\x07\xf9\x3d\x46\x53\x4e\x86\xc0\x73\x17\x06\x5b\xb6\x7f\x25\xfa\x84\x52\x05\xad\x70\x47\x7c\x45\x73\xad\xbd\x63\xa0\x0a\x19\xc8\x66\xf7\x2f\x53\x8d\x83\x1d\xa7\x84\x0e\x1b\xad\xaa\xf3\x2e\xad\x74\x93\x14\xe8\x72\x1a\x65\x79\x81\x88\x5a\x53\x3b\x72\xa2\x09\x55\x22\x2b\xeb\x26\x61\x7b\x51\x58\x68\x2b\x67\x59\x71\x18\xc5\xf1\x20\x59\x71\x5d\xf2\x43\x65\xd1\x36\x9c\x50\xc5\x46\x96\xae\xf4\x02\x22\x6e\xaa\x32\xb0\xec\x2d\x57\xa6\x87\x80\x78\x75\x7d\x68\x8d\x80\xdf\x08\xc6\x45\x4a\x64\xe8\x70\xbe\x0d\x38\x62\xf4\xde\x51\xaf\x92\x29\x59\x69\xbb\x9a\x45\x68\x71\x64\x13\xe7\x98\x40\x75\x95\x51\x9d\xa7\xf2\x6a\x54\x5e\x31\x49\x8b\x34\x73\xe2\x46\x0c\xbc\x63\xd8\x93\xaf\x1c\xad\xc5\xe5\x62\xe6\x61\x51\xad\x2c\x1a\x34\xd9\x64\xa6\x87\x86\x8b\x8a\x7d\xe1\xbe\xb3\x37\xbe\xca\xcf\xaf\x20\x62\x36\x44\x05\x55\x4f\x74\x5b\xbd\xcd\xbe\x15\x0a\x5b\x31\x0e\xd3\x1a\xea\x8e\xc6\xac\xbd\x0b\x9e\x33\x7a\xcf\xd9\x93\x52\xde\xf0\x7c\x2a\x12\x42\xf6\x14\x8a\x42\xdb\xe4\x21\x5b\xcd\x89\x99\xf7\xa3\x95\xb6\xd9\xf0\x8d\x4c\x57\xb0\x3a\x51\x51\x79\x37\x7e\x51\x7b\x3a\x9e\x54\x9d\xd0\xf3\x5a\x40\x4f\x39\xad\xb2\xa8\x1c\x75\x59\x32\x0d\x96\xc6\xf6\xa9\xdf\x65\x20\x81\xb3\xb0\xb0\x15\xfb\x8d\x92\x99\x8c\x23\x0a\x70\x45\x84\x0d\xdd\x3c\x95\x57\x23\x32\x7b\x6c\xd8\x7c\x9f\xbf\xc2\x4c\x03\xfe\x1a\x7d\x10\xce\xac\x82\x1d\xb9\x79\xf2\xf2\x25\x2d\xe8\xa8\x1a\xa3\xb2\xf4\x46\x47\x66\xe6\x08\xc1\x5c\x87\x59\x0e\x2f\xc7\x1a\x9e\x06\xa2\xc9\x64\x92\x0b\x72\xac\x64\x18\xe4\xa1\x9f\xb4\xc9\x5c\x58\xaa\x36\xce\x9e\xbc\x02\x76\x41\xb2\xd1\x43\x38\xe5\x45\x2b\xef\xf7\x97\xb9\x5c\xfc\xbd\xdb\x3a\x43\x29\x8b\xf7\xef\xeb\xd5\x18\x9d\xaa\x7a\x07\xf1\xab\x2e\xaa\xc1\xeb\x80\x43\x78\x31\x0c\x9d\x69\x42\xf2\x66\x75\x65\xfa\x28\x2a\xdf\x0d\x5d\x0f\x28\x94\x30\x31\x91\x8c\xef\xd4\x06\x08\xab\x5b\xae\x48\x23\x72\x21\x67\xe1\xa6\x95\x72\x35\xba\xeb\x31\x86\xa5\x89\x93\x05\x33\xdd\x86\x16\x3c\x83\x17\xad\xa8\x19\x97\xc6\x24\x35\x69\xc3\x66\x00\xb8\xf3\xb0\xd8\x9b\xc4\x9f\x87\xbc\x2f\xd3\x9a\x3b\x6c\xca\x21\x40\xd4\xce\x0d\x8c\xf0\x65\xbb\x42\x8b\x9d\xe1\x1e\xd7\xce\x97\xd1\xfa\xa1\x5e\x65\xca\x90\x04\x03\x30\xc1\x84\x12\x73\x96\x46\x1d\x82\x96\x71\xaf\xab\x28\x3e\xa5\x98\x41\xe9\x9e\x40\x9d\x1a\xe8\x8c\x22\x00\xda\x28\x60\x60\x57\xee\xaa\xf2\x46\x2f\x39\x33\x83\xbe\x3e\xcd\x1d\xe5\xf7\x69\x82\x23\x0e\xa5\xd6\xb3\x0c\xdf\x27\xe9\x1b\xa3\x73\xe9\xd2\x1b\xac\xcd\x10\x22\x1a\x27\x91\xe4\x2a\xaa\xc6\xdc\x0b\x7a\xa9\xf0\xfa\x20\xd7\xd1\x40\xd5\xd9\xfe\xf2\x61\xbb\xde\x15\xef\xa2\x3a\xa1\x3f\xab\xf8\xa2\x26\xfc\x79\x58\xb4\xea\x25\x61\xf2\x79\x53\x40\x42\xec\x07\xeb\x9b\x68\x36\x27\xeb\x4a\x69\xd9\xd8\x64\x39\xec\x4d\x61\x56\x44\xe3\x20\xd6\x5a\x2b\x64\x41\x1d\xe8\x99\x85\x53\x81\x1f\x1b\x3f\x65\x58\x27\xe5\x04\xc0\xa2\x4d\xc8\xa6\xcd\xa7\x81\xda\x59\x7f\xbe\xa1\x33\xa1\x38\x9a\x6e\xda\x48\x73\xb8\x16\xf0\x9f\x3d\xf9\x14\x2b\x65\x04\x7d\xed\x05\x40\xfd\x6f\x08\x70\x24\xdd\xfc\xcf\xd1\xff\xef\xdd\x13\x42\x58\x3d\x21\x7a\xc2\x72\x85\x68\x49\xcb\x13\x72\x62\xf9\x42\xf8\x52\x15\x78\xc6\x7f\xdf\xf2\x84\x3b\xb1\x3c\x21\x56\xb6\xb5\xb4\x85\x78\xb8\xa1\x1b\x89\x1b\xd5\x80\xcc\xa4\xa7\xca\xda\x37\x56\x5b\x48\xc7\xac\x4b\x8f\x17\xb6\x2a\xf2\x7d\xab\x45\x7d\x75\x85\xe8\xde\xa9\x1e\x17\xb6\xea\xb2\x49\xdd\xb8\xd4\x23\x0d\xc7\x77\xe8\x7f\xcb\x6a\x53\x45\x5f\xc8\xcc\x46\x91\xb4\x9a\x42\xde\x60\x58\x37\x3c\x72\x94\xb7\x55\x6b\xae\x6a\xae\x2b\x68\x28\xaa\xe6\x14\x97\x8e\xd5\x15\xcd\x47\xea\xca\xb1\x9a\xf4\xdf\x15\xf2\x4e\x54\x4d\x76\xbe\x78\xb3\x61\x79\xa2\xf5\xa4\xc6\xd1\x56\xe3\xf3\xda\x56\xa8\x60\xe1\x0b\x47\xa8\x17\x7a\xbe\x6a\x02\xe3\x7f\xac\x66\x31\xbc\xd7\x70\x93\x93\x16\x77\x32\x10\x62\x70\x6b\xf5\x84\x9c\xdb\x54\xb1\xe5\x51\x91\x1a\x9a\x9c\x62\x72\x7d\x2a\xef\x5a\x2d\x21\x5f\x6e\x0f\x8f\xa7\x69\x79\xc2\x7f\xa4\xf1\xdc\x59\xbe\xb5\x72\x64\x26\xdb\xb4\x8e\x5d\xf5\xf2\x3b\xda\xee\xd2\x72\x6e\x69\x1d\xc6\x0a\xe6\x8f\xd4\xc1\xcc\x56\xd7\x6d\xf5\xec\x5c\x01\x5e\xfa\x34\xda\xe6\x9d\xe5\x0a\xe7\xae\x65\xb9\xf2\xa6\xa7\xda\xda\xc8\x9b\xaa\x95\xcb\xbf\x6a\xc5\x35\x5a\x69\xdc\xd1\x74\x7b\xea\x61\x9f\x86\x12\x48\x1a\xac\x24\xb0\xdf\x5b\x9e\xf0\xae\xb0\xe6\x37\x00\x51\xb5\xe6\x6d\x82\x1c\xcd\xad\xeb\xa9\xd1\x2d\x64\x93\x00\x02\x90\x76\x54\x9b\x2f\xf4\x42\xaf\xc5\x18\xa4\x40\xa4\x6a\x5e\x61\xda\x6d\x87\xd7\xcc\xa5\xe5\xf2\x85\xb7\xb5\xb9\x77\xd7\xe9\xb7\x2c\x29\xc4\x77\xbb\x9a\x9a\x17\x3b\x8c\x95\xaa\x8e\x67\xe5\xb6\x10\x1b\xdb\x92\x42\xce\x65\xb5\x13\x56\xf6\xad\xf1\x3c\xb7\x1f\xd4\x6e\x58\x3b\x87\xe7\x30\x52\xff\x23\x7b\x5a\x4d\x62\xcb\x93\x68\xe3\xc9\xb3\x9a\x45\x62\x1f\x98\x86\x27\xe4\xce\xf6\xa8\xab\x26\x61\x86\xb4\x5e\x6d\x21\x5e\x6d\x80\xee\x99\x86\xed\x2a\x54\xd8\x39\x87\x67\xeb\x7f\x94\xb3\xb5\x2e\xa4\xbb\xb0\x5b\x84\x18\x03\xcb\x17\x61\xa1\x1e\x4d\x04\x8d\x72\xf8\x40\xd5\x7a\xaa\xf7\x81\xaa\x32\x78\x52\xbd\xaf\x69\xd2\x4d\x9a\xf9\xfd\xfe\xc4\x34\xfe\xea\x79\x89\xa6\x82\xd3\x07\xe0\xe4\xd1\x6c\x1a\x8c\xcf\x9e\x70\xb7\x76\xd5\x54\x53\x0d\x9f\x46\x29\x1f\x9b\xc6\xf4\x9a\x56\x28\x44\x78\xb3\x3f\xb9\x63\x79\x78\x72\xcd\x73\x3d\x39\x5f\x78\xed\x80\x09\x49\x53\x88\x56\x62\x5b\x43\x39\xbd\xa6\x2e\xfd\xd4\x56\x6f\x5c\xd8\x56\x6a\x0b\xf1\x44\x94\x26\x75\x88\x10\xad\x6d\xc1\x0d\xf4\x84\x78\xb3\x69\xde\x12\xdb\x6b\x2c\xc4\x98\xb6\x17\x61\xff\x80\x37\x9d\xaa\x4c\x97\xef\xdc\x5a\x43\xb5\xf6\x6e\xbb\x0c\x90\xb1\xda\x0a\x37\x04\x44\x10\x8f\x06\xbd\xd2\x57\xb3\x1b\x59\x33\x5b\x88\xa5\x3d\x54\xdb\x75\xdb\x51\xaf\x34\x2e\x5c\x6b\x24\xc4\xc2\xa1\x65\x7d\xa2\x6d\xf1\x6e\xab\xa2\x31\x41\xbb\xdb\x52\x2f\x46\x9e\x2a\x49\x50\xe9\x85\xc6\x7a\x86\x4a\x1d\xaa\xd4\x56\xd7\x11\x61\x5f\x61\x83\x80\x4b\xab\x67\xb5\x64\x63\xdd\xe2\x3b\x57\x75\xbc\x23\x38\x74\xdf\x6d\xa2\xb2\xc6\xca\x1e\xdb\xfb\x4b\xfb\x8d\x4a\x5a\xb1\xdc\x5b\xdc\x0c\x8b\x3b\xc3\x36\xa6\xad\xdf\x3a\xa6\xf6\xb6\x36\x0a\x87\xd2\x1a\xea\x47\x43\x69\x05\x8a\x4c\x28\x62\xef\xa0\xc4\x55\x20\x0a\x55\x49\x61\xab\xb9\x0d\x1b\xaa\xc1\x11\x70\x90\xa8\xdf\x90\x46\xe7\xf0\xd2\x5e\xd8\x84\x12\xd7\x18\xfa\x09\xfd\x0c\xcf\x81\x4a\x67\xea\xc7\x4f\x08\x20\xbd\x26\x13\x96\xf2\xff\x88\xb6\xf3\xa5\x63\xb5\x45\xc3\x27\xcc\x19\xf5\x01\x07\xa2\x8a\xa3\x0f\xf4\x7f\x42\xa3\xcf\x1c\x5a\xf6\xe0\xd1\xa8\x11\xb8\xea\xc9\x87\x6c\x58\xae\x7c\x01\x20\x09\xa9\x43\x6a\x9e\xf0\x44\x1e\x4b\x9a\x56\xef\x8a\x1a\x1b\xdd\xd1\x98\x53\x90\x37\x4c\xf8\xda\xb6\x86\x42\x5e\xcb\xef\xb6\x51\x71\x30\xa2\xe5\x8b\x6c\x02\x8d\xa4\xd9\xf7\x68\xf6\x23\xd5\xdb\xcd\x43\xd5\xdb\xc6\xa6\x8e\xae\x08\x6d\x03\x35\xef\x3e\x71\xcf\x06\x61\x3b\x93\x24\x05\x22\xeb\xbb\x23\x3c\x86\x9a\x63\xb9\xd2\xeb\xd3\x43\xc2\x4c\x9a\xa4\xf0\x76\x0a\x6b\xd4\xca\xab\xd6\xdf\x6d\x5e\x22\x4f\xc8\x98\x9e\xd3\x06\xea\x13\x7a\x2f\xc1\xc7\x1f\x69\x64\xa9\xcd\x78\xef\x6a\xfe\xe1\xef\x1c\x83\x6b\x6f\xa8\xac\x5b\x56\x52\xe5\xaa\xeb\x06\xb1\x03\x02\x2c\xc8\x66\xeb\xd4\xc6\x0e\x79\xb3\xc1\x98\x4a\x1e\x2a\x4f\x9d\x6a\xb4\x0a\x03\xdc\x69\x85\x9e\xb4\xa5\xbb\x8a\xae\xca\x29\x55\xe8\x51\x9b\xdd\x5b\x9e\x00\x18\xa7\x2f\xbc\x75\x05\xf8\x76\x9f\x26\x89\xf6\x9c\x8a\x65\xd0\x90\x59\xc4\xe8\xdf\x28\x62\xdc\xa0\x21\xb7\xad\xa1\x60\x88\xd1\x3e\x68\x39\xcc\x12\x7c\x21\x27\x40\x6c\xc2\x9e\x61\x4b\x4d\xaa\x00\xb1\x06\x29\xf2\x3d\x82\x02\xe1\x7a\xf0\x40\x2f\x13\x32\x0e\x68\xfe\x6b\x85\x80\xaa\x8e\x2f\x5c\x41\x9b\x9a\xd8\xb5\x5a\x3e\xee\xaf\x87\xfe\x7b\x42\x8c\x41\xe6\x08\x71\x89\x76\x35\x44\xc5\x73\x14\xff\x74\x6f\x63\x77\x7f\xab\xce\x30\xaf\xc4\xb5\xba\xc2\xed\x28\x54\x78\x59\xa1\x68\xae\x10\xb8\x91\xdb\xaa\x11\xef\xd2\x5e\x1a\xe2\x0c\x91\x64\x59\x10\x6e\xa9\x81\x96\xd5\xbd\x18\x8b\xb2\x54\x37\xa3\x7e\x45\x3e\x86\xc4\xd7\xda\x4a\x7e\x69\x7e\xd8\x56\x57\xdc\xbe\x11\x10\xd7\xd4\xbc\x82\xa2\x42\x1b\x55\xe4\x4d\x3f\x5c\x03\x3b\x52\xb7\x8e\x1d\x32\x96\xcc\x03\xaa\xa5\x56\x18\x72\xba\xf7\x92\x0b\xf4\x56\x74\xa2\xc4\x84\xf9\x4f\x67\x2f\x3f\xcf\xde\xc1\xec\xdd\x4b\xfb\x95\x66\x0f\x3a\x3e\x52\xd2\xd4\xa9\x8d\xeb\xfb\x4a\x5a\xc3\x3b\xc2\xb7\x06\xc2\xdd\xa9\x37\x4a\xb1\x0d\xcf\xdb\x56\x4b\xb4\xaf\x15\x80\x6e\x9b\x0a\x10\xe2\x1b\x6d\xbd\x4b\x9b\x30\xb1\x25\xf4\x50\xda\x6a\xb5\x9a\x0a\xf7\xdf\x5c\xf4\x17\x0a\xaf\x23\x2a\xb4\x04\x05\xb9\x84\x8c\xf4\x9d\xe0\x5e\x18\xeb\x7d\x57\xad\x37\x89\x4e\xdd\x6a\xc2\x5d\x03\x2f\x63\x79\x4f\xcb\x67\x35\x85\xf7\x5c\xed\xbe\xde\x4e\xb5\xdb\x8e\x89\x9d\xf5\xbe\x69\xb4\x57\x3d\x6e\x69\xdf\xb5\x95\x8c\x01\xc1\xfe\x59\x54\x5b\x40\xc9\x04\xde\x73\x85\x92\x24\xb0\xbd\x10\xf0\xa7\x98\xbd\xea\x82\x68\x77\x02\x49\x51\x55\x73\x86\x31\x51\xb1\x99\x3d\x56\xe2\xf6\x39\x38\xea\x77\xc6\x0d\x5a\x2a\x90\x3e\x9f\x16\xff\x14\xac\x5c\x51\x5f\x35\xac\x77\x45\x0e\xd5\xdc\x3d\xd1\x20\x7a\x21\x06\x6a\x53\xba\x8f\x0a\x3b\x5c\x2a\xf0\x17\x0d\x03\x31\x66\xb4\xa9\xe6\x06\x4e\xdc\xee\x43\x88\xfa\x1c\x1c\xd3\x32\x74\xcf\x68\xd9\x7b\xc4\xbb\x1c\x03\xef\x08\x8c\x83\x5b\x05\xe3\x0f\xa3\xb1\x16\x91\x1a\x3c\x24\x61\x06\x12\xc4\x0b\x35\x1c\x94\xb4\xc7\x7d\x20\x52\xa9\x40\x28\x5d\x73\x5b\x29\xc4\x2a\x6c\xbe\xf6\x84\x68\x62\x30\x5d\xc0\x4f\x09\x3d\x4f\xbc\x99\x48\xb2\x50\xfd\xb6\xad\x81\x68\x15\x6e\x35\x86\xae\xaa\xd7\xbb\xc1\xf6\x90\x2c\x50\x33\x59\xea\xd1\x6c\x07\x4a\xaf\x72\xfb\x24\x7e\x13\x26\x90\xf6\xf1\x17\x63\xe8\x01\x4e\x6a\x0c\x24\x5a\x0d\x03\xd4\x50\xfd\x2a\x42\xd4\x3a\x35\xc6\xa0\x70\x4a\x0c\xc0\x75\xdb\x6a\x10\x3b\x0c\x02\x72\xc1\x00\x02\x43\xeb\x87\x5a\x37\xf7\x4e\x8d\xe3\x89\x28\xc9\x0f\xa2\xef\x4f\x0e\x49\xea\xf6\xf4\xaf\x07\x35\x04\xa2\xa9\x41\x4d\x68\x50\xa1\x7a\x38\xa4\x81\x3c\x29\x09\x6f\x47\xcb\xd8\xbc\xa3\xe2\xbe\x16\x02\x02\xe1\x26\x76\x5f\x75\xee\x3c\x70\x27\x65\x3b\x7c\xd9\x12\xf2\x1a\xe8\x37\xf0\x01\x4a\xf5\x50\xd5\x6e\x24\x52\x91\x60\xf7\xd5\x71\x34\xda\xab\xfd\xed\x8b\xbb\x0f\x5b\xed\xbc\xee\x15\x08\xd4\x92\x26\x39\xb6\xbe\xd9\x9a\x05\xfc\xb0\x49\x04\x7b\x20\x86\xb4\xb1\x35\x71\x56\x5a\xa6\xc3\x5b\x48\xc9\x8a\x57\x0d\x10\x57\xda\x2f\x67\x44\x5c\x43\x7a\x1c\x9c\x13\x46\x63\x88\xfe\x0f\x92\x1d\xc1\xc5\x02\xab\x27\xbc\x85\x4b\x58\x7f\xab\x04\x06\xb7\xd2\xc3\xc7\x6b\x6a\xa2\xf9\x43\xf2\xe6\x25\xe9\x2d\x83\x0a\x90\xbb\x34\x2f\xb5\xa1\x9f\x0b\xba\x6e\x4e\xd5\xab\x8a\x6e\xc8\xa7\x90\x0a\x36\x6e\x29\x86\x25\xf6\x16\x95\xbe\x29\xb1\x84\xb6\x8d\x7c\x39\xb6\xa9\xe8\x8d\x64\x33\xb5\x22\x72\x6e\xef\x50\xed\xdd\x25\xa1\x35\x20\xba\x6d\x7f\xa0\xf0\x95\x58\xdd\x80\xf8\x31\x81\xe0\x15\x0a\x66\x86\x9f\x57\xa9\x80\xcf\x1a\xed\xb0\x40\x61\xae\x84\x0e\xb9\xb5\xcf\xf5\x18\x7d\x26\x98\x7a\x90\xaf\xb4\xbf\x07\x54\x34\xe5\xc9\x7d\x23\xad\x92\x16\x57\xf6\xcf\x30\xfd\x53\x57\x0f\xb6\x47\xe2\xa4\xc2\xc3\x86\xba\x5e\xda\x24\xa6\x0e\xce\x6b\x15\x58\x17\xf1\xc4\x99\x4c\x94\x2c\xbe\x96\x01\x11\xf4\xf1\xa5\xab\xa8\xfc\xda\x8e\x18\x80\x8a\xfd\x42\x40\x6e\x0d\xa8\xa3\x0e\x29\x2d\x34\xaa\xf1\x86\x30\xe2\x71\x4e\x43\x78\xc5\xc2\x5e\x9a\x63\x6c\xd1\x8e\x3c\x07\xe2\x9c\xd1\x4f\x77\x07\xe6\x0a\xa2\xf4\x26\x81\x91\x84\x6c\xd0\x2b\xae\xdc\x7a\x03\x6a\xc7\x0d\x2a\x42\x4b\xed\xcb\x05\x88\xd6\x0f\xf0\xa2\x58\x0d\xc0\x7d\xec\xa8\xb2\x6f\x25\xfb\xa5\x4d\xa1\x94\x31\x59\xd8\x2c\x74\xba\x06\x4c\xbb\x5a\x21\x23\x59\x8d\x74\x94\xf1\x1a\xc0\x24\x71\x17\x52\xbe\xb7\xa0\xed\xef\x47\x84\x6c\x39\x0d\xea\x59\xd1\x62\x11\xd1\xfb\x2f\xb4\x0a\xbc\xa5\x46\x73\x32\x99\x74\x63\x03\x06\xee\x15\xec\x39\x4b\x1a\xf1\x88\x5e\x1a\xdf\x55\xf3\xa1\xe9\xba\x97\x18\xcc\x8a\x7a\xe9\xd1\x76\x20\x09\x4e\xc9\xa6\x8a\x07\x90\x6c\x1a\x26\x8d\x7d\xd8\xd2\xdc\xf7\xcb\xba\x17\x04\x8f\x9d\x73\x5d\x62\xab\x12\xab\x3f\x0c\x0c\x70\x4f\xd5\x6a\x39\x3e\x11\x9a\x2e\xb7\x0b\xdc\xe8\x8d\x48\x6e\x5e\x37\xf4\xbb\x43\x21\x46\x5b\x69\x76\xc6\x15\x03\xd5\xec\x28\xdb\xaf\xa8\x60\x77\x01\x35\xc0\xa3\x11\xb0\x40\x77\x42\x8b\xd5\x3d\xad\x2d\x02\xed\x8a\x16\x69\xe3\xb7\x3e\x10\x00\xf2\xc2\xc8\xea\x09\xff\xb9\x20\x81\xb0\x41\x32\xc7\x87\xa3\x48\xdb\x99\x03\x0a\xe4\xde\x96\x6a\xa9\x07\xbd\x00\x64\xab\xf0\x3e\x51\x85\x2b\xd6\x77\x49\xdf\xbe\x35\xe4\x85\xf0\x0a\x63\x27\xbd\xbb\x35\xad\xbf\xa8\x56\x2b\x23\xf4\x5c\x3b\x27\x0d\x92\xfb\x89\xc9\xb3\x79\xad\xa5\x44\x2b\xd1\xa4\xad\xca\x82\xa2\x5d\x11\x85\x04\x5d\x26\x50\x26\x16\x50\xd3\x22\x25\x7a\xc8\xc4\xce\x21\xb8\x6e\x21\xb3\x6c\x1c\xd8\xe3\x62\xfb\x10\xb5\x58\x51\x69\xb0\x43\xdd\x37\xc7\x1a\x8a\x1e\x41\xab\xe3\x13\xa8\x65\x63\x25\x59\x92\x09\xd4\xaa\x11\xdc\x09\xd5\x9e\x72\xe2\x81\xfd\x1b\x1e\xad\xe2\x2e\xd8\x2e\x09\xfd\x6c\xb0\x45\x36\xf6\x37\xaa\xde\x9b\x12\xa8\xdc\xd0\x68\x8d\xa8\x11\x0b\x47\xb9\xcd\xed\x34\x85\x97\x28\xe5\x4f\x64\x76\x7f\x4d\x2d\x85\x4b\xb4\xab\xfa\xfe\x61\x9f\xda\x2c\x32\xa8\xd5\x20\x4d\x7c\x70\xdd\xb0\x06\xe2\xcd\xdd\xa9\x71\x27\xae\x78\xf5\x58\x58\xd3\x46\x95\xc8\x2e\x0c\xe5\x1b\x16\xcd\xe1\xce\x44\xd7\x35\x36\x91\x28\x25\x10\x08\x64\x50\x98\xda\x73\xa2\x12\xcd\xc8\x53\x55\x4d\x21\x68\x0b\x1d\x89\x00\x2e\xa7\xa0\x63\x8c\xb6\xc4\xec\x47\xb4\xe6\x2d\x2c\x48\xb3\x50\xdd\xfb\x73\xd2\x4c\xda\xa7\x4a\x95\xeb\xf5\x7f\xd0\xda\x76\x3d\x08\xaf\x43\x4d\xda\x1d\x6c\x60\x4f\xb8\x4f\x55\x6f\x05\x7a\x3b\x75\x8c\x1d\xd9\x36\x44\x15\x12\x94\xba\x75\x02\x79\x46\x13\x07\x7a\x3d\x12\xaf\x4f\xed\xd4\xd1\xc3\x51\x9b\x99\x0a\xc3\x6c\x4f\x0d\x50\x1d\xd5\xeb\x69\x09\xca\x17\xde\x39\x6c\x63\x84\xf0\xed\x7e\x83\xc5\x3f\xa2\xfb\xc4\x11\xae\x48\xcd\x49\xa4\xc9\xa5\x0e\x6c\x4b\x37\xb3\xdf\xd5\xc8\x9d\xf6\x07\x81\x1f\xe2\x44\x2b\x43\x95\x6f\x0e\xd9\x5a\x77\x9e\x16\x8a\x85\xff\xce\x1a\x99\x14\xb2\x90\x27\x64\x8b\x19\x11\x0e\x9e\x92\x2c\x0c\x33\xc0\x0c\x88\x94\x01\x4a\x27\x0d\x62\xc2\xa7\x26\x65\x6b\xa7\x64\x90\xbc\x96\x31\x0d\x3d\xc8\x5d\x2d\xf4\x09\xa9\xda\xde\xda\x05\x9b\x5e\x86\x42\xde\xa5\x37\xb8\xee\x09\x11\x1c\x4b\x16\x83\x81\x2c\xbe\x10\x41\x61\xf6\x53\x90\xc9\x52\x70\x6f\x28\x0b\x89\xe8\xcb\xb5\x6d\x48\x37\x35\xe4\xd3\x3c\x3b\xf8\x70\x2b\x4a\x27\x09\x63\x99\x67\x85\x64\x23\xbf\x81\x88\xf5\x03\xf3\xbe\xa2\x86\x46\x44\x08\xbc\xb9\x83\x76\x7b\xdf\xf0\x10\x12\xe4\xe8\x43\xd1\x90\x76\x26\xdf\xaa\xe9\xdc\x10\x8c\x76\x9e\x1e\x60\x64\x0b\x9f\xb6\xf0\xd6\xeb\x5b\x52\xbc\x79\x2e\x19\x25\xa4\x9b\xb2\xf5\x4a\x4d\x68\x6d\x1f\x3b\x90\x65\x7a\x30\xbb\x2a\x00\xdf\x54\x04\xf0\x58\xad\x26\x1b\xa3\x9f\xa9\x9c\x10\x76\x8c\x7d\xf8\x4a\x94\x6c\x49\x1c\x70\x67\x67\xae\x2e\x54\x03\x59\x4b\x18\x1a\xd5\xae\x6f\x80\x11\x42\xd4\xcd\x9c\x5a\x27\x4d\xe1\xc7\x12\xeb\xf4\x6e\x03\xe5\x77\xb4\x8f\x48\x94\x7a\x78\x77\xc8\xbc\x43\x2a\x02\xe4\x1f\x6b\x24\x9a\x4f\xf2\x90\x5c\x37\xb3\xaf\x30\xc4\x1f\x37\x1a\x31\xc9\xe2\xba\x27\xd9\x8d\x2b\xc9\x6e\x76\x53\x92\xe2\xc7\xf9\xcd\x61\x61\x2f\xba\xa9\x04\xbb\x05\xea\x2c\x8d\xa2\xf8\xe6\x93\x08\xc7\xfd\x1d\x92\x12\x0f\x8a\x7f\x95\xec\xe6\x56\x7d\x2a\x39\x0d\xfa\x6c\x57\xf5\x20\x33\xdb\x90\x26\x06\x31\x49\x0d\xfe\x0a\xbe\x1e\x25\x59\xb5\x77\x06\xf5\x22\x91\xed\xbe\xcf\x4c\x77\x46\xca\x51\x93\xd6\x8c\xa5\x27\x2a\x50\x02\xce\x42\x26\x37\x5f\x8a\x8b\x4b\x0c\xa3\x14\xf9\x44\xef\xe3\xe6\xe0\x9e\xbd\x96\x58\xf5\xee\xa9\x12\x8a\xbc\xf6\x37\x8f\x9a\x39\xf6\x8c\x66\x5a\x3e\xb5\x03\xd9\xbb\xf5\x9d\xa6\xa6\x64\x18\xb5\x5f\xed\xd8\xec\xb0\x95\x28\xd9\xab\xfd\x02\x42\x8d\x5e\xfa\x58\xe0\xec\xc6\x1a\x88\xef\x8a\x2f\xb7\xc5\xb9\x14\x58\xe8\x76\x8d\x1f\x40\x9f\x85\xe1\xaa\xde\xec\x23\x68\xad\xea\xb2\xbd\xb3\x5f\x61\xf6\x5e\xf8\xc6\xcb\x4b\xc7\x78\x79\x57\x7b\xf9\x92\x50\xa5\x4b\xc2\x58\xfb\xd2\x86\x15\xa0\xed\x1a\x2f\x6f\x1b\xfb\xbb\xe7\xca\xb0\xdc\xef\x35\x57\x03\x86\xf1\xca\x96\xfa\x6e\x2a\x68\xcb\x3b\x7e\xe5\x80\xd4\x19\x35\x48\xea\x8c\x79\xb2\x8a\x96\x34\x86\x8a\xed\xac\xf5\xc8\x32\x7b\x9f\x6c\x2b\xe1\xb2\x2b\x3a\x33\xfb\x93\x9d\x22\x27\x83\x89\x52\x29\x45\x6c\x17\x40\x3a\xa2\x08\x33\x7b\xc2\x37\x8a\x89\xbd\x39\x60\xfb\x3b\x72\xa7\x5d\x12\x69\x58\x73\x8d\x0d\x09\x71\x4b\x85\xe7\x7c\xdb\xd3\x46\x81\x8d\x2d\xad\xa1\x70\x8f\x69\xfc\x59\xad\x86\x84\x93\xed\xd2\x33\xb1\x5e\xc9\x6d\xb0\x51\xc1\x6e\x33\xbc\xac\xa1\xd1\x1c\x66\x98\x92\x13\xa9\x06\x36\xae\x59\x51\xb7\xa3\xc6\x8c\x16\x34\x1a\x7b\x85\xa3\x6a\x5e\xba\x4a\x1e\xfc\xe1\x82\xaf\x8e\xac\xdc\x16\xf2\x99\xf0\xec\x8d\x48\xd0\xa9\x1d\x37\x0c\xaa\xf8\xe1\x7c\xa6\x2a\xc7\xe8\x38\xc7\x76\xc4\x3e\xbe\xf4\xe1\xd3\x50\x23\xff\x7e\xf3\x25\x45\x12\x43\xab\x2d\xfc\x0f\xf7\x9d\xde\x3d\xa3\x1e\xaf\x94\x1e\x77\x90\xe8\xb1\x18\x67\xbd\xd9\xa2\xf9\x72\x90\xec\x8d\x8f\xe1\x1f\x9d\xc1\x70\x73\x49\x38\x11\xef\x53\xbd\x51\x8d\xea\xd1\xf6\x0f\x7e\x42\xf5\x96\xe4\x8b\x6a\xab\x92\x67\xde\x45\x67\x8d\x8a\x58\x9e\x37\xfe\x51\x42\x48\x20\x7b\x27\x30\x8f\x16\xb7\x26\x69\x23\x7b\x66\x61\x13\xf5\x09\x58\x88\xf3\x84\xfc\xb0\x63\x5f\x8f\x53\x4d\x6f\xe6\xe9\x47\x6e\xb1\xf7\x48\x69\x03\x13\x9e\x02\x28\x6d\x58\x03\x8c\x2a\x61\xc0\xd0\x1b\x32\x96\xb1\xfc\x4c\x12\x69\x88\x1b\xe7\x3f\x92\xbf\x5b\xa6\x65\xec\x5c\x89\x17\x77\xfd\x0a\xb8\x3e\x31\x5a\x9f\x4c\x3f\xe4\x12\xbd\x6c\x98\xf3\x88\xa0\x5e\xb0\xc7\x06\xfa\x47\xeb\xc4\x25\xcb\x90\xcb\x32\xd8\xdf\x26\xd8\x91\x4f\x93\x5c\xf8\x5f\xd2\xa8\x6f\x20\x97\xc7\x30\xb8\x14\xf2\x60\xb3\x5b\xc7\x6c\xd6\x7f\x16\x9f\xa8\xfa\x89\xfd\xa2\x44\x79\x3b\x88\x08\x2e\xe3\xad\x0f\xab\xc1\xbb\xf7\xeb\xe4\xea\xbd\x61\x90\xab\x8f\xc6\x57\xe4\xea\x8c\x85\x8a\x73\x32\x65\x5f\xff\x02\xb9\x5a\xb2\x17\x25\xb6\x15\xc1\x82\xa5\xe0\x67\x04\x4b\x6f\x24\x85\x42\xbc\x91\xce\x1a\x28\x6a\x29\x5d\xc7\x10\x7b\x7e\x42\xc4\x5c\x22\x62\x8e\xbf\xd1\x06\xf5\xd2\xb8\x26\x34\xf1\x92\x6b\xf9\xd7\x5d\x12\x92\xd8\xfa\x6d\xef\x5a\x92\x9b\xf6\x9a\x74\xdf\x99\x0b\x2e\x34\x56\xbb\x8e\x8d\x6f\x23\x6b\x2c\x5c\x90\xbd\x77\x1a\xce\x0c\xa6\xe4\x26\x44\x61\x52\x1b\x74\x7c\x09\x89\xa9\x00\xbf\x1f\xbb\x30\x1c\x33\x2d\x53\xba\xf4\x1c\xda\x14\xd8\xd1\x15\x91\x46\x9f\xd6\xbe\x4b\x1a\x1b\x0b\xb8\x83\x4c\xe1\xa4\xff\xbc\x54\xb8\xeb\xdf\x2e\x95\x38\xda\xbe\x73\x2d\x36\xd7\x89\xd4\xfe\x00\xab\x3c\xb3\xb5\x8c\xa0\x06\x02\x83\xcd\x39\xd6\x99\x0c\xc7\xac\xfb\x4c\xc0\xea\xc6\xb7\xe0\x32\xc0\x84\x36\x81\xc3\xbd\x94\x2e\x36\xd4\x55\x83\x2c\xfb\xb6\xf1\xa2\xe8\x7e\x23\x4f\xfe\xa4\x42\xdc\xa7\xb9\xf7\x99\xe0\xd7\x08\x2a\x24\xe1\x9c\xe1\xb1\x26\x0f\x5d\x6a\x2f\xa9\xca\xe8\xfe\x13\xfd\xff\xe6\x7f\x45\x9a\x69\x41\xbd\xc2\xcb\x3d\x2b\xa4\x1d\x4f\x9e\xf2\x4b\xcc\x9c\x6c\xca\xad\x25\xad\x40\x42\x2e\xc1\x25\xf9\x37\x27\x31\x96\xe6\x07\x49\xe2\xaf\x36\x45\xbd\x9c\xda\xd6\xca\x56\xa3\x80\x4b\xb0\xfd\x4e\x6d\x0c\x19\x88\x4a\x01\x10\x4b\x1b\x56\xbe\xd6\x77\x45\x7f\x64\x06\x6f\xf1\xce\x3b\x54\x7f\x24\x44\x50\xab\xbd\x73\xa8\xe2\xcd\x2b\xc9\x17\xcd\x6b\x19\x39\x70\x36\xf7\x14\xb8\x73\x00\x09\x32\x6a\x0b\xba\xc5\x31\x1b\x7a\x41\x09\x79\xcc\x37\x86\x5e\xf8\xa1\xed\x75\xae\x56\x58\x2e\x54\x33\x5e\x9f\xa8\xc6\x25\x2d\xf8\x3d\x68\xe4\x48\x78\x77\xb8\x8a\x6c\x5d\xf9\xcc\xd5\x02\x05\x75\xed\x54\x83\x75\xcf\xc9\x0f\xe9\xb2\xbf\xb2\x29\x9a\x4f\xad\xca\xd6\x43\xcb\xc5\xc6\x9e\x54\xe1\x93\xd7\xa9\x9c\x43\x89\x6a\xc6\x6d\x42\x27\x6e\xcf\x9b\x46\x10\xc6\x6b\x13\xa0\x21\x8b\x40\x93\x76\x6e\xde\x24\xd8\x41\xc8\xb2\x4a\x27\x09\x3c\x97\x2d\x22\xc7\xc7\xae\x53\xee\x23\xd1\x8d\xd1\xe0\xb2\xc9\x8e\xbe\xb6\x68\x88\x02\x4c\xa1\x66\x4a\x02\xbf\x83\x50\x30\xb3\x49\x65\xdd\xc1\x51\x33\x43\x6c\x4c\x03\x2e\x04\x9f\xe8\x81\x6b\x32\xd0\x67\xd2\x8c\x23\x5b\x41\xf1\xd2\x16\x6c\x5b\xd9\x10\xe9\x1f\xd3\xdc\xc7\x73\xb6\x0d\x04\xc9\xad\x35\x10\xcd\xe4\x00\xc1\xd5\x7e\xc4\xff\x77\xd5\x7a\xb8\xa9\xc3\x03\x4a\xbd\x4d\xad\x5d\xd9\x4a\x9b\xfd\x61\xbb\x5b\x42\x16\xf7\x82\x26\xfb\x6a\x43\xbd\xdf\x1e\xd8\xc6\xa6\x41\xef\x5a\xd3\xa6\x5f\x53\x5f\x2f\x21\x99\x40\x3d\x0d\xce\x6f\xf7\xdb\xf3\x8e\xd5\x7a\xfa\x9d\xef\xde\x21\xc1\x2c\x58\x34\x3f\x0d\x60\xfe\x1f\xca\x65\x07\xdc\x0c\xff\x8c\xea\x69\x74\x50\xba\x08\x8c\x1e\xb4\x20\xf4\x66\x2f\xd4\x94\x17\x76\x40\x73\x16\xc1\x87\xc2\x27\xf7\x2b\x7c\x52\x48\x70\x6d\x86\x36\xbc\xd9\xba\x17\x92\x76\x25\x47\xaa\xf1\x56\xc4\x8a\xb5\xc8\x0f\x05\x0b\xbd\xe9\x87\x5c\x9b\xe6\xb1\x56\xe1\x54\xfe\x48\x79\x25\xaf\x89\x1d\xb5\xd9\x3b\xcb\xc8\x04\x88\xfa\x0c\x4c\x7e\xf1\xd5\x46\x34\x5b\xbd\xb9\x57\x08\x71\xaa\xc8\xe7\xb6\x14\x9d\xe6\x08\x08\x51\x12\xa9\x5f\xe8\x81\x4c\xc0\xde\x95\x4d\x10\x4a\xa4\xe2\xbf\xaf\x12\x31\x07\x63\xb5\xb8\x13\x69\xa2\xec\xe9\x2f\xa1\x6c\xfb\x07\x81\x7b\x54\xd8\x9f\x58\x4d\xd4\xfc\x02\xd9\xa0\x68\x6c\xdd\xd9\xcd\x41\xec\x5c\xff\x02\x76\x0e\x3f\x63\xe7\xe8\xff\xc3\xd8\x19\x10\x72\xde\x07\x34\x63\x11\x5c\xfe\x14\x37\x7f\x89\xf6\xb4\x40\x7a\xa8\xc1\x1d\x79\x48\x4f\x6c\xbf\xb6\x7e\x97\x7f\xbd\x7e\x2d\xc5\x34\xc7\xa5\xd8\xf0\xcd\x08\xda\x15\x27\xec\x62\x68\x7e\xb1\x26\x58\xc4\xb9\xb7\x3c\xb8\x88\xc3\x02\x2f\x9c\x81\x79\x51\xf8\xe6\xb5\xbd\xb7\x88\xbd\x9f\xb8\x32\x2f\x64\xb5\x62\x97\xf2\xbf\xb0\x62\x17\xd2\x58\xb1\xcb\x4f\x8a\xd5\x7b\x49\x4f\x96\x70\xd0\x5f\xd3\x9a\x2d\x7e\x93\x9e\x5c\xc8\x83\xf4\xa4\x70\x7f\x81\x9e\x60\x84\x1c\x66\xb2\x4f\x4f\x4e\x6c\x63\x5e\x86\xf6\xc8\x2f\x75\x75\xd8\x81\xdc\xc9\x7a\x73\xdd\x5f\x24\x27\x3f\xef\x40\x35\xe0\xcd\xe5\xd9\x67\x4a\xc2\xbe\x0c\xe2\xa8\x4a\x04\x50\xcb\x48\xae\xe6\x27\xb2\x0c\x29\x05\xea\xf9\xd8\xd3\x35\x85\x44\x5c\x4f\xc4\x6a\xe9\xc6\x1e\x5b\x88\x74\x24\xbf\x81\x87\x1f\x55\xe5\x7e\xde\xa0\xd8\x8e\x83\x78\x5d\x43\x33\x4c\x05\xb3\x6e\x6f\x10\xa1\x65\x78\x61\x3e\x63\xa6\x18\x5a\x5d\xd1\xba\x76\xd2\x1b\x0c\x01\xf1\x20\xa7\x40\x67\xb5\x46\x9d\x33\x82\x94\xde\x59\x57\x60\xc5\x6a\x52\x9d\xb2\x52\xb7\x93\x53\xc0\x88\xda\x09\x4d\x63\x27\xf4\xe6\x1c\xc8\xc2\x28\x3b\x93\x80\xa8\xa7\x84\x7b\xd6\xb1\x6f\xab\xa2\xf3\x5b\x2a\x4a\x1d\x40\xd9\x13\xf2\x45\xaf\xdf\x2d\x6c\x7a\x0a\xfd\x2f\x6f\xbf\xda\x11\xdf\x6f\xab\xa2\x2b\xd4\xda\xf8\x4a\xa0\x1f\x21\x12\x7f\xeb\x7f\x69\x55\xfd\x8e\x0e\x76\x30\x09\xbd\x29\xf1\x58\x4d\xb6\x6c\x64\x20\xc4\x28\x86\x81\x7d\xe9\x59\x03\xd1\x63\x27\x10\x94\xac\x1e\x1c\xbd\x97\x37\x4a\x99\xbe\xa7\x98\x88\xdd\xbd\x36\x84\x3a\x98\x60\x4f\x51\x12\x2d\x90\xaa\xff\x27\x37\x55\xec\x31\xd0\x67\x66\x1f\xdf\x56\x23\x94\x19\x07\x67\xf5\x5e\xa1\x96\x67\x64\xda\xd8\xda\x73\xb6\x69\x34\x50\xda\x40\xd4\x09\x9c\xdd\xad\x77\x08\x98\x1f\x14\xf5\xb7\xb6\x21\x37\x0e\x53\xd4\x5d\x37\x14\xdd\xf9\xb0\xa1\x53\x07\x70\xf4\x8d\x63\xf2\x80\x9c\xc3\x11\xda\x43\x60\xd9\x98\x76\x9e\xbb\xb5\x61\x56\x19\x7c\x54\x42\x63\x66\x47\x4d\x05\xac\x1e\x43\x87\x40\x27\x27\x09\x58\x3f\x41\xf5\x61\x4e\x1b\x05\x91\x70\x1d\x0e\xaf\xa6\x9b\xbb\x57\xc9\x91\xc6\xae\x90\x8f\x4b\x62\x4d\x14\x17\x2b\x9f\xcd\xf7\xe1\x74\x03\xcd\xba\x7f\x45\xc4\x2c\xaf\x1e\x2d\x86\x9c\xdb\x0b\xb2\xb6\x0e\x72\xd2\x71\xfa\x4b\x85\x68\x4d\x79\x85\x90\x73\xb2\x63\xb8\xf7\xd0\x76\xe3\x12\xd1\x5a\x42\x4e\x4f\x8d\x1a\x1c\xac\xc4\x15\x2e\x08\x7b\xcf\x6d\xc6\x2f\x20\xa6\x7f\x0a\xd5\x62\x45\x2d\x3e\x27\xd8\x58\xa1\x9e\xf8\x40\xb8\x13\xc6\x99\xc8\x2e\x43\x31\x5a\x64\xc2\x6c\x27\xae\x81\x5a\xdd\xcb\xa6\x22\x1b\xac\x8c\xc1\x66\xd5\x86\x21\x34\xc6\x3e\x5e\x41\xce\x92\x46\xdc\xb2\x07\x4a\xd9\xe6\x93\x10\xb1\xcd\xc6\xe7\x19\xf9\xc7\x7a\xbb\x9b\xea\xec\xca\x48\xd5\x3a\xb1\x11\xae\x18\xdb\x70\xdc\x77\x43\xe8\xc7\xbc\x8b\xb0\xb1\x5a\xb0\x6a\xf6\x2e\x9c\xb2\x8a\x5b\xa8\x22\x47\xd4\xeb\x7d\x87\xdf\xf1\xca\xab\xd4\x2a\x0a\xe2\xcf\x28\xc2\xa9\xdd\x67\xa3\xf6\xb4\xc2\xef\xc2\x45\x30\xbf\x69\xe7\xc7\x9e\xf7\xc9\xc0\x1f\x6b\x03\x3f\x48\x6e\x0f\xf6\x21\xd2\x94\xe5\xb5\x9e\xdc\xb2\x49\x64\xf3\x54\x6d\x26\xd9\xdf\x99\x64\xc2\x4f\x60\xb9\xdd\x3a\xf0\xbe\x84\x07\x86\xbb\x68\x9a\x85\xd7\x8e\xf6\x10\xb0\x68\xd6\xbe\x96\x3c\xee\xbf\x74\x32\x7c\x6a\xc2\x74\x32\xec\xd8\xbf\x51\xfa\x90\x61\x7d\x53\x1b\xe5\xa0\x7b\xc0\x3b\xb6\x3f\x6a\xcd\x7e\xf3\x10\xdb\xec\xd1\x61\x23\x55\xf9\x9c\x11\x89\x10\x3b\x5c\x34\x54\x7f\x19\xb3\xc8\xf6\xbb\x34\x58\x2f\x16\x3e\x96\xbb\x1a\x88\xbb\x15\x6c\x44\x9b\x30\xcc\x5d\xd8\x42\x91\xc4\x99\xfd\x8d\x23\xa0\xb7\x8d\xcf\x6f\x8c\x89\xba\x4d\x10\xae\x2e\x34\x2e\x36\x61\xdf\x31\x30\x38\xbb\xf9\xd4\x01\xd7\x94\xb1\x4c\x1c\x74\xf4\x46\xe6\x94\xc8\x9e\x97\xbb\x75\x24\xe4\xb1\x34\x37\xaf\x18\x1c\x23\xd6\xeb\x9e\xe8\x7c\xab\x6a\xa7\x9b\xc9\x0b\x58\xad\xce\x10\x60\x0f\x0b\x14\x50\xe1\xd8\xfe\x72\xba\xee\xc2\xde\x38\xe5\x44\x07\x42\x3e\x1d\x9e\x67\x64\x0b\x39\x61\x17\xf2\xa7\x49\x91\x81\x78\x53\x4d\x63\xa0\xe0\x35\x3f\x3c\xee\xb6\xe8\x1e\x6b\x5c\xfe\x21\xcb\x68\x02\x6c\xc5\x84\xec\xb6\x22\xc5\xcf\x42\xfd\x84\xb7\x96\x27\x5e\x96\x2e\xc9\x98\x85\xb3\x73\xd8\x9e\x41\x28\xa4\x94\xdf\x15\x34\x89\x63\x1c\x25\xc1\x59\x17\x90\xfd\x76\xf6\x57\x95\x3d\xe1\x66\xce\x3b\x82\x90\x3e\xee\x7e\xa5\x32\x9c\x46\x83\x5f\x18\x86\xbb\xfb\xef\xb4\xec\x19\x13\x54\x32\xd8\x1d\xc2\xfd\x99\x66\x6c\x60\x9e\xd9\x36\xeb\x14\x44\x6d\xe1\x14\x81\xeb\xb4\x79\xdd\xcc\x38\xde\x11\x7e\x21\x49\xd6\x88\x5e\x29\x49\xf2\xc3\x7a\x47\x5c\x95\x82\x00\xba\x10\x7d\x55\x47\xbe\xe8\x5d\xcb\x25\x16\x7b\xe6\xe0\x90\x4b\x4f\x88\x95\x7d\x8c\x2a\x3f\x6e\xaa\x21\xf1\x01\xaa\x9a\x69\x3c\x55\xbb\x95\x63\x8e\x43\x08\x7c\xbb\xa6\xc1\xe7\x39\xce\x7e\xf0\x8d\xda\x09\x63\xbf\x24\x1a\xf2\xca\x86\x87\xa1\x8b\xc0\x95\xf0\x5a\x31\x7b\xf7\x1c\x11\x11\x6c\xca\x3b\x71\xc9\xaa\x18\x91\xc0\x28\x77\x4a\x42\xe3\x62\x35\x99\x95\xa3\x4f\x46\x61\x88\x6d\xe1\x9c\x2a\x51\xae\x09\x61\x1c\xe0\x1c\x11\x92\xca\x67\x0e\x3d\xc5\x70\x4e\x7d\x76\xfa\x79\xa2\x41\x42\x95\xe8\x46\x14\x76\x82\xf0\xdc\xd6\x35\xa6\x0d\xbb\x62\x3b\x23\x01\x70\x2e\xcb\x40\x3d\x45\xad\xe6\x0e\x87\x80\xf9\x42\x0c\xcc\x66\x29\x90\xc6\xff\x70\xaa\xe5\x3b\x53\x22\x77\xa3\xcf\xb1\x55\x4b\xb2\xc3\x86\x3f\x6c\xf3\x15\x34\x30\x24\x6f\x87\x1b\x4b\x38\x3f\x8c\xf6\xf4\xe1\xb5\x0b\xcc\xc9\x7c\x0c\x1b\xb3\x7f\x69\x47\x4a\x2e\xba\x19\x5d\x02\x8b\x70\xb6\x66\x6d\x7f\x83\x4c\xce\xae\x71\x18\xd0\x22\xa8\x3e\x74\x88\xa2\x69\x9e\x10\x3b\x26\xd2\xd2\xbb\xac\xc2\x86\x71\xe8\xcb\xff\x4e\x8d\x06\x37\x66\xbf\x17\x36\x42\xd6\x80\x4d\xc1\x35\xfa\xa5\x52\x8f\x42\x8a\x27\x11\xa9\xf0\x88\xe0\x17\x21\x8e\x2f\xca\x5b\x73\x3c\xb2\x14\x55\x5a\xdf\x1a\x56\x57\x0c\xd6\x32\x61\xa0\x7f\xf2\x27\x37\xc9\x5e\x78\x8b\xc5\x3d\x2e\x2d\x37\xf2\x3e\x85\xf0\x7a\xc0\x80\x28\x33\x1b\xfa\x6e\xfb\xf4\x2b\x03\xa2\xbb\xb3\xe7\xce\xaf\xef\x2f\x36\x2e\x52\x80\xb4\x7f\xa2\x66\xee\xb4\xaf\x3f\x6d\x31\xd9\xf9\x21\xb5\xc3\xc5\x27\x8b\x00\xd9\x4f\x30\x44\xd9\xbf\xbe\xb1\xca\x28\xd2\x36\x88\x33\xae\xdf\xc8\xc8\x07\x45\x6d\x47\xd7\x0d\x32\xec\xc7\x1d\x52\xc5\x3a\xfe\x89\xa3\x75\x91\x9a\x56\x3e\x2f\x03\x16\x3d\x71\xc2\x71\x6d\x58\xd1\x1b\xab\x29\x3e\xec\x7e\xfc\xa5\xaa\x3d\xbb\x33\x82\x86\xe7\x77\x50\xe4\x1b\x46\x59\xf1\xa5\xeb\xf5\x50\xbc\xf1\x2f\xea\x29\xd1\x9d\x11\xe4\x52\x76\x3a\xd8\xef\x74\x76\x67\x94\xf1\xe0\x58\x9d\x51\x50\x9e\xd6\x95\x18\x9c\x3d\xae\x6b\x42\x1f\x87\x1d\x87\x89\x7c\x85\x18\x8f\x15\xe9\x9c\x78\xda\x8d\xd8\x14\xf2\x01\x5d\xec\x29\x01\x7c\xdc\x6d\x6b\x30\x7f\x6f\xc2\x7a\x53\xae\x58\xba\x7c\x3c\x10\xb9\x9c\x18\xd1\xd3\xa2\x47\x98\xe4\x6d\xa5\xe9\xa7\x34\xbd\xa7\x59\xe9\xd3\xee\x09\x77\x42\x61\xa8\xff\x68\x54\xcb\x1b\xab\xca\x0a\xac\x17\xb7\x24\xcc\x9e\xde\x6a\x65\xee\xcc\x31\x98\xbd\xe2\x6b\x71\xb9\x30\x43\x21\xef\x8a\x32\xf4\x56\xb1\x15\x33\xec\x4c\xf4\x4e\x3c\xa5\x7c\x2d\x64\xbc\xbf\x94\xee\x53\x6d\x25\x07\xbc\x86\x2b\x75\x77\x2b\x13\x45\x26\x46\x97\x36\x3c\x07\xed\xef\x7b\x03\x68\xae\x8d\xe6\xe4\xfd\xcf\x06\x70\xc1\x03\x58\x7f\xc2\xa5\x3e\x05\xe6\xde\xa4\xb6\xb0\x5a\x62\x78\xa5\xfb\x3a\x10\x48\xe3\x56\x3a\xca\xa5\x49\x6d\xbb\x8c\xa0\x91\x1a\xad\x6f\xa0\xab\x92\xe2\xe0\x47\x6f\x9b\x55\x70\x7a\xf9\x14\x4d\x7c\xf8\xd6\x5f\x04\xe3\x18\xdd\x16\xbf\x1f\x8c\xe3\x26\x5a\x52\xce\x49\x01\x6e\x98\xf0\xf6\xee\x41\x4b\x41\xf5\x80\xb8\x57\x3e\xb4\x67\xfd\x16\x6d\xc4\xe1\x35\xa5\x03\x78\xe6\xc2\xe8\x8e\x0e\x63\xd5\x26\xd5\x7a\xa1\xbe\xd7\x4d\xe3\xb5\x51\x71\x07\x67\xb1\x30\x37\x75\x46\x47\xf9\x1e\x29\xc0\xf7\x29\x25\xca\x36\xb3\xaf\x4a\x09\xb7\xda\xd2\xfd\x9d\x1a\x4b\x66\x0f\xad\x96\xb8\xb0\xcb\x48\xa2\x6f\x8e\x21\x1f\xd3\xc0\x2a\x75\x80\x16\x5f\x76\xea\x8b\xff\xc3\xd3\x73\xf0\x45\xef\x4a\x37\x33\x73\x4d\xad\xc2\x20\x90\x7a\x69\x56\x7c\xf0\x48\x4d\xdc\x08\x8d\xa5\x4d\xdf\xfd\xce\xd6\xbb\x8a\x05\x6e\x5d\x73\x25\xdf\xe1\x65\xdc\xee\xef\x43\x8f\x0e\x95\x2b\x11\x10\xb9\x13\x5a\x70\xc5\xb6\x6e\x34\xf0\xbd\xf2\xfc\xfa\xec\x96\x54\xcd\x05\xde\xfd\xfd\x98\xb2\x6e\x19\x53\xb6\x74\x0d\x88\x6d\x6f\x19\x95\xca\xd8\xe6\x0d\xec\xbf\x7d\x3a\x37\x91\x42\x0d\xfa\xaa\x59\xe4\x06\xe8\x0a\xd1\xa4\xb3\x7b\x77\x75\xc4\x3d\xc6\xc8\xcf\x55\xa1\x3b\xa9\x10\x4f\x51\xdf\x6b\x88\x6c\x91\xdc\x0b\xe1\x1f\x2a\x04\xa9\x2f\x18\x42\x1c\x87\x88\xbc\x51\x6f\x8c\x15\xa1\x66\x23\xf4\x7f\x16\x20\x77\x51\xd2\x10\x6f\x42\x07\x87\x93\xbb\xaf\xa9\xc6\x19\x53\x0d\xae\x63\xa2\xe6\x5c\x61\x76\xbb\xcf\xd4\xe2\x93\x1e\x44\xde\x1b\xff\x56\xf5\x00\xb1\x70\x7c\x7a\xa7\x07\xd7\x86\x4d\x45\xfd\x14\xf0\xe1\x9e\x91\x9a\x11\x5c\xb5\xac\xa1\x70\xaf\xe5\xca\x36\xdb\xfe\xb9\xd8\xad\x04\x4f\x87\x0c\x18\xb5\x18\xc9\xd6\x2b\xb4\x90\x03\xf5\xe5\xa9\x4d\x87\x01\xca\x0e\x3e\x4b\x52\xda\x1b\x51\x6f\xb2\x8a\x11\xf1\x95\x6c\x4c\x22\x69\xdc\x22\xc1\xa3\xe5\x8f\x3e\xc9\x1d\xbe\x90\x9d\x73\x4c\xfa\x9d\x91\x57\x0a\xf9\xb2\x82\x07\x5c\xf5\xf2\x08\x7b\x98\x92\x80\x9e\xaf\x50\xf3\x47\x29\x6d\x78\xb1\xb9\xad\x7a\x38\x2f\x3a\xb3\xe3\x96\x35\x10\xd1\x0d\x05\x5c\x5e\x7a\x9a\x35\x5d\xb9\x88\xf2\x37\x82\x86\x4d\xb2\x69\xc8\xda\x30\x1c\x9b\x07\x4c\x53\x5b\xf7\xac\xc6\xbd\x26\xf9\x24\x58\xb8\x7b\xe7\xe2\xf9\xf8\x32\x0c\x47\x1a\xd3\xea\xef\x5c\x93\xc4\xef\xe5\xce\x7e\xff\x19\x8e\x54\x1b\x16\x2d\xb2\xb7\x27\xd8\x2c\xb4\x14\x8c\x9d\x1e\x4e\x4f\x23\xa0\x01\xd1\x2b\xcc\x6a\x60\x9b\x40\xd0\x75\xdf\x92\x6a\xf0\xa5\x57\x01\x32\xc6\x81\xe8\x86\xb9\x7d\xdd\xf8\x8b\xe9\x92\x88\x36\x5e\x54\x39\x1e\x64\xe1\x1c\xac\x42\x84\x56\x78\x00\x00\x22\x42\xbc\x44\x72\xa7\x90\x48\xd9\xff\x75\x46\xf2\x5c\x98\x78\xfc\xa8\xb5\x17\x47\x52\x38\xfc\xd6\x37\x1b\x16\x7d\x5f\xe1\xe0\x0c\x90\x4d\x29\x1d\x40\xf4\x75\x14\xca\xb9\xb1\x98\x7f\x35\xbb\xc4\xa1\x91\xc4\xcd\x72\x76\xee\xd6\xc1\x0c\x30\xae\xee\xf1\xa1\xfa\xc7\xb7\xc6\x54\xf7\x27\xe0\x8b\x6e\xe2\x7e\x07\x29\x7a\x73\xcd\xc1\x66\x37\xec\x86\xf8\xe5\xf1\xe1\x5c\x7f\x71\x6f\x24\x0e\x71\x0e\xd5\x48\xe8\x18\xb0\xf7\x43\xc9\x12\xdd\xb5\xe4\xde\x57\x8e\xb1\x6f\xbf\xd4\x4b\xf9\x54\xec\x2f\x62\x3f\xb6\xf8\xa2\x65\xe4\x63\xd9\x47\x07\x54\xb9\xa6\x03\x9b\xde\xc9\xdd\xe1\x7e\x7d\xd1\x5d\x38\x6c\x37\xd8\x4a\x13\xab\xf9\x60\x1a\xb9\x7b\x10\xa5\xe3\x91\x2e\xcc\xb8\xfc\x46\x13\x89\xec\xf5\x2d\x19\x9d\x3f\x9f\x07\xaf\x8f\xe6\x9a\x76\xcc\x78\xeb\xd5\xf0\xf7\x1e\x6d\xcc\x5b\x07\xaa\xae\x89\xed\x7a\xa8\x33\xb3\x0b\xdf\x18\x08\xce\xa2\xb6\xdf\xc0\x78\x3f\xb0\x27\x29\xa4\x91\x8d\xbc\xf0\x28\x5c\x91\xc0\x9f\x7c\x0e\x04\x54\x84\xe2\xe1\x82\x95\xf2\x40\xf8\x74\xa2\xc6\xdf\x41\xf9\x67\x13\x28\x68\x21\x0e\x85\x76\x2f\xc8\x94\x43\x18\x33\x97\xa8\xd7\x4d\x60\x73\xbd\xa0\xa3\x08\x6b\xfb\xa3\xac\xa9\xde\x0e\xc8\x33\x14\x9b\x13\x1b\xd2\x7c\xd8\xfb\x35\xbf\x35\x3b\x49\x41\x6b\xaf\x4c\x2a\xdc\x5d\xdd\x12\x67\x68\xab\x1b\x3a\x15\x39\xa0\x35\x44\x4c\x92\x5c\x78\x15\xb6\xe0\xec\x46\xf7\x8d\x8c\x2b\x4f\x7c\x77\x41\xe2\x03\xf2\x46\xf4\x2e\x69\xa7\xb4\x56\xe8\xf5\x1c\x4b\xbb\x53\x4d\x68\x51\xe0\xe2\x56\xc1\xe7\x5e\x41\xc6\x01\x9d\x1c\x93\xe1\x7e\x06\x4b\x2f\x69\x69\x91\xcd\x91\x67\xe4\x2f\x4b\x1d\xf3\xee\xd8\xab\xea\x9d\x34\xc0\x2f\xda\xc2\xef\x50\x60\xe1\xe9\x0d\xc5\x4d\xdf\xfb\x3d\xed\xf6\xbc\x6c\xbc\x54\x3c\x88\x4e\x8d\x75\xb2\x7d\x60\xed\x71\x16\x18\x99\xc3\x4b\xc5\x58\xbe\xbb\x97\xe4\xc0\x72\x0f\x38\xb0\x2e\x25\x1b\xf8\xc9\x76\xc4\xce\xe1\xbb\xaa\x6d\x39\xb7\x4f\xb1\x82\x7c\xc0\x8c\xad\x08\x21\x72\x11\x58\xe5\x41\xcb\x2b\xb0\x4e\xd1\xdb\x21\x15\x50\x4a\x72\x7a\x46\x06\x08\x9d\x72\x01\xed\xf7\xb2\x7b\x55\x63\x66\xc3\x0f\xd9\x33\xcd\x0e\xf2\x43\x72\x33\x7d\x00\x5f\xc9\xfe\x4d\xf3\xc8\xd8\x67\xea\xb3\xbc\xd7\xad\x96\xbb\x25\x81\x0f\x9b\x9f\xc4\x20\x34\xef\x4e\x39\x72\x98\x44\xdc\x6b\xc5\x78\x1c\xc1\x3d\x5e\x61\x6d\x33\x42\x1c\x22\xd1\xa0\x4d\x83\x4b\x9b\x69\xd3\x37\x17\x8a\xce\x50\xc8\x97\xa2\xbe\x00\xe4\x0b\x61\x61\xb9\xe6\x0b\xe9\xc3\x15\x02\x49\x13\xb6\x30\x9e\x30\xef\x60\x13\x5e\x32\x96\x6c\xcf\xe1\x87\x3c\x26\xed\xb1\xf1\x45\xfb\xda\x5e\x1d\x38\x7a\xf0\xaa\xf6\x7f\x9b\x4c\x45\xf7\xd5\xf9\x6e\x45\xc4\x7d\x9d\xeb\x6a\xa5\x0f\x44\xb9\x42\x1e\xdb\x0b\x2c\x35\xac\x58\xcd\xf8\x06\x4b\xbd\x70\x2c\x57\x9e\x9e\x23\x0d\xd7\x46\x16\x3a\x6b\xc3\xff\x41\xb9\xb3\x7e\x9c\xc9\xde\x46\xed\x5c\xf1\x83\x0f\x8a\xe2\xdc\x5a\x20\xdc\x63\x79\x0a\x1c\xa7\x48\x86\xb8\xf5\x73\x22\x6d\xe0\x1b\x84\x29\x3e\x87\xc2\x27\x12\xeb\xeb\x48\x28\xe8\x3e\xd2\x01\xaf\x13\x0f\x51\xad\x74\xc2\xb1\x35\x22\x25\x46\xad\x99\xbf\x95\x6f\x8d\x2f\x4c\x64\x6b\x88\x59\x6f\xa6\xb0\xca\x5e\x39\x32\xb2\x79\xfd\x2b\x1c\xc8\x4f\xef\xac\x2a\xb2\x51\x8d\xea\xd2\x5e\x73\xa8\x67\x57\x34\xef\x36\x7c\x18\x4f\x9f\x64\x83\x25\xfe\xc3\xe6\x03\x6d\xb5\xa9\x91\x65\xdb\xdf\xd4\x39\xd3\xdd\xe7\x7a\x3d\x2d\x57\x60\x77\x0d\x84\x9f\x35\x22\x35\x9a\xb8\xd1\xb7\x7c\x31\xf3\xfc\x26\x27\x59\x48\x6d\x21\x1e\x93\x16\x72\x4f\x21\x85\x55\xda\xe2\xed\xd8\x54\xb3\x24\x0e\xfd\x86\x8a\x0f\x29\x21\xd8\xc6\x16\x5a\x4d\xa9\x2a\xc2\xa0\xd2\x8e\x30\x0c\x45\x4b\x29\xff\x8f\x9b\xf9\x12\xe1\x53\x2b\x29\x64\x80\xd0\x75\xb2\xc6\x0e\xc9\x37\x17\xe8\x6b\x0e\x50\x68\x5e\x69\x5f\xbd\x2a\xbe\x2d\x2b\xf6\x0a\x9b\x48\xd3\x8a\xc0\x7d\x62\x9f\x2a\xe0\xc9\xe3\x03\xac\xb1\x4c\x3d\x72\x46\x38\x3a\xe6\x83\x16\x6d\xcd\x84\x76\x4d\x43\xc8\xcb\xec\x9c\xc4\x4d\x05\xd8\xd6\xb4\x8a\x12\xa0\xc0\x88\x87\xd2\x64\x37\x7a\xb1\xda\xe2\xd1\x27\x33\x81\x74\x6b\xb6\xdb\x1f\x4d\xa5\xd3\xca\x39\x7b\xf6\xc1\x5b\x8d\x87\x91\x2d\x3c\x9a\xe9\xce\xfe\xa8\x3d\xe3\x98\x53\x72\xed\xad\xed\x1c\x7e\x49\xb8\x57\x4f\x0f\x57\x6c\x09\x7f\xa1\x09\xc0\xec\xce\x6a\x0b\x97\x50\xa7\x75\xa3\x73\xb7\x88\xb6\x06\x98\x0e\xb2\xf5\x2e\x25\x98\x0f\x5c\xf2\xcd\xad\x53\x85\xdb\x7c\x27\x24\x1c\xa1\x72\x19\xbe\xc4\x97\xf4\x8f\x34\xda\x63\xb7\x85\xf6\x49\x0f\x96\xc6\xe9\xf0\x73\x3a\x12\x83\x18\x5d\xa5\x50\xaa\x21\x39\xf0\x79\xc0\xd2\xd3\x3d\x6b\xaa\xd9\xbd\x9c\x2b\x3e\xd1\x7d\x82\x81\xac\x09\xdf\x25\x60\x4b\x12\x30\x3c\xf1\x2e\xc9\x44\xfe\xb7\x5b\x26\x70\x0a\xaa\x37\x4e\x75\x23\x96\x76\x7c\x03\x7e\x43\x3a\xc1\x5c\x72\xd5\x53\x98\x85\xde\xef\xd8\x45\x73\xad\xed\x0e\x8a\x16\x46\x94\xa0\xa3\x03\xba\x58\x0e\xa2\xa0\x45\x1f\xc1\x31\xa3\x06\xa1\xc0\x3d\x29\x43\x81\x11\x42\xcf\xf9\x5d\xd4\xee\xe5\xc4\x42\x9f\x4f\x14\xcb\xb9\x8d\x5a\x44\x61\x90\x8c\x85\xce\x38\x7b\x48\xe7\x03\x54\xa9\xa7\xf3\xf1\x29\x83\x9d\xd2\xa4\x67\x1d\x73\x02\xb9\x43\x41\x4d\xe7\x20\x78\x7d\x60\xf3\x58\xc0\x0f\xd1\xec\xbc\x35\x0d\xc0\x3c\xd6\x01\x93\x01\x30\x90\x8b\x48\x53\x76\xd7\x92\x5f\xf8\xa2\x75\x72\xef\xc0\xe5\xc3\x20\xe2\x90\x23\xb6\xfa\x57\x29\x86\xb6\xd8\x21\xaf\xbe\xb1\x62\xb4\xf1\xdc\x56\x6d\xb1\xf6\xc6\x04\x11\x37\xa6\xc6\x17\x7b\x6b\xf5\x0a\xfd\x87\x7c\x21\xee\xb1\xad\x57\xaa\x29\x7a\x58\x1f\xd2\x70\xc4\x68\x05\xe1\xe4\xf8\x06\x7e\x25\xab\x2d\x6e\x04\x1c\x78\xdd\xe3\x1b\x52\xc4\x49\xbf\x9d\xdb\x55\x21\xa9\x49\xaa\xb4\xcb\x41\xdd\x2b\x1a\xfd\xa0\x03\x8e\x34\xa4\x53\xcb\x6a\x60\xd7\xc8\xc3\x96\xdf\x23\x6a\x6c\x28\x36\xce\x5c\xb2\x34\xe7\x09\x11\x9c\x52\x06\x51\x3e\xe2\xfc\x8e\x04\x61\xb4\x11\xda\xf7\x56\x4f\xb8\x85\x71\xba\xbe\x24\xba\x24\xa4\x48\x9d\xa0\xd0\x8f\xd4\xd6\x2a\x1c\x8a\xbe\x7f\x67\x49\x6b\xf0\x71\xbb\x9f\x33\xef\xb3\xae\xf4\x59\x7c\x02\x3b\xdb\xd5\xd8\x19\x8b\x6e\xe0\x63\x90\xea\xf8\x51\x6b\x44\x96\x9c\xe7\x7d\xe9\x50\x74\xe9\xf0\x7e\x37\xa4\xe1\xd6\xa5\xc7\x33\x6c\x9f\x95\x7d\x7e\x87\xad\x7b\x67\x85\x42\xae\x41\x90\x0a\x35\x7f\xff\x49\x07\xc9\x7c\x97\xed\xcd\xad\x62\x67\x33\x3b\x91\xd5\xac\x5c\x1c\xab\xf7\x5f\xa5\x91\x94\x82\x8c\xc1\x8b\xea\x60\xff\xdd\x12\x11\x8b\x08\xb0\x42\xc2\x95\xde\xc9\x2d\x53\xba\xa1\x42\x2d\x24\x5e\x3c\xbd\xad\x57\xe8\x89\xf6\x07\x22\x1c\x77\xea\xc9\xdc\xb9\x05\x27\xa8\xc1\x35\xfe\x0c\xd7\x1a\x30\xb1\x46\x1e\x38\x12\x00\x7e\x58\x56\xf8\x3d\xe0\x1e\x06\xde\x95\x73\x08\x78\x1b\xe9\x9d\x11\xf0\x22\x0e\x20\x52\x43\x6f\x2a\x8c\x7a\x95\xff\x2c\xc4\xba\x94\xc3\x20\x20\x07\x8c\xaf\xd3\x6e\x46\xb5\x31\xea\x54\x2b\x24\xd2\x5c\x60\xeb\x26\xa0\x5a\xdf\x29\x18\x71\x07\x73\x94\x22\x07\xd7\x92\x31\x59\xb2\xed\xb8\x9e\x55\xae\xfd\xac\x66\xd1\x58\x74\xf6\xb1\xf9\x3b\x95\x34\x25\x4c\xad\xdd\x3d\x9c\xe6\x60\xad\x37\xaa\xd4\x6e\x1a\x55\xaf\x29\x6f\x0e\xfc\xf0\x39\x87\x5c\xa1\x5a\xf3\xfc\x5e\xad\xc1\xd2\x3e\x43\x4a\xb5\x36\x67\x34\xed\x91\xc8\xe0\xd2\x09\xa2\x36\x71\x43\x13\xf0\x2b\xd9\xeb\x01\x69\x5f\x54\xc3\xd7\x98\x79\xbb\x4c\x81\x08\x60\x5f\x91\x10\xd6\xc5\x31\xd6\x2e\x19\x1a\xe7\x0c\x5f\xcd\x56\x03\x32\x4e\x30\x91\x9c\xc9\x3e\x87\xbf\x28\xce\x0b\xad\x8d\xe8\x0c\x9f\x5b\x27\xfb\x43\xfb\xf2\xbe\x46\x6d\x7e\xd8\xa5\xe9\x93\x44\x5a\xb0\xcb\xe6\x90\xcc\x7b\x30\xa1\x77\x85\x77\x2e\x25\x04\x7c\x32\xa7\xc3\x24\xf0\xd1\x62\x1c\x2c\x0d\x2e\xfe\x0f\x44\xb8\x21\x28\x04\x0a\xe9\x69\x57\x09\xcf\x6b\x7b\x45\x70\x7e\xa4\x8c\x38\x3a\x7b\x49\xf7\xc7\x1d\x45\xf3\xc8\xeb\x3b\x7d\xeb\x09\xef\x11\x6c\x8f\x72\xd6\x91\x56\x4c\x07\xdf\x1e\x11\x1c\x78\xee\x68\xbf\x06\xfa\xee\x52\xca\x90\xaa\xee\x77\x3e\x6c\x4c\x3e\x0a\x52\xe3\xee\xe1\x09\xb9\x54\x72\x84\x1b\x03\x97\x57\x77\x87\xf8\x0c\xa8\x10\x8f\xfb\x58\x29\x0e\xa3\x9d\x1d\xb5\xb4\x95\xd7\x35\xbc\xcb\xa3\xf3\x26\xf2\xdb\xea\xcc\x4d\xf7\xbc\xeb\x04\x14\xe6\x1d\x4e\xa3\xbd\x36\xc8\xf0\x2f\x50\x97\x73\xed\xa4\x0d\xcd\x1a\x28\xa1\x16\xa7\xea\xc9\x3d\xb3\x6a\xc1\xfe\xcd\x76\xe5\x39\x8e\x29\x24\xa0\x79\xe2\x56\x5e\x62\xee\x3c\xef\xd0\x66\xa1\xa8\x62\x77\x6d\x5f\x22\x84\xf1\x04\x12\xc0\x35\x04\x08\x68\xf2\x85\x1e\x2f\xa2\x45\xa0\xe7\xc2\x1b\xca\xca\xff\xae\x65\x3e\xaf\xd5\x66\x0a\x83\xb3\xbf\x12\xb4\xac\x7b\xcc\x66\x4d\x8a\x2c\x78\xc1\xee\x9b\xf3\xd1\x3d\x92\x27\x9f\x0b\x0e\xea\xa0\x9f\xe6\x89\xad\x96\x2c\xb1\x79\x36\xcb\x36\xc7\xe6\x7a\xe2\xda\x76\x80\xe1\x34\x9c\x0d\xaa\x2f\x3a\x04\xf3\x65\x07\xc8\xda\x13\x4d\xf2\x7b\x38\x82\xba\xf0\x90\x1a\x49\x75\xf3\xd8\xa0\x83\x31\xaf\x74\x4a\x59\x9e\xda\x97\x1d\xa3\xfd\xee\x99\x5d\xa2\xf3\xc8\x48\x32\xd8\xde\x1e\xac\xd5\x15\xa2\x77\x0f\xa7\x18\x61\x7d\x6b\x77\xb0\xda\x48\x88\x00\xb9\xbd\x9d\xca\xaf\xd4\x9d\xdb\xe4\x2e\x27\x5b\x8e\x68\x5f\x7f\xd9\x81\x6a\xb9\xcd\xe7\x2a\xb7\x90\x67\xb0\x04\xa3\xcb\x8e\x35\x10\xab\x5b\x3a\xa6\xb6\x38\xe0\x89\x46\x5e\x3c\xed\x89\xe6\xa6\xc9\xc3\x14\x26\x6d\x63\xbd\xe8\x2c\x74\xe1\x11\x6f\x7a\xb5\xcf\x8d\xe3\x10\x9c\xe4\x07\x2e\x98\x3a\x15\x96\x1f\x36\xd2\xe1\x0d\xe7\x86\xf0\xe1\xe2\x10\x16\x0c\x06\x2f\x27\xf7\x3a\x84\x85\xb8\xd9\x2d\x9d\xc0\x96\xaf\xb7\xd5\xad\x68\xe7\xec\x53\x20\x7d\xbd\x3d\xa3\x9f\xde\xb9\x6d\x0d\x45\xf3\x18\xac\x99\xf4\x83\x57\xa4\x2c\x66\xe9\x34\xdc\x12\x6d\xba\x54\xaa\x29\x32\x10\x32\x31\x7e\xb3\x17\x12\xd1\x4e\x38\xf0\x84\x40\xa1\xdc\x46\x1e\xda\x44\x22\xe9\x25\xe2\x3e\xbe\xdb\x66\xcf\xcb\x36\x6a\x9e\x93\xbf\xcf\xdf\xba\x64\x39\x1a\xbc\x12\xbc\x46\x89\x12\x90\x5f\x1b\x6b\x3b\x55\x14\x57\x8c\x92\xae\x01\xd3\x5e\xdc\xde\xc3\xfe\x9e\xf0\x38\x57\xf0\x19\x62\x93\x52\x64\xbb\x5b\x77\x75\x45\xb5\x44\xf5\x4d\x93\x7b\xd6\x40\xb8\x97\x52\x87\x91\x60\xaf\xa6\x36\xb9\x2b\xe5\xb9\x5d\x2f\xa7\x3d\x2c\x77\x76\xd1\xd1\x31\x01\x23\xd1\xed\xe3\x90\x65\x3d\x16\x80\x0e\xb8\xc2\x78\x92\xb4\xeb\x98\x30\xac\xf2\x80\x02\x24\x4b\xcc\x36\x2b\x67\x37\x10\xed\x6b\x79\x0e\xb3\xd1\xc5\x7e\xab\x1f\xb5\xd0\x21\x9a\x86\x24\xbd\xd6\x75\x0e\x9c\x35\x9c\xdb\x6b\xd0\xaa\xbc\x4b\x9d\x5c\xc2\x3a\xfe\x26\x29\xc1\x82\xcd\x61\x31\x3c\x36\x4e\x03\x4d\xfa\xe1\x82\x2b\xda\x60\x32\x6d\xd1\xde\x3a\x38\x00\xd6\xfe\xe6\xa3\x1a\x21\x2e\x59\xc5\x45\xfb\xf5\xb6\x3a\xdc\xca\x87\xf7\x1f\xf6\xd9\x7b\x0e\xae\x70\x5d\x0b\x51\x82\x81\x5c\xb2\x79\x86\x7d\xfb\x38\x9e\xa9\x6b\xee\xdc\x4a\x82\xf6\xce\x1e\x94\x72\xb6\x95\x73\xf4\xbb\xef\x79\x07\xdb\x21\x5f\x84\xda\x06\x4d\x32\x5d\xdf\xd2\x79\x36\xb1\xb0\x0d\xf5\x3f\xdc\x9a\xc8\xd4\xdd\xa9\x7d\xe1\x9d\xda\x55\x14\x9f\xe6\xf3\x80\xfa\x03\x84\x3c\x0a\x6f\xe9\x63\xbf\xbc\x12\xe7\x73\x91\xec\x7c\x89\xfc\x64\x93\x63\xc8\x19\x38\x84\xfc\x46\x6e\x86\x09\x12\x12\xa9\xb2\xb6\x68\x3d\x59\x4d\x71\x7b\x6e\x2f\x5b\x68\x02\x0c\x77\x04\x7a\x3a\x86\x1d\xa8\x8d\x53\xb8\x24\x6a\x3a\x03\x44\x68\xfa\x42\x3e\x50\xd2\x9f\xf6\x3d\x5b\x20\xf5\x82\xe2\x95\x2e\x8d\x37\xbf\x05\x7f\x53\xd8\x45\x9a\x9b\xf0\xe7\x34\x56\xed\xe3\x5e\x94\x1e\x6f\x05\xe6\x59\x8b\x4e\x47\xbf\xda\x1f\xfb\xb0\x68\x09\xb9\x75\xb5\x2f\xbf\x7c\xc3\x03\x2c\x22\xa4\x1f\x8b\xd1\xf2\x09\xf1\x05\xb8\x1e\x9a\xd0\x24\x7b\x9a\x73\xbb\x2c\xda\x60\x23\x9c\xd7\xe6\x8a\x33\xb0\xc5\x3d\xa7\xb1\x6f\xd3\xee\xf2\x85\x98\x6e\xee\x2d\x5f\xf8\xb7\xe7\xdd\x43\x3b\xef\xba\x65\x4c\x20\x58\xe2\x9c\x96\x5a\xd6\x76\x9f\x31\xb1\x16\x59\x30\x93\x46\x64\x01\x4e\x9a\xeb\x9d\x53\x9b\x6c\x66\xd7\xcd\xbb\x8f\xf0\x4b\xb4\x91\x48\x03\x06\x35\x5f\x88\xa7\x4c\xe1\xb6\xbc\x65\x85\xe8\x1b\x64\x97\x8c\x8c\x3d\x8f\x34\x88\xd5\x81\x68\x76\x6a\xc6\xa3\x70\x48\x16\x83\x39\x43\x45\xd2\xf9\x34\x12\xd1\x7a\x6f\x2a\xad\xf1\xc3\x3e\x06\xd9\xaf\xf6\x4f\xf7\x1b\x72\xf4\x9e\x76\x8d\xd8\x59\x4e\x75\xfd\x4a\x7b\x6e\x84\x76\x95\x70\x54\x4b\x7f\xec\x9d\xf2\xd9\x2f\x4f\xf4\x1e\x79\x84\x73\xdb\xd8\xc4\xb0\x24\xf7\x16\x26\xbf\x1c\xfd\x06\x3c\xb8\x56\x7d\x22\x15\x74\x28\x55\xbb\x46\xdb\xbb\xba\x84\xd8\x14\xed\x63\x6d\x15\x7f\xbd\x85\x55\x1c\x72\x06\x65\x91\xf8\x8c\x98\x04\xa1\x81\xf0\x32\x3a\x8b\x15\xdf\x91\xb7\xff\xce\x7f\x23\xe4\x42\xf6\xc2\xd8\x96\x87\x62\x0e\xfd\x0f\x1a\xff\x53\x56\xe6\x13\x51\xca\xdd\xf2\x8e\x04\x94\x2b\xf4\xf4\xad\xab\x17\x4e\x4e\x8f\xbb\xb5\x50\x01\x3a\xb6\x7f\x0b\x01\x90\xa3\x08\x5e\x8d\x28\x82\x1c\x2e\x75\x75\xdd\x38\x81\xcb\x9b\xcc\xc6\xf7\x9c\x65\x40\x20\xe4\x7f\x4d\x41\xbb\x83\x57\xc2\xe3\x31\xb6\x04\x89\x48\x85\xbc\x24\xe3\x2a\x99\x7d\x9e\xd8\x35\xf7\x1d\x21\x5b\xcb\x1b\x98\xc2\x54\xe3\x0b\x09\xcb\x39\x45\x2c\x19\x3a\x6c\xfb\x93\x36\x05\x2b\xcb\xdc\xa0\xb3\xb1\xa6\xb3\xec\x78\x7b\xc3\x39\x8e\x1d\x4c\x2e\x57\xd5\x0c\xce\xed\xd7\x56\xe5\x33\xd4\x51\x55\x0f\x88\x62\x51\x50\xec\x41\x2c\x85\x3f\xb5\xb7\x41\x42\x9a\xec\xc1\x1a\x88\xf7\x1b\x3a\xae\xb8\xbd\xd1\xa2\xd1\xc9\x2d\x1c\x2f\x3d\x21\x42\x7a\xf7\xdd\xbe\x54\xc8\xb7\xb3\x0f\x24\x2e\x51\xb3\x7a\xe0\xa8\xe5\xa6\xa2\x4e\xf2\xf1\xb8\x65\x46\x95\x9d\x34\x59\x94\x87\x9d\x52\xdd\x2f\x6d\xe1\x15\x92\xef\x73\x62\x7b\x3a\xfb\x0e\xbf\x84\xb5\x69\xe2\xc0\x00\x22\x2b\xfd\xcf\xcf\x7d\xb6\x98\xe6\x0e\x85\x5a\x3b\x7c\x8b\x1e\x44\x6a\x57\x3d\xb4\xd4\x72\xe9\xe3\x18\x58\xa2\xab\xc6\x81\x51\x46\x76\x7d\xf0\x34\x38\x6f\x41\xd6\xb4\x53\x9b\xdb\x67\x93\xc0\x9b\x3d\x6f\x9b\x75\x49\xde\xab\x89\x7f\x33\x9b\x8e\x06\x05\x0a\x6f\xe8\x63\x34\xe5\x49\x3e\xdd\x3c\x14\xdb\x2a\xfd\xed\x40\xf8\xd7\x36\xdf\x22\x58\x9c\xf1\x2a\x42\x16\xff\xb8\x65\x55\xdf\xaf\x78\xad\xea\xc9\x73\xf9\x51\x0b\xc8\x39\xbb\x65\xa8\xc3\x92\x92\x34\x35\x25\xed\xea\xd8\xb4\x83\xa6\x75\x49\x11\xf6\xce\x70\xaa\xc8\x74\x8b\xce\x36\x09\x9d\xe4\xdf\x17\x92\xbe\x2a\x20\xde\x99\x39\x53\x70\x19\xf9\x8b\x5b\x30\xc6\x0b\xbf\x56\xd4\xe5\x4f\xa5\x50\xba\x01\x3e\x8a\x4e\xf6\x6e\xe4\x6a\xe5\x80\xe2\xe4\x70\x36\x9f\xad\x03\xd1\x84\xd2\x48\xca\x3b\x2c\xda\xa8\xca\x3c\xa4\x68\xe1\x95\xb1\xa0\x72\x2b\x57\xac\xb3\x1e\x58\x16\x79\x65\x67\x70\x64\x9f\xbb\x9f\x16\x40\x6e\xed\xad\xcd\x07\xee\x9a\x50\x5e\xcb\xb3\x5c\xbc\xef\xf2\x5b\xb2\x6a\x22\x3c\x43\x1f\xe0\x62\x3f\xe5\x45\x1d\xd4\x1f\x2d\x9e\x76\x5b\x34\xf0\xd9\x94\x16\x42\x57\xef\x59\x87\x59\x20\x7c\x8b\x5c\x95\x1d\x4a\x68\xdf\xd5\xab\xb6\x6e\x94\xac\x30\xb7\xeb\x39\x05\x3d\xca\x32\xd8\x15\xfd\x31\xe9\xfd\xf7\xd5\xe2\xa9\x8d\xea\x11\x7a\x3c\xb7\xea\x4b\xea\x77\x11\x94\x47\xc7\xac\xfb\x66\xa4\xdf\x4a\x92\xf4\x33\x04\xc0\x87\xa7\x92\xfb\xf2\x84\xcf\x91\x8b\xb0\xbb\x8e\xe3\xe6\xc1\xd5\x29\x24\xc9\xa1\x7c\xc2\xd0\x37\x57\xea\xcc\x3d\x0c\xe7\xa1\xf0\xd6\x36\x52\xfa\x8e\x16\xb4\x29\x46\x91\xab\xef\x8c\x0d\xf9\x5d\xe9\xf8\xb2\x70\xf8\x21\xc5\xa0\x21\x17\xfe\xc8\xd1\x74\x5d\x9e\x73\x86\xf8\x2d\x31\xc5\x21\x24\x14\x75\x37\x80\x46\xca\xdf\xd9\xf1\x41\x40\xda\x86\x19\x85\x01\xfa\xed\x06\xc1\x47\x94\xa5\xa8\xb8\x81\x5a\x5a\x8b\xae\xa8\xa5\xa3\xbb\xae\x9f\xd9\xd3\xf1\x1c\x43\xe1\x3d\x55\x42\x02\xb2\x84\x74\x3f\xd4\x3c\xdc\x1b\x1c\x67\xa8\xe7\x5e\xc1\x81\x65\x70\xa6\xd8\xfd\xd5\xdc\x2b\x71\xa3\xe0\x10\x70\xef\x53\xf6\x95\x16\xdb\xce\xb9\xc6\xd9\x8d\x02\x3e\x91\xee\x01\x99\xe0\xe5\x8e\xdc\xcc\x42\xb4\xe6\x8e\xc9\x41\xe8\xc0\x96\xfb\x82\x43\x2a\x8d\x1f\x4a\x6a\xf9\xb8\xa5\x54\x00\x77\x6a\x32\x67\xae\x4f\x16\xf1\x25\xbe\x25\xf4\x10\x93\xfd\x85\xbd\x83\x6d\x3e\x75\xea\x8b\xe6\xda\x3d\x85\x45\x18\xee\xf7\x80\xfd\xd3\x6d\x9d\xc7\xe1\xbd\x4d\x98\xf3\xa1\xee\x5a\x77\x2f\x56\xd3\x3d\x7f\x75\xe9\x14\x7c\xef\x7b\x87\x98\x28\x9f\x03\x46\x6a\xdc\xf2\xdc\x13\x69\x50\x5d\xb5\x0b\x60\xe7\x5a\xd8\xd5\xc9\x27\xb2\x0a\xe9\x6b\x32\x1b\x5d\xbb\xef\x64\xfd\x1d\xc3\x42\xd9\x8d\x3a\x84\x42\x9c\xa8\x34\x46\xe1\xb2\xa3\xa8\x44\x9f\xef\x56\x1d\x7c\xbf\xc1\xf2\xf5\x47\xbd\xb0\x2b\x39\x73\x4f\x19\x12\x37\xbe\x7a\x50\x18\x86\x0d\x70\xf2\x60\x79\xe2\xcd\xa6\xb0\x94\xa9\x88\x7b\x86\x93\x7d\x49\x35\x46\x89\x01\xff\x44\x09\x67\xc3\xb5\xcc\x69\x6c\xc3\x82\xbe\xf6\xf0\xf2\x46\x77\xa3\x5d\x4f\xfb\x93\x84\xf7\x8d\x55\x7c\x9c\xbb\xc9\xe8\x09\xb8\x10\x3f\xd9\xf8\xba\x85\xae\xf0\x12\x57\x35\x21\x13\x32\x4e\xa6\x36\x1d\x79\x59\xdb\x64\x70\x8d\xed\x8c\xd3\x0b\xf5\x84\x08\x72\x1c\x3c\xd3\x09\x91\x29\x78\xb3\x63\x55\xa9\x6e\x97\x04\x09\x7c\xb2\xa3\x95\xdc\x21\x26\x85\xac\x13\x6b\xfa\x1c\x1a\x67\xb8\x1a\xb2\x42\xe0\x0b\x39\x85\x15\xba\x40\xdd\xcd\x5d\x89\xa2\x5e\xcc\xc6\x8b\x0f\x3c\x7a\xbb\xd3\xdd\xf9\x4a\xa5\xb8\x70\xaa\x51\xad\xea\xa3\xaa\x5c\x8e\xf2\x8b\xd1\xb0\xf8\x8a\x1d\x32\x44\x37\x3c\x82\xd7\x3b\x42\xe9\x05\xa9\x24\x1f\x12\x39\x85\xba\x90\xe1\xbf\x39\xfb\xfd\x64\x76\xe3\x73\xe3\x73\x1b\xe2\x56\x3b\x72\xad\xa6\x95\xda\xb2\x33\x47\x62\x3e\xed\xd4\x1f\x40\xbe\x15\x23\x88\x7a\x74\x8b\xd8\x22\x2a\xa4\x7f\x23\xf9\x40\x01\x4b\xec\xdb\x06\x7b\x6e\x92\xd4\xf1\x44\xaa\x30\x0c\xbf\x0d\xd8\x8a\xc0\xfd\x48\x2a\xb8\xa1\x14\xde\x13\xdf\x6a\x8b\x53\x67\x0a\xe9\xb7\x34\x57\x9f\x77\x3e\x65\xb1\x35\x02\x42\xc9\x53\x2a\x52\x78\xef\xfb\x8e\x55\xe5\x9c\x57\x68\xb6\xc5\x12\xfb\x9f\xa8\x1f\x47\x91\xd2\x59\x33\xe2\x73\x88\xb0\xbc\x20\x27\xda\x68\x4e\x76\xd0\x47\x0a\x09\xee\xaf\x0e\x27\xf3\x82\x23\x5f\x35\x73\x46\xbe\xd7\xf1\x39\xe5\x41\xe8\x5e\xd0\xdd\xe8\xb2\x63\x95\x21\xaa\x7d\x36\xd8\x13\xb6\x74\xad\x03\x5f\xed\xb9\x24\x56\xdd\x3d\xaf\x0e\x83\x15\x66\x76\x68\x33\x33\x9a\x87\x80\x86\x89\x82\xd2\xad\xf9\xe0\xe5\x02\xd6\x30\x12\x55\x45\x77\x42\x56\x04\x78\x61\x11\xfc\x7d\x46\x93\x23\xfd\x55\x3e\x6f\x49\xc8\xef\x9f\x41\xaa\xff\xab\xc0\x47\xf6\x1c\xd5\x8f\xf9\x7d\xa3\x29\xf6\x50\x7f\x70\x46\x49\xa6\x13\xfa\xb0\x80\xd7\xb8\x36\x8f\xaf\x75\xdf\xf0\x4d\x0f\x3a\x04\x49\x7a\xc2\x88\xf3\x15\xcc\xb0\xa3\x91\x49\x73\x70\x42\x9f\x33\x41\xfe\x29\x22\x3b\xb2\x61\x98\x65\x08\x44\xbd\xb3\x36\x4e\x28\xf1\x2b\xb5\xb3\x6d\x67\x6c\x0e\x24\x00\xb4\xcf\x90\x09\x6d\xe1\x5b\x2d\xf9\xe1\xec\xe0\xf9\xb4\x9a\xe5\xa7\xdc\x08\xfd\x16\x70\xa3\xfc\x1f\xf5\x29\xb7\x67\x0e\xfc\x82\x5f\x98\x74\xce\xbb\xb7\xbb\x43\x8a\x65\x6a\x6f\xc9\x09\x5f\xcb\x61\x1a\xec\x8c\xc9\x47\x4a\xed\x7a\xee\xf3\x61\xe7\x03\x59\x67\x38\x75\x10\x29\x89\x3a\x77\xd0\xaf\xa5\x0e\xfd\xa5\x4f\x6f\xfc\xda\xb7\x2f\x0e\xe6\xc6\xf4\xfe\x3a\x37\xe6\x10\xc9\x8c\x13\xfb\xd0\xb9\x2f\xc8\xe5\x03\xa4\x2e\x6d\x53\x60\xad\x17\x4b\x86\xc4\xd7\xe7\xbe\xa2\x3b\x40\xf6\x58\x11\xc9\x99\x5c\x28\xf2\x72\x6d\xff\x13\xe9\x8c\xff\xe9\x84\xc4\xee\x56\x9a\xa7\x1d\x7e\x2d\x15\x71\x29\xfb\xfd\x67\x67\x47\x74\x1c\x61\x65\x31\x89\xf7\x93\x68\x8e\x84\xf7\x92\xb7\xca\x4f\x3c\x5c\x38\xfe\x41\xe3\xc8\xca\xde\x31\x0e\x1b\x9e\x88\x62\x3f\xd9\xd5\x5f\x60\xec\x01\xf4\x7c\x33\xb2\xe4\xee\xbe\x4e\x95\xf4\x09\x8b\xff\x02\x63\xf5\xae\x52\x64\x0f\x69\xe9\xfc\x77\xca\xed\xe7\x3e\x58\x43\x71\xe1\xbe\xd9\x8b\x01\x85\x44\x4b\x8e\x81\x7b\x43\x8a\x58\xfd\xd5\x4d\x1c\x34\x1d\x0a\x31\x44\xb6\x1f\xfd\x99\xaa\x44\x1e\x44\xf8\x9d\x6b\x22\xfc\xe0\xd9\x6a\x8b\xfb\x31\xa4\xc4\x95\x3d\xef\x2b\xe1\xef\xe3\x50\x3e\xa6\xa4\x76\x6a\x85\xc7\xb0\x33\xef\x9a\x27\x8e\x55\xe6\x39\x25\xe9\xc8\xbb\x94\xa9\xda\xf4\x05\x85\x9f\xbe\xdb\x38\x6a\x4f\xc9\x59\xdc\xc2\xae\x02\x4f\x7a\x05\xa4\xdc\x4d\x87\xf4\x2c\x45\xac\x6e\x0c\x2f\x7b\x77\x07\xbe\xf2\x4e\x8c\xb4\x45\x41\xcf\x5b\xfb\xb8\x8c\xed\x74\x6f\xe7\x9f\xc2\x37\x97\x74\xb0\xbc\x95\x0d\x2a\x93\xd1\x5c\x62\xa1\x07\x11\x3c\x8a\xb4\x2c\x10\x83\x62\x12\x99\xbd\x59\xd7\x6a\xd3\xa1\x6a\x57\x97\x52\xab\x4d\xc5\x97\x38\xe0\xac\x45\xdf\x96\xd3\xe6\xc8\x1f\x6e\x2b\xbd\xb7\xda\x62\x2b\x95\x8c\x12\x99\x42\x4a\xd1\xb5\x02\xb1\x90\x0d\x53\x4a\xf9\x6e\x1e\x84\xe3\xb0\x8d\x1b\xcb\x4c\xc5\x82\xb4\xfd\xfc\x51\x82\xde\x0f\xaa\xf8\x54\x69\x0d\x44\xb4\x45\x6a\x17\xdd\x4f\xed\x79\xf0\x76\xed\x67\xef\xcf\x6e\x15\x8a\xbe\xde\xc2\x41\xd3\x7c\xeb\x6a\x83\x76\x76\xbb\x53\xeb\xf0\x7a\x9b\x4a\xe0\x17\x32\xb9\xa2\x9f\x19\xab\x13\xdb\x03\xfd\x5c\x73\x6c\x1e\x62\xec\xcc\x44\x8a\xa3\xcc\xa6\x90\x41\xb2\x88\x20\x05\xcf\x9c\x0f\xbc\xad\x25\x52\x99\xa6\x2c\x43\x20\xab\x2c\x72\x32\xbe\x93\x05\xfc\x98\x6b\x56\x8f\x38\x33\xa3\x1a\x9a\x0b\x6b\x7f\x77\xe3\x68\xbb\x22\xe5\x7d\x11\x89\x5d\x65\x67\xee\x09\xf9\xc8\x77\x9c\x32\x87\xbe\x06\xe2\x4d\xac\x96\x18\x76\xde\x14\xe1\x7a\x68\x98\x87\x7f\x6e\x28\xd7\x2a\xe0\x42\x1e\x8d\xb9\xfb\x42\xc1\x1e\xf2\x1a\xdf\xe4\xd4\x7b\x0b\xdf\x0c\xd3\xe7\x7f\xe4\x14\xe8\x43\x5b\x86\x0e\xb0\xc8\x17\x68\xef\xdd\x04\x3f\x7c\xce\xbf\x01\x55\xb8\x49\x64\xb0\xfc\xac\xca\x9d\x25\x85\x2b\x2a\x7e\x3a\x27\xe5\xbe\x3b\x6b\xe0\xd4\x36\x83\x13\x69\xc5\xbe\x49\xf3\x9c\xe3\x8c\xbf\x1f\x53\x26\x65\x3e\xb4\xbd\xaf\x1c\x4c\x7e\x90\x93\xf0\xd9\x3b\xc5\x0a\xc2\xd7\x30\x56\x92\xa2\x7f\x6e\x83\x42\xa8\x11\x36\xc5\xab\xf3\x14\x51\xec\xf1\x4c\x7e\x28\x09\x30\x76\xd6\x24\x18\x2d\x89\xb8\xeb\xd4\x07\x7f\x0d\x04\x77\x61\x88\x35\x94\x74\x81\xa5\x57\x39\x35\xf0\x12\xc9\x7e\xf1\x59\x09\x40\x7e\x56\x06\x47\x08\xef\x14\xe7\x5e\xb6\x38\x51\xbe\x21\x69\x25\x73\xe8\x5b\x1c\xd4\xec\x29\x4e\x50\xf3\xd4\xa0\xb0\xea\x06\xaa\x77\x15\x86\x40\xc9\xa1\x0c\x34\x32\x73\x38\xf9\x43\x1d\xaa\xf8\xbc\x0d\x53\x4b\xce\x15\xdc\xc6\x31\xb3\x4f\x50\x5d\xb8\x0c\x55\x61\x8d\x84\x7b\x57\xbd\xe3\x8b\x77\xf9\xf2\xd6\x51\xf0\x7b\xb7\x4f\xbb\x56\x5b\x1e\x37\x27\x07\xe5\xca\xf5\xff\xc1\x72\xe5\x8f\x7e\x49\xd7\x65\x6c\x77\x11\x5c\xdc\x14\x72\x7a\x4c\x36\x9c\x91\x35\x16\xef\x9e\x43\xe1\xbb\x0b\x6f\x5a\x45\xb8\x20\x4b\x26\x5c\xa4\xc3\x6d\xd3\x90\x18\x08\x40\x27\x18\x54\xe2\x23\xa2\x04\xda\x12\x84\xaf\x77\x38\xee\x3e\xf8\x20\x30\xc9\x33\x5d\x4a\x15\xae\x63\xf0\x7e\x48\xfd\xc8\x13\xee\x25\x3e\x23\x4a\x9f\x5a\xd5\x9f\x2c\x25\xf4\x6e\x2a\x2d\xd2\xef\x64\x8a\xb2\xf9\x88\xc3\x7c\x25\xaa\xbf\x84\x8d\x84\x3e\x83\xdb\xcc\x8c\xdc\x17\xfc\x3d\x15\x60\x62\xbf\x62\x48\x89\x0c\xf1\x04\x27\x1a\x1e\xcc\x27\x57\x1d\xeb\x27\x9f\x20\xfd\x4e\x1d\xce\xec\x79\x75\xd8\xc0\x3b\x35\x5c\x6c\x10\x14\x7b\xdf\x5a\xa8\x76\x35\x80\x25\xe2\xdb\x60\xbf\x21\x3e\x0f\xb1\x40\x3b\xcb\x47\x6b\x2f\xde\x4c\x5a\x65\x4a\xb9\x19\x82\x9a\x3f\xec\x2b\x62\x83\xd5\x67\x06\xdd\x02\x09\x43\x56\x1c\x91\xff\x03\x8a\x5a\x31\x80\xa7\xa6\x29\xc4\x38\xc7\x67\xd6\x76\x1d\x38\xe7\x49\xb7\x1a\x7f\x20\x60\x1a\x56\x08\x22\x7c\x14\xb7\xe3\x2f\x10\x4c\x79\xdd\x85\xf9\x88\xbe\xa9\x09\x85\x37\x03\x4f\xc4\x4a\x0e\x29\xfd\xb7\xcb\x07\x66\x90\xb2\x14\x42\xe0\xa0\xda\x90\xe0\xe9\x01\x65\x64\x71\x4e\xe1\x27\x3e\xc1\xe7\x88\x71\xa7\xe6\xe2\xb2\xd5\xe4\x8c\x1e\x84\xdb\x07\xab\x3a\xb8\x79\xf2\x60\x05\x10\x5b\xe9\xcc\x41\xd2\x81\x05\x6d\x45\xcb\x63\x7c\x67\x93\x42\xe3\xdd\x63\xe8\xe7\xa7\x0f\x16\x9f\x30\x2b\x07\x72\x61\x9c\x06\x85\x4d\x5e\x52\xd3\xa0\x69\x72\x72\x8e\xb1\x21\x44\x6c\x70\xde\x31\x52\x85\xa9\x21\x36\x13\x69\x8d\x85\xc3\x12\x1c\x7d\xf0\xe5\x41\xed\xe6\x13\xd9\xaf\xe4\x07\xca\x18\xbe\x83\xfc\x70\x38\x63\xb8\xe4\x4d\x57\xcf\x18\xde\xa4\xb2\x36\x8e\x06\xea\xef\xc5\xba\x14\x33\x24\x05\x25\x4b\xba\x11\xc8\xfd\xa3\xb5\x76\xac\xc0\x08\xa7\xf4\x07\x6b\xbf\xe2\xbf\xbe\x19\x5a\xca\x1f\xad\xfb\x6c\x91\x88\x7a\x6c\x10\xf5\x85\xd8\xb2\x68\xd2\x5c\xbb\x1a\x61\xe4\xce\x3e\xc3\x96\x22\xf2\xfb\x0c\x99\xa2\xc9\x11\xd5\x1e\xfc\xff\x9e\x3e\xff\x17\xdb\x38\x7f\xeb\x89\x86\xb8\x04\xe4\xdf\xe8\x67\x08\xa7\xf8\xf0\x8d\xbf\xfe\xc1\xfa\xca\x19\xea\x54\xdf\xfa\x02\xc3\x1b\xce\xba\xd8\x8d\x6c\x75\xe1\x44\x3c\x89\xe2\xf9\xde\xa5\x5c\x1a\xdf\xcd\x0e\xbe\x37\xf7\xc8\x10\x9d\x64\x5d\x43\x22\x07\x42\x8f\x2d\x23\x09\x3e\xbc\xc0\x12\x09\xd5\x07\xbb\x9b\xdf\xe6\x26\x25\x8f\x16\x4a\xda\xbe\x39\x83\xe1\x65\xde\x30\xdb\x3b\x36\xac\x52\x14\x8a\xeb\x9d\xdb\x1c\x04\x34\xe3\x54\x58\xb0\x68\x42\xc9\xd1\x3d\x22\xbd\x0a\x1c\x3a\x88\x24\x57\x73\x5e\xda\xc2\x5f\xd8\x26\xd7\xf2\xa6\xc8\x25\x60\x5b\x4d\x99\x79\x9d\x55\xcf\xd2\xe7\x4c\x64\x82\xcf\x1a\x8f\x94\x28\xfc\x8c\xaf\x30\x72\x9a\x06\xfa\xee\x35\xc2\x33\xe7\xf7\x30\x1c\xea\x33\x06\x3a\xde\x3f\xba\xb7\xc6\x62\x74\xaf\x88\x78\x9f\x14\xa1\x0b\x7b\xdd\xe3\x48\x30\x82\x02\xb1\xee\xd6\xd5\x03\xf1\xa1\x14\x59\x89\xf8\x00\x11\x1e\x7d\xa8\x1f\x8f\xbf\x8c\x89\xaf\xae\x66\x90\x32\x96\x7c\xbe\xa4\x03\xbc\xd7\x41\x03\x8a\xd6\x61\x73\xe2\x5d\xd1\x05\x42\x0e\xf8\x68\xdc\x49\xcb\xd2\x5f\x8b\xe5\xc3\x1e\xc2\xf2\xe4\xfd\xb5\x53\xe9\x1f\xa3\x8f\x1e\x9c\xe1\x08\x69\x80\x21\x9a\x4c\x81\x06\x4b\x85\x0f\xdd\xc0\x7f\xb7\xb0\xa9\xaa\x13\x31\xea\x1f\xd7\x51\xbf\x25\xc4\x38\xe5\x74\x18\x0f\x34\xa2\xf9\x83\x1a\x73\x26\xcf\x0d\x2c\x69\xf3\x47\x0d\xcf\xcb\x4f\xfa\x8e\x84\xbc\xad\x7d\xb5\x17\x3c\x4f\x3d\x1a\x0a\x31\x8a\x80\xf1\x8b\x07\x12\x92\xcc\x2f\x01\x8b\x01\x1f\xa0\x7c\xa3\xd9\x32\x0b\xd3\x35\x31\x06\x35\xd5\xb2\x1f\x2f\xf1\xa9\xb5\x13\xd9\x52\xdb\x7d\x41\x5a\xcc\x99\x6d\x68\x31\xf3\x96\x15\x8a\x73\xbb\xa2\x42\x9e\xfe\xa4\xd9\xe1\x8f\x98\xcb\xd2\x75\x80\x05\x64\xe7\x66\x15\xf9\x91\x61\xbc\xb5\x7c\xde\x3b\xc9\xa5\xaf\xd4\x72\x2f\xad\x8d\x94\x22\x9e\x3c\xad\x7e\xda\x55\x14\xed\x7b\x4f\x57\xf3\xc5\xd2\x4e\x6c\xfa\x60\xc1\xb4\xf1\xd5\x49\x68\xce\x28\x4c\xe8\x2f\xb6\x9c\xaa\xd4\x58\x2c\x89\x2d\x91\x1b\x8e\x8e\x19\x8d\x20\xb2\x1b\x7a\xf5\x70\x72\xa3\x5d\x2a\x68\x4b\x5a\x8b\x8d\x3d\xef\x41\x96\x83\x59\x75\x09\x3d\x1d\x0f\x67\x78\xe8\x26\xb6\xd5\x93\x6b\xa7\x03\xe4\x6c\x22\x45\x59\x6a\xc7\xf7\x8c\x98\xcc\xb3\xf8\xe3\x1e\x72\x87\x88\xd0\xe6\xe9\xa1\x7a\x17\x9f\xea\x0d\xce\x0f\xd5\xfb\xde\xd5\x7e\xc1\xef\x37\x85\x81\xef\xaf\xf6\x25\x05\xd7\x72\xc6\x7b\x08\x20\x3d\x25\xda\xf6\xaf\xba\x96\x5b\x1a\x71\xae\x1b\xec\x86\x28\xbf\x8e\xcd\x79\x0a\x86\x56\x28\xbc\xe7\xf2\xa8\x18\x22\x7b\xb1\xe4\x6b\x7c\x04\xfa\x1c\xdf\x98\x81\x90\xd2\x5e\xd3\x1e\x44\x21\xc5\x34\xd2\x6e\x4b\x5b\xfa\x21\xc5\xb7\x63\x25\xbe\x23\x97\x32\xe4\x92\x11\x1f\x51\xa7\x37\xf4\x31\x6c\x7a\x8d\x57\x48\x7f\xca\xde\x13\x5b\x9f\xf6\xe4\xc2\xe6\x20\xab\x06\xef\xe8\x57\x1b\x11\xa4\xf4\xb1\x20\x2b\xb7\xd5\x72\x39\x4c\x76\xde\x6c\x9c\x00\x84\x2f\xa5\x7e\xb7\x2c\xa3\xac\xdd\xc4\x46\x9c\xd2\x03\x1d\x90\x23\xff\x30\x07\x55\x2f\x6c\xeb\xc2\x56\xa2\x83\x60\x40\x7d\xb7\x85\xf8\x81\xbb\x6b\xdd\x9b\xe0\xde\xc6\x74\x76\xc7\x53\x88\x96\x52\xac\x9a\x60\x1a\x5a\x6f\x90\x5c\x0b\xd0\xbd\xcc\xd1\xab\x6d\x17\xe8\xb8\xed\x89\xf5\x6e\x0b\x71\x82\x07\xa7\xb6\x75\x62\x2b\xc4\x16\xec\x64\xc4\x77\x42\x04\x9f\xe5\x29\xdb\x73\xe7\x36\x39\xe6\xba\xfd\x43\xf3\x30\x46\x57\x1b\x81\xee\xd3\x9d\x90\x08\xd8\x7b\xa4\xc3\xb4\xf5\x48\xa0\xfa\x1b\x87\xdb\x75\xa7\x06\x48\xd5\xc2\xd4\xef\x46\x74\xfa\x54\xa1\xd2\x90\xc6\x48\xca\xd1\xc3\x88\x28\x11\x25\x87\xed\x98\xb3\x37\x2e\xf5\x8b\xf2\xc5\x68\x83\x64\xc7\xee\x0b\xb5\x41\x41\xa0\x38\xe8\x76\x4f\xa1\x5e\x4d\xfa\x84\xe9\x1d\x1f\x1c\xa6\xa0\x7e\xb7\xd6\xba\x31\xe4\x03\xa5\x9f\x96\xcf\x04\xb0\x39\x9c\xfa\x04\xeb\x00\x33\x1a\xfb\xa5\x76\x23\x7c\x42\x61\x61\xef\x2f\x9d\xbb\x50\x94\x8c\x82\x88\xed\x43\x2b\x53\xab\xb9\xc2\xf8\x12\x78\x87\xac\x0d\xc5\xea\xe8\xd4\xba\xb8\xa3\x9a\xbb\x7d\x1c\xaa\xa3\xe1\x57\x77\x6a\x83\xe1\x3d\x87\xdf\xab\x36\x80\xd2\x4e\x31\x32\x87\x47\x56\x21\x56\x0d\x7d\x10\xd6\xd5\x22\xdb\x8d\x7b\xff\x8a\x3b\x92\x80\xe4\x3d\xbb\xd7\x3d\x25\xeb\xd5\x50\xae\x0e\xea\xfa\xf8\xea\xdb\xba\x0e\x9d\x0a\xe0\x5e\xb6\x87\xc5\x3f\x69\xbf\xbe\x4c\x75\x48\xd5\x91\xbf\x7e\xa7\x6b\x36\xc5\x85\xcd\xe6\xcf\x1c\x99\x11\x99\xd5\xd1\xe7\xaa\x90\x70\x1d\xa4\xb9\x89\xd8\xf2\x92\xfe\xba\x09\x78\xef\xfe\xa1\xcc\xbd\x8f\xfa\x7f\x4e\xec\x81\xf8\x0a\x9d\xf6\x5e\x9b\x43\x51\x38\xc7\x47\x7f\x37\x4f\x9f\x86\xc2\x8f\x7c\x4a\x59\xe0\xce\x99\x77\x20\xec\x89\xbd\x6e\x70\xe2\x8e\x85\xe8\x8f\xf7\xdc\x73\x27\xf4\x41\xf9\x80\x6c\xf1\x92\x3f\xb4\xdd\x7a\x23\x4b\x41\x00\x69\x01\x8e\x6d\x18\xeb\xf9\xc9\xe8\xb8\x6f\x75\x85\x77\x6a\xa4\x55\x99\xd1\x29\xdf\xf1\x07\xb5\x93\x71\x3b\xef\x54\x7b\xdc\x30\x86\x0c\x31\xf4\x0c\xc2\xdb\x47\xdf\xa8\x16\xcc\x15\xe9\xf2\xb6\xee\xfe\xf8\x45\x8a\xef\xa2\x42\x3d\x3e\xa1\x77\xda\x0b\xa4\x24\x45\xa0\x75\x8f\x22\x1b\x44\xeb\xf4\x81\x0f\x8f\x2a\xde\x7f\xa1\xfa\x90\xaf\xec\x61\xa6\x01\xf1\x19\x85\xe6\x29\x75\xa8\x84\x08\x0a\x57\x52\x70\xd5\xb1\x77\xaa\x75\x2f\x73\x4f\x31\x32\xaa\xc1\x52\x38\xd5\x58\xca\xd6\x99\x92\x6b\xce\xed\x29\x22\x59\x63\xb2\xca\xd2\x21\xd7\x2f\x0e\x7b\xaf\x06\x98\x03\x22\xaf\x5f\xed\xf3\x1e\xb2\xbd\xc9\x3d\x2d\x72\xba\xaf\x44\x82\x57\x55\xda\xa3\xf8\x42\x79\x74\x4d\xfd\xaf\x6e\xd3\x13\x86\xd6\xd1\x85\x24\xa6\x51\xe7\xbc\xa6\x03\xfd\xe8\x91\xf2\x02\xd6\xfd\xa1\xc4\x8e\x5e\x87\x24\xb5\xfb\x7d\x49\x0d\x58\x5f\x49\x76\xf5\x5d\x71\xd1\xb7\x5a\xf2\xbc\xb5\x30\xdc\x06\x2c\xe0\x36\x25\x02\x42\xd5\xac\x3b\xf8\xd0\x2e\x46\x87\xb3\x90\x0b\x3a\xbb\xd8\x5d\x8e\xea\x65\x5d\xfd\x91\xca\x66\x65\x4d\xc3\x8e\x99\x8d\x4a\x74\xf2\x33\xe2\x40\xad\x74\x44\x58\x70\x4c\x1f\x4f\xf6\xbf\xd1\x4f\xf3\xf8\x49\xf5\x7b\x2d\x51\xbf\x39\xa7\x3a\xcd\x1f\xa8\x73\xfd\x44\x91\xd2\x9c\x6c\x6e\x64\xb9\xf2\xa6\x55\x8d\x7c\x45\xe9\x00\xe4\x87\xb4\xda\xf2\x36\x80\x9e\x24\xb8\x44\x6d\xb8\x64\x64\xec\xef\x25\x3a\x87\x5d\xcc\x63\x82\xe2\x78\x1f\xd2\x92\xa0\x65\xbe\x7b\xf7\x8c\x10\x3b\x56\x4d\x2d\x9c\x1e\x54\x74\xf0\xe9\x72\xa8\x1a\x39\xe1\x3c\x07\x38\x9f\x01\xb4\x3b\x79\x82\xca\x48\xcb\x8d\x0e\xdf\x46\x1c\xa0\xe1\x35\xfc\xad\x83\x83\x83\xb7\x96\xef\xdd\xc2\x26\xfc\x2a\x49\x54\xf3\x8c\xc4\x5b\x14\x22\x44\x46\x6d\x9c\x8d\x89\xb0\xbd\xee\x05\x64\xdf\xda\xa0\xcb\x57\x91\x33\x0c\xf6\x28\x05\xa9\xca\x3e\x09\xc7\x53\x6f\x0b\xd7\xdf\x2b\x8d\xd0\xbb\x6a\x95\x19\xcd\x7d\x8e\xb1\x6f\x09\x67\xa0\xb6\xd8\xfd\x37\x44\x63\x21\x82\xc5\x3d\x1f\x2a\x52\x14\x7c\xa7\xef\xd5\xfb\x65\x99\x9a\xf3\x77\xc5\xee\xe5\x15\x81\xf4\x7e\xf6\xc8\xa4\xa0\xab\x87\x9a\xda\xe7\x35\x10\x20\x1f\x0d\x9d\x7a\xb8\xd7\x74\xe3\x4c\x0a\x71\x26\x33\x84\xba\xbf\xf2\x47\x2e\x3c\x28\x08\xae\xce\xb6\xbe\xf3\x2c\xef\xa6\xf1\x4e\xc0\x3b\xb3\x3b\x96\xef\xdf\x6d\x29\x0f\xdf\x0b\x26\xa1\x26\xde\x43\x94\xd6\x9b\x7f\xeb\xbf\xb9\x96\xd7\x74\xae\x1b\x95\x34\x4b\x96\x91\xbb\xa2\x85\x45\x57\x6c\x6f\xd3\xd2\x66\x04\xd9\x87\xb4\x6f\x21\xc1\x9b\xba\xdc\x7a\x30\xb7\x82\xb1\xed\x28\xc8\xa7\x37\x7b\xa2\x10\xdb\x1d\x82\x81\x11\x7e\x17\x58\x52\xeb\xd5\xef\x1c\x69\x23\xe9\x24\x1d\x67\xe5\x90\x77\x97\x40\x3e\xa5\xf8\xdf\x22\x84\xd3\x53\x30\xbb\xe1\x90\xfb\x91\xf0\xef\xaf\x14\xe0\x9c\x37\x7b\x6b\xd7\x8e\xcb\x35\x15\x7f\x3b\xbf\xb7\x5a\x75\x93\x11\xbe\x86\xd3\x7e\x1b\x41\x82\xa2\xb1\xa8\xeb\x9b\x9e\x35\x16\x5e\xef\x87\x2c\x6d\x16\xe7\xf6\x2b\x2d\x49\x33\xa1\xba\x77\xdf\xc9\x9a\xdf\x3a\xc3\xcc\x77\x74\x96\x6e\x6a\xb5\x14\x43\x1c\x0a\xd1\x59\x8d\xc8\x46\x09\x39\x2a\x7b\xa4\x74\x12\x92\x5b\xa0\x58\x4b\x06\x1f\xbf\x8f\x0f\x01\x4c\xdf\x18\x78\x5d\xe1\x13\x7d\xee\x34\xb8\x15\x08\xd3\x68\xe7\x58\xe6\x8f\x16\x07\xee\x0d\xe1\xc7\x4f\x68\x49\x5c\x0a\x2b\x74\x1a\x38\xdd\xef\x51\x86\xcd\xc6\x0d\x99\x30\xbc\xd6\x4a\x15\xde\xdc\x53\x4d\xbf\x9d\xaa\x9f\xdb\xce\x9a\xbe\x02\xd7\x7e\x55\x3f\xb9\x8d\x7c\x55\x2d\x30\x4c\x29\xe4\x94\x43\xa8\x28\x98\x6a\x4c\xdf\xa4\x5d\x96\xd1\xb2\x67\x76\x06\x0d\x8d\x20\x18\x28\x69\xa4\x4f\x4c\x80\xbe\x76\x39\xa1\x24\x5a\x4a\x95\x55\x5c\x86\x62\xde\x65\x26\x51\xa8\x6e\x9b\x4a\x7e\xca\xc9\x72\x3a\x26\x6b\xa9\xdd\x30\xfa\x9a\xd9\x7f\xd1\x59\x64\x57\xbd\x0d\xcb\xde\xbe\xe1\xa4\x17\x51\xab\x21\xfa\x5c\x3b\x4a\x98\xf1\x3b\x9b\x07\x40\x6c\x2c\x06\x2f\xc0\x3f\x30\x78\x28\x93\xed\x1f\x5d\x16\xc5\x2a\x35\x92\xfe\xbb\x73\x87\x93\x97\x79\x62\x78\x0c\x8c\x8a\x60\x32\xbb\x7a\x66\x99\xa6\x7a\xe5\x47\x43\xeb\x87\x1e\x8c\x60\xbe\x18\x5e\xe1\x25\x42\xe7\xc1\xf5\x33\xcb\x59\xea\x9d\xef\xcf\x95\xd5\x87\x1a\x6b\x91\x5d\xe2\x47\xd7\x5f\xa9\xc1\x5e\x77\xc5\x85\x5f\x62\x5f\xbf\x63\x80\xa7\x7b\x08\x3a\xcc\xd7\x94\xd4\xe8\xe8\x0d\x43\xc9\xd3\x15\x29\x48\xdc\x8a\x90\x2a\xae\x39\xd7\x96\xd9\x0a\x78\xf4\xa9\x61\x8f\x8d\x60\xd1\x1d\xbe\xe0\xac\xb6\xe8\x70\x3d\xc4\x71\x20\x7a\xfb\x8c\xcd\x1b\x1e\x92\xb5\x29\x81\x68\xa9\x2a\xdf\x3b\xaa\x72\xeb\xcd\xce\x86\x58\x6b\xaa\x4d\x87\x8b\x79\xfd\xfd\x9d\x86\x95\x2f\x5a\x9d\x8b\x01\x8f\x80\xbe\xfa\xfe\x60\xcc\x2e\xfd\xab\xc5\x7f\xd5\x8b\xef\x42\x38\x88\x6d\x04\xc6\x42\xab\xf5\xcf\x6d\xea\xee\xc6\x35\xb1\xad\x57\xd8\xdf\x07\x30\x1a\x4a\x21\x27\x7d\xa3\xbf\xe0\x27\xd0\x2c\x83\x33\x3e\x1c\xf4\xad\xc4\x48\x92\xbb\x5c\x91\x71\xbe\xf6\xa1\x35\x10\xf2\xe6\x4a\xbd\xe3\x35\xf6\x30\xfc\xc7\xa0\xda\x4c\x8f\x7f\xb5\x99\xbe\xea\x33\xfc\xd4\xe7\x8a\x82\x50\x6e\xae\x0f\xf6\xf9\xcd\xdc\x55\x4f\x7f\x6b\x57\xb9\xe5\xae\xf2\xe9\x60\x5d\x9b\x24\x30\x9f\x1c\xe1\x3d\xa4\x22\x50\x7a\x3c\xf8\x29\x56\xd7\x9b\xaa\x8d\xd6\xea\x80\x6f\x61\xc6\xcf\x46\xe7\xe1\x5f\xf4\x3d\x33\xfa\xee\x96\x7d\xbf\x1a\x7d\x23\xb8\x25\xe6\x63\xe5\x9f\xfb\xee\x76\x22\xea\x9b\xa2\x3f\x65\x6c\x3f\xff\x74\x87\x74\x11\x65\x26\x06\xd5\x0e\x69\x0a\xb7\x51\x6d\x08\x39\xc4\x91\x10\xc2\x6e\x31\x38\xa5\x2f\x53\x6c\x6d\x1c\x22\xea\x32\x62\x93\xd9\x12\x63\xa0\xcf\x03\xd3\xbb\x4d\x21\xe9\x93\x34\x3d\xf3\x55\x77\xca\x6f\x92\xbd\xeb\xcc\xa6\xe4\x49\x72\xf9\x08\x59\x0b\x1f\x17\x7a\xf9\xeb\x3d\xbd\x54\x02\x95\x3c\xbc\xab\xe5\xa9\xc3\x7b\xaa\x5b\xee\x6a\x8e\x2b\x05\x31\x64\x4f\xf9\xea\x11\x56\x77\xfa\x69\xb2\xdb\x6c\x80\x78\x18\xce\x31\xdd\xfe\xe1\x57\x5b\x5b\x0c\x48\x4f\x1a\x5d\x0f\xcd\xa9\x9f\xdd\x51\x92\x35\x47\x56\xeb\x3d\xfd\xe9\xf8\xc9\x30\x46\x4d\xf4\x3e\x48\x61\xea\x31\x44\xf0\x29\x82\x05\x73\x47\xf0\xfc\x52\xa3\xfd\x12\x16\x7e\x44\x62\x6c\xf0\xac\x61\x8c\xac\x14\xad\xd2\x91\x0f\x95\x41\x61\x54\xbb\x7e\x2f\x4e\x6a\x15\x3c\x3e\xeb\xe1\xed\x6c\x26\x68\x94\x8a\x41\x8c\x17\xd4\xc1\xd8\xa4\x61\xee\x56\x1a\x3b\xe3\x04\x41\x1c\x55\x75\x0f\x39\x6b\x44\x40\x53\x6a\xc7\x8d\x8d\xb1\x1b\xe2\x4f\x53\x2a\xd1\xff\x07\xf4\xf0\x53\x56\xd1\xde\x1e\x21\x7d\xb1\x78\xe3\x92\x7b\x7d\x32\x27\xa2\x40\xee\xea\xa6\x89\xfc\x6b\x1b\x3b\xef\x5d\x4b\x8c\x94\xef\x61\xfd\x75\x6f\xf4\xf1\xf6\x72\xb3\x95\xcc\x5a\x72\xab\x74\xc4\x6b\x4a\xd4\xc4\xef\x9c\x3c\x42\x20\xd1\x1f\x77\xa3\x8d\x2a\x5f\x90\x94\x51\x5d\xc2\x00\x45\x9f\xac\x9f\xe8\x1e\x47\x70\xd1\xf0\x91\x36\xd9\x41\xed\x40\x55\x86\xb9\x81\xdc\x3d\x53\x59\x2d\xf7\xf6\xaf\x97\xfb\x07\x49\xcc\x03\x04\x0a\x9f\x3e\x32\xbf\x56\xdb\x78\x85\x2c\x19\xe7\x77\xbf\x80\xb2\x4d\xe1\x5f\x3b\x06\x23\x40\xa8\x80\xa2\xa6\xf7\x98\x1e\x89\xc1\x90\x54\x35\x7b\x10\xf8\x7a\xce\x42\xde\x60\x4a\x8a\x41\xf1\x9c\x46\x6a\x4e\x23\xac\xb0\x59\xf7\xd2\xae\x60\xe1\x2e\x48\xe9\x11\xc3\x2c\x30\x0f\x1d\x04\xc8\x38\xe5\x61\x2c\x94\xdd\x59\x7f\xff\x8a\xf4\x50\x88\x61\xef\xea\xe7\xbb\x8c\xed\xf8\x49\x2f\x84\x90\x29\x2d\xca\x08\x1f\xa1\x27\x84\xa0\xb8\x72\xce\x03\x26\x86\xf0\x18\x61\x63\x1a\xd7\x21\x33\x7d\xb7\x2a\x1a\xe0\x9a\xfe\xa7\x34\x96\x0f\xb9\xbd\xfb\xf9\x92\x50\x70\x43\x93\x19\x14\x45\x58\x53\x54\xc8\x70\x8d\xd3\xd8\x29\x25\x62\x5a\x43\x8e\x40\x44\x6b\x12\x68\x2b\x90\x6f\xe4\x63\xe2\x34\x71\x9a\x1c\xd1\xa2\x0c\x48\x7a\xd7\x0e\x9a\xc4\x74\x31\xbd\x06\x86\xec\xf4\x4b\x6b\xed\x0a\x6f\x4e\x5d\x36\x43\x98\x25\xb4\xf4\x53\x98\x86\xa8\x97\x7d\x43\x54\x84\xf8\xf5\x75\x60\x1e\xe5\x24\x34\xc9\xdb\xf5\x5e\x5d\xf6\xa1\xb5\xa9\x6b\xd2\x95\xd1\x03\x67\xb7\x01\xca\x76\xaf\x70\x0c\xe3\x44\x89\xd7\x5e\x56\x06\xfa\xa7\x76\x87\xf3\x1b\xae\x61\xd7\x7a\x7d\xaa\x72\xb2\x92\xf2\x7d\x5c\x7d\x9d\x91\xd2\x4e\xbc\xda\x42\x3e\x1c\x3f\x52\xb4\x1f\xd5\x3a\x7b\x82\x55\x76\xbf\x96\xdb\x21\x4e\x30\xca\x1e\x0f\x37\xbc\x35\x1b\xbe\xb2\xd5\xd6\x7c\x38\xbf\xab\x2a\x5d\xd0\x52\x7a\xb7\x9c\x65\xa9\x2d\x1c\x40\xc8\x3d\xc5\xf1\xbc\x02\xf9\xc2\x66\x04\x29\x2f\x76\xc0\xc4\xe0\xe7\x55\xed\x8d\x84\xbc\xb6\xc9\xe7\x48\x5f\xcf\xf6\xe4\x1a\xdf\x37\x81\x93\x56\x21\xc6\x93\xd6\xf7\xe4\x74\x0b\x17\xfb\x5e\x7a\x93\xa6\xe8\xea\xaf\x1d\x13\x86\x0f\x3f\x9e\x61\x12\x78\xe6\xc3\x9e\x1f\xcf\x86\x1e\x89\x74\x1c\xee\xc2\x35\x8c\x7b\x44\x80\x7a\x94\x5c\xf5\x09\x1f\x1c\xc3\xc7\x15\x91\x38\xad\xf5\x4a\x3f\x3d\x8a\x88\x1d\x34\xca\xeb\xe6\xd6\x59\x63\x6b\x9c\xde\x57\xe7\x81\x3e\xee\xd8\x8d\xa1\xc6\x36\x23\xe9\xb7\x35\xef\x5b\x2d\x31\xde\x41\xbe\x4f\x9f\xb1\xb7\x78\x9b\x90\x35\xb8\x75\xac\xe8\xd3\xdd\xa1\x83\xb7\x8a\xb4\xa6\xf7\x5a\x97\x15\x6d\x3a\x7f\xce\xd9\x7b\xce\x68\x98\xd3\x88\x90\xad\xb5\xa0\x63\xd4\x73\xb0\x4f\xb3\xcc\x6f\xb0\xca\xe5\xe9\x6f\x46\x43\x21\x3a\xb7\x59\x48\x7c\xd5\x9f\xb4\x69\xe2\x38\xbb\x27\x84\x77\x7a\x6f\xb5\x85\x7f\x65\xe0\x7f\xf2\x29\xcd\x59\xf4\x82\xa9\xac\x95\xa2\x24\xd7\x72\xd9\xaf\x3a\x25\xd1\x93\x9e\x2e\xa8\x96\x87\xec\xb9\xad\xaa\x79\xfd\x91\x5a\xf7\x58\x22\x08\x4e\xbd\xe8\x8b\x9b\xa5\xbc\x56\xe0\xed\x5e\x23\x93\x1f\x74\x24\x7e\x41\x1b\xe9\x78\x83\x97\x09\x02\xe5\x7e\x56\x22\x84\x37\x60\x28\x64\x28\xe8\xfa\x27\x6a\x3c\x0f\x62\xdf\xe8\xa0\xbf\xe6\x79\xcd\x67\x7d\xe8\x93\xa4\xb0\xf5\xab\xeb\xad\x36\xc1\xe3\xcb\x6f\xd6\x0f\x9b\x3e\x83\xeb\x29\xec\xa5\x5f\x45\xf7\x4e\x24\x1d\x4b\x2c\x4d\x62\xef\xf6\x1a\xf6\xd7\x57\xfa\xf1\x91\x8f\x9c\xb9\x58\x57\x88\x0e\xbe\x55\x09\x26\xd1\x22\x5b\x7e\xf9\x48\x7c\xfd\x48\x1a\x8f\xba\xf4\xc8\xaf\xbe\x8a\x89\xaf\xae\x9d\x32\xe5\x3e\x41\x10\x01\x45\xce\xe9\xb2\x33\x1a\xc6\x29\x99\xcd\xc9\xce\x28\x72\x78\x83\x89\x27\x8c\x13\x9c\x21\x71\x99\x01\x90\xb7\x7d\xc4\x67\x88\xfc\xd2\x52\x38\xb3\xc9\x70\xc8\x89\xf5\x9a\x6f\x64\x09\x78\x25\x5f\xcc\x0b\xd1\xb9\x37\x90\xad\x85\x82\x24\x12\x28\x89\xef\x60\x10\xb1\xfd\x8d\x6a\x7f\xb3\x11\x50\x46\x21\xd9\x3d\x7c\xcf\x8b\x4e\x09\xba\x25\xad\xf1\xe1\x11\xc5\xf9\x99\x46\xf9\xdf\x85\xd2\x19\x21\x53\x8f\x4d\xdb\xa2\x3b\x30\xa4\xc6\xc7\xb2\xc4\xa7\x10\x4e\xd7\x25\x82\xd9\x64\xd3\xe7\x0f\xb2\x3e\xd2\x47\xaf\x24\x1f\x06\xa6\xe0\x0f\xaf\x43\x94\x0b\xd1\x15\x5d\x3a\xb9\x39\x82\x5b\x89\x86\xa2\x36\x5f\x1f\x22\x53\x1b\xfe\x4f\x8e\x3b\xc3\x5a\x6d\x87\x48\xc3\xc0\xf8\x4e\x87\x8d\x13\x87\x27\xde\x14\xe2\xc3\xbe\xdd\x1b\x44\x53\xf8\xae\x35\x16\x8d\x42\x37\xf4\x71\x0f\x1e\x7e\xaf\xe4\xff\x66\xe7\xc0\x98\xad\x50\xb8\x38\x2a\x70\x68\x36\x6e\x0b\x1d\xed\xbf\xe9\x0b\xf7\x85\xa6\xf6\x70\x60\x66\xdd\x27\x3a\x54\x7a\x08\x42\x70\x72\x3d\x94\xd0\x14\x23\x52\x0b\x5e\x2a\x88\x9f\x3b\x2f\xc7\x24\xda\x06\x29\x4e\x83\x5f\x3e\xd7\xa8\x72\x4b\xae\xc7\x73\x99\x53\x98\x24\x1d\x7a\xeb\x1a\x61\x92\xa3\xf8\xd9\x2a\x63\x54\x3e\x5b\xe4\x7f\x7e\x46\x8c\xc3\xca\x83\x32\x45\xad\x78\xb3\x6b\xfc\x1f\x3e\xa4\x9d\x7c\x31\xcd\xfa\xf0\x01\xc1\xd7\x10\x3d\xef\x7f\xe1\x8d\x55\x13\x57\x67\xe3\x9a\xd9\x6b\xa7\x24\xd3\x14\x6e\xf1\xfe\x64\xb1\xe5\x97\xa2\x51\x3e\x08\x93\x5b\x6f\x4f\x78\xd1\x2b\xbf\xfb\xe0\x42\xb4\x77\xf5\xc7\xd2\x57\x74\x5c\x40\x84\xe4\xa2\x09\xd7\x64\x5e\x1f\xd2\x77\x67\x2f\x9d\xf7\x11\xb8\xba\xc0\x1e\xfa\x20\x43\x20\x2c\x8c\xf4\xb1\x03\xf7\xda\xa1\xfd\x39\xa6\xb8\xd6\x67\xb2\x7b\xad\xec\xe4\xb9\x9a\x97\xbc\xb2\xd9\x43\x01\xb6\x12\xa9\x81\x91\xa6\xf4\x84\xa6\xa9\x4d\x7f\x8b\xdd\xa1\x00\x32\x32\xc2\xf2\xce\x1a\xd6\x58\x9c\xca\x5a\x20\x79\xa6\x7d\x29\xe3\x3d\x5f\x4a\x4e\x74\x92\x03\x12\x67\x44\x0b\x7a\xd7\x44\x2e\x5f\x7e\xc0\xc9\x50\x0c\x2c\xcf\x39\x71\x14\x9f\x6a\x0c\x8f\x6f\x2c\x57\xee\x9c\xde\xeb\x58\x3f\xf3\x9d\x13\x87\x0c\xaa\x1e\xc9\x57\x93\xa5\x92\x69\x6e\x36\x36\xe5\x9c\xf2\x41\x4f\x5a\xe0\x5b\x01\xb2\xe2\x20\x77\xc6\x7b\x5f\xc7\xf2\xdf\x23\x61\xde\x85\xfd\xd1\xb7\x3c\x39\xb7\x77\xf6\xc9\xad\x15\x8a\xa7\xc3\x2e\xa1\xd6\x41\x97\xd0\x3b\x92\x36\xca\x73\x7b\xf9\xac\x51\xd1\x17\x03\x8e\xb8\xe9\x7c\xed\xc7\x59\x12\x44\xc3\x98\x66\xde\x7a\xe2\x75\x6c\x52\x58\x5d\x53\x66\xf6\x56\x9e\x29\x5d\x7e\x67\xf3\x09\xcf\x92\x34\x93\xa0\x34\xc6\x25\x7f\xc4\x95\x3c\x6f\x7c\x60\x9b\x22\xac\x87\x11\xf0\x73\x31\xb1\xda\x42\xc6\xf6\x8c\x6e\xbb\x65\x2a\x63\x4a\x76\xe9\x6d\xed\xf2\x9d\xb6\x10\xbd\xea\x9d\x2e\x1d\xe4\xa8\xf2\x4d\x36\xbf\x38\xd3\x29\xaf\xcc\x38\xcb\xaf\x3c\x65\x30\x7b\xf3\xa1\x15\x04\x12\xaa\x77\x9f\x38\x17\x4f\x99\xf8\x9b\x02\xd2\x60\xf6\x7e\x7f\xa6\x3b\x01\xd5\xfa\x72\xbc\x2f\x29\x20\x3b\x5a\x0b\x3e\x47\xed\xb2\xc5\x97\x2d\x7b\x68\xb6\x05\x19\xbf\xc5\x1f\xf8\x5d\x1b\x85\x3a\x5e\xea\xd5\xb1\x9a\x72\xc2\xdf\x09\x7b\xe6\x73\xe5\xe5\xa4\xe3\x67\x1d\xc1\x2a\xe4\x8a\x86\x13\xd0\x10\x07\x0b\x3a\xf4\x32\xa0\xd3\x4a\xc1\x85\x9a\xad\x57\xe0\xc0\xfb\xd3\x9c\xe2\x33\xde\x09\x02\xed\xcd\x0b\x00\x41\x7e\xac\x2b\xec\xe6\x0f\xda\x55\x14\x70\x21\xda\xab\xc0\x6a\x89\xee\x0b\xe7\x3f\xa6\xe8\x44\x5b\x92\x23\x1c\x69\x90\xd4\xdd\xd2\x4e\x6c\x87\x75\x43\xd5\xc0\x15\x21\xd9\xdf\x3f\xf2\x9e\x4f\xc0\x53\xaf\x11\xe0\xfe\xed\xd9\x1a\x97\x41\xbf\x27\xc4\x97\x4f\x29\x08\x41\x9c\xd1\xd7\x83\xe4\xb9\xe3\xe2\x85\x39\xe8\x66\x44\xb6\x3a\xfd\xc6\xf7\xf2\x0d\x97\xa2\xa2\xcb\xef\xdb\x5f\x3b\xfa\xab\x39\x78\x6d\x15\x20\xd8\x55\x30\x7c\x28\x77\x27\xbd\x75\x66\xa4\xbc\xdf\x22\x37\x75\x4e\xf0\xfb\xbf\xb9\x7b\xf3\xe6\x46\x6e\x2c\x5f\xf4\xab\x70\x1c\x2f\xc6\xf6\x55\xb6\xb9\x89\x5b\x7b\xea\xce\x05\xc0\x64\x2a\x45\x51\x14\x45\x51\x94\x64\x77\xf4\x50\x64\x72\x67\x72\x5f\xe7\xf6\x77\x7f\x81\xf3\x3b\xc8\x85\xa2\xaa\xca\x9e\x9e\x89\x78\xcf\x7f\xb8\x44\x24\x80\x44\x62\x39\x38\xeb\xef\x3c\x31\x4f\xc3\x63\x17\xce\x01\xe7\x76\x0f\x1b\x31\x85\x8e\x94\x11\xfc\xa4\xb7\x87\xdd\x4b\x3d\x80\x3e\x5a\x6d\xd1\x24\xd1\xe1\x51\xa4\xe9\xfe\xf2\x2c\x87\x52\x4a\x9e\x23\x7e\xcf\x3a\x4c\xa0\x68\x65\x90\x3e\xfa\x48\xff\xb4\x37\x90\x1b\xf5\x79\x34\xb8\xa0\x74\x33\x00\x8b\xfd\xc0\xda\x92\x1c\xee\x07\xf8\x83\x2d\x7b\xd1\x96\x57\xc0\x73\x1b\xb4\xc1\x8d\x28\x61\xfb\x15\x56\x63\xba\x42\xac\x14\x99\x3f\x44\x37\xdd\x34\xee\xcf\x61\x86\xe5\x02\x6f\x42\x3d\x5c\x0e\xe5\x87\x91\x0a\xcf\x1d\x16\x4e\x46\x08\xdf\xa5\xa9\x99\x82\xd3\x81\x45\xff\xf5\x84\x89\x2a\x39\x66\xa2\x44\xb5\xe8\x7c\xe8\xc7\x46\xa6\xa1\x6a\x2a\x36\xee\x2d\xe2\x18\x86\xf4\x5e\xb8\x9b\x3c\x51\xb2\x39\x17\x1e\x82\x66\x15\x26\x9c\x85\x4c\x77\xce\x6f\x4f\x3d\x59\x55\x71\x93\x93\xb4\x26\x75\xbe\x16\x3e\x1d\xdd\x9a\xc3\x22\x36\x4f\xa6\x71\x6d\x26\x4b\x2a\x4b\xc9\xc9\x6a\x1b\xb9\xeb\x58\x06\x66\x5f\xdd\xed\x81\xf3\x48\x50\x08\x5a\xe0\xb8\x3f\x32\x00\x04\x69\x02\x0b\x72\x74\xc7\x04\xaa\x26\xec\x07\x0e\xf5\x42\xd6\x7b\x12\x4f\xba\x9a\x31\x50\x43\xc9\xae\xfe\x73\x6a\x4c\xc2\x91\x7a\x67\x26\xa2\x2a\x9a\x3d\xda\x32\x65\x7e\x66\x5b\x5d\xf5\x70\x13\x72\xb0\x8c\x74\xbe\x8b\x44\x0b\x5c\x93\xc5\x40\x2c\x68\x23\x6b\x99\x31\xa0\x1d\xc9\x77\xcb\x60\x0a\x0c\xe4\x9c\xf8\x86\x7a\xba\x63\x85\xb0\x05\x14\x34\x66\xdf\x86\xe8\xf1\xcd\x23\xed\x94\x91\xe4\x38\x05\xba\x1c\x9a\x6d\x0e\x85\xd7\x1d\xe7\x1e\x28\xe7\xbf\x55\x63\x57\x5d\xe7\x91\x26\x08\xd8\x09\xcd\x14\xed\xdb\x1a\x2e\xba\x77\xfe\x9b\xb2\xec\xbe\x47\xa4\x38\x7a\x2d\x7b\x07\xa6\xe8\x85\xaf\x1f\xea\xda\x39\xb9\x7f\xc7\x31\x2c\xf5\x42\x14\x8b\x99\x16\xdf\xdb\x24\xbe\x3f\x89\xec\x4d\x84\x64\xcf\x3d\x92\x28\x56\x4f\x67\x20\x16\xf5\x9d\x3a\x92\xfa\x63\x2e\x4f\x54\xa5\x9e\xf2\x28\x6e\xb4\x1c\x2d\xac\xed\xa1\x22\x39\x78\x56\x5d\xd8\x0b\xfb\xe8\x91\xc3\xf7\xea\x9d\x83\xd9\xd4\xb0\xac\x29\x9f\xf2\xb6\x7a\x70\x65\x65\x39\xaa\x3d\x8c\x88\x46\x26\x54\x02\xc8\x9a\xcd\xcc\x8d\x15\xa0\x69\xbb\x6b\x80\x81\x6e\x10\xe6\xb0\xd6\x52\x82\x43\x5e\x62\x95\xb9\xe4\xc2\xed\xa3\xd5\x15\xf6\x43\x49\x32\x68\x3f\x02\xeb\x9a\x16\x9b\xaf\x9d\xfe\x08\x62\xb5\x6d\x79\x42\x3d\x19\x78\x95\x8e\x39\xd3\x5a\x54\xad\x71\x74\xe2\xc3\xf2\x1d\xe8\x00\x55\x61\x3f\x2b\x0c\xbf\x2a\x6a\xef\x21\x43\xa8\x67\x7c\x2e\xfb\x56\x5d\x4c\xa5\xcb\x60\x17\x04\xfc\xf7\x1a\xbc\xa5\x23\x44\x87\x32\x09\x72\x3a\xda\xa0\xa8\x41\xe4\x9e\x9b\x50\xc4\x2b\x6c\x98\x34\xca\xa7\x0d\x38\xf1\x58\x37\x04\x41\x39\x56\x37\xb1\x22\x0a\xfd\xa3\xc8\xdd\x92\x8c\x76\x00\x1d\xc1\x5d\xa4\x2e\xbe\xac\x71\x64\x06\x8a\xe0\x7b\xc8\x43\xa2\xb3\xaf\x9d\x8d\x4c\x0d\x55\xb6\x46\xd2\x6e\xfa\x86\xe4\xdd\x0c\x85\x0f\xb6\xc9\x00\xfa\xb8\xae\x9d\xf7\xaa\x49\x18\x39\x78\xc1\xca\x38\x81\x6c\x7b\xea\x45\xc8\xf1\x0c\x0c\x0b\x9a\x6a\x51\x5d\xf5\xa6\x60\x17\xf6\xb8\xc9\x0f\xe4\xb2\xd0\x43\x58\xef\x00\xa0\xfb\xb5\x3b\x7d\x9b\x6d\x24\x07\x03\x99\xd4\xfe\x54\xe6\x83\x6f\x9c\xb0\xd3\x73\x17\x09\xcc\x71\x18\x69\xbb\x77\x4b\x46\xaa\xb4\x14\xbb\x30\xbb\xc0\xca\xf2\x28\x9e\x42\x74\xa7\x8c\x60\x02\xe5\xfc\x10\x06\x76\x40\x54\x79\x24\x56\xdb\x39\x9b\x92\xfa\x32\x06\x8a\xc7\x3e\x04\x55\x0e\x79\xbe\x57\x71\x2a\x26\x3c\x84\x06\x26\xd1\x3d\x50\x58\xdc\xd4\x27\xdd\x13\x82\x10\xb1\x2f\x3b\x30\x83\x63\xfa\x94\xd6\x89\x7a\x6d\x8a\xc8\xff\xe9\xc0\xe2\xec\x75\x87\x5d\x84\x8b\xbd\x83\x2a\x5a\x06\xfa\x6d\x57\xf1\x0d\x7a\x95\x2d\xd4\x03\xb8\xb6\x39\xd8\x8f\x9d\xc4\x18\xda\xba\x6c\x19\xfd\x91\x21\xbd\xf7\x42\x96\x18\x19\x91\x1c\xe5\x0b\xf6\xa6\x6b\x31\xc0\x16\xd9\xdc\x39\xec\xb4\x4b\xbe\x03\x19\xb9\xc3\xd3\xfc\x1b\xce\x18\x46\xdf\x05\xb9\xc3\x20\xfb\x5a\x1a\x45\xcc\x0e\xb2\x22\x6f\x24\x3e\x1c\x2c\xd7\x2b\xbc\x20\x02\xca\x6b\x0b\xda\x31\x5d\xf2\xa0\x55\x43\x09\x3c\xc4\x6e\xe9\xd2\x32\x8d\xe1\xd6\xb9\x0d\xe6\xd1\x15\x4e\x0e\x43\x28\x90\xfa\xb7\xb9\x46\xc5\x42\x17\x76\xa2\x08\xb5\xb6\x17\x6a\x4d\xfe\x1b\x58\xcf\x2e\xde\x7a\xc2\x89\xbe\xae\xb3\x3a\x90\x51\xd2\xfc\x1b\xcc\xbd\xd2\x9f\xb8\x77\x8c\x57\x8e\xba\x4b\xd2\xad\xde\xcc\xbb\x56\x53\xd8\x8f\xf9\xa6\x19\x56\x87\x60\x5b\xef\x2e\xac\xfd\x87\x31\x93\x8f\x17\xd9\xaa\x7c\x9b\x1c\xda\x0c\xba\x69\x1a\xd0\x07\x24\x4b\x38\x0c\x55\xd3\xb1\x19\xc3\x9a\xa4\x12\x14\x39\x56\x37\x2b\xaf\x8b\x65\xf6\x10\x73\x31\xf9\xe4\x87\x65\x12\x4b\xb1\xe3\x96\x3e\x17\x4f\xa1\x18\x5d\xe8\x13\x2f\xcb\x88\x17\x11\x31\x1a\x31\x3d\x0d\x86\x74\x2c\x11\xd9\xed\x2f\x49\xdc\xe9\xa6\x19\x9e\x11\x94\xa3\x23\xc4\x13\xad\x90\x72\xf6\x74\xa9\xbb\x81\x3d\x4c\x41\x66\x70\x0a\x14\x06\x0b\x74\x65\xc5\xf6\xcd\x36\x9a\x91\x73\x85\x5e\x99\x67\xe0\x25\xcf\xe4\x47\xff\x4e\xce\x86\x8a\x55\x9d\xd1\xce\x42\x22\xf2\x91\x1c\x77\xa1\x5a\x9b\x69\xf9\x57\x39\xe5\xaf\xbe\xbf\xd8\xb7\x5c\xca\x64\xc5\x98\x4e\x19\x39\xbc\x2a\xef\x65\x19\xe0\xfc\xec\xb5\x06\xb7\x21\xec\xae\x0e\xe7\x08\x53\x41\xfa\x28\x88\xe5\x88\xa9\xfd\xb0\x53\x60\xae\xe0\x46\x05\x2f\xd8\x2f\xa7\xca\xd9\x7e\xd1\x24\x24\x43\xdf\xd1\xc9\xc2\x78\x90\xbe\x85\x0f\xed\x92\x0e\x4c\xa7\xa4\x2f\x5b\xf5\x7e\xcd\x31\x6f\x32\xc8\x7d\xa1\x56\x12\x74\x12\xd7\x84\x68\xed\x6f\x02\xfa\x9d\x95\x20\x40\x83\xfb\x70\x9b\xbc\x66\xe9\x36\xd9\xa8\x14\xc1\x24\xbc\x1e\xf1\xcc\x7f\xb6\x5a\x5a\x3e\x9c\x3d\x7d\xdc\x6c\xa9\x17\x2d\x1f\x9e\xbf\xe7\xd8\x3a\xef\xd4\xc9\x2a\x2e\x54\x01\xae\x1f\x2b\x35\x11\xb8\x58\xbf\x46\x00\xc4\xc6\xfb\x48\xf8\x41\xd7\x6b\x44\xa3\x6c\xac\x52\x8d\x94\x08\xea\x91\xdf\x8b\x8f\x8e\xcd\x8f\x5b\x42\xf7\x47\xa0\xa3\x51\xe4\x2d\x03\xfb\x42\xfe\x6b\xcc\xd1\x76\x21\xa3\x37\xca\x1a\x51\x62\x94\x20\x26\xbc\x51\xc2\x11\x44\xef\x14\xb0\x59\xef\x9a\x69\x60\xfc\xee\xfb\x7f\xd2\xe5\xa1\xc6\x95\x94\x8c\x4e\x97\x1d\xcc\x09\x82\xd3\x62\xc4\xf2\xe9\x8c\x4a\xd6\x85\xea\x17\xf0\xa6\x12\x78\xbd\x59\xe3\xf3\x37\xd9\xb3\xd8\x06\xcd\x9b\x0d\x3a\x33\x3b\xa3\x23\xec\x9c\x8a\x51\x9a\x02\x0c\x4b\xb3\x37\xae\xd1\x15\xae\xaf\x9e\xcd\x4a\x78\x42\x3d\x8e\x2f\xf7\x99\xa9\x85\x8b\x67\xaf\x10\xee\x7f\xd6\x69\xe6\xd5\x54\x19\x48\x4a\xa6\x1f\xf8\x2d\x2d\x65\x04\x8a\x0b\xa9\x78\xe8\x06\x28\x8b\xd5\x80\xe3\xf4\x29\x6c\xa1\xb6\x0c\x00\x1a\x1c\x9f\x11\xdc\x00\x07\x5c\xdb\x2a\xf0\xa5\xed\x50\xb2\xaa\x0a\x75\xaf\xf7\x8b\xa3\x16\xe8\xc5\x3d\x0e\x00\x02\x58\x21\x9b\x9b\xdc\x45\x8a\x1b\x64\xa4\xb1\x85\xea\x01\x56\xb4\xa2\x65\xb0\x17\x78\xf2\xd5\x00\xcf\xd0\x0a\x12\x83\xd7\xf5\x5f\xe5\x3b\xfe\xc4\xba\x70\x6e\x48\x7f\xa0\x29\x93\xdb\x64\xd2\x4b\x4c\xab\x8a\xb0\xa9\xd3\x77\xeb\xcf\xcb\xf4\x76\xc9\x86\xde\xa3\x0e\x2c\x3f\x8a\x98\xed\x67\x58\xcc\x3f\xe0\x34\x15\xab\x64\x31\x1f\x2a\x00\x53\xbc\xfa\x11\x38\x3b\xb5\x90\xeb\x3a\x6a\x9f\x50\x3b\xd5\x8b\x44\x02\x1f\xe3\x22\x3e\xa4\xc0\x57\x82\xbb\x32\x52\xfe\x48\x4e\x87\x34\x5f\x47\x89\x68\x3c\x28\x4d\x20\x02\x05\xc6\x68\x78\xf9\xd8\xb9\xca\xa0\x8b\xa3\xd4\x8f\x88\x55\x63\xb5\xe0\x98\xd4\x31\x40\x8d\x33\x3d\xd8\x3d\xf4\x48\x76\xe5\x83\x34\xbc\x8c\xc1\xe1\xdd\x48\x0f\xd6\x1a\x62\xa7\x1e\xfc\xf7\x08\xb0\xe4\xfa\x1e\x71\x11\x34\xc6\x7b\x11\x09\x34\x70\x38\x8a\xb1\xc8\x51\x8c\x01\xda\xfa\x06\x79\x70\x4a\xf2\x4f\xa9\x55\x72\xf6\x15\x66\x6e\x4d\xae\x68\xa2\x7b\x03\x5b\xef\x90\x75\xbf\xbe\x77\xce\x9c\xad\x7b\xd0\x4e\x22\x8f\xc6\x94\xa2\x87\x47\xf2\x8a\x20\x7b\x0e\x36\xcc\x14\xf0\x3e\xa8\x51\xca\x7d\x35\x96\x34\x6b\x9e\x1f\x2d\x3c\xc9\x5b\xb6\x96\x04\xd0\xdc\xb8\x80\xe0\x35\x71\xe8\x45\x26\xe5\xfa\xdd\x08\xe4\xea\xa1\xce\x71\x35\x36\x41\x55\x84\x7f\x07\x1c\xa1\x83\xc4\xba\x37\x82\x5c\xfb\x45\x7d\x8f\x20\xb8\xa4\x07\xc7\xc3\x14\xcd\x56\xe7\x05\xe2\x0e\xd9\x3e\x50\xe1\x39\x84\xee\x79\x43\x6a\x7e\x10\xfa\x35\x45\xcf\x3f\xd2\xb6\x40\x36\xee\x3a\x49\xf0\xea\x05\xa3\x8e\x9e\xa3\xe7\x56\xd0\xb9\xea\xc3\x8c\x5c\xbf\x7a\x0e\xbb\xc7\x28\x9c\xec\xd9\x28\xaa\x04\x85\x16\xb2\x75\x2d\xc0\xb4\xb4\xb7\x2a\xde\x94\x08\x0d\xa5\xc2\x81\xac\x58\x4f\x83\x5c\x66\x09\xda\xf3\xc9\xf8\x0a\xd9\x6a\xda\x80\x4f\x3a\x14\x35\xb4\x4b\x39\x16\x22\xcb\x80\xbe\x38\x76\x59\x42\xec\xeb\xa7\xa1\x3f\xc2\xfd\x5c\x5f\x91\x01\xaa\x07\xc2\xdd\xb8\xa6\x91\xd6\x73\x7d\x3d\x0b\x6c\xa4\x18\x11\x22\x2b\x30\x01\x6a\x63\x6c\xec\x51\xd7\xfc\xd2\xcc\xc0\x56\x46\x4c\xfb\xd4\x53\xf5\x89\x08\x60\xbe\x4f\x14\x10\xd7\x4b\xa1\xfc\xa1\x8d\x03\xd5\x67\x75\x4d\x2a\xca\x57\xba\x1c\x9a\x05\x22\xcb\x0b\x89\xa4\xee\xb5\x7c\x9f\x22\xeb\x0b\x7d\xf3\x0b\x8e\x19\x36\xc5\x9f\x68\x3e\x13\xaf\xd5\xcf\xd5\x93\x7e\x6d\xd1\xf1\xae\x74\xad\x92\x43\x0a\xd3\xb9\xf4\x0d\xf2\xd1\x7f\x99\x84\xa9\x69\x25\xd4\xcd\x65\x9a\x70\x2c\xa0\xcb\x12\xdc\x54\x3a\x4a\x96\x76\x92\x2e\x8b\xa5\xdc\xd0\x4c\x37\xb6\x9e\xa6\x61\x05\x68\x16\x67\x1c\x6c\x4c\x3c\xda\x1e\x1a\xcc\x45\xf9\xe4\x7d\xa0\x8f\x10\xf9\x06\x72\xdc\xbf\x40\xb7\xa0\x4a\x7a\x85\x3b\x6f\x63\x01\xf7\xf3\x62\x35\xa0\x4f\xb6\xe8\x4c\x25\x4e\xfc\xeb\x9d\x21\xe7\xc8\xe1\xd1\x0b\x78\x3a\xbf\x3c\x1b\xc8\x08\xec\xc1\xae\xce\x22\xb1\x2d\xd4\x0b\x12\x4b\xd4\x48\xa5\xd8\x58\x03\xdf\x69\x49\xf0\xa3\x07\x99\x7e\x8a\x46\x46\x0d\xe5\x35\xa5\xcd\x54\x9c\x65\x22\x87\xf3\x9f\x27\x28\xe3\x36\x56\x82\x2f\xb1\xfa\x72\xc0\x3b\xc6\xdc\x8d\xd8\xe7\xc4\xdf\x37\xdc\x2b\x4d\xf3\x1e\x04\x6e\x80\xf6\x86\xab\xac\x49\xab\xaf\xc6\xb8\x33\x1b\x8b\x11\x13\xf2\x7c\x60\x37\x33\x68\x96\x1d\x51\x5d\x94\x27\xa4\x82\x68\xcd\xe1\x11\xb5\xc2\x34\x45\x09\xdb\x35\x02\xb0\x47\xf0\x52\x2a\xe9\x75\xb4\x7d\x7b\xcf\x23\xd4\xb3\xbc\x96\xfa\xd2\x5f\xc8\x39\xe7\xfe\x1f\xf6\x71\xd1\xa7\xf4\x6e\x75\x4a\x92\x01\x9e\x63\xa4\x74\x2a\x0b\x3d\x52\x50\x8c\x70\x92\xde\x2d\xe3\x67\xea\xcb\x74\x39\x22\xc6\xa6\x3b\x11\x92\xc7\x16\xd9\xed\x40\x92\x97\x1a\x05\xff\x76\x91\xcd\x60\x47\x6a\x8b\x95\xdc\xda\xe6\x27\x54\xd7\xae\x70\x01\x8a\x5c\x3b\x20\x33\x13\x72\x9c\xb4\x73\x8f\xc1\xc2\xa6\xcb\x73\x0e\x27\xc3\x55\x48\x30\xb0\x63\xe9\x93\xa7\x4b\x93\x16\xed\x71\xad\x3f\x71\xa9\xee\x48\x59\xa6\x40\xa3\x89\xb5\x7a\xdd\x3c\x58\x8e\x68\xa6\xe5\xfa\xc1\x72\xad\x96\xca\x39\xae\x26\xe1\xf7\xfd\xe0\x4c\xe1\x3e\x7d\xb7\x42\x54\xb1\x41\x1f\x57\x61\xa9\xfc\x61\x93\x1d\x22\x9b\xac\x26\xd4\x7b\xba\x67\xd5\xac\xb9\x52\x37\x65\x9a\xa8\x96\xa6\x11\xd6\x40\x89\x27\x20\xee\xd3\x89\x7d\x60\x7c\xd6\x36\x19\x1d\x06\xe4\x32\xf6\x79\x51\x87\x6e\x6f\x2d\xb7\x97\x3e\xd4\x72\x82\x5a\x13\x0a\x8f\xb4\xb6\x52\x3c\xec\x94\xa5\x44\x03\x69\xd4\x8c\x41\x1b\xe9\xa5\x68\x08\x2a\x1c\x02\xc0\x50\x47\x70\x2e\x1a\xab\xaf\x95\x61\x14\x5b\x89\x2c\x33\x67\xf5\x6e\x57\xfa\x95\x55\x87\xad\x9e\x0c\x73\x67\x55\x09\x20\x2b\x30\x11\xaf\xd5\xa6\x1f\xf1\xe9\xdb\xf6\x31\x99\x44\x73\x4a\xd0\x8b\x20\x00\x78\xdb\xa5\x8d\x37\x97\x7b\x92\x27\x1b\x0a\xf7\x4b\x8d\xb3\x31\xb7\xc0\x8a\x3a\x24\x4a\x2d\x11\xb0\xc9\x6c\xfa\x10\x4c\x04\xe0\xb8\x6a\x23\xb8\x21\x22\x8e\xb0\x3d\x86\x32\x7e\x44\x21\x3c\xad\x09\x34\x4e\xd4\x47\x7d\x31\x8c\x9e\x35\x52\x1b\x76\x84\xda\x54\x96\x28\xdf\x73\x4c\xde\xa2\x0f\xba\x07\xcd\x26\xe2\x6c\x36\x00\x7b\x0a\x2c\x28\x2e\xf3\xfe\xf4\xd2\x9b\x2d\x05\x6a\x3e\xa5\x29\x9b\x49\x1f\xd7\x65\xb5\xca\xd9\x18\x71\x6d\x70\x0c\x3b\x7c\x3d\x6a\xfc\xa8\xc2\x8f\x1a\xc2\x65\xcc\x43\xd2\x0b\x7a\xe4\x86\xd9\x6d\x61\xe2\x56\x7d\xa8\xc3\x69\x22\x6d\xda\x5f\xcd\x16\x68\xc7\x18\x74\x88\x93\xf4\x80\xbc\x91\x9f\x61\xab\xd0\xf8\x83\xf3\x5c\xa8\xfc\x37\xcf\xb3\xbd\xa9\x1c\x87\x2c\x5e\x41\x23\x9c\xa6\xe3\x56\x83\x68\x3a\xe9\x87\x41\x63\x9c\xf3\xf6\x9d\xee\x3a\x76\x10\x82\xee\x7e\xff\x0e\xd4\xa1\x88\x8d\x16\x20\x8b\x2d\x38\x72\x13\x40\xbb\x71\xaf\x14\xfc\xd9\x80\x45\x23\xf3\x4c\x4d\xaf\x1a\xc2\x00\xcb\x22\xd7\x08\xaf\x03\xd1\x05\xa3\xba\xe8\x63\x9d\xf4\x5c\x2a\x1f\x89\x0e\x19\x2a\xc8\x83\x2f\x50\x18\x0c\x72\xf3\x62\x4d\x94\x78\xcd\xc8\x3b\xac\x86\x16\x5f\x4f\x52\x84\x3f\x76\xc1\x0f\x7d\xd2\xb3\xd1\x47\xd3\xe0\xc7\x92\x1e\xbd\xe0\xe4\x90\x04\x8c\x83\xb7\x56\x96\x67\x8d\x94\x1a\xca\x8d\x8d\xbb\x22\x02\xd2\xd9\x85\x63\xb7\x4b\x5e\xa2\xe6\x7b\x91\x08\xd6\x15\x65\x11\x31\x60\x22\x80\x70\x57\xa5\xe5\xae\x31\xd3\xd0\xd0\x6c\x7d\x24\xd6\x90\xc1\x0a\x91\x02\x70\x55\x0d\x4d\xbd\x49\xc9\x85\x53\xf8\x24\xab\x10\xe7\x8b\x03\x69\x80\x6d\xeb\x1c\xe0\xe4\x75\x8d\x91\x36\x0b\x6f\x56\x4d\x0f\xfe\x9e\xad\x30\x45\x18\x41\xd9\x2a\xee\xd2\x12\x06\x04\xa3\x7e\xe8\x40\x7d\x50\x87\x59\x10\x76\xd9\x53\x07\x2a\xb3\x29\x43\x63\xb0\x96\x5f\x8d\xa5\xf8\xa4\xa0\xce\x48\x3f\xc3\xff\x42\x0d\x2e\x68\xad\x58\xff\x13\x99\xf3\x09\x34\x13\xd5\x13\xbe\x82\xec\xe7\x36\x60\x08\xab\x04\xd0\xcf\x10\xe5\x04\xb1\xc3\xa6\x1f\x1b\x69\x7a\x1d\x76\x1a\x50\x15\xf6\x2c\xe1\x0b\x26\xad\x38\x95\xb2\x13\x68\x31\x6a\x75\xa6\x0d\x39\x16\xd7\x32\xdc\x84\x13\x9a\xad\x3a\x96\x47\xe7\x53\x09\x05\x45\xc7\x35\x6c\x2f\xe4\x77\x59\x04\xce\xd0\xe1\x35\xe2\xd7\xd4\x80\xe3\xf1\x18\xf1\xa1\x2b\x52\x6f\x01\xdf\xec\x71\xc9\x21\x55\x00\x91\x47\xda\x6d\xb9\x86\xe6\x65\x81\x18\x83\x46\x11\x0d\xe4\x0a\x7e\xf3\xfa\x86\x79\x43\xee\x33\xe4\x0a\x27\x69\xef\x89\x1b\xf1\x8b\x61\xc8\xad\xe2\xaa\x2d\xc2\xa9\x57\xc1\x7a\xd4\x64\x95\x9f\x63\xa2\x77\x39\x08\xcb\xd6\x5b\xdf\x81\x9a\xc3\xb8\x97\xb1\x21\xdb\x0e\xb2\x8b\x60\xfb\xdd\x01\xb5\x9c\xd1\x27\x4f\x80\x91\x3b\xd2\x09\xaa\x17\xc6\x8c\x40\x44\xbc\xdb\xd8\x44\xda\xb4\x85\x9b\x56\x15\x4c\x24\xe4\xdf\x1a\xe7\x3e\xd3\xac\x10\x22\xa5\xdc\x2d\x78\x27\x13\xaf\x44\x93\xdb\xc0\x1d\x88\xd3\x96\x1e\xcb\x00\xa6\x85\xd6\xd7\x97\xf3\x09\x49\x57\x15\x0c\x1c\x63\x2d\xc0\x21\x8b\xce\xc5\xf6\x0d\x0e\xc1\xe4\xd0\x5b\x64\x8d\xbb\x88\xf7\x56\x85\xcf\x10\xfb\xfc\x5d\xd3\xa0\x1d\x06\x80\xae\x58\xae\x3e\x47\xbe\xfd\xf4\xf0\x61\x3b\x96\xfa\x7c\xf8\x01\xe2\xe4\x06\xa0\x73\x57\x03\x69\x75\xad\x89\x52\x37\x59\x72\x4e\x07\x3d\xe8\xc7\x8f\xa0\x1a\x42\xcb\xb5\x96\x78\x00\x03\x3c\xa6\xc0\x78\x56\x32\x83\xbe\x54\xc2\x99\x46\x0e\xec\x9a\x53\x48\xfb\xc4\x9e\xa9\xb1\x1a\x30\x8f\x3b\x27\x2e\xf5\x95\x2e\xfe\x57\xff\xac\x8c\x5e\x32\xd3\xd4\xae\xcc\x79\x31\x06\xb4\xd1\x7d\x72\x89\x1d\x48\xd6\xeb\xf2\x65\x6c\xc2\x42\x1b\xe2\xbd\x12\xba\xe5\xe8\x86\x0d\x2d\xf4\x3c\x14\xb1\x69\x7d\x49\x31\x4f\xce\x0c\x3f\xdf\x88\x7e\x8b\xad\x4d\xbf\x72\x2a\x5b\xf9\x34\xaa\x77\x5e\xb1\x6a\xa2\x9c\xb6\x67\x7d\x70\xd8\x8c\x11\x54\x13\xd5\x77\xc2\x0b\x72\x6d\xc2\x82\x7b\x52\xb1\x48\x01\x8a\x6f\x4e\xc2\x8f\xeb\xf8\xa6\xb7\xfe\x18\x99\x44\x48\x6d\x3f\x07\x51\x6d\x42\x50\x8a\x17\xe9\x2b\xe0\x24\x79\x52\x52\xc4\x55\xb5\x87\x1d\x42\xe6\x93\x6b\xa8\xe5\x32\xf0\x3d\x1e\x53\xe9\xc2\x94\x5e\xb3\x26\x97\x4a\xfb\x5c\x98\x47\xa1\x1f\x2b\x2c\xb2\x51\x95\x0a\xdf\xb9\x10\x3a\x7d\x4d\x37\x1c\x61\x53\x94\xb1\x7d\xc7\x8f\x06\x26\x61\xf4\xa6\x03\xa7\x3e\xa8\xeb\xb7\x1d\xab\x2e\xec\xe7\x71\x9c\x1e\x15\x28\xfa\x35\x2d\xf7\x6f\xd1\x2d\x60\xcd\xca\xfa\x90\x9e\xa8\xb0\xba\xb0\xf5\x76\x7b\x4e\x75\x23\xc7\x78\x4c\x79\x6b\xc6\xe7\xed\x26\x9a\xa9\x96\x0f\x91\x63\xed\xbf\x91\x7b\x37\xf9\xd4\x39\x4f\xfb\x8e\x51\x68\x99\x79\xcf\x48\xba\x27\xec\x82\x41\xd6\x9f\x18\xdc\x03\x3a\x8c\x6c\xde\xaf\x4f\xe0\xd0\xb4\x25\x91\xa4\x86\x5b\x84\xd3\xa0\xa6\x28\x1e\x03\x9a\xd0\x74\x87\xd2\x8b\x65\x90\x9d\x92\x12\xb0\x18\x79\xb4\x83\xbc\xb3\xf8\xe1\x09\x7b\x28\x55\x24\xe1\xa8\x1f\x3c\x22\x1f\x2d\x93\x0f\xad\xce\xea\x1c\xce\x06\xcf\x08\x84\x55\xe1\xae\x34\xb1\x6e\x98\x00\xb0\xb1\x5c\x03\x43\x45\xff\xa0\xbc\xc8\x2d\x6b\xab\x84\xdb\xe3\x04\xe2\x4c\x40\x83\x8f\x6e\x41\x97\xd4\xe4\x14\x1e\x79\x39\x27\x81\x65\x61\x43\xe1\xd1\x44\x34\xea\x51\x5a\x06\x16\xb8\xa0\x2f\x8e\x0f\x3d\xd5\x4d\x14\x03\xd4\x01\x4d\x4d\xf4\xd1\xd3\xea\x62\x4f\xdc\x47\x1e\x50\xa5\xe4\x70\xe1\x9c\xd4\x22\xca\x86\x6c\xa5\xe5\x5a\xf3\xb2\x2a\x55\xd8\xb8\xcb\x27\x28\x4a\x60\x10\xbe\xdd\x2c\x28\x43\x61\xd4\x98\x23\x08\xda\xa5\xb0\xcc\x97\x57\xac\xbe\x4b\x86\x85\x07\x09\x80\x39\x6f\x58\x0e\xca\x76\x72\x54\x06\x85\x1e\x87\x85\x69\x09\x9f\x9e\xee\x34\x28\xb3\xd3\x48\x19\x10\xa1\x96\x73\xb9\x8e\xe2\x47\x33\xff\x68\xdc\x28\xae\x79\x57\x7e\x80\x05\xe8\xa2\x9f\xf4\xbb\x7e\xd3\x4a\x5e\xbd\xe3\xde\x46\x8e\x8c\xb1\xee\xde\x3e\x9c\x9d\xe9\x22\xe9\x08\x81\x4a\x45\xe1\x53\xce\x21\xc2\xae\x22\xb7\x8c\xaf\xb7\x90\xc3\x20\xcb\xac\x00\xa8\xc3\x7a\xad\x8c\x4a\x06\xd3\xf4\x18\x3e\xc3\x31\x79\xc5\x57\xe0\xe9\x53\xe4\xa9\x1d\x3c\x65\x87\x06\xaf\xca\x61\xcd\x90\x06\xab\x06\xe5\xb9\xcd\xee\x3a\x0e\xf9\x0b\x05\xa8\x13\x6d\xd0\xdd\x2e\x72\x52\xe0\x58\xc0\x42\x4b\x90\x8b\xd7\x36\xf9\xd5\x66\x6d\xb1\xc6\x3c\xe3\xfa\x04\x2a\xc6\x23\x4d\xea\xa6\x41\xaa\x88\x23\xdd\x99\x4d\x70\x82\x2d\x30\xa1\x27\xa2\xc3\x8d\x23\x30\x5d\x93\x81\xef\x9d\x23\x9c\x8d\x03\xad\x7a\x03\xc7\xa4\x05\xb6\xab\x6f\x35\x84\x73\x92\x8c\xdc\xd6\xe4\xb4\x8a\x7a\x66\x11\x50\x58\x85\x53\x13\x6b\xa1\x70\x9f\xb4\xac\x8e\x68\x94\x71\x2f\xd3\x7d\xdc\x18\x52\x97\x13\xbe\xd5\x1a\x24\x64\xef\xa9\xc6\x49\xbd\x70\x11\x59\xd1\x7c\x19\x44\x48\x8e\x2b\xa1\x73\xf1\xb5\x6f\x38\x02\x40\x5b\xc1\x25\x90\x66\xbd\x83\xd0\xa0\x0e\x5b\xde\xf5\xae\xdb\x39\x2a\xbc\xb9\x4a\x5a\x16\xaf\x4c\x64\x0a\x73\xb8\x24\xd2\xbe\xa7\x2d\x77\xe0\xe8\x0d\x5d\xd8\x11\x62\x54\xc6\x05\x4c\xee\x03\x49\x09\x15\x1c\x91\x21\x67\x5a\x01\xa3\xd6\xe0\x0f\x20\x83\xa9\x1a\x4a\x64\x6b\x7c\x65\x40\xe1\x91\x44\x72\xfd\x03\x60\xa9\xc9\x0f\x53\x3d\x4d\x41\x67\x88\x3e\x3e\xd6\x02\x95\x89\xf3\x82\x15\x69\xf0\x86\xe7\x0e\x1c\xbd\x4d\x7b\x16\x87\x50\xb9\x88\x9b\x6c\x80\x05\x24\x65\xf1\xcb\x94\xac\xe2\x77\x80\xe9\xa7\x0d\xf6\xca\x54\x91\x0f\x2d\x11\xc5\x9a\x26\xde\xa5\xb2\x38\xef\x69\x16\xf4\xe4\x0c\x39\x35\xa4\xe9\x04\x3a\xb8\xe0\xe4\x6b\x29\xc5\x15\xce\xd4\xf4\x51\x0b\xfa\x98\x73\xfa\x28\x82\xf7\x0d\xcf\xc8\x5a\x62\x9f\xb3\x03\x7a\x1f\x2f\xd2\xe2\x57\x19\x7b\x29\x43\x08\x50\xca\x40\xe4\x70\xbd\x0c\xa2\xa8\x92\xf2\x10\x1d\xcd\x35\xfd\x58\x72\x25\xfd\x51\xaa\xa4\x68\x40\x95\x60\x3c\xb5\x47\x20\x40\xd7\x06\x15\x86\xab\x22\x57\x84\x88\xbf\x5a\x0b\x28\x9a\xfa\x73\x9c\xa9\x1c\x91\x2b\x78\x07\x9e\x1c\xf5\x2b\xc9\xe9\xc8\xc6\x4c\xf4\x08\x19\xac\x8b\x55\xe9\xd1\x0b\x6d\xf0\xfc\x0d\x30\x2a\xb0\x6d\xd4\x7b\x24\x29\x2e\x24\xf4\x89\xb6\x3d\x19\x83\xf3\x84\xd3\x82\x07\x92\xf4\xce\x3c\x15\x05\x8c\x6c\x21\x43\x4c\xa5\xcb\x81\x30\x07\xce\x38\xc5\xc3\xe7\x1b\x62\xd4\x65\x87\x15\xf0\x36\xb4\x09\x42\x31\x41\xb7\x1c\xca\x19\x10\x9f\x96\x65\x1a\xfb\x46\xfa\x38\x18\x5a\xfe\xd4\x93\xb8\x52\xc0\x28\xf4\x16\x3e\xce\xb4\x5c\xa2\x42\x23\x23\xd9\x38\x39\xc4\xe5\x51\x5d\xde\xea\x19\x4c\x1a\x29\x83\xb9\xc3\x81\x32\x73\x33\x23\x9d\x18\x3e\x4a\xdf\x46\xc8\x14\x98\x8c\xce\x9d\x3b\x56\xc9\xc8\x01\xe2\xdb\x1f\x87\x88\xfc\xde\xbc\xe8\xf9\x52\xec\x5f\x4d\x86\x40\x87\xd4\x38\xe0\xa8\x0e\x72\x10\xef\xa5\x66\x4c\x59\x9a\xbb\x9a\x4b\x21\x0c\x3b\x5c\x9f\x00\xb1\x60\x28\x73\x18\x57\xde\x7c\x15\x1d\x43\x5f\x45\x2a\xb9\x0f\xd4\x34\xc7\x89\x6f\xeb\x73\xe6\x1d\x14\x96\xbf\x71\xa5\x0f\x82\xca\x96\x93\xc1\x4f\xb0\xf9\x1f\xfb\x43\x4b\x67\x5c\x66\x97\xf6\xb5\xb2\x3a\xc2\x7e\xda\x04\xbf\x5e\xc9\x90\x80\xdc\x18\xb5\x40\xdc\xe2\xbc\x38\x64\x2e\x70\xef\xf8\xe4\x90\x9c\xf9\xb8\x0b\x9a\x3a\xc2\x7e\xf0\xf9\x42\xea\x0a\xb7\x96\x86\xa2\x75\x28\xf7\x60\xe9\x2b\x41\x2c\x93\x3b\x94\x01\x18\xbc\xde\x8d\x3b\x65\x35\xb4\x44\x92\xac\xf2\xb5\x8f\xf4\x22\x5e\x32\xd8\xf1\xaf\xd9\x0f\xb7\xef\x52\xce\x9c\x28\x27\xc0\x68\xb1\x07\xdc\xba\x5d\x70\x34\x16\x07\x93\x04\x79\x08\xc1\x7c\xdc\x44\x50\x3b\x68\xdf\x76\x1c\x73\x89\x5c\xea\xaa\xaa\x07\xd7\xe3\xf4\x72\x00\x13\x0e\x59\x92\xd6\xe2\xc2\xd0\xb6\x4e\x70\xf7\xdb\x05\xe8\x5e\x5a\xc2\xf8\xeb\x19\x4d\xd8\x94\xcd\x16\x94\x78\x89\xfe\xde\x32\x67\x6a\xf8\x33\xa0\xa9\x93\xc3\x60\x99\x5e\x98\x8a\x66\xa8\x62\x27\x55\x55\xc2\xcd\x1d\x08\x58\xf4\x90\xba\x00\x2c\x1b\xa3\xba\xb1\x9c\x84\xc7\xcc\x7b\x46\x52\x5b\x8d\x24\x05\xe6\xb2\x60\xc2\x2d\x35\x79\xd8\x28\xf3\x8b\x9f\x19\x0b\x8b\xe6\x6a\x28\x72\x99\xbc\x68\xba\xc2\x49\x4a\xe4\xbd\x36\x54\xe0\x8a\x7c\x44\xd7\x26\x49\x22\x60\xfc\x92\x90\xaa\xa6\x72\xcf\x0e\x1c\x87\xa9\x04\x17\xb7\x66\x95\xd4\x66\x84\x20\x9d\x68\x85\xba\x70\xb3\x72\xd2\x8f\xf6\x6e\x34\xeb\xe0\x61\xd3\xe8\xbd\x54\xe6\x4a\x10\x14\x32\x95\xa0\x07\x57\xcf\xcd\xf9\x2b\xb8\x72\xca\x61\x25\x00\x45\x34\x80\x87\xaa\x47\x5f\xef\x06\x58\x81\xf1\x71\x13\xe9\xfb\xda\xb8\x1d\xa1\x7a\xb1\x11\xa5\x2a\xc1\x4b\x28\xec\xe1\x7b\x47\xe4\x0a\x75\xc7\x03\xd8\x72\xff\x3b\x4c\xdc\xc7\x01\x44\x2b\x5c\x98\xb8\x51\x3f\xba\x2c\xd9\xaf\x2c\x8b\xf3\xad\x65\x21\xb8\x8b\x3f\x3b\x2a\x78\x9a\xa0\x94\x23\xca\x7c\xc6\xd5\x9a\x43\x09\xfd\xb0\xe0\xdf\x30\x8e\xd9\xf7\xb4\xbd\x5e\x17\x84\x4e\xc1\xce\x99\xd5\x3c\xc5\x8c\xab\xbb\xc5\x43\x10\x88\x7c\x94\x85\x0e\x7f\x54\x60\x57\xcc\xc9\x35\x38\xbf\xd6\x18\xe8\x58\x8d\x3b\xab\x46\x38\x3b\x75\xf1\x28\x32\x63\x19\x9d\xa2\x79\x1f\x87\xb5\x49\x54\x76\xca\xc1\x55\xff\xc3\x33\xb4\xa0\x0a\xa4\xab\x49\x96\x01\x30\xcf\x09\x9a\x28\x5e\xae\x57\xe0\x3c\xc1\xf9\xb9\x0c\x2c\xf7\xce\x18\x16\xd6\xfa\x70\x29\x23\x0a\x8a\x36\x12\xda\x07\xe2\xda\x2b\x67\x20\x32\x4d\x49\xbe\x3c\xef\x4f\x73\x1a\xe9\x72\xbc\xbb\xc9\x84\x6d\xab\xb6\xb0\x4b\xec\x44\xc6\x94\xef\xca\xb1\x1c\x3d\xd6\xa9\x84\x7b\xa4\x9b\x86\xc8\x90\xb9\xd5\x8c\xd3\x6d\xf6\xd6\xaa\xeb\xc7\x95\xbe\xb5\x2c\x0b\xc7\xbd\xbe\x85\x35\xd9\xc4\xca\xc0\x7b\xd4\xd6\xc3\x84\x3d\x96\x52\x8b\x8e\x95\xe1\xc7\x48\xb6\xdf\xbc\x1b\x35\x98\xba\xdf\xbe\x83\xbf\xd6\xbc\x28\xe7\xb4\xd2\x7f\xdf\x0d\x6e\xc2\xbf\x83\xc8\x7a\xf5\xc0\xd6\x6d\xca\x1b\x71\x2c\x87\x4d\xa7\x6e\xd8\xe5\xcc\x0d\xeb\xab\xb0\x38\xf6\x67\xd0\x09\xeb\x30\x2c\x47\x2c\x55\x54\xf5\x0c\x6f\x83\x31\xc3\x39\x2a\xb6\xdd\xc1\x89\xda\xb8\x23\x89\x9a\x3e\xdf\x6e\x96\x61\x26\x49\x6a\x69\xaf\x18\x27\x8a\x0e\xfb\xc3\x58\x06\xf3\xe3\xf0\x13\xe8\x05\xd7\x74\xa3\x9f\x64\x01\x08\xa2\xd5\xe2\x92\x28\x73\xf5\x06\x54\xa2\x52\x0e\x7a\x5c\x6a\x9e\x87\xa2\xcc\xc1\xcf\x3d\x58\x61\xb6\x89\x0d\xf8\x99\xe6\xda\xc0\x56\x53\xd0\x0d\xfc\x1b\x54\x18\x7a\x2b\xea\xc5\x15\xcb\x31\x13\x19\x84\x58\x91\xeb\x53\x03\xee\x16\x5a\x3c\x3c\x54\x68\x7b\x6e\x15\xe2\x15\xd8\x76\x54\xc2\xbd\x58\x04\x74\x74\x89\x00\x6e\xde\x32\x9c\xca\xa9\x40\xfa\x9c\x6a\xbe\xab\xe5\x5d\x88\x4a\xf0\xe2\xa2\x80\x77\xb1\x65\x09\x78\x2e\x41\x7e\x45\x8b\xbb\x29\x76\xad\x57\x82\x5f\xeb\x08\xf1\x46\x37\x72\x46\x72\x5f\x78\x34\x54\x25\xfc\xbc\xea\xea\x7b\xeb\xda\x9e\x48\x82\x13\x2c\xca\x29\x41\x92\xd6\xb3\x80\x8b\x9e\xad\x75\xbf\xd5\x07\x84\x54\x9b\xad\xb7\x5a\x80\xe0\x5c\x41\x8e\xea\xc0\xe5\x8e\x31\x3e\x47\x6a\xc3\x8f\x07\x2b\x24\xa1\x25\xcb\x50\x39\x2b\x03\xdf\x67\x7d\xff\x56\x85\x43\x17\x77\x93\x9c\x7e\xbb\xd1\xb0\xb4\x27\x03\xbe\x4a\x08\xa3\x2d\xba\x39\x6f\x91\x89\xab\x6a\xb9\x62\x28\x1b\xa5\xb2\xae\x32\x81\x69\x13\xa9\xc6\xc8\x71\x65\x5a\x46\x72\xcf\x49\xf9\x69\x03\x01\x79\x4b\xc0\xbd\x4b\xb9\xe3\xfc\x9d\xfa\x2d\x8f\xc3\xa6\x55\x15\x8b\x72\x93\x22\xc5\x96\xe5\x1b\xd4\xad\xee\xb5\x10\xb0\x28\xbf\xf3\x05\x3f\xc2\xcd\x3f\x57\x26\xc0\x4a\x25\x15\xd6\xc5\xdd\x05\x35\xf4\x31\x3f\xaa\x60\x33\xa9\x55\xb9\x7b\x56\x83\x24\xf3\x48\x8d\xdd\x87\x1a\x9a\x3d\x88\xd6\xd8\x7c\xa8\x01\xd6\x22\x65\x6c\x74\x35\x31\x29\x97\xca\xa0\x14\x49\x17\xd3\xb8\x88\xa6\x2d\xf9\xff\x06\x24\xa6\x78\x78\xb2\x66\x4a\x7f\x84\x10\xd6\x95\x12\xca\xc3\xd1\x26\x15\xc2\xb5\x2c\x00\xa3\xe7\x8f\x82\x4d\xbe\xfe\xff\x18\x6c\xf2\xf5\x23\xd8\x24\xb1\xdd\x0f\x84\xca\xd7\x44\xd0\x5f\x51\xa6\xef\x99\xfb\x76\x84\xca\x95\xe1\x48\x52\x13\xe2\x99\x03\xaf\x02\x2f\x39\xe2\x2e\x6c\xc4\xab\x56\xf5\xb9\xa9\xdc\x05\x49\xd5\xd4\x13\xbc\x71\x54\x24\x0c\x8a\xe2\xfe\x19\xdf\xe2\x43\xc6\x35\x32\x47\xb6\xc3\x1c\x36\x6a\xac\xaa\x4c\xd0\xf5\x03\x22\xab\xef\xd4\xa0\x59\x63\xce\xc2\x65\x7d\x65\x41\x5e\x4e\x3f\xe4\x04\x71\xb3\xb6\x78\x0b\xf6\x0a\x76\xc9\x0c\xd2\x0f\x44\x29\x85\xd3\x09\x51\xa1\x00\x6d\xc5\x1d\x78\x24\x15\xca\x2f\x6d\xc2\xab\x50\x25\x95\x97\x91\x8a\xad\x57\xb2\x42\x13\x97\x61\xfc\x31\x9a\x0e\xbb\xca\xda\xe2\x66\x27\xc3\x4d\xaa\x65\x51\x2f\x43\x57\x2a\x87\xdd\x59\x75\x6b\xa0\x94\xf1\x11\x83\x4d\xb6\x3e\xbe\xb5\x58\x24\xab\xf5\xb3\x5d\xbc\xda\x39\xdf\x78\x8d\x21\x5c\x37\xd2\x88\x3b\x80\xb5\xaf\xcf\x80\x55\x08\x51\x81\xfc\x69\x36\x28\x81\xe0\x37\xd9\xbd\x1c\xda\xad\xd7\xf4\x3b\x83\x02\xd4\x02\xc4\xd7\x47\xfd\x05\xd7\x36\x07\x90\x8d\xa8\x5e\x73\x8c\x10\x39\x9a\x4e\x8f\x2c\x90\x82\x0d\x90\x13\xd3\x64\xab\x78\x40\x47\x70\x79\xed\x13\xd0\xc6\xa1\xc2\x2f\x02\xcc\xfb\xe2\x98\xf6\x36\x0f\xaa\xc8\xca\x32\x58\xae\x67\xf7\x4c\x72\x39\x9b\x88\x78\xf4\xef\xe3\x56\x4f\x5b\xb4\xe8\x56\xb8\x9b\x05\xe3\x70\x85\x0d\x75\x91\xb1\x71\xba\xc2\xb9\x63\xe1\xff\x9a\xd8\xdb\xe7\x90\x42\x41\x81\x84\x4d\x38\x87\x6e\xcb\xcd\xe1\xaa\x76\xe1\x2e\xd0\x00\x11\xe3\x87\xce\x82\xee\x75\xb5\x52\x6c\x3c\xcf\xdd\x1b\x53\xa4\xa8\x91\x1e\xc5\x3d\x98\x48\x58\xfd\x78\xaf\xcf\x2c\xf3\xe0\x0c\xe8\x82\xb8\x67\x30\x64\xcf\x4c\xcb\x3e\xa6\xd6\x42\xc2\x12\xb0\x09\x39\xb5\xfe\xec\x65\xd0\xed\xc0\x78\x59\x25\xda\x3f\xaf\xac\xd4\x32\xee\x74\x40\xe8\x66\x8c\xf1\x0e\x9b\xcb\x15\x01\xc8\x2f\x4c\x36\x3b\x8a\xff\xe0\x5c\x2c\x45\x80\x99\x5e\x58\x26\x57\xcc\x1f\x57\x72\xd2\xb5\x9a\x62\xd8\xac\xc0\x8e\x39\xed\x7e\xdc\x15\xae\x26\x31\xe1\xee\x22\xec\x00\xfd\x88\x6f\x77\x77\xec\xea\x7d\x7f\x94\x2c\x0b\xe8\x3a\x41\xb1\x1a\x96\x49\x8c\x2e\xc8\x91\x6b\x4a\x35\x39\x9c\x21\x7a\x3e\xa3\x5f\x78\x56\x4c\x06\xb6\xae\xe5\x8a\xab\xc7\x61\x65\xd0\xb5\xda\x22\xd7\xa8\x40\x9f\x32\xec\x86\xdb\xef\x1a\x7b\xe6\x5d\xbf\xb5\xa5\x3f\x33\x3b\x46\x40\x08\x0a\xae\x1b\xb9\xf2\x8a\xf2\xdc\xf8\x68\x9d\x91\x9b\x2e\x27\x57\xa9\x89\x3b\x6e\x3d\x94\xd7\x68\x35\x52\x82\x75\x38\x75\x4d\x0e\xca\xc1\x0f\x63\xc6\xb6\x01\x84\xc8\x66\x5d\x77\x4b\xbe\xab\xaf\x08\xf2\xd2\xbf\xc0\xd4\x2e\x6f\xac\x8e\xb8\x7a\xc8\x96\x6d\xab\x29\x16\x0f\x3c\xa9\x25\x1c\x9b\xa1\x39\x93\xbc\xb1\x1d\x31\x7f\xe8\x5d\x51\x70\x52\xb6\xce\x55\x93\x9f\x55\xcd\xd4\x7b\xa3\x77\xb6\x2e\xeb\x8d\xd6\xe4\xbc\x02\x5a\xfa\xd3\x37\x58\x1a\xe0\xd9\x03\x99\x64\x07\x0e\x2c\xfd\xe4\xb3\xa5\x4f\xdd\xaf\xe4\xbc\x6b\xd5\xc5\xd8\x34\x5c\x74\xbf\xab\xe1\xe8\x7e\x25\x97\xba\xe1\xa1\xc6\x0d\x57\xdf\xd7\x70\x5f\x5b\x49\x4d\x48\xda\x9c\x66\x49\xbd\x6d\x6e\xac\xa6\xd8\xdc\xf1\xa7\xfb\x91\xad\x57\x0f\x89\x14\xa5\x71\x8b\xd0\x1f\xc2\xae\x27\xa0\x85\xf5\xdd\x4e\xf9\xb7\xfa\x85\x85\x2a\x2f\x31\xc4\xd7\x13\x60\x2b\xa0\x30\x5d\xc8\xd1\x84\xd5\xbc\x6a\xcc\x31\x43\x5c\x92\xaf\x0e\xed\x2c\x99\xa7\xc7\xb7\x6c\xd8\xae\x1b\x3f\x20\xd1\xbb\xb6\xf5\x50\xe7\xf0\xc8\xdc\xb0\xf7\x2e\x79\xa0\xbf\xb2\xe6\xb5\x1c\x2d\xaa\x47\x4b\xda\xc2\x65\xc5\xc0\x8b\xe6\x9e\x1b\x42\x01\x46\xf5\x5d\x3f\x4a\xb9\x4f\xd7\xb7\x91\xc3\xbb\xd4\xc2\x59\xd2\xa6\x4f\x68\x52\x48\xea\x03\x3c\xae\xd9\x81\x87\xae\x49\x30\xc6\x50\xdc\xbe\x2e\x38\x55\x0d\x34\xc3\x0e\xcd\xf9\x50\xe6\x21\xe4\x02\x74\x81\x75\x9d\x8f\xe4\x1e\xa2\x72\xea\x50\x31\x0f\x49\x47\xc3\x71\x3e\xfc\x0a\x2e\xae\x91\x0f\x8a\x3d\x3e\xab\x4c\x5d\xb8\xd3\x08\xcd\x83\x84\x1a\xa7\xb2\xfe\x46\xc6\x72\x13\x5e\x20\xb2\x59\xb5\x67\xc5\xcc\x5d\xe0\xbb\x24\xdc\x22\x65\x0f\xb2\x19\xad\x36\x47\xb7\xc3\xcc\x7e\xd8\x93\x9a\xed\x50\xfe\x30\x2d\x87\xd9\x7f\xdb\xb4\x2c\x59\xd3\xc1\xaf\x88\x4f\xcb\x2a\x56\xb9\xcc\x9c\x26\xf7\x54\x19\xc0\x64\x47\xee\xdd\xee\x10\x29\x44\x28\x82\xeb\x7f\x76\xe2\x52\xea\x21\x4f\xb2\x56\x52\xf2\xe9\xcc\x01\x00\x10\x11\x98\xce\xb8\x6a\x39\xa2\x41\x35\x1e\xc4\x8e\x78\xf2\xc6\x1e\x6a\x14\x07\x2a\xd8\x4d\x74\x12\xed\xb1\x2a\x92\x71\xc0\x2e\xe9\x93\x55\x16\xa9\xb1\x91\xd9\x34\x55\x7f\x5c\x11\xda\xcf\xcb\x1e\xe7\xb2\x7a\xe0\x7f\x09\x3b\xd0\x7e\x5e\x75\xb4\x4c\x77\x7f\x7c\xd4\x1c\x81\x7c\xf0\xef\xac\xaa\x38\xe1\xa8\x76\x37\x84\x3e\xf6\x66\x7d\x40\x73\x86\x7a\x16\x0e\x26\xe1\x6f\xe2\xa9\xb2\xb7\x53\x75\x24\x1c\x83\x29\x52\x22\xb0\xa9\xaa\x3d\xb6\xe1\xe2\x66\xd2\x17\xc1\x1f\x32\x66\xfe\x1e\xdd\x9e\xf1\x61\xaa\x0f\x77\xba\xc6\xb4\x1a\x14\x0d\xe5\x0c\x99\xdf\xfc\xa0\xac\x99\x66\x55\x40\xd5\x0a\xfc\x0e\x37\x1f\x8c\xc8\xf0\xc1\x72\x20\xf3\x96\x90\xbf\x30\x45\x4b\x56\x1d\xb1\x9e\x80\x57\x39\x0f\xeb\x5b\x33\xaf\x2b\x37\x28\xc3\xee\x9d\xd8\x81\x2d\x66\xdc\x8b\x1d\x32\x59\x72\x08\x19\x37\x6c\xa7\x36\xb0\x0c\xaa\x8b\x95\x49\x0e\xb1\x87\x48\x81\xcc\xb8\x5f\x88\x78\x6c\xdc\x50\xba\x65\x67\xc1\x9f\x54\x13\x47\xb9\x93\x5b\x13\x3a\x6e\xc0\x4b\x9c\x1e\x4a\x72\x00\x4c\x6c\x62\xf3\xe4\x57\x46\x85\x57\x37\x66\x39\x8f\x8e\xd3\x2b\xed\xe1\x9a\x8f\xbc\x72\x73\x02\x2f\x5d\x94\xa1\xae\xc9\x02\x05\x04\x88\x39\xec\x2c\xb0\x35\x8c\xbf\x66\xac\x4f\xe1\x8c\xe7\xcc\x13\xa8\xdb\xd2\xc1\x13\xe7\x64\x9e\xb8\xf0\xc7\x6a\x32\xb8\xa6\x49\x0e\xc7\x59\xf1\xb6\x37\xbc\x16\xe4\x87\x86\x50\x7e\x4a\x8c\xd0\x2c\x04\x7d\xd9\xbb\x98\xa9\x21\x55\x85\xc2\x2f\x5b\x0d\x0b\x1b\x23\x82\x63\x6c\x3d\xb0\x2e\xae\xcc\x61\x35\x90\x9f\x62\x3b\xe9\xa2\xd3\x04\x55\x5b\xca\x64\xf8\x65\x05\x39\xa0\xd1\x4c\xe4\xf0\xce\x0a\x1d\x24\x3e\x6c\xb0\x3a\x6f\x30\xec\xc6\x1a\x45\xc3\xbe\xaf\x36\xd0\x51\x8d\xc0\x0f\xb5\xe7\xc0\x13\x96\xa6\xbc\x88\xd4\x4f\x1e\x90\x97\x0f\x9c\x76\x92\x1c\x8f\x09\x8b\xe0\xfd\x00\x57\x60\x58\x85\xf4\x56\x6b\x4e\xe5\xfb\xa5\x8d\xc8\x79\xbd\xee\x39\x4e\x4c\x93\xb4\x17\x72\xe7\x07\xcf\xdd\xf4\x7d\x54\xc7\x22\x50\x9c\xe0\x6c\x82\xf0\x25\x7f\x22\x4d\x44\x8b\xbd\x23\xb3\xa4\xcd\x86\x6d\xa4\x24\xe1\xcc\x2c\xcd\x01\x89\x33\xaf\xc3\xf8\x37\xb5\xae\x28\x2a\xfd\x24\x1f\x35\xcb\xf5\x04\x5c\x78\x72\x5e\x68\x46\xfe\xae\xfb\x8f\x9a\x8b\x5c\xc9\x55\x2b\xda\xb8\xb9\x25\x4d\xf6\x4e\x46\x9b\xc1\x20\x72\x56\x87\x7b\xb0\x57\x9c\x17\x92\xeb\x52\x5e\x02\xce\x1f\xeb\x5a\xb6\x71\xce\x21\xd7\x88\x91\x1c\x43\x35\x9e\x36\x2c\x6d\x6b\x63\x6c\x7b\xfa\xff\x15\xcb\x11\x2d\xf2\x90\x7b\x14\xc3\x59\x6c\x41\x3a\xbc\x2b\xa7\xdd\xc0\x9f\x65\xae\xae\xc1\xd3\x2d\xec\x88\x36\xb3\x81\x53\x44\x8e\x22\x80\xe6\x7b\x75\xac\x8e\x70\xfc\xb2\xbf\x8d\xf7\x98\x86\x4a\x02\x08\x57\xd4\xe3\xc4\xf4\xe8\x73\x8f\xe9\x11\x9a\x64\x40\x6b\x3e\xf6\x7a\x62\x58\x8d\xcd\x8e\x78\x91\x97\x22\x2e\x4c\xc4\x61\x35\x38\x71\x3d\xf4\xab\x04\x63\xdf\xbc\xe3\xbf\x9b\x41\x8a\xb5\x42\x85\x7c\x4b\x91\x6b\x33\xd8\x44\xd7\xdb\x28\xb5\x58\xb9\xc8\xc0\x49\x1e\xdd\xdf\x5a\x7b\x22\x2b\xf4\x9e\x26\xce\xe1\x10\x90\xdb\x70\x35\xfa\xe8\xa5\xc2\x9e\x6f\x9e\xf1\xfa\xa4\x88\x56\x77\x55\x01\x92\xca\x67\xce\x5a\x9c\xa6\x02\x9e\xf8\xec\xb1\x65\x27\xed\xed\x4d\xec\x33\xae\xa6\xec\xb4\x45\x2a\x13\xe8\xcb\x28\x61\x81\xf1\x26\x33\xcb\xbc\xc6\xa1\x69\xb0\xd5\x9e\x7d\xb2\xea\x96\x63\x6e\x7e\x7d\x20\x73\xea\x31\xe2\xee\x71\x80\xfe\x4c\x58\x4d\x51\x7d\xb9\xfd\x38\xd6\x4f\xdd\xc1\xec\xd5\xf7\x0c\x33\x0d\x8d\x1d\x21\x5d\xa8\xdc\x3f\x6f\xb4\xb6\x50\x77\xe9\x57\x8e\x2b\x6a\x8a\xea\xdb\xec\x35\x42\x42\x97\x55\xd0\xc9\xac\x71\x38\xf3\xcf\xe8\xa4\x71\x2a\xbf\x22\xc0\x81\x87\x1c\xaf\xff\x7a\x0b\x7a\x66\x39\xa2\x3d\x85\x63\xd0\x4c\xea\x1d\xaf\x3f\x6f\x5f\x0b\x29\xfd\x08\x5b\x99\x22\x67\xaa\x27\x7d\xa1\xdc\x0a\x73\x32\xb8\x93\xe6\x78\x8c\xdf\xf0\xe5\xcb\xb3\x72\x16\xb1\x66\xa1\x23\xae\x7d\x77\xde\xae\xb0\xe3\x4d\xeb\x88\xc6\x50\xcd\xe0\x73\x17\x0e\xa3\x08\x77\x45\x3a\x6a\x5e\x6e\x0e\xf3\xa8\xca\x56\x62\x7d\x64\xc9\xe6\xa3\x86\xf2\x42\x39\xa7\xe6\x79\x3d\xc8\xd1\xfc\xac\xef\x4c\x35\x42\x73\x67\xd8\x61\xe5\xe5\x73\x74\x57\x2c\xaa\x41\x87\x66\x43\x70\x46\x36\x04\x45\xde\x13\x75\xae\x8c\xc1\x6f\x3a\x23\x12\x98\xaa\x4f\xc9\xbb\xc8\xf2\x4c\xee\xb0\x3c\xe3\xf2\x38\x80\x8c\x3a\xbf\xc6\xae\xa9\x68\x20\x73\xe1\xed\x74\x90\x74\x35\x46\xaf\x61\xe5\x4b\x7c\x43\x9b\xb1\x04\x08\xb2\x17\xdf\x8a\x64\xc6\x79\x99\x76\xe1\x9f\x02\xbb\x07\xb9\x46\xa8\x33\xd7\x88\xa5\x63\xcd\xa4\x68\xed\xe4\xb4\x66\xc5\x6d\xfe\x47\x38\x03\xe6\xe5\x41\x7f\x5d\x4e\x8a\x94\x1b\xe9\xd5\x29\xe0\x0e\x81\x7f\x9f\x68\x21\x4d\x71\x9d\xc3\xaa\xe8\xce\x52\x5c\x46\x7e\x81\xa2\x3e\x23\xf6\x55\xbd\x9d\xdc\xb0\x54\x3d\xb0\xe7\x17\xf5\xa2\x1e\xb8\x45\x16\xb8\xe8\x4f\xf0\x73\x30\xaf\x60\x0f\x42\x3a\x2c\x6a\x25\xeb\x91\x67\x8d\x3d\x5f\x99\x24\x63\x36\xa3\x4f\xb8\xcb\x47\x33\x2e\x35\x56\x8d\x70\xa8\xce\x93\x1f\x31\x93\xaa\xdb\x8b\x54\x2a\x24\x04\x74\x99\xb7\x29\x6a\x8b\xa4\xda\xf9\xbb\xd5\x42\x1a\xf5\xc8\x1b\x8f\x64\xeb\x7c\x43\x19\x20\x20\x60\x2e\x6b\xea\x9e\xed\xb4\x2c\xb2\x51\x35\x74\x48\xc9\x4b\xba\xd7\x5a\x04\x64\xf9\x24\x88\x55\x88\xcc\x34\x16\xba\x49\xde\x72\xc1\x44\xf6\x56\x37\x61\xa9\x7a\x2a\x92\xc2\xa3\xb9\x2a\xeb\xef\x78\xe2\xaf\x9e\x92\x76\xd2\xa9\xac\xc9\xf4\x78\x0f\x2f\x4e\x82\xe0\xe8\x12\xe7\xf8\x5e\x65\xa3\x19\x59\xde\xd4\x5b\x25\xfa\xde\x93\x44\xda\x15\x5c\x46\x9a\xad\xa3\xb0\xee\xfd\x8d\xf9\xd9\xfc\x30\xa6\x15\xfc\xb8\x63\x0f\xd5\x50\xae\x21\xb9\x98\x62\x8c\x91\x1c\xf4\x78\x90\x4b\x29\xaa\xf7\x4c\x13\x19\x9d\xcd\x85\x07\x4d\xda\xe0\x5a\x0c\x6b\xd6\xb7\xbc\x54\xb6\x12\xf8\xa3\xb5\x23\xf9\x89\x35\x8b\x5a\xa4\xaa\xad\x40\xa3\xc6\xb5\xe8\x59\x3e\x4e\xc2\xe0\x8b\x99\xdc\x0c\xc1\x07\x28\x78\xcc\xd6\xe1\x40\xeb\x8c\xcb\xa6\xb7\x9a\x70\x5e\x4e\x6f\x96\xab\x65\x9d\xa9\x7c\xb2\xae\x94\xa8\x42\xb5\xbd\x9f\x84\xe4\x50\x8d\x4d\x36\x2f\x66\xd6\x6c\xe3\x30\x45\x5f\x90\x24\x10\xd7\xbc\x33\x70\xf4\xc9\xdb\x12\x93\x05\x60\x3b\xa8\xbc\xeb\xf8\x72\x92\xf8\x92\x6f\x70\xd7\xcb\xc3\xe3\x2d\x37\x81\xa3\xb6\x55\xb5\x26\x52\x3d\xed\xf4\x85\x5c\x77\xaf\x30\xe9\x14\x79\xfd\x28\x16\x2c\x22\x03\x40\xcf\x4c\x8b\x23\x5a\x9c\xad\x27\x55\x83\xcb\x45\x30\x9e\x05\x83\xbc\xcc\x54\x70\x29\x2c\x9d\xb3\x3a\x2b\xae\xb3\x54\x62\x2d\xb9\xd2\xda\x09\xbf\x18\xd6\x5e\xf7\x0e\xb1\x8e\xd9\xb2\xd5\x66\x9c\x74\x2d\x3b\xb6\x85\x68\x23\x0e\xae\x8a\x10\x79\xba\xc1\xb8\xae\x8d\x7f\x2a\xd1\x96\x43\x9b\x18\x14\x44\xb2\xcf\x50\xa8\xde\xce\x3b\xb2\xd9\x14\x42\x6f\x21\x4a\x37\x02\xde\x96\xc9\x53\xae\x47\xbc\xa3\x1f\xb7\x61\x45\x70\xf1\x23\xb9\xdb\xc9\x50\xb5\x7b\x8d\x2b\x86\xea\xa6\x55\xd8\x10\x89\x26\x3e\xb4\x41\xa3\xad\x69\x54\x13\x3b\xe5\xd3\x18\xf5\xb4\xd9\x0d\x3d\x96\xf2\x1a\x02\x78\x1f\x83\x7f\xd5\x83\xb7\x05\x69\x3a\x6c\x68\xbf\xea\x0b\x64\x0d\x43\xe7\x33\x72\x1c\xb3\x77\xf4\x49\xc4\x7b\x96\x39\xb0\x6f\x2c\x0b\x65\x4d\xb0\xbb\xc2\xea\x08\x5b\x5c\x51\x17\x59\x76\xd3\x43\x17\x33\x16\x6e\xf4\x25\x34\x96\x39\x49\xfa\xfd\x32\x7d\xb3\x5e\xa3\x8a\xd8\x4d\xf8\x6e\x70\x84\x7a\xdc\x4f\x18\x6b\xdb\x16\xf6\x0b\x52\x83\x33\x2e\x12\x2c\xfd\xae\x50\x02\x4e\x98\x65\xf2\x2d\x95\x01\x48\x9c\x02\xa0\x77\x27\xb9\x87\x9b\x0a\x10\xd7\x1a\x5b\xf4\xde\x39\xcc\x58\x35\xa8\x80\xd7\xc7\x87\x0b\x30\x98\xa7\x09\x13\xd8\x9a\x3e\xf4\xf7\xb3\x83\x24\x14\xb6\x50\x77\x84\xf8\x2c\x22\x2a\xb7\xc8\x27\x1f\x8a\x77\x9a\x9d\xd1\x7b\x0d\x49\x16\x80\xe6\xad\x07\xe4\xbc\x84\x11\x7c\x25\x9c\xf9\xf4\x9d\x79\x4d\x5d\xa8\x67\xe4\xe1\xd3\x0c\x88\xf3\x60\xb9\xa2\x22\xf2\x54\xcb\xc3\x84\x70\x50\x15\x5d\xa3\xea\xc8\x5f\x91\x44\xe6\xb3\x3c\xfd\x03\x26\xb9\x83\xa4\x10\x0e\x01\xf5\xa9\x1b\x2b\x80\x3e\x4e\x7e\x7c\xa7\x3d\x94\x57\xc0\x82\x23\xac\x85\x7e\x30\x79\xbe\xdd\xc7\x75\x5a\xb5\x02\xfc\x61\xf7\x05\x2e\x01\xb4\xc2\xf6\xce\x1c\x18\x2d\x55\xec\x6d\xb8\x19\xd3\x59\xe1\x6a\x74\x56\xf6\x38\x2b\x41\x23\x9c\x15\xe8\xd0\x96\xbc\x57\x7a\x91\x3e\x90\x3b\xc2\x6e\xbf\x60\x9b\xd1\xdd\xc7\xa0\x90\x25\x6c\x9f\xf0\x70\xcc\x78\x2f\x1e\xa2\x87\x63\xb6\x97\x1c\x6d\x1a\xb4\x71\xee\x2e\x56\x47\xfd\x22\xfd\x1a\x94\x0b\x4a\x21\x1b\x61\x49\xb3\x98\x23\x19\x32\x9c\x36\xb9\xa4\x23\x12\xd5\x11\xaa\x3f\xde\xa3\xfd\x76\x07\xb9\x15\x1c\xa2\x39\x6d\xa3\xbd\x0c\x94\x20\xaf\x41\x2e\xc9\xaa\xc8\xc9\x27\x9f\xc3\x28\xe6\x2b\xe6\x5a\x9b\xe4\x44\xef\x04\xa0\xf1\x27\xd6\x13\x5e\x8a\xeb\x64\x0e\x53\x21\x5f\xbe\xeb\x46\x8b\xed\x38\x6a\xf7\x87\xe8\x4f\x15\x53\x08\x92\xdd\x3e\x8c\xfd\x34\x39\xb7\x23\x01\xa0\xce\x50\x2d\x71\xf1\x20\x36\x0f\x96\x47\x56\xe4\x61\x2a\xf4\x50\x5d\x90\x2a\x31\x96\x33\x15\x9e\x16\x31\x92\x03\x78\x23\xef\x10\x26\xd5\xd6\x44\xb9\xe9\x4b\x1a\x51\x75\xb7\x07\x23\x3a\xdf\x63\xf6\xc8\x75\x43\x16\x76\xb1\x39\x75\x0f\x3b\x73\x75\x90\x1d\xd4\x4c\x6c\x83\xbc\x9d\x4c\x82\x84\x15\x33\xd6\x2d\x52\x65\x70\xe9\xb6\x69\x19\x40\x95\xa9\xdc\xc1\x93\x7f\xbd\xe2\x77\xe9\xa3\xb2\x31\x15\x57\xb0\xb4\xd1\x9a\xee\xb8\x70\x50\x0b\x38\xb2\xa9\xe4\xcb\x7b\xbf\x0a\x84\x0c\xd7\x97\x07\xae\x79\xc4\x99\xa8\xde\xc3\x61\x8e\x4b\x53\x70\x48\xe9\x3e\x20\x31\x81\x29\xce\xf0\xbb\x1e\x81\x10\xc3\xa5\xd7\x3c\x2c\xca\x3b\xdb\x33\xa5\x79\xe4\x09\x1e\x91\x38\xa3\x4e\x41\x1f\x45\xce\x04\x0c\x28\x41\x55\x08\x1e\x5c\x71\xe7\x6f\xb1\xce\x07\x6b\xc9\x0e\xe3\xef\x70\xa9\x31\x0f\x46\x4c\xeb\xd7\x14\x13\x60\x97\x82\x07\x93\x35\x3b\xe1\xeb\xf9\x4b\x6e\x39\xa7\x43\x0d\xfb\xd1\x2e\x28\x44\xfc\x34\x66\xeb\x50\xd1\xd3\x1a\xee\xd8\xf9\x32\xbc\x7c\x8b\x33\x19\xdc\xbe\xce\x42\x8e\x99\x98\xcf\xd7\xc1\x7a\x9b\x6c\x09\x5a\x1c\x50\x8b\x35\xaf\xe6\x3a\x14\x93\x5a\x46\x2d\x1a\xde\xe8\x6e\xf4\xd6\x37\x7d\x6e\x4d\x1b\x4a\x85\x8b\xe0\x1f\xcd\x7e\xad\xee\x18\x64\x26\x5d\xb7\xce\xc5\xc8\x73\xf6\x2b\xcf\x81\x28\xcd\xfd\x3d\xdc\x40\xb2\xf5\x28\xcb\x95\xe1\x2c\x7f\xc4\xa8\xf9\x1c\xfc\xfe\x0c\x67\x00\xc4\x65\x2e\x77\x0c\xce\xbe\xe2\x1b\x76\xf0\xc4\x13\x0f\x94\x75\x6f\x45\x31\xfa\xca\xb7\xf3\x18\x0d\xbd\x48\x4c\x64\x96\x64\x3c\xe5\xcb\x19\xba\x6d\x14\x86\xd2\x6a\x52\x68\x35\x7b\x26\x73\x90\x6b\x24\xfc\xa9\xf9\x31\xfc\x69\x20\xf7\x86\x4f\x0f\x02\x3e\x14\x94\x1f\x2e\x3c\xd1\x47\x12\x48\xdf\x4d\xf6\x9a\x7a\x61\x1c\x2b\xe4\x1e\x81\x44\xe4\x71\x95\x12\x69\x74\x0a\x0a\xaa\x7c\xba\x12\x6d\x06\x25\x23\x7d\xad\xba\xd3\x6b\x20\x96\x6a\x19\xd4\x27\x0b\x67\x31\xf2\x06\xf5\xa4\x97\x56\x30\xff\xdf\x23\xd6\xbe\x0b\x8d\xfa\xd3\x7d\xd6\x3e\x1b\xff\x5a\x2e\xbf\xea\xf5\xed\x88\x6b\x49\x59\xa5\xb3\x52\x40\xb4\xaa\x21\xb1\x0e\xcc\x5d\x2f\x45\xe2\x01\x10\x7d\x5d\x2b\x73\x84\x9e\x23\x9c\x3e\x4a\x4e\x2a\x84\x53\x1a\xca\x23\x0a\xb3\x38\xd1\x02\xa8\x23\xdc\xeb\xd1\x85\x07\xb5\xad\x99\x41\xc8\x7b\xb5\xd2\x88\x65\x7b\x93\x5e\xb5\x6e\x29\x61\xdf\x5d\x8f\xa0\x75\x8f\xbb\x6a\xaa\x5e\x16\x9a\x92\xda\x94\x93\x44\xe9\x7f\xec\x17\x4d\xd4\x5e\x85\xe8\x9c\x0e\xa8\x7d\x3c\x90\xdb\xf6\x54\xee\x28\xaa\xbc\x31\x65\x0f\xc2\x09\xf9\xd3\xda\xef\x7b\x12\x38\x5a\x69\xae\x9e\xa2\x1c\x35\xfa\x6e\x6e\x0b\xf1\x9a\xe5\xd2\xcc\x41\x82\x74\x22\x6d\x55\x8e\x8b\xaf\x0f\xe4\xf4\x69\xf2\x77\x15\xb8\x38\x4f\x27\xd4\x7e\x2b\xd0\x55\xd8\x30\x1a\x9d\xc1\x0c\xac\x51\x11\xf8\xaa\x25\xfe\x9c\xe2\x5c\x17\x3b\x8f\x0a\xc7\x69\x83\x88\x68\xf7\x8a\xe6\x64\x20\xc7\x0f\x56\x28\xe2\x4f\x00\x1e\x3e\x0d\xca\xda\x1f\xb7\xe8\x56\x02\xe1\xb2\x49\xc9\x9d\x38\x2f\x92\xeb\x13\x0f\xf5\x3a\x22\x76\xa4\x6b\x83\xcf\x80\x1e\x73\x7a\x17\x56\xb7\x77\x52\x60\x1c\xcf\x4f\xbb\xf3\x48\xe9\xad\xd4\x44\xdd\xdd\xb0\xaf\xfe\x40\xdf\xe0\x0a\x38\x66\xd5\xd9\x3b\x5c\x97\x6e\x4a\xea\xbc\xd9\xd2\x0c\x68\x7e\x87\x90\x8a\xc0\x6e\xa4\x6e\x16\x50\x60\x9c\x46\x32\x6e\x3f\x82\x36\x29\x0f\x4b\xda\x6b\x61\x13\x7f\xac\x86\xf6\xd1\x78\x09\x3f\xdf\xc3\x6a\x74\x16\xa1\xe0\x0e\xe5\x92\x06\x82\x9c\xe0\xc6\x1f\x91\xd3\x1f\xc5\x9c\xfa\xeb\x94\xb9\x22\x8c\x2e\xa0\xff\x71\xf8\xc0\x5a\xd2\xf1\x1e\x84\x41\x25\xdc\x48\x3f\x28\x70\x4c\x02\x87\x02\x0c\x64\x4e\x9e\xce\x3f\x7e\x2d\x97\x21\xb4\x88\x72\x4b\x2c\x8f\xc1\xf0\x28\xc8\xa4\x78\x23\xb6\xa7\xc0\x2a\x5a\x25\x1c\xee\xea\x42\xdf\x94\xf6\x9d\x2f\xcf\xc8\x23\xf9\xe3\x20\x77\x4c\x00\x40\x35\x90\xcb\xbe\x6e\x39\xd6\xdc\xc4\xad\x38\xa0\x33\x77\x8f\x7f\xab\xa5\x63\x10\x1e\xaf\xc6\x6c\x64\x31\x9e\xdf\x43\x28\xe6\x8d\x09\x30\xdd\x37\xae\xc0\xc2\x29\x61\x1b\x1e\x9f\xad\xae\x16\x7b\xa1\xa2\xaa\x71\xb4\xd1\xe5\x76\x25\xa4\xfa\xa1\x0b\xcc\x88\x5b\x4a\x28\x72\x76\x73\x27\x0c\x0a\x3b\x05\xfb\xd5\x18\xe1\xf7\x44\xe6\x8e\x32\xea\x3f\x06\xf8\xf0\xba\x70\x44\xb4\x85\x23\xca\x8e\x9e\x79\x72\xa7\x50\x9d\xf8\x23\x51\x3f\xff\x8d\x13\x04\x09\x8d\xf4\x35\xcf\x7a\x50\x27\x95\x5f\x7c\xa3\x5d\xd5\x98\xcc\x35\xa7\x59\x13\xd5\x4d\x19\x9e\xf6\xbe\x1c\x98\x83\x51\x92\xcc\x40\xe2\x7c\x7c\x72\xdf\xa9\x3b\x28\xdb\x11\xda\xe6\x92\x62\x84\xec\x5c\xee\xb1\x4a\x72\x17\x14\x1b\xac\x19\x3f\x31\x51\xca\xb0\x55\xe6\x8a\x3c\x1a\x0e\x8a\x41\xba\x86\xc7\xf3\xfc\xcc\xcd\x1c\x9c\xbb\xae\x58\xd5\x7a\x7a\x60\xe7\x1a\x82\x3b\xc5\x26\x4c\xeb\x7f\xda\x2f\x56\x5d\x3c\xb9\x6b\x2d\xe2\xd8\x15\x1a\x93\x97\x85\x93\x2a\x72\xb6\xe5\x47\xac\xd8\x80\x0a\x87\xd4\x3b\x9e\xad\xc5\x99\x03\x5c\x13\x2f\x55\x77\x0a\xc0\xcd\xa0\x7c\x59\x35\xd3\x86\x42\x7b\xa1\x1a\x43\x4a\x23\xd8\x05\x23\x7f\x37\x77\xdb\x10\xab\xa1\x16\xb0\x89\xc3\xca\x1e\x6a\xde\x1a\xac\x94\x2e\xba\x2a\xb8\x30\x23\x10\x25\xf4\x4e\xf4\xab\x19\xfb\x55\xcf\x4e\x65\xc4\xa6\x60\xfa\xcb\xda\x47\xee\x0f\x30\x40\x24\x7c\xd4\x23\x7f\x57\x4f\x17\xc7\xb1\xb0\x53\x50\x05\xb7\xc8\xfa\xea\xd5\x00\x59\x08\x7a\x4d\x93\xea\xd5\x23\x5f\x39\x22\x1c\xaf\x0d\x00\x39\x3c\xa4\xea\x4e\x96\x8d\x86\x46\x1d\x14\x30\xda\xe8\x09\x82\x91\x6b\xa6\x6a\x4b\xbc\x66\x11\x84\x41\xb2\xd7\x2b\xe3\x27\x1e\xc1\x33\xa4\x78\xbd\x1f\xac\x9a\xf1\x2b\x3c\x4a\x92\xd0\x19\xdb\x01\x50\x0b\xd8\x80\xb5\x3d\xc0\x75\x8a\xc8\x1c\x4e\x67\xb0\x4d\x00\x4b\xc0\x71\x5b\x91\xce\xa8\x01\x18\x32\x70\x6f\xf4\x75\xad\x1a\x29\x26\x31\xfa\x3a\xc1\x89\x34\x81\xeb\x56\xb7\x6a\x62\x58\x26\x4d\xd5\xba\x4c\x30\xa4\x77\x11\x7e\xaf\x54\x46\x5c\xf5\xb0\xf1\xfd\xdb\x9f\xe8\xc0\xdd\xf6\x2e\x08\xf2\xf2\xc6\x70\xf6\x63\xd0\xa2\x3d\xc4\xe2\xa6\x81\x4e\x0d\xdc\x5d\x0f\x11\x6f\x5f\x38\x8d\x60\x9b\xfa\x7c\x79\xfa\x78\x25\x6e\x8b\x81\xe4\x70\x68\x9f\x32\x25\xd8\x87\x00\x4f\xe3\xc8\xf8\x43\x70\x64\x85\x70\x14\xf4\x01\x86\x96\x58\x40\x78\x3c\x4d\xa0\xb2\x6a\x56\x2d\x4f\x38\x27\x85\xb4\xd7\x66\x9a\x47\x37\xe8\xc3\x89\xf7\xa1\xe9\xfd\x80\xec\x07\xce\x42\x9e\x62\x2d\x26\xdc\xc2\x8e\xb7\x20\x10\x7d\x72\x88\x20\x55\x85\x78\x01\xcc\xac\x3a\xaf\xe5\xf4\x0a\xa4\x83\x6c\x0e\x4e\x32\xe0\xc4\x44\xbd\xc0\x82\xb1\x26\x95\x43\xb5\x84\xf9\x94\xec\x2f\x5d\x8e\xdd\x61\x6a\x30\x41\xf0\x55\xce\x89\x76\x52\x5f\xac\x23\x0c\xff\x7a\xcd\xce\xd6\x1d\x21\xbc\x03\xc7\xf1\x6a\xba\xef\x63\xef\x70\x17\x5a\x02\xc0\x04\xef\x20\x47\xf0\xc9\xa9\x09\x67\x5c\x1e\x2b\x2b\x4c\x20\x31\x86\x75\x44\x32\x6b\x36\x83\x5a\xab\x66\x16\x9d\x2e\x84\x01\x02\xdf\xcb\x46\x10\xa9\x27\x41\x53\x26\x43\xbe\xab\x3b\x42\xc1\xed\x04\x72\x0c\xe7\xe7\xb1\x6a\x42\x25\x65\x61\xc4\xe8\x0f\x04\xed\x94\x54\x43\x06\x19\x83\xac\x12\x71\x5f\x68\xac\x02\x80\x65\x7d\xce\xd6\x0e\x3b\xd8\x46\xd0\xb1\xce\x95\xb0\xa7\x2e\x8c\x37\x03\x25\x1c\xf6\x16\x21\x20\x0e\x75\x5b\x38\xb1\xe0\x6c\x82\x85\x28\xa8\x24\x84\x3f\x38\x22\x68\x74\x5a\xce\xdc\x83\x70\x67\xef\xad\x6a\x00\xe1\x8a\x44\x91\x8d\xd2\x09\x8a\xf4\xeb\x93\x0c\xa4\x9d\x81\x4c\x56\x31\x30\x30\x68\xb5\x69\xc5\x6a\x8a\xea\x33\x26\xbe\x06\xb4\x49\xf8\x08\xf8\x30\xaa\xbe\xc1\xc6\x0d\x37\x05\xb8\x4d\xeb\x6a\xaf\xa2\x7e\x92\x11\xae\x89\xc2\x97\x76\x26\x52\x5a\x1f\x65\x20\x83\xb9\x59\xb6\xab\xc1\x08\xac\x90\xa4\x23\x17\x29\x6c\x88\x46\x9f\x3b\xda\x6d\x43\xbe\x9c\xbf\x25\x45\x17\xa9\x7b\x1b\x46\x79\x2c\xf5\xe1\xbe\xc5\x94\x1c\xc2\x44\xad\x13\xb9\x78\x86\x75\x73\x8b\x48\xf9\x9d\x5e\x15\xf7\x69\xdb\x60\xc3\xa5\x2b\xdc\xb7\xa1\x13\xe1\x9a\xae\xd9\x3c\x39\x55\x63\x59\xa8\x5a\xe7\xf2\xd7\xf2\x31\x0c\x72\x43\x5e\xa9\x55\x8f\xd7\x94\x82\xe6\x48\xb5\xdd\x1c\xa6\x22\x2a\x8d\x4c\x1b\xf2\xd0\x41\x0e\x95\x35\x28\x8b\x91\x74\x91\x54\x88\xd3\x6d\x53\x8e\xd5\x3f\xf4\x3f\x57\xa8\x34\x2e\xe7\x4e\x80\xcd\x86\x33\xff\xc7\xfa\xe1\xa8\x04\xe2\x99\xae\xf5\x69\x0b\x02\xaa\x5a\xb9\x15\x07\xda\x81\x32\x99\x88\xa5\xf4\x9f\xc0\xfb\xb5\x85\x4a\xdb\x93\x19\x8b\xfe\x0f\xa4\x2b\x2f\xad\x58\x6b\x14\x26\xbd\x01\x2c\x39\xa0\x39\x1a\x73\xe4\xd1\xf3\x59\x53\x3f\x87\xe1\xa1\x44\xda\xce\x2a\x43\x89\x0d\xc0\x60\x21\xd1\x5a\x03\xfa\x9d\x9a\xc8\xcb\xb4\x6d\xb9\x22\x7f\x73\xb3\x66\x06\xdc\x7f\xd1\x6c\x0b\x90\x0b\xbb\xf0\xba\x35\xc8\x9f\x00\x07\x75\xd7\x74\x6b\xad\x65\x16\xfc\x58\x4d\x9f\x8d\x0e\x30\x1d\xeb\x42\x6c\x39\x85\x11\xc0\xbe\x80\xde\x41\x87\x36\x07\x34\xe7\xb9\x2c\x70\xbb\xe2\x49\x22\xe8\x2f\x82\xad\xba\x41\xbb\x2b\x19\xb6\x3b\x94\xb3\x6c\x09\x99\x82\xd7\x23\xd8\x51\x35\x94\x79\x14\x0f\x64\x92\x3b\x1c\xa4\x74\x33\xb5\x91\x0c\x1e\x36\x06\xe0\x79\x6d\x82\xf2\x93\x5c\x21\x4b\xd3\x08\x49\x92\xe4\x1c\x1c\x71\x31\x54\x4b\xaa\x29\x06\x39\x93\x3e\xb7\x5d\xd7\xd1\x54\x44\x1b\xe6\xe1\x1e\xb0\x56\xdc\x86\xdf\xb7\xe0\x36\x03\xef\x42\x1b\x60\x9a\xc6\xdf\x85\x68\xbc\x95\x79\x55\x8a\x68\xcd\x82\xe7\x91\x63\xd3\xc9\x03\x71\x84\x37\x1d\x14\x03\x62\xef\xb8\xc9\x3e\x45\xd2\xf5\x0e\x4d\xf2\xd4\xc4\xc7\x14\x5e\x47\x41\xfb\xf1\x55\xaf\x27\x6e\x96\x4a\xf1\x9d\x83\x99\xa7\x66\xbd\x32\xe2\x03\x00\x6a\x8b\x17\xbd\x66\xb9\xc1\xf5\xf7\x36\x28\x70\x83\xe2\x77\x36\x18\xc9\xa4\x99\xb4\xf4\xd7\x3e\xc5\x40\xa6\xa9\x34\xda\x75\xc7\x69\x5e\xdb\xf4\xe5\x49\x03\xcc\x60\xa0\x0b\x39\xf1\xf8\x7c\x6e\x36\x4f\x7f\xe7\x07\xad\xb8\xc1\xfa\x3b\x1b\xac\xe5\x8e\x5b\xec\xd3\x97\x8f\x85\x23\xc4\x91\x97\xb3\x3c\x04\x62\xcb\x02\xc1\x6c\x67\xb0\xb8\x06\x97\x49\x74\x21\xb9\xbe\x72\xa2\xc1\xe8\xff\xea\x41\x86\xfb\xaa\x21\xa0\xf8\x5f\x28\x21\x87\x65\x23\x29\xec\x34\x9d\x12\xfd\x65\x47\x7a\x67\x95\xb9\x83\xc6\x1e\x69\xd1\x38\x0f\xb6\x77\x32\xe9\x35\xf4\x50\x16\x60\x29\xe6\x44\xb3\x30\xc7\x6f\x29\x8a\x99\x10\x23\x59\x32\x20\x62\x5d\x4a\x0d\x15\x21\x40\xfa\xe6\xad\x09\xd1\x41\x96\xd3\x45\x44\xc7\x5f\x05\x1c\x3f\x21\x70\x6c\x78\x00\x9a\xaf\xe9\xd0\x62\x37\x84\xe8\x1d\x88\x4e\x6d\x65\xa9\x85\xce\xb5\x50\x3f\x90\xf1\xee\x1f\x75\x3f\x90\x01\x9e\x90\xee\x70\x26\x87\xdc\x1b\xd1\xcd\x58\xf5\x23\xb8\xb4\x3d\x7d\x76\x1f\xa1\x31\xd7\x32\xc7\x60\x3b\x2c\xdb\xc5\x5a\x2c\x11\x71\x32\x20\xcf\x8a\x31\xac\x55\x45\x99\x36\x2d\xe6\x14\x18\x18\x6b\x31\x43\x8b\x3c\x69\x2b\xde\x5e\xf1\x8a\xcd\xa7\x13\x74\x85\xe0\x21\xec\xa6\x07\x46\x24\x59\x7c\xfa\x05\x79\xcc\x27\xc1\xe6\x3d\x3c\xa2\x76\x6e\xf5\x59\xed\x65\xb4\x76\x05\xb5\xd3\x9f\xd6\x9e\x5d\xa8\x7d\xf8\xb4\xf6\x28\x5a\xbb\x85\xda\xd3\x4f\xc7\x9d\xa1\xda\x6a\x9a\xa1\x03\x39\x97\x85\x57\xc6\x28\x85\xbd\x2d\x8e\x7e\x7c\x95\x8a\x7a\x17\x65\x9f\xac\x20\x4d\xdb\xad\xee\xed\xca\x29\xcf\xe9\xd0\x74\x72\xcf\x56\x47\xf8\x8f\x0e\x38\x8d\x12\x31\xb1\x53\x76\xcb\x0a\x20\x8c\xed\xde\x31\xc3\xcc\xb6\x23\x9c\xfb\x85\xcf\x88\x12\x4a\xa8\xa7\xb5\xf9\xd1\x21\x37\xa6\x06\x90\x63\xd5\x13\xfb\x8b\xd4\x85\x7a\x1e\x1a\xf6\xb6\x21\xdc\xa7\x7d\x3f\x00\xab\xba\x5d\x47\x9a\x8e\x87\xd2\x9c\xb4\xea\x73\xde\x1c\x59\x25\xd4\x1b\x43\x64\x38\xc2\x0d\x52\x34\x2b\x08\xa4\xa4\x85\x6a\x51\xd6\x5f\xce\xd0\xac\x80\x32\x4e\x0f\x26\x92\x9e\x64\x24\x1d\x07\x85\x3b\x92\x9e\x78\xf4\x20\xc0\xe6\x53\x43\x38\x9f\xb7\x74\x5f\x6f\x11\x5c\x9e\x8d\x14\x28\x1f\x48\xfd\x60\x2f\x89\x1c\x2a\x4d\x5f\x87\xd0\x96\xea\x16\x3d\xeb\x5a\xd2\x6e\x55\x00\x6a\xa5\xf2\xae\x2e\x07\xf2\x13\xe0\x3a\xb8\xfc\xf5\x7b\xcb\x2b\x86\x66\xb9\xc3\xf3\xaf\x63\x30\x0e\xfd\x20\xfe\x66\x7a\xf0\x4a\x0f\x46\x8a\x22\x4a\x14\xf4\xf0\xf4\x60\x24\xe9\xc9\x40\xd1\x75\x4a\x09\xf6\xf9\xc9\x00\x4f\x58\x01\x48\x80\xdd\x4b\x43\x39\x5b\xe4\x78\x1a\x9d\x77\x11\x20\x83\xe8\x27\xf1\xe9\x0d\x30\x46\xf4\xa3\xf8\x67\xe2\xd1\xe0\xf3\x47\x23\x29\x92\xee\x86\xb1\xf1\x90\xc9\xb2\x3e\x8a\xe6\xe3\x2b\xed\x02\x9d\x21\x88\x58\x5f\x8c\x36\x2c\xfd\xc0\x9c\x0a\xeb\xce\x16\x8c\x1e\xeb\xac\xc0\x04\x7a\xc8\x71\x59\xbb\x82\x5e\x51\x20\xd5\x3c\x8c\x8b\x84\x4e\x75\x9b\xdc\xf1\xb5\xa1\x4f\xde\x08\x47\xc0\x68\x63\x49\x44\x28\x18\xd8\x5a\x58\x9a\x90\xef\xaa\xbc\x1a\xc8\x40\x85\xeb\x6e\xa0\xa2\x9c\xe0\xc8\xb7\xae\xc1\x9a\x20\x24\x62\x65\x4e\x81\xa7\x2f\x86\x0f\x15\x1d\x93\x0f\xbb\x8c\x3b\x49\x09\xf5\xb2\x03\x08\x59\x33\xe3\xc5\xba\x6b\x0a\x77\xa8\x30\xdc\x81\x7b\x3b\xa0\xbd\x2a\x3c\x1f\x33\x16\xe0\xac\x8b\xda\xbc\x03\x84\xb2\x2c\x6b\xdd\x6b\x01\x70\x46\xab\x08\xf2\xdb\x19\x52\x44\xa2\xe3\x6b\x69\x6b\x51\xbb\x85\xfa\x76\x04\x56\xa1\xbb\x89\xae\xc1\x49\x9d\xaf\x81\x7a\x9f\x60\x7a\xda\x85\xe8\xec\xe7\xef\x82\xc0\x5c\xe1\x0e\x91\x38\x17\x30\x31\xb7\x9f\xcf\xe9\x88\x22\x2d\xc7\xc4\x1a\x93\x62\x82\xdc\xb9\x5b\xb7\xb8\x3d\x9b\xfc\x9b\x5c\x21\x00\x57\xea\x3e\x5a\xec\xc2\x21\x1c\x9e\xcc\x4c\x19\x1a\xda\x25\xe4\xa0\xa9\x41\x92\x76\xd8\x74\xcf\x5a\xf6\xaa\x70\xb2\x65\x98\x13\x90\x11\x0b\xd2\xdc\xdb\xec\x1a\xd4\x28\x4b\xed\xd4\xcb\x35\xe2\x4f\x01\x02\x01\x6a\x56\xa0\xf5\xe8\x3f\xc3\xec\x77\xb1\xb5\x26\x78\xec\xcd\x19\x69\x68\x75\xc4\xdb\xdb\x0e\x1a\x9f\xcb\xcd\xec\x8b\xcd\xda\xe2\x28\x29\xec\xb6\x4f\x36\xdc\xca\x38\x0b\x2c\xff\x35\xf8\x8b\xae\x4f\xce\x08\xf6\x4e\xce\xd0\x77\x67\xd3\x89\xae\x3c\x84\x1c\x0a\x37\xf5\xb0\x70\xf9\xdb\x71\xf9\x88\x0d\xd3\xa1\x29\xe8\xac\xb0\xc8\xd9\x1e\x4b\xd7\x04\x66\x40\xf0\x92\xfb\x5b\x90\x9c\xa9\x4a\xa6\xa4\xd1\x49\x94\x9b\x7b\x4a\xaa\xd8\xcb\x3c\x59\x8e\x98\xc9\x57\x7d\x52\xc8\x88\xf3\xda\xb7\xf6\xb6\x48\xdd\xf1\x81\x2b\xca\x5d\x27\x94\x81\xf6\x32\x2e\x04\x0d\x91\xaf\xc1\x7f\xb9\x24\x92\xf0\xe6\x7c\x1d\xa6\x62\x12\xc9\x94\xb1\x1e\xbd\x24\x1b\xd4\x06\xe4\xf7\x43\x14\x29\x48\x58\x3b\x06\xd7\x9a\x8a\x88\x3e\x25\x55\x42\x47\x31\x30\x72\xd5\x1b\x80\xc5\xec\x8e\x39\x99\xf6\x88\x26\x57\x2d\x18\x97\x44\x4e\xb9\x7c\x96\xfd\x1a\x4f\x0d\x53\xac\x91\xb1\xda\x5f\xe1\x44\x43\xf6\xb3\xc1\x82\x6c\x13\xd7\xd1\xab\xb0\xa7\x0e\xd2\x8a\x34\xd6\x65\x4a\x9f\x95\x87\x8e\x94\x62\x8e\x18\x0e\x52\xc1\x18\xc7\xb7\xb0\xba\x57\x46\x91\xeb\x30\x13\x43\x43\x79\xbb\x05\x6b\xac\xa9\x18\x61\xdf\xa9\x24\xd1\x90\x2e\x1b\x21\x9e\x01\x09\xb7\xe4\x6b\x6c\x86\x39\x68\xb1\xb6\x64\x01\xae\x32\x38\x43\x3b\x08\x20\x07\x75\x56\x0f\x0e\x02\x22\x56\xe4\x06\x74\xfa\xd0\x87\xd8\x03\xb6\xdc\x72\x85\x4d\xa1\x51\x0b\x39\x60\x1a\x4c\xf3\xfc\xb8\x20\x65\x40\x07\xc6\xd4\x23\xf2\xc4\x40\x79\x96\xee\xc3\x51\x40\xb3\x7a\x3b\x60\xb8\x6f\x69\xb7\x12\x10\xc7\xaa\x7c\xd0\xa7\xa1\x6a\x92\x25\xea\x2f\xbd\x3a\xd2\x98\x28\x24\x6b\x2e\xf9\x5b\x87\x72\x00\x99\x36\x13\xcd\x62\x4e\x87\xa2\x1b\xe4\x1c\x26\xef\x13\xbb\x87\x01\x0e\xdf\xa3\x03\xdc\xbf\xb1\x4a\x99\x40\x1f\x48\xa7\xdf\xb1\x69\x80\xd9\x8f\x03\x64\xbf\x6c\x82\x18\xdc\x94\x17\xf4\x62\x58\xb6\xe6\x72\x66\x58\x35\x22\xce\x9b\x30\x35\xc4\x26\x60\xd4\x3e\x91\x23\x0e\x86\x1d\x6c\x50\x3a\x7c\xfd\xa2\xe2\x14\x98\x24\x79\x64\xb8\x06\xc6\x29\xf1\x62\x7e\x45\x3f\xf0\x4a\xcc\x5a\x6f\xb7\xf4\x19\x3b\x89\x63\xb8\xdb\x72\xd7\x5b\x46\x9b\xd7\xbd\xb5\x0e\x5c\x3a\x78\x47\x0e\x72\x3d\xc2\x26\xa6\xa1\x41\xee\xf9\x6a\x2c\xf3\x7b\x20\xce\xb0\x14\xe4\x09\x75\xf7\x10\xbc\xf4\x2d\xd9\x8e\x31\x97\xc0\xd7\xd5\x6b\x72\x4d\x87\x61\xae\x72\x9d\xe8\xd7\x13\xc0\x8f\x7d\x7c\xb9\xf4\xd5\x29\x68\xdd\x1a\xe9\xed\x07\x5e\x3f\xf2\xd5\x0d\x52\xf0\x57\x19\xe8\xfd\xac\xeb\x71\xf9\x72\xd7\x19\x08\x5c\xd5\xec\xf6\x03\x7f\x1d\xe9\xba\x46\x5c\x8e\x16\x62\xde\x68\x73\x66\x54\x08\x55\xb3\x97\x63\x6e\x7b\xcd\x75\x00\xcb\x5b\xb8\xa5\x59\xcf\xf1\xc3\xfc\x16\x90\xfd\x70\x5f\x6b\x15\xb8\xb8\xb8\x65\x9b\x3c\xe5\xc9\xad\x24\x19\xa4\x69\x04\x52\x86\xdc\x70\xf7\x38\xc1\x37\x4c\x59\xaa\xfa\xc3\x3e\x4e\x5e\xe1\x93\xc9\xcb\x6c\x4d\x4e\x77\x1a\xff\xf3\xe7\xe3\xbf\xe2\xf1\x5f\x61\x9d\x48\x2f\xc8\x90\x74\xa6\xca\xe7\xfb\xad\xc4\x09\xe1\x07\x70\x3a\xe8\x0e\x77\x5f\x9f\x50\x95\xac\xe7\xce\x3e\xd6\xb6\xda\x22\xa3\x9e\x0e\x2f\xc4\xf2\x3d\x56\xcf\x64\x0f\xd2\xe0\x03\x73\x02\xea\x54\x5f\x86\x2e\xac\x45\x3a\x2e\x3b\x99\x04\x29\x99\x51\x5c\x7b\xe3\x84\x0b\x6a\x26\x53\x29\x7a\x75\x83\x51\x1c\xe9\xda\x5f\x53\x51\x7d\x13\x14\x39\x59\x1b\x9f\x39\x87\xf9\xa6\x89\xa0\x7e\xd3\x99\x1b\xe0\x22\x1a\x38\xbe\xb5\x7c\xb8\x50\x0f\x11\x30\x15\x5d\x2f\x5b\x0e\x7d\x37\x92\x2a\x14\x70\x26\x65\x73\x8f\x07\x57\x7a\x53\x0b\x44\x13\xe6\x19\x6d\xa1\x1e\x99\xfb\x55\x42\xf5\xf6\x9c\x7b\xb6\x25\xaa\x63\x79\x1c\x46\x64\x20\xc5\xf6\xf8\x47\x38\x89\x35\x23\x8d\x8c\xa9\xfe\x0e\x8f\x38\x2d\xa9\xa6\x59\x26\x7f\xad\xa6\xaf\xc8\x08\x0e\xe8\xe8\x7c\xcb\x58\xf7\x3d\xdd\xe2\x74\x8c\x20\x17\xad\x1f\x03\xe0\x40\xf7\x7d\x30\x88\x00\x4e\x0f\x64\xf8\x2d\xd5\x90\x69\x59\x98\x6f\xa9\x0b\xf5\xa8\x4c\x7c\x80\x7a\x98\x4f\x98\xb3\x29\xea\x9e\x02\x6c\x41\x0a\x00\x34\x5f\xc3\xa6\x15\x38\xd0\x8a\xfa\x04\x4c\xcc\x8c\x31\x15\x3e\x94\xa6\xa4\x50\x63\xa7\x1b\x02\x13\x0e\x65\xd0\x6f\x5b\xb8\x1b\xa9\x18\xac\x14\x20\xfc\x37\x97\xdf\xb2\x44\x7f\x4b\xbc\x65\xf5\xa1\x54\xbf\x65\xe5\xb4\x3f\x7f\xcb\x89\x5d\x21\x95\x50\x37\xc9\x91\x0c\x3f\xb9\x38\x8e\x4c\x51\x6e\xcc\x3c\x93\x2d\xd4\x7d\x39\x5c\x6e\x1b\x8d\x6d\xa1\xee\xae\x59\x86\xdc\x4b\xa1\xde\x32\x43\x69\xc6\xdb\xd0\xab\x12\xcc\x91\x12\xaa\xff\xcc\x3f\x4a\x9f\x6c\x54\xf7\xa4\x46\x51\x9a\x34\x96\x2f\x17\x5b\x84\x5b\xd6\xcd\xaa\x97\x58\x83\xe1\x58\x5e\x58\xbc\xa3\x2d\xdc\x77\x5f\x46\xc7\x32\x1d\x48\x23\xe2\x8a\xee\x41\x5f\x7e\x53\xe7\xde\xb2\xc5\xc4\x99\x28\xab\x23\xdc\x43\x39\xb3\xe3\x1a\x4a\xa8\xe7\x4c\x64\xab\x97\x86\xe7\x4d\x0f\xd4\x74\x1f\x34\xbd\xde\xc5\x3f\xc3\xbf\x38\xaa\x94\x1e\xd5\x30\xf2\x92\xd5\x87\x31\xf9\x37\xba\xe3\xd9\x0d\x75\x5c\x3b\x94\x43\x49\xd9\xce\xca\xf0\x80\x66\x58\xa9\xa7\xa9\xaf\x6d\x94\x14\xce\x53\x78\x1e\x2a\x17\x9e\xdb\x91\xb3\xf4\xf1\x79\x53\x38\x2f\x9f\xbc\x8d\x2b\x37\xbe\xff\x65\xf5\x6f\xbc\xac\xa1\x5f\x16\x95\xdb\xc3\x97\xa5\x18\x71\x85\x4c\x7d\xf7\xe1\x0e\xb6\xa3\x40\x65\xb5\x4f\xab\x04\x2f\xbd\x54\x65\x2e\x45\xfe\xa6\x06\xed\x42\xd2\x7c\xe1\x52\x8a\x72\x1d\xd2\xc1\xdb\x55\x1b\x96\xf3\x5c\xf3\xc6\xda\x97\x45\xc6\x75\xc1\xbb\xef\x59\x53\x00\x8b\x9c\x96\x77\x6f\xff\xf4\x9f\xac\xb0\xd5\x72\x53\xe4\x4f\xf6\x8a\x60\x60\x3f\xca\xf9\x7e\xc7\x98\xaa\x63\x2f\x14\x48\xe6\x67\x02\xc9\x01\x18\xb2\xf3\x0e\xf4\xb6\x79\x56\xf1\xe7\xbf\x53\xc2\xd8\x1d\x2e\x1a\x57\xfe\xe9\x92\x0c\x40\x70\x5f\xa7\x71\x9b\xcc\x54\x1e\x1d\xc8\x2c\x59\x1e\x78\xfe\xa2\x1d\xa0\x68\x33\x6b\x11\xf4\x38\x35\x17\x5c\xce\x34\xcc\x7f\x5b\xdf\x4e\xbd\x0c\x64\x89\x9b\x5c\xe5\xc9\x9e\xba\x41\x93\x0c\xbd\x6b\x8a\x26\x33\x34\xc9\x29\xb6\x07\x0d\x0b\x2c\x6a\x15\xe4\x05\xe3\x4e\x39\x66\x0e\x32\x99\xd4\xbe\x4f\x0c\x0b\x7d\x30\xcb\x88\x89\xd9\xcb\x29\xbf\x6c\x56\xa0\xd4\xb7\x25\x1e\x5f\x3c\x55\x2a\x18\x85\x3d\x9c\x74\x55\xce\xce\x76\xbe\x22\xc1\x35\x90\x9f\x23\x26\xc6\xf1\x85\x1d\xe0\xeb\xd2\x05\x10\x16\xce\xa4\xb0\x0b\xb7\x79\xb2\x94\xbe\x2e\x61\xda\xec\x5e\x01\xdf\x94\xf4\x11\xf0\x4f\x42\xbe\xf5\xd7\x14\xaf\x46\x9a\x78\x88\x0e\xb9\xbe\x3a\x90\x21\x02\x46\xf0\x6b\xea\xde\x4f\xa4\x08\x08\x6f\xc4\x81\x8a\xb7\x19\x16\x33\xe0\x06\x47\xf0\xc4\x06\x9a\xf6\xf3\x0d\x1b\x0c\x36\xdf\xe2\x03\xaf\xa8\x9b\x56\xe1\xc0\x6c\x2f\x60\x3d\x1a\xac\xf4\xce\x72\x71\xe6\x00\x26\x86\x4c\xbe\x9d\x24\x97\x5e\x1d\x68\xb8\x4b\xbc\xf2\x01\xaf\x64\x27\x8c\x4b\xaf\xdc\x12\x95\x06\x1f\xf7\x56\xb0\x31\xfe\xac\x11\x8d\xf4\x95\x16\xaf\x9f\xba\xd1\xa7\x69\xf7\x72\x78\x3e\xd3\x7b\xa7\xec\xd6\xa3\x66\x3a\x17\x0f\xe7\x4c\x67\xc0\xbe\x1d\xdf\x42\x12\x9a\x34\xfc\x8f\x23\xdc\xe7\x6b\xce\x04\x82\x94\x96\xb5\x59\x9f\x39\x5e\x72\x1b\x03\xff\xb7\x8a\x3d\xea\xe1\x11\x45\x80\x37\x91\x18\xce\x3c\xd2\x5b\xc9\xd1\x54\x50\xf7\xbe\x8a\x3d\xd2\xc3\x74\x4e\x92\x51\xbc\x0a\xbd\xe8\x33\x40\x6a\xac\x98\x7a\x96\x62\xcf\x56\xb1\x67\xc9\xd8\xb3\x45\xec\xd9\x30\x36\x4a\x3f\xf6\x6c\x1c\x7b\x36\x8d\x3d\x9b\xc6\x9e\x8d\x83\x67\x7a\xe3\xf9\xb1\x67\x43\xbd\xbc\x4e\x8e\x9f\x2d\x62\xcf\xfa\x78\xc4\x81\xf5\x9b\xd8\xb7\x3b\xfa\xf2\xcc\xf2\xb4\xd0\xe5\x93\x53\x21\x47\x95\x1c\x47\x58\x09\x5e\x31\x5b\xa8\x87\x2b\xc3\x76\xb5\x84\xfb\x76\xad\x42\xd3\x04\xff\xd9\x20\xfe\x33\x50\xaa\xb2\xdf\x6b\x4b\xb8\xef\x76\xc8\x41\x54\x50\xda\x14\xee\xbb\x13\xb2\xdd\x37\x28\x6d\x0b\x97\x40\xab\x78\x50\xd3\x08\x2b\x3f\x62\x6c\xec\xb6\x50\xbd\x88\x49\x60\x1a\xe1\xdd\x67\x32\xa2\xca\xef\x87\xc3\xf3\x50\x4c\x8e\xbb\x2a\xac\x3e\xae\xe0\xd3\xda\xc2\x7d\x2a\x46\xba\x61\x2c\xfa\xb8\xe0\x13\x61\x01\x93\xb2\x1e\x91\x0a\x86\xea\x42\xed\x08\xfb\x37\x56\xc7\x72\xcc\x02\x32\xad\x5c\x68\xb0\x33\x4e\x9a\xc4\x2d\xbb\x39\x99\x29\xc7\x18\x79\xff\x6b\x8d\x8a\x94\x74\xc3\xcd\xc9\x63\x39\x9c\xe7\xc5\xa5\x16\x43\x72\x66\xac\x2d\xf5\x3f\x6e\x41\x5e\x97\x83\x84\xfd\xef\x07\xc7\x50\x5d\xf7\xe5\x18\x59\x99\x93\x63\xc8\xef\xfc\x66\xc6\x49\x14\x36\x46\x4d\x39\x8a\x70\x22\xc7\x0e\x38\x91\xc2\xc3\x8d\xe6\x66\x47\x4d\x17\x91\x08\x6b\x39\x1c\xc8\x90\x1f\x18\x9c\x2b\x28\xc1\x0f\x2c\x68\x9c\xb1\x84\x85\x6a\xcc\xa9\x64\xfe\xfb\xd5\x96\x9f\x79\x60\x9c\xdd\x9a\xf0\x88\x08\x02\x0e\x56\x65\x40\x84\x4c\xe4\x01\x51\x13\xb5\x23\x3d\xa6\x84\x68\x75\x12\xfb\x29\xc9\x30\x11\xf0\xa5\xe2\x5b\x93\x2f\xcd\x34\x37\xc9\x14\x01\x15\xcf\xb7\x66\x3e\xb8\x35\x49\xab\x80\x01\x9a\x36\x39\x6e\x93\x07\xec\xa3\x69\x73\x75\xa1\xcd\xd0\x86\xe3\x41\x89\x9b\x5c\x15\xe9\x52\x67\x9d\xeb\x5e\x0e\x4b\x3c\x47\x25\xf8\x9b\x97\x02\x2f\x14\x7e\x30\x29\x7d\x9b\x73\xc0\x2b\x7c\x6e\xb1\x7e\xbe\xe0\xda\x90\x87\x9b\xf9\x31\x32\x6d\x59\xc5\x49\x35\x16\xdc\x70\x59\x8a\x3a\xc2\x74\x37\x5c\x4c\x66\x86\xf3\xfe\x32\xb9\x0b\xfd\x2d\x9c\x3f\xc2\xc1\x04\x5e\x16\x49\xf5\x55\x35\x32\xd3\x98\x8f\x4c\x08\x3d\x08\x01\xfd\x85\xb1\xae\xb2\xd9\x32\xf4\x74\x88\xfe\x65\xef\xea\x4b\x7c\xd8\x6b\x19\x96\xf9\x02\x6b\x92\xe7\xa1\x0c\xf0\x99\xbe\x6e\xc6\x6c\x07\xbb\xf9\x5c\xd2\x01\x15\x5e\x09\xf8\xc6\x2e\x42\x89\xa3\x88\x79\x01\x20\xd8\x35\x65\xf0\x3f\x7b\xd5\xe2\x93\x57\xe5\x4f\x1c\x11\x73\xfa\xc6\xab\x56\xf6\x1e\xaf\xba\x01\xdf\x14\xbe\x63\x00\x8f\xc9\xd7\xcd\x95\x0c\x58\xa7\xec\xf7\x2a\x60\x99\x4b\x6a\xf9\x1c\x59\x4a\x9c\x0b\xb0\x5f\xd6\x01\xb7\x74\x45\xa9\xf0\x79\xb2\x9f\xc7\x95\x33\x5e\xca\x11\xc2\xe1\x21\xa3\xb7\x66\x89\x31\x7f\xe2\xbc\x15\x79\x2d\x8a\xa7\x34\x7c\x72\x97\xd0\xcc\x2d\x6a\x97\x3a\xb1\xd9\x92\xd0\x38\xef\xa9\x40\xf6\xb5\xa6\x69\x55\xa7\x04\x2f\x67\x15\x6a\x42\xb4\x96\x3e\x73\x7f\x27\x93\x37\xe5\x64\x2c\xe3\x34\xfc\xd7\x1d\x97\x6f\x81\x31\xde\x22\x37\xeb\x0e\xd3\xb8\xc6\x80\x32\x57\xa9\xcd\xdb\xf0\x36\xe2\x6f\xb0\x75\xad\x10\xf9\x11\xd7\x1c\xc5\x14\xf6\x1c\x36\x24\xef\x6e\x62\x93\xbd\x4d\xe1\x9e\x7b\x82\x2b\x69\xb6\x6b\x45\x40\x5d\xba\x96\xc9\xc2\xad\xee\xae\xbb\x98\x91\xa1\x7d\xbe\x6f\xa6\x46\xef\x6b\xb4\xdf\xfb\x94\x84\x46\x1b\xec\xf2\x02\x67\xb0\x55\x24\x7d\xc4\xda\x79\x19\xf6\xf4\x67\x9e\x3a\xdf\x62\x04\x4f\x19\x19\x26\xce\x1e\xf4\xce\x59\x35\xbc\x3d\xad\xd2\x95\xd0\x95\xc1\x31\x0e\x0b\xea\xd9\x67\x0b\xae\x9e\xa4\xa7\xab\x39\x3e\x33\x3d\x64\x4a\x02\x8b\x70\x8d\x82\x94\xd3\x32\xeb\x7c\xe3\x06\x6e\x50\x2d\x56\x75\xcc\xe1\x6d\x7e\x3d\x44\x16\x9c\x61\x89\xdd\x43\x89\x46\x30\x15\x08\xbd\x9e\x94\x50\xe3\xca\x08\xb0\x1b\x64\xc6\x8c\xb6\x35\x09\x98\x1b\x04\x86\x14\x61\x9f\x82\x60\xa1\xa1\x1c\x57\x58\x07\x34\x21\x23\x43\x75\xc8\x38\x71\x17\x87\x29\x9a\xbb\x98\xda\xa9\x88\x54\x8a\xca\xea\x52\x84\x76\xd4\xc1\x62\x51\x09\x75\x91\xb6\x1f\x61\x77\x84\x29\x1f\x48\x02\xc6\x0f\x1e\x24\x2f\xf1\x41\xfc\x86\x93\xfe\xa0\xea\x50\x8d\x22\x2a\x8e\xdc\x3c\x50\x21\xd9\x0f\x57\x03\x69\xf8\x09\xf5\x94\x94\x86\x98\xaa\xb7\x99\xf9\xda\xb6\x70\xa7\x72\x31\x8f\x28\x52\xae\x1c\xb3\x84\xee\xcb\x7e\x21\x43\x4e\x72\x71\xf3\x15\x8e\x8c\x20\xd5\xc2\xc9\xac\x7d\x75\xfa\xc2\x46\xa2\x76\xf8\xe3\x53\x37\x92\xa2\xb6\x93\xeb\x4a\xc8\x36\xad\x2e\x0d\xcd\xb0\x7f\x55\x52\xa6\x7f\xe7\xd0\xc2\x46\x5f\x1b\xda\xe9\xeb\x43\xdb\xb2\x7f\x8d\x12\xea\x31\xbd\x88\x1c\x09\xa0\x66\x51\xac\xcd\x8a\xac\xf8\x46\xbf\x7f\xfd\x64\x5d\xd2\xef\x13\xfd\xd8\x4b\x2b\x2f\x85\x5a\x55\xc2\x4d\x71\xd5\x38\xef\xa8\x1e\xef\xa1\x68\xb2\x79\xae\xa5\xa8\xae\xca\x31\xed\xea\xe1\x9b\xeb\x18\x88\x1e\xd1\xfe\xd3\xf2\x5b\x4b\x49\x8d\xcb\xe1\x4c\x5f\xec\xe6\xe9\x32\x3f\xaf\xa6\xe5\xff\x81\x3d\x93\xaa\xc4\xd4\xad\xa7\x6f\x6e\x9b\x3f\x30\x13\xd1\x9d\x43\x8d\xff\xd0\x4c\x44\xac\x2b\x8b\x6f\xcc\xc4\x7f\x71\x8b\x9e\x13\x98\xd5\xe4\x5b\x63\x8b\x51\x9b\x55\x79\x14\x21\x9a\xe9\x4b\x33\xb8\x75\xd8\xf3\x32\x1d\x1f\xf8\x9e\xd3\x99\xd4\x84\x3a\x94\x0b\x95\x8b\x2a\x7b\x53\x47\xf3\x9c\x0a\x2f\xca\x71\x2f\x79\x13\x42\xea\x84\xf9\xa0\x68\x72\xbf\xda\x93\x83\xae\x2a\x9f\x75\x65\x9f\x64\x6c\xa2\xca\x5f\x79\xe7\xd7\xdf\x64\xd5\x84\xbd\x89\x48\xb6\x9f\x7c\x61\x70\x34\x97\x52\x38\x69\x15\x93\x4a\x6b\x97\x5f\xee\x92\x5e\x3d\x10\x2a\x3f\x19\x22\x6a\x85\x02\xf4\xa5\xa5\x09\x97\xb2\x29\x54\x4e\xce\xbf\x36\xc3\x9f\x7c\x6d\x74\xfc\xd5\xb4\x6a\xc6\x3e\x60\xe8\x7e\x4a\x5b\x48\x9c\x55\x05\x39\x75\xbe\x6a\xdd\xa9\x52\x00\xcb\x07\x6a\x7d\xa9\x72\xca\x21\xf4\x50\x15\x5b\x3f\xff\xeb\xdd\x37\x44\xad\xa0\x52\x4e\x5c\xac\xbf\x34\x68\x9c\xb2\x35\x0d\x3a\xf9\xd9\xa0\x23\xb4\xe2\xf4\xcd\x41\xa3\xf2\x96\x06\x7d\xfa\xae\x41\x9b\xee\x1b\xa2\x96\x54\x13\x3b\x36\xd3\x13\x15\x3a\x60\x85\x6f\x16\x46\x07\x64\xbf\xc7\x6a\x47\xcb\x83\x7d\x14\x2d\x8c\x30\x22\xac\x19\xaa\xf6\x17\xbc\x9b\x1c\xe1\xf4\x8c\x77\x98\x23\x9c\xe7\xc7\x8f\xda\x9b\x96\x50\x0f\x73\x17\xbc\xc2\x40\x0a\xb7\xaf\xc2\xcb\xf9\xb4\x8c\x30\x21\x29\x18\x22\x5b\x2b\x8e\x4f\x66\xde\x72\x66\x9b\x60\x4d\x77\xa5\x22\x6d\x73\xcb\xc8\xed\xf9\x3d\x6d\xed\x18\x81\x2f\xfc\xd1\x57\x3b\xb1\xe6\xa5\x3f\xfa\x76\x37\xb6\xaf\x92\x7f\xb4\x79\x35\xd6\x7c\xb8\xfa\x83\xcd\xd9\x81\xdf\x11\x8e\xb1\x11\xe9\x3f\x73\x91\x8d\xb9\x98\x47\x5c\x93\xb7\xf3\x08\x11\x35\x20\xb5\x7a\xa2\x26\x55\x93\x0c\x4b\x19\x4d\xa2\xfe\x33\x36\x35\x02\xe5\xae\xa8\x8e\xe5\x18\xd9\x54\xf5\x83\x87\x69\xbc\x9f\x8e\x01\x4b\x62\x41\xde\x16\xea\x2d\xd6\x4f\xd9\x68\x05\xab\x53\x69\x87\xeb\x1e\x33\xf2\xbd\x60\xeb\x55\x45\xb5\xf7\x1a\xd1\xf9\xc5\xea\xbc\x85\x75\x3a\x9f\x74\x03\x7c\x7e\xab\x21\xd6\xb7\x03\x56\xa1\x25\x4b\xcc\xf8\x76\x42\x0d\xda\xbe\x0b\x0d\xda\xe2\xfd\xc6\x1a\x94\x45\x5e\xba\x80\x57\xca\xcb\xc2\x38\xa2\x41\xdb\x9e\x69\xd0\x4a\xf6\x9f\x71\xf1\x03\x2e\xd0\x44\xae\x90\xd6\xb3\xb6\x1e\xa8\x6f\xaa\xae\x4a\xfd\xaf\xa8\x4b\x42\x4d\x49\x47\xd8\x08\x0c\x9e\xcb\x6d\xf7\xcf\x3a\x64\xc1\x94\xd2\x5e\x53\x40\xe7\x2b\x4b\x95\x8d\x79\x96\x86\x5f\x28\x8f\x07\xf2\xcc\xe4\x90\x97\x30\x39\x94\xca\xdf\x65\x72\x28\x74\x8d\xa7\xa5\xba\x4f\xf9\xd2\x28\x6f\x1a\xfa\x5a\x8e\x10\xb8\x5c\xf4\x28\x84\xbc\xac\xdd\xcf\xaf\xf8\x5e\xac\x8a\xea\x50\xde\x44\xd8\x6e\xd3\xe2\x55\xa8\xa7\xe2\x2a\xf0\xbc\x17\x9d\x15\x94\x4f\x67\x3c\x0e\xc9\xf0\xaa\xa0\xf8\xfe\xd6\x15\x77\x9f\x55\xec\x88\x8c\x5a\xf0\x0e\x5a\x24\x79\x07\xcd\x23\x4a\x58\xbd\x25\x00\xf5\x61\xd3\x1e\xda\x4a\xb7\x89\x2d\xb4\x99\x7c\x7b\x0b\x1d\x07\x6c\xa4\x2b\xf1\xa6\xb8\x1a\xa8\x8b\x16\xbd\x50\xcf\x98\x2b\xe7\xb2\x7f\xcc\x22\x7b\x7a\xfa\xca\x26\xe2\x9b\x83\xa1\x2f\xec\xf4\x3f\x63\x1b\xe9\xfd\x63\xd2\x31\x15\x78\x1f\x15\x29\x74\x57\x2d\xec\x6c\xeb\xd2\x36\x1a\x48\x71\x28\x57\xf5\x8c\x4e\x65\xe6\x39\xdc\x34\x4e\x18\x76\x61\x64\xda\xa6\x50\x6f\xd3\x7e\x68\xba\x5f\x0e\x65\x20\xe0\xaa\xa1\x5c\xf4\xd0\xfa\x55\xb8\x8f\x58\x47\x50\x2b\xca\xbd\x92\xe2\x2c\x7c\x83\x3b\xb3\x95\x32\xca\x10\x88\xd3\xd5\x85\xe5\x2d\xd2\xf2\x4e\x1c\x95\x2c\x2b\xd2\x79\xae\xe1\x89\xf3\xb2\x40\x0e\xea\xa3\xcc\x20\xe3\xc8\x9e\xc8\x64\x7d\x8c\xa8\xcf\x14\x42\x97\x47\x72\x95\x32\x98\x6a\xb4\xdc\xd8\x5e\x25\xf2\x9d\xea\x64\x1f\x2c\x47\xb8\xe4\x4d\x77\x23\xe6\x29\xc6\x42\xc2\x57\x64\xb1\x31\x5c\x60\xa5\xb4\xfc\xa6\xe6\x24\x9e\x32\x0f\x9c\x5a\xad\x6d\xbc\xf0\xda\xc5\x72\xa4\x5e\x33\x4b\x57\x05\x34\x63\x64\xa8\x21\xa8\x12\x2b\xa3\xd4\x0b\xb0\x8a\x91\xfc\x6b\x26\x6f\x0c\x8c\xad\xba\xed\x00\x25\x54\x70\x89\xa3\x29\x1b\x32\x60\x21\x12\x16\xd0\x7a\x8c\x50\x52\x17\x42\xcc\x60\x59\xe6\x2c\x5f\xfe\x4a\x5a\x4e\xd9\x39\x11\x06\xdc\x44\x0a\xcb\xb5\xef\x88\x42\xa7\xa4\xcb\x9f\xee\x04\xf9\x8f\x5e\x72\x9a\x07\x11\x29\x6c\xef\x3a\x20\x69\x81\x37\x92\x7a\x81\xef\x38\x41\xe9\xc7\x32\x70\x95\x2d\xa7\xe2\xee\xca\xc0\x98\xbb\x05\xb0\x88\x1e\xc7\x3c\x32\x8e\x0c\x39\xf8\xba\xce\xdd\xce\x0e\x00\x87\x10\x00\xde\x44\xec\xec\xde\xbd\x71\xf7\xb6\xe5\x58\x1d\xf7\x2e\x89\x45\xda\xbd\x58\xae\xf0\xc8\x21\xa4\x07\xfc\xbf\x36\x90\xce\x49\xef\x08\x94\xae\x17\xcb\xa4\xaf\x63\x2c\x37\x0a\xfb\xfe\x1a\x42\x1c\xdc\xa7\x38\xa6\x00\x49\x74\x2b\x01\x3c\x1c\x70\x1f\xb9\x2b\x00\x59\x54\x48\x95\x58\xb5\x2e\x27\x2b\x02\x48\x0c\xa1\x71\x24\xd5\xe5\x44\x5c\xd5\xac\x49\xc4\xe5\x0a\xa7\xde\xe1\x95\xd3\x3b\xd9\x97\x56\xdb\x5a\x4b\xf5\xc0\x30\xc1\x13\x93\x5c\xdb\x87\xff\x40\x6b\x5e\x60\x27\x68\xcb\x15\xae\x3b\x05\xe6\x55\x33\x0d\xd4\x0b\xce\xce\x65\xd5\x08\x9f\xb7\x2e\xee\xdd\x39\xe9\x4d\x5b\xcb\x02\x9d\xc4\xe6\x78\x80\x8f\xbc\x26\xb3\x35\xe6\x6b\xfd\x18\x43\x05\xaa\x0a\x75\x5f\xba\x0f\x23\x28\x8a\x94\x52\xca\xf6\xe5\x82\x73\x55\xcf\xf1\x6f\x6d\x3c\xd6\x43\x7e\xe2\x4c\x19\x23\x82\xab\x50\x59\x93\x06\xda\xa1\xac\x5f\xfa\x00\x7b\xf4\xf5\x4d\x44\xd2\xd3\x7b\xc9\xb2\xd0\xf0\x95\xad\xf7\x47\xbd\x42\x92\x19\x77\x3f\xb1\x91\x73\x74\xcb\x69\xa5\x19\xc8\x16\x56\xb2\x5a\x52\x31\x42\x62\x9d\xb6\x67\x4d\x08\xa0\x44\xd6\xae\x14\x2c\xfd\x49\x15\xf9\xd9\xd8\x73\xb3\x1d\xec\x8f\x28\xee\x02\x18\xb8\x79\x7d\xc5\x5e\x97\xc8\x48\xa0\x2c\x4e\xf7\xe7\x90\x6e\x20\x00\xbd\x98\x11\x00\x9d\x18\x00\x3f\xb8\x95\x85\xaf\x08\xd2\x2b\x27\xcb\x0a\x07\xf1\x8a\x9d\x3b\x14\x51\x07\x15\x46\x91\x7b\xb9\xb1\x41\x77\x33\xb3\x2b\xea\x19\xac\x29\xe2\x62\xaa\x59\x20\xd2\xd6\x53\x63\xc6\x24\xa7\xdf\xb7\x07\x95\x0a\xaa\x39\x2c\xf4\xf5\xcf\x0a\x1a\x7d\xcb\x15\x5d\x77\x38\xd1\xe5\x3d\x31\x99\xf0\x47\xa4\x81\x05\x11\xd9\x0e\x6a\xa8\xb6\x43\x0e\xd8\xa1\x74\x4c\xe1\x96\xa6\x7d\xd7\xbe\x23\x36\x90\xb6\x77\x9b\xa0\x91\x9e\xe0\x15\xb2\x99\x10\xc7\xd3\x5b\x4e\x78\x1f\xd2\x02\x12\x56\x32\x05\x79\x71\x44\x91\x33\xc4\xdf\xaf\x69\x0e\xef\xc9\xd0\xae\xa9\xae\x22\xc9\x3e\x3c\x6c\xa3\xf3\x37\xd3\xe9\xac\x81\xc6\x13\x25\x63\x87\x1e\x37\x84\xd0\xa8\x6e\xf0\xf6\xe8\x19\x9e\x98\x01\x91\x33\x47\xf3\x34\x51\x67\xc7\x99\x33\x67\x6f\x27\x1c\x40\x71\x17\xad\xae\x3b\x24\x64\x72\xfe\xae\xce\xcd\xf9\x53\x57\x88\xda\x08\x0f\x3d\x42\xdd\x4a\x96\x69\x07\x77\x00\x1a\x6a\xb0\x6c\x1c\xe1\x82\x6e\x5c\x1a\xe3\x0c\x45\x34\x89\x11\x34\x4a\xf3\x4e\xe4\x18\xf0\xcf\x5e\x66\x47\x4a\x9d\x1c\xce\x35\x5a\xcc\x65\xc3\xd1\x27\x66\x26\xdf\xb0\xce\x7a\x2d\x66\xfa\x43\xeb\x62\xaa\xc4\x66\x1c\xcd\x2d\xb8\x25\xdf\x99\xd6\xbe\x1c\x9e\x64\xff\x8e\x41\xf9\xf5\xbc\x8c\xb0\xbb\x1a\x1b\x6c\xdd\x66\xf6\x26\x84\x3e\xad\x6a\xaa\x13\x1e\x5d\x30\x53\x22\x12\xbf\xd6\x5e\x10\xd8\x9b\xa8\x6f\xa9\x17\x35\x95\xf0\x90\x5e\x71\xf1\xd1\x14\x93\xcc\xfe\xda\xc7\x0a\xec\x70\x16\x0a\x92\xd7\xe4\x75\x85\xec\x6a\x1e\xf4\xdb\x48\xa9\xd9\xca\x8d\x70\x58\x8b\x64\x4e\xb5\xd3\x65\xfa\x10\xc2\xbb\x15\x6d\xbd\x29\x1b\x43\xa0\xac\xb6\x69\x70\xaf\xba\xa8\x76\x60\xdc\x59\x2a\x6a\x4f\xa3\xfd\xba\x25\x95\x2d\x46\xbe\x51\xd4\x8f\x13\x88\xf7\x9d\x43\xc0\x55\xa9\xa9\xaa\x07\x56\x22\xd1\xcc\xb6\xad\x00\x62\x75\xde\x06\xee\x0f\x8c\x64\xc8\x4b\x19\x1b\x24\xa5\xad\xa1\x10\x80\xda\x26\x4a\xb4\x68\xc9\xab\xf8\x62\x44\xb0\xd4\x77\xb1\xe7\x0d\x82\xb8\xa9\x89\x97\xb1\xca\x16\xbe\x63\x84\x30\xef\xba\x96\x2b\x9e\xef\x0b\xff\xa4\x4f\x72\xb1\x63\x35\x5b\xf7\x67\x3f\xa0\x29\xe6\xb2\x24\xe9\x0b\xd4\x98\xb3\xe7\x1c\x89\x67\x69\x8e\x39\x89\xe8\x68\x10\x41\xd1\x1c\xf7\xa3\xb9\x21\x64\x64\xcf\x22\x02\x06\xc1\x06\x30\xda\xe5\x4c\x2e\x5a\x5d\x09\xfc\xb6\x4b\x5c\xdc\x51\xbe\x1c\xa7\xf4\xfb\x4a\x06\x20\x9a\x4e\x16\xa4\x97\xf3\x72\x4e\x99\x80\xee\xd7\x32\x02\xdd\x94\x26\x63\xbb\x2b\xd6\x94\x46\xa3\x72\xbb\xc1\x3d\xd0\x58\x5e\x31\xff\xe7\x63\x13\x33\x62\x6e\x3b\xe8\xc2\xd5\xc7\x92\xdc\x55\xed\x92\xbc\x1a\x93\x28\xd2\x19\xbf\x5a\x55\x95\x53\x80\x58\x1c\x28\x1f\x60\x73\xc8\x54\x1a\x86\x0e\xaa\x4a\xc8\xdc\x90\x69\xc7\xb3\xf2\x65\x42\xdb\x66\x64\xf1\xf2\x56\xad\x15\xb1\x4b\x5b\x79\xa5\xb7\x7a\x6b\x6a\x53\x96\x29\x5c\x6f\xcb\x57\x80\xf4\x28\xa1\xde\x26\xb3\x98\x27\xfe\x2b\x02\xb3\xec\x1e\xec\x0f\x82\x2d\x9b\x1d\x78\xdd\xdb\x8f\x27\xfa\xac\xb1\x7c\x5a\x50\xfa\x20\x6f\x3f\x62\x7a\xa8\x27\x6c\x2e\x87\xa0\x06\x3b\xde\x4e\x6b\xfc\x3b\x90\x0b\x52\x60\x2d\x6d\x82\xa0\xf7\x6d\x51\xc4\x92\x5f\x73\x8e\x3a\x72\xcc\x55\xa7\x60\xae\xe6\x93\x30\x5c\xb0\xcf\xc4\xa1\xba\x44\x21\xf1\xf2\x6f\x77\x1f\x06\x5d\x13\xd5\xa9\xf1\xf0\xa8\x5f\x15\xc1\x6d\x6e\xa9\xe3\x9c\xdc\x9c\x77\xec\x08\x67\x8c\xc0\x87\x81\x6c\xd1\xf1\xce\xd0\x9c\x4f\x14\xee\xb5\x76\x12\x68\x0e\x9b\x8a\xe5\x96\x47\x72\xa6\x0a\xc8\xe9\x50\xd4\x8f\xd5\x58\x6e\x14\x23\x96\x0f\xe1\xf8\x52\xcd\x55\x20\xca\xcf\xe0\x70\xe0\xed\x20\xf5\x54\xb7\xa4\xa5\xb5\x0f\x11\xa3\x9d\x4f\xa6\xca\xca\x40\x5e\xd3\xe9\xaf\xa6\x74\x95\xb2\xf7\xaa\x09\x9a\xad\xde\xbb\xd7\xfa\x1d\xe5\xce\x83\xad\x7f\x4d\xa4\x96\xae\xca\xdd\x5d\x79\x68\x5c\x38\x86\x1c\xe9\xe7\x04\x49\x29\x5a\x6b\xb0\x71\x00\x87\xac\xef\xe5\x87\xd3\x7b\x92\x7f\xe4\xf4\x52\xb6\xc9\x86\xaf\xa2\xa7\x53\xb7\xd6\x9c\x0f\x81\xde\x6b\x72\x7f\xf9\x00\x73\x95\xa4\x1c\x8c\xd5\x27\x34\x40\x57\x69\xaa\x85\xcc\xab\x0c\x3e\xe5\x8c\x69\x22\xd2\xa8\xb2\x37\xbc\xed\x48\xeb\xc4\x34\xb7\xbe\x2f\x72\xb2\x25\x0a\xe6\x05\x99\xab\x97\x90\xe1\x1a\x11\xb6\xee\x32\xc3\x3e\x50\x69\x9e\xb0\xe4\x10\x8b\xdf\xa6\x53\x43\xd3\xa6\xc6\xe5\x75\x21\xe4\x3b\x69\xd2\x28\x3a\xc7\x7e\xdf\xa9\x18\x93\xa7\x17\xbc\x25\x54\xef\xe1\x43\x29\x45\x58\xa4\x10\x62\x2c\x17\xf5\xc8\xfe\x52\x0f\xd1\x3d\xdb\x62\x50\xa8\xd6\x8e\xf3\x47\x63\xa2\xa7\xc4\x08\xb6\x87\x48\xe9\x40\x97\xc1\x04\xce\x84\xd3\x17\xab\x25\x9c\xa9\xb2\xba\xa2\x0c\xae\xae\x19\x1d\x6c\x55\xa8\x3e\xed\xa3\xcc\x0d\x2f\x69\x43\xd4\xa6\x12\x94\x65\x56\x0a\xb1\x9d\x7a\x21\xb3\xd4\xcd\x4e\xc2\x39\x50\xbe\x64\x9f\xdd\x19\xfc\x1f\x5e\x4b\x0f\xfa\x1b\x0f\xf2\x0a\xa0\x78\xc0\x11\xa5\xdc\x21\x59\x39\x9e\x30\xb4\xec\x9d\x3e\x67\x45\x39\x41\x00\x35\x03\x25\x91\xf2\x69\x24\x85\x3d\xb6\xe9\x7b\xbc\x21\xbf\xa8\x48\x39\x28\x6b\x20\x2f\x2a\x6d\x1c\x8f\xda\x20\xe5\xf5\x55\x3f\x5a\x8b\xbe\x58\xb4\x72\x50\x89\x5c\xd3\x2d\x58\x4d\xea\x09\xb8\xad\xf3\xfb\x6b\xf9\xb1\xfe\xad\xee\x0b\x26\xd0\x95\x48\xa6\xba\x1f\xf3\x6f\xec\x37\x9b\xc4\xa8\x9e\x8f\x90\xc9\x89\x4c\x11\x0c\x65\xed\x70\x4f\xd1\x13\x33\x64\x96\xd8\x32\xaa\xa1\x9e\xc5\x9d\x3d\xc5\xe5\x5b\x9f\x63\xe7\xde\xeb\x91\x3a\xc2\xf1\xd6\xed\x3f\xda\xb4\x5e\x02\x4e\x87\x69\x83\x3d\xdb\x06\xe0\x5c\x7d\xe4\x58\x55\xe1\x8c\xcb\x23\x9a\x89\x74\x85\x34\x11\x99\xca\x58\x65\xb9\x55\xfa\xce\x6a\x0b\xfb\x71\x79\x64\xa2\x49\x4a\x99\x63\x99\xa0\xc1\x6e\xa7\x86\x92\x52\x8e\xd4\x5c\xd5\x81\x46\x75\xde\x82\xe2\xa6\x26\xd4\xcb\xd5\x03\x88\x62\x93\x37\x7f\x88\x76\xa1\x99\xad\x54\xd5\xcd\x48\xab\x61\x1f\xee\x5e\x70\xd3\x5d\xd2\x63\xbc\x42\x80\x9f\x48\x51\xac\x64\xcb\x45\x02\x1f\x39\x55\xfa\x90\xc9\x56\xe0\x72\xb1\xad\x26\xa4\x7a\x3a\xd7\x40\xcd\x0b\x7c\xeb\x31\xfb\x5a\xd3\xbc\xd9\x25\xb7\x30\x47\x88\x39\x7b\xda\xc1\x7f\xbe\x75\xe0\x16\x7b\xb4\x18\x82\x26\xb4\x4e\x5c\x7c\x8c\x15\x77\xd2\x5c\x9c\x9a\x28\xc0\x98\x01\x52\x30\xcb\xc5\xcc\x48\xf5\xb1\x02\x13\x99\x33\xe5\xc3\x4b\x1a\x57\xa0\x26\xe7\x91\x7c\x16\xe1\xce\xa7\xf2\x06\xfa\x97\x16\xe7\x60\xac\xad\x29\xe4\xc4\x1e\xca\xed\x80\x3b\xdd\xc0\xad\xdc\x03\x49\xdc\x02\xb2\xb9\x65\xb2\x78\x53\xc4\xb9\x1d\x72\xe6\x54\x64\x17\x00\x34\x38\x91\xbb\x87\x98\xee\xec\x0a\x69\xfd\x1a\xc9\x02\xfb\x1e\x15\x91\x9a\x9e\x54\x22\xed\x15\x97\x8e\x8a\xe4\xed\x3f\xae\x44\xc3\xa6\x37\x00\xcd\xaf\x23\xb3\x85\x7a\xe0\x94\x4a\x8d\x3c\x7e\x3f\x9e\x00\x0f\x5f\x3f\xee\xf8\xe0\xda\x9c\xaa\x5d\x9d\xe4\x09\x80\x61\x8d\x54\xf4\x59\x05\xa9\x04\x3a\x58\xc9\x5c\x7c\xa0\xcb\x6b\xbc\x6d\x0b\xde\x38\xc7\x23\x9b\xb3\x37\x6f\x3f\x36\xde\x65\x11\xe1\xb8\x15\x5c\x25\x9e\xcf\xcc\x82\xe6\x25\x3c\x62\xc3\xde\x45\x2f\xaa\xf4\x22\xd1\x27\xc3\x88\xdd\x4a\xd8\x2f\x24\x41\xe9\x1b\xca\x7e\x61\x5d\x8e\x26\x4d\x39\x72\x08\x6c\xef\x89\x96\x74\x4b\x9e\x15\x64\x64\xaa\x13\xbc\xe5\x12\x57\x47\xbe\x63\xd5\x45\x75\xc8\x3e\x66\x20\x84\x1c\x18\xb0\x1a\x00\x0a\x20\x79\x73\xee\x6c\x55\x52\xec\x6c\x35\x20\xc0\xf9\x97\x1c\x5f\x75\x03\xec\xfe\x7a\x61\xfe\xc1\xaf\x2f\x6d\x9a\x2c\x1f\xad\x9a\x9a\x97\x5f\x48\x6a\xcb\xc8\xe9\x22\xa2\xff\x5d\x9e\xe9\x7f\xd3\x20\x76\x4b\x73\xb0\xd3\x38\x95\xb5\x0c\x9d\x59\xf2\xcc\x0c\xb6\xe8\x14\xf2\xc8\xcc\x18\x05\xd8\xf7\xf5\x9f\xa3\xff\x65\xf7\x72\x68\x7f\x4b\xe5\xbc\x11\xfb\x37\x08\x75\xf6\x90\x2c\x7e\xcd\x69\xea\x86\x32\xba\xbf\x61\x4a\xee\x8c\x65\x74\x87\x23\xdd\x54\x6b\x88\x58\xc7\x0e\x70\xe9\xf6\x0b\xa6\x0c\x87\x05\x17\xd7\x34\x79\x22\x90\x16\x28\x6e\x9f\xb9\x8a\x37\x24\xd4\x1d\x35\x96\x03\x3f\x56\xd0\x8f\xfe\x6e\xc0\xba\x63\xa7\xb1\xba\x45\xa2\xa1\xf6\x6d\xa8\x73\x9b\xcb\xd3\x82\xd4\xd4\x14\x2e\x3a\x56\x80\x38\x14\x9d\x74\xf8\x7e\x3b\x2d\x33\x28\x9d\xc9\x6c\x64\x58\x43\x35\x26\x10\x8c\xd7\x51\x3d\x28\x63\x6c\x1a\x0c\xb5\x17\x6e\xb5\x39\xa1\x6c\x76\xd6\x14\x55\xde\x9e\xfa\x7a\x86\x6d\x8a\xa2\x54\xc8\x86\x39\xc7\xa0\xbb\xb9\x85\x64\xd5\xad\x9e\xf0\x65\x19\x28\x8a\x56\x24\x3b\x44\x2b\xcb\x49\x93\x32\x44\x6a\x08\x11\x81\xa4\x43\x2e\xbe\x8e\x17\x17\xb8\x38\x1f\x2b\xee\x94\xb8\xb8\x88\x33\xb5\x90\xd8\x0c\x55\x93\x47\x77\x3f\xe3\xac\xd6\xf7\x38\x5a\x4d\x42\x88\x0d\xd2\xd4\x03\x56\x63\x78\x05\x59\x22\x7f\x8f\xd9\x41\x62\x10\x5c\xfa\xdd\xd2\xc2\x9c\x80\x22\xbe\x8d\x0e\xc1\xa9\x92\x44\x7c\x73\x95\x55\x0f\x8d\xc3\x98\x06\xf6\x5e\x78\xb6\xc2\x04\xcb\xf3\x77\xab\x21\x4e\x6e\x5d\xdf\x48\xee\x03\x4b\x72\xfc\x4c\x7d\xfa\x37\xf2\x54\x37\x85\x33\x94\x7e\xd8\x79\x93\xe3\x74\x7d\x79\xbe\x33\x96\x48\xee\x7e\xc0\xe6\x98\x92\xac\xa6\xc4\x1c\x3c\x48\x23\x19\x2c\x05\x09\x07\xb4\x06\x6b\xa0\x79\x66\x57\x7f\x02\x90\x51\xaf\xa4\x8d\x44\x02\xad\x43\xf9\x4f\xb5\x2f\xd9\x93\x39\x14\x76\xd3\xb9\xb2\x62\xe9\x49\x4c\xbe\x12\xdd\x59\xf5\xaa\x02\xf7\xeb\xf5\x88\xd5\x89\x05\x9e\xec\xfc\x88\xee\xc7\x6c\xf4\x66\x5b\xc9\x81\x8a\x38\x8f\x0f\xcb\x7c\xb2\x4b\xdc\x66\x44\x8a\x24\x03\xaf\x98\xe7\xdb\xb0\x83\xcb\x10\xf8\x10\xd3\x58\xf7\x9c\xf4\x4d\x6d\x6c\x2a\xdd\xca\x24\x3f\x1e\x4c\x35\x2b\x48\xa0\x4b\x41\x64\xdd\x09\xd7\x7c\x8a\x5e\x6e\xe7\x10\x33\x47\x04\xb1\x9f\x83\xe3\xc3\x14\xd9\x2e\xf6\x72\x39\xe2\x91\x8d\x69\xfd\xd4\xb4\x3c\xf2\x65\x58\xc2\xc9\xd9\xca\x25\xbd\x9c\xd5\x19\x2d\x5e\xbf\x58\x0d\xfa\xa8\x0b\xf5\x18\xeb\xc2\x88\x78\xb4\xee\x0d\xf7\x48\x34\x16\x59\xb3\xf0\xff\x67\xe1\xb3\x09\x6d\x06\xe7\x76\xe4\x34\x5b\x80\xb7\x6d\x1d\x1b\x7a\x14\x27\x75\x8d\x51\xd4\x17\xa8\xc4\x39\x3a\x97\x39\x98\x2e\x61\x4a\x5a\x95\x4b\x46\xb8\x43\xda\xa4\x20\x8c\xc7\x09\x63\xa4\xd9\x7c\xe0\x88\x3a\xd0\xd3\x53\x7b\x06\x97\x03\x75\x2f\x01\x9a\x63\x40\x79\x45\x01\x73\x39\x95\x43\xf8\xe3\x8e\x7a\x7a\xf5\x27\x72\xdc\x33\x75\x5a\x9a\xc4\xe3\xd7\x84\x12\x44\xf8\x15\x08\x2d\xad\xc3\x75\x1c\xe2\x64\x46\x9c\x67\xb5\x70\xe0\x54\x1f\xc4\x11\x66\x70\xd7\xb7\x4e\x97\x2b\x97\x0e\x2c\x41\xd4\x49\xc7\xa1\x4c\xba\xa6\x21\xa0\x99\x07\x5e\xf8\x62\xd1\x9a\x46\x86\x01\xff\xed\x2a\x15\xa9\xb4\x82\x3b\x71\x8b\xa3\x22\xab\x83\x02\xad\x2c\x74\xce\xad\x31\x97\x8e\xa8\xd4\xf6\xcd\x9d\x71\xfe\x01\x4b\xa8\xc9\x21\x27\x67\xe9\x33\xd4\x42\x1d\x3f\xf9\x82\x35\x6a\x93\x44\x55\x45\x06\x08\x67\xa3\x22\x13\xae\x2a\x63\xbe\x04\xb8\xa5\x1e\x55\x8d\xcd\x65\xae\x1e\x6a\x95\x07\x15\x18\x7a\xcc\xe4\x01\x6a\xa9\xe4\x5e\xa8\xc1\x33\x16\x24\x3a\xb0\xc7\xb6\xf9\x53\xad\x64\x7e\xc7\xa9\xb1\xea\x9a\x87\x09\xa6\x73\x0f\xa8\x1a\xfa\xb2\x82\x3d\xe5\x57\xcf\xb8\x63\x9f\x7f\xcf\xf9\xdf\x42\x6c\x03\x16\x73\x80\xa7\xa0\x21\x15\xe8\x03\x5b\x02\x98\x2f\x9a\xab\xab\x80\x9f\x5d\x53\xdf\x25\x7b\xf3\x87\xfa\x1e\xe4\x59\xc0\xa6\xcf\x3d\xef\xbb\x54\x51\x1f\xe6\x4f\xff\x7b\x3e\x75\x8c\x86\x4f\xfb\xe1\xec\x11\x20\x80\x2d\x57\xb8\xe9\xf2\x29\xb2\x7d\x5c\x80\x71\x16\x90\x1a\x79\x24\x91\xec\xd8\xf6\x4d\x32\x63\x94\x34\x38\x60\xee\x24\xf9\x5e\x85\x73\x53\xee\x8f\x5c\x23\xb6\x50\x6f\xb0\xb5\xba\xc2\xaa\x8a\xea\xe3\x4d\x70\x77\x37\x80\xf1\xf5\xca\x68\x3c\x69\xb9\x8e\x8d\x46\x9d\x8d\x86\xb8\x94\x8f\xe3\x6b\x88\xe4\xfd\xbb\x55\x15\xf3\xfa\xe2\x9f\x35\xcc\xba\x70\x1e\xe8\x2e\x23\x68\xb0\x57\x8a\x02\x7f\xe3\x85\x1b\xce\x23\xd7\x59\x49\x5e\x81\xa5\x01\x2a\x37\xb9\x47\x70\x3a\x40\xcd\xf1\x3c\x53\x27\x57\xb8\x0f\x99\x53\x18\xaf\xa2\x9c\x09\x2e\xc2\xfa\x56\xef\x2e\x37\xa7\x37\xc0\x8d\x38\xbd\x9f\x33\x39\x4d\xe1\x90\x0a\x2e\x4a\x86\x09\x60\x66\x6b\x14\x82\x98\x8d\xfa\x50\x13\xc4\x7b\xc1\xd5\xae\x35\xf5\x52\xf7\xbb\x6f\xcf\x61\x4b\xdf\x65\x13\x14\x5f\x5a\x9a\x92\xbc\xee\x82\x2a\xf4\xcc\x78\x89\xd7\xaf\x9c\xf5\x53\xd5\xfd\x5c\xcd\xe4\x47\x66\xa7\xce\x80\xb1\xa2\xbd\x83\x65\x8b\x9c\x09\xfa\x5b\xdc\xc3\xed\x42\x91\x49\x03\xe9\x77\xf2\x45\x49\xf6\xf7\xfb\x4f\xd8\x0c\x57\x34\x6e\x48\xc3\x5a\x58\xc0\x8f\x3b\x25\x8b\x65\xdc\xee\x6d\x72\x96\x0f\xb4\x7f\x93\x49\x74\x13\x5c\xc9\x00\xd3\x4e\x3d\x4c\x24\x87\x83\x54\x85\x8d\xd5\x46\x3e\xca\x26\x74\xc9\xf5\x09\x96\x4d\xaf\x57\x44\x02\x89\xb8\x66\xec\xbe\xcb\x35\x43\x95\x24\x83\x66\x26\xc9\x56\x7b\x3b\x6a\x9e\x45\x9e\x64\x66\xbc\x1c\x08\x23\x1a\x3e\x84\x20\x04\xc5\xba\x99\x15\x75\x97\xd7\xd3\x36\x97\xad\xd2\x54\x6f\xa0\x74\xf3\xbb\x9c\x80\x66\xe5\x30\xc0\x34\x5f\x87\xf7\x56\x5d\xa8\x7e\xa9\x1e\x46\xc3\x7a\xe1\x25\x9a\x9e\xc8\x10\x54\x24\x12\x18\x7b\x13\x0d\x97\x0d\xee\xd9\x8c\x09\x0c\x69\x0b\x77\x28\xd7\x37\x61\x5c\xeb\xea\x2e\xf4\x17\x19\x06\x91\xec\xee\xdb\xba\x16\x3a\x90\x6d\xb8\x8e\xa3\xeb\x70\x0a\x63\x3d\x9e\x97\xf5\x50\x9a\xc0\x5a\xd1\x2a\x10\xaa\x4a\x56\xbe\x59\xae\xc8\xc8\xbc\x31\xc5\x46\x9c\x87\x4c\xec\x49\xf1\x36\xf0\x71\x70\x93\xf6\x29\xe2\xe9\x98\x52\xc6\x2f\x4e\x73\xdb\x87\xa4\xbc\xd4\x1c\x2a\xc6\x41\xd5\x38\xc0\xb8\xbe\xbd\x73\xc2\x8d\x94\xbd\x09\xbf\x28\xc9\x4e\x79\x0d\xfd\xf7\x20\x02\x2b\xc2\xec\x88\xe6\x90\x8a\x66\x6e\x6a\x42\xf5\x72\x76\xc4\x43\xdc\xf5\xe5\xb6\x16\x2a\xd4\xd3\x91\xa9\x7a\x36\x0e\xa2\xa2\x89\xef\x1e\x96\xb5\x20\x3e\x28\x5f\x7f\xe7\x77\x97\xec\x55\xc4\x4b\x3a\x5b\xfb\x04\x44\x46\x85\x8b\x3c\x32\xce\x48\x80\xb6\x29\xec\x2f\x4e\x4e\xf0\x0e\xaa\x3a\x97\xc2\xce\xda\x31\x87\xca\x70\xc7\x0d\xf7\x91\xa5\x1c\x70\xf6\x29\x7d\x4f\x47\xc2\x9e\x63\xcb\x1d\xd4\xa9\x0a\x27\xee\x08\x19\x76\x2a\xcc\x56\x89\xf6\x22\x4c\xd7\xce\x7b\x0c\xad\x27\x32\x16\xf3\x9e\x57\x61\xbf\x87\x6b\x29\x0c\xca\x82\xfd\x1e\xed\x8d\x0a\x07\x52\xec\xef\x3d\x78\x28\xcd\x1c\xc3\xae\xa8\xfb\x03\x7b\xd3\x4d\xa4\xa8\xc0\x59\xc9\xb1\x0f\xb4\xde\xed\xc9\x42\x5a\xae\xda\x3c\x1c\xe4\x94\x54\x11\x29\x39\x1c\xca\x6f\xe2\x83\xe4\x81\xb5\x3f\x65\x37\x87\x09\xc9\x80\xaa\x9f\xbf\x85\x70\x9f\xf4\x59\xd1\x4a\x02\x8a\x09\x1d\x5d\xcb\x31\x08\x66\x4d\x0b\x30\xdf\x44\xb3\xc6\xed\xf0\x5f\x8c\x39\xfe\x9f\x0c\x1d\xce\xdc\x41\xd2\xf1\xf9\x2b\xe7\x73\x52\x43\x17\x38\xc0\xf9\xa3\xa4\xa3\xd2\x26\x74\x78\xc5\x4d\xd6\x73\xf5\x9d\xa1\xc3\x4b\xb9\xe3\x36\xfb\x12\xc1\x33\xb1\x38\xb7\xa4\x26\x3b\x79\xa5\x45\x08\xb1\x47\x9b\x4d\x79\x77\x67\x7d\x12\x58\xbc\x47\x0e\xb0\x83\xe9\x8d\x2e\x38\xc3\x7c\x9f\xb8\xf4\x38\x8f\x69\x5a\xd3\x5c\x9c\x8a\x15\x8f\x64\x96\xcb\x33\x73\x72\x4c\xdc\xa1\xfc\x35\xc7\xc5\xd7\xd8\x0e\x53\xa3\x95\xe0\xe2\x7c\xac\x97\x6e\x89\x8b\x8b\x73\x15\xc1\xa1\xf4\x92\x5c\x7c\x85\xbd\xb3\xe2\xbe\x87\x0b\xde\x6a\x8b\x68\xdf\x9d\x31\x17\x8f\x16\x51\xa5\x6f\x77\xca\xc5\x93\x45\xac\x6f\x9f\x8b\x67\x8b\x68\xdf\xdd\x05\x17\xcf\x63\xb5\x27\x72\xc5\xe5\xeb\xc5\x65\xa7\x5c\x68\x88\x03\x94\xf9\x00\xf6\x65\xc7\xed\xb6\x0b\x72\xa5\x54\x27\x89\xbc\xd3\x7f\x22\xa6\x3a\x09\x98\xcc\xaf\xa8\xe9\xc8\xdc\x62\x5c\x1d\x63\xa1\xd2\x61\x94\x34\xd3\x75\xa6\x3f\x74\xe5\xb0\xa3\x6d\xa8\xe9\xa3\xff\xb1\xe3\x67\x88\xe7\xc2\xf8\xd1\x80\x06\x23\xa7\x62\xc2\x62\x0e\x0a\xe9\xcf\x68\x24\x76\x53\xd8\xa5\xce\x00\x6b\xf8\x7a\x5a\x05\x1a\xb4\x3a\xf3\xfa\x8c\x60\xfc\x3a\xde\x84\x3a\xb7\x93\x5c\xcf\x2f\x2a\xd0\x27\x50\x2d\x7a\x73\x76\x9e\x81\x19\xf1\xda\x46\xdd\x9c\x1d\x94\xda\x53\xb5\x20\xbd\xf0\x2b\x2a\xf5\x06\x35\xb8\x6b\x69\x56\x6d\x1a\x11\x40\x96\xb2\xe0\xe9\xc3\xba\x92\x4f\xf0\x54\x5c\xf7\xb1\x66\x9b\xbe\xde\xc9\x0b\xc5\xb8\xe4\xd7\x1e\x8a\x73\x54\xdb\x57\x79\x0f\x3a\x69\x36\xf1\xae\x34\x35\x15\x03\x79\xc2\x85\xbc\x5d\x30\xac\x3d\xf6\x93\x8a\x78\xc1\x18\x9d\xcc\x4a\xfd\x61\x25\xd0\x7c\x49\xda\x89\x2c\xe2\x6d\x56\x37\x78\x05\x2d\xd9\xe2\xc5\x72\x44\x9b\xac\x34\xcf\xee\x08\xdf\x5c\x81\xaf\x14\x5c\xb2\x9d\x9b\x09\x26\xc6\x46\xc2\xa7\x13\x85\x0f\xa8\x9d\x3c\x72\x5a\x0c\x0e\xca\x68\x14\x97\x90\x45\x87\x68\x46\xce\x55\x59\xf9\xb2\xb9\x67\x96\x35\x33\xe4\xc4\xa5\x6d\x7d\xd9\x84\xd7\xd3\x53\x80\x03\xf2\x16\x99\x6b\x35\x94\xb0\x1f\xb6\xc6\x08\x7b\x6c\x8c\x28\x83\xab\xb3\x82\xfa\xf3\xb4\x91\x11\xed\x2e\x67\x61\x1a\x48\xb2\xd2\x0e\xe4\x75\x15\x5c\xe2\x3c\x3e\xc4\x3d\x85\x70\xdb\x3e\x34\x77\x70\xc6\xf7\x72\x24\x3d\x74\xf4\x24\xcf\x8c\x8f\xc1\x9e\xdd\x8b\xef\x78\xa6\x1a\x94\x2e\x93\x94\xaa\x73\x76\xa4\xbd\xe7\x47\xfa\x46\x25\x4e\x37\xab\x3c\x8c\xe1\x21\xf2\x04\x49\x84\xb9\xd1\x8c\x50\x08\x85\x09\x8d\xa2\x6c\xae\xe4\x60\xb2\x28\x5f\x53\x04\x77\x25\x07\x3e\x64\x0f\x50\x6f\xe7\x76\x13\x59\x8f\xce\xb4\x6f\xd5\x84\xf3\x7e\x1c\x70\x67\xcf\x91\xc1\x3d\xc1\x95\x63\xce\xbb\xe7\x25\x32\x04\xf2\x31\x4d\xab\x2d\x8f\xfb\x2d\xf2\xe8\x19\xe3\xc6\xa3\xce\xfb\xe5\xc1\x95\xd4\xf5\x13\x41\x6f\x66\x91\x28\x6c\x8c\x73\x71\xdd\xe7\xb5\x72\x85\xd3\x1b\x47\xc6\x59\xcf\x7a\xfa\x28\xd2\x9c\xa8\x3c\x06\xdb\x3d\xdd\x9e\xef\x39\x7b\xa3\x66\x5e\xb0\xc0\x2d\xa1\xde\x47\x8b\xd8\x82\xb7\x58\xac\x2b\x0e\xb4\x00\xe0\x1c\x08\x90\xc0\x11\xc2\x7b\x40\x76\xc2\x60\x00\x8e\xb0\xdf\x7a\xe1\xfb\xbd\x92\x67\xb9\xc2\xed\xd3\x41\xe3\xb2\x46\x41\x8f\xc9\x7d\xbc\x1a\x18\xc8\xa6\x76\x60\x2b\xdf\xe8\x7d\x5d\xaa\x38\x1b\x42\x4d\x5d\x4a\xd6\x2d\x8d\x49\x67\x7f\x55\x61\xe7\x9f\x19\x60\x41\x89\x34\xf6\xc8\x37\xf2\x8a\xf6\xb0\x2f\x41\x52\xea\x43\xca\x41\x3e\x93\x03\xe4\x48\xdb\xe9\xf3\x59\x4f\xda\x45\x72\x6f\xee\x6c\xb6\x81\xb9\x40\xa5\xe5\xf2\x1e\x43\x5f\xbe\x7c\x98\x95\x93\xca\x3c\x61\x0f\xa3\x12\x25\xdf\xd1\x64\x3c\xc5\xbb\xeb\xea\x2e\x72\x0c\x05\x10\x28\x7b\x3c\x55\x3b\x4a\xbc\xac\xfc\xca\x76\xad\xa2\x8d\xc9\xd7\x65\x25\xe3\x72\xf2\x55\xfc\x6c\x70\x7e\x8a\x2a\xe1\x59\xc3\xfe\x90\x93\x99\x7e\xac\xce\x16\x6a\xfc\xda\x49\xcb\xc3\xee\x01\x7e\x94\xb5\x0d\x8f\x70\xcd\x79\x87\xb0\x60\x44\xc3\x6a\xc4\x5e\xe8\x11\x26\x39\xbb\xda\x8e\x80\x92\xd5\xce\xde\x72\xed\x60\xaf\x9f\x22\x7b\xa8\x95\xd4\x5f\xeb\x3e\x7e\xe7\x0b\x5a\x67\x2f\xa8\x11\x76\x30\x14\x11\xd9\x4a\xae\x19\x7d\x91\x5d\xc9\x45\x5e\xd4\xc8\x69\x71\xd0\x7d\x1e\x81\x80\x74\x0b\x1f\xf6\xa9\xb3\x53\x84\xd8\x2d\xf2\x98\xea\xec\x53\xe4\x3b\x84\x37\x59\xa9\xe8\x7a\xe8\x65\x72\xc9\xb2\x89\x6a\x9a\x30\x69\xf6\x6c\x5a\xa9\xfc\x77\x2c\xc8\x9e\x53\x1a\xa6\x3b\xfa\x2b\xd2\x72\xd0\x8f\x7c\xda\x50\xff\x70\xef\xaf\x3d\x18\x53\xbd\x3f\xb7\x58\x35\xbd\xe9\xcc\x62\xe9\xcf\x99\x48\xa1\x0e\x0e\x74\xaa\x7a\xfa\x6a\xc2\x79\x9c\x19\xfa\x5b\x6a\x5b\xb6\xb0\x09\x1e\x6a\x2a\x8b\xe4\xe4\x50\xa4\x8c\x95\xb4\x02\x8f\x64\x7c\x54\xa3\x37\x3e\xb9\xd5\xc8\x95\xea\xb0\xbf\xaf\x8b\xb6\x65\xce\x1d\xac\x6f\xe2\x8d\x0f\x57\x4d\x01\x7b\xcc\xda\x47\xf1\xa1\xce\xfc\x8d\x2b\x6c\x82\x11\x9b\xca\x2d\x65\xf7\x4b\x9d\xbd\x71\xaa\x26\x6f\xe8\xe8\x89\xfa\xb1\x5a\xfa\x1a\x59\xd3\xaa\xbe\x32\x0a\xf7\xa1\x0e\x4b\x1e\x5c\x02\xeb\x18\x20\xb9\xa0\xb4\x17\xb8\x27\xd2\x40\x47\x49\xab\x2b\x5c\x74\x1e\xe5\x1b\x68\x1f\x98\xe4\x66\xe1\x58\xa4\x96\x70\xf5\xa4\x78\x6b\xf8\x78\x7a\x5a\x02\xb2\x37\xca\x06\xd9\x4e\x6e\x43\xc6\x64\xaa\x06\x3b\xd3\x19\xf6\x9d\xbe\xf9\x50\x93\x71\x44\x46\x00\xaa\x57\xba\x59\x68\x23\x1c\xc1\xd3\x9f\xe6\x90\xd2\x45\xb2\x41\x50\x81\xbc\x51\x48\xf7\x48\xfa\x74\x1d\x4e\x64\x56\xd3\x8c\x76\xb6\x8c\xe0\x9b\x69\x00\xec\x72\x04\xe5\xf7\x92\x2b\x15\xa8\x79\x4a\xdf\x19\xc8\x75\xbc\xe5\x45\xd4\x57\x29\x27\x84\x8a\xe1\x91\x88\x3d\x6e\xc2\x18\x10\x4a\x4b\xa8\xdc\xcd\x15\x72\x1d\xc3\x8d\xe2\x71\xf8\x51\x57\x49\x96\x25\xf5\x54\xc2\x38\x68\x1f\xab\x97\x11\x82\x72\xd0\xea\x69\x08\xf7\x20\xd8\x1b\xdf\x19\x35\x0c\x1e\x8d\x3d\x98\x66\xdb\x78\xf6\xd2\xa7\x8a\x5d\xaa\x37\x06\x6b\x0b\x27\xcb\x37\xa4\x84\xef\xe0\xd7\x3b\x47\xb2\xa3\x55\x6f\xbc\x84\x6a\x68\x80\x94\x18\x77\x49\x46\x00\x41\xf8\x1a\xb1\xea\xf9\x1a\xa2\x9b\x33\xb8\x3e\xd3\xd8\x16\x0d\x64\x12\x68\xed\xa7\xe4\x61\x3f\x55\xd3\x9d\x99\xee\x09\x5b\x89\x0f\xb3\x70\xba\x0f\x6a\xce\x9e\x09\x33\x7a\xaa\xee\x0a\x50\xab\x6c\xe9\x3b\x1f\x30\x0c\x22\x2e\xc7\xea\xcb\x01\xd6\xd1\xa1\xf7\x79\x2c\x53\xf7\x2c\x96\x29\xc0\xe7\x68\x6a\x9e\x2a\x13\x81\x85\x2b\x36\x0d\xef\x4e\xa8\xe6\xd9\xa6\xe1\xee\xbb\xc2\x19\xcb\xec\x58\x46\x35\x35\x11\x85\x18\xff\x69\x3f\x0e\x4c\x58\xaf\x2d\x54\x2f\x39\x0f\xea\xdb\x4f\x57\x06\xbc\xb6\x25\xd4\x63\xee\xc4\xc3\xa9\x0b\xf5\x96\x3f\x31\xab\x4f\x69\x4e\x59\xfd\x51\x27\x9e\x8c\x85\x8a\xba\xb0\x37\x32\x77\x1f\x60\xa8\xd8\x43\x39\xbc\x09\x63\x83\x63\x19\x55\xf2\x2d\x83\xe5\xe4\xf4\x43\x45\x90\x6f\x1b\xcd\x9f\xdd\x1f\x31\xd6\x4c\x5b\xd8\xcf\x91\x88\xcf\x4d\x4a\x46\x10\xa3\xe7\xd3\x48\x4c\xb2\xc9\xa0\xe3\x8a\xc9\x3b\x07\x3d\xab\x69\xf1\x02\x40\xda\xbe\x67\xb9\xd6\x40\xa9\x92\x77\x63\x2d\xcb\xc2\xf6\x10\xab\x41\x5a\xdc\x36\x79\xcc\x51\x90\x45\x6d\x07\x0e\xe2\x00\x70\xdf\x2e\x67\x46\xac\xc3\xaf\x54\x3c\x6e\x77\x26\xc3\xa4\xfe\x45\x8c\xfa\x8b\xa6\x8c\x95\xc0\x57\x58\xcb\xd6\xaf\x42\xd4\x89\xd1\xa0\xb0\x14\x8e\xa6\x45\x98\x4e\x4d\x13\x6d\xbb\x47\x07\x31\x28\xd0\x03\xeb\xbf\x6d\x98\x7b\xb9\x26\x22\xef\xa5\x20\x05\x35\x83\xa9\xca\xaa\x12\xa7\x71\x76\x45\xed\xa9\x88\x70\xd0\xd1\x5d\xe8\x00\x3d\xe9\x83\x63\xb1\x4c\x06\x45\x1e\x90\x71\x06\x16\x77\x9e\x35\x97\xa2\x8a\xd4\xae\x9e\x00\x51\xe2\x58\x8b\xba\x70\x93\xf6\x0a\xa4\xb8\x1e\x66\x7b\xd7\x1d\x59\x33\xa9\xfa\x9c\xa5\x8f\x1f\x71\x1a\x4e\x1a\xb9\x7a\xa6\xb9\x64\x6b\x43\x9d\xb3\x4c\x55\x17\x1e\x5e\x3e\x97\x42\x3c\xce\xc9\x68\x84\xf4\x26\x2e\x9e\x54\xe7\xe4\x50\xc2\x65\x1c\xdc\x56\xd2\x47\xff\x6e\x2a\xad\x99\xd2\x6f\x15\x5a\x54\xae\x93\x8c\x2f\xac\x8e\xb0\x39\x56\x60\x09\x1f\x2f\x52\x99\x8e\x37\xfa\xcc\xd8\x43\x0e\x6b\x22\xf9\xcb\x79\xb4\x5c\x51\x41\x65\x1f\x5e\x81\x2d\x4a\xbb\x3d\x26\x7e\xec\xdb\x21\x5b\x69\x5c\x2d\xcb\x2d\x24\xfa\xc5\x56\x05\x61\x5b\x0a\x42\x5f\x95\x9f\xdd\xe9\xdd\x25\x98\x9c\x37\xf5\x89\x2c\x23\xf5\xbd\x15\xa6\x6d\x00\x9d\x8f\x24\xab\xc8\xca\x15\x47\x49\x70\xae\xd7\x6b\xa2\xab\x9c\x50\x3b\xbd\x55\x91\x90\xbb\x23\xf4\x67\x0d\x0c\xf7\xb0\x0d\x61\x23\xd9\x67\x24\xb5\x8d\x78\xe7\xb6\xc7\x48\xe2\x0e\xc0\xe7\xc9\x86\x5d\x70\x69\x1b\xde\x6c\xe2\x2f\x2d\xd2\x4b\xed\xc7\xc8\x48\xc9\x19\xec\x39\x8c\xa4\x19\x6f\x71\x99\x0f\xb6\xd8\xea\x88\x34\x5b\x6c\xe0\xd9\xb9\x06\x5f\x51\x1d\xf2\x10\x51\x4b\xb8\xf8\xad\x86\xea\xba\x1a\x7d\xdf\xa2\xa6\x37\xee\x98\x95\xb8\x78\x34\xbd\x31\xfe\xc7\xce\x40\x62\x4b\xd7\x49\xeb\x92\x55\x6b\xec\xc5\xf6\xaa\x0f\x0b\x4b\x1f\x6c\xd8\x2e\xb6\x45\xd7\xc4\x5b\x39\x04\xf2\xcd\xc9\x8c\x85\xe5\x88\x32\xa5\xc8\x20\xe3\x81\x26\x35\x1b\xf5\x80\xd3\xff\x50\xb6\xae\xca\xc2\xc1\xe1\x2f\x91\xef\x7d\x83\x42\xa8\x1e\x5e\x27\x1b\x3a\x76\xd7\x72\xb5\x91\x3f\x58\x3f\xf4\x47\x53\xef\x87\xbf\xfe\xb0\xde\x74\x36\xa3\x6e\x72\xbc\x4e\xa6\x7e\x29\xf4\xbb\xa9\xf7\x5e\x26\xf3\x4b\x77\xb8\xf5\x27\xbf\x8c\xd7\x3f\x58\x3f\xac\xe7\xdb\x55\xd7\x5b\xab\xb9\xbf\xf1\xfc\xcd\x0f\x7f\xfd\xed\x87\xfe\xd6\xef\x6e\x46\x73\x3f\xb1\x99\x3f\x77\xa6\x3f\xcd\x46\x87\x9f\x13\xff\xf9\xbb\xff\xfb\x66\xd7\x59\x25\x26\x56\xe2\x68\x25\xd6\x9b\xd5\x97\x1f\x7f\xfc\xf5\x77\x5f\x17\x8f\xfa\x89\x9f\x36\xc7\x85\x37\xef\x27\x66\xa3\x43\xe2\xcb\x97\x2f\x89\x1f\xd7\x9b\xd5\xc8\x1f\xfc\x98\xf8\xbf\xff\x37\x71\xfe\xc8\xdf\xce\xde\xbd\xd5\x8f\xdc\xe7\xef\x9b\xf5\x66\x95\xb8\xfa\xa2\x9f\xeb\xfe\x36\xff\x48\x78\xd3\xb5\x97\xb8\xd4\xe9\xfc\x7d\xec\x75\x37\x61\x4b\x5d\x47\xac\x56\x9d\xe3\x2f\xa3\x35\xfd\x4b\x63\x0d\x1e\xff\xbe\xe9\xcf\x57\x89\x9f\x26\x5f\x52\xbf\x26\x26\x89\x7f\xd3\xfd\xfc\x32\xf5\xfc\xc1\x66\xf8\x6b\x62\x72\x75\x15\xa9\x87\xae\x66\xa3\xc3\x6f\x93\xbf\xc5\x8a\xf1\xe0\x98\xf8\x12\xce\x85\xae\x72\x56\x07\xdf\xf0\xaf\xff\x9a\xf8\x89\xbf\xe5\xc7\xc4\x8f\x3f\xff\xfa\xb1\xc6\xd5\x97\xc4\x31\x56\xfc\x8f\xf0\x47\xf0\x27\xff\xc1\xd3\x70\xf6\x29\x89\x91\x9f\x08\xd7\xe3\x1b\x43\xff\xd6\xa0\xb8\x7c\xf2\xeb\x57\x46\x41\x2b\x82\x65\x5e\x79\x9b\xed\xca\xd7\x4b\xff\xeb\xef\x3e\x95\x79\x87\xc5\x7c\xb5\x49\xf4\xbc\x7e\x67\x3b\xdd\x24\x82\x7d\xf3\x53\x64\xbf\x8c\xbe\xa4\xac\xc4\x66\xb6\xb0\x12\x87\xe8\xb6\xd9\xec\x87\xa3\xa9\x97\xf8\x69\x94\xf8\xb7\x44\x67\x35\xd8\xce\x3c\x7f\xb3\xe6\xd5\x89\xad\xef\x66\xb6\x48\x7c\x09\xab\xfc\x36\xba\xba\x8a\x7e\xa7\xae\x72\x08\x96\x67\x33\x5b\xc4\xd7\xe6\xeb\x53\xc0\xa5\x87\xcf\x3e\xfa\xc3\x27\xff\x60\xfd\x30\x9a\xd1\x37\x63\x2b\xb6\x47\x9b\xe1\x7c\xbb\x79\x58\xcd\x17\xde\x6a\x33\xf2\xd6\x77\xf3\xf9\xda\x4b\xf4\x57\xf3\x59\xe2\xf7\x1f\x7e\x49\x7e\xad\xd6\xef\x3f\xfc\xfa\xf9\x0c\xfe\xfd\x93\x96\x3f\xe1\xb4\x5a\x09\xef\xd0\x9d\x6e\x7b\x5e\x8f\xbe\x36\x41\xa7\x05\x8f\x12\x5f\xbe\x24\xfc\xed\x74\xfa\x73\x82\x07\xff\x9f\xff\xf8\x55\xd7\xd0\x6b\xb1\xe9\xac\x06\xde\x26\xf1\xe5\xab\xa3\xff\xf8\x8a\xa0\xfd\xc4\x3b\x5a\x89\x11\x9d\x7a\xbc\xb2\x4e\xfd\xfc\x32\xf0\x36\xf5\xbd\xcf\xfd\x1c\x9b\xc7\xd9\xfb\x7c\xba\xe6\x91\xa1\x25\xfa\xc4\x93\xaa\x77\x5c\x27\xbe\x24\xbe\xd6\x96\xc7\xf0\x33\xbf\x2a\x91\xa0\xdd\x3f\x4a\x7c\x49\xa4\x7e\x4d\xe8\x2d\x73\xde\x5f\x70\xae\x47\x7c\xae\x13\xf4\xdf\xc4\xd3\x47\xf7\xbc\xf2\x6f\xa3\xbf\xfd\x6a\x6a\xe8\xaf\x30\x1f\xfa\xcb\xc8\xef\x79\x87\x7a\xff\xa7\x89\x77\xfc\x39\xf1\xbf\xbf\x24\x52\x3f\x27\xba\x73\x7f\x33\xf2\xb7\x5e\xac\xc1\xbf\xf0\xd8\x17\xab\xf9\x66\xae\x89\x94\xfe\x8b\xc6\xef\xae\x6d\x7f\x3b\xf3\x56\x9d\xf7\xa9\xf7\x4b\xb7\x33\x9d\x06\xb3\xa9\xfb\xbc\xd0\x1d\x96\xe4\xb7\x89\x77\xfc\x5b\x30\x52\xfa\xc5\x35\xfe\xa1\xff\xf9\x07\xa6\x81\x17\x14\x4d\xf4\x86\xfc\xc1\xfa\xe1\x8f\x6e\xa0\x4f\x96\xf8\x4f\xed\xa2\x48\x19\x5a\xc5\x57\x76\xe2\x1d\xa3\x0b\x79\x61\x0b\x5d\x5e\xd5\x4f\xd7\x33\xba\x9a\xf1\x75\xfc\x83\xab\xf8\xf5\x49\xff\x33\xb3\xed\x1d\x36\x9e\xdf\x5b\xff\xc4\x63\x35\xbf\xc3\xc9\xe8\xac\xd7\xa3\x81\xaf\xaf\xc3\x90\x4a\xa2\xeb\xe0\xf3\x68\x36\x88\x64\x26\xbe\x24\xd2\x98\x91\x73\xd2\x78\xbe\xc1\xc3\xb9\x8f\x13\xc9\xbf\x05\x27\x27\xd2\xaf\x9e\xbf\x91\xcf\xf5\x23\x9d\xc4\xce\x72\xb8\xa7\x87\x9d\x75\xe4\x64\x5e\xda\xcd\x91\x1e\xbe\xbd\x93\x83\xdd\x1c\xf9\xe3\x1f\x66\x94\xe7\x93\x9d\x48\xfc\xe3\xd7\xd8\x32\x98\x19\xfd\xa5\xb3\x58\x4c\x8f\x3f\x6d\x86\xa3\xb5\x15\x7e\xf0\xcf\xbc\x3e\xfa\x2b\xff\xce\x5c\xc3\x17\xc3\x78\xe0\xe0\x13\x07\xf1\x7b\xc0\xdb\xfc\xfe\x83\xbe\x17\x62\x35\x7e\x19\x6d\xbc\x55\x67\x33\x5f\x71\xd5\x35\x95\xfe\xfe\x43\xe2\xdf\x23\x6b\x36\x7f\x1f\xff\x9c\xf8\xcf\x60\xbc\x68\x3f\x7f\x1f\xff\x9a\xf8\x47\xe2\xaf\x9f\xd6\x9b\xbf\x8f\x3f\xbc\xee\xe2\x80\xe6\xef\xe3\x5f\xba\x73\x7f\xbd\x59\x6d\xbb\x66\x24\x5c\x1d\x4f\x13\xff\x12\x94\x84\x4b\x95\xf8\xf7\xe8\x70\xff\x1a\x1f\xd6\xaf\x91\x9b\x9a\x76\xd7\x5a\xae\xe6\xfb\xb5\xb7\x4a\x7c\x09\x38\xac\xfd\xc8\xef\xcd\xf7\x3c\xa2\xad\xdf\xf3\xfa\x23\xdf\xeb\xd1\xa7\xc7\x7f\xff\xd5\x4c\xef\x4f\x68\xf2\xf3\xcf\xdc\x08\xe4\x06\x1f\x61\x7a\xed\xcd\xbb\xb4\x3c\x7f\xa8\x5f\xd3\x88\x7b\x36\x3c\x9f\xee\xd7\x3c\xfa\xc5\x9f\xf7\xbc\x27\xfd\xdd\xba\x46\xe9\xd7\x0b\xac\x48\xf0\x91\xbf\xd2\xa5\x1d\x1e\x54\xbc\x32\x72\xa1\x62\xcb\x59\x09\x4d\xc1\xcd\x9d\x15\x3b\x89\x4c\x9b\xe8\xf9\xc5\x53\xa8\x2b\xf6\xbc\x75\x77\x35\x5a\xd0\x92\xa1\x6a\x48\x9c\xc2\x67\xbf\x78\xc1\xe5\x90\xf8\xf2\x49\xb9\xa6\x10\x9d\xe9\xda\xfb\xd8\xb8\x3b\xf7\xfb\xa3\xc1\xd6\x34\xdf\xac\x02\x7a\xa6\x8f\xef\xef\x3f\xec\x3a\xd3\xad\xf7\xfb\x0f\xfa\x88\x87\xad\x7e\x8e\xf6\xb0\x5f\x8d\x36\x1f\x5b\xf3\xc1\x8f\xcd\xcc\x31\x98\x97\x48\x73\xa2\xdd\x91\xae\x0d\xb5\xfc\x2a\x2f\xf8\xf7\xee\xca\xeb\x6c\x3c\x35\xed\xac\xd7\x3f\xa9\x70\x6b\xd3\x8c\x6f\xe6\xfa\x7d\x6b\xcd\x18\x6a\x21\xe5\x21\xb2\x06\xfa\x9b\xc2\x1a\x3f\x5f\x58\xb9\x48\x67\xe1\x51\x88\x76\x8b\x01\xd2\xa5\x16\xed\xfe\xab\x3d\xc5\x87\xf2\x6b\x84\x02\x45\x2a\x7d\xeb\x36\x18\xf9\x43\x6f\x35\xda\x98\xcb\x76\xfb\x4e\x5f\x6f\x25\xd6\xdb\x85\xb7\xa2\xbf\xf9\x23\xcd\xa3\xc8\x51\x0e\x6e\x0c\xcc\xdb\x4f\x61\x9b\xb0\x12\xc6\xf5\xb1\x71\x9c\x74\x04\x15\xe2\xb5\xff\xfe\x77\xaa\xff\xf7\xbf\x53\x0d\xd3\xf9\xb7\x3e\xa9\xb3\x5e\x7b\xab\xcd\xd3\x70\xb4\x76\xfd\xd1\x66\xd4\x99\x8e\x4e\x5e\xef\xa7\xb5\x37\xed\x47\x79\x07\x6f\xda\xa7\x33\xb9\x9b\x8f\x7a\xfa\xde\xe5\x13\xb2\x19\xae\xe6\xfb\x84\xef\xed\x13\x8f\x5e\xdf\x5b\x79\x7e\xd7\xb3\x57\xab\xf9\xea\xa7\xdf\x7f\xd0\x84\x3c\x31\xec\xac\xfd\x1f\x37\x89\x77\xcf\xf3\x13\x23\xee\x7e\xed\xf5\x12\x7f\xc1\x00\x7f\xfa\x39\x56\x43\x5f\x44\x9a\x68\xfc\x7c\xe1\xb6\xd6\x23\xe0\x4f\x61\x46\x3d\xb8\x8a\x89\x29\xff\xf1\xff\xbc\x77\xde\xbd\x69\x72\xb5\xf5\x37\xa3\x99\x97\x1c\x7a\xd3\x85\xb7\x5a\x27\xbd\xf5\x2c\xc9\x15\xb5\x78\xc2\x6d\xf5\xc7\x1a\x62\x89\xe6\xa3\xf5\x5f\x46\xfe\x5f\xde\x51\x16\xa9\xb9\xef\xac\xfc\x91\x3f\xe0\x5a\x9b\x91\x7f\xfc\x0b\x17\x45\x2a\x45\x8f\xc2\xb7\x87\x13\xa9\x1c\xed\x23\xb6\xb7\xbe\xdd\x4b\xac\x7a\xb4\x9f\x8b\x0b\xfa\xed\xfe\x2e\x36\x8b\xf6\xfb\x6d\xc1\xe8\x6b\xdd\x7f\xad\x35\xd4\x0d\x9a\xda\x2e\xa6\x9d\x91\x8f\x63\xc2\xa7\x72\xc5\x5b\xfe\x3f\xff\x11\x3d\x03\xbf\xfe\xee\x07\x3b\xb8\x3b\x9d\xfb\x5e\x73\x73\x9c\x7a\x3f\xad\xf5\xff\xa3\xdb\x56\xff\x36\x1c\x6f\x44\x63\x81\xf2\x7f\x89\x69\x1e\x02\x89\xf0\x38\xf5\x02\xf2\x12\xd7\x41\xa0\xfb\x78\xd5\x5f\x66\x9d\xc5\x4f\xe1\x10\xa2\x94\x49\x3f\x8d\x9e\x5b\xfd\xbe\x4f\x3e\xf0\xc2\xeb\xf5\x74\xf8\xde\xbe\x89\x4f\x00\x4b\x1e\xbb\xc2\xfc\xce\xcc\x23\xae\x2f\xf2\xd1\x89\xa0\xc9\x6f\xfa\xb1\xe6\xd7\xce\xa7\x07\x0f\x2e\x1d\x31\xd3\xd4\x28\x01\x92\xff\xeb\x7f\xfd\xee\x27\xfe\x57\x42\xd1\x7e\x4d\x74\x12\xab\xed\x54\xbf\x71\xbd\xe9\xf8\x5d\xef\x17\xfd\x2c\xa9\xeb\x85\x2b\x41\x15\x1f\xb7\x53\xef\x27\xfd\x12\x7d\xa5\x74\xa7\x56\x62\xbe\xd0\x4f\xa3\xe4\x9f\x86\x7e\x81\x9c\xa0\x3c\xf1\xe3\xd6\xd7\x7f\xd1\xee\x0b\x06\xa9\x3f\x79\xbc\xd6\x8c\x37\xf7\xf7\xcb\x98\x09\x20\xae\xe9\xee\x54\xcd\x17\xc7\xf8\x07\xeb\xd2\x50\x42\xa1\xe1\x7f\xd1\x9d\xfc\xb2\x98\x6e\x07\x23\x7f\xfd\xcb\xdc\x57\x97\xc6\xac\x7b\x0a\xc7\x1d\x2c\xa9\xee\x20\x58\x29\xfd\xe3\xd7\x44\x32\x99\x70\x35\x39\x49\x74\xfc\x44\x67\xf3\x17\x7a\x45\xc7\xef\x25\x46\x1b\x4d\xd9\x12\xfe\x3c\x3a\x5f\xd1\xcf\xff\x2d\xf5\x37\xb0\x41\xff\xe7\xc7\xe0\xf3\x17\xab\x79\xd7\x5b\xaf\x7f\xf1\xfc\xdd\x2f\xf7\xf5\xb2\xfd\x77\xfb\xfe\x99\x76\xcd\xef\x3f\x2c\x56\xf3\xde\xd6\xb0\x93\xff\x6e\xa8\xd2\x4f\xc4\x50\x58\x89\xdf\x7f\xf8\xed\xb6\xd9\xfc\x5b\xa2\xe5\x4f\xfc\xf9\x1e\x63\x4b\xfc\xfe\x43\xe2\x8a\x66\xf4\xe7\xc4\x5f\x79\xa2\x2f\x2d\xfa\x76\x3a\x35\x0b\x4e\x53\x3c\x1f\xf9\x89\x2f\xe1\xfd\xa0\x7f\xff\x44\x0c\x88\x95\x78\x3f\xf2\x50\x69\x36\xbd\xb5\xbe\x48\xbe\x24\x58\x5b\x78\x99\xb9\xa2\x96\x17\x99\xab\x64\x32\xf1\xe8\xcd\xe6\x3b\x2f\xf1\x2f\xa0\x30\x1d\x7f\x03\x32\xb2\x19\x7a\x09\x7e\xe3\x68\x93\xd8\x8f\xa6\xd3\xc4\xbb\x97\x58\x79\x9d\x5e\xcf\xeb\x25\xa6\x9d\x8d\xb7\xfa\x25\x64\x8f\xa8\xe6\x6f\x23\x9e\xcd\xb0\xaf\x1f\x7f\x4e\xbc\xaf\xbc\xce\x24\xc2\x49\x61\xc8\x3f\x9b\xa1\x5f\x7d\x49\xbc\x1f\x7f\x35\x62\x8a\x29\x32\xfd\x5d\x98\x2b\x54\xd2\xb3\xf5\x6b\xe4\x74\xcc\xfd\x9d\xb7\xda\xac\x13\x1d\x4d\x23\xd0\x7c\x9d\xd8\xcc\x13\x50\x94\xd2\x31\xa1\x8a\xff\x31\xeb\xac\x06\x23\xff\xaf\x89\xdf\x7e\xfb\x31\xb7\x38\xfc\x68\x25\x7e\x4c\xa7\x16\x87\x1f\xff\xf6\xb7\xff\x48\xfc\xef\xf0\x69\x6e\x71\x48\xe8\xf2\x5f\xff\x03\xad\xde\xe7\xab\x9e\xb7\xfa\x6b\xe2\xb7\x1f\xd3\x68\x94\xd1\x6d\xa8\x89\x79\x94\x5e\x1c\xac\x44\x26\x6c\xf2\xd9\x8b\xac\xd8\xfc\x5c\x7e\x6d\x64\x35\x4c\x77\xdd\xf9\x74\x4e\x03\x58\x79\xbd\x1f\xad\x48\x05\xf4\xc0\x8f\x57\x5e\xef\x43\x5b\x22\x0f\x11\x02\xb1\x99\xab\xf5\xfa\x59\xcf\x90\xd9\x52\xa3\x81\x3f\x5f\x79\xae\x69\x16\xa1\x11\x67\x4f\x2e\x91\x8b\x0f\x55\x22\x0c\xf6\x3f\xc2\xe3\xf6\x2f\x71\x2a\x4e\x6f\x0e\xa9\x38\xfd\x0c\x68\x44\x97\xc7\x87\x7d\xad\x37\x69\x73\xbb\xa0\xfb\x6f\xbd\xe8\x74\xbd\xc4\xda\x5b\x74\x56\x9d\x8d\xd7\x33\x0b\xbd\x1b\x75\x12\xff\xf1\x71\x45\x23\xa7\xfd\xc2\xdb\x7f\x4b\xfd\xed\xe7\xcb\xda\x81\x6f\x1e\x9b\x3f\xb4\xe9\x51\xd9\x7c\xd3\xcf\xe1\xd7\x5d\x7d\x49\xe8\xd1\x06\xd5\xa2\x0f\xc2\x13\xff\xdb\x48\x6f\x19\x68\x56\x43\x95\x15\xd4\xd7\x91\x89\x8a\x92\x08\xdd\xeb\xcf\x34\x6f\xa2\x17\xdd\x0f\x56\xe2\xdd\xeb\x76\xb6\x6b\x8f\x8e\x74\x67\xcd\x6b\xd7\xfb\x05\x3b\x84\x17\xea\x7c\x41\xff\xf5\x5f\xf9\x38\x46\xe7\x23\xf1\x97\x44\xfa\xd2\x87\xf3\x04\xc5\xbe\x31\x32\x82\x1f\x2f\x1c\x68\x53\xf7\xfc\xc6\x73\xfd\x9e\x96\x6e\x3b\xd1\x33\x9c\x18\x6e\x36\x8b\xbf\x26\x93\xe3\xf5\xc2\x5b\xf5\x7f\xe9\xce\x67\x49\x3a\xf1\x7f\xd1\x9f\xff\x97\xdd\xfa\x2f\xfd\xf9\x8a\xf7\x7c\xb0\xdf\x47\xd4\x4f\x73\xb3\xfa\x69\xbd\x59\x59\xfc\xf3\x3b\x69\xa8\xdf\xf3\x0e\xbc\x21\xe8\xcf\x7f\xe3\xe6\xfc\x3b\xb2\x25\x42\xda\xf5\x63\x22\x71\xe9\x33\x4d\x85\x50\xdd\xfd\x91\x78\x25\xf4\x15\xa8\xc9\x96\x6a\x36\xa3\x9f\x7d\xf1\x08\x6b\x79\xc0\x33\x42\xd5\x71\xea\x5d\xba\xe3\xb9\xe4\xd2\xb9\x0d\x1e\x19\x45\x63\xe4\x8a\x8f\x4f\x09\xef\x0b\x66\x71\xce\xc9\x30\x5a\xfc\x3d\xec\x8e\xff\xb2\xcc\xb6\x36\x8f\xfe\x1f\x4c\x5d\xe2\x4b\x50\xf2\x0b\x4a\x82\x9a\x1f\x2a\x04\x4d\x82\xe1\x27\xfe\x3d\x91\x4a\xfc\xbf\xec\xfd\x7b\x77\x1b\x37\xb2\x28\x8a\x7f\x15\x58\xdb\xc7\x24\x63\x3e\x2c\x27\x93\xc9\xc8\xe3\x38\x19\xc7\xd9\xe3\x99\x71\xec\x65\x39\x93\xdf\xf9\x89\xda\x16\xc4\x06\xc9\xb6\x9a\xdd\x9c\x46\x53\xb2\x26\xd6\xfd\xec\x77\xa1\xaa\x00\x14\xd0\x68\x92\xb2\x9d\xec\xbd\xee\x39\xf9\x23\x16\xd1\x78\x16\x0a\x85\xaa\x42\x3d\x8e\xe2\x0a\x6e\x1a\x73\x59\x14\xe7\x72\x76\x61\xe6\x81\xbc\x9f\x2b\x79\xc4\xc4\x28\x85\xec\x1e\x36\xbe\x7f\x1f\x8f\xca\x7a\x5d\x5c\xb3\x0e\xe6\x79\xad\x1b\x46\x41\xdc\x17\x7e\x79\x02\x39\x11\xfa\xba\x6c\xe4\x7b\xf1\xab\xab\x72\x24\x4e\x7e\x5d\xd7\xd5\xfa\x08\x4f\xce\xcd\xe9\x8d\xbf\xff\x42\x4a\xe4\x7b\x65\xc4\x65\x1b\xfe\xb9\x06\x9e\x30\x45\x98\x68\x95\x26\xb6\x26\x52\x64\x6c\x74\x02\x95\xb9\xfa\x92\x8d\x66\x66\x6c\x78\x59\x5b\x3b\xd2\x40\x9a\x2a\x97\x44\x6d\x6c\x95\x13\xd3\x26\xec\x8e\xd1\x46\x71\xc7\xaa\xb9\x83\x8e\xba\xf8\x80\xde\x74\x5a\xf6\x1e\x85\x35\xfd\xd7\xe9\x01\xf0\x52\xfe\x34\xc3\x74\xef\x8b\xe9\xc1\x11\x72\x59\xf1\xbd\x36\x80\x8f\x8f\xa6\x07\xee\xcc\x07\x7d\xdf\x6c\xd1\x9b\xba\xc7\x41\x2c\x9e\x4c\x48\x6b\x90\xda\xe9\x60\xa3\x6f\x5a\x5b\xf8\x36\x86\xaa\x6e\x6d\xd4\xdb\x18\xaa\xfa\xe4\x6d\x1b\xae\x06\x66\x6f\xb7\x81\x75\x5f\xa0\x6e\x01\xe9\xdb\x2d\x30\x7d\xbb\x1b\xa8\x09\xfd\xb3\x23\x2b\x21\x40\x1e\xb6\x65\x26\x0f\x89\x87\xf6\xf0\x22\x18\x1e\x7a\x38\x78\x18\x3c\xb4\x40\x30\xd7\x13\x75\x09\xa2\xa4\x83\x61\x2f\xba\xad\x77\x81\x66\x17\x58\x1e\x6e\x85\xcb\xc3\x4e\xc0\xd0\x7d\x6d\x88\x45\x51\x54\x57\x42\xad\xd6\xcd\x35\x09\xbf\x79\x29\x40\x43\x33\x93\x46\x80\xb0\x97\xf3\xda\x09\xe6\x8e\xef\x46\xae\x3b\xbb\x2e\xe5\x2a\x9f\xc9\xa2\xb8\x0e\xaf\x6c\x9a\xfb\xbd\x7b\xe2\x8e\x25\xad\xd2\x0c\xf6\xcc\x8c\x15\x93\x6c\x33\x95\x5f\x96\x8a\x04\x94\x5c\x8b\x73\x95\x97\x0b\xba\x6e\xf2\x79\xae\x32\x71\xae\xe6\x55\x6d\xf8\x2c\xa4\x94\xc0\x2b\x90\x36\x99\x51\xc4\x3b\x9e\x92\xb6\x2f\x05\x04\xc2\x68\xe4\xe5\xb6\x10\xfe\x00\xe6\x69\x09\xd0\x74\x57\x23\x15\x71\xbd\x20\xbb\xbd\xed\x6c\x4c\x3d\xf1\x2b\x6b\xe9\x2f\x75\xbe\x6b\xbd\x9b\x1e\xdf\x0b\x27\x5c\x29\x3d\x93\x6b\xf5\x5a\x2d\x80\xb4\x4e\xfa\x27\x27\xd3\xe9\xe9\xf8\x3f\xbe\xb8\xfb\xed\x9f\xef\xff\x3f\x8f\x3f\xfc\xd7\x51\x7f\x30\x9c\x1e\xf4\xce\xa6\x53\x7d\x3a\x98\x2c\x1e\x61\xab\x52\x36\xf9\xa5\x7a\x06\x6d\xfd\xe3\x87\xb9\xa7\x01\xed\x9c\xb6\x1d\x54\xe9\x4f\x8f\x8f\xc7\x38\xcc\x23\x3e\xa6\x78\x2c\xfa\xfe\x0d\x43\x37\x35\xa1\xa8\x95\x02\xf9\x10\x4f\x82\x9f\x58\xf9\xc8\x6c\xd2\xb8\x56\xeb\x42\xce\x54\x9f\xad\x63\x68\x70\x79\x3a\xbd\x7b\x08\x5c\xe2\xcd\xc0\xa9\x72\xfe\x22\x35\x4a\xe1\xc0\x58\x3c\x36\x3c\xc7\x7f\xbc\x7d\xfb\xea\xe7\xd7\xcf\xde\xbe\x0d\x98\x24\xfb\xb4\xe6\x0a\x82\x96\x7d\xd0\x4d\x27\xb9\x0c\x01\x18\x3c\x26\xe5\x6a\x0f\xea\xd8\x43\x05\x5f\xf0\x59\x91\x89\xbe\x54\x9e\xeb\x57\x28\x69\xab\x2c\x90\x19\xe8\x33\x69\x8d\x12\x0d\x6b\x55\x66\xaa\x86\x07\x96\xae\x8f\xa4\x85\x6f\x7f\xf6\x5c\x4a\xf0\x0d\xde\xf9\x96\x0a\x1f\xef\xe9\x00\xc1\xef\xa1\x27\x6e\xaf\xfd\xb0\xb6\x8a\x2d\x6a\x2f\xf7\x42\x5d\xa7\x87\xa5\xbf\x52\x2b\xf5\x5a\x27\xe2\x53\xcc\x04\x06\xad\x35\x43\xb1\x2b\x78\xe4\xac\x79\xec\x64\xda\x2d\x50\x33\x8c\x3f\xfb\x4e\xe7\x24\x04\xf2\x9f\x42\x7c\x21\xfe\x53\x35\xa2\xaa\x85\x56\xc8\x6e\x9b\xf9\xd8\x27\x77\x14\xf2\x2d\x07\x4a\x64\x1a\x54\xdc\xe2\x71\x88\x24\x5e\x51\x4e\xf4\x1a\xab\xc1\xe3\x3d\x57\x66\x98\xdf\xa4\xe6\x21\x79\x25\xc6\x28\xd0\xe7\xf4\x0c\x3f\xbc\x50\x4d\x42\xd1\x00\xfc\xa0\x3b\x71\x8e\xfa\x78\x68\xa2\x7a\x0d\x28\xdd\x0f\x55\xd9\x6b\x44\x56\x09\x59\x5e\x37\x4b\x43\xe8\xf2\xb9\x57\x6e\x90\x7e\xa8\x11\xb3\xa5\x2c\x17\x8e\xba\x11\x03\x55\xe1\xc3\xaf\xdd\xbd\x27\x6e\xe3\xf1\xcb\x51\x80\xb5\x40\x11\xf1\xc3\xbd\x7b\xad\xb9\x20\x0b\x8b\x37\x28\x9b\x2e\xc3\xbf\x52\x5d\x59\x59\xce\x4a\xc3\xac\x63\x3b\x87\x0f\x1f\xdc\x24\x48\x51\x05\xf4\x07\x26\xc2\x2e\x3c\xd6\x19\x47\xc0\x71\xa4\x76\x83\x45\x07\xaa\x00\xdc\x17\xd3\x86\xdd\x5f\x7e\x92\xb9\x86\x2b\x05\x91\x8a\x46\xf0\x8a\x5d\x56\x16\x9e\x68\x6c\xfa\x03\xee\x97\x69\x4c\x5a\x53\x0f\x25\xd8\x2b\x6c\x9c\x6b\xba\x23\x65\x99\x99\x9b\x07\xf6\x8f\x9a\xe2\xc5\x34\xe6\xa0\xb1\x53\x32\x97\x9f\x1f\xc3\xfc\x82\xcd\x08\xc1\x0d\x77\x9f\x12\xb2\x56\x62\x51\x19\x64\x68\x2a\x51\xa3\x02\x0c\x2e\x62\x14\x71\xf9\x8a\xe9\xeb\x63\xc1\xc6\x71\xc3\x04\x6a\x2d\x53\x6f\x20\x32\x55\xa8\x46\xb5\x71\x11\xce\x69\x1b\x2b\x1c\xcc\x1e\xa1\x2e\xce\x51\xaf\xdc\xdd\xb8\xa6\x7b\x38\x64\xc7\x40\xa1\x70\x2b\xc5\x59\x91\x97\x17\x67\xa6\x5a\x53\x6f\x42\x88\xc4\x84\xd0\xa2\x63\xed\x28\x44\xc4\x18\xe1\xcc\x83\x3a\x63\x2c\xf5\xef\x95\x61\x9f\x88\x28\x03\xb6\x2a\xd7\x50\xab\x66\x7b\xab\xa1\x5b\xf3\x80\x31\x5f\xf1\x91\x08\xd0\xce\xd2\xe6\x00\x97\xa1\x30\x38\x25\x58\xed\xde\x3d\xa2\x91\xb2\x69\xe4\x6c\xe9\xcc\x6f\xc4\xa7\x28\x77\x7b\xa8\xdb\x7d\x4d\x2c\x93\x21\x19\x66\x03\x54\x36\x16\x2f\x72\xad\x81\x81\xe2\xdb\x33\x3d\x30\x9f\x8f\x60\x73\xa6\x07\xe3\x5e\xa4\xfe\x4d\xd8\x66\xd8\xa5\x47\x96\x19\x01\x89\x35\x97\x3b\x50\x70\x03\x94\xfd\xee\xf5\xb7\x41\x07\xd6\x80\x26\x7c\x42\x75\x9f\x87\x22\xaa\x6e\x15\x22\xb6\xbb\xfd\x38\x02\xb4\x13\xc1\x05\x61\x09\xfc\x32\x82\x7d\x78\x63\x80\xd1\x0b\x1a\x9b\x24\xfb\xfb\xf0\x81\xa3\xc4\x5b\x3c\x3e\xc4\x06\xbe\x51\xef\x9b\xf8\x1e\xc7\x1a\x79\x96\x2e\xef\xe6\x0d\x00\xc7\x2c\x7b\xc9\x58\x00\xab\x60\xf1\x5c\x80\x9e\x55\x6b\x20\x61\xae\x0e\x14\xf0\x1a\x3b\xf8\x88\x85\x2a\x55\x2d\x1b\xf5\x9c\xf7\xe2\x0b\x43\x84\x76\x0c\xb6\xc3\xe0\x24\x10\xec\xcf\x47\x81\xfc\x0a\x3d\xe0\x7c\x53\x77\x04\x03\x96\x1f\xbe\xdf\xf1\x14\xdd\x55\x0c\x37\xc5\x60\x88\xab\xf6\xe7\x39\x39\xcb\xe9\xc1\x18\x98\x76\x64\x5c\xfb\x76\xfc\xd6\x45\x63\x6d\x92\xfc\x91\x08\xb9\x95\x63\xd5\xf8\xdd\xf2\x5a\x32\xf3\xe9\xfb\xa6\x51\xa5\x01\xe9\x91\xd8\x10\x65\x12\x57\x79\xb3\x14\x33\xb9\x31\xc5\x63\xf1\xa2\xd2\x8d\xa0\x17\x66\x2d\xb2\x3c\x33\xd7\x4b\xbe\x5a\x17\x6a\xa5\xca\x86\xba\x09\x26\xae\x81\x07\x19\x0a\x5d\x61\x7f\x2b\x79\x6d\x25\x96\xdc\x88\x3c\x88\x56\x86\x02\x54\x73\x61\x46\xaf\x15\x9e\x13\x01\x04\xbb\x9b\x81\x32\x72\x6e\x37\xf7\xe4\xd7\x8b\x9a\xa9\x9a\x54\x83\xb2\x14\x0a\x27\x2b\xf2\xb2\xc8\x4b\xe5\x07\xb0\x2c\xd7\x43\x34\xe3\x7a\x53\x71\xb6\x8b\x8a\xfa\xfe\x14\x04\xe7\x95\xf1\x8b\x01\x3d\x0f\xf0\x31\x71\x83\xe0\x8b\x60\x55\xda\x76\x4d\xf5\xb7\xe3\x97\x3f\xf5\x07\x29\x0b\x39\xab\x0a\x31\xf5\x03\xe5\x45\xf2\xf2\xe0\xf7\x86\x69\x39\x84\x76\xa8\x71\xf2\x98\xd6\x65\xea\xd6\x81\x3b\xaf\xe1\xb3\x16\x66\x92\xa2\x56\xeb\x5a\x69\x55\x36\x12\x20\x54\x21\x63\x68\x00\x6d\xf1\xe9\x47\xa7\x0e\x34\x2c\x83\xa1\xfa\x1a\x5f\x22\x80\x55\x84\x2a\x3f\x6b\x35\xdf\x14\xb0\x48\xdc\x0f\xa4\x62\x9a\x6f\x4b\xc0\x10\x3f\x24\x18\xf1\xcd\xb1\x50\xe3\x3b\x42\x50\x75\x6f\xce\x09\x40\x7a\x7e\x22\xda\x91\x4b\xce\xfc\x21\xc3\x61\x35\x4a\xfe\xe2\x27\x19\xd6\xea\x94\xf8\x3b\xbc\x87\xb4\x63\x47\x1d\x49\x49\x3f\xe4\x04\x2d\x5a\xaa\xb8\x8e\x23\x6e\x1a\xa5\xe5\x11\xa4\x47\x46\x04\x08\x55\xe1\x9d\x10\x3d\x86\x2a\x21\x4c\xb1\xac\x9f\xba\x9e\xb6\x72\x14\xb6\x92\xb9\xc2\xad\xc4\x25\x9e\x10\x57\x61\x2b\xc3\xc7\xa3\x16\x9b\x5b\xad\x1b\x73\xd1\xc1\xd7\x27\xde\x72\xf5\xd7\x1b\x77\xad\x0d\xfd\x56\x79\x25\x0d\x71\x0a\x08\x25\xc3\x2c\x84\x82\xa2\xc5\x6a\xd0\xfb\xb7\x68\xeb\x90\xed\x33\x0c\x43\xcc\xbb\xc5\x9c\xc0\x48\x8c\x5d\xf6\x27\xde\xf2\xf7\x48\x4c\x0f\x6c\x97\xd3\x03\xba\xae\xb4\x6a\x98\xd1\xa5\x56\x4d\xea\x42\xe2\xf7\x14\x30\xfe\xad\xe9\x59\x16\xdc\x5b\x65\xef\xbe\xc2\xb6\x13\x25\x76\x9d\x5a\xe2\x61\x0d\xef\xc2\x8b\x3e\xb4\x2b\x67\x35\x3f\x7c\x10\x77\x3c\x35\x8b\xe6\x67\x86\x5e\x4a\x8d\xe2\x91\xb9\x1f\x39\x7d\x3a\xa6\x89\x06\xf4\xc9\xc1\x05\x8d\x11\xe6\xec\x7e\x82\xdb\xc3\xf2\x8c\xee\xa2\x51\xd9\xd0\x5d\x1d\x9c\xea\x04\xf3\xf5\x73\x48\x53\x4b\xd2\x04\x01\x3f\xc6\x67\xc3\xc5\xb7\x50\x19\xeb\x0f\x99\x15\xfb\x93\x17\xa9\x3d\x65\x42\x10\xa4\x17\x01\x26\x2c\x54\xd3\x67\x33\x0a\xc4\x6f\xb6\xab\x81\x02\xf4\x74\x10\xf2\xb5\x21\x4f\xdb\xe2\x3a\xd1\x0e\xc9\x08\xaa\x8c\xcd\xc5\x21\xb9\xb9\x08\x9b\x54\xc2\x8a\xa4\x83\x3d\x4d\x58\x7f\x04\x72\xb5\xac\x15\x3e\x7b\x86\x25\xa4\xe3\x32\x0d\x2e\xd4\xf5\xbc\x96\x2b\x15\x28\x99\x43\x5b\x8e\x14\xb9\x2b\xd5\x15\xe3\xa0\x93\x73\x74\x46\x9f\x4e\x85\x47\xc6\x82\x6f\x88\x9a\xbd\xf4\xcf\x76\x53\xa7\x66\x3d\x12\x87\xb0\x51\xb3\x65\x5e\x64\xb5\x2a\x2d\x35\xb9\x21\x48\xca\xe6\xb5\x5a\x3c\x7b\xbf\x16\x8f\xc5\xe4\xbb\xfe\xc9\x74\x7a\x35\x3a\xbd\x3f\x98\x84\x06\x14\x59\x6e\x7a\x96\x05\x72\x1a\xe6\xae\xf9\x6e\xa5\xb2\x5c\x0e\xc5\x77\x74\xe9\x69\xf7\x16\x69\x3a\x65\x4d\x6e\xad\x5d\x8c\xda\x32\x69\x42\xef\x50\x30\xce\x7c\xcb\x40\xcd\x28\x5b\xc2\xc0\x56\xed\xe3\xbf\x36\xaa\x4e\x7f\x31\xab\x6f\x29\x08\xb7\x29\x0f\xf7\xd1\x66\xee\x50\x4b\x7a\xa5\xa1\x21\x1f\x7f\x57\xd7\x62\x95\x2f\x96\x0d\x38\x56\xc8\xbc\x14\x52\x6c\xca\xfc\x5f\x1b\x25\xf4\x66\x3e\xcf\xdf\x9b\xab\x7f\x26\x81\xbf\x55\xe2\xcc\xe0\xd1\x99\x58\x4b\x18\xfb\xfc\xda\x30\xbe\xa4\xb1\xdf\xac\x8b\x7c\x26\x1b\x4f\x57\x82\xa5\x5b\xec\x36\xed\xd9\x05\x26\x9b\x17\xb2\x99\x2d\x71\x3e\xe3\x95\xf9\xbb\x6f\xf1\x67\xd0\x82\xb8\xad\xfd\xc4\xfe\x75\x72\x78\x2a\x8e\x44\x6f\x83\x46\x50\xbd\xbd\xb5\xa0\x16\xec\xa0\xac\xdc\x14\xea\x1f\xb9\x6e\xfa\x3b\xae\x4f\x3c\x97\x47\xd0\x81\xbd\x3a\x07\x6d\x6e\x29\xb0\xd1\xe3\xcf\x6f\x7e\xe0\xb1\xcc\x32\x7e\x20\x35\x37\xd0\x63\x07\x99\xb5\x20\x55\x42\xb7\x42\x55\x72\x4e\x32\xad\x3f\x8d\x8e\x41\x97\x06\x75\xa1\x1a\x22\x80\x9c\x04\x3b\x22\xc2\x6c\x10\x3c\x21\xc6\x49\x1a\x4a\x8d\x9a\x9a\x8e\x49\xe2\xb3\x72\x35\x6f\xcd\x36\x62\xb1\xac\xdb\x0f\x9f\x83\xf5\x04\xaa\x37\xc5\xb6\x39\x04\xd5\x52\xf3\xb0\xa6\x8d\x65\x26\x6a\xb5\xc8\xb5\xb9\x2f\x6b\x60\x50\xea\x4d\x29\xac\xba\xb2\x73\x66\x32\xcb\x62\xe8\x50\xd1\xf6\x6b\x80\x59\x23\x76\x23\x42\x44\x99\x2d\x23\xc1\x6d\x10\x19\xc1\xdf\xa2\x6b\x25\xf2\x80\x77\xb5\x83\x84\x08\x0c\x19\x3f\x9d\x13\xbe\x1d\x23\xbc\xc3\x42\x84\xdb\x88\xa4\x6f\xa1\xf8\x78\xb0\x0e\xc7\xce\x74\x83\xde\xaa\xe3\xf2\x8e\x2e\xc7\xcc\xa2\x23\xec\xd0\x5e\x6e\xed\x2e\xfd\x97\xae\x4e\x6d\x8d\x47\xa9\x99\xb2\x8e\xdb\x5a\x12\x8e\xcf\x48\x39\xf1\xf9\xf1\x86\x9e\x29\x23\x4d\x25\x9b\x0a\x43\xaa\xd6\x0e\x84\x9b\xef\x1a\x3d\x69\x8f\x63\xdf\x48\x5d\x1d\x7a\x25\xbd\x01\xb7\x1e\xb2\xcf\x89\x74\x86\x11\x59\x09\xb4\x86\x17\xea\x9a\xf1\x02\x70\xc1\x7f\xf0\xf7\xfb\x54\xdf\x9f\x04\xdc\x57\xeb\x92\xdf\x9f\x07\xdb\x7a\xa7\xd3\x4c\xdd\x6c\xc6\x8d\xd2\x0d\xfa\x14\x3e\x81\x3b\x60\x3f\x0e\xe1\xc8\x9f\xbe\x3d\x98\xa6\xbb\x87\xb7\x63\x9b\x0c\x1d\x60\xc0\x72\x5c\x9f\x01\x53\x92\x8b\x7a\xed\x38\x27\x5f\x97\xb3\x4c\x7f\xb7\xa5\xb7\x66\x98\x82\x96\x08\x0c\xfc\xbd\x83\x5d\xf2\x9c\x6a\xeb\xea\xee\x7d\x97\xfe\xd8\xc5\x32\x91\x5d\x78\x82\xf7\x69\xe9\x5b\xff\x3b\x18\x29\xbb\x61\x6d\xee\xc5\x6f\xe3\x20\x38\xff\xbe\xf6\xbd\x7b\xbe\xe9\xc9\xe1\x69\xcc\x22\xd0\xca\x79\x95\x50\xd3\x9a\xac\xde\x2b\x2b\xf3\x97\xb7\x30\xf9\x64\xcb\xf2\xbf\xc8\x4c\xb8\x3d\x43\xb6\x06\x68\x03\x1c\x9b\xae\xf7\x05\xb6\xa7\x1e\x33\x0c\x11\x19\xa1\x25\x8b\x9d\xf1\x3e\x9c\x1a\x68\x4e\x7e\x07\x0d\x78\x88\x5a\x76\x44\x4b\x9d\x2d\x99\x04\x00\x1c\x59\x75\x32\xd3\x61\xe3\x8b\x02\xaa\xa4\x07\xbf\x33\x93\x89\x9b\xb3\x8b\xc9\xc4\x5a\xc8\x64\x0e\x77\x69\x89\x52\x73\xb0\xb3\xf8\x48\xee\x74\x3b\x53\x91\xe0\x54\x03\xfa\xd3\xc5\xa7\xfe\xbe\xcc\xc7\xdd\xc3\xdf\x80\xfd\xb8\x7b\xf8\x9b\x30\x20\x77\x0f\x3f\x13\x0b\x22\xd1\x4c\x4a\xf8\xb3\x9b\x67\x9f\x93\x23\x01\x53\x75\x6a\x31\xe0\x6d\xbd\xb5\x56\xcc\x89\xb8\x61\xf7\x9c\x67\xbb\x13\x3b\xf3\x88\x8d\x09\x70\x2e\xcd\xc4\xc0\x8d\x1e\xdd\xcc\x96\x81\xa9\xd5\xdc\x5f\xde\xd3\xe9\x5d\x7f\x63\x2f\x1c\x9f\x30\xcf\xcb\xcc\x39\x4d\x66\x76\x40\x8e\xbf\xe9\x1a\xfd\x4b\x59\x0c\x3d\x2d\x66\x16\xd7\x5e\xa9\x1e\x44\xea\x89\x19\x9f\x4b\x59\x38\x43\x2e\x37\xd1\x21\xf3\x70\x87\xab\x8b\x9e\xd9\x43\x65\xab\xa5\x34\xf1\xe8\x01\xb2\xb8\x8f\x64\x7e\x30\xf5\xca\xc0\xcf\x76\x1d\x79\xb0\xb0\x5b\x09\xbd\x9e\xa6\x64\x43\x09\x73\x45\x3c\x99\x1e\x58\x25\xa8\xb3\x24\x3c\x68\xdd\x5a\x6e\xfe\xb0\x7c\x8b\xce\x29\x3f\xb9\x4b\x59\x44\x3e\x40\xaf\x11\x9c\xa8\x4d\xb5\x53\x03\x02\x2d\x85\x2c\xf3\x15\x3e\xf2\x98\x19\x71\x9b\x7a\xc4\x14\xd4\xa3\xaa\x40\xbc\xf5\xa5\x7d\x12\x05\xf1\x15\x2a\x86\x3b\x7f\x6f\x89\x9f\x5a\x08\x0f\x39\x62\x75\xe2\xd3\x46\xf1\xbe\x59\x18\x18\xde\xc1\x1d\x6f\x46\x44\x9b\xce\x86\x04\x4d\xb5\xab\xdb\xe6\x8a\x91\xa5\xbf\x35\x0f\xdf\xc5\x68\x86\x51\x1a\x80\xc5\xe0\xb1\xa9\xee\xdd\xe3\xe7\xb4\xc5\xe0\xef\xc3\xd1\x72\xf6\x1e\x18\x88\xc9\x44\x7c\x1f\x6c\xa5\x59\xb0\xdd\x29\xb4\x13\x73\xa2\x36\x68\x5a\x83\x85\xf1\x0f\x76\x4f\x51\xd1\x40\xb6\x76\xec\x6a\x02\x6d\x08\xf0\x4a\x77\x1e\x3b\xbb\x46\x78\x36\xa0\xba\x2d\x5f\x51\x6c\xd7\x73\xa8\x36\x02\xee\x8f\x19\x3a\xb7\x11\x2a\xae\x4c\x13\x19\x07\x68\xd0\xee\x79\xdf\x4e\xbb\xfb\x6b\x4d\x1e\xc1\x1b\x98\x84\x85\x38\x11\x9a\x8a\xd9\xb3\x10\xa8\x7e\xf8\xbb\x1a\x80\xaf\xdb\x52\xe7\x4e\x08\xf0\xe8\x54\x07\x84\x4a\x5f\xe5\x86\x45\x07\x73\x7f\xd6\x00\xf4\x9f\x6c\xa9\x47\x2d\x12\xb8\x8d\x72\x27\xc0\xd2\xd1\x31\x6e\xcc\x67\xeb\x9d\xd8\x83\x76\x7f\xc1\xca\xa3\x73\x6b\x7b\xff\x2c\xc6\x3e\xbc\xb3\x9d\xf6\x3e\xbc\x72\x7f\x8b\x7d\x8f\xb7\xee\x2f\x80\x5b\x88\x03\xeb\x40\x30\x19\xcb\x79\xe3\xc3\xb1\xa9\x39\x18\x8a\xb7\x28\x9a\x3c\x78\x84\x7f\xfd\x19\x7a\xc0\x1f\x81\x4f\x8b\x69\x7f\xf2\x96\xc2\xdf\xf8\x50\x3c\x6f\xc3\x60\x4e\xf8\xc7\x16\x6b\x23\x0a\x70\x13\x7e\x19\x8a\x13\xd3\xe2\x74\x3c\xab\xca\x99\x6c\xfa\x66\xac\x41\xda\xfa\xa8\x5b\xfe\x4c\x59\xad\x74\xb2\xd1\x3b\x2c\x3e\x76\x6b\xfd\x3e\x86\xe3\xfe\xff\xc4\xbb\x37\x5c\x14\xdb\x9f\xbb\x23\xf6\x71\x9f\x47\xc6\xf0\x84\x7d\x8c\x8e\x2b\xfd\xcc\xf8\xb9\xde\x14\xd9\x7d\xd9\x39\x6e\xd7\xa3\x63\x52\x41\xf6\x63\x55\x36\x3f\xd2\xdb\xf1\xad\x14\x51\xbc\xe1\xfe\x6e\x01\xf3\xaa\x6c\x46\x73\x39\x53\x29\x35\x54\xfa\x63\x97\x1a\xaa\xdb\x31\xe0\xf7\x78\x9f\x4b\x4c\x84\x73\x00\x5b\xb4\x27\x9f\x2e\x83\x73\xd0\x7f\x36\x11\x3c\xb4\xe6\x61\x06\x45\x71\x18\xb4\xa6\xe6\x2e\xb2\x62\x87\x9b\xa2\xef\x68\xab\x9f\x22\x85\x88\x64\xe7\x5b\x06\xd6\x2c\xe4\xaf\xc8\x9d\xcc\x9c\x85\x33\xab\x20\xee\x8b\xc3\xd3\x81\xed\x2d\xf4\xeb\x62\x12\x4f\x10\x6f\x32\x75\x56\x3a\xe7\x11\x3f\xd0\x87\x94\x86\x6f\x4c\x87\x9c\xfa\x10\xe4\x54\x87\xe9\xa1\x92\x3d\x3c\x8c\x9f\x87\xfa\xc4\x0a\xf6\xbb\x0f\x5b\x1c\xf8\xee\xa3\xdc\xa5\x5e\xff\x67\xae\xae\xd6\x55\xdd\xdc\x9a\x7a\xf0\x86\xfb\x53\x8f\x4b\x6a\x95\x22\x1e\xc9\x6f\xff\x97\x76\xc4\xb4\x83\x03\xfe\xb3\xd0\x8e\xfd\x6e\xe6\xce\x23\xc3\xe7\x13\x1c\x19\x3c\x11\x21\x82\x7d\xee\x13\x41\x56\x3f\x0e\x75\x0c\xa7\xe7\x8b\x47\x2b\x3d\xf2\x9f\xf0\xa8\xec\xc6\xdb\xae\xa3\x72\x0c\x26\x5f\xb7\x3e\x28\xbe\x19\x0e\xd7\xe1\x29\x15\x1c\x13\x0d\x6d\xf6\x3a\x08\x56\x5f\xf1\xdf\x7e\x10\x2e\x23\x97\xa7\xcf\x7b\x10\x40\x61\xa0\x74\x91\x97\xcd\x28\xcb\xb5\x99\xda\xa8\x54\xef\x9b\x11\xd8\xe9\x96\xd5\x68\x53\x6e\xb4\xca\x46\x97\xb2\xd6\xc9\x63\xe3\xb7\xe1\xb7\xbc\x70\xad\x0d\xed\x27\x5f\xb8\x51\xc4\x92\x2d\x17\xae\xdd\x90\x48\x49\x4b\x11\x47\xe0\xd2\xb5\x0e\xcd\xa9\xbb\x97\xd5\xfb\x6c\x77\xef\xb6\x29\x05\x73\x89\x48\x89\xdf\xa3\xf8\xee\xd5\x2f\xe4\xda\x52\x8f\xde\x77\xb3\xa5\xac\xb5\x6a\x7a\x28\x72\x0c\xb1\x10\x23\x93\x84\x65\x46\xe2\x87\x40\x33\xbd\xf8\x41\x98\x2c\x12\xd9\x91\xbe\x25\x69\xea\x38\xc6\x8c\x34\xa1\x62\x17\x66\x8e\xa4\x67\x17\x25\xe8\x22\x3c\x64\x7a\x22\x1e\x8b\x93\xc8\x90\x72\x98\x7e\xdb\xb7\xc5\xc3\x84\x4c\x34\x4c\x70\x2a\xc3\x04\xad\x1e\xb6\x40\x74\x1a\xbf\xc9\xff\xbc\xce\x64\xa3\x22\x33\x46\xd2\x45\xc7\xf0\x06\x0f\xbe\x64\x03\xf8\xc2\x76\x2d\xea\x20\x30\x2f\x42\x23\x3a\x54\x4d\x6b\x0a\xce\xad\xc1\xdc\x08\xe4\x50\x2d\x64\x96\xe5\xe5\x62\x02\x2e\x6f\xe6\x28\xab\x66\x66\xad\xfb\x9f\x6b\x61\x28\x04\x1c\x3d\x35\x5e\x8c\xc5\xf9\xb5\x38\xf3\xde\x78\x67\xa2\xaa\xc5\x59\x04\xc8\x33\x7e\x13\xfb\x0d\xb1\x0f\x8e\xfb\xdc\x03\x93\x09\x54\xd7\x64\x10\x55\x5f\xa3\x1e\x7b\x06\x0e\x9f\xe7\xd7\x62\x8c\x26\xb8\x2b\xd5\x2c\x2b\xf4\x44\xc0\x18\x68\x33\xbb\xd6\x66\xa9\x84\x06\xfd\xa8\x41\x53\x6b\x56\x85\x06\x82\xa0\x37\x35\xcb\x3f\xbf\x76\xe6\xbf\xb6\x8f\x97\x75\xbe\xc8\x4b\x59\x90\xa9\x05\x41\xcb\x7e\xfd\xd9\x80\xa2\xa9\x84\x2a\xf5\xa6\x56\x62\x56\xd5\xb5\x9a\x35\x16\xb0\x75\x46\x2a\x58\xb7\x1c\xf7\xc6\x9a\xbc\xb7\x56\x78\x3a\x6f\x82\x3b\x44\x5e\xb5\xca\x2c\xb5\x3b\x39\xe5\xa5\xb3\x6a\x53\x36\x60\x1a\xbe\xf7\xfd\x35\x2b\xa4\xd6\x1d\x36\x09\xfe\x05\x63\xfb\xad\x98\x30\x5d\xf4\xdd\xba\xe7\x3c\x2c\xe9\xea\xdf\x56\x73\x65\xb7\xb1\x8a\x23\xe4\xa2\x5a\xbf\xe4\x45\x01\x8f\x2a\x64\x4a\x2e\xe7\xa6\x1e\x73\x3f\x02\x4b\x50\xb2\x18\xcf\x00\x2d\x20\xb0\x8d\x68\xf2\xd5\x76\xdb\x44\xbb\x77\x5d\x17\x9f\xcc\xb2\xc8\xe4\x2e\x88\x37\x68\xa6\xfa\xb2\xcb\x2f\xf0\xae\x87\x27\x07\x2f\xb3\x11\x20\x85\xc9\xe3\xb0\x3e\x69\x4d\x12\xb6\x06\x61\xb5\xd8\xe2\x00\x43\x16\x86\x75\xde\x69\x9d\xf6\xee\x0f\xab\xbd\x6e\xbb\x1c\x04\xf6\x0b\x61\x6d\xff\x29\xe5\x33\x18\x4d\x12\x8a\x1f\xf1\xb7\x5a\x0f\x16\xaf\x40\xb3\xfd\x10\x4e\x1d\x05\x38\xe7\x46\xb1\x16\x02\x11\x80\x00\x10\x47\x22\x84\xc7\x3b\x43\x27\xf9\xf2\xed\x1a\x8f\x44\x6b\xb5\x7e\x41\x47\x22\xb1\x38\x5c\xc3\x91\x88\x6c\x40\x0c\x22\x1c\xa1\xb3\xaf\x2d\x72\xb8\x7e\x14\x9d\x07\xdf\x17\x91\xa2\x23\xef\xda\x4f\x9c\x42\x88\x4d\x3e\x80\x09\x58\x3a\x6f\xcc\xd1\xa3\x70\xbe\x9e\x30\xf7\x07\x43\x6f\xff\x0c\x33\xf1\x2e\x5c\xeb\x4a\xeb\x1c\x1c\x25\xce\x37\xe8\xf1\x67\x7a\x3c\x23\xa7\x61\x32\x1d\x1d\x9c\x89\x6a\xad\x88\x92\x66\x55\x55\x23\x05\x2e\xaf\x59\xb7\x40\x5b\xe1\x41\x11\xe7\xd3\x60\xb4\xdd\xb5\x69\xe7\xfa\xbd\x52\xa2\x54\x48\x36\x57\xf2\x02\x9f\x27\xcd\x45\x4f\x16\xdd\x57\x79\xb3\xb4\x61\x60\xdc\x0d\x61\xc3\x55\x22\x5c\x5d\xac\x17\x17\xe3\x9f\x8c\x91\x5a\xd6\x4c\xce\x27\xac\x96\x57\xad\x3c\x0d\xee\x2d\x76\x94\x79\xee\x8a\xa8\xe8\xfd\xfb\xce\xa0\x09\x3d\xe4\xed\x94\xb5\xbc\xc4\x29\x57\xf6\x62\x30\xc7\xdb\x06\x88\x01\xa8\x83\x1b\x3d\x79\xb0\xb8\x55\xdb\x58\x36\x33\x39\x5b\x2a\xfb\xf0\x68\x3a\x85\xa8\x8c\x14\x82\x4e\x1a\xbe\xdd\x4c\x0e\xbc\xf0\x81\x05\x92\xd8\x22\xf3\xfe\x30\xe1\xe5\x60\x03\xe0\x9b\x59\x04\xcb\x27\xde\x89\x1f\x8e\x41\x10\xc1\xe9\x99\xb9\xbd\xf1\xa6\xca\x4b\x9d\x67\x4a\x54\x73\xf2\x70\xb0\xd7\xa6\xaa\x6d\xfd\xd8\x03\xb8\xed\xbd\xca\x07\x82\x49\x25\xe3\x25\x90\x7d\xf1\x2c\x62\x03\xc3\x90\xac\x7b\x5b\x16\xdb\x7b\x20\x30\x20\xe6\xf2\x00\x37\x72\x79\x1f\x46\xc9\xb0\x46\x53\xf0\xc9\x06\xf1\x3b\x0a\x5b\xb4\x2e\xdd\xb1\x36\xa8\xae\xfa\xf0\x63\x28\x1e\xd0\x83\xdf\xbe\xa6\xcb\x6d\x1b\xf8\xd8\x5c\x19\x33\x5d\x04\x8e\x45\x9d\x16\xed\x2b\xb9\x66\xc6\x0c\xd1\x60\x3f\x60\xd8\x85\x5d\xe3\xb9\x68\x0e\xec\x95\xdf\x94\x84\x36\xec\x30\xdc\xa6\x4c\x82\x9b\xc7\x77\x30\xf8\x08\xe3\xb1\x47\xa8\x36\xf0\x58\x49\x60\x0a\x3f\x14\x87\xff\x3d\x66\xf9\x89\xb9\xa4\xe6\xf1\x7a\x53\x8a\xb3\xd0\x70\x7d\x70\xe6\xc4\x8a\xaa\x14\xea\x52\xd5\xd7\x3b\xe6\x67\x83\x94\x84\xf1\x5f\xd0\x34\x8d\xb3\x05\x5e\x5a\xe9\xb2\xa1\x7f\x14\x51\x26\x88\x30\x4c\xf1\x5e\x5d\x58\xcb\xb9\x21\xb7\xab\x2a\xcb\xe7\xd7\x40\x93\x10\x8e\xba\x5a\xa9\xab\xa5\xaa\x15\x5a\x6b\x66\x1b\x10\xd8\xa5\x28\xaa\x6a\xcd\xe9\xb4\x2a\x33\xb1\x59\xa3\xc3\x38\xac\x6d\x29\xeb\x6c\xd4\x54\xa3\xa6\x96\xb3\x8b\x51\x56\x5d\x95\x02\x28\x87\x9a\xcf\x8d\x0c\x11\xfa\xd5\xd0\xa6\xc3\x9e\x3f\x18\x8c\xe7\x55\xfd\x4c\xce\x96\xfd\xa4\x0b\x80\x95\x93\x74\x1a\xf2\x96\xdf\x73\xd1\x9e\xc5\x99\x41\xff\xb3\xa1\x38\xb3\x34\xe7\x0c\x38\xc3\x33\x7f\x8f\x9e\x89\x95\x5c\x6f\x71\x93\x70\x4c\x64\x80\xfc\x1c\xc3\x63\xe6\xdc\xe3\x36\x3d\xe8\x87\xbe\xe0\x3c\x0e\x75\x35\x17\xf1\xb3\x73\xbb\x27\x4b\x4c\x59\x77\x5e\xad\x00\x35\xf2\x6c\x10\x50\xf0\xd6\x0c\xc6\x79\x16\x5a\xde\xa6\x66\x12\x5a\x59\xdb\xe8\x27\x29\x73\xa9\xf0\x03\x8e\x66\x03\xb3\x44\xc3\x25\xb6\xe9\x67\x47\x21\x76\x1e\x53\x4f\x4c\x38\xf8\x63\x12\x63\x27\xc6\x69\x4c\xb0\x0f\xb7\xde\x80\x64\x4f\x6e\x1f\x1e\xa5\xaa\xb5\x40\x7f\x4b\x80\x77\x8c\x9e\x82\xf2\x36\xd8\x82\xd0\x8f\xf2\x8a\x05\x17\x05\xfb\x85\xe3\x29\x41\x37\x92\xc9\x46\x6e\x01\x3a\xf6\xc1\x01\x0e\x25\x21\xe5\x89\xdc\xdf\x4c\x97\x8f\x5a\x1c\x79\x00\x78\x32\x78\xea\xc7\x46\x0e\xe2\xcf\x8f\x21\x40\xa9\xbf\x73\x8f\x98\xa5\xc2\x83\xd3\x41\xda\x22\xd0\x45\x5c\xbf\x6d\x7f\x40\x11\xef\xfe\x58\x54\x57\x3f\xe6\xef\x5f\x28\x66\x64\x22\x1b\xd9\xd1\xdf\x61\x67\x7f\x87\xdd\xfd\x79\xb1\x24\xd5\xe5\xc3\xce\x2e\x1f\x76\x99\xc9\x6f\x99\xe0\x47\x2d\x78\xfb\x04\xb7\xae\x39\xda\x83\x94\xf7\xae\xe5\xae\x63\xc2\x81\xd8\xf4\xb2\xa4\x2b\xde\xf1\x27\x43\x58\x5f\xfb\x61\x3e\x02\xc2\x4e\x6d\x2e\x67\xd5\xd2\xda\xdc\xd4\x34\xa0\x1e\xa9\x70\x3b\x66\xd2\x0a\xd0\xc9\x4f\xde\xb3\xf7\x6a\xb6\x69\x2c\xcf\xae\x87\x74\x68\xf0\x26\xc2\x34\x3d\x3b\x4e\xdc\xcb\x32\x71\xe8\xcc\xfc\xd0\xd6\x2e\x9c\xd2\xc7\x9b\x83\x07\x7a\xc1\x14\xf3\x1d\x88\xdb\x0f\xb7\xe8\x1a\x1c\xef\x11\xb6\xe0\xdc\xc7\x2e\x95\xc3\x43\x32\xa2\x61\xb9\x08\x48\xd8\x70\xb2\x85\x28\xf2\x0b\xe5\x15\x89\xb1\xef\x67\x4c\xda\xc7\x4e\x56\xb1\x64\xd6\x8a\x87\xdc\x3e\xc4\x55\x24\xd8\xf7\x3b\x36\x3c\x88\x70\x10\xc6\xd6\x62\xfe\xf5\xec\x56\x76\x9f\xec\x2b\x25\x4c\x92\xbf\x57\x7a\xc6\xe6\x67\x3e\x34\x33\xa8\x64\xf3\x20\xe6\xad\x56\xc5\xb5\x61\x1d\x91\x7c\x9f\x41\x77\x67\x60\xc3\x69\x5d\x9a\x29\x32\xf9\x6a\xd3\x40\x80\x77\xe2\xd5\xec\x18\x62\x59\x55\x17\xe3\x94\x05\xbd\x65\x34\xef\xdd\xa3\x69\xbb\x3f\xee\x3c\x6e\xad\x20\x94\x0c\x19\x53\x59\x6f\x4a\xb8\x73\x2c\x4a\xd8\x59\x85\xb3\x2d\x72\x05\x0c\x30\x45\x03\x0e\x3c\x54\x03\xc0\xb4\x0d\x4e\xfd\x1c\x86\x7e\x52\x2e\x7c\x12\xe8\x58\x71\xa1\xa0\x9e\xce\x32\x77\xe2\x5a\x54\xc3\xc6\x80\xe9\x5e\x9a\x8d\x2b\xf8\xbe\xf9\x27\x37\x4f\xf6\x75\xa3\x98\x30\xc4\x89\xd7\xea\xf2\x9f\x09\x73\xe6\x08\x52\x86\xdd\x3e\x63\x5a\xf8\x33\xc7\x84\x9f\xd5\x6e\x80\x33\x88\xaf\x08\x69\x85\x10\x3d\xd3\x1b\x0a\xb1\x95\xb0\x19\x04\x87\x1c\x9c\x61\xe0\xdb\xb2\x6a\x2c\xf5\x31\x9b\xf2\xf4\xf8\xf8\xe5\x0b\xc6\x68\xb1\xfd\xcb\x28\x36\xd3\xac\x5a\xad\x65\x9d\x6b\x78\x84\x13\x12\x88\xc8\xa6\x34\x73\x56\x59\x34\xc2\x4c\x16\x85\x1e\x0a\x9d\x97\x33\x65\x98\xff\xa5\xd3\x74\x14\x99\xdb\x6b\x54\x7f\x0b\x23\x3b\xb0\x3d\xa0\x2b\xc1\x01\x16\x72\xca\x58\xb0\x45\x51\x99\x35\x0f\xf0\xb4\xee\xa3\xd9\xac\x6b\x3a\x4c\x3c\x71\xa4\x23\x2a\xb3\x54\x1d\x1e\x25\x5a\x48\xf1\x36\xc0\x8a\x76\xa4\xe9\x6d\xc8\xf0\x36\x85\x0d\x6f\xdb\xe8\xf0\xf6\xff\xe2\x43\x12\x1f\x38\x70\x59\x6c\xea\x10\x4d\xde\xee\x89\x27\x6f\x09\x51\x36\x45\xb1\x3f\x8e\x74\x5f\xea\x94\x62\x80\xae\x24\x03\x8a\xcf\xef\x4d\x1e\x3d\x5a\x8b\xdf\xca\xe2\x14\x5b\x7d\x32\xf7\x14\xbb\xff\x73\xbe\xe9\x11\xaf\x34\x03\xf5\x05\xfa\x03\xb4\xbc\xa6\x0c\xbe\xfd\x54\xf9\xfb\x83\x5e\x61\x4a\x0a\x61\x9a\x8a\xea\x33\xc3\x5b\xea\x8e\x59\x56\x47\x06\x5c\x88\xf6\x9c\x7c\x51\xa7\xc2\x99\x6e\x71\x3c\xd1\x03\x7b\xf4\x48\x6e\x79\x07\xf7\x44\xce\x62\x48\xe2\x3b\xd1\xad\xac\x53\xbc\x9e\x7d\x6b\xd0\x96\x6d\x8f\x71\x99\x5a\x17\xd5\xb5\x4a\xfb\x0e\xdb\xd0\x9d\xb7\x74\x2c\xde\x1a\x1a\xfa\xe3\x5f\xff\xfe\xb5\x51\x1d\xd6\x32\x6c\x9e\x2d\x73\x18\xb6\xc0\xd6\x37\x3f\x97\xf0\xa9\x93\xcf\x23\xfc\x92\x7a\x1a\x4a\xda\x56\xd3\x93\x8f\x69\xd4\x7a\x1d\x0a\x0a\xb7\x3f\x28\x75\xbe\xd7\x10\xda\x0d\x92\x7e\x8c\xaf\xdb\x01\x02\xe3\x8d\x31\xac\x54\x5c\x1d\x24\x97\x2d\xee\xac\xb1\xcb\x2e\x87\xc8\xff\x8c\x80\x2f\xdf\x03\x22\xf0\x58\x64\x4d\x45\x9e\x68\x18\xe2\xab\x56\xdb\x9f\x5b\xfd\x91\xea\x7c\x70\xc5\x21\xf8\x9b\x2b\x94\xf4\x03\x19\x2a\x40\xcb\x54\xac\xe9\x28\x42\x70\x2b\x60\xf8\xd8\xf6\xda\x81\xe7\x90\xda\x14\x4d\x05\x32\x0c\x6c\x96\xc8\x2f\x74\xa5\xc4\x4c\x96\xbd\x06\x5f\x7a\x4a\xad\xc8\x94\xef\xfb\x57\xcf\xcd\x04\x90\x31\x77\x61\x2c\xd1\x2d\xd0\x8e\x11\xb0\xf7\x77\x82\xa3\x34\xe0\x27\xab\x1f\xbd\x43\x34\x9d\x21\x1f\x81\x6b\x62\x5b\x03\x09\xce\x92\x1b\x13\x5f\x80\x99\x8a\x61\x8e\x25\x21\xcc\xef\x7c\x3a\xd0\x6d\xb7\x7b\x10\x97\x1d\xcb\xfd\x3e\xcb\xac\xde\x98\x50\x70\xb6\xa9\xe1\x31\x1d\x11\x9d\xc5\x24\x45\xeb\x01\xdc\x1e\xdb\x46\x16\xba\x22\x2b\x02\xb0\x21\x71\x6d\x3c\xeb\xe6\xac\x09\x52\x96\x04\xb7\x8e\xce\x93\x4a\x4f\x88\x67\xc3\x92\x5d\x4f\x83\x01\xef\x5e\x91\x6c\x36\x93\x36\xd9\x21\xb2\x35\xc4\x04\x1a\x01\xbc\x44\x63\x14\x03\x00\x88\xf0\x59\x13\x2b\x57\x43\x54\x2d\xf8\x36\xe4\x0f\xb3\x38\x92\x2c\x0a\x71\x66\x27\x6c\x19\x42\xd7\xe9\xd5\x32\x9f\x2d\xe9\x75\x97\x01\x08\x61\x70\xe6\x89\x0a\xb1\x92\xed\x88\xdc\x6e\x3b\xcd\xe5\x0f\x23\x0e\xc2\xeb\xc5\xd9\xb7\xec\x8a\x4c\xf4\x91\xcf\x87\xfb\x07\x26\xea\x24\x27\x81\x23\x72\x7c\x36\xe3\x9c\x8c\x18\x7a\x9f\xd0\x0b\xd6\x93\xe5\xb5\x9a\x35\xc5\x35\xc5\xe0\xaf\x29\x96\x76\x90\x7b\xe4\x52\xd5\xda\x60\xc9\xb5\x45\x53\x9b\x10\xc0\x25\x43\xc1\x1e\x15\x98\x6f\x89\xa6\x5a\x28\xd3\x95\xb8\x5a\xaa\x52\x58\x22\x09\x39\x55\x8a\x82\x11\x13\x9c\x32\x81\x1d\xfe\x19\xaf\x37\x7a\x49\x4b\x0e\x35\x73\xee\x41\xc7\xd2\xad\x08\x30\x01\x70\xa8\xcb\x80\x99\xf7\x1f\xdc\x33\x50\xd4\x63\x1c\xa4\xb1\xc5\x6b\x38\x85\xe5\x16\x4e\xbf\xfd\x04\xeb\x1f\xf0\x91\xfc\xca\x2c\xe3\x3c\x3f\x52\x19\x95\x11\x01\x2e\xab\x4c\xf9\x53\xf3\x8b\x42\x08\xd7\x0a\xb7\x14\xcf\x3f\x06\x35\x37\x32\x11\xc6\x95\x33\x35\x2c\x90\x9b\xf8\x81\xbe\x83\xe5\xd9\xf1\x50\xfc\x9c\x61\x48\x5e\x12\xd1\xf2\xf7\x61\x27\x69\x61\xf7\x4a\xf0\xfc\x19\xee\x5a\xeb\x72\x4c\x04\x31\x0e\x69\x71\x62\xdf\x45\x97\x5c\xe5\x8d\xb4\x1c\xa8\x03\xe2\x6a\x05\x02\x4f\x55\x6f\x6d\x9b\xd5\x41\x51\x75\x82\xa4\xea\x4e\x76\x1c\x22\xfb\x41\x12\x21\xa2\x33\xfb\xb2\x4c\x31\x2d\x4a\x84\x56\x73\x71\x4c\x5a\x5a\x47\x9f\xaf\x15\xc6\xe6\x27\x2e\x2d\xbd\x40\xb5\xed\xc6\x04\xd6\x82\x71\xab\x51\xc1\x6f\x11\x2e\x2f\x30\x31\x88\x66\xe1\xe2\x4a\x9f\x81\xee\xe3\xc8\xac\x1c\xaa\xb9\x4b\x13\xdf\xc2\x32\x9f\x5c\xf5\x87\x97\x2f\xb6\xf1\x1d\xa6\x76\xbc\x0a\x5f\x1a\x2e\x84\xef\x11\xbe\x4d\xb9\xdc\xbe\x2e\xc1\xff\x13\x41\xe1\x72\x3a\x97\x9b\xba\x42\xda\x36\xfe\xd0\x90\x1b\x4d\x74\x5f\x17\xe6\xa2\x43\x05\xf5\x5e\xb9\x28\x82\xed\xf0\x7c\x91\x5b\x72\xd4\x55\x17\x0a\xb9\xd4\xfb\xff\x43\xa3\x1d\xfe\x80\xc4\x75\xbd\xa9\x15\xd3\xc1\x20\x7d\xf6\xab\xdb\x86\x1a\xd0\x3e\x40\x0b\x64\x87\xb7\x50\xba\x18\xa8\x01\xff\x1c\x93\x6e\x07\xc1\x9d\xbc\xe6\xef\xf7\x4a\x8b\x8f\x2d\x00\x62\x87\x70\x7d\x56\x18\xb0\x4a\x03\xea\xd4\x3a\x7b\xfb\x6a\x43\xff\xf8\xe7\x11\x77\xaf\x45\x6a\x21\x85\xce\xcb\x45\xa1\x76\x3d\xf5\x7f\xfc\x1b\x18\x43\xa3\xed\x0d\xf6\xdb\x9d\xdf\x43\xe9\xd7\x3e\x00\xe9\xc8\x42\xb1\xcf\x86\xbb\xdd\x23\x85\x14\x31\xf7\xaf\xad\xd9\xfb\x6d\xb4\x52\x51\xdb\x7e\x08\x57\xff\xca\xe7\x99\xd8\xb2\x51\x75\x29\x8b\x23\x71\x72\xea\x14\x1f\xea\xbd\x2f\x24\x0a\xd3\xb6\xc1\x8b\x63\x07\xa7\x7c\xfd\xa3\xe9\x6c\x71\xf7\x7f\x0a\x92\x07\xf7\x16\x39\x03\x3d\xb8\x26\xeb\x6f\xbc\x1a\x4b\xab\x7d\x36\x77\x0b\x94\xa1\x39\xbf\xb4\x8f\x62\x71\x70\x00\xde\x21\xdf\xcc\x8e\x7c\xeb\x6d\x7c\x4c\x25\x45\x0e\x80\x10\x0c\xd1\x91\x29\xb9\x25\xcc\xa4\xda\x9e\xe4\xa7\xdb\x64\x9b\xae\xcc\xef\xe9\x1b\x80\xfb\xc3\xa4\xc0\xcc\x24\x1e\x82\x73\xf7\x61\x08\x6a\x87\x40\x6c\x09\x4e\xad\xf0\x31\xcc\x5f\x2e\x8a\x31\xbf\x67\xa8\x94\x7d\x36\x80\x4d\xa3\x63\x07\xb6\xb4\x30\x70\xe7\x11\x70\x52\xa6\x0f\x35\x7b\x5b\x44\x39\x32\x7c\xd7\xac\xd9\x93\x66\xa2\xaf\x18\x12\xfc\x82\xd9\xbe\x41\xc7\xf4\x64\xb4\xe7\x0e\x1d\xd3\x6b\xf5\x47\x04\xfc\xb9\x05\x9c\x8f\x43\x9f\xf6\x00\xd0\x91\x75\x0a\xb1\x35\x0e\x3c\x89\x13\xc0\x3b\xb5\x7b\xb1\x05\x96\x49\x11\x24\x02\x1a\xba\x25\xed\x0d\x34\x42\xc2\x04\xd0\x50\xbd\xff\xd1\x70\x02\x3d\xd3\xad\x10\x12\x9a\x18\x28\xec\xbd\x66\xbc\x9a\xf7\x58\xed\xcf\x2d\x26\x63\x1f\xab\x85\xdb\x2c\x1b\x7b\xdb\x73\xc1\x58\xd9\x2c\x75\x9b\xcd\xc4\xee\xf5\xb3\xa8\x4c\x7b\x00\x81\xd5\x8e\xae\x83\x76\x1e\xc0\x8e\xf0\x4e\x6b\x7b\x8a\xd3\xa9\x0a\xf7\xba\x30\xfc\x60\x1d\xd0\x6a\x0d\xb2\xa5\x0b\x03\xc3\xb0\x7e\x30\xf7\x8e\x1b\x22\x6c\xb1\xc3\x04\x17\x19\x87\x2d\x0c\x9f\x0e\x59\x3d\xad\xfa\xa5\xba\x7a\x45\xbe\x94\x9f\x60\xe7\xc4\x54\x4a\xa0\x15\x3a\x12\x3d\xcb\x9c\xf4\xec\xa7\x9b\x94\x49\x4f\x64\x4c\x4d\x3f\x4f\xec\x1d\x03\x9d\xe1\x03\xfe\xf7\x66\x78\x8d\xb9\xa1\x20\x87\x9d\x91\x11\xc9\x5b\xa3\xb9\xca\x67\x6a\x28\x64\x23\x0a\x25\x75\x23\xce\xa5\xa1\xde\x60\x35\x3c\x0f\xb4\x9b\x56\x97\x68\x45\x1f\xb7\xfa\x01\x3c\x79\x8f\x0e\x5b\x42\x5e\x3c\x69\xdb\x03\xe8\x07\x7c\xf3\x0e\xbe\xeb\xc4\x05\x6a\xe2\xcb\x1b\x5b\xd8\x0c\x83\x55\x8f\x2d\x93\x37\x18\xd7\x2a\xdb\xcc\x14\xcb\xc0\x6b\xfb\xb4\xd6\xd8\x83\x84\x71\x9e\x55\x8c\xb4\x6a\x84\x5e\x37\xb6\xab\x48\x11\x68\x8b\x51\x43\x82\xeb\xc3\x9e\xc2\xf7\x26\x91\xb0\x0f\x14\x9f\x23\x46\xe3\xcf\x98\x87\x01\x88\x43\x47\x58\xc6\x74\x1c\xc6\x50\xdb\x38\x8d\xf4\x8d\xb4\x2c\xbb\x8f\xec\xf9\x31\x74\x85\x66\x7c\x75\xc0\x77\xa4\xbf\x50\xc4\xbe\xe4\x27\x7c\xd5\x0c\x3e\x05\xb1\xea\x82\x2f\x48\x5f\x19\x07\x9f\x14\x42\x22\x06\x9d\x49\x22\x36\xa4\x24\x8c\xca\x9c\x70\x8d\x0c\x85\x3e\xb8\xcd\x52\xad\x40\xff\x2c\x1b\x51\x95\xe6\xcc\xc8\x99\x8b\x2b\x09\x2f\xeb\xd0\xf4\xa3\xe4\x98\xb0\x69\x24\xc6\x04\xe7\xa0\x53\xf6\x08\xbb\xd8\x22\x7a\x30\x3a\x97\xcc\x59\xb7\xcd\xdd\x33\xe4\x0d\x30\xd4\xa5\x9b\x5c\x30\xd9\x84\xab\x52\x68\xe2\xc1\xdd\x8f\x30\xe4\x25\xcd\xdc\xd2\x14\x1a\xcb\xd2\x13\x47\x46\x12\x4d\xc8\xf0\xd7\x10\xd7\x07\xe2\xc3\x07\x1a\xf1\x5b\x6e\xe6\x11\x10\x24\x0b\x23\x73\x36\xa3\x34\x86\x21\xb5\x32\x04\xf3\xc7\xbc\xcc\xcc\x9d\x50\x69\xb0\xdd\x64\x0a\xf0\xd4\xdd\x17\xcd\x29\xbe\xe8\xf8\xb4\x4f\xf2\xd3\x10\x1a\xe2\x5b\x11\xcf\x95\xcd\xd6\x3a\x66\x81\x53\x56\x34\x6b\x11\xe7\xb3\xda\x62\x18\xf4\x5a\x69\xd5\xd0\x43\x35\x75\xdd\x79\xd1\xd5\x50\x37\x70\x1f\xd1\x3c\x13\x54\x37\x7e\x26\x9e\x63\x3b\xf1\x6d\x4f\x87\xad\x36\xf2\x59\xcc\x0a\xb9\x85\x10\x81\x52\x37\x4a\xe4\xe4\x96\x76\xca\xb2\xba\x14\xe9\x9e\x3f\x54\x86\x70\xff\x5c\x9a\x95\xb7\x8d\x5a\xad\x43\x9d\x57\x0d\x01\x69\xe1\x03\xe3\x15\xc4\x13\xf1\xeb\x8d\x38\xc2\x72\x66\x97\xcc\x9e\x8b\x4d\x4b\xa7\x86\x65\x55\x98\x11\x09\xea\x12\x7e\xc9\x9b\x65\xb5\xb1\x39\x17\x73\x45\x31\x22\x4d\xfb\xa1\x38\x99\x1e\xd8\x3e\xa6\x07\xa7\x83\xc0\x53\x19\x8d\xa2\x58\x74\x92\xdd\xac\x5f\xb7\x7a\x20\x30\x11\x63\x07\xe2\x51\xf8\x78\xe7\x16\x78\xc7\x9b\xd7\x85\x99\x7e\x81\x3e\x24\x5e\x2b\x45\xdb\xcc\xea\x26\xec\x7b\xa6\xf5\x00\x16\xd5\xb2\xb8\xa2\x42\x1c\xa8\x2b\x6c\x76\xcc\x60\x5a\xfb\xac\x74\x06\xbe\x80\x38\xb7\xd2\xf0\x01\x1e\x42\x0e\x3e\x2c\xe6\x19\xdb\x9e\xd2\x53\xfe\x32\x5f\x2c\x95\xb6\x0a\xed\x72\xb3\x3a\x77\x59\xd2\x5d\xea\xb6\xbd\x73\xb6\xa5\x29\xe7\x13\xf1\xc0\xbd\x16\xd8\x2d\x49\x56\x1f\x89\xc3\xd3\x24\x21\xef\x48\xfc\x16\xac\x3e\x71\xe9\xbe\x59\xe6\x1a\x0d\xe8\x17\x45\x75\x2e\x0b\x7b\xcc\xdc\xb8\xe2\x65\x59\x5c\x8b\x1f\xaa\x95\x73\xda\xc7\x57\xc9\x8c\x9f\x48\x78\x9c\x14\x5f\x88\x97\x68\xd0\x0d\x36\x00\x35\x5c\xd5\x7a\x59\x6d\x8a\x0c\x2c\x53\x64\x29\x0c\x73\x14\xdd\xd5\xce\xfb\xda\x3e\xeb\x35\x4b\x05\x7d\xf1\xde\xbd\xad\xcb\x75\xb5\x09\x3d\xbc\x21\x36\x46\x53\x59\xe3\x04\x54\x82\xf3\x40\x1e\xd0\x99\x42\x7b\xa1\x7f\x6d\x70\x1f\xbd\xc5\x02\xe4\x96\x56\xf2\xc2\x0e\x27\x67\x75\xa5\xb5\xad\xaa\xc7\x41\x46\x11\xaa\x83\xf6\x51\x31\xe3\x40\x60\x8d\x22\x20\x41\xeb\xc9\x44\x2c\x9b\x66\xad\x8f\x26\x93\x45\xde\x2c\x37\xe7\xe3\x59\xb5\x9a\xfc\xbb\xa8\xf2\xba\x9a\x5d\x4c\x66\x55\xad\x46\xef\xf4\x24\xd7\x7a\xa3\xf4\xe4\x9b\xaf\xff\x03\xfe\x9a\x55\xab\x95\x2a\x9b\xd1\xe1\xe1\x1f\xfe\xf8\x87\x3f\x3d\x78\xf8\x0d\x4e\x02\xf7\xe9\x0d\x06\x5d\xa5\x17\xa8\xab\xbc\xcc\xaa\x2b\x73\x54\x7b\xee\x29\x1b\x62\x42\xe3\x87\xf1\x0b\x09\x98\x26\xe0\xdf\x27\xb6\xfa\x91\x6d\xae\x55\x31\x4f\x34\x36\xc5\x71\x53\xa8\x7a\x24\x7e\x24\x4c\xef\xf7\x18\x6e\xf7\x06\x4c\xb7\x0c\x84\xaf\xf7\x70\x7e\x28\x67\xb3\xaf\x67\x5f\xca\xaf\x1f\x7c\x7d\xfe\xe0\x9b\x87\xea\x0f\x4a\xcd\xff\xa0\xfe\xf0\xd5\x57\x87\x5f\xcd\xe7\xe7\xe6\xe4\x1b\x8a\xe0\x17\x75\x52\xea\x53\x1f\xf3\x3f\x2e\x37\xc4\x6e\x32\x11\x7f\xd9\x94\x59\xa1\x20\x39\xb0\xcd\xda\xb6\xda\x14\x4d\xbe\x2e\x94\xf8\xdb\xf1\xb1\x35\x6b\xd0\x86\x61\x74\xc1\x59\xe0\xa1\x37\x30\x57\xc9\x33\x55\x36\xf9\xfc\x1a\x76\x88\x1b\xef\x58\xb3\x08\x78\x57\x79\xb7\xd1\x8d\xc5\xe5\xba\xa1\xf3\x0f\xe8\x4a\x9e\xf5\x86\x1a\x5b\x1b\x43\x0a\xdb\x60\x04\x85\x12\xfd\x5c\x01\xf5\x05\xb9\xfe\x8f\xc5\xf7\x85\x36\x18\x6d\xce\xdc\xaa\xaa\x95\x61\x71\x37\xb5\x6c\x94\x47\x71\x78\xfa\x9f\xc9\x52\xac\x64\xb9\x91\x45\x71\x2d\x6a\xa5\x8c\xe8\x2f\x1b\xe5\x66\xba\xaa\x32\x6b\xed\x6a\xa0\x8d\x3f\x21\x46\x46\x08\x32\x88\x35\x40\x75\xe4\x7b\xfb\x94\x7d\xa8\x0e\x1f\x04\x64\xc0\xbe\xa8\x4a\x4f\xc3\xd0\x04\x67\xe1\x82\x7e\x51\x08\x05\x58\x28\xc5\x78\x70\x42\x2a\xad\x0e\x8f\x0b\x86\x67\x30\x47\x84\x1a\x57\x35\x7b\xd8\xd3\x74\x52\x33\x54\x1a\xd8\xa6\xe6\x03\x70\x38\x98\xeb\xf7\x8b\xc0\x4f\xc4\xb3\x4d\xbc\x85\x01\xfb\xf1\xf1\x6b\x74\xf2\x61\xe7\x9b\x0b\x06\x38\xd6\x7f\xf2\x18\x22\x6e\x2a\xf1\xb7\xe8\xb9\x65\x87\xee\x80\x69\x0e\x6e\x62\xc9\xc0\x4c\xf3\x69\x14\x31\xc7\xbe\xf1\x7a\x79\x38\xa1\x1a\xe5\x0d\xef\x3f\x16\x87\x2d\x17\x54\xfb\xf1\x5b\xb7\x9b\x6d\x55\xce\xc7\xcb\xaf\xff\xbb\xda\x50\x2e\x44\xb0\xc7\x97\x62\xa5\x56\x55\x7d\x0d\x04\x72\x8c\xf9\x96\xd8\x76\xc9\x06\x03\x87\x05\x93\x16\x69\x11\x37\xd0\x98\xbc\xd3\x1a\x76\x22\xb0\x5c\x5f\xd7\x6a\x9e\xbf\x0f\xd9\x1c\xb0\xce\x8e\x62\x97\xbb\xb2\x71\x10\xff\xe7\x27\xb9\x52\xaf\xa0\x8b\x80\x13\x71\xbd\x6e\x6d\xd2\xc5\xa7\x84\x8d\xde\x69\xc8\xab\x71\xc7\xd2\x26\x36\x8c\x5d\x11\xf1\x2b\xa9\x76\xdd\x49\xb4\xb9\x49\xef\x2a\x2f\xf3\xf9\x75\xa8\xe5\xfe\x59\x1b\x2e\x76\x7a\x30\x9b\x1e\x38\x1a\x21\x2d\x19\x42\xcb\xa3\x73\xc5\x0c\x5a\x66\x4b\xe0\xcf\x0d\xd1\x71\x67\x75\x1c\xb1\x22\xa4\x9a\xe8\x13\x7c\x3e\x7c\x10\xbd\x59\x6f\x20\xee\x7b\x42\x72\x9f\x16\x15\xec\x6f\xa7\x86\x0f\x7a\xc1\xaa\x2e\xac\x1c\xa6\x3c\x62\x1d\xf6\xb1\xc7\x27\xee\x1b\xfe\x3e\x12\x3d\x18\xda\x96\xc6\xe3\xdd\x3c\xb2\x81\xbd\x5c\xfe\x54\x88\x73\x62\x56\x8c\xf1\xea\x9c\x99\x87\xb7\xe8\xe1\x94\x8c\xdb\xa7\x39\xca\x60\x50\x3b\xff\x77\x20\xec\x50\x51\x7f\x5e\xc6\xc9\x26\xd2\x27\x38\x34\x4b\xa5\x44\x11\x36\xc6\xe2\xbc\x8c\x4d\x66\x7d\x4f\x37\x51\x32\x0d\xb4\xb7\xc1\x67\x8b\x35\x65\x64\xc7\xea\x3c\x79\x06\xe7\x2e\x6d\xde\x76\x54\x23\xcf\x5c\x9c\x03\x1f\xb6\xdf\x70\x3f\x34\xbd\xc9\x44\x1c\x63\xce\x39\x23\x38\xbd\xb1\xa6\x30\x96\x15\x87\xc7\x2c\xd9\x34\x75\x7e\xbe\xa1\xa8\x3e\x2f\xe4\xba\xcd\xbe\x76\x56\x05\xd3\x16\x18\xba\x9b\x41\xf7\xae\x4f\xe3\xd6\xf4\x7d\xd3\x1b\x31\x83\x14\x61\x7d\x55\x7b\x63\x95\xc9\x44\x3c\x7f\x06\x77\x7d\xb3\xac\xab\x2b\x33\x6d\x07\xa4\xdc\xdc\x4b\xa0\x74\x1b\x07\x23\xda\x54\x7d\xd3\xf2\x86\x29\x98\x12\x60\x4e\x02\x98\x27\xc6\x0f\x60\x3b\x0c\xd2\x81\x30\x10\x93\x94\x96\x56\xd4\x77\xe7\x71\xff\x95\xc9\x3d\x4e\xff\x1e\xa5\x73\x1f\xc2\x0b\xde\x20\x12\xcf\x30\x26\x24\x0f\x41\x09\xa2\x01\x9a\x21\xdd\x71\x46\xe2\xbd\x50\x2e\x0b\xf6\x81\xaf\x12\x17\x67\x67\x31\x14\x3d\xd6\x43\x4b\xd5\xc1\x6d\x56\x3c\x39\x4b\xa2\x19\x07\xc1\x3e\xa8\xd6\x8d\x63\x9a\x70\xcc\xcf\xb2\xcb\xd5\x7b\xdf\x55\x86\x6f\x3e\x9f\x0b\xf3\xbc\x11\x57\x98\x42\x87\x60\x76\xc3\x79\x2e\xd2\xcd\xec\x81\x91\xa8\x87\x49\x23\xe5\xe7\x3f\xf0\xdd\xbb\x80\x16\x62\xe1\x61\xdf\x0a\xfe\x68\xe2\x11\x95\xe8\x80\xfb\x27\x33\x32\x3f\xbc\x7c\xf1\xec\xfd\x4c\xc1\xa5\xea\x15\xf1\xaa\xae\xc7\x2b\xa5\xb5\x5c\xb0\x34\x49\x57\x52\xe3\xee\x96\x63\xf1\xa6\xce\x2d\xc7\xe9\x7c\x3f\x61\xb3\x5d\x17\xe0\xf1\xd9\xad\xcb\x6f\xd3\x1b\x14\x87\x7d\xd8\xc7\x14\xad\x71\x49\xee\xdd\xb6\x86\x09\xfd\x01\x2a\x0e\xac\xe9\x4c\xfe\x90\x02\x1e\xdd\x56\x3d\x1a\x82\xf7\x07\xa6\xc4\x37\xcb\x34\xb2\xae\xde\x80\x4a\x7d\xbe\x29\x6c\x98\x49\xd2\x72\x14\xd7\xe2\xaa\xaa\x2f\xd0\x0b\x7b\x59\x57\x2b\x25\xaa\xb2\xb8\x1e\x07\x48\x9c\x9e\xc4\xe3\x68\x1a\x01\x10\xfe\x13\x84\xf8\xa5\x12\x67\x4b\x25\xb3\x33\xe7\x87\xb2\x59\x57\x25\x67\x5a\x40\xd7\x57\x66\x18\x91\x4c\x3b\x8d\xc2\x2f\x4a\x48\xad\x37\x2b\x10\xb4\x1c\xb3\x63\x18\xb0\x38\xaf\xd4\x42\x35\x7f\x55\xd2\x70\x61\xee\x1e\x8f\x6f\x6a\x5a\x45\x56\xcd\xc0\x2a\x0d\x53\xbf\x3a\xe8\xf7\xcc\x04\x81\xdc\xc1\x0b\x86\x5d\x00\x2a\xa1\x03\x2d\x24\xd9\xdb\x91\x99\x22\xea\x87\x6a\xd1\x2c\x25\xf9\xb3\x63\x76\xf0\xaa\x64\xd7\x77\x90\xe2\xec\xaf\xd0\x00\xdf\xfc\xfd\xb3\x58\x28\x7e\xdc\x5a\xc3\x1d\x58\xb9\x24\xd4\x7a\x9e\xa1\xe5\x26\xa3\x89\x97\x01\xf1\x6d\x14\xda\x2c\x51\x4d\xab\xda\xfc\xf9\xaa\xca\x4b\x44\x80\xf4\xa7\x36\x13\xc1\x7d\x51\x6f\xda\x54\x92\xac\x89\x6e\xf6\x00\xbf\x81\x74\xa0\x99\x4b\x1e\x2f\x07\x6e\xdd\xdc\x02\xde\x09\xad\x9b\xd9\x81\x6f\x71\x27\x46\xa3\xcf\x0c\xf4\xdf\x1b\x9a\x82\x54\x4b\x08\xc8\xe9\xc1\x3b\xad\xa7\x07\x14\xa8\xaf\x13\x8a\x4f\xb1\xcd\x4f\x55\xa6\xfa\x8d\xa7\x4b\x06\x02\x4b\x3c\x77\x74\x02\xfb\x2e\xb1\x51\x02\x85\x4d\x55\x4c\xc0\x68\x3a\xd2\x9d\x98\x5c\x56\x99\x61\x86\xa2\xea\x31\x68\xc1\xa7\xc2\xfc\xef\x8d\xcd\xec\xf2\x0d\xa4\x97\xb5\xc5\x68\xf8\xd0\xd4\xf9\xaa\x8f\xf1\x80\xd8\xc4\x19\x18\x4d\xd5\x7d\xa0\xd8\x82\x23\xcc\x92\xc2\x33\xa2\xbe\x04\x7d\xf1\xac\x1f\x8e\x73\xea\xb0\x50\x0d\x20\xfa\xaa\x56\x97\x00\xce\x10\x13\xa3\xb7\x3d\x54\x3a\xf2\xd7\xbd\x69\x99\x7e\x84\xfb\x96\xa9\x27\x26\x13\xf1\x06\xdf\x50\x69\x2a\x34\x4b\x33\xa3\xd2\x50\x6d\x22\x5a\xcc\x43\x2d\x40\xe6\xdd\x64\xaa\x8d\xe3\x1e\xb5\xbb\x0d\xce\xb9\x6c\x4e\x7e\xb2\x61\x93\x31\x5d\x10\x14\x7d\xd6\xc0\x87\xbd\xa9\x18\x80\x77\xb5\x70\x0c\x29\x7f\x42\x7c\xd9\x2c\x55\x7d\x95\x3b\xc7\x48\xe6\x4c\x56\x48\x1d\xf9\x41\x62\xbb\x16\x08\xba\x49\xc7\xff\x38\x18\x8c\xcd\xde\x1e\xe7\xe7\x45\x5e\x2e\x5a\xf0\x40\x7e\xcb\x63\xc6\x3c\x24\x06\xf0\xaa\xbe\xac\x0a\x70\x34\x9d\x7b\x14\xcc\x35\xfa\xd7\x8f\xb9\x2b\x6d\x4c\xb4\x3a\x48\x16\xc3\xd6\xa8\xc5\xbd\x7b\x56\xfb\x9c\xa0\x7f\xad\xb0\x5d\x20\x5f\xd1\x3c\x1f\xb7\xc8\x51\x44\x26\x83\x5d\xa1\x56\x7b\xed\x02\xd5\xdd\x06\x76\x5b\x65\x1b\x9c\x41\x6e\x98\xa3\x1e\x57\xaf\xd5\x2c\x9f\xe7\x4a\x0b\x47\x15\x20\x2c\x23\x2c\xd5\xf0\x3b\x9c\xad\x99\x57\x1b\x53\x52\x52\x18\x5c\xe4\x52\xc4\xc8\x9d\xe8\x73\x99\xd9\x0e\x67\x39\xc8\x20\x7a\xa3\x34\x08\x28\x72\xbd\x56\xb2\x66\x58\xfc\xc9\x3c\xf4\xf3\x68\xb2\x8e\x07\x8e\xf6\xcb\x71\xd2\x86\xbd\x84\x15\x24\xf9\x62\xae\x41\x21\x11\x89\xdd\x4b\xe4\x95\x16\xb9\x2a\x5b\xf7\x34\xf2\xde\x69\x5d\x4b\x38\x93\xc0\xe0\xb4\x4d\x4a\xf7\xc7\x54\x1f\xc2\xe7\x27\xbc\x7d\x92\x44\x9a\xa1\xb4\xab\x7a\xc7\x65\xcb\x36\xb7\x0f\x95\x12\x1a\x39\xcc\x8b\xca\x69\xfc\xbf\x00\x5d\xb6\xd3\x77\x75\x0c\xb6\x85\xfa\xa3\x47\xee\xf8\xfe\x02\x7c\x3a\xdc\xdd\x39\x05\x30\x80\xc7\xb3\xf2\x1a\x2f\x24\x73\xae\x7c\xc8\x9a\x5b\x9c\xbd\xf0\x2a\xed\xa1\x8a\xb1\xc7\xef\x14\xfb\x8c\xa5\x1b\x39\xbb\xa8\x2e\x55\x3d\x2f\xaa\x2b\x78\xcd\x02\xd5\xbb\x01\xd0\xe4\xab\xc3\x2f\x1f\x7e\xf3\xc7\x87\xdf\x4c\x20\x92\xca\x68\x26\x75\x93\x97\x8b\x51\x5e\x8e\x4c\xe5\x29\x33\x21\xe0\x63\x3f\xa3\x4d\x7f\x2c\x12\xfb\x42\x2a\x62\x77\x2c\x5b\xb5\x9e\xb5\x08\x26\xb3\x6f\xf1\x85\x03\xd6\x47\x12\xfe\xe9\x5e\xd9\x61\x27\xef\xd5\x8f\x3e\x5d\xbd\xf4\xe1\x22\xaf\x7c\x3a\xfa\x06\xdf\x7b\x2d\x1d\x3a\x47\x03\xdc\x5a\xc7\x70\x8d\xc1\x51\x3a\x7b\x6a\x18\x25\x5c\xca\x20\xd6\x35\xc8\x0c\x02\xb3\x97\xe0\x5d\x6a\x84\xc2\xbc\x5c\x78\xc5\xe9\xda\xc8\xc4\xe8\x27\x8c\x74\x6b\x29\xb5\xa9\x65\xe5\xb0\x50\xce\xfa\x09\x3a\xd9\x22\x68\x31\x0e\xae\x4b\xd8\x5a\xa9\x46\x9e\x58\x01\xfb\xf1\xf4\x60\xa6\xd7\x23\x98\xdc\xf4\xe0\x94\x74\x4e\x8c\x3b\x13\x4f\x90\xa9\x5b\xa8\xe6\x7b\xab\x94\xe8\xf7\x66\x55\xd9\x28\x50\x72\xb9\xbc\x1c\x37\xfe\x05\xf2\xed\x4e\x97\x55\x17\x2d\xce\x1a\x05\x73\x1b\x20\x7a\x32\x7b\x4e\x86\x2e\xae\xee\x98\x84\x60\xcf\xbb\xa2\x13\x3c\x84\x2e\x5b\xd7\xea\x32\xaf\x36\x9a\x91\xfa\xb9\xcc\x0b\x3d\xb4\x42\x21\x4a\x54\xf8\xc8\x72\xae\xc4\x55\x5d\x99\x0b\xc4\x9f\xd3\x76\x28\x69\x6f\x54\xe5\xa6\xc3\x4f\xe4\xb6\x84\x3b\x6b\x59\xcb\xd5\xa8\x56\x52\xeb\x7c\x61\xef\x44\x5a\x8f\xed\x8b\xe3\x13\x53\x21\x41\x0e\x5c\x0f\x2a\x48\x82\xeb\x40\x10\x59\x94\xcc\x38\x78\xbc\x29\x47\xec\xda\x6b\xc1\xcb\xaf\xc9\xbf\x07\xa9\xac\x89\x0f\x75\xa1\x4f\x7b\x88\xd6\x5b\x27\x40\xd6\x3b\xf1\x1c\xfc\xe7\xb7\xb3\xb1\xef\x26\xf0\x87\xfd\x4d\x55\x50\xb1\xc6\xa9\xe3\x38\x77\xea\x0b\xdb\xf8\xe6\xc3\x25\xf9\x34\x27\x2c\x12\x7f\xfb\x69\x13\x2f\x46\x86\xce\xaa\xe0\x07\x12\x2b\x11\x8d\xeb\x53\xd2\x65\x0a\x1e\x88\x96\x4a\x60\x79\xf1\xfc\x19\x5a\x7c\xd0\x93\xe0\x79\x5d\x5d\xa8\x52\xe8\x6a\x53\xcf\x14\x3d\xa5\x07\x3c\xc9\x5c\x5c\x29\x52\x2d\xb1\x68\x04\x9a\x18\xef\x2b\x15\xc8\x46\x30\xf1\x46\x2e\x58\x56\x15\xad\xd4\x0a\xcc\x3e\x2e\xf2\xd9\xc5\xa8\x9a\x23\x51\xea\x1c\x4f\x16\x8b\xaa\xce\x9b\xe5\x8a\x34\x55\xaa\x18\x1b\x21\xef\x29\x92\x06\xc1\x0d\x8c\x08\xb2\xaa\x08\x40\xc8\x4d\x5b\xf6\x4b\x16\xf3\xd7\x37\x2f\xfe\x01\xb0\xb5\x77\x16\x86\xda\x9f\xe7\xef\x0d\x4d\x4d\x58\x7a\xcc\xe5\x4c\x9d\x57\xd5\xc5\xc4\x5c\x80\xd6\xcc\xe3\xe1\xd7\x7f\xfa\x7a\xca\x2d\x51\xd9\x44\xa2\x57\x4f\xb0\x04\x8a\x9f\x4d\x50\xe0\x0e\x8a\xb8\xc1\x1d\xd3\x7b\x83\x9a\xd0\xfd\x0a\xad\xf2\xb8\x76\x16\x74\x18\xbc\x20\xea\xef\xd8\xc7\xe7\x67\xbf\x78\x25\xe5\x2e\xf1\x44\x3a\x40\x12\xab\xda\x5f\x96\x52\x3f\xa7\x28\x13\xce\xd7\x9e\xb9\x42\x1b\x81\x85\x87\xaf\x40\x15\x10\xa6\x80\xb0\x91\x66\xf0\x45\x1a\x93\x07\x99\x3b\x4d\x0a\xdd\xc8\x32\x93\x10\xb6\xdc\x27\x25\x9e\xc6\xcf\xca\x24\x5c\x7b\x03\xdb\xd4\x8c\x43\x37\x31\x66\x2c\xc8\x6a\x3d\x61\x3f\x5c\xf8\xa8\x23\xf1\xeb\x0d\x93\x20\x30\xfd\x01\x19\x0c\xc2\x8f\xe0\x63\xc3\xbe\x35\xfc\x93\x87\x2a\x7c\xa5\x9f\x8f\x82\x60\x10\xbe\x8e\xfd\xeb\xc3\x87\x90\x0c\x24\xf6\xc9\x6c\x2a\xbb\x4e\x33\xd9\xc8\xd1\x3b\xad\x7b\x43\xd1\xeb\x71\x37\x75\x98\xeb\x60\x5b\x53\xa8\xd1\x1b\xe2\x12\xc3\xa6\xcd\xf6\x96\x30\xa8\xa9\x05\xad\x1b\xc9\x33\x2d\x94\xc4\x67\x58\x96\xa3\xcf\x7b\x86\x8f\x5b\xbb\x86\x1a\xbd\x21\x76\x93\x34\x34\xed\x16\x3b\xf6\x8d\x24\xc5\x0e\xed\xc7\x87\x92\x42\x06\x02\x0c\x90\x0c\x13\x61\xfe\xb0\x93\x01\xe6\xc7\x48\xe0\xe4\x6f\x61\x65\xc6\x5c\x0b\x59\xd4\x4a\x66\xd7\x9c\x69\xf4\xd0\x09\xc0\xc2\x18\xe7\x0f\x1f\xc4\x1d\x8f\xa9\x91\xa3\x24\x97\xa7\x78\x07\xc3\x04\x72\xb3\xcc\x30\x44\xdf\x6b\x16\x2c\x66\x03\x36\x0b\x67\x9e\x03\x38\x13\xdf\xbf\x7a\x3e\xa4\x4b\x80\xb2\xbf\xd8\x30\x4c\x2e\x08\xd6\x99\x03\xc7\xaa\xd2\x8d\xb9\x6a\xae\xb4\xaa\x75\x68\xdb\xf7\xf4\xf8\xd8\x3b\x34\x0f\x85\x82\x77\x1e\x08\x33\x50\x14\xe2\xf9\x33\x1f\xbe\x15\xd3\xa0\x39\x47\xfb\xbf\x54\x55\xa1\x64\xd9\x67\x87\xd6\xc6\x47\xb0\xd3\xa1\xd8\x3a\xed\x20\x0b\x2d\x0a\x75\xef\x9e\xf0\xa1\x78\x42\xcf\xb3\x1d\xd4\x4c\x24\xa3\x6a\xa5\xad\xc5\xe1\x11\x2a\x44\xce\xcf\x19\x4d\xab\x25\x53\x75\x20\xcd\x6e\x51\x0a\xaf\x0d\x14\x3f\x78\x27\x1d\x87\x0e\x1c\xab\x59\x38\x06\x38\x71\x76\xdc\x2d\x0b\xda\x15\x8b\xa1\x65\xde\xcc\xf5\xe3\x60\xa4\x11\x63\x7d\x74\x21\x04\x51\x30\xe3\x8d\xf5\xc8\xac\xa9\x36\xc6\x3f\xe8\x70\x60\x48\x91\xe7\x88\x35\x99\x1e\x4c\xa7\x25\x30\x8a\x91\xc1\xf3\x80\xb4\x2a\xa5\x4d\xc2\x98\x24\x5b\x2c\x83\x51\x53\x41\x18\xcc\x5d\x20\x64\x4b\x48\x8b\x44\xba\x4f\x91\x1b\x4a\xd9\xe4\x97\xea\x55\xa8\xc1\x48\xbe\x49\xf9\x40\x1c\xdb\xfc\x31\x23\x59\xc0\x45\x00\x3d\x1d\x8a\x3c\x1a\x6d\xcb\x91\x78\x1e\x44\x4f\xdb\x0f\x6d\xf6\x0a\x5c\x44\xb2\x49\xc7\xba\xd1\xf7\xcc\x7f\x48\xfb\x12\x86\x35\xa2\x8b\x29\x7c\xa8\xf1\xdd\xfa\x98\xe2\x91\x50\xe5\x72\xb2\xd5\x3c\x79\x07\x84\x6f\x95\x8d\xd2\xcd\x4f\xe1\x68\x7c\xf0\xc8\x54\x04\x83\xa9\x3a\xad\xce\xcc\x87\x42\x87\x5c\xbc\xd1\xe7\x64\x66\xfc\x56\xe4\x6e\x22\x40\xe6\xc6\x72\x11\xd7\xaf\x48\x68\x80\xe7\x9a\x5a\x95\xf8\xb2\xcb\xa2\x05\x27\x27\xce\xa4\xf4\x00\xc6\x43\x61\x93\xf6\xdb\x43\x11\xf8\xea\xd9\x41\x28\x52\xad\xff\x74\x33\x60\x72\xa6\x2f\x36\x80\x48\x8d\x6f\x15\x77\x2d\x57\xc2\x56\x44\x1e\xd1\xe1\xa5\xd7\xa2\x0d\x34\x6f\x3a\x48\xed\x41\x63\x82\x91\xa8\x12\x68\x92\x9f\x89\x0b\xa5\xd6\xda\x46\x61\x66\x51\x64\xf1\x36\xf5\xe1\xc5\x78\xd4\xc0\xc8\x21\x65\x32\x11\xba\xe2\x51\xf8\x66\x4b\x35\xbb\xb0\x2a\x9f\x33\x1f\x0b\x07\x02\xc4\xab\x5a\x19\xce\xcb\x47\xf1\xc3\x31\x90\xb6\x1a\x0e\xa4\xac\x7c\x2e\xb7\x5a\x39\x74\xa8\xb4\x0f\x0f\xd8\xc6\xf2\x20\x30\x51\x54\x44\xd7\x0d\x0f\x91\xfb\x38\x75\x86\xda\x7a\xfc\xa8\xa3\x94\xc1\xa9\xa9\x72\x0c\xc1\x92\xc3\xc0\xc2\xad\x50\x4c\xc7\x4d\xdd\x8a\xc6\xc4\xd8\x51\xd8\x21\xa2\x24\xdd\x78\x4b\x1d\xb5\xd0\xd0\x53\x11\xec\x22\x81\x7a\x09\xb4\x0b\xef\x91\x04\x73\xc1\x03\x08\x45\x60\x7e\xcc\xa6\x1c\x6a\x1d\xa2\xf2\x8f\xcb\xef\xb5\x33\x6e\x16\x69\x2e\xba\xef\xe7\x14\x79\x6c\x79\x97\x59\xa7\x32\xdb\x1b\xdb\x34\xaf\x2f\xf3\x7e\x8a\x01\xf4\x2c\x67\xe7\xa6\x14\xa8\xa0\x6e\x17\xc4\xca\x30\x2c\xaf\x3f\x36\x90\x55\x0a\x14\x56\xb1\x93\x84\x86\x53\xfb\xec\x15\x84\xbb\xa5\x93\x6c\x87\xe0\x66\xc6\x5f\x00\xb1\x48\xad\xe4\xc0\x17\x39\x15\x05\x90\x1a\x1d\xa6\xe1\x84\x26\xf4\x9e\x41\xa7\xe8\xa6\x10\x4f\x07\x9e\x15\x51\xa6\x79\x9f\xc3\x53\x80\xb5\x8c\xf1\x89\x55\xc1\xc7\xc8\xa5\xfe\xd5\x60\x7c\x54\x64\x5e\x00\xb0\x66\xcf\xcd\x52\x5d\xd3\x73\x99\x46\x63\x4e\x9e\x51\xb7\xc3\xa7\x11\x26\x10\x63\x29\x2b\xf6\x66\x57\xad\x08\x0c\x9f\x0d\x0f\x13\xfb\xbb\x0b\x29\x13\x5c\x53\xa0\x41\x4d\xc5\xec\x2b\x0a\x12\xc6\x68\xa8\x2d\x11\x2a\x28\x48\x9f\x4e\x04\xee\x63\xd9\xe2\xf8\x64\x3a\xd1\xb3\xe5\xeb\xcd\x84\xe2\x28\xe2\x94\xf5\xf6\x0a\xbd\x23\xf0\xdb\xdf\xb4\xbe\x95\xe7\xf6\xdf\xb4\x4e\xa7\x3a\xce\x33\x7c\x1f\xe2\x23\xb9\x9c\x9b\x50\xc3\xfa\xf7\x18\x16\xfc\xf0\xc1\xf8\xab\xf1\x03\x97\x79\x3d\x0a\x5f\x65\x10\xba\x15\xea\x8a\x57\x4d\x44\x90\xc8\xb3\x23\xce\x4d\xa0\x4d\x7f\xc4\xa8\x78\xbd\x50\xec\x86\x72\xd4\x2a\x49\xa4\x8e\xcd\xf5\xf3\xf2\x2f\x78\x3a\xc4\x93\x40\x85\x89\x2f\x21\x3e\x18\x39\xce\xbd\x23\xbe\x56\x90\x5c\xb7\xe5\x0f\xe3\xd6\x90\x58\xc1\x4d\x22\x12\x38\x93\x0a\x6c\x3c\x88\x2d\x12\x81\xad\xb2\xd1\xca\x06\xb5\x00\x71\x20\x11\x88\xc3\x46\x95\xf0\x81\x38\xd2\xa1\xc3\xb5\x6a\x36\xeb\x28\x14\x5a\x78\x4a\x5e\xd5\xca\x30\x1a\xda\x9c\x6e\x78\xa7\x71\x21\xdd\xe5\x7a\x0d\x99\x66\x82\xfc\x32\x5f\x88\x63\xf4\x5f\x2c\x2b\x78\xae\x01\x12\x05\xa1\x3a\x04\x59\x2f\x6a\x0c\x49\x81\xb8\x36\xe4\x84\xca\x29\x2c\xa9\x47\xea\x30\x53\x36\xa5\xad\x41\xc0\xa2\x5a\xe4\xb3\xad\x0a\xa6\xbf\x69\xdd\xa5\x58\x82\xe5\xf2\xf3\x1b\xae\xff\x63\x82\xa0\xb4\x22\x9c\x70\xe7\x94\x18\x41\xe2\x1d\xed\xaa\xc7\x73\x75\x47\x9f\xb6\x0d\x97\x77\x0e\x00\x07\x3c\x88\xcc\x1f\x7d\x1e\x0a\xd6\xc9\x6d\x96\x64\x04\xa2\xee\xf1\x83\xe3\xb2\x75\xc9\xfd\x68\x42\x5b\x27\x11\xbd\xce\x3b\x07\xa3\xb0\x8f\x5b\x19\xdc\xd0\x03\x9e\xa5\x0a\xf0\x7a\x16\xe3\x45\x04\x54\x96\x94\x3b\x2e\xe2\xe2\x48\xe7\x7b\xe3\x1a\xe4\x86\x91\x5e\xd7\x4a\x66\x21\xfb\xef\xd2\x46\x51\x1a\x4e\x1c\x78\xa3\x6d\xcc\x48\xf3\xd3\x6f\x59\x90\xac\x73\x77\xdc\x45\xab\x1b\xdc\x2b\xc2\x41\x9c\xb9\xba\xe3\xd1\x6c\x7b\xb6\x8d\x4f\x3a\x50\x70\xb8\x5b\x19\xee\x99\xb6\xdf\xf2\x1c\x6f\x63\x2f\x6f\x3f\xb8\x33\xde\x30\x35\xef\xa4\x4c\x35\x44\x18\xfa\x83\x27\x29\xb6\xce\xe6\xc1\x87\xfb\xe2\x30\x35\x51\xcb\xac\x83\xbf\x73\x1b\x30\x3b\x92\x63\x40\xea\xf3\x86\x67\xc1\xe0\x09\xce\xdb\x59\xdc\xcd\xe1\x8b\xce\xd9\xd0\x2f\x87\x63\xf9\xd1\xb6\xb3\x91\xb8\x2e\x93\x88\x3e\x0c\x40\x75\x84\xff\xd8\xdb\x6d\x90\x60\x07\xc6\xc9\x70\x6d\x21\x9a\x7a\x49\xa6\x25\x53\x81\x3a\xd6\x45\xdb\xa6\xa0\xd4\xc8\x23\x83\xa2\x37\x6f\xbc\x3d\xc6\x3e\xf1\x41\x4c\xa3\x34\x26\xc7\xdf\xa2\xe7\xc4\x50\xfb\xce\x25\x25\x17\x6c\x38\xb5\xb4\x9d\x27\x10\x98\x7e\xab\x05\x4a\x1d\x48\x71\xf2\x83\x5a\xd7\x6a\x26\x1b\x95\x9d\xba\x08\xf3\x38\xa4\xb3\x7b\x03\xeb\xd4\x95\x7c\x57\xd5\xd6\x0d\x7b\xd7\x71\x8e\x79\x7b\x5f\x7a\xf7\x90\x87\xce\x4e\x9f\x64\x8a\x16\x98\x3a\xc7\x36\x90\xe0\xd6\x6b\xf1\xf6\x24\x60\x32\x11\xcf\x4a\x10\xd0\x03\x88\x41\x9c\x28\xc3\x4c\xe5\x25\x10\x54\x3c\x65\xe3\xd6\xb1\x6f\x85\x9b\x4e\x04\x45\x7c\xbe\x28\xab\xda\x47\x45\x64\x5c\x3c\xcb\x8e\xee\x6c\x4c\x86\x82\x41\x29\xb0\xcf\x08\x3a\x8b\x55\x2a\x2f\xf7\xcd\x92\x63\x7a\x3f\xc2\x31\xba\x69\xc3\x8e\xd3\xda\x62\x3b\x9d\xd2\xe6\x65\x8b\x90\x0c\x44\xba\xdc\xde\xda\x8b\x98\xff\x68\xf5\xe5\x92\xda\x27\x0a\xf9\x9e\xb6\x1a\xb2\xc4\xc7\xc9\x62\xdb\x38\x84\x64\x98\xb5\x3e\x40\x59\xd6\xcb\xa0\xe5\x0e\x3e\xe8\xa0\x4f\x2d\x53\x97\x1d\x49\x01\x5c\x60\x2a\x0a\xbf\x27\x5e\xa1\xb5\x92\x0f\x06\xe0\xb2\x41\x5c\x56\x17\x2a\xb3\x01\xa7\x6b\x9e\x9b\xf8\x56\x41\xfb\xda\xf1\xa6\x69\x73\xda\x62\xc5\xdb\x42\x95\x89\x64\xb3\x43\x11\x4a\x69\xe8\x59\x69\x2a\x0f\x86\xe2\xed\x85\xba\x46\x69\x04\xfe\xfa\x33\x74\x82\x3f\xc2\xe8\x87\x24\x78\xbc\xa5\xb4\xd7\x3e\x5b\xed\x5b\x9e\x8d\x79\x1a\x85\xce\xb3\x79\x26\xbc\x70\xda\x8a\x58\xf7\xb6\x43\xc8\x71\xc7\xab\x93\xba\x86\xb2\xf4\xdf\x20\xb8\x4d\x1c\xb6\xe5\xd9\xfb\xa6\x96\xb3\x46\x5b\xef\x41\x6d\xc3\x15\xc3\xc6\x54\x65\x71\x8d\x89\x0b\x45\xb3\x94\x8d\x8b\x91\x11\x85\x0d\x6f\x39\x25\x2c\x54\xf3\xc3\x75\x29\x57\xf9\x0c\x68\xb7\x4d\x70\xc0\x2c\x88\x40\x24\x21\x53\xbb\x29\x77\xf1\x30\x50\x6e\x67\x34\x70\x0e\xd4\x36\x9f\xa1\x3e\x61\x60\x85\x0e\xe1\xe1\xc1\x9a\xa3\xb6\xfd\x66\xfd\xc3\x84\x9d\x65\x2f\xd2\x69\xdd\x69\xaa\x01\xce\xcb\x9d\x4a\x21\x9a\xea\x84\x76\xf4\x92\x19\xc6\xb0\xac\xda\xbe\x5f\x1b\xb3\xff\xde\x3d\x9a\xea\x1d\x96\x50\xf0\xce\x0e\xbf\x5d\xb0\xaa\xc2\xbd\x50\xe4\x02\x13\x42\xf0\xd2\x7a\x9a\xf2\x29\xbb\x16\xad\x08\x87\xc9\xc5\xf0\xe5\xb8\xa6\x89\x70\x02\x2d\x97\xd3\x2a\x76\x5b\xc1\x98\x35\x2f\x64\x29\x17\x68\x31\x03\x59\x72\xa5\xf8\x45\xc9\x8b\x17\x72\x4d\x3e\x2c\xb9\x16\x99\xd2\xf9\xa2\xa4\x97\x82\x6a\x53\x36\x61\x8a\x90\x2f\xdc\xa1\x27\xd3\x63\x78\x6c\x98\xd0\x93\xb3\xdc\x34\xd5\x4a\x36\xf9\x4c\x16\xc5\x75\x3b\x4c\x9f\x1d\xfe\xf6\x51\xfa\xa8\x65\x14\x04\xcd\x06\x52\x4a\x98\x1b\x59\xda\x40\xeb\xf3\xd9\xc4\x5a\x62\x76\x30\x40\x97\xc0\xbd\x08\xd9\xac\x85\x6a\xfa\x17\xea\x3a\xc0\x76\x55\xb2\x88\x7c\xc4\x53\xd9\x7a\xe1\x81\xc7\x9a\xf7\xee\xe1\x1f\x4c\x05\x7e\xd3\xca\x40\x12\xc7\x02\xbc\x50\xd7\x71\xe4\x10\x67\xaa\x40\x63\x2e\xa5\x86\x31\x23\x0b\x0f\x06\xb0\x50\x23\x46\xcd\x34\x4e\xb5\x9d\xe1\x0e\xc3\xe5\x7a\x86\x62\xae\x8f\xc4\x83\x80\x92\x45\xd3\x5e\x01\x28\x83\xf0\x0a\x50\x72\x5b\x88\xf9\xe5\x41\xc5\xe8\xf0\x23\xec\xcc\x74\x50\xb6\x09\x0e\x14\x03\x6c\x9c\x67\x2d\x78\xc1\xf3\x9d\x38\x98\x84\xbb\x94\x7e\xbe\xed\x30\xfc\x0c\x30\xe9\x88\xb4\xd5\xe0\x6a\x83\xd2\x14\x04\xae\x32\x1f\xa7\x07\x11\x46\x84\x59\x88\x22\x78\x6e\xca\x36\x44\x6d\xd9\x6f\x06\xd3\x6f\x93\x10\x35\x9f\x46\xa3\x47\x21\xe5\x6a\xef\x04\x07\x7f\x24\x6c\xb0\xa8\x01\xa1\xf3\x78\x0b\xa6\x7b\x40\xd3\x42\xc1\xc3\xf3\x66\xba\x3d\x1a\x1c\x75\xd7\x0a\x06\xa7\xf3\x7f\x2b\x88\x05\x27\x6e\x13\xd1\x8d\x74\x9c\x7c\xe8\x74\x18\x36\x1a\x36\x71\x9d\x7f\x2f\xce\xd1\x4d\x5b\x9e\x6b\xa0\xef\x10\x2a\xfa\x52\xd5\xe2\xe9\xf1\x31\x50\x50\xa8\xf6\xdd\xac\x5a\x5f\xe3\x83\xec\xcb\x42\x2d\xc4\x73\x5d\x95\xaa\x14\xfd\xe3\xa2\x3a\xaf\x32\x7d\x51\xe5\x03\x31\xb1\xa5\x0f\x1f\x1c\x7e\x35\x82\x84\x6c\x25\x92\xec\xef\xae\xd4\xb9\xce\x1b\x95\xb2\x50\x9d\x69\x9d\x97\xef\xf4\xe4\x9d\xd6\x58\xb7\xc8\x67\xaa\xd4\x4a\xbc\x78\xfe\xc6\xd9\xff\x7b\xe6\x03\x42\x0b\x48\xc3\x57\x98\x5b\x00\x5e\xc9\x40\xa3\x59\x2e\xf0\x45\x39\xd7\xf6\xed\x06\x9e\xa4\x31\x08\x81\xd0\x18\x93\x00\x1d\xbb\xed\x24\x32\x75\xa9\x8a\x6a\xad\x6a\x3d\x5e\x54\xd5\xa2\x50\x30\x9f\x2b\x75\x3e\xc1\xac\x1c\x7a\xf2\xf0\xc1\xe1\x37\x93\x07\x5f\x9a\x39\x56\x2b\x76\x9b\x2c\xa5\xc6\x8e\x6d\xac\x03\xc7\x46\x3c\x3d\x3e\x46\xb5\x48\x18\xcf\xcc\x14\xdf\xbb\xe7\x94\x25\x86\x5f\x79\x7a\x7c\xcc\x5c\xbd\x51\x92\xd5\xf4\x8e\xe5\x22\xd3\x55\x73\xd0\xc2\x06\xa1\xe0\xc8\x24\xad\x25\x75\x46\xda\x57\xfb\xdc\xaa\xae\x82\xe7\x8a\x28\xfe\xcb\xf7\x36\xf8\xde\xdf\xb4\x0e\xd8\x69\x3f\x9e\x55\xe7\xd0\x28\x88\x3e\x0a\x37\x82\x52\xf4\xbb\x97\x3b\x2a\xfe\xd5\x19\x08\x0d\x45\x84\xf7\x71\x50\x44\xec\x75\xd8\x7e\x79\x60\x62\xc9\xb0\xc5\xdc\x0c\x5b\x5b\x40\xb7\x92\x1e\xb2\x28\x26\x70\x10\x0f\x86\x07\xd1\x64\x1d\xdc\xb6\x07\xc7\x44\xbb\x6f\x30\xf3\x2b\x36\x99\xe3\x98\x40\x70\x47\x93\x70\x17\x2b\xce\xfa\xf5\xdd\x38\x57\xae\x46\xd6\x78\x65\xb3\x32\x6c\xf5\x77\x75\x6d\x78\x83\x97\x30\xb4\x91\xce\x34\x75\x37\x70\x15\xe1\x1a\xcc\x39\x9f\xcb\xde\x37\x7c\x2f\xc9\x27\x0e\x94\x3e\x7c\x25\xf4\x5b\xf6\xec\x1f\xae\xc5\xbd\x28\x02\xf9\xfe\x16\x88\x66\x14\x3a\x13\x57\x60\x99\x3f\xec\xd0\xb3\xd0\x11\xbb\x07\x75\x0d\x6a\x1d\x0c\x0f\x30\x7e\x8b\x13\xcc\x51\xb3\x34\x3d\xf8\xee\x5c\x9e\xab\x62\x52\x6f\xca\x26\x5f\xa9\xc9\x52\x15\xe6\xe4\x4d\x94\x5e\x4d\xa8\x26\x3c\x84\x51\xeb\x5f\x61\xcb\x73\xbd\x2e\xe4\xf5\x4f\x72\xa5\xc4\x0d\xf6\xd3\xfb\x6e\x25\x1b\x55\xe7\xb2\x18\x6d\xf2\xc9\xa6\xc9\x0b\xdd\x7b\xd4\x42\x47\x16\x57\xa9\x5e\x20\xfd\xf5\x4f\x8b\x06\xc2\x5e\x47\x12\xcb\x76\xe6\xe2\x31\x47\xd5\x8b\x63\x0f\x4e\xe1\x44\x7b\xb7\x98\x27\xe1\xc7\x23\xbe\xc7\xe7\x52\xdb\xf1\x98\x36\x9b\x95\x3a\x46\xa6\x54\x57\xed\x8a\xbe\xd0\xd5\x7b\x5a\xad\xd6\x86\xaa\x72\xc5\xbb\x2b\x63\x1e\x81\x77\x7c\xdb\xf8\x0d\x95\x0d\x1f\x73\xa1\xa5\x7a\xdf\xf8\x69\x04\xca\x14\xd6\x8a\x7b\x1e\x76\xba\xa7\xf4\xbc\x77\x4a\x2f\x64\x0e\x49\x79\xc4\x16\x9c\x72\xb4\x85\xe0\xad\xba\x2a\xd4\x58\xd5\x75\x55\xf7\x4f\xa6\x07\x2f\xec\x5e\xff\xfc\xfc\x48\xbc\x71\x41\xb7\xce\xa6\x07\x36\x32\x3c\x03\x98\x98\x1e\x9c\x89\xe9\x01\x1a\x30\xae\xeb\xea\x32\xcf\x50\x8a\x00\x5b\x31\x1a\x19\xa2\xa8\x54\x73\xe1\x7b\x08\xf1\xac\xef\x40\x3b\x30\x1d\x42\xda\xdb\x72\x56\xd5\xb5\x39\xac\xd3\x83\xc1\x50\xf4\x7c\xa8\xba\x2b\x73\x01\x51\x4e\x7c\x37\x08\x60\x2b\xa5\xe7\xd7\x8d\x92\xd9\xb8\x77\x3a\x7e\x57\xe5\x65\x1f\xdc\x41\x06\x2d\x1b\xac\x78\x77\x42\x81\x8a\xd3\x09\xb6\xc3\x09\x3d\x00\xe7\xc4\x6e\xbf\x51\x84\x44\x6c\x32\x78\xf4\xc1\xab\xf4\x8a\x17\xc5\xf1\x76\x77\x6c\x99\x21\x48\x6c\xc3\x80\xb6\xed\xbd\x53\xd6\x39\x71\xb5\x46\x0b\x00\xd4\xd5\xee\xb9\x79\xb8\x5f\xd3\x03\xb3\x61\x33\x59\xa2\x6e\xc2\xb0\x36\x75\x9e\x29\x08\xab\x59\xa1\x0d\xda\xbc\x2a\x8a\xea\x2a\x2f\x17\x47\xac\x6b\x0e\x78\x7e\x14\x68\x2f\x87\x3d\x37\x46\xc7\xf6\x46\x11\xfd\x22\x28\x32\x4f\xd8\xf8\xcb\x9d\xf4\xe9\xf8\xbd\x80\x7d\x29\x8b\x1c\xad\x61\x3e\x02\xce\xd6\xc6\x8f\x06\x82\x40\x15\x36\x49\xbe\x33\xb9\x86\x63\x21\xaa\x39\x07\x77\x04\x84\xdd\xb0\x15\xb1\x52\xbc\x1b\x4d\x19\x91\xb3\xf7\xd9\xf4\xc0\x0f\x1d\xe3\x3c\x1c\xfc\xe9\xc1\xa0\x63\x6a\x21\xab\x1f\xfa\x8b\xfa\x81\xe8\x32\x84\x20\x8a\x2a\x4b\x31\xbe\xcd\x32\x2f\x2f\x8a\xaa\x5a\x4f\x20\x80\xec\xe8\x42\x5d\x8f\x20\x04\x91\x90\xc0\x8a\xad\x73\x1b\xcd\x15\xfc\x41\x4d\x9d\xbf\xab\xeb\xe3\xa6\xaa\x95\x35\xf9\xd0\x81\xa0\x60\x24\x68\xe8\x60\x68\xf0\xe0\x10\xfe\xff\x30\x8c\x1b\x47\x8c\xc8\xe6\x1c\xe3\x18\x3e\xc6\x98\x47\x56\x40\x3b\x8c\x54\xdc\xb6\x1e\x7f\x97\xf0\x4d\x0d\x67\xe9\x35\x1b\x80\x9f\xd0\x19\x09\xf2\x87\x43\x57\xb9\xf5\x04\x6d\x3f\xd8\xba\x6e\x96\x78\x3d\xc1\xdd\xd7\x16\x82\x5a\x6b\xdb\x7f\x51\x8c\xdc\xba\x7a\x4f\xfc\x34\xa8\xea\xc3\x81\x38\x8a\x45\x61\x98\x0b\x1a\x4c\xb1\xe9\xbc\xa5\x68\x64\x9f\x38\x25\x37\x01\xea\x0e\x7a\xb0\x57\xf4\x4d\x9b\xaf\x09\x90\xe0\x91\xe7\xb5\x4a\xa5\x5d\xce\xd1\xde\x78\x3c\x79\xb3\x54\x2b\xf5\x0a\x8f\x60\x3d\xc1\xaf\xbd\x47\xed\xd0\xdb\x10\x8b\x24\xd7\x8d\x25\x84\xf8\xea\x04\xaa\x75\x78\xea\xb1\x31\x84\xb5\xc8\xf0\x42\xb3\xc6\x6b\xe8\x10\x52\xa1\x1d\xf6\xf9\x26\x2f\x9a\x51\x5e\x42\xd7\x6b\xad\x36\x59\xe5\x08\x4b\xff\x08\xac\x7d\x55\x36\x14\x47\xf4\x70\x6f\xfe\x9c\x57\xb3\x8d\x36\x7f\xa9\x66\x36\x1e\x78\x31\xf3\x97\xe5\xb5\xc8\x2a\x34\xb6\x03\x9b\x3d\xfb\x34\x87\xa1\xba\x60\xec\x27\xb4\x04\xa5\x3d\xfd\x92\x35\x59\xc8\x48\x30\xcd\x63\x4e\x9a\xd5\x5c\x3c\x44\xb1\xef\x39\x58\xa9\x55\x57\x94\xd4\xa3\xa9\xfc\x5d\x60\x7d\xa7\x8b\x6b\x01\x9b\x9f\xdb\xd4\xc9\xda\xac\xfd\x4a\x15\x85\x90\x28\x9d\x9e\x2b\x43\xc2\x36\x65\x53\x6d\x20\xa4\xd2\xf9\xb5\xd0\x70\x3b\xa1\xef\xba\xed\x31\x12\xd9\x10\x28\x9e\xcf\x3a\xe9\x11\x54\x7a\x43\xd1\xb3\x60\x31\x7f\x03\x65\x37\x7f\x10\x80\xdc\x9f\xff\xcc\x75\x7e\x5e\x28\xf3\xbb\x56\xff\xda\xe4\x35\xd5\x7f\xbf\x96\x65\x86\x7f\xa3\x41\xa2\xca\x7a\xa7\x2c\x1a\xdb\xe7\x88\xab\x6c\x9d\xad\x3e\x36\xae\x32\x75\xf1\x29\x51\x95\x27\x18\xca\xfc\x79\xd3\xb3\xa4\x11\x60\xdf\x15\xdf\x9c\xe9\x14\x26\xe7\x45\x75\x3e\xf9\x4a\x7d\x2d\x1f\xfc\x21\xcb\xbe\x9c\xff\xf1\xfc\xeb\x3f\xfc\xf1\xe1\x3c\xcb\xbe\x94\xe7\x0f\x0f\xbf\xfe\xe6\xeb\xc3\xec\x4f\xea\xab\xaf\xbe\x9e\x3d\x7c\xf0\xe5\x97\x87\x13\x5d\xcf\x50\xaa\x98\x84\x02\xe9\x53\xcb\xda\x8d\xdf\xe9\x84\xfc\xdb\x11\xd9\xd9\xb5\xfa\x5d\x64\x0f\x6b\xb6\x71\x97\x30\xea\x3f\x8d\x64\xcf\xa4\x06\x5e\xec\xcd\xf4\x82\x52\x66\xfc\x11\xf5\xc2\xd3\x52\x60\xbc\x91\xa3\x74\x55\xd7\xb1\xfb\xea\xd9\xcd\x57\xdc\xc4\x87\x17\xab\x79\xfe\xde\x1b\x0e\x46\x1f\xf8\xa4\xc2\xbe\xf8\xa4\x7a\xef\xb4\xee\xf1\x49\xf1\xaa\xed\x49\x69\xa5\xb8\x75\x98\xf9\xe9\x2a\xd1\xb7\xa8\x6e\x30\x58\x30\x92\xf9\xee\xa5\x7c\xa5\x32\x37\x6f\xd7\xb2\xd7\xb3\xad\x38\xe7\x01\xa3\x62\xf4\x61\x2f\xfd\xb7\x43\x78\xdb\x2f\x0b\xd5\xfc\x04\x5e\x5c\xf0\x31\x0c\x29\x1e\x7f\xeb\xef\x17\xd9\xfb\x63\x84\x84\x20\x1a\x38\x46\x74\x4f\xb2\xa9\x57\xb2\x2e\xfb\x27\xbd\x80\x49\xdd\x1a\xe7\xdb\x50\xb1\x37\x44\x15\x9e\x7a\x22\x82\xc1\x23\xd7\xeb\x4a\x23\xf9\x58\xd4\xd5\x15\xbe\x2e\xae\x36\xb3\xa5\x17\xaf\xb6\x31\x88\xec\x15\x3a\x0e\xf0\x3c\xdd\x12\x22\xdd\xbd\x3c\x85\x11\xe2\xc0\x0c\x82\x7d\x75\x26\x03\xe6\x0b\x46\xe5\xe0\x79\x2d\x1a\xd9\xe4\x33\xf1\xe2\xe7\xe7\xd8\xe4\x49\xe8\x96\xb1\xc2\xd0\x3d\x86\xb6\x58\xad\x4c\xef\xc5\x26\xef\x0d\xc8\x66\xea\xde\x3d\x71\x27\x31\x54\x91\x97\x17\xf0\x2d\x38\xc0\xa1\x41\xc6\x2f\x18\x12\x0e\xc3\x76\x43\x0e\x81\x25\x04\xba\x74\x04\x7f\x88\x7e\x39\x97\xaa\x76\x42\xac\x11\x78\x0c\x94\x29\x40\x02\xf8\x59\x11\xb7\xaf\xc7\x1c\x0d\x82\x4b\x2d\xc8\x87\x3d\x06\x51\xb4\x95\x13\x8e\x85\x00\x7f\xb1\xc9\x47\xfe\x18\xb8\x36\x29\xd9\x29\x88\xd0\x1e\x1f\x1e\x8a\xbb\xee\x38\x75\x58\x12\x9e\xa7\x54\xe7\x81\xa8\x9b\x80\xa9\x61\x0c\xd4\x09\xf2\x4b\xa7\xe2\xc3\x07\x3c\xbf\x70\x1c\x7a\xa9\x85\xac\x3b\x63\xb8\xb3\x60\xe7\x76\x22\x58\x39\x9e\x5e\xfb\xdc\x26\x0d\x36\x93\xe7\xf4\x71\xf7\x39\x4d\x8c\x9f\x80\x57\x4c\x69\x6f\x33\x2b\x64\x70\xe7\xed\x7d\xb1\x00\xdf\x67\xa5\x10\xd3\x42\x15\x6b\x34\x1e\xc8\xd4\xf9\x66\xb1\x90\xe7\x79\x91\x37\xd7\x41\xea\xc1\xc4\x5e\x75\xc7\xde\xdf\x6f\xed\xbb\xbb\x8c\x17\x80\xab\xed\x8a\x34\xbe\x6b\x38\xd6\xf8\x26\xd4\x94\xd2\xcb\x13\xb1\xef\x4d\x5e\x5e\x8f\xa8\xa8\xc7\x15\xa2\xcc\xe2\xcc\x2a\x43\xcd\x95\xe7\xd3\x9e\x54\x57\xe2\xb1\xf8\x41\x36\x6a\x5c\x56\x57\x20\x96\x99\xe2\x79\x09\xba\x70\xfd\x93\x86\x7d\xb2\x3f\x31\x3f\x60\x75\xe5\x6a\x99\x8e\x5d\x1d\xd0\xb2\x43\x95\xfb\xf7\xb1\x92\x0f\x1f\x49\x7f\xa0\x6b\x42\x14\xdf\x96\xf6\x20\x4c\x0e\x78\xfb\x84\xd4\x81\xde\xd0\x54\xc1\x33\xc8\xec\x30\xe2\x14\xd0\x62\x87\x49\x13\xb3\x0e\x63\x0a\xb8\x4d\xa1\x4e\xec\xca\x4f\xc5\x63\x18\x2a\x56\xcf\xf1\x04\xd4\x43\xbb\xbc\x30\x91\xe1\x1e\x99\x88\x5b\x74\xd9\xf2\xc2\x64\x55\xd1\xca\xab\xef\xec\x31\xcd\x9c\x24\x6a\x02\x86\x42\x57\x78\xf1\x51\xac\xcf\x0b\xa5\xd6\x62\x56\x19\xe1\xa7\x94\x57\x46\x08\x42\x41\x6e\x35\x4e\x0f\x96\x51\x73\xd4\x84\x39\xc3\x29\x57\x2f\xab\xca\x5e\xd3\x39\x35\x6d\xe4\x02\x60\xcc\xf1\x6e\xc0\x57\xb2\xa1\xd0\x39\x7a\x6c\x42\xb2\x83\x52\x2c\x21\xe6\xd1\x8e\x31\xe8\x41\xae\xb5\x6c\x8c\x04\x6b\x96\xe1\x4d\x4a\x37\xde\x16\x11\x11\x83\xa1\x74\x8e\xdf\x0d\xad\x76\x28\x4c\x65\x0e\x49\x60\xb6\x01\x96\xd8\x0e\x42\x93\x38\x66\x53\x44\xfa\x5b\x32\x4b\x8c\x43\x3e\x05\x76\x45\x10\x49\xec\x34\x7a\x92\xe6\x46\x45\x2d\xdc\x6d\xe5\x28\xb3\x0a\x86\x8e\x0e\xed\x6c\xf1\x43\x64\x58\xc4\xad\x25\x29\x1f\x35\xbb\x85\x10\xc1\x2d\xb4\x4e\x21\x39\x04\xfe\x8a\xd1\x9c\x03\xc9\xe3\xb9\x4d\xb0\xf9\x51\xe9\x94\xe9\x8e\xb0\x21\x70\x52\x0e\xe5\xb8\x67\x16\x94\xaf\x83\xf3\xf8\x88\x82\x59\x5e\x29\xcb\x2b\x22\xda\xd9\xb9\x0c\xd1\xb3\xaf\x6c\xf2\x9a\x04\xc9\x5c\x8b\x0c\x5f\x09\xc1\x34\x08\xab\xe3\x1b\x1f\xc3\x41\x6f\xfc\x4b\xb9\xf5\xe9\xa8\x49\x8f\x8d\xe3\x90\x55\xc0\x29\xc5\x4e\xe9\xcf\x40\xa9\xe9\x8c\xdf\x8a\xc2\x5a\x53\xcb\xa2\xb0\xe9\x9c\xac\x42\x41\x65\x68\x14\x17\x74\x90\x53\xe4\xb6\x00\xd3\x69\x5a\x20\xb7\xcb\x42\xb3\x64\x1c\xf4\x9f\x83\x94\x4b\x36\x8e\xd3\x83\x1d\x19\x98\x83\x10\xa0\xf4\x2e\xf6\x81\x1e\xc1\x57\x2a\xce\xd8\xd0\x75\x1a\x5e\xb3\x34\xf1\x41\xf5\x00\xf3\xa3\xaa\x16\x75\xbb\xac\xe9\xec\x7f\x9f\x1a\xdc\xf0\xc7\x34\x39\x09\x69\x09\x68\x8b\x9c\x50\x51\x37\x2a\x4b\x84\x3c\xf4\xff\x9d\xd7\x4a\x5e\x44\xa5\x37\xfc\x27\xfb\x91\xf2\xd2\x8f\x08\x0e\xc7\x74\x77\x30\xdb\xb8\x3e\x77\x6b\x58\xc9\xf5\xd0\xc6\xdd\xf1\x66\xdb\x09\x8b\xca\x14\x89\x0c\x60\xec\xed\x5a\xed\x8e\x26\xab\x71\x1c\x33\x15\xfb\x6f\x31\x7b\x85\xa3\x43\xf0\x1b\x73\x9a\x0f\x12\xd7\x6a\x08\x06\xc1\xad\x62\x6e\xb6\xe8\x4e\x90\xa1\xd8\xf1\x62\x6f\x1f\x28\x69\xc2\xee\x91\xd9\x3d\xa8\x63\xc0\x41\xb8\x0f\x9c\x30\x87\xcf\xd3\xe9\x58\x22\x87\xf8\xaa\x1e\xab\x62\x92\xe9\x2b\xe9\xd5\x9f\xa9\x60\x82\xdc\x95\x2d\x8b\x54\x7c\xd6\x8f\x0d\x2d\x69\xa2\xce\xd0\x6f\xbc\x94\xfa\xe5\x55\x69\x23\x9f\x8d\x67\xb2\x28\x9c\xf1\x01\x1a\xd2\x05\x9b\xb3\xfd\x61\xbe\x73\x03\x02\x66\xd5\x3d\xd8\xb7\x44\x60\x0b\xd1\xc0\x3f\xca\x2d\x78\xb0\xed\x8d\xbf\xb7\xfb\x89\x3f\x60\x68\x5d\x10\x99\x24\x3b\x2b\x21\x82\xde\x77\x28\x43\xf7\x1e\xd9\x42\xa7\x5a\xb1\x9f\x84\x6f\x82\x22\xf0\x53\x1b\x16\x04\xaf\x96\x5b\x98\x7a\x26\xda\x93\xc1\x63\x87\x3b\x16\x18\x61\x91\x1d\x71\xcf\xcf\xd4\x7d\x82\x35\xc8\x86\x17\xd5\xe4\xf9\xdc\x8e\x45\xe7\xf5\x82\xed\x6f\x68\xd5\xd1\x2e\xcf\xf5\x2b\x9b\xe2\x3e\x0a\xf6\xc4\x9a\x5d\xa8\xeb\xf4\x38\xf4\x57\x6a\x7a\xa5\xba\x72\xfb\xd3\xdf\xe1\x63\x61\x63\x58\x9b\x0e\x08\xdd\x06\x09\x1f\x5d\xeb\x30\x9f\x30\xd6\xe6\x83\x63\x44\x3c\xaa\x6b\x41\x7f\x62\x0b\x4e\xd3\xee\xb7\xd8\x92\x6e\x8f\x7e\xb7\x97\x7a\x14\x56\x22\x61\x8d\x9b\xc0\x81\x2d\x36\xb9\xb1\xff\x0f\x15\x81\xd0\x91\xf4\x64\xc7\x89\x2e\x14\xea\x2a\xd2\x29\x88\xc9\xa9\x09\xdc\xb3\xc8\x39\xa2\xa6\x20\x01\x65\xe4\x24\x9c\xf0\x78\x90\x59\x16\xcf\x8a\x8a\xb6\x3b\x24\x31\xe9\x29\xda\x8c\x64\xb3\x04\x46\x41\xba\xb9\x4f\x76\x08\x89\x42\x5f\x6c\x8f\x03\xb2\x25\xec\x45\x20\x75\xb5\xb7\x20\xa8\xb6\x2d\xb4\x84\xfe\x1c\x49\x9f\xb7\x4c\x24\x0a\x09\x13\x91\xe3\x04\x3a\x46\x71\x0d\xb0\x06\x92\x45\x95\x7d\x24\xcd\xe3\xcd\x19\xc9\xfb\x2c\x14\x6f\x1b\x5d\x23\x84\xfb\x48\xc2\xd6\x45\x27\xf7\x24\x78\x01\x51\x82\x56\x63\xbd\x39\xd7\x4d\xdd\xb7\xd7\x0c\x31\x03\x83\xc4\x94\x39\xce\x33\x6d\x43\x44\xb8\x76\x3a\xaa\x76\xd1\xce\x84\xab\xc0\x43\x47\x9d\xf8\x6e\x75\x10\xa7\x87\xdb\xf1\x31\xde\xd6\x18\x2d\x6d\x50\xd1\x30\x68\x91\x6b\x75\xe4\xb2\xdc\xa5\xb0\x95\x4f\x2f\x42\x56\xad\xd6\x12\x9e\x0f\x5f\xab\xc5\xb3\xf7\x6b\xf1\x58\x4c\xa6\x53\xfd\xc5\xd0\xfc\x6f\xb2\x80\x6a\x9c\x6a\x1d\xcf\xaa\x75\x00\x53\xf3\x9b\x3d\xa5\xad\x65\x0d\x8e\x16\x2e\x16\x8b\x5e\x17\x79\xd3\x8f\x46\xf1\x4f\x2b\xd0\x3e\xe3\x99\x3e\x93\x11\x24\x4c\xaf\x49\x3e\x90\xda\xdf\x7f\x8c\x7f\x81\x49\x0d\x86\x5b\x86\x36\x27\xf9\x29\x65\x7c\x61\x26\x97\xf4\x45\xdc\x17\x87\xa7\x03\xd6\x43\x6f\x28\x7a\x09\x53\x4a\xac\x60\x59\x65\x07\x8c\xa5\x2c\xb3\x42\xfd\x04\x9a\xe9\x14\x9b\xc2\xa8\x5d\xf8\xc6\x08\x3b\x18\xbb\x7a\x5b\xc9\xb1\x76\x02\x5a\xf0\xfa\xe4\xc4\x14\xf1\x84\x54\x12\xb2\x39\xf5\x81\xce\x99\xef\xa1\x8e\x02\x1a\x3a\x70\x96\x18\x9c\x42\x84\xf1\xe5\xdc\x6b\x1b\x3a\x46\x04\xd7\x12\xd4\x3c\x31\x7f\x9f\xee\x3c\x35\x76\xbf\x8f\x3c\x92\xf8\x4e\x5c\x8a\xb0\x41\xf2\x40\x05\xaa\x16\xd9\x9c\x76\x80\xda\x22\x31\x02\xfb\x73\xc1\x38\x80\x51\x5a\xc9\x44\xe2\xfa\xda\xbe\xfd\xf6\xbe\x83\x58\x79\xa6\xc8\x92\xa7\x07\x43\x21\x1b\x4b\x9b\x28\x17\x7e\x4b\xad\x14\x51\x37\x07\x28\xde\x91\xef\x25\x06\xdd\xa3\x6d\x1b\x16\x11\x39\x14\xee\x6f\xb1\x69\xf6\xaf\x70\x7f\x3a\xb5\x60\x61\x6a\xbb\xa7\x55\x79\xa9\xbc\xcd\x0b\xe2\x6b\x53\x59\xd2\x62\x90\x00\xd5\x30\x60\xe5\x01\x82\x45\x55\xe7\x8b\xbc\x84\x97\x38\xeb\xd7\x4c\x5e\x0d\x10\xa6\x5e\xfc\x6a\x56\x75\x03\x5d\x61\xb1\x5c\xe7\x62\xbd\x39\x2f\xf2\x59\x2a\xf7\xc7\x3b\xad\x11\x2b\x5a\x97\x69\x42\xc1\xbd\x2d\x92\xc3\x1d\x64\x13\x43\x5d\xb6\xff\xec\xbc\xad\x65\x2a\x71\x94\xba\x4a\xca\x2b\xe9\x51\x53\x4f\x4a\xa6\xa6\x41\xb2\xc7\x84\x64\xf6\x11\x92\x23\x59\x78\x0d\xd2\x64\xba\x1e\x5c\xfc\x94\x02\x76\x62\xbf\x19\x05\x81\x27\x9d\x89\x40\x18\x54\xd2\x87\x81\x8d\x5e\x0a\x6c\xbc\x46\xe7\x59\x49\x9c\x09\x1c\x1c\xfc\x16\x76\x69\x16\x9b\xfc\xd0\xee\x23\x90\xbe\xdd\x79\xb0\x17\x49\x18\xa6\x71\x5b\x7e\x65\xdb\x24\x11\x7b\xcf\x1b\x21\xb8\xe3\x0a\x0f\xc9\x69\xd9\xdd\x51\x61\xfa\xd0\x7e\x7d\x88\xa9\x55\x1c\x8c\x93\x0c\x4c\x21\xe8\x7e\xe8\xa4\xb7\xd7\x35\x13\xd4\xed\xa2\x93\x89\xab\x2d\xf9\x38\xc4\x7f\xc5\xcf\x2b\xb6\x06\xfb\x39\xdd\xa2\x48\x72\xe7\xf2\xff\xea\x90\xfe\x0f\xd1\x21\x6d\x7f\x39\xdd\x93\xe5\xf4\x94\xc7\xd7\xb8\xe7\xbe\xd4\x6a\xce\x1b\xde\xed\x9f\x4c\xa7\x57\xa3\xd3\xfb\x03\xa8\xf1\xdf\x7c\x29\xf1\x2b\x09\x0f\x2d\xcb\x15\x81\x0a\x0f\xc6\xfb\xbb\x30\x62\x06\xc9\xee\xd6\x6a\xce\xad\x39\xc7\x01\x29\x59\xa8\xe6\x35\x85\x29\x54\x73\x9e\xac\x26\x74\xfd\x6d\x99\xcd\xac\x64\x33\x5b\x22\xc6\x85\x78\x6f\xdf\x65\x5d\x6a\x11\xab\x29\x81\xaa\x1f\x3e\x88\x28\x85\x1d\xff\x9c\x08\x2a\x1c\x1a\x63\x24\x1e\x97\xc2\x18\xad\x3a\x4c\x18\x11\xa8\xe7\x3f\x39\xdd\xca\x53\x17\xa6\x0d\x9c\x43\x31\x86\x0e\xc5\xb1\x45\x54\xf0\x09\xcc\x6c\x82\x7a\xc8\x5a\x96\xb3\x04\xc1\x1e\xc6\xee\x42\x82\xb4\x0c\x1f\x3e\x30\x98\x79\x55\xc1\x60\x4b\x26\x60\xb6\x78\x2f\x08\xdf\x24\x6f\x0c\xda\xff\x57\x84\xfd\x73\xdd\x47\x04\x7e\x05\xfa\x7e\x3c\x14\xaf\x7c\x9e\x67\x7e\x4b\xdb\x1c\x1c\x86\x6c\xfa\x8a\xdb\x04\x30\xeb\x70\x64\x06\xe0\xad\xfd\x90\xbb\x5b\xd7\x4a\x1b\x5a\xce\x04\xb8\x4e\x11\x8e\xcf\x71\x0b\x41\x76\x3c\x47\xd4\xa4\x83\x2c\xbf\xc3\x31\xde\x89\x3f\xc7\x2b\x71\x63\xbc\x0b\xc6\xe0\xab\x76\x8b\xf5\xa3\xbc\x8b\x5f\x8e\x71\x85\x03\xbb\x52\x2b\x28\xa2\x45\x2f\x06\x34\x95\x45\x21\xee\x89\xf3\x6b\x4a\x9f\x05\xf3\xaf\x9c\x91\xd4\x3d\x9f\xa3\x96\x58\x1a\xfe\x18\xe8\xbb\xc5\x99\x78\x93\xb3\x7b\x3d\x6b\xb2\x25\x9e\xd8\x8f\x84\x1f\x7d\x4e\x1e\x2d\x5e\x18\xac\xa3\xc1\xbd\x18\x8c\xed\x76\x5a\xe1\xc1\x24\x92\x18\xb9\x50\x0d\x85\x9c\x21\x13\x3c\x46\x7b\xd6\xb5\xba\x7c\x19\xb1\xd1\x93\x89\xb0\xb1\x80\x5c\x04\x6a\x9b\x9d\xc2\x59\x25\x97\xd5\x95\xb8\xc2\xa4\xd2\x22\x2f\x4d\x31\x24\xe5\xa4\xc4\xbd\x4e\xe6\x62\xbd\x47\x17\x19\x48\x34\xac\xc2\x30\x0a\x76\x76\xc4\x3f\xfa\xb8\x66\x56\xbe\x89\xd0\x3f\x2f\x17\xff\x50\x97\x90\x11\x89\x4b\x8e\x63\xfe\x8d\x9a\x44\xd5\xc3\x9f\x91\x61\xf0\xa1\x91\xd0\x79\x85\xfb\xcc\xd6\x33\x14\x58\x83\x75\x05\xd2\x2b\x77\x9a\xf1\x5d\x85\x1d\xc7\xd1\xcb\x3c\x81\x0a\x75\xaf\xf7\xc5\x61\xc2\xae\xc4\xe3\x2c\xc8\x37\x78\x2d\x69\xd5\xb8\xe9\x99\xb3\x36\x5b\x16\x79\xe6\x10\x97\x85\x5e\x22\x11\x31\xb0\xb7\x0c\x70\x8b\xab\xf8\x3a\x19\xe4\x96\x79\x4e\x2a\xa6\xc5\x56\x7e\x39\xb0\x97\xd8\x62\xe6\x80\xd9\x43\x6d\x9c\x7a\xf6\xfa\x3b\x6e\xc9\x38\xd1\x36\x05\x54\xcf\x5e\xc5\x6d\xa2\xd7\x65\xa9\x02\x04\x91\x98\x02\x43\xdd\x0c\x79\x4d\x9c\xf5\x47\xa9\xfa\x4f\x7d\x9c\x7e\x6a\xca\xe4\xc4\x47\xfc\x2e\xbe\xe3\x86\xb8\x77\x4f\xdc\x49\xb4\x4f\x58\xbb\x78\x34\x64\x87\xdd\xc1\x25\x38\xf1\xad\x64\xb7\x14\xf3\x98\xc6\x69\x91\x59\x26\x40\xb5\xaf\x36\x7c\xc4\x66\x86\x09\x4e\xd7\x61\xb0\xf4\x1f\xf2\xdf\x79\x61\x69\x86\xbd\xc4\x6d\x2f\xcc\xdb\xe1\xdd\x46\x37\x60\xd6\x64\xb6\xc0\x8f\x3e\x99\x00\x59\x0e\xf8\x3f\x43\x87\xc9\x7d\xc5\xe6\x3a\x0e\x69\xfd\x1d\xbf\xb1\x03\xb6\xc9\x08\x99\x6d\xfc\x57\xeb\x3a\x30\xdc\x9c\x0e\xfa\xd7\x3c\x63\x16\x69\x47\x2d\x39\x77\x3c\xed\x90\x8d\xca\xdf\xef\xfd\x89\xfe\x34\x95\x8f\xd8\xa2\xf6\x11\x81\xea\x27\x88\x90\x94\xc4\xa3\xd0\xf8\xe6\x15\x2c\x9d\x25\x94\xa0\x6c\x01\x3e\xc7\x32\x11\x19\xe0\xbf\x9a\x4a\xa8\x52\x6f\x6a\x9b\x53\x00\x72\xb9\xb9\xd7\x9c\x8e\x25\x23\xbe\x70\xc3\x41\x33\xf0\x8f\x45\x75\x25\xd4\xfb\xb5\x9a\x35\x5a\xac\xaa\xda\xd1\x22\x71\xbe\x69\xd0\x71\xc9\x0c\xdc\x6b\x84\xf5\xd3\x09\xe6\xfd\x7d\x99\x89\xb9\xe9\x22\xab\x94\x36\xb5\x2e\x4a\x30\x66\xcf\x35\x9a\x10\xc9\xe2\x4a\x5e\x9b\x7b\xcc\x46\x31\x04\x92\x82\x8e\x3b\xe6\x82\x33\x2b\xb3\x2f\x7c\x2b\xd5\x2c\xab\xb0\x7b\x6e\x06\x66\x8b\xfd\x1e\x3a\xd4\xf7\x2f\x3c\x76\x23\xbb\xb6\xac\x75\x5a\xf8\xe6\xa5\xd8\xe9\x4e\x4b\xb6\x98\x09\xf0\x04\xb4\x43\x4b\x10\xda\x58\x86\xbf\x77\xa8\x01\x7e\xb2\x6c\xc8\xc1\xf0\x60\xf2\x45\x14\x38\x56\x94\xd5\xe8\x52\x22\x3f\x31\x57\xf5\xa8\x51\xab\x75\x61\x0e\xbd\x8d\xee\xb1\x59\xaf\x55\x3d\x93\x5a\xbd\x92\x4d\xa3\xea\xd2\x48\x7e\x27\xdf\x8f\xfe\xff\xa7\x93\x05\xf9\x62\x6a\xf6\xe5\xbf\x56\x7a\x44\x0d\x67\xe4\xec\xf7\x6b\xa8\x50\x6e\xaa\xbf\x5e\xaf\x97\xaa\xfc\x47\x75\xa5\x6a\x14\x91\x42\xab\xd9\xde\xa8\x27\xee\x0b\xf8\x30\x6e\x2a\xa8\xf6\x54\x6a\xd5\x1f\xb4\x54\xd3\xd0\x8f\x0d\x15\x0b\x8e\x45\xec\xa5\x19\xc2\xec\x83\x3b\x61\xa8\x0d\xc0\x3a\xb1\xd0\x06\x35\x51\xdf\x3e\x0d\x9f\x9b\x96\x3f\xa1\x7f\x03\x68\x03\x2d\xcd\x88\x81\x32\x0c\x97\x35\x60\xcb\xe9\xb3\xae\xc5\x63\x0f\xad\x71\xa3\x74\xd3\x87\xde\x07\xe2\x09\xad\x1a\x07\x3b\xc2\x7f\x07\xe9\x1d\x6d\x2f\x1b\x76\x96\x94\x00\xee\x2b\xa9\x01\xdc\xef\x11\xa0\xd8\xc8\xcc\xa3\x17\xc4\xbc\xb1\xd2\xfa\x4c\xae\x54\x01\x36\x78\x68\x9e\x07\x99\x08\xd1\x0f\xae\xa9\x44\x26\xf5\xd2\x09\xf0\x59\x5b\x3e\x47\x1d\xcc\x0d\x22\x32\x7e\xb1\x28\x4c\x9f\xda\x72\xfa\x0c\x47\x86\xdd\xe5\x37\x36\xb1\x09\x97\x98\xc2\x8c\x59\xa5\xee\xb8\xe7\xad\xa6\x28\xbe\xe0\x47\x23\xe7\x3e\xf2\x04\x9b\x1e\x79\x38\x01\x65\xb3\x87\xd7\x8d\xea\x94\x41\x6d\xed\xbb\x45\x2e\xf8\x34\x9e\xcb\xa2\x38\x97\xb3\x8b\x50\x97\x1d\x46\xab\x8b\x6b\x0e\xfc\x38\xbe\xd4\x0e\xe6\x4b\xc6\x2b\xb9\xee\x33\x18\x51\xca\xe3\x74\xdb\x16\x2c\xd9\x78\x09\xba\xe2\x3a\x09\xd3\x13\x7f\x5f\x18\x6a\xbc\x05\x13\xce\xaf\x6d\xd3\xbc\x5c\xa0\xfe\xc6\x8c\x61\x31\x44\xd5\xf9\xbf\x53\xd8\x11\x6a\x6f\xe2\x27\x04\x18\x0f\xcf\x78\xeb\x09\xa1\xcd\xa3\xee\x02\xf4\x20\xb4\x2e\xff\x2b\x28\x66\x89\x09\x81\x30\x7b\xdf\xcd\xab\xb2\x19\xcd\xe5\x4c\x0d\xe9\x2e\x41\x43\xed\x4b\x85\x2e\xc5\xeb\xc2\xc6\x7c\x35\x28\x26\x4b\x21\x4d\xe7\x2d\xe1\x37\x91\xfd\x03\x01\xdf\x9d\xfa\x83\xde\xc1\x28\xd3\x47\x6a\xd7\x6c\x12\x90\x2d\x5e\x34\x81\x6d\x72\x74\x8d\xb4\x4f\x54\x07\xeb\xff\x74\x29\xcb\x85\x02\x0b\x46\x0c\x8d\x38\x14\x78\xc3\xb7\x14\xe5\x5d\x47\xa9\xfd\xe2\x11\x44\x78\xe4\xa2\x96\x3b\x6b\xa0\xd7\x10\x8f\x5b\x87\xcf\xa7\x16\xbd\x92\x10\xaa\xdf\x63\xa0\xd9\x02\xa0\xb9\x91\xff\xcf\x1a\x66\x11\xf6\x3c\x48\xcd\xa4\x76\x86\x9b\x61\x65\xe7\x64\x6f\x06\x7f\x6a\x58\x17\x60\x39\x72\x88\xb1\x8b\x06\xd0\x0e\xf7\xd1\x72\xfd\x0a\x25\x33\x60\xa7\xe0\x0b\x44\xcd\x90\xe7\xd5\xa5\x1a\xef\x78\x95\xb8\xcd\x6d\xee\xf4\xfe\x6c\x8f\x8e\xc2\x9f\xdb\x2e\x7c\x77\x98\x1e\xf1\x6b\xe1\xd7\x76\x94\xae\xa4\x9d\xe1\xda\x60\x74\xab\x2a\xc5\xec\x7a\x02\x51\xd0\xd6\xef\xc5\x91\xe8\xad\xdf\x5b\x2b\xc4\x95\xde\xd9\x64\xa5\x4d\x93\x95\xb6\x4d\xcc\xe5\x89\x7a\xa6\x1d\x43\x51\xbd\x23\xd1\xfb\x5f\xdc\x63\xdf\x5a\x23\x41\x2a\xf5\x11\x1a\x59\x8d\x08\x00\xa3\x4d\x99\x63\x52\x43\xb7\x7d\xa6\x44\x7b\x9a\x04\x52\xac\x33\x84\xf7\x7e\xe9\xd4\xc1\xcf\xa6\xb6\x8d\x29\x01\x4c\x6a\xbe\xc2\x24\x11\x6b\x17\x13\xcb\x7c\xea\x49\xfb\x61\x94\xa9\x42\x5e\xf7\x8e\xc4\x0a\x1f\xbc\xf9\x97\x0d\x3a\xab\xf8\x8f\x93\x89\xf8\x8b\x9c\x5d\x2c\xea\x6a\x53\x66\x71\x97\xe7\xee\xcb\x68\x5d\xe9\x9c\x5a\xae\xd1\x1b\x38\xf5\x75\xf4\x7e\xc7\xf7\xeb\xf4\x77\x9d\xff\x5b\xf9\x2f\x66\x4e\x98\xd1\xf9\x55\x30\x9f\x73\x28\x64\x1d\xc0\xef\xd1\x79\xd5\x34\xd5\xaa\xd7\x51\x3e\x2a\xd4\xbc\x19\xd5\x32\xcb\x37\xba\xb3\x0e\x48\x1e\xbb\x2a\x5d\xe5\x59\xb3\x6c\x7f\x35\xfd\xa7\x4b\xbb\x5a\x74\x8d\x03\xb3\xe8\x28\xee\xea\xab\xa9\xd6\xc9\xc2\xed\xcb\x36\x15\xb6\xaf\xd9\xd4\xe8\x18\x32\x2a\x9e\x4c\xc4\x0b\x59\x2f\xf2\x18\x21\x57\x50\xe8\x5b\xe3\xef\xf6\x6e\x51\x79\x04\x46\x2a\x8d\x41\x42\xc5\xc1\xaa\x8d\xc4\x29\xb3\xcc\x70\x00\xe1\x0c\xd6\x58\xea\x5b\x53\x41\x7b\x0e\xf6\x43\x34\x09\x5b\x1c\xcf\xc2\x96\xc7\xd3\x78\x21\xf5\x45\x7c\x86\x56\x52\x5f\xa4\xcf\x47\xf8\xe5\x3a\xfe\xd2\x3a\x13\xbf\x18\xb8\x83\xe9\xe9\x52\x81\xa4\x1c\x8e\x84\x85\xae\x01\xec\x12\xeb\x32\x2f\x47\x58\x23\x18\xe7\x7d\xa2\x30\x2f\x5b\x3b\x6f\x2a\xb6\xb7\xfd\x15\xcd\x3d\x9a\x08\x42\xd7\x55\x34\x30\x75\x3f\x9a\x6a\xed\xfe\xae\x83\xf9\x4e\x26\xe2\x78\x29\xb3\xea\xaa\x45\x84\xaa\xf7\x23\x0d\x5f\xd8\x84\x1a\xf5\xbe\x69\x95\xc2\xcd\x59\x6c\x56\x2d\xd2\x38\x83\xd2\xd1\x42\xf2\xb3\x42\x85\xe6\x42\x4e\x97\xb6\xa0\x40\xdf\xda\x80\xf8\xb1\x2a\x31\x65\x83\x99\x56\x3c\x38\xb0\x77\xe1\x66\xfa\x32\x43\xab\x1b\xc9\xbe\x14\x10\xf0\x73\xa4\xd7\x72\x96\x97\x8b\x78\xc5\x86\xf1\x29\x9b\x16\x1c\x9a\xba\xba\x50\xe9\xd2\xd6\x22\xae\xaa\x3a\x6b\x77\x6f\x90\xb7\x4a\xec\xe5\x0a\x0a\x19\x22\xc0\xef\x51\x35\x9f\x6b\xd5\x04\xcd\x5f\x6e\x1a\xca\xf7\xc2\xdb\x57\x58\xea\x3b\xa0\x82\x56\x0f\xee\x43\x02\xcd\x54\xad\xd7\x6a\xd6\xe4\x97\x71\xef\x6b\xff\x85\x1d\x4e\x5f\x38\xc2\x77\x5c\x3c\x75\x78\x79\x77\xd6\xb9\x8e\xea\x18\x1e\xb0\x96\xa5\x9e\x57\xf5\x2a\xde\xd2\xc6\x7e\xa0\xc6\x71\xf7\xf1\xf7\xf6\x04\x5a\x35\xe2\xe1\xdb\x35\xfe\xdd\x31\xc1\xd4\x11\xc4\xd6\x79\x92\x1b\xe0\x9f\x52\xec\xc0\xf7\x45\xbe\x28\x21\x86\x50\xd4\x27\x88\x59\x33\x59\x8c\xa4\xa9\xc1\xb1\xb9\x50\xef\x47\xe7\x52\xe7\x3a\xd8\xb7\xe3\x6a\xa5\x44\x2d\xcb\xac\x6a\x01\x50\x2f\xe5\x5a\x8d\x90\x98\xfb\x36\xe6\x40\xf0\x0e\xfe\xb3\xce\x63\x96\x64\x51\xe7\x99\x1f\xd8\xfc\x8a\x4e\x35\x14\xd5\xd5\x55\xaa\x38\x49\x06\xe0\x8b\x55\x33\x99\x96\xba\xf3\x23\xb6\x6f\x7d\x97\x9b\xa6\x4a\x36\x84\x0f\xad\x46\x93\x89\xf8\xa9\x6a\x7c\xd6\x43\xbf\xc0\x31\x7d\xfe\x99\x62\x69\x48\x78\x38\xce\xb5\xde\x90\xc2\x9a\xf3\x97\x18\x5d\x48\xe4\x65\xa3\x16\xb8\x8b\xe3\x88\x5c\x86\xcc\x98\x2f\xbe\x4e\x17\x9f\x17\x9b\x3a\xfd\x05\x73\x37\xc5\xe4\x0b\x4e\x6b\xeb\xf6\x60\x84\x39\x18\x9f\x97\x5f\x77\x94\xbb\x19\x60\x7c\x2d\xa6\x13\x2a\xaa\x52\xa1\x7e\x95\x5c\x3a\x21\xba\x7c\x96\x69\x21\xd3\xea\x01\x96\x22\x26\x30\xb1\x97\x59\xf6\xd4\x4a\x24\xd9\x3f\xb1\x52\xbf\x3a\x7f\xc7\x54\x3d\xb5\xb3\x28\xe9\x8f\x4e\xe4\xe8\xdf\xa7\x03\x32\x7e\x0e\xde\x7b\x12\x49\x23\xfb\xba\xa9\x63\x45\x9e\x6e\xea\x93\xc3\xd3\x71\x53\xfd\xbc\x5e\x5b\xc5\x61\x60\x95\x83\xef\x8e\x57\x2f\xcf\xdf\x25\x35\x4b\x6f\xc9\xd4\xc8\x4f\x51\x50\x75\x97\x9b\xa2\xb2\x7f\x3f\x6a\x7d\x66\x8f\x0a\xc1\x8b\xc2\xa0\xdd\x2e\x94\x0c\xb1\x0f\x2b\xd2\x81\xde\x95\xc4\x90\x24\x00\xb9\xa8\x32\x60\x82\xd1\x6b\x35\xdb\xd4\xda\xd0\xed\x4c\xa9\x35\x59\xdd\xae\xa5\xd6\x60\x17\x44\xe0\x6b\x2b\xe2\xf2\x06\xc4\x29\x52\xf2\x93\x3e\x20\xb4\xd1\x84\x17\x1a\x0a\x9e\x17\x49\xd9\xf6\xf3\xd6\x14\x0d\x29\xbb\x04\x74\xe6\xed\xb2\x46\x28\x36\xea\x24\x37\x70\x4b\xcc\x0e\x12\x14\xb6\x8d\x27\x5b\x99\x25\x9c\xd7\x79\x32\x4d\x4f\xa0\x4a\xe8\x39\x7d\x19\x37\x72\x64\xda\x9e\x52\xd5\xaf\x48\xed\x18\x06\x11\x64\xd3\xb5\x95\xf8\xb4\x5d\xe1\xb0\x55\x2b\xe1\x2e\xda\x11\x8f\xdd\xe3\xe7\x5e\x13\x79\x9b\x9c\x09\xac\xf5\x3e\xc6\xf1\x10\xf7\x59\x57\xc3\x76\xb3\x2d\x53\xdb\x09\xe7\x38\x09\x9a\x45\x67\x6f\xcb\x4a\x1e\xd0\x1f\x3e\x20\x9a\x3b\x05\xab\xdf\x17\x53\x9e\x88\xf3\x8e\x63\x61\x67\x81\xfb\xb4\x78\x02\xa5\x84\x76\x3c\x83\x3f\x06\x99\x12\xf7\x69\x86\xf7\xa1\x5e\x87\xfe\x0c\x31\x32\x76\x42\x0a\x4e\xaa\xc5\x7a\xae\x35\xcd\x32\x9c\x52\x53\x89\x72\xb3\x52\x75\x3e\x8b\x32\xbb\x04\xa7\x8d\x1d\xde\x7e\xfb\x90\x6d\xc9\x66\xd5\xca\x65\xc5\x9e\x29\x9c\xda\x27\xf3\xd9\xa0\xd2\xb4\x37\x7c\x45\xbe\x4d\xb4\x8e\xfd\xed\x00\xa6\xfb\x3d\xcb\x07\xde\xf0\xd1\x39\x0f\x1e\xe4\x5a\xab\xeb\x8a\x3b\xd3\x7a\x47\xdb\xad\xf3\x8c\x6f\x90\x24\x31\xec\x98\xc0\xef\xaf\xde\x63\xc8\xb3\xc3\xb0\x17\xb4\xd6\xff\xc8\x2f\xd4\x9b\x0a\x29\xb2\xac\xeb\xa1\x28\x54\xc9\x90\x0d\x32\x3a\x51\x96\x9d\x0f\x1f\xcc\x47\xf1\xad\x90\x75\xed\x6c\xdc\x6d\xca\xa7\xda\x67\x57\x98\xb6\x1c\x85\x86\xa6\xc2\xc3\x20\xfd\x93\x19\x06\x89\x3c\xe4\x7b\xe2\xb4\xdd\xd4\x45\xc2\x2e\xeb\xda\x06\x64\x0f\x01\x69\xaa\x84\x76\xb1\xb0\x18\x0a\x4d\xff\xd7\xaa\x50\x2e\x90\xfa\x78\xd2\xfa\xc4\x23\xa7\xc3\x66\x9e\x17\x16\x06\xbe\x55\xf4\x81\xb7\xd9\x94\x2e\x14\xc2\xf3\xae\xe6\xdd\x75\x78\x4f\x65\x55\xda\xaf\xc7\xc0\xd2\xf9\x0e\x5a\x9f\xa0\x5d\xe7\x66\x36\xd5\xd3\xaa\xd4\x9b\x95\xa9\xef\x76\x33\x7c\x37\x6d\xc1\x01\xab\x7c\xf8\x10\x03\xc1\x95\x77\x2f\xc2\x55\x69\x4d\xb3\x3f\x48\x6c\x0c\xc3\xb2\x68\x5f\xd8\x97\xed\x0b\xec\x98\xfd\xaf\x69\xe6\xc2\x7c\x1b\x04\x0b\x8f\x10\xdd\xce\xb2\x73\xbc\x18\x26\xe6\x37\x1b\x8e\x2e\x9a\xe3\xeb\xd5\x79\x55\x90\x01\xac\x33\x2f\x9b\x1e\x88\x7b\xf7\xe8\xdb\x18\xc9\x05\x3a\x72\xe3\x4b\x27\xf6\xe5\xa6\x87\x33\x37\x60\xc1\x0f\xbf\x0d\xfc\xb6\xec\x65\x35\x14\xab\xbc\xfc\x47\x70\xf0\xef\x54\x81\xaf\x03\x5b\x72\x05\x37\xcf\xf4\x00\x3d\x7c\xa7\x07\xdd\x60\xf6\xfd\x3a\x7f\xb9\xd2\xbb\x0d\x78\x6b\x7c\x7b\x9d\xa2\x1d\x7e\x35\x18\xeb\x22\x9f\xa9\xfe\x37\x43\x31\xa2\xd8\xbf\xe0\x80\x43\xe3\x62\x73\x04\x71\x35\x86\xcc\x26\xf5\x06\x2c\x93\xa0\xf7\xa0\xc8\x5b\xbc\xf1\x1e\x5e\xc8\xf5\xf4\x00\x90\x97\x0a\x8e\x55\xc3\xd6\xc1\xf6\xa3\x6a\x0f\xff\xbd\x35\xcc\xc7\x2e\x26\xff\xd5\x7f\x72\xf4\x73\xfe\xe1\xf9\xa0\x6c\xfa\x4f\x8e\xbe\xf9\x70\xf8\xf5\x87\x2f\x1f\x0e\xfa\x4f\x8e\x9e\x16\x72\xb5\x56\xd9\xe0\x09\xf4\x77\x77\x82\xef\xf9\xe5\x16\xb4\x0c\xe0\xb5\x15\x39\x13\xa7\x0e\xb7\xae\x59\xd6\xd5\x15\x90\xd9\x37\xd7\x6b\xf5\x0c\x22\x9f\x4f\x0f\x9e\x97\x18\xa5\x5c\x36\x46\x72\x06\x36\x04\x25\x48\x73\x7c\x47\x16\xd3\x59\x42\x93\x69\xf9\xbc\x44\xb3\x1f\xb2\x38\xb4\x75\x86\xd0\x02\x66\x4e\x82\x9f\x16\xab\x8d\x76\xf1\x29\x4f\x22\xa4\x3f\xed\x0f\xc8\xf0\x66\x8c\x41\x3b\x19\x66\xf3\xd4\xe8\xf8\xd2\x94\xeb\x51\x5e\x8e\x28\x21\x0d\x73\x5c\x68\x53\xb7\xdd\xee\x0f\xad\x26\x64\xd4\x30\xb1\x59\x71\xde\xc9\x4b\xa9\x67\x75\xbe\x6e\x48\x0c\x82\x58\x8f\x5a\xd3\xaf\x4b\x55\x66\xce\x4c\x18\x18\x35\x30\x68\xd6\xd6\x9a\x1a\x78\x2a\x1d\xfc\xa4\x26\xac\xc4\xe6\xd6\x61\x45\xb9\x7e\x53\x6d\x66\x4b\xc3\xce\xb0\xf5\xdf\xbb\x27\x7a\x15\x86\x49\xd6\x8d\xac\x1b\xc8\x79\x93\x55\x33\x40\xb5\xb1\xfd\xe3\x19\x86\xf5\x7f\x44\x76\xa2\xda\xa7\x3c\xcf\x2a\x21\xcb\xeb\x66\x49\x89\x7d\xac\x31\x95\xd0\xaa\x06\xc1\x3b\xc3\x17\x48\x34\x17\x73\xc3\x7a\xef\x87\x97\xb0\xd7\x2b\xb0\x3c\xd1\x63\x1e\x04\x0d\x42\x2f\x8b\x5f\xd4\xf9\x45\x8e\x4f\x9b\x85\x04\x93\x3e\x65\x53\xa8\x53\x0f\x55\xb3\x54\x16\x04\x1a\xc3\x63\x56\x86\xc1\xb4\x4d\x2d\x20\x01\xf9\xaa\x55\xac\x38\x44\xe0\x3e\xd5\xfa\x85\x5c\xfb\x14\xfd\x2f\xaa\x7f\x1f\x89\xde\x68\x55\xfd\x7b\xd4\x23\xbe\x68\xa5\xa1\x44\xbb\x82\x97\xe6\x77\xe5\x7e\xe2\x70\xa6\xec\x0a\xfe\x1a\xf5\x62\xe1\xfe\xad\x05\xe7\x5d\x34\x5f\x04\xa8\x8a\xc7\x1e\xdc\xac\xb8\x6c\xfa\xbd\x75\x6f\xd0\x72\x53\x4d\xf6\x11\xf8\xad\x42\x5a\x1b\xa5\x1b\x7a\xd1\xee\x39\xd5\x65\xcb\x97\x9a\x14\x0a\x76\xf5\x01\x37\x8d\x1e\x10\xae\x9f\x04\x8b\x0c\x18\xe9\x3d\x17\x04\x21\xa5\xed\x2d\x74\x53\xe2\xc1\x99\x48\x4c\xc3\xc7\xed\x5a\xcd\x30\xfa\x56\xa3\x66\xb8\xcd\xcf\xb2\x85\xb2\xf8\x3b\xb6\xb1\x3f\xcc\x94\xde\x51\x42\x12\x04\x34\x38\x42\xf6\x56\x1a\x8d\x9b\x74\xaf\x3d\x45\x3c\x32\xf8\xb6\xdb\x9e\xdf\x78\x65\x4d\x77\xd9\x59\x51\xd9\x42\x91\xb7\x77\xe7\xfc\x8e\xe5\x5c\xd6\xf9\xde\x33\x1c\xc9\xf5\xba\x50\xa3\xa6\x96\x79\x91\x97\x8b\xd1\x55\x55\x67\x89\xc9\xfa\x23\x0c\xf5\x7b\x09\x8f\xda\x7f\x72\xc2\x60\xb3\x34\xd8\xe0\xee\x14\xc8\x8c\x4d\x2b\x78\x54\xfe\xf5\xd7\x77\xfa\x48\xe0\x6d\x37\x34\x90\xf0\x3f\x70\x64\xff\x9b\x7a\xb0\x05\x37\x37\x5b\x7c\x6d\x83\xa0\xaf\xb0\x12\x33\xcc\x3b\x54\x20\xc3\x28\x33\x8d\x3f\xec\x28\xf8\x2f\x14\xb9\x81\xe8\x0f\x28\x24\x2a\x75\x64\xff\x88\xf5\x7f\x6f\x94\x6e\x0c\xac\xa5\xb0\x09\x73\x85\x6c\xe0\x8d\xc6\x52\xa5\x73\x65\x8f\x7c\x26\xaa\xda\x10\xa9\x96\xd1\x0f\xad\x2c\x24\xb5\xfb\x40\xd4\x9b\x8e\x51\x17\xbb\x5d\xbe\x1c\xf3\xf3\x77\x9b\xe0\x97\x65\x80\x99\x4c\x84\x2b\x86\xc0\x61\xe4\x12\x61\x17\x30\x16\x6a\xbc\x18\x93\xe9\x58\xef\x3b\x4b\x59\x7c\xae\x60\xd9\xb3\xb8\x77\xa1\xae\x4f\x0e\xc9\xfa\x7b\xe4\xe5\x5e\x73\x40\x51\xcf\xcc\x72\x7e\xc0\x72\x9f\x3f\x9b\x98\xa3\x36\x16\x2f\x0b\x43\x82\x69\x99\x3a\x30\x36\x61\xbc\x1b\x8b\xef\xc8\x82\xb9\xcf\x64\x99\x6f\x34\x66\x64\xfb\x0f\xad\x64\x3d\x5b\x3e\x76\xb3\x9b\xb2\x64\x44\xe0\x9f\x6c\xcf\xc7\x4a\x87\x13\x64\xb2\xc2\xf4\xe0\x3b\x0c\xd4\x80\x2d\xcc\x99\xbd\x2f\xa6\x07\xbe\x4f\x72\xcf\xb2\xee\xcf\x87\x0f\x06\x2e\x85\xe9\xf6\x69\xc9\xf5\x5a\xc9\xda\xb0\x19\x2e\x74\x15\x94\xa8\x72\xe6\x12\x75\x94\x15\xf8\xc9\x16\xc5\x91\x38\xe9\xf9\x06\xbd\x53\x7c\x94\xb0\xb0\xb0\x16\x9b\x3c\xa9\x47\xfc\xad\x1f\x48\xf0\x4e\xa1\x07\xba\x09\xd6\xb3\x83\x03\xf7\x50\xde\x01\xb2\xe9\x81\x45\x04\x02\x55\xb5\x0e\x9d\x2b\x02\xe0\xb9\xcf\x37\xee\x2c\x6d\x07\xd4\xac\x2a\xaa\x7a\x24\xb3\x77\x1b\xdd\x58\x50\x41\xd9\xf7\x50\x94\x84\x15\x6f\xf3\xb9\xa1\x15\xf4\xbd\x2f\xbc\x88\x04\x0f\x92\x20\x99\x1e\xac\xeb\xbc\xdc\x02\xbe\x18\x62\xe1\x63\xc0\xc9\x68\x3a\xd5\xa7\xf7\xfb\xe3\xc1\x93\xc0\xbb\x94\x2c\xfd\x29\x5f\x07\xa6\x6b\x74\x4e\x5e\x33\xb9\xce\x1b\x59\x50\x79\x27\x49\x02\xeb\xe2\xe4\x97\xd9\x2e\x02\x54\xe7\x97\xb2\x51\x6d\x0a\x44\x2f\x0e\xd6\xe9\x73\x16\x0a\xe7\x33\xf1\x44\xcc\xc2\x57\x09\x1b\x37\x26\x11\xcd\x21\x34\xb6\x25\x92\x09\xac\x15\xe8\xa1\x46\xf0\xf6\xd2\xb6\xb2\xb4\x6b\xd0\x4d\x7d\xcb\x55\xc4\xc6\x98\xf9\xbf\xf9\xe3\x8a\x7f\x5a\x69\xbd\x6f\xd0\x8a\x06\x71\x82\xe3\xdd\x2b\x59\x4b\x3d\x93\xf4\x8c\xf4\x39\x97\xe2\x16\x82\x03\x24\x57\xe2\xd6\x68\x55\xe1\xa6\x06\x23\x70\xe7\x1b\x17\x54\x18\xa3\xc5\x17\x55\xb9\x80\x60\xf1\xee\xbd\xcb\xa6\x33\xdb\x79\xce\x57\x52\x5f\x58\xe4\x36\x7f\x27\x0f\xb6\xf9\xf0\xd1\x07\x7a\x98\x88\x99\x72\x67\xf2\x5f\xa6\x4f\x92\x4a\xe1\xd8\xb7\xce\xf4\xee\x53\x1d\xf8\x4f\x39\x18\x3c\x26\x7b\x99\x7c\x25\x17\xaa\x17\x79\x23\x39\xd0\xda\xea\x83\x74\xe4\xe0\x98\x08\x88\x76\x8e\x30\x3f\xab\xfb\x6c\x33\xf7\xed\x37\x45\x9b\x45\xb7\x17\xe6\xad\xe9\x37\xbc\xa3\x56\x75\xae\xca\x86\x12\x53\xe1\x1e\x9b\xf2\x97\xbe\x38\xb9\xdd\x71\xdb\xcf\x4d\xcb\x5b\xfd\xef\xde\x7b\xcb\x19\x3f\x76\xbc\x31\x38\xb1\xd1\x57\x62\x13\xdb\x0f\x32\x5d\x70\xfe\x74\xf0\x5a\x79\xca\xc1\xd5\xd9\x86\x24\x21\xea\xc4\xaf\x4f\x3c\x45\xe9\xd8\x34\x0c\xb4\x6e\xa0\x2d\x30\x75\x19\x14\x6c\xe5\x14\xe0\xb6\xc0\xea\x53\xf8\x0a\x6f\x6d\x12\x40\x2e\xef\x46\x46\xf7\xf9\x77\x81\x5d\xbe\x0b\x21\x03\xe0\x41\xed\xdf\x11\x7a\x57\x75\xde\x18\xf9\x71\x55\x65\x8e\x81\xa5\xb2\x17\x55\x96\xe6\x60\x79\x9b\xcf\x7d\x92\x83\xbe\x6f\x4d\xc1\x31\x54\x56\xcc\xe1\x42\xb8\x1f\x2c\xb5\x42\x39\x8c\x05\x62\xf9\xef\x78\xc4\x37\x5a\xd5\x23\xf4\xa4\x73\x46\x0f\x5a\xd5\x18\x0e\x20\x09\x69\xd6\xe2\x73\x03\x9a\x77\xbd\x3f\x9c\x5f\x54\xff\xee\x02\xb2\x2f\x6d\x93\xd6\xdf\x11\xc8\xe0\xd1\x82\x26\x51\x5d\xf9\xc1\xd6\x95\x6e\x66\x5a\x4f\xe4\xa6\xa9\x48\x24\xae\x27\x68\x04\x35\xf9\xea\x4f\x87\x1f\xd3\xec\xf0\x8f\x7f\xb4\x5b\x0a\x3a\x29\xb3\x03\xfa\x65\x91\xb9\x54\x8d\x9f\x8b\xc9\x81\xde\x47\x9f\x93\xcd\x79\xa7\x49\xa5\x37\x3d\xc0\x0a\x68\xe1\x4a\x71\x0d\x2d\x17\xc2\x9d\xc6\xdc\xe6\x50\x53\xcb\x97\x80\xb3\x59\x20\x0f\x91\x3d\x9c\x13\x88\xc4\x51\x20\x60\xdd\xec\xc0\xb4\x68\xa6\x6f\xd9\x54\xd7\x90\x77\x3f\x39\xc5\x68\x92\x6f\xdb\xb3\xc4\xe6\xbb\xa7\xd5\x92\x09\x39\x12\x1e\xab\x64\x42\xfb\x6d\x58\xf2\xe5\xc3\xaf\xc6\x53\x97\x57\xbd\xc8\x4b\xf5\x8f\x6a\x91\xcf\x64\xf1\x5b\x60\x4a\x1f\x8d\xe9\x3f\xa0\x0d\xe4\x07\xb2\x28\x1f\x8c\x70\xe0\xad\x18\xb4\x75\x4b\xda\x37\x12\x59\x98\xd1\xde\x80\xff\x94\x15\x9b\x7a\x34\x5c\x6f\x28\x7a\xbd\x41\x52\x9d\x10\xb1\xbb\xd4\xd1\xa0\x13\xab\xec\x48\x47\x1d\xfb\xf2\x14\x19\x72\x64\x46\x21\x09\x21\xbd\x1d\x90\x7e\x9f\x04\x9d\x5e\x03\x6a\x68\xb1\xd1\xe8\x09\x6e\x5a\x1e\x1f\x0b\x7d\x5d\x36\xf2\x3d\x26\x21\x1c\x2f\xc6\x66\x16\x3f\xfe\x38\xf6\x36\x6a\x4e\x07\xf8\xd9\xb6\x2b\x16\xd1\xd6\xed\xd5\x77\xad\xd6\xeb\x49\x3f\xe7\x84\x30\x2e\x0e\xed\x07\x44\x8f\x88\x8e\x98\xcf\x2f\x29\x66\x1b\xdd\x54\x2b\x80\xdc\xa5\xac\x73\x78\x76\xbb\xc2\x47\x6d\x9a\x19\x42\x37\xbc\x81\x5c\x3c\x89\x51\x84\x4f\xac\xe7\x58\x67\x69\x7d\xd2\x6e\xd3\x39\x5e\xfc\xd5\x3a\xa5\xc1\x64\xf8\xdb\x29\x7b\x65\x4c\xe4\xea\xbc\xb7\xd0\x4c\xfa\x5a\xa0\xee\x4c\x58\xab\xba\x71\x9a\xb6\xdd\x89\x14\xf9\x96\xe8\x86\xb4\x2c\x31\xf0\x4e\xed\x5c\xfa\x34\x6c\xbb\x2a\xf5\xac\xae\x8a\x62\xa4\x4b\xb9\xb6\xd8\x84\x45\xc7\xa5\x7f\xb4\xfa\x0c\x0c\x07\x29\x55\xf3\x72\xd1\x7f\x30\x14\x87\x87\x03\x32\xa5\xf2\xc3\xdf\x82\x03\x59\xe9\x8e\x44\x67\xb1\x76\xf7\x73\x32\x15\xd5\xa5\xaa\x69\xba\xe7\x6a\x29\x2f\xf3\xaa\xb6\x10\xf3\x9f\xfe\x42\x5f\x3e\x23\xe4\x10\x50\x89\xd1\x3f\x15\x60\xd1\x3d\x4d\xbd\xcf\x96\x32\x2f\xc1\x08\x62\x6f\xc0\x59\x6b\x37\xf6\xcc\x89\xd6\xfa\x8b\x1a\x1c\x67\xf0\x07\xfa\x20\x5d\xaa\x1e\x33\xe7\xd7\xcb\x3a\x2f\x2f\x5c\x95\x52\x2d\x64\x5c\xc5\x5a\xfc\x53\x27\x10\xb0\xa1\x56\xe4\xcc\x87\xf5\xde\x6d\x74\x93\xcf\xaf\x47\xb3\xaa\x6c\xd0\x71\x85\x2a\xcb\xd9\x05\x56\x21\x97\x3e\x2c\x86\x1f\xd4\x14\x9c\x0c\x46\x79\xa3\x56\x7e\x0c\x74\x3c\xe0\xdf\xe3\x8e\xc1\x28\x1d\x7a\x37\x07\x9f\x2a\x69\x55\xcc\x7b\xe6\xb2\xc1\xa8\x98\x90\x18\x38\xf8\x84\x26\xf5\x40\x13\x6e\x80\x62\x58\xf7\xcf\xaa\xc8\x84\xe9\x17\xb2\x16\xa3\x15\xc0\xc3\x07\x87\x0f\xdd\x8d\x63\xbe\x99\x82\xcf\x4b\xde\xc3\xdb\xfa\x85\x5c\x07\xb1\x3a\x30\x38\xad\xbd\x87\x13\xbc\xc1\x6f\x78\x81\x33\x7c\xba\x7b\x68\x17\x6d\x80\x70\x84\x0e\x03\xe6\x4f\x8e\x22\x16\xcd\x52\xdf\xb2\xbc\x56\x33\xf2\x3e\x39\x81\x1a\xa8\x22\x32\xcc\x88\xf9\xe5\xbf\x9f\x06\x98\x82\x35\xb3\xbc\x94\x85\xe9\x7f\xb3\x4e\x23\x8c\xa9\xc6\xf1\x05\xc6\x9c\x17\x30\x9f\x7d\x86\x4b\xe1\xae\xa9\x07\xc8\x85\xf0\xb0\xd0\xf8\xbb\xba\x66\x01\x4a\x2f\xd4\x35\xc6\x33\x02\x20\x0d\x22\x56\xe0\x29\xbc\x47\x7b\xad\xb0\x2d\xec\xaf\x43\x9d\x70\x48\x2c\x1f\xed\x85\x98\x0f\xfe\x34\xf6\x2f\xb4\x88\x9a\x0f\xfe\xf4\xc9\xa8\x39\x14\x6f\x6b\x35\x0f\x10\xd4\xc5\x25\x78\x0c\xdf\xc6\xf6\x77\x9c\xbd\x16\x20\xe3\xbc\xf5\x91\x86\x7e\x1b\xe6\x1d\x4d\xe2\xfb\xdd\xc3\xc8\x04\x9b\xb0\x3e\xb4\xba\xb3\xa8\xbc\x45\xe1\xfa\x39\x90\x3f\xa1\x0a\xbe\x63\x17\xdc\x41\xe7\xd3\xfe\x05\xd4\x79\x87\x87\x01\xf5\xdc\xa1\x66\xa6\xb6\x27\x0f\x4e\x99\xa2\x39\x8a\x1b\x9b\x20\x05\xa2\x23\xed\x95\x77\xf3\x80\x19\xad\xe4\xba\xef\x30\xb1\xcb\x96\x39\xcd\xc1\x50\x4a\x11\xf1\x58\x9c\xc0\x6f\x21\xc6\x63\x9b\x67\x64\x48\x25\xa1\xd0\xed\x4a\x63\x19\xcb\x7d\xf0\x7c\xbc\x2b\x6a\x15\x78\x56\xc8\x15\x59\x62\x1c\x15\x3c\xf8\x13\xfc\x3e\x85\xff\xbf\xa2\xe9\x5a\x46\xb5\xe7\x14\x3a\x3d\x6b\x5b\xbd\xa8\xf2\x72\x01\x76\x47\x28\x77\x20\xe5\xf8\xa2\xe7\x96\xea\x4d\x0e\x24\x1a\x87\xa0\xc3\x2b\xab\x6d\x06\xed\x51\x47\x18\xf4\xaa\x67\x27\xd7\xa3\x6a\x76\x41\x51\x35\xbf\xf4\x9e\xa3\x1b\x1e\xc2\xfe\xed\x7a\xc8\x1f\x67\x87\xf0\x92\x33\x8c\x75\xfd\x43\xaf\xa4\x1e\x32\xad\xeb\x90\x6b\x10\x87\x4c\xc7\x35\x8c\xf6\xa9\xbd\x41\x7c\x67\xfc\x96\xf0\xbd\x48\x30\x5c\x43\xbf\x31\x6e\x47\x4e\x19\xf5\x34\xf4\xe6\x07\xb0\xb4\xa1\x80\xa5\x94\xa4\x66\x9e\x17\x8d\xaa\xfb\x3e\x7e\x6d\x4c\x21\xc7\x2d\xb2\x65\xc8\xe4\x00\xb0\xf9\xd6\xad\x1e\xd9\x3c\xad\x84\x0e\xb7\x9a\x88\x6b\x85\x13\xa8\x55\xb6\x99\x29\xd6\x40\x0e\x85\x6d\x23\xc7\xeb\x8d\x5e\x52\xf0\x65\x39\x4c\x99\x52\xb3\xfe\x28\x04\x9b\x35\xe1\x34\xdd\x0f\xc5\xc9\xa9\xbf\x54\x20\x18\x65\x18\xde\xea\x51\xb7\xe9\x1d\xc4\xa9\xdc\x62\x78\x66\x4d\xfd\x40\xf4\x56\x97\xaa\xbe\xf6\x2f\x8c\x55\x19\x59\xce\x90\xe4\xee\xe2\x13\x4f\x26\xe2\x25\xe4\x1a\x85\xf8\x5e\x43\x1b\xcd\x14\x12\x8f\xce\x96\x2a\x1b\x8b\xe7\x8d\x58\xe4\x97\x4a\x8b\x8d\x16\x9b\xb5\x68\x2a\xf1\xc7\x07\xff\x4b\xac\x55\x3d\x17\xe7\x55\xa5\x1b\x6e\x67\x72\x34\x99\xbc\xd3\xe6\x13\x70\xfa\x0a\x27\x49\x41\xa3\xd0\x14\x74\x24\x67\x33\xa5\xf5\xe8\x52\x8f\xd6\x85\xcc\xcb\x91\x4f\x26\x39\x99\x50\x4f\x76\x33\x11\x3a\xf0\x2c\x7f\x51\x56\x57\x25\x98\x85\x79\x93\x40\x33\x15\xdc\x34\x21\x57\xd5\xa6\x6c\x44\x35\xa7\x1e\x58\xa5\x2b\x6f\xa6\x38\x57\xb2\xd9\xd4\x04\x28\xd9\x08\x32\x09\x8d\x16\x90\xc9\xcb\x3c\xbb\x92\x85\x5e\x82\x65\xf0\x04\xe1\x37\x42\xf8\x31\x5f\x99\x6a\xb5\xde\x60\x68\xa9\xab\xbc\xcc\xaa\xab\xf1\x42\x35\x4f\xa9\x10\xdd\x5f\xba\x6c\x33\xad\xde\x66\x1a\x59\xf8\xdd\x3d\x84\x04\x96\xd4\x07\x0f\xc8\x1a\x86\x5b\x1b\x95\xea\x3d\x7a\x72\x8a\xb2\x1a\xd5\xca\xc8\x81\xb3\x46\x65\x23\x8c\xaf\xaf\x19\xc7\x99\xeb\x9f\xe4\x4f\x7d\xe8\x7b\x30\xa0\x00\x65\x76\x80\x13\x28\x3e\xc5\x10\x42\x41\x91\x37\xab\x7b\xc5\xa0\xbd\x94\x8d\x98\xc9\xb2\xac\x1a\x43\x45\x67\x91\xc1\x9d\xca\x50\xed\x63\x68\x2b\x01\x14\xf7\x6f\x4d\xbb\x69\x4d\x7c\xc9\x08\xcf\x9d\x96\xf1\xbc\xaa\x9f\xc9\xd9\x92\x9d\xbc\xf7\xb1\x22\x87\x42\xe0\xe1\xfc\xdf\xd3\xfc\x06\xa1\xdd\x83\x37\x37\xf3\xef\xeb\xda\x33\x49\x43\x97\x06\xd4\xdb\x49\xb9\x8a\x80\x63\xb8\xd1\xd0\x17\x1d\x16\x66\x25\x3b\x26\x1d\x8a\x16\x67\x70\xa5\x9e\x99\x8f\x61\xc6\xcb\x4e\xfb\x03\x90\x3a\x43\x23\x86\x64\xd8\xb3\x13\x7a\xb5\x3a\x4d\x59\x2b\x7c\xf8\x4b\x55\x15\x4a\x96\xdb\x6c\xfc\x76\xb2\x86\x9f\xc5\x53\x0c\x42\x27\xd4\x64\x36\x3c\x82\x6c\xa0\xb5\x2a\x59\xf8\x47\xc0\x3c\x55\xa4\xd4\x50\x10\xb1\x1d\xf1\xc2\x60\xfe\xb9\x2a\x67\xcb\x95\xac\x2f\xe0\x4c\x6a\x51\xd5\xbc\x0d\x6c\x8d\xcb\xda\x8c\x71\xf8\xb8\xa1\x5a\x47\x94\xf1\x9e\xeb\x15\xb4\x41\x88\x34\xe8\x1f\x76\x07\xdd\x94\xd2\x81\xfb\xbc\xb8\x86\x16\xa5\x60\xd4\x9c\xcf\x83\x27\x47\x33\x43\xf6\x7c\x2b\x4a\x90\xaf\x8b\x6b\x86\x54\x79\x99\x34\x38\xf5\x3e\xa2\xbc\x3b\x4a\x43\xc3\x3e\xd0\xb3\x70\xb8\x07\xce\xbd\xcd\x3a\xc1\xa9\x82\x25\x19\x82\xe9\xfe\x98\x97\x99\xc1\x7d\xb8\xfe\x30\xe2\x2f\x59\x45\x12\x32\x5b\x88\xba\x59\x25\xa3\x7c\xc7\x57\x7b\x92\xef\xe5\x20\x7d\xdc\x6e\x73\x92\x9f\x12\xbe\xd9\x69\x32\x47\x50\x88\x13\x64\x38\x16\x51\x54\xa6\x4a\x6e\xbd\x3e\xe7\xd5\xa6\xcc\x02\x0d\x1f\x1b\x66\xc0\xcc\x92\x6f\x10\x95\xb4\x6a\x6c\x84\xb5\x70\xb5\x6e\x99\x88\xaa\x79\xad\xe6\xd5\x7b\xb0\xc3\x51\x97\xaa\x24\xf7\x07\xf3\xab\xae\xab\x1a\xda\xe6\xe4\xfb\xe0\xaf\x8d\x21\x68\xaa\x87\x62\x7a\xf0\x60\x7a\xe0\x20\xd6\xd4\xd7\x16\x04\x76\x65\x0e\x0a\x36\x7d\x97\x98\xc9\x66\xb6\x14\x7d\x55\xb7\xdc\xca\x03\x5e\x7c\x5a\x76\xa0\x9f\x73\xde\x86\x62\x14\xd8\xad\xdc\xea\x51\x87\x11\x66\x12\x15\xfd\xb7\x23\x71\xd8\x0a\x1a\x61\xc1\xd2\x73\x1f\xad\xea\x93\xa1\xe3\x96\x6f\x41\x07\x5e\x90\x86\x0a\xc0\x7b\xfa\x94\x0e\xfd\xff\x9a\x4e\xf5\x17\x36\xa9\xc3\x87\xa1\xe8\xf3\xdf\xfd\x27\x77\x4e\xfe\xab\x3f\x38\xfd\x62\x3a\x1d\x0c\x5c\x4e\x08\x55\xdc\x3d\x0c\xcc\xf3\x90\xd6\x46\x8a\x6a\x3f\x9d\x89\xb7\xe4\x30\x74\x58\xa9\x6c\x1b\x01\xee\xb6\xd4\x5b\x1f\xa6\x8b\x1f\x7e\xb4\xc1\x18\xcc\xd8\x87\xf8\x78\x4a\xaa\x6b\x6b\xd2\xb7\x3e\x1c\x8a\xf5\x43\x46\x80\xd7\x87\x78\xf8\x2f\x25\x53\x40\xc2\xaf\x47\x71\x15\x59\x14\xac\x8a\xf9\xe5\xab\x3c\x4c\x55\x19\x0a\x57\x89\x3f\x6b\xfc\x93\x92\xad\xaf\x0f\xc5\x93\xd4\x55\x71\x88\xfe\xce\x43\x0c\x40\x9f\xa8\xf0\xd0\xbb\x3c\xdd\x09\x3a\xf5\x24\xff\x10\x48\xdb\xc3\x47\x2d\xe5\x08\xd5\xb4\x88\xde\x62\x79\x0d\x26\xec\xe0\x77\x77\xe2\x89\x47\x89\xd4\xad\x4d\x75\xf4\x6d\xae\x6f\xb3\xee\xb4\x5d\x3a\xf9\xda\x7e\xc4\x7d\xdd\xbe\xad\xd1\xad\xd8\x8e\x37\x0c\x3c\xf3\x77\xde\xba\xa9\x1d\xf6\x31\x0c\xe9\x4e\xbe\x7b\x68\xaf\x1c\xb8\x5c\x1f\xa3\xd1\x2e\xaa\xca\xa2\x98\x0c\x90\x3f\x9b\x72\x64\x93\xbd\x7d\x55\x0b\x29\xd0\x31\x5f\x48\x56\x0e\x11\x31\x7b\x87\x3d\x4b\x73\x7f\x51\xe2\x4a\x1a\x7e\xbc\x2c\xec\x63\x13\xbc\x62\x51\xfa\xed\xa5\xaa\x1d\xd3\x7d\x5b\xce\x76\x1a\x3a\x1a\x86\x0b\x26\x6f\x72\x33\x27\xb8\x5a\x89\xfd\x5d\xcb\x5a\xab\xe7\x65\xd3\x0f\x6a\x0f\xc5\xe1\x83\x41\x2b\x86\x6f\x8c\xa4\x96\x19\xc0\x20\xe6\xc8\xb9\x5c\xa8\xeb\xe0\xca\xb1\xf9\xe4\xb9\x23\xfd\x6c\xa9\xfe\xee\xa2\xc8\x02\xac\xef\x47\x7d\xdf\x92\x21\xa2\x4b\xd2\x70\x43\x9f\xc4\x09\xdd\x3d\x3c\xb1\xb3\xdb\xce\x0f\xf1\x8a\x1e\x10\xcf\x9f\x75\xde\xa4\x90\x5b\x69\xa5\xc0\x1a\x57\x0f\xfd\x73\x2f\x06\x34\x25\x2c\x33\x37\xe5\xb9\xac\x7b\xa9\x3b\x75\x32\x41\x26\x1e\x97\x2a\x35\xa6\x68\x1f\xdb\x0b\xf7\xee\x21\xbb\x72\x0d\x48\x91\xf9\x68\xef\x57\xe2\x06\xf6\x6f\xa0\x40\x07\x3c\x19\x68\xd1\x00\xcb\xde\x04\x70\x7a\x9c\x52\xd5\xb3\xeb\x9c\x72\xcd\xa7\x39\xc5\xe8\xfe\x6c\x33\x62\x80\xcf\x89\x9b\xdd\x2f\xd4\xad\xa3\x45\xc2\xf9\x6f\x67\x21\x10\xdf\xca\xc3\xce\x6b\x89\x22\x10\xf8\x40\x1c\x69\x30\x1b\x5c\xea\x71\x60\xfe\xd3\x3d\x1c\x0b\x19\x6a\x18\xc6\xdb\x26\xea\x9e\x11\xe3\x83\xf0\x57\x59\x67\xb3\x2a\x23\xd9\xbc\xa9\x6c\x10\x5a\x31\x3d\x98\x17\xea\xfd\xf4\xc0\x94\x4d\x0f\x46\x2b\x0d\x2f\x12\xe7\x95\x29\x32\x18\xf6\xfc\xd9\xe1\x83\xc4\xb3\xb0\x1b\x18\x5e\xa8\xa9\x55\x6f\xd0\x85\x45\x3d\xd6\x31\x66\x86\x01\x44\x0c\xaf\x15\x37\xcc\x5e\xa8\xb8\x3f\xca\xf9\xb9\xef\x03\xfc\xdd\xe8\x99\xd4\x29\xdf\xdc\x8a\x73\xc6\x49\x75\x01\x0b\x21\xf4\x4b\x9d\x37\x2a\xa4\x81\xe8\x5c\xe0\x89\x53\x6a\xa6\xed\x03\xbb\x85\xe8\xf0\xe0\x15\xbf\x52\xd3\x61\xc2\x4f\x6b\xd8\xe6\x52\x86\xd1\xb5\x0a\xee\x9d\x3c\x96\xed\xd6\x5e\xe8\x86\x68\xf5\xea\x02\xde\xce\xb4\x1e\x21\xde\x07\x09\xf8\x9b\xea\xa9\xd6\x34\x5e\x1c\x1a\x97\x47\x7a\x09\x95\x72\x4d\xc5\xb5\x16\x90\xc4\xe5\x6a\xa9\xca\x36\x5f\xbb\x23\x61\x19\xba\x1d\x52\xfe\xc0\xba\x3b\x10\xf6\xae\x6c\x86\x80\x72\xce\x8f\x2b\x36\x19\x93\x4d\x3b\x29\x8b\xa0\x52\xcc\x56\x9d\x70\xa4\x73\x9f\xc3\x48\x4b\xd3\x30\xbe\x0a\xc2\x23\x15\xa7\x7b\xaf\xec\x2c\x14\x3e\x28\x0a\xb8\x3e\x0d\xdc\x01\xda\x91\x9a\xcc\xd5\xb8\x35\xec\x94\x68\x45\x99\x41\x7a\xe0\x1f\x60\x8e\x7d\x98\x6c\x3a\xa3\x71\x8a\x16\xf6\x8c\x03\x0c\x02\x04\x6a\xa1\xf7\xb3\xf0\xf0\x82\xc9\x08\xc7\x3b\x0e\xd0\xd0\xb4\x21\x48\x1c\x13\xb6\xb9\x77\x2f\xea\xc4\xf0\x03\xf8\x96\x17\x8c\xdd\xd4\x9b\x70\xe8\x99\x0f\x21\xb3\x7d\x6a\x50\x05\x78\xf5\x88\x7f\x0d\xc6\x1d\xb2\x23\x61\xe1\x9a\x9e\xb6\xed\x8f\xcf\xdc\x96\x99\xc9\x13\x33\x1c\xce\x8f\xa6\xcf\x3b\x64\xcb\xfb\xf0\x81\x57\x6f\x3d\xdb\xf9\x9a\x83\xee\x24\x1b\x7e\xf3\x43\x78\x12\x1b\x7d\xda\x5a\x3f\xb2\xd8\x3c\x7a\x78\xa7\xbf\xc8\xb6\x40\x43\x9f\x31\x90\x52\x8b\xbd\xe5\x07\xec\xd3\xe2\x1c\x25\x44\x97\xd4\x8e\x87\x10\xd9\x1e\xf0\x28\x91\xa2\x34\xce\x62\xfa\x5b\xc4\x44\x6a\x91\x4f\x9b\xeb\x04\x49\xef\xb1\xa9\x6b\x96\x07\xe9\x0b\x50\x29\xd6\x8a\x53\xf8\x4e\x23\xd7\x65\x2a\xf7\x59\x70\x42\x6d\x1a\x33\xfb\x01\xf3\x1b\x60\xf5\x00\xa1\x7a\xd8\x32\x52\x7a\x40\x7a\x37\xa0\x55\x50\xc5\x45\x53\x4a\xb9\x31\x3c\x10\xdf\x62\x2d\x4a\x5a\xe6\xb2\x50\xa5\x8c\x8d\x5c\xdf\xa3\xa0\xe7\x20\xc0\xe1\xf6\x60\x54\xb7\x41\xd3\xdb\x22\xaa\x33\x2e\x38\xa6\x30\x0a\xa4\x7c\xb6\x5f\x70\x0f\x42\xbb\x0d\xc4\xe4\x31\x80\xd5\xfc\x6f\xb0\xe3\x4d\x1f\xfa\xe8\x7c\xd1\xb7\x63\x03\x19\xd0\x27\xf9\x69\x98\xc3\x03\x4a\xb6\xa4\x56\xb0\xcd\x83\x7b\xae\x1b\xe9\x1c\xc2\x04\xec\x89\x85\xb0\xf6\x4c\x84\x0d\x21\x0a\x41\x8e\xe1\x30\x8d\x5c\xe0\x3a\xcf\x82\xa0\xa0\xdc\x6e\x45\xa9\x97\x59\x58\x29\xcc\xab\xd5\xaa\x88\xe5\xac\xa2\x8b\x5a\xd6\xae\xeb\x1d\x49\x59\x7d\x16\x5c\xac\xdd\x82\xc7\xd7\x67\x6d\x2e\x83\x93\xd7\x6e\x16\xbc\xc1\x05\x61\x5f\xd6\x16\x7c\xed\x46\xf0\x69\x64\xf0\xa1\x47\x56\x38\xe7\x90\x14\x6f\x8e\x01\x59\x6b\xc3\x07\xdb\x09\xa1\x28\x03\xfa\x0a\x48\xcd\x40\xaf\xf7\xe6\xef\x17\xb2\x51\x75\x2e\x8b\xd1\xcf\xcf\xe1\x9d\xac\x2a\x55\xd9\x68\x21\x6b\xe5\xec\x9c\xbb\x43\x2a\xc1\x06\x9b\x81\xfa\xe1\xeb\xb3\x15\xe7\x70\x9c\x23\x71\xe2\x36\xbc\x3f\x18\xd2\x26\x9a\xbf\x4a\x4a\x41\x3b\xe4\xf9\x4d\x86\x41\xf4\xbf\xc1\xd0\x2c\xee\x07\xca\xc4\x64\x66\x1c\x86\xa5\x09\x74\x46\x43\x23\x53\x67\x95\x02\xe5\xd7\xd2\xe7\xeb\x82\xdc\x19\xb9\x16\x57\xf2\x7a\x68\xbd\x56\x17\x90\xed\x76\xad\xea\x79\x55\xaf\x64\x39\x53\xec\xbd\x17\x5a\x3c\xc7\x4c\x6c\x56\x55\x47\xe6\x0b\x57\xca\xc3\x46\x9c\x71\x93\xfd\x33\x8c\xeb\x52\x40\xd2\xde\x1c\x9e\x72\xcf\x0b\xb5\xa2\x0e\x49\xa3\x83\x8f\xa9\xc8\xa3\xb9\x60\x59\x3d\xf1\x04\xe3\xcb\x1d\x45\xa8\x62\x56\xbf\xf6\x24\xf7\xd4\x1d\xb6\xae\x6c\xc8\xd3\x83\xdd\xe9\x90\x79\xf4\xb5\xb7\xf8\x3e\x4d\x41\xc5\x98\xd6\x7d\x77\x6f\x1d\x2d\x79\xef\xaf\x95\x9c\x59\xcc\xad\xcd\xdf\x0c\xb3\x4d\x8b\x37\xd7\x6b\x3b\x54\xcf\x2c\x73\x64\x80\xa4\x03\x89\x43\xbd\x97\x33\x0c\xfc\x62\x05\x8e\xef\x56\x16\x63\x37\xf9\x64\xd3\xe4\x05\x6f\x80\xea\x54\x9b\xfb\xe2\x69\x21\xb5\x86\x74\x51\xd8\x74\x3c\x9e\x74\x54\x08\xc6\xa4\x94\x7e\x91\x84\x43\x9f\x1d\xca\xfb\x3e\x5d\x11\x1e\xc4\x1f\xe8\x94\xfc\xed\xf8\x98\xc5\x93\x2a\x6d\xf4\x24\xc8\x44\x04\x23\xf4\xd9\xf1\xc1\x97\xa3\x9f\xc1\x93\xda\xa0\x56\xa1\x1a\x73\x01\xd5\x36\x95\xca\x65\x9e\xa9\x0c\x63\x0e\xe1\x19\x06\x85\xd3\x7b\x34\x07\x02\xeb\x9d\x37\x50\xb8\x29\x1b\x55\x8f\xce\x21\xf0\xb0\x5c\xaf\xeb\x4a\xce\x96\x2e\x75\x5c\x53\x15\xb0\x6c\x21\xcb\x6b\xb1\xca\x75\x23\x2f\x14\x9a\xfe\x3c\x6f\x7a\x5a\xac\x36\xb3\xa5\xd0\x72\x8e\x21\xaf\x20\x7e\xd1\x52\x09\x6d\xe0\x47\x1d\xa3\xfd\xc5\x15\x69\x38\x71\x45\x8b\x16\xb0\x1f\x77\x6d\x43\x1f\x57\x89\xd1\xa7\x28\xad\x34\x68\x44\xd6\x9b\x7a\x5d\x69\x8c\xd3\x41\xb4\x06\x18\x8b\xa5\x52\x8d\x7e\x21\x4b\xb9\x80\xa8\x38\xa5\xba\x12\x2f\xe4\xba\x6f\x0d\x63\x88\x4e\xf8\x68\x9e\x40\x77\x48\xd9\x4a\xa3\xc3\x83\x11\x26\x60\x36\x1f\x5b\xb3\x3d\x6a\x17\x41\xc5\x77\x1a\xe2\xc7\x60\xcc\x18\x9c\xc8\x53\x23\xba\x1f\xc1\x49\x65\xa5\x34\xbd\xa3\xf0\x27\xab\xf0\x5a\x2d\x72\xdd\xd4\xd7\xd8\x12\x1f\x97\xd8\x22\xe1\x36\xd5\x4f\x71\x3b\xc5\x63\x3c\x34\xf4\x2e\x40\xa5\xfd\x70\xa1\x03\x67\x4d\xd3\xad\x1a\xf5\x99\xa8\xad\x7c\x1b\x8c\x33\xce\x72\xbd\x2e\xe4\x35\xed\x57\x2f\xf8\xd8\xe3\xcf\x74\x79\x69\x8e\xf9\x8f\x79\xad\x9b\x9f\xaa\x4c\x6d\x89\xaf\x87\x7d\xbc\x42\x5c\xad\x81\xcf\xd3\x3c\x5b\xd9\x32\x2f\xb2\x1a\x62\x65\x22\x83\x62\x0b\x5c\x64\xa9\xb7\x50\x7e\x97\x8d\xe8\xea\xb2\x32\x57\x3d\xac\x97\x6a\xec\x1e\xfd\xc5\x13\xd2\x52\x1d\x25\xea\xc5\xe3\x87\xf8\xe3\xa6\xd0\x42\x2b\xd7\xae\xf5\xc5\x4f\x27\xee\x6b\xcb\x8c\xc2\xaa\xae\xf3\xa2\x9a\xc9\xc2\x63\x78\x17\xc1\x46\x70\x0f\xc5\xc9\xf4\xc0\xc2\x15\x9f\xb8\xd8\x42\xb1\xa0\x35\xdb\xe9\xc1\xe9\x80\x45\xec\xaa\x36\x8d\xaa\xfd\x80\x88\x8e\x1b\xed\x70\x31\x40\x15\xde\x70\xe6\x50\xd8\x25\xf9\x0c\xb3\x7d\xb2\x8e\x07\x98\x27\x93\xf8\x84\xc4\x89\x6d\xcf\xd2\x5c\x7d\xc3\x00\x1c\x83\x47\xfb\x3c\x12\xb4\x4f\x42\xf0\xc4\xd2\x71\x21\xdf\xbb\x27\xee\x58\x12\x1b\x1c\x6c\xae\xa9\xac\x4a\x5d\x15\x6a\x0c\xef\x03\xfd\x1e\xe3\xa4\x8e\xc4\xff\xae\x36\xce\x30\xcb\x52\xd2\x63\x60\x54\x00\x7e\xc7\xd0\xa5\xf8\xfe\xd5\x73\x54\x85\xb9\xb7\x2e\x51\x51\xfe\x57\xa8\x3b\xee\xa5\xf4\x49\x1f\xb7\x5e\xbb\x9a\x77\x5a\xbb\x54\xc2\x79\xa9\x0d\xfa\x54\xe5\xab\x2a\x2f\x21\xb1\x14\x43\x97\x5b\xac\x94\xec\xa6\x30\x10\x08\x39\x78\x45\x7d\xcb\x32\x13\x7f\x0e\x69\x1d\x1b\xeb\x5b\x6b\xb6\x0a\xb7\x0d\x98\xad\x7d\xc6\xa5\x73\xa2\x70\xef\x5e\x80\x43\x06\x1c\x1f\xb7\x50\x33\x5b\x73\x9b\x63\xc2\x03\x3f\x00\x4a\x70\xfb\x2f\xe7\xce\xad\x37\xc6\xfc\x0c\xb1\xf7\x4e\x88\xbd\xa1\x5f\x67\x44\xc1\x23\xa5\xe2\x52\xc9\x8c\x3f\x48\x9b\xdf\x8f\x12\x24\xf6\x27\x74\xed\x8f\x1e\xae\x9f\x56\x2b\x7c\xb8\x5e\x6d\xf2\x11\xd6\x1e\xcd\x4d\xf5\x9e\x57\x83\x99\x1e\x69\x41\x7f\x51\xf3\xaa\x56\xfd\xa8\xdb\x21\x56\x81\x76\x4f\x0d\xf1\x6a\x59\x7b\x33\x10\x79\xee\xc9\x2d\xc3\x89\x19\x8c\x9f\x62\xe6\xde\x76\x29\x1c\xa2\x47\xf1\xd2\x68\xc0\x54\xc8\xea\xc9\x17\xff\xf1\xf6\xed\xab\x9f\x5f\x3f\x7b\xfb\xf6\x8b\x09\xbf\x9d\xed\xab\x7d\x78\xb3\xda\x0b\x70\xe8\x9d\x13\x40\x55\x43\x6b\x20\x3a\x66\x89\x34\x59\xf9\x75\xe2\xf4\xf4\xc0\x23\xf5\xf4\x40\x3c\x89\x6e\x59\xc8\xda\x87\x6c\xb4\xcd\xc6\x06\x1a\x1d\x21\xbe\x30\xf8\x5a\x7b\x91\x4e\x34\xb5\xc2\x67\x69\x50\xea\x08\x37\x83\x23\xcf\x8a\x8f\xcb\x2a\x53\xe3\x5c\xbf\x26\xab\xc0\x21\x59\xc4\xf1\x2e\x41\x76\xca\x98\x38\xb6\xf0\xd7\x5e\x35\x47\xa4\xc7\xc7\x17\x0a\x38\x95\x6b\xb2\x8e\xa2\xc1\xc5\x73\xb0\xb3\x14\xe7\x46\x88\x52\xf3\x4d\x81\x14\xb0\xa9\x25\x84\xe9\x44\x13\x4b\x12\x1d\xcc\x9c\xcd\xbd\x01\xf6\x00\xd4\xfb\x5f\xdf\xbc\xf8\x07\xf5\xe4\xa9\xa6\x6e\xd4\x3a\x22\x9d\x54\xe7\x1f\xca\xb0\xb6\x5a\x5e\x8b\xeb\x6a\xc3\x44\x37\x90\x47\x46\x72\x5d\x15\x45\x05\xe9\x9e\xdf\x37\xb5\x19\x52\x1a\x16\x0d\x5a\x9a\xbe\xfe\xb5\x51\xb5\x11\x87\x56\x32\x73\x9c\x77\x6e\x38\xe1\xb9\x9c\xa9\xc0\x5a\x61\x04\xfd\x9b\x85\xe9\x7c\x51\xe6\xf3\x7c\x26\xcb\xa6\xb8\x16\x7a\x6d\x6e\x81\xcd\x1a\x9a\xd2\x22\x65\xc1\x80\x03\xee\x8e\x6c\x5f\x12\x97\xa1\xdf\xa0\xf3\xaa\x2a\x5a\xbb\xf2\xb7\xe3\xe3\x9e\x16\x33\xc3\xbe\xe2\xeb\x0a\x6d\x49\x55\xf3\x7e\x13\x9c\xaf\xef\xd7\x30\x71\xad\x7e\xff\x72\x6d\x99\xbc\x21\xdf\x57\x03\x43\x3c\x3d\x2a\xc3\x50\xa8\x94\xb3\xfc\xcf\xe6\x18\x7f\x2b\xc8\x2e\xda\xee\xd7\x5a\x2e\x2c\xde\x89\xef\xb5\x90\x64\x83\x3d\xc4\xd4\xd7\x0b\x99\x97\x98\x15\x5b\xaf\xd5\xcc\x80\x2d\x6f\x0c\x98\x65\x09\x42\x0a\x86\x54\x45\xb7\x18\x9b\x12\x1d\x91\x68\x0e\xf0\x06\x3b\x8c\xa6\x02\x0b\xff\xda\x6c\x03\xa3\xd8\x3d\x8a\x63\xab\x87\x94\x93\x32\x01\x6c\x46\x05\xf6\x04\x33\x93\xe8\x5c\x2f\x20\x2b\xf8\xd6\xc8\xa2\xb5\xda\x7f\x87\xa1\x0c\x59\x3b\xc4\x9f\x96\x98\xb4\x73\x63\x82\x9e\xec\x66\xa9\x46\x5a\x13\xf0\x71\xf0\xe5\xa9\x33\xbf\x70\x89\xe5\x35\x9f\x7d\x20\xdc\xdc\x6e\x15\x54\xf6\xc6\xf5\x6b\x65\xb5\x1c\xe2\xdf\x02\xf7\x93\xa9\x6c\xb3\x2e\xf2\x99\xb4\xef\x0f\x58\x95\x40\x0f\x1e\xf7\x65\x0b\x51\x40\x1e\xf5\x2d\xcd\x81\x75\xe6\xd7\xa2\xdf\x2c\xd5\x4a\x91\x27\x98\x1e\x18\xe1\x74\x5d\xb8\xa6\x2f\x39\x15\x18\x02\x96\x90\x73\x0c\x89\xd1\x42\x82\x20\x69\x37\x12\x2d\x39\x8c\x98\x5c\xab\x7f\x6d\x94\xd5\x00\x71\xd8\x38\x11\xef\xa3\xa0\xf3\xb4\x2a\x0a\x1b\xb2\xb5\x0b\xfa\x5e\x46\x8c\x87\x98\x96\x37\xe2\x88\x84\x86\x8f\x92\xfb\x3e\xcb\xd5\xe2\xd4\x30\xfd\xae\x4a\x03\x3e\xcb\x9b\x64\x1a\x75\xd4\xa0\x4c\x28\x8b\xba\xd5\x95\x92\x38\xf9\x05\x6a\x31\xfe\x13\x15\xbc\x98\x2d\xd8\x6a\x1d\x30\x54\x28\xec\xa8\xd0\xd5\xa6\x9e\x29\x74\xbc\x44\xdd\xc5\x2f\xca\x6a\x6c\x1c\x91\x22\x14\xcb\x36\xb5\xc5\x19\xa8\xc1\xee\x28\x77\x2f\xa2\x63\x96\x13\x4e\x0d\x71\xb3\x1e\xb9\xe8\xfe\x84\xa8\x59\xab\xb2\x31\x84\xa4\xc2\x84\x4f\x10\x2b\xba\x9a\xd3\x68\x44\xf1\xb4\xb8\x72\x71\x5f\xa1\xc1\xe8\x5b\xe8\xd7\xaa\x58\xd0\xd8\x8c\xd4\x82\xc2\x08\x70\x8b\x25\x5e\x7e\x92\x1a\x40\x1e\x22\x05\x09\xa4\x2c\x31\x80\xb6\x98\x82\xd9\xc8\x13\x3a\xa0\x76\x86\x44\xc2\x10\x8e\xd6\xe1\x58\x5e\xc6\x70\xeb\x35\xb5\xc4\x12\xcc\xda\x96\xf9\x02\xa8\xaa\x27\xb8\x43\x17\xe9\xc2\x5e\xe1\x2d\x28\x1f\x57\xc2\xf0\x13\xba\x2a\x36\x36\x4c\x06\x38\xa8\x98\x1b\x98\x90\x18\x73\x5d\xd3\x69\xae\x95\xb9\xe9\x2c\xa8\x60\xf8\xd1\xb7\x50\xcf\x40\x11\xba\xc4\x04\xc2\xb8\xf0\xae\x99\x8d\xad\x16\x22\x53\xef\x9f\x12\x3a\x3c\x16\xa3\x43\xf5\x27\xaf\x89\xf0\x39\x9a\xca\x19\xfa\xfe\x58\x75\x74\xd0\xec\xfe\x63\x71\xf8\x49\x12\x63\xd0\xdb\xb7\x61\x7e\x67\x2b\x38\x5c\xc9\xba\xec\x9f\xb4\x05\x87\x15\x24\xc7\xa4\x10\xf1\x2b\xb5\xaa\xea\x6b\x51\x28\x79\x31\xee\x0d\x45\xef\x0d\x70\x15\xac\x73\x6e\xbd\x49\x64\x74\x51\x57\x57\x08\xb1\xd5\x66\xb6\x1c\xf7\x4e\xc7\xef\xaa\xbc\xec\xf7\xa6\xd3\xb2\x37\x48\xc9\x16\x36\x55\x0b\xeb\xf7\xb3\x6a\x8e\x49\x02\xd9\xdd\x18\x2b\xf2\xb6\xbf\x42\xea\xad\x95\xaa\x17\x6a\x3f\xb5\x6e\x59\x55\xeb\x37\x86\xe8\x5b\xa5\xeb\xc4\x95\xf4\xb6\x68\xa4\x16\xaa\x21\xde\xdc\x9c\xfe\xaa\xc6\x97\x34\xfd\xb2\xa6\xdf\x4c\x3b\x65\x50\x37\x2f\x17\xcf\x4a\x43\xa9\x8c\x40\x44\xcb\x8b\x5a\x44\x19\x95\x3e\x09\x9d\x08\x82\xed\x49\xdd\x61\x89\xb8\x40\x11\x11\x4e\xae\x53\x5c\x8d\xd0\xce\x60\xd5\x19\x76\x7e\x26\x24\xe5\x6c\xf0\xba\xe4\x5c\x5b\xc7\x00\xc0\x41\xae\xb0\xf0\x17\x25\x03\x25\xb2\xa3\x44\x4e\x89\x15\x04\x8b\x59\xfb\x37\xbe\x58\xee\x8d\x98\xd6\xd9\x02\x48\x37\x7b\x74\x25\xe9\x8e\xee\x78\xc3\xcf\x46\x12\x2b\x8e\xc7\xde\x40\x99\x8d\xa5\x33\x67\x30\x97\x56\xb4\xa7\x4f\xe2\xcd\xc4\x31\xcc\xc5\x15\x7d\xf0\xcf\x9f\x29\x63\x4b\xf6\x90\x7d\x8b\x1d\xf7\xed\x62\x54\x7b\x8c\x76\x1e\x20\xd5\x03\x8e\x9b\x12\x87\xdf\x51\x07\xf8\x96\xf5\xf2\x87\x97\x47\xe6\x4a\x5c\xab\x32\x23\xf3\xd4\x95\xd2\x5a\x2e\xd4\x04\x04\x00\x8a\xbc\x1a\x36\xfc\xcc\xc8\x62\x6e\x4a\xfc\x0e\xae\xc2\x7e\x03\xad\x1b\xb3\xa4\xe5\xd0\x85\x60\x65\x78\xd3\xfe\x65\xa9\xbc\x78\x00\xf4\xdf\x5d\xa1\xee\x92\x43\x65\x12\xc0\xc0\x71\x1b\x69\xe4\x72\x4f\xd5\xec\x4f\xff\x03\xcd\x78\x55\x5d\x77\x3a\xce\x03\xc8\x3e\x7c\xc0\x73\xa6\xc6\xf6\x76\xd5\xa9\xb2\x13\x53\xf9\x34\xe5\xdd\xef\xd0\xb2\x35\x88\x8d\xf9\x82\x9d\x22\x5e\xb6\xba\x7c\x14\xd6\xc7\xde\x7e\xc9\x9b\xe5\x4b\xd6\x32\xd0\xa7\x12\xfb\xcb\x1a\x72\xa3\x01\xd7\xfd\x20\xe1\x81\xe8\xe3\xbe\x7f\x3a\x3a\xdf\x49\x4c\x15\x52\x2e\xb4\x30\x77\xd7\x1d\x69\x30\xaa\xa9\xaf\x81\xc6\x70\x26\x87\xb8\x2c\xb8\xfc\xec\xe3\x2e\xa6\x2a\x35\xc8\x34\x3d\xf8\x31\x7f\x0f\xa8\x74\x36\x3d\x18\xcf\xaa\x72\x26\x1b\xb3\x40\xf3\xe5\x0c\x8c\xd9\xab\xb9\x38\x8b\x60\x3e\x9e\x1e\x0c\x6c\x5d\x03\x7e\xa8\x6c\x0a\x3f\x02\xc1\xba\xd6\x2f\x1e\xfb\x6b\xae\xdf\x55\x69\xe8\x31\x03\x81\xe6\x11\xa8\x15\x3b\x2f\xd1\x87\x25\xaf\xd6\x3a\x08\xd5\x87\x47\xe2\x57\x6f\x97\x61\x58\x71\x60\x92\x83\x07\x3d\xb5\x5a\x37\x36\x7f\x0d\x32\x72\x73\x64\xb7\x39\x79\x27\x88\x97\xbd\x06\xaf\x06\x7b\xa2\x89\xd4\x5b\xef\x74\x7b\x37\x93\x31\x4b\x74\x1b\xbb\xef\x8f\x18\xeb\xf1\x9b\x3e\x3b\x7f\x1a\x63\xb3\xed\xd1\xfa\x57\xc3\x52\xfc\x70\x5d\xca\x55\x3e\x43\xce\xa2\xe3\x95\x18\x36\x1d\x04\x7a\xf7\xc0\x3d\x1e\x4f\x78\x29\xaf\xbc\x29\x9a\xfc\xef\xea\xfa\xb8\xa9\x6a\xcf\xe1\x04\xa5\xac\xf6\x46\xab\x80\x15\x1a\x4f\x6c\x49\x30\xd1\x50\xd5\x7e\xe3\x6b\x87\x02\x5c\xd0\xc6\xf1\xcf\xbe\xfe\x84\xf3\x8f\xdc\x10\x27\x62\xad\x7c\xff\xf1\x97\x6d\x6c\x5c\xbb\x76\xc8\xd8\x31\xe3\xb3\x85\x6a\x08\x72\xfd\xb7\xb5\x9a\x0f\x51\x42\x52\x7a\x28\x9e\x5a\x51\x8e\x9b\xa4\x35\x46\x1e\xa4\x48\x30\xf0\x23\xcc\x5f\xa3\xd9\x8b\x1a\x56\x61\x85\x8c\xab\x0b\xca\xdb\x4f\x80\x2d\xcf\x12\xda\xf1\x0f\x1f\x22\xa7\x62\x22\x94\xb2\x51\x63\x30\x00\xa7\xa5\xb8\xf6\xed\x4f\x3e\x03\x10\xe6\x90\x0f\x94\x38\xf3\xbc\xa4\xa0\x6f\x76\x44\x6b\xc2\x6f\x6f\x10\x50\x39\xbb\x97\xea\x64\x27\xa0\xba\x03\x2d\x8d\xed\x04\xcc\x87\xd7\x15\x28\x38\x5d\x5f\xa6\x9a\x39\x67\xfb\x77\x87\x42\x21\xef\x37\xd1\xe5\xdf\x8e\x8f\x2d\x99\x42\x42\x45\xf6\xfb\x6f\x6a\x39\xbb\xd0\x06\x60\x2a\x07\xe5\x1f\x0a\x93\x51\x8f\x55\x1d\x4e\xda\x88\x8f\x68\xef\x9a\xd9\x7c\xd6\xe8\xda\x6e\x19\xd6\x50\x4b\x8d\x1a\xa0\x36\x14\x1d\x61\xf3\xaf\x9a\x56\x6d\xca\xac\x85\x3d\x72\xc0\xa6\x51\x5b\x73\x55\xb6\xb7\x71\x4c\x6b\xdd\xb2\xd3\xb6\x8a\x70\xed\xb1\x9c\x68\x3b\x9b\x80\xb3\x66\x66\x58\xb5\xc7\xf0\xaf\xb8\x65\xeb\x96\x3a\xe2\xb1\xb8\xd5\xd0\xf6\xf3\xb6\xbe\xad\xcd\x3a\x27\x7d\xfe\xe5\xe6\x5c\x6a\x5b\x78\xb4\x05\x32\x0e\xe9\x4a\x75\xe5\xaa\xdb\xf3\x6f\xbf\x39\x32\x70\xe4\xff\x9c\x76\xbf\xea\x74\xcd\xd5\xda\x3e\xf8\xec\xdc\x4d\x63\x98\x27\x43\x26\x1e\x92\x35\x56\x07\xa1\x79\x18\x51\x1a\xe2\xe6\xe9\x1b\x0a\x34\xdb\xa8\xd0\xc3\x90\x0c\x45\x75\x9d\x04\x1a\xd4\xa5\x52\x0f\x21\xc9\x86\xa4\xd4\x7f\x1f\x47\xcc\x38\xcc\x9c\x31\x8e\xb7\xc5\x09\xae\xa7\xf1\x42\x35\x51\xf7\xa1\x35\x4c\xb8\x86\x21\x82\x86\xbf\xdf\xdf\xe1\xdd\x7b\x84\x0a\xc7\x64\xb6\xc1\x73\x7d\x24\x1e\x30\x08\xc9\x26\x9f\x81\xc2\x2b\x22\x53\x19\xbf\xac\xad\x05\x8e\x27\x39\x22\x5a\x87\xfe\x98\x75\x0c\x83\x79\x0e\x62\xc0\xf9\x40\x13\x6d\xbb\x88\x04\x43\x4f\x7d\xdb\xa7\xe0\xc1\x30\xc4\x95\xd0\x72\x02\xc6\x3f\x12\x1c\xb7\xe6\x45\xbe\x3e\x8a\xd4\x17\xb4\x16\xf3\x09\x35\x18\xe7\xe8\xbd\xdb\xf3\x42\x31\xaf\x42\x1d\x8e\x5d\xf8\x39\x6c\x54\x37\x05\x66\x92\xb3\x1b\x67\x5f\xab\x2d\x21\x78\x9e\xf9\xf4\xd5\xe3\x8e\xc7\x0d\x73\x37\xc6\xed\xdc\xc7\x47\x01\xb2\x39\xad\xb8\x35\x50\x8e\x36\xc5\x7e\xe6\x28\xce\x36\x62\x6c\xb0\x04\x66\xfe\x20\x08\x14\xc7\x90\x25\x88\x0d\x97\x1a\x02\xae\xb8\x20\x1b\xb3\x6b\xbb\xf7\x19\x80\x3e\xba\x4f\x40\x20\x4f\x78\xd1\xcf\xad\xd9\xe2\x43\x42\x2f\x12\x4c\xff\x0e\x9b\x5b\xe7\x8c\xc3\xf9\xbd\xd3\x9a\xba\xf5\x0a\xe3\xbe\x7d\x33\xf3\xa8\xe9\x45\x9d\x22\x2f\x2f\xc8\x9a\xce\x89\x29\x3e\xf8\x85\x17\x58\xd8\xa0\x63\xa2\x9f\x83\xc8\x8f\x65\x1f\x68\xef\x7b\x3a\xb7\x40\x78\xc8\xe7\x92\xca\xd3\xce\xf6\x3f\x40\x2a\x0e\xc2\xe0\xc3\x58\x66\x59\x3f\xd1\xa9\xeb\x2b\xc0\xc1\x18\xfc\x1c\xf5\x5a\x95\x03\x62\x25\x1e\xb7\x84\x8d\xbe\x17\xf9\x83\x8b\xb8\xbb\x93\x00\xf1\xed\x97\x5b\xe0\x42\x67\xc7\x29\xfc\x40\xec\x30\x9c\x82\x95\x4a\x5b\xa8\xc1\xa7\x30\xde\xac\x33\x9b\x44\x5c\x27\x2b\x30\xd4\xf1\xec\x45\xb4\x0a\xfe\x33\xa8\x37\x73\x7c\xf4\x3e\xbc\x47\xc7\x9e\x8d\x63\x2e\x83\x73\x20\xc1\x5c\xa9\x22\xe3\x38\x3e\x0e\xb3\x78\xa7\xa1\xf6\x14\xbd\x98\x7f\x4d\xaf\x71\xd7\x02\x38\xca\xb4\x89\x24\x3d\x8d\x84\x8c\x0f\x6d\x8f\x61\x25\xbe\xdc\xce\xf8\x7c\x89\x8c\x4f\x8b\x35\x0e\xd6\x12\xce\x7c\x07\x22\xdc\xc4\x93\xc9\x94\xe3\xc2\xbe\xea\x98\xc5\x57\x5b\xd8\xaf\xaf\xf6\x60\xbf\xbe\xba\x05\xfb\xf5\x55\xc8\x7e\xfd\x0f\x67\xb2\x52\x5b\x3e\xc2\x2d\xff\x6d\xaf\xdb\x70\xfe\xe8\x84\xf8\xb1\x4b\x10\x09\x82\x55\x43\x80\x89\x2e\x82\x15\x11\xe9\xdb\x9f\x47\xec\x7e\x6b\xa7\x22\x61\xd1\xb7\x15\xf9\x77\x2f\xa1\xdd\xfa\x93\x26\x9f\xec\x8e\x4f\x3b\x3a\xf5\x5a\x1d\x5f\x97\xb3\x65\x5d\x95\xd5\x46\x3f\x9b\xcf\xd5\xac\x01\xcd\x31\xc5\x6b\xe1\x34\x00\xb3\x81\x3a\x0b\xe1\xd7\x6a\xde\x3f\x39\xf5\x99\xce\xab\x4d\xb3\xde\x60\xaa\x66\x54\x6d\x4d\x0f\x16\xcc\xea\x18\x92\x67\x8a\xbf\x6d\x74\xe3\x62\xd7\xa1\x5c\x4e\x5a\x49\x8c\xf5\xd8\xe4\x2b\xc5\x6c\x8c\xd1\x1f\xff\xef\xe1\xc0\x2f\xd4\xaa\x62\xda\xed\x58\x2b\x63\x55\x31\x6e\x05\x8f\x12\xa1\x59\x20\x2a\x0b\x1a\x85\x2d\xab\xea\x42\x4f\xd4\xfb\xa5\xdc\xe8\x26\xbf\x54\xa3\x4c\xad\x35\x69\x15\xa6\x07\xa8\x7f\xa9\x61\xd6\x65\xa6\xea\xe9\xc1\x50\x54\xb5\x98\x1e\xac\xd4\xaa\x12\x59\x5d\xad\xd7\x2a\x43\x47\x25\x70\xca\x3c\xf0\x88\x61\x16\x6c\x23\x0a\x18\x79\xdd\xaf\xc6\x4d\x99\x57\xe1\x15\x68\xcf\x10\xa4\xe4\x6c\xd9\x0f\x18\x01\x07\x0d\xb6\x67\x69\x78\x24\xbe\x50\xb4\x3c\xe8\x3d\x60\xc0\xb0\xa8\xdf\xe6\x9c\x2c\x48\x4f\xfc\x1c\x4f\x3f\x12\xac\x83\x0e\xf7\x41\x37\xcf\x95\xbc\x50\x01\x07\x94\x7a\xc1\xf5\x62\x96\x7d\xbe\xb2\x3e\x90\xe2\x5b\x01\x7e\xd7\xae\xfc\xe4\xf0\x14\xe0\xef\x2c\x66\xc5\x93\xf0\xe3\x91\x0d\x59\x4a\xee\x9a\x28\x54\x5b\xb1\xa5\x94\xec\x26\x71\x86\x1a\xe8\xb3\x85\x47\x9b\x55\x8e\xbe\xb7\xd5\x15\xac\xee\x53\x66\x94\x82\xb5\xde\xd2\xa7\xbb\x04\x13\xab\x68\xb7\x2d\x78\xb1\x97\x79\xc3\xba\x1d\x7d\x70\x57\x04\xaf\x98\x3d\x4a\x57\x4f\x5f\x9c\x0f\xb7\x39\x24\x50\x37\xe0\x92\x60\x20\x86\xde\x07\x11\x38\xb0\xd0\xeb\x6b\xd0\x43\x81\x0d\x1c\x39\x27\xc4\x77\xf1\xce\x17\x7e\x47\x8c\xa2\x81\xc5\x63\x61\x9f\xfd\xd2\x3b\xf8\xe1\x83\xe8\x79\xbc\xc3\x28\x63\x49\x01\xdd\xeb\x25\x40\x55\x7e\xc4\xad\x50\x08\x6c\x25\x18\xf5\x31\xb4\x59\xa9\x46\x1e\xc5\x03\xd3\xb7\xa8\xb4\x55\x6d\x1a\xe5\x72\x37\x04\xdb\x0a\x0c\x01\x15\xc7\x03\x13\xe6\x68\x21\xef\xe2\xc4\x09\x79\x10\x9e\x90\x07\xdb\x4e\xc8\x03\x77\x42\x6c\xc7\x96\xd7\xb2\x4f\x11\x7d\xf0\x89\xe7\x1b\xf9\xa8\x2d\xe2\xbe\xdc\xa2\x18\xf9\xf5\x66\xb8\xcb\xf5\x24\xd6\x8c\x3c\x1c\x04\x63\x38\xfb\xbe\xe8\x86\x1a\xb0\x69\xa3\x61\xe0\xcf\xc0\x7e\x76\xd5\xeb\xbc\x10\x5b\x24\x94\x5d\x50\x5c\x59\x95\xd8\x7f\xc7\x07\x1b\x30\x06\x65\x0c\xc1\x8e\x44\x5a\xc5\x17\x1d\xc2\x23\x91\x66\x5b\x43\xe5\x90\x23\xdf\x2c\xa2\x09\x70\xd4\x34\x61\xcb\xe0\x7b\x11\x9e\x81\x86\xdd\x48\x61\xc4\x0c\x67\x0c\xdb\xba\xb2\x5a\xc1\x7a\x52\x00\x13\x96\xad\xa7\x46\xec\x96\x71\x0f\x9b\xe2\x24\xb0\xf6\x24\x60\xb8\x77\xd2\x3d\x6e\x3d\xcb\x36\xb5\xd7\x13\x4c\x85\x84\x90\x78\x49\x2d\xc0\xb0\xb7\xdf\x0e\x18\xb1\xa0\x23\x37\x1c\xdb\xbc\xb4\xc6\x1e\xb3\x3a\xc6\x1b\x27\x9e\xb7\xe2\x4c\x06\xb7\x7a\xae\xdf\x16\x8c\x8e\xdf\xcf\x90\x5c\x7d\x54\xcd\xf1\xa7\x6d\xed\xc0\xfc\x83\x3a\xdf\x2c\x30\xf8\x05\xcd\xb0\x2b\x34\x7f\x20\x78\x86\x71\x17\x1c\x75\xea\x34\x15\x0d\xc3\xe3\x51\x86\xad\x2f\x26\x5b\x4d\xbd\xac\xa9\xc8\x5a\xf7\x21\x8a\xa1\x8e\xcc\xbb\x20\x4e\x17\x7c\x88\x84\x41\xba\xde\xe9\x5b\x70\x4c\x2d\xc1\xa4\x6f\xf0\x93\x6b\xad\xb1\x5f\x6f\x27\x82\xf5\xa3\xdf\x91\xcd\x08\x8b\x55\xa1\x83\x88\xaf\xe0\x3a\x6e\x57\x46\xfe\x7c\x10\x35\xec\xbc\xaa\xeb\xea\x0a\x1f\x4d\xf1\x79\x1a\xed\x33\xe3\x1c\xf8\x2c\xa7\xdc\x5c\xce\xd4\x79\x55\x5d\x4c\x60\x6f\x27\xe7\x45\x75\x3e\x39\xfc\x83\xfc\x66\xfe\xe0\xcb\xc3\x6f\xbe\xfc\x46\xfe\xe1\x0f\x5f\xaa\xaf\x0e\x67\x0f\xce\xbf\xfe\x5a\x9d\x1f\x9e\xcf\xe6\x87\x99\xfc\xe6\xab\xaf\xbe\x39\x7c\xf0\x55\x36\x59\xcb\xd9\x85\x5c\x28\x4d\x8d\x75\x3d\x43\xbf\x17\x72\x78\x19\xbf\xd3\xff\xf1\x8f\x87\x0f\x0f\xf9\x33\x19\x4d\xfb\x15\xc1\xab\xb5\x7a\x16\xa5\xb3\x5a\xff\xe4\xdf\x25\x20\x7e\x85\x2d\x13\x79\x19\x74\xd4\x8a\x1b\x82\x31\xe3\x4c\x55\x0c\x1c\xe6\xae\x27\x86\xe8\xad\x7a\x41\x97\xfe\x43\xb7\x65\x9a\xdd\x99\xff\x53\xbc\xec\x97\x55\xae\x9b\x9f\xaa\x12\x3a\x3a\x06\xf9\xd6\xd6\x87\x4f\xa3\xb2\x2a\x47\x48\x23\x50\xfa\x0d\x5d\xf4\x21\x05\x94\x1b\x68\x08\x5a\x4b\xe6\x5d\xbc\x97\x81\xa7\xe7\xb4\x98\xb5\x44\xc0\x7d\x79\xbb\x03\x7f\xce\x03\x33\x02\x5f\xbc\xa7\xb1\x84\x39\x39\xff\xc8\xcb\x0b\x67\x60\x84\x46\xe3\x14\xf5\xcf\x19\x88\x3b\xeb\x6d\x67\x7a\xb4\xaa\xb2\x7c\x7e\x1d\x9a\x91\xa3\xe5\x36\x58\x4f\xe6\xe6\xf2\x9b\x4c\xac\x11\x1e\xc4\xa4\x08\x05\x5c\x6f\x7c\x6e\x47\x3b\x23\x6a\x79\x16\x86\xa9\x83\xd4\xba\x79\xb3\x6c\x33\x78\xbe\xf4\xf7\x15\x89\x12\x17\x7a\x6c\x7f\x11\x10\x84\xbd\x04\x16\x26\xe7\x98\x75\xc5\x6d\x5c\x19\x6b\xc0\xeb\xa5\x1a\x27\x1d\xad\x5b\xf5\x86\x21\x8f\xd6\x25\xe3\x25\xf4\x85\xfb\x48\x3d\xa1\x1c\x63\x24\x1b\x37\x30\xfe\x44\xb1\xe8\xf4\xd3\x2e\x76\xd3\x86\x09\x93\x1d\x54\xd1\xda\x41\x1a\xf4\x7b\x46\x06\xa0\xd6\xe6\x6e\x26\x8b\x22\x2f\x17\x6d\x9c\x1a\xf0\xbd\x45\x4c\x2d\x19\x86\xf8\x23\x62\x6d\x42\x57\xf2\x1a\x6d\xdc\xe7\x55\xbd\xa8\x9a\x46\x95\x70\x20\xf0\x2c\xe6\x5d\xc6\xc1\xed\xe7\x98\x6e\x81\xed\x93\x41\x75\x27\xb2\x28\xa6\x94\x1c\xd6\xe0\xf9\x5c\x35\x8d\xaa\xc5\x0f\xff\x3f\xe7\x76\xe8\xbb\xfa\x7f\xd9\x7b\xf7\xf5\x36\x72\x63\x71\xf0\x55\x30\x4a\xe2\x26\x6d\x8a\x94\x64\x7b\x2e\x74\x14\x8f\xc6\xf6\x24\xfa\xc5\xb7\x95\xe4\x4c\xce\x4a\x3a\x16\xc8\x06\xc9\x1e\x35\xbb\xfb\x34\x9a\xba\xcc\xd8\xcf\xb0\xff\xef\x5f\xfb\x18\xfb\x3c\xfb\x02\xfb\x0a\xfb\xa1\xaa\x70\xed\x6e\x92\xba\x78\x72\xd9\xcc\x97\x2f\x16\xd1\x40\xa1\x50\x28\x14\x0a\x40\x5d\xfa\xb6\x0d\x70\xb8\x17\x42\xc1\x97\x7a\x9d\x06\xad\x4d\x63\xe0\xb6\xfb\xaa\x75\xba\x6a\x07\x41\xb5\x91\xd9\x96\x2d\xb9\x94\x6a\x54\x74\x4f\x87\xed\xd7\x28\x4d\xaf\x39\x2e\xf7\x0e\x59\xe3\xba\x6d\x32\xb9\xf0\xb4\xaa\xa1\x39\x64\x9b\xef\x6e\xe4\x89\xb6\x4b\x94\xc6\x33\x2f\x1c\x06\xfc\xa7\x70\x57\xb9\xfe\xc9\x15\x93\xa8\xae\x4e\xf2\xf2\x92\x97\xb1\x3a\xcc\x19\x69\x65\xab\xe9\x88\x09\x6e\x1e\x31\x4f\x4f\x77\xd2\x7f\xc9\xda\x3b\x10\x4c\x66\x96\x89\xf2\x40\x4c\x9c\x28\x15\x58\xe0\xd5\x42\x17\xc6\xf5\x22\x37\xd0\x1b\x12\x05\x6e\x40\x60\x20\x20\x18\x05\x78\xb9\x2c\x79\x51\x88\x92\x95\x62\x2c\x20\x6b\x0d\xc4\x74\x5a\x48\x81\x91\x0b\xd3\x84\xd2\x7e\xc8\x1e\xf9\x0c\x8d\x4d\x5a\x28\x26\x75\x80\x28\xe7\x48\xa0\xf6\x30\x3e\xae\x16\x3c\x25\x55\xd7\x4a\x12\xf4\x58\xa1\x8e\x58\x8c\xe1\x4f\xe7\xa2\x9c\x6a\x51\xe1\xe9\x55\x7d\x07\xe8\x61\xce\xc6\x79\x01\x76\xbc\x49\x05\xe1\xb0\xc9\x31\x6a\xaa\x20\x2d\xa4\xb5\x42\xd5\xe9\x78\xd0\x42\x5c\x0f\x8e\x4b\x76\x29\xd2\xd4\x98\x61\xb1\xda\xf9\xc9\x5e\x6f\x34\xdf\x1c\x38\xdc\xe6\xaa\x93\xfa\x2c\xd7\xf5\x42\xae\x55\x74\x3d\x61\x4b\xc0\x1f\x75\x17\x67\x2e\x78\xb6\x26\xbb\x0a\xdc\x2d\x82\x78\xdc\x46\xba\x87\xe2\x05\x6a\xf3\x2c\x76\x76\x2d\x74\xa2\x85\x04\xb8\x99\x21\x00\x44\xc8\x60\x72\x9c\x17\xc2\x6b\x7f\x87\x83\x1b\xbb\xc9\xd5\x8c\x1e\x64\x4d\x44\x32\x4d\x12\xff\x98\x15\xd8\x77\x37\x18\xa3\xe8\xff\x1a\x6f\x40\x98\xd6\xd6\x87\x48\x6a\xf7\xcb\x67\xd7\xf6\xfa\xb3\x2b\xa3\xc1\x8f\x1a\xc6\x54\xe5\x0e\xdb\xc4\x9e\xc6\xe6\x10\xef\x30\x67\x97\x82\xac\x98\x61\x6f\x72\x22\x72\x9c\x99\x09\xe9\x74\xcf\xd8\x5f\xc0\xfb\x0c\x13\x7e\x3a\x2c\xe4\xb2\x21\xd2\xc7\x4e\xe3\x83\x07\xec\x2b\x45\x9a\x7e\xd5\xe0\xab\x61\x3f\xe8\x13\xd1\x7a\x19\xf0\x56\x06\x1c\xb0\xc2\xb6\xd1\x4a\xa3\x14\x93\xa1\x15\x4e\x9f\x3e\xa9\x02\x87\xec\xe3\xc0\x82\xce\x20\xd2\x03\x8c\xad\xcf\x8e\xfe\x63\x7d\x0f\x52\x2b\x5d\xeb\x81\x09\x60\x3a\xc8\x51\x96\xa1\xa7\xae\xb6\xf0\xcf\x4b\x86\xc3\xf0\xdc\xcc\x49\x9c\xd1\x2c\x37\xcc\x2e\x3a\xd0\x7a\x43\x6a\x71\xd0\xad\xf7\xfd\x41\x92\x43\x01\x98\x8f\x56\x39\xe8\xef\xe0\x9c\x3e\xd1\x3d\xc6\x62\x9c\x43\x36\xa3\xc6\xbe\xd9\xf7\xb1\x28\x4a\x31\xa6\x74\x47\x21\x46\x9a\xfc\xc3\xe0\x78\xd4\x71\x30\xcc\xc4\xbb\x89\xfa\xb3\x73\x1c\xf8\x7b\xd7\x86\x71\xda\xed\x39\x0a\x77\xe1\x9d\x8d\x99\x7b\x3e\xee\xdb\x3d\x29\x88\x7d\xef\x71\x98\xfa\xe2\xf3\xa2\xcb\x3d\xb6\x0a\xda\xd1\xea\xb8\x8f\xa4\x38\x7a\xab\x8b\xb1\x06\x3f\x22\x8d\xc4\x19\x85\x33\x96\xcc\xd2\x8a\xe4\x60\x9a\xaa\x4d\x09\xdf\x28\x21\xa9\xd0\xc5\xd3\x3e\x8b\xd8\xa3\x00\x38\x63\xd1\x81\x98\x60\xcc\x81\x2c\xbf\x64\x7c\x51\xe5\x73\x75\x04\xe5\x69\x0a\x59\x0a\xd4\x06\x6f\x99\x04\x3a\xf6\xf4\x52\x0f\x9e\xeb\x5c\x41\x3c\xee\xfb\x56\xb3\x5b\x2a\x96\x0e\xdf\xfb\x5a\xe1\xc9\x86\xa3\x70\x58\xf7\x94\x56\x65\x51\x6d\xfc\xdd\x93\x8d\xda\x9d\x5a\xd3\x11\xbd\x63\x41\xdf\xe7\x2d\xe1\xab\x2b\xf4\x39\xad\x05\x67\xeb\x37\x8c\xf6\x2d\x3f\x07\x6f\x49\xd3\xfd\xb3\x86\x4a\xf6\x18\x9a\x1b\x03\xfb\x5a\x25\x57\x51\x75\xef\x07\x59\xc3\xd5\xa2\x6d\x66\x6e\x17\xf1\x86\x31\xb8\x1d\xb4\x07\x9a\x67\xf7\x75\x95\xf3\xab\x7b\x1e\xe7\xd2\xf9\x45\x8a\x9d\x8e\xfe\xd7\x78\xed\x21\xc3\xeb\x0c\xef\x94\xac\x5d\x2e\xdc\xc2\xc0\x0b\xa2\xfd\xd8\x1f\x66\x3f\x23\x52\xb5\xe1\xb7\xfa\x04\xd0\xae\xff\x9f\x64\x35\xdb\xae\xa6\xe7\xdb\x46\xea\xff\xca\x3e\x7e\x2c\x15\x57\x7d\xd6\xf4\xaf\x64\x9a\x8c\x5c\x12\x3f\x54\x74\x5d\xee\x85\x63\x34\xa7\xfd\xac\x4a\x1b\x7c\x5c\xc2\xeb\xa5\x5f\x59\xad\xd2\x00\xe3\x4f\x28\x00\x11\x85\x13\x7c\xe9\x1d\xaf\x9c\xa7\x04\xe7\x83\x59\x2b\x4e\xd9\xf1\xc9\x06\xc4\x10\xad\x5e\xf2\x4a\x9d\xe7\x61\xdd\xff\x08\x25\x95\x88\xb1\xf0\x59\x7b\xab\xa3\x64\x5e\x6f\x85\x85\x4b\x5a\xbd\x85\x3c\x35\xb5\x76\xba\x78\x49\xcb\xd7\x89\xac\x6a\xed\xb0\x90\x5a\x0d\x06\xec\x6d\x5e\xd1\x06\x09\x71\x53\xdc\x0b\xbd\x04\x15\x78\x88\xa2\x25\xf4\x99\x14\x75\x3b\xb8\x1e\xab\x72\x4c\xa0\x98\x4d\xc0\x1b\x44\xb1\x81\x01\xab\x1a\x82\x36\x4c\xde\x9f\x22\x5b\xcc\xf5\x51\x25\xc1\x7c\x0d\x38\xf3\xf6\x62\xcd\xed\x00\x2f\x88\x2f\x58\x95\xe7\xa9\x96\x47\x8d\x13\x61\xcb\xea\xf3\xe1\x7e\x83\xdc\xa8\xee\xfc\x2a\x75\xc9\xfb\xbd\xcb\x7e\xfd\xdc\xed\xd6\x39\xe4\x3d\x2f\x2b\xd9\xca\x26\xf0\xb5\x89\x57\xe0\xc3\x6a\x86\x81\x6a\x4d\xb3\xe8\xb7\x6f\x65\x9d\x35\xdb\x2f\x65\xa2\x35\x61\xb4\xb2\x93\x6d\xef\x93\x18\xca\x43\x3a\x63\xa1\x21\xb6\x13\x1f\xb3\x09\x2b\xf7\x26\xd4\xa8\x43\x5a\xe4\x75\x9a\x55\x66\xf4\x3e\xc6\xbc\xb6\xa2\xec\xa1\x9b\x80\x03\x26\xc9\x2a\xab\x2d\x35\x09\x18\xac\xe1\x5c\x39\x5c\x98\xe4\x2f\x4a\xf3\xa2\x30\xf2\xed\x61\x2e\x19\xd2\x4b\x3f\x91\xa0\x1c\x74\x4e\xff\x64\x2e\x04\x56\x12\x26\x84\xa3\x79\xe8\xd4\xaf\x6a\xf4\x05\x90\xe9\xbb\xb3\x78\x94\x03\x69\x74\x38\x7b\xa7\x33\x94\xd0\xdd\xee\x33\xd8\x29\x9b\xe8\x19\x86\x03\x6d\xaa\x13\x35\x04\xdc\x40\x1a\x7b\x9c\x6b\xb8\xcf\xa8\x04\xfe\x71\x52\x11\xce\x7c\xfa\x6d\x26\x73\xad\x09\xfd\x87\x4c\xaa\xee\x94\xec\x0f\xe8\x72\xe1\xc2\xe6\xf6\xd1\xb7\x0b\xcf\x41\xff\x56\xf4\xc5\xf9\x55\xcb\x67\x0b\x42\xee\x78\x89\x18\x10\xda\x44\xcf\x87\x26\xaf\xbd\xad\xb0\x62\x27\xf2\xcf\xe1\xcf\x99\xc3\x50\x30\x8f\xc4\x4e\x0a\x35\x9f\x9b\xfc\x86\x43\xb7\xa1\x9a\xfc\xf6\x86\xcf\x6a\x87\x0c\xc3\xcd\x3e\xca\xf6\x04\x4a\x3c\xcb\xdc\xcb\xc6\x26\x8e\xad\x49\xa7\xcc\x79\xe2\xa3\xce\x7c\x00\xa8\xb4\xac\x60\xe8\x75\x78\xf8\xff\xe7\xec\x6b\xc2\x51\x4c\x92\x2b\x76\x74\x08\x3c\xcc\xe0\x42\x1b\x32\x71\xc1\x96\x8e\xaa\xc2\x1b\x5e\x8d\x67\xa2\x64\x8b\x42\x56\xa5\xe0\xf3\x16\xa6\xd5\xb9\x4f\xd4\xe8\x70\x1a\x9b\x44\xda\x33\xff\xf0\x4b\x2b\xc7\x0e\xd4\x0b\xd3\x52\x8b\x44\xd0\xca\x7e\x98\x49\xa5\xe9\x9a\x06\xb1\x3c\xc2\x00\xb7\xc0\xf2\x6a\x0e\x2c\x17\x7c\xfa\x44\xb7\xce\x3f\x96\x7c\x3a\x77\x4f\x42\xa6\xbb\x26\x5e\x50\x00\xcd\xfc\x37\x62\xd1\xbc\x08\xda\xf9\x7f\x29\xeb\x23\xd7\xbb\xea\x78\x1b\xc7\xf7\xd6\x13\xee\x3d\x47\xa3\x96\xe5\x78\x60\x53\x08\x0c\xda\x20\x3b\x1b\x89\xee\x1e\xb8\x1a\x9d\x78\x3e\x64\x26\xe9\x8a\x6e\x5a\xc2\xbd\x43\x8f\xed\x63\x04\x92\x17\x79\x36\x49\xa6\x54\xf6\x26\x91\x32\xc9\xa6\x2f\x79\xc5\x75\x09\x06\x42\xc1\xc6\x7e\x2d\x48\x10\x97\x82\xf9\xb1\x01\x59\xa5\xf0\xe7\x8b\x3c\x16\xe6\xdc\xe1\x95\x3a\x95\xea\x15\xec\xf0\xbf\xc7\xd9\xfb\x59\x0e\x12\x3a\x52\x84\xb2\x05\x5f\x79\x08\x3d\xd9\x99\xcb\xa9\x0c\x6d\x42\x54\x59\xb3\x60\xf2\x1a\xab\xb6\x0d\x4d\xbd\x96\xbf\x9a\x73\x18\x97\xcc\x9e\x75\x7a\xfa\x1e\x15\x07\xc3\x2f\x55\xa1\x0d\x59\xaa\x8f\x49\x5c\x32\x47\xd2\x2c\x99\x64\xff\x14\xd5\xd4\xf7\x02\x92\x53\xa6\xed\x20\xa8\x42\x5b\x7b\x1f\x41\xcb\x2f\xed\x00\x0b\x27\xb6\xc1\x60\xc0\xf6\xdf\xbc\x7f\x77\x70\xb4\xf7\xf6\x68\xc8\x5e\x5d\x15\x69\x32\xd6\x8f\x12\x18\x56\xee\x42\xad\x5e\x5e\x24\x9b\x14\x01\x54\xc7\x32\x40\xcb\x67\xc8\xf2\x80\x8b\xa5\x43\x3d\xa1\xf9\x44\xb7\xff\x02\xe2\x1c\x23\x9f\x21\x4f\x9e\x35\x2b\xae\x2f\x71\x77\x6f\xdd\x5b\xdc\x5d\xb9\x4d\xf9\x55\x2b\x6f\x0d\x18\xaa\x5a\x2b\x0c\x54\xe6\xd6\x80\x82\x15\x5b\xe1\x28\xe5\x7e\x0d\x28\xaa\x5a\x2b\x0c\xff\x88\xb5\x92\x34\xb6\x76\x3b\x44\x7d\x6c\xaa\xc3\x6b\xd1\x4b\xd7\xa5\xfb\xad\xa0\x86\x33\xf1\x6b\xf3\x41\xe6\x6e\xd2\xd3\x59\x26\xa6\xe6\x81\x48\x21\x6b\x3b\x70\x4c\x2b\xf8\x92\x6a\xad\x04\xf7\x3e\x5d\x94\x7c\xd9\x62\x83\xef\x2b\xc1\x90\xe4\x6a\x87\x43\xf1\xab\x22\xcc\x13\x14\x2d\xa4\x60\x68\xff\x87\x37\x60\xf3\x3c\x5e\xa4\xa2\x8f\x7d\x78\x47\x86\x51\x92\xc5\x9d\x49\xd6\x83\x8b\x8a\xbd\x72\xea\xdf\x7f\xd9\x9b\xb3\x92\x17\xbe\x31\x34\x2f\xa7\x92\x92\x4a\x60\x5e\xbc\xd0\x48\x46\xef\xc0\x4d\x39\x96\x54\xe3\x96\x14\x4b\xea\xd3\x71\x72\xea\x5a\xdd\x1c\x27\x9e\xb9\x99\xc5\x2e\xeb\xf3\xa2\x48\xaf\x3b\x84\x7b\x0f\x1a\x77\xbd\x5b\xcd\x26\x6a\xc0\xcb\x7e\x95\xa4\x0a\x7f\x8c\x73\x21\x94\x74\x32\x37\x5f\x5d\xff\xd6\x50\x64\xe3\x3c\x86\x93\x83\x4f\x1c\x2c\xff\x70\xb0\x6f\xb9\x57\xd5\xe9\x6b\x1c\x31\xdd\xea\xe0\x0f\x4f\xb6\x06\xd3\xa4\xc7\xa2\xef\xa3\xfa\xb7\xc7\x7b\xf8\x6d\xd8\xf0\x6d\xe7\xc9\x60\xda\x63\xd1\xef\x9b\x3e\xbd\xc0\x66\xbd\xa6\x6f\x5b\xd0\xec\x51\xc3\xa7\xa7\x3f\x60\xb3\xe3\xa6\x6f\x2f\xf1\xdb\x69\x64\x6e\x24\x75\x7a\xb3\x1f\x16\x49\x1a\x33\xce\x3e\x1c\xbc\x66\xa3\x6b\xc6\x8b\x42\x64\x10\xb6\x0c\xed\x3a\xf5\xf3\x81\xc8\xe2\x5a\x9a\x6c\x49\x99\xb0\x17\x65\x0a\x8f\x1b\x23\x6e\xa3\x64\xaa\xb2\x0e\x66\xd2\x9f\x55\x55\x31\x1c\x0c\x2e\x2f\x2f\xfb\xd3\x3c\x9f\x42\x46\xe0\x79\xd7\x83\x84\x4f\x39\x9f\xd9\x31\x76\x7a\x0a\xe0\x2c\x02\x23\x41\x78\xc1\x7b\x92\x49\xb8\x2d\x2d\x0a\x47\x18\x6d\x05\x17\x94\xea\x9c\x12\xb4\x2d\x59\x1b\x6a\xdc\x1f\x0e\x5e\x77\x16\x65\xda\xa3\xbe\xf4\xbf\x87\x70\x2b\x9d\xfc\x62\xc2\x2d\x0c\x1e\xe2\x3b\x33\xcb\xf2\x4d\xa8\xb2\x59\x0a\x2e\x65\x32\xcd\x86\x5b\x14\x2d\x19\x32\xa2\xbb\xb6\xb5\xd6\xa4\xb7\x4c\x6b\xbe\x8c\xba\x03\x75\xa8\xe3\x73\xbc\xab\x87\x47\x89\xe6\xfe\x59\xad\x85\x31\xbc\xb5\x75\xb5\x69\x2f\x19\xce\x9a\xc4\xbe\xc0\xf7\xfd\x44\x7e\x38\x78\x7d\x28\x78\x39\x9e\x21\x04\x5d\x7d\x75\x17\xfd\x2a\xc7\xcc\xe6\x1d\x0f\xb6\xeb\x3c\x41\xdb\xc0\xb1\x8d\xd5\x86\xbd\xea\xf8\x6a\x9a\xbe\x36\x11\x9e\xee\x4c\x2d\xab\x1e\xf3\xa3\xae\x29\xac\x2f\x78\x8a\xd1\xfe\x16\x69\xaa\x4e\x10\xf6\x02\x20\x4c\x48\xd1\x10\x71\xae\x2d\x9e\x9d\x26\x85\x49\xf6\xe9\xa7\xfa\x44\xa7\x3d\xf5\xff\x8f\x58\x74\x7c\x1a\x39\xc1\x0e\xdd\x11\xe3\xa8\x53\x35\xde\x0b\x9e\x36\x66\x84\xf3\x47\x0f\x43\xb4\xa9\x4e\x79\x29\x75\x7e\xc5\xda\x53\xa5\xc6\x10\xef\x33\xba\xc1\xf1\xec\x82\xed\xb2\x8b\x7e\x95\xef\x1f\xbe\xf3\x66\xc4\xc3\xd2\x05\x83\x61\xef\x9a\x01\xfd\xaf\xc3\x77\x6f\xfb\xb8\x80\x92\xc9\x75\xe7\xa2\xe5\x6c\x07\x73\xdb\x2f\x16\x72\xd6\x21\x61\x09\x93\xf5\x88\x45\xbb\x11\x7b\x64\x04\x68\xb7\x21\x3c\x9b\xe3\xeb\xdd\xcc\x5c\x95\x24\xa3\xb7\x07\x51\xdd\x73\x3f\x68\xe1\x6d\x50\x33\x2e\x21\xbb\xf9\x3e\x04\x43\xde\x55\x6b\xac\x0f\x3e\x46\xef\x26\x9d\xe8\x77\x26\xc3\x82\x82\xe3\x57\xfd\x6a\x77\x97\x6d\x6e\x3b\xd4\x50\x82\x0a\xdb\xcb\x34\x19\x8b\xce\x56\xcf\x07\x5e\x7b\x6f\x54\x0d\x1e\xed\xb2\x8e\xd7\xe5\xf3\xa8\x0b\x6c\xb9\xb9\xcd\x9e\xb3\xe8\x79\xc4\x86\x4c\x8d\x89\x3d\x6a\x5e\xea\xbe\x51\x35\x0a\x88\xb6\x0d\xad\x5d\x84\x25\xf2\x05\xcf\xc6\x22\xa5\x5c\x9b\xde\xfe\xf5\xd5\x57\x74\x1b\xf6\xe0\x01\x05\xc0\xfa\xf8\xf1\xc5\xde\xdb\x17\xaf\x5e\x7f\xfc\xd8\xbd\xf9\xf6\x69\xf7\x4e\x8c\x6b\x57\xce\x61\x4c\x7f\x11\x3c\x16\x25\x69\xaa\x4e\x75\xfd\x52\xd8\x50\x91\x36\x60\x78\x32\x78\xf5\xe3\xde\x87\xd7\x47\x1f\x5f\xbc\x7b\x7b\xf4\xea\xed\xd1\xc7\xa3\xff\x7a\xff\x4a\x9b\x44\x44\x2f\x30\x6b\xfc\xe6\xd1\x75\x21\xa2\x21\x8b\xc0\xe6\x61\x0c\x07\xd4\xc1\xd5\xe6\xe5\xe5\xe5\xa6\x92\xf7\x9b\x8b\x32\x45\x0e\x8c\x23\xfd\xd2\xe9\xc8\x98\x8a\xa0\x28\x20\xfb\x93\x0f\x99\x14\x55\x67\x06\xa8\xc8\x1e\x73\xa9\x06\xe2\xdb\x08\x4a\x2d\x5a\x74\xdd\xae\xa2\x62\xeb\xd7\x63\x1f\xd7\x53\xbb\xd6\x5a\x2a\xe8\x34\xc2\xcd\xee\xfc\x53\xa1\x1f\x22\xf7\x62\x5e\x54\x36\x9b\x33\x28\x66\x58\x64\xf6\x0b\x92\x8a\x7f\x7f\xf3\xfa\x2f\x55\x55\x1c\x60\x94\xf6\xd6\x9c\x27\x83\x81\xd2\x3a\xd9\xa8\xcc\x2f\xa5\x28\xe1\xfc\xc9\xfe\xfe\x97\x03\x0d\x15\x2b\xd1\x0f\x7f\x42\xa9\x50\x0e\xae\x66\x65\x54\xdb\x61\x08\x0b\x7a\x51\x0f\xbb\x57\xc4\xa3\xf0\x9b\x45\x99\x57\xb9\xaa\x6d\xb6\x94\xfe\x98\xa7\xa9\x7e\x8b\xc7\x35\x14\x1d\x93\x97\x33\x95\x9e\xd6\x06\x90\xe5\x31\xc6\x6c\xfc\xcb\xd1\xd1\xfb\x9b\x60\xaf\x54\x11\x2b\x69\xcc\x62\xb1\x54\x35\xb9\xbd\x48\x51\x37\x26\x3a\x54\x65\xd8\x34\x3d\x64\x49\x03\xb9\xf7\x15\x53\xd2\x34\x38\xb9\x1d\x6b\xdf\x3a\x31\xaf\x78\x8f\x19\xfe\xa2\xf1\x35\xac\x17\xcb\xaf\xd1\xde\x78\x2c\x0a\x9b\x3e\x66\x79\x65\x8f\xe5\x5c\x79\xa8\xf9\x58\x9d\x3f\x5e\xf2\x8a\x03\x2a\x5d\xf6\xe9\x93\xbf\x77\xd1\x26\xf9\xc3\x62\x32\x11\x65\x6b\x9d\x15\x9f\x0f\xe1\x36\xb3\xf5\xf3\x8f\x49\x2a\xda\x41\xa7\xf9\x08\x3f\xe2\x97\x7a\xfe\x5b\xf5\xd1\x3f\x3b\xd4\xf6\x78\xc4\xef\x6f\x89\xb8\x44\x50\xcd\x40\xfa\x23\xa8\xd6\x0e\x2b\x54\x9d\x42\x58\x2b\x24\xcd\x6a\xe1\xf5\x6c\x3c\x53\x5a\x41\xb5\xbb\xa8\x26\x9b\xdf\x46\xb5\xf8\xa6\x80\x65\xa0\x86\x35\x62\x4a\x1b\xfe\x5d\x10\xfc\x59\xe6\xd9\x2a\x7c\x02\xdd\x01\xba\x6b\x3c\xc6\x99\x39\xfa\x7c\x5a\x5f\x26\xb2\xc8\x33\x29\x5a\xd6\x09\x7e\x24\xf6\xd0\xeb\x7f\xa5\x1e\xee\x89\x45\xd5\xd6\x7b\x2c\x72\x28\x12\x44\xc6\xc6\xaa\x38\x2e\x50\xd0\xbc\x31\xb9\xe1\xae\xbb\xec\x57\x36\x78\xc8\xf6\x21\x9b\x05\x7b\x38\x70\x6c\xcb\x97\x8e\xdb\x66\xc2\xd8\x83\xc8\x0d\xf9\x02\x8c\x5b\xe7\x49\x9a\x26\x52\x8c\xf3\x0c\x63\x3b\xf3\x51\x5e\x56\x60\x6d\x87\x19\x37\xd8\xfe\x04\x73\xb4\xe4\x6c\x8b\xe9\x6c\x87\x5d\xc6\x09\x96\x81\x84\xfe\x37\x78\x35\x12\xbb\x59\x34\xa8\x06\xc6\x84\x53\x05\x57\xb2\x9c\xbc\xc8\xf3\xf3\x44\x60\x46\x95\xe8\xef\x87\x07\x3f\x6e\x1e\xbd\xfb\xeb\xab\xb7\x68\x14\xa6\x2a\x58\x99\xa2\x2a\x6c\xfa\x55\x54\xa5\x39\xbf\x22\x8e\x7a\x0d\x47\xfd\x21\xdb\xdc\xee\xe9\x13\x4e\x9a\xc4\x10\x2d\x89\x57\x0b\xe9\xc4\x2f\xf7\x3f\x40\xfc\x8d\x45\xed\xb8\x84\xa5\xec\x4f\xbb\x6c\x67\x0b\x3c\xaf\xa9\xe0\x8f\xec\xf1\xd6\x96\xd9\x32\x61\xa7\xd7\x42\xba\x4f\x8c\xac\x85\xf5\x38\x9f\xcf\xf3\x6c\xa8\x01\x6b\xc1\x39\xac\xf3\x79\x8f\x55\xe2\xaa\x1a\x14\x29\x4f\xb2\x1e\x7b\x38\x78\x18\x79\x1d\xf8\x6a\xfc\x71\x84\x61\x5a\xa2\x1e\x8b\xa6\xa2\x52\xff\xa8\x8e\xa3\x53\x47\xb9\xa7\xba\x6f\x44\x35\xcb\xe3\xb7\x39\x08\xd8\x39\xfc\xa0\x71\x86\x38\x1f\xe3\xd7\x53\x1d\x22\x98\x74\xe6\xb0\xe7\x22\x97\xd0\x61\xb1\xc0\x7f\x14\x33\xb6\x77\xfc\x53\x52\xcd\x6e\xd4\x35\x76\x87\xf1\x98\x9b\xd4\xb2\xae\xc5\xac\xa6\x8f\x6a\xb0\x77\xb8\x90\xc1\x33\x71\x55\xa5\xa2\x56\x69\x9c\x97\x62\x80\xdf\x4c\x55\x7d\x76\xaf\x55\xd6\x7a\xa7\xae\xe0\xb7\xf8\x71\x91\xa6\xef\x79\x35\xf3\x9a\x51\x0f\x5e\x05\xd3\x0c\x24\xc1\x5f\x0c\x73\x35\x77\xe6\x56\x32\x2d\x71\xcf\xe0\x73\xf1\xae\x4c\xa6\x49\xd6\xda\x38\xa8\x67\xda\xd3\x53\x18\x3c\xad\x34\xa0\xeb\x7c\x8e\x5a\xa6\xc5\x70\xc6\xd5\xac\xd4\xaa\xca\x18\xee\xe2\xfd\x93\x42\x26\x2e\xd9\xfb\x32\x9f\x27\x52\x58\x83\x9d\x38\x91\xc0\x62\x7f\x9f\x95\x5a\x63\x29\xd1\x0b\xb7\xc7\x4a\xa1\xb6\x18\xef\x38\x46\xc2\xea\x25\x0a\x51\xec\xa5\xef\x6c\xcf\x4e\x1d\x4b\x4d\xaa\x46\xcc\xe8\xd9\x66\xd6\x74\x14\xa7\x03\x77\x5b\xc3\xf5\x18\x80\x0e\xd5\x6d\xf4\x66\x14\x18\xbe\x9b\x74\x5f\x10\xa9\x49\x15\x1c\xed\x1c\x34\xe9\xf6\xd3\x57\xac\x9d\x48\x7d\x83\x01\x2a\x9f\x23\x2e\x93\x31\xe3\x8b\x6a\x26\xb2\x8a\x24\x8b\x1d\x07\x0d\x51\x7d\x0e\x1c\x69\x16\x52\x94\xe4\x57\xe7\x54\xea\x9b\xe2\x4f\x9f\x58\x14\x79\x9e\x17\x05\x97\xf2\x32\x2f\xe3\xa0\x85\x29\xf6\x5b\xf8\x24\xe9\xef\x2d\xaa\x59\x5e\x26\xbf\xe8\x1c\xac\xd1\x0f\x80\xb7\x3a\xc0\x8f\xaa\x9c\x77\x4c\xbf\x8f\x58\x34\x54\xa5\x1a\x6c\x63\x18\xc6\x89\x5d\x48\xde\xba\xd1\xe3\x1d\x71\x29\x3e\x1c\xbc\xee\x69\x44\x17\x65\x6a\x6d\x75\x70\x5b\xcb\x0b\x91\xe9\xea\x28\x86\xfa\x55\xfe\xa1\x28\x44\xa9\x33\x9d\x9b\x0b\x3a\xdd\x9b\x01\xa7\x2f\x93\xbc\x9f\xce\x9d\x59\x0f\xc2\x0c\x78\x73\x75\x48\xd3\xaf\x67\xd7\xd9\x80\xdf\x1c\xfa\x98\xe9\x4f\x86\xcc\x54\xe0\x82\x7b\x9d\xc8\x4a\xe0\x03\x7e\x29\x78\x7c\x8d\x11\x2b\x82\x11\x66\xf0\x09\xbe\x60\xfc\x65\x77\x51\x62\x22\xa5\xd7\x39\x8f\xc3\x68\x0c\x5f\x69\x1c\xc1\x3b\x01\x61\x01\xa4\x43\x08\xe8\xa6\x0e\x57\x4f\xd6\xbc\xf2\x22\xcf\x28\x0d\x10\xb2\x5b\x88\x98\x41\x06\x8a\x2c\x06\xdf\x8f\x24\xce\xa2\x8a\x12\xbe\x97\xa4\x73\xe1\x7b\x81\xb6\x44\x77\x80\xe9\xec\x4f\xa3\x6b\x96\x67\x98\x5b\x23\x48\xa7\x31\x18\x80\x05\x32\x64\xe3\x16\x57\x6a\xd7\x85\x2c\x7d\x86\xec\x33\x5e\x51\xb6\xb2\x49\x92\x8a\x21\x83\x03\xe1\x38\x4f\x7b\x6c\x9e\xcb\xca\x9c\x4c\x1d\x70\x80\x85\xaf\x1a\x70\xc9\xb6\x98\xb8\x10\x99\x4e\x14\x95\x54\x91\x04\x2f\xae\xb1\x3a\x2f\x4e\x16\xa9\xee\xd0\xa5\xab\xa6\x25\x01\x81\x68\x6c\xe0\xa4\xd2\xb1\x54\xc6\xf1\xab\x9d\xe5\xc1\x03\xd6\x50\x6c\x2f\x7c\x00\x7d\xba\xf4\xd9\xea\xae\x3f\x1f\xef\x4b\x51\x40\x32\x07\x98\x17\x04\xec\xae\x72\x5d\x66\xc5\xa4\x52\x35\xf6\xd2\xf4\xc0\xff\x10\x29\xd6\xd5\x64\x7d\xee\x6d\x54\x66\x3c\x8d\x0d\x3b\xdd\x2e\x1b\xfa\x5e\x0e\x6e\xbf\x24\xc2\xbf\x22\xde\xd7\xc5\x4a\x92\x42\x40\xa0\x86\x62\x50\xb0\x21\x39\x36\x7b\x5e\x23\x1a\x58\x85\x0c\x6b\xc5\x8d\x7d\xfb\x91\x61\xd4\xf6\x31\xf4\xf0\x0a\x22\xc4\x28\xd5\xd2\x9f\xd4\x5a\x05\xd5\x7b\x58\x09\xcc\x4a\x6c\x45\xda\x7e\x86\x21\xe5\x5d\xaf\x20\x18\xf4\x90\xfe\xed\xb9\x33\x4d\x07\xfd\x80\xdd\x3e\x3b\x6e\x63\xa8\xba\x84\xbb\x67\xcf\x74\xe7\x3a\xc1\x0e\x06\xec\x45\x2a\x78\xc6\x16\x45\x08\xd2\xd9\x96\xec\xd4\x7d\xf6\xb6\x23\x58\x9c\x66\x83\xd3\x0d\xc6\x70\x45\x88\x96\x1d\xac\xc3\x25\xcb\x6d\xe2\x2c\xce\xe6\x3c\x5b\xf0\xd4\xab\xd4\x0d\xc5\x18\x9e\x48\x6a\xb2\x6b\x4f\x15\xb7\x09\xaf\x35\x17\x04\x12\xa3\xe3\x68\x33\x9d\x48\x5f\x62\x41\xb7\x22\x8e\xb4\x9c\xef\xb1\xe8\xd5\x8b\x77\x6f\xdf\xee\xfd\xf0\xee\xe0\xe8\xd5\xcb\xa8\xa7\x51\xec\xde\x37\x09\xd3\xfc\x92\xa5\xe2\x42\xa4\x2c\x13\xd5\x65\x5e\x9e\xa3\xe4\x94\x21\x61\x04\x69\x67\x01\x61\x70\x1c\xbe\xe7\xc8\x81\xe0\x29\x41\xc1\x3c\x7a\x49\x1c\xab\x0d\xa4\xcc\xe7\x6c\x21\x75\xfa\x54\x9a\x3b\xa7\x9d\xee\x84\xd2\x34\x82\x4b\xeb\x24\x29\xe1\xda\x8d\xa4\x9e\x87\xe3\x32\xc2\xbe\xa5\x8a\xa8\x35\x5a\xb2\xa2\x85\xd5\x97\x22\x26\xed\x9e\x21\xed\xec\x2e\x1b\x50\xef\x08\x3f\x84\xc1\xa3\xa8\x3e\xe0\xae\x1f\xcc\x95\xd8\x21\x30\xf9\x04\x74\x19\x7f\xc7\x56\xca\xcc\x5c\xc2\x3e\x24\x62\x11\x5b\xe5\xc8\x51\xcd\x1a\xe0\xfa\xa1\x01\x1a\xfb\x6d\x6f\x1c\xfa\xed\x37\x4e\x45\x43\xbb\x56\x2e\xaf\x49\x9b\xfb\x9b\xa1\xbd\x38\x86\xb3\x3e\xc9\x40\x53\x7e\xa4\x76\xff\x84\x1c\xa8\x63\xb5\x95\x27\x13\x56\x2e\xb2\x0c\xdc\x96\x33\x08\x0a\xc2\xb3\x98\x97\xb1\x91\x36\x22\xbb\x48\xca\x3c\x9b\x5b\x47\x40\xa5\x74\x51\xae\x42\x70\x48\xcb\xf2\x4a\x81\xb9\x14\x11\xb8\xf7\x32\xce\x2e\xc5\x88\x29\x86\x14\x25\x44\x89\x44\x87\xdd\x0c\x4c\x2f\xfa\xf5\xa3\xc0\x21\x75\xf9\x03\xf6\xf8\x2a\xbb\xe8\x74\x43\xe7\x74\xb8\xd4\x68\x3f\xa8\xd1\xf7\x28\x20\x60\x23\x19\x10\xa2\x2a\xd6\x46\x97\x9a\x63\x2e\x93\x6a\xf6\xa2\x14\xb1\xd2\xf7\x79\x0a\xd6\xfa\xc1\x21\xce\x68\xac\x5d\x78\x38\xa0\x76\xfe\xb5\x0b\x7b\xee\xee\x2f\x80\x17\x68\x79\x9d\xc6\xda\x5d\x36\xb4\xd5\xcd\xcd\x7a\xe0\x7f\x6d\x90\x0d\x84\xaf\x77\x36\x72\xc0\xdb\x2b\x9e\x53\xb6\x6b\x87\xda\x1a\x79\x82\x48\xa5\xef\x5a\xc8\x30\xc0\xe3\x3a\x85\x46\x24\x45\x75\xe0\x76\xea\xaa\x2a\xee\xc3\x9b\x77\xc3\xe1\xa3\xe9\x3d\x14\xfb\xd0\x9a\xde\x8b\xbd\x4b\x3f\xef\x2c\x5a\x7f\x89\x38\x17\xd7\xfd\x2a\x7f\x9d\x5f\xea\x93\x06\x56\x1a\xd3\x91\xb1\x82\xeb\x72\xff\xb1\x14\xe4\xf7\x3c\xbf\x10\xcc\x3d\x58\xaa\x3e\xe1\xd6\x30\x91\x76\x4a\xdc\x66\xcd\x87\xd3\x73\x71\x7d\x5a\x7f\xb3\x0d\xfb\x7b\x57\xcd\x44\x79\x99\x48\xc1\xb8\x21\x79\x23\xc5\xbd\x49\xee\xd7\x88\x05\xc9\xbe\x2e\x78\xda\xf8\xb6\xfb\xb9\x76\xb8\xa3\x29\x0e\x59\x1c\x92\x60\xa1\x34\x49\x26\x90\xef\x4a\x8f\xb4\xe5\xdd\xac\x79\xa9\xf8\xb7\xef\x88\x71\xd8\xd5\x2e\xfb\xea\xab\xe6\xd6\x2d\xb8\x7a\xaa\xe8\x72\x44\x1b\x94\xd7\xf6\x0b\xe1\x9a\x22\x0b\xaa\x6e\x93\x02\xdc\x7c\x47\x6c\x21\xa1\xe3\x28\xe6\x04\x7f\xf9\xee\xcd\x2b\x7d\x2c\xc2\xb0\x33\x99\xda\xfc\xcd\x8b\x1c\xdc\xe1\xe6\xf3\x82\x57\xc9\x28\x15\xe1\xbb\xde\x6b\x50\x4a\x76\x7c\x27\xfe\x1f\x16\x15\x1d\xd8\x28\x75\xbc\x5c\x14\x45\x29\xa4\x76\x54\x8d\x7e\x96\x79\x16\xa1\xf1\x39\x97\x2c\x31\x29\xe6\xe1\xcc\x00\x87\x39\x6d\x95\x16\xd5\xae\xdf\x23\xb3\x10\xfb\xfe\x62\x6b\x3a\x08\xc0\xbb\x1f\xf4\x16\x2c\x20\xca\x33\xb8\x4e\x60\x16\xab\x38\x14\x65\x3e\x55\xc3\x68\x9a\x49\x6d\xd3\x8e\x48\xe4\xd9\xcb\xfc\x32\x4b\x73\x1e\xbf\xd7\x6d\x5a\x8d\xdc\xf5\xb4\xf2\x38\x7e\x75\x21\xb2\x0a\x4f\xf2\xa2\xec\x44\xba\x3f\xa3\x19\x35\xc0\x6d\x5a\x30\x6f\x73\xc8\x8c\x6f\xe7\x90\x8c\xb4\xd9\xa2\x50\x4d\xe1\xa0\x5a\xc9\x76\xdc\x3f\x14\x4b\x30\x77\xcf\xa1\x08\xaf\x61\x2c\xf8\x61\xcd\x21\xf9\xdd\xd5\x06\xe4\xcc\x2d\x1e\x0a\x8e\xf2\x73\x91\xf9\xca\x2c\x4d\x90\x7b\x68\xd0\x5f\xeb\x4d\xfb\x05\xde\x2d\xf6\xab\x99\x70\x3c\x02\xf3\x0c\x6d\x17\x94\xb0\x80\x3f\x6a\xe2\xbc\xf1\x28\x51\x3b\x4c\xd4\x3c\xf4\x69\x7a\xf1\x70\xe2\x39\x1a\xa0\x1a\x86\x9d\xf9\x5e\x1a\x6d\x2a\x54\x8b\x12\xd5\x24\x39\x9d\x1b\x06\xb3\xf3\x34\x45\x2f\xf2\x6f\x4a\x5d\xcd\xcc\xbb\xad\xa2\x78\x0f\x1e\x3e\x56\xc8\x67\xb1\x77\x21\x8a\x8f\x22\xab\xac\x3a\x44\x36\x53\x63\xaf\x5f\x29\x0f\xdc\x2f\xa4\x1c\x69\xeb\xc0\x17\x98\x3d\x9c\x67\x78\x6a\xc0\xe0\x36\x10\x89\x02\x75\x3b\x11\xeb\xec\xaa\x56\x81\xc5\x13\xcb\x18\xfc\x03\x34\xfd\x78\x66\x25\x75\xbf\xd5\x90\x90\x40\xc1\xa5\x95\x97\xba\xb5\xef\x55\x7f\x47\xd6\x82\xd8\x21\xd4\x26\xbe\x6b\x84\x7a\xac\x50\x39\x75\x80\x42\xe0\xc8\x0e\xe4\xb6\xbf\xe2\xf3\x22\x15\xa1\xd2\xdd\x6d\xee\xef\x98\x46\x73\xea\xde\xaa\xb5\x56\xc5\xc1\xea\xba\xce\xd0\x1d\xf3\x45\x20\x2a\x5a\x2f\xd2\xcb\x1d\xa2\xd8\x5f\x69\xbe\xe8\x1e\x27\x6a\x33\xe0\xd1\xde\xb9\x6a\xb0\x76\x24\xfa\xe8\x6a\x43\x57\x10\x90\xae\x1b\xc8\xce\x65\x8c\x8e\x40\xa7\x8e\x55\x7d\xdc\xd8\xb6\xc8\x37\xcc\x35\x8c\x07\xdd\x6c\xea\x74\xe7\x98\xa8\x64\xd3\x9a\x2c\x63\x04\x27\x20\x82\x0d\x1d\x08\x4d\xd0\x78\x04\x80\x8c\xae\x4d\x54\xa6\xea\x32\xa7\x0a\x0b\x9d\xeb\x0e\xea\x29\xe5\x66\x2a\x94\xb6\x55\x67\x4b\x9f\xcf\xb6\x97\x7c\xdb\x09\xe6\x55\x7f\x7d\x6b\x43\xf6\x63\x3c\x27\xb8\xf9\x54\x87\x7e\x8d\x17\xb5\x57\x9a\x8b\xd3\xcd\xd2\xa9\xc7\x9c\x2d\x50\x99\x44\xf5\xb6\x9e\x96\x1d\x6d\xaf\xba\x24\x30\x52\xed\xe9\xfc\x24\x63\x06\x8d\x5d\xf3\x97\xcd\xd3\x88\x47\x2b\x58\x6a\xbb\x7e\xf0\x77\xb0\x62\xfa\xb1\xcc\xe7\x88\xcd\xce\x5f\xc5\x35\x58\x81\x46\x8b\x32\x8d\x7a\x2c\xc2\x8b\x7d\x7c\xaf\x2c\xf9\x5c\xed\x43\x91\x52\x99\x23\x1b\xf3\x14\x06\xf3\x52\x88\xc2\x46\xfd\x32\x50\xe8\xa4\xa1\x5a\xf1\x45\x35\x03\x38\x65\x7e\x75\xed\x34\xd7\xb1\x17\xf2\x00\x03\x94\x98\x11\x3d\x44\xa8\x96\x84\x52\x68\x88\x13\x94\x91\xd6\x63\x30\xb6\xaf\x0a\xfa\x24\xae\xaf\x1c\x54\x9d\x40\x43\x05\x44\xf1\xa5\x4d\xfd\xe9\xea\x46\xea\xb7\x7f\xa4\x33\xf0\xfc\xa3\x98\xaa\x18\x6e\xd2\x58\x16\xea\x22\x06\x40\xf8\x12\xaf\xaa\xfb\x2f\xed\x30\x17\xfc\xea\x40\x60\xd6\x32\xf8\x3d\xab\xaa\x62\x6f\x2a\xb2\xca\xc0\x81\x50\xb9\x54\xc4\x22\x67\x0b\x57\x3f\x65\x3e\x3e\x17\x15\x3c\x8e\xaa\xea\xda\xce\xb7\x66\xe7\x5a\xe3\x87\x9e\xf7\xfc\xef\x7d\x06\x67\x4a\x2f\x90\xad\xa7\x1b\xed\x40\x40\xda\xd3\x56\x6b\x36\xcd\xb5\x54\x6d\xd7\x6f\xe6\xc5\xb0\xed\x36\xa2\xdb\xc2\x7b\xbd\x60\xa9\xf9\x35\xea\x48\x07\xa6\x37\x1e\x16\xdd\x76\x6c\xb1\x59\x2c\x44\xf1\x06\x9e\xdd\x69\x29\xe3\xf7\x9e\x3f\x18\xa3\x6e\xd4\x6c\xee\xee\x93\x54\xad\xe6\xc3\x1e\x6a\xb7\x1d\xd2\xaa\x31\x6c\xdf\x6e\x0c\xdb\x6b\x4f\x77\x93\xac\xe8\x79\x6e\x84\xde\xe7\xdf\x84\x3b\x7f\x3b\x5a\x80\xf5\xe8\x55\x92\x6b\xf1\xda\xb4\x56\xb1\x9d\x8e\xc4\xd4\xb2\x3c\xba\x7e\xad\x26\xaa\xba\x7d\x42\xf8\x3a\xea\xf3\x9d\xde\x9a\x55\x7b\x48\xc5\xae\xb7\x2d\x2a\x9b\x24\x69\x25\x4a\x7b\x4a\xc0\xdf\x7b\x1a\xed\x20\x39\xbb\xb6\xde\xd4\x9f\xcd\xeb\x1c\x54\x43\x73\xec\xd0\x12\xdd\x67\x09\x83\x9c\xc3\x07\xa6\xec\xe5\xbf\x37\x43\x68\x47\x6f\xa8\xb8\x44\x6b\xd3\x1a\xd9\x1e\x3b\xc3\x23\xdb\x19\x4b\xa4\x3a\x11\xe8\x0c\xe9\x33\x5e\x61\xe0\x1b\xb8\xcd\xb8\x9c\x89\x0c\xbe\x16\x3a\xa9\x30\xde\x4c\xc0\x59\xcf\xd1\xb1\x20\x2e\x5d\x83\xbe\xbe\xeb\x1f\x03\xdc\x03\xc0\xc0\xb1\x92\x26\xcb\xf7\xb9\x77\x65\x5f\xcd\x12\xd9\x9f\x9b\x5b\xfa\xb9\xb9\x92\x87\xc3\x15\x36\x69\xb0\x41\x76\x95\x2b\x6b\x63\xe9\x19\xc9\x44\xd8\x38\x62\x8f\x58\xc7\xeb\xe5\x39\x8b\x86\xf0\xf4\xe0\x95\x0e\x59\x14\x75\x4d\xe8\xad\x5a\xc7\xd6\x14\xdf\xa6\x44\x68\xd0\xf8\xb0\xdd\x33\xd7\x29\x1d\x35\xde\x37\x8b\xc4\x0f\x8b\xe5\x17\xeb\xa0\x4d\x41\x9c\x69\xbf\x52\xa7\x5b\xcf\x47\xef\x45\xbe\xc4\xe4\xf8\x4a\x83\x8a\x59\x9e\x35\x05\xd2\xff\x69\xff\xc5\x9f\x07\x93\x7c\xbc\x90\x9b\x17\x89\x4c\x46\xa9\xc0\x60\xfa\x17\x4f\xfa\xdb\xfd\xa7\xe0\xc5\xe8\x7d\xed\xff\x2c\xd7\x8f\x64\x65\x2b\xbc\x7c\xf7\xc6\xad\xb3\x19\xe7\x73\x3d\xc2\x19\x8f\xff\x2a\xae\x47\x39\x2f\xf1\xea\xc3\x92\x93\xbe\xfe\xa8\xfa\xff\x1b\x76\x7f\x20\xc6\x22\xab\xd2\x6b\x27\x55\xc7\x92\x5a\x47\xe6\x81\x8a\x0e\xe9\x98\x38\xa5\x58\x80\x05\xad\xfc\x69\x96\x54\x22\x45\x6f\x5f\xe4\x3d\x78\x6a\x56\xbd\x83\x3e\x25\xc1\x5c\xd8\x29\x58\x94\xa9\xf3\xab\x12\xee\x2f\x31\xe7\x89\xfb\x5b\x1b\xdf\x38\x45\x19\x38\xc6\x3a\x05\x31\xa4\x48\x31\x3f\xe7\x79\x56\xb9\xdd\x5d\x0a\x71\xee\xf6\x97\xcc\x45\xd0\x38\x28\x8a\x74\xd9\x26\x84\xa4\x88\x74\xb6\x4a\xc5\xc2\xf6\x50\x36\x2f\x16\xea\xc0\x75\x39\x13\x26\x01\xf9\x34\xb9\x10\x19\x13\x18\xb4\x41\x3f\x54\xfa\xc1\x08\xab\x32\x99\x4e\xb1\x3a\xc0\x39\xf3\xd8\xe2\x0c\x63\x54\xb2\x91\x50\x6b\x91\xc7\xb1\x88\x7b\x2c\xe9\x8b\xbe\xe9\x26\xb1\x70\xd3\x4b\x7e\x2d\xd9\x9c\x57\xe3\x19\x82\x1a\x06\xb0\x40\xfe\x40\x19\x89\x1b\x23\x5f\x28\xae\xc4\x67\x70\x1f\x70\x0f\x6c\xec\x57\xca\xf9\xfb\x99\xa4\x8c\x23\x67\x00\xd2\x11\xe2\x2f\x35\xaf\xbd\xc9\x63\x9e\x26\xd5\x75\x47\x41\x72\x53\x69\xe0\x1d\xb1\x2a\xed\xab\xbf\x6d\xbe\x45\x3e\x25\x27\x19\xfc\x86\x3f\x9d\x6c\x19\xa6\x82\x92\xef\xfb\x6f\xdf\x7f\x38\x82\xab\xbf\x06\x7e\x3b\x56\x80\x4f\xc1\x70\x05\x60\x95\x82\xc7\xef\xb2\xf4\x3a\x34\xa3\x6d\xca\x4a\xee\xf5\x72\xf4\xea\xef\x47\x7b\x07\xaf\xf6\xa2\xdb\xc1\x82\x06\x89\xa4\x93\xc7\xab\x38\xa9\xd4\x39\x73\x55\x4b\xed\xdc\x4b\xeb\xef\xb3\xe5\xad\xbf\x0a\x51\xb0\xaa\xe4\xe3\x73\x96\x4f\x58\xbe\x80\x14\x7a\x40\x6d\x36\x27\x72\x53\x4a\x4b\xb8\x83\x3a\x0b\x97\xfe\x19\x4e\xf6\x3e\xba\x9f\x82\x35\x51\x09\x4b\x19\x43\x40\x43\x96\x7d\x4e\x97\x07\x5c\xb2\x8b\x84\x43\x45\xdd\xc9\x33\x68\xcd\xe9\xde\xed\x5c\x5c\x33\xb8\x43\x67\x71\x12\xe3\xd3\x65\x36\x4e\x17\x10\x06\x7d\x2e\x2a\xde\x63\x3c\xad\x06\x18\xe5\x0f\x1e\x2f\xc7\x79\x56\x95\x79\xaa\x1a\x22\xa4\x6a\x26\x32\xc2\x84\x90\x4f\xa4\xe9\xac\x6f\xdf\x77\x7a\xb5\x4a\xaa\x37\x53\xd1\x63\x60\x6f\xbc\x9f\xf1\x62\xd9\x70\xac\xc3\xb3\xf8\x90\xfe\x57\x71\xad\x8e\x8c\x1d\xa8\xe6\xb8\x39\xc1\xef\xbe\x1a\xc5\x5f\xc5\xb5\x3a\xe6\x63\x01\x4f\x2b\xef\xf7\xb8\x2a\x53\x37\xfb\x5e\x3d\x29\x67\xbb\xf0\x75\xa6\x75\x7f\xc2\x78\xc5\x78\x76\xcd\x8a\x3c\xc9\x2a\xc6\x71\x3a\xc6\x69\x32\x3e\x97\x3a\xc5\x03\x7c\x52\x8b\x3f\x16\x17\xc9\x58\xf4\x98\xc8\xe4\xa2\xa4\x20\x7b\x97\x82\xa1\xf9\x9c\xa6\xab\xa5\x16\xbf\xe4\xd7\xb8\x35\xf8\x04\x83\x07\x6c\x7e\x91\x27\x31\x05\xd4\x4e\xaa\x05\xa7\x7b\x23\x51\x0a\x8d\x04\xbe\x92\x48\xc6\x61\xbe\x73\x50\x5b\x78\x8a\x06\x7d\x24\x41\x00\x1c\xc9\xb6\x9e\x66\x8f\x4c\xa3\xaf\x9a\xb0\x38\x99\x4c\x04\xa4\x37\x32\xf5\xa0\x31\xc5\xf8\xc6\x21\x02\x9c\xda\x30\x2f\x67\x49\x2a\xd4\x00\x65\x95\xa4\xa9\x52\x21\xb2\x73\xfb\x42\x5e\xe3\xff\x7e\xfb\x64\xbf\xcf\x81\xc1\x61\xc2\x69\xca\x1a\xa6\xc7\x59\x76\x35\x08\xb0\xfd\x25\xaa\x9b\x17\x40\xed\x8e\xc3\x32\xa0\xdb\x5c\x98\x0a\x68\x88\x08\x42\x04\xed\x58\x3c\x07\x2d\x5a\x81\x15\x1f\xb1\x91\x18\xe7\x73\x45\xe0\x71\x95\x5c\x08\xc6\xa7\x60\x65\xef\x9a\xe1\x82\x75\xdf\x4c\xbf\x27\x60\xae\x05\xa0\x9e\x01\x97\xe3\x32\xd2\xfb\x4b\xe7\x90\x4f\x78\x99\x50\x64\xf6\xf4\x1a\x5a\xc1\xab\x56\x75\x99\x8c\x45\xb7\xef\xe3\xa1\xf4\x52\x3e\x22\x06\x62\x63\x0e\x61\x17\x39\x1b\xa5\x8b\x92\x26\x5c\x03\x86\x79\xf2\xf6\x92\x9e\x01\x55\x8a\x4d\x88\x45\x80\xd1\x96\x61\xb3\xba\xd4\xeb\x1b\x03\xcc\x5f\x26\xd5\x78\x26\x24\x1b\x29\xf9\x45\xef\xb4\x15\x1f\x39\x76\x0c\x2d\x6a\x86\xa3\xc1\xb7\xaf\x27\xd6\x9a\x92\xb4\x40\x73\xc2\x4e\x9c\x8f\xb5\x91\x7f\x3e\x6e\x78\x09\x3a\x17\xd7\x71\x7e\x99\x45\x3d\x5f\x38\x58\x4b\xd9\xb6\x86\xf3\x5c\x91\xcc\x6d\xea\xb0\xda\xea\xe6\x05\x56\xbe\x3d\x80\x2a\x5f\x8c\x67\xb2\xe2\x65\x75\xbb\xf6\x96\x6b\x91\x07\x0c\x94\x90\xdf\x2d\x28\x37\x60\xab\x3d\x17\x08\x0e\xa3\x08\x28\x8d\x51\x9a\x6f\x47\xec\xc6\xb6\x37\xa2\x77\x23\x84\x1b\x92\xbc\x11\xc6\xcd\xa8\xde\x08\xe2\xb6\x84\x77\xbc\x9b\xdd\xf5\xe2\x6d\x63\xa0\x6b\xf1\x72\x0a\x59\xce\x71\xbb\xc2\x9f\xcf\xb4\x8b\xd9\x75\xa8\x87\xc0\xe7\x3e\xe8\x8d\x42\x76\x22\x5f\x6b\x34\x1e\xad\xfa\xfd\xbe\x2c\x21\x59\x90\x3a\xff\xb8\x2f\xf3\xc9\xbc\x40\x69\xa1\xc4\x94\x0f\x02\x25\x19\x3e\x74\x73\x76\x08\x59\xd9\x5e\x59\x8b\xbc\xc1\x40\x89\x79\x75\xb4\x56\x9a\x8d\x3a\x27\xcf\xc4\xa2\x4c\x64\x95\x8c\x31\x9a\xf4\x2c\x97\x22\x30\x7f\xc6\x00\xe3\x00\x11\x13\x4e\x8c\x84\xce\xc1\xa2\xad\xff\x20\xa6\xac\x92\x8e\xda\xbe\x00\xdf\x75\x46\x8b\x8a\xc5\x10\xdb\xbf\x14\x4a\x48\x5a\x1c\x78\x06\x9e\x64\xe3\x92\xcb\x99\x82\xe2\x8f\x61\xce\x53\x4d\x7e\x11\x3f\x3f\xd1\xf9\xd7\xb2\x1c\x1e\xe0\x01\x51\xb8\x58\x86\x89\x39\xc2\x09\x18\xcf\xc4\xf8\xbc\x6f\x45\x21\xa4\x82\x82\x8d\x7b\x74\x4d\x89\x14\x69\x27\xac\x72\x7a\x9a\x80\x4e\x21\x97\x1d\xbe\x8d\x83\xa1\x99\x4e\x25\x40\x13\x56\x13\x86\x9f\x3e\xad\xd0\xc5\x71\x8a\xbb\xbe\xfa\x71\x38\xd3\x49\x3e\xd4\x3e\x21\x62\x35\x66\x12\xff\x18\xdd\x2a\x91\x60\x4f\x19\xe3\x5e\xee\x93\x83\xb6\x86\xf6\x5d\xf7\x87\x74\x51\x6a\xfe\xb4\x2f\x2f\x47\x39\x8b\x45\x25\xc6\x4a\xd9\xa9\xf8\x68\x70\x99\x64\x71\x7e\x49\x7b\x44\x4f\xcd\x4a\x9a\xe7\xe7\x40\x4d\x0f\x95\x49\x9e\xa6\xf9\x25\x9a\x39\xa8\xb9\xe7\x45\x12\xa7\xd7\x40\x46\x66\x57\x13\xed\x65\x3a\xbf\xdd\xfe\xc4\xa6\x70\x90\x42\x34\x55\x85\xad\x2d\xc9\xd8\xf6\xd6\xd6\x5c\xf6\x90\x71\x8a\x32\x1f\xf1\x51\x7a\x8d\x7e\x84\xc0\x69\xd3\x45\x0a\xb1\x06\xc7\x0b\xe9\xf6\xd1\x7e\x88\x36\x9b\x13\x0e\xb0\x3f\x4e\x05\x2f\xb5\xf9\xe6\xf2\x53\x35\xae\xb7\x95\x27\x6f\x02\x2c\x45\xa5\xc1\x36\xe4\xb0\x5c\x7d\xca\x87\x90\xdc\xdb\x5b\x5b\x2b\x93\x29\x2f\xa4\xd8\xf7\xa5\x8e\x23\x70\x4a\xc8\x66\x63\x13\xaf\xf2\x34\x55\xbb\x7d\xc7\x0d\x4d\x89\xf9\x2a\x3d\xd7\x28\xf0\x55\xdf\x35\x37\x19\xfd\x49\x92\xc5\x2f\xdf\xbd\x79\x9b\xc7\x36\xa1\xa6\x1f\x98\x1e\x5a\x7c\x55\xcb\x51\xa0\xb7\x7a\x38\x78\xe5\x97\x99\x92\xc5\x63\x88\xa1\xe4\x79\xde\x7e\xee\xb1\x63\x93\x36\xeb\xe6\x71\xee\xef\x92\x52\xa5\x29\x13\xa6\x2f\xc5\xbb\x0d\x67\x41\x7d\x9f\xea\x55\x1c\x06\xbf\x49\x17\xcb\x33\x67\xc9\x0d\xeb\xab\xb0\xa7\x85\xfe\x64\xa8\xfe\xef\x44\xc7\x8a\xda\xe8\x6d\xb4\xcd\xf9\x47\x5e\x96\xfc\xfa\x75\x72\x2e\x8e\x72\x1d\xeb\xaa\xec\xb1\xd4\x18\xbd\x28\x1a\xa6\x10\x37\xd3\xc4\xa2\x51\x3f\xff\xc4\x78\x59\xea\x68\x58\x50\xb2\xeb\x94\xb8\x29\x1c\x4d\x78\xac\x9e\xaa\xb0\xe3\xc5\xd5\x52\xdd\x60\xd4\xac\x54\x64\x7e\xb4\x2c\x55\x57\xc7\xca\x2a\x75\x94\x2c\x9f\x74\xaa\x8a\x9f\x8c\x31\x1c\x8c\x8e\x24\xdf\x1f\x84\x5f\x20\xfa\x74\x2b\x51\x16\x36\xd4\xe4\xbe\x3a\x38\x8f\x52\x43\x9e\xbc\xc7\xe6\x49\xf6\xda\xa3\xcf\x57\x79\xd7\x3d\x20\x3a\xd7\xd7\x39\x9c\x13\x4e\x36\xf0\x72\xf7\x64\xa3\xeb\xe0\xee\x93\xdd\xc2\x35\xaf\xbb\x99\x79\x33\x68\x8d\x1c\x91\x77\x29\x6e\xcb\xb7\x3d\xb6\xb9\xdd\x35\xdd\x67\xd4\x2f\x3d\x39\x6c\xb0\x07\x0f\x58\xde\x1f\xe7\x99\xac\xca\xc5\x18\x72\x01\x42\x2a\x72\xb7\xa8\x9f\xe9\xec\x61\x2e\x84\x37\xbc\x38\xd9\x50\xb3\xae\x0b\x0e\x45\xe5\x8c\x03\x90\xef\x2b\x32\x77\xf2\x7a\xf7\x7b\x3a\xcc\x19\x82\x18\xfc\x77\xe7\xf9\xf0\x43\xf2\x69\xbf\x9b\x55\x9d\xe7\xc3\x6f\x3f\x6d\x7f\xfd\xe9\xf1\x4e\xb7\xf3\x7c\xf8\x22\xe5\xf3\x42\xc4\xdd\xe7\x00\xef\xf7\x83\x7e\x25\x64\xd5\xc9\xba\x6b\xd2\x6b\x29\x87\xb7\x64\xd7\x7a\x9d\xe7\x52\x74\x30\x5d\x6a\x8f\x89\x2b\xb8\xe0\x88\x9d\x59\xc5\x4f\x36\x5d\x8a\x5e\xb0\xd6\x2c\xc0\x28\x61\x4e\x19\xb6\xf2\x5e\x7c\xf0\xad\x07\x3f\xd8\xd9\x05\xdb\xd4\xc4\x5d\x29\x4e\x10\x39\x0b\xa5\x31\x94\x1c\x46\x6a\xb2\x95\x6c\x14\x39\xb8\xe2\xa0\xb1\xf8\x0f\x42\x7f\xda\x65\x5b\x5d\xb8\xa9\x49\x32\x73\xac\xc2\x11\x80\x55\xae\x01\x68\x6d\x74\xfd\xe5\x66\x74\xcc\xa5\xd4\x4e\xb2\x99\x28\x93\x4a\x93\x77\x31\x82\x74\xc6\x3d\x26\x17\x85\x28\xe1\x6f\x1a\x85\xfe\x64\x79\xdb\x12\x0c\xef\xea\x3b\xb6\x8d\xad\x84\x04\xac\x37\x76\x39\x59\x0d\x85\x2a\xf8\xb5\x3f\x7e\x84\xfa\xf0\xf0\x60\x81\xfb\x32\xa4\xf1\x56\x3e\x18\xae\x1b\xaf\x57\xc7\x5c\x06\x26\x79\xd6\x66\xf8\x33\x4a\xb2\xb8\x39\x48\x90\xfa\x62\xac\x7f\xa6\x69\x3e\xe2\xa9\x79\x86\x19\x2a\x25\x03\xb5\xaf\xc1\x80\x8c\x87\x12\xc9\x38\x4b\x93\x51\xc9\xcb\x6b\x96\x4f\xd8\x54\x1d\x38\x92\x31\x43\x78\x66\x26\x94\x76\x9c\x59\x03\xa2\x2a\xc7\x87\x42\x8d\x8f\xf3\xf8\xd3\x2a\x62\xbc\xf7\xaf\x97\xa2\x12\xe5\x3c\x41\x6f\x08\x4e\xd1\xa4\xf1\x25\x0c\x05\x6a\x9b\xf9\xd0\x05\xc7\xf0\x78\xd8\xa2\xca\x21\x75\x4c\x60\x30\xa4\x2f\xa0\xd9\x51\xb9\x80\x0e\x6a\xe0\x7b\xf8\x30\x09\x36\xe1\xa0\xd8\x84\x2f\x62\x6e\x54\x33\xef\xed\xca\x17\x98\xf0\xd9\x0b\xb3\x03\xcd\x20\xd8\xd9\xe7\x75\xc6\xeb\xda\xba\xdf\xe3\x80\x2b\xd3\xc0\xed\x63\x8d\x51\x5b\xab\xf3\xfa\xc8\x5b\x63\xc6\xad\x3b\x58\xce\x30\x82\xcc\x97\x9a\x5c\x02\xbf\xc6\x30\x29\xd2\x4e\x6d\x8c\x0a\x81\xaf\xb4\x6e\xf2\xe0\x01\xfb\xaa\x46\x11\x8c\x00\xe6\x89\x87\x65\x0d\xbc\x4d\x12\x85\xe4\x83\x07\x0e\x29\xbd\x1d\x53\xe3\xd5\x60\xb6\xdc\x56\xb5\x43\xee\x08\xeb\xd1\x9f\xb8\xff\xcb\xce\x82\xd7\xc9\xba\x0b\xad\x6d\x42\xd6\x5a\x6e\xd8\x78\xfd\x45\xc7\x99\x0e\x85\xf0\xe5\x68\xa0\x7b\x58\x83\x00\x26\x2e\x43\x6d\xf4\x5a\xef\xd3\x35\xea\x16\x0b\x0f\x1e\x60\x70\x47\x7d\xf8\x71\x2a\xaf\xcf\x16\xec\x22\x11\x97\x74\x83\xfb\x1b\x30\x48\x4b\x77\x37\x63\x15\x88\x42\x65\x09\x46\x9e\xcf\x8b\xb4\x32\x5a\xa3\x26\x9e\xd3\xa8\x99\x7e\x4e\x85\x7e\x22\x15\xe0\xae\xf3\x50\x03\x89\x43\x77\x59\xbd\x52\xc7\x78\x02\xf9\x6e\x47\xa6\x89\x11\x18\x20\x08\x30\x2a\x56\xf8\xdb\x9d\x38\xa7\x8b\x7a\x54\x35\x33\xb8\x35\xa7\x14\x97\xcd\x17\x9b\x42\x04\xbf\xc6\x94\x91\x01\xc8\xca\xdd\x84\x62\x4a\xad\x3f\x40\x4a\x29\xf4\xa5\x06\x88\xe0\xd7\x18\x20\x56\x5c\x3d\x40\xb4\x39\x58\x7f\x80\x99\x35\xf0\xfa\x42\x22\x0a\x01\xad\x31\x44\x1d\xf7\x74\xd5\x6e\x19\x0e\x19\x65\xf4\x0d\xe6\xf4\x25\xc6\xfd\xf8\x32\x33\xfa\x12\xf2\xc4\xac\x1c\xac\xce\x7d\x73\xb3\x7d\x48\xb5\xba\xd1\x06\x94\xa4\x5f\x6e\xa4\x0a\xf8\x3a\xfb\x4e\x92\xde\x62\xa4\xaa\xd5\x4d\x46\xfa\x43\x9a\x8f\xbe\x9c\xc2\x97\xe6\xa3\x75\xd4\xbd\x34\x1f\xdd\x7c\xa4\xaa\xd5\x8d\xe6\x94\x3a\xfc\x72\xf3\x4a\x1d\xac\x33\xb7\xf4\xe7\x2d\xe6\x97\x5a\xde\x64\xe4\x87\x3a\xcf\xce\x17\xdb\x6c\x04\x9f\xaf\xb7\xd9\x08\x3e\xaf\x8f\xd9\x17\x61\x0f\x1e\x04\x04\xea\x17\x49\x21\x6e\xa0\x2e\x05\x01\x2c\x59\xfe\x45\x05\x75\x4b\x77\xeb\x1c\xe6\x82\x40\x9b\x6d\x7b\x54\xd8\x41\x43\xc8\xd9\x40\xc7\x0c\x5a\x84\xa4\x3b\x2a\x93\x39\x44\x8a\x80\xb7\xfd\xa4\x12\xb2\xe0\x63\xc1\xf2\x09\x9e\x4c\x47\x62\x9a\x60\xfc\x03\x9e\xc5\x4c\x64\x31\xcb\x27\x10\x07\xa1\x51\x65\x39\x24\xcf\x33\x59\x95\x40\x46\xba\x69\x50\x74\x2c\x93\x79\x40\xc7\x43\x27\x84\x3d\x55\x9c\x94\x42\x40\x0f\x35\x84\x42\x8a\x29\x78\x1d\x59\x95\x3e\x91\x64\x55\xf6\x4d\xf0\xff\xff\x3e\x39\x91\x0f\x07\x3d\x16\x45\x5d\x5b\xa8\xca\x7e\x8f\x85\x4b\x99\x08\x8d\x51\xd6\x8e\xfd\x60\x28\x81\x16\x38\x69\x9a\x5f\x4a\xbc\x76\x01\xd7\xec\x45\x56\x8f\xfc\x80\x9e\x81\x7e\xe8\x87\x87\xec\x87\xbc\x9a\xb9\x80\xad\x57\xad\xef\x12\xdd\x83\xb7\xce\x2c\xaf\x20\x26\xd9\xb5\x45\x0e\xef\x91\xa4\x35\x38\xb6\x7d\xca\x21\x14\x68\x56\xa2\xe7\xb9\xcd\x3f\xf9\x37\x1b\xe6\x7b\x4c\xaf\x2c\xb5\x1a\x50\xcb\x45\x9d\xe0\x66\xfc\x22\x99\x72\x75\xe4\xa5\x07\x16\xd5\x32\x82\x1b\xb3\xb7\x98\x58\x04\xea\x61\x1b\x39\x2e\x93\xa2\x5a\xd6\x10\xdb\x1c\x42\xbd\x88\xe5\x25\x8b\xde\x1e\x46\x4d\x82\xa4\x1e\x1f\xc3\xb1\xe0\xd1\xb9\xf9\xa9\x87\xa6\x05\xd3\xa9\xf7\x0f\x62\xd6\xc5\xdc\x89\xd3\xbb\xd6\x7f\x2d\x20\xfd\x31\xdd\x13\xcc\xc3\xa8\x1b\x9a\x1f\x3a\x2f\x80\xee\x19\x95\xae\x7e\xbd\xf9\xaf\x13\xc4\xab\x65\xb8\x20\xa8\xa7\x2a\xd5\x96\x10\x3c\x99\x54\x82\xe5\x17\xa2\x34\x47\x46\x35\x75\x46\x85\x65\x49\x76\x91\x9f\x83\x3c\xf1\x42\x78\x32\xc1\xc7\x33\x96\x54\x62\x6e\x39\x77\x7f\xc2\xce\xf2\xd1\xcf\x67\xee\x55\x05\x3c\x67\x83\xb1\x91\xce\x17\x4e\xef\xdb\x05\x87\x74\x5e\xc6\x56\x8e\xf2\xc3\xc1\x45\x38\x2e\xb6\x71\x3e\x2f\x20\x30\x05\xc7\x07\xa2\xd6\x4e\x95\x32\x1c\x79\x8a\xf7\x4d\x7b\x85\x1b\x7e\xaf\x4f\xda\xb1\x4d\xa7\x05\xbe\x46\x5c\xb7\x39\x5f\x7e\x82\xd1\x7e\x56\xed\x40\x40\x6a\x9f\x83\x5c\xa1\x5b\x92\xee\x6d\xda\xe8\x1d\xf2\x33\x9b\x64\xe8\x54\xab\xf1\x55\x0d\x14\xc5\x85\x3f\xde\x70\x19\x19\xbf\x90\xd1\xcf\x3d\x36\xc9\xec\x9b\xfe\x4b\x78\x60\x1f\xe5\x68\x8e\x3c\x61\x59\x4e\xdb\x1d\x25\xd4\x8a\xf5\x42\x53\x88\x36\xa4\xad\xd0\xc5\x4d\xbe\x1b\x75\xcb\x4a\x0c\x73\x3e\x06\xbf\x6b\x9c\x25\xe8\xb2\x32\xd6\x89\x32\x9f\x8b\x8a\xec\x2a\xf0\x75\x2e\x7c\x76\x1b\xfd\x8c\x9c\x4a\x07\x9a\x1b\x45\x50\x06\x64\x99\xd2\xae\x4e\x43\xab\x5f\x7d\xc9\x9c\x8f\x7e\xee\x7a\x46\x7f\x1e\xc7\x03\xca\x40\x1f\x7a\x19\x0e\xdf\x41\x53\xb6\xab\x7a\xb1\x4f\x3b\xec\x8f\x2c\x0d\x93\x05\x4d\x32\x54\xf8\x30\x3e\x55\x3e\xfa\xf9\x38\x39\xed\xb1\x04\xfe\xf4\x9f\xbc\xbd\xcb\x8c\x10\x1b\x62\x99\x73\xe3\xdf\x64\x90\x39\x17\xd7\x6a\x3f\x52\xe0\xfc\x28\x66\xb5\x07\x81\x19\x97\xef\x2e\xb3\xf7\x9a\x59\xf1\xe5\x51\xf1\xc8\xb9\xb8\xf6\x83\xff\xd5\x91\x3e\x17\xd7\xa7\xb4\x14\x1c\xc4\x99\x17\x36\xfa\x73\x20\x40\x30\x60\xb1\x64\x17\xbc\x84\x54\x4c\x68\xdf\xa3\xe6\x1b\x58\x57\x27\x4f\xd2\xb9\x71\x32\xa3\x60\x55\x33\x01\xca\x3c\x4b\xe6\xf3\x45\x05\x16\x1e\xe0\xc6\x85\x76\xb0\x85\x79\xfb\x03\xe5\x42\x81\x22\xea\xe0\x2e\x8c\x1a\x09\xde\xdb\xd8\x15\xf9\xd3\x4c\x64\x6c\xbe\x48\xab\xa4\x48\x85\x71\x9b\x1e\xe7\x59\xc5\x13\xb4\x81\x94\x7c\x8e\x36\xd3\x90\xfc\x9a\x57\x96\xea\x49\x66\x64\x82\xc9\xf8\xc4\xc0\x6d\x02\xed\xa5\xf8\xb9\xc2\x4a\x8c\x45\x2c\xb2\xb1\x13\x19\xe0\x15\x3a\xe6\x0f\x4d\xc1\xd9\xd9\xd9\xcf\xe8\x2e\x64\xef\xcd\xc0\xc5\xa7\x9c\x8a\xce\xaf\x93\x3c\x1f\xb2\xed\x9d\xc7\x9f\x7b\x0c\xff\x7e\xf2\xf4\x6b\x8c\xd1\xf0\x50\x21\x2a\xf3\x54\xf4\xd3\x7c\xda\xa1\xa1\x4d\xf2\xbc\x0b\x51\x61\x31\x91\x9d\x54\xd5\x75\x2f\xad\x3a\x71\x3e\xfa\x79\x5b\xcb\xc1\x2a\xc7\x9e\x4f\x9a\xdd\xbe\x0f\x10\x3d\xa5\x22\xa6\x29\xd6\x74\x68\x1f\x0a\x1d\x1c\xc3\xe0\x21\xf4\x00\x4c\xb2\x03\xff\xff\xb8\xc7\xfa\xfd\x3e\x7b\x38\xa8\x5d\x18\xda\x07\x57\x03\x04\xd7\x30\x65\x95\x09\x23\x24\x79\xd1\x91\x14\x00\x7a\xef\x74\x04\xc4\x92\xcb\x10\xcf\xe3\xce\x69\x4d\x88\x3b\x65\x5e\xa8\xa1\x30\xb2\x91\xdf\xf6\x82\xa7\x81\x61\x6b\x93\xbd\x44\xea\x66\x0a\x5b\x26\x2d\xb4\xe0\x76\xd3\x8a\xf5\x5c\xa2\xac\x7b\x3d\xf9\xa3\x49\x0c\xf6\x3f\x0b\x78\x87\xa4\xe9\x33\x81\x2f\xb4\xb9\xf7\x58\x90\xc3\x0a\xd8\xba\x65\x39\x2b\x05\x95\x23\xc7\xe7\x2c\x87\x60\x60\x3c\x35\x4b\x06\x3c\x00\x0a\x67\x65\x7d\x2f\x85\x70\x19\xe9\xb7\xe2\x38\xeb\xa1\xfb\x2f\xc8\x75\x16\xf9\x15\x9c\xe7\xf4\x7f\x0b\xe0\xbf\x7e\xfe\x37\xe0\xe6\x57\x57\x95\xc8\x62\x69\xa4\x3c\x44\xc4\xa0\x7d\x81\xc7\x31\x1d\x4a\x93\xaa\x61\x77\xa0\x26\xa3\xf6\xb0\x18\x3c\xd0\xc8\x46\x82\x09\xe8\x4f\x67\x69\x0b\xea\x8f\x82\xfa\xe3\xbc\xb8\x76\x3b\x9d\x94\xf9\xbc\xb1\x21\x65\x00\x0c\xbb\x4b\xb2\xd8\xf5\xdb\x3c\xf1\x3c\xba\x74\x5b\x8a\xbe\x42\xa1\x37\x50\x67\xb3\xa3\xe3\xe1\xca\xc0\x01\x74\x78\x8f\x8d\xc2\xac\x89\x7a\x52\x46\xbd\x9b\xf0\x3f\xa1\xde\xc0\xe7\x4d\xd1\xa9\xb8\x66\x28\xc8\xdc\x08\x10\x35\x12\x2d\x7c\xc8\xdb\x58\xd0\x0b\xe4\xc2\x35\x63\xd4\x7c\x4c\xf1\x84\x88\x5a\xdd\x50\xff\xd1\x73\x0a\xf1\x75\x67\xe8\xff\xa4\x0a\xf6\x9b\x57\xac\x9f\xf3\x86\xce\xdf\x75\x90\x7f\x4b\xc4\xe5\xb0\x5e\x44\x15\xc9\xfc\xc3\xfc\x45\xc5\x6f\xc9\x0d\x52\xff\x45\xc5\x38\xdb\x43\xf3\x17\x15\x9b\x77\xed\xa1\xfb\x83\x3e\xbe\x04\x07\x4a\xfc\x57\x23\x9e\x90\xe5\x61\x92\xea\xa2\x1f\xd2\x7c\x34\xa4\x7f\x75\x2d\x9a\xb8\xa1\xf3\xb7\xc5\x5a\xf0\xf9\xd0\xfc\xa5\xf1\xf0\xef\x9e\x86\xf5\x22\xd3\x3e\x3c\xc4\x0f\x1b\x4b\x7b\x0e\x43\x0e\xf5\x1f\xe8\x07\xaa\x84\xd7\x10\xff\x41\x57\x4f\x2d\xd1\x86\xf6\x4f\x74\x3a\x05\x56\x1f\xd2\xbf\xe8\x25\x5a\x26\xf3\x21\xdd\x51\x91\x3b\x38\xe6\x32\x78\x6f\x2c\x45\x31\x4f\x7a\xdd\xa0\x74\x37\x30\x28\x7d\xe6\x2c\xaa\x4b\x5e\x66\x49\x06\xc1\x6a\xe2\x04\x6f\x83\x7d\xbf\x6d\x30\x21\x74\x7b\xf1\xd6\x90\x69\x56\x73\xfd\x6f\x8a\x4d\x5f\x61\x1a\xf2\x93\x8d\x9f\xb0\xd7\x21\x3b\xd9\x60\x8f\x1c\x5f\xf0\xda\xe6\x44\x0a\xe2\x72\xdf\x7a\x50\x21\xd5\x40\x3a\xaa\x83\x5a\xf8\x2f\x2f\x78\x20\xda\xec\x53\xa8\x57\xb7\xb6\xf6\x2f\xb8\xea\xb2\x5f\x3d\xbd\x3f\xb0\xae\x22\x82\xdd\x25\x45\xdb\x1a\xe6\x56\xaa\x1a\x84\x56\xf0\xeb\x41\x7e\x09\x28\x37\xb5\x9c\x88\x43\x0d\x75\x9d\xaf\xa6\x85\x93\x3e\xcb\xa9\xae\x4b\x5b\x83\x8c\xe9\xfb\x5a\x25\xa2\xf7\xd0\x5a\xab\x65\xf3\x21\x50\x2f\x6c\x08\x30\x4d\x3c\x0a\x55\x84\x5e\x15\xc2\x80\xf4\xb7\x07\x00\xfe\x99\xed\x81\x29\x6e\x63\xaf\xee\xae\xa0\x33\x6b\x63\xb5\x8e\xd7\xb7\xa3\x26\x8d\x29\x43\x38\x19\xf8\x2a\x48\x41\x5d\x63\xfb\x68\xba\x24\x51\x0f\x95\x9d\x03\xa7\x89\xab\x45\x30\xb5\x41\xf7\x60\xc0\x5e\xa8\x6d\x93\xfb\xf5\xf1\x7e\xc3\x0c\x94\xa2\x5c\xd0\x66\xa6\x3f\xf4\x58\xd0\x4b\x2b\x74\x3d\x90\xf5\xa0\x06\x40\xf4\x03\x06\x7d\x37\x2a\xc9\x40\xcf\x73\xe5\x4c\x96\xa1\x83\xd6\x1f\xd0\xe6\x18\x99\x88\x13\x73\x36\x93\x9f\xa2\x8c\x60\x74\xcd\x5c\x0a\xe2\x65\x74\xcf\xab\x72\xbc\x7d\xa6\x9f\x64\x93\x89\x03\x41\xda\x69\xce\x87\x7f\x35\xa4\x1f\x21\xc9\x39\x5e\x8a\x41\xaf\x4a\x69\x70\x59\x44\xea\xe6\x88\x53\x3d\x22\x9b\xa1\xcb\x8b\x86\x54\x2b\xc1\x40\xdc\x40\x5e\x08\x55\x0f\xad\xc7\x02\x30\x36\x98\x84\x1d\x2f\x86\x87\x60\x0f\xe8\x0f\x08\xd5\xa4\xd1\xa3\x6f\xfe\x62\x85\xb2\x01\x45\xb2\x50\x10\xdd\xba\xd0\x7c\x49\x03\x8c\x04\x65\x5b\xe9\xe4\x93\x8d\x4d\xf4\xc7\x28\x9c\x23\x9e\xa6\x03\x59\x94\x90\x31\x02\xe1\xa8\xf3\x8a\x43\x45\xca\x06\x38\x4f\xa4\x90\x3e\xf1\x28\x47\x4d\xdf\xab\x41\x64\x41\x50\x08\xb8\x59\xea\xe1\xb7\xb6\x5c\x39\xdc\x65\x82\x3d\x60\x9c\x05\xe6\x32\x36\x8c\x8a\xb6\xb1\x12\x1c\xbb\x58\x92\xb1\xa3\xeb\x82\x2e\xb0\x43\x78\x7a\x16\x1d\xb8\x77\xc9\x8b\xd4\x98\xec\x68\x49\xaa\xa3\xfd\xac\x12\xe5\x58\x14\x55\x5e\xbe\xe1\x19\x9f\x86\xc9\x10\xeb\xdf\xad\xd4\xa6\xac\x3f\x07\x26\xea\xa5\x2b\xbc\xfd\x8f\xab\x37\x87\x70\x5f\xa8\x0b\xfc\x76\xe9\xdb\x28\xf3\xfd\x35\xb1\xae\xd0\x77\x05\x39\xca\xe4\xc6\x25\x0a\x3e\xce\xce\xb6\xe5\x57\x7a\x66\xaa\x24\x96\x7c\xd2\x26\xac\x30\x99\x20\xd4\x88\xea\x14\x86\x1c\x91\x74\x6c\xa4\x9c\x77\x6d\x15\x4f\xb4\xcf\x8a\xf7\x26\x47\xb4\xb7\x79\xe1\x5a\x89\x54\x0b\x8a\xc9\x8c\x09\x34\x52\x27\x91\x26\x2a\x27\x4a\xa0\x58\x5f\x6e\x38\x04\xe8\x12\xe5\x5a\xf6\x25\x77\xc5\x52\x91\x9f\x5b\x6a\xf5\x35\xb3\x59\x68\xe0\x07\x07\xf3\x12\x51\x38\xce\xc1\xa2\x4c\xa3\x63\x1d\x02\xed\xb4\xcb\x38\x4b\x39\x9b\x08\x45\x80\xbd\xf7\xfb\xc1\x55\xb7\x0e\x4d\xd8\x94\xe6\xcf\x84\x2d\xb4\x27\xe9\xed\x53\x27\xb4\x21\x73\x32\x14\x79\xb5\xb6\x4e\x1b\xcc\xe4\x0c\x34\xfa\xc3\xc2\x21\x3d\xd0\x54\x70\x25\xbb\x47\x57\x3d\x28\x67\xc7\x3d\x14\x9a\x7d\x29\x11\x92\x1e\x9f\x57\x18\x0c\x89\x4a\x6d\x40\x6a\x93\x43\xc9\x89\x6c\x5e\x4b\xd3\xea\x62\xb2\x0a\x6e\x53\xe5\x76\xf0\x2d\x40\x20\x4d\x5e\xf0\xb2\xf1\x97\x3c\x3f\x67\x8b\x82\x79\x0b\x69\x9e\xc4\x71\x2a\x2e\x79\x29\x8c\x32\x35\xe3\x90\x36\xed\x38\x90\x3b\x3d\xfb\x08\x6b\xc3\x40\xd2\x7e\xc0\x76\xcd\x2e\x41\xf9\x56\x3a\x3e\xb9\x6b\x2b\x58\x33\xb4\x89\x08\x66\x7d\x01\x33\x39\x4b\x26\x3a\x9c\xba\xb3\x52\x95\xfc\x30\x3f\x2c\xf9\x14\xba\x7d\x6a\xe4\xd6\xe8\x4f\x16\xe9\x24\x49\x53\x08\x6a\xe3\x14\x63\x3c\x62\x11\x3b\xd1\x7b\xdb\x30\xa4\xd8\xb1\x35\x14\x8b\x85\x9c\xe9\x90\x95\x6b\x22\x08\x69\xbc\x6f\x8f\x1d\x06\xac\xe8\x20\x2c\xed\xfb\x46\x1d\xd8\x39\xf0\x22\x3e\x63\x5d\x24\x4b\xb7\xc7\xbc\x9f\x4d\xee\x80\xd4\xd8\xe8\x3b\xa1\x04\x9a\x8a\xea\x43\x99\xb8\x02\x08\x4b\x7c\xf9\x73\xb3\x95\x68\x3a\x37\x39\xc7\xac\x58\x58\x3b\xeb\x98\x67\x71\xf1\xdc\xda\x56\x68\xb5\xe2\x3d\xbe\x14\x32\x9e\x26\x5c\x0a\x09\x72\xcf\x38\xd9\x19\x91\x8c\x4b\x47\xae\x9b\x7a\xb2\xc7\x22\x8c\x42\x23\x6f\x96\x85\xd2\xc8\x67\xd5\x64\x33\xe3\x73\x21\xb5\x60\x0e\x08\xee\x24\x89\xd4\xe0\x3b\x0e\x59\x6a\x01\x7f\x14\x8d\xf5\x96\xe0\x66\x95\x74\x65\x66\xcf\x9e\x95\x11\xfa\x90\xfe\x35\x01\x93\x20\x5a\xd6\xa2\x4c\xe9\xe0\xac\x39\xe5\xcb\xe6\xc7\xbc\x07\xa2\x60\x5a\xe7\xdf\x84\x34\xa6\x00\x13\x65\xc5\xe8\x1b\xd0\x4c\xad\x9a\xc2\xbb\x77\x47\xc5\xd4\xd1\xa9\x9a\x94\x18\x47\xa5\x42\x1f\x5d\xd0\x95\x8e\x4f\x43\xbd\x66\x2f\x8e\x8d\x16\x68\xa0\xe8\xf8\x29\xb2\xe2\xe3\xf3\x9a\x9e\xe3\xbc\xf1\x6b\xd1\x05\xca\x8e\x73\x13\xac\x03\xca\x9c\x29\x01\x74\x46\x8e\xf6\x67\xb4\x33\x9c\xb5\x40\xd3\x12\xaf\x15\x18\x56\x68\x04\xe7\xdf\x2d\xe0\xcd\xe4\x67\xb6\x97\xb1\xfd\x97\x6c\x41\xb9\xb6\x30\x48\x86\x37\x4e\x78\x29\x25\x45\xab\x4e\x45\x47\xe6\x2d\xa4\x77\xd2\x5c\x40\xa6\x4e\x23\xb7\x8d\xac\x6e\xa0\x3a\x0a\x7c\xfd\xac\xa0\xdb\x0c\xed\x9f\x46\x2f\x45\x18\x43\xf3\x57\xfd\x12\xd9\x07\x8c\xd2\x9f\x6d\xb2\x6d\x2b\xe4\x68\x56\x29\x59\x0a\xdc\xe7\xd8\xd1\x82\x43\x61\xfb\xbc\x6a\xaa\x25\x38\x03\xfb\x2f\x29\xfa\x13\x97\xd4\x3f\xa6\xaa\x38\x5b\x10\xcd\x57\xd1\x0c\x86\xe1\x52\x0d\xe3\xff\x27\x71\x18\xd7\x48\x8f\xe8\x38\x89\x4f\xcd\x92\xad\x7d\x71\x83\xf5\x7f\x0e\x07\xec\x5b\x3f\x40\x1c\x10\xc1\x4a\x31\x4d\x64\x25\x4a\x11\x7b\xaa\x8e\x6f\x22\x47\x9a\x52\x22\x59\xc1\xcb\x2a\x19\x2f\x52\x5e\xa6\xd7\x6a\x86\x27\x8b\x14\xb7\x88\xf3\xa4\x28\x92\x6c\xaa\x8d\x89\xae\xf1\x79\xdf\x55\x9e\x80\x50\x73\x7e\xcd\x66\xfc\x42\x50\xd0\x25\x76\xa6\xd0\x3d\x33\x41\x95\xce\x90\x7b\xeb\xaf\x39\x35\x9b\x19\x97\xf7\x55\x6b\xc7\x62\xc6\x76\xba\xce\x0c\x90\xc4\x75\xe7\xc0\xa8\x30\xfa\x2e\xd7\x17\xe3\x1e\xd5\xeb\xb2\x1b\xf3\x4e\x94\x9d\x99\x77\x3d\x3c\x33\x06\xfd\x9e\xed\x48\x67\xd6\xad\xbd\x87\x7c\x6e\x16\x86\xf5\x51\xdc\xf1\xc8\x6e\x02\x8a\x53\x9a\x07\xa7\xae\xf7\xc9\xc9\x16\xdc\x70\x99\xd2\x7c\x9b\xd2\x7a\xbb\xda\x7a\xbd\x7a\x34\x2b\xc1\x0c\xd3\x89\xdf\x3a\xf1\xd3\x02\xce\xb8\x64\x23\x21\xcc\x59\x8e\x22\x27\x7a\x86\xa6\x0a\xc8\xfe\xe4\x85\xd3\xec\x40\x57\xf6\x55\xaf\x15\x19\x44\x1a\x32\x84\x10\x6c\x0b\xcf\xe8\x85\x2b\x0e\xc1\x66\xa7\x10\xa5\x5a\x1c\x18\x73\xad\x32\x27\xdf\x85\x5a\x7b\x14\x90\xbd\xce\xf8\x79\xeb\x81\xd9\x44\xb4\x85\x3b\xc9\x85\x4e\xa4\xe3\x27\xe4\x70\x5f\xe1\x69\x2f\xc0\xd7\x46\xfa\x41\xad\x8d\xa0\x3d\x59\x15\xd6\x3f\x38\xe7\xf8\x44\x5d\x87\xfc\xf6\x48\xf9\x0a\xc3\xe7\xe9\x4c\x5d\xe2\x2a\xc1\x1c\x22\x7e\xc6\xe5\x5a\x0a\x66\x73\xa0\x25\x30\x47\x9a\x57\x0d\xbd\xb5\x92\xe1\x64\x78\x86\x40\x30\x0e\x4f\x77\xbc\x69\x8e\x6d\xda\x4e\xbf\x2f\xbf\x30\x8c\xca\x7f\x42\x56\x95\x84\xc8\x8f\x29\xaf\x2a\x91\xe9\x01\x35\x0e\xc5\x55\xa8\x9a\x3a\xec\x63\x52\x78\xd2\xb2\x9a\x6a\x1c\x7b\xa7\xd7\xd3\x25\x35\x5d\xf4\x7c\x09\x86\xb5\x97\x68\xeb\x8d\x7a\x6a\x8f\x45\x88\x5d\x74\xda\xd3\x5b\xb5\xbe\x55\x4e\x05\xcf\x30\x3d\x00\x9d\x62\x82\x73\xbb\xc9\x33\x16\x0c\x86\x46\xe1\xca\x40\x2f\x14\x38\x2e\x0b\x27\x99\x34\x15\x7c\xfa\x64\xf3\xc4\x53\x99\x7f\xb1\xcf\xfd\x5c\xe2\xb5\xbc\x3e\x94\x6b\xfc\x40\x1d\xc0\x17\xa0\x19\x07\xf9\x47\x6e\xc4\xcd\x35\x46\xa4\x54\xb1\x56\xdd\x35\xe7\xe3\x25\xdc\x18\xd4\xea\xd5\x4a\x67\x41\xd2\xd7\x3a\x5f\xba\xa9\x7a\x2d\x72\xd6\xfa\xc2\xa6\xb5\xfd\xec\x06\x13\xb7\xe4\x50\xd2\x06\xa9\xc1\x65\xf0\xc2\xf9\x95\x96\xf0\xfa\x63\x37\x78\x4c\x5c\x97\x56\xab\xa9\xa5\x33\x15\xa9\x6e\x30\xb9\x94\xfa\xab\x5f\x9b\x22\x1c\x9c\xf7\x6d\x39\x81\xdb\x1a\xf4\x96\x55\x08\xc9\xbe\x9a\xf4\x9a\xfc\xf8\x57\x98\x3d\x2c\x78\x2a\xa0\x9c\x4f\x44\xd4\xf5\xd2\x24\xad\x3e\xf9\x58\x97\x11\x4d\x67\x78\xd1\x52\xc4\xc1\xb3\x81\x96\x96\xf4\xc3\xa0\xdf\x68\xe0\xac\xdd\x3f\xa0\xfd\x91\x06\x84\x9b\x87\xa1\x41\x60\x51\x43\x46\xd1\x5a\xf8\xa9\x56\xfa\xef\x60\xa3\xc2\xc4\x9a\x16\x03\x1f\xc4\x27\x57\xf9\x93\x6c\x8f\xa9\x0d\x34\x75\x54\xc0\xbc\xd4\xb6\xeb\x13\x1b\x57\x23\xd8\xfc\x1e\x86\x46\x36\x0e\xd6\x9a\xf1\x96\xef\x7c\x3e\x43\xe1\x11\x7a\x66\x12\x41\x66\x72\xed\x3b\x65\x5f\x16\x4f\x32\x57\x87\x34\x9d\x58\xe5\x13\x8f\xce\x0a\x93\xcc\xef\x35\xb8\xf5\x22\xae\x52\x55\x2c\xf3\xd0\x83\xd0\xaf\x8a\xe2\x73\x5e\xbd\x59\x24\x5e\x8e\x58\x2e\xd9\xc7\xe6\x2f\x9f\x75\x4c\xa6\xef\xe7\xea\xfc\x97\xf0\x74\x73\x91\x20\x83\x41\x4c\x26\xb0\x5f\xd6\xf1\xae\x91\x0f\xb2\x5c\x1d\x4c\x41\x2d\x81\xfb\x7b\xc7\xed\x23\x8b\x2a\xa6\x38\xf5\x82\xa7\x64\x10\x7c\x56\x89\xab\x6a\xd3\x0c\x77\xc8\xc6\xbc\x48\x2a\xb8\xa4\x52\xea\xff\x60\x80\x8f\x5c\xc4\xf8\xf6\x2b\xaa\x82\xd4\xef\xa2\x28\x44\x39\xe6\x12\x5f\x6b\x27\x49\x29\x2b\x96\x62\xec\x41\x6d\x39\x7c\x99\x97\xea\xf0\x8e\xfa\x57\x56\x91\xfd\xee\x60\xc0\x7e\x12\x98\x39\x96\x0e\xce\x16\x80\x6a\xd1\x6f\x0f\x3a\x65\xf1\xec\xe0\x3d\x7e\xdd\x7f\x05\xcb\xd1\x52\x23\xbc\xeb\x47\xab\x0b\x9b\xd0\xaa\x35\xee\xd9\xc9\x86\xb5\x53\x39\xd9\x60\xcf\x21\xc6\x13\xcd\xc4\x87\xfd\x61\x13\x1e\x68\x7f\x2d\x8d\xc7\x97\x79\x29\xe8\x9f\x6c\xb0\x61\xcb\x4c\x77\xbe\x69\xbc\xe0\x94\xe4\xcb\x38\xe3\xe5\x5e\xd5\xd9\xea\xf6\xab\xfc\x83\xa2\x36\x65\x23\x7d\xa4\x2b\x60\x58\xab\x6d\x1d\xdd\x69\x30\x60\x72\x96\xcc\x61\x81\xa3\xa2\x4b\x03\x64\x49\x66\x13\x47\xd3\x65\x38\x94\xef\xb2\xba\xb5\x97\xb9\x8d\x1c\xf3\xf1\x4c\xe9\xb5\x8a\x15\x2f\x67\xbc\x12\x4a\x81\xa6\xe0\x3b\xea\x34\x5a\x0a\x09\xe1\xdc\x73\x62\x3b\x25\x4b\xca\x45\x96\x09\x7d\xde\x94\xd5\x62\xc4\x92\x0a\x80\x61\xf8\xc1\x51\x29\xf8\x39\x04\x31\x9e\xca\x3e\x63\x3f\x2c\x20\x76\x33\x44\x8e\xac\x72\x76\x59\xf2\x82\x25\x15\x3a\x80\x55\xe5\x35\xd9\xc2\x24\x6a\xde\xa5\x80\x2f\x12\x80\xa9\x8a\x05\x1c\x9a\x35\x8b\xce\xf3\x58\x60\xd2\x36\x4c\xfb\x15\xe7\x02\xf8\x1e\x9f\x01\x20\xb8\xb4\x76\xf7\x62\x6c\xbf\x8a\x14\x49\x24\x5c\xb5\x02\x40\xc3\x60\x23\x01\x01\x80\x55\xef\x83\x31\x46\x02\x65\xb1\xc8\x8b\x2a\x99\x27\xbf\x40\xc8\xe5\xb1\x28\xc1\xa8\x5d\x64\xd3\x24\x13\xb2\xaf\x37\x05\xa4\xd6\xa1\x89\x43\xf8\xcc\x2d\x7e\xe1\xc4\x3d\xf4\xaf\xc6\x88\xc5\xb1\x9d\x97\xd4\x3a\x64\xd6\xc8\xc6\x38\x84\xd3\x58\x96\x57\x78\x22\x33\xd6\x48\x78\x75\x16\x82\x76\xfb\x66\x4b\xc0\xbb\xb1\x19\x97\x76\xd0\x14\x61\x31\xc8\x8c\xea\xae\x47\x8b\x75\xab\x4d\x23\xed\xea\x01\x05\xd9\xae\xd3\x78\x45\x3e\xdc\xc6\xd6\x21\x6d\xeb\xc9\x45\x5b\xd2\xb1\xae\x0f\xeb\xf3\xaa\xe1\x7b\x54\x5d\x8b\x00\xde\x7c\xed\x7a\x00\xd6\x24\x42\x00\xa1\x81\x0f\x6e\x48\x89\xb5\x01\xaa\xf3\x38\xeb\x74\xbb\x0e\x17\x96\x8b\xcc\x89\xcc\xe9\x5b\xed\xd5\xc8\xbc\xeb\x4e\xb9\x87\xc8\x60\x90\x29\x01\x9a\x92\xc7\x27\x7a\x89\xa8\xf5\xcf\x33\x27\x78\xbb\x74\x35\x53\x14\xa5\x5e\x60\xd0\x1e\xdb\xea\xfa\x33\x37\x18\x28\x54\x1c\x26\xbd\xe4\x20\x38\xf8\x05\x4f\x52\x08\x40\x3b\xc2\x42\x06\x07\xcc\x92\x79\x59\x9c\x21\x22\x4b\xe3\x30\x42\x7e\x51\x87\xa6\xaf\xc2\x9a\xe0\xb5\xdd\x32\xe0\x75\x57\xc3\x9a\xe3\x0c\x38\x54\x09\xd1\x99\xa0\x54\x3c\x32\x9f\x8b\x51\x1e\x5f\xc3\xaa\x97\xe3\x52\x5c\xea\x07\x7f\x87\x2e\xe8\x44\xcb\xf6\xfb\xaf\xfa\x6c\xce\xe3\x38\x13\xb2\x4e\xed\x10\xe9\x10\x17\x64\xb2\x8e\xe8\x3a\xa8\x04\x98\x11\x76\xe0\x51\x74\x29\x18\xc7\x40\xf7\xd0\xad\x42\x01\x74\x09\xb0\xa9\xb1\x57\x52\x42\x69\x36\xb1\xda\x88\xa0\x9a\x96\xfd\x55\xb9\x90\xd8\x80\x36\x2d\xb2\xe8\x86\x31\x93\x57\x22\x32\x95\x0e\x7f\xbc\x62\x34\xae\xdb\x96\x3f\xb0\xd6\xc1\xd1\x68\xc0\xfb\x89\x4b\xc6\x47\xf9\x05\x71\x94\x42\x02\xe2\xec\x72\x76\x21\x4a\x09\xaa\xf4\x04\x07\x80\x97\xb5\x0a\x79\xb8\xad\xad\x8f\x00\x72\x36\x2b\x35\x2f\xea\xb1\x59\x5e\xa0\x5f\x73\xbe\xb0\xe6\x85\xe3\xbc\x2c\x55\x45\xeb\x4c\x9f\x54\x7e\xf8\x69\x02\x28\x6c\xfc\xe9\xb5\x06\xaf\x3a\x6d\x1c\xbc\x73\xca\xf2\x77\xa1\x72\x91\xb9\x82\xa2\x33\xe7\xe5\xb9\x28\x1b\xe4\xc0\x8b\x50\x52\xba\x92\xef\x5e\x64\xc1\xb8\x01\x8f\x26\x69\xe0\xc9\xec\xdb\xca\x83\xda\x70\x9a\xb6\x63\x2b\x14\x5e\x78\x83\x7d\xf0\xa0\x7d\xf4\x37\xd9\x25\xd6\x1e\xf8\x6f\x29\x1e\x9a\xd8\x21\x34\x7f\xfe\x6d\x24\xc4\x7d\x89\x08\x77\x44\xae\x90\xf0\x07\xd7\x3e\xc0\x7f\x09\x29\xd1\xaf\xe1\x7b\x98\xcf\x85\x46\x4b\x1a\xbc\x00\x1b\x9b\xf1\x04\xa2\x40\xa3\xb5\xac\xcb\xb2\x17\xd2\xe1\x9e\x1b\x91\x16\x45\x50\x03\x69\x3d\x11\x04\x42\x48\x29\xe0\xff\xb3\x10\x0b\xa1\x5f\x96\xe1\x65\xa4\xe4\x49\x46\x29\xdd\x9c\x1c\x5f\xe3\x45\xa9\xf0\xfd\xdf\x54\xf5\x67\x4e\xd3\xfd\x2c\x16\x57\x8c\xf2\x04\xba\x06\xdf\xa9\xe0\xd9\x87\xe2\xad\xb8\xaa\x8e\x92\xf1\x79\xc7\xbf\xad\x33\x9d\xc0\x0a\x77\x40\x07\xb7\x67\xbe\x8b\x82\xfa\xa7\x01\x3d\x23\x27\x1d\x38\xa1\x69\x8d\xfa\x4f\x0f\xd5\xab\x47\x39\x18\xe1\x5b\x9b\x87\x10\x6b\x18\xaa\x83\x92\xea\xfb\x7f\xda\x3a\x05\x7c\xa1\xab\x8e\x23\x53\xfc\x3c\x0d\x6e\x1d\x97\x4c\x7a\xac\x2b\x89\x02\x2f\x66\x46\xd8\x39\x2a\x65\x30\x0b\x1a\x03\x87\x88\x26\x77\x9e\x86\x83\x71\xb8\xdd\xf1\x50\x23\xb0\x5c\xea\xa4\x5e\x2a\x7b\xe6\x11\x53\xb7\x7b\x56\xa7\xf9\xf1\xa9\x53\x48\x36\x50\x8f\x1e\x39\x64\xfd\x23\x0b\x21\x37\x4d\x6b\xad\x42\x88\xc2\xb1\x05\x79\xda\x2f\x17\x99\x97\xc0\xde\xa1\x58\xf0\x67\xf3\xfc\xaa\xff\x5a\xc9\x41\xad\x83\xf1\x3b\xe9\xe8\x5b\x38\x35\xdc\xf0\x2b\x1b\xcf\x1f\xb8\x42\x5f\xba\x64\x34\x67\xee\x35\x9f\x77\x44\x80\x37\x88\x72\x2a\xbd\x68\xe8\xa1\x73\x24\xdb\x64\xdb\x5d\x67\x8d\xd4\xbe\xff\x89\x6d\xfb\xde\xf7\xae\xc7\xe5\x36\xfa\x56\x36\x78\x5c\x7a\x61\x06\xf0\x3f\x85\xcb\x71\xa2\x3a\x3c\xf5\x0c\x41\x93\xd3\x46\x29\x64\xc8\x8e\x06\x16\x60\xcc\x5b\x89\x39\xaa\xc4\x0a\x56\xd7\xc5\xdb\x9d\x00\x50\x17\xb6\x21\xf0\x6a\xf3\x0a\xb1\xfc\x6f\x57\x96\xbb\xf8\xf4\x0d\xce\xc5\xb7\x2c\x4d\xce\x05\xdc\xd5\xc4\xc9\xb8\x82\x94\x15\xe4\x6a\xec\x9a\xe7\x38\x68\x95\xfc\xda\xb7\x70\x98\x2c\x32\x9c\xa1\x67\x4e\x21\x86\x6f\xd8\xc5\xfa\x38\xb1\x0a\x88\x6b\x05\xac\x9b\xd5\x6e\x0a\x08\x68\x1f\xd2\x25\xd1\x46\x69\x81\xea\xbb\x77\xcd\x25\x55\x52\xa5\x8a\xef\x22\xba\xbf\x8a\x9c\x6f\x3a\xba\x90\x59\xe4\xce\x7d\x9e\xbe\xc9\xd2\x45\xbc\x9c\x5e\xe8\x65\xaa\xcb\xf4\x8e\xba\xcb\xa2\x08\x7c\xfd\xc5\xbc\x80\x14\x72\x3a\x14\x13\xe4\x07\x63\xa5\x98\x8a\xab\x82\x25\x52\x42\xb0\x8a\xa0\xb5\x73\x67\x66\x46\x9b\xe5\x79\xd1\x41\x07\x2e\x5b\x1f\x3a\x52\x5f\x5c\xac\xe2\x58\xa7\xc3\xa9\x7f\xcc\xd1\xf9\x27\x2c\x9d\x4c\xea\x85\x68\x39\xd4\x0e\x0a\xbf\xef\xa5\xa9\xae\x22\xeb\x75\xc4\x3c\xa9\xea\xa5\x45\x29\x0a\x91\x2d\xc1\x92\x2a\xbc\xcb\xc6\x0d\xfd\xdb\x6a\xa9\xd3\xb1\xe5\x8a\x8c\xcf\x95\xc8\xd3\x5b\xfe\xf1\x29\xf3\x48\x36\x4a\xb2\x38\x48\xbe\xaa\x9b\xb4\x5c\x62\x85\x2d\x29\x59\x9e\x31\xa2\x74\xec\x2d\x75\xd5\xf1\x65\x1c\x72\xaa\x49\xe9\x3a\x88\x98\xcb\x44\xe3\x59\x9c\x94\x5e\xe5\x38\x29\x57\x23\x83\xcd\x5a\x51\xd1\xd5\x16\x73\x2e\x5d\x69\xe8\x62\xb2\xf5\x8c\xdd\xec\x45\xca\x7f\x8f\x6a\x7f\x58\x41\xed\x36\xf9\x45\xd8\xfc\xf2\x1d\xf3\xb0\x62\x3e\xc6\x6f\x2d\xd5\xfd\x17\x14\xfb\x08\x63\xf3\x8d\xc1\x70\x10\x5e\x87\xc2\xfc\x78\xb3\x06\xd9\x0f\x94\xae\x0b\x56\x39\x5e\x1f\x4a\xe8\xa9\x4f\xc1\x8d\xf7\x6e\xad\xa2\x5f\xc1\x4d\x91\x46\x8f\xdb\x7e\xf5\x53\x9d\xce\xda\x88\x6a\x7a\x12\x37\xd5\x55\xa5\x46\x6b\xa0\x36\x9a\xa3\xa7\x16\x4c\x75\xe0\xe0\x64\x3f\x04\xcf\x81\x07\x68\x71\x8e\x2f\x6e\xe4\x6e\xaf\x6d\x41\x4c\x16\x5d\xf3\x22\x2b\x21\x31\xff\x32\x73\x2c\xb2\x60\x67\x7b\xce\x1b\x96\x3a\x15\x50\xb9\x89\xe8\x02\x2f\x9d\x4b\x8d\x1a\x1b\x40\x60\x40\x8a\x56\x08\xda\x36\xc6\xa0\x4b\x2f\x7c\xf8\x6a\xbb\xf2\x41\x4f\x8a\xaa\x4a\x21\x3e\x83\xc2\x54\x5b\x28\xf6\x58\xf0\xca\xac\x08\x0d\xf9\xa4\x78\x25\x0e\x81\x1e\x40\x6b\xea\x85\xde\x81\xfd\x0a\x26\x54\xf2\x57\x41\xc3\x4f\x9f\x02\x50\xc6\xea\xa0\x8f\xa4\xf6\x02\x24\x83\x6b\x80\xc1\xa6\x31\x22\x32\x26\xbe\xb7\xb3\x6d\x1e\xba\x23\xed\x1d\x35\xe1\x49\x6a\x0e\xcb\x88\x05\x3c\x52\x44\xec\x11\x0b\x3a\xaf\x1b\x1c\xe0\xe8\x4c\x39\xec\x94\xb5\x4a\xda\x0b\x34\xfc\x80\xbf\xed\xeb\xd2\xaa\xd4\xdd\x1f\x8a\x98\x1c\x6c\x91\xa3\x4d\x30\x13\x72\x0d\x12\x31\xbd\xba\xf7\x28\x81\x98\x1a\x87\x0e\xcd\xe7\x4c\xba\xc7\x23\x00\xea\x33\x35\x50\xfc\x81\x7f\x55\x39\x5b\x40\x77\xfd\xf5\xdc\x93\xfc\x6a\x92\x5e\xc3\x8f\x15\x06\xa7\x0e\x58\xa0\x6c\x07\x4c\x11\xd1\x49\xa8\xc7\xa2\x57\x2f\xde\xbd\x7d\xbb\xf7\xc3\xbb\x83\xa3\x57\x2f\xa3\x6e\x73\x7f\xc7\x44\xc3\x53\x62\x61\xf4\xf6\x68\xab\x8a\x63\x3d\xad\xb3\xbb\xf3\xde\x4d\xe3\x36\xa8\xad\x5e\x0e\x22\x9b\xf1\x6c\x4c\x6c\x04\x6d\x7a\x86\xde\x48\x69\xe3\xee\x1b\xac\x10\xec\x20\xf0\x3b\x32\x6b\x60\x6c\xb3\x0f\xdb\xaa\x90\x6d\x4a\xfd\xe3\x3e\x3d\xe2\xc7\xd2\x73\xeb\x13\x12\x2f\x93\xf4\x37\x5a\xe9\xbb\xbe\x31\x0b\x7e\x4d\x24\x18\x8c\x6b\x79\xe8\x1c\xbb\xf0\x7b\x95\xff\xaf\xc3\x77\x6f\x83\xed\xed\xc4\x35\xc9\x30\x22\x7c\x30\x60\x3a\x9e\x81\x2e\x22\xdf\xfc\xa1\x97\x43\xdd\x2e\x0d\x3e\xd7\x9f\xd4\x9f\x3d\x07\xd0\x9b\x64\x5c\xe6\x32\x9f\x54\x56\xee\xe3\xe5\x10\x44\x67\x20\x77\x0f\x53\xe2\x2c\x36\xca\xa5\x0d\x30\x6d\x1c\x09\x0d\x35\xff\x25\x49\x53\x63\x2f\x33\x49\x52\xf1\xd6\xe2\xa0\x7f\x9a\x16\x69\x92\x89\xb7\x2e\x44\x5b\xe0\x98\x13\xa5\x8b\x79\xe6\xd5\x72\x8b\x4c\x3d\x30\x8d\xa6\x0a\xf0\xb7\x8b\x97\x76\x8e\x24\x88\x8a\x15\x0c\x2c\x4f\x98\xa8\xd9\x37\x5f\x62\x92\x16\x9f\x8d\x4f\x80\x99\x13\x98\xbb\x15\x1b\x61\x22\xf7\x46\x60\xc8\x25\xda\x5d\x50\xbd\x3a\xc6\x48\x75\x9c\xcf\x47\x49\xa6\x8a\x42\xe5\x45\xb7\x73\x6a\x34\x3a\x88\x4a\xf2\x0d\x50\x3d\x8f\xae\x09\xa0\x36\xf1\x54\x5b\xaa\xfa\x60\x64\x99\xb1\x5d\xfd\x70\xf0\xba\x07\x50\xc0\x0a\xc1\x24\x6a\x75\xbf\x6b\x7d\x4d\xc7\xd3\xe3\x19\xe3\x34\x04\xd5\x9b\x97\x4a\x9a\xda\x51\x2b\x5d\xad\x17\x58\x62\x68\xf1\x50\xeb\x69\x91\x41\x32\x4d\x32\xa9\x6d\x14\x76\x7a\x28\x47\x34\x2c\x85\x42\x63\x45\x0f\xb0\xa6\x39\x2a\x1c\x29\x44\xd4\x04\x52\x41\x68\x1d\xa0\x6c\x20\xb9\xa4\x13\x69\x96\x6a\xc4\x10\x37\x95\x15\xbc\x9a\xad\x14\x63\xe0\x1c\xf5\xe3\x22\x4d\xdf\xf3\x6a\xd6\x21\xa4\x7b\x1e\x52\x8e\xc5\x86\x1e\x14\x66\x18\x71\x18\xa4\xe3\x35\x08\xe5\x84\xc3\x13\x2d\x5d\x34\x84\x3e\xb2\x5f\x97\x70\x73\x2d\xbe\xad\x9f\xc6\xde\x6e\x85\xc1\x4c\xb7\x4e\xdb\xa2\xc4\x20\xc9\x44\xf3\x75\x93\xdc\xb4\x76\xd4\x16\x1e\xb9\x7d\x46\x7c\xba\x2e\xca\xd4\x06\xac\xdc\xd3\xd0\xc7\x39\xd8\x42\x80\x29\xb4\xe6\x18\x48\x1f\x8a\x31\x8d\x29\x07\xf7\xc9\xc6\x1f\xe5\x78\x26\xe6\xe2\x4f\xc3\xc1\xe0\x64\x43\xf1\xd4\xc9\x06\xfc\xd5\x81\x63\xff\x38\x4f\x37\x5d\x26\xeb\xea\xfc\x93\x07\x3f\xbe\x60\x8f\xbf\xfb\xf6\x6b\x7a\x2a\x91\x0c\xc1\x80\xd4\x86\xeb\x6e\x26\xd5\xf4\x90\x7f\xf7\x78\xc6\x4b\x3e\xae\xd4\x49\xd1\x46\x54\xa6\x24\xe0\x64\x5e\xa4\x94\x8e\x20\x13\xe6\xe8\x1a\x6c\x3c\x90\x35\xd0\x4c\x29\x9f\x50\x7d\xd9\x63\x71\x32\x4d\x2a\xd9\x63\x45\xba\x50\xff\x2f\xca\x24\x8f\x21\x29\xfb\xec\xba\x98\x89\xac\xef\xb0\xca\xe0\xbf\x3b\xc7\x7c\xf3\x97\x53\xf5\x7f\x27\x27\xf1\xc9\xc9\xa3\x93\x93\xcd\x93\x93\xfe\xe9\xc3\x61\xf7\xf9\xc9\xc9\xe0\xe4\x64\x30\x48\x30\xf5\x9a\xa2\xe6\x1a\xdc\xb4\x86\xa4\xf2\x26\xbc\xee\xdd\x7e\x0b\x29\x80\xf3\xa0\x2b\xbb\xf3\xb2\xce\x8a\xa7\x6a\x4b\x39\xab\x65\x19\x9a\x8e\xfd\xd0\x0c\xce\x07\x5c\xcc\xcf\xf5\x68\xdc\x88\xd3\x83\x47\x14\x71\x9a\x3d\x82\xc3\xf7\x23\xb7\x9d\xe7\x3d\x39\x78\x84\x15\x11\xd8\x50\x03\xbb\xbb\xe5\xe6\x80\xfd\x85\xec\x24\x2f\x21\xe1\x6e\xbc\x28\xd2\x64\x8c\x13\x58\x0a\x96\x4c\xb3\xbc\x44\x3f\xa3\x0c\x36\xce\xc1\x80\x8d\xfb\x93\x3e\x9b\x55\x55\x21\x87\x83\x81\x2a\xfd\x59\xf6\xf3\x72\x3a\xe0\x45\x32\x50\xc5\xfd\x59\x35\x4f\x7f\xa7\xfe\xfa\x48\x9a\xcb\x47\x63\x25\x0e\x1b\x28\xc0\x7c\xa9\x3b\x7a\x37\x61\xbb\xec\x58\x0d\x2c\xe2\x90\x14\x39\xe2\x8b\x6a\x96\x97\x64\x7f\x87\xa6\xe0\x59\x25\xb2\x6a\x13\xef\x0b\xdd\x92\xea\xba\x80\x26\xa2\xe2\xd3\x08\xb6\xfb\x48\x5c\x15\x49\x29\xa4\x2a\x9d\x94\xf9\x1c\x4c\xcd\xc9\xc4\x3c\x99\x6c\xce\xf3\x18\x38\x6f\x53\x26\xd9\x58\x50\xe1\x22\x0b\x8b\x01\x52\xca\x65\x65\x1a\xa8\xaa\x69\x3e\x36\x38\xcd\xf9\xd5\xe6\x24\x2f\x2f\x79\x19\x43\x5f\x45\x99\x5f\x5d\x6f\x06\xa8\x03\x18\x0c\x83\x58\xaa\x4a\xa5\xa8\xca\xeb\x4d\x3e\xa9\xf0\xe7\x42\x8a\x72\x93\x4f\x45\x56\x45\x27\xd9\xa9\xb7\x8a\xde\xf3\x52\x5a\x1b\xd6\x24\xab\x72\x1b\xd4\xd4\x0d\x01\x8a\x02\x1c\x02\x77\xfd\x24\xe2\x1e\xdb\xf9\x86\xed\x2d\xa6\x6c\x67\x6b\xfb\x09\xdb\xfa\x76\xf8\xf4\xdb\xe1\x93\xef\xd8\x9f\xdf\x1c\xe1\xd2\x24\xaa\x1d\x5d\x17\x62\xc8\x78\x81\x33\x90\xe4\xd9\xe0\x67\x89\x29\x0f\x54\x95\x4c\x50\x30\xaf\x73\x21\x8a\x4d\x9e\x26\x17\xc2\xb1\xee\x15\xe5\xe6\xab\x6c\x9c\xc7\x10\x48\x6a\x3c\x5b\x64\xe7\x64\x8a\xdb\x14\x29\x54\x9b\xf2\xea\x71\x68\x5e\xcb\x84\xd0\xa1\xf6\x46\x82\x15\x6a\xac\x71\x4b\x1c\x47\xdd\x04\x2b\x35\x50\x62\xe9\xaa\x85\x56\x04\x42\x5f\xde\x38\x67\x6d\x02\xea\x65\x6b\x3c\x17\xd7\xcf\x9c\xb3\xb8\x0d\x50\xe4\x64\x90\xfd\xca\x82\x32\x5e\xda\x00\xea\x99\x3e\x5f\x34\x5e\x1b\xf5\x65\x91\x26\x55\x27\x3a\x39\xc9\xa2\x6e\x2f\xc0\xb2\xec\x28\x35\xd9\xde\x1a\xb1\x5d\x50\xa4\x4d\xc6\xc6\x68\x18\xe9\x4b\x6f\xcc\xf5\x88\x5d\x40\xbc\x7b\xa8\x28\x17\x23\x59\x95\x9d\xad\x1e\x4b\xba\xdd\x86\xc0\x04\x0c\x23\xed\xb5\xb5\x4b\xd8\x23\xb6\xdd\xf5\x13\xef\xba\xc1\xfb\x28\x77\x2e\x0c\x13\x43\xec\x3d\x78\x50\x5f\xcb\x4d\x09\x26\xdb\x5e\xbb\x9c\x27\x1b\xea\x8c\x62\x56\x88\x6a\x73\x9c\xe7\xe7\x89\xf0\x8d\xc6\xdc\xbe\x77\x7d\x54\x9e\x7b\x1f\x87\xec\xf8\xb4\xab\x9f\x02\x8f\x2f\x78\x7a\xea\x18\xc8\xd7\x1e\x03\x7d\xb0\xed\x50\x1f\x31\xb5\x66\xd9\x23\x20\xe3\xd0\x09\x2f\x18\x44\x2e\x0e\x8c\xa4\x89\x31\xee\x2a\xa9\x6b\x3c\xde\xb1\x6c\xd6\x12\xeb\xfe\xb9\x8d\xa8\xd1\x90\xa1\x40\xe2\xd3\x35\x68\xbb\x3a\x95\x40\x8e\x0a\xd9\xde\xfb\x7d\x5c\xa3\x68\xa8\x4a\x7a\x1c\x99\x49\x18\xfd\x50\x1f\x9e\x49\xad\xa2\xb6\xf0\xaa\x8f\x81\x5e\x95\xb6\x43\xef\x69\x4c\x8b\x4e\x7a\x56\xb7\x46\x95\xb2\x35\x4a\x3f\xa3\x47\xb1\xb9\x4c\xd4\x21\x7c\xd0\x51\x7f\x7c\xaa\xca\x24\x16\x59\xd5\xd5\x5a\x89\x8d\x7d\xaf\xa4\xe9\xde\xd4\xc9\xfe\x8c\xcd\x17\x65\xaa\x84\x69\x92\x4d\xdf\xe2\x55\x80\x0e\x5c\x4f\x11\xab\x5e\x61\x4e\xf3\x4e\xc4\x23\xbf\x21\x0e\x02\x77\x59\x73\xe8\x04\xf1\xcc\x98\x91\xd0\x5c\x2b\xbb\x71\x22\xc7\xe0\x90\x0a\xf6\x0b\xe3\x7c\x5e\xe4\x19\xa4\xb9\xc5\xea\xba\x55\x28\x19\x03\x95\xd9\x95\x86\x58\x3f\x14\x88\xf4\x61\x60\x0e\xe3\xf6\xbc\x05\x97\x78\xbe\xde\x6b\x47\x33\xc3\x6c\xdd\x8b\x32\x75\x86\x83\x0b\x4f\xd1\x35\xb0\x38\x62\xfb\xaf\x80\x01\x24\xe3\x55\x55\x26\x23\xa5\x23\x4b\x51\xb1\xea\x32\xc1\xd0\x64\xe6\xbe\xd9\x0f\xaa\x6b\xfe\xf3\xa9\xde\x97\xa2\xda\xd3\x80\x3a\x91\xc2\x25\xea\x01\x4a\xfe\x7b\xae\x45\xd2\x6d\xac\x4a\xfd\x37\x47\xfb\xe3\x26\xfd\x78\x03\x0c\xd8\x82\xa2\xd6\xe3\x71\xf5\x43\x99\x7e\xc0\xc4\xaa\x59\x25\xca\x09\x1f\x0b\xb6\x09\x1a\xcf\x70\x30\x58\x94\x69\x5f\xe9\xaf\xfd\xcb\x19\xaf\x2e\xa7\xa0\xf9\xfc\x6e\x51\xa6\xe8\xae\x10\x9a\x00\xfd\x1a\x8e\x6e\xd8\x34\x38\xcf\xdb\x47\x9f\x2e\x6a\x35\xf5\x07\xf6\xbc\xed\x8b\x55\x19\x87\x5a\xb1\x1c\xb2\x28\xf2\xc0\x2b\x5d\xa8\x8e\x44\xee\xdc\xa9\xaa\xff\x24\x44\xe2\xac\xd5\xc3\xe2\x3a\x02\x58\xde\x14\xef\xa3\x01\x01\x2e\xeb\x80\x55\x61\x1d\xac\x2a\x75\x80\xfe\x6e\xd9\x98\xf0\x52\xac\x61\x5c\xde\x15\x19\x10\x38\x2f\xeb\x14\x50\x85\x7e\x2d\x5e\xcd\x10\x66\x27\xac\x4a\x5f\xac\xc3\x02\x6e\x5b\x83\x08\x44\x2e\x63\xad\xab\x40\xb7\x64\x43\xbf\x1a\xea\xfe\x2d\x95\x1d\xc6\x77\xf7\x1b\xfd\xa7\x91\x52\x78\x4f\xa9\x45\x00\xe6\xf0\xe8\x1b\xb1\x1b\xae\x01\x47\x90\x05\x39\x92\x14\x28\x39\xe3\x25\xad\x85\x40\x9e\x83\x2f\x71\x20\xd3\x57\x88\x38\xe7\xba\xa8\x7e\x39\x10\x08\xb9\xda\xfd\x40\x3b\x36\x4d\x97\x03\x9e\x64\xd4\x19\x4f\xfc\x5c\x4a\x7c\x2e\xde\x41\xfb\x8e\xc5\xab\x26\x2c\x8d\x5e\xd8\xb1\x1b\x2c\xa4\x40\x74\xda\x74\xd9\x73\x97\xe0\x2e\xb4\xa1\x33\xe6\xba\x79\x22\x29\x2e\x76\x3d\x2b\xee\x31\xd3\x68\x8b\x75\xbe\x15\xcb\x91\xd0\x4c\xf1\x74\xd0\x44\x15\x39\x1a\x8e\x7e\xd7\xeb\x76\xba\x8a\xd3\x68\xeb\x7e\xeb\x6c\xb6\xbe\x1e\xd0\x71\x32\x01\xf5\xbc\xfc\x3d\x5d\x96\xf2\xf1\xb9\x56\x05\x48\x4b\xa8\x6d\xe1\x59\x9e\xb5\xe7\xda\x59\x67\x26\x1a\x54\x44\x7d\xa3\x5e\x1f\xd2\x09\xf8\x2d\xfe\x53\x29\x52\x5a\x7d\xb2\x9a\x05\x68\xaf\x37\x53\x75\xea\x3b\xc6\x65\x99\xa8\x73\x9d\x8d\x1a\xac\x7e\xc3\x53\x72\x4f\xe7\x93\xa1\xc3\x6e\x0f\xc4\x55\x8f\xc5\xf9\x9c\xab\x95\x21\xc5\x78\x51\x86\xd6\x55\x78\x05\xad\x10\x0b\x0d\xb8\x18\x95\x93\xe9\x8e\x5a\x63\x8f\x58\xb4\xab\x84\x92\x50\x67\x3d\xf1\xe1\x60\xff\x85\xd6\x68\xf0\x8d\xbb\xeb\x6f\xa8\xa8\x48\x68\x22\x52\x3a\x4d\x42\xae\x5b\xf7\xfc\x70\x7a\xd3\xe7\x75\xe8\x2d\x13\x97\x70\x98\x35\x4d\xfb\x55\xfe\xe7\x37\x47\xb4\xf8\xba\xbe\xb2\xf0\xb9\x1d\x01\x6a\xa0\x88\xb2\xa2\x77\x55\x05\xba\x86\xba\x37\x84\x8f\xe4\x5e\xd1\x03\x56\x82\x3e\xa8\xfe\xaa\x5e\x70\xf6\x60\x8d\xab\x55\xb0\x1c\x3c\x56\x8e\x96\x02\x0d\xf8\x12\x9e\xc3\x00\xc4\xcf\x79\x92\x75\xa2\x67\xcc\x6b\xfe\xb9\xe7\xb6\x2e\x05\x8f\x87\xae\x96\xc9\x63\xdf\x28\xc5\x32\xd7\x1c\x6c\x7d\x77\xc3\xee\xfa\x50\x0e\x16\x61\x07\x62\xfa\xea\xaa\xe8\x44\x9d\xff\xfe\xf4\xec\xe4\xe4\xe4\x44\x3e\xec\x76\x60\xde\x89\xe5\xba\xbb\x9d\xe3\xff\x7e\x76\xfa\xb0\x1b\x05\x73\xad\x45\x27\x76\xf1\x9c\xc5\xa2\xc6\x96\xf0\xe9\xf8\xf1\xa9\x12\xbf\x98\x78\xbf\x7d\x48\xf3\xfc\x42\x78\x83\x52\x05\x4d\xc3\x82\x27\x23\x77\xdd\x45\x51\x0f\x38\xb4\x9f\xe5\x97\x9d\x2e\xdb\x64\xdf\x7e\xfd\x64\x4b\xfd\xd7\x60\x9b\x7b\x63\x51\xfc\x9b\x49\xe2\x95\x42\xa6\x6b\x03\x3d\xb4\x31\x81\x73\xf7\x01\x56\x92\xcc\x6f\xd0\x4c\x62\x1d\xe6\x3b\x24\xce\x72\xa1\xde\x14\x57\xd7\x0f\xa7\xab\xa3\x67\xe9\x88\x2e\x10\x46\x45\xe7\x07\xd3\x19\x12\x66\xbc\x62\x63\x9e\x99\x10\x26\x10\x83\x0a\xcf\xb0\x5e\xf0\x97\x7c\x02\xad\x0a\x51\x9a\x23\x2b\x5d\x6b\x41\xec\xe4\x16\xcb\x12\x71\x25\xc6\x8b\x4a\xbf\xfc\xeb\x1f\x9a\x00\xb5\xf0\x31\x0e\x9e\x1d\x5d\xbb\xee\xde\x6b\xe0\x7c\xd5\xec\x4b\x67\x8d\xb0\x8e\xae\x0b\x7a\x4f\x8f\x4c\x23\x30\x97\x1f\x09\x27\xa3\x5a\x3f\xf2\x1c\x70\x29\x95\x89\xd2\x61\xde\x9b\x28\x83\xc4\xf5\x36\x7a\xa1\x02\x4f\x9f\x3b\xae\xdd\x93\x2a\x78\x45\x7d\x69\xd3\x96\xd0\xa6\xe4\xbd\x81\x42\x05\xbe\x23\x39\x58\x3a\x53\x9c\x65\xd5\x2b\xbe\xb0\x6b\x98\x8e\x23\x34\xc4\x82\xf0\x63\xe4\x13\xa1\x20\x60\x4e\x10\x42\x02\x03\x77\x87\x01\x7d\xf4\xdb\xa6\x1f\xd8\xc7\x5f\x1a\xb5\x30\xf6\x0e\x78\x22\xc5\x0b\x1f\x99\x67\x4d\xe3\xf5\xd1\x72\xe2\x2c\xdc\x57\x18\x22\x87\x7d\x1c\x33\xd4\x30\x6e\x90\x17\x53\xa0\x16\x53\x28\x08\xfb\x15\xd0\x10\x59\xcb\xf9\xd2\x1c\xe9\xeb\x80\x54\xf7\x70\x9d\x61\x32\x2c\xfd\x0c\xe4\x2f\x4b\x9e\xc5\x6e\x96\x3f\xd5\xa0\xe7\x3a\xa1\xe0\x63\x35\x52\x02\xf5\x7e\xaf\x7d\x13\x0d\x64\xbe\x28\xc7\x5e\x4c\x38\x2c\xe9\xb8\xd1\xe8\xa1\xfe\xb3\x90\xef\xec\x9c\xe2\x6a\x74\x52\x9f\x10\x1f\x8e\x6d\xac\x26\x2d\x89\xc6\x76\x4e\x43\xa9\x0a\x70\x87\xf8\x4f\xcf\x6d\x36\xa4\x7f\x4f\x74\x28\xc2\x66\x7d\xd4\xc1\x65\xc5\x53\xdb\xe1\x75\x56\xf1\x71\x95\x8c\x99\x5c\x4c\x79\x09\xc6\xde\x4d\x69\x14\x21\x43\xeb\x55\xc1\xd1\x48\xd4\xa4\xd0\x83\xd8\x1c\xc6\x16\xdc\x48\xb9\x17\x18\x16\x48\x75\x0a\x8e\xe8\x97\x10\xff\x60\x04\xd7\x3e\xaa\xf0\x4c\xcb\x3c\x87\xf1\xc0\xba\xd9\x89\xa5\xe6\x64\x27\x73\x82\x96\x75\xae\x7a\xec\xba\xc7\x7e\xa1\x5d\xe0\xa1\x67\xf4\x7e\xbc\xdd\x63\x3b\x3d\xf6\x18\x14\x53\xd5\xcc\x33\x99\x06\x0b\xf2\x67\x06\xb6\xe9\xe8\xa7\xa4\x9a\xb1\x33\x8c\x65\x7e\x86\x16\x08\x64\x0e\xa5\x45\x7d\x29\x36\xd5\x9e\x56\x89\xac\x19\x3d\x6c\x6b\x66\xdd\xc5\xb1\xdb\x31\x48\x35\xf5\x5d\xdf\x03\x74\x76\xc5\xe0\x2d\xc3\x54\x58\x6d\x27\x88\xc8\x68\x38\xfe\xa3\xa2\xb3\x47\xf3\xa2\xc3\xcb\xb2\x66\x2a\x40\xcd\x02\xca\x95\x4e\xf4\x4b\x2f\x54\xc7\x47\x5c\xb1\x8a\x86\xf9\xa2\x7a\xef\x27\x1e\x62\x27\x1b\xdf\x8f\xf8\x48\xa4\x83\x72\x91\x55\xc9\x5c\x18\x2b\x15\x21\xe7\x83\x96\x96\x10\xaf\x43\x43\x17\x94\x6b\x69\x35\x34\xaa\xa9\xa3\x7d\xec\xb1\x69\x99\xc4\xf6\x12\xd5\x89\x63\x86\x0f\xe1\xea\x57\x9a\x8c\x24\xe3\x10\xd9\xa0\x48\xcc\x4e\x4d\xc1\x3c\x7e\xd4\x61\xcf\x15\x27\x28\xfe\x86\xef\x43\xf8\xb6\x69\x1e\x2f\xa7\xa2\x1a\xe5\x79\x25\xab\x92\x17\xfd\x71\x3e\x1f\xc4\xf9\x58\x0e\x9e\xf4\x1f\x0f\x52\x7e\x9d\x2f\xaa\x81\x42\x63\x10\x36\x4a\xaa\xd9\x62\x04\xd5\xcf\xcb\x44\x56\xf9\x44\x94\x3f\xe7\x52\x14\xb3\xc1\x24\x15\x57\xa3\xfc\x0a\x5a\x8d\xd2\x7c\x34\x98\x73\x59\x89\x72\x20\xcb\xf1\x60\x2c\xa5\xfb\xbd\x3f\x96\xb2\x1d\x70\x99\x5f\xa7\x42\x6c\x7d\xb3\xf5\x64\x80\x4a\x20\xb5\xdc\x54\x4d\x83\x66\x3a\x66\x4a\x9f\x67\xd3\x45\xca\x4b\x7a\x8d\x4d\x79\x25\x64\xa5\x07\x92\x64\x95\x8d\xf0\x61\x89\x04\xe1\xc6\xd1\x6c\x07\x3b\x60\x7f\x5e\x24\x31\x45\x6a\x03\xe3\x83\x45\x16\x8b\x12\x74\x55\xa0\x27\xfc\x4c\xaf\x15\xfd\xe7\x79\x2c\xd2\x90\xa2\x63\x29\x37\x95\xa0\x3a\x87\xe8\x62\x03\x99\x25\x45\x21\x2a\x09\xa3\xe7\x9b\x53\x05\x7c\xb3\xca\xf5\x70\x06\x86\x57\x1e\xaa\x99\x84\xb4\xba\xc8\x2d\x11\x0c\x3b\xb2\xcc\xa4\x58\x4c\xa9\x38\xc4\x4d\x51\x51\xe6\x05\xbc\xfe\x4a\xa7\xd2\x38\x95\x57\xf4\x5d\xfd\xe9\x7c\xb9\x4c\xaa\xd9\x61\x75\x9d\x9a\xf6\xfd\xfe\x40\xc2\xef\x81\xfd\xe4\xd4\x27\x45\x53\xf5\x6a\x32\x60\xe8\x76\x70\x08\x1c\xd4\x6b\x44\x64\xe6\x75\xf8\x7e\xef\xc5\xfe\xdb\x3f\x1f\x2a\x99\xb6\xd5\x63\x24\x41\x7a\xec\x49\x8f\x3d\xed\xb1\xaf\x7b\xec\x9b\x1e\xfb\xb6\xc7\xbe\xeb\xb1\xed\x2d\xed\xa5\xf7\xe7\x83\xfd\x97\x1f\x0f\xf7\xff\xf7\x57\xd0\x2a\xe2\x8b\x2a\x8f\x7a\x70\xfa\x5b\x01\xa0\xc7\xb6\xb7\x7b\x6c\x7b\xe7\xd4\x77\xc9\x98\x8a\x0c\x02\x70\xfe\xb9\x4c\xe2\x0e\xba\x35\xe2\x18\x21\x21\xa6\x3a\xc8\x40\x6c\x92\x22\x4f\xb2\xca\xd9\x21\x91\x24\xf6\x3d\xd4\xa2\x55\x8f\xb5\xdd\x91\xc9\x2f\xc2\xf3\x5e\xc2\x67\xc9\x93\x0d\xc5\xa4\x9b\x27\x1b\xfa\x01\xce\xf6\xd4\x63\x27\x1b\x9b\x27\x1b\xe6\x69\x0e\x20\x78\x0f\x8e\xaa\xa4\xe9\xe0\xeb\x2c\x69\x45\x1b\x86\x6c\x8d\x09\x76\xe1\x3f\xc4\x5c\x3f\xe2\xb9\x0e\x50\xa9\xb8\xfa\x81\xcb\x44\x0e\xd9\x56\xcf\x2f\xfe\x73\x99\x5f\x0e\xd9\xb6\x53\x3a\xe7\x57\x3f\x25\x71\x35\x1b\xb2\x68\x7b\x6b\xeb\x0f\x51\x78\x54\x69\xd3\x12\x3d\xd4\x71\xf6\x1c\xe4\xd7\xc1\x8d\xa6\xbc\x09\xc1\xad\x66\x04\xb3\x3c\x13\x2b\x11\x54\x84\xfb\xab\x10\x05\xfb\x86\xc9\x64\x9a\x25\x93\x64\xcc\xb3\x8a\xec\x3d\x31\x9a\x8b\x9d\xbf\x4b\x05\x19\x66\xd0\x4e\xde\x1b\x5e\xcd\xfa\x65\xbe\xc8\x62\x1c\xe0\x80\x6d\xef\xb0\x87\x6c\x7b\x4b\x7c\xd3\x55\x3f\xb6\xc4\x53\x35\xab\x7f\x38\xd9\xc0\xfc\xa1\x2f\xd2\x1c\x23\x3d\x82\x45\xa2\x16\xae\x75\x39\x4c\x93\xda\x20\xfb\xaa\xcb\x91\x1c\x98\x96\x28\x47\xbf\x9d\x8c\xc7\x9c\xef\x3c\x79\xfc\x9d\xf8\xee\x1b\x31\xfe\x66\x87\x3f\x19\x7d\x13\x8f\x9f\xec\x8c\xc7\xe3\xed\xc9\xd7\x4f\xbe\xfb\xe6\xbb\x2d\x1e\x8f\xb6\x06\x52\x09\x9a\x79\x72\x95\x64\x72\xf0\x11\xe4\xac\x2a\xf9\xdd\xeb\x27\xdb\x7a\xa0\x2d\x93\xe1\x4c\x05\x90\xa1\xe7\x7e\x08\xe7\xc1\xce\x02\xd4\x25\x5a\x6b\x8d\x10\x4f\xf8\x18\xe6\x07\xc3\x9f\xcd\x45\x9c\x70\xf6\x3f\x0b\x41\x89\x74\x6c\x00\x28\x45\xd3\xbe\xb5\x2b\xb0\x4b\x05\x39\xe9\x4a\x5a\x3e\xd2\xdb\x69\xb0\x9c\x71\x3c\x4d\x16\xfb\x6e\xbd\x63\x58\xf5\x7d\x0b\x5f\xf6\x17\x85\xd3\x5d\x57\x11\x03\x41\x79\x91\x46\xdd\x90\xf2\xef\x26\x13\x29\xe0\xfa\xcf\x91\x18\x71\x72\xd1\x90\xc3\x91\xfd\x09\x1d\xfa\xbc\x24\x13\xea\x08\x6b\x32\x15\xb0\xe7\xfe\xc7\x21\xdb\xb6\xb9\x0b\xe0\x65\x95\x9e\xe2\x7f\x4c\x73\x8e\x9d\xba\xaa\xb6\xcb\xa2\x58\x7d\xa0\x50\x31\x92\x85\x2e\xe8\x54\x33\xf3\x80\x64\x2e\x05\x4b\x29\xba\xf8\x92\xf4\xe9\x13\x8b\x8a\x2b\x9b\xf1\xbf\x2e\x3f\x17\x6a\x17\xec\xdc\x44\x66\x6a\xf1\xdf\x24\x31\x0b\x3e\x76\xbd\x1b\xe1\x14\xa2\x40\x1f\xe2\x07\x38\x04\xab\x79\xa2\x8a\xa6\x81\x9f\xa4\xcd\x6b\xb1\xeb\x9b\x58\x34\xcb\x27\x62\xfa\x93\x0d\x02\xb8\x9e\x74\xa6\xce\xbd\x75\x32\xe7\xe5\x34\xc9\x86\x58\x55\xd7\xb4\xcc\xe1\xe2\xd6\x63\x3b\xdd\xae\x59\x33\x97\xb8\x60\x4e\x36\xc6\x3c\x1d\x77\x94\x74\x65\x8f\xd8\x2a\x10\x5d\x85\x53\xf7\x64\xc3\x82\x89\x1e\xb0\x3f\xb1\xdf\x27\x95\x98\x47\x43\xdf\x88\x23\x46\x93\xa4\x76\x5c\x4e\xec\xe3\x99\xb7\x5e\x4f\xdc\x48\x64\xb4\x02\x40\x70\xbe\xa4\x78\x6c\x2f\x0e\x0f\x4d\xee\xee\xc1\x00\x24\xc2\x90\x45\x5b\x6c\x9b\x69\xa1\x4d\xa5\x2f\x93\x52\xdb\x4e\x45\x65\x7e\x49\x5f\x78\x9a\x4c\xc1\x5f\x54\x89\x79\x55\x6d\x53\x56\xbc\xac\x9c\x76\x3f\x95\xbc\x00\x89\xae\x14\x7b\x2a\xff\x79\x21\xab\x64\x72\x4d\x26\x5b\xb5\x96\x4e\x8e\x3c\x8f\x09\x9d\xc7\x06\x55\x82\x44\xf0\x8f\x11\x46\x90\x10\xf9\x06\x0f\x19\xa9\x46\x60\x11\x46\x36\x1f\x33\xc1\xca\x3c\xaf\x98\x40\xb9\xdd\x37\x0f\x6b\xaa\x74\x88\xd7\x83\x37\x68\xaf\x38\xf7\x8c\x2e\x05\x44\xb9\xfb\xab\xda\xdf\x3f\x9f\x59\xa8\xe6\x93\x33\xab\xa3\xfc\xea\x30\xf9\x05\x66\x35\x1a\xe5\x65\x2c\xca\xcd\x51\x7e\x65\x37\xc9\x38\x91\x45\xca\xaf\x89\x36\x91\x27\xb2\x89\xa4\x9a\xa0\x1e\x0f\xba\x7b\xfb\x6d\x86\xa1\xb8\xaf\x3e\x02\x55\x7a\x03\xe4\xf5\x42\x8a\xb6\x22\xad\xdd\xd8\x04\x72\x60\x43\x42\x21\xcf\xe1\x5e\x04\xee\x2b\xc9\x2c\xf8\x0c\x03\x39\x9f\x99\xa9\xd1\x23\xb8\xcd\x58\x7e\x11\x65\xfe\x26\xc9\x60\x3b\xab\x8f\xc9\xfd\xea\x8c\x6d\x6e\x8a\xb6\x6e\xdf\x73\xac\x17\xcb\xee\xc9\x06\xba\x7e\x9c\x6c\x38\x5d\x47\xe6\xfb\xe6\x95\xdc\xc4\x0a\xee\x92\x0f\xd7\x1b\xd5\xb8\x4f\x7c\x36\x4b\x71\x21\x4a\x29\x56\xe2\xa5\x2b\xae\xc6\xcf\xd4\xbc\x1f\x3c\xcb\xfc\x72\x0d\x24\x9d\x5a\xcb\x30\x74\xab\xdd\x1e\x3d\xb5\xe2\x76\x4f\x36\x50\x96\xf9\x48\xa9\x12\x85\x0f\xc9\xb9\x00\x15\x5f\x08\xde\x19\x81\x46\xb2\x68\x0c\xe0\xdf\x16\x92\x38\x92\xe3\x1e\xc8\x61\x85\xbf\x62\x2b\x91\x55\xa2\xf4\x51\x82\x0a\x9b\x4a\x78\x48\x60\x28\xa8\xe2\xe2\xe4\x6d\x1f\xf4\xf9\x9e\xf0\xb1\x5b\xca\x52\x9c\x9c\x9d\xa7\x0d\x2f\xa7\xca\x7d\xe2\x26\xb2\x78\x35\x66\x22\x8b\x97\xe3\xa5\x2a\xdc\x13\x56\x23\x2e\x45\x9a\x64\x62\x29\x56\xba\x52\x2b\x56\xa6\xc2\x1d\xb1\x22\xe5\x60\x29\x67\x69\x4b\xf9\x76\xde\xb2\x2a\xc6\xfd\x70\x97\xc5\x6a\x39\x7f\x39\x98\x2d\xe1\xb0\x46\x05\xe8\x7e\x31\x6c\xe1\xb2\x10\xbf\x26\x3e\x0b\xb0\xbb\x07\x4e\xb3\xb8\x29\xfd\x5b\x6c\x8e\x44\x75\x29\x44\xb6\x02\x41\xaf\xee\x12\x2c\xfd\x7a\xf7\x8c\x2a\x87\x7b\x82\xb5\x30\xc5\xaa\x2b\x11\xa5\x6a\xb7\xc7\x93\xb4\xe8\x96\x15\x42\x5f\x9b\xd7\x46\x4d\x01\xbf\xf3\xea\xb0\xc8\x34\xb3\x9d\x83\x4e\x13\xc3\x35\x9f\x08\xee\xc6\x72\x16\xa5\x25\xdc\xe6\xe0\xd5\xca\x67\x35\xe4\xee\x8b\xd3\x42\x0c\x9b\x98\xac\x86\x60\x9d\xbd\x5a\xf0\xbb\x47\x06\x43\x80\xe2\x42\x64\xe9\xf5\x0a\xf4\xb0\xd2\x1a\xe8\x51\x45\x73\x9a\x87\x54\x0a\xcd\x77\x13\x70\x57\x44\xb7\xbb\xde\x3d\xcf\xb9\xb8\x96\xfd\x52\xc4\x8b\xb1\xf3\x7a\xdf\xe1\xe3\xf1\x62\xbe\x48\x79\x95\x97\x3d\xe6\xba\x79\x0c\x06\xec\x83\x14\x0c\xa2\x45\x8b\xc9\x04\x02\xe6\x81\x59\xfb\x7c\xbe\xa8\xf8\x28\x49\x93\x0a\x2f\xb1\xe8\x81\xa0\x10\x25\xc4\xfa\xc6\x60\xe7\x0a\x82\x77\xf7\xec\xf5\x43\xa8\xaa\xee\xcc\xab\x39\x66\xd0\xb0\xb5\x74\xc2\x88\x5f\x3f\x9b\x14\xcf\x70\x41\x5e\x26\x31\xdb\x65\x83\x87\xbf\xfb\xf8\xf1\xfd\x87\x83\x57\x1f\x3f\x3e\x1c\xc0\x7b\x41\x9f\x9c\xb0\x0e\xc4\xc4\x0e\x0f\xba\x2e\xca\xbc\x00\x2b\x9a\x89\x73\x5b\xf3\x11\x4a\x7f\xef\x4a\x1b\xcc\xcf\x58\xc8\xbe\x5b\xd8\x6b\x92\x4b\x6c\xb7\xb9\xfd\xee\x2e\x83\xd0\x49\x5b\xec\x39\x44\x61\x17\xd5\x78\x16\xb1\x61\x53\x65\x03\xd7\xfd\x06\x7a\x81\x8f\x06\x14\xf5\xea\xda\x43\x80\x02\x95\xad\x83\x80\x0f\x11\x2c\x59\x84\xed\x94\x7e\xfb\xdf\xdf\xf2\x39\x3c\x70\xf8\xb5\x3c\x5f\x7f\xea\xc1\x3e\xd5\x99\xaa\xba\xc4\x54\x7d\xe1\xd4\xa9\x37\xf3\x86\x10\x27\x17\x0e\xfa\x75\x50\xe6\x03\x5d\x1a\x38\xbd\x52\x89\x9b\xb7\xc4\xd4\xa9\x37\x73\x7b\x05\x23\x62\xb7\xd7\x10\x14\x7d\x30\x67\x2b\xd3\xab\x29\x71\xae\x26\x6c\x9d\x7a\x33\x6f\xac\x65\x7e\xe9\x8c\xb5\x0e\x8a\x3e\x28\xed\xd2\x74\xa8\x7e\x98\x0a\xf4\xc5\xab\xb7\x64\x5c\x5e\x5b\x2a\x23\xf1\x63\xe0\xd3\xef\x5e\x20\x9e\x6c\x2f\xa6\xc0\x1b\x8a\xa3\xa1\xd9\xfe\x42\x58\x54\x9c\x4e\x4d\x6f\xa9\x0d\xd4\x00\xa5\x4e\x8d\x25\xe3\x70\x5a\x51\xc9\x3c\x36\x20\xe7\x36\x3b\x24\x94\x3a\x35\x96\x80\x74\x5a\x51\x89\xb4\x34\x97\x96\x6a\xd2\xa1\xb7\x5c\x4e\x6d\x59\xa3\xb5\x34\x77\xbd\x04\x97\x6e\x28\x0d\x70\xf3\x3d\x6c\xe0\x76\xb3\xe5\x74\x11\x00\xa0\x62\x48\x2f\xa0\x3b\x51\x3f\xec\x35\x18\x7e\xf1\xea\x79\xf3\x08\x27\x70\xdb\x81\xd7\x98\xca\xae\x52\x03\xfb\xca\xc6\xe9\x81\x52\xa7\xc6\x12\xc2\x38\xad\x74\x89\x95\x46\x57\x56\x10\x5d\x39\x22\xef\x4a\x2e\x07\x29\x43\x90\xee\xfd\x95\x01\xee\x16\x9a\x06\x41\xcd\xc6\xf6\x4b\xba\x6e\x84\x09\xfe\x09\x0a\x58\x8b\xb1\x84\xde\xa1\x8e\x4f\x36\xdc\x2d\xe2\x64\xa3\xc7\xa8\x04\x64\x36\xfe\x26\x01\xed\xfc\x50\x72\x98\x7e\x6a\x01\xa9\x7f\x92\xe4\xc2\x9f\x46\xa4\xe0\x4f\xb5\xfe\xf1\x2f\x5a\x99\xf8\x23\x9d\xe2\xbf\xf3\x18\xff\x95\x54\x89\xb8\x0b\x7f\xe0\x9d\x8e\xfa\xeb\x2a\xa5\x7f\x09\x23\x97\x00\x27\x1b\xa7\xae\x7d\x9f\x41\x16\x02\x37\xcb\xab\x0e\x0d\xa5\xaf\x94\xa9\x9e\xbf\xd3\xf4\x1c\x79\xfd\xe0\x01\x3b\xd6\x55\xad\x30\x36\xeb\xe3\xab\xdd\x5d\xb6\x85\xa1\xa3\xa1\x8e\xf3\xba\x71\x25\x9d\xc7\x09\x7a\xf6\xd1\xaf\x19\xdd\xd3\xd3\x1e\x8a\x4c\xdb\x14\xe5\xa9\xcf\x03\xce\x57\x6f\x72\x1d\xd1\x0e\x36\x99\x20\xbe\x3d\x2c\xbc\xbb\xb7\x1a\x1e\xe6\x6b\xb7\x7b\xda\xc3\xa5\x08\x70\x70\xcd\x79\x80\xf4\x6d\x55\x0d\x86\xfa\x00\xcd\x1d\x1d\x40\x67\x80\xc1\xad\xdf\x83\x13\x5c\x4f\xd4\xc0\x59\x28\x16\xa8\xd6\x6d\x56\x82\x75\x8e\x76\xcd\x80\x09\x12\x80\xd6\xdb\x06\x5a\xb3\x3a\xbb\x85\x07\xd8\xd1\x97\x6b\x20\xe9\x1b\x40\xbb\xc2\x51\xe3\x52\xf4\x20\x80\x05\x42\x53\xf3\x2b\x1c\xa2\x9c\x2f\x6d\x29\xe7\x0d\xfc\x33\x87\x96\xf3\x78\x69\xcb\x79\x5c\x6f\x39\x8f\xa1\x65\x3a\x5d\xda\x32\x9d\xd6\x5b\xa6\x53\x1c\x67\xba\x7c\x9c\x69\xc3\x38\xd3\x6e\xf7\xd4\x7b\xda\x6a\xd0\x9c\x7d\xff\x57\xa3\x9e\xf5\x6a\x2f\x44\x66\x89\x0e\x59\xa8\x01\x82\x4b\x63\x29\x26\xa4\xb5\x83\xc8\x43\xc5\xbd\xeb\x47\x28\x5d\x91\x71\x48\x69\xec\xfd\xc2\x18\xf9\xd0\x8b\xa3\xf6\x52\x7b\xc8\x5e\x52\x30\x15\x30\x06\xf5\x38\xef\x0c\x9f\xba\xb4\x1f\xea\x75\x9f\x5a\x40\xda\x1b\x7d\x7c\x83\x77\xf8\x34\x85\x78\xee\x22\x83\x67\x77\x49\x15\xe1\x94\xe6\xdf\x3e\x18\x63\xa3\x7e\x9e\x89\x77\x93\xce\xb1\x59\x01\x3d\x73\x0d\xd0\xf3\x5f\xe4\x9c\xd3\x78\x2f\x3c\xfc\xf6\x82\xd3\xe6\x69\x97\x0e\x9a\x4b\x87\x07\xeb\xf5\xfe\x06\x47\x77\x8f\xf5\xa1\xf9\xa3\x08\x46\xa7\xc7\x63\x87\x6f\xee\x2e\x1b\x46\x41\x31\xec\x40\x70\x90\x3b\xb8\xd9\x9a\x5c\x84\xc6\xb3\x24\x8d\x4b\x91\xb9\xe8\x64\x79\x2c\x6a\x00\xdf\x5d\x88\xb2\x54\x27\x51\x88\x72\xa7\x78\x92\xf2\x25\x37\x9d\xcd\xc3\xae\xd8\xa1\x10\xec\xf8\xc5\xe1\x21\xdb\x7b\xbf\x7f\xda\xf9\xdd\x58\xca\x2e\x1b\x89\x34\xbf\x04\x8a\xcd\xf3\x52\xb0\x58\x54\x3c\x49\x3d\x6a\xd1\xea\xf2\x48\x05\xfb\x77\x3f\x91\x07\x68\xf4\x15\xd7\x10\xfd\x1e\x03\x21\x84\x60\x70\xcd\x58\x40\x18\x7d\xa6\x85\x6e\xd6\xd8\xd1\x4d\xaf\x9a\xe7\x15\x84\x5e\xd1\x83\x7a\x95\x80\x56\xc1\x9d\xb8\xbd\x0b\xf0\x43\xff\xcb\xd1\x9b\xd7\xe6\x6a\x02\xcc\x4e\x9a\x69\xaf\x0b\x1d\xbc\x10\x1b\xf6\x3d\xd8\xd3\x41\x70\xb8\xcd\x2a\xdf\x54\x3c\x07\x25\x9b\x38\x38\x02\xd0\xa7\x3e\x54\xcb\xda\x48\xf6\x27\xec\xac\x2a\x17\xe2\xac\xe7\x4f\x09\xc6\xd9\x37\x91\xfb\x15\x6f\xb1\x87\x66\x53\x7f\xc8\x46\x62\xc6\x2f\x12\x1d\x75\xff\x21\xfb\xaf\x7c\xa1\x13\xaf\x8d\x04\x26\xc0\x52\x83\x7d\x08\x8b\xe2\xa1\x7e\x09\x75\x20\xf8\x43\x34\x6f\xc9\x96\xf4\xa3\x3c\x4f\x97\x2f\x3b\x60\x78\xb3\x3d\xb7\xaf\x3c\xf0\x2a\x59\x73\xe9\xc5\xf6\x7d\xad\xbe\xf2\xc0\x44\xc0\x7f\x77\xeb\x99\x87\xcc\x5e\xed\xc9\xb0\x61\xc1\xdd\x88\xdc\x8a\x76\xf7\x4c\x69\x7c\xf3\xbe\x09\x91\xf5\xde\xbe\x52\x78\xdf\x84\xca\x04\xf4\xd6\xd2\x6d\xa9\xb4\xee\x05\x97\x71\x2b\xa4\x37\x9a\xd6\x29\xf1\xa7\x36\x67\x19\xcc\x4b\x22\xd9\x34\xb7\xcb\xb6\x55\x9c\x03\xad\xd2\xe9\x99\x63\x72\x04\x56\xfc\x97\x49\x2c\x4a\xa2\x83\x64\xc9\x04\x62\xf6\xe5\x28\x25\x63\x8a\xec\x45\x44\x49\xa7\x0d\xf4\x00\x1d\xa2\xc7\x6e\x63\x60\xfa\x9b\x0d\x7b\x1e\xdf\x65\xd8\xf3\xf8\x5f\x74\xd8\x72\x7e\x97\x61\xcb\xf9\x6f\x39\x6c\x58\x10\x8c\x56\x0c\x94\xa8\x8d\x02\x2d\x63\xce\xea\x1b\xf1\x3e\xfa\xdd\x41\xf4\x49\xed\x7c\x97\x43\xd6\x43\x68\x65\x64\x4b\xbd\x29\x8e\x0d\x8f\x6e\xf5\x01\x6a\x53\xbb\x15\xfa\x14\xac\x75\x25\xd9\xee\x45\x9b\xba\x04\xfb\x80\xba\xa4\xd1\xd6\x5b\xda\xe8\x28\x30\x21\xf8\xed\x18\xe9\x2a\x5d\xce\x48\xee\x60\xae\xd2\x7f\xbd\xd5\xc2\x21\x63\x8f\xf0\x26\xc8\x06\x3d\x4d\xf3\x4b\x21\x2b\x56\x94\x49\x5e\x26\x66\x8a\x71\xb0\x4d\xfa\xef\xbd\x0e\xd6\xd9\x8f\x93\x8a\x49\x51\x49\x76\x36\x4f\xb2\x4d\x32\x3c\xdb\x3a\x63\x39\x2e\x17\xb5\x50\xf4\x00\x0f\xc4\x44\x94\x5a\x89\x4d\x93\x79\x82\x46\xd2\x92\x49\xba\x67\x20\x55\x5a\xbb\x55\xa3\x6b\x60\xbb\x8b\x06\xf9\x6d\xb9\x23\xf7\xed\xb8\xfc\xfd\xfa\x24\xfb\xcc\x86\x74\xb1\xa5\x3d\x18\xd4\x2a\x89\xe9\xc9\xc5\xfa\x47\x74\x24\xd9\x1c\xc3\xd9\x0c\x83\xa3\x44\x6f\x16\x89\xaa\x18\xa9\x13\x5f\x47\xfd\x85\x57\x3f\x10\x2b\xac\xed\xf4\x17\xd9\xc3\x5f\xe4\xbc\xcd\x38\x2e\x15\xd6\xd7\xd7\x71\xb0\xe8\x44\xd0\x13\x1e\x6b\x2d\x8e\xde\xb1\xd1\x1e\x5d\x3f\xf7\x1a\xeb\xf4\xf4\x43\x97\x7f\xe4\x73\x7a\xeb\x44\x46\x20\x45\xda\xf0\xd4\x3d\x42\xad\xa8\xea\xa8\x7c\x2b\x6a\x1a\xb5\x65\x45\x3d\xb5\x93\x7b\x55\xc0\xfc\x55\x7f\x55\x1b\x5e\xfb\x57\xb5\x2f\x2c\xf9\xaa\x25\xeb\x0a\x0c\x50\xe6\xad\xa8\x74\x15\xd2\xc6\xeb\xca\x67\xc1\x86\x7a\x27\x9e\x8f\x6c\x90\x12\xd9\xce\xe4\x33\xc7\x7d\xed\x76\x0e\x66\xbf\x89\xf3\xdb\x97\x76\x68\xb2\x29\x99\x43\xc7\x24\xfb\xe5\x0e\xfe\x4f\xbf\xb2\x98\x97\xe7\x22\xeb\xb1\x34\x99\xce\x2a\x91\xe9\x24\xdd\x4e\xc3\x71\x9e\xe6\xe5\x1b\x9e\x25\x05\xbe\xdc\x3a\xcd\x17\x52\x1c\x41\xd0\xdb\xb0\x8d\xfe\xa0\x7d\xa5\x8e\x0e\xf6\xde\x1e\xee\x1f\xed\xbf\x7b\xfb\xf1\xe5\x87\x83\x3d\xf5\x07\xdb\x65\x4f\xc0\x87\x42\x8a\x71\xae\xe6\xec\x16\x96\xce\xaa\xe2\x54\x54\x2f\x14\x86\x6e\x55\x5d\xd6\x01\xdc\x43\xf7\x49\x7c\x3b\x2f\x38\xc4\xd1\xed\x83\x6e\x02\x5e\x18\x40\x82\x88\x3d\xd7\xb4\xc0\xd6\x3d\xb6\xd5\xff\x7a\xa7\xcb\x86\x44\x2a\x5b\xfa\xd4\xfa\x5b\x6a\x64\x46\x7c\x7c\x3e\x85\xf3\xc4\xfb\x32\x99\xf3\xf2\x9a\xed\x5a\x64\xfc\x7e\x0b\xac\xd0\xb7\xa1\x42\x7c\x00\x87\x40\x96\xa5\x20\xa4\xae\xe2\x00\xf1\x7d\x94\x6f\x67\xf3\xad\x1f\x36\x8a\x5c\x26\xda\x68\x94\x02\xd6\x5a\xc3\x66\xa5\x9f\x4e\xd2\xfc\x72\xc8\xa2\x19\xa8\xa9\xf6\xd3\x4c\x28\x02\x0e\xd9\x13\x6b\xce\xff\x3d\xfa\xc6\x14\x65\x92\x55\xbe\x45\x3f\x90\x73\x2f\x56\x42\x72\xc8\x22\x71\xa5\x96\x8f\xfe\xaa\x4d\xf8\xd7\x34\xd8\x50\x5b\xe3\x88\x97\x3b\x81\x31\x7a\x9a\x97\xbb\x27\x1b\x44\xef\x93\x8d\xb3\x67\x58\x49\x7d\xbc\xe0\x65\xc2\xc1\xb4\x69\xb4\x98\x4c\x02\xbb\x21\x68\x49\xf3\xe8\x5a\x7c\x9b\x29\x82\x39\x19\xd6\x27\xfd\x6e\x58\x4b\x0f\x6d\x33\xc7\x37\x45\xdc\xf0\xcf\x7a\xa8\x9b\xea\x37\x43\xde\xa5\xb4\xc5\x29\xa6\x50\x63\xbc\xf2\x2d\x28\x9d\xf2\x5b\xba\x16\xd8\x3e\x92\xac\xad\x17\xef\xcb\x9d\xfb\x69\xa0\x2f\x16\x2d\xa3\x6b\x54\x95\x3c\x93\x05\x2f\x31\xe6\xef\xdd\x29\x0a\x4e\x65\x1e\x12\x50\xe2\xe0\x00\x3d\x4e\xf2\x72\x0e\x26\xde\x15\xaf\x44\x67\xfb\xdb\xad\x58\x4c\xbb\xeb\x23\xc0\xe3\x18\x16\x3c\x4f\x15\xa7\xad\x4f\x90\x98\xcb\x99\x88\x9b\x25\x87\x8e\xbd\x1e\xba\x44\x1c\xe5\x85\xeb\x6b\xa7\x65\x06\x3a\x6d\x34\xbb\x72\x58\x3b\x99\x2c\x99\x73\x82\xff\x7b\xc4\x87\x3d\x96\x2c\xc9\x26\x49\x96\x54\x02\x02\xea\xf2\x1b\x98\xf0\xdd\x6c\xdc\xb0\x62\x1b\xe4\x4a\x48\x8f\x17\xab\xe4\xc7\xfe\x1c\x92\x7f\x9c\x6c\x94\x3c\x4e\x78\xba\x39\x55\xff\x8a\xac\xea\x38\x6e\x5b\xa1\x6c\xe9\xb1\x93\x0d\xb6\xf5\x07\x70\x98\x5a\x5e\x69\xfb\xeb\x3f\xf4\x98\xc3\x87\xec\xc9\xce\x1f\x3c\x1f\x2b\x67\xf1\x27\xbf\x08\x20\x72\x71\xc5\xd4\xff\x45\x0d\x75\xde\xdb\x29\xdd\x62\x9b\x3b\x8f\x8b\xab\xdf\x86\xbe\xae\x00\x6c\xa4\xf0\x72\x41\x77\x23\x1a\x1b\x50\xcb\xa9\xec\x57\xfb\x27\xa2\x73\xca\xaf\x21\xdf\xc1\x88\x97\xdb\xf5\x7d\xc5\x11\x60\xdc\x95\x5e\xcd\x6b\x6c\xe9\x12\x4e\xc5\xa4\x72\x57\xef\x28\xaf\xaa\x7c\xee\x96\x54\xfe\xf2\x06\xfa\x68\x78\x46\x54\xb1\xad\xfe\x8e\xd4\xab\xb5\x57\x93\x64\x18\x36\x70\xc8\x22\xd5\xdd\xfa\x54\x70\x58\x4c\xae\xad\x02\x9c\xc1\xa5\x9b\xe5\x42\x8f\x58\x2b\x57\x32\x89\xfd\x76\x0d\xef\xee\xc8\x2f\x57\x04\x56\xa3\xbf\x96\x3e\xb0\x4c\xbf\xbc\xc9\x10\xb6\xd7\xd9\xb4\x59\x5e\xb2\xfa\xbe\xa6\x5a\xef\x07\x3b\x78\xc8\xa9\xbe\x13\xbd\xb7\x1b\x78\x3d\x6c\xb3\x9d\xfe\xb6\x64\xe3\xc5\x28\x19\x6f\x8e\xc4\x2f\x89\x28\x3b\x5b\xfd\xaf\x9f\x2a\xed\xfd\xdb\x6d\xf8\xe7\x9b\xc7\xf0\xcf\xe3\xef\x9e\x76\xcd\xfe\x71\x23\x56\x6b\x1b\x6a\x9b\x76\xa2\x9a\xbc\x6c\x1c\x9d\xbb\x46\x4e\x36\xec\x22\xe9\x5b\x51\xd5\x70\x8e\x02\xe3\x1d\x5a\x43\x27\x1b\xdd\xfb\x40\xbd\x49\xe5\xe1\xe5\xf6\x0f\xa1\xda\xf3\x0b\xa4\xde\x75\x43\x2b\xfc\xe6\x43\xd8\xb9\x13\xa3\xed\xdc\x17\xa3\xed\x34\x32\xda\x36\x71\xda\x13\xf5\xff\x4f\x9e\xf4\xd8\x76\x97\x6d\xf7\xb7\x9f\xca\xdb\x71\x5a\xdb\x58\x9b\xa7\x6b\xa7\x36\x5d\xf7\x3c\x39\x0c\xad\xc8\x5f\x8b\xa9\xc8\x62\x69\x63\x3d\x7c\xfa\xc4\x4a\x51\x94\x42\x82\x08\x53\xb8\x5f\x24\xe2\x52\x1d\xec\x4d\x95\x4d\xe6\x56\xe1\x78\xe0\x76\xa4\x91\xa9\x78\x15\x54\x54\x47\xf0\x5a\xbd\xe8\xfb\x73\x71\x3d\x29\xf9\x5c\x48\x5f\xf7\xdf\x76\x4f\x9a\x83\x01\x63\x9f\x36\xd5\x7f\xea\xff\xaf\x36\x3f\xd1\x0f\xfa\xc7\x9c\x54\xb7\xfe\xe0\x9f\x4f\x71\xab\x8b\x36\x1f\x3f\xfd\x83\x1b\xb7\xa3\x74\xd5\x55\x73\x5e\xed\x35\xf7\x66\xbb\xf9\x74\x75\x75\x75\xe5\xf4\xf6\x75\x4b\x77\xfe\x5e\x6c\xbb\xdb\xfc\xae\xb1\x3b\xac\x7f\x7b\x40\xfe\xac\xb6\x12\x74\xa7\x46\x50\x35\x9c\x2b\xfa\xff\x1b\x12\x74\xa7\x05\xb3\x9b\x52\x74\xf3\xca\xef\xaf\x9d\xa4\xdf\x34\x53\xe2\xdb\x9b\x52\x74\x0d\x38\xed\x04\xc5\xd5\xea\x42\xae\x51\x28\x2f\xf8\x38\xa9\xae\xfd\x98\x35\x6b\x68\x88\x1e\xfe\x4f\x5b\xa1\x6e\xdd\x01\x6a\x9d\x2a\xeb\x23\xab\x66\xbc\xb8\x0a\x61\x13\xa5\x4e\x9c\xc8\x65\x3a\xee\xdd\xef\x7e\xc7\xf6\x0e\xf6\xf7\x4c\x20\x36\xca\x4b\x57\x94\xf9\xb4\x14\x52\x82\xae\x94\x48\xca\x7d\x38\xd2\xa1\xc3\xd2\x9c\x43\xfc\x3b\x53\x2d\x9f\x30\xce\x0a\x5e\x56\xc9\x78\x91\xc2\xfb\xc3\x54\x87\xff\x64\x05\x25\x5c\x7c\xc8\xae\xad\x81\x04\x44\xbf\x53\xe2\x75\x93\x40\x8b\x78\x74\x7d\xa6\x24\x31\x3e\xb5\x91\x48\x76\xf1\xc0\x9c\xa1\x90\x3a\x61\xa6\x1b\x8f\x16\xf2\x1a\x13\xf7\xd8\xe4\x0a\x55\x4e\x2f\x47\xcc\xa6\xa4\x05\x6c\x16\x59\x95\xa4\x2c\xa9\x20\x16\xa4\xda\x1c\xd4\xf9\x46\x8f\x45\x47\x42\xc4\xcb\xd4\xd7\x20\x8b\xdf\xeb\xde\xd7\xf6\x96\xf1\xdb\x35\xfb\xcd\xac\xed\x2f\xb2\x8e\xaf\x08\xde\xca\x6a\x8f\x8d\x34\xf7\xd2\x42\xe6\x9e\xa7\x06\xfc\xf4\x8c\xd3\x49\x7b\xf6\xfc\x43\x5c\x10\x10\xa9\xc3\x80\xc7\x38\xd9\xde\x37\xdc\xff\xfc\x1a\x58\x16\x62\x4a\x5b\xa9\x53\x15\x7e\x3b\xe0\xf4\xf7\xb0\x81\x87\xb1\x27\x2a\x1d\xbc\x43\x70\x37\xb0\x17\x5f\x6e\x0d\x9e\xe6\x64\xfa\x0d\x63\x73\xfe\xfc\x81\x34\x02\x2c\x80\xde\x03\x63\x6d\x50\xf4\xd9\xae\xb9\xc1\xef\xd8\x2b\xe8\x32\xcf\x01\x19\xe9\xe7\x4b\x4a\x32\xa5\x03\x1c\x9a\x28\x38\x56\x2f\x1c\xda\x20\xc2\x4a\xef\x18\x52\xec\xdf\xcf\x4e\x22\x25\x97\x60\x91\x47\x25\x48\x5f\xec\x7c\x24\xf1\xe8\xc5\x7e\xc5\xa9\xf6\xe2\x0a\xb9\xa1\x70\x34\xbe\xc7\x11\x2c\x3b\xa8\x9d\xe5\x97\xd1\x29\xdb\x65\x4e\x5c\x2b\x8c\x67\xfe\x6c\x69\xb3\x79\x92\x41\xb3\xad\x15\xd5\xf8\x15\x54\xdb\xde\xda\xf2\x52\xc9\x58\x9d\x8a\xf2\x72\xb3\x4d\xaa\xa3\x6b\x99\xc0\x3e\x7d\xdf\x4f\x28\x2a\xab\xd4\xcf\x82\xe4\xc2\xda\x34\x3f\x9a\x52\x43\xb8\x33\xd3\x57\x13\xd2\x77\xdb\x92\xa6\x97\xf2\x4a\xfc\xdd\xb9\xf4\x30\x55\x20\xac\x57\xf7\x64\xa3\x6b\x62\x89\x41\x70\xa9\x9b\x3e\xec\xe2\xaa\xce\x64\x9e\x8a\xbe\xc0\xf8\xc4\x6f\x28\x62\xe1\xe6\x87\xfd\x21\xd8\x9f\x41\xa8\x2c\x25\x45\x31\x09\x0b\xe3\x44\x24\xc5\xef\x90\x71\x29\xa2\x20\x28\x5a\x94\x07\x3a\x3c\xdd\xf4\x69\x7e\xc9\x27\xa1\x28\xec\x9b\x00\xe7\xc8\x81\x2d\x0c\xd8\xca\x63\x24\x32\xda\x38\x0d\x1c\x0b\x5d\xda\x7a\xad\x3e\x7d\x62\x5b\xdd\x3b\x4c\xb8\x07\x79\xf3\xe3\x8d\xa6\x7c\x67\x9d\x29\xff\xf8\x4f\x34\xe7\x44\xb3\xd6\x99\x5f\x35\xd5\xcd\x33\xbd\xae\x0d\xfc\xc9\x46\x9c\x5c\x28\xf1\xb8\xd4\x02\xbe\xd9\x85\x05\x0c\xf2\x49\xf6\x6a\xca\xda\xb7\x58\x7a\x71\xec\x9e\x3a\x0e\x2f\x3d\x47\xd5\x73\x65\xdf\xd0\x78\x9e\x38\xa5\x56\xd5\xf2\xb7\x13\x5b\xd9\x2b\xb7\xd5\x8d\x5e\xa9\xeb\x8d\xfc\xbd\x2e\x82\x13\xb0\xf3\x1d\x4f\xc4\x48\xc3\x63\x22\xf4\xa9\xbe\xb5\x2c\xf3\x14\x6e\x4d\xb5\x8e\x33\x52\x87\xbf\x13\x34\xfe\x37\x22\xb1\x67\x1f\x56\x1b\xbc\x03\x7a\x8d\x82\x9d\x3d\xbf\xc1\xf4\xac\x98\x15\xbc\x04\x76\xe7\xc5\xb9\x16\x5e\x3a\x3b\x64\x85\x40\x29\x04\x7a\xf7\x87\x12\xa8\x82\x16\x1f\x7d\xf9\xb6\x82\x55\x7c\xf1\x14\xe8\x11\xe1\x0e\x89\xf3\xd8\x75\x3d\x97\x6a\x77\x66\xab\x59\x2e\xb8\x86\x5a\xc6\x47\xe6\xea\xa7\x8d\x59\xe0\x65\x7e\x58\xdf\x87\x90\xc8\x01\x1f\x78\x63\x7b\x0e\xf4\x67\xc3\x7b\x9e\x80\x7b\xa0\xe7\x4e\x40\xcf\x16\x5e\x3e\xbe\x85\x4c\xa0\x0e\x90\xa6\xa7\x6c\x78\x53\x7e\x59\x41\xf6\x1d\x24\xfb\x2d\x9c\x73\x02\x11\x5b\x77\xd3\x19\xb0\xcd\x65\xff\xb1\x9f\x78\x09\xc9\x7f\x97\xd6\xda\xdc\xdc\x24\x60\x9f\xd8\xd1\x4c\x48\xe1\xd8\xc8\xf0\x52\x98\xb8\x02\x31\x5a\x95\xa8\xdd\x40\x7d\x3c\x04\x87\x05\x34\x25\x85\xad\x39\x41\xeb\xb9\x4f\x06\x98\xfa\xef\x28\x67\x8b\x22\x56\xfa\x82\xda\x74\x99\x88\x13\x3c\x91\xc5\xfd\x4a\x42\x42\x7b\x38\xa7\x95\x8b\x8c\x9d\x6c\x5c\xf3\x12\xf2\x1b\xa0\xf7\xc3\xc9\x06\x00\xf8\xb4\xce\x40\xd7\xfe\xef\x9f\xda\xd1\xe5\x8b\x78\xb7\xa8\x83\x5c\xcd\x27\x88\xed\x57\x3a\x97\x89\x64\x15\x24\x20\xc6\x03\x08\xd4\x97\x78\x10\x9e\xf3\x73\xc1\xa4\xc8\xa4\x20\x1b\xd7\x44\xb6\xb9\xb6\xc0\x5b\x45\xdd\x34\x57\x1f\x19\x7b\x2c\x32\x4f\x17\x6d\xfe\x4b\xa8\x79\xe6\xc1\x8d\x42\x92\xc5\xc9\x98\x43\x42\x0f\x32\xb3\x75\x55\x50\x78\x51\xf3\x14\x13\x4d\x68\xf6\x37\x00\xa7\x2d\xa5\xb7\xa0\xea\xf6\xd6\x96\x8b\x36\xf4\xe8\xb9\x42\x81\x99\xec\x12\xec\x34\x0e\x7e\x9f\x37\xed\x52\xdf\x03\xaf\xd9\x31\x8a\x39\xdf\x36\xf7\x83\x52\x0e\x1b\x6f\xd4\x31\x6c\xa1\xda\xef\x05\x4b\x24\xcb\x72\x4b\x4b\xe8\xdc\xc7\x06\x60\x37\xcd\x1c\x09\xd4\x9e\xbf\x3d\xf4\x42\xd9\xdd\xd3\xd2\x5a\x6d\xe0\x9e\x39\x6b\x60\x47\xb8\xda\x98\xd5\x97\x75\x68\xd6\xea\x97\x75\xff\x63\x82\x78\x2b\x9b\xc2\x75\x4d\x16\x6f\x19\xd6\xf4\x5e\x2c\xdb\x74\x54\xce\x3b\xc4\xb5\x74\xde\x5f\xf2\xf8\x7a\xc7\x7f\x7e\x51\x25\xfa\x35\xb5\xba\x2e\xf2\x69\xc9\x8b\xd9\x75\x1f\xca\xef\xdc\xd7\x76\xad\xaf\xed\x96\xbe\xb6\xef\xd4\xd7\x98\x17\xa8\x1a\xb8\xa6\x65\x58\xd6\xd0\x1f\x7d\xb9\xa3\xad\x55\x55\x05\x1d\x62\x51\xd3\xf8\xe0\xc3\x9d\xba\x9b\xf9\x94\x9c\x35\x91\x71\x76\x37\x1a\xce\x7c\xc6\x98\x35\x71\xc5\xec\x6e\x2c\x31\x7b\xec\x77\xf1\xb8\xa9\x8b\xc7\x77\xeb\xe2\x89\xdf\xc5\x93\xa6\x2e\x9e\xdc\xad\x8b\xa7\x7e\x17\x4f\x9b\xba\x78\x7a\xb7\x2e\xbe\xf6\xbb\xf8\xba\xa9\x8b\xaf\xef\xd4\x85\x5c\x8c\xaa\xa4\x4a\x85\xcf\x58\xa6\xb4\xa1\x43\xf3\xed\x5e\xfa\xdd\x69\xec\xb7\x89\xe9\xcc\xb7\x3b\xf5\x9b\x5f\x88\xb2\x16\x27\x53\x17\x36\xf4\xaa\x3f\xdd\x6d\xb0\xe5\x3b\x1d\x7b\x4d\xfd\xc1\xf8\x58\x9d\x6f\x92\x51\x0a\xcf\x2b\xe4\x2e\x54\x52\x2a\x7e\x4b\x0c\x68\xb5\xae\x8d\xa2\x36\x47\xdc\x0e\x2d\x11\xb7\x97\x18\x40\xdf\x7e\x33\x01\xbf\x93\xdd\x93\x8d\x54\x4c\xfc\x18\x9a\xf0\xe1\x35\x3c\x3c\xda\x77\x7c\x71\x55\xed\xa9\xf2\x1b\x5b\x46\xb5\xf6\xdb\x10\x35\x11\xfd\x66\xa0\xbc\xa5\xef\xfb\x09\x23\xba\x7b\xb2\x01\x2f\xa8\xf5\xce\x0f\x70\x0a\x1a\xfb\x86\x26\xf7\xd0\xb5\x89\x8d\x13\x76\xfe\xbf\xb4\xd3\x4e\x63\xf7\xd4\xec\x0e\x08\xa0\x1b\x61\x3d\x14\x77\x96\x63\x60\xe2\x5f\xdb\xd9\xac\xe7\x62\xf4\xce\x7e\x16\x69\x9a\x14\x32\x91\x8e\xf5\xec\x2c\xa9\x20\x34\xbe\xb8\x8f\x88\xcb\x53\x08\x44\xf8\x03\x98\xfa\xd5\x11\x77\xbf\xd6\x34\x2d\x5d\x1c\x6d\xf5\x1f\x3f\x15\xf3\x3b\x20\x51\xf0\x92\x83\x30\xa9\x63\x60\x3e\xb5\x76\xbf\xfd\xf5\xed\x3b\xd6\x76\x78\x49\x36\x13\x65\x52\xd5\x0d\xee\xf7\xf1\xc3\xd0\xbd\x1b\x47\x63\x70\x6a\x72\x87\x51\x2f\x33\x36\x6e\x71\x53\x18\xdf\x9b\x49\x62\x2b\x36\xcd\xa6\xb9\xad\xde\x07\x8d\x18\xdd\xd2\xc6\xb0\x15\x27\xb5\x26\xde\xb7\x51\xe9\xc8\x7e\x5c\x85\x97\x82\xa3\xc9\x75\x3f\x58\x1d\xb6\x53\xeb\xc8\xfd\xbc\x16\x66\xf2\xee\xee\x1a\x1a\x37\x78\xb9\xa9\xe3\x04\x49\x46\x57\xe1\x02\x6d\xef\x38\x73\x94\xde\x01\x96\x56\x4d\x97\xa0\x8f\xfb\x19\x2a\x14\x06\x1b\x9b\x13\x02\x1b\xdd\x29\xd0\xbe\xee\x7f\x94\xe6\xe3\xf3\xa6\xee\x7f\x50\x1f\x1a\x7b\x87\x26\x5e\xe0\x56\x27\x98\x29\xdd\x46\xfc\x0d\x35\x97\x37\x14\x72\x83\x2e\x53\xd5\x69\x23\x9a\x6d\xa3\xb0\x56\xe7\x82\x68\xb6\x43\x3f\x1e\xab\x1f\x8f\xe9\xc7\x13\xf5\xe3\x09\xfd\x78\xaa\x7e\x3c\xa5\x1f\x5f\xab\x1f\x5f\xe3\x0f\x47\xc5\xac\x95\xed\x38\x65\x74\x5a\x8c\x0a\xfb\x73\x07\x7e\x5a\xac\x8f\x8c\xba\xb6\xbe\x69\x89\x6d\xb3\x3a\x1c\xab\x1f\x00\xd5\x8f\x7d\x1a\x84\x3d\xad\x19\x58\xa0\x1c\x0d\x22\x9e\xde\x3c\xd8\xe9\x17\x37\x5e\x81\xdb\x69\x9e\xb6\x1a\xaf\xac\x13\x47\xd5\x44\x0a\x05\x5e\x73\x82\x90\xc2\xef\x30\x3b\x8a\x1b\x80\x94\x0a\x56\x60\x14\x02\xa2\x62\x77\x1f\x37\x9d\xba\x85\xa6\x41\x50\xb3\xb1\xfd\x92\x58\x8a\x8d\x30\xe9\x1b\x6a\x41\xa6\x7b\xfc\x69\x2a\x99\xaf\x41\xed\x25\x9d\x05\x10\xa8\xd4\x68\x0c\xa6\x27\x53\x62\xfd\x20\x9c\x3a\xf5\x66\x4b\xba\xac\x83\xba\x5f\x73\x23\x58\xca\x4b\xcc\x8c\xfc\x62\x2b\x7d\xbc\x4e\xa9\x38\xec\xdb\xd6\x6e\x81\xe2\x62\xd2\x2c\xe6\x42\xbc\xc2\x9e\x6e\x1a\x35\x73\x9d\xf0\x98\xc6\x20\x2a\x88\x94\x49\xac\x8e\x3f\x5c\xbe\xc3\x12\x64\x0e\xfc\xdb\xcc\x5a\x60\x3d\xe5\xfc\xa0\x91\x04\x16\x55\x6e\xd8\x63\xbb\xbc\x3f\x7d\x62\x1d\xcb\x2e\xcf\x95\xa4\x65\xc3\x80\xca\xe6\x3d\x55\xd5\x6e\x24\xa6\x7d\x71\x85\x54\x66\xb2\xe0\x59\xf4\x45\x82\xfe\xb5\x47\xed\xb4\x2f\xa0\x5f\xe1\x9b\x2a\x89\x62\x27\x4e\xa1\x46\xb2\x47\x12\x92\x2a\x92\xdc\xf1\x02\x1a\xae\xf3\x56\x4a\xab\xda\x79\x96\xa5\x45\xec\x0b\x1e\xe7\xbb\x27\x51\x9c\x85\xeb\x54\xb1\x8b\x92\x36\x9c\xd6\xd1\x18\xb6\x6b\x40\x12\xbe\x00\x92\x5a\xd8\x2e\x19\xab\x61\xbe\x06\x40\xf4\xcd\x79\xd4\xbd\xaf\x40\x8b\x76\x47\x5e\x16\x6e\xf1\x90\x0c\x56\x95\x4e\xb9\x89\x04\xa1\xc8\x25\x8d\x2f\x6f\x1c\x8f\xbf\xf5\xf7\x1b\x4d\xc0\x1e\xdd\x48\x78\x31\xb8\xf0\xac\xde\xb3\xa7\xe6\xff\x84\x14\xfc\x37\x7a\x74\xd5\x4c\xdf\x63\x2e\x17\x34\x3e\xc5\xf6\x58\xe4\x1c\xcf\xf4\xcf\x43\xf7\x3b\x1c\x28\xda\x19\xe4\x8b\xc7\x4e\x34\x7c\x83\x9e\x2b\x3a\x8a\x9e\xa6\xee\x99\x2f\xb9\xcf\x60\x33\xfd\xed\xc2\x2e\xbe\xc8\xb3\xaa\xcc\x29\x57\xbe\x16\x3d\x0a\x88\x83\x81\x39\x9b\x2c\x9d\x2a\x3c\xb7\xf4\xcc\xf1\x69\x75\xd0\x41\x35\x55\x4e\xbc\x41\x4e\x3e\x9f\x74\xc3\xe2\xd2\xc0\xbf\x09\x5a\x11\x35\xb0\xb5\x97\x2c\xaf\x20\x1e\x4d\x8f\x8d\x16\x15\xe4\xcc\x13\x3c\xc6\x4f\x55\xb9\x50\x82\x54\xe8\xa8\x85\xd0\x48\xdf\x93\x31\x7d\x0d\x46\x28\x51\x3f\x6f\x73\xb0\x09\xe1\x55\x50\xdb\x04\x2c\x9b\xf1\xa2\x10\x19\x82\x04\xea\xb0\x5c\x1b\x3d\x6f\xe2\xef\x54\x5c\x88\xd4\x38\x67\x12\xdc\x8e\xc2\x5a\xb3\x54\x26\x44\x2c\x15\xbb\x11\x89\x30\xd3\x6e\x92\x31\x48\x0c\xa8\x3e\xe8\x7e\xbb\x2e\xc1\xf4\x9d\xdf\x6d\x49\xb5\x6a\x42\x9c\x8b\xb1\x15\x5d\xec\x81\x5c\x44\xfe\x42\x61\x61\x2f\xef\x49\x76\xae\xf9\xa2\xaf\x4e\xb6\x78\xa4\xc5\xb3\x2c\x1e\x62\xf1\xf4\x8a\xc7\x51\x16\x99\x43\xab\xfb\x03\x5a\xa0\x6e\x4b\x7f\x40\x09\x3d\x2f\x42\x19\xbc\xfc\xa9\xbf\xf4\x73\x02\xb4\x87\xfb\x7d\x57\x0c\xad\x94\x22\x73\x5e\x90\x83\x1a\xa9\x36\x60\x8e\x5a\xe5\x8c\xb3\x92\x67\x53\x30\x0f\x89\x93\xc9\x44\x80\x5b\xb7\x27\x3c\x60\xe5\x6a\x99\xe1\x27\x75\x34\xa3\x02\x67\x8f\x3f\xce\xbe\xfe\xd3\x59\xdf\xce\xe0\x75\xbe\x60\x97\x89\x9c\xa9\x8f\xe3\x19\xf4\x42\x82\x18\xd5\x63\xa8\xa0\x98\x52\x1b\xcc\x5e\xe7\x8b\x92\xe5\x97\x7a\x42\xd9\x5e\x5a\x89\x32\x83\x60\x2c\xe9\xb5\xad\xbe\x40\xf1\xce\xce\xcc\xf0\xea\xc2\xc9\x17\x5e\xf5\x6d\xea\xae\x36\x15\x56\xe7\x40\x7b\x0a\xfb\xdb\xb3\xa5\xf8\xa2\xd6\x10\x77\xb3\xd4\xf8\x67\xb3\xa5\xf8\x95\x4d\x78\x2c\x6e\x16\x94\xe9\x07\x58\x1e\x3f\x70\xe9\xd8\x5f\xd8\xb2\x7f\x0d\x43\x0d\x2f\xbc\x5b\xdb\xd3\xff\x0d\x92\xb0\x9a\x80\x64\x5f\x3f\x71\x0e\xf6\x94\x4a\x38\xfa\xba\xb8\x62\xdb\x5f\x7b\xe1\x18\x00\xc8\x01\x8f\x93\x85\xd4\x77\x9e\x72\xc6\x0b\xd1\x77\xbf\xf4\xd6\xbe\x41\x6e\x74\x90\xa6\x71\x99\x12\x49\x87\xb6\xce\x71\x64\xfd\xe7\x36\x01\x36\x8a\xc2\xab\x4d\x39\xe3\x31\x46\x13\x46\x3c\xa2\xd3\x9e\xeb\x42\x10\x2f\x4a\xde\x06\x5b\x7f\xeb\xcb\x99\x71\xc5\x05\xf3\x5c\xfd\x67\xf4\x60\x38\x53\x02\xd5\x77\xef\x53\xa3\x78\x29\xc6\xb9\x06\x8c\xf9\xe8\x1b\x5d\xfd\x28\x86\x80\xe2\xd8\xce\x12\x52\x04\x64\xe2\xc0\x47\x7d\xe8\xfa\x1d\xfa\x12\x76\x1d\xf0\x83\x01\x3b\x10\x52\x54\x70\x2e\xc9\x17\xe3\x19\x8b\xc5\x45\x32\x56\xd2\x27\xa9\x58\x9c\x0b\x99\x45\x15\xe3\x71\xcc\x64\x21\xc6\xc9\x24\x51\x00\x6c\x73\x1d\x78\xaa\x03\xf0\x87\x4c\x61\xdf\xf5\x47\xb8\x5e\xf8\x1e\xe6\xf9\x41\x2a\x6a\xfd\x3e\x4e\x24\x1f\xa5\x22\xbe\x35\x38\x33\x09\xce\x1c\xb4\x40\x6d\xe4\x30\x22\x9d\x6e\x61\xc0\xd1\x75\x74\x77\xf5\x65\xb8\x2c\x78\x66\xf7\x34\xb5\x0f\x29\x95\x8b\x22\x76\xd2\x51\xcb\xae\xcd\x54\x89\xd2\x95\x81\x43\x06\x03\xf6\x2a\x93\x8b\x52\xd0\x79\xa4\x2c\xc5\xb8\x22\x55\x48\xa9\xec\xc9\xbb\x43\x76\xc8\x27\xbc\x4c\x4e\x1a\x2e\xf3\xe9\x04\xe1\xdd\x0a\xeb\x7c\x9a\xb5\xaf\xb5\x74\x6a\x77\x7f\x69\xb3\x66\x06\x8a\x69\xbd\xc7\x00\x55\xe0\xda\x0f\x78\xf2\xe3\xdb\x9b\xc4\x69\x59\xdd\xeb\xea\x18\x43\xd5\xfa\x6f\x59\xee\xab\xdf\x8a\xe5\xbe\xce\x6a\xf6\xc0\xfd\x0b\xaf\xe6\x70\xbd\xdc\xff\xbc\x35\x3f\x90\x56\x37\x79\xed\xf3\xdf\x47\xef\x61\xf6\x02\x80\xff\x99\x3f\xb2\x64\x5a\x54\xea\x24\xe1\x67\x9c\xd4\x85\x8d\xab\xfe\xa9\xd2\x1a\x9e\xd6\xb5\x86\x21\x3b\xd9\xd8\x2e\xae\x98\xcc\xd3\x24\x66\x8e\xc7\xe5\xaa\xb0\x93\x51\x39\x1d\xf1\xce\x56\x8f\xd1\xff\xfa\x3b\x8f\xbb\x11\x1b\x52\xf9\xce\xd3\xa7\x3d\x66\xff\x0f\xbf\x76\x57\xef\x1c\x37\x41\x2a\xd8\x50\x7e\x30\x33\xd1\xfd\x52\xb4\x5e\x2d\xe7\x74\xe5\xbb\xc8\xba\xe5\x34\x58\x29\xe2\xb6\xfa\x4f\xbb\xab\xf4\xa4\x9b\x90\xd9\x0b\xfd\x79\x43\x55\xea\x3f\xc2\xf7\x26\x0c\xd5\x2c\x80\x75\xf5\xbb\x0a\xe1\x1b\xb3\x55\x28\x7b\xef\x9b\xb1\x82\x80\xb0\x37\x64\xad\x7f\xc3\x9d\xe1\x8b\x8a\xc7\xfb\x15\x8a\x3a\xd0\x76\x1c\x98\xe2\x50\xe9\x2a\x16\x85\x10\xc1\x59\x55\x72\x59\x1d\x89\xab\x10\xf3\x69\x29\xae\x8f\x1f\x6f\x6d\x9d\x36\x45\x25\x6c\x8c\xfd\x66\x5a\xf4\xdc\x43\x36\x1c\x3f\x9d\x03\x71\x9c\x5f\xca\xe3\x9d\xd3\x9b\xaa\x25\xf5\xae\xfa\x7b\xdb\x5b\x5e\x5c\x9a\xb6\xce\x9e\x9c\xfe\xd6\x4c\xb7\xc6\xb0\x6f\x42\xcf\xbb\x1f\x27\xd7\xdc\xb3\x57\xad\x87\x49\x3e\x5e\xc8\xbf\x25\x60\x38\x1d\xae\x89\x96\x21\x7f\x7d\xda\x04\x69\xa8\x50\xb8\x58\x17\xc6\xb7\x8d\x30\xee\x70\xec\x5d\x87\x6b\xb6\x4e\x97\xc9\xc2\x1b\x12\xf4\xde\x97\xfb\x6a\x25\xc8\xd4\xbe\xa1\x16\x34\x76\x44\xc2\xba\x2b\xff\x2e\xa7\xc5\x66\x48\x31\x2f\xcf\xff\xd1\x5b\xc5\x2a\x3b\x58\x76\xef\x4a\x49\xfb\x0c\xb7\xd9\xcd\x52\xfd\x5b\xa8\x25\xb7\x99\xe7\xbb\x9d\x2c\xdb\x60\xfd\xf3\xcd\x75\x93\x85\xf1\x7d\xcd\x36\x09\x89\x57\xa9\xb8\x80\xfb\xd1\xba\x51\x7a\x58\x63\xe8\xdf\x5a\x93\xb4\x0a\x6e\x55\xdb\x34\xc1\xa0\xfe\xed\xc5\x7a\x7b\xfb\x55\xc2\x7c\x49\xcf\x6d\x0a\x56\x5b\xdb\x06\xb2\xbf\x97\x62\x11\xe7\x9b\x60\x01\x11\x12\xdf\x79\xd7\x08\xe7\x01\x9d\xa4\xd5\x67\x96\x48\x76\x2e\xae\x47\x39\x2f\x63\x06\xa4\x10\xb1\x9d\x0c\x97\x36\x61\x60\xf8\x65\x5d\xb7\xcd\x7b\xdc\x3a\xdf\xf1\x2d\xe3\xce\xdf\x83\x97\x41\x70\x3c\xd1\xaa\xf2\x78\x51\x2a\x35\x19\x7e\xde\xe1\xa6\x52\x26\xbf\x08\x25\xc2\xe6\x3c\x4d\x8d\x60\x5b\x71\x69\x7a\x98\xfc\x22\x0e\x55\x83\xc6\x7b\x94\x27\xc5\x15\xf3\xae\x51\x26\x79\x56\x61\xa4\xec\xda\xcb\x4f\x71\x75\x94\x1f\x88\x79\x67\xfb\xf1\xfa\x51\x62\xdb\x86\x90\xf2\x72\x2a\x6e\x32\x84\xd7\xaa\x41\xe3\x10\xbe\x2d\xae\xd8\xf6\xf6\x4d\xc7\xf0\xf4\xee\x63\x68\x9b\x86\xa5\xb7\x59\xcb\xa7\xe3\x71\x71\xc5\xbe\xfb\x27\x9a\x8e\x95\x43\x69\x9f\x96\x6f\x8a\x2b\xb6\xf3\xcf\x34\x2d\x2b\xce\x78\xab\xd7\x89\x1f\x34\xfe\x1f\x3c\x33\x6b\x8c\x66\xf9\x92\xd9\xd9\xf9\x07\xce\x8d\xe3\x19\xea\x90\xfd\x1e\xc8\xe4\x03\xd6\x14\xb8\x0d\xe0\xc9\x22\x4d\xe1\xdd\xba\xbe\xcd\x98\x4f\x6d\xcf\x71\x6b\xd3\x09\x92\xa6\xee\x8f\xf3\xcc\xed\x5a\x2e\xb0\x92\x33\x16\x5d\xad\xc5\x09\x27\xd8\x7b\xd0\x08\x89\x3c\x38\xbf\x0d\x8a\xd1\x9f\x75\xf3\x89\xab\x3c\x24\xe3\x3c\x33\xfc\xef\x6b\x10\x5e\xa3\x9d\x9b\x6b\x6d\x22\x8b\x57\x8f\x8f\x2a\xdd\x62\x74\xce\x38\x5c\x4c\xbf\xbd\xd1\xe8\x34\xac\x5b\x0c\x2f\x69\x19\x1b\x2e\xd7\x56\xae\xf7\x50\x72\xa3\x11\x3f\x60\x7f\x62\x0f\x87\x93\xa4\x94\xd5\x26\xbc\x01\xfb\xf8\xda\x65\xba\xfd\xed\x17\x42\x56\xe9\xfc\x8b\x79\x23\xb6\x6f\xe0\xd3\xad\xd0\xdd\xd9\xfa\x42\xe8\xd6\x17\xbe\xc6\x36\x14\x7f\x37\x40\xb6\xc6\x08\x27\x81\x73\x19\xaa\xc3\xeb\xbb\x68\x61\xfd\x96\xa8\xbf\xf4\xd4\x6f\xbd\x91\xa8\xe0\x9f\xd0\xb5\x8a\xcc\xd1\x5a\x5d\xab\x4c\xe1\x6a\x0f\x2b\xb7\x4e\xbd\x99\xef\x6c\x83\x36\x87\x6e\xa7\xed\xfe\x5a\x70\x00\x70\x1d\xb6\xfc\x7b\x2a\xa7\x46\xad\xcd\x12\x7f\xa2\x1a\x1c\xbf\x9c\x4e\x98\x61\xb7\xe6\xe0\x19\x76\x6f\x3e\xd4\xd0\x30\x90\x56\x23\x43\x55\x5b\x50\xfa\x51\x1d\xb7\x0e\x6a\x28\x51\x71\x51\xa4\x22\x44\xca\xf9\x54\x43\xcb\x40\x5b\x8d\x16\x55\x35\xd0\x49\xb8\x53\xc6\x51\x44\x86\xca\x1c\xf5\xc3\x9e\x0d\x5f\xd4\xb8\xb9\xf1\x6b\x38\x6c\xb3\x29\xdb\x66\xba\xc4\x76\xe3\xd4\xa9\x37\x5b\x32\xb4\x3a\x28\xfa\xa0\xa4\x90\xe9\x50\xfd\x30\x15\xe8\x8b\x57\xcf\xe3\x6a\x14\xb4\x0e\x57\xfb\xcd\xf5\x96\xef\xd1\xcd\x94\x86\x78\xe0\x8b\x36\xd5\xaa\xd0\x7c\x1d\x2b\xd0\x17\xaf\xde\xf2\xd5\xe5\x35\xbf\x5f\xb7\x39\x75\x9a\xbb\xa7\xe0\xdc\x24\x24\xef\xe8\x99\x86\xb6\x5b\xee\x2f\xb3\x34\xbd\x52\x67\x6d\x60\x39\x71\x30\xfe\x68\x64\x50\xfa\xa4\x39\x07\x7f\xaa\x39\xa6\xbf\xf4\x54\xe2\x4f\x70\x24\x58\x12\x33\xdc\x6a\x8a\xbb\x01\x6f\x3c\x78\xb0\x4e\x00\x4f\x59\xf0\x6c\x8d\x08\x9e\x96\xc1\x1c\x27\x2a\xbd\xa3\x36\x7a\x51\xa9\x11\x99\xa0\xae\x3d\x1f\x37\x1b\xd7\x5c\xab\x81\xbb\x9e\x38\xb8\x57\xd4\xb5\x4c\xb9\x25\xe2\x0e\x5e\xdd\x1b\xb9\xf7\xd9\xab\xb1\xdb\x86\x34\x76\x7c\xf7\xac\xc7\x9f\xdd\x7e\xad\x87\xdc\x73\xe3\x4a\xe7\x5e\x47\xb1\xa1\xeb\xf3\x67\xb6\x68\xcf\x0f\xce\x52\x80\x3a\xeb\x2e\x75\xff\x03\x71\x05\xe0\xb4\x94\x7a\xf0\xc0\x0d\xb7\x5a\x03\xa7\x18\x17\x29\xdd\x04\x98\x48\xed\x4e\x8d\x5c\x31\x2d\xe8\xde\xe7\xef\x95\x8e\x2b\x61\x6d\x83\xb5\x1b\x7b\xbd\x56\xdc\x73\x24\xbf\xf3\xd9\x14\xea\x87\x59\xc7\x81\x28\x54\x31\xec\xd5\x62\xa0\x0a\x4c\xac\x64\x18\xb2\xaf\x5a\x77\xd9\x46\x11\x11\x70\x85\x5b\xa7\xd7\xdc\x22\xf4\x54\xa4\x9f\x4a\x7a\x0c\x8d\x33\x92\x13\x05\xfa\x8e\xcb\x0b\xf1\x02\xd3\xd3\x70\x7d\xf7\x8c\xe2\x6a\xd6\xce\x6d\x5c\x25\x71\xf5\xfc\x27\xdc\xed\xfd\x87\xbb\x6d\xf0\xea\xc4\xad\xfe\x5f\xdf\xa5\xf3\xdf\xce\x8f\x53\x0b\xed\x35\xfc\x38\xff\x71\xee\x99\xbf\x81\x8f\x65\xe0\x65\x47\xcf\x4a\xe0\x67\x37\x12\x46\xf2\xba\xf8\x58\xb9\xbc\xbe\x03\x5f\x96\xab\x81\xd2\xa6\x92\x48\xa0\x58\x03\x4c\xe7\xd9\xf0\x66\xce\x81\xc1\x23\x18\x2b\xf1\x4c\xb5\xc6\x30\x7e\x74\x37\x93\x9b\x75\x4a\x9d\x88\xc9\x04\x2d\xfe\x1b\xfb\xa2\xa6\xff\xcf\xff\xf9\x7f\xfd\xbf\xff\xf7\xff\xc1\x48\xbf\x66\x5c\x37\x76\x43\x09\xab\x95\xad\x18\x44\x71\xd2\x10\xc6\xb1\x79\x81\x9b\x11\x1b\x5d\x6b\xbf\xb4\x3e\xfb\x41\x30\xb9\xd0\x2b\x0f\xbc\x2f\x93\xe9\x0c\x53\xca\xb9\xce\x99\xa3\x6b\x90\x11\xd7\x0a\xa2\x14\x05\x57\x42\x57\x0b\x0f\xf0\xfa\x04\xf7\xb9\xc6\x2d\xef\xac\x81\x4e\x6b\x92\x88\x36\x39\x56\xa4\x7c\x2c\x62\xc6\x27\x95\x28\x7d\xf7\x0a\x07\xb4\xb9\x84\x5c\x21\x09\xeb\xb2\xa6\x65\x6f\x5f\x29\x77\x96\x70\x7b\xa5\x44\xca\xa2\x80\x72\xa5\xa6\x90\x0b\x47\x3e\x61\x49\x25\xcd\x35\x7f\xe9\xe2\xef\xdc\x4a\xaf\x20\x8b\x92\x17\x1f\x0e\x5e\xab\xd9\x4a\x93\xec\x5c\xfd\xab\x23\x49\x3b\x2f\xb9\xe3\x34\x19\x9f\x1b\xce\x51\xc8\x52\x52\x96\x1e\xe3\x19\x3b\xe3\x67\x66\x72\x35\xb3\x81\xe4\xe1\xb2\x51\xf0\x00\x8a\x33\x50\x5b\xd6\x92\xc7\xa0\x81\x36\x6d\x5b\xec\x0c\xae\x53\xcf\x14\x8a\xe2\x7f\x16\xc9\x05\x4f\x85\x4d\x0b\x16\x83\x14\xa6\x41\x10\x0b\xbb\x18\x48\xb8\xe0\xab\x0b\x60\xb8\x46\x54\x82\x96\xf4\x5d\x25\x72\xe1\xba\xb8\x41\xdc\x06\x5c\x35\x12\x93\x5c\xfb\xdb\x34\xb0\x95\x73\x77\x7f\x63\xc6\x42\xb5\x2e\xc0\x56\xfd\xd9\x39\x6e\x0a\xe3\xad\x3d\x73\x4b\x21\x45\x45\x6e\xbd\x73\xf4\xc5\xad\x11\xbd\x35\x32\x7b\x43\x08\xf2\x55\xee\xc6\xe6\xd5\x09\xdc\x82\xe9\x75\x50\x47\x18\xb8\x87\x70\xe1\xa8\x23\xa2\x5b\x2b\xfe\xfd\x9f\xf0\xe0\x37\x74\x69\xfd\x47\xc6\xfb\x9e\xa4\xe2\x6a\xc8\xa2\x6d\xb6\xcd\xfc\x94\xae\x3f\x89\xd1\x79\x62\x82\x68\x1e\x8e\xcb\x3c\x4d\xf1\x81\x12\xac\x95\x3c\xaf\xb6\xbd\x38\x06\xe7\xb5\x79\xae\xfa\x5a\xcc\x99\xd4\xd5\xfb\xe6\xf6\x88\x00\xfd\x57\x2d\x77\x6c\xf0\xf2\xf9\xc4\x7d\xf9\x8c\x1e\xb4\x3f\x09\x0c\x06\x2c\x4e\x78\x9a\x4f\x81\xd0\x6a\xab\x04\xe7\x72\x5b\x81\x00\x43\x3a\xfd\xdb\x3c\x71\x34\xd8\xb6\x5c\x24\xb1\x28\x65\x93\x6d\x0b\x7e\x69\x7c\xd0\xdd\xfe\xba\x36\x2e\x34\x40\x01\xcc\xd6\x31\xaf\x26\xf0\xdd\xa0\xbd\x0e\x24\x71\x13\x10\x27\xcd\x6f\x26\x2f\x81\x92\xe4\x2e\xb8\xfe\xd3\x89\xd7\xec\x8b\xe7\x4d\xd4\x54\x76\xae\xcd\xb1\xc0\xb9\x2c\x37\x35\x6a\x6d\x96\x5e\x8e\x07\x70\xee\x29\x11\xa1\x86\xeb\x5c\x17\xfe\x16\x89\xb8\xf0\x8e\xca\x8c\xdc\xbb\x73\xc1\xb2\xfb\x8e\xa9\xe4\xf1\xc1\x7f\xee\x0b\x7e\x93\xfb\x82\x7f\xa3\x28\x50\xf7\x7c\x65\xf0\x52\xc7\xff\x99\x09\x56\xe5\x05\x66\xa7\xc1\x10\x30\x7a\x01\xf8\xc7\x16\x2d\xbc\x7d\xd5\xfc\xae\x9a\x91\xb7\x28\x50\x41\xf2\x8a\xfe\xa3\x27\xdd\x83\x9e\x44\x61\xdb\x6e\xa0\x02\x79\x0a\x90\x35\x65\x51\x8a\x90\xde\xa0\x3d\xdf\x7a\x1d\xae\x0d\x3f\x99\x6d\x5d\x5b\xb1\xd4\x3c\xed\x15\xa0\x4d\x91\xc5\xba\x05\x69\x58\x5b\x6c\x0b\x35\x2c\x94\xb5\x9a\x67\x6f\x68\x4f\x7d\x58\xf0\x71\x92\x4d\x77\x7f\x85\x1d\xcc\xaa\x20\x12\xcb\xcd\xb8\xc0\x9e\x62\x98\xe5\x55\xc7\x55\xa0\x3c\x03\x71\xcf\x24\xc7\x55\x0b\x42\xad\x60\x6f\x8c\x02\xf3\x86\x5a\x01\x35\x5b\x1a\xf6\xd6\x1f\x55\xf8\x1c\x4e\xc5\xe1\x53\xb8\xad\xdd\x02\x65\xf5\x33\x78\x08\xf9\x3e\x94\x94\x1b\xe8\x0c\x3e\x16\xcb\x5f\x49\xff\x01\x9a\xc3\x57\x01\x41\x1d\x05\x82\xf8\xec\xcb\xe8\x0f\xc4\x31\xff\xd1\x1f\xfe\xa3\x3f\xfc\x43\xf5\x87\xe0\xea\x8f\x93\xfc\x8b\x73\x08\xbd\x87\x31\xe5\xe2\x18\xd8\x80\xa7\x0d\x51\xe5\xfc\xe5\xf3\x65\xd4\x0a\x5a\x2b\xae\x5a\x41\x45\xae\x5a\xd1\xbe\x75\x2b\x21\xbc\x90\xe2\x55\x36\xe3\xd9\x58\xc4\xaf\xf0\x66\x7a\x17\xd8\x3c\x9f\xb0\xcb\x24\x8b\xf3\x4b\x7c\x65\x36\x09\x9f\x23\xf6\x1c\x81\xf5\x17\x52\xbc\xe6\xd7\xf9\xa2\xa2\x76\x43\x5b\x8e\x25\xcf\x4e\x32\xa4\xe7\x43\x36\xab\xaa\x42\x0e\x07\x83\x69\x52\xcd\x16\xa3\xfe\x38\x9f\x0f\x26\x7c\x2c\x46\x79\x7e\x3e\x00\x74\x06\x89\x94\x0b\x21\x07\xdb\x4f\xb6\xbe\xfb\xee\x77\xf0\x63\x9c\xcf\x95\x2c\xdb\x7c\xf2\x64\x6b\x6b\xfb\xf1\xb7\xdf\xed\x28\x48\x00\xed\xfb\x82\x97\x7c\xce\x7e\xd5\x9b\xcd\x67\x36\x51\xb3\xa7\x08\x5f\xa3\xa5\xd9\x90\x14\x5a\x17\x22\xab\x5e\xf0\x34\x1d\xf1\xf1\x79\x67\x92\x39\x7b\x51\x29\x26\x6c\xd7\x0e\x00\xb6\xb2\x0c\xcd\x0c\x6a\x14\xb2\x9b\x5c\xa7\xeb\xe4\xf8\xed\x93\x0f\x09\xdb\x65\x93\x0c\x5a\x7e\xf6\xec\x14\x0c\x70\x8b\x41\x13\x1c\xa8\xdb\xd9\xea\xb9\x20\xbb\x7d\xb8\x9b\xef\x20\xc3\xf4\x18\x2f\xa7\x0b\x08\xb3\x88\x1d\x7c\xee\xb1\x63\xd8\x22\x3e\xdb\x59\xe7\x65\xc9\xaf\x69\xff\xf9\x4b\x9e\x5a\x3d\xb0\x3f\xa8\x7d\x72\x15\xbd\xa4\x12\xa5\x62\xdc\xa3\x7c\x4f\x55\xb3\xad\x82\x0f\x6e\x9b\x45\x46\x2f\x70\x22\xde\x6f\x6b\xde\x5e\xc7\x85\x94\xe5\x99\xfe\x7a\x58\x94\x82\xc7\x16\x40\xed\x13\xb4\x6b\x9b\xed\x8f\x55\xfe\x22\xcf\xe4\x62\xae\xea\x43\x37\x1d\x5e\x96\xfe\xdd\x59\x8d\x0e\x58\xe5\xd3\xa7\x90\x08\xa6\xbc\x7d\x10\xa6\x4a\x0d\xcd\x4e\xd3\xc4\xbc\x4e\xce\xeb\x24\x0a\xbf\x2c\x1f\x60\x0b\xf6\x30\xc0\x64\xc2\x3a\x00\xa2\x9f\x48\x8b\x5e\xd7\x1b\xb8\xd3\x11\x7c\x25\x2c\x5b\xfb\x0b\x69\xa2\x7e\x3b\xdd\x91\xcc\x38\xbc\x9e\x8f\xf2\x94\x36\x78\x23\x34\x4e\x36\x94\xfe\x80\xdf\xfa\x00\xa8\x82\xa0\x90\xec\x1d\x88\x6e\x84\x65\xd0\x43\xcc\x15\x59\xf0\xc3\x2a\xcc\x1a\x48\x8e\x78\x55\xb3\x32\xbf\x64\x99\xb8\x84\x3d\x1c\x52\x76\x74\x4e\x36\xf6\xb3\x0b\x9e\x26\x31\xe3\x55\x25\xe6\x05\xdc\xa4\x4b\xe4\xb5\x2c\xcf\x36\xf5\x30\x4d\xc8\xca\xfe\xc9\x49\xb6\xef\xc4\x28\x1d\x09\xc3\x1e\x3d\x68\x01\xd4\x64\xb8\x09\x49\x36\x5f\x48\xbd\x3d\xb0\xe3\x60\xc4\xa7\x9d\x2e\x9b\x8b\x6a\x96\xc7\x7d\xcc\x2e\xbf\x74\x58\x5a\x73\xa3\xc1\x98\xd3\xe1\x2e\x51\xad\xcf\xa5\x4c\xa6\x99\x62\x3a\x2b\x48\x2a\x5e\x4e\x45\x65\xc4\x89\xda\x49\x3b\x4a\xbe\x25\x6c\x97\x6d\x3f\x63\x09\xfb\xa3\x15\x1e\xfd\x54\x64\xd3\x6a\xf6\x8c\x25\x8f\x1e\x05\x79\xfc\x65\xbe\x28\xc7\x4a\xd1\x35\x95\x8f\x93\x53\x27\x6f\xbf\x81\x7b\x2e\xae\xd5\x3c\x62\x7d\x2f\x61\xbf\x62\x0a\x42\xb4\x28\xf3\x2a\x57\x0c\xd2\x9f\x71\xf9\xee\x32\x23\x7d\xf8\xba\x3f\xe6\x69\xda\xc1\xb6\x3d\x05\xaa\xdb\xf5\x7d\x57\x71\x34\xc7\xe7\xe2\xfa\x94\xed\x52\x27\xf0\xeb\x99\xad\x55\x73\x54\xd5\x58\x12\x37\x21\x8c\x67\xfa\xb2\xd3\x59\xff\x9a\xa2\x24\x5c\xab\x59\x22\x03\xd1\xea\x2c\xdb\x5f\xd9\x0b\x63\x4d\x33\x4e\xf3\x4c\xab\xda\x3d\x96\xc8\xbf\x29\x7e\xd2\x8f\x4e\x9f\xc3\x5d\x56\xef\x81\x7f\x4e\x2e\x44\xc6\xce\x54\x37\x7d\xdf\x8e\xfc\xac\x67\x56\x66\x46\x8c\xa4\x23\x9e\x02\x81\x21\x18\x6a\x92\xc2\x4b\x9f\xbf\x03\x3e\xfc\x6c\xad\xd3\x1b\x21\x63\x6d\xfd\x58\x80\xb0\x3f\x33\x9d\x85\x20\x9f\x78\xf0\xc3\x3d\xd4\xb0\xd5\x54\x54\x30\x7a\x6a\xd7\xb1\x86\x45\x73\x5e\xfc\xe8\xee\xa3\x0a\x6d\x38\x01\x99\xb6\x58\x82\x4d\xc2\x6d\x0e\x5a\x2b\xd1\xf0\xff\x91\xf7\xb5\xdb\x6d\xdc\xc8\x82\xaf\x02\x7b\xe6\x9a\x64\x42\x91\xb2\x67\x73\x67\x2f\x1d\x27\xe3\xd8\xf1\xc4\x1b\x2b\xf6\xb1\xe5\xf5\xf8\x48\x3a\x56\x93\x0d\x8a\x18\x35\x1b\x9c\x46\xb7\x24\x26\xd6\x33\xec\xff\xfd\xb5\x8f\xb1\xcf\xb3\x2f\xb0\xaf\xb0\x07\x55\x05\xa0\x80\x6e\x52\xb4\xe2\xcc\xe4\x9e\xcd\x8f\x58\x6c\x00\x85\xaf\x42\xa1\xaa\x50\x1f\xf1\x1a\xba\xca\xdf\x62\x05\xf7\x73\x82\xa3\x8c\xb6\x12\xef\x6e\x63\x4f\x8e\x3f\x17\x14\x27\xb2\x6c\x8a\x02\xef\x47\x8b\x8a\x6e\xc8\x03\xbf\x8f\xa3\x65\xb6\x62\x33\x09\x67\x68\x96\x0e\x73\x46\xb7\xb9\x15\x74\xbf\xcf\x66\x0b\x76\x71\xc7\xd3\x1a\x8f\x81\xbb\xb7\x0c\xe3\x32\x5b\x05\x90\xf8\x6a\x4f\x41\x9a\x8d\xa6\x48\xcb\x0b\x89\xc7\xc7\x78\xfe\xb8\xb1\x82\x87\x2e\xa5\xeb\xdd\xce\xeb\x08\xb7\x9e\xce\x40\xb4\x9a\x1d\x4c\x06\xb6\xb1\xa8\x1b\x10\xef\xdd\x42\x96\x62\xad\x9b\x5e\x85\x3c\xab\xdd\x78\xbb\x6a\x4b\x7d\x61\xff\xf6\x08\x64\xf4\xd2\x8e\x7b\x6d\x49\x5c\x96\xe7\x76\x28\x54\x4d\xe6\xf6\x90\xd7\x0b\x09\xf0\x8c\x95\x81\x2b\x59\x5a\x82\xb8\xca\x8c\x19\x89\x77\x52\x5c\xd2\xa3\xa4\x59\xe8\x4b\xf1\xc5\x54\xd7\x8b\x2f\x84\x51\xe5\x4c\x8a\x4b\x56\xa8\x96\x4d\x51\x67\xa5\xd4\x8d\x29\xd6\x00\x2c\x2b\xd5\xd2\x4a\x4c\x2e\x70\xb4\xed\xc8\x4a\x49\xba\xa9\x47\xe2\x70\xa1\x4c\x58\xc5\x3a\x3b\xb7\x62\x85\x58\x55\xf2\x42\xe9\xc6\x08\xf0\x9c\x07\x14\x36\x04\x2b\x17\x19\xd0\x7b\x56\x02\x5f\x97\xb2\x3a\xc3\xc0\xcd\x4b\xb4\x66\x50\xb5\x11\x53\x69\x6a\x71\xd6\x48\x63\x82\x38\x04\xe1\x18\x01\x18\x10\x7c\x55\x9e\x8d\xc4\xf3\x92\x5e\xf9\xeb\xa6\x82\xe9\xd8\x35\xb2\x47\xc4\x48\x5c\x33\x6a\xdd\xd4\xaa\x50\xa0\x72\x03\x47\xfa\x2f\x90\xe3\x3b\x68\x8a\x5a\x01\xce\xd9\x15\x00\x4b\x24\xb0\x3f\x92\x99\x59\x63\xf4\x6e\x4b\x4c\x4b\x7d\x49\x3c\xba\xaa\x8d\x2c\xe6\xe0\xfc\x6f\x45\x0d\x00\x94\x2b\x3b\x2c\x08\xc3\x7d\x21\x9d\xf9\x52\x39\x93\x2b\x2f\xc8\x35\xa5\x5d\x21\x3d\x87\xc5\x71\x18\x0e\x53\x2f\xe5\x55\xed\x3e\xe0\xf6\x69\x3b\x07\xb5\x5c\x39\xcd\x52\x0d\xf8\xd9\x26\x2e\x8e\x5a\x58\x90\xf8\x3f\x8f\x2a\x99\x21\x84\x23\x41\x19\xda\x9d\xc2\x04\x0e\x7d\x54\x55\x4e\x32\x46\x29\x09\x19\x80\xd5\x48\xbb\x33\x3b\x5c\xfc\xdf\x6f\xd1\x59\x4a\x08\x33\x38\x81\x46\x52\x78\x4f\x7a\x27\x37\x22\x2b\x0a\x44\x1e\x55\x8a\x53\x3b\x75\x74\xef\x74\x9f\x01\x98\x2d\xb2\x03\x3d\x05\x94\x15\x95\xcc\x8c\x2e\x81\x75\x00\xd4\x19\x6d\xa4\xa6\x80\x8c\x7c\x7c\xa6\x6f\xbb\x18\xc2\xb4\x89\x96\xc0\x72\x3f\xc2\x7f\x3e\x7e\x14\xbf\x5c\xc3\x21\x87\x75\x79\x84\xff\xb8\xaf\xc7\x60\x59\x12\x08\x35\x24\x3e\x7f\xa6\xab\x1f\xe5\xba\x6f\xaf\xd4\x84\x96\xd1\x85\x0d\x20\xbe\x85\x7f\xf0\x7a\x9d\x40\x5f\xe1\x72\xbd\xb6\xc4\xec\x99\x15\xec\xb3\xd9\x02\x5a\xe9\x39\xcd\x17\x25\xe2\x42\x99\x70\xc6\x6a\x6d\xc9\x9b\xac\xea\x60\x6c\x91\xd5\xd4\x17\xe9\x34\x88\xc6\x4d\x2d\x3f\x08\x8d\xed\xd0\x1d\x09\xb7\x70\x7f\x94\x6b\xf3\x4a\x96\x39\xaa\xf5\x36\xd1\x72\x5b\x7b\x85\xb5\x6c\x03\xf1\x48\x1c\x39\xc6\xc4\x33\x25\x76\x26\x3f\xe2\x3c\xed\x9f\x7e\x09\xec\x3d\xc0\xca\xd8\x72\xfb\xd2\x00\x99\xb8\xa3\x88\x23\x49\x86\x79\x44\xc0\x2c\x61\x66\x2d\x19\x73\xd2\x31\xd2\x98\x59\x11\xb2\x30\x92\x3d\x18\xb3\xfe\x57\x8d\x59\xb8\xe1\x0e\x1e\xc6\xca\x59\xb7\x12\xca\xaf\xc9\x8c\xe1\x93\x78\xc4\x50\xc3\x2d\x0a\x8d\xbd\x35\x71\x3b\xed\x74\x5e\xf4\xfb\x84\x4d\x1e\xe0\x58\x2e\x72\x1f\xb9\xc8\x4d\x4d\x36\x30\x95\xd1\xc6\xfd\x44\x43\x79\xb4\x11\x0a\x72\x9b\xae\x29\x9f\xdb\xd1\x96\x26\x76\x1f\x92\x13\x10\xf7\x38\x68\xad\xbf\x63\x16\xbb\xba\xe8\x00\x57\x72\x38\x78\x44\x54\x99\x15\xc5\x7a\x08\x51\x5a\xe8\x4a\x37\xe2\x72\xa1\x66\x0b\x91\xab\x1c\xe2\xb7\xac\x56\x32\xab\xdc\xc9\xc8\xca\xb5\x3b\x84\x78\x9c\xdc\x39\x48\x57\xb8\x8d\x8b\xf1\xa2\x46\x43\x66\x95\xb7\x2e\x04\x55\xa0\x09\x44\xec\x30\x87\x87\x0c\xc4\x71\xc9\x09\x8b\xe5\xda\x91\xf1\x18\x82\xe2\x12\xff\x6f\x62\x99\x1a\x3e\x1d\xd9\xff\x9f\x88\x3b\x8f\x84\x3d\xb7\xe2\xdb\xe8\x2b\x71\x71\x23\xf6\xcd\xf5\xd6\xc1\x76\x3e\xc7\xa4\x1c\x11\x35\x27\x1d\xba\x2e\xbf\xbf\x52\xb5\xcc\xe3\x01\xa4\xa4\x3f\xf1\xd8\x14\x9b\x58\x37\xb7\x08\x8c\xb5\x77\x93\xf5\x48\xec\x7a\x9c\xf8\xbf\x46\x53\x55\xe6\x40\x9d\xc8\xda\x3e\x98\x67\xa8\x72\x22\xea\xaa\x09\x6f\x03\x88\x06\x93\x74\x29\x7b\xf8\xbd\xe7\x96\x93\xb9\xe5\x41\x72\xe1\xb4\xba\x4b\x1c\x94\xd6\xbe\x52\x75\x47\xe5\x2b\x30\x54\xc6\xba\x84\xf2\x8c\x6d\xbc\xee\x5c\xf3\x9f\x1c\xc7\xe0\xd6\xb0\x84\x60\xca\xb0\xe8\x9e\xbd\x70\x09\xcb\xd2\x6d\x70\xa4\xe6\x49\x4c\x8f\xd2\x6d\xf1\x20\xfd\xd6\x0c\x62\x52\x86\xfe\xb6\x1b\xae\xca\x78\x04\x69\x77\x08\x89\x2e\x10\x7b\x1c\x03\xf3\xdf\xc1\xc1\xf3\x3b\xd2\xf7\x2e\x1e\xf9\x51\x70\x79\xd3\xd2\xca\x3b\x9d\xb2\x8a\x53\x5e\x3c\x0c\x80\x16\x99\x79\x85\xb7\x78\xff\x3c\x5c\x46\xed\x81\xfa\xda\x3f\xe1\xed\xde\x67\x57\xf4\xa6\xda\x1e\x12\xf1\x08\xbc\x1e\x1f\x30\xdc\x11\xe6\x85\xcc\x2e\x70\x1b\x92\xb1\xfb\xa6\x03\x2b\x84\xdd\xf1\x3f\x49\x8a\x54\xe5\x43\x4b\xe2\x54\x2d\x97\x60\x73\x2c\x2f\x45\x1f\xd0\xcf\x8e\xc6\x51\x4e\xbb\x26\x6e\xf0\xf7\xee\x89\xfe\x1d\x37\xef\x8f\x1f\x43\xd7\x5c\xb0\x1f\x8f\x2d\x9f\x65\x74\x21\x47\x85\x3e\xeb\xf7\x1c\xc4\x1e\xaa\x00\xfc\x73\x1b\x5f\x7f\xbb\x1f\xdb\x4e\xe6\x27\x9e\xcd\x8e\xd3\x79\xc3\x09\xf2\xf8\xca\x81\xdc\x70\x42\x43\x1b\x7f\xeb\xf8\x7b\x1c\xef\x7d\xc0\x27\xb6\x78\x6e\xe9\xec\x66\x84\xb5\x8b\x96\xce\x6d\x86\x2e\x72\xd1\xb7\x83\xc3\xbd\xe8\x5e\xda\x02\x21\xfc\xba\x95\xb5\x4b\x05\x2f\xa8\xdb\x66\xd1\x3d\x89\x8d\xe8\xd6\x31\xa7\x45\x06\xc1\xce\x30\xeb\x4b\xce\x52\x41\x08\x53\x67\x35\xfa\x30\xf8\x39\xae\xd6\x60\x4c\x88\x8c\x68\x66\x6a\x5e\x1d\x70\xf7\xe1\xa6\x25\x69\x4a\xea\xe1\x9f\x8e\x6e\xed\xd3\xf5\xaf\x42\xbe\xb6\xda\xc0\xcd\x3e\xd6\x79\x6d\x7a\xc5\x7e\xa1\xb5\x4b\x9f\x72\x1b\xbb\x12\x68\xfe\xf9\xb2\xd2\x7c\xc8\x8c\x95\x3c\x0e\x17\xca\x10\xb7\xa0\x7e\x96\xf9\x0e\xb0\x3a\xdb\x45\x90\xc9\xd5\x67\xe7\x09\x47\xf5\x39\xa4\x9d\xac\x63\xb6\x99\xd7\x04\x41\xf7\xaf\x95\x6e\x56\x60\x69\x72\xe5\x2a\x8f\xc6\xdd\xc5\x51\xaa\x9c\xe4\x06\x1e\x6e\xe0\xae\x86\x5d\x1c\x40\x48\xb1\x43\x29\x70\x78\x61\x0f\x24\x0d\x7b\xd3\x5c\x58\x7e\x93\x29\xa8\xe9\x77\xa4\xa0\xd6\xd3\xbf\xc7\x0c\x1b\xbf\xa7\x6d\x21\xa8\xe5\xd8\xf5\x9c\x72\x68\x7a\xfa\xf7\xa3\xf3\x13\xc6\xc3\xf8\xee\x49\x85\x0e\x58\xef\xac\x06\x98\x37\x54\x2f\x57\x17\x68\x8f\x03\xd8\xfe\x2c\x9b\xd5\xba\x5a\x4f\xc2\xd8\xf8\xe7\x0d\xdc\x61\xd0\x3f\x62\xc7\x4e\xc5\x76\xb8\x90\xe2\xf4\xeb\x64\x17\xbe\x39\x8d\xb2\x69\x95\xd9\x19\xa8\xaf\x48\x37\xc5\x28\x96\xaf\x85\x8a\x85\x3e\x87\xf4\x0d\x05\x96\xfa\xfa\xc9\x9b\x37\xfc\xeb\x00\xb5\x0e\x56\x90\x1e\x89\x17\xea\x5c\x06\x2f\x9d\x00\x19\xc0\x05\xe8\xc3\xce\x31\x2a\x18\x94\xa5\xb1\x62\x99\xcd\x16\xaa\x44\x27\x39\x18\x30\x38\xa0\x2d\xa4\x58\x6a\x8b\xed\xe5\x99\x57\xb3\x35\xa5\xfb\x64\xe7\x12\xba\x20\xb2\xac\x96\x4c\x9f\xf4\x44\x97\x46\xe5\x44\xad\xe5\x55\xb6\x5c\x15\x12\x5f\xfa\x47\xe2\xb1\x01\xea\x8f\xc6\x17\x4e\xd7\xa8\x2b\xd2\x3f\x92\xe9\xc0\xa1\xce\xf5\x0b\x65\x6a\xaf\x81\x3c\x55\x25\xe6\xef\x02\xe5\xa9\x3e\x3b\x2b\x64\x0e\x86\x55\xcb\xac\x56\x33\x2b\x8f\x89\x29\x9a\xfe\x75\x4c\x38\x0c\x2c\x64\xbd\xeb\x5a\x17\xaf\x82\x23\xb7\x1a\x90\xdc\x50\x5d\x69\x37\xcd\x25\x3f\xbc\x03\xa0\xbe\xbf\xca\x40\x41\xf7\x61\xa1\x2f\x3f\xd0\xbe\xe0\xbd\x46\x0a\x4e\x03\x7e\x6c\x2b\x1f\x3a\xa7\x04\x8b\xc3\x26\x2b\x36\x6e\x17\xa9\x3f\x97\x32\x2b\x8d\x4f\x64\xb6\x54\x57\xa8\xd0\xcc\xea\xd9\x22\x8c\xc6\x88\x6c\x56\x69\x63\x58\x42\x36\x54\xb1\x88\x2f\x70\x7d\x83\x36\x0a\x92\x98\xc7\x93\x4d\xad\xba\xc2\xe9\xfb\x00\x34\xe9\x8f\x3e\x41\xae\x7b\x8b\x8a\x08\x5d\x3f\x01\x37\x14\xad\x66\xa9\x9e\x2a\x69\xe1\x44\xba\x19\xd2\xad\x88\x1f\xff\x50\x2f\x94\xf1\x4f\x4f\xf0\x4b\x3c\x6a\xf5\x80\x4f\x49\xf8\x84\x93\x02\xfb\xf8\x51\x44\x30\x90\xdd\x2e\xf3\x42\xe2\xcd\x6d\xc1\xc1\xdb\x09\xff\x88\xd7\x79\xf7\xdd\xd2\x87\xea\x83\x01\x70\xc7\xf4\x9d\xa9\xd1\x17\xba\x29\x50\x57\x38\x95\xc2\x71\xb7\x43\x91\x4b\x2b\x83\x83\xf1\x4d\x49\xc2\xa0\x13\xfd\x69\x5e\x23\x3c\x85\x8f\x78\xf4\x4a\x98\x03\x08\xf2\x91\xe3\x83\x32\x07\x74\xfe\x90\x8f\xf5\x97\xbc\xe7\x10\xf8\x64\x26\xd1\xaf\x10\x6d\x45\x55\xa6\x7e\x0d\x8a\x7c\x0e\xe5\xfa\x61\x44\xf4\xdc\x06\x44\x8a\xa7\x0f\xf0\xa6\x27\x1e\xa5\x3b\x19\xde\xfa\x68\xb9\xb1\x62\x08\x2f\xf4\x54\xe5\x30\x72\xfe\x44\xd4\x2a\x0c\xf6\x10\xb0\x2c\x40\x6a\x60\x9f\xec\x20\x1f\xb2\x12\x23\xeb\x37\x76\xcd\xfa\x9f\xb6\x62\x31\x3b\x1b\xcb\xc5\x1b\xc6\xfd\x4e\x15\xc5\x5b\x24\x7a\x9d\x43\x67\xe5\x1b\x47\x0f\xdd\x46\xbd\xa4\xab\x77\x26\xeb\xa7\xb2\x52\x17\x32\x87\x69\x3d\xab\xf4\xd2\x5d\x67\x5c\x42\xef\xac\xc3\xc5\xf4\x0f\xc1\xd2\x32\x11\x18\x59\xee\x72\x30\x30\x49\x43\x59\x89\xd6\xd1\xb0\xd5\x3a\xd1\x27\x42\x20\x57\x93\x7d\x8a\xd1\xe8\x97\x94\xd3\x9e\x44\xcd\xbf\xdd\xa4\xed\x61\xb3\xe2\xa3\x18\x88\xc9\xa7\xeb\x2a\x22\x00\xdd\xc7\x80\xa1\xc6\x75\xd0\xf2\x95\x3a\x07\xb7\xdb\x53\x6f\xd2\x70\x8a\x1e\x99\x8d\x91\x95\x4b\x46\x99\x8b\x53\x5b\xef\xb5\x9c\xe3\xe5\x64\x5b\xc7\xd8\x94\x2c\x6d\x78\x1f\x64\xdf\x1d\x27\x6f\x41\xc5\x8a\x09\x0a\x51\xbb\x5d\xb1\xd2\xf1\x08\x3c\x60\xda\x0b\xff\x98\x68\xd9\x87\x0e\x88\x4c\x8f\x91\x36\x42\xa0\x89\xba\xc7\x6f\x68\x52\xdc\x87\xe1\x3f\x4c\xb4\xac\x60\x28\xc2\xce\x04\x03\x12\x1f\xe7\x70\x03\x01\x49\x6c\x29\x92\x99\x8a\x28\x4a\x86\x08\xb5\xa3\x89\x87\x76\xb9\x2c\x64\x1d\x5c\x40\xd9\xbb\x2a\x53\x35\xa7\xc8\x1a\x23\xec\x2c\xbc\xa3\xd1\x7f\xd7\x0f\x37\x88\x57\xf1\xc6\x57\xee\x8c\xf8\x89\xe1\x97\x7e\xfb\xaa\xfb\xe3\x8a\x0e\x7c\xd8\x49\x76\xe2\x78\x1e\x7d\x56\xbd\x23\x7c\x5b\xcc\xe6\xa6\xd5\x59\x11\x6b\xe1\xba\xde\x2a\xf8\xf5\x19\x20\xf4\x7e\x8a\x83\x36\x71\xd8\xcc\x74\x99\x36\x8e\x91\x67\x37\x47\xda\x34\x56\xf2\x30\x51\xc7\xe1\x4e\xa3\x38\xd1\xe7\x6d\xbc\x5e\xcf\xbf\xe5\x53\xc7\x6e\x33\x68\xd3\x71\xd6\x78\xe9\x76\x95\xc0\x2d\xdd\x59\x70\xa5\xea\xe8\x2c\x3c\x89\x42\xe0\xc1\xbb\x54\xc0\x96\x5d\xcd\xb3\xbb\xc5\xb5\xd1\x2b\xa4\x23\xd5\x30\x46\x77\xb8\xc9\xf8\xf2\x84\xcb\x5e\xa4\x67\x3c\xb5\x7e\xf9\x8c\x43\xd9\x38\x90\xeb\x1d\xa2\xd8\xf8\x65\x0b\xec\x99\x1b\xf9\xa0\xcb\x36\x27\x19\x96\x95\xf3\xfa\x08\x37\x61\x2a\x3b\xf8\x0f\x6f\x37\xbe\xbb\xed\x39\x79\x90\x38\xe3\xdf\x2e\x71\x00\x0f\xac\x95\x95\x4e\xbf\xce\xd5\xc5\x37\xa7\x51\x94\x85\xf7\xc4\x9f\xfb\xa4\xc5\xca\xa5\xc0\xf6\x49\xd2\xa7\x6b\xba\x28\x2c\xe1\xce\x36\xa5\x22\x76\x59\x90\x1b\x23\x49\x21\x70\x71\xff\xdf\xbf\x04\x9e\xff\x12\xf8\xca\xc2\xca\x7a\xb5\x16\x19\x18\x83\x66\x90\x92\x12\xee\x02\x37\x2c\xb2\xa4\x20\x70\x3e\x61\x72\x66\xf0\x35\xdb\x77\xfb\xe8\x17\x8b\xbd\xd7\xa7\x24\x67\x60\x98\x8d\x79\x53\xb8\x90\xf1\x1e\x70\xae\x2e\xdc\x5c\x74\x75\x6e\x30\xe7\xf2\xcc\x98\x8e\x94\xd7\x5d\xc1\x47\x46\x59\xb9\x6e\xa7\xd2\x76\x62\x70\x22\xeb\x72\x61\x15\x24\x33\x2b\x17\x3a\x09\x0f\xc4\x3e\x32\x0e\xa1\x30\x06\x6b\x82\x57\xc8\xec\x42\x8e\x36\x89\x7c\x18\x00\x41\x95\x60\x59\xe5\x52\x29\xb4\x74\x86\x43\x61\x34\x81\xab\xe4\x52\x2e\xa7\x68\xf0\x47\xc6\x81\x60\x3b\x52\x2f\x2a\xdd\x9c\x2d\xec\x12\xd9\x85\xb5\x83\xf3\xcb\x94\xf6\x6d\x25\x77\x87\x04\x20\x9b\xdb\x65\x3b\xfd\xfa\x59\x96\x4b\xbb\x4b\x28\x07\xc7\x61\x3f\xde\x2d\x54\x21\x93\xf0\x34\x82\x64\x40\xb4\x13\x59\x36\x45\xad\xac\xfc\x7c\x1a\x3a\x3a\xb5\x02\xf3\x69\xa4\x1f\x38\x25\x80\xe1\xdd\xcb\xe8\xa5\xb4\x62\x39\x8a\x92\xcb\x6c\xed\x8d\x72\xc8\x58\xd1\xa8\xf2\xac\x90\x91\x5a\x02\x1e\x18\xec\xd0\x1d\x34\x72\x1e\x80\x8d\x81\x54\xdd\x04\x62\xca\xdb\x49\xda\x9f\x12\x8c\x86\x2e\xc9\xf8\xc8\x9d\x0c\xe5\x10\xb3\x2f\x47\x67\x23\x51\xe9\xa6\x86\x74\x17\x4b\xd0\x8e\xc8\x7a\x36\x1a\xa0\xc1\x4d\x56\x8b\x59\x66\xa4\x47\x60\x7f\xb2\xa4\x38\x3d\x97\x6b\x92\xff\xf5\x9c\xc0\xc5\x8a\x0f\x1a\x7b\x66\xe2\xae\x8d\x9b\xc2\x10\x17\x19\xd0\x62\x96\x35\xc6\x85\x47\x39\x4d\x50\xe7\x14\xe4\xf5\x00\xd6\xc7\x90\xf0\x53\x9c\x66\xb3\x73\xa1\x6e\x17\xb2\xe9\xb1\x1d\xce\x85\x2c\x95\x2c\x67\x92\xd2\xab\xdb\x79\x4b\x30\x23\x31\x76\x5b\xc9\x8d\xc0\xb8\x47\xe4\x20\xf1\x13\x0c\x8b\x14\x56\xd4\x0c\xf9\x68\x83\x56\x03\x31\x7d\x8d\xc8\xe9\xa6\xab\x9d\xd3\x46\x56\x7a\xfa\x05\xa6\x54\x04\x50\x97\x5c\x39\xe1\xaf\xdf\x43\x96\x2c\x99\xcd\xd5\x3d\x6a\xde\x94\x39\xff\x13\x66\x0a\x77\xf1\xef\x6e\xa2\xa4\x6e\xff\x9c\xf3\xbc\x52\xf5\xef\x6f\x9a\xf0\x0e\x71\xc3\x2c\xdf\x13\x05\x29\x25\xea\xe8\xc0\x7e\x56\x80\xca\x5a\x5d\x48\xf2\x81\x02\xa3\xa0\x2c\x1c\x44\x05\x94\x8c\x5e\xac\xdc\x65\xe7\x6e\x1e\x74\xbb\x2a\x8a\xb5\xc8\x75\x09\xf1\x8b\x1a\x03\x77\x1a\x7f\x86\x39\x15\x0b\x7d\x29\x2f\x64\x45\xc6\x88\x48\x1f\xf4\x5c\x64\xa5\x83\xcb\xc9\x5e\x14\xde\x68\x91\x19\x91\x15\x96\x90\xaf\xc5\x54\xca\xd2\xeb\x1a\xc1\x44\x4e\xd7\x22\x9b\x59\x56\x01\xa2\x27\x79\x87\xa5\xd2\x34\x4b\x1f\xc2\x27\xbe\x9e\x73\xed\x67\x4f\x2e\x5f\xf1\x54\xe1\x3e\x0a\x6a\x3b\x92\x10\xe1\xda\x67\x5c\xaa\x23\xd3\xb5\x86\x6b\x44\xd8\xc9\xad\x05\x09\x80\xf2\x82\x22\xfe\xe8\x52\x9a\x70\x19\xd2\x9b\x5e\x3c\x2a\x88\xec\x25\x9e\x91\x70\x81\x9c\x30\xf9\xe3\xd0\xe2\x0d\xc4\xde\x37\xd1\x87\x94\x60\x79\x7d\x78\xd8\x7c\x2b\xac\xa0\xa7\x12\x98\x13\xa5\xac\x56\xa2\x6f\xe7\x3f\xdb\x8e\x0b\x29\x43\xb7\xcd\xf2\xbd\x5b\xe9\x66\x64\x31\x67\x0e\x07\x60\x25\x19\xdc\x3c\x99\xce\xc5\x19\xfd\xbf\x96\xa0\x0a\x9d\x79\xcb\x7f\x38\x34\xf4\xce\x08\x48\xa0\x08\xbc\x91\xb9\xd8\x13\xa6\x59\x81\x44\xc6\x6b\xcc\xb2\x02\xe2\xcf\x76\x19\xcc\xd8\x11\xc4\x0f\x66\xbf\xb5\x97\x74\xea\xc3\x14\x7c\xa5\xf1\x59\x26\x2d\xdf\xdd\xc9\xeb\xd1\x66\x27\xaf\xb6\x7b\x17\x77\xfb\x62\x8f\x20\xe4\x70\x27\xf6\x84\xb2\xc4\xb2\xb4\xe4\x86\x3b\xfd\xa1\xfe\xd9\x6f\x33\x86\x08\xeb\x73\x23\xa2\x5d\x62\x85\x90\x13\xef\xaa\x29\x0c\x2a\x4b\xb1\x1a\xfd\x0e\x11\x65\x7c\x79\xda\x60\x8b\x67\x70\x0a\x04\xa3\xae\xfd\xcd\x77\x42\xbf\x93\xf2\xf7\x49\xf9\xfb\xa4\xfc\x0d\x0f\x41\x1d\x3e\x31\x4b\xa1\x28\x84\xb4\x6a\xc5\x8e\x76\x4a\x15\x5f\xc5\x7d\x08\x7e\xc7\xa1\x46\xab\x4d\x34\x5f\xee\x71\x76\x1d\x26\xde\x02\x68\x59\x45\xcb\xe2\xf8\x88\xd5\xf8\x9b\x59\xdd\x93\x06\xbe\x31\xf2\x0d\x69\xad\x3d\x7e\x90\x0e\xc7\xae\x6d\xd0\xb2\x15\xde\x08\x25\x69\xc9\xd3\x0f\x1a\x59\xbf\xd8\x58\xef\xfe\x09\x37\xfa\x87\x75\xe4\xa1\xc8\x63\x7f\x66\x0c\xed\x2a\xe2\xdf\x3e\x74\xab\x43\x06\xe6\xd5\x8c\x35\x5e\x61\x41\x30\x46\xa2\xfd\x8a\x42\x0d\xf8\x64\x22\xad\xcd\x5c\x48\xcc\x54\xd1\x2a\xa8\xf5\x6a\x22\xf6\xfa\x0c\x21\xc6\xe2\xc1\x40\x7c\x29\x62\x94\x29\x30\x8d\xc7\xc6\x7a\x7f\x73\xa2\x32\x53\x8e\x6c\x5c\x03\xba\x47\xdc\xc2\xb3\xb9\x42\x09\x2d\x74\xe7\x62\x40\x85\xd6\x5a\x24\xea\xcb\x96\x47\xa5\xd7\x0d\xc2\xc3\x08\x05\xaa\xa7\xf0\x8d\xc0\xd8\x80\xb6\x74\x2e\x65\x0e\xc4\x0b\x25\x00\x88\x62\x67\x19\xa3\x55\x25\x8d\x19\x90\x79\xba\x93\x2c\x90\xb5\x48\xe3\x10\x2e\xd4\xd9\x42\x9a\x5a\xac\x2a\xa5\x2b\x48\x89\x77\xbc\xab\xa3\x26\x9a\x70\x61\x14\xe9\xc8\x08\x05\x48\xf5\x5e\xe0\xf5\xf7\xce\xec\x3d\xf5\x07\x9c\x53\x1b\x3f\xfb\x75\xd5\x48\x9c\xe8\xd6\x96\x32\x0f\x3a\x48\xbb\x86\x74\x90\x9e\xdb\x05\x34\xb2\x3e\xc4\x9f\xfd\x48\xc1\xee\x2a\x05\x73\x55\xba\x71\x3a\xe6\x03\x8a\xbe\x42\x66\x95\x83\xe4\x3b\x60\xc6\xae\x1b\x94\x43\x9e\xde\x7b\x2f\xd2\x78\x18\xb8\x4c\x7e\x38\x27\x9f\x16\x76\x7b\x5b\xe0\xe2\xe4\xf4\x12\xf6\xc3\x36\x4f\xa2\x23\x47\x03\xfb\x75\x51\x92\xa3\x53\x02\x10\x07\x03\x67\x73\xba\xbb\x8e\x08\xf1\xb9\x23\x30\xc1\xef\xd3\x1f\x7e\xa4\xcc\x6b\xf9\x8f\x46\x55\x40\xd5\x8f\xbb\x5c\xe3\xe1\xa6\xb6\x75\x9d\xb9\x4c\xc2\xa4\xb1\x6e\xd4\xcd\x31\x56\x3f\x1d\x68\x30\xa2\x8a\x79\xce\x1d\x23\xa9\x12\xdd\x32\x43\xcb\xcb\xd0\xb3\xbf\x15\x75\x66\x59\xed\xf4\x31\x49\x9c\x57\x7c\x5f\x25\x89\x81\x22\xc2\xb0\xf1\x10\xc0\x1b\x67\xfa\x54\x65\x4b\x69\x85\x54\x72\xbe\xc1\xf1\x70\x48\x81\x7e\x47\x4a\x80\x66\x39\x95\x55\x0b\xdc\x0f\xba\x52\x3f\xeb\xb2\xce\x0a\xb1\xd2\xa4\x68\x88\x20\x0b\x0c\x3f\xd3\xee\xe0\x6f\x3b\x40\xff\xef\xb2\x02\x9b\x88\x4f\x85\xfd\x7e\x07\xd8\x20\xc2\xe6\xb2\xc8\xd6\xac\x39\x51\x8b\x76\x73\x86\x91\xdb\xe3\x1f\xe0\x49\xfb\x7c\x91\x91\x5a\xbe\xe0\x3b\xc0\x69\xb5\xf9\xcf\x16\x6b\xe9\x97\x96\x95\x47\xe4\x99\xda\xba\xaf\x3e\x6f\x98\x26\x67\xd2\x86\x38\xe6\x8c\xc7\xf0\xa7\x93\x4a\x9e\xbe\x7d\xfd\xf8\xf0\xf9\xcb\x9f\xc4\x23\xf1\xd5\x57\xfb\x71\x6c\xa7\xa7\xdf\xbf\x78\xfc\xfe\xc3\xeb\xe7\xaf\x5e\xbd\xf8\x5e\x3c\x12\xff\x75\xff\x5f\x1c\x22\xd3\x85\xae\x9c\x88\xde\x42\xe5\xb9\x2c\x59\xec\x4a\x0d\xe2\x0e\xb0\x42\xa6\x95\xac\xd6\x9d\xba\x89\xe8\x65\x53\xa3\x8b\xa6\x66\x85\x3f\x3f\x2f\x73\x79\x35\x11\x21\xb7\x3b\xf0\x89\xfb\x4c\x80\x00\x76\x72\x9f\x05\x7d\xc4\x70\x8f\xfb\x8c\xaf\x9e\x27\x35\xaa\x5c\x56\xaf\xb3\x5c\x35\x86\x65\x67\x23\x0e\x60\x87\xa4\x5e\x4e\x76\x3b\xc5\xdd\xe2\x3a\x79\x71\x5a\xb9\x6f\x05\x38\x7e\xfa\xd5\xa2\x70\xcf\x61\xbd\x56\xd9\x4c\xd5\x6b\x3e\xb0\xae\x95\xf8\xac\xa3\x22\xee\x7e\xc3\xe0\x42\x62\xdb\xf6\x18\x47\x7f\x0a\x1b\x60\x8f\xc5\x5c\x57\xcb\x89\xe8\x99\x59\x56\xc8\xfe\xfd\x41\xd8\x30\xaf\xae\x9b\x88\xe3\xbb\x7f\x44\x4d\x65\x88\xb6\xe9\x10\x7a\x28\x8e\xef\x2e\x8d\x60\xa9\x36\x28\x67\x23\xd3\xb9\xc9\xcc\xa8\xf2\xcc\xfe\x23\x9f\x97\x2f\x9b\x7a\xf7\xd4\x8d\xbb\x2c\x05\xb1\xee\x1b\x96\xe2\x95\xbb\xe7\x7e\x69\xcd\xeb\x69\x53\xf9\xf9\xa5\x61\x44\xf9\xf0\x73\xaa\x37\x32\x0b\x5d\xd5\xb2\xc2\x29\x1f\xdf\xfd\x5c\xd3\x00\x9e\xad\x35\x7c\xd2\x6b\xb5\x77\xf0\x3e\x8f\x0f\x46\xc1\xdc\xa6\x85\x9e\x9d\x87\xad\x8b\xf2\x3f\x06\x2b\x29\x12\xd8\x92\xcf\xc9\x21\xfa\x2a\x2a\x4b\x13\x6a\xdf\x32\x79\xf0\x0e\x0b\x40\xb2\x46\xf7\x3a\x50\xe1\xf6\x43\x97\x20\xac\xbd\xaf\x7f\x5f\xf8\xca\x25\xcd\xee\x79\xb6\xb1\x75\x2b\x4d\x4d\xe9\x61\x42\x51\xe3\x05\x71\xa2\xef\x83\xaf\xf6\xf7\x61\x05\x76\x5f\x00\xbb\x68\xe2\x01\x34\x53\x25\x44\x04\x93\x11\xfa\x0b\x48\xd0\x7e\x2e\xd7\xf3\x2a\x5b\xba\x67\x0d\x1e\x7b\xaf\xb7\xff\x6f\x71\x30\xe3\x36\xe9\xd9\x67\xa4\x27\xa2\x57\xf7\xbd\x68\x17\xc2\x24\x03\x06\xdf\x00\xf0\xfe\x26\x80\x7f\xf2\x00\xb7\xcc\xe0\x4a\xd5\x5b\x27\x10\x8e\xe3\x4e\xc3\x0b\xdd\xef\xd0\x39\xed\xd4\x27\x2e\xe0\xfd\x41\x57\x32\xf6\xaf\x76\x58\xf9\xd1\x7f\x3c\xe8\x6c\xbb\xe3\x2a\xa7\x33\x3a\x66\xb1\x96\x77\xd6\x97\xa2\x69\xf9\xcb\xa7\x2f\xc5\xc5\x57\x13\x71\x90\x9d\x4b\xb1\xaa\xd4\x45\x56\xcb\xd8\x9a\x57\x37\xb3\x85\x4f\x0b\xb8\x63\x7c\x46\xd6\x68\x6b\x74\x46\x14\x0f\x82\x36\x16\x7e\x86\x98\x88\xf0\x93\xd4\x97\x49\x8b\x2d\x7a\xd6\x14\xca\x3f\x37\xf2\x22\xf6\xbe\x63\xc4\xc5\x9d\x54\x9d\x47\x27\x83\x44\xe7\x6b\x6e\xd4\x73\xbe\xde\x58\x2f\xd2\x73\x96\xde\x57\x3a\x0a\x4e\xb6\x9f\x6a\x28\xfd\x93\x40\x52\x31\x78\xce\x27\x0a\xfd\x4d\xca\xb1\x18\x9c\x8f\x40\xc6\x8c\x9c\x3a\x2b\xf4\x99\xb2\xaa\xb3\x82\x40\x6b\xa9\xc8\x48\x6e\x28\x8e\x68\xb9\x4e\x50\x95\xf6\xd6\xe0\xbd\x31\x57\x05\xc8\xd7\x4d\x2d\x96\xba\x31\x52\xc8\x65\x53\x40\x58\x46\x79\x81\x6e\x06\xa5\x58\xea\xa9\x02\xa9\xdb\x2d\x04\x1c\x27\x55\x9e\x1d\xd8\x16\x4f\xf5\x65\xd9\x8a\xe8\x06\x1a\x69\xe8\xe8\x9d\xa4\xac\x3a\x56\x40\x83\x07\x45\x1f\xe0\x49\x97\xc5\x1a\xc3\x98\x04\x29\xd9\x60\xbe\x1e\x7b\x66\x00\x4f\xd4\xec\xfc\xf8\x2e\x9a\xe2\xe0\x80\x40\x7e\x46\xb8\xb9\x2e\x7b\xb5\x57\x60\xe6\x2c\x0e\x31\x49\xdc\x01\x14\x86\xc8\x0f\x20\x8e\x79\x2e\xc1\x43\x18\x59\xe7\x76\xda\x9e\xdc\xd3\x29\xe8\x43\xb5\x3e\xa7\xa7\x2a\xa1\xcb\x19\x5a\x49\xf8\x30\x29\x4e\x97\xaf\x8c\x80\x07\xd0\xce\x8e\x9e\xe8\xe5\x52\xd5\x9b\xb1\xc7\x19\xef\x41\x56\x93\x5f\x85\x64\xdb\x74\x99\x91\x26\x33\x0c\xce\x63\xa1\xc3\x9e\x38\xec\x1d\x9b\x4b\x7b\x1a\x1d\xd1\xf6\x20\xe4\x88\x89\xed\xa3\xc3\x73\x12\x14\xb6\xde\x93\xa2\xc7\x20\xac\x92\xbe\x06\x45\xef\x41\xbc\xca\xfb\x56\x15\xf7\x24\xc4\x6b\x45\x6f\x42\x42\xcc\xa6\xa1\xc2\x6c\x4a\x13\x0f\x74\x83\x4d\x47\x17\x39\x7d\x6c\x9b\x22\x1e\x9d\x38\x8e\xa6\x23\x22\x1e\x6b\x38\x14\x47\x37\xea\x58\x29\x5d\x1e\xbf\xfb\xce\xe5\x7a\xe2\x48\x94\xdb\x24\x3e\x07\xa7\x9c\x4c\x29\x3a\xd3\x12\x79\x26\x34\x94\x79\x3d\xdc\xc6\x4d\x70\x4a\xe2\x8e\xc5\x9f\x88\x6d\x8b\xce\x9f\x66\xfc\x1d\x3d\x38\xf1\x88\xe5\xfe\x48\xe6\x24\xbe\x7c\x24\xee\x3f\xe4\x32\x54\x07\x79\xa3\x5d\xb2\x68\x49\xf3\x4d\xb1\xf3\x06\xbc\x8c\x30\x12\x88\x02\x8f\xc0\x46\x41\x20\xc4\x37\x62\x5f\xdc\xbb\xc7\x22\xb3\xed\x9f\x80\xc2\xda\x6b\xf3\xc5\xb7\x71\xe1\xc4\x85\x8f\x41\xc0\x7a\xe5\x42\x39\x77\x80\xbe\x1f\x83\xbe\xbf\x0d\xf4\xfd\x16\x68\xc0\xd9\x0e\xa8\x0f\xa2\x76\x0f\x6c\xbb\xf8\xed\x81\xee\x59\x1a\x1a\x7b\xdc\xa5\x2f\x1d\xc7\x91\x3d\xf0\xb6\x9a\x75\xb2\x1e\x49\x2d\x06\xca\x17\x79\x66\xc7\x75\x9b\x30\x2a\x8e\xe1\xe1\x9d\x76\xb1\x3b\x8c\x2d\xfa\xf8\x31\x9d\x03\x1f\x4b\x0b\xbe\x2f\x99\x67\xe7\xee\xe0\xb1\xf1\xb0\xaf\xdc\x0d\x23\xaa\xdb\x0d\x62\xeb\x92\xb0\x9a\x91\xb1\x33\xe0\xe0\xc8\xa7\x24\xee\xc1\x5d\x9c\xeb\xcb\x12\xd2\x8d\xb6\xee\xdb\x0e\x66\x61\x63\x9d\xc8\x1d\x26\x10\xac\x2e\x8f\x81\x74\x14\x70\x77\xc2\x79\xea\xed\xd8\x13\x73\x1b\xba\xe6\xd6\xe8\xd2\x2f\x1a\x5f\xab\x6f\x31\x6c\xc9\x84\x65\xf1\x22\x50\x0c\x57\x2b\xb4\xa2\x90\xbe\x8d\xd3\x20\x9e\xc9\xfa\x3b\xdd\x40\xb0\x95\x27\x85\x92\x65\xfd\xda\xde\x83\x03\xc1\x64\x06\x52\x45\xec\xb7\xb4\x10\x9b\xb5\x7a\x28\xc5\xba\xdb\xcf\xde\xff\x7f\x95\x18\x42\x8e\xe7\xe1\x42\xd2\xc4\x67\x48\x64\xf2\x61\xfa\xe5\x7d\xeb\x8b\xa5\x88\xb1\xd7\x07\x22\xf6\xc7\x8f\x48\x8a\x46\x33\x98\xcd\xdf\x60\x0f\x80\x02\xf1\xcf\xef\xe9\xf3\xc7\x8f\xe2\x4e\x5c\xfd\xde\x3d\xf7\x05\xf6\x2d\xbe\xa4\xfc\x95\x7a\x90\xd5\x8b\x11\x28\x55\xfa\x76\x65\x47\x98\x4d\x6d\x2c\x1e\xa4\x6c\xe5\xfb\x8e\xca\xb8\x7c\xbc\x76\x1a\x57\x09\xa8\x0b\xc6\xf8\x8d\xc6\x62\xf7\x8d\xff\x46\x72\x09\x9f\xd8\xf9\xb2\x17\x19\xcd\x9d\xbc\xa6\xf0\x67\x47\x95\xf7\x71\x95\xf7\xcc\x03\xa5\x73\xb2\x0e\xf0\x1e\x20\xd4\xc8\x6e\xfb\x0d\x33\x76\xfd\x50\x8b\xda\x65\x43\x4e\x0e\x0d\xee\x5e\x6b\xad\x89\xf1\x00\x78\xe6\x1f\x55\xdd\xef\x3f\x10\x5f\xe0\xcf\x95\xbe\x64\x6b\x3f\x44\xb3\x83\xb8\x04\x17\xda\x16\x0d\xc4\x58\xfc\x09\x19\xd1\x67\xba\xc2\x30\x78\x18\x01\x0d\xc3\x65\x7b\x37\x59\x65\xc4\xb4\xd2\xe7\xb2\xb4\x2c\xfb\x01\xb0\xec\xe2\xc9\xa2\xb2\xf5\xc9\xce\x1c\x10\x58\xcd\x61\xd5\x47\x61\xb9\x82\x2c\x02\x63\xfe\x37\xf1\x00\x51\x2c\x7a\xf9\x66\x15\xd8\x0d\xbd\x31\xbc\x16\x5c\xc4\xea\xe7\xb0\x09\xcb\xec\xaa\x0f\x7f\x64\x53\xd3\xef\xb7\x0f\x33\x2e\x36\xe6\x25\x9e\xd8\xbe\xf7\xdc\x36\x0e\x86\xfe\x2f\xf1\x85\x78\x20\xbe\x14\x0f\x1e\xa6\xdd\xbc\xff\xb4\x6e\x7e\x40\x34\x8e\xfa\x79\xef\xfb\x79\xdf\xee\x67\xc3\x96\xfa\x3d\x83\xa9\xa6\x1b\x09\x03\x83\x2d\xf4\x67\xc5\x4a\x13\x80\xff\x22\x97\x17\x6a\x26\x4d\xf0\x4b\x65\xf4\xb7\x75\x7a\xc7\x63\x31\x5b\xc8\xd9\xb9\x0b\x67\x09\xf2\x08\x04\xbc\x2a\x51\x1a\x0f\x84\x5a\xe4\x0d\xd8\x55\x82\xf9\x3a\x7c\x66\x40\xa0\xf2\xa5\x32\x18\x2a\x12\x6c\x5a\xad\x08\x06\xb2\x00\x33\x4c\x07\x71\x08\x9d\xee\x82\xf3\xf9\x25\x5a\xcc\x5f\x6a\x06\x0f\x5c\xc9\x9b\xb2\x74\xf6\xa0\x34\x8d\x54\xd6\x09\xf7\x43\xdb\x91\x07\xe0\xbc\xaa\xe4\x2a\xa3\xc4\x81\x51\xf2\xce\x51\xa8\xb6\x19\xe8\x26\x63\x0d\xc1\x05\x95\x7e\x54\xb0\x95\xf3\x15\xdb\xb9\x5f\xb1\x9d\x03\x16\x1b\xb9\xe0\xa4\xd2\x6c\x3a\x11\xb3\x29\xff\x76\x3d\xe0\xd1\x76\xe1\xc8\x3f\x95\x4e\xa4\x95\x57\x72\xd6\x74\xbc\x2a\xfb\x85\xe2\x1e\x78\x6d\x81\x2e\x36\x82\xd9\xb8\x62\xdb\xb6\x2f\xa9\xba\x79\x4b\xfa\x7c\x1e\x37\xec\x1d\xd3\x54\xd0\xbc\xd9\x12\x0c\xa3\xd7\x49\xaf\x4f\xc0\xd8\x9c\x14\xe2\x33\x13\x75\x95\xe5\x52\xcf\xe7\xce\x6a\x49\x19\xf4\xa0\x1a\xdd\x40\xa3\x36\x60\xc7\x3f\x49\x26\x8a\x04\x50\x8e\x09\x89\x7b\xa3\x95\x71\x3c\x93\x3b\xe4\x83\x66\x32\x4f\x60\xd1\x77\x92\x7a\x00\x08\xb8\x71\x06\x4d\xbf\x9b\x35\xf3\x4e\x0f\x31\xef\xa1\x41\x24\x63\x81\x1e\x72\x5b\x67\x78\xb5\x8b\xd9\x34\x84\xd1\xbb\x49\xe5\x80\xca\x16\x49\x2a\x1b\x50\xd5\x62\x36\x08\xa1\x67\xb3\xa6\x32\xa2\xd6\x5a\xfc\xa3\x51\xb3\xf3\x62\x4d\x9b\x8b\x08\x61\x6a\x4b\xcb\xa2\xc0\xb8\xed\xd3\x21\xb6\x31\xb9\xb2\xcc\x81\xd3\xde\x01\xf7\xb1\xfd\x4a\x56\x46\x19\x8e\xea\x3b\x9c\x86\x5d\xcf\xc1\x2d\x8f\xaf\xdd\x15\xb6\xee\x6d\x87\xd9\x4d\xbc\xff\x6e\xe3\xda\x5d\x25\x62\x97\x39\x14\x30\x71\x3a\x66\x29\x28\xcc\x4c\xa8\x68\x0a\x35\x93\xfd\xfb\x51\xf0\xc8\x44\xcd\x12\x6a\xa7\x8a\x84\x5d\xb4\x05\x27\x89\xee\xec\xf9\x72\x25\xab\xac\x56\x17\xf2\x07\xb0\xc7\xeb\x57\x72\x3e\xec\xba\x4f\x52\x6f\xe5\x8d\x44\x02\x96\x72\x82\xff\xb0\x8f\x56\xa8\xb0\xff\x3f\x4e\xb4\x6a\xae\x39\x35\x80\x3a\xb7\xb6\xfe\xbb\x65\x0a\xa2\x28\xbd\x90\x97\xc4\x8e\x79\x92\xa1\x1d\xec\x02\x5b\xa1\x49\xdc\x20\x82\xa3\x22\x84\xec\xc2\xaf\xe8\xfd\xe2\x68\xcd\xb5\x63\xbd\xcc\x6d\xd2\x19\xb1\x07\x96\x6d\x36\x83\xdd\xa6\x6d\xb0\xee\x46\x50\x94\x70\x92\xc4\xd2\x9c\x3d\x04\xa1\xca\x90\xd9\x5a\x64\xa5\x6b\x00\x26\x29\x90\x8b\x3a\x50\xab\xc8\x68\x70\x37\x6f\xa6\xff\x6c\xf6\x8c\x29\x98\xee\x54\x3f\xb7\xcb\xbd\x33\x2f\xd4\x8a\xa2\x43\x00\xb2\x84\x5c\x3c\x6c\xa3\x31\x13\x4f\x17\x56\x2e\xe5\x52\xf7\x59\xcd\xc1\xff\x5f\x89\xff\x02\x94\xa7\x2f\x0f\x22\x33\xb4\x5c\x2f\x77\xb2\x3c\xfb\xc5\x09\x4b\xb6\xaf\xc7\xb3\x99\x5c\x59\xfe\xff\xb5\x25\x8c\x95\x84\x94\xdb\xde\xbe\xed\x2f\xcb\xac\x96\x95\xca\x8a\xbd\x46\xa1\x63\x4c\xec\x42\xf3\x4c\x57\xe7\xaf\xe5\xbc\xc3\x79\x86\x4a\x7e\xa5\xc7\xcd\x2d\x6d\xe5\x2c\xe1\x37\xcf\x58\xa6\xfa\x8e\xbe\xe2\x0a\x3c\x3e\x1c\x7b\x03\xf6\x41\xe1\x18\x62\xfe\xd6\x99\x13\x55\x59\xa8\x52\xee\xed\x98\x40\xb1\x95\x2f\x31\xc9\xaf\x18\xec\x3b\x2a\x59\xc0\x45\xe8\x8a\x30\x23\xf5\x61\xb6\xfa\x41\x9d\x2d\x0a\x2b\x2f\x3b\x23\x1c\x78\x86\xb7\xf2\x5a\x59\xbb\xca\x6d\x4b\x9d\x8e\x4a\xe3\xb1\x78\x2d\x8d\x0c\x14\xe0\x22\x44\x36\xa0\x07\x3d\xf4\xd8\xc4\x24\x00\x60\x47\x6c\xc9\x08\x51\xb1\xc6\xc8\x21\xb1\x86\x59\x99\x07\x83\xe3\xc6\xf8\x0c\xa3\x82\x32\xae\x07\x7d\x1e\x9a\x17\x85\xdf\x98\x3e\x2c\xfc\x86\x31\x2d\xf5\x85\xa4\x54\x12\xb6\x54\xa8\x52\xbc\xc9\xe6\x59\xa5\x38\x0c\x67\xa2\xb4\x9f\xa6\xa6\xec\x06\x45\xc5\x16\xd6\x33\x55\xc9\xb9\xbe\xa2\xeb\xb0\xa9\x0c\x2c\x10\x19\x33\xba\xc5\xb1\xb3\x78\x23\x0b\x39\xab\x13\xc3\xc6\x0b\xb2\x2a\x7e\x6c\x37\x79\x22\x7a\x4b\x95\xe7\x85\x2f\xed\xed\x2d\xf5\xcf\x7b\xe8\x1b\x9c\x95\x33\xd9\x4b\x5a\xbb\x35\x77\xb5\x2f\x61\x57\x77\x6e\x50\xcb\xab\xfa\xa9\x9c\x69\x67\xaa\x96\x56\x7d\x03\x2e\x24\x35\xda\x4b\xc8\x99\xc4\xa0\x5b\x2e\x5e\x28\x20\x3f\x18\x81\x8b\x12\x70\x4b\x7c\x9d\x89\xf1\x37\xb1\x41\xb8\x98\x11\xc6\x38\xfb\x49\x37\xb3\x7b\x93\x09\x4c\x0e\x10\x61\x4f\x95\x65\x6c\xd4\x83\xbb\xf2\x06\x1d\x19\x70\x5c\x6c\x0b\x68\xcd\x45\xae\xeb\x1a\xdd\xe4\x2d\x5e\x78\x39\xc0\xdb\xbd\xdc\x73\x39\x2a\xa3\x74\xe7\xdb\x0d\x4d\xad\x58\x4e\x88\x5a\xa8\xf2\x9c\x5f\xfd\x3e\x76\xaa\xdf\x66\xc2\xf5\x5e\xd2\xef\x5f\x96\x32\x57\x99\x58\x55\xaa\x8c\x2c\x7d\x60\x31\x1e\xe7\xf6\xd8\x4e\x44\x4f\x5e\xd9\x1b\x20\x92\x06\x7d\x26\xd3\x57\x46\x36\xb9\xde\x83\xeb\x77\xd7\x7c\xa6\x79\x9a\x4b\xdd\x7d\x9f\x88\x5f\x6e\x09\x3a\xb6\xfb\x97\xb9\x83\x3c\x67\xd4\xd3\x42\x8f\x0d\x72\x4e\xbf\x6b\xea\x5a\x97\xdf\x65\x06\x8c\xd4\x5c\x2e\x08\x23\xe6\xf2\xd2\x73\x3d\xc6\x92\x27\x00\x80\x39\x25\x9e\xd7\x22\x53\x4b\x43\x61\x10\x32\x61\x14\xc6\x37\x6c\x54\x01\x47\x0d\xcc\x10\x81\x58\x00\x67\x8a\xc1\x3f\xa6\xd0\x91\x07\x10\xfa\x12\x85\xce\x72\x8b\x9c\x88\xa5\x15\x50\x26\x4b\x58\x40\xc3\x0a\xc3\x1f\x13\x8f\x58\xe8\x33\x35\x8b\xe3\xfa\x85\xf1\xef\x6e\x08\x14\xda\x74\xdb\x01\x91\xac\xeb\x2c\x6f\xf0\x67\x30\x86\x84\xd6\xaf\xe5\x3c\x72\x61\xf4\x5f\x53\x4f\x46\xa4\xf3\xde\x56\x89\xdb\x14\xd1\xeb\xb2\x47\xb9\xb8\x66\x67\xfb\x1b\x2d\x8c\x52\x98\x21\x96\x50\x12\x16\xde\xd7\xf8\x7c\x89\xea\x67\x2c\x52\xd3\xa6\x18\x4d\xbc\x4e\xbb\x19\x9f\x5e\x0f\x97\xb4\xc7\x66\xd8\x82\x16\xa7\xb7\xcd\xd3\x4c\xba\x39\xb7\x91\x75\x35\x5a\x6d\x6e\xce\x9b\x9b\x6f\xe8\x30\xd9\xd5\xe8\x6b\xda\x75\xba\xaf\xc9\xe7\x9b\x07\x91\x80\x8d\x0b\x89\xf1\x49\x87\xc2\xf8\xa1\x74\x3c\xb1\x09\xdd\x06\x68\x37\x8f\x8a\xaa\xa6\xc3\x82\x63\x9b\x2c\x0f\xfb\x16\x02\xd1\x45\xf5\xba\x1a\x6f\x19\xc2\x46\x80\x44\xee\x9e\xb4\x50\xb7\xb3\x94\xb9\x14\x7f\x57\x34\x15\x73\x39\xb6\x3f\x59\xe9\x13\xf0\xdb\x0c\xc5\xf0\x9b\x95\x03\xa3\xca\xca\xe1\x77\x5a\xee\x38\xdd\xa4\x9a\xf3\xd3\x0d\xb5\x7f\x94\x6b\xb2\xe8\x72\x15\xe9\x4b\x5c\xe7\xed\x2a\xae\xf1\x76\xc5\xca\xb9\x5d\x98\xab\xe3\xbf\xa5\xf5\x5e\xc8\xec\x42\xa6\x15\xe1\x63\x5a\x33\xea\x93\xbe\xb0\x3a\x80\x13\xdf\x97\xdc\x79\xdb\x7d\x4a\x6b\x1d\xe8\xa8\x4b\xff\x2d\xad\xf7\x86\x6c\x49\xa2\x8a\x6f\x22\xdd\x8e\x2e\x9f\x56\xd9\x59\x3a\x09\xff\x2d\xc5\xd0\x3a\x9b\x82\x2b\x4a\xf0\xf7\xa6\x0f\xe1\x01\x3a\xd4\x68\xb5\xe1\x58\xb9\x1f\x30\xb2\x05\x83\x9d\x32\x17\x34\x02\x7b\x4b\x0b\x5a\xc3\x03\xb5\xa8\x1b\xda\x7a\x15\xc6\x4f\x25\x51\xbd\xed\x74\x33\x6a\xfe\x09\x56\xa3\x19\xa9\x76\x86\xe2\xf8\xae\xbf\xdf\xc8\x6e\x94\x5d\x36\x2c\x06\x5e\x25\xcb\xed\x46\xa6\xf0\x33\x0e\x9e\xe7\x68\x6c\xf4\x8b\x43\x6e\x13\x2c\xfc\xce\x8e\x3f\xfb\x90\x9e\x6e\x2c\xc2\xb3\xec\xfe\x7e\x82\xd6\x8c\xf8\x03\x8e\x5f\xf4\x83\x40\xb8\x6f\x74\xec\xd8\xcf\xb7\x2b\xf7\xc3\x1f\xa6\xe8\x03\x20\x5c\xf4\x25\xb4\x70\x27\x21\xfa\x6d\x51\x3e\xfa\x00\xa8\xed\xbe\x78\x1c\xc6\x0f\x0e\xc9\xf0\x57\x8a\x48\x54\x67\xbd\x4a\x4d\x7a\xfd\x0e\x6e\x32\x65\x3c\x4e\xd2\x6a\x21\x9b\xf4\x93\xce\x65\x9f\xa7\xfb\xfb\xc3\x9b\xba\x52\xb3\xfa\x40\xe7\x12\x8d\x2b\x23\xc5\xac\xd3\x78\x8c\xe6\xaa\xcc\x9f\xbe\x3c\x80\xe6\xbe\xeb\xd8\xaa\xf1\x3a\x8d\x6d\x70\xc3\xe0\x6e\x13\x83\x61\x1e\xd3\xdc\xed\x06\xca\xcf\xb6\x57\xf6\x56\xca\x6a\x2e\xfa\x9e\x7f\xb8\x77\x2f\xea\x24\xbc\xed\xc4\xf0\x9c\x29\x6e\x32\xf1\x0f\x6d\x1d\xc8\xa3\xb6\x5e\xa4\xcf\x92\xec\xa4\x95\xdb\x10\x46\x71\x9d\xe4\x7e\xdb\xda\x32\xaa\xd2\xb9\x88\xb8\x47\x1d\x4d\x2b\x39\xa7\xe5\xd9\xac\xd5\x27\x56\x7a\x17\xc5\x7e\x2c\xb7\xf8\x06\xf3\x68\x55\xa2\x47\x97\x64\xbd\x31\x5a\x41\x28\x6f\x21\x21\x72\x03\xfd\x76\x86\xac\x8d\xaf\x14\xdb\xcd\xc8\x23\x54\x73\x58\x41\x6c\xcc\xbd\x7b\xe2\x4e\x44\xda\x5a\x66\x2a\x7c\x60\xf4\x18\xd1\x6f\x3d\x40\xc6\xac\x20\xef\x61\x18\xad\xcc\x49\xeb\x3c\xdb\xe3\x04\x15\x71\x27\x2a\x32\x34\x79\x4c\x1b\x22\xb9\x46\x2f\x32\xca\x34\xe7\x6a\xf5\x9a\xd5\xdd\x64\xee\x18\x19\x51\x3e\xd8\x66\x44\x09\xc6\x90\x6d\xa2\x1e\xc7\x4e\x6e\xe7\x2e\x8f\x1f\x34\x93\x47\xae\xee\xf1\x0b\xf7\x4a\xe8\xa1\x60\xdb\xae\x67\x2d\x6f\x4e\x6f\x4f\x46\x3a\xe9\x87\xb1\x91\xce\x1d\xaa\x78\xef\x5e\x7b\xf3\x3a\x8c\x75\x58\xe9\x11\x5f\xf6\x93\x2d\xc3\x71\xa9\x7c\x99\x19\x5f\x8b\x76\x60\xe8\x0a\xce\xe3\xb5\x76\xb9\x87\x46\x83\x43\xce\x0b\xa6\xd1\x4d\x38\xdb\xd4\x05\x40\xaf\xa0\xbd\xaf\x96\xb6\x0f\x2c\xe1\x96\xd6\x54\xa9\xb3\xed\x8d\x9d\x6f\xda\xfb\xf4\xd4\xb5\x1f\x87\x2b\xf8\xf7\x29\xea\x7e\xfa\x9d\x66\x63\xfc\xce\x1e\xf0\xcc\x67\xe1\x73\xbc\x4f\x3c\x99\x4c\x98\x49\xc4\xa6\x6e\xdb\x87\x50\xb1\x13\x04\xf2\xcd\x5b\x56\xd2\xd5\xea\x6c\x4d\xfc\xf4\x4d\xcd\x6d\xb5\xb4\x3d\xc9\x3e\x9f\x73\x13\xa2\xdb\x24\x45\xf6\x2d\xf7\x63\x6b\x87\x2c\x98\x16\xdc\xae\x5d\x19\x0a\x06\x26\xcc\xcd\x49\x66\x3b\x53\x15\x48\x73\x78\x05\x3a\xac\x45\x5d\xaf\xcc\x64\x3c\x3e\x53\xf5\xa2\x99\x8e\x66\x7a\x39\x9e\x67\x33\x39\xd5\xfa\x7c\x0c\x0f\x3a\x63\x65\x4c\x23\xcd\xf8\xcf\x7f\xfe\xf7\xff\x08\x83\xbe\xd3\x66\x7a\x98\xce\x34\x2d\xf3\x56\x9a\xf4\xfb\x30\xa4\xf0\x4e\x16\x23\xbe\xdb\x69\xd8\x0c\xf4\xa6\x6b\x90\xd3\xaf\x98\xcf\x1d\xc4\x59\x9e\x3a\xc0\x6f\xcc\x21\xc9\x80\x45\xdb\x03\x5f\x36\x9d\x1a\xb7\x35\xca\xfc\xa4\xcb\x9f\x80\x3d\x40\x56\x93\x5b\x90\xb5\x0a\x63\x57\x81\xa9\x6b\x90\xf0\xa9\xf1\x25\x12\x34\x4b\xf7\xee\xb1\x1f\xf6\x6a\xf2\x52\x92\xbd\x99\x89\x41\x1d\xd5\xd9\x19\xaa\x0b\x6c\x85\xc7\x50\x46\x25\x8b\x4a\xce\x43\xd4\xe6\xe8\x35\xfb\x7b\x71\xff\xbe\x30\x0b\xb5\x8c\xb0\x25\x97\x17\xb2\xb0\x32\xd5\x68\xa9\x7f\x56\x45\x91\x8d\x74\x75\x36\x96\xe5\xde\xdb\x37\xe3\x5c\xcf\xcc\xf8\x9d\x9c\x8e\x1f\xbf\x7a\x3e\xfe\x91\xf4\xb6\x80\x97\xe3\x4a\xae\x64\x16\x02\x15\x86\xc5\x3a\x97\xeb\x5c\x5f\x76\xb1\xef\x9d\x08\x1f\x94\x07\x9f\x82\xf2\x4f\xc0\xb6\x11\x95\xc9\x90\x24\x87\xc2\x47\xda\x9e\x43\x00\x66\x1c\xa3\x11\x53\x09\xb9\xb4\x29\xd7\x43\x66\x42\xa4\x5e\x88\x8a\xc9\x62\x7c\x06\x1a\xc1\xd8\xa1\x30\x23\x7f\x08\x12\x56\xba\xf3\x7e\x0d\x66\xd8\x76\x90\xb0\x53\x82\x1b\xc5\x77\x80\x8d\xac\xe1\x37\xdb\x0d\xb5\xf9\x30\x6e\xc7\xb3\xc1\xd4\xa7\xab\x51\x56\xd5\xad\x83\xd3\x49\xd8\xc8\x02\x0a\xce\x3a\x4c\xa5\x83\x06\x60\x52\xb9\xf6\x61\xb8\x61\x19\x3e\xe5\xfe\x23\x64\x89\x4e\x30\x7d\x4b\xce\xb0\x45\x12\x87\xb0\x3e\x7e\xa8\x2a\x54\xbd\xa6\x94\xde\x65\x78\x84\xb9\x08\x19\xce\x3b\x8d\x6b\x3f\xd3\xac\xbf\x87\xc7\x3b\xce\x60\xe7\xbb\x2c\x43\x4c\x0e\x41\x21\x90\xd0\x41\xf8\xb6\x99\x00\x76\xb0\x00\x4e\x1b\xf7\x29\x47\x6e\x96\x15\x85\x3d\x46\xf1\x10\x85\x82\xb4\xd5\x6f\x57\x90\x38\x47\x7c\x8d\x54\xe8\x1b\x34\x15\x86\xfc\x4c\xca\xac\x30\x1f\x12\x45\x93\x43\xdf\x29\x35\x17\x6f\x56\xd9\x0c\x42\xd0\x41\x70\x39\x99\xfb\x9e\x1c\x65\x9a\xe9\x5c\x9a\xac\xcc\xa7\xfa\x6a\xa4\xf4\xd8\x8c\x11\xf8\xde\xb9\x5c\x37\xab\x3d\x1a\x07\xbd\x96\xed\xe5\xe5\x9f\xe7\xfb\x1b\xcf\x70\x0b\x01\x37\x9e\xd8\xf4\x58\x93\x7f\x84\x0f\xa0\x0a\x3f\xa3\x9d\xeb\x3c\xc7\xb1\xff\xcc\x6f\x7c\x90\x9d\x14\xb6\xd3\x51\x26\xbd\x50\x7a\x86\xde\xae\x7e\x8b\x13\xe4\x54\xd1\x7e\x0b\x3e\x1f\x09\xd9\x6d\x73\x3a\x4f\x47\x7a\x28\x7c\xda\x02\x7a\x28\xf3\x17\x30\xd3\xa2\x24\x75\x92\x8b\x19\x74\x95\x78\xf7\xba\xbe\x53\xa0\xbd\xac\x97\x8a\x45\x08\xc0\xe7\xc4\xbb\xde\xa9\x3b\xdf\x01\x6b\x4d\xb6\xa9\x82\x72\x3b\xa5\xa5\xec\x4d\xc9\xfd\x49\xe9\x73\xb8\x79\x73\xbb\x5b\x60\x3f\xb2\x1e\x38\x0e\x75\xcc\x30\xee\xa4\xd2\xa0\xaa\x71\xc3\x4c\x51\x8f\x55\x3d\xea\x65\x95\xca\xf6\xfc\x33\xfa\x49\x6b\x5c\xa9\xe4\xf8\xd6\xc8\x0a\x19\x8a\x60\x08\xd4\x8f\x9e\x37\xf1\x65\x34\x21\x73\x2f\x1d\x1b\xc2\x5a\x25\x1a\xa2\x61\xe0\x70\xd3\xd6\xad\xa6\xd1\x58\x86\x51\x1f\x5b\x14\x7f\x0f\x6e\xd4\xfc\x51\xc2\x1d\xa7\x26\x4c\xdb\x27\xaa\xbf\x83\x1b\x6a\x7b\xdd\xdf\x0e\xca\xa0\x04\x1c\xd3\x44\x25\xfe\xdb\x18\x23\x3d\x7e\x89\x8b\x86\xdd\x52\x1b\x45\xf7\x1c\x43\xec\x8d\x46\x9a\xbd\x60\xa3\xd9\xe3\xf7\x8e\x34\x85\x2a\x6b\x87\x2d\x7b\xa5\xbc\xaa\xf7\x0a\x55\x4a\x0a\xed\xb9\xd0\xfa\xdc\x8c\xab\xa6\x90\x66\x4f\xcf\xf1\x27\xb6\xdd\x61\xfe\x74\xcd\xb7\x26\x67\xc7\xbe\x5d\x5f\xe2\xf2\xd6\x4a\x08\x5f\x7d\xd4\x3b\x70\x66\x6d\x6f\x9f\x4f\x30\xe3\x64\x92\x42\x24\x24\xa2\xaa\x35\xb7\x05\x50\x46\xa8\xf2\x22\x2b\x54\x3e\xea\x0d\x45\xef\x55\x21\xed\x57\xf0\x53\x30\x0d\x39\xb8\xf8\xb7\x71\x97\x56\x11\xf3\x9d\xc8\x1c\x83\xad\x2b\x23\x66\x8d\xa9\xf5\x92\xd9\x79\xf6\x4e\x46\x7f\xd7\xaa\xec\xf7\x8e\x8f\xcb\xde\xa0\xcd\x16\x0c\xc5\x51\x6b\xda\x9d\x99\xe7\x77\xcf\x1e\x83\xc7\xf0\x96\x16\xc5\xc3\xd6\xc5\xeb\xfc\xb4\xa3\xa7\xd0\x61\xf7\xb3\xe9\xc9\x50\x70\x2d\xb7\x6b\xe9\xd9\x2c\x3a\x3f\x28\x8d\x4f\x98\x1a\xc1\x17\xc0\x2d\x31\x11\xf1\x53\x29\x89\x87\x13\x2e\x9b\xfb\x22\xe2\x3b\x27\xb1\x1c\xc3\x8b\xdf\xae\x26\x9c\xdf\xf2\x45\x5e\xbf\x35\x49\x15\x63\x71\x15\xd0\xe8\x4c\x5a\xfa\xa7\xb8\x52\xe8\x24\x7e\xde\x64\x6a\xb0\x49\xaa\x3e\xf3\x55\x9c\x86\x66\x92\xe8\x75\xe2\x0a\x07\x3a\xc0\x48\xdf\x3d\xb9\x96\x68\xd2\x52\x30\x71\x33\x71\x4f\x54\xe9\xa3\x7b\x1c\x9a\x84\xad\xfb\x56\xec\xdd\x17\x13\x5f\x42\x74\x88\xdd\x1c\xc1\xb8\x3c\x24\x4f\x69\x9f\xde\x6f\x51\xee\x65\x78\xeb\xed\x94\x78\x35\x65\xd0\x97\xad\x94\xd2\x1e\x4b\xf4\xf3\xdb\x33\x2a\x97\x43\x71\xf5\x40\x4c\xb5\x36\x90\x0e\x12\xec\xd2\x64\x75\x21\x2b\x67\xa9\xd4\x69\xcc\xce\x0c\x18\x5a\x87\x00\x16\xc0\x13\x14\x5a\x00\x67\xe8\x1d\xbd\x50\xe2\x94\xd3\xa7\xb2\xc1\x40\xa0\x2d\xfc\x2d\x6c\xdd\x03\xad\xe9\x30\x75\x1f\x8b\xbd\x6d\xff\x89\x77\x59\x55\x5a\xa6\x7f\x6b\xad\xbd\xbd\x3d\x02\xf6\xd1\x92\x3e\x23\x99\xdd\x71\x56\x49\x4a\x20\xe1\x63\xce\x42\xd6\xd8\xf5\x4a\xbe\x99\x55\x6a\x55\xe3\x2b\x31\x68\xdf\x31\x98\x97\xf8\xe8\x81\x09\x78\x97\x76\x49\x1c\x20\xc9\x8f\xcc\x15\x9a\xd1\xe7\xa3\xda\x88\xb9\xb2\x32\x7c\x99\x8b\xaa\x29\xc5\xf1\xdd\x75\x56\x21\x8d\x04\x13\xe7\xe3\xbb\x00\xe0\xe3\x2e\x13\xdd\xf9\xbf\x76\x52\x91\x4a\xce\x81\x21\x56\xfe\x09\x89\xcc\xb2\x8c\xcf\x1a\x55\xbb\x6c\x7e\xc5\x9a\x22\xd8\x34\xab\x95\xae\x6a\x23\x4e\xe3\x57\xa2\x53\xd1\xf6\x07\xc0\x2f\x13\x67\x49\xbd\xdd\xbe\x9e\xbe\xbd\x35\x94\x95\x04\xb3\x9c\x68\xcc\x30\x95\xc1\x58\xc9\x2a\x8f\xcc\x2b\x49\x3d\xd5\x72\x10\xf8\x4b\x2e\x57\x95\x9c\xc1\xae\x59\x68\xa7\x95\x9c\x9f\x0a\x55\x9a\x5a\x66\x39\x1f\x9e\x67\x9f\x36\x8f\xb0\xd3\x8d\x82\x32\xa4\x4c\x9d\x07\x85\xcc\x43\xde\x11\xb9\x16\x97\x10\xa8\x07\xfd\x53\x9d\xa7\x05\x18\x48\x46\x4e\x5e\xce\x18\xb9\xed\x3f\x81\x87\xe7\x46\x2f\x8a\x43\xcc\x25\x02\x99\x93\x52\x17\x8e\x5b\xa5\x0d\xfa\x5d\xb9\x65\xfc\x3a\x5f\x8c\x0d\x8b\xe5\x74\x93\x3e\x70\xbc\xb7\xf1\xb4\x0b\xe2\x66\xf2\xbd\x02\xeb\x8d\x4c\x20\x2c\xc8\xc5\x02\x31\x9d\x7e\x38\x3c\x78\xe1\xad\x41\xb5\xad\xd1\xbd\xe0\xc1\x07\x68\x93\x6f\xc1\x0d\x68\x36\xb5\x7c\x14\xa1\xb7\x43\x35\x77\xd3\xf0\x9e\x82\x41\xeb\x0d\xb8\xd2\xed\x0d\x84\xee\x82\x9b\x7a\xa0\xa6\xff\xe7\x7f\xfe\xaf\xff\xfb\xbf\xff\x87\x20\x13\x16\x7b\x10\xb1\xb1\x5d\x23\xb8\x88\x4a\x0d\x28\xe2\x4c\xd7\x27\x68\xc1\x7c\x41\xdc\x10\x4f\x66\xf7\x1d\xf2\x85\x04\xb8\xd6\x10\x6f\x1f\x8c\xed\xa3\x9c\x3a\xd3\x35\x86\xe7\xb7\x10\x8d\x5c\x65\x96\xfe\xb6\x42\xf5\x9f\x76\x32\x53\xa7\x1d\xab\xb3\xe3\x71\x4a\x96\x08\x4d\xef\x77\x5a\x28\xde\x19\xbb\xfd\x3e\xb5\xc7\xd6\xa6\x53\x02\xb5\x24\xd6\x78\x3b\x28\x38\xd3\x17\xed\x40\x34\x40\x69\xa5\x57\x90\x3e\x68\x21\x8b\x95\xc8\xc4\x4a\x56\x46\x97\xe2\xbc\xd4\x97\xe2\x72\xa1\x66\x8b\x28\xbd\x51\x3b\xde\xf9\x88\x1f\x2a\x30\x9b\x2e\xb3\xa5\xf4\xcb\xe3\x28\x05\xf8\xd4\xf3\x8d\x3d\xcb\x28\xc1\x12\xce\xc4\x25\xbd\x63\x53\x6c\xfb\x95\x89\xe7\x75\xcf\x92\xff\x95\x2e\xd6\x73\xdb\x81\x3b\xb6\x40\x6b\x12\x64\x33\xe0\x52\xa0\xab\x93\xbe\x7f\x21\xa8\xb2\x79\x6d\x46\x33\x63\x2e\xcf\xe0\x71\xc0\x55\x31\x7b\xff\x65\xfc\x87\x7a\x21\xf7\x22\x08\x7b\x2b\x30\x06\x1f\xf0\x19\xa2\x37\x40\x46\x01\xd6\x30\x7f\x14\x08\x2e\x73\x99\xd5\x56\xcc\x39\x82\xfc\x53\xab\x22\x83\x47\x78\x7b\x2c\x42\xff\xec\x3d\xeb\xdd\xf3\x27\x7f\x1d\x47\xbd\x8d\xa7\x85\x9e\x8e\x97\x99\xa9\x65\x35\x76\x10\xaa\xd1\x32\xf7\xfd\x3f\x16\x47\x7e\xe2\x76\xc3\xa6\x10\x5e\x2e\xdf\x11\xfe\x20\x64\xba\xc8\xe8\xc0\xb8\x22\x0a\x89\x0a\x71\xe9\x80\xda\x85\xd8\xa9\xd4\xb5\x9a\x13\x77\xd9\x42\xb5\xf4\xd0\xed\x40\x7e\xdb\xc4\x7b\x01\x7c\xe5\x2d\x1a\x3a\x41\xe8\x86\xd0\xfe\x5d\x0d\x49\x50\xba\x45\x4b\x26\x8f\xdc\xa2\x35\x49\x62\x37\xb4\x0c\xae\x60\xaa\xe2\xa7\x27\xca\xd8\x48\x7e\x07\x48\x07\xc3\xc1\x71\xf8\xf2\x4e\x8a\xba\x52\x67\x67\x70\x7d\x9d\x52\xcf\xa7\xa0\xff\x06\xd0\xb5\xd6\xa3\xf6\xd0\xbc\x01\xd0\x2d\xe6\xe6\x45\xc9\xdb\xb5\xb5\x22\xe0\x2d\x5a\x32\x31\xf4\xb6\xad\x6f\xbf\x9d\x5e\x76\xbd\x45\xdb\x20\xb5\xde\xb6\x31\x4a\xb4\xb7\x6d\x4d\xc2\xee\x27\x37\x0f\x12\x2f\x63\xd4\x4a\xf9\x12\xb8\xe6\xfe\x51\x2b\xa3\x43\xeb\x64\x43\x24\xd3\xb8\x17\x54\x1e\x27\x7c\xe5\x29\xbb\x41\x4f\xbb\x92\x69\xa4\xf2\xe5\xad\x58\x47\x2b\x64\xdd\x38\x15\xf8\xd8\x3f\x72\x5a\xe1\xa1\xe8\x81\xdb\x8c\xfd\xc3\x34\xd3\xa5\xaa\x7b\x27\x83\xae\x89\xde\xce\x11\x38\x38\xfe\x06\xa9\x17\xfd\x7e\xc3\x6f\xee\xdc\x7b\xa3\x03\xad\x91\x35\xf3\x46\x1d\xe3\xcf\x5e\x7b\x40\xdc\x7a\xcd\xa9\x8b\x2b\x39\x7f\x0c\x6a\xe9\xef\x06\xa9\x63\xf9\x61\x48\x70\x0a\x4a\x04\x91\x41\x52\xbc\x60\x53\x40\xf1\x5a\xe4\x9c\xd2\x7e\x53\x96\x54\x2b\xea\x66\x15\x89\xcb\x5c\x62\xa2\x3c\xb4\x06\x95\xa2\x2e\x77\x6a\x51\x60\x8e\xc2\x02\x18\x75\xf0\xab\x05\x9a\x77\x5a\x36\x45\x81\xd9\x7a\x41\x14\x94\x97\xae\x9c\x00\x7a\x0e\xb1\x92\xf3\x91\x78\x52\xc8\xac\x6c\x56\x56\x64\x6c\x30\x11\xa4\x5c\xca\xea\xcc\xf9\xce\xc2\x3d\xee\x32\x29\x33\xfc\xe0\x76\xb6\xa3\xc6\xc8\x03\xb9\xd4\x1b\x03\xdb\xca\xf9\x63\x41\xa1\x7e\xe0\x69\x4e\xce\xbf\x13\x1b\x73\x78\xc7\xb1\x6a\x8f\x4b\xd1\x15\xb9\xb4\x92\x73\xc8\x83\x1d\x5b\x9c\x44\x1b\x83\xe5\x0f\xdb\xc5\xdf\xb5\x8b\x83\xad\x65\xd8\x57\x50\x98\x5e\xdf\x1d\xde\xed\x59\xd9\xc6\x80\xb5\x71\x0f\x74\xdd\x2f\xd1\x2d\x1e\xf7\x89\x4c\xd6\xd7\x7d\x44\x1a\x33\x14\xc7\x77\x3f\x7c\x90\xe6\x40\xe7\x0d\x1a\x6f\x93\x43\x17\xe4\xf0\xc6\x08\x07\xa0\xe4\x41\xdb\x13\x97\x39\x32\x36\x3a\xf1\xf9\x24\x55\xb9\x6a\xea\x38\xab\x06\xa5\x0f\x84\x12\x7c\x3b\x72\x0d\x7b\x14\xe6\xda\x21\xb0\x71\x6f\x67\x51\x4c\xa4\x55\x25\x21\x53\x4f\x92\xac\x83\x3d\x0e\x17\x72\xf9\xb2\x3a\x5c\x34\xe5\x79\x6a\x16\xeb\xdb\x8a\x6f\xf9\x28\xa3\x16\x18\x5c\x8b\x7e\x42\xf8\x3d\xf6\x9b\x34\x5d\xde\x84\x05\x87\xbb\x84\xb5\x1a\xd1\xa8\xc5\x23\x41\x7f\x1d\x79\x77\xc9\x13\x7b\xae\x5b\xd5\x2a\x0c\x4b\xd0\xef\x8d\xc6\x85\x9a\x8e\xb3\x2b\xa5\x4d\x0f\x48\xc0\x78\x1c\xc2\x77\xcf\x74\x69\x14\x85\x18\x06\xd5\xbb\xaa\x43\x34\xef\x4d\x47\x3d\xa0\xcb\x10\xf7\x8e\x25\xc0\xa4\x1d\x80\xa8\x76\xd1\xfa\xb3\xe5\x9a\xf7\x2f\x02\x82\xd1\x53\x1c\x9d\x05\x5e\x8b\x3d\x2a\x5f\xf8\xfc\xfb\xd7\x88\x77\xe3\x2f\xee\xd8\x5f\x4f\xf4\x6a\x0d\xd9\x48\x44\x7f\x36\x10\x0f\xf6\xef\xff\x59\xfc\x37\x99\x8b\x77\x59\x6d\x48\x06\x78\xa1\x66\xb2\xb4\x3c\x4f\x53\xe6\xe4\x6a\x7b\xf0\xfc\xd0\x7d\x16\xfd\x83\xe7\x87\x83\xa1\x30\x12\xe8\xbb\xe5\x8b\x27\xe3\xf1\xdf\x65\x7e\x89\x10\x88\x41\x56\x7a\x0c\x0c\xaf\xa5\xb2\xe6\xb8\xb4\xa7\x7c\xfc\x85\x38\x2b\xf4\x34\x2b\x88\x24\x91\x2d\x50\x7a\xcc\x8f\xeb\xd6\x09\x39\xae\xf1\xa5\xcd\xbc\x04\xe3\x9f\x5f\xae\x47\xf8\xb7\x3b\x2c\x54\xc9\x03\xf2\x8a\x0a\xe3\x61\x22\x88\xe0\x16\x78\x74\x42\x8d\x8e\x6b\x2b\x65\xf4\xe1\xf8\x88\x47\x62\xff\xa1\x50\xe2\xeb\x96\x31\xf0\x43\xa1\xbe\xfc\xd2\x83\x42\x60\x59\x75\xc6\xcd\x86\x8f\x14\x80\x84\x62\x30\x95\xcb\xaa\xb3\x01\x28\x8c\x54\xd9\x48\xdf\x9b\x6f\x7b\x18\x9e\x61\xf5\xdc\x7e\x60\x55\x6c\x7b\x5f\xc5\xe2\x04\x5e\x75\xf0\xba\x1a\x7d\xc7\xdb\xbf\xc7\x46\x76\x5c\xbb\x17\x8d\x55\x63\x16\x16\xca\xc0\x0f\x8b\x21\x0e\x04\x0e\x1e\x29\x83\x01\x84\x61\xa8\x68\xeb\x4c\x13\x8e\x20\xc2\xe2\x94\x18\x2f\x3a\xac\xed\x08\x24\x1d\xf0\x65\x18\x8a\xa8\x1f\x9c\x00\xb4\x88\xe0\x24\x63\xc3\x0a\xac\xd5\x75\xc7\x40\xa3\xe9\x22\xbf\x11\x4f\xd7\x6f\x1f\x98\x77\x95\x30\x92\xb8\x53\x0b\x06\x11\x66\x64\xef\x39\x0b\x72\x68\x6b\xbb\x29\x1f\x9d\xcb\xf5\x49\xd2\x26\x19\xaa\xad\xfd\x90\x97\x5f\x77\x8d\x1a\xff\xb8\x76\xfb\xe8\xec\xf5\x08\x10\xbe\xb1\x89\x1e\x02\xa2\x5a\x8c\x00\x20\x3d\xc2\xf7\x4d\x96\xc1\xf5\xde\x3d\x11\x53\x2a\x3f\x52\xb6\x15\x81\x32\x87\x8f\x34\xde\x16\x99\x4b\x6a\xb0\xb5\xa6\x81\xd0\xf1\x8c\x89\x91\x1d\x47\x54\x3e\xca\x96\x79\xb4\x2b\xb6\x46\x28\xf2\xa3\x84\xc4\x8a\x67\xca\x40\x32\x70\x23\x7a\x81\x2c\xf4\x86\x48\x4c\x0d\xa8\x54\x81\x8f\x28\x57\x4b\xb1\xca\x66\xe7\xd9\x99\x04\x06\x0d\x41\x20\xd4\x7e\xdc\xf4\xe8\xa4\x65\xf5\x82\xdb\xc0\x97\x9d\x2f\xc4\xf5\x80\xcf\x97\xaa\x63\xda\xdc\x11\xa3\x18\xed\x05\x3a\x2e\xaf\xfb\xf0\x2c\x1a\x98\xc1\x5f\x2c\xf3\x76\xb8\x90\x4b\x69\xe7\xe4\xfe\x26\x9d\x9d\x33\x77\xea\x8c\x63\x62\x5a\xa9\xb5\xb6\xb0\x94\xb4\xad\xd8\x91\x63\x2c\xf9\xc7\x1b\xd8\x4b\xa8\xd3\x67\x4e\xe0\x90\x0e\x05\x2d\x15\x3a\x46\xdc\x1f\x58\x02\xc3\xe1\xff\x6b\x1f\xe3\x9f\xca\x69\x73\x06\x9c\x15\xe5\x03\xeb\x78\x73\xae\x69\x98\xd7\x77\x4f\x86\x77\x8d\x6e\xaa\x99\x7c\xad\x75\x7d\x77\x72\xf7\xee\xf5\xff\x0b\x00\x00\xff\xff\xd3\x38\xeb\x73\x38\x3e\x06\x00") -// FileIdentifierStaticJs10Eee7136aChunkJs is "identifier/static/js/10.eee7136a.chunk.js" -var FileIdentifierStaticJs10Eee7136aChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xfd\x7b\x73\xdb\x38\xb2\x30\x0e\xff\xff\x7c\x0a\x89\x67\x96\x87\x88\x5b\x8c\xe4\x5b\x12\x7a\xb0\x7a\x72\x71\x26\xde\x93\xc4\x39\xb1\x67\xb2\xb3\x1a\xd5\x2c\x45\x42\x12\x63\x0a\xd0\x90\x90\x2c\x47\xe2\x77\x7f\x0b\x37\x12\x94\x28\xdb\x99\xdd\x7d\x7f\xf5\x94\xab\x2c\x82\x00\x71\x69\x34\xfa\x86\x46\xe3\xe9\x93\x76\xeb\x2d\xcb\x5a\x69\x12\x11\x9a\x93\x56\x42\xc7\x2c\x9b\x85\x3c\x61\xb4\x35\x4f\x49\x98\x93\x56\x4e\x48\xab\xd7\xf5\x09\x21\xcf\x7a\x47\xa7\xa1\x1f\x4d\x17\xf4\xc6\xff\x9a\xfb\xef\x2f\x5e\x9f\x7f\xbc\x3a\xf7\xf9\x8a\xb7\x9e\x3c\xfd\x3f\x1e\x9f\x26\xb9\x7f\x4b\x46\xf3\x30\xba\xf9\x5b\xce\xe8\x3c\x89\x09\xe5\xc9\x38\x21\x19\xbe\x27\x6f\xb3\x19\x0c\x91\x3f\x5f\xe4\x53\x6f\x30\xe8\x75\x87\xb0\xee\x1d\x3d\x0b\xc6\x0b\x1a\x89\x5e\x78\x04\x38\x50\xb4\x76\x16\xa2\x2b\x3c\x4b\x22\xee\x9c\x51\x3f\xf6\x38\x38\xa1\x03\x5e\x59\x0e\xad\x33\xc2\x17\x19\x6d\x85\x05\x42\x67\xcb\x30\x6b\x31\x4c\xbd\x13\x04\x19\xa6\xde\x61\x0f\x41\x82\xa9\x77\xfc\x02\x9d\x99\x2f\x5a\xa1\x87\xd6\xa2\x1c\xc1\xcc\x5f\xe4\xe4\x35\xa3\x9c\xac\xb8\x97\xf9\x21\x3a\xd3\x75\x5d\x8e\xbe\x92\x88\x7b\x89\x1f\x21\x8f\x20\x20\x45\x01\xbd\xa3\xe7\xf7\x77\x4e\x7d\xe3\xc7\x64\x9c\x50\xf2\x29\x63\x73\x92\xf1\x3b\xd1\xdd\xdf\x7f\x27\xf9\x07\x16\x2f\x52\xe2\xc0\x7a\x19\xa6\x0b\x12\xb4\xbb\x05\x02\x59\x36\x5c\xa4\x1c\x2f\x59\x12\xb7\xba\xba\xf3\xeb\x93\x6e\xe0\xfc\x17\x79\x3e\x3e\x21\x2f\x1c\xe8\x75\x45\x2a\x7a\x4e\x4e\xa3\x17\x0e\x1c\xca\x54\x78\x12\x9f\x86\xcf\x1c\x38\x92\xa9\xe7\xbd\xe8\xd9\xf3\x63\x07\x8e\x65\xea\xf4\x74\x34\x3a\x0d\x1d\x38\x91\xa9\xe3\x28\x1c\x9f\x74\x1d\x38\x55\xa9\xa3\xb0\x7b\xfc\xcc\x81\x67\x32\x75\xf4\xfc\x39\x39\x8a\x1c\x78\x2e\x53\x87\xe4\x59\x7c\x74\xe8\xc0\x0b\x99\xea\x8d\x4e\xc8\x61\xd7\x81\x97\xaa\xf9\xd1\x8b\xf1\x69\x14\x3a\xf0\x52\xb5\x7f\xfa\x62\xdc\x0d\x89\x03\x2f\x55\x93\xdd\x2e\x39\x7d\x76\xea\xc0\xcb\x67\x3a\x19\x3d\x3f\x39\x72\x8a\xb3\x6a\x7c\x4c\x80\xef\xc5\xbf\x30\xb7\x59\x7d\x6e\xab\xb9\xcc\x3c\xa2\x26\x93\x63\xe2\x47\x8c\xf2\x8c\xa5\x29\x89\x81\x62\x62\x5a\x87\x0c\x7b\xc4\xa7\xe1\x8c\x00\xf1\x73\x1e\x72\x02\x72\xde\x3f\x93\xb1\xa7\x00\xdf\xc6\x98\x23\x3f\x5a\x64\x19\xa1\x5c\x20\x8c\xcc\xbf\x12\x45\x3d\x8a\x20\xc4\xc9\xa0\x3b\x84\x1c\x27\x83\xde\x50\x63\xc8\x20\xeb\xf3\x20\x54\x15\xbd\x0e\xd3\x74\x14\x46\x37\x5e\xd5\x71\x82\xd6\xd9\x66\x93\x7b\x04\x15\x08\x06\x43\x34\x2c\x0a\x38\x3c\x39\xbc\x1f\x02\xb5\xcf\xc5\x98\x28\x76\x16\x54\xe1\x53\xec\x88\x4e\xde\xcd\x09\x1b\xb7\x6e\x13\x1a\xb3\x5b\xd7\x6d\xcc\x8c\x59\xb4\x98\x11\xca\xf7\x64\xd3\x70\x99\x4c\x42\xce\x32\x60\xd8\x02\xf3\x98\x65\x9e\x5a\x12\x03\xe7\x3c\x9e\x10\x07\x9c\xeb\x4c\x2e\x55\x07\x9c\xb7\x49\x46\xc6\x6c\xe5\x0c\x81\xe3\xee\x19\xff\x91\xf8\x29\xa1\x13\x3e\x3d\xe3\x07\xb8\x87\x92\xb1\x47\x5d\xb7\xac\x57\x00\x24\x7b\x39\x21\x94\xfb\x09\x8d\xc9\xea\x72\xec\x91\x01\x1f\xa2\xbf\xe2\x2e\xd2\x93\xd9\x33\xab\xac\x5b\x78\x6a\x56\x33\x4c\x5d\x57\x0d\xcb\xff\x94\xb1\x59\x92\x93\xfe\x36\x30\x38\x6e\x97\x1f\x5a\x3d\xe7\x9b\x8d\xc7\x71\xbb\x0b\xf5\xcf\xfd\x8c\xe4\x2c\x5d\x12\x0f\xf9\x7c\x4a\xa8\x67\xe3\x94\xa8\x09\x88\x87\x0a\x84\x50\x51\x04\xdf\xdb\x50\x4e\xf8\x75\x32\x23\x6c\xc1\xf7\xd4\x0a\x4c\xd4\x5b\xe1\x68\x22\xd1\x41\x55\x48\x5c\xd7\x19\x30\x49\x29\x5a\x6f\x75\x81\xa1\x83\x31\x5e\x17\x3e\x67\x57\x3c\x4b\xe8\xc4\x8f\xc2\x34\x15\xa8\x63\x51\x2c\x02\x1c\xad\x93\xb1\xd7\x6b\x63\x4c\x7c\xca\x62\x72\x7d\x37\x27\x1a\xa2\x83\xe1\x99\x42\x17\xe2\xb3\x5b\x4a\xb2\x37\x1a\x07\xcc\x0a\xf8\x25\x21\xb7\xfe\x84\xf0\xd7\x6c\x36\x5f\x70\x12\x5f\xf1\xbb\x94\x78\x04\xe8\x22\x4d\x4b\x92\xc7\xfb\x74\xc0\x87\x01\xad\x5a\xcd\xab\x7e\x3b\xef\xae\x3f\xbc\x17\xdd\x54\x6d\x7f\x0c\x67\xa4\x4f\x02\xe2\xcf\x43\xb1\x64\x3e\xb2\x98\x6c\x36\xc4\x9f\xb2\x9c\x57\x9f\x47\xe2\xf3\x64\xec\xb5\x4d\x37\x4b\xdc\xf4\x47\x2c\xbe\x3b\xcb\x6f\x13\x1e\x4d\xbd\xaa\x46\xb4\x8e\xc2\x9c\xa8\xa6\x02\xf9\xf8\xea\xf2\xcd\xaf\x4e\x60\x40\xb7\x35\x38\x59\x89\x2c\xf6\x5f\xa6\x62\xab\xac\xc8\x2d\xd4\x74\x86\x82\x84\x53\xcc\x7d\xb6\x24\xd9\x38\x65\xb7\xc0\xac\xc4\xdf\x21\xb3\x52\xbf\x6a\x70\x3c\xf5\xc2\x05\x67\x9b\x3c\x12\xf4\x64\x23\x72\xd3\xf0\x0e\x3d\xf5\x39\xc9\xb9\x47\x0f\xb2\x03\x86\xfa\x24\x88\x3c\x01\x23\x6b\xa2\xd2\xfa\x54\x0b\x34\x1c\x93\x8c\xd0\x88\x08\x18\xf5\xb7\xd2\x01\x91\x3d\x5c\x08\xec\x6f\x7b\x6d\x8d\xc1\x1f\xae\x2e\xe8\x7c\xc1\x3f\x10\x3e\x65\xb1\x66\x4e\x9b\x4d\xbb\x04\x9e\x79\xf8\xc0\x62\x82\x20\x16\x1f\x3f\xfd\x70\x75\x71\xde\xea\x75\x4d\xff\x76\x17\xa3\x45\x32\xe7\x56\x1f\x7b\x3d\x31\xa7\xfd\x45\xd0\xeb\xca\x87\x38\x58\x6c\x36\x71\x35\x9e\xf1\xfe\x39\x34\x0f\xe7\x29\x11\x3f\x67\x86\x84\x70\x3c\xf7\x7a\x5d\xd4\xaf\x4d\x76\x20\x50\x4d\x12\x65\x36\x1e\xe7\x84\x7f\x92\x78\xb3\xd9\x88\xd7\x67\x14\x63\xcc\x05\xb0\x28\x59\x99\xea\xae\x92\x51\x9a\xd0\xc9\x19\xa2\xd8\x23\xb8\x29\x0b\xd5\xaa\x32\xcc\xc1\x75\x69\x89\x4f\x06\xb3\x99\xeb\x2a\x4c\x6a\x63\x2c\x9e\x25\x82\x89\xe7\x7e\x47\x2c\xa7\x81\x73\xfd\x4e\xd0\xbb\x37\xe2\xdf\xcb\x57\xef\xcf\x9d\x61\x49\xba\xaa\xca\x90\xeb\x3a\x82\x79\x24\x91\x58\x06\xa1\x47\xc1\x99\xb3\x3c\x11\x50\x72\x50\x7f\xec\x51\x14\xd0\x40\xcc\xf0\xd6\x0a\xac\x43\x29\xd8\x07\xbe\x0a\xe4\x33\x6b\x7a\x04\x78\xe4\x82\xaf\xd6\x59\x7f\xe6\xd9\x49\x14\x90\xea\xd3\x69\x49\x26\xda\x64\xb3\x69\x57\x74\x62\xb3\x69\x0b\x14\xe2\xdb\x84\x63\xff\x6c\x1a\x7a\x12\xb1\x99\x68\xcc\x8c\xe7\x93\x1e\xb2\xc7\x91\x2b\x9a\xf7\xdf\x5c\xbe\xfe\xf9\xc3\xf9\xc7\xeb\xdf\x3f\x5d\x5e\x5d\x5c\x5f\x5c\x7e\xfc\xfd\xed\xe5\xfb\xf7\x97\x5f\x2e\x3e\xfe\x04\x0c\xd3\x3e\x09\x04\xff\xa5\x7d\x1e\x10\x48\x70\xd9\x5c\x94\x91\x90\x93\xcf\x21\x9d\x10\x0f\x9d\x25\x7e\x4e\xf8\x15\x0f\x33\xee\x31\xe8\x22\x90\xe9\x73\x1a\x7b\x19\x74\x15\x83\x08\x71\x22\xba\x32\x63\xf4\x25\x8d\x48\xce\x59\x26\x16\x46\x98\x50\x92\x9d\x25\x63\x8f\xb4\x31\x0e\x5d\x97\x8b\x9f\xcd\x86\x49\x41\x20\x4c\x68\xee\x65\x08\x6d\x53\x72\x4b\x5e\xd8\x42\x94\x12\x49\xb8\xeb\x7a\x25\xc5\xe3\x9b\xcd\xd8\x23\xfe\x38\xc9\x72\x03\x9d\xd7\xd3\x24\x8d\x91\x58\x30\xa8\xf0\x42\xd4\x0f\x83\xb1\x17\xaa\x8e\xe6\x58\xcc\x9f\xc1\xbc\x5c\x92\xc4\xfe\xd4\x53\x0f\xc0\x51\x20\xe6\x68\xe6\x71\x24\x5f\x58\x94\x63\x54\x75\x2c\xcc\x26\x12\x4a\xb9\xe6\xb3\x7f\xed\xb9\x6e\x29\xa8\x94\x99\x83\xde\xb0\x6f\x27\x02\x87\xb3\xb9\x03\x14\xcb\x5f\xd1\xf1\xbe\xa3\xc8\xd7\x35\x9b\x3b\x81\x7e\x7e\x4f\xc6\xdc\x01\x66\x0f\x3e\x19\x7b\x6a\xe4\x18\x63\xb6\xd9\x94\x03\x67\xaa\x3f\xd9\x2e\x57\xa9\xe3\x0a\x24\x3b\x25\x54\x5b\x09\x9d\xe8\x22\x9b\x4d\x66\x40\x92\x0c\xe8\xb0\x30\x14\x52\x3c\x97\x10\x58\x2a\xec\x55\x98\xb7\x03\x83\xc3\x46\x18\x1c\x0e\x5d\xd7\x4e\x01\xc3\x23\x21\x45\x0a\x10\x08\x0d\x40\x26\x52\x31\x66\xa9\x07\xf4\x3b\xbd\xa0\xe4\xed\xc4\xe7\x6c\x7e\x80\xd9\x93\x04\x04\xbb\xe0\x9c\xcd\x4c\x4a\x7c\x71\x80\x33\xf9\x9c\x25\x93\xa9\x49\x54\x9d\x9d\xd8\x9d\x75\x56\x1a\xde\x12\xba\x81\x23\x00\x0e\x0c\xab\x24\xc6\x98\xf6\x9d\xcf\xa2\x16\x27\x70\x5e\xc9\x76\x1c\xd3\x87\x79\x98\xe5\xe4\x6d\xca\x42\xee\x91\x81\x33\x62\x59\x4c\x32\xe7\x80\x1e\x38\x5f\x92\x98\x4f\x9d\x21\x3a\x68\x2e\xc1\xaa\x12\x55\x9f\xee\x94\x54\x09\xac\xa4\x1f\x1f\x42\x3e\xf5\x67\xe1\xca\xe3\x03\x47\x51\x4b\xe7\x80\x0c\x81\x0f\x34\x36\xc8\x14\x1d\x38\x51\x9a\x08\xee\xa9\x53\x56\x49\x5a\x2b\xa9\x08\xbb\xec\xd1\x05\xe5\x5e\xad\xa8\xee\xa9\x78\xcf\x06\xce\x2c\xcc\x26\x09\x75\x0e\x3c\xe7\x1d\x91\x23\x97\xdc\xc5\x51\x98\x28\xc1\x82\x1e\xf7\x85\x86\x57\xa0\x01\x88\x86\x28\xe8\x5a\x43\x5e\xd9\xcb\x59\x30\x1a\x25\xf8\x6f\x21\x28\x53\x2c\xc9\x75\x77\x64\x20\x6a\x96\xea\x7a\x2a\x5b\x0d\xee\xca\xf6\x35\x28\xe1\x56\xc0\x59\xbc\x57\x00\xd7\xaf\x0b\xc9\xb9\x2f\xb1\x2d\xd0\x2b\xca\xeb\x09\x65\x3a\xe7\x21\x8d\x84\xbc\xcd\x11\xe2\xd3\x8c\xdd\xb6\x28\xb9\x6d\x09\xca\x7b\x9e\x65\x2c\xf3\x9c\xd7\x21\xa5\x8c\xb7\x84\xa4\xd7\x0a\x5b\x51\x1a\xe6\x79\x2b\xcc\x5b\x61\x49\xa7\x1c\x54\xc0\x79\x4d\x44\x37\x63\x26\xaa\x2d\xc3\x6f\x29\xee\x9e\xd1\x1f\xb9\x91\xc9\xe9\xc1\x81\x82\x08\xc3\x7c\x40\x87\x67\xcc\x27\x74\x31\x23\x59\x38\x4a\x85\xbe\x5b\x25\x36\x9b\x76\x0f\x24\xa9\x1c\x27\x93\x85\xca\x6f\x77\xc1\x91\x0a\xaa\x93\x48\xb6\xe9\x31\xff\x36\x4b\xb8\xce\x43\xd0\xac\xe2\x0a\x7d\xea\x86\xdc\x49\xa8\x6c\x53\xdb\x3a\x3e\x52\xd7\x25\x1e\xf7\xe7\x19\xe3\x4c\x28\x24\x40\x11\x30\xf9\x4e\x40\x9a\x17\x85\x87\xe0\x16\x6f\x2b\x49\x46\x40\x6d\x25\xb4\x45\xfa\xfb\xfa\xc0\x8d\x6e\x4d\xa1\x1a\x64\xd0\xee\x82\x3d\x42\x91\x36\x23\x92\x4a\x78\x20\x94\x13\x4c\x81\x14\xf0\x15\xeb\xaa\xc3\x3c\x4f\x26\x74\xb3\xb1\x59\x46\x25\xdd\xf4\xce\xf8\x8f\xdb\xd4\xe9\x8c\x1b\xa8\x5b\x94\x6b\xc0\x87\xa5\x50\xc4\x44\xdf\x29\xd2\x0d\x94\xe3\xf7\xa7\x61\x7e\x79\x4b\xcd\x28\x94\xe0\x2f\x00\xe6\xba\x1e\x19\xb0\x21\xa6\x03\x36\x44\x25\xb9\xb4\x74\x8a\x1b\x4b\x4a\xf8\xea\xad\x0b\x20\xb0\x96\x94\x2a\xd0\xd4\x8b\xf8\x12\x71\x41\x11\xb6\x40\x11\x3b\xe2\x2b\x34\x2f\xac\x25\x74\x5d\x2d\xa1\x75\x71\xc6\xb3\x3b\x81\xc5\x72\xbd\x08\x9d\x86\x08\xbd\xe1\x15\x5b\xd0\x38\xa1\x93\xd7\x92\x4c\x7c\x26\x11\xd7\x7a\x1b\xc5\x23\x8f\x18\x6a\xcb\x54\x42\x51\xdb\x33\xae\xa8\x2b\x05\xae\xa9\x29\x03\x5e\x52\x59\xf1\x56\xd3\x55\x56\x90\x34\x27\xad\x7b\x5a\x2a\xa2\x50\xe8\x09\x63\xb4\x2e\x14\x3f\x5a\x8b\x0a\x03\x55\x2f\x70\x36\x0f\x64\x5b\x7a\xa1\xea\x8a\x3b\x3a\x5b\x2f\x6b\xd3\x74\x47\x16\x2d\x20\xc1\x4d\x1a\xcd\xca\xdb\x62\x64\x28\x58\x17\x42\xef\x57\xb0\x14\x2a\x8e\xa2\x94\x5f\x54\x32\xd3\x30\x8e\x70\xa2\x01\x5b\x15\x79\xa7\xd3\x99\xce\x81\xb4\x14\x7e\xe5\xd7\x9d\x1c\x16\xe5\x1b\x55\xb8\x13\x09\x5e\x9c\x6e\x36\x0b\x35\x21\xb1\xd4\x5c\xce\xd2\x0e\x9e\x78\x31\x38\x2b\x07\xc1\x42\x3f\xdf\x09\xee\xa6\x5a\xef\xe0\x14\x4c\x23\x1d\xbc\x30\xc8\x72\xe3\x65\xd6\x24\x5f\xfd\x7b\x78\xab\x44\x0b\xc8\x2a\xe0\xf1\x12\x78\x90\x60\x81\x49\x90\xe3\x6b\x8f\x23\x48\xb1\x50\xff\x60\x81\x43\x91\x8a\xb1\xc5\xc6\x16\xbe\xe2\x62\xd7\x6c\x2e\x21\x81\x60\xdc\x94\x2d\xb8\x84\xca\x3f\xa3\xae\x9b\xb9\xae\x97\x8b\xb9\xc3\x25\x4f\x93\x49\x21\x2e\xe6\x72\xaa\xed\x0c\x39\xf5\x5d\x6d\x32\x9a\xe1\x1b\x6f\x2d\xd0\x24\x11\x1f\x74\xe4\x67\x9d\x18\x24\x12\x25\xb2\x68\x47\x7d\xd1\x19\x6b\x1c\xd2\xf3\x6d\x90\x27\x29\x57\x8d\x98\x9f\x99\xaf\x58\xd5\x35\x9b\xe3\x2e\x98\x94\xe8\x2d\xee\x42\x9b\xb9\x6e\xa6\xe0\x3c\xad\x0f\xaa\xfc\x08\xc1\xa8\x29\x47\x54\x80\xce\x66\xb2\x73\x38\xee\x4c\x61\x66\x50\x56\xa7\x64\x0f\xf1\xb8\x33\x82\x99\x46\x71\x9d\xa8\xba\x33\xad\x77\x67\xa4\x71\xc1\x63\xae\xdb\xa6\x7d\x5e\x89\xc5\x29\x0a\x38\xc6\x38\xb5\x14\xa3\xd4\xd6\x74\xbc\x19\x5e\x7a\x33\xe0\x08\xc1\xac\x42\xa2\xd7\x7f\x42\x44\xb5\x51\xa8\x37\x84\x06\x13\xc5\x0e\xaf\x16\xb8\x4a\x05\x96\x95\x13\x4a\xed\x65\x67\x0c\x3d\x09\xa5\x24\xd3\x0b\x51\xe8\x0c\xbb\xc5\xd5\xaa\xaa\x95\x37\xab\xb2\x8b\x20\xc4\xbc\xdf\x0d\x46\x1e\x15\x38\xab\x1f\x4b\x59\x31\xc2\x12\x63\xc2\x0e\x93\x64\x8c\x55\x40\x56\x78\x93\x77\x98\x22\x6b\xcc\x02\xb8\xc6\x9e\xac\xc4\x9b\xe2\xac\x5c\x8c\x91\xb5\x18\x3f\x36\xea\x20\xb6\x18\xce\x2d\x31\x9c\x6b\x0d\xa6\xdd\x93\x45\xc6\xc9\x8a\xc4\x4a\x05\x25\xb6\x0a\x6a\x4a\x75\x35\x61\xce\x2b\x35\xa4\xdd\xa6\xae\xfb\xd1\xa3\x56\x17\x3e\x94\x7a\xbd\xd4\x13\x95\x3e\x59\x0a\xeb\x73\x0f\x7d\x87\xba\xbf\xf5\xf9\x19\x77\x5d\x87\x32\x4a\x54\x27\x85\x30\x9e\x85\x34\x1f\xb3\x6c\xe6\xa0\x33\xc4\x31\xdf\x2a\x6f\xd8\xfb\x66\xf3\xb0\x72\xfc\xb9\x12\x71\x15\x2f\xd8\x41\xc4\xe3\x46\x44\x3c\xae\x21\xe2\xf1\x10\x12\x35\xc1\x5d\x35\x9d\xdd\x02\x42\x9c\xf5\x05\x54\xa4\x82\x96\x7a\x1c\xc9\xc5\xee\x2c\x13\x72\x3b\x67\x19\x57\x0a\x51\x82\x5f\x7b\x21\x64\xe8\x4c\xf0\xac\xb5\xb2\xdd\x68\xdb\xbd\x96\x93\x95\x35\x42\x96\xee\x97\xd3\xe9\x2d\x70\xe4\xe5\xa2\x4e\x54\xce\xb7\xeb\x7a\x8b\x87\x16\x03\x0a\x16\xd8\x51\xe8\xab\x6a\x7c\xc8\xba\xc0\xce\x14\xdf\xb8\xf2\x16\x20\xfb\x29\x86\x60\xcc\x1d\x8b\xb2\xed\xcd\xe6\xa3\x17\x22\x94\xe0\xb8\x1a\xc8\x1c\xef\x72\x3f\x41\x98\x0d\xfb\x9a\xe1\xb9\xa2\x8a\x67\x89\xe2\xec\xb1\xa2\xa3\xd6\xca\x48\x34\xc5\xc2\xe3\x03\x99\x09\x89\x66\xfd\xb1\x22\x5e\xb1\xbd\x56\x12\x45\xc4\xf0\xec\x40\xe5\x2a\x81\x7a\x84\x1d\xba\x98\x8d\x48\x26\x31\x5f\x9a\xac\x3d\x8a\xa9\x58\xb0\xa5\x02\xa9\x2b\x1d\xf5\x69\x40\xe5\xf3\x66\xd3\x05\xdd\x29\xf5\x92\xb3\xb9\x7a\xa7\xe9\xa4\x7a\x9b\xe9\xa5\x5f\xf6\xd3\x64\xa8\x94\xcc\xa9\x30\xed\x8d\x6d\xc9\x53\x23\x7f\x52\x8a\x4f\x65\xa9\xf7\x06\x1f\x41\x53\xfd\x64\x17\x23\x4f\x1a\x31\xf2\xc4\xd6\xde\x4f\x86\x41\x57\xcc\x55\x47\x9a\xe3\x4a\xeb\x93\x13\x2e\x38\x2b\x97\x76\x8b\x68\x53\xc8\x67\x21\x22\x42\x02\x99\xa0\x5c\x12\x8d\xd7\x8a\xf2\x84\x75\xbe\x25\x65\x9d\x4e\xa8\x24\x1e\x25\x1c\x96\x05\x8d\x90\x24\x7f\xcd\x07\xa1\x19\x9f\x91\x1a\x9b\xeb\x0d\x2b\x61\x4a\x3d\x14\x6a\x15\xad\x8d\x04\x26\x67\x3b\xac\x09\x60\x65\xd5\x05\x44\x46\xce\xbe\x21\x77\xb9\x97\x23\x7f\x16\xce\xb7\xb6\x4e\x4a\xb9\xf6\x86\xdc\x05\xa4\x80\x7c\x40\x86\xb0\x0e\x33\x12\x06\x6f\x3c\x91\x40\x05\x2a\x10\xf2\x73\x96\xd9\x46\x78\x29\xe3\x18\x72\xe2\x8b\xe2\x1d\x22\x7f\x0a\x24\x25\x12\x7f\x9c\xa4\x9c\x64\xde\xce\x46\x8b\x20\x62\x6a\x88\x0c\x9b\x49\x2e\xe9\xd2\x5f\x71\x8d\xff\xb8\x2e\xab\xde\xbc\xd3\x82\x81\x90\x74\x52\x33\xe1\xdd\x7e\x3a\xe8\x0e\xc5\xf0\x82\x48\x3f\x40\x8c\x89\x9f\xcf\xd3\x84\x7b\x4e\xc7\x41\xd5\x3e\x52\x6b\x71\xe0\xc5\x7d\xa7\xe3\x1c\xc4\x81\xe3\x58\x14\xfa\x93\xd1\x7e\x94\x2e\xb7\x83\x55\x47\x8d\x58\x75\x64\x63\xd5\xd1\x50\x99\x5d\x33\xcc\xfa\x1f\x3c\x69\x7b\xe2\x90\x7a\x14\x95\x6b\xe9\xca\xa3\x90\x09\xbd\xad\x6c\xf6\xad\x0d\x92\xef\xd9\x4c\x40\x40\x6d\xb1\x86\x57\x74\x41\x2c\xde\x83\x86\xac\x57\x66\xd9\x09\xd5\xa1\x21\xff\xbd\x5a\xda\x8d\xdf\x7e\x36\x6c\xdc\xa8\xef\x0a\xf5\x6a\x12\xf6\x01\x33\xc8\x57\x17\xb3\x0f\x68\x51\x8d\xf7\xc2\xd2\x7e\x24\x12\x3b\x99\xd2\xfe\xd5\x7a\x51\xf2\x80\x59\x0e\xca\xc2\x26\x16\x9c\xa3\xde\x38\x45\x65\x4c\xca\xc8\x3c\x0d\x23\xe2\x3d\x95\x24\x49\x11\x1b\x4d\x59\x38\x9b\x3f\x9d\x40\x13\x8a\xf3\x01\x19\x16\xf6\x06\xc2\x2b\x33\xed\x14\x53\x1b\x61\xba\x43\x6d\xe1\x16\x13\x04\x19\xd6\x03\x66\xf5\x95\xc9\xca\x05\x9c\x60\x6d\xdb\xd6\xc3\x51\x03\xb1\x0c\xdb\x72\x5b\xb3\x2f\x47\x64\x46\x99\x8b\x17\xa9\x32\x61\xc9\x91\x46\xe2\x85\xaa\xd1\x09\x9c\x5b\x65\xff\x48\xc5\x4b\xf5\x1c\x98\x4c\x03\x85\x6c\x10\x0e\x31\x1f\x84\xc3\x03\x3e\x88\x86\x4f\x0f\x3b\x4c\xfe\x40\x36\xc8\x87\x98\x62\x8c\xf3\x3e\x1f\xe4\xc3\x0e\x1b\xa4\xc3\x80\x0f\x2e\xbc\x1c\x0d\x21\xab\x46\xff\xad\xb6\x84\x5f\x66\x59\x78\x67\x29\xcb\xe3\x84\xc6\x7d\xf5\x23\xb0\x99\x98\xe5\xcc\x05\x78\xaa\x4a\x5e\xd6\xed\x06\x7a\x8f\x57\x9a\xe1\x48\x40\xfc\x3c\x4d\x22\xe2\x75\x61\xdb\xca\x90\x8c\xbd\xa6\x06\x2f\x04\xc0\x4a\x0a\x5c\xbd\x6a\xa4\x58\xd2\x98\x80\x31\xad\x76\xab\xc5\x88\x1e\x2a\x59\x56\x6e\x26\x87\xa1\x42\x08\x77\x34\x9c\x11\x07\xa8\x90\x1a\xc6\x2c\x3b\x0f\xa3\x69\xbd\x51\xe2\x9b\x94\xeb\x46\x8c\xe6\x2c\x25\xfe\x6d\x98\x51\xcf\xf9\xe7\x8c\xc5\xd2\xc7\xa2\x2c\xf1\xcf\x56\x92\xb7\x62\x32\xcf\x48\x14\x72\x12\x43\x6b\x91\x93\x96\x55\x8c\xfe\xb3\xed\xa0\xd2\xea\x6f\xbe\x12\xea\xec\x98\x9e\x11\x9f\xd0\x70\x94\x92\xd8\x75\x13\x8f\x0a\xfd\x80\xeb\x15\x95\xfb\x73\x36\x9f\x93\x0c\xdf\xec\xbc\x42\x50\xbd\x29\x77\xbd\x6a\xe5\xca\xb7\x08\x38\xa6\x1e\x07\x82\x04\x55\x07\x8b\xbf\xbe\xf3\x94\x98\x2a\xdd\x48\xe4\xde\xbd\x9f\xe4\x6f\x48\xce\x33\x76\x47\x62\xe3\xc6\xb1\x36\x06\xb7\x40\x94\x83\x5c\x50\xa4\x5c\xa8\xee\x61\x96\xb1\xdb\xab\x2a\xc9\x79\x96\x8c\x16\x5c\xa5\xc6\x69\x32\x9f\x93\x38\x68\xf7\x40\xf7\x28\x58\x17\xc5\x19\x69\xe8\xf5\x27\xaf\xea\x00\xc8\x47\x35\x46\xf5\x5c\x96\x53\x49\x36\x17\x5d\x17\x45\x94\x6c\xfe\x56\x48\xec\x08\x88\x2f\xe9\x83\x20\xa5\xf8\xbd\x57\x2f\x69\x32\xa0\xa1\xf1\x47\xb7\x67\x26\x33\xf7\xc5\xc8\xfc\x11\x5b\xd0\x38\xcc\x12\x92\x1b\xd5\xea\xbe\xd2\xf3\x30\x8e\x13\x3a\x11\xdd\x64\x59\x32\x49\x68\x98\x7e\x2a\xbb\x4b\x6a\x3d\xac\x8d\x0b\xef\x1f\xb2\x35\x18\x8d\x24\xaf\x3c\x7b\x2c\x4d\x63\xb5\x5a\x42\x3b\xdf\x97\xd5\xdf\xd3\x68\x5f\x2b\x48\x81\x13\x8e\x72\x96\x2e\x38\x71\x80\xe0\x97\xaa\xe1\x72\xcc\x20\x50\xce\x46\xa9\xd7\x72\x3f\x2a\xee\xd7\x2a\x66\xf4\xe7\x79\x1c\x72\xc1\xdc\x02\xaf\xa9\x38\x6e\x77\x61\xeb\x0b\x95\x23\x37\x85\x2b\x2c\xfe\x52\x23\x6b\xc4\xcf\xd9\x8c\xec\x0a\x21\x62\xe1\x51\x6b\xdb\xd2\x5a\x75\x72\x87\xb4\xc6\x27\x7e\xa9\x1b\x25\x07\xed\x1e\x38\xb3\xdc\x01\xe7\x0b\x19\xdd\x24\x82\xe0\x7f\x60\xdf\x1c\x70\x2e\x1d\xa5\x74\x47\xd3\x30\x7b\xc9\xbd\x2e\xf2\x39\xfb\x59\x00\xf3\x75\x98\x13\x0f\x1d\x18\x7a\xd8\x13\x4c\xb8\x7b\xc6\x2a\x43\x32\x33\x26\xcd\x0c\xf3\x01\x13\x1a\x53\xd6\x77\x9c\x83\xec\x80\x06\x4a\x59\xbd\xcf\xfb\x44\xda\xe2\x7d\xb9\x10\x07\xc9\xd0\x90\xcf\xa4\xb0\xf6\x35\xab\xb1\xfc\x50\xf9\xf9\x34\xaf\x73\x01\xe7\x2f\xdb\x53\xe8\x84\xf3\x79\x7a\x27\x17\xb7\x23\x49\x52\x85\x5a\x7e\x46\x66\x6c\x49\x5e\x9a\xe5\xee\x39\xab\x4e\x89\x57\x0e\xb2\x57\x94\xea\x63\x85\x59\x8e\xd3\x90\xcb\xd9\xbc\x39\x43\xda\x9d\x1a\x73\x94\x72\xd3\x98\xa5\x95\xa4\xc6\xbc\xdb\x24\x4d\x5f\x4f\x43\x3a\x21\x8d\xf9\x83\x5f\x3c\x5b\x9b\x1e\x62\xc7\x8c\x26\x4e\x72\x81\x2b\xe7\x4b\x42\xf9\xfb\x24\xe7\x84\x92\x2c\xf7\x50\x1d\x3d\x15\x58\x2e\xa9\x06\xac\xeb\xda\x0d\x54\x7b\xca\xba\x9c\xdc\xe5\xb4\xc1\xaa\x6a\xab\xe6\xed\xe7\xbd\xb2\x62\xe5\x53\x52\x13\x1b\x03\xa5\xcb\x56\x35\xfc\x51\xa9\xf3\xd4\x5f\xc8\xc5\x26\x2d\xc0\x98\x81\xa8\xdc\x0f\xe3\xb8\x36\x22\xcf\xc9\x48\x9e\x7c\x13\x5c\xd1\x2e\x0e\xeb\x79\x98\xe7\xc9\x52\x99\xf4\xb5\x47\x51\x64\xed\xc3\x5a\x7b\x27\x5b\xda\x5a\x65\x72\xa9\x2c\x99\x42\x30\xe2\xfb\x85\xdf\x80\x9f\x85\xbb\x3d\x13\xb5\xd6\xba\x01\xc9\x66\x43\xbc\xc8\x0b\xed\xdd\x7a\xdd\x38\x64\xca\xef\x31\x44\x85\x97\x81\xd9\x62\xdb\x1a\x14\xf5\x6d\x93\x42\x8e\xca\x17\x9a\x9e\xe3\x0c\xa8\x4f\x44\x27\xf2\x73\x45\x28\xc4\x3a\xb1\xfc\x77\x7e\xf5\xd0\xda\x5a\x50\xb5\xa2\x9b\x8d\x45\xd1\xf0\x1f\xde\x3d\x8c\x05\xb6\x79\x5f\x1e\x4d\x49\xbc\x48\x89\xa2\x8e\x36\x55\xfa\xc9\x78\x56\x02\x3f\xdb\xd7\xb2\xeb\x7a\x91\xe0\xd5\xe9\x4b\x9a\x28\x87\xd3\xb7\x59\x38\x23\x5e\x53\xd5\x56\xd3\xd8\x23\x78\xbb\x93\xd8\xea\x99\xc4\x17\x85\xb8\x7b\x50\x86\xdb\xd0\x15\xd2\x49\x0d\xbc\xfb\x44\xac\xc6\x2a\xcd\x84\xd5\xab\x94\xb2\x4b\x0d\x8d\xa5\xfa\xb5\xd5\x10\x1e\x0c\xcb\x57\x66\x26\x75\xb9\xad\xc9\xec\x01\xb7\x81\xfb\xbb\xe5\x8e\x25\x48\x2e\x71\xdd\x76\x92\x7f\x0c\x3f\x7a\xf6\x1e\x31\x42\xae\x9b\xe4\x6f\x13\x9a\x48\x36\x54\x7d\xfe\x77\xc5\x84\x6c\xdd\x9b\x37\x09\x96\xa5\xca\xe9\x38\x67\x5a\x87\xd0\x92\xbf\x91\xf6\xd5\x86\x0f\x94\xaa\x85\xd6\x85\x1a\x74\x0c\xd7\xfd\xdd\xe3\x03\x3a\x14\xf4\x99\x61\x67\xbe\x72\x90\xf4\xc1\x14\xa4\x8c\x0e\xe5\x06\xe5\x01\x13\x7c\x4d\xb4\xf8\x37\xe9\xc9\xa4\x9d\x0d\x9f\x26\x8f\x71\x65\xfa\x9f\xba\x92\xbc\x57\xd8\x96\x7c\x55\xf3\x50\xc8\x70\xbb\xcd\x5c\xb7\x89\x0d\x6f\x97\xa7\xa2\x58\xc9\x85\x85\x68\x14\x93\xec\x47\xa6\x7e\x0b\x65\x22\x6c\x57\xb4\xe4\x9f\xce\x01\x3f\x70\xfe\xe9\x40\x28\x9f\xa9\x78\x3e\xab\x49\xe6\xe1\x81\xd3\x32\x2c\x4c\x48\xe4\x19\xf9\x63\x91\x64\x24\x6e\x8d\xee\x5a\xce\x41\x52\xcb\xa5\x2d\xd9\x4c\x8b\xb3\xd6\x2d\xcb\x6e\xa0\x35\x22\xad\x7c\x91\x11\xf1\x22\xa1\x51\xba\x88\x49\x2b\xe1\xad\x11\x19\xb3\x8c\xa8\xaf\xdb\x4e\xb9\x59\x98\x49\x98\xfe\x2f\x1e\x48\x23\x52\x27\xe7\x61\x26\xe6\x4a\x5a\x94\xd4\x4f\x87\xd0\x58\xcd\x65\x99\xab\xe6\x55\xbc\x51\x79\xca\x4a\x64\x72\xcd\x7c\xab\xb7\xaa\x84\xb6\x04\xd9\x89\xea\xad\xf9\x50\xda\x83\x54\x11\xa5\x69\xaa\x37\x2a\x7b\x08\xff\xc0\xff\xab\xa5\x90\x23\x6b\x6e\x09\xf9\x77\x6c\x37\xfc\xa3\xf2\x42\x15\x12\xce\x3f\x74\x43\xf4\xa0\x87\xfc\x88\xd1\x28\xe4\xde\x3f\x4a\x95\xd0\xb2\x8c\xf0\x3e\xf3\x33\xb2\x24\x99\x90\x92\x02\xa6\x3c\x09\x09\x76\x84\xb0\xec\x00\x25\xd8\x89\x52\x16\xdd\xdc\x26\x39\x71\x80\x89\x24\x5b\x50\x4e\xb2\xea\xad\xe5\xa3\x4c\xb6\xad\xd6\x83\x2e\x74\x87\x0f\xea\xe8\x4c\xe8\xe8\xc6\x6c\xf4\xd4\xfb\xed\x60\xf3\x5b\x07\x3d\xdd\x6f\x2f\x23\x3e\xcf\x92\x99\xf4\x6b\x85\x1c\x87\x65\x3d\xdf\xbc\xb0\x69\x59\x74\x94\x2f\x69\x4e\xc2\x2c\x9a\x7a\x4f\x61\xf3\x5b\xfe\x54\xfa\xc4\x9e\x85\x83\x7c\xe8\xba\xd2\x18\x29\x1e\x2b\x7b\x24\x08\x49\xab\xae\x6a\x5e\x2a\x11\xbd\x95\x93\x79\x98\x09\xa1\x58\xa0\xf2\xed\x34\xe1\xa4\x95\xcf\xc3\x88\x78\x39\x6a\x85\x19\xd9\xd1\x3d\xc3\x56\xc4\x66\xb3\xb0\xe5\x01\x92\xfe\x12\x24\x8c\x7d\xad\x81\x46\xf8\xe9\x6f\xf9\x13\xf8\x2d\x7f\xb2\xf9\x2d\x3f\x78\x0a\xa9\x82\x53\xde\x1f\x84\xe5\x54\xe5\xe5\xf4\x0d\x64\x17\x15\x90\x22\x34\xe8\x0e\x87\x08\xb6\xde\xf5\x86\x43\x53\xda\xd4\x90\x1f\xf4\x10\x1a\x06\x83\xd0\x18\xe2\xbc\x14\xa7\xdb\x90\xad\x26\xcc\xeb\x49\xfb\x7b\x3b\x09\x12\xb4\x6b\x12\x09\x2d\x8f\x61\xc1\x31\xe2\x45\x44\x9a\xcd\x92\x8e\xdc\x71\x1e\x18\x0f\xea\x4e\x4f\xc2\x59\x22\xc1\x81\x03\x4e\xc7\x9a\x7d\x8e\xfa\x5e\xad\x24\xe6\xa2\xa1\x2e\x10\x14\x84\x5b\x59\x07\x2a\xaf\x27\xf2\x88\x19\x2a\xd7\xbe\xe7\x7b\xf1\xa5\x6e\x01\x01\xcb\xdf\x6b\x26\x77\xdc\x9f\x7a\x5e\x3f\xf8\xad\xb3\xf9\xed\x00\xf5\x7f\x8b\x9f\xfc\xe6\x8b\xff\xc8\xf3\x9f\xa0\xa7\x08\x12\x7c\x90\x89\x25\x16\xe2\x6c\x70\x38\x94\x84\x30\xa9\x0c\xd5\xc9\xd8\xeb\x0a\xec\xa9\x50\xe7\x2f\x0e\x52\xf5\xe7\x66\xc7\x44\xfb\xff\x86\xda\xed\xf7\x2f\x73\x27\xc8\x31\x3d\x1b\x65\x24\xbc\x51\x7e\xbd\x7f\xd1\x6e\xc0\x7f\xc9\x9c\x40\x0b\x60\x41\x8e\x59\xb5\xc5\x9d\xa3\x01\x1f\x3e\xed\x75\xbb\x4f\x92\x42\xee\xd6\x4c\xe5\xa6\xd3\x66\xe3\x2c\xe5\x8e\x49\x58\x1a\x81\x4c\x56\xbf\xdc\x25\xdc\xb7\xd9\xf4\x98\xcd\xc3\xe0\xb1\xb5\xdc\xb3\x63\x89\x74\xbf\x4b\xdd\xc8\x23\x90\x49\x6e\x56\x48\x33\x48\xa3\xd1\x47\x60\x12\x69\x62\xda\x62\xf6\x7e\x57\xb6\x99\x6c\xc0\x87\x07\x98\x3e\xf1\x9c\x8e\xc2\x36\xd6\xe9\x0d\xa5\xe7\x1b\xd2\x55\x83\x62\x0e\x09\xc1\xeb\x52\x2d\x2a\x4d\x9a\x50\xd3\xa7\x03\x81\x54\xb6\x58\x12\xb4\xbb\xb0\xa5\x47\x48\x0b\x8a\xd6\x7c\x03\xcb\x63\xa9\x00\xa3\x41\xd7\xdf\x96\x3a\x5c\xb0\xce\xa7\xc9\x98\x07\x6b\xc9\xe8\x82\x5e\xb7\x0b\xa4\x6a\x65\x4c\x1b\x5c\xf3\x6d\x53\x04\xc5\xbc\x6e\x22\x95\x7e\xdd\x75\x2b\x7b\x22\xc8\x68\xe5\xc7\xa8\x88\x95\xd0\x65\x2d\x39\x32\xc4\x99\xb1\x49\xe4\x86\x24\x97\xac\x4c\xb0\xc4\x9a\xd9\x34\xc2\x79\xdd\x4a\x9a\x8a\x17\x5b\x06\x51\x58\xe0\xb5\x64\x6f\xc1\xad\xb7\x2e\x20\x82\x64\x10\x0d\x11\x10\x1a\xdb\x2f\x0e\x92\x41\x3a\xec\x84\x83\x74\x88\x6c\xbb\x93\xb6\x96\x48\xb7\x9e\x10\x16\x75\x17\xa0\x42\x1b\xab\x0c\xd0\x0e\xef\x01\x5a\xe5\xf2\x61\x8c\x6e\x72\x7f\xa3\x82\xe0\x36\x4c\x34\x14\xc2\x1a\x78\x72\xcc\xb6\xc0\x1c\x99\x25\xac\x7b\x15\xe1\xdf\xbd\x03\x8a\xfa\x83\x03\x0a\xdd\x61\x90\x11\x8f\x42\x02\x21\xe4\x48\xf3\x34\x69\xf9\xf5\xf4\x1e\x5d\x24\xaa\xd0\x8e\x17\x38\x1a\xf4\x86\xc8\x18\xdd\xf7\x15\x3b\x30\xc5\xb4\x67\xab\x2c\x64\x32\x64\x29\xe9\x35\xa1\x0b\xe9\xa9\x13\xe5\x5c\xb7\xa1\xa0\xae\x4d\x5a\xb2\x24\xa0\x13\x20\x25\x54\xbb\x05\xcc\x33\x89\xf0\x97\xfa\x44\x80\x01\xf4\xd1\x23\x01\xbd\x63\x77\x53\xfe\xc3\xc6\x44\x69\x74\xe9\x33\xeb\x55\x65\x68\x94\x22\xa7\x47\xf1\x58\xee\xd2\x28\xa9\xb6\xae\xf3\xcb\x39\xdb\xaa\x4c\x49\xd4\x72\x06\x39\x9b\xcb\xe9\x93\x7b\x6f\x39\xce\x06\x6c\x78\x96\x19\x03\x46\x56\x1a\x2c\xc4\x7b\x21\xe0\x2b\x76\xfb\x79\xb7\x7f\xd0\xd4\x3d\xe0\xc6\x4e\x08\x74\xdb\x10\x88\x74\x33\x89\x69\x25\x54\x8d\xe4\x60\x83\x04\x47\xb2\xc9\x14\x73\x7f\x9e\x25\x2c\x4b\xf8\x9d\xe5\x06\x55\x9a\x06\x63\xbc\x9e\x67\xc9\x2c\xcc\xee\x76\x48\x00\xc5\x8b\x01\xa9\x76\xcf\x06\x64\xf8\x63\x34\x20\x43\xd7\x6d\x73\x9f\xe4\x51\x38\x27\x5f\x12\x3e\xfd\x6c\xba\x2c\xa1\x59\x52\x6b\x51\x1c\x44\x71\x84\xe0\x56\x79\xcd\x51\x54\x40\x4e\x22\x26\x3a\xd8\xd4\x5a\x85\x9a\xa4\xbe\xec\x19\x5e\x0c\x68\xad\x23\x7f\x7d\xa0\x23\x4c\x77\x24\xa1\x9e\xf8\x54\x76\xa4\xe3\xd9\x0d\x2c\xd4\x76\x4e\xb0\xd0\xfb\x38\xc8\xf4\x53\xb9\x9c\x9a\xc6\xd2\x66\x65\x55\x51\x48\x4d\xc0\xb4\xa0\x5d\x27\x5f\x04\xf5\x1d\x0d\x58\x27\x70\xca\x61\x3b\x67\x0b\x45\x6d\x16\x10\x0f\xf8\xd0\xd3\x76\xf8\x1d\x8a\xb4\x10\x0b\xc5\xcc\x5b\x50\xb6\x91\xd5\xb4\x42\xbd\xfc\x86\xa0\x51\x25\x38\x81\x9d\x25\x11\xd4\xbd\x25\x0a\xb8\x21\x64\x7e\xcd\x26\x84\x4f\x49\x66\x16\xdc\xf1\xa3\xd8\x81\x21\x5f\x62\xe9\x69\xec\x11\x5c\xa0\xc2\xd9\xcc\xa6\x78\x5b\x84\x4c\x3b\x0d\x8d\x53\xc6\x04\xd5\xd3\xa0\xab\x8f\xa3\x04\x9e\xdc\x6e\x0f\xfb\x7a\xb8\x15\xbf\x8c\xc4\xcb\x3a\x43\x08\xf7\xee\x90\xd1\x41\x3e\xfc\x31\xf1\x98\x60\x07\xae\xeb\x6d\x83\x78\x10\x0d\xb1\xce\xed\x50\xc1\x17\x80\x0e\xa2\xe1\x5f\xc5\xab\xfc\xde\x0f\x72\x81\xd2\x82\x3b\xc8\x2d\x0f\x03\xc2\x93\xc7\xd0\x2c\x29\xbb\xfd\x8f\x4d\x02\x6c\x23\xab\xa8\xce\x01\xc7\x9e\xa0\x6d\x8f\x04\x01\x6f\xa2\x9d\x79\x84\x14\x96\xcb\x53\x6c\x95\x07\x47\x8b\x69\xcf\x68\xd6\x40\xba\xfe\x58\x90\xec\xee\x8a\xa4\x24\xe2\x2c\xf3\x18\xaa\xea\x56\x8e\xa1\xd2\x49\x69\xe7\xab\xd2\x93\x8d\x95\xe5\xeb\x6a\xc9\x97\x97\x9f\x3f\x5e\x7c\xfc\x29\x68\xfd\x53\x8e\xc0\xf4\xef\x9f\xad\xd9\x22\x17\x3a\x73\x2b\x9a\x26\x69\xdc\x62\xe3\x56\xc2\xf3\x96\xaa\xb5\xa5\x0b\xb5\x1d\x04\xe4\xcc\xc8\x0c\xfb\x71\xa7\x42\xbe\x1c\x27\x06\xf9\x22\x9c\x58\xc8\x97\x6e\x2d\x47\x85\x3b\x35\x9c\x5a\xe0\x74\x57\xa3\x88\xc5\x4b\xcb\x5b\x1e\xe6\xd2\xdf\xe6\x3d\xbb\x35\x96\x7b\x18\x8b\x22\x36\xda\xcd\xc4\x8b\x91\xf1\x97\xd7\x8b\x72\x8a\xdf\x7a\x0c\x0d\x16\xc3\xb3\x68\x30\x1b\x76\xa6\x3f\xe6\x83\xf9\xb0\x09\x8f\xe6\xc3\x0e\x16\x79\x1d\x4f\x15\x44\x08\xa2\xc1\x7c\x78\x30\xfd\x6b\x3e\x98\xed\xf9\x42\x70\x52\x51\xa4\x23\x8a\x34\xd0\x8b\x9b\x9d\x8f\x14\x4f\x1b\xa9\xef\xa2\xc1\x62\xf8\xf4\xb0\x33\x7d\x7a\x08\x4b\x1c\x36\xf0\x48\x98\xd8\x7e\x01\xcb\xea\x90\x40\x3c\x44\x70\xb7\x95\x67\x8e\x46\xc4\xd5\xd1\x08\x58\xe1\x51\xa7\x69\xa4\x93\xce\x9d\x59\x90\xab\x8a\x3b\x94\xd4\x39\x1f\x2c\x86\x9d\x29\xac\x10\x74\xc5\xa8\x24\x06\x19\x53\x1d\xb3\x86\x29\x33\xb0\x77\xeb\x51\xbc\x2e\x60\x0e\xb2\x82\x4c\x10\x3b\x6f\x25\x29\x37\x85\x31\x38\x0e\x02\x2a\xd6\x26\x10\x43\xfc\x06\xab\x8e\xfc\x74\xe8\xa8\x5d\x48\xb3\x5c\x4f\x1f\x58\xae\xc9\xd8\xfb\xb2\x67\x9d\x4a\xdd\xc2\x5e\x98\x89\x3c\xb4\xa4\xb6\x38\x5d\xd7\xde\x7c\x14\x4a\xff\xce\x1e\x5f\x7d\x45\xd3\x3f\x23\x12\x34\x88\x3e\x3b\x42\x42\x5d\xfe\xdc\x5a\x51\x19\xbe\xf0\x18\x92\x0b\xab\xb1\x48\x6f\xb8\xd9\x38\x42\xdb\x1e\x0c\x8d\xf2\xc8\xfd\x11\x99\x86\xcb\x84\x65\x4a\x8b\x6c\x71\x12\x84\x78\xc0\x20\x1b\x5a\x8a\x64\x8b\x8a\xb7\x84\x78\x0c\xd9\x6f\x99\x79\x0b\xed\xae\xc9\x30\x6a\x66\x88\xab\xaa\x8d\xf0\x1d\x36\xb0\xdd\x1c\x22\x39\x2f\xac\x8d\x71\xbe\xd9\x84\x5a\x27\xc7\x18\x47\x07\xbd\x0a\xa8\x0f\x0f\x5b\xcb\x45\x3b\xa2\x90\x2d\x1d\x55\x50\x8f\x6d\xc6\x35\xc7\xa5\x94\xcd\x5c\x37\xf6\x52\xb5\xfb\x84\xfe\x1a\x7b\x0b\x29\x8b\xa1\xcd\xa6\x92\x32\x74\x11\xf9\xfe\x47\x51\x42\x15\xde\x6c\x8c\x74\xad\x0b\x28\x4a\xa2\x2a\xe1\x6c\x2e\x0a\x54\x92\xb5\x2e\x23\xde\xcb\x3a\x74\x61\x18\x63\xbb\x6e\xe5\x9e\x87\x60\x86\x6b\x9d\xd2\xae\x78\x08\xa6\xd8\xaa\x44\xba\xed\x21\x18\xe1\x7a\xe3\xb4\xac\x7b\x59\x1b\xe6\x78\x6b\x4c\xb3\xda\x00\xa6\xdb\xbd\x1d\xc1\xe4\x01\xf6\xce\x04\x49\x69\xb7\xb9\x5c\x34\xbf\x84\x59\x22\xf7\x26\x84\x0a\x31\x51\x47\x3f\x95\x13\x68\x22\x9b\x16\xaf\x08\x8d\xf5\x8b\xd9\x66\xd3\xde\x2e\x34\xd5\xef\xaa\x52\x23\x41\x8f\x76\x1b\x78\x75\x27\xcf\xf8\x52\xde\xd0\xd2\x6c\xbb\xa5\x71\x43\x4b\xa3\x9d\x96\xa6\x08\x2e\xf1\xdd\x66\xb3\x3a\xf3\xe6\x9b\xcd\x72\xb3\xb9\x54\xa2\x83\x26\x07\xb8\xdd\x05\x99\xa1\xcc\xf2\xe1\x20\x3a\x10\xfa\xd0\xa5\xd0\x96\xf0\xae\x9d\xc8\x54\x4c\xfa\xba\xd9\xa0\x6a\x9e\xf4\x65\x6e\x40\x0a\x2f\x41\x75\x1f\x07\x76\xe0\x25\xd2\xb1\x2d\x09\x1c\xa7\x81\x39\xa8\x53\x2b\xdb\xe8\xfe\xaa\x91\xee\xdc\xef\x28\x80\xe4\x0e\x7f\x23\x5d\x24\xa0\x2c\xb6\x5a\xa0\x2d\xc0\xac\xe9\x40\x5b\x72\xef\x15\x52\x4b\xe7\x5f\xa8\x4f\x59\xd0\xee\xc1\x9e\x49\x0c\xda\xbd\x02\x24\x31\x36\x44\xfd\x99\x4d\xd4\x7b\x7f\xce\xaa\x51\x49\x1a\x19\x66\x06\x2c\x09\x66\x35\x23\xc6\xfd\x92\x86\x74\x73\x97\x26\x5d\xb3\x02\x76\x76\x6b\x2c\x2f\xae\x9a\x64\x31\xc4\xc9\x80\x0e\x3b\x5e\xde\x97\x39\x5b\x92\xed\x30\xe8\xd6\x27\xfe\xc2\x6b\xf0\xdd\xc0\x37\x42\xd6\x11\x02\xea\x34\x89\x89\x81\xcd\xf3\x7b\x45\xfc\xfb\xe4\x52\x51\x8b\x03\xce\x96\xae\xbe\x2d\x99\xf2\x46\xe2\x49\xf1\xb7\xe6\x5a\x1b\x8c\xa4\x3b\x2d\xa8\x13\x43\xe1\x8c\x14\x08\x59\x0c\x4f\xf0\x5b\xe3\x0e\xfb\xa3\xf6\x40\x56\x8e\xb0\x7f\x2d\x3d\x8f\xa5\x3f\xee\x5f\x2b\x7f\x63\xed\x7d\xfb\xa3\x26\x93\x72\xbc\xf2\x18\xbe\x2f\x46\x57\x8d\x44\xa5\xa5\xe9\xd7\xaf\x5c\x98\x06\xce\xaa\xc3\x16\xbc\xc3\xc6\x9d\xaa\x1b\x8e\xd0\xea\xa5\xe0\x2c\x6b\xeb\xdd\x53\x5b\xef\x51\xb5\xb5\x7b\xb6\xe9\x29\x52\x3e\x9f\xd2\xe9\xa2\x9c\xc3\x93\xc7\xd9\x45\x56\x52\x2f\xbb\xb3\x6d\x4e\x15\x26\x7f\xc7\x84\x58\x6e\x1f\xb5\xb9\x98\xcc\x17\x2f\xa3\x88\xa4\x24\x93\x4b\xf2\xac\xdc\x1f\x4a\xb6\xb7\x2c\x2a\xdd\x60\xeb\x9b\x7f\xb6\xd4\x96\x77\x6b\xc6\x96\x24\x6e\x71\xd6\xfa\xa7\x3d\xe2\x7f\x56\x9b\x73\x21\x8d\x5b\xb7\x49\x9a\xb6\x28\xe3\x6a\x5f\x6e\x2e\x08\x05\x89\x5b\x09\x6d\x8d\x17\x7c\x91\x91\xd6\x92\x64\xb9\xa0\x0d\x42\xc9\xf8\xa4\xd4\x96\xaf\xb9\xf1\xb2\x0b\x71\xd5\xbf\x7e\x12\xf0\xed\xee\x43\x8e\x9b\xac\x46\x10\xe1\x6b\x2f\x47\x90\xe2\xb5\x11\xac\x82\xca\x2f\xaa\x80\x05\x6e\x02\x7e\x45\x3e\x18\xa6\x06\xe8\x19\xa6\xd6\x9a\xd0\x9a\xb0\x14\x5e\x21\xb4\xa5\x8b\xbc\x81\x25\xb4\x48\x21\x14\x1d\x4f\x1f\x41\x13\xfd\x49\x3c\x66\x12\x8b\x07\x48\x51\xcd\xc9\x2b\xc6\x7a\x1f\xaa\x12\x8f\xca\x3d\x83\x8e\x83\x60\x8e\x79\x7f\xb1\xd9\xc4\x9b\x4d\xf4\x97\x43\x8c\x71\xfa\x97\xc3\x7e\x12\x84\x41\x0e\x63\xcc\xfb\x49\x90\x1b\x0f\x60\xe9\xbd\x3b\xf7\x54\xa9\x9e\xeb\xa6\xe6\xa1\x1d\xbb\x2e\xef\xab\xf3\x3a\x9d\x5e\xc0\xb4\x50\xc2\xd9\x3c\x18\x7b\x4c\x4b\x1d\xca\xc1\x57\xa4\x8d\xb8\xa1\x1c\x80\xe7\x1e\xd3\xd2\x4a\x51\x78\xc4\x58\xf2\x63\xb2\x4c\x22\xf2\x29\x59\x91\xf4\xb3\x98\xae\x1f\x0f\x37\x9b\xf6\xdf\xc4\x60\x2c\xa9\x83\x1a\xef\xda\xd2\xb0\x6e\x19\x93\x58\x49\x61\xb5\xa2\x36\xdb\xb6\xf3\x4d\x35\x86\xc0\xc8\x58\x5b\x93\xb1\x37\xb2\x1b\x88\xfb\xe5\x21\xa1\xbc\x3a\xc4\xd8\xc9\x6b\x3b\x18\x07\x46\x38\x0b\x3a\x91\xb6\x2a\x55\xaf\xa4\x64\x07\x53\xab\x5f\xf3\xfb\xeb\x54\x8e\xd5\x5a\x66\x14\x35\xde\xd6\x5e\x28\x71\x13\x42\xd7\x9d\xa1\x74\x30\x1b\x62\x35\xa2\x34\xe4\xe4\x28\xf6\x9c\x83\xe9\x81\x33\x5f\x41\xcb\x39\x18\xa9\x87\x2e\x72\x20\x1d\xc4\x43\xdc\x85\x74\x30\x97\x3f\x35\x17\xa8\x0a\x1e\xd5\x41\x95\x65\x1d\x04\x9d\x5e\xd0\x83\x49\x6d\x04\xf2\x90\xbf\xac\x76\xf4\x64\xa9\x2a\x9e\x3e\x99\xd4\xab\x8e\x0f\x1c\xd1\x8f\xb9\xdc\x08\xb9\xc3\xeb\x9a\x87\x58\x60\x61\xa3\xe5\xe1\x5d\x51\x4b\x25\xbc\xdc\xd5\x28\x68\xe9\xd9\xa0\x73\xd3\x32\x5d\xea\x90\x57\x56\xf6\x96\x16\x59\x2f\x22\x45\x95\x2d\x8a\x20\x88\xeb\xaa\x42\xa6\x3b\x83\x39\x05\x54\x14\xd1\xd0\xe4\x17\x0f\x9b\xce\x80\x9a\x81\xfd\xbd\x51\xe4\x32\x5d\xe7\xbb\x36\x1b\xe9\x50\x58\x0d\x1c\x6c\x97\x12\xba\xc7\x57\xb9\x2d\x16\x39\x1d\x90\x61\x9f\xfb\x39\xe1\x95\x6b\x1e\x01\xf1\x16\x05\x7c\xc7\x69\x8f\x68\x23\xa4\xad\x7e\xbb\xae\xdd\x58\x1d\x66\x5a\xf5\x72\xdd\xbf\x7b\xf5\x8f\x1a\x60\xcb\xe8\x7b\x16\xc6\xc1\xf6\x0e\x68\xe5\x17\xf6\xc9\xcb\x80\x03\x01\xba\xad\xc0\x86\xf8\xbd\x47\x2d\x71\x2d\xd1\xc5\x1e\xf4\xbe\xdd\x29\x62\x5c\x6e\x4b\x97\x83\x3a\x60\x6a\x18\x09\x21\x82\xbf\x7b\x1c\x2a\xaa\x4f\x1f\xf4\x7b\x2d\x10\xd0\x5d\x2c\x52\xb4\xa4\x28\x0a\x08\xc9\x9e\xf0\x02\x96\x47\x8d\xf4\xa7\x0e\x1f\x7f\x62\xb8\x6f\x27\x82\x75\x71\x76\x29\xfd\xba\x2a\x7f\xdb\x9a\x7f\x17\x6e\x08\xf4\x46\xfe\x58\x90\x9c\x6f\xf9\x86\x31\xed\x55\x85\x0a\x55\x8d\x4a\xe1\xcc\xb3\x52\xfe\x48\x9e\x0b\x98\x26\x39\xaa\xbb\x3d\x9a\xf5\xf6\x46\xa9\xf6\xb9\x80\xa5\xe5\x57\xb6\xb6\x1c\x4d\x85\x80\x5e\x7a\xf7\x8a\x44\xcd\x73\x2b\x18\x0c\x8b\x2d\x0f\x6c\xcc\x5d\x97\xfb\x5f\xa5\x11\xb3\xcf\x07\xdd\x61\xc0\x6d\xaf\x4d\x15\x8f\x48\x67\x53\x91\x4d\xf7\x78\x61\xe3\x75\x51\x5b\x47\x5b\x7d\xb6\x64\xa2\xb0\x7a\x6e\xdc\x23\xe6\x68\xcd\x76\xeb\x1f\xf0\xe1\x36\x1c\x6a\x99\x9b\xcd\xba\xb0\xab\xee\x87\xb5\xec\x60\x5d\x28\xf7\xb6\x9a\x0f\x6e\xed\x20\x57\xf3\xb8\xee\x3d\xdd\x25\x44\xb7\x40\xac\xc6\x86\xfe\xca\x33\x5e\xf7\x9e\xf0\xd2\xee\x58\x1d\x5e\xba\x63\x6d\x75\x6f\x9f\x4b\x9f\x75\x98\x81\xf8\x8a\x12\x20\xe9\xdd\x25\x1f\x3d\x5b\xab\x2a\x95\xad\xb2\x8b\x20\x5e\x4a\xcc\xa9\x00\xa2\x10\xd0\x33\x11\x80\x6a\x90\xa8\x6d\x9e\x9f\xe5\xda\xe7\x56\x75\xa1\xd9\x5b\xb7\xc1\x67\x12\xe7\x46\x0a\x3f\xf7\x08\x0c\xe4\xb1\x38\x47\xb5\xea\x80\x8a\x7a\xb1\xbb\x94\xde\xa9\x70\x12\x72\x45\x14\x05\xa8\x8f\x62\x85\xea\xfb\xbf\xfa\xa1\xe9\xab\xa6\xee\xee\xaf\xe2\xd7\xc6\x86\x9b\x1c\x94\xf7\xd7\xf1\x53\xad\x8e\xa1\x20\xda\x1e\x3a\x0b\x89\xff\x33\x4f\xd2\x1c\x37\x7b\x9f\x2b\xe9\xac\xaf\x7e\x02\x82\x7c\x25\x76\xcb\x4f\x20\xb4\x98\x7a\x8e\xff\x57\xa4\xcd\x4a\xc0\x09\x01\xee\x87\x38\x24\x05\xaa\xda\x05\xea\x1d\x1d\x23\x54\xc0\xe1\x8b\xde\xfd\x81\x1b\x4d\x60\xca\x67\x2a\xe8\xe8\x73\x15\x73\xf4\x44\x30\x0b\x8f\x7a\xa7\x08\xa8\x0c\xa7\x01\x39\xa6\x5e\xaf\x27\x84\x78\xea\x1d\x1e\x5b\xbe\x6e\xa9\xc5\x96\x81\x95\x0c\x01\x0b\x5d\xb5\x0b\x0c\xf7\x80\xe0\xca\x3c\x5d\x1d\x74\x07\x8e\x80\xa1\x0e\x45\x4f\x3d\xd6\xa1\x48\x94\x22\x1d\xdc\x43\x4f\xc8\x13\x72\xd0\xd3\xc1\xe5\x12\xb1\x0e\x6e\xc3\x2c\xfe\x4c\xc6\xdb\x4b\x49\xea\x07\x90\x63\xe2\xcb\x10\x34\x44\x05\xa5\x90\xcf\xd2\x15\x3a\x96\x21\xc0\x52\x69\x64\x2c\xcf\x51\xc5\xd6\x26\x62\x0c\x63\x4c\x8c\xf7\xf9\xd5\x34\x4b\xe8\x0d\xcc\x2a\xdd\x66\xec\xba\x63\x98\x62\xe2\xe7\xc9\x37\x52\x4a\xb2\x18\xe3\x69\xff\xb8\x1b\x4c\x61\x89\xb5\xa4\x01\x13\x4c\x7c\x3e\x4d\xa2\x1b\x4a\xf2\x1c\xee\xaa\x92\x93\xfe\x91\x7f\x1a\x4c\x60\x85\x89\x2f\xb1\x05\x2e\xab\xcc\x55\xbf\x1b\xac\xe0\x5c\x66\x65\x49\x48\x39\xdc\x56\x99\xe7\x7d\x47\xa8\x12\x9c\x64\xb3\x84\x8a\xa5\x12\x9c\x97\x41\x5e\x64\xb4\x57\xb1\x96\x1c\x3d\x70\x07\x9c\x72\xd8\xe2\x59\x0c\xda\x01\xa7\x36\x32\x07\x1c\xe5\x4a\xec\xc8\x3e\x3b\xe0\x94\x3d\x76\x4c\xe0\x1c\xf1\x2b\x7b\xe2\x0c\x11\xdc\x08\xb2\x7e\x2d\xfe\x5d\xe1\x75\x21\x37\xc7\xec\xfe\x60\x8c\x6f\x37\x1b\x2b\xac\xdc\xad\x9a\x91\xd7\xf8\xf0\x89\x9c\xe4\x4f\x17\x4f\x3c\xef\xf8\xb8\x73\x87\x9e\x1e\xa2\xb3\x1b\x5f\xac\xdd\x1b\xf2\x26\xcc\xa7\x61\x96\x85\x77\xf8\xb5\xcf\x99\x64\xff\xde\x11\x82\xab\x81\x23\x5a\xee\xc8\x7e\x50\x76\xeb\x0c\x2d\x9d\xce\xbb\x44\x60\x37\xd4\xf7\xec\xda\x94\x28\x8a\x1d\xc7\xf8\x8e\x79\x5e\xaf\xdb\xed\x5c\x2a\x1f\xa5\xd7\xc8\x6e\x46\x79\xf1\x5e\xfb\xa5\x6c\x8e\x9d\x8c\xc9\x50\xa9\x9d\x17\xdd\x98\x4c\x90\x83\x82\x07\x2a\xa7\xd8\xaa\x1e\xe8\x13\xfa\xe8\x26\xaa\x3a\x0e\x9f\x75\x9f\xa4\xde\xe5\xd3\x67\x5d\x54\xff\x56\x75\xa1\xf4\x98\x49\x74\xac\x39\x2d\x86\x79\x4e\x9c\x2c\x1d\xcd\x6a\x3d\x26\x90\x60\x5d\xce\x7b\xa0\x5f\x87\xe2\x75\xee\x67\x8c\x71\x58\x80\x93\xd0\x29\xc9\x12\x2e\x08\xcd\xdc\x75\xf3\x81\x46\x0e\xd3\x15\xfd\x51\x24\x3e\x9a\x23\x34\x84\x75\x0d\xeb\x82\xdc\xaf\xa5\x41\xcd\x42\xa0\x08\x7d\x12\x15\x83\xdb\x21\x52\x67\xd6\x82\x5a\xb7\x94\x2b\xc0\xc8\x9c\xed\x1c\x15\x70\x0d\x4b\x04\x19\x19\x07\x1c\x32\x96\x92\xc0\x99\x67\x6c\x92\x91\x3c\x1f\x85\x99\x53\xc0\x15\x7c\x45\xb0\x33\xde\x7c\x39\x71\xc0\x1a\x63\xee\xe7\xcb\x09\x2c\x13\x72\xfb\x8a\xad\x82\x6a\x56\x0e\x0f\xc1\x69\x39\x68\x4f\xf2\xf8\x78\x2b\x89\x8a\xdd\xa6\xa2\x24\x8b\x64\x90\xe3\x7d\x10\x55\x05\x60\xe6\xba\xe6\xf9\x4d\x8d\x72\xec\x40\x4e\x15\xba\x68\x86\x9f\xca\xbc\xda\x81\xe2\x0d\x44\xab\xe0\xf8\x18\xa2\x3b\xf1\x3f\x0b\xcc\x0a\x82\x71\x92\xa6\x81\x8a\x4d\x01\x0a\x3f\xbf\xa8\xe0\x5e\x32\x12\x2c\x42\x67\x82\x09\xe8\x1e\xe7\xa2\xc7\x0d\x72\xcb\x5a\x60\x45\xb0\x8e\x93\x7c\x9e\x86\x77\x81\x93\xd0\x34\xa1\xa4\x33\x4a\x59\x74\xe3\x14\xa6\x73\x6b\x89\xba\x4a\x52\x27\x7e\x95\xc8\x35\xc8\x6a\xaa\x7e\x01\xf5\x61\xaf\x43\x23\xfd\x06\xce\x0f\x62\x90\x8b\x34\xcc\x3a\x6a\x05\xb4\x7a\xfe\x71\xde\x12\x4d\x0a\x35\x85\x8e\xa5\x9f\xbf\x53\x80\x44\xc9\x4f\xda\x67\x66\x2d\x53\x32\x3c\x6b\x4a\x38\x27\xbe\x26\xd7\xfe\x2c\x4c\xa8\x2e\x7b\x55\xfa\xbc\xec\x94\x2e\xfd\x42\x74\xf9\x7c\x39\xb1\x06\x6c\x46\xaa\xa0\x1f\xac\x15\x20\x03\x47\x87\x4f\x7e\x2d\xd7\x86\xc9\xbe\x7a\x2c\x38\x54\x2d\x9d\xb8\xa4\x17\x02\x2c\x0d\xb3\xbf\x07\x38\xe2\x3b\x05\x1a\x12\xe6\xa4\x93\xd0\x0e\x5b\xf0\x0a\x3e\xb0\x45\x38\x03\xe7\x79\x77\xbe\x82\xd6\x61\xb7\x3b\x5f\xd9\xb9\xda\x0b\xcc\x11\xaf\x0b\x70\xfe\xef\x0d\xb9\x1b\x0b\x0d\x24\x6f\x6d\xcd\x83\x13\xac\x9d\xee\x5f\x1c\x3d\x32\x31\x8f\x97\x72\x4b\x35\x70\x4e\xba\x7f\x69\x9d\x74\xff\x22\x3e\xef\x75\xeb\x45\x02\x43\xc6\x8e\x4e\x15\xa5\x2c\xf6\xb4\x21\x86\x53\xb6\xb0\xd3\xf7\xde\x63\xba\x7e\xb2\xe7\xdb\xee\xfd\x03\xef\xf4\x4e\xd4\xf7\xba\xef\x7f\xa2\x82\x43\x59\x83\x99\xbd\xda\x02\xaf\xcd\x9e\x5c\x87\x45\x51\x20\x50\x8a\x80\xf3\x61\x91\xbc\xd6\x10\xf8\xa4\x09\x9b\xda\x79\x09\xda\xbd\x02\x79\x0b\x29\x8a\x3d\x10\x43\xfb\xcf\x88\x62\xa7\xc7\xd2\x80\xf9\x90\x98\x24\x4f\x51\x26\x69\x9c\x91\xba\xc4\x94\xd6\x24\xa6\x85\x0e\x9a\xca\xa8\x50\xfa\xe3\x4a\x1a\x59\xf4\x9d\x45\xea\x04\x0b\x98\xcb\xd0\xe4\x34\x27\x30\xae\x04\xa5\xb9\xeb\xce\x61\x56\x89\x52\x9f\xf4\xa6\xfa\xb4\x2a\x32\x73\xdd\x19\x8c\x84\xc0\xb4\x18\x4d\x49\x18\x93\x0c\x96\xbb\xd2\x8c\xee\xa1\x11\x67\x1a\x04\x1b\xdd\x37\x21\xdc\x88\x5e\x54\x42\x8e\x6e\x53\x88\x37\xa6\x05\x21\xc4\x4c\x70\xe2\x2f\x72\xf2\x81\xcc\x98\xb7\x1b\x9a\x7d\x2d\x2b\x09\xc6\x62\x1e\x07\xe3\xa1\x15\xa6\xa5\xce\x1c\x22\x3f\xf4\x3f\x65\x6c\x99\x88\x7e\xeb\x48\x7d\x93\x5d\x1e\x12\x7f\x07\x6b\x4e\x61\x2c\x18\x89\x82\x65\x7b\x2a\x9e\x8d\x2f\xc2\x48\x24\xca\x51\x68\xa6\x59\x08\xf6\x39\x02\xda\x4c\xeb\x35\x61\x4f\x93\x9c\x2b\x5b\x9a\x66\x14\xca\xe7\x24\xe8\x96\x5b\x85\xdd\xd2\x43\x3a\x70\x32\x92\x86\x3c\x59\x0a\x0a\x6c\xb2\xd7\xfa\xe1\x9a\xcd\x83\xe7\xe6\xad\x8a\x75\x11\x3c\x2f\x40\x81\x6b\x5d\x40\xd9\xbb\xda\x17\x5d\xa1\x30\x95\xcb\x41\x28\x4a\x4e\x81\xbc\x54\xa2\xfe\xd1\xff\xa7\xa8\xaf\xb1\x3d\xaf\x61\x7b\xfa\x28\x71\x7a\x88\x60\xa1\x90\xc8\xdc\xb5\x10\x59\x77\x2d\xfc\x69\x09\x8d\x2a\x34\xc8\xc1\x19\xa7\x64\xd5\x29\x37\xa5\x17\x7e\x98\x26\x13\x7a\xc1\xc9\x2c\x77\x5d\x6a\xa5\xde\xa6\x64\x25\xe3\x0c\x97\x18\x91\xde\x8b\x0c\xb3\x84\x2a\x09\xe1\xe4\x14\x44\x1b\x9a\x8a\x75\x0b\x68\xa8\x33\x58\x97\x21\x4f\x82\xe7\x3b\xd3\x28\xca\xbe\x5c\x86\x5c\x48\x6a\x66\x42\x8f\xff\x03\x6a\xe5\xf3\xe7\x62\x46\xd5\xcc\x3e\x42\xf7\xdb\x47\xd4\x76\xd5\x40\x4d\x24\xae\xef\xe6\x6c\x92\x85\xf3\xe9\x5d\xa9\x12\xb6\x31\x8e\x5d\x57\x69\x82\x09\xcd\x09\x6f\xd4\x00\xb5\x0c\x22\x29\x98\x7e\xae\xea\xfa\x94\xb1\x79\xae\xb4\x41\x23\x7c\x48\x8d\xb0\x4c\x6d\x17\xbd\xfb\x7e\xca\xb7\x33\x00\x47\x88\xf6\x42\xd4\x80\x52\x9f\x2d\x9f\xb6\xda\x13\x34\xb1\xf4\x96\xb5\x9e\xb7\x8b\x49\x9f\xb3\x1a\xa6\xa7\x7e\x88\x34\x89\xba\xc4\x2a\x9e\xf7\xb4\x3f\x0d\xe8\x99\x78\xc6\xf8\x72\xb3\xb9\xf4\xf9\xdd\x9c\x60\x8c\x23\x3f\xdc\x6c\xe6\x9b\x8d\x77\x89\x1b\xa8\x67\x7d\x45\x68\x25\x33\x58\xf5\x9d\x11\x8b\xef\x0e\xe5\x36\x53\x7c\xd7\x73\xc0\x96\xf4\x0d\xcc\x4b\xa2\x1f\x38\xf9\x3c\xa4\x0e\xec\x48\x73\x23\x04\x97\xda\xe3\xfc\x1c\x2f\xcf\xac\x73\xfa\x18\x9f\x6f\x36\xe7\x3b\x7d\x3c\x7f\x7c\x1f\x75\x0f\x6b\x3d\xab\xa6\x59\x49\x9f\x8e\x00\xd6\x55\x05\xe2\x9d\x0e\x4e\x10\x9c\xa3\x06\xf5\xe6\xbb\xd5\xb9\x55\xc5\x33\xa4\x1e\xa2\x30\xf6\xd2\x75\xcf\x45\x6a\xb6\x48\x79\x22\xc4\xeb\x92\x42\xdc\x21\xb8\x84\xf3\xfb\xa8\x84\xa0\x0c\x81\xd3\x6b\xf5\x5a\xea\x74\x65\x49\x35\xba\x50\x51\x84\x63\xb0\xa3\x1e\x05\xc7\x05\x94\x4d\xd9\x84\xe3\xb4\x5e\xec\xd4\x62\x18\xb2\xa3\x25\xb3\x78\x4f\xc6\x3c\x38\x39\x95\xfe\xd8\x4a\xe8\xb7\xfd\xd8\xd7\x8d\xf4\xe7\x9a\xac\x24\x3b\x51\x92\xd4\x03\x77\xed\x6c\x53\x9f\x17\x8a\xfc\x3c\x17\xe4\x87\x7a\xa7\xcf\x14\xdd\x39\x91\x64\xc7\xa7\x6a\x53\x9a\x7a\x87\x27\x82\xec\x88\x17\x29\x82\xb8\x4e\xa7\xe6\x98\x7a\x47\xdd\x1e\x82\xb1\x78\x38\x45\x30\xd3\x84\x6b\xaa\xec\x61\x30\x12\xe9\xa3\x63\x04\x4b\xf9\x70\x22\x64\x8f\x76\x0f\xee\x64\xea\x54\x2c\xad\x5a\x48\x5e\x63\x3d\xe3\xd6\x8e\x85\xf4\xb4\xab\x4c\x78\x22\x63\xb3\x11\x8f\xca\x9f\x57\x0c\xc1\x75\xdb\xd4\x4f\xf2\x0f\x6c\x41\x79\x42\x27\x7d\xee\x13\xca\x49\x16\x70\x3f\x9c\xcf\x49\x58\x46\x2a\x67\x3a\x2d\x74\x98\x45\x6e\xce\x68\x27\xb4\x9f\xf4\xbd\x0c\x3b\x64\x95\x70\x12\x3b\xb0\x55\xcc\x91\x95\x09\x31\x0a\x05\x99\x4e\x91\xd8\x09\x32\xcc\xfd\x05\x9d\x89\x46\x2f\xe9\xf9\x2a\x91\xfe\x20\x26\x29\x0a\xf5\x1d\x9d\x2d\x77\x71\xaa\xda\xf5\x2e\x45\x2e\xab\x0f\xb2\x02\x98\xbc\x0c\xc1\x5c\x3a\xa3\xfa\xc5\x0a\x8d\x97\x4b\x81\x97\x5c\xee\xb7\xf8\x13\xc2\xdf\x90\x2c\x59\x92\x58\x5e\x65\xf3\x36\x63\x33\x49\xa5\xf0\x1e\x73\x7a\x42\xe5\xa5\x31\xa6\x13\x32\x28\x82\x6a\xb6\x6f\x9a\x37\xfd\x2a\x64\x64\xb1\xe2\xcc\x38\x77\x94\x31\x93\x4a\xca\x51\x09\xc1\x6f\x92\x58\xc2\xda\xde\xed\xb1\xcc\xe6\x0a\x6e\x9e\x09\xa5\x62\x03\x13\x15\x50\xaf\x67\x7b\xdb\xa8\x74\xa0\x92\xf7\x48\xe8\x8b\x00\xd4\xfe\x8b\x18\x68\xe9\x7c\x52\x99\xd5\xd5\x38\xce\xaa\x32\x62\x42\xab\x39\x6b\xcb\x03\x38\xe5\xac\xa9\xa4\xc7\x6b\xb3\x7a\x6f\x69\x79\x49\x8c\x84\x92\x2c\x5c\x34\x0c\xb4\x07\xbc\x3e\xb0\x2f\x49\x9a\xfe\xac\xc0\xbe\x03\x23\x15\x2a\xe1\xa3\x35\xe1\x9e\xfc\x78\x52\x5e\x42\x93\xdb\xdf\xe8\xe0\x0b\x40\x81\x59\x70\xf0\xb9\x2a\x5a\x6e\x65\x63\x8e\x29\x66\xa0\xd8\x11\x73\x5d\x13\x74\xb1\x32\xa5\x33\xd7\xf5\x64\xbc\xf0\x55\xc2\x81\xcb\xc0\xe1\x5c\xee\xfc\x96\x8c\xdd\xe0\x7d\xdf\x3c\x04\x1c\xc1\x5a\x94\x0f\x08\xe8\x15\x05\x3a\x87\x16\x45\x19\xdc\x42\xaf\x93\x2d\x59\xc4\x68\x49\x44\xb6\xdb\xee\x21\xdd\x39\xcc\xfb\xde\x5e\x40\x40\x35\x15\x32\xfe\xbe\x1a\x31\xc9\x84\xae\x2d\xd7\x94\x47\x50\x50\x7b\xb9\x4a\xb8\x87\xcc\x3b\x09\x9a\xda\x9a\x14\x93\xa9\x10\x1c\xe3\x5d\xac\xd1\x7b\x37\xea\xae\x0a\x4e\xbc\x72\x51\x54\x6b\xa6\x90\x93\x63\x77\xa1\x01\x59\xd5\xe6\x82\x3d\x3f\x0a\xb8\x7a\xca\x22\x25\x39\xf4\xed\x84\x45\xaf\x02\x02\x99\xfd\x2d\x65\x31\xf9\x4c\xc6\xfd\x01\x1b\x06\x83\x85\x1f\xca\x10\x65\x6f\x2e\x3f\x7c\x64\xb1\x0a\xaa\x81\x40\x45\xef\x19\x74\xd5\x69\xdd\xde\x10\xf4\x1e\x95\x85\x44\x9e\xa0\xe3\xac\x6f\xd6\x5f\xa0\xfb\x74\xd6\x26\x82\x5c\x6e\x36\x13\xd5\x9d\x3c\x1c\x93\xab\x9d\xf1\x9b\x05\x50\xd4\xae\xee\xe2\xba\x83\x4c\xd1\x37\x12\x7b\x89\xe0\xa2\x3a\x94\x52\x2d\xcf\x4b\xaa\x4d\xd9\xfd\x2d\x88\x79\xbe\xb7\x89\x84\x4e\x74\x4d\x3e\xa3\xd7\xa5\x95\xe9\x9c\xc6\x5e\xb4\xf5\xdd\xbf\x38\x10\x08\xf5\x51\x5a\x69\x39\xb4\xa6\x7c\x95\xf0\x9d\xf5\xa8\x26\x9c\xd7\x26\x5c\x2c\x2b\xda\x34\x0b\xac\x69\x6e\xd5\xf2\x08\x1a\x67\xf7\x8c\xbb\x6e\x7b\xd2\xdf\x82\xaa\x40\x74\x76\x3f\x48\x35\x8d\xaa\x8f\x95\xd4\xaa\x10\x00\x65\xd2\x99\x73\x0b\x9c\x54\x8d\xa0\xfe\xe5\xfe\x76\x76\x40\x5a\x6f\x86\xc4\x1e\xb3\xe0\x19\x3c\xd0\xeb\xc7\xd6\x26\x68\xec\x0e\xd5\xb0\x67\xc7\x90\x18\xd1\x9c\xcd\x53\x4d\x34\x29\xfb\x9d\xae\xca\x6c\xd2\xee\xb0\x60\xd9\x9c\xdd\xe7\x2d\x0a\x67\x82\xd5\x10\x5e\xa3\x61\xdc\xcc\x91\x19\x29\xd1\xdc\x61\xab\xe0\x7e\x32\xd2\x2e\x8f\xe1\xee\x76\xac\xfc\x88\xa1\xb5\x3a\x58\x2a\xb8\x4f\x83\xfc\x40\x3c\x86\x8c\x73\x45\xc3\xa8\x6b\x40\xc3\xed\x5e\x43\x49\xd1\xe7\x2d\x2c\xd9\x86\x40\xf3\xf8\xcf\x2c\x1e\x5d\xc7\xfa\xdd\x57\xe6\x8e\xbe\xe6\x95\x00\x0c\x2b\x85\x45\xd0\x2c\xeb\xe3\x30\x8e\xcf\x69\x6c\x36\x9d\xcf\xd4\x85\x75\x6d\x75\x28\x6d\x6f\xb1\x32\xf6\x59\x03\xa5\xdd\x19\xfc\x30\x18\xd0\x5d\x90\x6c\x51\xdd\xb3\xbd\x6d\x29\x7a\xa2\xb0\x91\xb8\xae\x75\xc1\xdc\x4e\x9d\x40\x90\x3a\x17\x77\x6f\xa1\xae\x44\xa1\x8c\xd0\xd8\x66\x40\x36\x39\xaa\x8b\x43\x2a\x9c\x9b\x25\xf8\x95\xfe\xc2\x52\xb0\xaa\xf0\x4d\x75\x5f\xfa\xa8\x97\x66\x03\x86\x3d\x21\x16\x43\x5d\x9c\x85\x2d\x71\x17\x8c\x78\x0d\x5a\xde\x16\xbf\xea\xbd\x96\x4e\x44\x89\x1a\x58\x24\x19\x37\x95\x55\x24\xbe\x4a\x90\x58\x3d\xab\x6a\x4a\x92\x55\x3e\xcb\x7c\x3d\x6b\x46\x47\x1c\x29\x01\xb9\x66\x2f\x48\xc4\x3f\xbb\xf3\x0e\x38\xb5\xce\x3b\x32\xda\x1c\x09\x45\x06\xd1\x05\x88\x7a\xaf\x3b\x2f\x4a\xd4\x3a\xef\x80\xc3\xca\xca\xaa\xce\x57\x09\x21\xdd\x3b\xcc\x54\x5f\x76\xbe\x7c\x96\xf9\xba\xf3\xce\xb0\x8a\x4c\x13\xf9\xe1\x96\x0e\x7c\xd7\x60\x5a\x95\xe2\x39\x38\x66\xee\xad\xc3\x98\xb4\xaf\x22\x9b\x04\xb2\xa2\x94\xd1\x9a\x89\xf6\xb5\x86\x8a\xcf\x68\x7a\xe7\x51\x75\x97\x21\xf0\x42\x65\x1a\x89\xd5\x72\x5d\xb8\xf4\xd0\xba\x58\x19\x39\xe5\xfa\x6e\x4e\xf0\x9d\x1f\xc2\x4a\x62\x8a\x48\x4a\xd7\xa6\x95\x09\xa0\xa6\x14\x90\x75\x42\x83\x76\x0f\x6c\x90\x8b\x74\x0d\xe6\xe2\x85\x16\x46\xda\x3d\x2d\x50\xb6\xbb\x20\x05\xcc\x76\x17\x34\x14\x83\x4b\xa8\x80\x5b\x25\x48\xac\x9e\x45\x61\xf3\x50\x16\x90\xc0\x0d\x2e\x45\xaf\x7e\xfe\xf8\xe1\xf2\xe7\x8f\xd7\xe7\x6f\xb0\x85\xff\xb0\xf2\xcf\xff\x7e\x21\x5f\x1a\x35\x6c\xe5\x9f\x7f\xbc\x3e\xff\x7c\xf1\xf1\x27\x4b\x15\x30\x6f\x65\x41\x33\xa5\xea\x5b\x55\x50\xcf\xa8\xb6\xaa\xac\xe0\x56\xe8\xcf\xf6\xed\xa5\x5f\xeb\x96\x38\xb3\x10\x58\xe9\x15\x91\x55\xfb\x07\xac\xbf\x2e\x02\xe3\x1b\xb2\x8e\x17\xda\x9f\x2f\xb3\xb6\xd3\xde\xe8\x97\x9b\xcd\x4e\x14\x75\x31\xed\x01\x1d\x88\x35\x1a\x93\xe1\x66\xd3\x85\x98\xa4\xe1\x5d\xfd\x73\xf1\x46\xc5\x61\xbf\xc1\xd4\x3b\xb6\x7b\x7a\x6d\x79\xe0\xe7\x51\x98\x5a\x5b\xf1\x04\x1c\xb0\xb6\x86\xa5\xcf\xc1\x9c\xdd\x7a\x04\x0e\x11\x38\xc8\x51\xd1\xbd\xae\xf0\xda\x00\x2e\x58\xb3\x79\x18\x25\xfc\x2e\xe8\x41\xb5\x37\x76\xed\xf5\x50\x01\x1a\x8e\xcd\x45\xcc\x96\x11\xbc\xc6\xf9\xf7\x18\x36\x43\xcb\x45\x45\x5a\x37\x3e\xb0\x98\x08\x64\x0e\x79\x19\xcb\x42\xdd\x20\x17\xca\xdd\x9c\x84\xaa\x63\x77\x9a\xf8\xc4\xd5\x33\x89\xe5\xf6\x8d\x45\x8c\xc6\x2a\x29\x48\xd0\xac\x7c\x24\xb1\x34\x79\x56\x14\x69\x54\xce\xe8\xd2\x9a\xe7\x49\x35\xbb\xcb\xbe\x0a\xcd\x15\x2c\xe1\x0e\x13\xbf\xe2\xa3\xe5\x9a\x83\x55\x55\xfa\xae\x7f\x1e\xdc\xc1\x25\x2e\xaf\x29\xde\xb5\x81\xee\x19\xaf\xa1\x76\x3b\xb4\xc9\x90\xa3\x1a\x9d\xb2\x69\x93\x45\xaf\xf4\x26\x91\xf1\x81\x29\x29\x60\x43\xaf\x9d\x21\x92\xb3\xa5\xef\xdb\x45\xf0\xd1\x4e\x7c\x30\x23\xb8\x15\x23\x40\xf0\x19\x7f\xf0\x17\x34\x97\xd7\x33\xfd\x9e\x97\x5d\x77\xdd\x76\x04\x6f\xaa\x0f\xa5\xbc\x05\xef\xcd\xc7\x37\x7a\x33\x80\x8c\x81\x23\xf8\x54\x7b\xfd\xb9\xff\x46\xbb\xbc\xc2\x7b\x04\x6f\x9b\xce\x32\x54\x9e\x93\x3a\x0c\x34\x31\xde\xaf\x9f\xfb\x83\x37\x46\xe4\x00\x3e\x0c\x06\x1c\xa8\x60\xea\xb6\xe9\x99\x09\x2c\xaf\xdf\x10\x5c\x4e\x53\xde\x27\x5e\x88\x02\xe2\x85\x90\xa3\xa2\x28\xe0\x02\xbf\xf5\xe6\x08\x5e\xe1\xb7\xdb\x38\xdb\xae\xbb\x28\x96\x17\xf7\x15\x1e\xd1\x12\x12\x30\xfc\x55\xc8\xc1\x77\x29\x09\x46\xa0\x81\x1e\x4c\x0a\x58\x8b\x25\xad\x75\x17\xa7\x40\xf2\x88\x98\x21\x0f\xf2\x90\x98\x5c\xe9\x67\x0a\xbf\xa4\x43\x95\x47\xf1\x87\xda\x2e\xfc\x84\xf0\x97\x0b\xce\xd4\x89\x01\x43\x45\xbc\xfa\x55\x46\x08\x3e\x1a\x58\x60\x8a\x02\x8a\x4b\x2f\x71\xab\x2a\x3c\xf8\xd0\xb8\xbd\xaf\x57\xb3\x03\x15\xe1\xa2\x9a\x02\x25\x05\x82\xe6\x8f\x2a\x17\x09\xeb\x33\xff\xf4\xf4\xf4\x89\xf5\xed\xd0\xff\xca\x12\x2a\x43\x93\xc1\xc2\x75\x17\x4a\x80\x46\x08\xbe\xe1\xb7\x5e\x8c\xe0\x25\x7e\xeb\x4d\x11\xbc\xab\x83\xbc\xf4\xb6\x7b\x00\xa6\x62\x01\x14\x52\xb0\xac\x40\x9a\x89\xc4\x0e\x48\xf9\xbf\x08\x52\x8e\x02\x75\xb8\xfc\x5f\x00\x29\x37\x44\xfd\x4f\x80\xb4\xfc\x76\xb3\xf1\x8f\x8e\x8e\x9e\xf0\x3a\x68\x4d\xbf\x74\xab\xd8\xe9\x3a\xf5\xbe\x4a\x37\xad\x6b\xcf\x7f\x76\x82\x60\xec\xba\x63\xed\xbe\xff\x05\xbf\xf5\x66\xd6\x7d\x98\x8b\x9c\x9c\x8f\xc7\x62\xf5\x34\xdc\xf2\x6d\xbd\x89\x52\x12\x66\x46\xc0\x7d\x5d\xde\xcd\x5d\xa8\x90\x66\x90\x6f\x89\x40\xab\xfa\x16\x80\x91\x1b\xba\x90\xd0\x20\x05\x2d\x45\x05\x16\x31\x30\xe2\xc3\x2b\x4b\x62\xf8\x66\x8b\x12\x17\x46\x7c\x78\x57\x89\x0c\x5f\x2c\x49\xe2\x25\xd4\xe5\xbd\xc6\x53\x6f\x9f\xfb\x24\xe0\x16\x9a\xb8\x6e\x35\x16\x6c\x49\xf0\xb4\x42\x04\x19\x1a\xac\x28\x71\xd1\x42\x31\x41\xf5\x04\x6e\x5e\x22\x68\x76\x88\xce\xeb\xe2\x1c\xad\xc3\xa4\xc1\xc3\xcc\xf0\xd8\x6e\x8d\x0d\xcb\x29\x5c\x26\x79\x32\x4a\x52\x91\x6b\x84\xa0\x36\xc6\x64\xb3\x49\x8d\x31\xc2\x99\x26\x71\x4c\xa8\x53\xc0\xd5\x80\x0c\x61\x04\x54\xeb\x36\xb2\x21\xb5\x7d\xf2\xa9\x90\x21\x4c\xd5\x1e\xeb\x6b\x7f\xb6\x48\xae\xd4\x41\x39\xb1\x34\xb0\xbe\xab\xe8\x23\x7e\x0d\x1f\xe4\xd6\xc1\xa1\xe0\x00\xd4\x3b\x7c\x7e\x84\xe0\x0d\xa6\xde\xe9\x91\xa2\x7d\xef\xef\xbb\x07\xbd\x2f\x91\xea\x7d\x78\xc7\x16\x5c\xa1\x56\x60\xa1\x99\xfc\xfe\xd3\xf7\x89\x0b\x4c\x5f\x25\x2f\xaf\x97\x95\xe7\x15\x8d\x83\x04\xcb\x78\x98\x42\x52\x89\x0c\x99\xeb\x66\x52\xbc\x60\xf4\xb3\xd4\xb6\x48\x0c\x91\x62\x54\xfa\xfa\x78\xc9\xaa\x16\x2a\xfc\x54\x2c\x23\x4f\xc1\xbc\xc6\xa1\x72\x3f\xc9\x7f\x09\xd3\x24\x2e\xe7\x0d\xf5\x25\x33\x53\x97\x77\xf0\x72\xf1\xbc\xaf\x2d\x99\x64\xb3\x89\x1b\x83\x40\xe2\x26\xa1\x9f\xf4\x89\x87\x02\x02\x69\x4d\x6b\x26\xa8\xf0\x18\xb2\xee\x5d\x1a\xb1\xf8\x4e\x46\x0d\x64\x90\x0c\x11\x6c\xb5\x38\xf6\x16\xae\x5b\x45\xf9\xd3\x83\x78\xa3\x14\xaa\x05\x02\xab\x6c\x3d\x4f\xd9\x47\x44\xbd\x1c\x16\x0d\x35\x87\xae\xeb\x2d\x36\x9b\x04\xb9\x6e\x28\x2f\x50\x1f\x84\xba\x5c\xd2\x6f\x02\xcf\x0e\xa2\xaf\x05\xb8\xe6\x05\x0a\x68\xb0\xe8\xa7\x9a\x36\xa8\xd9\xf2\x28\x2c\x50\xb0\x10\x08\x58\x0a\xb3\x6f\x6b\x37\xde\x6f\x1f\x6e\x01\x8e\x29\xb9\x55\xb7\x4f\xa8\x7b\x4d\xba\x67\xf4\x47\x22\x6f\xd6\xe4\x03\x3a\xb4\x0e\xbc\x54\xf1\x9f\xf8\xbd\x61\x1f\xf5\x46\x2a\xef\xd7\x5c\xdd\xab\x1b\x3c\x77\xba\xc0\xac\x2e\xc8\xbb\xd0\xba\x67\xd9\x8f\xf4\x2c\x3b\x38\x40\x6c\x90\xd9\x5d\xc8\x86\x67\xc4\x97\x27\xc0\xd4\x8e\x17\x43\x4a\xd3\xae\xd2\x02\xf0\x36\xb4\x6b\x71\xe4\x2f\x2c\xb9\x7e\x3f\xde\x48\x09\xfe\xd5\x9f\x5f\x85\xf0\x4d\x28\x81\x2f\x1f\xb5\x0c\x43\x1a\x4d\x59\x76\x9e\xca\x85\x57\x13\xe1\xab\x35\x19\xed\xac\xc9\xb4\x5a\x93\x91\xeb\x46\x52\x7e\xbf\x21\x64\xfe\x41\xe9\x74\xa5\x23\x56\x1b\x63\x21\x25\x48\x29\xbe\x3a\x53\x23\x85\xf8\x39\xa1\x52\x84\xaf\xce\x76\x4d\x2b\x89\x7b\x56\x85\xd6\x51\x4e\x58\xea\x5c\xc8\xa5\x3e\x14\xb2\xac\x4a\x8e\xfa\xdf\x82\x91\x74\x5e\x50\x45\x3e\x93\xb1\x14\xe9\x95\xf8\xbf\xc2\x36\x6f\x2f\x5d\xd9\xdb\x18\xaf\x5c\x77\x05\xe7\x3b\x22\xbd\x01\x87\x03\x35\x0f\x07\x03\x0a\xcb\x7b\x4b\x02\x42\x87\x6a\xfa\x60\x54\x59\xa7\x1c\xa4\x90\xde\xe7\xf2\x63\xeb\x58\x99\x53\x1b\x46\x99\xfe\x4c\xc6\xb6\x80\x5f\xf6\x57\x48\xf3\xb7\xdb\x72\xf8\xd7\x1a\x39\xbb\x15\x32\xf8\xf5\x76\x99\xab\x5a\x99\x6b\x98\xd4\xb4\x82\x2b\x74\xf6\xaa\x46\x10\x2a\x26\x79\x25\xa8\xc1\x95\xe4\xf8\x8b\x9c\x5c\xcc\xe6\xf2\x1c\xdb\x92\xbc\x0b\x69\x9c\x12\x6f\x02\x0d\x62\xc4\xb5\xf9\x5a\x09\x0b\x9a\xc9\x58\x44\xb9\xdd\x15\xda\xc3\x47\x41\x92\x5f\xe2\x8f\x82\x24\xbf\xdb\xbd\xc8\xd7\x49\xb9\xd4\x9f\x3d\x79\xc4\x2b\x4e\x32\x12\x69\xdd\x5a\x64\x58\x81\x06\x74\x28\x1a\xa2\xe3\x98\x5a\x11\x91\x03\xbd\xb0\x6a\xe1\x90\xcf\xec\x52\x3a\xa0\x46\xbd\x9c\xf8\x54\x95\x32\x91\x98\x4d\x81\x2a\x56\x73\x95\x5f\xaf\xc2\x7c\x51\x06\xb2\xa9\x4e\xef\x7b\x53\x23\x10\x7c\x96\xda\x96\x10\xce\x2c\xa0\xbc\x43\xf0\x0b\xfe\x22\x60\xf2\x03\xfe\x22\xd4\x98\x7d\xc2\x5a\x09\x5e\xd7\x2d\x1f\xcb\x23\x50\xe6\xe6\x9b\x9f\x55\xd5\xa5\x9d\x77\x8b\x91\xdc\x56\x75\x50\xd7\x1d\xd7\x2a\xf5\xaa\x5a\xf5\x69\x25\x0f\x41\x89\x11\x0a\xa1\x54\x23\xf5\x9d\xe0\x1f\x6a\x07\xcb\x0b\xe0\xd8\xbb\x10\xc4\x53\x50\xd2\x0f\x7e\xa8\x12\x65\xc3\x75\xe1\xa8\x0a\x83\xfa\xae\x80\xa5\x14\xff\x75\x88\xd2\x5a\xb1\x02\xd2\xfe\xba\x08\xd6\x3b\x21\x22\x1b\x82\x87\xe8\x7b\xfb\x8a\x02\xe6\xb0\xb4\x0e\xc4\x55\xa1\x52\xdf\x7a\x04\x96\xe5\x9d\x21\xa8\x8a\x96\x6a\x32\x74\x14\x7c\x19\x93\xb9\x02\x80\x96\x82\x29\xa4\x30\x87\x31\xbc\x83\xe5\x10\xc1\x1f\x7b\xe1\x4d\xea\xdc\xf8\x2b\x10\x04\x3f\x2b\x2e\xfb\x15\x7e\x1e\x22\xf8\x15\x37\x4f\xee\xa3\xe6\x41\x1e\x6a\x79\xbc\x58\xff\xab\x67\x89\xf0\xcd\x1f\x8d\x37\x9b\xcb\xcd\xe6\x57\xd5\xc3\x31\x5c\x0e\x11\xb4\x63\xd7\x6d\x8f\x5d\xd7\x6b\x5f\x6e\x36\xef\xd1\x8e\x6d\xfa\x27\x3b\x8e\xed\x2f\xe5\x89\xed\x4b\xd7\xf5\x7e\xb2\x4c\x29\x95\xed\x71\x5c\xca\xff\x56\xc3\x2f\xbd\x76\x0f\x15\x95\xb4\x5f\xcf\xea\x22\xd0\x9d\xdf\xd6\x3d\x3e\xc1\xba\x46\x82\x83\x14\x4a\xf2\x1c\x84\xc5\x4e\xf9\x06\x97\x25\x21\xbe\xfc\xa1\xcf\x74\x70\xc6\x52\x9e\xcc\x9d\x02\xce\xa1\x49\x68\xaf\x9c\x4f\xd5\x89\x5f\xb0\xef\xb1\x2c\xfd\xa6\xc6\x9b\x4d\x3b\xde\x6c\x2e\x95\xd6\xa0\x0d\x67\x20\x85\xbb\x26\x3e\x9f\xf5\x33\xef\x27\x14\x64\xa8\x5c\xc0\xef\xa4\xd3\x4d\x4f\x10\x09\xf1\xf0\xc2\x12\x9f\x7e\xb1\xc4\x4d\xeb\x84\x51\x8f\x9c\x3c\x21\xe8\x69\x8f\x9c\x48\x71\xe1\x07\xdc\xee\xc1\xcf\xb8\x9c\xa4\x3f\x1e\xc7\xfd\xe5\x61\x78\x2b\x3a\x06\x75\x5d\x2a\xf9\x7d\x29\x0a\x2c\x2c\x37\x45\xeb\xf0\xd9\x5b\x16\x2d\xf2\x72\xeb\x60\xdb\x03\x71\x54\x15\x7c\xc7\x96\x24\x2b\x0b\x2e\xab\x82\x23\x15\x26\xaa\x72\x75\x64\x8b\x68\x5a\x16\xbc\xab\x0a\x4e\x5c\x57\x9d\x47\x93\x36\x17\x69\x36\xad\x1f\x4a\xeb\x75\xcd\xb1\x34\x59\xe2\x23\x59\x71\x55\xea\xab\x7d\x3a\xad\x1b\x9c\xc3\xb5\x29\x23\x1b\x53\x85\xae\xaa\x42\xd7\xfd\x67\xdd\x6e\x70\x0d\xaf\x31\xf1\x93\x18\x3e\x48\xe3\x24\x27\x59\x18\x09\x26\x08\x9f\xab\x3e\x7d\x70\xdd\x0f\xf0\x1e\x13\x3f\x25\xe1\x92\xa8\x8a\x3e\x55\x15\xbd\xef\x77\x83\xf7\xf0\xd6\xe4\x5b\xad\x5d\x54\x85\xde\xf6\x7b\x27\xdd\x6e\xf0\x16\x5e\x49\x8d\xe6\x75\xca\x72\x02\xdf\xe4\xf3\xa5\x90\x8e\x7e\x31\x62\xd2\x1f\x35\x31\xe9\xd7\xaa\x86\x3f\x2a\x31\xe9\x0f\xf8\x09\x13\x7d\x02\xb3\x32\x62\xfe\x5e\x95\xfd\xa9\xff\x32\xf8\x09\xfe\x5e\x16\x52\x8e\x9d\x7f\x93\xf6\x51\x9e\x12\xf8\x9f\x3d\x76\xd0\xff\xad\xaa\xf8\x9f\xfe\xc7\xe0\x7f\xe0\x1f\xb5\x82\xaa\x1a\x42\x76\x25\x29\x1d\xca\xb2\xd1\x51\xb4\x09\x89\xaa\xd7\x35\x94\xb1\x5c\x49\x6d\x04\x31\x5b\x43\x12\xaa\x26\x51\xce\xbc\x79\x51\x01\xde\x01\x27\x89\xa5\x39\xb6\x9c\x4f\x19\x94\xc9\xcc\x9e\x49\xd4\xbe\xd0\x93\x22\x9f\x2e\x95\x34\xd7\x20\xd4\x6d\x01\xbd\x7c\x63\x5c\x59\x25\x7c\xf7\xd8\x6b\xed\xb7\xa5\x4f\x2b\x27\x5b\x86\x5a\x4a\x6c\xd1\x01\x01\x23\x98\x12\x19\xcc\x4e\x3e\xf4\x86\x90\x90\x5d\x35\x38\x24\x38\x91\xa5\x72\xf9\xd0\x1b\x42\x44\x2a\x29\xb0\xdd\x43\x90\x12\xdb\x3c\xbc\xa8\xa5\xe2\x5a\x6a\x5e\x4b\x8d\xcb\x0e\x7e\x51\x3e\xa0\x8c\xf2\x8c\xa5\x29\x89\x83\x5f\xc0\x88\x42\xed\x1e\x28\x97\xc8\x6b\x4d\x62\xe5\x69\x2d\x12\x28\x10\x16\x08\x66\xa4\x66\xda\x1d\xcb\x1d\x8c\x29\xc1\x33\xd9\xe9\x91\x7c\xe8\x0d\x61\x49\xf0\x94\xc0\xa4\xc9\x0f\xcd\x1a\xb2\xd4\x1c\xb9\x8e\x4a\x2e\x3e\xcb\x30\xd9\x6c\xe8\x43\xa6\x30\xa5\x29\x52\xd7\x65\x9e\x33\x5b\x24\x1d\xa7\xb6\xaf\x52\x51\x5a\x95\x0c\x69\xcc\x66\x1e\x92\xc7\xd7\x60\x40\x87\x08\xb2\xc2\x7b\x8d\xf6\xca\x6e\x0f\x18\xda\x52\x52\x5a\xda\xa0\x96\xb1\xd8\x97\x11\xef\xcb\x98\x93\x6d\xa3\x9d\xe4\x02\x77\x75\xa8\xd5\x3e\xf9\x19\xc1\x0f\xb8\xdd\x85\x91\x92\xd0\xbf\xb9\xee\x37\x8f\xa0\x02\x56\x64\x77\x0f\xbb\xed\xed\xc4\xa4\xe8\x36\xc6\xa4\xe8\x0e\xd1\x66\x63\x27\xb7\xef\x84\xf2\x4a\xee\x13\x29\x03\xd6\x99\x33\x63\x8b\x9c\x88\x25\xaf\x7c\x20\x05\x8f\x74\x5d\xea\x33\xfa\x41\x64\x08\xa9\xcf\x75\xb7\xdf\x78\x02\x00\xa4\x92\x9e\x1c\x2e\xd6\xad\x12\xce\xdb\xa6\x96\xcd\xc6\x63\xc4\x75\x19\xd9\xbd\xa1\x4c\xad\xc9\x3f\x03\xf6\xcb\xcd\xe6\x07\xd7\xfd\xda\xf7\xb8\x3f\x27\x59\x9e\xe4\x5c\x2e\x9d\x26\x3b\xa3\x8d\x0a\x77\x44\xdd\x10\xf1\x43\xff\x6b\x70\x89\x50\x20\xd3\xa8\x28\xe0\xb2\x5c\x05\xef\xd4\x62\x3f\x27\xf8\x92\xf8\x49\x2e\x89\xe3\x2f\x49\x9e\x8c\x52\x02\xb7\xf2\x25\xa3\xaf\xd2\x45\x66\xde\x7d\x95\xef\x32\x32\x86\x9b\xda\xea\x17\x2b\xfb\x9a\xe0\x1b\xb9\x8c\xae\xe4\x43\x6f\x08\xaf\x6b\xd3\x7a\x4d\x5c\xd7\xbb\x52\x65\x6f\x89\x87\x50\x01\x1f\xff\xe3\xf3\xce\xc8\x66\x93\x11\x8f\x1b\x58\x5d\x87\xd9\x84\x70\x31\x62\x8f\x23\xdd\x9f\x2e\x82\x15\xf1\x90\xbc\x11\xbc\x8e\x27\x62\xfe\x25\x4c\x4a\x6c\x90\x29\x29\xa0\xc3\x87\xfb\x11\xfd\xe7\x7d\xd3\x22\xc4\xa6\x02\xc1\xf3\x6e\xf7\xe0\x13\x92\x4b\xa1\x87\xe0\x95\xeb\xbe\x12\x04\x65\xef\x62\x4d\x1f\x9c\xee\x0a\x37\x55\x03\xbc\x7e\x0e\xd3\x6c\x06\xf8\xf9\x94\x65\x9c\xe4\x42\x81\xfa\xfc\xff\xef\x75\x37\x4a\x17\xb5\x25\xe7\x51\x8d\x60\x25\x80\x45\x42\xac\xb4\xd7\x02\x43\x40\x2d\x54\xc9\x25\x1b\x57\xea\x7b\x91\x23\xb4\xf7\xda\xf4\x62\x8c\xd9\x4e\x29\xef\x4f\x51\x3c\x7b\xc5\xc5\x0f\x4e\xc1\x07\xbd\xe2\x3e\x09\xfc\x78\xb3\x85\x1f\xd6\xf4\x74\xb5\xc3\x8d\x81\x8b\xf4\x66\x14\xd4\x44\x1e\x33\x12\xe3\xb1\xd3\x92\x44\xbe\x27\x35\x03\x4b\x46\xe4\x4e\x68\xfd\xe5\x57\x02\xef\x09\x82\xb7\xe4\xb1\xaa\xe2\xa7\x5d\x7b\xb1\x64\x33\x9f\xc8\x10\xc1\x45\xbd\xf2\x48\x2e\xfb\xb7\x04\x9d\xc9\x2b\x6e\xfe\xe6\xba\xde\x52\xfa\xf1\xca\xb1\xbc\x22\xb8\x2d\x66\xa2\xbd\x84\x6f\xe5\x77\x4a\x9d\x51\x31\x0b\x62\x92\x47\x59\x32\x22\xf1\xe8\xce\x09\x96\xa4\x3f\x21\xda\xfa\x2d\xa8\x62\xf0\x8a\xc8\x90\xa7\x5b\x51\xc5\xff\xd6\xff\x9b\x76\x73\x21\x04\x34\xac\x1a\x8e\x9e\xc7\x52\xfe\xb3\x4f\x33\xe9\xb2\xd5\x1b\xa1\x7a\x57\x00\x0d\xde\x10\xb9\x79\x71\x41\x0a\x04\x2f\x09\x5e\x17\x67\x77\x9b\x8d\xf7\x8d\xd4\xc0\x5e\x9b\xbd\x37\x64\x67\x75\xee\x65\x8c\x7b\x79\xac\xc5\x31\x81\x58\x88\x35\x7f\x10\xb1\x24\x7d\x22\x62\x6e\xae\x50\x01\x55\x47\xeb\x3e\x78\x68\x1d\x95\x7e\x92\x26\xdb\x75\x77\xdf\xed\x0c\x65\xfe\x98\xa5\x40\xbe\x77\x29\xc8\xfe\x5e\x88\x7f\x4b\x03\xdd\x92\x99\x62\x31\x22\xa8\xde\xc9\x25\x8a\x3f\x8b\x97\x9f\x5d\xd7\x7b\xb9\x53\x58\x10\xc9\x97\xbb\xc5\xdb\x3d\x84\x10\xcc\x4c\xfd\x92\x3c\xe3\x8f\x65\xdd\x82\x9a\x6c\xd5\x5a\x16\x29\x6b\x34\x85\x64\x5d\x4a\x35\xd6\x2b\x68\xcf\x89\x58\xb3\x31\x32\xd7\xea\xba\x65\x60\x0d\x2c\xc3\xd2\x5a\x47\xea\x37\x71\xda\x5e\x31\x96\x92\x90\x7a\x21\x41\x65\xa4\xf0\x90\x14\x45\x51\xc0\xdf\xd5\x9e\x08\x81\xbf\x0f\xad\xad\xd4\xba\x55\x21\xf7\xdf\x66\xe1\x44\x45\x1a\x13\x2b\x67\x6b\x8f\x24\x82\x6f\x64\xd7\x74\xf1\xfb\x03\x27\xa7\xe4\xda\x59\x98\x18\x48\x9f\x5d\xd7\x3c\x5f\x58\x4a\x68\x58\xbd\x7e\x29\x86\x84\xa0\x32\xc6\xfc\x0a\xc6\x7e\x1d\x30\x02\x42\xce\x0e\xda\x6d\x41\x7d\x97\x04\x92\x38\xf8\x46\x06\xbb\xeb\x7f\x08\x56\xb4\x80\x76\xb7\x80\x97\x04\xde\x11\x04\x8d\xb7\xf6\xdb\x71\x73\x77\xb4\xc0\x7d\xb0\xfa\xdf\xfa\xb0\xcd\x5e\xeb\xfd\x2c\x31\x2b\x80\xc2\x3f\x76\x61\xa8\xcc\x39\x7b\x61\xa7\xcd\x39\xb0\x18\x18\xcb\x4e\x19\x73\x7d\x3b\x82\xc8\x54\xee\x96\xd5\x83\xff\x22\x34\xac\x89\x95\xa2\xc2\x45\x34\x55\x40\xd7\x15\x2a\xa8\x17\xf0\x37\x08\xfb\x3b\xbd\x53\xe7\xfd\xac\xee\x2d\xb4\x8d\x45\x90\xb8\x9c\x14\x28\xd0\x86\xbc\xdd\x10\x18\xb3\x7d\x21\x30\xd4\x64\x07\xeb\x6f\xf2\x26\xf4\x80\xf8\xea\xa1\x1c\xeb\x9c\x49\xa5\x56\xc6\x7a\xca\x4b\xe3\xd3\x0e\xe6\x04\xeb\xad\x82\x72\xaf\xdb\x14\x7c\xa9\x96\xc7\x7f\xbb\x03\x2b\x10\xde\x93\x32\xf8\xe3\xb0\xf5\x83\x1c\xc7\x7f\x07\xeb\x9a\x01\xac\x3a\x4a\xe7\x74\xba\xfe\xb3\x1e\x99\x99\x23\xdc\xf2\xc4\x9c\x39\x86\xf7\x59\xc6\x54\x39\x06\xc7\x0d\x02\x75\x83\x62\x53\x2c\x87\x6e\x4b\x86\x41\x28\x0a\xd8\xe9\x86\x0c\x8c\x5c\xf5\x41\x07\xd4\xdc\xea\x86\x3e\xc5\xf7\x6f\xe8\x89\xe8\x47\xab\xdb\xd8\x13\x1d\x5e\xb5\xea\x4b\xad\x0b\xb2\xad\xaa\x03\x3a\x98\x8c\x23\x13\x2a\xc2\x8c\x53\xef\x5c\xd3\x61\xc5\xc7\x74\x6e\x2f\xa4\x54\x9c\xe9\xaa\x7b\x2a\x54\x68\xb7\x36\xfc\xff\x70\x07\xbb\x12\x74\x05\x68\x04\x0d\xd6\x42\xf0\x99\x48\x65\x5a\xc6\x2b\x31\x6b\x76\xec\x8f\x90\x57\x05\x42\x99\x64\xe4\x6e\xf0\xac\xdb\x1d\x82\xff\x02\x81\xba\x60\xe2\x73\x18\x27\x8b\x3c\x20\x7e\x3e\x0d\xe7\xc4\xb7\x5f\xc2\x76\x20\x95\x88\xcd\x66\x8c\xfa\xf2\x36\x44\x18\x33\xca\xdf\x86\xb3\x24\xbd\x0b\x88\x10\x54\xf5\xb9\x61\xbf\x7a\x5f\x86\x10\x70\x8e\xe7\xab\xd6\xf3\xf9\xca\x91\x1f\x5d\x25\xdf\x48\xfd\x93\xf9\xea\x9a\x7d\x26\x33\xaf\xd7\x45\x90\x26\x94\xbc\xd3\x30\x2b\x09\xca\x2f\x5e\xcf\x3f\x46\xe0\x90\x99\x83\x60\x16\xae\xd4\x71\xd4\xa3\x6e\x17\x6e\x59\x16\x7f\xc9\xc2\x79\xe0\xc8\xfb\x0e\x3a\x22\xad\x9a\xf9\xa2\x2a\xd9\xe9\x9b\x7a\xff\x81\xc4\xc9\x62\x56\x42\x50\x2f\xce\x86\x40\x08\x26\x5e\x82\xd3\x75\xaa\xcb\x68\xcc\x3e\x89\xf1\x19\xb1\x22\x28\x54\xd7\xb4\xeb\xc9\xae\x61\x81\x99\xf9\x11\x5b\x5d\x25\xdf\x24\x6c\x14\xc4\x3b\x23\xb6\x72\x34\xc0\x1f\x33\x79\x35\xfc\x88\x74\xac\xf6\xff\x76\x9c\xff\x2e\xfb\xab\xce\xee\x6e\x9d\x3b\x2e\x3b\x25\x90\xbb\xc2\x4d\x99\xda\xc6\xa1\x7a\x04\x1c\xd8\x8d\xfa\x72\x7c\x62\x82\xbe\x48\x1a\x5e\x1e\xe5\x0d\x9c\xe7\xf3\x55\xab\x77\xfa\x88\x09\x3f\xde\x3f\xe1\xa7\x4f\x7b\xe5\x94\x3f\x3c\x9f\x9f\xc9\x64\x91\x86\x59\x39\xa1\x25\x53\x92\xf4\xc2\x3e\x38\xbd\xbb\x9a\xe4\x02\x6e\x45\xda\x11\xbe\x9c\xef\xd6\xa1\x40\x5b\xa7\x00\xe2\x4b\xdc\x92\xc4\x3d\xf7\x17\x73\xcf\xc9\x45\xa7\xd6\x55\xc9\xde\xf1\x7c\xe5\x08\x25\x74\xab\x71\x45\x0c\xee\x6f\x5d\x90\x93\x3d\x8d\xff\x4b\x6d\x0b\xb2\x72\x7f\xcb\xaa\xd1\x96\x89\xc0\x6b\xaa\x94\xc3\xee\x3e\xa2\xed\x9e\x2e\xb8\xdb\xb6\x26\x63\x8f\x6a\x5e\xdd\xf5\xf3\xa7\xdb\xae\xc7\xdb\x29\x2d\xa1\x55\x98\x9d\x3f\xe4\xe1\xf0\x17\xff\xbe\xd0\x14\xcf\x5f\xa8\xd0\x14\xbd\xa3\x17\x2a\xd8\x88\x92\x50\x4c\x80\x04\x25\x53\x2f\xb0\xda\x25\x8a\xf5\x91\xf0\xb9\x3e\x22\x3e\xc6\xd4\x3b\x7c\xa1\xcf\x8a\x1f\x1e\x23\x98\x3e\x2a\xa6\x05\x89\x27\x04\xf2\xfb\x76\x91\xd2\xef\x8e\x79\xa8\xcd\xc8\x4e\xa0\x9c\xbb\xf5\x1e\x40\x5c\x46\x35\x6c\x63\x3c\x75\x5d\x15\xd3\xd0\xde\x4e\xf8\x9c\xcc\xe7\x32\xc0\x61\x59\x6c\xe9\xba\xca\xcd\x5b\x46\x45\xac\xf9\x75\x3b\x33\x49\x68\x1d\xdb\xbd\xbb\x0c\x71\x21\x46\xb5\x6f\x03\xe3\x9e\xe0\x85\xf1\xd6\xfe\x86\xea\x90\x09\x66\xb8\x3f\x64\xcf\x78\x3b\xa0\x43\x73\x64\x85\xb4\x0c\x94\x67\x20\xa4\xe2\x19\xa5\x7b\x02\xe5\xcd\xca\x40\x79\x23\xd7\x4d\x2b\x38\x3a\xf9\x2c\x4c\x53\xa1\xe0\xaf\xe4\xc7\xb2\x77\x4d\xdf\xae\x64\x90\x3d\x75\xbd\x66\x2a\xa7\x5a\x6a\xe4\xf2\x76\x4d\x95\x3e\xa7\x71\x31\xc8\x87\x08\xd4\x9a\x51\x03\x96\x91\xb0\xab\xf1\x07\xed\x09\x98\xb6\x83\x91\x89\xf6\x70\xd9\x14\x41\x6f\x5b\x84\x4e\xfd\x34\x1c\x91\xb4\x80\x48\xdd\x2b\x32\xc2\xb6\xcc\xbf\x3f\x68\x9c\xc0\xf7\x97\x69\x32\x29\x17\xb3\x03\x2a\x76\x44\xb7\xd5\xd5\xb1\x23\xee\xa7\xff\x62\x01\x18\xa6\xd1\x3b\xac\x4b\x24\x32\xe2\x17\x54\xac\x76\xa9\x8c\xb2\xce\x8e\x54\x12\xca\xce\xf9\x5a\x7b\x7b\x30\x32\x5b\xc5\xe6\x3a\x1a\xaf\x2a\xcf\xe1\x07\x6c\x88\x85\xe4\xbb\x53\x69\x49\xdf\x2b\x73\xcd\xeb\x6c\xbb\xde\xbb\x9d\xf7\xb2\xb2\x4b\xe5\xb7\x8a\xc0\xf9\xbf\x62\xb9\x84\x2d\x4f\xbe\x0e\x5a\x42\xd3\x40\x0d\x4d\x29\x17\xa6\xb9\xbe\x6d\xb0\x00\xc7\xfd\xa1\x5c\x1b\x0f\x94\xde\x07\x3e\xf3\x7d\x51\x40\x89\x81\x26\x90\x87\xe4\xa1\x9d\xde\x21\x38\x3f\x08\x24\xbe\x12\x78\xed\x3a\xf5\xdc\x23\xfd\xe1\x39\x8d\x4d\x86\xe2\x7e\x7b\xbf\xd3\xd9\x47\x85\x8e\xe0\x77\xa1\xc2\x52\x9a\xf8\x7d\x65\x98\xca\xef\x09\x06\xf8\xfd\xf3\x53\xfb\xfa\x3f\x33\x3d\xdf\x1b\xa1\xf0\xfb\x07\xb1\xf5\xfd\x7f\x6a\x18\x25\x79\x59\x17\x50\x4e\x68\x25\xf6\x1d\x3d\x24\xed\x3d\x47\x05\x48\x4a\x13\xac\x6b\x72\x68\x29\xa4\x0a\xea\xe1\x58\xb1\xa8\x2a\x24\x80\xaf\x8b\x9c\x27\xe3\xf2\x5a\xa2\x0a\x3b\xea\x02\xc0\x45\xc4\xe8\xab\x05\xe7\x8c\x3a\x05\xf2\xa6\x08\x96\x8f\xe2\xaf\x82\x58\x49\x5e\xa2\xf8\xe8\x94\x44\x37\xd2\xc9\xb2\x7c\x16\xf5\x4a\x27\x4b\xdb\x53\xa3\xe2\xb1\x32\xd2\x9d\xe2\x16\xaf\xf5\xc7\x35\x9e\x2a\x78\x68\x22\xaa\x98\x28\xc7\x87\x3b\xe9\xf8\x30\x5f\xa8\xf3\x83\xd2\xf7\x42\x26\xe5\xc1\x4e\x7d\x09\x8c\xf4\xb7\x50\xf6\x3a\xb8\x55\x0e\x0c\xf2\xae\x07\xf8\x8a\x4b\xcb\x1e\xdc\x60\xe2\x67\x24\x8c\x2f\x69\x7a\x27\x9d\x2f\x32\xf2\xc7\x22\xc9\x48\x0c\x57\x98\xf8\x3c\x1c\x49\x4b\x86\xf4\xb7\xe0\x77\x73\x02\x1f\xcb\xa8\xc3\x1f\x76\xd8\x71\x09\x04\xc9\x93\xe5\x28\xaa\x27\x01\x80\xfd\xa1\xa8\x6a\x43\xaf\x73\xea\x44\x7d\xa8\x7d\x03\xcc\x90\x4d\x42\x79\x66\x52\x55\x8d\x1a\xac\x72\x0b\x90\x43\x95\x8f\xa6\x4b\x66\x98\xf2\x51\x0d\xd2\x01\xc7\x0c\x51\x3c\xde\xcd\x49\x19\xb7\x78\x88\xe0\x33\xb6\x43\xd9\xda\x7b\xe8\x69\xb9\x87\x6e\xac\x94\x33\xa4\xf7\xd2\xaf\xa4\xf7\xe3\xab\x30\x27\xe5\x76\xba\x81\x45\x81\xe0\x4d\x2d\x5e\xd2\x67\x38\x44\xf0\x1e\xbf\x19\x74\x87\xf0\x09\xbf\x19\xf4\x86\xf0\xb6\x1e\x2d\x6b\x81\xe0\x02\x4f\xcf\xde\xca\x40\x34\xc6\xd7\xb8\x32\xf9\x5f\xb8\xae\x77\x81\xdf\x96\x78\xa2\x77\x17\xb0\x6a\x52\xa8\x84\x18\xe3\xd7\x9b\x8d\x93\x85\x71\x22\x8f\x4d\xbc\xde\x27\xdc\x8c\xb6\x44\x9b\xed\x08\x59\xcd\xb2\xce\x5c\xc9\x3a\x63\x78\xef\xba\xf3\x12\xef\x2f\x44\xa2\xec\x53\xb5\xec\x2f\xc0\x40\x5b\xed\x66\x48\x07\xaf\xf2\x00\x8a\x9c\xa7\xda\xc5\x1c\x5f\x5d\xf7\xab\x47\x10\xbc\x75\xdd\xb7\xd5\xde\x62\xf9\x28\x77\x7a\xd4\x9c\xd7\x3e\x3b\x77\xdd\x73\xeb\x33\xb5\x61\x66\x9e\xe4\x47\x5a\xb8\xf9\xd0\x20\xdc\x48\xac\xda\x72\x47\x2b\x11\x3b\xa0\xa0\xc7\x58\xa1\x80\x46\xda\x60\x66\x81\x68\xae\x56\xa3\x3d\xf2\x24\x0e\x5e\xb9\xee\x44\x61\xc9\x25\x18\x0c\x6d\xbc\xfc\x8c\xcb\x7d\x39\x03\xce\xb3\x4f\x1e\x47\x70\xeb\xba\xb7\x3a\x18\x82\x41\xe4\xe0\x46\x0e\x64\x05\x06\x9d\x83\xeb\x0a\xc0\x57\x20\x70\x24\x78\xad\x23\xca\x7f\x2c\xe0\x0e\x21\x78\xdf\x8f\x83\xa5\x94\xd1\x26\x35\x19\x4d\x0b\x64\x86\x12\xbf\x28\xca\x71\xae\xeb\x64\x5b\x8e\x2b\x58\x47\x8b\x2c\xb7\x79\x6c\xa3\x01\xa3\x3a\x4e\x73\x8f\xd5\xa0\xc1\x58\x59\x8b\x2d\xa9\x6d\xaa\xbd\x2a\x80\xd7\xa7\x2c\x59\x86\x9c\x58\x0b\xad\x40\xde\x12\xc9\xb0\x58\xa7\x27\x08\x56\x66\x64\x77\x62\x64\x3b\x13\x3c\x0f\xf9\x54\xc8\x6c\x81\xf3\xa1\xf7\xa2\x75\xb2\xec\x1d\xbf\x3b\xf9\xe5\x64\xda\x3b\x9e\x75\x3b\x87\xef\x4e\xa2\x4e\xcf\xef\xb5\xba\x9d\xc3\x96\xff\xa2\x73\xd8\x3a\x5c\xf6\x8e\xa3\x6e\xab\xe7\xf7\xfc\x17\xad\x43\xf1\x37\xed\x1d\x47\xb2\x48\xeb\xb0\x23\xde\x75\x0e\x7f\x39\x89\xba\xe2\xab\x8e\xf8\x42\xfc\x7d\x13\x4b\xdd\x91\x88\xf1\x8a\xad\x2e\x17\x3c\x4d\x28\x79\x95\x86\xf4\xc6\x41\x95\x1a\xf3\x98\xee\x1d\xe9\x0e\x35\xf7\xe8\x79\xbd\x4b\xcd\x7d\x7a\x6e\x3a\x35\xeb\xbc\x68\xf5\x8e\xd3\xce\x49\xe7\xa4\xd5\xf3\x8f\x7b\x1d\xf1\xef\x7d\xaf\xdb\xea\x1d\xfb\xbd\x67\xe9\x33\xff\xe4\x45\x47\xfc\x7b\xdf\x7b\xd1\x7a\x9e\x76\x5e\xb4\x5e\xd4\xc7\xe1\xa0\xca\x1d\xff\x7b\xfa\xfe\xaf\x02\x73\xd6\x39\x6c\xf5\xba\xef\x9e\x2d\x3b\x87\xd3\x5e\x77\xa9\xa1\x5b\x8b\x82\x6c\x75\xf1\x76\x27\x0e\xdf\x25\x18\xbf\xfc\xed\x9c\x95\xce\xb9\xd9\xc9\x39\xd7\x39\xd7\x8f\x8c\x18\x59\xf1\xf8\xbc\xd2\x5e\x69\xff\x36\xd0\x5a\xb6\x1d\x1a\x57\xaa\xd2\x8b\xaa\x58\xda\xb7\x62\x29\x0a\xba\x62\x78\x7d\x4d\xdd\xfe\x1a\x98\x80\x92\x76\xec\xef\x69\x83\x5b\x67\xad\x84\xec\x53\xed\x34\xc6\x4d\x30\x6a\x12\x1f\xa4\xea\x5d\x73\xda\x2c\x55\x6f\xeb\x18\x86\x15\x5d\x72\x0f\x57\xd7\xaa\xb6\xe1\xda\xb5\xfb\x06\xb6\xd2\x17\xa6\x8c\xc5\xd4\xb5\x0a\x0e\xd7\x78\xda\x5f\x06\x73\xb8\x92\xbf\xf9\x3e\xae\x35\xd9\xda\xb9\x12\x24\xaf\x62\x7e\xa0\xfb\x15\x28\xf2\x66\x33\xae\x48\x31\xae\xe8\x3e\x9d\x7c\x21\xf4\xea\xa9\xeb\x46\x75\x90\xa2\x92\x36\x46\x95\xa4\x67\x48\x64\x54\x29\x42\x5a\x53\x5a\x40\x35\xc0\xba\xe7\xb2\x13\x87\x3c\xec\x6c\x5d\xc9\x30\x95\x11\x16\x05\xf8\x82\xa4\xbe\x65\x79\x0d\xeb\x52\x3e\xae\x1c\x62\xf5\x76\xb5\xc9\x71\xdd\xca\x6c\x70\xd9\xbf\x0c\xb6\xf3\x8b\xb2\xf7\x17\x0d\x4d\x5c\x35\x35\x71\xf5\x40\x13\xdb\xf9\x45\x19\x2a\xf2\x7c\x67\x0b\xed\x01\x83\xc0\xb6\x5e\x23\x43\x7d\x95\x8b\xe3\x1e\xa6\x54\x8b\x88\xbe\xad\xf0\x39\xee\x0f\x46\x04\xfb\x7f\x52\xfb\xab\x6b\xe7\x0f\xeb\xdf\xdb\xda\xe2\xbd\xe3\xff\x7f\x44\x75\xfc\x4e\x18\x6c\x45\x51\x37\x04\xa1\x40\xde\x35\x2a\xe0\xa8\xfb\x1f\x88\x34\x2c\x44\x8f\xb4\xa6\x31\xdc\xcb\x1f\x0f\x5b\xbd\xc3\xe8\xd0\x3f\x14\xbc\xef\xb8\xd3\xf3\x9f\xbd\x68\x1d\x77\x8e\x73\xf9\xd4\x39\x56\x7f\x2d\x95\x68\xa9\x87\x96\x78\x38\xfe\x36\xeb\xb6\x0e\xa3\xce\xa1\x7f\xfa\xac\xd5\xed\x3c\x6f\xf5\xfc\xa3\xe3\xce\xf3\xd6\xf1\xf2\x70\xda\x3b\x5d\x76\x0e\xa3\xae\xc8\x3b\xed\x9c\xf8\x47\x47\x9d\xe3\xce\xf3\xce\xb1\xe2\x97\x9f\x48\x96\x33\xea\x18\xeb\xf2\xa3\x94\xda\x94\xab\x18\xc8\xc6\x46\x1c\x3d\x60\x23\x36\x1e\xe9\x5b\x76\xe2\x64\x69\xee\xc5\x49\x66\x13\xc5\x71\x66\x9a\xe3\xe4\xea\x32\x9c\x2c\x52\x11\x41\xb2\xe8\x8a\x70\xa9\xec\x9a\xeb\x6b\xea\x21\x41\xf4\x85\x1a\x32\x28\xc8\x8e\xf6\x99\xf2\xc7\xd9\x82\x2b\xcf\x6e\xd3\x1d\xcd\x77\xe4\x6f\x16\xa9\xff\x57\x32\x0e\xb2\x75\x77\xcd\x4a\x45\x06\xbb\x6c\xf0\x72\x56\x23\xa0\xd5\x08\x98\xd2\xe2\x2a\x6f\xcf\x0c\x33\x15\xf8\x8a\x0d\x7a\xc3\x8a\x99\x35\x3b\x25\x27\x63\x8f\x6f\x36\x14\xad\x43\xcf\x38\x8c\xc9\xdb\x6e\xd5\x21\xd8\x8b\x59\x38\x21\x55\x4c\xd6\x3c\x8b\x30\x07\xa6\x5b\xc6\x14\x98\xcf\x68\xca\xc2\xd8\xf6\x55\x24\xae\x1b\x7a\x8e\x78\x4b\x62\x07\xc9\x0b\xc6\x28\xc9\x32\x96\xed\x16\x92\xaf\x45\x19\x3b\x07\xb7\x7b\x85\x3e\xaf\xac\x7d\xaa\xd7\x79\x16\x05\x53\x50\xad\x06\xa3\x42\xc8\x86\xd3\xcd\x66\x04\xb7\xf8\xdc\x75\x75\x2d\x6d\x8c\x2f\x4d\x4f\x57\xf8\xb6\xbf\xab\x6c\xcd\x26\xdb\xaa\x56\xca\x03\x0a\xf5\xca\xa5\xad\x28\xaf\x29\x58\x91\x40\xa5\x02\xc6\x48\xb9\x6b\xb4\x71\xde\xcf\x83\x73\xd7\xa5\xea\x56\xb9\xed\x86\x52\xdb\x5a\x1d\xf9\x63\x13\xa3\x6d\x57\xff\x9b\x3f\xc6\xc2\x6f\x84\x07\x3f\xbf\xcb\x39\x99\x41\x34\x98\x0c\x61\x01\xed\x5b\x21\x2b\x48\xda\xa4\x6f\xd2\xb2\x83\x26\xaf\xbe\xf3\x46\x95\xa6\xbd\xe4\x7b\x0c\x5d\xc6\x80\xbe\x6d\xe7\xb2\x0d\xeb\x26\x5c\xbb\xd6\xc7\x8e\xbb\x46\x17\x3b\xee\x3e\x66\x3b\xfe\x01\x5b\x7c\x7d\xf3\xbd\x77\xbf\x35\xde\x6c\x7c\x2f\x72\x92\x5d\x91\x94\x44\xbc\xf4\x8b\xb1\x01\xb8\x4b\xea\x2b\x4e\x61\x0c\x66\xbb\x1b\xcf\xa9\xb9\xfb\xd4\x92\x24\xee\xe6\xa4\xbf\xb5\x19\x7e\xdc\xed\x0e\x83\xad\x77\xa7\xdd\xee\xb0\xba\xcb\xa5\x00\x59\xad\x90\x32\x1e\xf4\x76\x28\x20\xff\x63\x11\x66\x64\xab\x68\xb7\x80\x64\x36\xd9\x32\x58\x6e\xa9\xc0\xbb\xdb\x20\x4c\xa2\xc8\xdb\x44\x4c\xa0\x64\xc7\x65\x58\x70\xdb\x14\x2f\x3e\x14\x7a\x10\xe5\x41\x8f\x1c\x17\x60\xf0\xba\x6c\xed\xd9\x89\xd5\x98\x48\x6c\x31\xc6\x2a\x00\xff\x42\xb2\xc5\x93\xff\x40\x00\xfe\x17\xa7\x8a\x84\xa5\x2a\x84\x16\x2c\x74\x30\xfe\x58\x47\xc7\x9e\xe3\x46\xd3\x96\x3e\x46\x6f\xd1\xc8\x20\xd9\x3e\x52\x0f\xe3\x47\xf2\x31\xb3\x4c\xea\xda\x99\x81\x76\x40\x25\x73\xaa\x6c\xb8\x4d\xe1\xfa\x47\xd2\x28\xdc\xb8\xb9\x59\xf2\xc7\x89\xc5\x1f\xef\x6a\xfc\x71\x55\xe3\x8f\x97\x98\xf8\xaf\xcd\x91\xc8\xea\x20\xd7\x79\xd5\xb9\xcb\xbe\x93\x26\x4e\x70\x29\x0d\xb7\x65\x51\xc5\x3b\xbf\x62\xcf\xba\xd4\xed\xb6\xbf\x2e\x82\x5b\x64\xb5\x75\x53\x63\x8d\xb7\xe6\x0e\x0a\x73\xf3\xc4\x75\x79\xdd\xca\x55\x35\x96\x6b\xd7\x55\x87\xea\x4a\x8b\xf3\xc7\x2a\xf3\xb5\xeb\xbe\x96\x47\xed\x74\xe6\x4f\x0b\xce\x49\x96\xef\x9c\xb6\x7b\x23\x8b\xa8\xb0\x7b\xef\xab\xbc\x37\xae\xfb\x06\x3e\x61\xe2\x8f\xad\xf3\x12\xaf\xcb\xee\xbe\x95\xd7\x1a\x08\x0a\x40\xe2\xf2\xf0\x5d\x1b\xe3\xb7\xae\xfb\x16\x5e\x35\xb0\x79\x33\x99\x0e\xd4\x2c\xce\x6a\x82\xbe\x57\x04\xd8\x9d\x06\xfb\xa5\x91\x0e\xb6\x2e\x86\xb1\x2c\xd4\x1a\x16\xf2\x85\x1c\xb9\x03\x4e\xe3\x38\xe5\x2d\x09\x6a\x94\x62\x16\xbe\x6d\xd9\x79\xfd\x10\xc1\x4b\xac\x2f\x8f\xb9\xda\x6c\xbe\xa9\x39\xda\x6c\xda\x3d\x9b\xcc\xe7\x05\xbc\x53\x5f\x96\xb1\x04\xce\xe6\x35\xe1\x61\xe6\xba\xef\x2a\xf7\xc8\xf2\x51\x01\x5f\x1d\x22\x9e\xe9\xb3\x47\x5f\xe0\x17\xf8\x01\x27\x55\x8c\x43\xce\x54\x84\x8d\x25\x82\x9f\xf1\x0f\xe5\xfd\xc1\xde\x17\xfc\xc3\xc0\x24\x3b\xbd\x21\xfc\x82\x07\x8e\x89\xa1\x5f\xea\x19\x2f\xd5\x19\xda\x21\x24\xdb\x11\x4a\xbe\x20\xd7\x95\x97\x9a\xff\x52\x5e\x65\xfe\x45\x12\x64\x7f\xb6\x48\xa4\xbf\x39\x82\x3f\x34\x3c\x1a\x9d\xf0\xcb\x51\xe0\x78\x3b\x5e\x8b\x3a\x3b\xfd\xab\x41\x93\x54\xa0\xc9\x1f\xc0\x11\xfc\x84\x1f\xc1\xc8\x27\x8a\x91\xdf\xc1\x4b\x05\x6e\xd7\x9d\x98\xeb\x73\x3e\x8b\xe7\x89\xc6\xf4\xf7\x32\x43\xa3\xf6\x47\x95\x30\xde\x0e\x22\xa5\x89\x83\x21\x28\x6d\x8c\x73\xf1\xba\xe1\x52\x14\xf8\x59\x64\xe4\x75\xa0\xc1\x85\x7a\xa9\xd0\xc3\x32\x98\x7f\x2c\xe0\x15\x82\xdf\xf1\x6a\xb3\x11\xf4\xc0\xc8\x52\x23\x79\x90\xbb\x44\x63\x99\x2d\xbd\x6e\x7f\x6a\x5e\x63\xb8\x3e\x66\xbb\x0c\x7c\x12\xf5\x0b\x75\x05\x7e\xee\x7b\xbf\x63\xab\xda\xcd\x66\xd5\xff\x3d\x50\x15\x8b\xd6\x31\x16\xa2\x9d\xa7\x1f\x7f\xef\xff\x8e\x95\x68\xaf\x5f\x58\x5f\x6e\x75\x4f\x16\x6b\xb8\xab\x62\xd1\x10\xa7\xf3\xe5\xee\x15\x48\xe7\x8f\x11\xc9\x26\x56\x34\x94\xaf\x4a\xec\xfa\xb5\x80\x9b\xdd\x46\x7f\x87\x9f\xe0\x07\x04\x3f\xf8\x73\x36\x97\x07\x05\x77\x84\xc5\x47\x76\xeb\xf7\xdd\x23\xeb\xbf\x16\xf0\x13\x82\x1f\xfe\xf4\xdd\x79\x4a\xaa\xdb\x96\xe0\xac\xcb\x7c\x1a\x25\xbe\x26\x41\x91\xcb\x73\xb6\x11\xcb\xec\xbb\xc5\xea\x66\xf8\x3d\x2e\x84\x96\x30\x22\x1d\x55\xe1\xbe\xeb\x9b\x84\x5a\x6e\x63\x53\x83\x26\xbf\xa3\xa4\x1b\x34\x97\x3a\x7d\x49\xf8\x5b\xd5\xf3\x5e\x03\xc4\xfd\x55\x59\xe6\x01\xb3\xf1\xe0\x9f\x48\x6b\x88\x89\x3d\xd0\x24\x52\x17\x60\xf7\x5f\x1a\x96\xd4\xfd\x22\xd6\xb0\x8f\xb7\x86\x7d\xbc\xe7\xba\x23\x7b\x72\xac\x49\xab\xdb\xaa\x34\x15\x31\x52\xa2\xf1\x88\xee\xcd\x57\xad\x9c\xa5\x49\xdc\xaa\xe2\x88\x96\xc3\xd5\xdf\x20\x5b\xd2\x4d\x93\x79\xe0\xe8\x7e\xc9\x99\x2b\x40\x53\xab\xfa\x95\x28\xbd\x53\xd3\x7b\xe5\x2f\xd1\x3b\x2d\x40\x91\xab\x47\xdc\x42\xf8\x6f\xf3\x75\x69\xc6\xc7\x07\x27\x58\x7e\xfe\xe7\x8d\x46\x5b\x64\xb6\x04\x8c\x76\x31\x7f\x2e\x4a\x68\x9c\x5b\x6f\x49\xc6\x86\xbd\x09\xd9\x78\x8c\x0a\x38\x7d\xa4\xc5\xe8\x44\xc5\x9b\xac\xbb\xf4\xad\x0b\x45\x0e\xb2\x02\x4e\xbf\x4f\xc4\x3e\x91\x22\xb6\x4f\xbd\x4c\x5d\x33\xf3\x5c\x08\xd7\x35\x59\x3b\xd2\xb2\x76\xaa\xfd\x01\x17\x38\xfb\x9e\xd8\x6e\x89\x25\xb2\x46\x0d\x17\xf7\xa5\x2c\xdb\xba\xb4\xcf\x6c\xf9\xe9\x9b\xfb\x2a\xa9\x76\x5c\x15\x9b\xf7\xe5\x35\xab\x81\xba\xc2\xcf\xe8\x8d\x5b\xf1\xa3\x4a\xff\x41\x15\x40\x6a\xca\x67\xa9\x9c\x47\x1d\x12\x96\xa7\xe4\x65\x14\x91\x3c\x97\x62\xb5\xbe\x9f\xb5\x7e\x11\xb2\xf4\x13\x3b\x3c\x6e\x1d\x1e\x3b\xf2\x42\x64\x9b\x21\x3c\xf2\xf2\x3f\xb5\x5b\x61\x4b\x84\xa6\xb7\x0e\x38\x65\x97\x4c\x8c\x00\xd5\x21\x07\x1c\xdd\x1d\xcb\x59\x30\xdb\x76\x16\x7c\x80\x6b\xe5\xca\x42\xa8\x0c\x09\xb5\x3b\x75\x63\xd7\x4d\xf6\x6c\x4b\x48\xf1\x26\x46\x68\x58\xf3\x2d\x9c\xca\x0f\xca\x7e\x37\x7d\x33\x45\x68\x88\x14\xa9\x13\x94\x28\x70\xc6\x61\x2a\x24\x5a\x73\xed\xad\xb9\x76\x6a\x04\xea\xfc\x91\x56\xcf\x83\xf6\x72\xb3\xd1\x1b\xf4\x6a\xb3\xbe\x2f\x6d\x36\x66\xd3\x5e\x5b\x37\x56\x08\x28\x2c\xfb\xdb\x20\x30\x71\x15\xa4\xdd\x6c\xa9\x0f\xd6\x08\xd6\xb8\x30\x82\x1f\x76\xae\x96\x13\xb9\x0d\xa4\x9d\x5d\x6d\xf3\xe9\x7e\x86\xb9\x63\x34\x68\xf4\x95\x97\x89\xe6\x7b\x69\xf5\xcd\xb7\x75\x07\xf5\x9a\x85\xe4\x61\xbf\xc3\x07\x89\xa7\x68\xe3\xd1\x04\x33\x2b\xd0\x7f\xf6\xd2\x5a\x99\x6f\xe8\xe0\xbd\x2e\x90\xba\xec\x79\x96\xb1\x6c\xb7\xa8\xb4\xec\xd9\x75\xbe\x29\x99\xdb\x43\x56\xf9\x12\xa8\xa5\xa7\x5e\x09\x65\xcb\x59\xcf\xbc\xd3\xce\x61\x0f\x1a\x9d\xaa\x2f\xde\x87\xd9\x84\x3c\xf4\xc5\xd1\x09\xda\x22\xf5\x06\x05\xa5\x15\xa4\x8a\xea\x33\xb7\x29\x66\x3d\x26\x72\x69\xbf\xdd\x8e\x3c\x1f\xef\xca\x84\xb4\x10\xda\x08\x41\x45\x75\x13\x94\x41\xfe\xd8\x3c\x81\xa8\x69\x46\x66\xcc\x13\x0f\x16\xf5\xa6\x08\x15\xd4\x8f\x3d\x0e\x4e\xe8\x34\x85\x76\x9b\xcb\x7b\x3d\x9e\x3f\xd2\x3b\xbd\x77\x74\x64\x0d\x30\xab\x45\x64\xb4\x17\x5b\x32\xf6\xa4\x22\xe8\x27\xb9\x89\xfa\x58\x86\x77\x2b\x3c\x82\x36\x9b\xdd\xe8\x70\x4d\xa1\x10\xaf\xee\x66\x23\x96\xba\xae\xfa\xf5\x13\x4e\xb2\x90\xb3\xac\x95\x94\x67\x42\x09\x32\x10\x1e\x0c\x81\xe1\x76\x17\x32\xdc\xee\x95\x11\x45\xcf\x78\x76\x57\x86\x85\x0c\x21\xc7\x64\xb0\x55\xd7\xd0\x43\x67\x6d\x8f\x61\x2f\xc4\xea\xce\x07\x0f\x21\x3f\x16\x02\x82\x3c\x2e\x3f\x5f\xe4\x53\x2f\x54\x1e\x6b\x08\xda\x7c\xb3\xa1\x5a\x8f\x15\xbd\x44\x67\xa2\x49\x74\x56\x44\x21\x8f\xa6\x5e\x84\xd6\x99\xe8\x42\x82\xa3\x62\x9c\xd0\x30\x4d\xef\xd6\xa2\x03\x6c\xb3\x51\x51\x48\x72\x5f\x41\x61\xb3\x31\x4f\x1e\x2a\x4b\x26\x63\x2f\x43\x7c\x9a\xb1\xdb\x56\x52\x98\xdb\xd6\x69\x51\x48\x10\x6d\x36\x36\x62\xa8\x37\xb5\xab\xad\xc4\x67\x94\xdc\xb6\xae\xef\xe6\x44\xae\x3c\xcf\xb9\xa0\x4b\xa1\x45\xb7\x42\xce\xc9\x6c\xce\x5b\x9c\xb5\x64\xdc\xb1\x45\xc4\x17\x19\x11\x52\x50\x47\x42\x61\x94\x92\x56\x42\x73\x1e\xd2\x88\xf8\xbf\xd1\x0b\xda\x92\x92\xa5\x28\x3f\x22\x2d\x53\x04\xe4\x07\xf2\xd2\xe2\x96\xb2\x2e\xe6\xad\xd9\x22\xe7\xad\x69\xb8\x24\xad\xb0\xd5\x00\xd8\xd6\x8c\xf0\x29\x8b\x7d\x07\x15\xde\x03\x78\x98\x09\x3c\x2c\x86\xe8\xec\xff\x3c\x7d\xfa\x5f\xad\x9c\x2d\xb2\x88\x7c\x08\xe7\xf3\x84\x4e\x7e\xfe\xfc\x1e\xf7\xba\x3e\x21\xe4\x59\xef\xe8\x34\xf4\xa3\xe9\x82\xde\xf8\x5f\x73\x7f\x16\xce\xff\x7f\x01\x00\x00\xff\xff\x90\xad\xa9\x56\x76\xd7\x00\x00") +// FileIdentifierStaticJs103af7223eChunkJs is "identifier/static/js/10.3af7223e.chunk.js" +var FileIdentifierStaticJs103af7223eChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xfd\x7b\x73\xdb\x38\xb2\x30\x0e\xff\xff\x7c\x0a\x89\x67\x96\x87\x88\x5b\x8c\xe4\x5b\x12\x7a\xb0\x7a\x72\x71\x26\xde\x93\xc4\x39\xb1\x67\xb2\xb3\x1a\xd5\x2c\x45\x42\x12\x63\x0a\xd0\x90\x90\x2c\x47\xe2\x77\x7f\x0b\x37\x12\x94\x28\xdb\x99\xdd\x7d\x7f\xf5\x94\xab\x2c\xe2\x0e\x34\x1a\x8d\xee\x46\xa3\xf1\xf4\x49\xbb\xf5\x96\x65\xad\x34\x89\x08\xcd\x49\x2b\xa1\x63\x96\xcd\x42\x9e\x30\xda\x9a\xa7\x24\xcc\x49\x2b\x27\xa4\xd5\xeb\xfa\x47\xe1\xf8\xd9\xe1\xe1\x11\xf1\xa3\xe9\x82\xde\xf8\x5f\x73\xff\xfd\xc5\xeb\xf3\x8f\x57\xe7\x3e\x5f\xf1\xd6\x93\xa7\xff\xc7\xe3\xd3\x24\xf7\x6f\xc9\x68\x1e\x46\x37\x7f\xcb\x19\x9d\x27\x31\xa1\x3c\x19\x27\x24\xc3\xf7\xa4\x6d\x36\x83\x21\xf2\xe7\x8b\x7c\xea\x0d\x06\xbd\xee\x10\xd6\xbd\xa3\x67\xc1\x78\x41\x23\xd1\x0b\x8f\x00\x07\x8a\xd6\xce\x42\x74\x85\x67\x49\xc4\x9d\x33\xea\xc7\x1e\x07\x27\x74\xc0\x2b\xf3\xa1\x75\x46\xf8\x22\xa3\xad\xb0\x40\xe8\x6c\x19\x66\x2d\x86\xa9\x77\x82\x20\xc3\xd4\x3b\xec\x21\x48\x30\xf5\x8e\x5f\xa0\x33\x53\xa2\x15\x7a\x68\x2d\xf2\x11\xcc\xfc\x45\x4e\x5e\x33\xca\xc9\x8a\x7b\x99\x1f\xa2\x33\x5d\xd7\xe5\xe8\x2b\x89\xb8\x97\xf8\x11\xf2\x08\x02\x52\x14\xd0\x3b\x7a\x7e\x7f\xe7\x54\x19\x3f\x26\xe3\x84\x92\x4f\x19\x9b\x93\x8c\xdf\x89\xee\xfe\xfe\x3b\xc9\x3f\xb0\x78\x91\x12\x07\xd6\xcb\x30\x5d\x90\xa0\xdd\x2d\x10\xc8\xbc\xe1\x22\xe5\x78\xc9\x92\xb8\xd5\xd5\x9d\x5f\x9f\x74\x03\xe7\xbf\xc8\xf3\xf1\x09\x79\xe1\x40\xaf\x2b\x42\xd1\x73\x72\x1a\xbd\x70\xe0\x50\x86\xc2\x93\xf8\x34\x7c\xe6\xc0\x91\x0c\x3d\xef\x45\xcf\x9e\x1f\x3b\x70\x2c\x43\xa7\xa7\xa3\xd1\x69\xe8\xc0\x89\x0c\x1d\x47\xe1\xf8\xa4\xeb\xc0\xa9\x0a\x1d\x85\xdd\xe3\x67\x0e\x3c\x93\xa1\xa3\xe7\xcf\xc9\x51\xe4\xc0\x73\x19\x3a\x24\xcf\xe2\xa3\x43\x07\x5e\xc8\x50\x6f\x74\x42\x0e\xbb\x0e\xbc\x54\xcd\x8f\x5e\x8c\x4f\xa3\xd0\x81\x97\xaa\xfd\xd3\x17\xe3\x6e\x48\x1c\x78\xa9\x9a\xec\x76\xc9\xe9\xb3\x53\x07\x5e\x3e\xd3\xc1\xe8\xf9\xc9\x91\x53\x9c\x55\xe3\x63\x02\x7c\x2f\xfe\x85\xb9\xcd\xea\x73\x5b\xcd\x65\xe6\x11\x35\x99\x1c\x13\x3f\x62\x94\x67\x2c\x4d\x49\x0c\x14\x13\xd3\x3a\x64\xd8\x23\x3e\x0d\x67\x04\x88\x9f\xf3\x90\x13\x90\xf3\xfe\x99\x8c\x3d\x05\xf8\x36\xc6\x1c\xf9\xd1\x22\xcb\x08\xe5\x02\x61\x64\xfa\x95\xc8\xea\x51\x04\x21\x4e\x06\xdd\x21\xe4\x38\x19\xf4\x86\x1a\x43\x06\x59\x9f\x07\xa1\xaa\xe8\x75\x98\xa6\xa3\x30\xba\xf1\xaa\x8e\x13\xb4\xce\x36\x9b\xdc\x23\xa8\x40\x30\x18\xa2\x61\x51\xc0\xe1\xc9\xe1\xfd\x10\xa8\x15\x17\x63\xa2\xd8\x59\x50\x85\x4f\xb1\x23\x3a\x79\x37\x27\x6c\xdc\xba\x4d\x68\xcc\x6e\x5d\xb7\x31\x31\x66\xd1\x62\x46\x28\xdf\x93\x4c\xc3\x65\x32\x09\x39\xcb\x80\x61\x0b\xcc\x63\x96\x79\x6a\x49\x0c\x9c\xf3\x78\x42\x1c\x70\xae\x33\xb9\x54\x1d\x70\xde\x26\x19\x19\xb3\x95\x33\x04\x8e\xbb\x67\xfc\x47\xe2\xa7\x84\x4e\xf8\xf4\x8c\x1f\xe0\x1e\x4a\xc6\x1e\x75\xdd\xb2\x5e\x01\x90\xec\xe5\x84\x50\xee\x27\x34\x26\xab\xcb\xb1\x47\x06\x7c\x88\xfe\x8a\xbb\x48\x4f\x66\xcf\xac\xb2\x6e\xe1\xa9\x59\xcd\x30\x75\x5d\x35\x2c\xff\x53\xc6\x66\x49\x4e\xfa\xdb\xc0\xe0\xb8\x5d\x16\xb4\x7a\xce\x37\x1b\x8f\xe3\x76\x17\xea\xc5\xfd\x8c\xe4\x2c\x5d\x12\x0f\xf9\x7c\x4a\xa8\x67\xe3\x94\xa8\x09\x88\x87\x0a\x84\x50\x51\x04\xdf\xdb\x50\x4e\xf8\x75\x32\x23\x6c\xc1\xf7\xd4\x0a\x4c\xd4\x5b\xe1\x68\x22\xd1\x41\x55\x48\x5c\xd7\x19\x30\x49\x29\x5a\x6f\x75\x86\xa1\x83\x31\x5e\x17\x3e\x67\x57\x3c\x4b\xe8\xc4\x8f\xc2\x34\x15\xa8\x63\x51\x2c\x02\x1c\xad\x93\xb1\xd7\x6b\x63\x4c\x7c\xca\x62\x72\x7d\x37\x27\x1a\xa2\x83\xe1\x99\x42\x17\xe2\xb3\x5b\x4a\xb2\x37\x1a\x07\xcc\x0a\xf8\x25\x21\xb7\xfe\x84\xf0\xd7\x6c\x36\x5f\x70\x12\x5f\xf1\xbb\x94\x78\x04\xe8\x22\x4d\x4b\x92\xc7\xfb\x74\xc0\x87\x01\xad\x5a\xcd\xab\x7e\x3b\xef\xae\x3f\xbc\x17\xdd\x54\x6d\x7f\x0c\x67\xa4\x4f\x02\xe2\xcf\x43\xb1\x64\x3e\xb2\x98\x6c\x36\xc4\x9f\xb2\x9c\x57\xc5\x23\x51\x3c\x19\x7b\x6d\xd3\xcd\x12\x37\xfd\x11\x8b\xef\xce\xf2\xdb\x84\x47\x53\xaf\xaa\x11\xad\xa3\x30\x27\xaa\xa9\x40\x7e\xbe\xba\x7c\xf3\xab\x13\x18\xd0\x6d\x0d\x4e\x56\x22\xb3\xfd\x97\xa9\xd8\xca\x2b\x52\x0b\x35\x9d\xa1\x20\xe1\x14\x73\x9f\x2d\x49\x36\x4e\xd9\x2d\x30\x2b\xf0\x77\xc8\xac\xd0\xaf\x1a\x1c\x4f\xbd\x70\xc1\xd9\x26\x8f\x04\x3d\xd9\x88\xd4\x34\xbc\x43\x4f\x7d\x4e\x72\xee\xd1\x83\xec\x80\xa1\x3e\x09\x22\x4f\xc0\xc8\x9a\xa8\xb4\x3e\xd5\x02\x0d\xc7\x24\x23\x34\x22\x02\x46\xfd\xad\x70\x40\x64\x0f\x17\x02\xfb\xdb\x5e\x5b\x63\xf0\x87\xab\x0b\x3a\x5f\xf0\x0f\x84\x4f\x59\xac\x37\xa7\xcd\xa6\x5d\x02\xcf\x7c\x7c\x60\x31\x41\x10\x8b\xc2\x4f\x3f\x5c\x5d\x9c\xb7\x7a\x5d\xd3\xbf\xdd\xc5\x68\x91\xcc\xb9\xd5\xc7\x5e\x4f\xcc\x69\x7f\x11\xf4\xba\xf2\x23\x0e\x16\x9b\x4d\x5c\x8d\x67\xbc\x7f\x0e\xcd\xc7\x79\x4a\xc4\xcf\x99\x21\x21\x1c\xcf\xbd\x5e\x17\xf5\x6b\x93\x1d\x08\x54\x93\x44\x99\x8d\xc7\x39\xe1\x9f\x24\xde\x6c\x36\x22\xfa\x8c\x62\x8c\xb9\x00\x16\x25\x2b\x53\xdd\x55\x32\x4a\x13\x3a\x39\x43\x14\x7b\x04\x37\x25\xa1\x5a\x55\x66\x73\x70\x5d\x5a\xe2\x93\xc1\x6c\xe6\xba\x0a\x93\xda\x18\x8b\x6f\x89\x60\xe2\xbb\xdf\x11\xcb\x69\xe0\x5c\xbf\x13\xf4\xee\x8d\xf8\xf7\xf2\xd5\xfb\x73\x67\x58\x92\xae\xaa\x32\xe4\xba\x8e\xd8\x3c\x92\x48\x2c\x83\xd0\xa3\xe0\xcc\x59\x9e\x08\x28\x39\xa8\x3f\xf6\x28\x0a\x68\x20\x66\x78\x6b\x05\xd6\xa1\x14\xec\x03\x5f\x05\xf2\x99\x35\x3d\x02\x3c\x72\xc1\x57\xeb\xac\x3f\xf3\xec\x20\x0a\x48\x55\x74\x5a\x92\x89\x36\xd9\x6c\xda\x15\x9d\xd8\x6c\xda\x02\x85\xf8\x36\xe1\xd8\x3f\x9b\x86\x9e\x44\x6c\x26\x1a\x33\xe3\xf9\xa4\x87\xec\x71\xe4\x8a\xe6\xfd\x37\x97\xaf\x7f\xfe\x70\xfe\xf1\xfa\xf7\x4f\x97\x57\x17\xd7\x17\x97\x1f\x7f\x7f\x7b\xf9\xfe\xfd\xe5\x97\x8b\x8f\x3f\x01\xc3\xb4\x4f\x02\xb1\xff\xd2\x3e\x0f\x08\x24\xb8\x6c\x2e\xca\x48\xc8\xc9\xe7\x90\x4e\x88\x87\xce\x12\x3f\x27\xfc\x8a\x87\x19\xf7\x18\x74\x11\xc8\xf0\x39\x8d\xbd\x0c\xba\x6a\x83\x08\x71\x22\xba\x32\x63\xf4\x25\x8d\x48\xce\x59\x26\x16\x46\x98\x50\x92\x9d\x25\x63\x8f\xb4\x31\x0e\x5d\x97\x8b\x9f\xcd\x86\x49\x46\x20\x4c\x68\xee\x65\x08\x6d\x53\x72\x8b\x5f\xd8\x42\x94\x12\x49\xb8\xeb\x7a\x25\xc5\xe3\x9b\xcd\xd8\x23\xfe\x38\xc9\x72\x03\x9d\xd7\xd3\x24\x8d\x91\x58\x30\xa8\xf0\x42\xd4\x0f\x83\xb1\x17\xaa\x8e\xe6\x58\xcc\x9f\xc1\xbc\x5c\x92\xc4\xfe\xd4\x53\x1f\xc0\x51\x20\xe6\x68\xe6\x71\x24\x23\x2c\xca\x31\xaa\x3a\x16\x66\x13\x09\xa5\x5c\xef\xb3\x7f\xed\xb9\x6e\xc9\xa8\x94\x89\x83\xde\xb0\x6f\x07\x02\x87\xb3\xb9\x03\x14\xcb\x5f\xd1\xf1\xbe\xa3\xc8\xd7\x35\x9b\x3b\x81\xfe\x7e\x4f\xc6\xdc\x01\x66\x0f\x3e\x19\x7b\x6a\xe4\x18\x63\xb6\xd9\x94\x03\x67\xaa\x3f\xd9\xee\xae\x52\xc7\x15\x48\x76\x72\xa8\xb6\x12\x3a\xd1\x59\x36\x9b\xcc\x80\x24\x19\xd0\x61\x61\x28\xa4\xf8\x2e\x21\xb0\x54\xd8\xab\x30\x6f\x07\x06\x87\x8d\x30\x38\x1c\xba\xae\x1d\x02\x86\x47\x82\x8b\x14\x20\x10\x12\x80\x0c\xa4\x62\xcc\x52\x0e\xe8\x77\x7a\x41\xb9\xb7\x13\x9f\xb3\xf9\x01\x66\x4f\x12\x10\xdb\x05\xe7\x6c\x66\x42\xa2\xc4\x01\xce\xe4\x77\x96\x4c\xa6\x26\x50\x75\x76\x62\x77\xd6\x59\x69\x78\x4b\xe8\x06\x8e\x00\x38\x30\xac\x82\x18\x63\xda\x77\x3e\x8b\x5a\x9c\xc0\x79\x25\xdb\x71\x4c\x1f\xe6\x61\x96\x93\xb7\x29\x0b\xb9\x47\x06\xce\x88\x65\x31\xc9\x9c\x03\x7a\xe0\x7c\x49\x62\x3e\x75\x86\xe8\xa0\x39\x07\xab\x72\x54\x7d\xba\x53\x5c\x25\xb0\x92\x7e\x7c\x08\xf9\xd4\x9f\x85\x2b\x8f\x0f\x1c\x45\x2d\x9d\x03\x32\x04\x3e\xd0\xd8\x20\x43\x74\xe0\x44\x69\x22\x76\x4f\x1d\xb2\x72\xd2\x5a\x4e\x45\xd8\x65\x8f\x2e\x28\xf7\x6a\x59\x75\x4f\x45\x3c\x1b\x38\xb3\x30\x9b\x24\xd4\x39\xf0\x9c\x77\x44\x8e\x5c\xee\x2e\x8e\xc2\x44\x09\x16\xf4\xb8\x12\x1a\x5e\x81\x06\x20\x1a\xa2\xa0\x6b\x0d\x79\x65\x2f\x67\xb1\xd1\x28\xc6\x7f\x0b\x41\x99\xda\x92\x5c\x77\x87\x07\xa2\x66\xa9\xae\xa7\xb2\xd5\xe0\xae\x6c\x5f\x83\x12\x6e\x05\x9c\x45\xbc\x02\xb8\x8e\x2e\xe4\xce\x7d\x89\x6d\x86\x5e\x51\x5e\x4f\x08\xd3\x39\x0f\x69\x24\xf8\x6d\x8e\x10\x9f\x66\xec\xb6\x45\xc9\x6d\x4b\x50\xde\xf3\x2c\x63\x99\xe7\xbc\x0e\x29\x65\xbc\x25\x38\xbd\x56\xd8\x8a\xd2\x30\xcf\x5b\x61\xde\x0a\x4b\x3a\xe5\xa0\x02\xce\x6b\x2c\xba\x19\x33\x51\x6d\x99\xfd\x96\xe2\xee\x19\xfd\x91\x1b\x9e\x9c\x1e\x1c\x28\x88\x30\xcc\x07\x74\x78\xc6\x7c\x42\x17\x33\x92\x85\xa3\x54\xc8\xbb\x55\x60\xb3\x69\xf7\x40\x92\xca\x71\x32\x59\xa8\xf4\x76\x17\x1c\x29\xa0\x3a\x89\xdc\x36\x3d\xe6\xdf\x66\x09\xd7\x69\x08\x9a\x45\x5c\x21\x4f\xdd\x90\x3b\x09\x95\x6d\x6a\x5b\xc7\x47\xea\xba\xc4\xe3\xfe\x3c\x63\x9c\x09\x81\x04\x28\x02\x26\xe3\x04\xa4\x79\x51\x78\x08\x6e\xf1\xb6\x90\x64\x18\xd4\x56\x42\x5b\xa4\xbf\xaf\x0f\xdc\xc8\xd6\x14\xaa\x41\x06\xed\x2e\xd8\x23\x14\x61\x33\x22\x29\x84\x07\x42\x38\xc1\x14\x48\x01\x5f\xb1\xae\x3a\xcc\xf3\x64\x42\x37\x1b\x7b\xcb\xa8\xb8\x9b\xde\x19\xff\x71\x9b\x3a\x9d\x71\x03\x75\x8b\x72\x0d\xf8\xb0\x64\x8a\x98\xe8\x3b\x45\xba\x81\x72\xfc\xfe\x34\xcc\x2f\x6f\xa9\x19\x85\x62\xfc\x05\xc0\x5c\xd7\x23\x03\x36\xc4\x74\xc0\x86\xa8\x24\x97\x96\x4c\x71\x63\x71\x09\x5f\xbd\x75\x01\x04\xd6\x92\x52\x05\x9a\x7a\x11\x5f\x22\x2e\x28\xc2\x16\x28\x62\x47\x7c\x85\xe6\x85\xb5\x84\xae\xab\x25\xb4\x2e\xce\x78\x76\x27\xb0\x58\xae\x17\x21\xd3\x10\x21\x37\xbc\x62\x0b\x1a\x27\x74\xf2\x5a\x92\x89\xcf\x24\xe2\x5a\x6e\xa3\x78\xe4\x11\x43\x6d\x99\x0a\x28\x6a\x7b\xc6\x15\x75\xa5\xc0\x35\x35\x65\xc0\x4b\x2a\x2b\x62\x35\x5d\x65\x05\x49\x73\xd2\xba\xa7\xa5\x22\x0a\x85\x9c\x30\x46\xeb\x42\xed\x47\x6b\x51\x61\xa0\xea\x05\xce\xe6\x81\x6c\x4b\x2f\x54\x5d\x71\x47\x27\xeb\x65\x6d\x9a\xee\xc8\xac\x05\x24\xb8\x49\xa2\x59\x79\x5b\x1b\x19\x0a\xd6\x85\x90\xfb\x15\x2c\x85\x88\xa3\x28\xe5\x17\x15\xcc\x34\x8c\x23\x9c\x68\xc0\x56\x59\xde\xe9\x70\xa6\x53\x20\x2d\x99\x5f\x59\xba\x93\xc3\xa2\x8c\x51\x99\x3b\x91\xd8\x8b\xd3\xcd\x66\xa1\x26\x24\x96\x92\xcb\x59\xda\xc1\x13\x2f\x06\x67\xe5\x20\x58\xe8\xef\x3b\xb1\xbb\xa9\xd6\x3b\x38\x05\xd3\x48\x07\x2f\x0c\xb2\xdc\x78\x99\x35\xc9\x57\xff\x9e\xbd\x55\xa2\x05\x64\x15\xf0\x78\x09\x3c\x48\xb0\xc0\x24\xc8\xf1\xb5\xc7\x11\xa4\x58\x88\x7f\xb0\xc0\xa1\x08\xc5\xd8\xda\xc6\x16\xbe\xda\xc5\xae\xd9\x5c\x42\x02\xc1\xb8\x29\x59\xec\x12\x2a\xfd\x8c\xba\x6e\xe6\xba\x5e\x2e\xe6\x0e\x97\x7b\x9a\x0c\x0a\x76\x31\x97\x53\x6d\x27\xc8\xa9\xef\x6a\x95\xd1\x0c\xdf\x78\x6b\x81\x26\x89\x28\xd0\x91\xc5\x3a\x31\x48\x24\x4a\x64\xd6\x8e\x2a\xd1\x19\x6b\x1c\xd2\xf3\x6d\x90\x27\x29\x57\x8d\x98\x9f\x99\xaf\xb6\xaa\x6b\x36\xc7\x5d\x30\x21\xd1\x5b\xdc\x85\x36\x73\xdd\x4c\xc1\x79\x5a\x1f\x54\x59\x08\xc1\xa8\x29\x45\x54\x80\xce\x66\xb2\x73\x38\xee\x4c\x61\x66\x50\x56\x87\x64\x0f\xf1\xb8\x33\x82\x99\x46\x71\x1d\xa8\xba\x33\xad\x77\x67\xa4\x71\xc1\x63\xae\xdb\xa6\x7d\x5e\xb1\xc5\x29\x0a\x38\xc6\x38\xb5\x04\xa3\xd4\x96\x74\xbc\x19\x5e\x7a\x33\xe0\x08\xc1\xac\x42\xa2\xd7\x7f\x82\x45\xb5\x51\xa8\x37\x84\x06\x15\xc5\xce\x5e\x2d\x70\x95\x0a\x2c\x2b\x27\x94\xda\xcb\xce\x28\x7a\x12\x4a\x49\xa6\x17\xa2\x90\x19\x76\xb3\xab\x55\x55\xcb\x6f\x56\x65\x17\x41\x88\x79\xbf\x1b\x8c\x3c\x2a\x70\x56\x7f\x96\xbc\x62\x84\x25\xc6\x84\x1d\x26\xc9\x18\xab\x80\xac\xf0\x26\xef\x30\x45\xd6\x98\x05\x70\x8d\x3d\x59\x89\x37\xc5\x59\xb9\x18\x23\x6b\x31\x7e\x6c\x94\x41\x6c\x36\x9c\x5b\x6c\x38\xd7\x12\x4c\xbb\x27\xb3\x8c\x93\x15\x89\x95\x08\x4a\x6c\x11\xd4\xe4\xea\x6a\xc2\x9c\x57\x62\x48\xbb\x4d\x5d\xf7\xa3\x47\xad\x2e\x7c\x28\xe5\x7a\x29\x27\x2a\x79\xb2\x64\xd6\xe7\x1e\xfa\x0e\x71\x7f\xab\xf8\x19\x77\x5d\x87\x32\x4a\x54\x27\x05\x33\x9e\x85\x34\x1f\xb3\x6c\xe6\xa0\x33\xc4\x31\xdf\xca\x6f\xb6\xf7\xcd\xe6\x61\xe1\xf8\x73\xc5\xe2\xaa\xbd\x60\x07\x11\x8f\x1b\x11\xf1\xb8\x86\x88\xc7\x43\x48\xd4\x04\x77\xd5\x74\x76\x0b\x08\x71\xd6\x17\x50\x91\x02\x5a\xea\x71\x24\x17\xbb\xb3\x4c\xc8\xed\x9c\x65\x5c\x09\x44\x09\x7e\xed\x85\x90\xa1\x33\xb1\x67\xad\x95\xee\x46\xeb\xee\x35\x9f\xac\xb4\x11\x32\x77\xbf\x9c\x4e\x6f\x81\x23\x2f\x17\x75\xa2\x72\xbe\x5d\xd7\x5b\x3c\xb4\x18\x50\xb0\xc0\x8e\x42\x5f\x55\xe3\x43\xda\x05\x76\xa6\xf6\x8d\x2b\x6f\x01\xb2\x9f\x62\x08\x46\xdd\xb1\x28\xdb\xde\x6c\x3e\x7a\x21\x42\x09\x8e\xab\x81\xcc\xf1\xee\xee\x27\x08\xb3\xd9\xbe\x66\x78\xae\xa8\xe2\x59\xa2\x76\xf6\x58\xd1\x51\x6b\x65\x24\x9a\x62\xe1\xf1\x81\x4c\x84\x44\x6f\xfd\xb1\x22\x5e\xb1\xbd\x56\x12\x45\xc4\xf0\xec\x40\xa5\x2a\x86\x7a\x84\x1d\xba\x98\x8d\x48\x26\x31\x5f\xaa\xac\x3d\x8a\xa9\x58\xb0\xa5\x00\xa9\x2b\x1d\xf5\x69\x40\xe5\xf7\x66\xd3\x05\xdd\x29\x15\xc9\xd9\x5c\xc5\x69\x3a\xa9\x62\x33\xbd\xf4\xcb\x7e\x9a\x04\x15\x92\x29\x15\xa6\xbd\xb1\x35\x79\x6a\xe4\x4f\x4a\xf6\xa9\xcc\xf5\xde\xe0\x23\x68\xaa\x9f\xec\x62\xe4\x49\x23\x46\x9e\xd8\xd2\xfb\xc9\x30\xe8\x8a\xb9\xea\x48\x75\x5c\xa9\x7d\x72\xc2\x05\x67\xe5\xd2\x6e\x11\xad\x0a\xf9\x2c\x58\x44\x48\x20\x13\x94\x4b\xa2\xf1\x5a\x51\x9e\xb0\xbe\x6f\x49\x5e\xa7\x13\x2a\x8e\x47\x31\x87\x65\x46\xc3\x24\xc9\x5f\x53\x20\x34\xe3\x33\x5c\x63\x73\xbd\x61\xc5\x4c\xa9\x8f\x42\xad\xa2\xb5\xe1\xc0\xe4\x6c\x87\x35\x06\xac\xac\xba\x80\xc8\xf0\xd9\x37\xe4\x2e\xf7\x72\xe4\xcf\xc2\xf9\xd6\xd1\x49\xc9\xd7\xde\x90\xbb\x80\x14\x90\x0f\xc8\x10\xd6\x61\x46\xc2\xe0\x8d\x27\x02\xa8\x40\x05\x42\x7e\xce\x32\x5b\x09\x2f\x79\x1c\x43\x4e\x7c\x91\xbd\x43\xe4\x4f\x81\x24\x47\xe2\x8f\x93\x94\x93\xcc\xdb\x39\x68\x11\x44\x4c\x0d\x91\x61\x33\xc9\x25\x5d\xfa\x2b\xae\xed\x3f\xae\xcb\xaa\x98\x77\x9a\x31\x10\x9c\x4e\x6a\x26\xbc\xdb\x4f\x07\xdd\xa1\x18\x5e\x10\xe9\x0f\x88\x31\xf1\xf3\x79\x9a\x70\xcf\xe9\x38\xa8\x3a\x47\x6a\x2d\x0e\xbc\xb8\xef\x74\x9c\x83\x38\x70\x1c\x8b\x42\x7f\x32\xd2\x8f\x92\xe5\x76\xb0\xea\xa8\x11\xab\x8e\x6c\xac\x3a\x1a\x2a\xb5\x6b\x86\x59\xff\x83\x27\x75\x4f\x1c\x52\x8f\xa2\x72\x2d\x5d\x79\x14\x32\x21\xb7\x95\xcd\xbe\xb5\x41\xf2\x3d\x87\x09\x08\xa8\xcd\xd6\xf0\x8a\x2e\x88\xc5\x7b\xd0\x90\xf4\xca\x2c\x3b\x21\x3a\x34\xa4\xbf\x57\x4b\xbb\xb1\xec\x67\xb3\x8d\x1b\xf1\x5d\xa1\x5e\x8d\xc3\x3e\x60\x06\xf9\xea\x6c\xf6\x01\x2d\xaa\xf1\x5e\x58\xd2\x8f\x44\x62\x27\x53\xd2\xbf\x5a\x2f\x8a\x1f\x30\xcb\x41\x69\xd8\xc4\x82\x73\x54\x8c\x53\x54\xca\xa4\x8c\xcc\xd3\x30\x22\xde\x53\x49\x92\x14\xb1\xd1\x94\x85\xb3\xf9\xd3\x09\x34\xa1\x38\x1f\x90\x61\x61\x1f\x20\xbc\x32\xd3\x4e\x31\xb5\x11\xa6\x3b\xd4\x1a\x6e\x31\x41\x90\x61\x3d\x60\x56\x5f\x99\xac\x5c\xc0\x09\xd6\xba\x6d\x3d\x1c\x35\x10\x4b\xb1\x2d\x8f\x35\xfb\x72\x44\x66\x94\xb9\x88\x48\x95\x0a\x4b\x8e\x34\x12\x11\xaa\x46\x27\x70\x6e\x95\xfe\x23\x15\x91\xea\x3b\x30\x89\x06\x0a\xd9\x20\x1c\x62\x3e\x08\x87\x07\x7c\x10\x0d\x9f\x1e\x76\x98\xfc\x81\x6c\x90\x0f\x31\xc5\x18\xe7\x7d\x3e\xc8\x87\x1d\x36\x48\x87\x01\x1f\x5c\x78\x39\x1a\x42\x56\x8d\xfe\x5b\x6d\x09\xbf\xcc\xb2\xf0\xce\x12\x96\xc7\x09\x8d\xfb\xea\x47\x60\x33\x31\xcb\x99\x0b\xf0\x54\x95\xbc\xac\xeb\x0d\xf4\x19\xaf\x54\xc3\x91\x80\xf8\x79\x9a\x44\xc4\xeb\xc2\xb6\x96\x21\x19\x7b\x4d\x0d\x5e\x08\x80\x95\x14\xb8\x8a\x6a\xa4\x58\x52\x99\x80\x31\xad\x4e\xab\xc5\x88\x1e\xca\x59\x56\x6e\x26\x87\xa1\x42\x30\x77\x34\x9c\x11\x07\xa8\xe0\x1a\xc6\x2c\x3b\x0f\xa3\x69\xbd\x51\xe2\x9b\x90\xeb\x46\x8c\xe6\x2c\x25\xfe\x6d\x98\x51\xcf\xf9\xe7\x8c\xc5\xd2\xc6\xa2\xcc\xf1\xcf\x56\x92\xb7\x62\x32\xcf\x48\x14\x72\x12\x43\x6b\x91\x93\x96\x95\x8d\xfe\xb3\xed\xa0\x52\xeb\x6f\x4a\x09\x71\x76\x4c\xcf\x88\x4f\x68\x38\x4a\x49\xec\xba\x89\x47\x85\x7c\xc0\xf5\x8a\xca\xfd\x39\x9b\xcf\x49\x86\x6f\x76\xa2\x10\x54\x31\xe5\xa9\x57\x2d\x5f\x19\x8b\x80\x63\xea\x71\x20\x48\x50\x75\xb0\xf6\xd7\x77\x9e\x62\x53\xa5\x19\x89\x3c\xbb\xf7\x93\xfc\x0d\xc9\x79\xc6\xee\x48\x6c\xcc\x38\xd6\x46\xe1\x16\x88\x7c\x90\x0b\x8a\x94\x0b\xd1\x3d\xcc\x32\x76\x7b\x55\x05\x39\xcf\x92\xd1\x82\xab\xd0\x38\x4d\xe6\x73\x12\x07\xed\x1e\xe8\x1e\x05\xeb\xa2\x38\x23\x0d\xbd\xfe\xe4\x55\x1d\x00\xf9\xa9\xc6\xa8\xbe\xcb\x7c\x2a\xc8\xe6\xa2\xeb\x22\x8b\xe2\xcd\xdf\x0a\x8e\x1d\x01\xf1\x25\x7d\x10\xa4\x14\xbf\xf7\xea\x39\x4d\x02\x34\x34\xfe\xe8\xf6\xcc\x64\xe6\xbe\x18\x99\x3f\x62\x0b\x1a\x87\x59\x42\x72\x23\x5a\xdd\x97\x7b\x1e\xc6\x71\x42\x27\xa2\x9b\x2c\x4b\x26\x09\x0d\xd3\x4f\x65\x77\x49\xad\x87\xb5\x71\xe1\xfd\x43\xb6\x06\xa3\x91\xe4\x95\x67\x8f\xa5\x69\xac\x56\x4b\x68\xa7\x7c\x59\xfd\x3d\x8d\xf6\xb5\x80\x14\x38\xe1\x28\x67\xe9\x82\x13\x07\x08\x7e\xa9\x1a\x2e\xc7\x0c\x02\xe5\x6c\x94\x7a\x2d\xcf\xa3\xe2\x7e\xad\x62\x46\x7f\x9e\xc7\x21\x17\x9b\x5b\xe0\x35\x65\xc7\xed\x2e\x6c\x95\x50\x29\xf2\x50\xb8\xc2\xe2\x2f\x35\xb2\x46\xfc\x9c\xcd\xc8\x2e\x13\x22\x16\x1e\xb5\x8e\x2d\xad\x55\x27\x4f\x48\x6b\xfb\xc4\x2f\x75\xa5\xe4\xa0\xdd\x03\x67\x96\x3b\xe0\x7c\x21\xa3\x9b\x44\x10\xfc\x0f\xec\x9b\x03\xce\xa5\xa3\x84\xee\x68\x1a\x66\x2f\xb9\xd7\x45\x3e\x67\x3f\x0b\x60\xbe\x0e\x73\xe2\xa1\x03\x43\x0f\x7b\x62\x13\xee\x9e\xb1\x4a\x91\xcc\x8c\x4a\x33\xc3\x7c\xc0\x84\xc4\x94\xf5\x1d\xe7\x20\x3b\xa0\x81\x12\x56\xef\xb3\x3e\x91\xba\x78\x5f\x2e\xc4\x41\x32\x34\xe4\x33\x29\xac\x73\xcd\x6a\x2c\x3f\x54\x76\x3e\xcd\xeb\x5c\xc0\xf9\xcb\xf6\x14\x3a\xe1\x7c\x9e\xde\xc9\xc5\xed\x48\x92\x54\xa1\x96\x9f\x91\x19\x5b\x92\x97\x66\xb9\x7b\xce\xaa\x53\xe2\x95\x83\xec\x15\xa5\xfa\x58\x61\x96\xe3\x34\xa4\x72\x36\x6f\x4e\x90\x7a\xa7\xc6\x14\x25\xdc\x34\x26\x69\x21\xa9\x31\xed\x36\x49\xd3\xd7\xd3\x90\x4e\x48\x63\xfa\xe0\x17\xcf\x96\xa6\x87\xd8\x31\xa3\x89\x93\x5c\xe0\xca\xf9\x92\x50\xfe\x3e\xc9\x39\xa1\x24\xcb\x3d\x54\x47\x4f\x05\x96\x4b\xaa\x01\xeb\xba\x76\x03\xd5\x99\xb2\xce\x27\x4f\x39\x6d\xb0\xaa\xda\xaa\x79\xfb\x79\x2f\xaf\x58\xd9\x94\xd4\xd8\xc6\x40\xc9\xb2\x55\x0d\x7f\x54\xe2\x3c\xf5\x17\x72\xb1\x49\x0d\x30\x66\x20\x2a\xf7\xc3\x38\xae\x8d\xc8\x73\x32\x92\x27\xdf\xc4\xae\x68\x67\x87\xf5\x3c\xcc\xf3\x64\xa9\x54\xfa\xda\xa2\x28\xb2\xce\x61\xad\xb3\x93\x2d\x69\xad\x52\xb9\x54\x9a\x4c\xc1\x18\xf1\xfd\xcc\x6f\xc0\xcf\xc2\xdd\x9e\x89\x5a\x6b\xdd\x80\x64\xb3\x21\x5e\xe4\x85\xf6\x69\xbd\x6e\x1c\x32\x65\xf7\x18\xa2\xc2\xcb\xc0\x1c\xb1\x6d\x0d\x8a\xfa\xb6\x4a\x21\x47\x65\x84\xa6\xe7\x38\x03\xea\x13\xd1\x89\xfc\x5c\x11\x0a\xb1\x4e\x2c\xfb\x9d\x5f\x3d\xb4\xb6\x16\x54\x2d\xeb\x66\x63\x51\x34\xfc\x87\x77\xcf\xc6\x02\xdb\x7b\x5f\x1e\x4d\x49\xbc\x48\x89\xa2\x8e\x36\x55\xfa\xc9\x58\x56\x02\x3f\xdb\xd7\xb2\xeb\x7a\x91\xd8\xab\xd3\x97\x34\x51\x06\xa7\x6f\xb3\x70\x46\xbc\xa6\xaa\xad\xa6\xb1\x47\xf0\x76\x27\xb1\xd5\x33\x89\x2f\x0a\x71\xf7\xa0\x0c\xb7\xa1\x2b\xb8\x93\x1a\x78\xf7\xb1\x58\x8d\x55\x9a\x09\xab\x57\x29\x79\x97\x1a\x1a\x4b\xf1\x6b\xab\x21\x3c\x18\x96\x51\x66\x26\x75\xbe\xad\xc9\xec\x01\xb7\x81\xfb\xbb\x65\x8e\x25\x48\x2e\x71\xdd\x76\x92\x7f\x0c\x3f\x7a\xf6\x19\x31\x42\xae\x9b\xe4\x6f\x13\x9a\xc8\x6d\xa8\x2a\xfe\x77\xb5\x09\xd9\xb2\x37\x6f\x62\x2c\x4b\x91\xd3\x71\xce\xb4\x0c\xa1\x39\x7f\xc3\xed\xab\x03\x1f\x28\x45\x0b\x2d\x0b\x35\xc8\x18\xae\xfb\xbb\xc7\x07\x74\x28\xe8\x33\xc3\xce\x7c\xe5\x20\x69\x83\x29\x48\x19\x1d\xca\x03\xca\x03\x26\xf6\x35\xd1\xe2\xdf\xa4\x25\x93\x36\x36\x7c\x9a\x3c\xc6\x94\xe9\x7f\xea\x42\xf2\x5e\x66\x5b\xee\xab\x7a\x0f\x85\x0c\xb7\xdb\xcc\x75\x9b\xb6\xe1\xed\xfc\x54\x64\x2b\x77\x61\xc1\x1a\xc5\x24\xfb\x91\xa9\xdf\x42\xa9\x08\xdb\x15\x2d\xf9\xa7\x73\xc0\x0f\x9c\x7f\x3a\x10\xca\x6f\x2a\xbe\xcf\x6a\x9c\x79\x78\xe0\xb4\xcc\x16\x26\x38\xf2\x8c\xfc\xb1\x48\x32\x12\xb7\x46\x77\x2d\xe7\x20\xa9\xa5\xd2\x96\x6c\xa6\xc5\x59\xeb\x96\x65\x37\xd0\x1a\x91\x56\xbe\xc8\x88\x88\x48\x68\x94\x2e\x62\xd2\x4a\x78\x6b\x44\xc6\x2c\x23\xaa\x74\xdb\x29\x0f\x0b\x33\x09\xd3\xff\xc5\x03\xa9\x44\xea\xe4\x3c\xcc\xc4\x5c\x49\x8d\x92\xfa\xe9\x10\x1a\xab\xb9\x2c\x53\xd5\xbc\x8a\x18\x95\xa6\xb4\x44\x26\xd5\xcc\xb7\x8a\x55\x39\xb4\x26\xc8\x0e\x54\xb1\xa6\xa0\xd4\x07\xa9\x2c\x4a\xd2\x54\x31\x2a\x79\x08\xff\xc0\xff\xab\xb9\x90\x23\x6b\x6e\x09\xf9\x77\x1c\x37\xfc\xa3\xb2\x42\x15\x1c\xce\x3f\x74\x43\xf4\xa0\x87\xfc\x88\xd1\x28\xe4\xde\x3f\x4a\x91\xd0\xd2\x8c\xf0\x3e\xf3\x33\xb2\x24\x99\xe0\x92\x02\xa6\x2c\x09\x09\x76\x04\xb3\xec\x00\x25\xd8\x89\x52\x16\xdd\xdc\x26\x39\x71\x80\x89\x20\x5b\x50\x4e\xb2\x2a\xd6\xb2\x51\x26\xdb\x5a\xeb\x41\x17\xba\xc3\x07\x65\x74\x26\x64\x74\xa3\x36\x7a\xea\xfd\x76\xb0\xf9\xad\x83\x9e\xee\xd7\x97\x11\x9f\x67\xc9\x4c\xda\xb5\x42\x8e\xc3\xb2\x9e\x6f\x5e\xd8\xb4\x2c\x3a\xca\x96\x34\x27\x61\x16\x4d\xbd\xa7\xb0\xf9\x2d\x7f\x2a\x6d\x62\xcf\xc2\x41\x3e\x74\x5d\xa9\x8c\x14\x9f\x95\x3e\x12\x04\xa7\x55\x17\x35\x2f\x15\x8b\xde\xca\xc9\x3c\xcc\x04\x53\x2c\x50\xf9\x76\x9a\x70\xd2\xca\xe7\x61\x44\xbc\x1c\xb5\xc2\x8c\xec\xc8\x9e\x61\x2b\x62\xb3\x59\xd8\xf2\x00\x49\x7b\x09\x12\xc6\xbe\x96\x40\x23\xfc\xf4\xb7\xfc\x09\xfc\x96\x3f\xd9\xfc\x96\x1f\x3c\x85\x54\xc1\x29\xef\x0f\xc2\x72\xaa\xf2\x72\xfa\x06\xb2\x8b\x0a\x48\x11\x1a\x74\x87\x43\x04\x5b\x71\xbd\xe1\xd0\xe4\x36\x35\xe4\x07\x3d\x84\x86\xc1\x20\x34\x8a\x38\x2f\xc5\xe9\x36\x64\xab\x09\xf3\x7a\x52\xff\xde\x4e\x82\x04\xed\xaa\x44\x42\xcb\x62\x58\xec\x18\xf1\x22\x22\xcd\x6a\x49\x47\x9e\x38\x0f\x8c\x05\x75\xa7\x27\xe1\x2c\x91\xe0\xc0\x01\xa7\x63\xcd\x3e\x47\x7d\xaf\x96\x13\x73\xd1\x50\x17\x08\x0a\xc2\xad\xa4\x03\x95\xd6\x13\x69\xc4\x0c\x95\x6b\xdb\xf3\xbd\xf8\x52\xd7\x80\x80\x65\xef\x35\x93\x27\xee\x4f\x3d\xaf\x1f\xfc\xd6\xd9\xfc\x76\x80\xfa\xbf\xc5\x4f\x7e\xf3\xc5\x7f\xe4\xf9\x4f\xd0\x53\x04\x09\x3e\xc8\xc4\x12\x0b\x71\x36\x38\x1c\x4a\x42\x98\x54\x8a\xea\x64\xec\x75\x05\xf6\x54\xa8\xf3\x17\x07\xa9\xfa\x73\x73\x62\xa2\xed\x7f\x43\x6d\xf6\xfb\x97\xb9\x13\xe4\x98\x9e\x8d\x32\x12\xde\x28\xbb\xde\xbf\x68\x33\xe0\xbf\x64\x4e\xa0\x19\xb0\x20\xc7\xac\x3a\xe2\xce\xd1\x80\x0f\x9f\xf6\xba\xdd\x27\x49\x21\x4f\x6b\xa6\xf2\xd0\x69\xb3\x71\x96\xf2\xc4\x24\x2c\x95\x40\x26\xa9\x5f\x9e\x12\xee\x3b\x6c\x7a\xcc\xe1\x61\xf0\xd8\x5a\xee\x39\xb1\x44\xba\xdf\xa5\x6c\xe4\x11\xc8\xe4\x6e\x56\x48\x35\x48\xa3\xd2\x47\x60\x12\x69\xda\xb4\xc5\xec\xfd\xae\x74\x33\xd9\x80\x0f\x0f\x30\x7d\xe2\x39\x1d\x85\x6d\xac\xd3\x1b\x4a\xcb\x37\xa4\xab\x06\xb5\x39\x24\x04\xaf\x4b\xb1\xa8\x54\x69\x42\x4d\x9e\x0e\x04\x52\xd9\x6c\x49\xd0\xee\xc2\x96\x1c\x21\x35\x28\x5a\xf2\x0d\x2c\x8b\xa5\x02\x8c\x04\x5d\x8f\x2d\x65\xb8\x60\x9d\x4f\x93\x31\x0f\xd6\x72\xa3\x0b\x7a\xdd\x2e\x90\xaa\x95\x31\x6d\x30\xcd\xb7\x55\x11\x14\xf3\xba\x8a\x54\xda\x75\xd7\xb5\xec\x89\x20\xa3\x95\x1d\xa3\x22\x56\x42\x96\xb5\xf8\xc8\x10\x67\x46\x27\x91\x1b\x92\x5c\x6e\x65\x62\x4b\xac\xa9\x4d\x23\x9c\xd7\xb5\xa4\xa9\x88\xd8\x52\x88\xc2\x02\xaf\xe5\xf6\x16\xdc\x7a\xeb\x02\x22\x48\x06\xd1\x10\x01\xa1\xb1\x1d\x71\x90\x0c\xd2\x61\x27\x1c\xa4\x43\x64\xeb\x9d\xb4\xb6\x44\x9a\xf5\x84\xb0\xa8\x9b\x00\x15\x5a\x59\x65\x80\x76\x78\x0f\xd0\x2a\x93\x0f\xa3\x74\x93\xe7\x1b\x15\x04\xb7\x61\xa2\xa1\x10\xd6\xc0\x93\x63\xb6\x05\xe6\xc8\x2c\x61\xdd\xab\x08\xff\xee\x1d\x50\xd4\x1f\x1c\x50\xe8\x0e\x83\x8c\x78\x14\x12\x08\x21\x47\x7a\x4f\x93\x9a\x5f\x4f\x9f\xd1\x45\xa2\x0a\x6d\x78\x81\xa3\x41\x6f\x88\x8c\xd2\x7d\x5f\xb6\x03\x93\x4d\x5b\xb6\xca\x4c\x26\x41\xe6\x92\x56\x13\x3a\x93\x9e\x3a\x91\xcf\x75\x1b\x32\xea\xda\xa4\x26\x4b\x02\x3a\x01\x52\x42\xb5\x5b\xc0\x3c\x93\x08\x7f\xa9\x6f\x04\x18\x40\x1f\x3d\x12\xd0\x3b\x7a\x37\x65\x3f\x6c\x54\x94\x46\x96\x3e\xb3\xa2\x2a\x45\xa3\x64\x39\x3d\x8a\xc7\xf2\x94\x46\x71\xb5\x75\x99\x5f\xce\xd9\x56\x65\x8a\xa3\x96\x33\xc8\xd9\x5c\x4e\x9f\x3c\x7b\xcb\x71\x36\x60\xc3\xb3\xcc\x28\x30\xb2\x52\x61\x21\xe2\x05\x83\xaf\xb6\xdb\xcf\xbb\xfd\x83\xa6\xee\x01\x37\x7a\x42\xa0\xdb\x8a\x40\xa4\x9b\x49\x4c\x2b\xa1\x6a\x24\x07\x1b\x24\x38\x92\x4d\xa6\x98\xfb\xf3\x2c\x61\x59\xc2\xef\x2c\x33\xa8\x52\x35\x18\xe3\xf5\x3c\x4b\x66\x61\x76\xb7\x43\x02\x28\x5e\x0c\x48\x75\x7a\x36\x20\xc3\x1f\xa3\x01\x19\xba\x6e\x9b\xfb\x24\x8f\xc2\x39\xf9\x92\xf0\xe9\x67\xd3\x65\x09\xcd\x92\x5a\x8b\xec\x20\xb2\x23\x04\xb7\xca\x6a\x8e\xa2\x02\x72\x12\x31\xd1\xc1\xa6\xd6\x2a\xd4\x24\xf5\x65\xcf\xf0\x62\x40\x6b\x1d\xf9\xeb\x03\x1d\x61\xba\x23\x09\xf5\x44\x51\xd9\x91\x8e\x67\x37\xb0\x50\xc7\x39\xc1\x42\x9f\xe3\x20\xd3\x4f\x65\x72\x6a\x1a\x4b\x9b\x85\x55\x45\x21\x35\x01\xd3\x8c\x76\x9d\x7c\x11\xd4\x77\x34\x60\x9d\xc0\x29\x87\xed\x9c\x2d\x14\xb5\x59\x40\x3c\xe0\x43\x4f\xeb\xe1\x77\x28\xd2\x42\x2c\x14\x33\x6f\x41\xd9\x46\x56\x93\x0a\xf5\xf2\x1b\x82\x46\x95\xe0\x04\x76\x96\x44\x50\xb7\x96\x28\xe0\x86\x90\xf9\x35\x9b\x10\x3e\x25\x99\x59\x70\xc7\x8f\xda\x0e\x0c\xf9\x12\x4b\x4f\x63\x8f\xd8\x05\x2a\x9c\xcd\x6c\x8a\xb7\x45\xc8\xb4\xd1\xd0\x38\x65\x4c\x50\x3d\x0d\xba\xfa\x38\x4a\xe0\xc9\xe3\xf6\xb0\xaf\x87\x5b\xed\x97\x91\x88\xac\x6f\x08\xe1\xde\x13\x32\x3a\xc8\x87\x3f\x26\x1e\x13\xdb\x81\xeb\x7a\xdb\x20\x1e\x44\x43\xac\x53\x3b\x54\xec\x0b\x40\x07\xd1\xf0\xaf\x22\x2a\xbf\xb7\x40\x2e\x50\x5a\xec\x0e\xf2\xc8\xc3\x80\xf0\xe4\x31\x34\x4b\xf2\x6e\xff\x63\x93\x00\x5b\xc9\x2a\xaa\x73\xc0\xb1\x27\x68\xdb\x22\x41\xc0\x9b\x68\x63\x1e\xc1\x85\xe5\xf2\x16\x5b\x65\xc1\xd1\x62\xda\x32\x9a\x35\x90\xae\x3f\x16\x24\xbb\xbb\x22\x29\x89\x38\xcb\x3c\x86\xaa\xba\x95\x61\xa8\x34\x52\xda\x29\x55\x5a\xb2\xb1\x32\x7f\x5d\x2c\xf9\xf2\xf2\xf3\xc7\x8b\x8f\x3f\x05\xad\x7f\xca\x11\x98\xfe\xfd\xb3\x35\x5b\xe4\x42\x66\x6e\x45\xd3\x24\x8d\x5b\x6c\xdc\x4a\x78\xde\x52\xb5\xb6\x74\xa6\xb6\x83\x80\x9c\x19\x9e\x61\x3f\xee\x54\xc8\x97\xe3\xc4\x20\x5f\x84\x13\x0b\xf9\xd2\xad\xe5\xa8\x70\xa7\x86\x53\x0b\x9c\xee\x4a\x14\xb1\x88\xb4\xac\xe5\x61\x2e\xed\x6d\xde\xb3\x5b\xa3\xb9\x87\xb1\xc8\x62\xa3\xdd\x4c\x44\x8c\x8c\xbd\xbc\x5e\x94\x53\xfc\xd6\x63\x68\xb0\x18\x9e\x45\x83\xd9\xb0\x33\xfd\x31\x1f\xcc\x87\x4d\x78\x34\x1f\x76\xb0\x48\xeb\x78\x2a\x23\x42\x10\x0d\xe6\xc3\x83\xe9\x5f\xf3\xc1\x6c\x4f\x09\xb1\x93\x8a\x2c\x1d\x91\xa5\x81\x5e\xdc\xec\x14\x52\x7b\xda\x48\x95\x8b\x06\x8b\xe1\xd3\xc3\xce\xf4\xe9\x21\x2c\x71\xd8\xb0\x47\xc2\xc4\xb6\x0b\x58\x56\x97\x04\xe2\x21\x82\xbb\xad\x34\x73\x35\x22\xae\xae\x46\xc0\x0a\x8f\x3a\x4d\x23\x9d\x74\xee\xcc\x82\x5c\x55\xbb\x43\x49\x9d\xf3\xc1\x62\xd8\x99\xc2\x0a\x41\x57\x8c\x4a\x62\x90\x51\xd5\x31\x6b\x98\x32\x01\x7b\xb7\x1e\xc5\xeb\x02\xe6\x20\x2b\xc8\x04\xb1\xf3\x56\x92\x72\x53\x18\x83\xe3\x20\xa0\x62\x6d\x02\x31\xc4\x6f\xb0\xea\xc8\xa2\x43\x47\x9d\x42\x9a\xe5\x7a\xfa\xc0\x72\x4d\xc6\xde\x97\x3d\xeb\x54\xca\x16\xf6\xc2\x4c\xe4\xa5\x25\x75\xc4\xe9\xba\xf6\xe1\xa3\x10\xfa\x77\xce\xf8\xea\x2b\x9a\xfe\x19\x96\xa0\x81\xf5\xd9\x61\x12\xea\xfc\xe7\xd6\x8a\xca\xf0\x85\xc7\x90\x5c\x58\x8d\x59\x7a\xc3\xcd\xc6\x11\xd2\xf6\x60\x68\x84\x47\xee\x8f\xc8\x34\x5c\x26\x2c\x53\x52\x64\x8b\x93\x20\xc4\x03\x06\xd9\xd0\x12\x24\x5b\x54\xc4\x12\xe2\x31\x64\xc7\x32\x13\x0b\xed\xae\x49\x30\x62\x66\x88\xab\xaa\x0d\xf3\x1d\x36\x6c\xbb\x39\x44\x72\x5e\x58\x1b\xe3\x7c\xb3\x09\xb5\x4c\x8e\x31\x8e\x0e\x7a\x15\x50\x1f\x1e\xb6\xe6\x8b\x76\x58\x21\x9b\x3b\xaa\xa0\x1e\xdb\x1b\xd7\x1c\x97\x5c\x36\x73\xdd\xd8\x4b\xd5\xe9\x13\xfa\x6b\xec\x2d\x24\x2f\x86\x36\x9b\x8a\xcb\xd0\x59\x64\xfc\x8f\x22\x87\xca\xbc\xd9\x18\xee\x5a\x67\x50\x94\x44\x55\xc2\xd9\x5c\x64\xa8\x38\x6b\x9d\x47\xc4\xcb\x3a\x74\x66\x18\x63\xbb\x6e\x65\x9e\x87\x60\x86\x6b\x9d\xd2\xa6\x78\x08\xa6\xd8\xaa\x44\x9a\xed\x21\x18\xe1\x7a\xe3\xb4\xac\x7b\x59\x1b\xe6\x78\x6b\x4c\xb3\xda\x00\xa6\xdb\xbd\x1d\xc1\xe4\x81\xed\x9d\x09\x92\xd2\x6e\x73\xb9\x68\x7e\x09\xb3\x44\x9e\x4d\x08\x11\x62\xa2\xae\x7e\x2a\x23\xd0\x44\x36\x2d\xa2\x08\x8d\x75\xc4\x6c\xb3\x69\x6f\x67\x9a\xea\xb8\x2a\xd7\x48\xd0\xa3\xdd\x06\x5e\xdd\xc9\x3b\xbe\x94\x37\xb4\x34\xdb\x6e\x69\xdc\xd0\xd2\x68\xa7\xa5\x29\x82\x4b\x7c\xb7\xd9\xac\xce\xbc\xf9\x66\xb3\xdc\x6c\x2e\x15\xeb\xa0\xc9\x01\x6e\x77\x41\x26\x28\xb5\x7c\x38\x88\x0e\x84\x3c\x74\x29\xa4\x25\xbc\xab\x27\x32\x15\x93\xbe\x6e\x36\xa8\x9a\x27\x7d\x99\x1a\x90\xc2\x4b\x50\xdd\xc6\x81\x1d\x78\x89\x34\x6c\x4b\x02\xc7\x69\xd8\x1c\xd4\xad\x95\x6d\x74\x7f\xd5\x48\x77\xee\x37\x14\x40\xf2\x84\xbf\x91\x2e\x12\x50\x1a\x5b\xcd\xd0\x16\x60\xd6\x74\xa0\x35\xb9\xf7\x32\xa9\xa5\xf1\x2f\xd4\xa7\x2c\x68\xf7\x60\xcf\x24\x06\xed\x5e\x01\x92\x18\x1b\xa2\xfe\xcc\x26\xea\xbd\x3f\xa7\xd5\xa8\x38\x8d\x0c\x33\x03\x96\x04\xb3\x9a\x12\xe3\x7e\x4e\x43\x9a\xb9\x4b\x95\xae\x59\x01\x3b\xa7\x35\x96\x15\x57\x8d\xb3\x18\xe2\x64\x40\x87\x1d\x2f\xef\xcb\x94\x2d\xce\x76\x18\x74\xeb\x13\x7f\xe1\x35\xd8\x6e\xe0\x1b\xc1\xeb\x08\x06\x75\x9a\xc4\xc4\xc0\xe6\xf9\xbd\x2c\xfe\x7d\x7c\xa9\xa8\xc5\x01\x67\x4b\x56\xdf\xe6\x4c\x79\x23\xf1\xa4\xf8\x5b\x73\xad\x0d\x4a\xd2\x9d\x16\xd4\x8d\xa1\x70\x46\x0a\x84\xac\x0d\x4f\xec\xb7\xc6\x1c\xf6\x47\x6d\x81\xac\x0c\x61\xff\x5a\x5a\x1e\x4b\x7b\xdc\xbf\x56\xf6\xc6\xda\xfa\xf6\x47\x4d\x26\xe5\x78\xe5\x35\x7c\x5f\x8c\xae\x1a\x89\x0a\x4b\xd5\xaf\x5f\x99\x30\x0d\x9c\x55\x87\x2d\x78\x87\x8d\x3b\x55\x37\x1c\x21\xd5\x4b\xc6\x59\xd6\xd6\xbb\xa7\xb6\xde\xa3\x6a\x6b\xf7\x6c\xd5\x53\xa4\x6c\x3e\xa5\xd1\x45\x39\x87\x27\x8f\xd3\x8b\xac\xa4\x5c\x76\x67\xeb\x9c\x2a\x4c\xfe\x8e\x09\xb1\xcc\x3e\x6a\x73\x31\x99\x2f\x5e\x46\x11\x49\x49\x26\x97\xe4\x59\x79\x3e\x94\x6c\x1f\x59\x54\xb2\xc1\x56\x99\x7f\xb6\xd4\x91\x77\x6b\xc6\x96\x24\x6e\x71\xd6\xfa\xa7\x3d\xe2\x7f\x56\x87\x73\x21\x8d\x5b\xb7\x49\x9a\xb6\x28\xe3\xea\x5c\x6e\x2e\x08\x05\x89\x5b\x09\x6d\x8d\x17\x7c\x91\x91\xd6\x92\x64\xb9\xa0\x0d\x42\xc8\xf8\xa4\xc4\x96\xaf\xb9\xb1\xb2\x0b\x71\xd5\xbf\x7e\x12\xf0\xed\xee\x43\x8e\x9b\xb4\x46\x10\xe1\x6b\x2f\x47\x90\xe2\xb5\x61\xac\x82\xca\x2e\xaa\x80\x05\x6e\x02\x7e\x45\x3e\x18\xa6\x06\xe8\x19\xa6\xd6\x9a\xd0\x92\xb0\x64\x5e\x21\xb4\xb9\x8b\xbc\x61\x4b\x68\x91\x42\x08\x3a\x9e\xbe\x82\x26\xfa\x93\x78\xcc\x04\x16\x0f\x90\xa2\x9a\x91\x57\x8c\xf5\x39\x54\xc5\x1e\x95\x67\x06\x1d\x07\xc1\x1c\xf3\xfe\x62\xb3\x89\x37\x9b\xe8\x2f\x87\x18\xe3\xf4\x2f\x87\xfd\x24\x08\x83\x1c\xc6\x98\xf7\x93\x20\x37\x16\xc0\xd2\x7a\x77\xee\xa9\x5c\x3d\xd7\x4d\xcd\x47\x3b\x76\x5d\xde\x57\xf7\x75\x3a\xbd\x80\x69\xa6\x84\xb3\x79\x30\xf6\x98\xe6\x3a\x94\x81\xaf\x08\x1b\x76\x43\x19\x00\xcf\x3d\xa6\xb9\x95\xa2\xf0\x88\xd1\xe4\xc7\x64\x99\x44\xe4\x53\xb2\x22\xe9\x67\x31\x5d\x3f\x1e\x6e\x36\xed\xbf\x89\xc1\x58\x5c\x07\x35\xd6\xb5\xa5\x62\xdd\x52\x26\xb1\x92\xc2\x6a\x41\x6d\xb6\xad\xe7\x9b\x6a\x0c\x81\x91\xd1\xb6\x26\x63\x6f\x64\x37\x10\xf7\xcb\x4b\x42\x79\x75\x89\xb1\x93\xd7\x4e\x30\x0e\x0c\x73\x16\x74\x22\xad\x55\xaa\xa2\x24\x67\x07\x53\xab\x5f\xf3\xfb\xeb\x54\x86\xd5\x9a\x67\x14\x35\xde\xd6\x22\x14\xbb\x09\xa1\xeb\xce\x50\x3a\x98\x0d\xb1\x1a\x51\x1a\x72\x72\x14\x7b\xce\xc1\xf4\xc0\x99\xaf\xa0\xe5\x1c\x8c\xd4\x47\x17\x39\x90\x0e\xe2\x21\xee\x42\x3a\x98\xcb\x9f\x9a\x09\x54\x05\x8f\xea\xa2\xca\xb2\x0e\x82\x4e\x2f\xe8\xc1\xa4\x36\x02\x79\xc9\x5f\x56\x3b\x7a\xb2\x54\x15\x4f\x9f\x4c\xea\x55\xc7\x07\x8e\xe8\xc7\x5c\x1e\x84\xdc\xe1\x75\xcd\x42\x2c\xb0\xb0\xd1\xb2\xf0\xae\xa8\xa5\x62\x5e\xee\x6a\x14\xb4\xb4\x6c\xd0\xa9\x69\x19\x2e\x65\xc8\x2b\x2b\x79\x4b\x8a\xac\x67\x91\xac\xca\x16\x45\x10\xc4\x75\x55\x21\xd3\x9d\xc1\x9c\x02\x2a\x8a\x68\x68\xf2\x8b\x87\x55\x67\x40\xcd\xc0\xfe\xde\xc8\x72\x99\xae\xf3\x5d\x9d\x8d\x34\x28\xac\x06\x0e\xb6\x49\x09\xdd\x63\xab\xdc\x16\x8b\x9c\x0e\xc8\xb0\xcf\xfd\x9c\xf0\xca\x34\x8f\x80\x88\x45\x01\xdf\x31\xda\x23\x5a\x09\x69\x8b\xdf\xae\x6b\x37\x56\x87\x99\x16\xbd\x5c\xf7\xef\x5e\xbd\x50\x03\x6c\x19\x7d\xcf\xc2\x38\xd8\x3e\x01\xad\xec\xc2\x3e\x79\x19\x70\x20\x40\xb7\x05\xd8\x10\xbf\xf7\xa8\xc5\xae\x25\x3a\xdb\x83\xd6\xb7\x3b\x59\x8c\xc9\x6d\x69\x72\x50\x07\x4c\x0d\x23\x21\x44\xf0\x77\x8f\x43\x45\xf5\xe9\x83\x76\xaf\x05\x02\xba\x8b\x45\x8a\x96\x14\x45\x01\x21\xd9\xe3\x5e\xc0\xb2\xa8\x91\xf6\xd4\xe1\xe3\x6f\x0c\xf7\xed\x40\xb0\x2e\xce\x2e\xa5\x5d\x57\x65\x6f\x5b\xb3\xef\xc2\x0d\x8e\xde\xc8\x1f\x0b\x92\xf3\x2d\xdb\x30\xa6\xad\xaa\x50\xa1\xaa\x51\x21\x9c\x79\x56\xc8\x1f\xc9\x7b\x01\xd3\x24\x47\x75\xb3\x47\xb3\xde\xde\x28\xd1\x3e\x17\xb0\xb4\xec\xca\xd6\x96\xa1\xa9\x60\xd0\x4b\xeb\x5e\x11\xa8\x59\x6e\x05\x83\x61\xb1\x65\x81\x8d\xb9\xeb\x72\xff\xab\x54\x62\xf6\xf9\xa0\x3b\x0c\xb8\x6d\xb5\xa9\xfc\x11\xe9\x64\x2a\x92\xe9\x1e\x2b\x6c\xbc\x2e\x6a\xeb\x68\xab\xcf\x16\x4f\x14\x56\xdf\x8d\x67\xc4\x1c\xad\xd9\x6e\xfd\x03\x3e\xdc\x86\x43\x2d\x71\xb3\x59\x17\x76\xd5\xfd\xb0\x96\x1c\xac\x0b\x65\xde\x56\xb3\xc1\xad\x5d\xe4\x6a\x1e\xd7\xbd\xb7\xbb\x04\xeb\x16\x88\xd5\xd8\xd0\x5f\x79\xc7\xeb\xde\x1b\x5e\xda\x1c\xab\xc3\x4b\x73\xac\xad\xee\xed\x33\xe9\xb3\x2e\x33\x10\x5f\x51\x02\x24\xad\xbb\xe4\xa7\x67\x4b\x55\xa5\xb0\x55\x76\x11\x44\xa4\xc4\x9c\x0a\x20\x0a\x01\x3d\xe3\x01\xa8\x06\x89\xda\xe1\xf9\x59\xae\x6d\x6e\x55\x17\x9a\xad\x75\x1b\x6c\x26\x71\x6e\xb8\xf0\x73\x8f\xc0\x40\x5e\x8b\x73\x54\xab\x0e\x28\xaf\x17\xbb\x4b\xe9\x9d\x72\x27\x21\x57\x44\x51\x80\x2a\x14\x2b\x54\xdf\x5f\xea\x87\xa6\x52\x4d\xdd\xdd\x5f\xc5\xaf\x8d\x0d\x37\x19\x28\xef\xaf\xe3\xa7\x5a\x1d\x43\x41\xb4\x3d\x74\x16\x12\xff\x67\x9e\xa4\x39\x6e\xb6\x3e\x57\xdc\x59\x5f\xfd\x04\x04\xf9\x8a\xed\x96\x45\x20\xb4\x36\xf5\x1c\xff\xaf\x08\x9b\x95\x80\x13\x02\xdc\x0f\x71\x48\x0a\x54\xb5\x0b\xd4\x3b\x3a\x46\xa8\x80\xc3\x17\xbd\xfb\x1d\x37\x1a\xc7\x94\xcf\x94\xd3\xd1\xe7\xca\xe7\xe8\x89\xd8\x2c\x3c\xea\x9d\x22\xa0\xd2\x9d\x06\xe4\x98\x7a\xbd\x9e\x60\xe2\xa9\x77\x78\x6c\xd9\xba\xa5\xd6\xb6\x0c\xac\xdc\x10\xb0\x90\x55\xbb\xc0\x70\x0f\x08\xae\xd4\xd3\xd5\x45\x77\xe0\x08\x18\xea\x50\xf4\xd4\x63\x1d\x8a\x44\x2e\xd2\xc1\x3d\xf4\x84\x3c\x21\x07\x3d\xed\x5c\x2e\x11\xeb\xe0\x36\xcc\xe2\xcf\x64\xbc\xbd\x94\xa4\x7c\x00\x39\x26\xbe\x74\x41\x43\x94\x53\x0a\xf9\x2d\x4d\xa1\x63\xe9\x02\x2c\x95\x4a\xc6\xf2\x1e\x55\x6c\x1d\x22\xc6\x30\xc6\xc4\x58\x9f\x5f\x4d\xb3\x84\xde\xc0\xac\x92\x6d\xc6\xae\x3b\x86\x29\x26\x7e\x9e\x7c\x23\x25\x27\x8b\x31\x9e\xf6\x8f\xbb\xc1\x14\x96\x58\x73\x1a\x30\xc1\xc4\xe7\xd3\x24\xba\xa1\x24\xcf\xe1\xae\xca\x39\xe9\x1f\xf9\xa7\xc1\x04\x56\x98\xf8\x12\x5b\xe0\xb2\x4a\x5c\xf5\xbb\xc1\x0a\xce\x65\x52\x96\x84\x94\xc3\x6d\x95\x78\xde\x77\x84\x28\xc1\x49\x36\x4b\xa8\x58\x2a\xc1\x79\xe9\xe4\x45\x7a\x7b\x15\x6b\xc9\xd1\x03\x77\xc0\x29\x87\x2d\xbe\xc5\xa0\x1d\x70\x6a\x23\x73\xc0\x51\xa6\xc4\x8e\xec\xb3\x03\x4e\xd9\x63\xc7\x38\xce\x11\xbf\xb2\x27\xce\x10\xc1\x8d\x20\xeb\xd7\xe2\xdf\x15\x5e\x17\xf2\x70\xcc\xee\x0f\xc6\xf8\x76\xb3\xb1\xdc\xca\xdd\xaa\x19\x79\x8d\x0f\x9f\xc8\x49\xfe\x74\xf1\xc4\xf3\x8e\x8f\x3b\x77\xe8\xe9\x21\x3a\xbb\xf1\xc5\xda\xbd\x21\x6f\xc2\x7c\x1a\x66\x59\x78\x87\x5f\xfb\x9c\xc9\xed\xdf\x3b\x42\x70\x35\x70\x44\xcb\x1d\xd9\x0f\xca\x6e\x9d\xa1\x25\xd3\x79\x97\x08\xec\x86\xfa\x9e\x5d\x9b\x62\x45\xb1\xe3\x18\xdb\x31\xcf\xeb\x75\xbb\x9d\x4b\x65\xa3\xf4\x1a\xd9\xcd\x28\x2b\xde\x6b\xbf\xe4\xcd\xb1\x93\x31\xe9\x2a\xb5\xf3\xa2\x1b\x93\x09\x72\x50\xf0\x40\xe5\x14\x5b\xd5\x03\x7d\x42\x1f\xdd\x44\x55\xc7\xe1\xb3\xee\x93\xd4\xbb\x7c\xfa\xac\x8b\xea\x65\x55\x17\x4a\x8b\x99\x44\xfb\x9a\xd3\x6c\x98\xe7\xc4\xc9\xd2\xd1\x5b\xad\xc7\x04\x12\xac\xcb\x79\x0f\x74\x74\x28\xa2\x73\x3f\x63\x8c\xc3\x02\x9c\x84\x4e\x49\x96\x70\x41\x68\xe6\xae\x9b\x0f\x34\x72\x98\xae\xe8\x42\x91\x28\x34\x47\x68\x08\xeb\x1a\xd6\x05\xb9\x5f\x0b\x83\x9a\x85\x40\x11\xfa\x24\x2a\x06\xb7\x43\xa4\xee\xac\x05\xb5\x6e\x29\x53\x80\x91\xb9\xdb\x39\x2a\xe0\x1a\x96\x08\x32\x32\x0e\x38\x64\x2c\x25\x81\x33\xcf\xd8\x24\x23\x79\x3e\x0a\x33\xa7\x80\x2b\xf8\x8a\x60\x67\xbc\xf9\x72\xe2\x80\x35\xc6\xdc\xcf\x97\x13\x58\x26\xe4\xf6\x15\x5b\x05\xd5\xac\x1c\x1e\x82\xd3\x72\xd0\x9e\xe0\xf1\xf1\x56\x10\x15\xbb\x4d\x45\x49\x16\x49\x27\xc7\xfb\x20\xaa\x32\xc0\xcc\x75\xcd\xf7\x9b\x1a\xe5\xd8\x81\x9c\xca\x74\xd1\x0c\x3f\x95\x78\xb5\x03\xc5\x1b\x88\x56\xc1\xf1\x31\x44\x77\xe2\x7f\x16\x98\x15\x04\xe3\x24\x4d\x03\xe5\x9b\x02\x14\x7e\x7e\x51\xce\xbd\xa4\x27\x58\x84\xce\xc4\x26\xa0\x7b\x9c\x8b\x1e\x37\xf0\x2d\x6b\x81\x15\xc1\x3a\x4e\xf2\x79\x1a\xde\x05\x4e\x42\xd3\x84\x92\xce\x28\x65\xd1\x8d\x53\x98\xce\xad\x25\xea\x2a\x4e\x9d\xf8\x55\x20\xd7\x20\xab\x89\xfa\x05\xd4\x87\xbd\x0e\x0d\xf7\x1b\x38\x3f\x88\x41\x2e\xd2\x30\xeb\xa8\x15\xd0\xea\xf9\xc7\x79\x4b\x34\x29\xc4\x14\x3a\x96\x76\xfe\x4e\x01\x12\x25\x3f\x69\x9b\x99\xb5\x0c\x49\xf7\xac\x29\xe1\x9c\xf8\x9a\x5c\xfb\xb3\x30\xa1\x3a\xef\x55\x69\xf3\xb2\x93\xbb\xb4\x0b\xd1\xf9\xf3\xe5\xc4\x1a\xb0\x19\xa9\x82\x7e\xb0\x56\x80\x0c\x1c\xed\x3e\xf9\xb5\x5c\x1b\x26\xf9\xea\xb1\xe0\x50\xb5\x74\xe2\x92\x5e\x08\xb0\x34\xcc\xfe\x1e\xe0\x88\x72\x0a\x34\x24\xcc\x49\x27\xa1\x1d\xb6\xe0\x15\x7c\x60\x8b\x70\x06\xce\xf3\xee\x7c\x05\xad\xc3\x6e\x77\xbe\xb2\x53\xb5\x15\x98\x23\xa2\x0b\x70\xfe\xef\x0d\xb9\x1b\x0b\x09\x24\x6f\x6d\xcd\x83\x13\xac\x9d\xee\x5f\x1c\x3d\x32\x31\x8f\x97\xf2\x48\x35\x70\x4e\xba\x7f\x69\x9d\x74\xff\x22\x8a\xf7\xba\xf5\x2c\x81\x21\x63\x47\xa7\x8a\x52\x16\x7b\xda\x10\xc3\x29\x5b\xd8\xe9\x7b\xef\x31\x5d\x3f\xd9\x53\xb6\x7b\xff\xc0\x3b\xbd\x13\x55\x5e\xf7\xfd\x4f\x54\x70\x28\x6b\x30\xb3\x57\x5b\xe0\xb5\xd9\x93\xeb\xb0\x28\x0a\x04\x4a\x10\x70\x3e\x2c\x92\xd7\x1a\x02\x9f\x34\x61\x53\x27\x2f\x41\xbb\x57\x20\x6f\x21\x59\xb1\x07\x7c\x68\xff\x19\x56\xec\xf4\x58\x2a\x30\x1f\x62\x93\xe4\x2d\xca\x24\x8d\x33\x52\xe7\x98\xd2\x1a\xc7\xb4\xd0\x4e\x53\x19\x15\x42\x7f\x5c\x71\x23\x8b\xbe\xb3\x48\x9d\x60\x01\x73\xe9\x9a\x9c\xe6\x04\xc6\x15\xa3\x34\x77\xdd\x39\xcc\x2a\x56\xea\x93\x3e\x54\x9f\x56\x59\x66\xae\x3b\x83\x91\x60\x98\x16\xa3\x29\x09\x63\x92\xc1\x72\x97\x9b\xd1\x3d\x34\xec\x4c\x03\x63\xa3\xfb\x26\x98\x1b\xd1\x8b\x8a\xc9\xd1\x6d\x0a\xf6\xc6\xb4\x20\x98\x98\x09\x4e\xfc\x45\x4e\x3e\x90\x19\xf3\x76\x5d\xb3\xaf\x65\x25\xc1\x58\xcc\xe3\x60\x3c\xb4\xdc\xb4\xd4\x37\x87\xc8\x0f\xfd\x4f\x19\x5b\x26\xa2\xdf\xda\x53\xdf\x64\x77\x0f\x89\xbf\x63\x6b\x4e\x61\x2c\x36\x12\x05\xcb\xf6\x54\x7c\x1b\x5b\x84\x91\x08\x94\xa3\xd0\x9b\x66\x21\xb6\xcf\x11\xd0\x66\x5a\xaf\x09\x7b\x9a\xe4\x5c\xe9\xd2\xf4\x46\xa1\x6c\x4e\x82\x6e\x79\x54\xd8\x2d\x2d\xa4\x03\x27\x23\x69\xc8\x93\xa5\xa0\xc0\x26\x79\xad\x3f\xae\xd9\x3c\x78\x6e\x62\x95\xaf\x8b\xe0\x79\x01\x0a\x5c\xeb\x02\xca\xde\xd5\x4a\x74\x85\xc0\x54\x2e\x07\x21\x28\x39\x05\xf2\x52\x89\xfa\x47\xff\x9f\xa2\xbe\xc6\xf6\xbc\x86\xed\xe9\xa3\xd8\xe9\x21\x82\x85\x42\x22\xf3\xd6\x42\x64\xbd\xb5\xf0\xa7\x39\x34\xaa\xd0\x20\x07\x67\x9c\x92\x55\xa7\x3c\x94\x5e\xf8\x61\x9a\x4c\xe8\x05\x27\xb3\xdc\x75\xa9\x15\x7a\x9b\x92\x95\xf4\x33\x5c\x62\x44\x7a\x2f\x32\xcc\x12\xaa\x38\x84\x93\x53\x10\x6d\x68\x2a\xd6\x2d\xa0\xa1\xce\x60\x5d\xba\x3c\x09\x9e\xef\x4c\xa3\xc8\xfb\x72\x19\x72\xc1\xa9\x99\x09\x3d\xfe\x0f\x88\x95\xcf\x9f\x8b\x19\x55\x33\xfb\x08\xd9\x6f\x1f\x51\xdb\x15\x03\x35\x91\xb8\xbe\x9b\xb3\x49\x16\xce\xa7\x77\xa5\x48\xd8\xc6\x38\x76\x5d\x25\x09\x26\x34\x27\xbc\x51\x02\xd4\x3c\x88\xa4\x60\xfa\xbb\xaa\xeb\x53\xc6\xe6\xb9\x92\x06\x0d\xf3\x21\x25\xc2\x32\xb4\x9d\xf5\xee\xfb\x29\xdf\xce\x00\x1c\xc1\xda\x0b\x56\x03\x4a\x79\xb6\xfc\xda\x6a\x4f\xd0\xc4\xd2\x5a\xd6\xfa\xde\xce\x26\x6d\xce\x6a\x98\x9e\xfa\x21\xd2\x24\xea\x12\x2b\x7f\xde\xd3\xfe\x34\xa0\x67\xe2\x1b\xe3\xcb\xcd\xe6\xd2\xe7\x77\x73\x82\x31\x8e\xfc\x70\xb3\x99\x6f\x36\xde\x25\x6e\xa0\x9e\xf5\x15\xa1\x85\xcc\x60\xd5\x77\x46\x2c\xbe\x3b\x94\xc7\x4c\xf1\x5d\xcf\x01\x9b\xd3\x37\x30\x2f\x89\x7e\xe0\xe4\xf3\x90\x3a\xb0\xc3\xcd\x8d\x10\x5c\x6a\x8b\xf3\x73\xbc\x3c\xb3\xee\xe9\x63\x7c\xbe\xd9\x9c\xef\xf4\xf1\xfc\xf1\x7d\xd4\x3d\xac\xf5\xac\x9a\x66\xc5\x7d\x3a\x02\x58\x57\x15\x88\x77\x3a\x38\x41\x70\x8e\x1a\xc4\x9b\xef\x16\xe7\x56\xd5\x9e\x21\xe5\x10\x85\xb1\x97\xae\x7b\x2e\x42\xb3\x45\xca\x13\xc1\x5e\x97\x14\xe2\x0e\xc1\x25\x9c\xdf\x47\x25\x04\x65\x08\x9c\x5e\xab\xd7\x52\xb7\x2b\x4b\xaa\xd1\x85\x8a\x22\x1c\x83\xed\xf5\x28\x38\x2e\xa0\x6c\xca\x26\x1c\xa7\xf5\x6c\xa7\xd6\x86\x21\x3b\x5a\x6e\x16\xef\xc9\x98\x07\x27\xa7\xd2\x1e\x5b\x31\xfd\xb6\x1d\xfb\xba\x91\xfe\x5c\x93\x95\xdc\x4e\x14\x27\xf5\xc0\x73\x36\x5b\xd4\xe7\x45\x57\x91\x9f\xe7\x82\xfc\x50\xef\xf4\x99\xa2\x3b\x27\x92\xec\xf8\x54\x1d\x4a\x53\xef\xf0\x44\x90\x1d\x11\x91\x22\x88\xeb\x74\x6a\x8e\xa9\x77\xd4\x3d\x44\x30\x16\x1f\xa7\x08\x66\x9a\x70\x4d\x95\x3e\x0c\x46\x22\x7c\x74\x8c\x60\x29\x3f\x4e\x04\xef\xd1\xee\xc1\x9d\x0c\x9d\x8a\xa5\x55\x73\xc9\x6b\xb4\x67\xdc\x3a\xb1\x90\x96\x76\x95\x0a\x4f\x24\x6c\x36\xe2\x53\xd9\xf3\x8a\x21\xb8\x6e\x9b\xfa\x49\xfe\x81\x2d\x28\x4f\xe8\xa4\xcf\x7d\x42\x39\xc9\x02\xee\x87\xf3\x39\x09\x4b\x4f\xe5\x4c\x87\x85\x0c\xb3\xc8\xcd\x1d\xed\x84\xf6\x93\xbe\x97\x61\x87\xac\x12\x4e\x62\x07\xb6\xb2\x39\xb2\x32\xc1\x46\xa1\x20\xd3\x21\x12\x3b\x41\x86\xb9\xbf\xa0\x33\xd1\xe8\x25\x3d\x5f\x25\xd2\x1e\xc4\x04\x45\xa6\xbe\xa3\x93\xe5\x29\x4e\x55\xbb\x3e\xa5\xc8\x65\xf5\x41\x56\x00\x93\x8f\x21\x98\x47\x67\x54\xbf\x58\xa1\xf1\x72\x29\xf0\x92\xcb\xf3\x16\x7f\x42\xf8\x1b\x92\x25\x4b\x12\xcb\xa7\x6c\xde\x66\x6c\x26\xa9\x14\xde\xa3\x4e\x4f\xa8\x7c\x34\xc6\x74\x42\x3a\x45\x50\xcd\xf6\x4d\xf3\xa6\x5f\x85\xf4\x2c\x56\x9c\x19\xe3\x8e\xd2\x67\x52\x49\x39\x2a\x26\xf8\x4d\x12\x4b\x58\xdb\xa7\x3d\x96\xda\x5c\xc1\xcd\x33\xae\x54\x6c\x60\xa2\x02\xea\xf5\x6c\x1f\x1b\x95\x06\x54\xf2\x1d\x09\xfd\x10\x80\x3a\x7f\x11\x03\x2d\x8d\x4f\x2a\xb5\xba\x1a\xc7\x59\x95\x47\x4c\x68\x35\x67\x6d\x79\x01\xa7\x9c\x35\x15\xf4\x78\x6d\x56\xef\xcd\x2d\x1f\x89\x91\x50\x92\x99\x8b\x86\x81\xf6\x80\xd7\x07\xf6\x25\x49\xd3\x9f\x15\xd8\x77\x60\xa4\x5c\x25\x7c\xb4\x26\xdc\x93\x85\x27\xe5\x23\x34\xb9\x5d\x46\x3b\x5f\x00\x0a\xcc\x82\x83\xcf\x55\xd6\xf2\x28\x1b\x73\x4c\x31\x03\xb5\x1d\x31\xd7\x35\x4e\x17\x2b\x55\x3a\x73\x5d\x4f\xfa\x0b\x5f\x25\x1c\xb8\x74\x1c\xce\xe5\xc9\x6f\xb9\xb1\x1b\xbc\xef\x9b\x8f\x80\x23\x58\x8b\xfc\x01\x01\xbd\xa2\x40\xa7\xd0\xa2\x28\x9d\x5b\xe8\x75\xb2\xc5\x8b\x18\x29\x89\xc8\x76\xdb\x3d\xa4\x3b\x87\x79\xdf\xdb\x0b\x08\xa8\xa6\x42\xfa\xdf\x57\x23\x26\x99\x90\xb5\xe5\x9a\xf2\x08\x0a\x6a\x91\xab\x84\x7b\xc8\xc4\x49\xd0\xd4\xd6\xa4\x98\x4c\x85\xe0\x18\xef\x62\x8d\x3e\xbb\x51\x6f\x55\x70\xe2\x95\x8b\xa2\x5a\x33\x85\x9c\x1c\xbb\x0b\x0d\xc8\xaa\x0e\x17\xec\xf9\x51\xc0\xd5\x53\x16\x29\xce\xa1\x6f\x07\x2c\x7a\x15\x10\xc8\xec\xb2\x94\xc5\xe4\x33\x19\xf7\x07\x6c\x18\x0c\x16\x7e\x28\x5d\x94\xbd\xb9\xfc\xf0\x91\xc5\xca\xa9\x06\x02\xe5\xbd\x67\xd0\x55\xb7\x75\x7b\x43\xd0\x67\x54\x16\x12\x79\x82\x8e\xb3\xbe\x59\x7f\x81\xee\xd3\x59\x9b\x08\x72\xb9\xd9\x4c\x54\x77\xf2\x70\x4c\xae\x76\xc6\x6f\x16\x40\x51\x7b\xba\x8b\xeb\x0e\x32\x45\xdf\x48\xec\x25\x62\x17\xd5\xae\x94\x6a\x69\x5e\x52\x1d\xca\xee\x6f\x41\xcc\xf3\xbd\x4d\x24\x74\xa2\x6b\xf2\x19\xbd\x2e\xb5\x4c\xe7\x34\xf6\xa2\xad\x72\xff\xe2\x40\x20\xd4\x57\x69\xa5\xe6\xd0\x9a\xf2\x55\xc2\x77\xd6\xa3\x9a\x70\x5e\x9b\x70\xb1\xac\x68\xd3\x2c\xb0\xa6\xb9\x55\xcb\x23\x68\x9c\xdd\x33\xee\xba\xed\x49\x7f\x0b\xaa\x02\xd1\xd9\xfd\x20\xd5\x34\xaa\x3e\x56\x52\xab\x42\x00\x94\x49\x63\xce\x2d\x70\x52\x35\x82\x7a\xc9\xfd\xed\xec\x80\xb4\xde\x0c\x89\x3d\x66\xc1\x33\x78\xa0\xd7\x8f\xad\x4d\xd0\xd8\x1d\xaa\x61\xcf\x8e\x21\x31\xa2\x39\x7b\x4f\x35\xde\xa4\xec\x38\x5d\x95\x39\xa4\xdd\xd9\x82\x65\x73\x76\x9f\xb7\x28\x9c\x71\x56\x43\x78\x8d\x86\x71\x33\x47\x66\xa4\x44\xef\x0e\x5b\x19\xf7\x93\x91\x76\x79\x0d\x77\xb7\x63\x65\x21\x86\xd6\xea\x62\xa9\xd8\x7d\x1a\xf8\x07\xe2\x31\x64\x8c\x2b\x1a\x46\x5d\x03\x1a\x6e\xf7\x1a\x72\x8a\x3e\x6f\x61\xc9\x36\x04\x9a\xc7\x7f\x66\xed\xd1\x75\xac\xdf\x8d\x32\x6f\xf4\x35\xaf\x04\x60\x58\x09\x2c\x82\x66\x59\x85\xc3\x38\x3e\xa7\xb1\x39\x74\x3e\x53\x0f\xd6\xb5\xd5\xa5\xb4\xbd\xd9\x4a\xdf\x67\x0d\x94\x76\x67\xf0\xc3\x60\x40\x77\x41\xb2\x45\x75\xcf\xf6\xb6\xa5\xe8\x89\xc2\x46\xe2\xba\xd6\x03\x73\x3b\x75\x02\x41\xea\x5e\xdc\xbd\x99\xba\x12\x85\x32\x42\x63\x7b\x03\xb2\xc9\x51\x9d\x1d\x52\xee\xdc\x2c\xc6\xaf\xb4\x17\x96\x8c\x55\x85\x6f\xaa\xfb\xd2\x46\xbd\x54\x1b\x30\xec\x09\xb6\x18\xea\xec\x2c\x6c\xb1\xbb\x60\xd8\x6b\xd0\xfc\xb6\xf8\x55\xf1\x9a\x3b\x11\x39\x6a\x60\x91\x64\xdc\x54\x56\x91\xf8\x2a\x40\x62\xf5\xad\xaa\x29\x49\x56\xf9\x2d\xd3\xf5\xac\x19\x19\x71\xa4\x18\xe4\x9a\xbe\x20\x11\xff\xec\xce\x3b\xe0\xd4\x3a\xef\x48\x6f\x73\x24\x14\x09\x44\x67\x20\x2a\x5e\x77\x5e\xe4\xa8\x75\xde\x01\x87\x95\x95\x55\x9d\xaf\x02\x82\xbb\x77\x98\xa9\xbe\xec\x7c\xf9\x2d\xd3\x75\xe7\x9d\x61\xe5\x99\x26\xf2\xc3\x2d\x19\xf8\xae\x41\xb5\x2a\xd9\x73\x70\xcc\xdc\x5b\x97\x31\x69\x5f\x79\x36\x09\x64\x45\x29\xa3\x35\x15\xed\x6b\x0d\x15\x9f\xd1\xf4\xce\xa3\xea\x2d\x43\xe0\x85\x4a\x34\x1c\xab\x65\xba\x70\xe9\xa1\x75\xb1\x32\x7c\xca\xf5\xdd\x9c\xe0\x3b\x3f\x84\x95\xc4\x14\x11\x94\xa6\x4d\x2b\xe3\x40\x4d\x09\x20\xeb\x84\x06\xed\x1e\xd8\x20\x17\xe1\x1a\xcc\x45\x84\x66\x46\xda\x3d\xcd\x50\xb6\xbb\x20\x19\xcc\x76\x17\x34\x14\x83\x4b\xa8\x80\x5b\x05\x48\xac\xbe\x45\x66\xf3\x51\x66\x90\xc0\x0d\x2e\x45\xaf\x7e\xfe\xf8\xe1\xf2\xe7\x8f\xd7\xe7\x6f\xb0\x85\xff\xb0\xf2\xcf\xff\x7e\x21\x23\x8d\x18\xb6\xf2\xcf\x3f\x5e\x9f\x7f\xbe\xf8\xf8\x93\x25\x0a\x98\x58\x99\xd1\x4c\xa9\x2a\xab\x32\xea\x19\xd5\x5a\x95\x15\xdc\x0a\xf9\xd9\x7e\xbd\xf4\x6b\x5d\x13\x67\x16\x02\x2b\xad\x22\xb2\xea\xfc\x80\xf5\xd7\x45\x60\x6c\x43\xd6\xf1\x42\xdb\xf3\x65\xd6\x71\xda\x1b\x1d\xb9\xd9\xec\x78\x51\x17\xd3\x1e\xd0\x81\x58\xa3\x31\x19\x6e\x36\x5d\x88\x49\x1a\xde\xd5\x8b\x8b\x18\xe5\x87\xfd\x06\x53\xef\xd8\xee\xe9\xb5\x65\x81\x9f\x47\x61\x6a\x1d\xc5\x13\x70\xc0\x3a\x1a\x96\x36\x07\x73\x76\xeb\x11\x38\x44\xe0\x20\x47\x79\xf7\xba\xc2\x6b\x03\xb8\x60\xcd\xe6\x61\x94\xf0\xbb\xa0\x07\xd5\xd9\xd8\xb5\xd7\x43\x05\x68\x38\x36\x67\x31\x47\x46\xf0\x1a\xe7\xdf\xa3\xd8\x0c\x2d\x13\x15\xa9\xdd\xf8\xc0\x62\x22\x90\x39\xe4\xa5\x2f\x0b\xf5\x82\x5c\x28\x4f\x73\x12\xaa\xae\xdd\x69\xe2\x13\x57\xdf\x24\x96\xc7\x37\x16\x31\x1a\xab\xa0\x20\x41\xb3\xf2\x93\xc4\x52\xe5\x59\x51\xa4\x51\x39\xa3\x4b\x6b\x9e\x27\xd5\xec\x2e\xfb\xca\x35\x57\xb0\x84\x3b\x4c\xfc\x6a\x1f\x2d\xd7\x1c\xac\xaa\xdc\x77\xfd\xf3\xe0\x0e\x2e\x71\xf9\x4c\xf1\xae\x0e\x74\xcf\x78\x0d\xb5\xdb\xa1\x4d\x86\x1c\xd5\xe8\x94\x4d\x9b\x2c\x7a\xa5\x0f\x89\x8c\x0d\x4c\x49\x01\x1b\x7a\xed\x0c\x91\x9c\x2d\xfd\xde\x2e\x82\x8f\x76\xe0\x83\x19\xc1\xad\x18\x01\x82\xcf\xf8\x83\xbf\xa0\xb9\x7c\x9e\xe9\xf7\xbc\xec\xba\xeb\xb6\x23\x78\x53\x15\x94\xfc\x16\xbc\x37\x85\x6f\xf4\x61\x00\x19\x03\x47\xf0\xa9\x16\xfd\xb9\xff\x46\x9b\xbc\xc2\x7b\x04\x6f\x9b\xee\x32\x54\x96\x93\xda\x0d\x34\x31\xd6\xaf\x9f\xfb\x83\x37\x86\xe5\x00\x3e\x0c\x06\x1c\xa8\xd8\xd4\x6d\xd5\x33\x13\x58\x5e\x7f\x21\xb8\x9c\xa6\xbc\x4f\xbc\x10\x05\xc4\x0b\x21\x47\x45\x51\xc0\x05\x7e\xeb\xcd\x11\xbc\xc2\x6f\xb7\x71\xb6\x5d\x37\x51\x2c\x1f\xee\x2b\x3c\xa2\x39\x24\x60\xf8\xab\xe0\x83\xef\x52\x12\x8c\x40\x03\x3d\x98\x14\xb0\x16\x4b\x5a\xcb\x2e\x4e\x81\xe4\x15\x31\x43\x1e\xe4\x25\x31\xb9\xd2\xcf\x14\x7e\x49\x83\x2a\x8f\xe2\x0f\xb5\x53\xf8\x09\xe1\x2f\x17\x9c\xa9\x1b\x03\x86\x8a\x78\xf5\xa7\x8c\x10\x7c\x34\xb0\xc0\x14\x05\x14\x97\x56\xe2\x56\x55\x78\xf0\xa1\xf1\x78\x5f\xaf\x66\x07\x2a\xc2\x45\x35\x05\x4a\x0a\x04\xcd\x85\x2a\x13\x09\xab\x98\x7f\x7a\x7a\xfa\xc4\x2a\x3b\xf4\xbf\xb2\x84\x4a\xd7\x64\xb0\x70\xdd\x85\x62\xa0\x11\x82\x6f\xf8\xad\x17\x23\x78\x89\xdf\x7a\x53\x04\xef\xea\x20\x2f\xad\xed\x1e\x80\xa9\x58\x00\x85\x64\x2c\x2b\x90\x66\x22\xb0\x03\x52\xfe\x2f\x82\x94\xa3\x40\x5d\x2e\xff\x17\x40\xca\x0d\x51\xff\x13\x20\x2d\xcb\x6e\x36\xfe\xd1\xd1\xd1\x13\x5e\x07\xad\xe9\x97\x6e\x15\x3b\x5d\xa7\xde\x57\x69\xa6\x75\xed\xf9\xcf\x4e\x10\x8c\x5d\x77\xac\xcd\xf7\xbf\xe0\xb7\xde\xcc\x7a\x0f\x73\x91\x93\xf3\xf1\x58\xac\x9e\x86\x57\xbe\xad\x98\x28\x25\x61\x66\x18\xdc\xd7\xe5\xdb\xdc\x85\x72\x69\x06\xf9\x16\x0b\xb4\xaa\x1f\x01\x18\xbe\xa1\x0b\x09\x0d\x52\xd0\x5c\x54\x60\x11\x03\xc3\x3e\xbc\xb2\x38\x86\x6f\x36\x2b\x71\x61\xd8\x87\x77\x15\xcb\xf0\xc5\xe2\x24\x5e\x42\x9d\xdf\x6b\xbc\xf5\xf6\xb9\x4f\x02\x6e\xa1\x89\xeb\x56\x63\xc1\x16\x07\x4f\x2b\x44\x90\xae\xc1\x8a\x12\x17\x2d\x14\x13\x54\x4f\xe0\xe6\x25\x82\x66\x83\xe8\xbc\xce\xce\xd1\x3a\x4c\x1a\x2c\xcc\xcc\x1e\xdb\xad\x6d\xc3\x72\x0a\x97\x49\x9e\x8c\x92\x54\xa4\x1a\x26\xa8\x8d\x31\xd9\x6c\x52\xa3\x8c\x70\xa6\x49\x1c\x13\xea\x14\x70\x35\x20\x43\x18\x01\xd5\xb2\x8d\x6c\x48\x1d\x9f\x7c\x2a\xa4\x0b\x53\x75\xc6\xfa\xda\x9f\x2d\x92\x2b\x75\x51\x4e\x2c\x0d\xac\xdf\x2a\xfa\x88\x5f\xc3\x07\x79\x74\x70\x28\x76\x00\xea\x1d\x3e\x3f\x42\xf0\x06\x53\xef\xf4\x48\xd1\xbe\xf7\xf7\xbd\x83\xde\x97\x48\xf5\x3e\xbc\x63\x0b\xae\x50\x2b\xb0\xd0\x4c\x96\xff\xf4\x7d\xec\x02\xd3\x4f\xc9\xcb\xe7\x65\xe5\x7d\x45\x63\x20\xc1\x32\x1e\xa6\x90\x54\x2c\x43\xe6\xba\x99\x64\x2f\x18\xfd\x2c\xa5\x2d\x12\x43\xa4\x36\x2a\xfd\x7c\xbc\xdc\xaa\x16\xca\xfd\x54\x2c\x3d\x4f\xc1\xbc\xb6\x43\xe5\x7e\x92\xff\x12\xa6\x49\x5c\xce\x1b\xea\xcb\xcd\x4c\x3d\xde\xc1\xcb\xc5\xf3\xbe\xb6\x64\x92\xcd\x26\x6e\x74\x02\x89\x9b\x98\x7e\xd2\x27\x1e\x0a\x08\xa4\x35\xa9\x99\xa0\xc2\x63\xc8\x7a\x77\x69\xc4\xe2\x3b\xe9\x35\x90\x41\x32\x44\xb0\xd5\xe2\xd8\x5b\xb8\x6e\xe5\xe5\x4f\x0f\xe2\x8d\x12\xa8\x16\x08\xac\xbc\xf5\x34\xa5\x1f\x11\xf5\x72\x58\x34\xd4\x1c\xba\xae\xb7\xd8\x6c\x12\xe4\xba\xa1\x7c\x40\x7d\x10\xea\x7c\x49\xbf\x09\x3c\x3b\x88\xbe\x16\xe0\x9a\x17\x28\xa0\xc1\xa2\x9f\x6a\xda\xa0\x66\xcb\xa3\xb0\x40\xc1\x42\x20\x60\xc9\xcc\xbe\xad\xbd\x78\xbf\x7d\xb9\x05\x38\xa6\xe4\x56\xbd\x3e\xa1\xde\x35\xe9\x9e\xd1\x1f\x89\x7c\x59\x93\x0f\xe8\xd0\xba\xf0\x52\xf9\x7f\xe2\xf7\xba\x7d\xd4\x07\xa9\xbc\x5f\x33\x75\xaf\x5e\xf0\xdc\xe9\x02\xb3\xba\x20\xdf\x42\xeb\x9e\x65\x3f\xd2\xb3\xec\xe0\x00\xb1\x41\x66\x77\x21\x1b\x9e\x11\x5f\xde\x00\x53\x27\x5e\x0c\x29\x49\xbb\x0a\x0b\xc0\xdb\xd0\xae\xf9\x91\xbf\xb0\xf8\xfa\xfd\x78\x23\x39\xf8\x57\x7f\x7e\x15\xc2\x37\x21\x04\xbe\x7c\xd4\x32\x0c\x69\x34\x65\xd9\x79\x2a\x17\x5e\x8d\x85\xaf\xd6\x64\xb4\xb3\x26\xd3\x6a\x4d\x46\xae\x1b\x49\xfe\xfd\x86\x90\xf9\x07\x25\xd3\x95\x86\x58\x6d\x8c\x05\x97\x20\xb9\xf8\xea\x4e\x8d\x64\xe2\xe7\x84\x4a\x16\xbe\xba\xdb\x35\xad\x38\xee\x59\xe5\x5a\x47\x19\x61\xa9\x7b\x21\x97\xfa\x52\xc8\xb2\xca\x39\xea\x7f\x0b\x46\xd2\x78\x41\x65\xf9\x4c\xc6\x92\xa5\x57\xec\xff\x0a\xdb\x7b\x7b\x69\xca\xde\xc6\x78\xe5\xba\x2b\x38\xdf\x61\xe9\x0d\x38\x1c\xa8\x59\x38\x18\x50\x58\xd6\x5b\x12\x10\xda\x55\xd3\x07\x23\xca\x3a\xe5\x20\x05\xf7\x3e\x97\x85\xad\x6b\x65\x4e\x6d\x18\x65\xf8\x33\x19\xdb\x0c\x7e\xd9\x5f\xc1\xcd\xdf\x6e\xf3\xe1\x5f\x6b\xe4\xec\x56\xf0\xe0\xd7\xdb\x79\xae\x6a\x79\xae\x61\x52\x93\x0a\xae\xd0\xd9\xab\x1a\x41\xa8\x36\xc9\x2b\x41\x0d\xae\xe4\x8e\xbf\xc8\xc9\xc5\x6c\x2e\xef\xb1\x2d\xc9\xbb\x90\xc6\x29\xf1\x26\xd0\xc0\x46\x5c\x9b\xd2\x8a\x59\xd0\x9b\x8c\x45\x94\xdb\x5d\x21\x3d\x7c\x14\x24\xf9\x25\xfe\x28\x48\xf2\xbb\xdd\x87\x7c\x9d\x94\x4b\xf9\xd9\x93\x57\xbc\xe2\x24\x23\x91\x96\xad\x45\x82\xe5\x68\x40\xbb\xa2\x21\xda\x8f\xa9\xe5\x11\x39\xd0\x0b\xab\xe6\x0e\xf9\xcc\xce\xa5\x1d\x6a\xd4\xf3\x89\xa2\x2a\x97\xf1\xc4\x6c\x32\x54\xbe\x9a\xab\xf4\x7a\x15\xa6\x44\xe9\xc8\xa6\xba\xbd\xef\x4d\x0d\x43\xf0\x59\x4a\x5b\x82\x39\xb3\x80\xf2\x0e\xc1\x2f\xf8\x8b\x80\xc9\x0f\xf8\x8b\x10\x63\xf6\x31\x6b\x25\x78\x5d\xb7\xfc\x2c\xaf\x40\x99\x97\x6f\x7e\x56\x55\x97\x7a\xde\xad\x8d\xe4\xb6\xaa\x83\xba\xee\xb8\x56\xa9\x57\xd5\xaa\x6f\x2b\x79\x08\x4a\x8c\x50\x08\xa5\x1a\xa9\x9f\x04\xff\x50\xbb\x58\x5e\x00\xc7\xde\x85\x20\x9e\x82\x92\x7e\xf0\x43\x15\x28\x1b\xae\x33\x47\x95\x1b\xd4\x77\x05\x2c\x25\xfb\xaf\x5d\x94\xd6\xb2\x15\x90\xf6\xd7\x45\xb0\xde\x71\x11\xd9\xe0\x3c\x44\xbf\xdb\x57\x14\x30\x87\xa5\x75\x21\xae\x72\x95\xfa\xd6\x23\xb0\x2c\xdf\x0c\x41\x95\xb7\x54\x93\xa0\xbd\xe0\x4b\x9f\xcc\x15\x00\x34\x17\x4c\x21\x85\x39\x8c\xe1\x1d\x2c\x87\x08\xfe\xd8\x0b\x6f\x52\xdf\x8d\xbf\x02\x41\xf0\xb3\xda\x65\xbf\xc2\xcf\x43\x04\xbf\xe2\xe6\xc9\x7d\xd4\x3c\xc8\x4b\x2d\x8f\x67\xeb\x7f\xf5\x2c\x16\xbe\xb9\xd0\x78\xb3\xb9\xdc\x6c\x7e\x55\x3d\x1c\xc3\xe5\x10\x41\x3b\x76\xdd\xf6\xd8\x75\xbd\xf6\xe5\x66\xf3\x1e\xed\xe8\xa6\x7f\xb2\xfd\xd8\xfe\x52\xde\xd8\xbe\x74\x5d\xef\x27\x4b\x95\x52\xe9\x1e\xc7\x25\xff\x6f\x35\xfc\xd2\x6b\xf7\x50\x51\x71\xfb\xf5\xa4\x2e\x02\xdd\xf9\x6d\xd9\xe3\x13\xac\x6b\x24\x38\x48\xa1\x24\xcf\x41\x58\xec\xe4\x6f\x30\x59\x12\xec\xcb\x1f\xfa\x4e\x07\x67\x2c\xe5\xc9\xdc\x29\xe0\x1c\x9a\x98\xf6\xca\xf8\x54\xdd\xf8\x05\xfb\x1d\xcb\xd2\x6e\x6a\xbc\xd9\xb4\xe3\xcd\xe6\x52\x49\x0d\x5a\x71\x06\x92\xb9\x6b\xda\xe7\xb3\x7e\xe6\xfd\x84\x82\x0c\x95\x0b\xf8\x9d\x34\xba\xe9\x09\x22\x21\x3e\x5e\x58\xec\xd3\x2f\x16\xbb\x69\xdd\x30\xea\x91\x93\x27\x04\x3d\xed\x91\x13\xc9\x2e\xfc\x80\xdb\x3d\xf8\x19\x97\x93\xf4\xc7\xe3\x76\x7f\x79\x19\xde\xf2\x8e\x41\x5d\x97\xca\xfd\xbe\x64\x05\x16\x96\x99\xa2\x75\xf9\xec\x2d\x8b\x16\x79\x79\x74\xb0\x6d\x81\x38\xaa\x32\xbe\x63\x4b\x92\x95\x19\x97\x55\xc6\x91\x72\x13\x55\x99\x3a\xb2\x45\x34\x2d\x33\xde\x55\x19\x27\xae\xab\xee\xa3\x49\x9d\x8b\x54\x9b\xd6\x2f\xa5\xf5\xba\xe6\x5a\x9a\xcc\xf1\x91\xac\xb8\xca\xf5\xd5\xbe\x9d\xd6\x0d\xce\xe1\xda\xe4\x91\x8d\xa9\x4c\x57\x55\xa6\xeb\xfe\xb3\x6e\x37\xb8\x86\xd7\x98\xf8\x49\x0c\x1f\xa4\x72\x92\x93\x2c\x8c\xc4\x26\x08\x9f\xab\x3e\x7d\x70\xdd\x0f\xf0\x1e\x13\x3f\x25\xe1\x92\xa8\x8a\x3e\x55\x15\xbd\xef\x77\x83\xf7\xf0\xd6\xa4\x5b\xad\x5d\x54\x99\xde\xf6\x7b\x27\xdd\x6e\xf0\x16\x5e\x49\x89\xe6\x75\xca\x72\x02\xdf\xe4\xf7\xa5\xe0\x8e\x7e\x31\x6c\xd2\x1f\x35\x36\xe9\xd7\xaa\x86\x3f\x2a\x36\xe9\x0f\xf8\x09\x13\x7d\x03\xb3\x52\x62\xfe\x5e\xe5\xfd\xa9\xff\x32\xf8\x09\xfe\x5e\x66\x52\x86\x9d\x7f\x93\xfa\x51\x9e\x12\xf8\x9f\x3d\x7a\xd0\xff\xad\xaa\xf8\x9f\xfe\xc7\xe0\x7f\xe0\x1f\xb5\x8c\xaa\x1a\x42\x76\x39\x29\xed\xca\xb2\xd1\x50\xb4\x09\x89\xaa\xe8\x1a\xca\x58\xa6\xa4\x36\x82\x98\xa3\x21\x09\x55\x13\x28\x67\xde\x44\x54\x80\x77\xc0\x49\x62\xa9\x8e\x2d\xe7\x53\x3a\x65\x32\xb3\x67\x02\xb5\x12\x7a\x52\xe4\xd7\xa5\xe2\xe6\x1a\x98\xba\x2d\xa0\x97\x31\xc6\x94\x55\xc2\x77\x8f\xbe\xd6\x8e\x2d\x6d\x5a\x39\xd9\x52\xd4\x52\x62\xb3\x0e\x08\x18\xc1\x94\x48\x67\x76\xf2\xa3\x37\x84\x84\xec\x8a\xc1\x21\xc1\x89\xcc\x95\xcb\x8f\xde\x10\x22\x52\x71\x81\xed\x1e\x82\x94\xd8\xea\xe1\x45\x2d\x14\xd7\x42\xf3\x5a\x68\x5c\x76\xf0\x8b\xb2\x01\x65\x94\x67\x2c\x4d\x49\x1c\xfc\x02\x86\x15\x6a\xf7\x40\x99\x44\x5e\x6b\x12\x2b\x6f\x6b\x91\x40\x81\xb0\x40\x30\x23\x35\xd5\xee\x58\x9e\x60\x4c\x09\x9e\xc9\x4e\x8f\xe4\x47\x6f\x08\x4b\x82\xa7\x04\x26\x4d\x76\x68\xd6\x90\xa5\xe4\xc8\xb5\x57\x72\x51\x2c\xc3\x64\xb3\xa1\x0f\xa9\xc2\x94\xa4\x48\x5d\x97\x79\xce\x6c\x91\x74\x9c\xda\xb9\x4a\x45\x69\x55\x30\xa4\x31\x9b\x79\x48\x5e\x5f\x83\x01\x1d\x22\xc8\x0a\xef\x35\xda\xcb\xbb\x3d\xa0\x68\x4b\x49\xa9\x69\x83\x5a\xc2\x62\x5f\x42\xbc\x2f\x61\x4e\xb6\x95\x76\x72\x17\xb8\xab\x43\xad\x56\xe4\x67\x04\x3f\xe0\x76\x17\x46\x8a\x43\xff\xe6\xba\xdf\x3c\x82\x0a\x58\x91\xdd\x33\xec\xb6\xb7\xe3\x93\xa2\xdb\xe8\x93\xa2\x3b\x44\x9b\x8d\x1d\xdc\x7e\x13\xca\x2b\x77\x9f\x48\x29\xb0\xce\x9c\x19\x5b\xe4\x44\x2c\x79\x65\x03\x29\xf6\x48\xd7\xa5\x3e\xa3\x1f\x44\x82\xe0\xfa\x5c\x77\x3b\xc6\x13\x00\x20\x15\xf7\xe4\x70\xb1\x6e\x15\x73\xde\x36\xb5\x6c\x36\x1e\x23\xae\xcb\xc8\xee\x0b\x65\x6a\x4d\xfe\x19\xb0\x5f\x6e\x36\x3f\xb8\xee\xd7\xbe\xc7\xfd\x39\xc9\xf2\x24\xe7\x72\xe9\x34\xe9\x19\x6d\x54\xb8\x23\xea\x85\x88\x1f\xfa\x5f\x83\x4b\x84\x02\x19\x46\x45\x01\x97\xe5\x2a\x78\xa7\x16\xfb\x39\xc1\x97\xc4\x4f\x72\x49\x1c\x7f\x49\xf2\x64\x94\x12\xb8\x95\x91\x8c\xbe\x4a\x17\x99\x89\xfb\x2a\xe3\x32\x32\x86\x9b\xda\xea\x17\x2b\xfb\x9a\xe0\x1b\xb9\x8c\xae\xe4\x47\x6f\x08\xaf\x6b\xd3\x7a\x4d\x5c\xd7\xbb\x52\x79\x6f\x89\x87\x50\x01\x1f\xff\xe3\xf3\xce\xc8\x66\x93\x11\x8f\x1b\x58\x5d\x87\xd9\x84\x70\x31\x62\x8f\x23\xdd\x9f\x2e\x82\x15\xf1\x90\x7c\x11\xbc\x8e\x27\x62\xfe\x25\x4c\x4a\x6c\x90\x21\xc9\xa0\xc3\x87\xfb\x11\xfd\xe7\x7d\xd3\x22\xd8\xa6\x02\xc1\xf3\x6e\xf7\xe0\x13\x92\x4b\xa1\x87\xe0\x95\xeb\xbe\x12\x04\x65\xef\x62\x4d\x1f\x9c\xee\x0a\x37\x55\x03\xbc\x7e\x0f\xd3\x1c\x06\xf8\xf9\x94\x65\x9c\xe4\x42\x80\xfa\xfc\xff\xef\x75\x37\x4a\x17\xb5\x25\xe7\x51\x8d\x60\x25\x80\x45\x40\xac\xb4\xd7\x02\x43\x40\x2d\x54\xb9\x4b\x36\xae\xd4\xf7\x22\x45\x48\xef\xb5\xe9\xc5\x18\xb3\x9d\x5c\xde\x9f\xa2\x78\xf6\x8a\x8b\x1f\x9c\x82\x0f\x7a\xc5\x7d\x12\xf8\xf1\x66\x0b\x3f\xac\xe9\xe9\x6a\x83\x1b\x03\x17\x69\xcd\x28\xa8\x89\xbc\x66\x24\xc6\x63\x87\x25\x89\x7c\x4f\x6a\x0a\x96\x8c\xc8\x93\xd0\x7a\xe4\x57\x02\xef\x09\x82\xb7\xe4\xb1\xa2\xe2\xa7\x5d\x7d\xb1\xdc\x66\x3e\x91\x21\x82\x8b\x7a\xe5\x91\x5c\xf6\x6f\x09\x3a\x93\x4f\xdc\xfc\xcd\x75\xbd\xa5\xb4\xe3\x95\x63\x79\x45\x70\x5b\xcc\x44\x7b\x09\xdf\xca\x72\x4a\x9c\x51\x3e\x0b\x62\x92\x47\x59\x32\x22\xf1\xe8\xce\x09\x96\xa4\x3f\x21\x5a\xfb\x2d\xa8\x62\xf0\x8a\x48\x97\xa7\x5b\x5e\xc5\xff\xd6\xff\x9b\x36\x73\x21\x04\x34\xac\x1a\xae\x9e\xc7\x92\xff\xb3\x6f\x33\xe9\xbc\x55\x8c\x10\xbd\x2b\x80\x06\x6f\x88\x3c\xbc\xb8\x20\x05\x82\x97\x04\xaf\x8b\xb3\xbb\xcd\xc6\xfb\x46\x6a\x60\xaf\xcd\xde\x1b\xb2\xb3\x3a\xf7\x6e\x8c\x7b\xf7\x58\x6b\xc7\x04\x62\x21\xd6\xfc\x41\xc4\x92\xf4\x89\x88\xb9\xb9\x42\x05\x54\x1d\xad\xdb\xe0\xa1\x75\x54\xda\x49\x9a\x64\xd7\xdd\x8d\xdb\x19\xca\xfc\x31\x4b\x81\x7c\xef\x52\x90\xfd\xbd\x10\xff\x96\x06\xba\xe5\x66\x8a\xc5\x88\xa0\x8a\x93\x4b\x14\x7f\x16\x91\x9f\x5d\xd7\x7b\xb9\x93\x59\x10\xc9\x97\xbb\xd9\xdb\x3d\x84\x10\xcc\x4c\xfd\x92\x3c\xe3\x8f\x65\xdd\x82\x9a\x6c\xd5\x5a\x66\x29\x6b\x34\x99\x64\x5d\x4a\x34\xd6\x2b\x68\xcf\x8d\x58\x73\x30\x32\xd7\xe2\xba\xa5\x60\x0d\x2c\xc5\xd2\x5a\x7b\xea\x37\x7e\xda\x5e\x31\x96\x92\x90\x7a\x21\x41\xa5\xa7\xf0\x90\x14\x45\x51\xc0\xdf\xd5\x99\x08\x81\xbf\x0f\xad\xa3\xd4\xba\x56\x21\xf7\xdf\x66\xe1\x44\x79\x1a\x13\x2b\x67\xeb\x8c\x24\x82\x6f\x64\x57\x75\xf1\xfb\x03\x37\xa7\xe4\xda\x59\x18\x1f\x48\x9f\x5d\xd7\x7c\x5f\x58\x42\x68\x58\x45\xbf\x14\x43\x42\x50\x29\x63\x7e\x05\xa3\xbf\x0e\x18\x01\xc1\x67\x07\xed\xb6\xa0\xbe\x4b\x02\x49\x1c\x7c\x23\x83\xdd\xf5\x3f\x04\xcb\x5b\x40\xbb\x5b\xc0\x4b\x02\xef\x08\x82\xc6\x57\xfb\x6d\xbf\xb9\x3b\x52\xe0\x3e\x58\xfd\x6f\x7d\xd8\xe6\xac\xf5\xfe\x2d\x31\x2b\x80\xc2\x3f\x76\x61\xa8\xd4\x39\x7b\x61\xa7\xd5\x39\xb0\x18\x18\xcd\x4e\xe9\x73\x7d\xdb\x83\xc8\x54\x9e\x96\xd5\x9d\xff\x22\x34\xac\xb1\x95\xa2\xc2\x45\x34\x55\x40\xd7\x15\x2a\xa8\x17\xf0\x37\x08\xfb\x3b\xbd\x53\xf7\xfd\xac\xee\x2d\xb4\x8e\x45\x90\xb8\x9c\x14\x28\xd0\x8a\xbc\x5d\x17\x18\xb3\x7d\x2e\x30\xd4\x64\x07\xeb\x6f\xf2\x25\xf4\x80\xf8\xea\xa3\x1c\xeb\x9c\x49\xa1\x56\xfa\x7a\xca\x4b\xe5\xd3\x0e\xe6\x04\xeb\xad\x8c\xf2\xac\xdb\x64\x7c\xa9\x96\xc7\x7f\xbb\x03\xcb\x11\xde\x93\xd2\xf9\xe3\xb0\xf5\x83\x1c\xc7\x7f\x07\xeb\x9a\x02\xac\xba\x4a\xe7\x74\xba\xfe\xb3\x1e\x99\x99\x2b\xdc\xf2\xc6\x9c\xb9\x86\xf7\x59\xfa\x54\x39\x06\xc7\x0d\x02\xf5\x82\x62\x93\x2f\x87\x6e\x4b\xba\x41\x28\x0a\xd8\xe9\x86\x74\x8c\x5c\xf5\x41\x3b\xd4\xdc\xea\x86\xbe\xc5\xf7\x6f\xe8\x89\xe8\x47\xab\xdb\xd8\x13\xed\x5e\xb5\xea\x4b\xad\x0b\xb2\xad\xaa\x03\xda\x99\x8c\x23\x03\xca\xc3\x8c\x53\xef\x5c\xd3\x65\xc5\xc7\x74\x6e\x2f\xa4\x94\x9f\xe9\xaa\x7b\xca\x55\x68\xb7\x36\xfc\xff\x70\x07\xbb\x12\x74\x05\x68\x04\x0d\xd6\x82\xf1\x99\x48\x61\x5a\xfa\x2b\x31\x6b\x76\xec\x8f\x90\x57\x39\x42\x99\x64\xe4\x6e\xf0\xac\xdb\x1d\x82\xff\x02\x81\x7a\x60\xe2\x73\x18\x27\x8b\x3c\x20\x7e\x3e\x0d\xe7\xc4\xb7\x23\x61\xdb\x91\x4a\xc4\x66\x33\x46\x7d\xf9\x1a\x22\x8c\x19\xe5\x6f\xc3\x59\x92\xde\x05\x44\x30\xaa\xfa\xde\xb0\x5f\xc5\x97\x2e\x04\x9c\xe3\xf9\xaa\xf5\x7c\xbe\x72\x64\xa1\xab\xe4\x1b\xa9\x17\x99\xaf\xae\xd9\x67\x32\xf3\x7a\x5d\x04\x69\x42\xc9\x3b\x0d\xb3\x92\xa0\xfc\xe2\xf5\xfc\x63\x04\x0e\x99\x39\x08\x66\xe1\x4a\x5d\x47\x3d\xea\x76\xe1\x96\x65\xf1\x97\x2c\x9c\x07\x8e\x7c\xef\xa0\x23\xc2\xaa\x99\x2f\xaa\x92\x9d\xbe\xa9\xf8\x0f\x24\x4e\x16\xb3\x12\x82\x7a\x71\x36\x38\x42\x30\xfe\x12\x9c\xae\x53\x3d\x46\x63\xce\x49\x8c\xcd\x88\xe5\x41\xa1\x7a\xa6\x5d\x4f\x76\x0d\x0b\xcc\xcc\x8f\xd8\xea\x2a\xf9\x26\x61\xa3\x20\xde\x19\xb1\x95\xa3\x01\xfe\x98\xc9\xab\xe1\x47\xa4\x7d\xb5\xff\xb7\xe3\xfc\x77\xd9\x5f\x75\x77\x77\xeb\xde\x71\xd9\x29\x81\xdc\x15\x6e\xca\xd0\x36\x0e\xd5\x3d\xe0\xc0\xae\xd7\x97\xe3\x13\xe3\xf4\x45\xd2\xf0\xf2\x2a\x6f\xe0\x3c\x9f\xaf\x5a\xbd\xd3\x47\x4c\xf8\xf1\xfe\x09\x3f\x7d\xda\x2b\xa7\xfc\xe1\xf9\xfc\x4c\x26\x8b\x34\xcc\xca\x09\x2d\x37\x25\x49\x2f\xec\x8b\xd3\xbb\xab\x49\x2e\xe0\x56\xa4\x0d\xe1\xcb\xf9\x6e\x1d\x0a\xb4\x75\x0a\x20\xbe\xc4\x2d\x49\xdc\x73\x7f\x31\xf7\x9c\x5c\x74\x6a\x5d\xe5\xec\x1d\xcf\x57\x8e\x10\x42\xb7\x1a\x57\xc4\xe0\xfe\xd6\x05\x39\xd9\xd3\xf8\xbf\xd4\xb6\x20\x2b\xf7\xb7\xac\x1a\x6d\x19\x0f\xbc\xa6\x4a\x39\xec\xee\x23\xda\xee\xe9\x8c\xbb\x6d\x6b\x32\xf6\xa8\xe6\xd5\x5b\x3f\x7f\xba\xed\xba\xbf\x9d\x52\x13\x5a\xb9\xd9\xf9\x43\x5e\x0e\x7f\xf1\xef\x73\x4d\xf1\xa2\xab\x5c\x53\xf4\x8e\x5e\x28\x67\x23\x8a\x43\x31\x0e\x12\x14\x4f\xbd\xc0\xea\x94\x28\xd6\x57\xc2\xe7\xfa\x8a\xf8\x18\x53\xef\xf0\x85\xbe\x2b\x7e\x78\x8c\x60\xfa\x28\x9f\x16\x24\x9e\x10\xc8\xef\x3b\x45\x4a\xbf\xdb\xe7\xa1\x56\x23\x3b\x81\x32\xee\xd6\x67\x00\x71\xe9\xd5\xb0\x8d\xf1\xd4\x75\x95\x4f\x43\xfb\x38\xe1\x73\x32\x9f\x4b\x07\x87\x65\xb6\xa5\xeb\x2a\x33\x6f\xe9\x15\xb1\x66\xd7\xed\xcc\x24\xa1\x75\x6c\xf3\xee\xd2\xc5\x85\x18\xd5\xbe\x03\x8c\x7b\x9c\x17\xc6\x5b\xe7\x1b\xaa\x43\xc6\x99\xe1\x7e\x97\x3d\xe3\x6d\x87\x0e\xcd\x9e\x15\xd2\xd2\x51\x9e\x81\x90\xf2\x67\x94\xee\x71\x94\x37\x2b\x1d\xe5\x8d\x5c\x37\xad\xe0\xe8\xe4\xb3\x30\x4d\x85\x80\xbf\x92\x85\x65\xef\x9a\xca\xae\xa4\x93\x3d\xf5\xbc\x66\x2a\xa7\x5a\x4a\xe4\xf2\x75\x4d\x15\x3e\xa7\x71\x31\xc8\x87\x08\xd4\x9a\x51\x03\x96\x9e\xb0\xab\xf1\x07\xed\x09\x98\xb6\x83\x91\xf1\xf6\x70\xd9\xe4\x41\x6f\x9b\x85\x4e\xfd\x34\x1c\x91\xb4\x80\x48\xbd\x2b\x32\xc2\x36\xcf\xbf\xdf\x69\x9c\xc0\xf7\x97\x69\x32\x29\x17\xb3\x03\xca\x77\x44\xb7\xd5\xd5\xbe\x23\xee\xa7\xff\x62\x01\x98\x4d\xa3\x77\x58\xe7\x48\xa4\xc7\x2f\xa8\xb6\xda\xa5\x52\xca\x3a\x3b\x5c\x49\x28\x3b\xe7\x6b\xe9\xed\x41\xcf\x6c\xd5\x36\xd7\xd1\x78\x55\x59\x0e\x3f\xa0\x43\x2c\xe4\xbe\x3b\x95\x9a\xf4\xbd\x3c\xd7\xbc\xbe\x6d\xd7\x7b\xb7\x13\x2f\x2b\xbb\x54\x76\xab\x08\x9c\xff\x2b\x96\x4b\xd8\xf2\x64\x74\xd0\x12\x92\x06\x6a\x68\x4a\x99\x30\xcd\xf5\x6b\x83\x05\x38\xee\x0f\xe5\xda\x78\x20\xf7\x3e\xf0\x99\xf2\x45\x01\x25\x06\x1a\x47\x1e\x72\x0f\xed\xf4\x0e\xc1\xf9\x41\x20\xf1\x95\xc0\x6b\xd7\xa9\xa7\x1e\xe9\x82\xe7\x34\x36\x09\x6a\xf7\xdb\x5b\x4e\x27\x1f\x15\xda\x83\xdf\x85\x72\x4b\x69\xfc\xf7\x95\x6e\x2a\xbf\xc7\x19\xe0\xf7\xcf\x4f\xad\xf4\x7f\x66\x7a\xbe\xd7\x43\xe1\xf7\x0f\x62\xab\xfc\x7f\x6a\x18\x25\x79\x59\x17\x50\x4e\x68\xc5\xf6\x1d\x3d\xc4\xed\x3d\x47\x05\x48\x4a\x13\xac\x6b\x7c\x68\xc9\xa4\x0a\xea\xe1\x58\xbe\xa8\x2a\x24\x80\xaf\x8b\x9c\x27\xe3\xf2\x59\xa2\x0a\x3b\xea\x0c\xc0\x45\xc4\xe8\xab\x05\xe7\x8c\x3a\x05\xf2\xa6\x08\x96\x8f\xda\x5f\x05\xb1\x92\x7b\x89\xda\x47\xa7\x24\xba\x91\x46\x96\xe5\xb7\xa8\x57\x1a\x59\xda\x96\x1a\xd5\x1e\x2b\x3d\xdd\xa9\xdd\xe2\xb5\x2e\x5c\xdb\x53\xc5\x1e\x9a\x88\x2a\x26\xca\xf0\xe1\x4e\x1a\x3e\xcc\x17\xea\xfe\xa0\xb4\xbd\x90\x41\x79\xb1\x53\x3f\x02\x23\xed\x2d\x94\xbe\x0e\x6e\x95\x01\x83\x7c\xeb\x01\xbe\xe2\x52\xb3\x07\x37\x98\xf8\x19\x09\xe3\x4b\x9a\xde\x49\xe3\x8b\x8c\xfc\xb1\x48\x32\x12\xc3\x15\x26\x3e\x0f\x47\x52\x93\x21\xed\x2d\xf8\xdd\x9c\xc0\xc7\xd2\xeb\xf0\x87\x9d\xed\xb8\x04\x82\xdc\x93\xe5\x28\xaa\x2f\x01\x80\xfd\xae\xa8\x6a\x43\xaf\xef\xd4\x89\x2a\xa8\x6d\x03\xcc\x90\x4d\x40\x59\x66\x52\x55\x8d\x1a\xac\x32\x0b\x90\x43\x95\x9f\xa6\x4b\x66\x98\xf2\x53\x0d\xd2\x01\xc7\x0c\x51\x7c\xde\xcd\x49\xe9\xb7\x78\x88\xe0\x33\xb6\x5d\xd9\xda\x67\xe8\x69\x79\x86\x6e\xb4\x94\x33\xa4\xcf\xd2\xaf\xa4\xf5\xe3\xab\x30\x27\xe5\x71\xba\x81\x45\x81\xe0\x4d\xcd\x5f\xd2\x67\x38\x44\xf0\x1e\xbf\x19\x74\x87\xf0\x09\xbf\x19\xf4\x86\xf0\xb6\xee\x2d\x6b\x81\xe0\x02\x4f\xcf\xde\x4a\x47\x34\xc6\xd6\xb8\x52\xf9\x5f\xb8\xae\x77\x81\xdf\x96\x78\xa2\x4f\x17\xb0\x6a\x52\x88\x84\x18\xe3\xd7\x9b\x8d\x93\x85\x71\x22\xaf\x4d\xbc\xde\xc7\xdc\x8c\xb6\x58\x9b\x6d\x0f\x59\xcd\xbc\xce\x5c\xf1\x3a\x63\x78\xef\xba\xf3\x12\xef\x2f\x44\xa0\xec\x53\xb5\xec\x2f\xc0\x40\x5b\x9d\x66\x48\x03\xaf\xf2\x02\x8a\x9c\xa7\xda\xc3\x1c\x5f\x5d\xf7\xab\x47\x10\xbc\x75\xdd\xb7\xd5\xd9\x62\xf9\x29\x4f\x7a\xd4\x9c\xd7\x8a\x9d\xbb\xee\xb9\x55\x4c\x1d\x98\x99\x2f\x59\x48\x33\x37\x1f\x1a\x98\x1b\x89\x55\x5b\xe6\x68\x25\x62\x07\x14\xf4\x18\x2b\x14\xd0\x48\x1b\xcc\x2c\x10\xcd\xd5\x6a\xb4\x47\x9e\xc4\xc1\x2b\xd7\x9d\x28\x2c\xb9\x04\x83\xa1\x8d\x8f\x9f\x71\x79\x2e\x67\xc0\x79\xf6\xc9\xe3\x08\x6e\x5d\xf7\x56\x3b\x43\x30\x88\x1c\xdc\xc8\x81\xac\xc0\xa0\x73\x70\x5d\x01\xf8\x0a\x04\x8e\x04\xaf\xb5\x47\xf9\x8f\x05\xdc\x21\x04\xef\xfb\x71\xb0\x94\x3c\xda\xa4\xc6\xa3\x69\x86\xcc\x50\xe2\x17\x45\x39\xce\x75\x9d\x6c\xcb\x71\x05\xeb\x68\x91\xe5\xf6\x1e\xdb\xa8\xc0\xa8\xae\xd3\xdc\xa3\x35\x68\x50\x56\xd6\x7c\x4b\x6a\x9d\x6a\xaf\x72\xe0\xf5\x29\x4b\x96\x21\x27\xd6\x42\x2b\x90\xb7\x44\xd2\x2d\xd6\xe9\x09\x82\x95\x19\xd9\x9d\x18\xd9\xce\x04\xcf\x43\x3e\x15\x3c\x5b\xe0\x7c\xe8\xbd\x68\x9d\x2c\x7b\xc7\xef\x4e\x7e\x39\x99\xf6\x8e\x67\xdd\xce\xe1\xbb\x93\xa8\xd3\xf3\x7b\xad\x6e\xe7\xb0\xe5\xbf\xe8\x1c\xb6\x0e\x97\xbd\xe3\xa8\xdb\xea\xf9\x3d\xff\x45\xeb\x50\xfc\x4d\x7b\xc7\x91\xcc\xd2\x3a\xec\x88\xb8\xce\xe1\x2f\x27\x51\x57\x94\xea\x88\x12\xe2\xef\x9b\x58\xea\x8e\x44\x8c\x57\x6c\x75\xb9\xe0\x69\x42\xc9\xab\x34\xa4\x37\x0e\xaa\xc4\x98\xc7\x74\xef\x48\x77\xa8\xb9\x47\xcf\xeb\x5d\x6a\xee\xd3\x73\xd3\xa9\x59\xe7\x45\xab\x77\x9c\x76\x4e\x3a\x27\xad\x9e\x7f\xdc\xeb\x88\x7f\xef\x7b\xdd\x56\xef\xd8\xef\x3d\x4b\x9f\xf9\x27\x2f\x3a\xe2\xdf\xfb\xde\x8b\xd6\xf3\xb4\xf3\xa2\xf5\xa2\x3e\x0e\x07\x55\xe6\xf8\xdf\xd3\xf7\x7f\x15\x98\xb3\xce\x61\xab\xd7\x7d\xf7\x6c\xd9\x39\x9c\xf6\xba\x4b\x0d\xdd\x9a\x17\x64\xab\x8b\xb7\x3b\x7e\xf8\x2e\xc1\xd8\xe5\x6f\xa7\xac\x74\xca\xcd\x4e\xca\xb9\x4e\xb9\x7e\xa4\xc7\xc8\x6a\x8f\xcf\x2b\xe9\x95\xf6\x6f\x03\x2d\x65\xdb\xae\x71\xa5\x28\xbd\xa8\xb2\xa5\x7d\xcb\x97\xa2\xa0\x2b\x66\xaf\xaf\x89\xdb\x5f\x03\xe3\x50\xd2\xf6\xfd\x3d\x6d\x30\xeb\xac\xe5\x90\x7d\xaa\xdd\xc6\xb8\x09\x46\x4d\xec\x83\x14\xbd\x6b\x46\x9b\xa5\xe8\x6d\x5d\xc3\xb0\xbc\x4b\xee\xd9\xd5\xb5\xa8\x6d\x76\xed\xda\x7b\x03\x5b\xe1\x0b\x93\xc7\xda\xd4\xb5\x08\x0e\xd7\x78\xda\x5f\x06\x73\xb8\x92\xbf\xf9\xbe\x5d\x6b\xb2\x75\x72\x25\x48\x5e\xb5\xf9\x81\xee\x57\xa0\xc8\x9b\xbd\x71\x45\x6a\xe3\x8a\xee\x93\xc9\x17\x42\xae\x9e\xba\x6e\x54\x07\x29\x2a\x69\x63\x54\x71\x7a\x86\x44\x46\x95\x20\xa4\x25\xa5\x05\x54\x03\xac\x5b\x2e\x3b\x71\xc8\xc3\xce\xd6\x93\x0c\x53\xe9\x61\x51\x80\x2f\x48\xea\x47\x96\xd7\xb0\x2e\xf9\xe3\xca\x20\x56\x1f\x57\x9b\x14\xd7\xad\xd4\x06\x97\xfd\xcb\x60\x3b\xbd\x28\x7b\x7f\xd1\xd0\xc4\x55\x53\x13\x57\x0f\x34\xb1\x9d\x5e\x94\xae\x22\xcf\x77\x8e\xd0\x1e\x50\x08\x6c\xcb\x35\xd2\xd5\x57\xb9\x38\xee\xd9\x94\x6a\x1e\xd1\xb7\x05\x3e\xc7\xfd\xc1\xb0\x60\xff\x4f\x4a\x7f\x75\xe9\xfc\x61\xf9\x7b\x5b\x5a\xbc\x77\xfc\xff\x8f\x88\x8e\xdf\x09\x83\x2d\x2f\xea\x86\x20\x14\xc8\xbb\x46\x05\x1c\x75\x4f\xfe\x03\x9e\x86\x5f\x9c\x9a\x47\xab\xa5\xaf\x10\x58\x68\xaf\xc3\xb1\x76\x03\x3a\xc7\x8d\x3c\xbc\xbe\x2f\x98\x54\x16\xaa\x41\xb2\x7d\x77\x10\xc6\x8f\x93\x42\x4b\xc1\xb7\xbe\x0d\x19\xed\x5a\x40\xe5\x16\x52\x09\xab\x4d\x7e\x89\x47\x52\xfa\x6d\xd4\xe2\x96\xca\xe2\x89\xb5\xa7\xdd\xd5\x04\xd9\x55\xcd\xdd\xbb\x10\x45\x5f\x9b\xbb\x1f\x95\xc5\xfa\x79\xd5\xb9\xcb\xbe\x93\x26\x4e\x70\x29\x25\xd4\x32\xab\xda\x96\xbe\x62\xcf\x7a\xbd\xe6\xb6\xbf\x2e\x82\x5b\x64\xb5\x75\x53\xdb\x95\x6e\x8d\xb3\x6d\xe3\x62\xfb\xba\xf4\x2b\x7f\x55\x8d\xe5\xda\x75\xd5\xed\x81\x52\xb4\xfe\x58\x25\xbe\x76\xdd\xd7\xf2\x4e\x81\x4e\xfc\x69\xc1\x39\xc9\xf2\x9d\x6b\x05\x6f\x64\x16\xe5\x5f\xe8\x7d\x95\xf6\xc6\x75\xdf\xc0\x27\x4c\xfc\xb1\x65\x18\xfa\xba\xec\xee\x5b\xe9\xbf\x39\x25\x11\x17\x22\x52\x55\x4c\x88\x29\xf0\x6a\x57\x9a\x2e\x27\xd3\x81\x9a\x68\xad\x26\xe8\x71\x7a\xef\xca\x8a\x7d\x77\x1a\xec\x48\xb3\xfd\x6e\x79\xc0\xb7\x44\x71\x0d\x0b\x19\x21\x47\xee\x80\xd3\x38\x4e\xe9\x0e\x5a\x8d\x52\xcc\xc2\xb7\x2d\x81\xd6\x0f\x11\xbc\xc4\xda\x4b\xfe\xd5\x66\xf3\x4d\xcd\xd1\x66\xd3\xee\xd9\x8a\x9b\xbc\x80\x77\xaa\x64\x79\x69\xf2\x6c\x5e\x33\x2e\x9a\xb9\xee\xbb\xca\x0e\xa4\xfc\x54\xc0\x57\xb7\xa5\x66\xda\xc8\xfa\x0b\xfc\x02\x3f\xe0\xa4\x72\xe6\xc4\x99\xba\x4a\xbc\x44\xf0\x33\xfe\xa1\x7c\x28\xd1\xfb\x82\x7f\x18\x98\x60\xa7\x37\x84\x5f\xf0\xc0\x31\xce\x82\x4b\x82\xfa\x52\x5d\x16\x1a\x42\xb2\x7d\x15\xfb\x0b\x72\x5d\xf9\x7a\xeb\x2f\xe5\x9b\xad\x5f\xa4\xda\xc4\x9f\x2d\x12\x69\x58\x87\xe0\x0f\x0d\x8f\x46\x6b\xc3\x72\x14\x38\xde\xbe\x98\xae\x2e\x89\xfd\x6a\xd0\x24\x15\x68\xf2\x07\x70\x04\x3f\xe1\x47\x9c\x49\x4c\x14\xbb\x73\x07\x2f\x15\xb8\x5d\x77\x62\xde\x09\xf8\x2c\xbe\x27\x1a\xd3\xdf\xcb\x04\x8d\xda\x1f\x55\xc0\x1c\xeb\x88\x90\x26\x0e\x86\xa0\xb4\x31\xce\x45\x74\x83\xf7\x77\xf8\x59\x24\xe4\x75\xa0\xc1\x85\x8a\x54\xe8\x61\x69\x06\x3e\x16\xf0\x0a\xc1\xef\x78\xb5\xd9\x08\x7a\x60\xd8\xbd\x91\xbc\xb1\x56\xa2\xb1\x4c\x96\xe6\x45\x3f\x35\xaf\x31\x5c\x1f\xb3\x9d\x07\x3e\x89\xfa\x23\x81\x7e\x3f\xf7\xbd\xdf\xb1\x55\xed\x66\xb3\xea\xff\x1e\xa8\x8a\x45\xeb\x18\xe3\x73\xd7\xf5\xf4\xe7\xef\xfd\xdf\xb1\x4c\x0b\x74\x84\x55\x72\xab\x7b\x32\x5b\x83\x53\xee\x45\x83\x43\xb2\x97\xbb\x6f\x3d\x9c\x3f\xe6\x74\x69\x62\x5d\xfb\xfe\xaa\x38\xad\x5f\x0b\xb8\xd9\x6d\xf4\x77\xf8\x09\x7e\x40\xf0\x83\x3f\x67\x73\x79\x23\x22\xf8\x93\xdd\xfa\x7d\xf7\x6e\xde\xaf\x05\xfc\x84\xe0\x87\x3f\xfd\x48\x90\xd2\xd3\x6e\xab\x64\xad\x57\x0b\x6a\x3a\x5c\x73\x36\xd4\x64\x5d\xc1\xe5\x85\xa2\x88\x65\xf6\x23\x2a\x75\x7d\xc3\x1e\x5b\x09\xeb\xf0\x49\xbd\xcb\x7c\xdf\x3b\x15\x82\xff\xb0\xb1\xa9\x81\x65\xd9\xe1\x46\x0c\x9a\x4b\xe6\xa5\x24\xfc\xad\xea\x7b\x2f\xa7\x75\x7f\x55\x16\x1f\x64\x34\x2c\xfe\x89\x64\xfb\xcc\x25\xcb\x26\x3b\x94\x02\xec\xfe\x4b\x0e\x5a\x39\x52\xb7\x86\x7d\xbc\x35\xec\xe3\x3d\xef\x3a\xd8\x93\x63\x4d\x5a\x9d\x29\xd7\x54\x24\x58\x2b\xa0\x1b\xd3\xaf\xde\x7c\xd5\xca\x59\x9a\xc4\xad\xca\x61\x5a\x39\x5c\x5d\x06\xd9\xb6\x24\x69\x32\x0f\x1c\xdd\x2f\x39\x73\x05\x68\x6a\x55\xf7\xfd\xde\x3b\x35\xbd\x57\x07\x43\xbd\xd3\x02\x14\xb9\x7a\xc4\x73\x4b\xff\xb6\x43\xbd\x66\x7c\x7c\x70\x82\x65\xf1\x3f\xcf\x1d\x6f\x91\xd9\x12\x30\xda\x96\xee\xb9\xc8\xa1\x71\x6e\xbd\xc5\x1b\x9b\xed\x4d\xf0\xc6\x63\xc9\x1b\x9f\xfe\x07\x9e\x55\x39\x41\xd5\xd3\x28\xd1\x83\xba\xa3\xc3\x56\xef\x30\x3a\xf4\x0f\x7b\xad\x6e\xeb\xb8\xd3\xf3\x9f\xbd\x68\x1d\x77\x8e\x73\xf9\xd5\x39\x56\x7f\x2d\x15\x68\xa9\x8f\x96\xf8\x38\xfe\x36\xeb\xb6\x0e\xa3\xce\xa1\x7f\xfa\xac\xd5\xed\x3c\x6f\xf5\xfc\xa3\xe3\xce\xf3\xd6\xf1\xf2\x70\xda\x3b\x5d\x76\x0e\xa3\xae\x48\x3b\xed\x9c\xf8\x47\x47\x9d\xe3\xce\xf3\xce\xb1\xd2\x25\x7d\x22\x59\xce\xa8\x63\x2c\x2f\x1e\xc7\x6a\x73\xf5\x3e\x88\x61\x89\xa3\x07\xec\x27\x0c\xef\xbb\x65\x43\x21\xf6\x15\xad\xd8\x99\x4d\x14\xdb\x3b\xd3\xda\x98\x5c\x3d\x14\x99\x45\xca\x5b\x5e\x16\x5d\x11\x2e\xd9\x70\xf3\xb4\x63\xdd\x5d\x9e\x7e\x6c\x4e\x3a\xcc\xdb\xe5\x25\xf9\xf7\xf2\x8b\xa6\x3b\x5a\x27\x23\x7f\xb3\x48\xfd\xbf\x92\x6f\x84\x58\xef\x3a\xae\x94\xd7\xdc\xcb\x86\x1b\x80\x6a\x04\xb4\x1a\x01\x53\x0c\x50\x75\x13\x2a\xc3\x4c\x39\x85\x65\x83\xde\xb0\x52\xf4\x34\x5f\xd8\x4b\xc6\x1e\xdf\x6c\x28\x5a\x87\x9e\xb9\x4c\x41\x70\xbb\xab\x1d\xc4\x5c\xcc\xc2\x09\xa9\xde\x2b\xc8\xb3\x08\x73\x60\xba\x65\x4c\x81\xf9\x8c\xa6\x2c\x8c\xed\x7b\x3c\xc4\x75\x43\xcf\x11\xb1\x24\x76\x90\x7c\x7c\x97\x92\x2c\x63\xd9\x6e\x26\x19\x2d\xf2\xd8\x29\xb8\xdd\x2b\xb4\x2f\x1f\x7d\xdf\x70\x9d\x67\x51\x30\x05\xd5\x6a\x30\x2a\x10\x9c\xe3\xe9\x66\x33\x82\x5b\xc1\x57\xe8\x5a\xda\x18\x5f\x9a\x9e\xae\xb0\x90\xff\xb6\x0f\x22\x66\x93\xed\x63\x88\x94\x07\x14\xea\x95\xcb\x73\xd4\xbc\x76\xf8\x10\x09\x54\x2a\x60\x8c\x94\x29\x73\x1b\xe7\xfd\x3c\x38\x77\x5d\xaa\x5e\x5c\xde\x6e\x28\xb5\x2d\x39\x22\x7f\x6c\xfc\x17\xef\x72\x14\xf3\xc7\xf0\x27\x46\xb1\xe6\xe7\x77\x39\x27\x33\x88\x06\x93\x21\x2c\xa0\x7d\xeb\xba\x91\xd2\x7d\xea\x57\x66\xed\x07\x45\x56\xdf\xc9\x48\x34\x71\x02\xf7\x1c\x02\x1b\x06\x62\x9b\xe1\xb0\x8d\x4e\xcc\x53\x46\x9a\x77\x38\xee\x9a\x73\x8a\xe3\xee\x63\x4c\x55\x1f\xb0\x53\xa9\x1b\xa6\xf6\xee\xb7\x54\x31\x46\xa1\x8b\x9c\x64\x57\x92\x6e\x97\x36\xe3\x36\x00\x77\xd5\x20\xd5\x3e\x61\x0e\x93\x77\x8d\x32\x53\x69\x1d\x8d\x31\xb6\xb4\x6c\x77\x73\xd2\xdf\x32\x14\x3d\xee\x76\x87\xc1\x56\xdc\x69\xb7\x3b\xac\xde\x39\x2c\x40\x56\x2b\xb6\x94\x07\x2d\x81\x0b\xc8\xff\x58\x84\x19\xd9\xca\xda\x2d\x20\x99\x4d\xb6\x0e\xf3\xb7\x8e\x87\x76\x4d\x84\x98\x44\x91\xb7\x89\x98\x40\xb9\xeb\x96\x4f\xe6\xd8\x66\x2a\xa2\xe0\x05\x8d\xc5\x3c\xf7\xc8\x71\x01\x06\xaf\xcb\xd6\x9e\x9d\x58\x8d\x89\xc0\xd6\xc6\x58\x3d\x4e\xb5\x40\x05\x9c\x3e\xf2\x6d\xaa\x13\xe5\x6f\xb2\x6e\xd2\xb7\x2e\x14\x72\x67\x05\x9c\x7e\x9f\xe6\xe9\x44\xee\xae\x3e\xf5\x32\xf5\xcc\xcc\x73\xb1\xaf\xd6\xb6\xd9\x48\x6f\xb3\xa9\xb6\x07\x5c\xe0\xec\x7b\x7c\xbb\x25\xd6\xb6\x15\x35\x3c\xdc\x97\xb2\x6c\xeb\xd1\x3e\x73\xe4\xa7\x5f\xee\xab\x76\xb6\x71\x95\x6d\xde\x97\xcf\xac\x06\xea\x09\x3f\xb3\x36\xb6\xfc\x47\x95\xf6\x83\xca\x81\xd4\x94\xcf\x52\x89\xa3\xda\x25\x2c\x4f\xc9\xcb\x28\x22\x79\x2e\xb5\x4d\xfa\x7d\xd6\xfa\x43\xc8\xd2\x4e\xec\xf0\xb8\x75\x78\xec\xc8\x07\x91\x6d\x3a\xf4\xc8\xc7\xff\xd4\x69\x85\xbd\xf1\x99\xde\x3a\xe0\x94\x5d\x32\x3e\x02\x54\x87\xc4\xde\xa7\xba\x63\x19\x0b\x66\xdb\xc6\x82\x0f\x10\xcb\x5c\x71\x41\x8a\x58\xd6\xde\xd4\x8d\x5d\x37\xd9\x73\x2c\x21\xa5\xfe\x18\xa1\x61\xcd\xb6\x70\x2a\x0b\x94\xfd\x6e\x2a\x33\x45\x68\x88\x94\x04\x20\x18\xf4\xc0\x19\x87\x69\x4e\x9c\xf2\xd9\x5b\xf3\xec\xd4\x08\xd4\xfd\x23\x4d\x82\x82\xf6\x72\xb3\xd1\x07\xf4\xea\xb0\xbe\x2f\xf7\x25\x73\x68\xaf\x29\xf8\x0a\x01\x85\x65\x7f\x1b\x04\xc6\xaf\x82\xe4\x0d\x96\xfa\x62\x8d\x20\xf4\x0b\xa3\x0f\xc1\xce\xd5\x72\x22\x8f\x81\xb4\xb1\xab\xcd\x22\xee\x27\xff\x3b\x84\xb1\xd1\x56\x5e\x06\x9a\xdf\xa5\xd5\x2f\xdf\xd6\x0d\xd4\x6b\xbb\xc0\xc3\x76\x87\x0f\xca\x14\xa2\x8d\x47\xcb\x11\x59\x81\xfe\xb3\x8f\xd6\xca\x74\x23\x1e\xdc\x6b\x02\xa9\xf3\x9e\x0b\x36\x65\x37\xab\xe4\x5e\xec\x3a\xdf\x94\x32\xdf\x43\x5a\xf9\x12\xa8\xa5\xa5\x5e\x09\x65\xcb\x58\xcf\xc4\x69\xe3\xb0\x07\x37\xd6\xaa\xc4\xfb\x30\x9b\x90\x87\x4a\x1c\x9d\xa0\x2d\x42\x6f\x50\x50\x52\xfa\xca\xab\xcf\xdc\xa6\x98\x75\x9f\xc8\x25\x8f\xba\xed\x79\x3e\xde\x55\x95\xd0\x02\x38\x02\x82\x8a\xea\x25\x28\x83\xfc\xb1\xf9\x02\x51\xd3\x8c\xcc\x98\x27\x3e\x2c\xea\x4d\x11\x2a\xa8\x1f\x7b\x1c\x9c\xd0\x69\x72\xed\x36\x97\xef\x7a\xbc\xe8\x3e\x6e\x53\xe9\x1d\x1d\x59\x03\xcc\x6a\x1e\x19\xed\xc5\x96\x8c\x3d\xa9\x1f\xf5\x93\xdc\x78\x7d\x2c\xdd\xbb\x15\x1e\x41\x9b\xcd\xae\x77\xb8\x26\x57\x88\x57\x77\xb3\x11\x4b\x5d\x57\xfd\xfa\x09\x27\x59\xc8\x59\xd6\x4a\xca\x3b\xa1\x04\x19\x08\x0f\x86\xc0\x04\x23\x9f\xe1\x76\xaf\xf4\x28\x7a\xc6\xb3\xbb\xd2\x2d\x64\x28\x04\xae\xc1\x56\x5d\x43\x0f\x9d\xb5\x3d\x86\xbd\x10\xab\x37\x1f\x3c\x84\xfc\x58\xc8\xcd\xf2\xba\xfc\x7c\x91\x4f\xbd\x50\x59\xac\x21\x68\x0b\xd1\x41\xab\x77\x45\x2f\xd1\x99\x68\x12\x9d\x15\x51\xc8\xa3\xa9\x17\xa1\x75\x26\xba\x90\xe0\xa8\x18\x27\x34\x4c\xd3\xbb\xb5\xe8\x00\xdb\x6c\x94\x17\x92\xdc\x57\x50\xd8\x6c\xcc\x97\x87\xca\x9c\xc9\xd8\xcb\x10\x9f\x66\xec\xb6\x95\x14\xe6\xb5\x75\x5a\x14\x12\x44\x9b\x8d\x8d\x18\x2a\xa6\xf6\xb4\x95\x28\x26\x24\x98\xeb\xbb\x39\x91\x2b\xcf\x73\x2e\xe8\x32\x4c\x93\xb8\x15\x72\x4e\x66\x73\xde\xe2\xac\x25\xfd\x8e\x2d\x22\xbe\xc8\x48\x8b\x32\xda\x91\x50\x18\xa5\xa4\x95\xd0\x9c\x87\x34\x22\xfe\x6f\xf4\x82\xb6\x24\x8f\x25\xf2\x8f\x48\xcb\x64\x01\x59\x40\x3e\x5a\xdc\x52\x1c\x54\xde\x9a\x2d\x72\xde\x9a\x86\x4b\xd2\x0a\x5b\x0d\x80\x6d\xcd\x08\x9f\xb2\xd8\x77\x50\xe1\x3d\x80\x87\x99\xc0\xc3\x62\x88\xce\xfe\xcf\xd3\xa7\xff\xd5\xca\xd9\x22\x8b\xc8\x87\x70\x3e\x4f\xe8\xe4\xe7\xcf\xef\x71\xaf\xeb\x1f\x85\xe3\x67\x87\x87\x47\x82\xf5\x58\xd0\x1b\xff\x6b\xee\xcf\xc2\xf9\xff\x2f\x00\x00\xff\xff\x1c\xa4\x3a\x6a\x76\xd7\x00\x00") -// FileIdentifierStaticJs10Eee7136aChunkJsLICENSETxt is "identifier/static/js/10.eee7136a.chunk.js.LICENSE.txt" -var FileIdentifierStaticJs10Eee7136aChunkJsLICENSETxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x52\xcd\x72\xdb\x36\x10\xbe\xe7\x29\xbe\xfa\x94\x78\x58\xbb\xee\x21\x87\x9e\x0a\x4b\x90\x85\x09\x05\x68\x48\x28\xae\x7b\x83\xc8\x95\x89\x96\x26\x38\x00\x64\x8f\xde\xbe\xb3\x90\x9c\x8c\x7b\x92\xb4\xd8\xef\x77\x75\x7b\x7d\xfd\xcb\x27\x5c\xe3\xcf\x83\x1f\xc9\xbc\x52\x7c\xf5\xf4\x86\x6f\xbe\xfb\xd7\xa5\x84\xd1\xef\xa3\x8b\x27\xe4\x80\x2e\x92\xcb\x04\x37\xf5\x98\x47\xd7\x11\xe6\x30\xcf\x14\x13\x26\x72\x11\x79\x20\x1f\x11\xe9\x40\x91\xa6\x8e\x40\x23\xbd\xd0\x94\xd3\x4d\xe1\x7e\xa5\x98\x7c\x98\x70\x77\x73\xf7\xf5\xe6\xee\xd7\x31\xa7\x32\x1e\x7d\x47\x53\x22\xfe\xbe\x08\xf3\x29\xfa\xe7\x21\xe3\x73\xf7\x05\xbf\xff\x76\xf7\x15\x2b\xea\x29\xfa\x2e\xe0\x6f\xff\x1a\xc6\x50\x94\xbb\x30\xe5\xe8\xf7\xc7\x1c\x22\x53\x30\x72\x4b\xf1\xc5\xa7\x42\xef\x13\x06\x8a\xb4\x3f\xe1\x39\xba\x29\x53\x5f\xe1\x10\x89\x10\x0e\xe8\x06\x17\x9f\xa9\xe2\x20\x6e\x3a\x81\x8d\x87\x09\x61\x9f\x9d\x9f\xfc\xf4\x0c\x87\x2e\xcc\x27\xe6\x0b\x07\xe4\xc1\x27\xa4\x70\xc8\x6f\x2e\x9e\x13\xbb\x94\x42\xe7\x5d\xa6\x1e\x7d\xe8\x8e\x1c\xcd\x65\x96\xe4\xd6\x12\x3e\xe7\x81\x70\xd5\x5e\x10\x57\x5f\x8a\x4e\x4f\x6e\x64\x42\x3f\x71\x3b\x78\x7f\xc5\x9b\xcf\x43\x38\x66\x44\x4a\x39\xfa\x8e\x69\x2a\xf8\xa9\x1b\x8f\x3d\x3b\x79\x7f\x1e\xfd\x8b\xbf\x88\x30\xbc\x94\x53\x6a\xcb\x01\xc7\x44\x55\x31\x5c\xe1\x25\xf4\xfe\xc0\x9f\x54\xf2\xcd\xc7\xfd\xe8\xd3\x50\xa1\xf7\xe9\xdc\x14\x55\x48\x3c\x2c\x55\x57\x9c\xe6\x36\x44\x24\x1a\x8b\xb9\x2e\xcc\x9e\xd2\x39\xf4\x4f\x8f\x65\x8d\x85\x66\x2e\x37\x5f\xea\x4a\x3c\x79\x1b\xc2\xcb\xc7\x3c\xbe\xb8\x3a\x1c\xe3\xe4\xd3\x40\x05\xd6\x07\xa4\x50\x74\xff\xa1\x2e\xf3\x84\x11\x87\x30\x8e\xe1\x8d\x33\x76\x61\xea\x3d\x47\x4b\x7f\x5c\xae\x68\x07\x82\xdb\x87\x57\x2a\xb1\xce\xff\x84\x29\x64\xdf\x9d\xfb\x2f\x17\x99\x7f\x5e\xfa\xf2\x94\x06\x37\x8e\xd8\xd3\xa5\x3e\xea\xb9\x6c\xf7\x31\x59\x64\x1b\x29\xbb\x29\x7b\x37\x62\x0e\xb1\xe8\xfe\x3f\xf1\xcd\xbb\x8f\xb5\x44\x6b\x56\xf6\x51\x34\x12\xaa\xc5\xb6\x31\xdf\xd5\x52\x2e\x71\x25\x5a\xa8\xf6\xaa\xc2\xa3\xb2\x6b\xb3\xb3\x78\x14\x4d\x23\xb4\x7d\x82\x59\x41\xe8\x27\x7c\x53\x7a\x59\x41\xfe\xb5\x6d\x64\xdb\xc2\x34\xcc\xa6\x36\xdb\x5a\xc9\x65\x05\xa5\x17\xf5\x6e\xa9\xf4\x03\xee\x77\x16\xda\x58\xd4\x6a\xa3\xac\x5c\xc2\x9a\xa2\x79\x61\x53\xb2\x65\xbe\x8d\x6c\x16\x6b\xa1\xad\xb8\x57\xb5\xb2\x4f\x15\x73\xad\x94\xd5\xcc\xbc\x32\x0d\x04\xb6\xa2\xb1\x6a\xb1\xab\x45\x83\xed\xae\xd9\x9a\x56\x42\xe8\x25\xb4\xd1\x4a\xaf\x1a\xa5\x1f\xe4\x46\x6a\x7b\x03\xa5\xa1\x0d\xe4\x77\xa9\x2d\xda\xb5\xa8\x6b\x56\x63\x3a\xb1\xb3\x6b\xd3\xb0\x51\x2c\xcc\xf6\xa9\x51\x0f\x6b\x8b\xb5\xa9\x97\xb2\x69\x71\x2f\x51\x2b\x71\x5f\xcb\xb3\x9a\x7e\xc2\xa2\x16\x6a\x53\x61\x29\x36\xe2\x41\x16\x94\xb1\x6b\x59\x42\xf2\xe6\xd9\x26\x1e\xd7\x92\xa7\xac\x2a\x34\xc4\xc2\x2a\xa3\x39\xcf\xc2\x68\xdb\x88\x85\xad\x60\x4d\x63\x7f\xa0\x1f\x55\x2b\x2b\x88\x46\xb5\xdc\xcc\xaa\x31\x9b\x92\x94\xdb\x35\x2b\xde\x52\x9a\xa1\x5a\x9e\x89\xb8\xf9\x8f\x07\x32\x4d\xf9\xbd\x6b\xe5\x0f\x4e\x2c\xa5\xa8\x95\x7e\x68\x19\x7c\xc9\xfa\xbe\xcf\x47\xbe\xfd\xf4\x5f\x00\x00\x00\xff\xff\x46\x3c\xf0\x02\xf2\x04\x00\x00") +// FileIdentifierStaticJs103af7223eChunkJsLICENSETxt is "identifier/static/js/10.3af7223e.chunk.js.LICENSE.txt" +var FileIdentifierStaticJs103af7223eChunkJsLICENSETxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x52\xcd\x72\xdb\x36\x10\xbe\xe7\x29\xbe\xfa\x94\x78\x58\xbb\xee\x21\x87\x9e\x0a\x4b\x90\x85\x09\x05\x68\x48\x28\xae\x7b\x83\xc8\x95\x89\x96\x26\x38\x00\x64\x8f\xde\xbe\xb3\x90\x9c\x8c\x7b\x92\xb4\xd8\xef\x77\x75\x7b\x7d\xfd\xcb\x27\x5c\xe3\xcf\x83\x1f\xc9\xbc\x52\x7c\xf5\xf4\x86\x6f\xbe\xfb\xd7\xa5\x84\xd1\xef\xa3\x8b\x27\xe4\x80\x2e\x92\xcb\x04\x37\xf5\x98\x47\xd7\x11\xe6\x30\xcf\x14\x13\x26\x72\x11\x79\x20\x1f\x11\xe9\x40\x91\xa6\x8e\x40\x23\xbd\xd0\x94\xd3\x4d\xe1\x7e\xa5\x98\x7c\x98\x70\x77\x73\xf7\xf5\xe6\xee\xd7\x31\xa7\x32\x1e\x7d\x47\x53\x22\xfe\xbe\x08\xf3\x29\xfa\xe7\x21\xe3\x73\xf7\x05\xbf\xff\x76\xf7\x15\x2b\xea\x29\xfa\x2e\xe0\x6f\xff\x1a\xc6\x50\x94\xbb\x30\xe5\xe8\xf7\xc7\x1c\x22\x53\x30\x72\x4b\xf1\xc5\xa7\x42\xef\x13\x06\x8a\xb4\x3f\xe1\x39\xba\x29\x53\x5f\xe1\x10\x89\x10\x0e\xe8\x06\x17\x9f\xa9\xe2\x20\x6e\x3a\x81\x8d\x87\x09\x61\x9f\x9d\x9f\xfc\xf4\x0c\x87\x2e\xcc\x27\xe6\x0b\x07\xe4\xc1\x27\xa4\x70\xc8\x6f\x2e\x9e\x13\xbb\x94\x42\xe7\x5d\xa6\x1e\x7d\xe8\x8e\x1c\xcd\x65\x96\xe4\xd6\x12\x3e\xe7\x81\x70\xd5\x5e\x10\x57\x5f\x8a\x4e\x4f\x6e\x64\x42\x3f\x71\x3b\x78\x7f\xc5\x9b\xcf\x43\x38\x66\x44\x4a\x39\xfa\x8e\x69\x2a\xf8\xa9\x1b\x8f\x3d\x3b\x79\x7f\x1e\xfd\x8b\xbf\x88\x30\xbc\x94\x53\x6a\xcb\x01\xc7\x44\x55\x31\x5c\xe1\x25\xf4\xfe\xc0\x9f\x54\xf2\xcd\xc7\xfd\xe8\xd3\x50\xa1\xf7\xe9\xdc\x14\x55\x48\x3c\x2c\x55\x57\x9c\xe6\x36\x44\x24\x1a\x8b\xb9\x2e\xcc\x9e\xd2\x39\xf4\x4f\x8f\x65\x8d\x85\x66\x2e\x37\x5f\xea\x4a\x3c\x79\x1b\xc2\xcb\xc7\x3c\xbe\xb8\x3a\x1c\xe3\xe4\xd3\x40\x05\xd6\x07\xa4\x50\x74\xff\xa1\x2e\xf3\x84\x11\x87\x30\x8e\xe1\x8d\x33\x76\x61\xea\x3d\x47\x4b\x7f\x5c\xae\x68\x07\x82\xdb\x87\x57\x2a\xb1\xce\xff\x84\x29\x64\xdf\x9d\xfb\x2f\x17\x99\x7f\x5e\xfa\xf2\x94\x06\x37\x8e\xd8\xd3\xa5\x3e\xea\xb9\x6c\xf7\x31\x59\x64\x1b\x29\xbb\x29\x7b\x37\x62\x0e\xb1\xe8\xfe\x3f\xf1\xcd\xbb\x8f\xb5\x44\x6b\x56\xf6\x51\x34\x12\xaa\xc5\xb6\x31\xdf\xd5\x52\x2e\x71\x25\x5a\xa8\xf6\xaa\xc2\xa3\xb2\x6b\xb3\xb3\x78\x14\x4d\x23\xb4\x7d\x82\x59\x41\xe8\x27\x7c\x53\x7a\x59\x41\xfe\xb5\x6d\x64\xdb\xc2\x34\xcc\xa6\x36\xdb\x5a\xc9\x65\x05\xa5\x17\xf5\x6e\xa9\xf4\x03\xee\x77\x16\xda\x58\xd4\x6a\xa3\xac\x5c\xc2\x9a\xa2\x79\x61\x53\xb2\x65\xbe\x8d\x6c\x16\x6b\xa1\xad\xb8\x57\xb5\xb2\x4f\x15\x73\xad\x94\xd5\xcc\xbc\x32\x0d\x04\xb6\xa2\xb1\x6a\xb1\xab\x45\x83\xed\xae\xd9\x9a\x56\x42\xe8\x25\xb4\xd1\x4a\xaf\x1a\xa5\x1f\xe4\x46\x6a\x7b\x03\xa5\xa1\x0d\xe4\x77\xa9\x2d\xda\xb5\xa8\x6b\x56\x63\x3a\xb1\xb3\x6b\xd3\xb0\x51\x2c\xcc\xf6\xa9\x51\x0f\x6b\x8b\xb5\xa9\x97\xb2\x69\x71\x2f\x51\x2b\x71\x5f\xcb\xb3\x9a\x7e\xc2\xa2\x16\x6a\x53\x61\x29\x36\xe2\x41\x16\x94\xb1\x6b\x59\x42\xf2\xe6\xd9\x26\x1e\xd7\x92\xa7\xac\x2a\x34\xc4\xc2\x2a\xa3\x39\xcf\xc2\x68\xdb\x88\x85\xad\x60\x4d\x63\x7f\xa0\x1f\x55\x2b\x2b\x88\x46\xb5\xdc\xcc\xaa\x31\x9b\x92\x94\xdb\x35\x2b\xde\x52\x9a\xa1\x5a\x9e\x89\xb8\xf9\x8f\x07\x32\x4d\xf9\xbd\x6b\xe5\x0f\x4e\x2c\xa5\xa8\x95\x7e\x68\x19\x7c\xc9\xfa\xbe\xcf\x47\xbe\xfd\xf4\x5f\x00\x00\x00\xff\xff\x46\x3c\xf0\x02\xf2\x04\x00\x00") -// FileIdentifierStaticJs10Eee7136aChunkJsMap is "identifier/static/js/10.eee7136a.chunk.js.map" -var FileIdentifierStaticJs10Eee7136aChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\xfd\x6b\x73\xea\x3c\x93\x3f\x0a\x7f\x97\xd4\xbc\x8b\x67\x72\x3e\xcd\xf3\xe6\x91\x64\x63\x0c\x71\x1c\x02\x84\x90\x5d\xff\xba\xca\x01\x07\x0c\xc6\x26\xb6\x21\x24\xfb\xcb\xef\xea\x5f\x4b\xb6\x49\xb2\xd6\xb5\xae\xfb\x9e\xd9\x6f\x76\xd5\xaa\x15\x2c\xeb\xac\x56\xf7\xaf\x0f\x92\xff\xef\x83\x6d\x94\x17\x71\x96\x1e\xfc\xf7\x99\x75\x50\x64\x9b\x7c\x12\x15\x07\xff\xfd\x7f\x1d\xfc\xd7\x7f\x1d\xfd\xd7\x7f\x1d\xa5\xd9\x34\xfa\x6b\x95\x4d\x37\x49\x54\x1c\xe5\x51\x38\x29\xff\x33\x4e\xcb\xe4\x28\x89\x5f\x8e\x8a\x7c\x72\x34\xc9\x56\xeb\x2c\x8d\xd2\xb2\x38\xda\x14\x91\x97\x96\xc9\x7f\x2d\x8a\x03\xeb\xa7\xd2\xff\xff\x55\x58\x46\x79\x1c\x26\xff\xb9\x89\x8f\x26\x59\x1e\x1d\x4d\xb2\x24\xcb\x8b\xa3\x59\x1e\x45\xe9\x3f\x28\x16\x15\xab\xa3\x4d\x19\x27\x68\x52\x65\x69\x99\x67\x49\x12\x4d\x9b\x35\xf0\x3f\xea\x20\x67\x8c\x0b\x99\x67\xef\x45\x94\xff\x2e\xd3\x34\x7a\xc9\x36\xe9\x24\xfa\x7d\x45\xad\x4d\x3a\x29\xe3\x2c\xfd\x5d\xae\x59\x54\xf6\xcb\x8f\x24\x52\xd9\x6a\xbd\x29\xa3\xe9\x7d\x9e\xad\xa3\xbc\xfc\xf8\x9b\x32\xf7\x61\x1e\xa5\xe5\x5d\x36\xfd\x6d\x17\xa8\xf2\x09\x0d\x99\xb3\xff\x4d\xd6\x87\xe8\x35\xca\xa3\x74\x12\xfd\x5d\xb5\x71\xe1\x39\x7f\x53\x57\xf0\xfa\x5a\x98\x5e\xfe\x5d\xb3\x59\xf6\xdb\x2c\xaf\x71\x3a\x55\xd9\x6a\x95\xa5\x7f\x5a\x69\x5c\x70\x4e\x5a\xf0\x30\x4e\x7f\xbf\x94\xd5\x1c\xfd\xb6\xc6\x74\x92\x6c\xa6\xd1\xdf\x67\x9c\x45\xa5\xcc\xf2\x69\x94\x17\xfd\xf8\xf3\xef\xd6\x66\x14\xa7\xd3\xec\x9d\x32\x16\x7f\x93\x53\x25\x71\x94\x96\x0f\xd1\xe4\xef\x26\x53\x66\x9b\x74\x1a\xa7\xb3\x3f\x2e\xc0\x33\x45\x19\x1f\xa2\x24\x2c\xe3\x6d\x34\xc8\x44\xfe\x12\x97\x79\x98\x7f\xfc\x01\x7d\x3d\xc6\xd1\xfb\x3a\xcb\x7f\x51\x4f\xf9\x87\x15\xc5\x45\x2b\xde\xfd\x7e\x5f\xce\xa2\x12\x79\xee\xb3\x22\xa6\x4d\xf5\x0f\x28\x0c\x93\x12\xe6\xf1\xef\xa7\x79\xc2\x3b\x50\x6c\xca\xec\x3e\x09\x27\xd1\xea\x1f\xec\x18\xee\xcc\xdf\xad\x62\xb0\x29\xa3\xfc\x4f\x96\x3b\x58\xaf\x69\x94\xd1\x9f\xf6\xe3\x3e\x5b\xaf\xa3\xfc\x0f\x3a\x41\x7b\xe9\x77\xef\xf3\x4d\xea\x67\xd3\xf8\x35\x8e\xf2\xbf\xad\xc7\x4b\xa7\xd1\xee\xe7\x4c\xab\xa8\x9c\x67\xd3\xe2\x68\xb3\x9e\x86\xe5\xdf\x2c\xbc\x69\xcf\x49\xc3\x97\xbf\x61\xcd\xb4\x55\x37\x6b\xa2\xb6\x9a\x4f\xde\x85\xab\x5f\x34\x60\x3a\x31\x8d\x8a\x32\xcf\xfe\x8e\xa1\xf2\x5e\xfc\x5d\xa6\x22\x2a\x37\x6b\x67\x1b\xa5\xe5\x6d\x5c\x94\x51\xfa\xcb\x29\x32\x0d\x47\x18\xd1\x3f\x29\x31\x8d\x8b\x3f\x2d\xa2\xd7\x2b\x5a\x65\xdb\x7f\x90\x3f\x2e\xee\x36\xab\x28\x8f\x27\x7f\x33\x50\x88\xa4\x5f\x75\xd6\x10\x88\xd9\x31\xc8\xfc\x67\x8b\xfc\x10\xbd\x6d\xe2\xfc\x57\xab\x6c\xa6\x61\x6d\xc8\xfe\xf7\xfb\x35\xc9\x26\xcb\xf7\xb8\xf8\xd5\xf2\x57\xdd\x7c\x4d\xe2\xf5\xdf\xe5\xc9\xb0\x77\xfe\x2e\x57\xfc\xf7\x24\x3f\x8d\x5e\xc3\x4d\xf2\xab\x9e\xd7\x55\x15\xf3\xf8\xf5\x6f\xdb\x5b\xe7\x11\x2d\x6d\xb0\x8d\xf2\xd7\xe4\x57\xd4\x59\x67\x5f\x46\xd1\x7a\x90\xcd\xa2\x72\xfe\x2b\x91\x57\xe7\x0d\xf3\xfc\xf7\xe4\xde\x60\x43\x8f\x61\x1e\x87\xbf\x06\x32\xcd\xf9\xf9\xa5\xb0\xad\x33\xcd\xe3\xbf\x15\x2a\x0f\xc4\xb0\xa3\xe9\x6f\x19\x5a\x63\x28\xeb\x75\xf2\xf1\xb7\x44\x58\x44\xa5\x28\xcb\x3c\x7e\xd9\x94\xbf\xa2\xec\x6f\xcb\xfb\x07\xe8\x52\xc5\xf9\x64\x93\x84\xf9\x7d\x9e\xcd\xf2\xa8\x28\xbe\x25\xfc\xc3\xfa\x68\x1b\xe3\xbf\x7f\xa1\x9c\x57\x46\x2b\xb1\x0d\xcb\x30\xff\xf2\xf8\x2f\xd6\x35\x88\x76\xe5\xde\xc3\x2f\xeb\x61\xb8\x5f\xe6\x61\xca\xc2\xf9\x3f\x67\x79\xb6\x59\xa3\xb2\x49\x96\xbe\xc6\xb3\x7f\xa5\xe4\xa0\x4a\xfc\x87\xfd\xaf\x6b\x2b\x78\xf1\xff\x61\x79\x37\xcf\xde\xf1\xdf\x3f\x2c\x77\x9f\xe5\x65\x98\xe8\x3f\xff\x92\x96\x32\xc9\xa3\xb0\x8c\xd4\x9c\x50\xeb\xf4\x27\xf5\xe1\x8f\x7a\x41\x60\x40\xff\xf9\x87\x65\x07\x59\x96\x94\xf1\xda\xfc\xfd\xd7\x34\xad\xb4\x28\x49\x8a\xfd\x45\x5a\xde\xf4\x1f\x56\xd1\xca\xf2\x95\xd6\xd3\x9a\xbf\xe9\xcf\xef\xe8\xef\xe7\xca\xbc\x49\x96\xca\x4d\x59\x66\x69\xe3\xe7\x3f\xac\x23\x4e\xcb\x28\x4f\xc3\xe4\xa8\xff\x1e\x97\x93\xb9\x0c\xf7\xe5\xcd\x3f\x1c\xd2\xa6\x88\x1a\x8f\xff\x6a\x57\x8a\xed\xec\x3f\xe3\x09\x51\xb7\x9a\x47\x93\xa5\xcc\x76\xc1\xa6\x4c\xe2\x34\x92\x49\x98\x2e\xff\xe7\x6a\xfd\xf7\x6b\x22\x8c\x58\x46\xf9\x2a\x4e\x41\xd6\xff\x52\xb5\x28\xf6\x92\xed\xaa\x1f\xff\x7e\xb7\xee\xa3\xbc\xf8\xc7\x94\xa0\x39\xeb\xbf\xc5\x51\xab\x1f\xff\xd2\xce\x8a\x0b\x7f\x13\x3b\xc9\x37\x8d\xe0\x9f\x88\x95\x7f\x6d\x27\xf5\xb7\x33\xda\x41\xe6\xef\xbf\xc1\xdb\xfe\x79\x0d\xfb\xaf\x5f\xc2\x97\x28\x21\x3d\xa5\x8c\x57\xd1\xd1\x3c\x4a\xd6\x04\x01\xa8\x95\x22\x89\x27\xd1\x94\xb4\xce\x3c\xfc\xf8\x5f\xa8\x3f\xa4\x7a\x47\x71\x39\x6f\x67\x5f\xb0\xf1\xff\x50\x03\x71\x19\xe5\xc4\x38\xf5\x10\x6e\xe3\x55\xfc\x4f\xd6\xe9\x4f\x9b\x49\xb3\xd4\xd3\x2d\x3d\x44\x8c\x33\xfe\x8f\x75\x90\x86\x2b\x36\xe6\x69\xdb\xdc\x81\x75\x10\xf3\x9f\x07\x92\xd0\x07\xd6\x81\xa6\x1c\xbc\xd8\x12\x22\x4c\x4b\xca\x58\x27\x07\x2f\x8b\x08\x39\xa7\xd1\x6b\x9c\x46\x46\x43\x3b\xb0\x0e\xa2\x1d\x29\x6d\x34\x92\x6d\x98\x6c\x22\xce\x42\x30\xf9\xc0\x3a\xf8\xab\xfe\x79\x71\x7c\x60\x1d\x9c\x1c\xd3\xff\xa7\xf8\xff\x0c\xff\x9f\xe3\xff\x0b\xfc\x7f\x89\xff\xaf\xf0\xff\x35\xfe\xbf\xc1\xff\x82\x8b\x09\x2e\x27\xb8\x88\xe0\x7c\x7b\xa6\x3f\x6a\x31\x8f\x5e\x0f\xac\x83\x49\x33\x4d\x77\x82\xfa\x4c\x03\x2c\xf6\x0a\xd0\xdc\x1c\x58\x07\x45\x19\x96\xf4\x97\xb0\x29\x0d\x90\x5e\x4d\x36\x79\x1e\xa5\x18\x07\xe6\xe9\x3f\x36\x45\xd4\xd7\xf9\x30\x56\xf3\x50\x44\xe5\xa3\x1e\x7b\x1a\xbd\x9b\x9f\xef\xd0\x3a\xa9\xfd\x6c\xb2\x59\x71\x45\x69\xb8\x8d\x67\x61\x99\xe5\x07\xd6\x01\x2d\x5e\xb6\x29\xed\x4d\x0e\xfc\x7d\x60\x1d\x24\x59\x3a\x8b\xf2\x01\xa7\x6b\x4b\x25\x4d\x6c\x8c\x6e\xeb\x84\x03\xeb\xe0\x95\x32\x4f\x42\x3d\x82\x62\x32\x8f\x88\x30\xa6\xc8\x65\x80\x05\x65\xd3\x3f\x07\x19\xb8\xeb\x81\x75\x30\x8b\xca\xc1\xc7\x3a\xe2\x5f\x3f\x9a\x26\x69\x41\x99\x09\x1d\x58\x07\xeb\x3a\x71\x52\x14\x5c\xaa\x36\x4e\xea\x5a\x1a\x36\xc8\x03\xeb\x20\xd3\xea\x4c\xe3\xe7\x53\xe3\xf7\x98\xc6\x1d\x15\x25\x97\xdd\x33\x4a\x1e\x58\x07\xb9\x79\xc6\x48\x3c\xe7\xe4\xc4\xfc\x38\xd6\x3f\x68\xe6\xb5\x9d\x1a\x35\x34\x0d\x45\x34\xbd\xd9\x97\x84\xec\xeb\xfb\x69\x74\xc7\x0b\x0e\x7d\x20\x78\xd5\x1d\xc9\x32\xf3\x9a\xe6\xed\x47\xa3\x64\x3d\x33\x27\xf5\xcf\x53\x6a\x23\x9f\x62\x55\xf4\x20\x8a\x32\xcc\x91\x39\xa5\x05\xc9\xc3\x74\x16\x81\x20\xa9\x3e\x91\x4e\xa2\xa2\xcc\xf2\xca\x78\x89\x61\x7d\x31\x68\x36\x1a\xca\xb9\x5f\xd5\x34\x53\xf5\x31\x5a\xd9\x10\x00\xec\xf3\xef\x79\xb9\xc2\x1b\x64\x89\xd3\x99\x53\x2d\xe0\x9e\x69\x13\x13\x8c\x3d\x5c\x6c\x5e\xca\x9c\x37\x3e\x17\x1a\x60\x67\xf0\xef\xdb\xe8\x95\x5e\x18\x15\x8c\x9b\x6f\xd8\x3d\x31\xc4\x8f\x24\x22\x7a\x08\x77\x71\xa1\xfb\x24\xf4\x5f\x49\x74\x13\xe6\x45\xd4\x4a\xb2\xd0\x74\x9e\x8b\xbd\x64\xd3\x0f\x9e\x0a\x90\x1c\xe8\xef\xc0\x3a\xf0\xc3\x72\x6e\x0a\x79\xa9\x2e\xd2\x30\x9f\x72\x82\xfa\x52\x6a\xcf\x70\x5a\xad\x34\x65\x9e\x47\xf1\x6c\x5e\x9a\x7e\x7f\x35\x99\x62\x16\x0a\xe6\x49\x25\x0f\x5b\x37\xf2\x1e\x4f\xd1\x91\x79\x96\xc7\x9f\x3c\x65\x2f\x61\xce\x14\x57\x36\x9f\xff\xc4\xb2\x4a\xe3\x9c\xc7\xc9\x34\x8f\x52\x1e\x1b\x2f\xc8\x6b\xd3\xca\x49\x5d\xd9\xa4\x1e\x93\x75\x5c\xb4\x07\xfe\x6d\xa3\x98\xee\x2c\x17\xd5\x0f\xc5\xfe\x66\x7b\xc1\xaa\x0c\xb2\xf5\x48\x77\x9d\x13\x68\x05\x4d\xca\x2a\xcc\x67\x71\xca\xeb\xcb\xbf\xf5\xfa\xfe\x23\xf3\x2e\xd8\xfc\x57\x52\xe2\xac\x5c\xb8\x5a\x00\xe6\x41\x34\xca\xaa\xef\x35\xaf\xf8\xa5\x8d\x17\x24\xdf\x58\x31\xd8\x73\x31\x9e\xc6\x43\xc2\x1d\xaf\xd3\x6a\x3a\xaf\xd3\x74\x63\x6b\x28\x48\xe8\xcc\x7d\x38\x25\x0a\xb8\xdb\xac\x5e\x90\xb2\xe6\x67\x6e\x4d\xe4\x51\x58\x93\xe4\x9e\x79\x98\xb2\x36\x7e\xd3\xd6\x29\x98\x47\xe9\xc5\x78\xc9\xca\x32\x5b\xd1\xaa\xc0\x68\x49\x55\x51\x86\x65\xf4\xa1\xff\x50\x1e\xda\x24\x58\xf7\xa4\x8c\xf2\x3a\x13\x3f\x37\x36\x43\xb3\xd9\xad\x31\xc9\x7c\xe1\x92\x41\x45\xe2\x93\x9f\xb8\xd3\x9e\x11\xfa\xc0\x3a\xd8\x1d\x58\x07\x1f\x3a\xfd\xab\xcd\x99\xc8\x3c\x2c\x88\x40\x72\xbd\x59\xf2\x08\xa3\x05\x99\x94\x24\x51\x34\xbb\x6f\x5a\x9f\x9b\x2c\xba\x4e\xe2\xb9\x36\xe4\xfa\x25\x7f\x5c\xb4\x69\x3b\xa1\xda\x38\xd5\x0c\xab\x88\x26\x19\xad\xd7\x87\x7e\x5e\x45\x61\xb1\xc9\x4d\xc7\xaa\xb7\xfe\x5e\x32\x71\x65\x9a\xcd\x1c\xd3\xa6\x05\x1a\xc0\x14\xef\xa3\xca\xb6\xdd\x60\x5e\xf4\x7b\x1a\x96\x21\xb3\xe3\x42\x8b\x34\x5d\x19\x6c\xdc\x2c\xe6\xcd\xa8\x89\x8c\x5f\x16\x60\xaf\x53\x16\xed\xe5\x1c\x1c\x2e\x5b\xc3\xe2\x40\x25\x93\x78\x8d\x71\x32\x15\x1b\x52\xff\x66\xeb\x6e\xf4\x42\x4b\x9c\x22\x5b\x19\x99\xf9\x93\xa1\x1b\x9d\x8b\x88\x41\x14\x86\xbf\x6b\xc4\xc2\xc9\xe0\x57\x46\x90\x6b\xbb\x77\x93\x57\x52\x2f\xdf\xd3\x28\xb7\x6b\xb4\xf1\x83\x55\x1b\x1b\xa0\x28\xe2\x6d\x54\xb1\x93\x7a\x1b\x85\x65\x19\x4e\xe6\x83\xac\x29\xd3\xa9\x04\x0c\x95\x1a\x72\xbc\x84\xe8\x40\xf1\x25\x4b\x5c\x48\xe6\xee\x65\x98\xcf\x22\x96\x7f\xdf\xcd\xdd\xd4\xf3\x9f\xcc\xe0\x20\xac\xef\xd6\x6e\xd4\xab\x8d\xda\x24\x9e\xf9\x39\xbc\xd3\x4c\x26\x8d\x0d\xfa\xea\x1b\x81\xb4\x49\x63\xc3\x82\xf2\xe8\x35\xdb\xed\xad\x8c\x31\x50\xa3\xb5\xb7\x4d\x54\x94\xcc\x07\xe2\xe2\xfb\x1b\xfc\xde\x86\x49\x5c\xef\xcc\xa2\xc9\x11\xb0\x0b\x8d\x91\x1a\x3b\x72\x93\xf2\x8e\x8e\x35\x59\x49\xa7\x2d\x1e\xbd\xe0\xa1\x6f\x64\x5b\xc5\x29\x37\x45\xd4\x36\x32\xea\x25\x2c\xf6\x76\xe5\x6b\x1e\xce\x4c\xfd\xc5\x3a\xc1\x68\x56\xe1\x5a\xbf\xc1\xfc\x6d\x63\xc6\x1b\x78\xfd\x10\xcd\xd0\x5a\xb6\x06\xdd\x47\xf9\x2c\x22\x35\xe6\x3e\x8f\xb6\x71\xb6\x61\xd2\x85\xc4\xce\xb5\xa4\x03\x19\x19\x88\x8a\xbe\x12\x86\x81\xc5\xba\xc9\x77\xe2\xe2\x31\xca\xcb\x78\x12\x26\xe6\x6d\xbd\xa7\x61\x82\x7b\xcd\xf2\x95\xa1\x4f\xec\xf9\x6a\x0d\xaa\xd7\xd8\x2d\x19\xb0\x6e\xb6\xd6\x5b\x1d\xa6\xe9\x9a\xe2\x12\x88\x47\xc2\x0d\x2a\x5c\xc7\x65\x98\xc4\x9f\x98\xf9\x30\x29\x7f\x28\xa0\x71\xc4\x24\xd2\x53\xcd\x0d\xfb\x10\x6b\x3a\x3b\x27\x31\x5c\x31\xdc\x26\x9e\x46\x66\xc0\xd5\xfa\x19\x8e\xa8\x77\x74\xa0\x31\x5c\x1e\xbd\xd6\xe3\x24\xd0\x9a\x84\xeb\xe2\x01\x2a\x85\x81\xb0\x85\x16\xa0\xd5\xf3\x83\x5e\xca\x2a\x81\xa5\x6d\xf5\x28\x8d\x9c\x68\xa4\x34\xc4\x1a\x35\xbf\x8e\xa6\x95\x1d\x5e\x7e\x70\x7b\xdf\xd3\xa1\x8d\x31\x95\x7c\x79\xb7\xcf\xe5\x9b\xc9\x06\xea\xdd\x46\xe9\x4c\x43\x84\x0d\xf8\x68\x12\xcd\xc2\xc9\x87\xbb\xde\x88\xc9\x24\x4a\x22\xd6\x41\x82\xb5\xa9\x6d\x3f\xfd\x0b\x92\xae\x78\x7d\x85\x63\x8a\x79\xb6\x49\xa6\x0f\xba\xee\x5c\xff\x4d\x33\x93\xb2\x6d\x8a\x0e\x83\x4d\x78\xad\xcc\x53\x5c\x34\xfb\x0d\x10\x46\x88\x38\x19\x64\x5e\x5a\x46\xb3\xc8\x20\x31\xa2\xc9\x66\xda\x4b\x56\xce\x83\xe9\xd4\x54\xf3\xcd\xc3\x50\xf3\xd5\xa6\x92\x13\xa7\x54\x17\xaf\x14\xff\xd6\xcb\x1a\x56\x7e\x84\x03\xeb\xe0\xde\xc0\x08\xcd\x15\x44\x1a\xaf\xd0\xc3\x56\xce\x1c\xdb\xc4\x8a\x50\x3f\x58\x3e\x19\xa6\x1f\x54\x12\x03\xdc\xb3\xa8\xc5\xc2\xb0\x8c\x93\xba\x72\xf3\x64\x6b\xdf\x12\x15\x08\x8b\x28\xd8\x00\xa0\x52\x85\x71\x0a\x1e\x40\xbb\xfc\xab\xff\x41\x0b\x34\x2d\x98\xc1\x92\xc2\xa2\x88\x0a\xf3\x4b\xcb\x95\xbf\x90\xe9\x3f\x10\x67\x03\x5e\xc5\x7f\x75\xb2\xe6\xc8\xfd\x79\x1e\xa7\xcb\x9a\x43\x57\xcf\x3a\x5b\xd1\xc0\xfe\x75\x6a\x39\x8f\x27\xcb\x94\xbb\xd2\xfc\xad\x5f\x1b\x93\x40\xf5\x08\xd3\x82\xc1\x38\xac\xa2\x95\x73\x4c\xf1\x5f\x19\x4c\x0c\xc4\xbd\xb2\x4d\xa9\x97\x8a\xb7\xc8\x24\xce\x27\x49\x64\x90\x3f\x29\x45\xcd\xdf\xf7\x7a\x06\x28\xd7\x66\x55\x6b\x90\xf7\x1e\x33\xbe\x6c\x19\xd9\x61\x31\x0f\x35\x54\x28\x33\x23\xb3\xeb\x77\x15\x76\x9d\x64\xe9\x04\x5a\xcb\x5f\xd1\xae\xd4\x90\x61\x92\x14\x3b\xdd\x14\x64\xa0\xe1\x53\x9a\x7f\x56\x26\x50\x6d\x45\x80\xa8\xca\x33\x74\xaf\xd8\x12\xcb\xde\xc6\xd1\xbb\x84\x2c\xea\x7b\xcf\x4e\x35\x9e\xea\x87\xfd\x65\xc2\x39\xd5\xfb\x52\xb7\x99\x04\xdd\xc2\x04\xd0\x05\xd8\x87\xf1\x64\x52\x8d\xc8\x6c\x85\xf7\xb8\x9c\xd7\x5c\x79\x1e\x31\xc5\xc6\xc5\x3a\xe1\x89\xa8\x3c\x29\x7b\x0f\x18\x32\xcc\x79\xb4\x1b\x0c\xc1\x1b\xb2\xb9\xcf\xe3\x55\x98\x7f\x40\xa6\x25\x51\x59\x32\x6c\x31\x69\x84\xf1\x4c\xce\xbe\x81\x71\x4d\x48\x57\xf5\xb1\x29\x27\x82\x3c\x9e\xa1\x1c\x09\xfe\x26\xb9\xea\x98\x32\x0d\x93\xcd\x6f\xd5\xf8\x6d\x48\x38\x4a\x0b\xde\x8e\xfc\x77\x9f\xb2\xef\x2b\xc4\xff\x2d\xa1\xd8\xbc\xcc\xa3\x70\xaa\xa1\xb8\x31\x76\x35\x6c\xa9\x44\x47\x79\x66\x44\x6e\x12\x17\x15\xe9\xb1\x36\x55\x2b\x14\xcc\x4b\xf4\x43\xc5\xf3\xf7\x7d\x75\x90\x6c\xf1\x2c\xa5\x94\x62\xef\xa1\x95\x44\xbb\xbe\xb6\x1c\xac\xe2\xd4\x2c\xe1\x2b\x25\x1b\xba\x68\x7a\xeb\xbe\x0d\x72\xf0\xb1\xce\x66\x79\x58\x0f\x52\x27\xac\xe7\x1f\x75\xde\x38\xd5\x2a\x9a\xfe\xab\x57\xae\xc2\x99\x78\xaa\x0b\x9a\x9d\x55\x2d\x9f\xce\x58\x3d\x7f\xcf\x5a\xb2\x79\x69\xaf\xf1\xd5\x26\x29\xe3\x24\x4e\x23\x3d\xa0\x6a\xf2\xaa\x59\xd2\xb3\xa6\x59\xf0\xa0\x49\x98\xda\xf4\xb6\xb7\xe8\x1a\x94\x13\x1c\xc5\x60\xe2\x32\x0e\x13\xda\x19\x00\x3c\xe1\x7a\x1d\x85\xb9\x46\x7e\x9b\x54\x83\x3c\x83\x19\xf8\x6d\x95\x19\x2b\xb8\x49\x57\x94\x31\x48\x9d\x1d\x03\x2e\xfd\xa4\x8b\x14\x26\x73\x1a\xed\x4a\x55\x63\xe0\xbf\xe2\x74\x1e\xe5\x71\x59\xdc\x66\x59\xa1\xa1\xbd\x1d\xe5\xf1\x36\x9a\xc2\x32\xd8\xca\xb3\x95\x99\x97\x75\x1e\x6d\x8d\xb9\x90\x16\xa3\xcc\x98\x77\x97\x99\x9e\xb1\x8a\xc2\xed\x78\x8a\x6e\x57\x5a\x48\xd5\xd7\x66\x96\xa1\x51\x50\xa8\x62\xd3\x08\xf5\xef\x7b\xee\x51\x9c\x24\x43\x1e\x21\x26\x2d\x9d\x44\xc9\xdd\xfe\x48\x66\x51\xa9\xad\x8e\x90\x3f\x3c\x0b\xda\x3e\x69\xe6\x83\xa7\x71\x1d\xe5\xb4\x65\xcd\xd4\x98\x47\x2e\x01\x24\xae\xc7\x48\x6b\x74\x5a\xcd\x37\x17\xfe\x2b\x8f\x5e\x4f\xb5\x9d\x8d\x41\x0e\x16\xd7\x0e\x7c\xad\x92\xd9\x81\xaf\x15\xf8\x55\xf8\xf1\x12\x35\x7f\x8b\x46\x3d\x65\xa3\xaf\xd4\x91\x41\xd5\x53\x76\x48\x53\x57\xc2\xd7\xa8\x5f\x77\x27\xe3\xc5\x04\xdb\xcf\xaa\x85\xd5\xbf\xb8\xd2\x2c\xad\xe9\xce\x81\x28\xc7\x18\xce\x38\x1f\x0f\x90\x7f\x98\xfc\xf4\x9b\x0d\xc5\x98\xd3\xc6\x02\x68\xb5\xe4\xcb\x2c\xa3\xbe\x73\x9a\x93\x49\xc9\x0a\xd8\x3c\x4c\xa7\x09\xba\x32\xcd\xa2\xe2\x2e\x2b\xdb\xe1\x36\xd2\xa3\x09\x72\xa3\x07\x51\x89\xe9\xd4\x49\xa7\x8d\x04\x9a\xca\xb3\x6a\x9e\xf6\xdb\x29\xaa\xd5\x04\x2e\x48\x99\x77\xa1\xf5\xff\x30\x70\x01\x56\x26\x43\x37\xbf\x12\xbd\x86\xae\x59\x1c\xd4\xa8\xbd\x9e\x28\x37\xcf\x36\xeb\x9a\x55\x4e\x92\x2c\x6d\xe4\x53\xb5\x05\x2c\x4b\x93\x0f\xac\x3c\x18\x88\x66\xb5\xda\x16\x4d\x7d\xa2\x9f\xc5\xbe\xad\x9e\x1e\x87\x77\x7e\x30\xbc\x1b\x38\xf6\x81\x75\xe0\x3c\x79\xfa\xc7\xdd\xc0\x79\xf0\xee\x5c\xf3\xb3\x7a\xcb\x69\x44\xcc\x55\x07\xab\x21\x6a\x10\xa3\x99\xf7\xb4\x36\xba\xd7\x92\xaf\x61\x89\x5f\x31\xe5\x4d\xa3\xaf\xa2\xd2\xd6\x29\x30\xc9\x86\x09\xab\x1c\xef\x86\x10\x35\x65\xac\xc3\x49\xcc\xa6\xf4\x8a\xe8\xdc\x1c\xb9\xbe\x40\xae\x32\x8f\x27\xa5\xdf\xc0\x5c\x9c\x90\x4d\x61\x97\x0f\x99\x55\x6b\xa6\x6b\x00\x57\xb5\xb2\x3a\xa1\x1e\x2b\x95\xd9\x5b\x9d\x26\xd3\xa4\x72\xa0\xa4\x4d\x99\xd5\xd4\xb1\x29\xa2\x81\x06\x06\xac\xaf\xff\xd0\x83\xca\xe7\x5f\x54\xef\x68\xbb\x66\x79\x14\xcf\x52\xde\xc6\xec\xfa\x5e\xf2\x03\x13\x35\xff\x4e\xb3\x7c\xc5\x4a\x5d\xa3\x57\x35\xa5\x12\x23\x08\xf2\xe6\xd6\xfe\x6b\xcf\xd3\x07\x26\xde\x7c\xcd\x75\x37\x76\x6d\x23\x81\x41\x30\xfb\x1e\xfe\xfa\x91\x08\x66\x51\x29\x36\x65\xc6\xca\x77\x63\xb5\x27\xb0\x0e\x57\x3a\xf9\x22\x83\x54\x68\x54\x8d\x25\xd4\xcf\x15\x03\xa8\x9f\x7f\x6e\xf0\x74\x2f\x0f\x33\x8a\x24\x0a\x1b\xdc\x8a\x87\x7f\xc7\x7b\xa7\xda\xc9\x9a\x8f\x00\x38\x16\xf1\x4b\x9c\x30\x2d\xad\x36\xb1\xb6\x1b\xd1\x18\x78\xd2\x9d\x74\x4e\xac\x67\xea\xbc\xbe\xb2\x4a\xc6\xe1\x29\x7a\x87\x19\x6f\xc2\x17\x34\x64\xb2\x7c\x7d\xce\xd2\x07\xf0\x0a\x6d\xbb\xda\x54\x96\xdb\x22\x2a\xfd\xc6\xe3\x6c\xdf\x57\x01\xd3\xf1\x6b\xc5\x25\xbe\xc4\xb7\x50\xf3\xac\xe4\x87\xf9\x6c\x63\x2c\x1b\x89\xd1\x46\x5f\x37\xe9\x04\xdb\x93\xcd\xa5\x79\x34\xdd\x00\xbb\x87\x93\x89\x7e\xab\x2b\x38\xe5\x1a\x4c\x5e\x2d\x59\x12\xbd\x15\x45\x3a\x99\x67\xb9\x93\x00\xb1\x56\x3f\x0d\x2f\x61\x93\x64\xa5\x8f\xe9\xe9\x58\x46\xd1\x1a\xc3\xc2\x78\xf7\x9f\xb2\x35\xba\xac\x73\x36\xcd\xc0\x1a\x6c\x34\x4d\x36\x26\xd7\x97\x66\x7e\x7e\x7e\x88\x5e\xf7\xac\x26\x3c\x75\x66\x6f\xef\x21\x72\x0e\xd3\xd1\xc6\x87\xf7\xb4\xb9\xb9\xee\x1b\x65\xbf\xa4\x70\x62\x64\x28\xae\x88\xca\x8a\xfa\xf2\x72\xaf\xdf\xd3\x38\x8f\x2a\x57\x61\x12\xaf\xf7\xc6\xb4\xef\xf0\x3c\xe5\x9a\xf6\xcd\xc7\xd4\x6c\xc0\x13\xd5\xec\x43\x85\x4c\xf8\xb1\x63\xd0\x4f\x23\xd6\x11\xc4\xa6\x8c\x8e\x91\xa5\x55\x11\xae\x47\x25\x2c\x76\xbe\x6f\xe0\xf9\x47\x51\x46\x79\x11\x17\xa6\x5d\xf3\x3c\xd0\xdc\x4d\xc7\x36\xd5\x53\x0a\xf3\x91\x31\x23\x7d\xdb\x0b\xad\x6c\xb2\x29\x6e\xe3\x7a\x33\xe8\x84\x5a\xcc\xee\x65\x6f\x67\xdb\x28\x6f\x66\xd7\x09\xbf\xc8\x3e\xc8\x36\x93\x79\x33\xbb\x4e\xf8\x9a\x1d\x52\xc2\x08\x96\xbd\x87\x66\x06\x62\x0d\x7b\x99\x9a\x09\xcd\x8c\x68\x85\x5e\x54\xf0\xc8\x24\x80\x9f\x4e\x8d\x1f\x7c\xda\xd4\x0b\xca\x28\xaf\x50\xc9\xfe\x93\xce\x92\x44\xe1\x36\x32\x95\xec\x3d\x34\x33\x34\xdb\xde\x4f\xf8\xe0\x45\xd7\x4b\x9b\xa5\x7a\x05\x69\xa7\xed\x0b\x38\x26\x1b\x23\xba\x2a\x3a\x6a\xca\x32\x4e\xa9\x54\x8e\xb8\x4c\x2a\x7f\x5b\xcd\xb2\x54\xe3\x11\xab\xcf\x3b\xa3\x88\x4a\x51\x3f\xc5\xb3\x34\xcb\xa3\xbb\x2c\x45\x3f\x61\x7d\xd6\x96\xdd\x22\x32\x34\x55\x41\xcc\xbc\x1a\x94\x7e\x28\xa9\x90\x79\xf8\xeb\x5b\x28\xc2\x5e\xc2\xa9\x1e\x6c\x03\x1e\x06\x8d\xc7\x78\x4a\x9b\x23\x8f\xa7\x8d\x00\x0a\x4f\x6f\x60\xbb\xf1\x98\x87\xe9\x14\x2a\x13\x02\xf0\x58\x0e\xbf\x87\xf9\xb4\xe1\x38\x34\xf3\x92\xa5\x7e\xb6\x29\x22\xaa\xb7\xb2\xaf\x57\x51\xb2\x8c\xdd\x0b\xad\x70\x53\x65\x05\x68\xff\x91\x44\x0e\xa6\xf3\xa7\xb4\xf8\x6b\x42\x96\xca\x64\x93\xd7\xcf\xaf\x8d\xd7\x9a\xb5\xed\x73\x92\x33\xd3\xd1\x6f\x75\x9b\x25\xfb\xf6\x82\x99\x02\xb5\x53\x3d\x20\x47\x1d\xa1\x31\x30\x3e\x87\x2c\x35\x6f\x8a\x79\x96\xeb\x40\x03\x2e\x72\x4b\x0b\x57\xf5\xb8\x9e\x1e\x93\x3e\x8d\xca\x68\x52\x82\x0c\x8c\x1e\xae\xa9\xc2\x3c\x72\x3d\xc3\x22\x6a\xf2\x5d\xb4\xd7\x4c\x08\x0c\xa7\x8e\x09\x36\xb1\x25\x8a\xad\xa3\xfd\x79\xf6\x7e\xc7\xee\x55\x4d\xb1\x8d\x8d\x36\xca\x49\x51\xca\x9b\xae\x0f\x43\x94\x6c\x56\x8c\xf2\x59\x34\xdd\x27\xfc\x69\x14\xad\x91\x5e\xa1\x37\xca\x29\xb3\x2c\x89\xc2\xb4\x92\x30\xde\xde\x6e\xe6\x34\xa1\xb9\x61\x25\xd9\xbc\x94\x39\xd2\x17\x96\x6b\x92\x79\x36\xf3\x5a\x2a\x19\xe2\xaf\x53\x4c\x95\x9f\xc6\xad\xb6\xce\x30\xbc\x6a\x4f\xb1\xca\xff\x50\xf9\x3d\x26\xcb\x19\xec\xc4\x4a\x5b\x23\x5f\x43\x46\x17\x39\x3b\x4e\x61\xc1\x7f\x08\xa7\xb1\x5e\xce\x70\x5d\x87\x51\x1c\x58\x07\xef\x73\x6d\xbc\xcf\xd2\xb2\x15\xae\x62\x20\x81\xb2\x69\x75\xa0\x37\xda\x61\xb0\xde\x0d\xb2\x87\x68\x05\x03\x4e\x5a\xfb\x5e\x56\xe1\xae\x32\x95\x65\xf9\x94\x96\x40\x97\x1b\x99\x2c\xf5\x83\x1f\x4d\xe3\xcd\x0a\x3d\xdb\xf5\xe3\x4f\x86\x80\x93\xda\x22\x5f\x65\x7c\x88\x66\x9b\x24\x6c\xcc\x55\x25\x35\xb5\x79\xe3\xaf\x6f\x21\x54\x2f\x79\x14\x2e\x31\x5f\xec\xfa\xfb\xa1\xac\x99\xb7\xaf\xe9\x6c\x75\xfa\x9a\x5a\x19\x56\xbe\x87\xd9\x1e\x58\x07\x75\xbc\x6c\x43\x72\x4c\x99\x8c\xf8\xcf\xbe\x1c\x9b\xd6\x12\x6c\xfa\xb3\x08\x7d\xf8\x2a\x42\x1f\xe2\xf5\x1a\x24\xce\xed\xc8\xb0\x30\xb5\x9b\xdd\x44\xbf\x99\xb4\xd9\x9d\x53\x95\x78\xdd\x2b\x9f\x84\x2f\xd0\xac\xa9\xeb\x22\x89\x67\xa9\x56\x9f\xb5\x93\x60\x4b\x08\xcb\x68\x5b\x30\x3b\x7a\x6c\x93\xd1\xde\xae\xfe\x8a\x6d\x44\x8b\x4d\x51\xc6\xaf\x0d\x0f\x4a\x1d\xf1\xab\x75\xa2\x8a\xa5\xcc\xa3\xc9\x32\x32\x42\x52\x3f\xd5\xbf\x68\xee\x6a\x0e\xad\xaa\xd7\x66\x7e\x8c\x70\xe5\x6c\x71\xba\xde\x54\xba\x2c\x1e\x34\x9c\x4b\xd5\x5c\x07\x06\xe5\x51\x38\x0d\x58\x39\xce\x6b\x2f\x64\x19\xbe\x98\x7d\x04\xbe\x88\x66\x8c\xac\x58\x6d\xe2\xc6\xba\xb2\x2b\xff\x96\xe6\xa9\x95\xe5\xa6\x1d\x0e\x45\xab\xfb\x37\xd9\xe4\x05\x1b\xff\x9b\x91\x9a\xd4\xf1\x6f\xa3\xd1\x2f\x4c\x44\xef\xfe\x88\xbf\xbc\x6c\xc6\x26\x7f\xc9\xd8\x34\x5f\xeb\x57\x3f\x46\x0c\x37\x6b\x7c\x81\x95\xdc\xd8\x7f\xf7\xba\x63\x90\x8a\x9e\xd8\x49\xf6\x05\x36\x7c\x35\xc5\xff\x94\xec\x7d\x35\xd9\x7b\x66\x99\xbe\xa4\xe9\xaa\xf5\x7e\x69\xd8\x6e\xcb\x2f\x72\x96\x0a\xaf\x66\x95\x9d\x34\x9f\xf0\xff\x7d\x48\xa3\x24\x0b\xa7\x06\x84\xdf\x9a\xdf\xf1\x2a\xc4\xba\x7b\xfa\x6f\x96\x52\x36\xfc\x88\xf2\x1c\x4b\x44\x52\xc9\x64\x9f\x87\x85\xb7\x9a\x55\x3f\xee\xb2\xb2\x15\xc6\x89\xf6\x5b\xe3\x05\xc7\x3b\x83\x81\xd6\x16\x20\xc2\xc5\x2b\xb3\x25\xec\x2a\x08\x73\x53\x44\x79\x3f\x4a\x74\xfc\x4a\xc5\x82\x8d\xcb\x8e\x3b\xfb\xb6\x09\xf3\x88\x23\x21\xa2\x49\xd9\x62\x5b\x60\xb4\xc3\x8a\xa6\x65\xc3\x0e\xdd\x40\xd9\x4d\xa3\xb6\x49\x6b\x6c\x2a\x9d\xf4\x62\x98\x4e\xf5\xa3\x32\x52\xee\x2f\x66\xa5\x5f\x02\xf5\xe9\xf8\xd4\x3a\x61\xdf\xf8\x5f\xbd\x33\xcb\xf0\xeb\x04\xf5\xdd\x29\xa6\x37\xae\xbb\x29\xcb\xbd\x00\x85\x3a\xa1\xca\x68\xbc\x00\x4d\x90\xf3\x43\x8d\x05\x26\x58\x2f\x7c\xf5\x13\x54\x53\xf3\xe0\x44\xcf\xa1\xf6\xf5\xea\x79\x5a\x6d\xe2\x3b\xc4\xea\x12\x4b\x37\x16\x90\x79\x58\x54\xbe\x14\x61\x58\x9f\xce\xf9\x75\x0a\x61\xe5\xa8\x7a\x5e\x7c\x2b\xf6\xba\x0f\xad\xd6\x15\x99\xdb\xd1\x24\xab\xec\x21\x2c\x7c\x2b\x21\xd2\x90\xd5\x3a\xf8\x85\xcd\xf5\x46\x26\x81\x0d\x13\x4f\xad\x98\x8a\x9e\x89\x86\x08\x9e\x97\xab\xc4\x48\x7a\x00\x76\x31\x99\xec\x7b\x0a\x2b\x27\x19\xfa\x18\x72\x07\x41\xbf\x55\xef\xf1\xe4\xe8\x5d\x62\x76\x0b\x93\x78\x2d\x9e\x4c\xa3\xb5\x20\x30\x29\x46\x18\x98\xe7\xdb\x90\xb1\xd3\x9a\x03\x10\xb5\x67\x4c\x4f\xeb\x2a\x5a\x65\x35\xbc\xd6\x90\xae\x30\x6b\xd2\xff\x58\xbd\x80\xf5\x22\xae\x9b\xe3\x79\xff\xe2\xd0\xa4\xbf\x30\x01\x10\x94\x20\x0a\x8c\x11\xf2\x31\x83\x07\x64\xbd\x41\xdc\x55\x84\xcc\x9b\xb4\x30\xb1\x40\xde\x7e\x84\x38\x3b\x51\x22\x1e\xed\xff\x41\x10\xc8\x3a\x4e\x67\xc5\xc1\x7f\x1f\xfc\xff\x4e\x5d\x21\x84\x75\x69\x0b\x37\xb2\xfa\x42\xf4\x85\xe5\x09\xb5\x96\x96\x27\x84\xa7\x2c\x47\x88\x40\x59\xa1\x10\xb1\x54\x56\x57\x38\x17\xd2\x0a\x84\x2d\x94\x35\x16\xe2\x4d\xb6\x2d\x57\xa8\xa9\xb0\x3c\x2b\x56\xaa\xf3\xe4\x59\x01\xb2\x47\x42\x44\x28\xda\xa7\x92\x13\x4b\x09\x75\xa6\x14\x5e\x5a\x9e\x70\x06\x36\xbd\xeb\x39\xf4\x72\x68\x39\x42\x25\xd4\xda\x4c\xa2\xb9\xb9\xec\x51\xfe\x47\x65\xb9\x42\x78\xd6\x50\xa8\x8e\xa2\xbe\x74\xe9\xe7\xed\xff\xde\xcf\xae\x10\x3e\xfd\xbc\xfb\xed\xcf\x91\x70\x1f\x16\x52\x77\xbf\x27\xc4\x50\x59\x2e\x8d\x7d\x2b\x13\x69\x5d\x2a\xe1\xf0\x1c\x46\x94\x63\x42\x43\x50\x6b\x55\xcf\x64\x88\x81\x77\x95\x35\xa2\x31\x23\x69\xd2\x42\xd2\x42\x5a\x3d\xe1\xa7\x32\x93\x96\x2b\x6e\x83\x36\x12\x3d\xab\x2b\x94\xea\xe0\x77\xd7\xf2\x85\xdb\xba\x92\xd6\x44\x88\x73\x79\x8d\xe5\x79\xbd\xa5\x06\x84\x6f\xf5\x85\x73\xc5\xd5\x2d\xe5\x9c\x6a\x17\xd1\x31\x55\xa4\x16\x2a\xa8\xdb\x9d\x21\xe9\x4a\x3a\xf4\x30\x6a\x55\x49\xc7\xf2\x48\x5a\x3e\xad\x8d\x12\x3b\xd9\xbd\xa5\x17\x11\x5e\x87\x3d\xcb\x11\x2b\xf9\xb4\xc0\x92\x2e\x25\x8d\x6d\xb8\xc2\xb0\x12\xfb\x81\xfe\xb4\x51\x7f\x1f\xa4\xf1\x68\x05\xd6\xb5\x52\x5b\x75\x4b\xb5\xc5\xca\x7a\x93\x42\x3c\x29\x9a\xa6\x7b\xfc\x7e\x57\xca\x1a\x0a\xb1\xb5\xf1\x74\xdc\x52\xd6\x50\x39\xeb\x16\x3a\xbe\x92\xd6\xc8\xea\x09\xb5\xe0\x71\xbc\x4b\x4b\x09\x01\x92\xe9\xa1\x0c\xe6\xac\x8f\x77\x03\xee\xb9\xa0\x3f\x1e\x46\xb6\x26\xa2\x14\x4b\x1b\x34\x93\xd8\x96\x43\x5d\xf3\xf1\x14\x76\xa8\xf8\x50\xe8\xff\x7b\x58\x38\x47\x88\x0b\xd9\xa2\x15\xa5\xb5\xb4\x02\xa1\x1c\xfc\x71\x69\xae\xef\x37\x34\x29\x6f\xea\x93\xe6\x78\x4c\xad\x3c\x9f\x4a\x0f\x75\xdd\x51\x33\x3b\x1a\xd1\x99\x0c\x68\x32\x4e\x65\x60\xb9\xb4\x5f\x2e\x24\x5a\xeb\x70\x6d\x01\x75\xf6\xd6\xa2\x42\xae\xe0\x24\x61\xbd\x4b\x21\xae\x69\x94\x2e\x65\xb7\x1c\x6b\x28\x7c\x45\x95\x14\xd2\xe6\x4a\xb6\xd2\xf9\xb9\x12\x74\x6f\x2c\xd4\x88\x4b\x0f\x2c\xc7\xf2\x85\xdd\xb2\x7c\xb5\x93\x7d\x10\x1c\x26\x66\x44\xc4\x18\x08\xf7\x48\x0a\xcb\xa5\xf7\x85\x14\x36\xfd\x74\x87\x4a\x6f\xed\xae\x10\x5d\x61\xb9\xaa\xf3\x54\x17\xfb\xe0\x29\xef\x53\x69\x57\xa8\x9d\x0d\x82\xe5\x3d\x2a\xac\xbe\xe5\x0b\xf5\x88\x0e\x7a\x1e\x4d\x9d\xdd\x6f\xe9\x57\x13\x21\xb6\x92\xfa\xb5\x92\x53\x2b\x96\xc4\x23\xb0\x28\x6b\x65\xf9\x18\x41\xa4\x7b\xe5\x08\xf1\x64\xd3\xd0\xee\x2d\x47\xdd\x87\x68\x1a\xab\x30\x69\x5b\x2e\xd5\xbf\x46\xff\x3c\x61\xda\xa4\x16\x1d\xe1\x74\x4d\xc2\x58\x88\x09\x7e\x5f\x49\xab\xab\x6c\xae\xc1\x63\x3a\xe8\xa0\x6f\x4e\xa9\x78\xda\xfa\x2f\xf4\xf2\xde\xea\xd2\x4c\xf8\x21\xe5\x79\xb0\x86\x34\xbd\x8e\x45\xdc\x47\x09\x2b\x40\x3e\x51\x8f\xe2\xd5\xea\xd2\x9b\x96\x35\xae\xdf\x50\x0d\xbe\xf0\x36\x8a\x26\xe2\x95\x56\x21\xda\x2a\x9f\x7e\x6f\x88\x16\x23\xde\x70\xaf\x97\x34\x01\x11\x6f\xe6\xd7\xa5\xb4\xc6\x96\x2f\x66\xf2\x4c\x61\xb9\xdf\xc1\x33\x45\x17\xdb\x79\x84\x6a\x2f\x94\x5e\x4f\xe1\x76\xf5\xae\xc4\x9f\xad\xb4\x3c\xb5\x95\x3c\x32\x6a\x06\x0c\x97\x96\x53\xcd\x95\x00\xf5\xa1\xfc\x0b\x3a\xbc\x51\x78\xd8\x2a\x3c\xd1\xac\xde\xb5\x68\xd5\x7c\x5e\xc9\x14\xfb\x79\x26\x41\xaf\x81\xb0\x36\xba\x2f\x7d\x21\x6e\x6c\x6b\x22\x94\xff\x01\x1e\xd6\x5f\x4b\xd4\x8c\xcd\x31\x93\xe8\xeb\x5a\xd2\xd3\x19\x8d\xb1\xcf\xcc\x8c\xf3\x76\x75\x6f\xce\x90\x0d\x4b\xa5\x88\x10\x9c\xd6\x97\xe7\x6e\xdb\xac\xf4\xe3\xde\x3a\xbd\x32\x91\x7f\x5d\xa7\x19\x71\x3e\xd7\xbb\x94\x3c\x66\xe6\x7c\x02\x83\x39\x01\xc3\x79\x3a\x46\x8b\x5b\xfa\xdf\xf5\x50\x59\xa4\x59\x30\x46\x8f\x0e\x39\x41\x0c\x96\x18\x83\xf4\xc5\x52\x72\x8e\x13\x65\x81\xa3\xaa\x25\x53\xe6\x10\xff\x3f\x59\x99\x14\xe2\x35\x96\x56\x68\x79\xc2\x65\xde\x3c\x02\x81\x6a\xb6\xb2\x50\x56\xdf\x0a\x84\xd3\xc5\xae\xb6\xa9\x1b\x21\x2a\x5e\xa0\x4b\xef\x58\x91\xa0\xc4\xea\x6a\xc9\x80\xff\x78\x4f\x11\x93\xc1\x1e\xb9\x91\xd6\x88\xf6\xe1\x48\x38\x4e\x22\x79\xaf\xa1\xfe\x09\x91\xb4\x33\x57\x33\xc9\xa4\xe6\x0a\x97\x0a\x3c\xf7\x5f\xeb\x5e\xf2\xe8\x12\x29\xac\x99\x24\xe6\x86\xf9\xfa\xb4\xad\x99\x54\xa9\x1c\xa1\xa9\x18\x3d\xef\xe9\x95\xb9\x01\x17\xe4\x4d\xd4\x15\xc4\x3d\x84\xad\xdf\x3b\x44\xe3\x63\x34\xa2\x44\x58\x6f\xfd\x0d\x6f\x7d\x48\x31\x4f\x38\x89\x8d\xbd\xcf\x94\x36\x25\x9e\x1f\xdb\xc8\x90\xdb\x98\x0f\xd5\xcf\x55\xb5\x6a\xc4\x0f\x0a\x7a\xab\x3a\x18\x6c\x5f\x68\x9a\x17\x2c\x79\x5c\xab\x2b\x5a\x2d\xeb\x5c\x0a\x97\xc9\xb2\x67\xf8\x86\x23\x44\x49\x03\x57\xbe\x4b\xbf\xfd\x76\x9d\xbe\xa6\x74\xd7\xc7\x2a\xf7\x4e\xd0\xd8\xd4\x9a\x50\x5e\x61\xfe\x8c\x89\x8a\x7a\xa7\xa8\xf2\x1c\x9b\x67\x21\x2f\xa5\xf5\x0e\xae\x2d\x6f\xec\x3b\x3d\x04\x57\xa8\x67\x92\xbd\x76\xcb\x72\x85\x23\xb8\x29\xe2\x2d\xed\x07\x9a\x2f\x75\xc3\x9b\xed\x54\x9e\x49\xa6\xcc\xb9\x5a\x62\x39\x42\x2c\x95\x7d\x2e\xc1\xfb\x9c\x05\x96\xdf\x5b\x62\xc4\x23\xaa\x80\x36\xa1\x4b\x93\xd7\x36\x94\xed\x08\x31\x97\x11\x89\x35\xfb\x53\x5a\xae\x7d\x2d\xfd\x19\x24\x58\xa7\xde\xed\x73\xb3\xd6\x98\xb9\x18\x4f\xd1\x33\x66\x57\xf2\x02\x7a\x63\x7a\xea\x90\xd4\xef\x3f\xf2\xf2\x0c\x99\x37\x3c\x12\x79\x11\x99\x38\x81\xe0\x17\x4c\xce\x66\x46\x5d\x21\xe6\xb6\xe5\x3b\x9f\x8a\x09\x03\x6c\x6f\xb8\xe0\x65\x15\xfd\x25\x43\x0d\x6b\x63\x53\x2d\xbe\x50\x27\x0a\x29\x6f\xd2\x26\x62\x1d\x08\xde\x7b\xe0\xb3\x29\xa1\x3d\xe5\x73\x6f\x47\x4c\xb5\x44\xf5\xd4\x78\x2c\x19\x03\xf0\xf8\x3b\x3c\x7d\x82\x6b\xb2\x68\xae\xd5\x4e\xcf\x61\xb0\x56\x35\x0d\xe7\x92\x48\x58\xf9\x6f\x5a\xd2\xe7\x8d\x77\x13\x61\x2d\xa5\x10\x47\x9a\x2b\x04\x9c\xe7\x9e\x05\x59\x37\x37\x4f\x46\x6a\x14\x4a\x23\x2b\x5a\xcc\xad\x19\xdf\xbb\xc6\x3e\xd6\xbb\x2d\xd4\x11\x93\xec\xf8\xa1\xde\x4a\x00\xad\xca\xef\x63\x75\x07\x75\xfa\x15\xf1\x1e\xe5\x63\x92\x47\xed\x0a\x0f\xf4\x89\xcc\xba\x42\x8c\x51\xd1\xb3\xe5\x30\xe1\xf5\x84\x88\x04\x6f\x25\x9d\xe2\x0b\x11\x22\xcf\x8b\x49\x09\x8c\xa0\x9a\xf2\xb3\xa3\x06\x0d\x71\x17\xd5\xfb\x95\xc4\x3d\x2f\x42\x2c\x6d\xaa\x88\x17\x21\x42\x15\x57\xc4\xbf\x95\xef\xf0\xa8\x40\x7f\x8f\x82\xe7\x0e\xdd\xd0\xec\xc9\x75\x1c\xc2\x7a\x23\x20\xc4\x00\x94\x79\xcf\x0c\x0e\xb8\x59\x88\x1f\xdf\xb6\x5e\xac\xa1\x7a\x6e\xa1\x57\x5d\xf4\x07\x39\x7c\xfc\xf6\x41\xcb\x44\xbc\xa0\xc8\x13\x2d\xc0\xa0\x13\x3c\xb6\x34\x67\xe9\x0b\x5b\x10\x52\x71\x6e\xeb\x94\x16\x52\xdc\x5b\xe6\xbb\x48\x6a\x8b\x98\xf6\xa4\xd7\x4c\xeb\x70\x5a\xb7\x99\x76\xcb\x69\xfe\xed\x4e\x55\xcc\x5f\x89\x0f\x86\x2c\x49\x9d\x4f\x4c\xb1\x07\x55\x1b\x0f\x8c\x42\x26\x00\x76\x4b\x79\x47\x43\xe5\x29\xcc\x24\x2d\x8c\xbd\xb0\x09\x38\x3a\x7f\x90\xb9\x2f\xda\xa5\xbd\x20\x81\x77\x47\xac\x62\xc2\x0b\x76\x8c\xce\x44\x6b\x87\x17\xeb\x48\xce\xb0\x1c\xc1\xdc\xe1\x05\xef\x0a\xe5\xc7\xe0\xaf\xc1\xc2\xe6\x24\x10\x79\xec\x30\x53\xd8\x9a\xc1\x74\x85\x08\x4e\x15\xf0\x51\xa2\x00\x77\x9c\xc0\x22\x64\xab\xdc\xbb\x0a\xef\x68\x82\xf4\xe9\x7f\x1b\x0c\xc9\x17\x8e\x63\xe4\x40\x0f\xdc\xd5\xbc\xa7\xff\x3d\xeb\x2d\x95\x6a\x21\x3f\xb1\x1f\xfb\x81\xde\x15\x2e\xa1\xb1\xb5\x6e\xa5\x42\x38\x5d\xac\xbf\x23\x5a\x3b\x09\x60\xe6\x56\x02\xc6\x33\x55\xf6\x94\xd5\x57\x6e\x2a\x6b\xd1\x50\xc8\x0b\x0d\x4b\x77\x6a\xa3\x98\x31\x11\x4d\xf8\x24\x96\xf1\xe4\x41\xb5\x23\x3a\xbf\x7d\xe1\x6d\xfa\x8e\xf5\xf1\x3f\xfe\xd1\x06\xd4\x1b\x47\xef\x31\xfe\x33\xac\x39\xbe\x1b\x2c\x94\xa9\x9d\x00\x3a\x41\x39\xc7\xbf\xc4\x94\xf7\x2d\x22\x4f\x75\x0f\x69\x62\x07\x40\x71\xce\x03\x86\xda\xb3\x3c\xd2\x98\xee\x8c\x34\xf4\xb5\x84\x69\x33\x32\xf4\x6e\xcd\x8b\xc0\xcc\x6d\x77\x43\x40\xc2\xdb\xb2\x48\xbc\x94\x47\xd8\x77\xb9\xac\x41\xa9\x28\xe4\x06\xed\x46\x5b\xfc\xb9\x52\x82\x64\xe4\x14\xda\x06\xc8\x43\x75\x6c\xbd\x40\x54\xed\x11\x1e\x5e\x0f\x6d\x52\x74\x0b\xa0\x23\x7b\xa7\x68\x69\xfc\x16\x32\x7b\x3a\x33\x29\x92\x9c\x79\x2e\x0f\x09\xa0\x89\x77\xce\x7d\x42\x74\xa2\x41\x4f\x2c\x17\x8e\x55\xc1\xe1\x2b\x08\x50\x6f\xa9\xa9\x2d\x31\xaf\x42\x4c\x36\xed\x45\xcf\x8b\x8d\x3a\x21\xc4\x9b\x62\xfe\x7c\x25\xd7\x8c\xfc\x6e\x34\x28\x70\x19\x1d\x5d\x2a\xcd\x7d\x18\xfc\x74\x29\x55\xa3\x79\x4e\x9c\x53\xa2\x23\x1c\x52\x08\xf4\x12\x11\x83\x0e\x0d\x7f\xfe\xd4\xa0\x7c\xc8\xad\x35\x61\x85\x06\x20\x1b\x66\xcf\x37\xad\x13\x5e\xbb\x53\x9e\x1d\x50\x0c\x32\xdc\x51\x05\x51\xbb\x62\x57\x6a\x2e\x19\xed\xbd\x18\x21\x29\x94\x3f\x01\x09\x11\x77\x15\x29\xa7\x44\xbc\x22\x4e\x95\xc9\xd1\x04\x58\x8f\x51\x28\xff\xd2\xe1\x39\x3c\x93\x35\x53\x4c\x14\x6f\xd9\x99\x16\x1f\x17\x8d\x77\x29\x76\xac\xeb\x7e\x00\x21\xb7\x2d\xea\x89\x72\x18\x62\x2e\x64\xc5\x14\x85\xf7\x86\xf9\x1c\xe4\x80\x9f\x0b\xda\xb9\x8e\x16\x1f\x84\x39\x7f\xca\xd7\x25\x54\x67\x79\x44\xab\x0e\x98\xee\xd0\x66\xf1\x8c\x15\xca\x25\x83\xc2\x50\xd4\x80\x3e\x95\x84\xcb\x6c\xaa\x82\xb0\xee\x9a\x17\x26\xe4\x9d\x8d\x1c\x6b\x69\x13\xdc\xca\x24\x54\x43\x37\x45\x8e\xf6\x8a\xf7\xbb\x97\xe8\x02\x53\xab\x4f\xe5\x49\x69\xd3\x1b\x4c\xf8\xdd\x23\x60\xdc\x5b\xbd\x44\xe8\xc3\x2b\x93\xd5\xf8\xaa\x31\x21\xf8\xad\x7c\x86\x12\xe1\x4d\xe3\xcd\x0d\x57\xe7\xa0\x3b\xd1\xa1\xdc\x13\x91\x3d\x9e\x07\x07\x63\xae\xc5\xe6\x8c\x77\xd9\x5c\x36\x04\xa7\xa6\xb7\x05\xa7\xb9\xc2\x74\x32\xa4\x21\x88\x05\x0d\x4c\x79\x1f\x76\x45\x1f\xf6\xd3\x27\x61\x76\x87\xd2\x3c\xe8\x57\xae\x68\x03\xa0\xbb\x31\x34\x35\x9a\x21\xf4\x2c\x51\x0c\x24\x58\x34\xef\x68\xa9\x00\x85\x4b\xbb\xc9\xeb\xaf\xd5\xbc\xa5\x01\x45\xdc\xda\xa3\xd8\x2b\xb6\x83\xfd\x84\x69\x96\x2d\xa6\xab\x57\xa6\x7b\xe6\x76\x36\x48\x8e\x61\xed\x53\x83\x06\x58\xe8\x0d\x62\xd2\x19\xc5\xa9\x4c\x1d\xad\x9f\x8d\x01\xdf\xa8\xcc\x07\x26\xbe\x7f\xf7\x63\xa1\x90\x00\x6f\x55\x28\x84\xa9\x83\xc8\x9d\x99\x52\xf8\xae\x69\x05\x40\x41\xcd\x6d\x3d\x99\x84\x83\xc1\x78\x27\x1b\x4d\x2a\x10\x7c\x3a\x03\xf3\xe1\x33\x02\x42\xce\xcb\xb2\xe2\xaa\x9e\x50\x0f\x27\xcc\xc6\x79\x33\x3d\x7f\xc2\x8e\x15\x2b\x3c\x12\xca\x1d\x12\x29\xdd\xb3\xcc\xd6\x6d\xbf\xec\x00\x17\x56\x0a\x8f\x2d\xda\x4f\xb4\xd8\xc2\x72\x68\x33\x05\x0f\x9f\x06\x02\x1b\x54\x74\xca\x7a\xdc\xba\xa5\x25\x8d\x5c\xfe\x00\x3b\xd5\xaf\x60\x27\xc9\x94\x4f\x66\x76\x4e\x8b\x44\xbb\x97\x36\x95\xac\xbe\x60\x7d\x9e\x96\x8d\x36\x9b\x57\xb0\x51\x2b\x69\x19\xee\x41\xe8\x0f\xf6\x91\x80\x17\x9c\x7a\xf6\xd2\xc0\x6b\x97\xb2\xe4\x9e\x39\xc4\xea\x3d\xc1\xe6\x20\xf1\x42\x5c\xbf\x50\xa1\xe5\x51\xf5\x89\x62\x3d\x55\xab\xb2\x8e\x93\x41\xd5\xe8\x6e\x51\xe5\x80\xd4\xed\x60\xd3\x62\x9d\x98\xf4\xc8\x5d\xab\xd1\x47\x4f\xab\x35\xa9\x7a\x47\xf2\xad\x35\x81\xde\x89\x91\xfa\x6b\x17\xc3\x26\x95\xcf\xe1\x6e\xbd\xb9\xcc\x2a\xd8\x62\x10\x58\x9e\xe8\xbe\x60\xb2\x94\x20\x5a\x75\xbd\x15\x33\x0f\xd2\x3d\x9c\x33\xf0\x24\xd4\x3b\x3c\x07\xdf\x39\x63\x96\xf9\xc9\x68\xf4\x4d\x1b\x20\x98\xe1\xcc\xe5\x1c\xbc\x6e\x63\x33\x65\x68\x1d\xa3\x07\xee\x7b\xe6\x1a\x6b\x56\x48\xba\x50\x8b\xb7\xed\xe8\x89\xf7\x0d\xd3\x90\x4d\x12\xc1\x05\xf1\x38\x6a\x4c\x0c\xbc\x03\xd4\x03\x53\x12\x2d\x10\x11\x4e\x2c\xb7\xda\xf2\x68\x1b\x59\x23\xd4\x4a\x7e\xb4\xac\x11\x46\xa1\xf4\xf6\x9e\x60\x9f\x42\x4b\x72\x5c\xe2\x35\x1e\x44\x26\x1b\xef\xaa\xf7\x33\x49\x6c\xc7\x81\x16\x9f\xb2\xcc\xe9\x37\x36\x62\xce\x7f\x68\x5c\xa4\xaf\xcf\xd4\x07\x56\xea\xa2\x12\x6c\x43\xd2\x57\x81\x53\xce\x14\x38\x77\x8f\xb8\xcc\xc3\xcc\xb1\x48\x4c\xab\x52\x5d\xb1\x9a\x06\xb5\xc3\xde\x48\x2b\x12\x6a\x67\x27\x78\x7a\xb7\x21\xa3\x6c\x62\xe1\xf6\xcc\x06\x74\x71\xe6\x0e\x73\x7e\x83\xec\x2a\x80\x35\x57\x06\xd4\x04\x84\x3a\x59\x40\xd9\x9a\xb1\x7a\x15\x5f\x5c\xc9\xaf\xa0\x8d\xa4\xd4\xa8\xf1\x1e\x8c\xad\x77\xa7\x77\xad\x6f\x79\xa2\xef\x64\x5a\x7e\x62\xf7\xd8\x43\x30\xf4\x47\x8b\x88\xc7\xd1\xa5\x6c\x96\x70\x42\x8b\x65\x6e\xc2\x87\x2d\xd6\x69\x08\xac\x1f\xb3\x75\x85\x28\xed\x06\x9f\xce\x7e\xce\x16\x08\xb1\xb3\x1b\x6c\xff\xed\xe7\x6c\x3d\x18\x31\x20\x2e\x1c\x75\xe5\xb4\x6a\xc4\xd9\x03\xbe\x14\x2b\xbd\xf7\xe7\x0a\x66\x64\x3c\x3d\xde\x5a\x81\x08\x9f\x1a\x2a\x20\x8b\xd3\x1b\xe2\x10\x9e\xf0\x5f\x5a\xdc\xec\xc6\x16\xf6\x90\x77\xfb\x23\x98\xa7\xab\x79\x5c\x8f\xdb\x06\x3b\x90\x9a\x60\x80\x43\xd9\x34\xae\x75\x36\xac\x17\x60\x45\xe0\x8f\xb8\x4b\x60\x85\xf7\x4c\x0e\x1e\x29\xe5\x76\x07\x32\xd5\xe9\x8e\x1a\x4b\x8c\x7d\x30\x3a\x93\xb0\x19\x3a\x17\x92\xf3\x3b\xcc\xde\x46\x8c\x3e\x29\xbf\x9d\xb3\x44\x76\x5c\x2e\x71\x23\xd1\x27\xe7\x85\x0b\xa8\x6b\x2c\xa0\xcd\x79\x18\xfe\x8f\x18\x4b\x72\x6b\xca\xea\x11\xd7\x9d\x2b\xce\xef\xda\x0d\x62\xa1\x1a\xed\x44\x02\xde\x3a\x6c\x05\xa2\xfa\xfb\x24\x41\xd8\x5a\x32\xc9\x3b\x90\x1d\x45\x07\xe2\xa5\x43\x64\xf2\x4c\xfb\x0f\xa6\x25\xd1\xb5\x5c\xda\xaf\x0e\xb0\x40\x8b\x1e\x89\x75\xd3\x06\x75\x5d\xec\x91\x1e\x66\xf3\xa1\x4d\x7a\xdc\xd0\xf2\x85\xff\x0c\x6e\xa5\xf7\x9c\xd3\x80\x23\x29\x38\x21\x5b\xf6\x67\x12\xd8\x62\xec\x13\xb7\x9d\x2b\xd8\x6f\x84\x7b\x81\x77\x6d\x40\x5f\xbc\x7f\x64\x0b\x93\x83\x66\xfb\x6c\x0e\x1c\x5c\x41\xe8\x1d\xca\x5b\x4a\x1c\x02\x7b\xd8\x67\x40\x6d\x9e\xc7\x5c\x2b\x93\x46\xb5\x33\x40\x5e\x5d\x29\x63\x63\x73\x85\x8d\x05\x72\x4a\xdd\x07\x4a\x6a\xcd\x61\xc9\xf1\x7b\x48\x79\xd6\x04\xe2\x63\xa3\x76\xb5\x8e\x16\x08\x27\x18\x51\x9b\x6f\xbc\x53\xc7\x58\xe6\x67\xa3\xcb\x78\x15\xdc\x55\xdc\x87\x35\x80\x6a\xb0\x64\x91\x9f\x6a\x18\x31\x3a\xc7\xfa\x14\x12\x86\x17\x92\xe9\xea\xc6\x39\xd6\xe4\x7b\xa2\xfe\x98\xf9\x2e\xda\x2c\x69\x82\x63\xbb\xc1\xdc\xd8\x9e\xbc\xb5\x2d\xd7\x18\x5a\xaf\x79\x95\x17\x6d\x96\x59\x37\x8c\xea\xed\xfe\x55\x03\xb7\xb0\xc1\xbe\xd0\x06\xfb\x92\xe5\xc1\x0c\xdd\xf7\x16\xfb\xe6\x84\x11\x61\x36\x38\x3e\x32\xb5\x6f\x4a\x98\x08\x31\x67\x1f\x4b\x01\x7e\xec\x25\xfb\x25\xc7\x55\xc9\xb7\x2f\x25\x43\x41\x40\x0e\x36\xff\x88\x69\xf8\xae\xea\xdd\x58\xd8\x2d\x08\x75\xe7\xd6\x30\xc1\x50\x88\x68\xd9\xb6\x5c\x75\xbf\x96\xb5\x58\x7e\x93\x89\x36\xd9\xe5\x8a\xb9\x45\x60\xe4\x5d\x97\xe4\x5d\x8f\xd8\xc6\x39\x6c\xe0\x0b\xd8\x44\x67\x8a\xff\x32\x4b\x39\x54\x5b\x60\x99\x0b\x1b\x4a\x8c\x0a\x98\x7d\x0e\xdf\x24\xd8\x84\x75\x2c\x85\x38\x46\x73\x82\x69\x41\x8c\xb0\xae\x4f\xae\xe5\x2b\xaf\x54\xf5\xc2\xc7\xa4\x32\x50\x4f\x99\x5c\x97\x72\xa7\xf1\x7f\x6e\x8b\xaf\x74\x75\xc1\x5d\x76\xb5\xe9\x3d\x7c\x34\x20\x44\xb8\xcc\x6b\x66\x9a\x6b\xbc\xd0\x22\xdb\x21\xf3\x00\x26\xb9\xd1\xdc\xb1\x7a\xc2\x23\x58\xee\x12\x21\x79\x9c\x9b\xfa\xd7\x23\xbc\x46\xdd\x3e\x71\xf1\xe7\xd0\x61\xa7\xe3\x39\xb3\x1e\xbb\xee\xc6\x19\xeb\xe0\x5a\x61\x6c\xe9\x17\x66\x56\xb4\x2d\x76\xd2\xd6\xe9\x7d\x30\xd7\x9e\x50\x6c\x8b\x7d\x97\x06\xea\xf7\x48\x39\xb5\xfa\x24\x5b\x76\xec\xcb\x68\x5b\x8e\x31\xbc\xab\x85\x14\xf5\x93\xcd\x4f\x0e\x0b\x75\xc6\xe7\x6c\x29\xeb\x52\x2f\x6d\x07\x2e\x36\x28\xa8\x8e\xf7\x2e\xeb\x82\xf0\x7d\x38\xc2\x5e\x53\x03\x9e\x63\xf3\x1b\x92\x79\x76\x8a\xcd\x4b\xe0\x3d\x55\x4c\xf5\x00\x43\x5d\x65\xd5\x3e\x0a\xe7\x42\x2a\x3d\xf1\x43\x62\x2c\x5d\xa1\xd8\x00\xe4\x61\x25\x9e\xa8\xd2\xae\x81\x5f\x0c\xa6\x5d\xe8\x27\xae\x6a\x71\x9d\x98\x8b\xd0\x38\xd5\x1c\xe8\x61\x6c\x5b\x91\xe0\x04\x03\x70\x95\xb4\x9a\x45\x6e\xcc\x51\x77\x80\x78\x2b\x9e\xac\x2e\xac\x32\x7e\x79\x0b\xf4\xe1\x6c\x55\x7c\xdb\xec\x15\x68\x4f\xf7\xab\x47\x9b\x64\xd8\x24\xb9\x40\x34\x3b\xdc\xa5\x41\x6b\xd7\x68\xef\xc9\x0c\x95\x58\x36\x15\x19\xfd\x5c\x24\xa0\xe5\x78\xd2\x69\x3d\x8c\xdb\x6e\x6d\xe0\x5e\xd7\xb0\x1f\xb2\xa5\x75\x41\x2c\xde\xc3\x92\x6f\x98\xec\xe7\xae\x59\xcb\x31\x91\x40\xcb\xba\xb6\x01\xa0\x13\xf6\x5f\xb3\x9a\x40\x50\x65\x08\x2d\xc5\x11\x1d\xc2\xb7\xdd\xab\x0a\x77\xf7\x85\x18\x1d\xa1\xb7\x3b\x09\xbb\x81\xe7\x00\x33\x4b\xb6\xdb\x4c\x0e\x41\x85\x5d\x46\x03\xca\x58\x7d\x96\x92\x70\xf1\x91\xf3\x2d\xcb\x05\x43\x20\x27\x38\x02\x31\xba\x82\x05\x46\x20\xbc\x8e\xe5\x38\xc6\x6b\x56\x74\x58\xa9\x4e\xb4\xd1\x32\xef\xc2\xae\x6a\x8d\x69\x78\xde\x65\x47\x33\x0a\x8c\x10\xd3\x23\x04\x16\x15\x7f\x46\xfc\xa7\xcf\xda\x4a\x8f\x6d\x6c\x8e\xf0\x9e\x74\xaf\xa0\xba\xa8\xad\x8c\xa9\x6e\x7b\x23\x17\xb0\xe3\xe8\xe7\x16\x9e\x03\xe1\xea\xe7\x36\x9e\x87\xc2\xd3\xcf\xb4\x5a\x3d\xd1\xb9\xb7\x22\xcb\xd1\xbe\xe8\x58\x82\xd1\xab\xd7\xc3\x3a\x83\x3d\x9c\xdb\xd6\x50\x38\xaf\x1b\x55\x8d\xbd\x35\xdc\x52\x4d\x2e\xe7\x6b\x47\x47\xd4\x8e\xc7\x4f\x1d\x7a\x1a\x8a\x6e\xb3\x0e\xd1\x7b\x84\x37\x6f\x64\x75\xc5\xed\xc3\xc2\xa6\xee\xfb\xbf\xca\x70\xf7\x29\x61\xce\x19\x9a\xb9\x07\x53\x82\x6e\x07\x80\x36\x21\x5e\xdb\xab\x8b\x9e\x48\x36\xc9\x09\x5e\xcc\x1d\xe6\x64\x2d\x61\x38\xb3\x33\x49\x1a\x89\x70\xd6\x32\xaa\x7b\x1f\xbd\x52\xe7\x39\xa9\xcd\x18\xdf\x67\x3f\xd1\x61\xb3\xe2\x9e\x43\x6d\xbd\xd0\xcf\x23\x89\x5c\xdd\x00\xa2\x2f\x24\x2d\x53\xbc\xa0\xcb\xf7\xb0\x6a\x75\x7b\x8d\xc5\x7d\x84\x16\xea\x39\xd6\x1b\x75\xa1\x2d\xac\x15\xfd\x55\xc2\x2a\xa4\x9a\x3b\xec\x0b\xf9\xe8\x32\x6f\x46\x7d\xa3\x09\x1b\xb6\x2f\x14\x4c\x48\xc3\x88\x58\xdf\xab\xc1\x24\x5d\xc6\x24\x01\xd3\xc6\x48\x88\x25\xab\x7d\x89\xb2\xba\xca\xe6\xea\x2e\x91\xe9\x43\x96\x1d\xd6\x1f\x3f\xd5\x06\x94\x05\x1e\xce\xda\x4b\xe5\x0b\x24\x90\x44\xf4\xdd\x35\x26\xae\xf1\xae\xa3\x77\x48\xc5\x76\x5c\x4c\xf3\xac\xda\x3a\x3e\x7c\xb4\xae\x70\xd8\x05\xb4\x17\xec\x10\xa3\x6d\x8e\x76\x78\x53\x8b\x2e\xc7\xaf\x00\xa2\x26\x6a\x85\x97\xcc\x50\xd8\xe6\xc5\xe0\xd7\xd6\x15\xbb\x9a\x6d\xb1\xd1\xc5\xa5\x59\x7a\x93\x42\x8c\xb6\xdd\xbd\xd8\x00\xbf\xf6\x47\xb5\x4c\x50\x44\xd7\x20\x8c\x8f\xae\xe5\x11\x1b\x2c\x25\x95\x75\xbd\x07\x9e\xda\x0e\xdb\xb4\x3c\x5a\xa5\x8e\x05\x47\xb2\x72\xac\x42\xf1\x5a\x7c\xe8\x35\xc9\xf4\xdf\xb7\x6a\x8d\xf8\xef\x46\xff\x3d\xd5\x7f\x43\xaa\x12\x7d\x4f\x24\xa9\x34\x5d\xe1\xb6\x88\x64\x3c\xef\xbe\xa6\x98\x01\xe9\x86\x68\xe6\x5a\x0a\xb1\x52\x36\xbd\x4a\x15\x60\xa7\xd5\x55\x9f\x9a\x27\xb0\x23\xec\x8a\x63\x04\xd4\x89\xbc\xee\xf0\x7c\xde\xe0\x6f\x29\x01\x60\x55\x60\x92\xb5\xba\x08\x04\x73\x6f\x05\x6a\x29\xf7\x60\x9e\xc5\xea\x1a\xf1\xf5\xe0\xc5\xf8\x23\x2f\xa5\x10\x33\x7b\x0d\x80\x39\xb7\xa9\xe4\xca\x01\x1c\x79\xbb\x85\x01\xd9\x01\x57\xd2\x3e\xd0\x99\xbc\x32\x2d\xd3\x14\x2f\x14\xeb\x3f\xdc\x7e\xa1\x75\xe3\x09\xdb\x02\x82\xa6\x11\x55\x95\x76\xc3\x48\x7a\xc6\x96\x0c\x58\x49\x4b\x79\xce\xfe\x57\x5e\xe8\xea\xd5\x84\x5a\x39\x6d\x51\x87\x2a\x6b\x1c\x2d\xf8\x87\x42\xef\x50\xd1\x19\x94\x75\x01\xd0\xe2\x78\x17\x7a\x16\x40\x49\xa4\x4a\x00\x5c\x05\x2d\x8b\x44\xc6\x9b\xa4\x1d\xe1\x3a\x17\xb7\xbc\x95\xc7\xc2\x73\x34\xeb\x8f\x78\x57\xcf\xb4\x1d\x22\x66\xa5\x5c\x95\x5a\x40\x5f\xde\x52\xff\x17\xc4\x2e\x9a\x3b\xd7\x90\x89\x2f\x44\x98\x51\xa5\xea\xe9\x95\xf8\xc8\x28\x22\x1e\x88\xdf\xad\x51\x64\xf5\x84\x8b\xdf\xed\x11\xed\x55\x0f\xbf\x3b\x2d\x2b\x96\x66\x43\x7e\x10\x1e\xb7\x07\x44\xd9\xd7\xf2\x88\xf7\xe2\x91\xb4\x1c\xdb\x49\xec\xb7\xee\x9e\x24\x98\x81\x6c\xd5\x46\x72\x3a\x6c\x78\x4c\x73\x81\xea\x7c\xa8\xd2\xb3\x1c\xdb\xbb\x2f\x3c\x7e\x79\x2c\xad\xa1\xea\x6c\xd4\xd1\x2d\x25\xb7\xb8\x4c\x42\xca\x99\xa3\x5a\x2d\x6b\xa6\x84\x58\xd9\x39\x76\x5d\x6a\x5b\x21\x33\xc6\x8d\x14\xe2\x9c\xa5\xe8\xf9\x2d\x83\xc1\x13\x09\x1a\x79\x53\x98\x3a\x91\x2b\x9e\x29\xaf\xc5\xe6\x0d\xcc\x18\xff\x5d\xd5\x33\x48\x8c\x47\xbd\xf2\x04\xce\xfc\x8a\x10\x7c\xa1\x52\x36\x2b\xdf\x61\x2f\x87\x0c\x74\x2e\xda\xc4\xad\x52\x79\x0a\x27\xe6\x9b\x72\x60\xe6\x50\x96\x6b\xec\x46\x4c\x4a\x47\xcc\x22\x2e\x75\xc0\xc0\x27\x7b\xa5\x74\x77\x2f\xb5\x11\xae\x94\x85\x76\xf7\x78\xc2\x75\x38\xc2\x01\x28\xd3\x30\xb4\xa0\xf1\x48\xbc\xfb\xaa\x83\x3f\x9b\x36\x94\x0e\x9b\x83\x12\x86\x37\x04\x0b\xdb\xcf\x34\x5b\x04\xf7\x7c\xb6\x01\xc1\x89\x22\xb4\x32\xe0\xea\x78\x9e\x29\x7c\x49\x7e\x06\xe1\x3e\xfe\xbc\xe5\x98\x14\x52\x1b\xf6\x62\x52\x8e\x94\x35\x52\x5d\x8e\x49\xb9\xbe\x65\x08\x62\xb1\x42\x46\x9c\xb0\x7b\xcf\xa6\x48\xf6\xc6\x75\xa1\x47\x8e\x60\x01\x14\xb4\x19\x9c\x2b\x52\x87\x3c\xa1\xe0\x92\x17\xac\x75\x80\xff\x6b\x14\x75\xe6\x32\x78\x7c\x12\x35\x8b\x06\xdb\x54\x6c\x3e\xb7\x85\x80\x41\xa5\xc1\xa8\x7b\xef\xd4\xe5\x76\xca\x56\x88\xa0\xc3\x38\x95\x19\xf2\x00\xc8\xe5\x0e\xee\x0d\xb6\xa6\x37\x74\xc8\x3b\xcb\x63\xdb\x63\x57\x28\x00\x28\xfb\xd6\x8a\xa9\x75\x20\xdb\xdb\x16\x55\x1e\x31\xc0\x0f\x85\xb0\xad\x8d\x47\x9b\x78\xa2\x2e\xa4\xaf\x7d\x15\x06\x52\xfb\xe0\x7a\xae\x18\x47\x7a\x9d\x49\x51\x2e\x8d\x02\xba\xd1\xd6\x69\xd8\xb1\x35\x07\xe9\x55\xbc\xae\x07\x40\x4f\x92\x22\x65\xb7\xd5\xca\xa6\x5e\xb5\x69\x50\xb6\xdb\xa1\x6d\xd8\x12\x26\xb3\x86\xb8\xa2\x35\x57\xd0\x46\xdd\x80\xc5\x4b\x89\xa2\x8f\x85\x0d\x11\x6d\x39\xea\x99\x23\x91\xa0\xaa\x60\xf6\x9f\x05\xff\x1c\xeb\x9f\xee\xc4\x5a\x49\x75\xc8\x01\x2d\xdc\x63\x04\x3e\xe4\x6c\xd0\xf4\x55\x02\x42\x18\xf2\xf8\x8d\x11\xbb\xeb\xaf\xbc\x4a\xfb\x59\x7e\xd3\x7e\xba\xf8\x73\x4a\xab\xee\x95\xec\x7e\x1a\x5f\xa0\x87\xc1\xa5\x8b\xce\x83\xa0\x80\x83\xbc\x26\xd0\xe6\xb8\x93\x07\x42\x6b\x3b\xed\xb6\xc2\x04\x0d\x2f\xa8\x4a\xb5\x93\x87\x6c\xce\xbd\xb4\x99\xa0\xa8\x28\x53\x8a\xc0\x82\xf6\x1a\x8e\x44\xa8\xbe\x6e\xa2\x8c\x12\xd5\x15\x62\x4a\x79\x8e\xab\xe8\x23\x17\xa4\xc3\xd6\x28\x18\x44\x52\xdb\x7a\xa3\x09\x0b\xbc\x2e\x13\xc6\x44\x28\x0f\x73\xe2\xb7\xa0\x1e\x5b\x4a\x28\xa7\x63\x65\x52\x38\x3c\x23\xfb\x55\xf1\xb2\xb8\xa2\x8d\x60\x24\xcf\xf9\x4d\x16\x82\x6f\x23\xa1\x9c\xa6\x6a\x4a\x33\x7d\x37\xa5\x9e\xf6\xa9\xa5\x41\x07\x18\x78\xcc\x14\xeb\x75\x78\xb6\x26\xb4\xb1\xef\x16\x58\xd1\x0f\x79\x0c\x6f\xcb\x23\x46\x07\x71\xb7\xe6\x08\xae\x71\x1d\xbb\xe8\x38\x98\x48\x1a\xa8\x3b\xb4\x26\x34\x8e\xd6\x55\x8b\x66\x88\x1b\x77\x30\x5b\x1d\x54\xd1\x61\xc6\xcd\xeb\x09\x3c\xd3\x65\xe3\x39\x4d\x52\xd1\x62\xdb\xe8\x15\xaf\x8c\x2e\xc7\xee\x49\xc1\xbc\xd2\x15\xaa\x7f\xde\x62\x4e\x7b\x7f\xd1\x6a\x66\xf3\xf7\xb2\xe9\xd0\x19\x7e\x39\xb0\xba\xe2\x85\x44\x60\xcc\x81\x9c\xe2\xba\x85\x35\xbd\x69\x43\x2e\x6a\x57\x54\x77\x87\x79\x08\x41\x10\x91\x76\x05\x2c\x6c\x36\x7a\xf4\x7a\x5a\xb5\xf2\x01\x54\x2e\xa5\x50\xfe\xfa\x1e\x73\x7e\x1e\xd4\x20\x8c\x03\x69\x02\x36\xf3\xbc\xb0\x0d\x40\xd4\x41\xa7\x88\xfc\xf2\x84\xf0\xe6\xb2\xd6\x77\xd8\xa2\x37\x66\x46\xb2\x95\xf3\x5b\xb6\x8d\x69\x14\xe3\x40\xa3\x42\x69\xda\xa1\x80\x17\xc4\x4a\xe8\x49\xc7\xb1\xf6\x3f\x74\x48\x82\x2b\xd4\x38\x81\x65\x29\x02\xb5\x9e\x41\xc2\x80\x37\x86\x1f\x08\xd7\x1e\x68\xa7\x0a\x41\x4a\x6d\x17\x47\x74\x82\xfb\xa9\xaa\x70\x32\xd5\x3d\x6b\x37\xe2\x40\x12\x47\x23\xc6\x99\x14\x76\x67\xe9\x58\xa1\x70\x6e\x1b\x7e\xa9\xd6\x80\xf6\x6b\xb0\x72\x7e\x57\x66\xdc\x2c\x33\xa6\x32\x9e\xe8\x8e\x37\xd8\xde\x53\x8c\x02\x4d\xaf\x5a\x33\x09\xc0\x52\xed\x33\xc7\x04\xa8\x41\xc5\xea\xc2\x28\x3c\x66\x30\xf6\x08\xc5\x93\xb6\xd0\xed\x91\x0e\x52\xe8\x56\x7e\xdb\xa5\x44\x60\xaf\xe8\x81\x55\xb8\xe0\x31\xed\x0e\xad\xde\x09\x89\x17\xef\xce\x72\xd4\x49\xbb\x65\x79\x6a\x8a\x29\xa1\x69\x18\x12\x11\xf7\x49\xdb\xa1\x25\x8b\x2a\x57\x16\xfe\xf6\xc5\x4c\xb5\x2d\x92\xaf\x43\x61\x85\xd6\xd0\xbe\x90\x2e\x4c\x38\xb4\x95\xd8\xef\xe5\x19\x85\xd2\x75\x12\x05\x95\x20\x3a\xb2\x8d\x98\x2d\x99\x4b\xb1\xb4\x4d\xa8\x0f\xca\x2f\xb4\x4b\xe6\x62\xdf\xb2\xd0\x15\xa2\x84\xb1\xc5\x3f\x76\x99\xa3\x9f\xb8\x5f\x33\x6c\x39\x7e\xd7\xd5\x71\x2d\x6c\x4c\xe2\xda\xed\x67\x62\x35\x8f\x10\xc9\xf6\x90\x00\xbc\x5a\xb5\xd8\xd2\xdc\x17\xce\xf3\xac\x5d\x31\xd6\x95\xde\x88\x10\xee\xb4\x36\x27\xb7\x35\x63\x55\x5b\xc5\x10\x31\x38\xed\xea\x65\x08\x30\x7b\xbe\x50\xfe\x15\xab\xed\xec\x67\x0f\xab\x30\x25\xe1\xb0\xc4\xa2\xd9\x1c\x11\x78\xe1\xee\xaf\x09\x0f\xd8\x0e\x26\xc8\x41\xa2\x1a\x36\xb8\x56\x4f\x7b\x8c\xf1\x70\xaa\x3b\x9b\xdb\x58\xcd\x2e\xe2\x9a\x45\xa1\x62\xb0\xd9\x52\x8b\x23\xda\x07\x41\xeb\xd4\xee\x7d\x9f\x7b\xfb\xda\x81\x88\x9f\xc9\x12\xbd\xf3\x59\x3a\x3a\x39\x5b\xc7\x20\xbf\x68\x28\xea\x8a\x55\xd7\x6b\xc5\xb3\x76\xcf\x2e\x1b\xf0\x0d\xfb\x9e\xa3\xd3\xcf\x14\x7b\xb1\x08\x79\x0f\x52\xf4\xab\x4f\xb4\xfc\xa9\x80\x61\x7f\xbd\x74\x8e\xb7\x63\xb3\x99\x12\x71\x9b\xb7\x1c\x6d\x4e\xf0\x52\x7a\x3d\x44\x10\x94\xf6\x30\xf6\x1a\xff\xa3\xb4\x0b\xe8\xe4\x39\xcc\xe7\x10\x72\x3b\x61\xa3\xf3\xd4\x44\x1c\xf8\x75\x78\x9a\x47\x5b\x7c\x28\x84\x97\x79\xfc\x76\xf0\x27\x05\x7a\x7b\x05\xe8\x2d\x17\x78\x6d\xc4\x34\x98\xe0\x36\x14\x18\x71\x01\xef\x8f\x0a\x10\x3c\x6e\x71\x68\x1d\xa2\x2f\x5b\x43\xcb\x25\x66\x90\xc9\xe0\xfb\x8a\xb9\x67\x2e\xdc\xbc\x1f\xf2\x9a\x57\xac\x6f\x42\x91\x00\x37\x54\xab\x30\x9e\x8f\x95\x84\x3d\x58\xc7\x18\x7f\x98\xf0\xe1\xbe\xb0\xd7\x04\x66\xfc\x2a\x1c\x96\xb9\xcf\x58\xc7\x5e\x38\x42\x15\xf2\x13\xb9\xd7\xf2\x9c\x55\x34\xdf\xcb\x74\x40\xe7\xce\xd6\x3a\x5a\x28\x94\xcf\xac\x34\xda\x39\x7b\x15\x05\x88\xf6\xf6\x49\xa1\x53\x27\x78\x75\xac\x96\x1d\x9c\x5f\x71\x71\x98\x65\xa7\x4a\xd4\xf6\xa6\x8a\xb6\x4e\xee\x8a\x99\xd4\x46\xbc\x89\xad\xd3\x68\xa6\x62\x99\xdb\x5f\x02\xa0\x7c\x44\x39\x6d\x51\x03\x5c\x54\x6a\x21\x67\x76\x3d\xb8\xf1\xdc\x26\x39\xbb\x97\xd8\x1a\xc3\x7c\xe4\x2e\x24\xba\xdc\x8e\xe5\x27\x3d\x77\x75\xa6\xdb\x96\x31\x3f\xf9\x7b\x21\x57\x3a\xac\x27\x44\x8b\x47\x60\x2b\xbd\xf7\x36\xaf\x5a\x5f\x28\x6f\xad\xc3\x75\x6a\x9b\x14\x4d\x61\x20\x1c\x1f\xbc\x80\xf6\x5b\x8f\x96\x6d\x0c\x94\x30\xc7\x2e\xe8\x7d\x60\x41\x9e\x19\x51\x3b\x0d\xc0\xcf\xb2\x74\x2d\xf9\x6c\x4b\x46\x75\xb7\xda\x56\x01\x85\x68\x78\xd1\x6a\xc4\x3d\x70\x48\xc1\x00\x46\x66\x71\x2e\xd9\x48\xbf\x56\x16\x01\x04\xa7\x65\xf9\xd6\x50\x0c\x86\x68\x75\xdc\x79\xd3\x07\x19\x2e\xa0\x28\x4c\xd1\xde\xbb\x04\x7b\xfa\x64\xd7\xdd\x8d\xf7\x3f\xd3\x2f\xf5\x84\x7e\xd9\x3e\xfa\xe5\xdc\x65\x06\x88\x7b\x88\x6f\x6b\xb4\x8e\x89\xd8\x49\xa8\x9e\x1b\x05\xad\xf9\x42\xc1\x5e\xe5\xb7\x2c\x02\x1d\x1e\x48\x7c\x52\xf9\xde\x3c\xa1\xee\xd8\xad\xd2\x61\xad\x0b\x87\x5f\x88\x09\xbf\xd6\xa6\x7d\xb1\xa3\x21\xda\x7c\x54\x81\x5d\x75\xe2\x43\xb2\xc1\x90\x51\xde\x11\x1b\x28\xdc\x96\x56\xc4\x5d\xab\xdf\x3e\x55\xe3\xc6\x79\x1a\xa0\x66\x5f\x3c\xbf\x58\x43\x5e\x3a\xc7\x5a\x4a\xf1\x21\x3d\x52\x4c\x43\x31\xbe\xff\xbe\x21\xbd\x75\xc7\x66\xe5\xcd\x63\x2d\x14\x2e\x1a\x9b\x8f\xec\x28\xcd\x14\x89\xdd\xab\x4f\xc9\x5c\xf1\x43\x12\x5b\x34\x71\x0d\x5a\xca\x75\xcd\x39\x9c\x3d\xa9\x45\x62\x8d\x21\xd5\x55\x87\x31\x33\x09\x94\xf7\xce\x37\xa9\x04\xe5\x93\x2a\xd0\x52\x89\x9d\x1d\x5b\xc5\x31\x99\xb5\x54\x62\x53\x65\x5f\x28\x1f\x9a\x73\xff\xae\x96\x56\x17\xbf\x95\x56\x70\x9d\xce\xdb\x35\x59\xf4\xde\xf0\xe0\xef\x50\xd1\xa7\xe4\xbd\x83\xf9\x52\xce\xbb\xdf\x78\x77\xf7\x4e\x7b\x56\x9c\xca\x1c\x52\xf6\x0a\x41\x46\x4d\x0a\x1b\xee\x55\x75\xd6\xac\x4a\x5c\xcb\xbd\xba\xd6\x8a\x8d\x5e\x9e\xe5\x77\x8a\xce\x0f\xfc\xb1\x9b\x74\x19\x4d\x5c\xb7\x2b\xf6\x38\x24\x15\x37\xd6\x21\xd6\x27\xaa\xe6\x56\x3b\x79\xac\xd0\xca\x2d\xad\xaf\xc6\x9d\xd4\x39\x8e\xe5\x8a\x52\x4c\x42\x2a\xad\x1e\xc3\x07\xca\x3a\x5a\x39\x6c\x23\xf0\x2f\xbe\xf2\x3d\xed\x00\x5c\x2b\xb0\xcd\x80\x84\x12\xe2\x50\xdc\x1f\x73\xf6\xb1\x14\xae\x15\xc1\x22\xe8\x30\xf6\xf5\x84\xe7\xec\xa1\x9f\x9f\xe9\x82\xe6\xe7\x1a\x98\xf4\x42\x86\x56\x4f\x9c\xcb\x94\x49\xed\x42\xae\x88\xd6\xce\xe5\x19\x13\xdb\x85\x3c\x25\x6a\xbb\x94\xb9\x5a\xf9\xdf\xa8\x06\x34\x4f\x7d\x6a\x52\x8d\xb3\x55\x2b\x9e\xbb\x07\xcb\x98\xd2\x68\x7d\x7b\x26\x4c\x75\x29\x07\xfa\x85\x0f\x9b\x0d\xcd\xc5\x19\x08\x2c\x60\x49\xff\x82\x83\x34\xac\x31\x3e\xd6\x04\xa6\x63\xb7\xf7\x09\x0f\x41\x27\xa8\x7b\xc4\xeb\xb3\x65\x6f\x1b\x08\x03\x5b\xa0\xe7\x6d\xdd\x1a\xff\x0c\x75\xb4\x37\x80\x8f\x38\x53\x06\xc6\xae\xa4\xd1\xdf\x02\x30\xc9\x7e\xda\xaa\x0a\xd9\x17\x70\x8d\x39\xdf\x60\x94\xa9\xe6\x73\xbf\x9a\x46\xd1\xfd\x8c\xf6\x56\x19\x71\x0d\x33\x3f\x87\xbd\x7d\xf7\xd9\x78\xc2\xf5\x39\x6e\xaa\x7f\xe4\x7f\xad\x8b\x7f\xeb\x48\x9b\x8d\xba\x46\x06\x08\x6f\xcf\x2f\x31\x2d\x1c\x1f\xf7\x21\x99\x25\x33\xd9\x9c\x28\x4c\x12\x07\xd5\xad\xe4\x27\x30\x86\xf6\x24\xb1\x87\x6a\xa7\x38\xc4\xf8\x4e\xd3\xf9\xf7\x1c\x1d\xa1\xb7\xd0\x50\x28\xef\xf8\x0e\x70\x01\x4d\xf5\x17\x2d\xab\xa9\x62\x05\x24\xe2\x63\x62\xed\xf0\x3b\xf7\x85\x37\x5e\x77\x1b\x02\x48\x7c\x13\x46\xbc\x91\xe7\x92\x83\xde\x58\x73\x7a\x66\xe3\xa9\x80\x70\xe5\x63\x7e\x6a\x58\x1b\xd3\xed\x57\x62\xc3\x5d\x62\xc3\xbd\xdb\xc3\xd6\xc8\x0a\xad\xae\x98\xdc\x7e\xdf\xd2\xad\xa3\x2e\x34\xd1\x09\x2f\x16\xb6\xb4\x4b\x5b\xda\x65\x6a\x7c\xae\x67\x69\x2b\xc7\x6c\x69\xef\x37\xb4\x48\xa7\x91\x61\x64\x40\x4f\x75\x6e\x6e\x4b\x1c\x00\x32\x4f\x07\xbf\xf0\x8c\xfd\x5b\xd0\xa2\x27\x3c\xfd\xdc\xc1\xf3\x52\xee\x61\x0d\xd1\xf3\xfe\x66\x8f\xe7\xe0\xfd\xde\x1b\x06\x9c\xc9\x4f\x97\x25\x26\x12\xb1\xbe\xe3\x63\xf9\x73\x49\x5e\x95\x13\xc6\xd5\x1c\xd6\xc7\xd1\xe9\x4e\x8f\x39\xfb\x03\x04\xad\x0a\x8e\x35\x1b\xe9\x83\x15\x7c\xb6\x2c\xad\x84\x8f\x84\xe3\x7e\x68\xab\x41\xbf\x6d\xd6\x91\x52\xdd\x66\x22\x53\x31\x8c\xf5\x33\x29\xdc\xf1\x56\x9f\x08\x21\x1c\xcf\x08\x75\x29\xad\x09\x42\x2c\x8f\x60\xbd\xe0\x1d\xdd\x3b\x6f\xb8\xd1\x47\xbc\x7f\xcc\x09\x17\x87\xa3\x5b\x87\x89\xfd\xf3\xd0\x16\xba\xc7\x99\x8e\xd4\x5e\x9b\x60\x07\xc7\xe7\xd9\x98\xc9\x71\x4d\xc6\xda\xa9\xcf\x76\xbe\x70\xdb\x20\x70\xe0\x04\xf7\x27\xc1\x0a\x31\xa9\x46\x37\x6d\x9c\xa9\x80\x05\x45\xcd\x98\x17\x96\xa8\xe0\xae\x80\xad\xe6\x92\x37\x2f\xce\x50\xda\xe0\x80\x4e\x74\xd5\xd6\x10\xe7\xc7\x42\x3e\x01\xb5\xba\x50\x7b\x4d\xdb\xd9\xa3\x42\xbd\x5f\x17\xea\x91\xf8\xab\x0b\xdd\x96\xb4\x35\x7c\x2a\x34\xfa\x75\xa1\x6e\x75\xf2\x08\x85\x1e\x72\x6a\x69\x68\x82\x1b\x5e\x7f\xdd\x2f\xc6\xfc\x3b\x1b\x33\xf1\xa1\x03\xeb\xd9\xf6\xf2\xf3\xe8\xb9\xc0\x89\x8d\x79\x3e\x6e\x1e\x3f\xfc\xb9\x3b\x9c\xbf\xb4\xe1\xf4\x3b\x85\xa6\xd1\x49\xbe\xe6\x6f\x8c\x19\xf9\xed\x92\xfa\xef\xfa\xe7\xc8\x3f\x4a\xbd\x6a\x69\x04\xe2\x82\x39\x54\x11\x09\x36\x9c\x83\x91\xa8\xa6\xb4\x45\x09\x6e\x24\xaa\xe9\xea\x50\x8d\x81\x7f\xea\xfe\x19\x7e\x72\xb7\x2a\x83\x09\xa9\x95\xa3\x7f\xc0\x8d\xca\x39\xc7\xa9\x85\xc9\x11\x22\x57\x61\xca\x72\x0e\x5b\xd4\x06\x27\xd9\x88\xa2\x72\xdc\xc3\x16\x77\x72\x28\x44\x84\x17\xad\x05\x90\x4f\xf5\xa2\x67\x5e\xdc\xe2\xb0\x69\xcf\xff\x68\xa3\xb1\x52\x37\x76\xfc\xbf\xd8\x58\xe0\x1f\xb7\x59\x4e\xe0\xfd\x27\x4e\x07\x78\x77\xda\x1c\xe6\x02\xf4\x40\xfd\x81\x39\xca\xd3\x96\x30\x6c\x0f\x3e\x97\x3f\xe4\xbd\x5b\xea\x88\x71\xcf\x72\x7a\x79\x1b\xae\x8f\x6b\x79\xa1\xe3\x98\xce\xa0\xff\x98\x03\xb0\x3d\xa3\x7a\x0b\xa3\x15\x3b\x2d\xcb\x79\x98\xb5\x97\xf2\xb4\x4d\xab\xf0\x7c\xd6\x36\xd2\x15\x61\x00\xcf\xd0\x3e\xb0\xa5\xc7\xb5\x83\xe0\x86\x95\x54\x4f\x58\x99\x14\xaa\x7b\x5c\x1b\x07\xed\x47\x44\x1f\x12\x89\x2b\x3b\xaa\xd9\x76\xe7\x95\xd2\xed\x86\xef\xbd\x03\xdf\x3b\x52\x6e\x3b\x08\x84\xef\x07\xcc\x27\x1a\x40\x2d\x91\x2d\x76\x76\x8e\x89\xa1\xb9\x56\xdf\xc9\x6c\xdf\x0a\x1a\x7a\x81\x10\xd6\x08\x47\x50\xe9\xf9\x43\x8a\x0f\xf5\xc6\xe7\x93\x86\x6b\xf9\x5d\x8c\x05\x57\x01\x23\x53\xe7\x5f\x37\x73\x31\xee\x43\x81\xb6\x47\xfb\xe2\x84\xcd\x2e\x6d\x44\x65\xb9\x09\x83\xbe\xf6\x92\x30\x9f\x77\x21\x57\xed\x6f\x51\x51\x35\xe4\x73\x6b\xf3\x95\xb3\x56\xe7\xaa\xca\xba\x69\xee\x09\xca\xb3\xbd\xab\xb2\x72\x70\x13\x1f\xb7\xe1\x18\xa9\x05\x03\xe7\xd4\xf0\x75\x4f\xa8\xc1\x2c\x60\xee\x71\xc5\xc1\x7f\x7c\x8a\x84\x63\x4d\x13\x75\x49\x80\xbc\xd5\xc6\x60\x3c\x1d\xf1\xc1\x06\x81\xfa\x8c\x08\xd0\xd5\x99\xb1\x35\xb8\x04\x22\x3c\xab\x7b\x1f\xdf\xfb\xdf\xe7\xb5\x37\xef\x31\x3c\x38\xac\x26\xf6\xf8\x57\x58\x3f\x06\xd6\x5f\x35\xb1\xbe\x77\xc3\x83\xc9\x1a\x5a\x7c\xce\x6b\xb1\x62\x95\x1f\xd2\x57\x3d\xfb\x35\x45\x05\x24\x0f\x9f\xd1\x83\xab\x16\x56\x5c\x80\x1c\xb5\x8d\x0a\x7e\x8c\xd6\x96\x6f\x34\xf0\x9d\x0f\x63\x91\x09\x84\xe8\x6f\x3c\x1e\xe9\x16\xea\xb4\x68\xc6\x34\xe3\x95\xfd\xba\xf5\xa0\xbf\x36\x0f\xa2\xe1\x4d\x6b\xba\xc5\x92\x57\x6f\x7c\x21\x7a\x78\x43\x5c\xb4\x2b\xba\x8e\xa5\x7d\xd6\x04\xcb\x52\x57\x77\x17\xd1\x4e\xf7\x2c\x5a\x5b\xc6\x88\xf2\xa1\x68\x33\x22\xfb\xad\x46\x74\xbf\xc9\xfd\xa6\x8c\x19\x31\x7c\x28\xee\x27\xdf\x97\xe0\x2e\x79\xb0\x1b\x0e\x4c\x63\x93\x5a\x28\xb6\x35\xf7\x71\xf2\x85\xdd\x9f\x6a\xab\x6e\x98\xe7\x5f\xd7\x89\xce\x89\x62\x5b\xca\x08\xb6\x94\xd6\xa1\xb4\x22\xd1\xbd\x50\x7c\x5e\xe0\x9a\x4d\xba\x2a\x51\x8d\x25\xb8\x94\xb4\x06\x89\xfa\xb2\x08\xd1\xb7\x35\x78\x93\x34\x3a\x1a\x63\xec\x73\x5c\x4a\xcb\x2a\x3c\x9c\x34\x86\xea\x72\x8e\x13\x44\x62\x8e\x78\x16\xc7\x43\x90\x40\xfb\x8e\xb6\x75\xd7\x9f\xb3\x50\xd3\x61\xf9\x0d\x13\x9a\x81\xe3\x85\xcb\x84\x96\x40\xef\xf9\xe4\x98\x45\xc8\xd8\x3e\xc2\xa9\x54\x9b\xa1\x62\xb0\xec\x10\xc7\x79\xc9\x6f\x2d\x27\xda\x99\x1b\x32\xb4\x05\xef\xdd\x65\x76\x39\x97\x3b\xaa\x8e\x86\x06\xf7\x17\xdb\x0e\x56\x08\xa6\x3f\x53\x6c\x3b\x38\x55\xb0\x1d\xd8\x1b\xbd\xc3\x2e\x6e\xad\xae\x68\x2d\x11\x72\x75\xa1\x38\x92\x6b\x08\x48\xc3\x89\x6e\x6e\x5f\xa2\x6f\x7b\x21\x74\x02\x5e\x9f\x47\x1d\xa9\xc9\x08\x62\x8b\x1a\xaf\x18\x35\x9d\xf2\xb1\x49\x3e\xfe\xba\xc6\x9f\x13\xb6\x6c\xfd\x60\x11\xff\xaa\x45\xb2\x36\xcf\x2e\xb5\x97\xeb\x5a\xd6\x66\xf2\xc6\xdd\x43\x76\xc6\x9f\xe3\xe5\x8a\x5d\x89\x1b\x79\x4f\xd4\xf0\x29\xe1\xb8\x65\xc8\x78\xeb\x6f\x74\x3f\x1b\xc7\xbe\x80\xd1\xbb\x1e\xb4\x8d\x16\xba\x87\xa8\xce\x6e\xa9\xe3\xb9\xdf\xf4\xd1\x05\x3e\xf4\x82\xad\xee\x83\x5a\x10\x78\xa3\x48\x8e\x3d\x86\xed\x66\xb5\x90\x70\x5d\x73\x16\xca\x13\xe2\x88\xc8\x62\xe4\x61\x9b\xea\xf8\x8f\x80\x3a\x6b\x3f\x9d\x77\xea\x98\x90\x8e\x0d\x83\xa4\x2f\x4e\x91\x63\x29\xcf\xe8\xef\x9d\x0e\x36\x0f\xdc\xbd\xe4\xfb\x5c\x5a\x3d\xcb\x17\x3d\xe7\xb8\xc3\xc0\xfe\x44\xdb\xd6\x8e\x3b\x56\xef\xb5\x13\xb8\x34\xa1\x7c\x2c\xc0\x99\xab\x5d\x4f\x5b\x0a\x88\x6b\xad\xd0\xcf\xd6\x05\x3b\x7c\x75\xb0\xe0\x0a\xc1\xc5\x77\x55\x60\xa9\x0f\x1b\x57\x5f\x28\x9f\x4f\x3d\x52\x86\xa1\xc9\x30\x63\xab\x1f\x02\x55\xbb\x3e\xfc\xf3\x62\x25\xd7\xae\xa6\xdc\x50\x8c\xbc\x2b\xec\x62\xff\x42\xe2\x34\x9c\x7a\x84\x1d\xfb\xd5\xd8\xa7\x85\x77\x63\xce\xdf\x0d\x85\xc2\x61\x52\x01\x74\x72\x29\xf9\x24\x14\x07\x19\x69\x23\x00\xc1\x42\x71\x2a\x39\xfa\x87\x63\x00\x99\xcb\xdc\xb1\x5d\x5c\x9f\x4b\x9a\x32\x38\xa0\xda\x8f\x1a\xb5\xdf\xeb\xda\xc7\xb4\xb2\x55\xed\xa4\xc5\x98\xda\x7d\x21\x8e\xeb\xda\x7d\xe1\xb2\x03\xec\x7e\x86\x1b\x77\x9c\x55\xc7\x38\x5d\x1d\x1d\x71\x55\x99\x74\xeb\x3f\xa7\xb2\x62\x83\x0a\xf0\xa0\x90\x57\xf0\x86\xb3\x0f\x97\x8f\x0f\xf9\xac\xa1\x6f\xe8\xd5\xd0\xbc\x4a\xab\xe3\x79\xb8\x1a\x03\x91\xb6\xf3\xfd\xb4\x73\xb9\x9f\x38\xa2\x3a\xb0\xa7\xcd\x01\x25\xcf\x3b\xe4\xc3\x78\x96\xb2\x26\x04\xfc\x98\xc1\x94\xca\x1a\x91\xce\x5d\x4a\x80\x8c\x82\x7d\x2e\x24\xff\xab\xb3\x89\x06\x23\xdf\x54\xa7\x84\x63\x7d\xc1\x44\x25\xc3\x60\x6d\x11\x87\xec\xf1\x3e\x52\x56\xc8\x16\xcf\x58\xfa\xd9\xed\x04\x7d\x12\x7c\x62\xf5\x5d\x0e\xac\xbe\x35\x12\xcb\x9f\xdc\x0d\xc3\x9b\x01\x58\x6c\x26\x85\xe5\xaa\x3b\xbe\xfc\x6a\x23\x77\xa0\x9e\xfe\x35\x49\x8a\xbe\x3d\x4a\xb5\x45\x9f\x79\xe3\x2b\x07\x96\x9b\xc3\x3d\x3d\xf5\x94\x29\x2a\x60\x47\xa5\x7c\x6f\x98\x34\x52\x69\x05\xea\xf5\x12\x5e\x00\x3b\x1a\x70\x15\x6b\x1a\x7c\xa0\xa6\x3c\xa2\x19\xfa\x4d\x90\x4f\xd8\x93\x42\x9b\xde\x5d\xc6\xa5\x51\xa5\x59\x9c\x31\x24\x74\x84\x55\x48\x7b\x2c\xaa\xbe\x20\x7a\x70\x7b\xab\x77\x11\x29\xc7\x1b\xd0\xcb\xf3\xf6\x96\xc8\xf6\x53\x4f\xde\x78\xa3\x8f\x59\x84\x95\x6e\x83\xd3\x15\x2e\x3b\xbe\x43\x78\xc8\x18\x67\x9e\x70\x3c\x4b\x8f\x63\x24\x57\x1c\x43\x9c\x55\x61\x3b\x95\x67\x6a\xc4\x06\xc4\x2d\xf5\xb2\xeb\xb3\x45\x61\x0c\x8b\xc2\x9c\xcd\x00\xf6\x4c\xce\x6d\x08\x19\x9d\x40\x05\x87\x3a\x34\xe2\xb6\x35\xe7\xe8\xd4\x1f\xde\xd1\x12\x10\xcc\xee\x0b\x0b\x02\x94\xf7\x14\x47\x7d\x38\xd7\xd8\x48\xc3\x9b\xc6\x35\x44\x3a\x9a\xa5\xb4\x0d\x01\xbc\xc9\xc7\xec\x61\x25\xf3\xae\xd5\x1d\x1f\x0d\xc5\xea\xc1\x9a\x58\x23\x5c\x8c\x03\x83\xd1\xa1\x66\xd2\x7c\x25\x46\x07\xf6\x49\xe1\x59\x91\xf8\xe0\x43\x8b\x81\x10\xfe\xa1\xcb\x7e\x46\x13\x63\x44\xcc\x62\xdb\xc2\xb2\xf3\xfd\x13\xfd\x05\x3b\xc5\xc1\x03\x82\x55\x9b\x23\x10\x93\xb6\x15\x58\x5d\x7d\x52\x2e\xd3\xd1\x23\x6b\x89\x28\x64\x97\xaf\x8c\xb0\x10\xd5\x43\x94\x37\xe2\x3f\x13\xe1\x12\xbb\xe8\xe2\xb0\x27\xa0\x62\x7e\xbf\x77\xe5\x4f\x93\xd4\xcc\x3d\x34\x8e\x8e\x5c\x63\x93\x51\x65\x34\x84\x27\xd3\x44\x9c\x9c\xb0\x07\x75\x8a\xcc\x2e\x42\x2f\x71\x17\xd5\x50\xa8\xee\xb2\x6b\x55\x27\x69\x9f\xad\xa1\x70\xba\x98\x93\xd6\x2d\x42\x3b\x39\xd0\x65\xdb\x35\xee\xc0\x63\x29\x1c\xff\xed\xa1\x2a\x42\x4b\x33\xd4\x50\xb8\x35\x47\x9c\xbe\xcf\x73\xca\xcb\x58\xf9\x31\x87\x6c\x05\x74\x45\xe7\x0e\x13\xd3\xd7\x7a\xcf\xdc\x6f\x9e\x45\xfa\x68\x04\x28\x2f\xf8\x68\xed\x63\xdd\x83\x25\x1c\x19\x99\x14\x2d\x41\xa3\xb3\x71\xf8\x68\xa0\x0f\x1f\xf1\xe1\x15\x3e\xe8\xd6\x33\xd7\x81\xd1\x62\xf9\x0f\xf0\x0e\xea\x98\xf6\xe3\x4e\xe3\x7c\xc2\x4c\xb2\x69\x66\x8b\x18\x8e\xd1\x06\x7f\x4e\x14\x9f\x6d\x37\x66\x1a\x61\xb7\x74\x48\x85\x68\xb5\x70\xdd\x06\x47\x3e\xf6\x00\x2d\x10\xd5\x06\x4b\xd7\xd0\xea\x8a\x51\x07\x5b\xc6\x31\x51\x9e\xeb\x76\x3d\x9e\x33\x49\x7c\x8f\xa8\x92\x58\x36\x87\xbb\xba\x2d\xab\x90\xd6\xd2\x16\x3e\xab\x64\x81\x0e\x16\xea\x59\x1b\x25\xdc\x20\xac\x01\xf3\xab\xd5\xb3\x32\x5b\xb8\xc1\x98\x45\xbe\x39\x4c\xd2\xb3\xde\x28\x55\x31\x43\x47\xea\x15\x07\x6e\x9f\xb4\x62\x09\xa3\x47\xd6\x7e\xf6\x59\x3e\xf1\x55\x6c\xe9\x03\x3d\x7d\xb0\x84\x5c\x00\x7c\x2c\xed\xec\xc1\x1a\x8b\x75\xfb\x46\x11\xc5\x15\xed\xe7\x1d\xa8\x12\x94\x57\xb6\xed\x77\xc7\x72\xc5\x7b\xfb\xb9\xa7\xcd\x8a\xae\x75\x6e\xab\xb5\xb7\x46\x44\xd9\x44\x34\x0e\xef\x51\x75\x1d\xa8\xe3\xe2\x58\xe6\xb0\x9d\x07\x05\xfe\x00\x6f\xf4\xd6\x24\xd8\x1e\xde\xe5\x96\xd2\xba\xed\x37\xfa\x73\x8b\x53\x81\x5d\x82\x43\xb7\xb8\x6c\xa5\x3b\x60\x4e\x47\xf4\xdc\xe9\xad\xf9\x18\xf4\x1b\x70\x95\x97\xf3\x53\x71\x57\x5f\x4f\xd6\x2d\x07\x30\xb7\x6d\xf0\x27\xb0\xeb\xcb\x06\x7c\x9b\x94\x92\x0b\x18\x4b\x04\x9f\xa6\xed\xea\x9f\x8e\x51\x04\x88\x6e\x7a\xb8\x7a\xf0\xb4\xd5\x06\xe9\xce\xd4\xcd\x80\xd8\x09\xdc\xfb\xe2\x58\x1e\xf2\x30\xf8\x1e\xbf\x96\xe5\x89\xb9\x3b\x21\x2e\x3a\x73\x1f\xd9\xe0\xcd\xa6\x5a\x07\x27\xdb\xf4\x49\x31\xc6\x99\xa4\xfd\x99\x2b\xfe\x22\x73\xbf\x8a\x2f\x54\xce\x93\xff\xa1\x6f\x0b\xc0\x28\x8e\x65\xb5\x61\xd4\x0d\x08\x4f\x6c\xf8\x00\xa9\x1f\x10\xe5\x5c\xe9\x32\x30\x30\x7e\x4a\x0c\xe9\x98\xe3\x9a\x4e\x6c\x46\x40\x0f\x0c\x61\xc1\x12\xd6\x9c\x7d\x23\x39\xd6\xfb\x1c\x39\xf8\x1a\x03\x8c\x5e\xe5\x1c\x4c\xd5\xc3\xe0\x7c\xdc\xef\x36\xd5\xaa\x24\xfc\x18\xfe\x88\x3a\xff\xc9\xd5\xc4\x68\x35\xe7\x9e\xf2\xb5\x83\x08\x03\x54\x73\x6e\x9a\x6f\x30\xf2\x3f\x07\x3f\x8c\xee\x6d\xa8\x87\x67\xa6\x5c\x95\xe6\xca\x1b\x04\xe3\xfb\x13\x9a\xb8\x2d\x17\xba\x94\x7c\xf8\xd2\xd6\x38\x17\x97\x5e\x61\xb7\xaa\x1d\x37\xd5\xc3\xa5\x93\x1f\xda\x5a\x17\x30\x2c\x1f\x22\xc8\x93\x98\x2a\xbc\x9a\x33\xdc\x42\xd7\x70\x73\xd6\xaf\xc6\xc2\x49\xf4\xb5\x4b\xb0\xd8\xf2\x98\xc7\xfa\x9e\x28\xfd\xd3\xe1\x63\x78\x33\x6e\xff\x19\xa1\xa8\x1f\xb8\x51\x91\xed\x32\x05\x89\x20\x95\xf3\x15\x79\x3e\xef\x75\x0c\xef\x02\x51\xff\xdd\x4b\xfa\x93\x7a\x50\xe7\x57\x5e\xa6\x1e\x39\x96\x15\xd7\xea\x21\xfb\xb8\xab\x47\xc6\x91\xde\x6c\x9e\x00\x7d\xd9\xac\xd6\x68\x1c\x7c\xc6\xf5\x9d\xf3\x91\xa1\xab\x07\xea\xdb\x0e\x97\x2e\x3c\x6f\x86\x94\xbf\x05\x8a\x1d\x07\x3a\x3f\x8e\x12\xf0\xd1\x34\xac\x51\x82\x96\xf9\xf7\xe5\x10\x16\xaf\xaa\x2d\xe1\xc1\x6e\xd5\x62\x95\xe9\x06\xe8\x79\x4c\xbc\xd2\x29\x25\x7b\x44\xbf\x56\xdb\x13\x37\xed\x9d\xbc\xa2\xc7\xeb\xf6\x3b\x48\xc2\xcf\x07\xa6\x85\xab\xf6\x8d\x8d\xfd\xcc\xab\x7c\xd9\x8e\x9d\x77\xf9\x53\x93\xa9\xbb\xdf\x24\x09\x90\x37\x6d\x0d\xa5\x3a\x4b\x79\xa3\x2f\x04\x40\x6d\x38\xe9\x31\x9a\x3d\x36\x2a\xe9\x0b\x2f\x6d\xf1\x21\xe4\xf2\x11\x33\x99\xf1\xdd\x95\x1f\x8f\xb4\xd4\x7d\x5a\x9d\xd2\xde\x62\x47\x8d\xde\x71\xcf\x42\x97\x6f\x1d\xe8\xf1\x35\x72\x3e\x3f\xbd\xe1\xd5\xa3\xd3\xb8\xc7\xab\xc7\x51\xcc\x20\x9e\xc0\xa3\xd7\x23\x8e\x58\x1f\x52\xa5\x27\x2e\x33\x06\xce\x7a\x0e\x96\xfe\x89\xbc\xc3\xfa\x0c\x60\x8f\xf6\x3c\x78\xa0\x6a\x61\xe1\x02\xbe\xea\x01\xdd\x9a\x6e\x03\xee\x29\x6c\xbc\xf7\x37\x88\xbe\xeb\x5d\xe3\x7e\xc7\x7b\xf6\x61\x8c\x06\x20\xcc\x07\xc4\x41\x82\xf4\x6f\x0f\xb9\xd7\x56\x64\x6e\xd9\x19\x75\xf8\x5c\xea\xcd\xb0\x39\x7c\x6a\xe0\xc2\x5e\x0e\x31\x6e\x46\x53\x87\xe8\x47\x2a\x75\x94\x2c\x2d\xe4\x00\x63\x03\x35\xe0\x5c\x4d\xf7\xf1\xa7\x84\xab\xce\x82\x78\xcc\x65\xe7\xda\xd6\xbe\x16\x4a\x4b\x89\xb9\x5c\x77\x82\x5d\x35\xed\x7d\x3d\x35\x17\x4a\xb7\xbb\x3f\xdf\x4b\xd6\x99\x41\x34\x22\xe6\x70\x88\xde\x4a\xc1\x82\xf4\x86\x6d\x74\xe1\xf0\x9c\xf2\xc9\xfd\x5e\x86\x77\x66\x56\xf5\x65\x1b\x6f\x50\x1a\x12\xf9\xd9\x9c\x55\x00\x5a\xbe\xa7\x73\xdd\x0d\x2c\x57\xbc\x75\xef\x89\x49\xe7\x78\x28\xf8\xa1\xd4\x0f\xa4\x71\x61\x13\x12\x27\x91\x33\x7d\x5d\x5f\x80\x3b\x5d\x89\x3b\x20\x4a\x6d\xe9\xb4\x96\x30\x9c\x7d\xde\xe9\x50\x31\xbe\xe5\x54\x99\xd9\x75\x6e\x13\xbd\x12\x4a\xa8\xce\x4a\x56\xec\xc6\x7b\x9a\x6b\x7e\xa3\x84\xba\x8b\xb1\x45\xc7\x2d\x2d\x04\xc6\xb8\x44\x0c\xf7\xde\x4e\x84\xb7\x55\x6b\xdc\xdf\x1a\x51\xd6\x97\x37\x26\x52\xeb\x43\x09\xef\x45\x55\x17\xe5\x3e\x1f\x71\x9b\xac\x0e\xfa\x6c\x9b\x54\xfa\x7f\x9f\xf4\x47\x5c\xc6\x0a\x4b\xa7\x9a\xa6\xf6\xf7\xcc\x38\x86\x33\x24\x00\xe0\x2d\x14\x4c\xd7\xa2\x4b\x99\xdb\x13\x13\xb8\xdf\x7d\x7a\xaa\xbb\x5c\xe8\xee\xcf\xa4\xf0\x1f\x53\x59\x77\xa4\xff\xab\xa1\x14\x92\xc6\xf2\xdc\x58\xc9\x54\x86\x3c\x98\x53\x25\x9c\xa7\x2b\x69\xf8\xf0\x84\x10\x17\x47\x4c\xc2\xfd\xe8\xae\xf9\x2c\xc4\x35\xaf\x7f\x35\xa3\x4e\x67\xa5\x4c\x99\x11\x02\x02\xab\xee\x6d\xdb\x5c\xf3\x4a\x0a\xf7\x95\x74\x59\x12\x0e\x0a\xa7\x2a\xaa\xe5\x58\xb6\x4c\xe1\xf0\x4b\x83\xce\xba\xde\x1f\xb7\x55\xae\x68\x2f\x57\x1f\xb9\xaa\x06\x7f\x91\x6b\x24\xba\xa5\x0c\xf7\xc6\x3c\xe1\x9e\x8d\xc4\x31\xc9\x15\x25\xd4\x5c\x95\x8f\xdc\xab\x42\x0a\x75\xf7\xde\xe5\xc0\x73\x57\xb4\x82\x77\x5a\x02\xf7\xf9\x46\xf1\x5d\xc9\xf9\x7d\x9b\x10\xd4\xb5\xf4\xd8\xc8\x91\xc9\xb3\xa7\x1a\x79\x4c\x9a\xc0\xe3\x82\x85\xcd\x09\xc4\xc7\xe8\x83\xe3\x44\x3e\x7d\xab\x4f\xdd\x3b\xfd\x33\x1c\x72\xac\x4f\x6c\x5e\x71\x9c\xff\xb5\xcd\x12\x5e\x35\x25\x7c\x4b\x4b\x78\x73\xf1\x84\x5a\xd8\x10\x31\x11\x47\xd7\xf8\xb1\xf3\x23\x80\x71\xf9\x94\x1c\x81\x11\xc6\x2e\xef\xfa\x32\x2a\x7f\x45\x7a\xa1\xba\xe1\x02\xa7\x68\xe5\x84\x0b\x9c\x72\x81\x0b\x96\xeb\xe3\x35\xe7\xcf\x1c\xee\x6c\x6e\xff\x52\xda\x8f\xb4\xd4\xd0\x22\xbf\x16\xee\x7a\x91\x26\xc2\xc9\xdb\x6f\x6c\xea\x5e\x8f\xe1\x40\xb2\x46\xa0\x95\x8a\x08\x66\x63\xfc\x26\xc0\xec\x3c\xe8\x68\x79\x9c\x0a\x81\x50\x99\x8f\x35\x77\x7b\x83\x33\x66\xac\x6a\x2e\x67\xcf\xb9\xe4\xf5\x13\xad\x4a\xb0\x36\x39\xaf\xf9\x2a\x87\x5c\xfd\x23\x01\x34\xba\xc6\x4c\xe8\x3b\xc2\x7a\x87\x50\x22\x7b\x90\x47\x4b\x73\xd1\xd7\x1c\x96\xc6\xfe\x92\x75\x41\x7d\xc5\xd7\xd2\xc1\x88\xda\xa9\xa3\xa5\x84\x2b\x54\x67\xc2\xb1\x4a\x6c\x5d\xbe\xea\x59\x81\x38\x57\x83\xe2\x9e\x7a\x78\xd2\x22\xca\x73\x12\x7d\x6b\x15\x6f\x98\x73\x0d\x9c\x02\xa1\x9e\xb4\x69\xd3\x11\xea\x61\x7b\xcf\xb3\x49\x1a\xdf\xac\xc3\x43\x1f\x0b\xef\x79\xde\xe1\x74\x25\xd4\xfd\xfb\x3d\xaf\x82\x03\xd8\x04\x6e\xe6\x92\xde\xfa\xc8\x53\xec\x0a\xf7\xde\xe5\xca\x95\x50\x03\x9f\x33\x7b\xa2\x70\x96\x7a\x8b\x5c\x8d\xcc\x55\xda\x76\x30\x7b\xa4\xbe\x3d\x47\xbc\x29\x52\x17\x9b\x62\x23\xf5\xdd\x0e\xd7\xf2\x6c\x5c\x6f\x8a\xf7\x3d\x38\x3e\x6f\xd5\xd7\x6a\xff\x2d\xf9\x8f\x7f\x0f\x1f\x27\xc2\x59\xdb\x35\xd5\xe0\xb2\xf3\x37\xd2\xd7\xd5\x91\x64\xb2\xc8\xc7\xff\x06\xd6\x58\x82\x61\x6f\xe5\xd2\x1c\x1b\x18\x0b\x71\x28\xcf\xf8\xe9\xdc\xc1\x91\xb4\x5d\xeb\x6a\x7f\x3d\x03\xf1\x2e\x87\xd7\x60\xa4\x0b\xfb\x87\x15\x84\xc1\x5c\x00\x09\x3e\xea\x7d\xe1\x0a\x6f\xda\xda\x63\x50\x57\x3d\x1e\xa0\x27\xde\xd5\x4a\x4f\xff\xda\xe5\x4a\xde\x64\x3d\xff\x04\x15\x68\x01\x4e\xec\xb6\x15\x3b\xe2\x4d\xf1\x61\x94\x73\x39\x7f\xae\xe7\xbf\xd8\x9b\xff\x0b\xe7\xdf\xe7\x4a\x87\x86\x5f\x70\xc6\x55\x0b\x61\x75\x9a\x61\x5c\xff\xc0\x30\x8e\xb4\xce\xb1\xe6\x02\x6f\xad\x3f\xe3\x48\x13\xf6\x35\xfb\x05\x8e\x37\xad\x75\x90\xdc\x87\x3e\x6d\xe9\x6f\x5a\xd6\x46\xd2\x5a\x6b\xdd\x9d\x2f\x68\xf2\x3f\xc0\x24\x4b\xc9\x7e\xbd\x53\xf9\xa9\x93\x5b\xd6\x87\x14\x6a\xa1\xa3\x7e\xff\x84\x4d\xe9\x25\xc1\x16\x62\x91\xcf\x37\x4c\xe0\xe5\xa5\x14\xee\x55\x07\xb7\x46\xda\xe0\x3f\x0d\xf2\x7b\x22\xb8\xe3\x9c\xb0\x01\xee\x03\xc4\xf7\x3a\xab\x34\x7e\x1a\xd9\x11\x69\x7e\x4e\x0a\xc8\xf0\x74\x08\x46\x61\xae\x10\xca\xb0\xb1\x71\x35\xbb\x88\x1e\x70\x5b\x86\xcd\xd7\x19\x6d\x64\xfe\xa4\xe9\xf9\xf8\x19\x6c\x6e\xe1\x54\x14\x7d\x83\xc3\x02\xa2\xbf\xb2\x2b\x50\x3c\xa4\x69\x3b\x93\x37\x76\x03\x5d\x66\x98\xcb\x54\xf6\x6a\x46\xf2\x6a\xe0\x85\x7a\x78\x57\x7c\x56\x68\x41\x8b\xe8\xde\xc8\xfa\x2e\x9e\x31\xbc\x64\x23\x60\xa6\x41\x8c\x21\xbd\x30\x40\xd3\xa7\x4f\x86\xf1\xb7\x7e\x7f\xda\x27\xfa\x5e\xaf\xdd\xaf\xfb\x3d\x77\x9e\xcd\x71\x30\x35\x78\x6a\xf4\x74\x83\x75\x4c\xe5\x9a\xa1\x12\x6c\x4b\xf7\xc7\xaa\xee\xec\x31\x3a\x7b\x2a\xe7\xe8\xec\x73\xd5\xc6\xbf\xb2\xd7\xbf\xb3\x75\xaa\x04\x77\x50\x9b\x60\xbd\xde\x0a\x01\x29\x01\x8f\x7a\x04\xcf\x51\xc8\x17\x4a\xf6\x8e\x5b\xc4\xdc\x3f\xdb\x67\xad\x6f\xcc\x9d\xfd\x43\x7d\xd7\xf2\xc5\xb9\x7d\xff\x4c\x7d\x4c\xbd\x1f\x18\x43\xec\x18\xf6\xaa\xee\xa6\xcc\x23\x1c\xa1\x1e\x6f\xf4\x42\x39\x42\x3d\x5d\x3e\x30\xc8\x73\x85\x37\x97\xad\x9a\x59\x9f\x3d\xfc\x22\xcf\x95\xac\x99\x7b\x43\xe1\xb8\x1d\x32\x09\x7b\xc2\x7b\xfd\xac\xd4\x0c\x77\xe0\x56\x5c\xc7\x7d\xd3\x5c\xe7\x42\xe3\xa2\x55\x83\xeb\x64\x84\x85\x8a\xae\xba\xc2\xd1\x31\xd5\xb6\x1c\xab\xaf\xde\xdd\x87\x48\x5b\x0d\xfa\x7c\xe6\x55\xb8\xfa\xca\x15\x96\x6e\x73\x3e\xd4\xf7\x86\xd0\x5f\xbe\x40\x84\x2f\x0f\x77\x38\xf0\xaf\xa7\x6f\x0b\xe1\xc3\x47\x73\x3e\x8c\x7f\xd9\x36\x85\x88\x6a\x12\x9f\x36\xd7\xd6\x86\x63\x3c\x0e\x70\xb6\x13\x3e\xb6\x09\xae\x42\x71\x36\xc4\x21\x46\x42\x84\x25\x5f\x1a\xbd\x81\xdb\xb5\xc7\x01\x9a\xfe\x9b\x6b\x05\x62\x23\x4f\x1c\x2b\x10\xb9\x14\xcc\xd1\x7c\x5c\x55\x43\x98\x62\xc1\xfe\x4d\xe1\x7f\xe0\x12\x8d\x0e\xcc\x8e\x2d\xea\xd4\x91\x3b\xb6\xfa\x62\xd6\x7e\x6e\x55\x45\x8e\x5c\x92\x06\x71\x7b\x8a\x93\x03\x6d\x02\xd1\x59\xfb\x05\xa1\xd5\x0e\xfb\xac\xfc\x63\xd8\xa6\xcd\x81\x1f\xff\xd4\xb5\x42\x51\xb6\xe7\xb8\xc6\xa7\x6d\xf5\xc5\x79\x7b\xce\x91\xaa\xfe\x1a\xf8\x04\x20\xf6\xf9\x1a\x27\x2f\x7b\x30\x1b\xf0\xbd\xbd\xfe\xc8\x74\x51\x4d\x89\x9f\x1c\xc9\x01\x8e\x64\x46\x30\xf2\x8f\x69\xa2\x97\xea\x8c\xcd\x2f\xa3\x08\x2c\xea\x14\x6b\xb0\x54\x25\xdb\x78\x36\xcf\xb4\x18\x17\x34\xee\x56\xb8\xe5\x70\xc3\x19\xed\xc3\xdc\x23\x20\xb0\xf1\x6e\xe1\x4f\x1d\x12\x94\x52\xaf\x20\x10\xe2\xcc\x3b\x8f\x78\xe1\xb9\x37\xb0\x7c\xb1\x92\x38\xa7\xcd\xe2\xa5\xcf\x61\x54\xa3\x25\xed\xaa\xe3\x60\x47\x2c\x61\x17\xf0\x9d\xe5\x01\x87\x9e\x64\x70\xaf\x7e\xca\x39\x9f\xfc\x8f\xef\x49\x1c\xc1\x38\xea\x2f\x38\xe9\x2d\xb0\x22\xe1\x1e\x49\xc4\xec\x06\x9e\x3e\x0f\x42\xfd\x3e\x67\x15\xae\xb4\x1b\xdf\xdf\xe0\x05\x82\x29\x01\xc9\x93\x94\x6b\xb9\x6c\xd7\x5a\x34\x93\xd4\x39\xa6\xbb\xff\x19\x34\x0e\x90\xfb\x98\x55\x67\x2d\x75\x2a\x97\xe2\x85\x3e\xe9\x92\x0a\x77\xda\x7d\xe4\x87\xbe\x35\x16\xc7\x5d\xf8\x58\xd5\xa7\xa4\x2d\x75\xd1\x1d\xd3\xa4\x1e\x76\x1f\x09\x3f\xde\x20\xc7\xf5\x5e\x8e\x9b\x2e\xe9\x12\xab\xdb\x85\x5c\x7f\x1b\x6e\x80\x73\x83\x67\x6c\x16\x0c\x02\xd8\x73\x37\x98\x9c\x0b\x99\x73\xee\xe2\x9e\xb4\x0e\xf7\x9e\x6d\xf4\xb0\x7c\x4d\xf4\x91\x2b\x0f\x67\x4a\x41\x23\x2c\xa6\xe0\x65\x7f\xd9\xe0\x61\xf8\xd9\x9c\x03\xff\xbc\x6d\xf5\xc4\x08\x4a\xf8\x40\xaf\x05\x17\xe2\xeb\xdb\xfb\x28\xe4\xe0\xb8\xcf\x13\xec\xaa\x05\x07\x97\x3f\x0b\xfe\x0e\x86\x6d\x55\x57\x17\xf4\x10\x04\xf7\xaa\x8b\xf3\x8d\x6d\xbd\x9c\xf8\x87\x43\x7c\x27\xa0\x35\x2a\xc7\x6c\xf6\xbb\x04\x3d\xf5\x70\x85\x88\xd8\x48\xee\x9a\x7e\xec\x23\x4c\x6d\x6d\x83\xa4\x32\xe6\x75\x90\xef\x77\x5a\xbb\xc3\xc3\x7d\x4b\x1f\xe7\xf5\x84\xf7\x3c\xd6\x93\x06\x92\x07\x78\x01\x81\x0c\xef\x20\xb5\x00\x2d\x5e\x7c\x58\x14\x04\x1f\xeb\x75\x85\x0b\x5b\xf9\xeb\x1d\x6e\x93\x5c\x57\x73\xfa\x26\x45\x79\x47\x7b\xe7\xfd\x0e\x1b\x57\x99\x77\xa7\xf7\x54\x7b\x88\x70\xbc\x44\x9e\x70\xe2\xf9\xbd\x15\x09\xc7\xb9\xd8\x9b\x52\x6c\xe1\x9b\xbb\x3b\x6b\x24\xae\xef\x36\x72\xfb\x95\xa6\x08\x1f\xd9\x86\xa6\xee\xd9\x86\x47\x9b\x18\x5a\xe9\x22\x88\xac\x48\x14\x41\x2e\xd9\x5f\x13\x36\xc6\x84\xd8\xc0\x13\xfe\xc0\x0c\xfb\x2a\x6f\xa8\x61\x67\x90\x61\x27\xf6\xd6\x7b\x74\xba\xd1\xd7\x07\xf0\xad\x74\xe3\x23\xee\xe3\xd2\x87\x88\x07\x4f\x34\x4f\x3d\xcd\xff\x78\xad\x73\xb6\x5c\xf6\xe6\xbd\x66\x6d\x99\xc7\xd0\x80\x00\x4f\x8b\x0d\x2c\xf4\x93\xef\x4f\x05\x28\x1a\xa7\x3d\xac\x0e\x60\x89\xda\xf1\x5d\xb7\x63\x36\x86\xf3\xb1\xfa\x2e\xb3\xea\x5b\x93\xe4\x6c\xf9\x7a\xc3\x51\xc9\x4d\x6d\x68\x03\xa8\xb9\xbe\x23\x2d\x02\x65\x8f\xf9\x8b\x33\x6b\x46\x09\x1c\xcf\xd4\x4f\xe0\x79\xcf\xed\x02\x9b\x37\x2c\x59\xde\xe2\xa5\xfa\x94\x3b\xae\xed\xa3\x87\x05\x83\x40\x22\x61\x1f\x88\xf4\x9e\x74\xc8\xec\xfe\x99\xf6\x89\xcd\x04\x1a\x2c\x3c\x8c\xef\x92\xcd\x28\x77\x56\x20\xba\x67\x72\xbd\x37\xf6\x6b\x8c\xbd\x77\x6f\xe9\x8f\xae\x10\x68\xcd\x7f\xd5\xc8\xd5\x3d\x4e\xd5\x5c\xdf\xbf\xfe\xd0\xca\xa1\x87\xf8\xf5\x87\xaa\x26\x27\x55\xa8\x36\x88\x80\x42\x66\x12\xd1\x8a\xbc\x91\x15\xe3\xef\x51\xd5\x42\xc2\x2d\x24\x3d\x02\x9a\xab\xde\xe3\xef\x86\xc1\x0d\x4c\x84\x7f\xa2\xb6\x9c\x63\xb2\xcf\x22\xf0\x89\x03\xd0\x10\xee\x18\x1c\xbc\x73\x3f\x76\x7b\xa4\x8c\x0b\x26\x54\xc2\xa1\x00\x5f\x97\x09\x9c\x6a\xbc\xfe\x4a\x26\xa1\x10\xc3\x9c\xdf\x15\xe1\x57\xf2\x70\x16\xce\xfb\x3d\xfc\x36\xf8\x16\x51\xff\x65\xb7\x57\x7c\xc9\x37\x16\x3e\x31\xbd\xac\x7f\x35\xc7\x67\x0f\x91\x35\x16\xe7\x0f\x53\x9e\x01\x0e\xd6\x5f\xe0\x70\xaf\xbf\xe2\x2f\x00\x3d\x33\x7d\xc1\x25\x11\xd8\x7a\x72\x31\xc4\xfe\xd4\xdc\x0f\xa0\xd6\x8a\xdd\xbd\xc1\xed\xd7\x39\x5e\xf7\x87\xd6\x48\xbc\xf5\x07\x3f\xb4\x90\x41\x55\xee\xbf\x58\xa1\x48\xe4\xc9\xaf\x7b\x99\x3f\x8c\xad\x91\x28\x1e\x9e\x7e\x57\x47\x20\xde\xe4\x85\x2c\xb9\x1b\x3d\x23\xcf\x46\xda\xd5\x5b\xca\x92\xd7\xe3\x98\xe4\x9e\xba\x3f\x09\xcc\x53\xc8\xb7\xf0\xf6\xa9\xc7\xc9\x43\x23\x35\xb2\x02\xe1\xed\xf8\x2a\xed\xe0\x54\x36\xd8\x07\x7f\xf7\xe0\x88\xb6\xa7\xa7\x6f\xac\x1b\xad\xf9\xc6\x8d\xec\x41\xcf\xd0\x1c\xce\x89\xb9\xd2\xe9\x9a\x3d\xf1\x2c\x51\x51\x48\xa5\x63\x16\x4b\x85\xd2\xbe\x0d\x3e\xba\xa9\x8b\xb2\xfc\x8d\xe1\x62\xed\xe7\x0f\xa0\xad\xe2\x81\x7d\x07\x8e\x98\xd0\x88\x9f\x45\xb9\xdf\x63\x82\x7e\xdb\x3b\xb0\x0d\xb9\xea\xd5\x7c\x9a\x4d\x13\x2c\x62\xce\x54\x05\x68\x4a\xc9\x47\x4a\xfa\x24\x70\xbc\x97\x54\x7e\x99\x14\xe2\x14\x0c\x24\x3c\xae\xc5\x15\x6e\xa7\x6e\x72\x22\xdc\x29\x4f\xcf\xa1\xdc\x1b\x81\xbe\x2b\xfd\x1a\x47\x12\x3e\xed\xed\xc3\xfe\xdc\x00\xe0\xf1\xc5\xdf\x5e\xf2\xcc\xf3\xdb\xfe\x81\x47\x2e\x7e\x60\x9c\xbd\x35\x2c\x57\xc3\xb7\x6f\x3b\x42\xdd\x38\xef\xe0\x07\xc7\xac\xd5\x1d\x49\x0e\x2b\xfb\x22\xa6\x3b\x24\x68\x12\x18\x8c\xba\x6b\x68\x43\xbd\x15\xfa\xf0\x62\x29\xed\xf1\xf4\x76\x0f\xdf\x8a\x68\xc3\xf1\x55\xe3\xfb\x6e\xbd\x93\x87\x5f\x31\x76\xdd\x73\xcc\x91\x09\xae\xcd\x47\x0c\x44\xdb\xf5\x2b\x75\x64\xb3\x97\x6f\xcc\x84\xa1\xd9\xbb\xbe\x35\xc9\xae\xd8\xfb\x8d\x3c\xf9\xa1\x47\x51\xce\xd4\x04\x7b\xbe\xbb\x83\x48\x7f\x4a\xc0\x56\x5b\x2b\x08\xa2\xd1\x45\x93\x3c\x26\x91\xd5\x13\x2f\x37\xf2\xc7\x77\x96\x27\x62\x99\x28\xbd\x9c\xf5\xd2\xe3\x1e\x0e\x73\x96\xf5\x27\x54\x87\x73\x27\x27\xa3\x95\xb4\x26\xe2\x78\xf4\xaa\xc3\xb9\x03\xbe\xce\xcb\x65\xd8\xca\x06\xb6\xc9\x4d\x63\x10\x2a\x95\x9f\x2c\xb3\x8e\x31\x2f\xe3\x93\x11\x81\x7c\xb9\x95\xa7\x04\x2a\x5e\x7d\x14\x19\xef\x20\xaa\x5b\xef\xfc\x84\x38\x15\xf5\xc4\x51\xd0\xe3\x2d\x3e\xc9\x94\xea\x6f\x0b\x8c\x2f\x70\xd4\xe0\x85\xef\x0e\x1d\x9f\xe0\xa4\xc2\xcb\xb1\x2e\x88\xc8\xbe\x01\x87\x4a\x8d\x71\xe8\x41\xdd\x32\x23\x19\xdf\x12\x43\x48\x59\xa6\x8e\x71\x01\xab\x1a\xf0\x05\x39\xe3\x84\xa3\x14\x99\xbf\x8f\x71\x9b\x8e\x7a\xe5\xeb\xac\xc6\xaf\xd4\xda\x00\x3a\xd7\x78\x4a\x2f\x5e\xc0\xdb\xc7\x2f\xc4\x4a\x5e\x98\x6d\xf3\x77\x52\x1e\x0f\xa1\xf7\x5e\xb3\xa5\x38\x6c\x98\x3a\xb4\x87\xca\xb8\x4d\x63\x59\x5d\x0e\xd4\xaf\xbe\xe0\x36\x32\x36\x5a\xfc\xc6\x52\x41\x79\xd4\x46\x46\xbe\xf0\x67\x6c\x85\xc2\x59\xdc\x23\xd8\x62\x1e\xc1\xcd\xb8\x8a\xf0\x99\x18\xc5\x21\x59\x37\xad\xca\x20\x9b\x1a\x83\x2c\x4d\xd0\x04\x46\x96\x17\x3e\x27\xa2\x83\x5f\xfa\xec\x93\xec\x15\x50\xc9\x27\x0b\xae\xef\x2d\x02\x57\xc8\xf9\xa9\x30\xd7\xe6\xd0\x82\x2e\x9e\x80\x05\x4f\x47\xc4\x45\x92\x36\x0c\xae\x9f\x7d\xa8\xb0\xc7\xfd\x0b\x79\x84\x5d\xe6\x5f\x13\xfb\x3e\xbf\x7d\x40\xc1\x63\xd7\xea\x8a\x93\xdb\x01\xdf\xa8\x3d\x3a\x86\x3d\x62\x72\xcb\xa0\x3e\xe7\xc4\x53\xc7\x1a\x8a\xcd\x2d\xd8\x6c\x87\xcd\x7e\xa3\x73\x87\x99\x97\x22\x0e\xc7\xa6\x5c\x3e\x2a\x02\x97\x18\x2e\xb3\x98\xda\xd8\x1c\xb8\x24\x90\x43\x4e\x61\xa3\xe5\x2b\x33\x00\x78\x59\x15\xc7\x31\xd2\x3b\xed\x91\x02\xb6\x53\x83\x13\x76\x43\x61\x53\xaa\x67\x3e\x15\x3d\x42\xa8\x9e\x7a\x62\x4c\xdd\x03\xb6\x53\x0f\x25\xbf\x2b\xf8\x5d\xce\x2b\xf7\x86\x68\xf4\x67\x3d\xa8\x4b\xea\xff\x36\x91\xa4\x2e\xbe\x27\x72\x2b\xf9\x88\xd5\xe8\x9a\xba\xb2\x4d\xf0\x05\xba\xf7\x44\xae\x25\xc7\x98\x8f\x0e\x1d\xab\x4f\xe9\xa4\xcd\xbc\x27\xb2\xd4\x37\x3a\x8e\x66\x2d\xab\x47\xe9\x43\x6b\x48\xe9\xb9\x9c\xb3\xd3\x33\xde\x4f\xbf\x5b\xb4\xac\x9e\xd5\x53\x8b\x95\xe4\x39\x36\xa7\x01\x39\xfc\x38\xb8\xc0\x47\x27\x77\x8c\x7a\x19\xa4\x0c\x2f\x58\x0b\x87\xee\xa2\xe6\xe6\x2b\x1d\x29\x03\xcb\xfe\x0f\x56\xc2\xe3\x2e\x13\x4a\x1d\x15\x71\xa6\x6a\xbb\x06\x5b\xfd\xf9\xb4\xa7\x7f\xde\x05\x6d\x7d\x68\x35\xe7\xb3\x79\x3f\xaf\xfe\x90\xca\x0e\xbd\xe8\x2d\x07\xcc\x6e\x1c\xa1\xb6\x2e\x57\x77\xc3\x75\x1c\x76\xad\x58\x5a\x63\xa5\x16\x8d\x2f\xac\xf4\x13\x9c\x74\x99\x6b\x83\x0a\x86\xca\x0e\xd9\x04\x71\x18\x01\x23\x20\x4e\xd2\xea\xee\xf2\x99\xe3\xde\x5f\x39\x03\x7c\xe2\x5d\xe1\x2e\x98\x82\x3e\x58\x45\xa3\x31\x3c\x9d\x3e\x57\x3b\xe5\x41\xd5\x66\xfd\xdd\x3d\xd6\xfb\x8d\x91\x0f\xdf\x8d\xec\xd5\xd6\x7d\xfb\x5b\x4e\xab\x2f\xfa\x4f\xc7\xf7\xcc\xca\xaf\x5e\xff\x15\x27\xd5\x3b\xb4\xb1\x77\x79\xc4\xeb\x31\xf3\x71\x48\x52\xdb\x79\x33\xfb\xbb\x9d\x37\x77\xf8\x33\x08\x0b\xae\x87\x2d\x29\xaf\x6f\xfa\x62\x31\xfe\x6a\x0a\x30\xb8\x9a\xb3\x74\x19\xf3\x19\x0c\x46\xbb\x2a\xe1\x4f\x5c\x86\x7c\x5b\x28\x63\x6c\x95\xf2\x41\xca\x7e\xc2\x0a\xc8\x92\xad\x14\x4c\x99\x1c\xfb\xcd\x18\x4c\xe9\xa8\x9c\x71\xca\x89\x80\x8f\x2a\x91\x27\x7c\x81\x40\x33\x68\xe6\xe3\x96\xf5\x97\xc4\x6f\x50\xdf\x97\x70\x16\xbe\x2b\xe8\x5c\xd6\xd7\x53\x1f\x71\x0c\xcc\xbb\x4c\xb9\x58\xe6\xc3\xed\xad\xa7\x63\x56\x4d\x07\xbe\xe2\xc0\x07\x1c\x42\x9c\xd1\x50\xa5\xc3\x91\xc0\xbf\xb6\x39\x1f\xb3\xd5\x46\x7f\xb5\xd4\xd8\x9f\x43\x7d\xcb\xc0\x90\x33\xd5\x5e\x33\x64\x79\x97\xc2\x49\x6f\xdf\x58\xc7\x5b\xcf\x20\x2a\x1e\xde\x58\xe5\x9a\xe4\xfc\x3c\xbd\xe4\xfb\xc7\x3f\x3a\x24\xaa\x1e\xb4\xfd\x9c\xe3\xba\xfd\xd3\x0e\x02\x25\xdf\x61\x86\x52\x5b\xfb\x82\xaf\x55\x49\xd1\x66\x48\x33\xb5\x95\x1f\xfa\xa3\x26\xe8\xf9\x68\x0d\xa0\xd2\x3f\xf6\x6b\x2b\x67\xa9\xd8\x69\x30\x46\x34\xf4\x48\x9f\x0d\x5e\x83\xdb\x69\xed\x61\x74\x1a\x11\x5b\xca\x1d\xcc\xc9\x21\x3b\x25\x14\x42\xc0\xd4\x56\xb3\x45\x1a\xe5\x66\xc0\xcb\x52\x3a\x0c\x5d\xb1\x4b\x16\xcc\x28\xa0\x57\x83\x54\x6f\x98\x9b\x1c\x46\xdc\x12\x26\x91\x1d\x91\x1a\x9a\xf5\xaf\x23\x36\xa7\xd7\x57\x6a\x99\x3a\xb7\x1c\x3a\xd3\x3b\x07\xbb\x8f\xca\xd7\x0a\xf4\x5c\xc9\x43\x86\xf5\xa7\x4f\x55\xda\x0b\xc7\xd4\x4c\xae\xf4\xe5\x33\x3d\xe1\x76\xd6\x21\x47\x67\xc5\x38\xc7\xd5\xfa\x44\x97\xfb\x47\x04\x4f\x9d\xc1\xa1\x67\x9e\x70\x70\x62\x62\xf9\xc2\x4f\xa5\x8e\x9c\xc2\x9c\x5f\x4a\xdc\x11\xaa\x6e\xd4\x8a\xeb\x46\xa0\xd2\x25\x73\xef\x7c\x62\xca\x79\xf6\x99\x73\xa5\x38\x9e\x61\x87\xa0\xa7\x33\x1d\x3c\x9d\x49\x6b\xa8\x4e\x9d\xc7\x0d\xa1\x45\x11\x9c\xd1\x4b\x87\xd0\x7c\xdf\x3b\xa7\xc9\x1e\x08\xe3\x67\x48\x74\x68\x18\x7f\xc4\xf7\xb3\xdb\x30\xb8\xac\xda\xfa\xcb\x54\xae\x50\x0f\xf4\xde\x3e\xb6\x0d\xed\x39\xfc\x25\xa4\x37\x79\xa8\xaf\x69\x9f\xf3\xed\x10\x8a\x63\x44\x2f\x75\x2a\x2c\xcb\xde\x1c\x1d\x7f\x3e\x6b\x82\xa4\x51\xc9\xc3\xe7\xc8\x83\xac\xab\x83\x71\xaf\xf8\xba\xe7\xeb\x09\x11\xe2\xce\xe6\x2d\x30\x2e\x23\x60\xd6\x6c\x4a\xc3\x28\x79\x8c\xb8\xb8\xd9\x7d\xb9\x02\xed\x74\xe3\x1e\xdb\x40\xd8\xb0\xa1\xad\x16\xdf\x22\x1b\x8c\x29\xfc\xcc\x5e\x22\x3a\x1c\xfc\x5d\x3d\xba\x7a\xd0\x9e\x50\xb7\x9f\xde\xf7\x62\x63\xad\xe7\xed\x14\x17\xc3\x0d\xa7\xe2\x69\xbf\x70\x57\xa8\x5b\x8e\x3e\xc1\x0d\x26\xb7\x9f\x20\x25\xbe\x60\xaf\x57\x8e\xeb\xb5\x76\xa7\xd0\x95\x66\xec\xf6\xb9\x94\x7c\x27\xc8\x95\x3a\xd7\xa7\x5b\x9f\x39\xf9\xc4\xe6\xe4\x0d\x33\xbb\x97\x7d\x0a\x30\x96\xcf\x6a\x3d\xd9\x7f\xb0\x91\x9f\x8d\xf5\xbc\xf8\xd3\xf5\xec\xd7\xeb\x69\x3e\xbf\xb0\xc5\x7a\x9e\xe8\xf5\xcc\x74\xea\x1a\x31\x2a\x8b\xff\x2f\xac\xa7\x0b\xf3\x34\xa5\xc3\x26\x32\x5d\x55\x6b\xab\x06\x47\x93\x66\x27\x57\xb7\xac\x51\xe1\xeb\x4e\xeb\x97\xe6\xab\x9c\x23\xe1\x8c\x38\xc6\x07\xb6\xf9\x4a\x14\x26\x8c\xe0\x84\x30\xae\x7b\x9f\xc1\x4a\x1f\xbd\xf2\xd2\xe3\xbb\x47\x11\xce\xe9\xdf\x8a\x74\x4a\x0c\x5e\xf3\x69\xee\xff\x48\xa8\xdb\xf3\x39\x54\xfd\x70\xc7\x1a\x59\x1e\x59\x63\xc4\xb9\x78\x42\xc5\xf2\x48\x6a\x1f\xd7\x6a\xa6\xc3\xe1\x4e\xba\x95\x9f\x6b\xed\x9c\x3a\x35\xde\x84\xc6\xec\xbd\xf3\x07\xcb\xae\x18\x1f\x64\xce\x77\xf6\xac\x2e\xd4\x61\x58\xbf\x55\x03\x1e\x1a\xa1\x5f\x42\x96\x9f\x08\x2b\x1e\xc3\x07\xae\x9e\x8f\x38\xdc\xe1\xdd\x61\x0c\x8a\xbb\xe1\x86\xfc\xf4\xf8\xc9\xe5\x0a\x2e\x77\x45\x28\x78\x2b\x57\x3a\x04\x40\x7f\x98\x0a\x33\xb4\x6d\x58\xf6\x83\x9d\xf6\x10\x16\x46\xce\x38\xc2\x41\x64\x97\x78\x4e\x71\x4c\xaf\xc5\x9f\x56\xa2\x89\xa0\xc5\x38\x7c\x81\xf2\xc8\x5f\xeb\xd3\x9f\xb4\x23\xb2\xc3\x05\x72\x5d\x91\xc9\x13\xfb\xfc\x99\x3f\x63\x82\x4a\x04\x4f\x93\x8e\x8e\xc1\x15\xfb\x57\xfc\x71\x33\xf4\x7d\xc1\x58\x28\xc3\xc6\x3b\xd1\x51\x03\x8b\x88\x10\xfc\x4a\xf2\x91\x8e\xe1\x2a\xa8\xa6\x78\x67\x2f\xe4\xb7\xf8\xc0\x65\xf7\x97\x30\x0d\x61\xbd\xef\xa0\xf5\x02\xd0\xfe\x31\x9d\xf1\xf7\x22\xe4\x2a\xe2\xc6\x12\x08\xb2\x27\x02\x2b\x67\x8a\x87\x15\xb0\x79\xa0\x77\xca\xce\x91\x84\x6d\x24\x1f\x3e\x28\x0f\x77\x47\xec\x14\xc7\x1a\x9e\x42\x50\x75\x4e\x94\x35\x14\x1f\xce\x3d\x1f\xea\xe9\x66\x55\x4c\x16\x71\x87\xb5\xb2\x7a\xd6\xb1\x54\x47\xc1\x2b\x2b\xc3\x2c\x20\xf4\x67\xbe\x6f\x5e\x19\x5e\xaf\x19\x26\xbf\xe3\x0e\xe5\xf3\xd6\xc2\x59\xc1\xc9\x5b\xb6\x46\x29\xe2\xc1\x34\x78\x9c\xed\x07\x73\xfc\x2e\x98\xe0\x9a\x75\xd0\x9c\x6f\xd3\x7f\x0b\x1a\x91\xd5\x1b\x59\x72\xea\xe6\x0f\x03\xa5\xc3\x1d\xe7\x7f\x0f\x38\xcc\x6c\x3b\xd3\x1f\x6e\xd0\x5f\x4d\x27\xb0\xb2\x50\xef\x1c\x25\x3c\xde\xcd\xf4\x85\x0b\xfc\xc9\x6e\x8d\x61\xa2\xcf\x46\xb2\x73\x24\x4f\xa3\x1a\xb7\x7c\xc8\x93\x99\x84\xa2\xfb\x46\xab\x5e\xdd\xe7\xa6\xa1\x8e\xaf\x5d\x17\xae\x28\xe4\x51\x8b\xfd\x87\xcb\x80\x63\x7e\x68\xd3\x3e\x21\x18\x14\xb1\xe8\x27\xf2\x8e\x8d\x74\xb7\xf0\x7d\x10\x45\xb5\xf8\x4c\x6c\xcc\x21\x94\x7c\xcd\xd4\x29\x1f\xec\xc3\x25\x1f\x4e\x6e\xcf\x5d\xbe\xb3\x7d\x46\x88\x79\x23\x9f\x7c\x62\x8c\x21\x22\xe6\x27\x47\xaf\x50\x31\x66\xb4\xb7\x9d\xc4\x06\xcb\x3c\xe4\x90\x52\x07\x1f\x7d\xeb\xd4\x1d\xe1\x28\x68\x0f\x9d\xc6\x49\x78\x67\xce\xdf\xfd\x07\x97\x08\xce\x30\x8b\xdd\x77\xea\xba\xba\x05\xbb\x71\x9b\x2f\xac\xbe\xe8\xbe\xd6\xb0\x89\x32\xf2\x27\xe7\x3d\xa2\xe3\x46\x3b\xcf\xb8\xc2\x3c\xe2\x2f\xb5\xe3\xf5\x0d\x3e\xdd\xe0\xd8\x75\x69\xfe\x0a\x2b\x0a\x3b\x5b\x0e\x08\x9f\xc9\x32\xde\x9b\x66\xb5\x90\x65\x7b\x6f\xb3\xd1\x8e\x3a\x52\x1a\x61\x9e\xfa\xf8\x68\x44\xfe\x8c\x43\x7e\xcb\x17\xcd\xbd\x5c\x3e\x81\x7d\x03\x3b\xe8\x70\xf9\xa2\x8f\xdc\x74\x55\x6e\xcf\xf9\xba\x4a\x8f\x4f\x5a\x73\x08\x65\xcd\x6c\x10\x37\x34\xe4\xc0\x29\x36\xa1\xe1\xe5\xe7\x13\x76\x56\x01\x33\x42\xc0\x26\x28\xab\xfa\x5e\x01\x5f\x0f\xec\xa3\xca\x79\x8b\x8d\x62\x18\x78\x0f\x11\x8e\x43\x5c\xde\xc8\xac\x23\xe0\xb7\xe0\xc2\x81\xf6\x83\x9b\x6f\x3e\x28\x9c\x32\x14\x30\x7d\xe0\x74\xa2\xc2\x77\xc4\xfb\x2d\xfd\xb9\x78\xd3\x53\x86\xb2\xf7\x8d\x9e\x06\xdc\x21\x7a\x79\xc4\x3d\x45\x28\x9b\xfe\x20\x7e\xaf\xee\x29\x7b\xfa\x02\x50\xc5\x9a\x7b\xca\x9f\x9b\xe8\x0f\x50\x5d\x9f\x7b\x8a\xf1\x78\x6c\x43\x2b\xf1\x99\x3b\x3f\x7b\x62\x8d\x96\xef\x21\xf1\xbe\xbc\x0a\x84\x93\x48\x2b\x52\x1e\x2e\x46\xe7\x8f\x6c\x30\x2b\xe7\x0f\x96\x9f\x4a\xb6\xe2\xa0\x13\xc7\x4c\xd9\x38\x88\xe2\x6a\x56\xcf\x4c\xfe\xb7\x2c\x47\x5d\x38\xa7\x0b\x1d\xe5\x62\xb9\xe2\xb2\xf7\x7c\x42\x23\xdb\xf5\x46\x8b\xc1\xdf\xb0\x1f\x56\x72\x47\x67\xf8\xe3\x9f\xde\x33\xfb\x59\x4f\xfe\x17\x99\xd2\x46\x4b\xdf\x2b\x6e\xf3\xfa\x9e\x46\x70\xc6\x25\xde\x50\x62\xcb\x25\xde\xb9\x44\x69\xa7\x7c\x53\x44\xc1\xa8\xa5\xd4\xfa\xee\x1b\xfb\x3b\x8f\xb8\x9a\xc3\x7b\x7c\xd4\x49\x03\xbd\x39\x56\xd6\x3f\xeb\x72\xcc\xe7\x79\x48\x95\xbf\x7f\x39\xd6\x61\x2e\x0d\x32\x31\x99\x1b\x99\x70\xb1\x55\xef\xc7\x41\x20\xac\xed\x8e\x73\xc2\x00\xf5\xe9\x68\x74\xba\xe6\x72\x6f\x3d\x8e\x9e\xba\x60\xd3\x48\x53\x6d\xbe\xd4\xc6\x84\x92\x73\xce\x6c\x0e\xd1\x44\x0b\x2b\xc5\xe7\x00\x0a\xb8\xbd\xf8\x33\xf7\x6a\x6d\x6f\xb9\x96\x5f\xea\xbd\xb5\x5e\x5b\x05\x1e\x8b\x88\x13\x60\x7f\x6c\xbe\xaa\xd5\xdf\x48\x38\xdb\x5b\x3e\xfb\x15\x96\x6c\xf3\x87\xba\x7a\x22\x37\xda\x15\x76\xc5\xda\xa8\xb6\xc5\x96\xda\x17\x92\xf1\xa7\xa3\xd6\x8d\x22\x9f\xf2\x7d\xa9\x45\xc9\x0d\x97\x61\x8b\x2d\xbe\x2a\xaf\x76\x7c\xa6\xff\x4d\x7e\xea\x22\x94\x19\x4a\x6f\xa9\x9a\x4c\x77\x63\x6e\x74\x88\x61\xcd\x1b\x7e\xe0\xa3\xf6\xea\x42\x36\xe2\x54\x77\x4b\x09\xe8\x7c\x2c\x57\x4b\x3e\x64\x41\x65\xb7\x8c\x5c\xd9\x42\x92\xc7\xb0\xf0\xf2\xa5\x29\xed\x9a\x6f\x41\xcc\x8d\x39\x62\x53\x2d\xd4\xb1\x1e\xe4\x49\xdc\x10\x73\x9f\xf2\x54\x4b\xbf\xb3\x46\xb2\x7b\x21\xcf\xf1\xb8\xe3\xef\x06\x6c\xe4\x8e\x25\xc7\x07\xad\x93\x3b\x37\xa3\xe8\x8b\x56\xcb\x5c\x3b\x8d\xb5\x0d\x18\x9e\x07\xc2\x3d\xe1\x1e\x7e\x52\x39\x3e\x88\x80\xef\x96\xab\x3b\x66\x59\xa1\x50\x3a\x06\x23\x12\xce\x80\xd3\xa2\x2a\x2d\xac\xd2\x86\x55\xda\xb8\x4a\x1b\x57\x69\x43\x4a\xeb\xf1\x11\x3e\xc6\x69\x2b\xbb\x77\x0c\x1d\x77\x32\xe5\xef\xaf\x9d\x10\xa0\x0c\x1e\x18\x0d\xae\xe4\x11\xe6\x5e\x44\xe7\xbc\x22\x89\xe2\x81\x8d\x4f\xf1\x07\x77\xb2\xaa\x2b\x7d\x8e\xcb\xae\x92\x9c\xb5\xa2\x82\x15\xee\x7e\xcc\x78\x2e\x31\xf5\x7d\xa1\x9e\xdf\xe2\xfa\x99\xa0\xf4\x92\x7a\xe9\xb2\x24\xf1\x66\xd0\xe0\xc2\x05\x31\x43\xb3\xf8\x7c\x1c\xaf\x5b\xe8\x0f\x60\x6e\x99\x4f\x8d\x4f\x59\x12\x87\xd8\xee\x9f\xca\x52\xc2\xe3\x63\x47\x66\x91\xbf\xb5\x74\xd8\x65\x96\xc0\x06\x88\x8a\x96\x7a\xb4\x06\xda\xeb\xb3\x5a\x98\x33\x30\x08\x93\xd9\x3d\x83\x05\xdb\x05\x77\x8b\xa3\x7d\xba\x25\x91\x4a\x34\x07\xfe\x78\x5e\xc9\xe3\xb0\xe2\xd6\x63\x3d\x0c\xb6\xa5\xf6\x35\x76\x46\xff\x47\xe3\xaa\xf7\xb4\xc3\x8e\x07\x15\xba\xbd\x70\x72\x36\x49\xbd\xe3\x52\xea\x47\x58\x38\x23\x76\x8e\x7e\x72\xb0\xe4\x4c\xab\x20\x84\x3c\x2e\xfd\x8a\xf6\x70\x78\xc1\x39\x53\xd7\x15\x1a\x55\x42\xbd\x6e\x27\x60\xfa\x2b\x9c\x17\x58\xcb\x73\x06\x09\x1f\x68\x7f\xf2\x49\x1c\x81\x68\x96\x6d\xa0\x9f\xda\x94\x51\x68\x87\x14\xf3\x8f\xc9\x0a\x13\x98\x38\x6c\xed\x3d\xf9\x39\x53\x86\xa0\xf2\xb5\xf3\xb2\x3f\x9b\xb3\x36\x33\x0a\x6c\xcc\x53\xfe\xca\x08\x7b\x0b\xa3\x2b\x98\xca\x46\xcc\x92\xf9\x7b\xc5\x93\x47\x5c\x5e\x6b\x73\x94\xdf\xf8\x6c\x66\x16\x1e\xe6\x2a\x87\xa3\x38\x32\x30\xac\x80\xb1\x77\x6f\xce\xdb\xf1\xf5\x78\x86\xfb\x04\x71\x05\xb6\xc2\xa4\xf5\x48\x91\xf4\x1f\x30\x41\xf0\xde\x3f\xa5\xb2\x41\x11\xde\xeb\x1f\x53\x44\x8f\x0d\x30\xae\x78\x16\x47\xf2\x47\x25\x72\xc3\x37\xbd\xda\xf8\xec\xfa\x36\x69\x64\x1a\x5c\x73\x1c\x55\xff\x08\x9e\xbd\xe7\xf7\xa0\x86\x6d\x1c\x0a\xe9\x1f\xf9\xb0\x73\x5c\xfb\x7c\x33\x0f\xd4\xe3\x21\xb2\x8b\xc9\x29\x9c\xbb\x67\xea\x8b\x83\x8d\xaf\x80\x83\xee\xfd\x7a\xc5\x87\x8a\x68\x13\x8f\x5e\xac\x40\x3c\x78\xa7\xf8\x9a\x42\x8b\xbf\xb2\x37\xda\xb4\x8d\xaf\x96\x14\x7c\x39\x87\x09\xcc\x2b\x3a\x50\x54\x17\x6d\xab\x27\x3e\xd5\x84\xf9\xea\x35\x5f\xe6\x66\x79\xe2\x43\x3d\xec\xda\x56\x5f\x5c\x49\xb0\xcd\x85\x7c\xd7\xaf\x88\x26\xc7\x56\x20\x0e\xe5\x52\xd2\x40\xb5\x7a\xcc\x53\x89\x98\xba\x1b\x05\x70\x8d\x2b\x93\xd5\x6b\xab\xea\x9c\x72\xd7\xb1\xfc\x45\xc8\x68\x62\x73\x84\x62\x17\xc6\x4d\x75\x7b\xd1\xad\x82\x33\xf5\x17\xf0\xe1\x70\x78\xb8\xfb\xa2\x0c\x3a\xd3\x9d\x6d\x7c\x68\xce\xe3\x42\xc3\x3a\xaa\xe1\x5c\x5b\x77\x1d\xa1\xee\x96\x38\xef\x33\x9c\x81\x85\xf6\x6c\x3e\xb8\x78\xe3\x33\x1d\x53\x36\xf0\xc2\x1b\x12\x0e\xf8\xc8\x2a\xa3\x2b\x56\x03\x8d\x8f\x0c\x5e\x4a\x31\x39\x1b\x59\x81\x55\x48\x75\x72\x7b\x83\x86\xf5\x67\x8e\xf8\xe0\xa1\x7a\xc1\x32\xc5\x6e\xe3\x48\xe2\x84\xda\x7c\xc0\x6b\x11\x59\x9e\x58\xf2\xf5\x93\x2b\xb7\xbd\x4a\xcc\x11\x4a\xa7\x8a\xfb\xc6\xb7\x7a\xba\x79\xc3\xe9\xbc\x91\x67\x49\x43\x1f\x8c\xf7\x00\x59\xc2\x80\xec\xfc\x81\x37\x14\x9f\x6e\xbd\x7e\xf8\xdb\x68\xef\x32\xfa\x09\xab\xfd\x14\x8d\x7e\x89\x3a\xdf\xe5\x11\xd7\x3d\xeb\x23\x0a\x5f\xdb\xe0\xe3\x1f\x5c\x12\x89\xa3\x83\xd5\x17\x50\xa6\xfd\xe5\x9f\x97\x48\xb9\x44\xf6\xa7\x25\x32\x99\x73\x89\xa2\xff\x03\x32\x02\x0b\x39\x6c\x1c\xc4\x4d\x6c\xdd\xce\x96\x4b\xbd\xf7\x7f\x3c\x76\x03\x77\x82\x55\x9d\xc4\xdd\x99\x52\x9f\x5c\xea\x18\x87\xd9\x4c\xb1\xf3\x2f\xc5\xaa\xc6\xce\xb8\x58\xff\x8c\x4b\x9d\xe3\xfb\xcc\xaf\xda\xf8\x77\xc5\x89\xd7\xfd\xbf\x45\xb1\x7a\x9c\x47\x5c\x60\x36\xf8\xcd\x38\xab\x1e\xcf\x4d\x8f\xd9\xd6\xe2\x2f\x07\xbf\xeb\x71\x75\x8a\x49\x03\xda\x61\xca\xa5\x56\x83\xc6\x71\x84\x3e\x9f\x33\xf5\xb3\x01\x9c\x41\x2c\x43\xf8\xec\xba\x06\xd1\xfa\xba\xee\x6f\x28\x7a\xef\x6c\x34\xf3\xff\x26\x8a\xce\x6d\xf6\xed\xbf\xcb\x92\x6b\xdb\xfc\xae\xb3\x6b\x28\xa0\xfd\x0c\x91\xda\x37\xfa\x48\xf7\x8e\x0b\xbe\x0f\xf8\xb3\x83\xac\x66\xb2\x9f\xc0\xff\xc0\x69\xeb\x29\x5f\x01\xf2\x67\x8e\x24\xf6\x76\x80\x87\xcc\x1d\x3e\x6d\xba\x94\x9f\x4c\xfd\x1f\x08\x68\x51\x3b\x79\x82\x53\xb6\x3f\xc2\xec\x1e\xc7\x51\x98\x73\x0d\x1b\x28\x5c\x5f\xfe\xc0\xcf\xa4\xbd\xfc\x5a\x38\x83\x57\x01\x8c\xe3\xa5\x4e\xd5\x7e\x45\xfe\xc4\x80\x46\xe7\xfa\x15\xf2\xa2\xb1\x82\x43\x5c\x33\x29\x9c\x72\x74\xcd\x9a\x32\xfc\x4f\xce\x43\x19\x31\xde\x9c\x2b\xc2\x8d\x89\xfc\x48\xf9\xee\xfc\xcf\x8a\xf5\xc0\x60\x73\xac\xbf\x7c\x71\xd2\x48\x76\x8e\xe4\x21\xdf\xb4\x5f\x63\x3f\x9a\xcc\x44\x9d\x72\x25\xa3\x0b\xc5\x07\x56\xb9\x8e\x4b\xbe\xa3\xe9\xaa\x4e\x74\x8e\x24\xf7\x66\x23\xaf\x52\x8c\x25\x64\x7b\xe0\x35\x57\x10\xde\xa4\x1c\x6e\x71\xa8\x9f\x8f\xf4\xf3\x8c\x8f\x01\x84\x73\x8e\x6a\x7e\x89\xf5\xf3\x02\xcf\xce\xcb\x32\xd3\x47\x65\xcf\x56\x92\x43\xf3\x14\xe1\x42\x36\x9c\x9e\xf2\x35\x3d\xcf\x57\x6c\x09\x65\x2b\xe1\x5b\xe5\xea\x53\x77\xca\x78\x91\x9d\xdb\x82\xcf\x6d\x2f\x65\xde\x06\xdc\xcf\xda\xf5\xac\x2c\x6c\xfe\x30\x8f\xdd\x9c\x28\x24\x45\xad\xe6\x24\xe5\x48\x0b\x0a\xfa\x13\xdd\x7f\x4a\xcb\x55\x67\xf7\xb8\xf9\x30\x3a\xd5\xa5\xc0\xa3\xcb\xd5\xbe\x05\xad\xc8\xb8\x19\xfd\x09\x9e\xed\x6a\xcf\x84\xf6\xce\x8f\xd1\x6e\xb5\x6f\x42\x63\xd4\xdb\x45\xcd\x7c\xbb\x4a\x1f\x61\x0a\x0f\x62\x9b\x35\x40\x07\x4c\xef\x2f\x1b\x34\xe1\xb5\x74\x48\x37\x89\xa6\xf9\xa0\xe9\x24\x67\x09\x55\xe8\x0b\x10\x70\x79\x98\xe8\x2e\xa1\x15\x3a\x17\x4a\xfb\x0a\x3c\xa1\xdc\x0b\x69\x39\xf6\x65\xe0\x1c\x02\xc7\xf9\x50\x63\xd4\xeb\xc9\xea\x67\x30\x64\x2c\xea\x4b\x1c\xd9\x18\x1d\x25\x80\xfa\x3b\x79\xf9\x8a\xe4\x15\x27\xcf\x57\xfb\xc9\x19\x27\x2f\xbe\x24\xbf\x71\x72\x82\xa5\xe6\x0f\xa1\x6a\x55\x6d\xb9\xd0\xe7\x95\x71\x21\xd1\x05\x2c\x2a\xa9\xda\x0c\x51\x0c\xc7\x4b\xd4\x8b\x5d\x49\x58\x6f\x2e\x99\x9b\x84\x70\x1d\x82\xd2\x8d\xef\xe0\xe6\xd9\xf2\x84\x77\x7f\x3e\xa8\x42\x48\xe7\xbc\x68\xc7\x68\x69\x78\xd5\xaa\xad\x43\xf8\x8c\x52\x21\x17\x73\x2d\x58\x67\x73\x90\x36\x4e\x85\xeb\x2f\x7d\x02\x24\x5d\x35\x1c\xad\x9f\x8f\x98\x2f\x54\xb9\x79\xe1\x05\x2d\x99\x6b\xb0\x95\xd9\x79\xa4\xfd\xfc\xaa\x8f\x2e\x64\x30\x3c\xbf\xcb\x15\x94\xf9\x09\x87\xef\xb5\x50\x29\x7f\x99\x6a\xc2\x51\x70\xbb\x17\x8e\x03\x7b\x0f\xf5\x49\xf7\x44\x5f\xc7\x41\xa0\xf9\xb5\xb8\x35\x95\x05\x22\x28\xd5\x2c\xa8\xa3\x03\x87\x6f\x52\x47\xe6\x59\x7d\x82\xff\x49\xfb\x8f\x17\xc6\x59\xcb\x82\xd5\xe9\xc9\x33\x6f\xc2\x09\x93\x31\xc7\xf5\xf9\xc7\x2f\xd8\x64\xac\x8d\xa1\x2a\xed\x44\x18\xf3\x09\x60\x75\xa3\xaf\xa1\x1c\x5d\x3c\xe1\x52\xb1\x6c\xcc\xf3\x31\x61\xf8\x03\xeb\xe5\x5a\xad\xa5\xc9\xe3\x8b\xee\xcb\xe9\x8b\xa5\x3f\x31\x3d\x21\x60\xa3\x59\x4c\x8b\x99\x13\x0e\xcf\xae\x95\xe2\x95\x6e\x73\xa2\x8b\x48\x31\xa5\xd5\xed\x0e\x27\xce\x49\xbb\x70\x72\xf5\xf6\xc8\xcf\xf9\x5a\x56\x5a\x7e\xa2\x0a\x6e\x93\x83\xc5\x35\x5b\xdb\x2a\xfd\x2d\xa7\x56\xcd\xd5\x4e\x14\x9f\x44\x82\x46\xd1\xa2\x31\xb4\x74\xcc\x15\x4a\xc8\x0e\xbe\xc8\xe3\x7f\x25\xa5\xe9\xff\x1c\x25\x79\x8f\x59\x08\x45\x83\xcd\xc1\xec\xf4\xf7\xdf\x26\x56\x24\xdc\x85\x64\xa4\x79\xf5\xc2\x52\x79\x39\x69\xf6\xad\xc4\x17\xfb\x26\x17\xa4\x44\xb8\xba\x63\x3f\x13\xe4\xa7\xbc\x84\xb0\x9d\xb0\xa7\x07\xeb\xa9\xce\xf4\x37\x39\x20\x78\x7a\xe5\x84\xb0\xea\x4e\x2e\xc7\x3c\x56\xf8\xff\x12\x1c\x51\xca\xbf\x6c\x43\x1d\x14\x70\xd1\xae\xc8\xe0\x44\x9e\x1a\x66\xeb\xe9\xad\xe1\x17\x68\x64\xa0\x63\xd3\xb1\x4d\xd3\xc6\x36\xed\x5d\xe1\x5c\xcd\xa3\xae\xfa\x2b\x77\x39\x64\xe1\x85\x84\x6f\x34\x77\xd8\xd9\xdb\x22\x43\xb6\xa0\x5f\xe3\x42\x07\xed\xd2\x5c\xc1\x83\xd9\xff\xe8\xb2\x4a\xac\xbe\x2e\x20\x2e\xc0\xf9\x7f\x87\x17\xf4\xf7\x78\x41\x20\x54\x47\xb3\x82\x25\x0f\x8d\x67\xe5\x44\xaf\xc6\x92\x4d\xe1\x9f\x13\xdc\x51\x2c\x57\x70\x8d\xc7\xcc\x04\xd2\x49\x83\xa3\x7c\x18\x8e\xc2\xf0\x61\x26\x4f\x26\x86\x72\x58\x41\x5c\xf0\x77\xb4\x5a\xab\x4a\xef\xa7\x89\x3e\x41\xc5\x57\x52\xcf\xfb\x1f\xb2\x6f\xcd\x7e\x34\x3f\x78\xad\x5e\x7e\x5b\x9a\x0f\x76\xff\x24\x7c\x90\xf3\xf8\xd9\xea\x0a\xaf\x1d\xdb\x3a\xa4\x04\xfc\x0c\x51\x17\xea\x48\x7d\x61\x74\x80\x81\x47\xfa\x64\x9b\x11\x94\xbf\x20\xe3\x37\xc9\xa1\xf7\x1c\x42\x4b\x8f\xd4\xe9\x0b\xda\x1d\xe7\xf2\x4c\x5e\xe2\xec\x60\xb4\xeb\xa0\x63\x7c\xab\xe5\xe4\x64\xc0\x36\xc9\xd5\x88\x77\xff\x27\xbf\x3d\xf6\x0c\xe3\xf3\x84\x73\xc5\x1c\x22\x5a\xbf\x35\x4d\x15\x6f\x1c\x18\x78\xa5\x4e\x40\xf1\xc1\xbb\xa6\xf5\xa3\x3b\x76\x3b\xc5\x81\xbe\x10\x99\x45\x6c\x57\x28\xb1\xeb\x68\xb8\xf1\x3d\xee\x27\x1b\x51\x4b\xfc\xd1\xf6\xc7\x0b\xac\x51\xeb\x04\xa8\x35\xb0\x5c\xd1\x63\x8b\xc0\x3b\x9c\xac\x1f\x72\x07\xe5\xb3\x0f\x15\xc6\x49\xd4\xa9\xe6\x8b\x69\x6d\x61\x3a\x93\x08\x96\xcf\xe4\x1b\x3c\x6a\xc1\xa5\xfe\x42\x76\x57\xa8\xb9\x0a\xf9\xe8\x3e\x38\x9a\xfe\x1a\xc6\xe3\x8d\x56\x5b\x78\x17\x22\x96\xd7\x39\x81\xf9\x29\xd8\x35\x5d\xa5\x01\x47\x69\xba\xcd\xb3\x9f\x10\x12\xfe\x33\x92\x2e\xfc\x46\x66\xdf\xc5\xde\xb2\x0f\x71\xd1\xde\x04\x7c\x62\x3a\x1f\x19\x23\x40\x57\xb8\xed\x73\x4c\xc9\x35\x4f\xa5\x5c\xc3\xcd\xd2\xfe\xe0\x8d\x89\x05\xdc\xd9\x01\x13\xc8\x85\x26\x90\xd3\x89\x06\x86\x2c\x94\x0c\xc9\xfe\x02\x5a\xfc\x02\x9f\x34\x10\xc7\x0f\x94\x3c\xad\x5e\x7e\x17\x6c\xb6\xe1\xae\x5d\xa1\x5e\x32\x02\x15\xb1\xdd\x5e\x71\x87\xcf\x09\x25\xdd\xa8\x2e\xbb\xe7\xd3\x29\x8b\x97\xa3\x56\x73\x4a\x3e\x46\xa4\xc3\x2c\x64\xb2\x90\x5f\x92\x47\x42\x8c\x50\xc6\xbd\x30\x83\xfa\xda\xcd\xff\xd9\x7d\x78\x4e\xfb\x70\xa3\x04\x58\x9b\x6a\x33\x19\x31\xee\x98\x5c\x20\x8e\xe3\x42\x73\x70\xcd\x26\x22\x22\x63\xe7\x53\xe2\x18\x83\x6a\x1d\x63\x03\x9f\xcb\x13\x69\x8a\x78\xfa\x0e\xa9\xd2\x2e\x3a\xfc\xee\x41\x97\xf3\x38\x34\xda\x2b\xed\x1b\x36\xa0\x69\x5d\x82\x03\x10\xb0\x3d\x76\x12\x10\x40\xf3\x3a\x1c\x5f\x70\xd2\xaf\x6d\x3d\xeb\xfc\xa6\xa5\xc4\x9e\xf0\x8b\x81\x2e\xa4\x1b\x1a\xea\x6b\xa9\x20\xb7\x32\xf9\x89\x63\x23\xcc\xeb\xf9\xb4\x54\x70\xcc\xd7\x1e\xc1\x39\xfa\xba\x73\xeb\xbb\x68\xb4\x05\x16\xa7\x80\xb3\xb0\x0e\x84\xbd\x86\x0b\xb2\xcf\xd7\xcf\x2c\x6c\xfe\x8e\xef\x27\xb3\xeb\xfe\x07\x7a\xed\x4d\x3b\x00\x0b\xd8\xf3\x60\x21\xc3\xce\xff\xc3\xdd\x9b\x6f\x37\xad\x6c\x8d\x83\xaf\x52\xf0\xbb\x17\xdb\xc4\xb1\x13\x20\x0c\xe1\xe6\xf0\xd9\x8e\x09\x06\x42\x80\x24\x0c\x27\xc9\xba\x96\xa5\xb2\xad\x44\x96\x8c\x24\x4f\x81\xf4\xea\x87\xe8\x27\xec\x27\xe9\x55\x7b\xef\x9a\x24\x39\x4e\x80\x73\xbf\x73\xfb\xfc\x71\x88\x4b\x55\xbb\xe6\x3d\xd5\x1e\x44\x3d\x0f\xcd\x12\xa6\xa1\xd4\x8d\x41\x6c\x50\x4c\xe8\x2a\x88\x88\xf9\x58\x9b\x20\xa5\x79\xdc\xdc\x8a\x64\xed\x44\x66\x8a\x7b\xf2\x51\xdd\xf0\xf3\xb7\x85\x0e\xd8\xc1\x5b\x8c\xa4\x04\x47\x98\x6f\x81\x4e\xe1\xc3\xa3\xcf\x24\x51\x0e\x81\xc7\x39\xdc\x02\x51\xf7\xc3\xe3\xcf\x42\x62\x7c\xf8\x72\x13\x49\x1a\x4a\xeb\x5f\x12\x34\x43\x5f\x83\xdb\xfa\xe9\x21\x18\xa7\xec\x3f\xc0\x85\x45\x23\xa6\x80\x04\xc1\x8e\x4f\x04\x54\x48\xda\x01\x0d\x0e\x76\xe5\xcb\x0c\xd8\xec\xc7\xe8\x78\x4c\xe1\x91\xce\xc7\x4d\xc3\x3a\x76\x32\xa6\x39\x4d\xf1\x8f\x37\x8f\x5e\xe1\x23\xd9\xa3\x21\xbd\x58\xce\xe9\xc3\xe0\x02\x63\x20\x82\xdb\x50\x23\x6a\xce\x83\xeb\x0d\x76\x2e\x20\xd0\xd6\xe1\xb3\x76\x9e\xf0\x3f\x7d\x2b\x2e\x4c\xd8\xda\x45\xb5\xe0\x1c\x96\x63\xcd\x80\xa8\x76\xfb\xfc\x65\x61\x1c\x27\xff\x0b\xc0\x3e\xff\x82\x68\x72\x04\xab\x6a\x85\xc9\x1a\xa1\x32\xff\x49\x0f\xcd\xd1\xc1\x0a\x4a\x00\x7d\xf0\xd5\xa2\x6b\x9f\x2f\x70\x6b\x2e\xe0\xf1\xf9\x20\xb5\x36\x66\xf4\x05\xb4\x56\x6f\xb6\xc8\xb9\x47\x3e\x8c\xea\x61\xca\x00\x3d\x97\x76\x98\xab\x47\x1f\xd1\x0b\xe3\x09\x5a\xb2\x3c\x3a\xc2\xd3\xe8\x36\x66\x9d\xfd\xe1\xc7\xaa\xdf\x6c\x4c\x2f\x9a\xcb\x62\x3a\x3d\x7b\x67\xc4\x41\xa2\xb8\x71\xf3\x63\x54\xbc\x60\xfe\x43\xb0\xe9\x8d\x9b\x1d\xa9\x98\x78\x73\xde\x3c\x92\xba\x0a\xb1\x66\xcd\x43\xf9\xa5\x23\x78\xd4\xaf\x8d\x27\x10\xad\xa3\xf5\xb6\x7a\xd1\x02\x45\x14\xc8\xf0\xcf\xce\x9b\xc5\x2a\x5c\xa4\x20\xe2\x14\x7c\x69\xe9\xb8\x2a\xc9\x39\x3d\x53\xb6\x1b\xad\x9e\xb2\x46\xfb\xf2\xe4\x48\xc7\x48\xda\x8b\x9b\xd5\x35\x8c\x1d\xdb\x12\x68\x2e\x3c\xd0\x61\x5c\xbe\x68\xf8\x3e\xb9\xf1\x1f\x37\x5a\xde\xd6\xc7\x5b\xf7\xe0\xb7\x20\x7c\x09\xb8\xf0\x3f\x3b\xd0\x60\xbf\x48\x55\x10\x39\xa9\x22\xf9\xfc\xf8\x46\xea\x20\x5a\xef\xdd\x7c\x28\x81\xb6\x40\x0a\xaa\xab\xb0\xa5\xdf\x6a\x45\x57\x83\x16\x28\xd4\x5a\x82\xf5\x09\x50\x1f\x0e\x66\x47\x6b\x03\x1a\xe9\x71\xa3\xd5\xdb\xbc\xf8\xe5\xde\x0e\x1b\xb3\x66\xdc\x9c\x1d\x69\x9b\xf7\x7d\xfa\x04\x54\xe0\xcd\x16\x6e\x3f\x86\xd2\x4a\x8e\xa5\x4d\x5f\x03\xbc\x85\xeb\x2d\x0c\xd4\x85\x26\x23\xfb\x6b\x90\x0f\x7b\x1f\xbc\x79\x36\x9b\xd3\x2f\xf9\x58\x5c\x8b\x63\x7a\x97\xdd\x17\x94\x05\xb7\x18\xad\xfb\xf7\x47\x10\x78\xfa\x33\xbc\x7e\x3f\x69\x3e\xf3\x55\x80\x90\xd6\xd1\x00\x0d\x28\x8f\xc7\x56\x4d\x32\xca\xeb\xa0\x04\x48\x21\x5f\x1a\x7b\x0f\x21\x5c\xed\x41\x4c\x6e\x56\x6f\x30\x4b\x77\x2b\x6d\xf9\x8e\x92\x09\x3e\x51\x1c\x23\x47\x45\x8b\xb9\xb4\x40\x1f\x88\x23\xdd\xa9\x37\xcd\xf0\x5f\xe1\x9f\xd2\x66\xbc\xf5\x69\x82\xa9\x92\x05\x35\xfb\xf4\xed\x9d\xa6\x0f\xa9\x74\xf5\x39\x6c\xb4\x3e\x6d\x1c\xe8\x06\xf5\x37\xca\x35\xe7\x3d\xa2\x67\x21\x92\x7f\x7c\x10\x28\xff\x9f\xd6\x17\x8c\x57\x70\xf0\xed\xcb\xea\x75\xc7\xe0\x4a\xb8\x95\xa4\x1e\x7c\xd3\x68\x1d\x9d\x93\x02\xf1\xa0\xd1\xfa\xb8\xd9\xd4\xe1\x3f\xb6\xde\x63\xef\x07\xba\x77\x51\xe5\xc1\x45\xd3\x8a\xed\x15\xf7\x70\x30\x17\xcd\xc6\x9b\xfe\xa0\xa7\xa7\x15\xc8\xcd\xf8\xfc\x8b\x9b\xb1\x47\xd6\x38\x6f\x70\x47\x46\x4e\xc1\xda\x1f\x0b\x94\x0a\x61\xdd\xbe\x81\x45\x2c\x4c\x15\xbd\xf4\xc6\xad\xe0\x93\x35\x62\x17\x27\xf3\xb9\xd1\x7a\x8f\x18\x72\x7f\xf0\x99\x0c\x57\x45\xef\x6a\x06\x4f\x9a\xe9\xb1\xac\xda\x11\x92\x25\x2a\x53\x5f\x69\xd0\xb1\x01\xda\x35\x40\x1f\xdf\x0e\xf4\xec\x98\xa2\xdb\xbc\xd6\xa0\x43\x03\xb4\x20\x62\x3f\x0b\x7b\x71\x4c\x8a\xe5\xb7\x1a\x76\x6a\xc0\x76\x7e\x0e\xb4\xdb\x98\xf1\x48\x86\x25\xa1\x58\x54\x4e\x71\xb4\xb6\xb5\x83\x6a\xa7\xba\xf1\xb2\xfd\x24\x6a\xb6\x26\xc0\xaa\x5c\xb4\x02\x0c\x58\x7e\x38\x6d\x5e\xa4\x10\x85\xb7\xd5\x7a\xf4\xf2\x0b\xdc\xf9\x8d\x66\x98\x1a\x6f\x5a\x91\xf5\xa6\x35\xc7\x37\xad\x08\x44\x20\x37\x46\xb5\x52\xf2\x67\x41\xc4\x56\x54\xd4\xe0\x53\xc9\xbc\xf5\x0c\x93\x07\xfd\x64\x88\xa5\x9f\x08\x40\x8b\x5e\xa4\x17\x4d\x8c\xf0\xb1\x3f\xfb\x13\x19\x6e\x68\x86\xef\x4e\x63\x1c\xe2\xb7\x96\xfd\x2e\x73\x49\xaa\xb2\x3f\x21\xbf\x1c\x3d\x43\xac\x15\x84\x71\x1a\xb6\xcf\x71\x15\x6e\x12\xb6\x56\xbd\xa9\x3c\x6c\x61\x50\x83\xa2\xd7\x09\x3a\x33\x56\xd4\x25\xfd\x62\x81\xf7\x0a\xb4\x7c\x1d\xe4\xa7\xea\x47\x32\x8e\x10\xda\x32\x7c\x3d\xff\xaa\xe5\xc8\xdf\x1d\x3e\x74\x04\xc2\xe2\x57\xb4\xab\xf8\x90\x00\x5a\xc5\x47\x90\xa3\x2d\x0f\x79\x75\xca\x28\x0e\x6d\x2d\x10\xe7\x28\xf6\xc2\xd1\x07\xa9\xe9\x90\xaa\x6e\x08\xce\xa1\x85\x6c\xc5\xc1\x26\x82\x06\x97\xaf\x56\xff\x3d\x48\x0f\x1f\xb4\x23\x21\xd2\xac\xb7\xf0\xf7\x4b\xc3\x0c\x7e\xfa\x67\x35\x13\x65\xc8\x0c\x2b\x2a\x19\xa3\xc0\xe6\xb7\x9e\xfe\x29\x70\x69\xd0\xbc\x84\xfc\x32\x6b\xbb\xc7\xc9\xfb\x2a\x6f\x6c\xbe\xbd\x49\xd8\xcc\x6f\x5f\xe5\xd3\x4f\xeb\xcb\xf8\x58\xc7\x29\xfa\x76\xb8\x02\xc3\x9e\x9f\x37\x65\x78\xa1\xd6\xd1\x86\x4f\x54\x6a\xbf\xd1\xf2\xc6\x32\x10\xe9\x71\xa3\xfd\xe9\xf1\x87\x3c\x05\x7e\x8c\x18\xf9\x12\x48\xc0\x56\xf3\x72\x6f\x59\x54\x4b\x54\x1e\x88\x71\x4e\xa5\xb7\x80\xe5\xb2\x60\x2a\xd2\xda\xd3\x96\x16\x98\x1e\x35\x97\x33\x10\x66\xef\x8d\x0f\x0f\xf7\xf2\x9f\x5a\x55\xb7\xd1\x9e\xb7\xe5\x1b\x9a\xd8\xe8\xe6\x66\xcb\xc0\x9f\x82\x39\x52\x44\xb9\x61\xe1\xec\x71\x01\xc7\x41\x60\xc5\x1a\xbe\x19\xb6\x3a\x7a\x98\x9b\x01\x31\x52\xf0\xa0\xaf\x44\xbf\x86\x8c\xe1\xf4\xe6\xbc\xf9\x20\x68\x6a\xb6\x28\x6e\xc9\x08\x50\x2d\xcf\xac\x4e\x5e\xd6\x6f\x82\xe6\x23\x33\x6a\xe9\x9f\xb8\xe5\x9f\x1b\x9d\xa3\xb5\x1b\x46\x33\x7d\x03\x7e\xe8\x6a\x80\x17\xc7\xcb\xd7\x51\x37\x69\xec\x1f\x2d\x59\xc4\xe9\xb2\x45\xf4\x9b\x8d\xfd\x69\xf3\xfc\xf8\x86\x71\x53\x31\xee\xdf\x8d\x86\xa5\x9b\x2c\x1f\xd6\xe5\xf5\xc3\x5a\x6b\xca\x40\x7e\x7b\x9f\x1c\xdd\x6b\x28\xb7\xa2\xbd\x8a\x05\x81\xcc\x32\x8f\x8d\xa8\x5c\x4f\x46\x4d\xcd\xfe\x3c\x7a\x2f\xdd\xb0\x5b\x47\x4f\x9b\x9a\x6d\x5f\x7c\xa2\xd5\x70\x1b\xa3\xbd\xaf\x48\x0d\x2f\x13\xba\xab\xbe\x11\xa5\x6b\xf2\xb9\xba\xd7\x1a\xbf\x69\xa1\x22\x72\xa3\x99\x4e\x56\x91\xb8\x09\x9a\x8a\xcd\x51\x7f\x3f\x73\x0c\x4a\xe4\x5e\x62\xe1\x86\x83\x91\xf8\xb0\xf0\x21\x16\x3e\x70\xf0\xa9\x1b\xeb\xac\x24\x6d\x0b\x87\xb4\xef\xd8\xfa\x91\x23\x58\xa4\x29\x51\xbc\x27\x8e\x41\xbc\x62\xf2\x0a\x39\x78\x86\xa5\x4f\x1d\xd0\x64\x61\xd2\xf0\x37\x5b\xa6\x29\xc3\x97\x11\x14\x3a\x75\xac\xb9\xe6\xa0\xeb\x28\x5a\x06\x0c\x31\x6a\xf9\xa0\x87\x24\x38\xa4\x20\x1d\x23\x04\x10\x02\x4f\x0a\xaf\xb8\xe0\xbd\x87\x7b\xb5\xf6\x09\x4c\x0b\xd0\x87\xf9\xf3\x39\x42\xf0\x09\x02\x26\xdc\x3b\xde\xc2\xaa\x8f\x3e\xe1\x5c\x29\x16\x74\x80\x75\x2f\xa8\x2e\x0e\x21\xc4\xc2\x91\x55\x88\x2e\x45\xfb\x11\x15\x6e\xa2\xf7\xf0\x26\x2e\xe0\x06\x1c\xe8\x5e\x88\x24\x62\x81\xa7\x14\xc3\xb5\x7b\xb3\xe3\xa5\x14\x95\x44\x2e\x88\x8e\xd9\xe0\x06\x59\x55\xe1\x70\x1b\x5f\xa5\x4c\x00\x0c\x14\x28\x9a\x64\x99\x76\x36\xa5\x08\xb9\xd2\x46\x57\x57\x39\x6e\xb4\xc3\x0f\xa3\x63\xdc\xc3\xa2\x17\xef\x35\xf4\x49\xff\xf3\x7c\x82\x37\xe1\xdb\x37\x32\x67\xdb\x45\x25\x68\x5d\x9e\x56\x47\xbf\x7e\x7f\xa5\xd7\xef\xb6\xfd\xfa\xdd\xd6\xaf\xdf\x13\xcc\xb2\x8b\x91\xdd\x06\xf4\xe0\xe0\x23\x6f\xd7\x3c\xd7\x55\xdb\x41\xeb\xe2\x55\xb5\xdd\x1a\xb6\xf7\xe2\x69\x13\x83\x32\x0a\x86\x6f\x6f\x77\xb0\x37\xc6\x20\x0b\x9f\x21\xd2\x4e\xfb\x0b\x1c\x9c\x04\x73\x2c\xf4\x20\xd6\x61\xeb\x08\x3d\xd6\x9e\xe2\x6b\xf7\x33\xb0\xcb\xa3\x28\x88\x6b\xd2\x38\xdd\x69\x34\x8e\x9e\xc0\x93\xdd\x00\x88\x09\xb4\x69\x5d\x92\xc6\xe7\xf2\x4f\xa9\xf0\xc1\x53\xf6\x75\xf3\x8b\xc1\xa1\x44\x46\xfc\xd6\x87\xbb\x2b\x83\x12\x4e\xe0\x81\xe1\x33\xde\xc8\x0f\x33\xe4\x8d\xf0\x5d\xc9\x60\x4b\x8e\x1b\xad\xcb\x97\x0d\x83\x3f\x78\x44\xa8\xe9\x4d\xa3\xf5\x69\x0c\x9a\x8a\xfd\x73\x78\x9c\x78\xf7\x18\xe2\x4b\x3c\x69\xc1\x4b\x6b\xe3\x5b\x33\xa5\xd7\xd2\xc4\x35\x7d\x1a\xe1\x81\xe5\xdd\xc0\x27\x6b\x04\x28\xe5\x9b\x2f\x51\x1f\xb5\xf1\x52\xfe\xa4\x47\xb7\x4e\x63\xd6\xba\x6c\x2e\x04\x43\x3f\x6e\x71\xc4\x2e\x97\xa8\x00\x17\xa5\xfa\x59\x1b\x5f\x84\xde\x66\xe0\x4e\x5f\x62\x68\x2f\x4c\x85\x2a\x7e\xd2\xeb\x51\xa7\xb1\xd6\x9c\x37\x1f\xec\x5d\xc7\xeb\x80\x3a\x53\x9b\xed\x6d\xed\x3e\xfd\x6a\xa8\x07\x51\x09\x0a\x89\x6d\x8e\xf6\x10\x6d\x22\x1f\x2b\x50\x95\xe6\x8c\x92\x1e\x6a\xa2\x86\x2d\x63\x0d\xb7\x40\x6f\xdd\x79\x00\x9a\x51\xfe\x10\x82\x3c\x84\x60\x79\xa2\xa3\x98\x45\xa9\x58\x46\x88\x3d\x04\x19\xd3\x1e\x0e\xe9\xb0\xa2\xb5\x2e\xda\x20\x3a\x21\xfe\xbb\x0f\x2c\xec\xc1\x60\x08\x31\x39\x9e\x41\xe4\xb8\xc6\x00\x02\xdb\xb4\xff\x84\x78\x7f\xb8\x4c\x87\x0f\xe9\x3e\x8f\xc0\x88\x7c\xad\x19\x34\xdf\x1b\xe3\x3a\xef\xc1\x7a\xac\x81\x06\xe8\xed\x9e\xf1\xc5\x1c\xfd\xe6\x27\x63\x98\xe1\x9f\xca\xf3\xb1\xf5\x6e\x86\x8c\xba\x8b\x01\xfd\x11\x8f\x0b\x69\xeb\xe9\xde\x56\xf3\xfc\x6b\xd5\x6d\x4c\x0f\xde\x60\xf8\x24\x33\x38\xe5\xe6\xbe\x64\xe3\xda\x5f\x66\x81\xc1\xd3\x05\x4d\x1d\xce\x76\x60\x44\x62\x68\x2b\xf1\xee\xe3\xdc\xd3\xea\x85\x8d\x77\x9a\x38\x5e\x7e\x2d\x14\xf6\xf7\x8a\x15\x6e\x8f\xde\x57\x0b\xc3\x1d\x47\x32\x6b\x44\xa7\x31\x79\x97\x90\x78\x78\x39\x6e\xe6\x83\xe5\x6e\x7c\xa9\xee\x55\x3f\xb4\x9f\x1d\x7c\x05\xdb\xe0\xc6\xa3\xe6\xe6\x34\xa7\xa4\x8c\xdb\x0f\x30\xca\xd6\x5e\x75\xed\x65\xa3\xb5\x5b\x9d\x35\x5b\x2f\x3f\xef\xde\xa4\xfe\xac\x23\xea\x7f\xbd\x69\xf5\x8b\x3d\x51\x7d\xd1\x6c\xcd\x30\x88\x65\xe3\xa2\xb5\xa5\x1a\x3c\xc6\x5a\xc0\x2a\x8f\xdb\x14\xc8\xf6\x99\xfa\xbc\x36\x25\xa2\x0e\x2e\x0c\xf8\x7d\xd6\x1a\xce\xe4\x77\x7f\xd6\xc4\x26\xe0\xc4\xff\x92\xe2\x16\x04\x33\x83\x03\xb8\xb0\x93\xa4\x20\x07\x30\x72\x51\x48\x42\xdf\x19\x22\xec\x19\x83\xc0\x05\x3e\x6c\x62\xb4\xb3\x6f\x4d\x50\xf6\x85\xed\xc0\xcd\xd3\xfe\xf6\x0d\x65\x58\x99\xec\xba\x35\xdc\xf5\xd1\xec\x9a\x3c\xe1\x91\xde\x8f\x9b\x33\x58\xc0\x07\x4a\xcc\x06\x01\x13\x5e\xfa\xdc\x7d\xc3\x92\x72\xd2\x9c\x52\xbb\x66\x81\xef\xcb\x02\x70\xa9\xf2\xe0\xa1\x35\x99\x63\x8b\x85\x4b\x21\x8c\x01\x8b\x5f\x90\x09\x1e\xc6\x2f\xc1\x99\x3e\xc0\x99\xa6\x2f\x11\x35\x67\x19\x8d\x29\xfc\xfc\x7d\x82\xb1\x26\xde\x3a\x18\x0f\xb1\x9f\x14\x95\x98\x82\x43\xb4\xe7\x1d\xf4\x69\x3a\x18\xfe\x89\x18\x05\xfc\xc6\x1b\x33\x70\xf3\x6a\xd5\xd1\xcf\x3b\x6a\x22\xaf\xa6\xbf\xd6\xd1\xcc\xb7\x8d\x54\x6b\x73\xa2\xde\x6f\xd0\xb5\xe9\xeb\x13\x53\xb0\x1e\x18\xb1\x69\xe7\x2f\xb5\xa8\x41\xd4\x6a\xb7\x80\x82\x6d\x92\x01\xf6\x32\xe1\x7a\x41\x36\x73\x94\x84\xe3\x11\x28\xca\x9e\xbd\x7c\xf4\x15\xa0\x9b\x14\xaf\x75\xde\x24\x2c\x63\x92\xbc\xf6\xb8\xa9\xf0\x5a\x5b\x0c\x05\x55\x74\xf1\x9f\x6a\xd8\x61\x93\x14\x08\x1d\x0c\xf7\xe5\x83\xbb\xc4\xab\x5d\x7c\xc8\x7a\x32\x69\xe2\x53\xd6\xe3\x09\x85\xbe\x6a\x35\x5a\x9b\xad\x2d\x58\xfa\x8b\x56\xf8\x0d\xb6\x6d\xde\x44\x6e\xa6\xf1\xe6\x99\x83\x51\x5d\x80\xbe\x8c\x90\xf0\xa7\x70\x78\x28\x6e\xf3\xc1\x45\x3f\x53\xf1\x73\xa3\x9d\xbe\x5c\xc0\xee\x6e\xc0\x0a\x43\x7f\x33\xbc\x9b\xf8\x0c\xf1\x6c\x77\x0a\x81\x83\xd6\x64\x87\x71\x6b\x63\x42\x6c\xd0\xa5\xbb\xaa\xc7\xc7\x83\x5c\xd5\xcf\x8d\xf6\xf0\xd5\xf9\xd7\xaa\x1d\x92\xdc\xdf\x3b\x7e\x0a\x72\xcb\xd6\x8d\xc4\xfd\x69\x33\x2f\x64\x81\xc6\xab\xf1\x26\xf8\x53\x48\x8a\x5b\x4d\x7a\x5c\x82\xb0\xc1\x81\x21\x09\x6d\x7e\x91\xa1\xe5\xf7\xfa\x89\x21\xff\x6a\x35\xf0\xdf\x44\xb0\xec\x4c\x8d\xd1\xad\x96\xc7\x87\x9f\x0d\x21\xd4\x78\x9e\xf8\x7b\x88\xa3\x37\x9f\x8c\xdb\x78\xda\x79\x89\x44\xf2\x61\xac\x52\xd4\x28\x1a\x99\xfc\x59\xed\x54\x17\x2f\x5b\xf1\xfe\xd7\x8f\x37\x22\x62\xaf\x04\x11\x3b\x6e\x45\x7b\xaf\xd1\x43\x0a\x1d\x3d\x9b\x0f\x67\xab\x7c\xc6\x1f\x21\xe2\xc5\x30\x12\xfb\x8f\x05\xbb\x47\xe9\x9c\xf8\x33\x2c\x43\x8d\x69\xfc\x57\xa4\xca\xd8\xa7\x4c\x88\xad\x60\xf7\x02\x70\xca\x67\x0c\xfc\xb0\xbf\xe6\xa2\x28\xf6\x84\x62\xdf\x62\x72\xcd\xfd\x67\xfb\x20\x76\x3d\xc5\xd2\xfd\x21\x04\x75\xd8\x1f\x78\x7a\xd0\x87\xe7\x58\xe6\x7b\x20\x36\x8e\xc9\x7c\x70\x75\xba\x2c\x45\x0d\xce\xaf\x49\x96\x45\x1a\x9a\x7c\x0e\x0d\x28\x83\x8b\x28\x43\x51\x1d\x0b\x59\x6a\xda\xa1\xd8\x76\xd5\x37\x8d\xf6\x97\x07\x30\xec\x87\xbb\xef\x50\x81\x79\x39\x45\x2e\x95\xcc\xed\x70\x2b\xf7\xa7\xf8\xef\x1b\xf1\xbb\x03\xaf\x9a\x62\x56\x73\x2a\x9d\x81\x55\x6f\xdb\x1b\x4e\xb5\xd5\xb0\x76\x48\xf4\xd1\xbf\xf7\xf0\x7c\x6a\x39\x24\x5e\xe0\xcf\xaf\x81\x51\xec\xe3\xd3\x78\xbd\xd9\x00\x1b\x70\x65\xac\xbb\x27\x78\x5a\x4c\x3e\x85\x9e\xd9\xbd\x6a\xab\xd1\x69\x80\xa2\x16\xb9\x4b\x8c\x34\x40\xb9\xab\x04\xe7\xf7\x80\x72\x4d\xa1\x6b\xca\x3e\xba\x7e\x1d\x34\xc2\x26\x46\x3f\xde\x7f\xad\xbd\x1f\xfe\x44\x7d\xe0\xab\xaa\x0c\xe6\xd4\xee\xef\xd1\x71\x92\x71\x06\x3f\x3e\x11\xa0\x3b\x6f\x37\x00\xaa\xe0\x56\xf7\x70\x67\xf7\xf7\x30\x08\xc8\xe7\x46\xeb\xe8\x99\x5d\xe7\xb8\xb1\x87\x4e\xf4\x72\x58\x60\x2d\x27\x76\x6c\x22\x13\xe8\x75\xc0\x1c\xb3\xdd\x88\x9a\xfb\xe0\xd3\x0f\x26\x1c\x71\xd3\xcc\x14\xd5\xaa\xca\xf0\xc7\xed\x77\x18\x6c\x13\xb3\xe2\xb5\x50\x54\x39\xc4\x63\x8d\x9a\x7b\xc0\x27\x5f\xde\x03\x40\xf0\x27\x3f\x6f\xb6\x1f\xc2\xf6\xee\xb6\x47\x20\xd6\xb6\x92\xe6\xe5\x7c\x99\x5b\xd3\xe6\xee\xa8\x67\xf4\xbc\x57\x30\x0a\xc1\x5f\xd7\xad\xf0\xcc\xfe\x3b\x43\x56\x5a\x78\x18\x47\xf6\x4f\x31\xb3\x04\xaa\x21\x47\xd6\x6a\x63\xe4\x45\xb0\x4d\x3b\xfe\x13\xe0\x50\xb6\xbe\xbd\x46\xfb\x70\x4b\xf1\xa6\x0f\xe6\xda\x35\x2b\xd8\xbd\xf4\x0c\xe0\x0f\x3c\x41\x5c\x5e\x6d\xa9\xf1\xe7\x53\xb4\x6c\x5e\xab\xe4\x27\xa6\xe3\x11\xd8\xb0\x7c\xd8\x82\x2b\xf9\x01\x1e\xf8\x8e\xc1\x63\xfe\xeb\x84\xf4\xf6\x73\xfc\xf4\xd8\x83\xe8\x35\x7b\xcf\xbc\xac\x90\xf9\x61\xfe\xae\xba\xdf\xb8\x68\xb7\x93\xf7\x02\xc1\x8e\x6f\x94\x5d\x6a\x73\x57\x4b\x3a\x8f\xdb\x79\xfd\xdd\xa1\xa9\xbf\x3b\x14\x9b\x9b\x7e\xd2\x4f\xfb\x4f\x3e\xca\x60\xfd\x4a\x1e\xda\x6b\xb4\x3e\x5e\x04\xcd\xe5\xaf\xcf\xed\x9b\xbd\x70\x0a\xf0\x1f\x0b\x74\xef\x87\x8d\xd6\xa7\xd9\xa4\x29\xd1\x48\xc7\xdb\xd5\x64\x64\xd3\xcb\x93\x91\x47\x80\x71\x3e\x8b\x03\x26\xd0\x70\xcb\x8f\x71\xa7\x66\xc0\x9d\x4c\x9b\x0f\x4d\xa2\xf6\xad\x85\x9c\xd6\x96\xc5\x46\xe8\x07\xe2\x83\x27\x45\x2f\xc7\xfb\x8d\xce\xf9\xde\xf4\x93\x9c\xff\xde\xc7\xa7\x3d\xcd\x6f\xa6\x7b\x85\xaf\xf8\xae\xe0\x48\xe4\x53\x37\xe4\x9e\xda\x33\x92\x20\xac\x61\x4e\x06\xf1\xe1\xd5\xfc\x5b\xb3\x50\xe8\x1c\x85\xca\xb9\xa5\xfd\x05\xd3\x52\x0b\xce\xbb\xfd\xa5\x8e\xab\x20\x08\xf0\xfb\x01\x97\x51\x33\x3b\xde\x47\x1d\xa4\x6f\x53\xc2\x34\xde\xcc\x8f\x1b\x4f\x5f\xcb\xb7\xca\xf3\x97\x52\xdd\xa5\xf3\xb6\x08\x32\x9b\xbc\x6a\x6d\xbd\x6a\x5d\x82\x0c\x50\x10\x1a\xe1\x2b\xaa\x48\x2e\x9a\x8d\x37\x69\xfb\x1b\x4a\x5d\xb3\x66\xbc\x58\x25\xc3\x25\x1c\x19\xfe\x29\x47\xca\xda\x2e\xf0\xd1\xda\x00\xa2\xb7\x66\x50\x9f\xe9\x2e\xf9\x4b\xcd\xb1\x19\x6a\x7f\x33\xfe\x52\x03\x40\xc7\x09\x39\xbd\xed\x52\xda\x95\x4b\x6c\xb1\xc1\xc5\x4a\xa6\xe4\xbe\x06\xc4\x25\x40\xac\x35\xa2\xac\x51\xad\x87\xcd\x5f\xa0\xef\x33\x8e\xdd\x3d\xe4\x06\x7d\x4f\x29\xa0\xc3\xac\xb9\x45\xd3\xe5\xc5\x8f\x98\x19\xe7\xb2\xba\x7c\xfb\x7c\x86\xcd\xd6\x78\x95\x37\xf6\x9e\xc1\xf5\x7e\xf9\xfa\xa5\x29\x04\x36\xa8\xad\xcc\x47\xda\x3e\x17\x43\x80\x68\x3d\x8f\x38\x52\xf9\xba\x87\x34\xfb\x29\x60\x95\x49\x53\x8a\x70\xad\xa0\x8d\x9a\xeb\x5b\xa4\xe2\x9a\x7c\xaa\xde\xf2\x15\x17\x15\x72\xb3\xe6\x39\x46\xb3\xbb\xe8\xdf\x2c\x7b\x97\xdf\xc4\x60\x94\xfb\x9b\xed\x02\xf6\xe4\x31\x3a\xb3\x44\x2d\x7a\x5c\x26\x71\x79\x8c\x4d\xa2\x3e\x24\x4a\x7b\xd6\xa4\xf0\x04\x31\x16\x27\xfd\x95\x83\x45\x4f\xcf\x42\x26\x27\x13\x5a\xb6\x88\xdd\xa1\x07\x61\x52\x65\xeb\x87\x62\x33\x42\xed\xac\x09\x4b\xeb\x34\xda\xc1\xfb\xc2\xdc\x50\x0f\x9b\x3e\xb0\x65\x1c\xed\xc0\xd2\x9e\x8e\x0b\x76\x88\xb1\x22\x5f\x2b\xf5\xd2\x79\x0b\x55\xdf\xb0\xf1\x9f\xd0\x5f\xd0\x9d\x5e\xea\xf8\x11\xf5\xe6\x85\x54\x67\x42\x5c\x9c\x6f\x10\x90\xa9\x3d\x80\x3d\xf9\x3a\x9f\x03\x9e\xf7\x66\xf3\xa6\xfa\x0d\xd6\x45\x73\x31\xd8\x37\x53\x3c\x29\xe7\x2f\x31\x91\x59\xa7\x15\xbe\x1e\xb5\x62\x34\x09\x3f\x9c\x08\x39\x71\x77\xf4\x7a\xde\x0a\x29\x6a\x77\xfa\x0a\x3c\xb5\x36\x2e\x11\xc8\x13\xa2\x45\x4f\xc9\x1c\x3a\x4e\xc8\x4a\xb7\x57\x3d\x6c\x8d\x5f\xb7\x9e\xf4\xab\xed\xdd\xe8\x75\xd2\xc4\xa8\x5f\x18\xd9\x41\x7c\x05\x96\x67\xaf\x35\x7e\x3d\x6f\x6d\x7c\x80\x3a\x8f\xd0\xf2\xbb\xfa\xa0\xd9\x0a\x5f\xc7\xed\xcb\x4b\x19\xa4\xe7\x02\xa4\xe5\x19\x5c\x85\xad\xd6\x04\x45\xd7\xc3\xf1\x14\x47\x80\xa6\x9e\x1f\x26\x60\x8c\xf1\x66\xe4\x54\x8f\x77\xa3\xd7\xf5\xf6\x1c\x54\x3e\xcb\x4c\xd0\x2f\x5e\x9b\x4b\x71\xfc\xcd\x51\x26\xe8\x6f\x28\x27\x42\xab\x85\x01\x2a\xc9\xf8\x7c\x03\x7e\xb8\xe3\xcf\x10\x44\xb2\xf5\xb8\x8f\xa7\x77\xcc\xb5\xda\xb7\x79\x83\x04\x3f\x11\xb4\x73\x52\x9c\xbf\x9d\xbe\xcd\xef\xe1\x16\x0e\xfb\xc8\x16\x60\x46\xa4\x4b\x74\x2c\xfa\x8c\x9a\x9b\x0f\x5b\x48\xd1\x2f\x78\xde\x2a\xe0\xf8\x02\x13\x79\x23\xf2\xfc\x30\xe3\xa4\xf8\xf9\xdc\x68\xf4\xc1\x4b\xa4\xf1\xc0\xc8\x1b\x86\x0a\x9c\xa7\x0e\xba\xf7\x6c\x62\x9f\x4f\xfb\x24\xcf\xc1\xcb\xc2\x57\xbc\x68\x1f\xa2\x3e\x58\x0b\x1c\x3f\x93\xcf\xff\x7b\xa8\x38\xdd\x6b\xb4\x5b\x98\x7c\xfd\xeb\x23\x87\x7c\x81\xde\x34\x3e\x00\x4b\xf8\xae\x83\x66\xc8\xf8\x9e\xc5\x87\x60\x63\xf7\xf5\xb1\xac\xb6\x2f\x30\x31\xb9\xf3\x7d\xa2\x00\xa0\x97\x9e\xb9\x6e\x6b\x60\xb9\xed\xf6\xd0\xa3\x3b\xc6\xb8\x1a\x8f\x3e\x55\xdf\x34\xf6\x3e\xf9\x7b\xa0\xa9\x7e\x02\x85\x0e\x86\xa1\x12\x5d\x7c\x6e\x34\xdc\xc7\x12\x15\xc3\xbf\x82\x9b\x69\x63\x1e\xb6\xa9\x98\x6c\xa7\xd1\x1a\xc0\x2f\x0f\x70\x22\x3d\x0a\x7c\x15\xe3\xd9\x80\xf2\x27\x4d\x0d\xee\x2b\xa4\xfc\x74\xcd\x09\x08\xfe\xe4\xcb\x93\x2f\x2b\xd3\xfc\x0d\x2e\x41\xfc\x38\x48\x2f\x25\x17\xf9\x08\x89\x67\xd4\x0c\x3d\x75\x64\xea\xc5\x7c\xe4\x08\x43\x0f\x3e\xf8\x80\xce\x7b\x75\x5e\x35\xa2\xac\x8d\x0e\xd1\xfe\xff\xd9\x22\xc3\x9f\xae\x91\xdf\xcc\x34\xc1\x03\x43\x1e\xfa\xf0\x2c\xb0\x17\xbc\x3c\xdf\x68\xfe\xc4\xa8\x8b\xd2\x13\xea\xa0\x04\x62\x3c\x17\x47\xb8\xa5\x53\xc8\x04\xba\xb1\xf7\x1e\x79\xd5\xfa\xc7\xdb\x64\x42\x15\xfc\xe9\xe4\x0b\xf1\xa4\x0e\xbc\x8d\x7c\xd2\xdc\xea\xc3\x3d\xcd\xd1\xfa\xe8\xc3\x03\x9b\xd8\x1a\x36\x87\xa9\xc1\x4a\x25\xa6\x7d\xe0\xac\xa9\x1f\xb9\xa6\x9f\x72\x59\x07\xdb\x8d\x56\x5f\x62\x6c\x08\x23\xf2\x54\xa6\x7f\x7e\x58\x60\x81\x11\x41\x2e\xf7\x79\xcb\x32\x9a\x7d\xf2\xea\x26\x2d\x34\x2b\x7b\x24\x4d\x0f\xdf\xf4\x16\x86\x01\x48\xf8\xa1\xaa\x52\x25\xae\x0d\x9b\x92\x67\xdc\xf3\x86\xae\x7e\xc9\x38\x2c\x4e\x9b\xb8\x67\x25\xec\xdb\xc5\x4a\x6e\xa3\xe3\x3d\x38\xd6\xda\xb0\x80\x6b\xde\xf5\xe9\x05\x75\xe0\x34\x1a\xce\x43\xc0\x10\x07\x98\xf2\x83\x86\x5f\x7f\x05\x32\xc1\xee\xda\x85\x5c\x67\xde\xe8\x04\xcd\x77\x1a\xc4\xd0\xd1\x86\x20\x13\x47\x1a\x74\x74\x86\xcd\x2d\x23\x0d\xea\x66\xef\xb7\x1b\xca\x24\x6f\xcc\x8d\xdf\xec\x5c\xb3\xf8\xdf\xf6\xc4\xb5\x4f\x5b\x96\xae\xea\x59\xc7\x36\x9d\x98\x74\x74\x44\x98\xbd\xfe\xbe\x31\x91\x21\x09\x26\xfb\x8d\xc7\xfb\x92\x7f\xbe\x9c\xe7\xf5\x54\x8b\x5e\xb5\x53\x1d\xb4\xda\x4f\x0e\x05\x4d\x7c\xd3\x19\x02\xca\x79\x60\xe4\x7b\xec\x34\xf6\xc7\xad\x6f\x5f\xab\x07\x55\x7f\xaf\xf5\x6d\xf7\xcb\x85\x8b\xbc\xd9\x74\x63\x55\xf4\x8a\x5f\x4a\x8d\xf8\x13\x76\x7b\x8b\x9f\x53\x5c\xa1\x02\xed\xa2\x49\x51\x0d\xf7\x2f\xbe\x16\x30\x5f\x13\xd8\xdf\xc7\x46\x7f\x63\x64\xdb\xbf\x6e\x52\xb3\x8d\x41\xd3\xb4\xf3\x78\x48\xc5\x0f\xc0\x7a\x5b\x5a\x7a\xf8\xcd\x2d\xd9\x4b\xab\x80\x59\xdc\x00\xb2\xf7\xc8\x78\xc9\x19\xef\x3e\xe9\x2f\x65\xf4\x8a\xec\xfd\xb4\x36\x0b\xfe\xa2\x30\x60\xed\x7a\xd6\xee\xef\xb6\x1a\x81\xdb\x9b\xfd\x4d\xa0\x6e\xef\x31\x28\x0c\x36\x9a\x43\xcc\x41\x0a\x72\xaf\x55\xfb\xdb\x67\xf0\x99\x7b\xf3\xa0\x23\xa5\xc5\xd6\x97\x87\x9c\x02\xf1\xb6\x1b\xad\x23\x4a\xbe\x87\x11\xb9\x5b\xef\x21\x29\x00\x68\xad\xdd\x2d\x20\x48\xad\x27\x4d\x1f\x6d\xe9\x30\x12\x25\x10\xd1\x0f\xf4\x6d\xab\x79\x71\x58\xa4\x93\x10\x67\x30\x4a\xe9\x75\x6f\x53\x11\x16\x89\xdf\x1a\xfb\x1b\x1b\x14\x5c\xec\xb0\x91\xb4\xc7\x7b\x38\xd7\x2f\xa8\xc2\x3a\x6e\xb4\x5e\x0d\x3d\x81\x07\xe6\xaf\x6f\x42\x23\x22\x65\x1a\xd2\xfa\xf3\x49\x81\x94\xbb\xdf\x68\x7d\xf4\x3f\xc8\x98\x6c\xad\xa3\xd7\xf2\x9e\xb6\xde\x7d\x33\x34\x0f\x17\x47\x2b\xb4\x14\xe1\xa7\x65\x28\x4b\x62\xb5\x87\xad\x6b\x10\xd6\xd3\xb7\x02\x07\x5c\xb6\x9e\x1d\xfd\x55\xc9\xb8\x27\x86\xca\xff\x72\x50\xf0\x3a\xa2\xcd\x05\x3f\x34\x3a\xcf\x9a\x09\xf9\x59\xb4\x1a\xad\x4f\x9b\x45\xf5\x1f\x60\xea\xa2\x4b\xf1\x4f\xe7\x49\x73\xc3\x30\xd4\xdb\xba\x06\xfe\x27\xb4\x47\xd9\x78\x65\x46\xd4\x1a\xbe\x96\x34\xba\xf3\xa7\xff\x5a\x03\x3a\x7f\xbd\xc2\xf6\xcc\xac\x1c\x5c\x53\xf9\x43\x63\xb4\xf7\x1e\x71\x71\xfa\x4d\x85\x06\x51\xb8\xf8\x81\x57\xdd\x6b\x6d\xbe\xfe\x0a\x7b\x81\xb1\xd2\x5d\x94\x49\x21\x4c\xa6\xcc\x73\x36\xc5\x7c\x85\xa8\x83\xae\xef\x6a\xb4\x3b\x27\xcb\x99\xe1\x71\xd5\xc8\x1b\x12\x81\x7d\xc4\xe1\x33\xcd\xe5\xcf\x25\xfb\x83\x57\x02\xe4\xca\x0f\xdf\xc0\x03\xed\xb8\x07\x41\x4e\x53\xe8\xe2\x18\x35\x46\xc7\x9f\xd5\xd1\x6f\x7d\xdc\xc2\xa6\xfb\xc9\x26\xf9\xb1\xa5\x9b\x58\x30\xc1\x8c\x1b\x9f\x2f\xbd\x6a\xa7\x11\x37\x87\xed\xea\xa8\x55\x7d\xdc\x6a\x75\x30\xbf\xc8\x00\x45\x19\x34\xfc\x7f\xb3\xd5\xa1\xf9\x1c\xb4\xde\x82\x94\xba\x68\x3e\xea\x60\x3c\x40\x30\x16\x69\xc3\xa6\xfa\x64\xef\x14\x82\xc4\x03\x29\xeb\x41\xeb\xb0\xdb\x99\x83\xbc\xc7\x1b\xd5\x4e\xfb\x2d\xdc\x89\x35\x8a\xea\x8e\x80\x21\x7b\x7f\x83\x0c\x92\xbe\x0c\x50\xcc\x7b\x84\xa8\xf6\x00\x43\x2c\x4c\x29\xce\xe8\x05\x04\xcd\x3a\x6f\x8b\x75\x69\xa0\xda\x87\xd2\x87\x81\xfa\x90\x3c\x68\x51\xaf\x6b\xfc\x79\xd0\x68\xbc\x19\x42\x72\x11\x08\xc1\xd7\xc2\xd4\xc5\xe2\x7f\x7e\xcb\xc7\x4c\x40\x14\x33\xef\xcd\x43\x84\xd7\x89\xbe\x35\xd5\x1b\x14\x44\x37\x40\x47\x35\xd4\x6e\xb7\x1b\x8d\xbd\xf3\x63\x0c\x94\x07\xc9\x66\x87\x6d\x40\x51\x6f\x30\x4f\x0f\x20\x9f\xbd\x4b\xf0\xf0\x68\x1f\x91\x0e\xe5\x02\x51\xf2\x9b\x2d\xb0\x1d\xfe\x9c\xc2\xb3\xc0\xab\xa7\xad\xd1\x65\x53\xba\x5d\xbc\x79\x06\x2b\x79\x80\x93\x79\x67\xce\x40\xb4\xc4\xbf\x45\x77\x10\x59\xf1\xe0\x3d\x2d\x1b\xe8\xa2\x01\x3f\xc0\xab\x39\xb2\xe1\x60\xb4\xbc\xd5\xc2\xda\x62\x93\x60\x50\x18\xe1\x54\x0c\xa8\x13\x34\xc9\x5f\x6c\xef\x65\xd8\x44\xdd\xcd\xb7\x66\xfa\xad\x29\x37\xa6\x43\x5b\xd8\x78\x80\x03\x6f\xa0\x38\x57\x37\x6a\xec\xbd\x3d\x87\x28\xae\xe4\x47\x07\xcf\x5b\x97\xe4\x7a\xff\xb8\xf3\xaa\x33\x10\xd2\xe1\xdb\x74\xef\x6e\xf5\x6e\xdf\x0f\xf8\xdd\xed\xbb\x49\xea\xa4\xbe\x5b\x3f\x4f\xea\x9b\x1b\x35\xce\xf9\x93\xcd\x87\x8f\x9d\x9a\x3b\x9c\x84\x17\xb5\xf3\xe4\x6e\xf5\x6e\x12\x4d\x62\x97\x27\xad\x28\x4c\x79\x98\xde\xdd\x3e\xb9\xeb\x8f\xc6\x51\x9c\xb2\xfb\xcc\x49\xd8\x47\xee\xb8\x29\xeb\xc7\xd1\x88\x95\x62\xf1\x77\xe9\xf9\x69\x48\x15\xbe\x33\x68\x34\x4f\xd9\x15\xd5\xa8\xd5\xfd\xf0\x9c\xbb\x69\x27\x4c\x03\xab\xa2\x1f\x4e\x9d\xd8\x77\x42\xf8\x92\x6b\x55\xab\x4f\x52\x3f\x48\x44\x0b\x3e\x87\x16\x1e\xef\x3b\x93\x20\x65\xfd\x49\xe8\xa6\x7e\x14\xb2\x49\xc2\x45\xd3\x72\x85\x7d\x3f\x0d\x19\x63\x6c\xea\xc4\xcc\x0f\xd3\x80\xed\xe0\x18\x6b\x93\x84\x13\xe0\x32\xfd\x5b\x79\x8e\x55\x8b\x3a\x2f\x8b\xb6\xb2\x42\xcc\xd3\x49\x1c\x02\xb8\xe7\xa7\xe1\xd5\x69\x78\xb7\x7a\xf7\xf4\xee\x24\xe1\x2c\x49\x63\xdf\x4d\x4f\xef\x3e\x3f\x0d\x4f\xc3\x83\x9e\x98\x5b\xcd\xe3\x7d\x3f\xe4\xef\xe3\x68\xcc\xe3\x74\x51\xc6\x11\x27\x55\x76\x7a\xf7\xdf\xff\xe6\xc9\x7e\xe4\x4d\x02\x7e\x7a\xb7\x8a\x03\x9d\x3a\xc1\x84\x6f\xb3\x34\x9e\xf0\xd3\xf0\xaa\xa2\x66\x98\xd4\xe4\x14\x77\xd8\x34\xf2\x3d\xb6\xf1\xfc\x54\x0c\x93\x0d\x62\xce\x43\xb6\x83\xad\xb7\x36\xb6\x59\xe9\xff\xf0\xa7\xfd\x2d\xfe\xac\x54\x15\x25\x9b\x1b\x50\xe4\x3e\xe5\x8f\x5d\x2a\x7a\x80\x45\xce\x96\xf7\xd8\x79\x82\x45\x0f\xb1\xe8\xe9\xa6\xfb\xe4\xe9\x23\x2c\x7a\x84\x45\x8f\x1f\xf7\x7a\x8f\x1d\x2c\xda\xc2\xa2\x47\xae\xd3\xdf\xda\xc0\xa2\xc7\x54\xf4\xd0\xd9\x78\x44\xb0\x9e\x60\xd1\xc3\xa7\x4f\xf9\x43\x17\x8b\x9e\x62\xd1\x03\xfe\xc4\x7b\xf8\x00\x8b\x9e\x61\xd1\x66\x6f\x8b\x3f\x20\x58\x0d\x1a\x6b\xef\x59\xff\xb1\x4b\x5d\x36\x68\xb0\x8f\x9f\xf5\x37\x1c\x4e\x65\x34\xb4\x8d\x0d\xfe\xf8\xc9\x63\x2a\x7b\x22\xcb\xdc\xa7\x5b\x0f\x4b\xa7\xe1\x15\x2d\xcf\xbf\xf5\xb2\xc1\x4a\x15\x2e\xa8\xac\xf4\xfc\x6e\xf5\x6e\xfd\x3e\xe3\x49\xe0\x87\xe9\xba\xe7\x27\x4e\x2f\xe0\x0c\x8e\xf1\xfa\x30\x8a\x2e\x92\x7a\x3c\x09\x78\xb2\x1e\xf5\xf1\x67\xd5\xfa\xc6\xe7\x43\x67\x92\xa4\xfe\x94\xaf\x7b\x7c\x9c\xb0\xfb\x75\x75\xa0\x97\x5f\x8d\x6b\xce\xaf\x38\x79\x71\x14\x04\xdc\x2b\xff\x3b\xe6\xfd\x8a\x3c\x20\x31\x73\xd5\x17\x31\xf8\x98\xf7\x6b\xba\xa4\x8a\x47\x94\x49\x90\xe2\xdc\xc9\x5a\x54\xa4\xaa\x84\xce\x88\xcb\x6f\xe2\x6f\xf5\x41\x94\xfc\x43\x60\x02\xf5\x19\x7e\xa8\xef\xe6\x27\x59\x6f\x47\x1e\x4c\xf6\x82\x95\xe0\x18\x97\xd8\xb6\x51\x03\xae\x04\x8e\xff\xdf\xb0\x14\xff\x98\x24\xfc\x23\xef\x9b\x17\xf2\x23\xef\x97\x8d\xc9\xdd\xd9\xd9\x61\x93\x10\xef\x8f\x57\x51\xbd\xfb\x49\xcb\x5a\x00\x13\x5a\xcd\x9d\xc4\x31\x0f\xd3\xc2\xde\x0e\x69\xd8\xaa\x3f\x28\x28\x1b\x2b\xa5\x3b\x81\x19\xc8\x06\x19\x10\x27\x1b\x67\x7a\x29\x78\xfa\x49\x54\x2d\xa8\xb5\x79\x66\x8c\x62\x4a\x95\xac\xc1\xbf\x30\xb7\x72\xdb\xe8\x93\x1a\xfa\x7d\x56\x1e\xc7\x91\xcb\x93\xa4\xc6\xc3\x69\xed\xdd\xc1\x6e\xfb\xdf\xed\x77\x9f\x60\x65\x4a\xe3\x38\xf2\x26\x70\x5c\x4a\x0a\xcd\xa9\xa9\xb5\xfb\x7d\xee\xa6\x65\x75\xa0\x34\x26\x44\xb0\xd6\x38\x04\xb8\xe5\x0b\x6f\xb4\x64\x62\xc0\x49\x14\xf0\x1a\x8f\xe3\x28\x2e\x9f\x9c\xde\xdd\x77\x52\x1e\xfb\x4e\xb0\x7e\xdc\xd9\x66\x0d\xe6\x46\xa3\x71\x14\xf2\x30\x65\x7e\xc2\xdc\xa1\x13\x0e\xfc\x70\xc0\xd2\x21\x67\xa7\x77\xc5\x31\x75\x9d\xb4\x9c\x59\x83\x92\x38\x28\xa5\x49\x58\x12\x38\xd1\x18\xc5\xe9\xdd\x8a\x6c\x81\xc7\x8f\x9d\xde\xa5\xa3\x17\xf5\xcd\xaf\x70\x76\xc5\xc7\x34\x62\x3d\x6e\x7e\xc9\xf6\x34\x09\xa1\xaf\x4c\x4f\xb5\xd3\xbb\x95\x2a\x2b\xb5\x03\x3e\xe2\x61\x9a\xb0\x64\x18\x4d\x02\x8f\x85\x51\xca\x92\x99\x9f\xba\x43\xbc\xb5\x93\xd0\x18\x5c\x1a\x99\x7b\x57\x8e\x62\x36\xf5\x5d\xce\xa6\x3c\x4e\x9c\x4a\x0d\x3a\xd8\xe5\xae\xef\x71\xd6\xe3\xe9\x4c\xe0\xe8\x49\x22\x56\xc2\x31\x9b\x45\xb1\x0d\x54\x2f\x91\x9a\xd2\xe9\xdd\x0a\x5b\x63\x25\x8e\x63\x63\xfd\x28\x86\xc5\x0c\xfc\x3e\x4f\xfd\x11\xac\x84\xf8\xad\x96\x1d\xbb\x3e\x1a\x72\x16\x3a\xe9\x24\x56\x15\x70\xdd\xfc\x84\x79\x3c\xe5\xf1\x48\x6c\x2c\xf3\x26\xb1\xdc\x9c\xbe\x1f\x27\x29\x8b\x79\xe8\xf1\xb8\xca\xfc\xb4\x94\xc0\x4e\xfb\x1e\x8f\xb9\x67\x0e\xd9\x47\x70\x78\x9c\xfd\x04\x16\xa9\xab\xce\x4a\xb7\x26\x28\x59\x69\x3f\x8a\x39\xf3\xc3\x7e\xb4\xcd\x86\x69\x3a\x4e\xb6\xeb\xf5\x7e\xaf\x36\xe2\x75\xc4\x97\x1a\xdc\xba\x1a\x77\x52\x3a\xab\x9d\x47\x7e\x58\x2e\x9d\x9e\x86\xa5\x8a\x24\xb5\x8c\x5d\xe1\x1f\x57\x55\x76\xa2\xdb\x9d\x55\xe8\x86\x14\x20\x94\x07\x59\x8c\x52\x78\xbf\x15\x82\xcc\xdf\x5e\x01\x23\x83\x47\x6e\x71\xb1\xee\x58\x67\xee\xde\x3d\xbb\x1f\x71\xb3\xcc\xf1\xfc\x9e\xab\x25\xc9\x87\x3e\x3f\x05\x17\xc6\x09\xb3\x87\x2d\x7f\x81\x9c\x7e\xca\x63\xd6\xe3\x02\xb0\x1f\xfa\xa9\xef\x04\xfe\x25\xf7\x6a\x74\x0c\x4f\xef\x1e\x45\x2c\x99\x8c\xc7\x31\x4f\x12\x96\x0e\xfd\x84\xcd\x9c\x38\x14\xb5\xa3\x71\x2a\xee\x84\x60\x82\xac\x23\x9e\x3f\xd2\xe2\xb6\xad\xde\xeb\xd7\x87\x07\xef\x6a\x82\x9d\x0a\x07\x7e\x7f\x61\xed\xe1\x19\x36\xb8\xd2\xc8\x55\x22\xe1\x4e\xff\x38\xb4\x88\xa3\x66\xf5\x9c\x20\xe8\x39\xee\x85\xb1\x6f\x21\x9f\x41\x23\xb5\x07\xb9\xdd\x33\x76\x47\xf6\xa0\x5b\xd1\xa0\x61\xc8\x62\xc0\x34\x2a\xe2\x0d\x4f\xe0\x82\x54\x97\x8c\x4c\x10\x86\xab\xbb\xd5\xbb\x19\xea\x9f\x2e\xc6\x3c\xea\xb3\x99\x1f\x7a\xd1\x0c\x71\xbc\xba\x59\x25\x71\x94\xa8\x82\x17\xb9\x13\xc0\x06\xcb\xab\x84\xce\xd4\x1f\x38\x69\x14\x67\xeb\x3c\x07\x6e\x95\xf8\x12\x3f\x69\xc6\xd1\x2c\xe1\xb1\xe6\xc7\x65\x49\x09\x4e\xbe\x38\x92\x29\x13\x88\x26\x9a\xa4\xbb\x93\xd8\x81\xa5\xdb\x61\x6a\x19\xcb\x15\x58\x22\xac\x17\x44\xe1\x80\xc7\x47\x58\x9b\xe0\x24\x6c\x87\x9d\x94\xda\xde\x80\x97\xaa\xac\x74\x14\xfb\x1e\x0f\x53\xf1\xe7\x4b\x3f\xe6\xfd\x68\x5e\x3a\x83\x65\x13\x78\xad\x1c\xf0\x94\xf9\x6c\x87\x6d\x3c\x67\x3e\xfb\x57\x31\xb8\x5a\xc0\xc3\x41\x3a\x14\x35\xd6\x76\xd8\xa6\xb5\x79\x7a\x3a\xf7\xee\xe9\x15\x10\xdb\x1f\x37\x06\x02\x37\xfa\xa1\xc7\xe7\x07\xfd\x72\x21\xe4\x13\xff\xac\xc2\xfe\xd8\x61\x1b\xc6\xb6\xd3\x6e\x6e\x5a\x9b\x6d\x6c\xb3\xe0\xc2\xaf\xca\x15\xc4\x46\xb4\x9b\xea\x84\x8d\x7c\x37\x8e\x52\x27\xb9\xd8\xe5\xbd\x68\x12\xba\xbc\xdc\x0f\x09\xb6\x98\xa9\xeb\xd0\x21\xed\x3b\x41\xc2\x0d\xa0\xe5\x0a\xdb\xf9\xc3\x9c\x17\xd6\xcc\x0d\xcb\x18\x13\xd3\xd0\x50\x74\x10\x45\x78\x8e\x6a\xef\xe3\x68\xe4\x27\xbc\x16\xf3\x24\x0a\xa6\xbc\x5c\xa9\xa5\x43\x1e\x96\xad\x5e\x58\xc1\x68\xc4\x7f\xfd\xb0\x5c\xa1\x6e\x2a\x34\xf7\xab\xa2\xa9\x2e\x9f\x65\xe2\x0e\xb9\x90\x70\x14\xe8\xe7\xd7\xcd\xf4\x8e\xaa\x6e\xde\x3d\x03\x84\x98\xdd\x73\xe3\x52\xd2\x1e\x66\x67\xc3\x96\xf4\xab\x67\xa5\x71\x4e\x35\x7b\xbe\xed\xab\xfd\x9c\xa6\x8c\x47\x5c\x20\x3f\x21\x3d\xec\x8b\xbd\x3d\x72\x92\x8b\x04\x78\x3a\xe3\xdc\xd9\xab\x2e\x5a\x9e\x86\xf5\xfb\xf7\x4f\xc3\xfb\xac\x15\x73\x81\x8b\x1d\xe6\xd1\x52\x79\xc0\x2f\x88\x05\x14\xf8\x99\x8d\x78\x3a\x8c\xbc\x2a\x4b\x87\x8e\x20\xc0\x4e\xb2\x08\xdd\x61\x1c\x85\xd1\x24\x09\x16\x02\x4b\xf0\x38\xe6\x9e\x80\xd4\x9b\xa8\xf3\xe3\x87\x40\x02\x46\x7e\xe8\x8f\x26\x23\x98\x0b\x1b\x47\x49\xe2\xf7\x02\x5e\x3b\x0d\xa1\xe3\xff\x41\xc8\xf4\xe7\xa8\xc7\xe3\xa8\xcf\xde\x47\xe3\x31\x8f\x6b\xc7\x42\x94\x86\x2f\x4e\x3c\x40\xb4\xf2\xfd\x25\xed\xeb\x15\xeb\x87\xf0\x09\xf7\x2b\x31\xbe\x9c\x86\x42\xbe\xc9\x20\xb0\x72\x7e\x79\xc4\x1a\xbe\xc8\x5f\x05\x51\xbc\x6d\x1d\x9b\x0a\x62\x26\x58\x2a\x76\x9f\xb5\x86\xdc\xbd\x90\xdc\xc6\xc0\x9f\xf2\x90\x81\x54\x2e\x24\x32\x3f\x61\x8e\x3a\x7b\x50\x5b\x4d\x90\x2d\x9f\x21\xb3\xa6\xd8\x08\x17\x57\x0a\xc6\x51\x84\xdd\xad\xeb\x3e\x04\x7f\x27\xca\xb0\x9d\x9a\x7f\x33\x8a\x02\xee\x84\x57\xcc\x09\x93\x19\x8f\x59\x1a\x6d\xdb\xc3\x79\x21\x1a\xe4\x57\x46\xdd\x14\x3f\x91\x4b\x58\xce\xf4\x4e\x27\x1e\xcf\xd9\x80\xa7\x47\x8b\xb1\xe0\x4b\xbe\x5f\x59\x37\x06\x8f\x66\x76\xe0\xf7\xee\x61\x39\x35\xab\xa5\xd1\x21\x90\xce\x9a\x38\x24\xf9\x8e\x84\xb0\x56\x3a\x89\x40\x3f\xc1\xe4\x78\xce\x4a\x02\x46\x45\x69\x34\xe4\x4e\xec\xf1\x94\xb5\x0e\x0f\x81\xfd\x98\xa4\xdc\x63\x63\x52\x65\x48\xd6\x12\x77\x87\x38\xd4\x9f\xdc\x8e\x36\x34\xbe\xb2\xa1\xe8\xcf\x38\x9b\x2b\xd5\xf5\x8a\x45\x1e\xf0\xf4\x30\x5d\x04\xbc\x45\x43\xd6\xca\x17\x04\x5f\x55\x80\x68\xd1\x05\xee\xa1\x6f\xb5\x30\xf2\x38\xac\xbd\xa0\x9c\x9a\xc0\x48\xc2\x7e\xf6\x5c\x11\x81\x7a\x9d\xbd\x3b\x38\x6a\x6f\xb3\x4d\xb6\x7b\xb0\xcf\x1c\x57\x08\x6a\x6c\xc8\x63\xae\x37\x92\x88\xf9\x8e\x9c\x59\x2d\x9a\x85\x3c\xde\x25\x0a\x2e\x45\xf2\x4f\x3e\x9f\x3d\xd7\x8d\xdc\x44\xa0\x15\xc2\x24\x03\x9e\xca\x79\xc0\xa4\xf4\x24\xc2\x49\x10\x58\x5c\x87\xda\x99\x17\x02\xc4\x89\xfc\x79\xc6\xb6\xc5\xef\xdc\xce\x7e\xa4\x53\x2d\x36\x71\xec\x08\x76\xf7\x5d\xe4\x71\x46\x22\xc6\x30\x4a\x52\xb9\xc5\xbf\xb8\xb9\x41\xd1\xee\xaa\x3b\xa5\x3e\xe3\x18\x56\xef\xed\x7b\x35\x56\xb9\x16\x4b\xb6\xf1\x1d\x28\x38\xc4\x61\x7f\x75\xb4\xff\xb6\x94\xdd\x4b\xaa\xfa\x3c\x4b\xd5\x25\x08\x63\x4d\x7e\xfc\x50\xa5\x62\x5d\xd4\x52\x12\x23\xb5\xec\xc0\x29\xbe\x6a\x59\x05\x43\xeb\x69\x4d\xcc\x6c\xa8\x4b\x91\x29\x2b\xda\xbe\xc4\x15\x9c\xa5\x60\xc4\x71\xd0\xbf\xf5\x6e\xde\x70\xfb\x70\x0c\x37\xde\xc5\x43\xa8\x8e\x93\xcb\xec\x63\xbd\x4e\x93\x63\xbd\xc8\x5b\x54\x59\x57\x55\xef\xb2\x99\x1f\x04\x2c\x75\x2e\x38\x73\x9d\x18\xf0\xf4\x80\xa7\x24\x03\xc7\xb1\x40\x68\x5d\x1c\xc8\x51\x34\xee\xe2\x32\xfa\xa9\x3c\x1c\x77\xec\x7e\xd4\x8e\x4b\x8e\xba\x26\xfa\x33\x84\x0b\x12\xff\x73\x87\x4a\xb5\x77\x9d\x84\xd3\xe9\xda\x36\x4b\x9a\x07\xbb\x5f\x65\x49\xee\x5c\xd9\x28\x40\x76\x29\x9b\xfe\x1f\x39\x98\xa5\xed\x33\x83\xac\xd7\x19\x31\xd3\x6c\xe6\x84\x29\x9b\x24\x8a\x7a\xb1\xee\xfa\xbc\xcb\x9c\xd0\x63\xdd\xf5\x45\x17\xa9\x9b\x58\x7f\xc1\x5c\xb0\x19\x0f\x02\x8d\x73\xbe\xb3\x68\xca\xe3\x7e\x10\xcd\xaa\xea\xaf\x2f\xfa\xcf\xaf\xec\x8a\xed\xac\x44\xac\x88\x8d\xc4\x4a\xd7\xcb\xce\x24\x8d\x7e\xe0\x56\xfc\x10\x50\x02\x67\x51\xa9\xd7\x52\x9e\xa4\x65\x09\x94\xad\x19\xf0\xf5\xdf\x5f\x2a\x2b\x6e\xaa\x71\x57\xb3\x07\xa9\x18\x3d\xe4\xa9\x9a\x79\x79\x62\xc1\x59\xf1\xd0\xe5\x2c\x04\xfc\xd7\xcf\x94\x22\xa1\xac\x4a\xc4\x98\xfd\xc0\xfc\x34\xe1\x41\xbf\x76\xab\xeb\x35\x76\x62\x67\xa4\x2e\xcf\x0f\x7c\x2b\xb8\x32\x60\xaf\x67\xfa\x92\x1a\xa0\x32\x60\x6b\x80\x87\x77\xa1\x27\x6a\x05\x4e\xea\x4f\xe1\x36\x08\xa9\xbc\xf2\xab\x18\xf6\xa3\xec\x16\x56\x51\x0d\x82\xb6\x85\x96\x5e\x8f\xed\xde\x3d\xfd\xa3\x16\x9b\x6d\xd9\x8b\xa5\x5f\xb6\xf5\x97\x2c\x3a\xbd\xa1\x5c\xea\x27\x9d\xf6\xe6\x66\x96\x01\xbf\x73\xa7\x4c\x94\x73\xff\xb0\x13\x8e\x27\xe9\x3e\xec\x88\x7c\x45\xba\x77\x4f\xdf\x76\xf9\xc7\x7e\xe4\x01\xff\x69\x80\xdd\xc8\x82\xad\xef\x1f\x76\xda\x6c\x73\x83\x8e\x70\x81\x78\x59\xb1\xb0\xf3\xae\xd4\xb3\x25\x92\x8b\xed\x11\x30\x3f\x61\x9d\x30\xe5\x71\xc8\x53\xd6\x9e\x8f\x83\x28\xe6\xf1\xcf\x9c\x9d\x77\x13\x51\xe3\x4a\xc9\x10\xab\x58\x56\x31\xaf\x95\xdc\x69\xa7\x5d\x26\x78\x06\x4d\x95\x3d\x08\x52\xba\x99\x63\x89\x70\x1b\x34\x15\xcd\xb5\xd8\x28\x6c\xb1\x91\xa3\xbb\xb4\x9f\x3f\x7e\xe8\x0a\xbf\x9d\xca\x0a\xc8\xc6\xa9\xea\xb4\xc5\xb7\x22\xa4\x10\xf5\xfb\x09\x4f\xff\x17\xc9\xa9\x35\x80\xd5\x57\xf6\x00\xaa\x17\x92\xd3\x1b\x51\x3e\xf9\x47\x3b\x8f\x6a\xf1\x5a\x84\x91\xd9\x05\x5c\x8f\x4e\xbb\x2c\x36\xf7\x85\x4d\x3f\xd9\x36\x70\xa6\xcf\x15\x75\xba\x86\x49\x0e\x78\x4a\x13\x55\x60\x15\x95\x34\x8b\x7f\xfc\x90\x30\x01\xe2\xe1\x85\x3f\x66\x43\xdf\xf3\xf4\x6e\x24\x6c\x36\xf4\xdd\x21\xf3\xa2\xb0\x94\xb2\xa1\x33\xe5\xcc\x09\x2d\xd8\xa2\xed\x6c\xe8\x07\x9c\x95\xed\x2e\x77\x76\xb2\x93\xbb\x77\x4f\x0d\x23\xe4\x73\xb9\x26\x87\x7e\x4f\xb0\x58\x6a\x09\x33\x03\x97\xab\x6e\xcc\xa1\xa0\xb1\x35\xaf\xa2\x55\x96\x6c\xab\x0d\xfe\xde\x3d\xeb\xb7\xe2\x44\x8c\x97\xa2\x3b\xaa\xad\x58\x2d\x8b\xfd\x05\x76\x24\x5f\x7c\x1d\x57\xcc\x5e\x2c\x13\x59\xec\x83\xc2\xb6\x6f\x74\x86\xea\x75\x66\xef\x28\xd0\x2e\xea\x12\xb8\xb7\x20\x4a\x78\x92\xb2\xa3\x57\x55\x76\xb4\x2b\x68\xed\x51\xa3\xf9\xb6\xcd\xfc\x10\xf8\x22\x82\x11\x46\xf6\xb2\xf8\x09\x1b\xc7\x3c\x01\x71\xa8\xc3\x86\x4e\xca\x51\x2d\x7d\x1e\xf5\x6a\xb5\x9a\x5c\x19\x9c\xdf\x49\xe9\xe8\x15\x28\x21\x77\xe1\xff\x02\x7a\xe9\x4c\xe9\x04\x0b\x57\xb7\x02\x42\xe0\xfa\xa6\x29\x60\x17\x33\x40\x66\xf3\x2a\x2b\x8d\xa3\xc4\xa7\x97\x39\x58\x69\x34\xab\x40\x09\x3b\xb3\xde\xd9\xbb\x6b\x42\xaa\x14\x70\x3c\x99\xf3\x63\xb3\x35\x2f\xfd\xd0\x23\xa6\x26\x8a\xf0\x34\xb1\xb2\xdc\x96\x2a\x4b\x86\x8e\x17\xcd\xc4\x3d\x14\x9f\x2b\x7f\x09\x5a\x13\x7d\x2e\xc3\x69\x6a\x50\x37\x60\x41\xa2\x28\x2d\x8b\xaa\x06\x12\x13\x3f\x4d\xa9\x4c\x6c\x0e\x08\xc1\xf9\x25\x55\xcd\x8d\xfa\x45\xab\x29\xaa\xe4\xd9\x0f\xdc\x10\xc1\x32\x38\x7e\x68\xb1\x21\x99\x2f\xb6\xfc\x26\x3a\x35\x89\x91\xf8\x6d\xd7\xb0\xb0\x8c\x51\xd3\x2c\xb7\xa5\x3c\xbd\xa3\x36\x45\x72\xa3\xd1\x08\x89\xbe\xf8\x96\xce\x22\x21\xfd\x4f\x7d\x8f\x7b\x30\xa7\xe4\x37\x51\xa7\xcd\x55\x15\x1e\x2c\xdb\x6b\x1a\xe0\x6d\xc8\x58\xdf\x0f\xbd\x16\x34\x2b\xa2\x66\x9b\x55\xd5\xa7\x96\x13\x8f\x86\xf0\x18\x06\xca\xc2\x84\x85\x9c\x7b\xf8\x38\xeb\x80\x31\x02\x3c\xa5\x25\x12\x87\xb0\x28\xe4\x19\x8d\x46\xc2\xfc\x44\xd0\x0b\x7a\x1e\x81\x77\x08\x27\x5c\xb0\x98\x3b\x49\x14\x66\x89\x27\xf0\x26\xea\x87\xd6\x14\x19\xa5\x0f\xac\x1f\xaa\xca\xcf\x90\xdd\x7a\x9d\xbd\xe2\x31\x67\x33\xce\x46\x42\xde\x4d\x26\x24\xef\x0a\x4e\xdf\x49\xd8\xe9\xdd\x24\x75\xe2\xf4\xf4\xae\x39\x21\x50\x1e\x8b\xb5\xe7\x09\x3d\xea\x92\x82\x78\xf7\x60\x5f\x53\x99\x28\xf6\x78\xcc\x76\x70\x48\x6a\x3e\x6e\x34\x12\xdb\x24\x31\xfd\x7b\xc2\x61\x65\xbd\xea\x84\x05\xc5\x65\xaa\xed\x1e\xb4\x8e\xf7\xdb\xef\x8e\xfe\xfd\xfe\xe0\xb0\x73\xd4\x39\x78\xf7\xef\x97\x07\x6f\xdf\x1e\x7c\xee\xbc\xdb\x33\x54\x59\x30\x44\x41\xcc\xa0\x47\x45\x53\x36\xd9\xb6\xda\x4c\xa3\x36\x0f\xbd\x7c\xdd\x07\xba\xee\xa6\x66\x2a\xf6\xb8\xba\x03\x4e\xe8\xf2\x24\x8d\xd0\x30\x06\xae\xa5\x86\x18\x3b\xe1\x40\x10\x53\xb5\xe0\x2e\x28\xe1\x3f\x8a\x62\x7a\x05\x80\x2a\xb5\x44\x60\x76\x27\x86\xa7\xd3\x38\xad\xb2\x8d\xcc\xc7\x76\xe8\x95\x79\xe8\xa9\x0f\x52\x6a\xc6\x31\x34\x68\x08\x1a\x65\x08\x71\x19\x1a\xeb\x21\x37\xa3\x74\x88\x97\x93\x39\xf0\x40\x9e\xf8\x1e\x67\x4a\xde\xb7\xa9\x95\x3a\xf5\x80\xe5\x96\xf5\x22\xe9\x12\xd3\x8b\x75\x4d\xf5\x0a\xfb\xf1\x03\xeb\xc3\x24\x6b\xb4\x5e\x89\x98\x58\xc5\xa2\x4d\xf8\x9c\x96\x41\x76\xe5\x65\x60\xf3\x2f\x66\x4b\x6a\xea\x97\x95\x6b\x49\xe0\xb2\x7e\x32\xb7\xc3\xb8\xce\xb8\xaa\x7e\x22\x17\x55\x11\xba\x2a\x20\x15\xe2\x0d\xa3\xd0\xd0\xcc\xca\xf5\x05\x9a\xb4\xa3\x68\x86\x2c\xd6\xaa\x0c\xb3\x22\x68\xff\xb2\x97\x79\x05\xda\x52\xed\x0c\xfc\x85\x33\x61\x3c\x48\xf8\xed\x80\x55\xb3\x03\x7d\x50\xc1\x31\x3d\xd7\xef\x73\x96\xc4\x74\x73\x8a\xb3\x5c\x28\xcc\x9e\x03\x5b\x96\x90\x37\x41\xf1\x96\x57\x9a\x03\x7e\x6e\x92\xee\x0c\x3f\x9a\x5b\x46\xf5\x4c\x77\x95\x7f\xf1\x28\x60\x5c\x05\xa6\x5d\x22\xf8\xd4\x00\xf5\x11\x4e\x6d\x0d\xfd\xc0\x43\x3e\x4c\xb3\x38\xc5\x0f\x1d\xa6\x32\x95\x6c\x5c\x8a\x58\x24\x89\x53\xb1\x10\x0e\x5c\x39\x8d\xc6\xa0\x68\x0b\x78\x3f\xad\xfc\x56\xd1\x30\xff\x0c\x02\x3d\x76\xd3\x68\xdc\x15\x7c\x72\x57\x74\xd9\xcd\x90\xe1\x90\x94\x03\xce\x28\x9a\xa0\xfc\x8a\xb3\xe2\x1e\x1b\xfb\x73\x8e\x7d\xdf\x44\x41\xab\x9f\x1b\xa0\xd7\x1d\x56\x4a\xa3\x71\xc9\xda\xfa\x89\x98\xd1\x21\x7e\xc5\x4a\x3b\x54\x8d\xbd\x60\x25\xa5\x8d\x05\xd3\x2b\xfc\xf5\x96\xf7\xe1\xd0\x15\x48\x3d\x59\x55\xab\x21\xe0\xfc\x84\x4c\x83\xe0\x87\xe9\x28\x58\xfe\x04\x53\x40\x81\x15\xf5\x92\x6a\xf5\x76\x4e\xb4\xb3\x81\xe4\x2a\xfe\xf8\x01\xbd\xda\x16\xc3\xd9\x5a\x27\x6a\xe5\xce\x0a\x58\x53\x5e\x54\x29\xa7\x10\xc1\xb3\x6a\x6a\x40\xa0\x44\x32\x91\x70\x2c\x0e\x27\x23\x71\x50\x92\x49\x2f\x8d\x1d\x37\xb5\xf8\x05\xf3\xb0\x27\xac\x2c\xce\x12\x9c\xe3\x34\x1a\x57\x10\xac\x43\xe7\x1c\x94\xeb\xa8\xf2\xfc\x19\x75\x95\x56\x71\xba\x29\x5b\x67\x1f\x35\x34\xb6\x88\x26\xa8\xba\x06\x15\x96\x20\x9a\x56\x4b\xb1\xa5\xd9\xab\xc1\xd6\xd9\x91\x31\x0b\x18\x28\x18\xb2\xc9\x03\x1c\x73\xc7\xcb\x5f\x67\x7b\x48\x4a\x35\xa6\x56\x66\x9d\x09\x66\x55\x30\xd5\xf1\x84\x8b\x43\x67\x0e\xcd\x5a\xbf\x02\xa8\xb4\x6f\xd9\x99\x8a\x71\x8e\x22\xcf\xef\xfb\x3c\xce\x2e\xe2\x75\xba\xb8\xd0\x0d\x26\x1e\xa7\x5b\x18\x83\x06\x5a\xdf\x45\x39\x14\xb2\x6e\xb0\xee\xa3\xba\x71\xa4\xb1\xcf\xdc\x63\xbc\xc0\xcf\xb3\xf5\xc5\x9d\x5c\xd2\x40\x1c\x0a\xab\x85\x9a\xce\x8e\x1e\xc9\x0b\x21\x27\x6f\x93\xad\x8c\x18\x6e\x4d\xa0\xc4\xb5\x1d\x63\x38\xf7\x55\x43\x5d\xa9\x17\xa5\x69\x34\x5a\x5d\x0f\x0e\xa6\xaa\x05\x83\x2d\xaa\x16\xfb\x83\xe1\xca\x7a\xa4\xbe\x76\x4d\xf9\x19\xb6\xf0\x15\x0f\xc6\xf0\xaa\x0f\x66\x92\x6e\xca\x7a\xc0\x8b\x26\x68\x9f\xf1\xf3\x62\x32\x9d\xb7\xd6\xe1\x21\x68\x0f\x76\xb9\x1b\x38\x68\x6c\x72\xc5\x12\x51\x92\x90\xfe\x31\x11\x47\x20\xea\xe3\x8b\x57\x91\xa2\xa1\xcb\xa2\x70\x99\xcc\x4e\xbd\x48\x2a\xe1\xcc\xfd\x84\xad\xb3\xee\x1c\xa9\xc4\xa2\x6b\x9f\x52\x49\x21\xe4\x14\xf1\xa0\xca\x5f\x89\x7f\x99\xa1\x7d\x02\x1c\x1d\xd9\x6b\xc9\x46\x13\x21\x1c\xfa\x97\xbc\x8c\x73\xab\x42\x5b\xfb\x88\xfa\x1e\x6f\xb0\x1d\x1c\x23\xe0\xed\x39\x10\x0b\x20\x0c\x82\x4e\x08\x7a\xf1\xdc\xae\xdf\x24\xf2\xd2\xc0\x06\x58\xf5\x05\x2b\x7d\x14\x5b\x0e\x8d\x9a\x70\x96\x4a\xcf\x2d\x34\x4a\x0c\xc4\xd8\x89\x13\xfe\x32\x88\xc0\x38\x52\x8c\xea\xa4\x8b\x73\xfd\xc7\x77\x00\x7a\xf5\xd9\xf7\xd2\x61\xf7\xac\xc2\xd6\x6e\xd4\xa0\xa9\x1a\xd8\xdc\xc4\x75\x7a\xe6\xd3\xd0\xa2\xaf\x62\x85\xc4\x02\x54\xe9\x99\x53\x10\x8c\xaa\xb2\xb3\x80\xed\xb7\x5f\x5c\xf6\x9d\x74\x58\x1b\x39\x73\x9a\x92\x68\x75\xd2\x45\x01\xfb\x1f\xdf\x05\xa4\xab\xae\xb4\x4c\xc7\x6f\x78\x09\xb2\xdf\x44\x3f\x27\x5d\x37\xf0\x79\x98\x6b\x87\xdf\x8a\x61\xe2\xb7\x62\x98\x52\x19\x2c\xe5\x80\x17\xac\x0c\x0b\xd8\x09\xd3\x72\x21\x4c\xb0\x27\xa5\xca\xaa\xa6\x35\xf7\x93\xee\xc8\x89\x07\x7e\x88\x4d\x88\xba\x73\xdc\xec\x17\x78\x42\xc4\xa6\xc3\x39\xf8\x1d\x00\xe9\xf4\x08\x98\x78\xa4\x04\x50\x9a\xd0\x36\xdb\x60\xc6\x3e\x5f\x7b\x01\x3e\xc3\xeb\x93\xd8\xdd\x44\xa9\xde\xac\xc3\x0f\x4a\xf2\x1d\x5b\x69\x6e\x9c\x75\xe2\x56\xae\x55\x11\x90\x9d\x88\x39\x3b\x53\x23\x7f\xef\x1e\xcb\x99\x8d\x08\xb0\x15\xfb\x6a\x10\x93\x34\x84\x35\xd8\x56\x67\x52\x2e\xca\x75\xe7\x92\xb6\x7d\x26\xee\x80\xd1\x12\xee\xc4\xea\x86\x57\x79\xe6\xdb\xe2\xaf\xf1\xac\x24\x42\xd8\x09\x79\x0c\x46\x73\x21\x8b\x26\xe9\x78\x22\x50\xc1\xc8\x0f\x9c\x98\x5e\xfe\x9b\xd1\x24\xf4\xfc\x70\xd0\x82\xd3\xfc\xf1\xb6\xbc\x89\xe6\xad\x25\xd1\xa6\xae\x33\xec\xb4\xfc\xaa\xbb\x61\x81\x7f\xc1\x69\x4c\xab\x79\x69\xdd\x8e\xf4\xbb\x89\x7d\xb3\x69\x27\x6a\xb5\x9a\x9c\x3a\x31\x8e\xb8\x33\x54\x48\x44\x50\xfd\x84\xd5\x57\x17\x5e\x9c\x5e\x5d\x15\x88\xaf\xfa\x85\x5b\x9c\x59\xfb\xdf\x6b\xbc\x62\xe0\x7d\xb3\xa5\x51\x6c\xd7\x37\xae\x89\x59\xdf\x28\xb6\xeb\x5f\xc7\xe9\xea\x5a\xc6\x06\x19\x35\x75\xe9\xaa\xa7\x40\xad\x78\xdd\xe3\xe2\xa6\xe2\xe9\x62\x88\x2c\x89\x7b\xeb\xff\x3a\x27\x50\xc4\xd2\x16\x33\x91\x46\xcf\xab\x8f\x59\xfe\x36\x64\x64\xf5\x80\xd3\x24\xc8\xb0\x90\x34\x29\xf0\xe0\xbd\xb9\xc1\x5e\x76\xbe\x6c\xb3\xf7\x01\x77\x12\x5e\xa5\x97\x34\x27\xb9\xa8\x5a\x02\x03\x28\x4c\xa9\x9d\xe1\x23\xe2\x87\xf0\xbe\xe7\x87\x2c\x89\x46\x9c\xb9\x7e\xec\x4e\x46\x49\x0a\xba\x39\x7a\x8a\x91\xea\x5a\x54\xb9\xc6\x1c\x1d\x98\x7c\x30\xe9\x0c\x71\x0c\xa0\x82\x4c\xfd\x9e\x1f\xf8\xe9\x42\xb0\x6d\xc0\x84\x74\xda\x9b\x9b\x02\x40\x1a\x2f\x6c\x05\x15\xa2\x3b\x4b\xfd\xe4\x9a\x42\x5a\xf1\x92\x68\xe3\xdf\xdb\xf2\xcb\xd9\x36\x37\xe3\x99\xe5\xc0\x72\x0c\xb1\xfd\x35\xcf\xe1\xda\xdf\x0b\x38\x65\xbb\x42\x01\xef\x6b\x9a\x32\x33\x4b\xdd\x74\xcb\xb5\xd2\xa6\xef\xae\x93\xba\xc3\x32\xaf\x7c\xb7\xde\x2d\x63\x64\x5d\x77\x24\x78\x31\x99\x6d\x3d\x2f\x42\x52\x69\x34\xde\x56\x4b\x61\x93\x10\x63\x06\xeb\xb9\x76\x92\x42\x99\xeb\xb0\x6e\x03\x32\x4e\xb3\x12\x49\x70\x1d\x7a\x4e\x8c\xec\x2c\xdc\x75\xf1\x57\x62\x32\x96\x02\xff\xe4\xd5\x0e\xa6\x9e\xe9\x45\x96\xaa\x17\xea\x00\x2a\x6c\x5b\x1a\xeb\x4a\xd3\x4f\x2f\x1d\x4a\x25\x3b\xf4\x83\x08\xdb\x34\x26\xc4\xdb\xfd\x59\x16\xe3\x2a\x62\x35\x93\x23\x80\xe9\xdb\xa0\xa8\x2c\x07\xeb\x95\x2a\x27\x60\x58\x91\x56\x47\xdc\xff\x61\x14\xfb\x97\x87\x6a\x69\xb2\x2f\xee\x38\x98\x75\xa6\x07\x21\x1a\x4d\x79\x9c\x2e\x6f\x43\x9d\xae\x33\xab\xb3\x7a\x5d\x5c\x53\x27\x64\xc3\xc5\x38\x4a\x87\x3c\xf5\x5d\x27\x30\x36\x85\xbc\xd1\xdc\x94\x7b\x55\x78\xe5\x98\x08\xe6\x88\x1e\x3a\xc0\x07\x2d\x8c\x52\xe6\x30\xe2\xbb\xbb\x04\x53\xbe\x87\xa4\xfa\xe9\xc7\x8d\x42\x0f\xde\x2a\x9c\x00\x9e\x70\xc6\x3c\xee\x47\xf1\x48\x20\x1f\x7a\xca\x49\xa4\x12\x29\x33\xfb\x1f\x3f\xec\xa9\x65\x34\x47\xc8\xf9\xdf\xd8\xf2\x8d\x65\x17\x77\x7d\x67\x99\x48\x54\x9a\x2b\xec\x60\xaf\xed\x35\x4d\x16\x25\xed\xf7\x66\x1e\x15\xd1\xc6\xee\xf8\xb9\x55\x89\xce\xca\xfa\x8e\xdd\x55\xb1\x39\x9d\x71\xf9\xb1\x79\x4e\xb6\xf9\x2d\x76\x38\xa6\x76\xc3\x08\x07\x60\x94\x16\x91\xff\xbc\x1e\xdb\x2c\xcf\x32\x24\x59\x6c\x66\xf3\x25\xd9\xaf\x46\xeb\x78\x12\x76\x8a\xb8\x83\xdb\xf1\x19\x37\xb0\xd7\x11\x55\x3f\x92\xf5\xde\x51\xd4\x88\x7b\x7e\x1a\x3b\xf1\x02\xcc\xee\xdc\xa1\x1f\x78\x31\x0f\xab\xf4\x78\x5a\x65\x7d\x7f\xce\x3d\xf9\x2c\x57\xa8\xfa\x51\xb6\x6b\x34\x03\x41\x1e\x9f\x9b\x9f\x05\x46\x63\x3b\x04\xb1\x08\xdb\x99\xe2\x05\x0d\xe0\x23\x12\x8a\x62\x02\x21\x2b\x99\xdd\x20\xf4\x6b\x9b\x8d\x0d\xfb\x06\x93\xa2\x2a\x6b\x9a\xac\x61\xa7\xd9\x8f\xf9\xbc\xb8\xea\x7e\xe6\x3b\x42\x6c\x72\x14\x8d\x11\xd3\xed\xe4\x25\xfd\x9a\x5d\x25\xdf\x58\x90\xd6\x55\xad\x55\x9d\x8a\xc1\x67\xe1\x43\x74\xc2\x66\x43\x1e\x73\xc3\xf0\x5e\xe0\x42\xd8\x5d\x8d\x08\xfd\x41\x18\xc5\x9c\x85\x7c\x80\xb6\x9d\xa4\x70\xf4\xd5\x93\xba\xeb\x04\x2e\x62\xb5\xb2\x7d\x30\xee\xdd\xa3\x8d\x56\xc8\x4c\x6f\x08\xf0\x20\x3b\x5a\x93\x60\x7f\x51\xaf\x9b\x56\x93\x00\xb9\x9c\xa2\x36\x40\xa3\x65\xa3\xab\x53\xcb\xa2\x8b\xb6\xc5\xd8\xf4\xef\x06\x17\x60\x1e\x2e\x18\xd4\x7a\x76\x94\xeb\x99\x9d\xaa\x9a\x9c\x85\xd5\x1c\x06\xb8\x9e\x1b\xf2\x7a\x76\xb7\x6c\x8e\xc3\x02\x61\x8a\x52\x92\xdb\xb0\x2a\x98\x12\x14\x4e\x57\xca\x56\xa8\x54\x40\xf6\x71\xa3\xe0\x0b\x31\x89\x1b\xfa\x18\x1c\x4a\x06\x05\x2b\x80\x7a\x31\x6b\x56\x25\x6d\x16\x80\x0e\xa2\x47\xee\x24\xe1\x1e\x73\x12\x6d\x4b\x41\xd4\xd0\x43\xab\x5f\x16\x85\xc1\x82\x45\x21\x83\x3b\xde\xe3\xae\x33\x91\xed\xc1\x7c\x44\x7c\xb5\xac\x04\x7a\x7c\xe8\x4c\x91\x19\xaa\xd7\x99\xe7\xf7\xc1\x1c\x37\x0d\x16\xe2\x78\x86\x6a\x70\x4e\xcc\x99\x33\x1e\x07\x3e\x5a\x56\xf8\x69\x0d\x55\xda\xc6\x67\xc2\xdb\x42\x0a\x20\x68\x60\xf0\x1a\xcd\xa5\x0a\x31\x33\xbb\xaa\x7c\x41\x13\x6c\x41\x4c\x77\x22\x8c\x52\x65\xb1\x75\x87\x10\x59\xfe\x28\x93\x02\xda\x58\xf3\xfc\x05\x54\x5f\x2b\xcf\xf3\x8d\x68\x3b\x96\xb5\x12\x9f\x35\x95\x35\xa5\xe9\xf5\x9d\x2c\xea\x58\xd7\xe3\x78\x6e\xd7\x97\x3c\xea\x2d\x9a\xe0\x91\xdd\xc9\x61\x98\x75\x63\xdc\x99\x26\xb1\x24\xeb\x2b\xda\x60\xab\x7a\x9d\x35\xd2\xd4\x71\x87\xc6\xea\x39\xa1\x67\x2e\x8b\x3a\x34\x45\x52\x1c\x32\x5e\x0b\x30\xb2\x11\x9b\x37\xb2\x07\x63\x6e\xc9\xb2\x39\x5a\x3b\x90\x99\xd6\x95\x7e\xe8\xd3\x2a\x45\x3c\x02\x77\x2c\xfc\xa6\x55\x8c\x44\xc5\x94\x19\x83\x49\x42\x94\x26\x72\x5b\xa2\x58\x41\xe3\x2c\x22\x73\xef\x9e\xf5\x5b\x53\xc3\x3b\xea\x7d\xf1\xd4\x34\x8a\xd0\x68\xcd\x7e\x9b\x51\xda\xaa\xf1\x0a\xa3\xbd\xa4\x80\x93\x5a\xc9\x07\xe4\x1f\xed\xaf\xa9\xfc\x57\xa9\x4c\xae\x65\x65\x3e\xf9\x7c\x26\x3e\x16\x8f\x2e\x35\x79\x1a\x25\x1f\xf3\xb9\xc9\xff\x15\xb1\x32\xb7\x7e\xb4\x95\x82\x28\x76\x8d\x83\x41\x12\xb4\x9a\xd7\x52\xe3\x92\x5a\xd2\x8c\x10\xa7\x89\x9f\xa8\x60\x8a\x6d\x55\xe9\xa7\xe7\x87\x21\x8f\x95\x24\x67\xb1\x5d\x52\x7e\x2b\x84\x82\xb2\x93\x0d\x46\x0b\x71\x1b\x19\x7e\xc7\x50\x55\xdc\xb1\xd7\xf0\x85\xa1\x86\x80\x59\xb0\x6d\x22\x47\x05\x1a\x8b\x15\x6d\x95\xfe\x82\x60\x68\x28\x91\x5c\x56\x93\x96\xeb\x51\xad\x67\xd6\x9f\xd4\x90\x99\x42\x85\x1e\x2c\x92\x6e\x0c\x30\x07\x86\x14\x9f\x85\x70\xde\x6a\x3d\x41\x9e\x8a\x5b\xba\x81\x42\x21\x07\x67\xf4\x97\x08\x39\xb7\x76\xe9\x2b\xf0\x7a\xd6\x6a\x37\x64\x10\x59\x14\x1b\x76\x4e\x0e\x15\x6a\xf3\xca\xbf\xc0\xec\x44\x9b\x74\x4e\x92\x34\x1a\xb5\x0c\x2b\xbb\xeb\x7d\xa3\xd9\xe9\x5d\x3f\x79\x29\x06\xf8\xe2\xf4\xee\x6a\xc7\x68\x51\xb1\xd0\xb6\xe8\x7a\xf3\x90\x9f\x36\x0e\x29\xb6\x3b\x12\xc0\x56\x3b\x10\xe7\x2c\xbc\x61\x1f\x72\xb0\x55\xbc\x82\xab\xac\x74\x04\x47\x62\x67\x89\x3b\xab\x9a\xd5\x1d\xc3\x7a\xf9\x46\xe6\x52\x72\x19\x6d\xab\xe7\xff\xac\x1b\x8d\x36\x59\x46\x0b\x54\xed\x43\xe3\x84\x36\x07\x3a\x74\x12\xe6\xb0\x34\x76\xc2\xa4\x1f\xc5\x23\xd3\xb9\x9c\x2c\x72\xff\x62\x27\x1b\x1c\xa0\x35\x00\x1a\x6c\x9c\xe5\x59\x6f\xf2\xf6\xfd\xd2\xe4\x53\xae\xf1\xc8\xf9\x4f\x18\x2e\x5b\x96\xcb\xa6\x55\x32\x59\xc4\x1b\x96\x4a\xa0\x48\xcf\x39\x5d\xae\xb2\x51\x46\x59\x8f\x9b\x44\xda\x82\x0c\xf5\xc8\xe1\x86\x07\xf4\x26\xb9\xec\x5a\x55\x59\x49\xed\x82\xbc\x52\x61\x14\x72\x7d\xa3\xa8\xa3\x82\x3e\x6c\xdf\x6d\x31\xa1\x6b\x86\xbe\xcc\x84\xea\x36\x9a\xa5\x9b\x20\x75\xc3\x2b\xc0\x72\x7b\x34\xdd\x03\xcc\x0f\x46\x9b\x62\x13\x50\xd5\xb2\xf8\x73\x91\x9f\xc1\x5f\xc3\x55\xde\x9c\xdd\x33\x3b\xb9\x79\xab\x5f\x78\x26\x24\xec\x67\x60\x26\xf8\x6d\x43\x5c\x7a\x49\x4d\xf8\x4b\x2b\x65\x08\xb6\x0c\x8a\x81\xf2\xee\x24\xf4\x9c\xd8\xe7\x09\x0b\xfc\x91\x9f\x26\x20\x5e\x69\x1f\xa7\xd1\x2f\xbf\x14\xa2\xdf\xef\xf2\xef\xca\xa3\xd6\xaa\x22\x2d\x7d\xc6\x8e\xe7\xf9\xe1\x60\x79\x73\x3d\x81\xb6\xb2\xb2\x93\x7f\x81\xf2\x01\x0c\xa3\x04\xc2\xc9\xcc\xb7\xd8\xaa\xce\xd6\x4a\xad\xb3\x0e\x20\x34\x62\x58\x64\xf1\x28\xef\x2e\xa4\x1e\xdb\xa3\x28\xf6\xfc\xd0\x49\x79\x22\xb1\x9f\xdd\xe5\x0d\x1e\x43\xa1\x2e\x08\x94\xb8\x76\x55\xc4\x15\xb4\x4c\xf0\x8b\x96\x05\xfe\xce\xad\x00\x94\x16\xea\x5d\x4f\x43\x8d\xcc\x97\x7a\x38\x4a\x2c\x69\x1c\x8d\x1d\xf6\x1d\xb9\xe6\x8d\x2a\x31\xbe\x1b\xcc\x7c\x36\xca\x78\x15\xda\x7d\xbf\xb8\x9e\xca\xe0\x1c\x05\xd7\xbe\xc4\x8c\x9c\x16\xe1\x3a\x1f\x6f\x43\x5d\xf9\xca\x09\xbd\x80\xb3\x29\x5d\x5d\xe5\x88\x27\x28\x4b\xfe\xac\x00\xce\x96\x75\x4b\x5a\x6c\xb6\xe6\x7e\x3b\x71\xd1\xf6\xaa\xb3\x96\xc2\x92\xb2\xcd\x87\x4d\x3d\x6e\x53\xb9\xd4\x73\xc4\xf9\x8d\xf0\x91\x9a\x9b\x67\xda\x49\xec\x53\xc5\xb2\x3b\xf6\x0e\x5d\xc4\xe4\xab\xf3\x92\x89\x9b\x9a\x84\x92\xf1\x22\x6d\xc3\x29\x50\x6c\xdb\x1c\xa0\xbd\x0f\x08\xc2\xee\x15\x9c\x6f\xae\x33\xa7\x2f\xec\x15\x37\xfe\x46\xa6\xcf\x3a\x0e\x1f\xae\xeb\x35\x93\x46\x99\xf5\xda\xe9\xde\xa2\xe3\xab\xcc\x03\x75\x0e\x56\x6e\x14\x59\x7f\x12\xf3\x06\x25\x37\x95\xfd\x8b\xbb\x53\x91\x22\xad\x33\x28\x0b\x0b\x14\x52\x15\x53\xd1\xd6\x91\x8c\x5b\x1f\xb4\xb1\xa0\xd5\x07\xbd\x99\xa3\xf5\xac\x64\x18\xe5\x68\x10\x2b\x37\x1a\xdf\xa3\xef\xdd\x63\x77\x24\x9f\x6f\x79\x8b\x1a\xfb\x20\x9d\x32\x86\x4a\xbb\xe0\xa5\x43\x19\xc3\xc3\x7c\xcb\x2e\xda\x1f\x7d\xf4\xf4\x68\xa4\xf1\x82\xa5\x11\xcd\x2b\xff\x8a\x5a\x92\x32\x74\x47\xea\x41\xd6\x4c\x20\x45\x0d\xa4\x25\x84\xad\x1a\x2d\xd0\x22\x16\x35\x8e\x49\xd7\x82\x33\x5e\xb3\x80\x2c\x39\x68\xf5\x3a\xf2\xcf\x41\x60\x28\xa5\x0d\x44\x91\x54\xa5\x82\x1d\x82\x8f\x0d\x22\x20\xdf\x2c\x87\xdc\xb4\x96\xcf\x34\x99\x20\x64\xda\xf0\x3c\x49\x6a\x12\x83\xec\x80\x2a\x1a\xff\xfa\xf1\xc3\x52\xd8\xf8\xc9\x7b\xfc\x80\x81\x1e\xd8\x8e\x0c\xee\xa8\x5a\x02\x93\x0c\x1f\xf1\xd9\xae\x60\x09\xb3\x40\x5e\xa8\xd6\xdb\xf2\x2f\xac\x0b\x9d\xb3\x0c\x14\xda\xf3\x9b\x00\x11\x55\x0b\x61\x28\x25\xf5\x4d\xa0\xc4\x4a\xef\x95\x83\xa3\x55\xea\x37\x01\x44\xb5\x25\x24\x43\x42\xd0\x20\x0b\x04\x63\xcd\x33\x64\x82\xcd\xd7\xad\x8f\x79\x63\xde\x46\xcc\x9d\xf2\x77\x52\x40\xc9\x83\x7e\x65\x1b\xf9\xe1\x89\xbc\xaf\x8d\x24\xae\x4c\x56\x52\xb0\x7e\x7e\xba\x50\x8c\x96\x12\x87\xe0\x4c\x76\x9d\x49\x1a\x75\xd9\x38\x70\x5c\x92\x9f\xd1\xf1\x57\x17\xcc\xfc\x74\xc8\x46\x51\x8c\xdc\x94\x33\x75\xfc\x00\x22\xd9\x25\x63\xc7\xe5\xb7\x0b\x4e\x93\xb7\x8a\xf4\x9c\xd4\x21\x0b\x71\xf8\x93\x1c\x37\xa4\x79\xa6\xc7\x7a\x0b\x36\x19\x7b\x4e\xca\x99\xd9\x47\x81\x79\xe5\x18\xe3\x0f\xad\xb3\x7d\xb2\xc9\x87\x48\xc3\x7d\x7f\x20\xa3\x8b\x0a\x9e\x99\x6a\x2d\xe1\x0b\x33\xa3\x90\xd1\xdc\x82\x85\xb4\xf3\xf7\x56\x30\x87\x64\x91\xda\x98\xa4\xd1\x7b\xb9\x7e\xc8\x23\xca\x5f\x92\x4d\x14\x74\xa3\x7a\x2d\xf7\x58\xcc\x31\xea\xcb\xbd\x71\x6a\x46\x52\x51\x1d\xa8\xb8\x03\x25\xb1\xb1\x24\xf1\xae\xe7\x62\xab\xa8\xfa\xf9\x48\x11\x59\xb6\x2a\xc3\xee\x5a\x43\xce\x0e\xda\x66\x7a\x0b\x26\x71\x1a\x6a\x82\x26\xf5\xea\x2e\x90\x54\x53\xef\xab\x10\x28\xbd\xa8\x1a\xb7\xd5\xd4\xc4\x9a\xf6\x5b\x7d\xeb\x79\xd7\x44\x34\x54\xf9\xca\xb6\x7c\xbd\xa6\x0b\x6d\x2c\x86\x40\x63\xa5\xef\x35\xbb\x34\x1a\x18\x1a\x61\xdd\x8f\xb4\x9b\xbd\xf5\x5c\x0a\x50\x93\x1a\x0a\x16\x64\x7a\x42\x66\x3f\xdb\x8f\x6c\xa2\x5e\xac\x2d\x14\x7e\xcb\xe9\x5c\xd9\x8f\x05\x51\x9c\x72\x4f\x60\x26\xb1\x71\x94\x8e\xe2\x82\x2f\x12\xf0\x26\x4a\xe8\x85\xac\x36\x72\xc6\xe5\x0b\xbe\x60\x3b\x7f\xb0\xb2\x1a\xdd\x05\x5f\xa8\xbe\x6b\xb5\x1a\x34\x38\xb9\xe0\x0b\x1d\xf9\xde\x89\xb9\xb3\xad\x50\x9f\xae\x20\x4d\xc3\xaf\xa4\xed\x7c\x4d\x8c\xa3\x5c\x76\xaa\xac\x07\x51\x5a\x7b\x35\xd1\x94\xad\x33\x07\xfe\xb0\x8f\x59\xdf\x0f\x52\x1e\xeb\x51\x1b\x73\xa8\xe1\x37\xe9\x1f\x5d\x80\x6c\x77\xfe\xb0\x16\x97\xfd\xa1\xd8\x4f\xd3\xce\xee\xde\x3d\xd9\x24\xfb\x1d\x9f\x5d\xf2\x67\x5f\x5a\xb0\x2b\x64\x01\x72\x99\x31\x50\x8a\x4a\xcc\xfe\x10\xd7\x9d\xc1\xdb\xa4\xf5\xfd\x64\xe3\x4c\x2c\xfc\x29\xf9\x12\x18\x93\xa2\x2f\x56\x77\x2a\x4c\x9b\xe0\x0d\x14\xc2\x48\xc6\x81\x9f\x96\x4b\xeb\xa5\x8a\xce\x2c\xa0\xbd\xad\x33\xe3\x5b\x63\x65\x0d\xe5\x05\xeb\xae\xff\xe3\xbb\xfa\x7d\xd5\x85\x18\xf8\x39\xbd\xf0\xdf\x5c\xed\xf4\xeb\x6a\x9b\x9f\x51\xc9\xd9\xf6\xe0\x52\xb2\x20\xe2\x9b\x8b\xce\xf6\x2b\x7e\x91\x10\xa8\xbd\x28\x38\x9c\x54\xfb\x50\x48\x38\xfa\x51\xe4\xf9\x95\xd7\x03\xfd\x8e\x30\x72\x59\xe0\x59\xb5\x8e\x7f\x4b\xb5\x4e\x23\x94\xec\x03\x3d\xdc\xcb\x30\xf6\x72\x75\xd1\x59\x5f\x8e\xca\x30\x3d\xd1\x63\xbe\x45\x08\x3b\x3c\x05\x89\x0c\x89\x2f\x35\x20\x9a\x20\xe6\xd4\x3b\x46\x48\x19\x75\xff\xb3\xb7\xe2\x7f\x49\x31\x93\x0f\x99\x70\x9d\x64\x6b\xcc\x31\x3f\x85\x02\x7d\x4a\x3e\xf0\x2f\x6c\xcb\x24\xe5\x31\x19\x4a\x17\x7a\xc3\x93\x10\x8a\x46\xd6\x6b\xd2\x30\xe8\xf7\x3a\xc1\xe7\x4e\x51\xfe\x08\x21\xce\x17\xec\x23\xa1\x77\x7a\x4b\xba\x91\xb2\xf0\x40\x4c\xd2\xb2\xee\xb6\x4e\xc0\x4f\x85\xf1\x55\xc6\x89\x2b\x22\xf9\x9a\xa6\x02\xf3\xeb\x0d\x9a\xd0\x24\x80\xad\x2d\xad\xd3\xd4\x72\x8f\x09\x76\xb1\xc2\xe2\x69\x25\xdc\x8f\x96\x41\xc2\x32\xab\x7f\xe2\x69\x8a\x0c\xca\xd7\xd8\x22\x63\x5e\x57\x68\x42\xbe\xc6\xe6\x8a\x93\x31\x5c\x75\x45\x37\xcb\x0f\xe8\x18\xd0\x8e\x29\x0c\x59\xe7\x14\xc3\x7e\xfc\xcc\x59\x54\x71\xa7\x25\xe0\xcc\x61\x94\xdf\xfb\x81\x3f\x1e\x0b\xf4\x67\xd6\x5b\x71\xe0\x68\xd0\x5a\x00\x51\x8d\x6d\x33\x18\x27\x19\x82\xce\x18\xd9\xc7\x52\x4c\xae\x79\xc4\x1f\xa3\x9d\x46\x55\xb1\xb1\xe0\xac\x52\x45\xf6\xbc\xd4\x23\x8f\x46\x6b\x31\x35\x47\x11\x73\xf8\xbb\x5c\x17\x30\x7e\x00\xc0\x1f\xd8\xe4\x47\x1a\x8d\xeb\x83\x2a\x1b\x39\xa9\x3b\xe4\x9e\xe0\xda\xc4\x38\x4e\xe8\xf7\x59\xd1\x9b\xb2\xbe\x41\x16\x91\x57\xa5\x19\x4e\x21\x3b\x7d\xab\x51\xf6\xe3\x4a\x4a\x6c\x3e\x8c\xfc\x1c\xf9\x1d\x6b\x82\xd6\x3a\x3c\xd4\x3f\x05\xf4\xf7\x06\x9d\x1c\xf0\x54\x92\xa4\x55\xef\x34\xab\x09\x76\x2e\xec\x2b\x11\xab\x1c\xd9\x96\xd3\xbd\x3d\xd9\xce\x1d\x61\xb6\x6e\x3e\x27\x4f\x9d\xc0\xf7\xcc\x8b\x73\xad\xe4\x8d\x3d\xeb\x41\xfe\x67\x48\xf9\x7b\xb3\xd7\x72\x8e\x80\x1f\x28\xf3\xbb\xcc\x05\x1a\x1b\xec\x7a\x21\x1f\xbd\x71\x66\xc7\x93\xa2\x85\x85\xa8\x79\x19\x3f\x21\xfc\xa4\x4d\xda\x0d\x7a\x41\xb4\xfd\xb9\xad\xe9\xa3\xf3\x53\xcd\x93\xa5\x34\x62\xd1\x24\x56\x4b\xa4\x82\x41\x58\x3d\x1d\x28\x1d\xb6\x8d\x5a\xf5\x38\x0a\x4d\x96\x8d\xcf\x05\xf6\x4f\xf5\x3a\xf3\xf8\x98\xa3\x4b\x63\x6f\x61\x9e\x4e\x43\x8f\xc4\x31\x7a\x26\x64\xb8\x02\x6a\xc5\x7c\x31\x4c\x1a\x50\x12\x08\xb0\xc1\xc2\xb4\x17\x36\x75\x96\xaf\xa2\xd8\xbf\x84\xa4\x2f\x12\x53\x21\x8a\xd2\x91\x16\x8d\x6d\xc2\xe8\x8a\x66\x60\x09\xc7\x0f\x29\x92\x8c\x04\xf5\x82\x42\xc9\x48\x5c\x67\x12\x58\xee\x46\x42\x1a\x5e\xe4\x9b\x04\x32\x90\x40\x6a\x07\x12\x18\x71\x27\x99\xc4\xf2\x54\x18\x0d\x86\x5c\x85\x11\x80\x85\x2d\xec\x67\xdf\x6a\x7d\x67\x45\x73\xad\x37\xa2\xdd\x3c\x91\xd3\x3b\x93\xbe\x5c\xd9\x43\x6c\xd4\x58\x5b\x56\x43\x8f\xe1\x8c\xd5\xd9\x03\xb6\x6e\xaa\x7b\xc4\xd6\xe7\xaa\x3c\xcf\xa9\x9f\xd0\x18\xd6\x5c\x3e\xed\x2b\x60\x8d\xd8\xaa\xa3\x86\x5d\x30\xac\x4c\xc5\x75\x73\x3c\x45\xeb\x77\x56\x10\x02\xeb\x27\xbb\x2e\xa4\xa6\xf6\xe4\x8a\xe2\xeb\x58\xbd\xe5\x98\x8b\x7d\x7f\xe4\xbb\x68\xc5\xd4\x15\x3c\x7b\x97\x14\x9b\x02\x71\x36\xe2\xd8\x59\xfc\x24\x4b\x01\x6d\xaf\x98\x13\xc7\x99\x2f\x82\x5b\xcd\x14\x41\x70\x19\x1b\x15\xc3\x25\x62\x51\xcc\xd6\x37\x6f\x10\x4c\xb1\xec\xc4\x71\x15\xad\x8c\xf4\x63\xf5\x24\x81\xe4\x70\x82\x62\x40\x6c\x34\xbf\x2f\xd3\xda\x00\x49\x83\x83\x02\xa3\xac\x8d\xe3\x28\x8d\xd2\xc5\x98\xd7\x44\xc5\xac\x6e\xd2\x89\x63\x28\x2f\x23\xfc\x4c\x70\x36\xd1\x4b\x17\x95\x20\x5d\x40\x79\x3d\x41\x1f\x30\x74\x8e\x33\xe2\xe8\x7c\xe0\x47\x31\x44\x3b\x81\x05\x36\xb6\x06\x41\x83\xb6\x07\x81\x23\xaa\xce\x44\xd8\x78\xa9\xa6\xaa\xcd\x3d\xa8\x28\x63\x4d\xd3\x81\x55\x33\x35\x19\x50\xb2\xca\x0e\xda\xd0\xfd\x67\xcd\xa1\xe5\x31\x79\x1b\x45\x63\x96\xc6\xd1\x64\x30\xa4\xc4\x7c\x98\x35\x63\xa4\xb4\xdb\x60\x03\x32\x41\x03\x10\xf0\xde\x89\x3d\xd4\xca\xde\x67\xdc\x71\x87\x44\x88\x47\x94\xd8\x60\x28\xe4\x2a\xcf\x47\xc6\xd6\x50\x72\xff\x54\x74\x79\xd1\xde\xd4\xe0\x5b\x1f\xe9\x20\xaa\x81\x16\x72\x0d\x3c\xf4\x04\x9d\x3f\x18\x93\x73\xa5\x0a\xfc\x03\xb9\x43\xe5\xfb\x79\x92\x1a\xec\x97\x62\x1a\x8c\xde\x57\x1c\xd5\x78\x12\xaa\xd7\x80\xb2\x1a\x50\x15\xc6\x5c\x85\x31\x58\x2c\xb1\xaa\x71\x14\x7d\x9c\x08\x81\x1d\x46\xb9\x63\x26\xad\x94\x5a\x38\x73\x76\xa0\x7a\x53\x05\xb5\x24\xf0\x5d\x5e\xde\xa8\xea\x03\x62\x76\x5d\x12\x13\x2c\x51\xe7\x92\xb6\xdb\x1d\xd7\xfa\x51\xdc\x76\xdc\x61\x59\x47\x43\xb2\x92\x59\xc9\xe2\x93\x92\x9c\x68\xe9\xac\xc2\xbe\x8b\xcb\x61\xa7\x98\x5d\x0f\xfc\x90\x33\x2f\x4a\xd7\xc3\xc8\x7c\x0e\xd6\x29\x01\x67\x4e\x1c\x96\x4b\x5d\x09\xb1\x26\x01\x76\xd1\x87\x76\x1c\x73\xd7\x01\x2f\x5a\xb8\x75\xba\x5a\xd8\xbd\x53\xaa\xd8\x3e\xe0\xa4\x66\x15\xcb\x56\x34\x40\x21\xe2\x19\xed\x9f\xdf\x7c\xb4\xe6\x94\x6b\x3c\x14\x55\x3d\xf4\xdf\xd1\x19\x8f\x42\xf3\x89\x5a\x72\x4a\x4a\x4a\x07\x34\xa1\xf9\x7a\x72\xf2\xe5\x23\xc8\x28\x38\x1a\x07\x3c\xe5\x14\x0e\xe1\xa3\x15\x45\x4b\x42\x33\x5c\xa1\x7a\xbc\x1f\xc5\x1c\x2f\x98\xda\x1e\x09\x13\x03\xa9\x0a\xde\x27\xe6\x53\x3f\x9a\xe0\xc3\xae\x17\x71\x19\xd9\x80\xe0\x8d\x78\x92\xe0\xb3\x5a\x3a\xe4\x09\xd7\xb1\xbe\xe0\x3f\x71\x38\x65\xb4\x8e\x1a\x71\x51\x59\x87\xb7\x82\x3a\xfa\x6d\xdd\xfa\xa8\x59\xfd\x6b\x61\x68\x6d\x90\xb2\x36\x40\x40\x6c\x87\xf5\xc3\x32\x5e\x18\x39\x61\xdb\x77\x3f\x13\xfb\x45\x54\x2d\xd2\x00\x5b\x58\xb2\x28\xe1\x0c\xac\x1c\x91\x21\x94\x21\x40\x2a\x84\x24\x90\xb7\x0f\x0e\xf7\xbf\x44\x18\xf1\xbe\x03\x75\x14\xe0\xab\x08\x71\x29\x8d\x44\xfa\x71\x53\x42\x09\xb5\x97\x51\x4b\xec\xd9\x9d\x00\xb6\x70\x27\x31\x64\x69\x3a\xc3\xfc\xc9\x3a\xb1\x64\x8e\x8e\x0a\x06\x64\x8d\x75\x89\x87\xee\x8a\xbe\xbb\x0a\x5c\x97\x8c\x81\xad\xd1\x49\x86\x3a\x75\x87\xa0\xad\x94\xdc\x40\xd4\x3b\x17\x5d\x47\xbd\xf3\xe2\xae\x8d\xf1\x4a\x8e\x1d\x80\xe4\x64\xfe\xa2\x57\xd4\x2c\xe5\x2c\xaa\xb3\x44\x15\x2f\x25\x9e\x3c\xed\xcd\x56\xc9\x18\xe3\x5a\xf2\x52\xbe\xb5\xf5\xdd\xf6\xf1\xd6\x4f\xd0\x99\x66\xe6\x37\xfb\x0e\x1c\xc3\x23\x37\xe5\xcc\x92\x3a\x02\xba\x07\x52\x32\xc5\x49\x4b\x51\x38\xe4\x33\x85\xd5\x04\x2f\x20\x84\xe0\x85\x34\xc3\x94\x15\x40\xd7\x56\xfb\x57\x2f\x66\xf5\x3f\xe0\xc3\x7b\xb8\xe9\xac\x2b\xf3\x18\x62\xbf\x5d\xc8\x91\xc3\xba\x13\xfa\x25\xfd\xf5\xa2\x7e\x51\xc8\x83\xd5\x3c\xc3\x8a\x9b\x82\xdd\x94\xf5\xb5\xf0\xfb\x52\x5e\x04\xba\x93\xa4\x71\xb4\x10\x64\x07\x43\xc5\xd0\x10\xc0\x0e\xbd\x3f\x89\xc1\x8a\x06\x41\xc8\xdb\x22\x70\x33\xe6\x12\xaf\xf9\xc9\xae\x6c\x9f\xb9\x2a\xe6\x05\x08\x78\x2a\xd1\x9b\xa4\xac\x21\xba\x23\x6e\x03\xa2\x27\xf1\x17\x55\x95\xdb\xec\xbb\x7c\x6b\x75\xe2\x38\x9a\x1d\xe6\x4a\xd3\x34\xf6\x7b\x93\xd4\x2a\x24\xdd\xdd\x36\x5a\x75\x52\x21\x6d\x98\xaa\x66\x48\xd0\x52\x28\xce\xbf\xa9\xe8\xd0\x51\xd7\xe2\xf6\xdc\xcb\x04\xbd\xa8\xab\xb5\xa9\x1a\x05\xd6\x23\x3e\x94\x64\x5f\xf2\xa1\x90\xd4\x36\x35\x79\x24\xe1\x25\xc2\x7c\xc8\x34\x06\xee\x4c\xd2\xc8\xb0\x74\x10\xdc\x5b\x6c\xea\x4e\xc9\xb5\x28\xc3\x80\x56\x09\x8a\x66\x6c\x95\x56\x87\xf2\x25\x02\xdb\xda\x55\x70\x00\x47\xa1\x5f\x03\x35\x45\x6b\xe8\x3e\x52\xe2\x28\xf6\x07\x7e\xe8\x04\xef\x4d\x8b\x96\x8b\x30\x9a\xa1\xfe\x88\xbe\x2a\x4c\x8f\x2b\x6a\x6a\x74\x96\x1a\x71\x64\x97\xc4\xb2\xe9\x58\xb6\x35\xbf\xb0\xe6\x9a\xa5\x14\x47\xa9\x56\x6c\x10\x72\x7d\x1b\x6d\x99\x6d\x6e\x18\x6e\x8c\x4c\xef\x8d\xb9\x17\xb3\xbb\xd4\xcd\xad\x63\x57\x9f\xbf\xdc\x12\xef\x64\x96\x91\xfa\xc2\x42\xf3\xe8\xb0\x9d\x6b\xce\x55\xfe\x48\x19\x8a\xa4\x65\x97\xc0\xe4\x90\x6c\x85\xde\xb2\x95\xbf\x76\xa3\xec\x79\x98\x0b\x57\xd0\xab\x1a\xfe\xb5\xd3\x92\x32\x03\xb9\x72\x49\x89\xa1\xe4\xf4\x92\x28\x98\xa4\xbc\xa4\xe7\x4d\xf2\x9c\x2d\x5e\x10\x9e\xb2\x84\x19\xe8\x2d\x23\xd1\x18\x3b\xac\x7d\xa4\x14\x4a\x87\x5b\xe5\x3a\x41\xc0\xba\x51\x88\x19\x63\xbb\xf0\xbb\xe7\x40\x6a\x27\xd9\x0c\x8d\x14\xa3\x90\x27\x76\x13\x49\x28\xcc\x26\xe0\x09\x64\xe1\x5e\x04\xac\x31\x6f\xd1\x47\x3b\xdd\xae\xb5\x6e\x72\x64\x65\x39\x9f\xac\x26\x27\x53\x1b\x07\x65\xd6\xce\xaa\x5b\x28\xf2\xaa\x34\x7e\x03\x44\x60\xf9\x41\x2a\x2e\xde\x4f\x18\x49\x17\xb7\x93\x89\x73\x7e\x8a\x2b\x1d\x12\xe5\x36\xb6\xb1\x3b\x53\x3c\x94\x7f\x1a\xc9\x00\x89\x6f\x32\x04\xcc\x68\xc4\xb5\xb1\x0a\xa6\x3f\x97\x72\x11\x18\xab\x30\x43\x4a\x0a\xa5\x8d\xaf\x09\xf9\x74\x69\x42\x56\x92\x5e\xf0\xd1\x5d\xb1\x7d\xda\x7b\x2e\xc4\xd6\xbf\xf4\xe6\x25\x61\x95\x5d\x67\xc4\x83\x96\x93\xf0\x6c\x5e\x39\x5d\x95\x46\x52\xd0\x46\xb0\xe4\xef\x9d\xc4\x75\xe0\x57\xd5\x50\x40\xd3\xe3\xca\x94\x87\x5e\x14\x13\x8c\xca\xea\xd7\x80\x43\x39\x5b\xe9\x3d\x26\x56\xaa\x9c\x49\xe8\x4a\xaa\x74\x1c\x17\xe4\x20\x47\xea\xce\x4a\xa3\xa4\x54\x65\xa5\xcf\xbc\x77\xe1\x83\x72\x7a\x3f\xba\x14\xff\x1c\x50\x22\x72\x23\xa2\xb9\x80\xcf\x76\xd4\x9c\x6a\xee\xd0\x89\x1b\x69\x79\xa3\x52\x4b\xa3\x63\x51\x41\x4c\xa8\x0c\x8f\xa6\xb2\x0a\xea\x14\x36\xe5\x0d\x2f\xca\x6a\x2e\xc7\xa4\x13\x99\xaf\xad\x65\x82\x5b\x60\x15\xe8\x1a\xeb\x9e\xf8\x67\x56\x20\x8b\x94\xd2\xfe\xca\x1a\xec\x05\xeb\xfe\xe3\x3b\xfe\x7d\xf5\x8f\xef\x6a\xf4\x60\xe9\x23\x07\x67\xb8\x30\x64\xf2\xc8\x43\x00\xd2\x1a\xf0\x50\x27\x04\xfa\x2c\x9b\x37\x3e\x9f\xe2\x81\x6a\xe6\xe2\xc3\xc9\xc4\x3a\x98\xae\x2b\xa3\xb2\xcb\x5c\xa9\x2c\xdf\x9d\xab\x90\x89\x67\x50\xb4\xf5\x05\x2c\x7f\x61\xbd\x52\x26\x3d\x1f\x30\x9f\x89\x41\xba\x7e\x99\x5d\x26\x86\x58\xf2\xcb\xc5\xcc\xae\xc6\xaa\x12\x99\x47\x13\x77\x08\xd6\xe6\x10\xa1\x45\x08\x76\x20\x22\x00\xf7\xda\x2d\xc2\x7b\x12\xa5\xe7\x31\x54\x96\xdc\x94\x34\xa4\x52\xc5\x46\xf6\x34\xe7\x98\x8f\xa2\x29\x6f\x48\xc6\xb8\x5c\x9a\xaf\x2b\xaa\xaa\x54\x47\x66\x03\x94\x54\x0c\x82\x5a\x2a\x2d\xad\x85\xb1\x86\xae\xa9\x40\x91\x85\xae\xa9\x21\xad\xf9\xaf\xa9\xa2\xdc\x0b\xae\xa9\x23\x48\x64\x6b\x48\xb9\x60\x96\xd7\x3b\x59\x8a\x5f\x4c\xef\xd4\x33\x0d\x83\xc4\x14\x00\x44\xfa\xb1\xf6\x94\x87\xe9\x5b\x3f\x49\x79\x28\x38\x00\x83\xda\xe3\x5a\x9b\xcc\x92\xdf\x17\x14\x2f\x66\x7c\x3e\x0e\x7c\xd7\x4f\x83\x05\x73\x92\x0b\x72\xe7\x05\x06\x9c\x07\x1c\x45\x4c\x75\xbc\xe4\x43\x5e\x04\xd1\xf1\x40\x3d\x80\x80\xb5\x38\x08\x69\x14\x49\x9f\x25\xa9\x83\x91\x05\xd7\x22\xce\xd8\xf6\x20\xa4\x03\x5a\x78\x48\xb4\x33\x39\x55\x87\x94\x1a\x65\xa3\x4a\x25\xe7\x88\x2b\x3e\x2e\x25\x5d\x64\x4e\xe3\x24\x49\xe4\xfa\xc0\x6b\x48\x35\xdb\xca\x18\x04\xc5\x56\x41\xe8\xd1\xb2\x8a\xa4\x2b\xd7\x97\x42\x1b\x1f\xcb\xa4\x67\x99\xa9\x8f\xa9\x22\xb1\x1b\xbc\x60\x4b\x6d\x82\xd8\x36\xcd\x78\x69\x02\x87\xdb\x78\x1f\xe3\x14\xf2\xce\xb0\x19\xa7\x04\x07\x62\xfd\x1c\x45\x26\x20\x3b\x44\x4e\x95\xf1\x29\xfc\x23\x79\xc5\xaa\x15\x0f\x27\xc9\x44\x96\x6b\x62\xd8\xea\xe2\x90\x39\xda\x0f\xcd\x20\xa3\xa9\x13\x0f\x38\xbe\xb3\x42\xe3\x17\x76\xe3\xeb\xd6\xcb\xac\x08\x10\x11\x56\xcd\xf1\x3c\xeb\x82\x95\x73\x53\xf8\xce\xc6\x4e\x92\xf8\x53\xbe\x8d\x49\x1c\x94\xe2\x93\xe2\x4a\x89\x91\xa8\x53\x5e\xbc\x48\x92\xd2\x65\x5d\xf5\x68\x0c\x46\x6c\x05\x65\x0d\x8d\xc3\x50\x7a\x7b\x39\x1a\x59\x60\xad\xeb\xa9\xf2\x17\xa3\x2b\x63\x7d\xad\x8d\x27\xc9\x90\xba\xaa\x64\x9d\x44\x0e\x79\x3a\x19\xcb\x68\x01\xd0\x27\xbc\x38\x01\xaa\x51\xcc\x33\x39\x62\x98\xaf\xfb\xda\x53\xed\x16\x8f\x48\xb1\x3f\x25\x93\xd4\x6b\xee\x54\x22\x46\x94\xc1\x79\xa7\x39\x2f\x09\xc2\x36\xf0\xb7\xd6\x71\xe0\x40\xc1\x71\xc1\xf4\xa6\xfd\xc8\xc1\x92\xd0\x9e\x9e\xc0\x80\x78\x89\x14\x8c\x9a\xd1\x9e\xed\x98\xd0\x60\x69\xf5\x6d\xd7\x5a\xf3\xfc\xf9\x29\xc5\xd0\x5b\xa9\x9a\x87\x79\xcd\x59\xaa\xd7\x19\x85\xce\xc9\x8f\xd2\xca\x83\x6e\x86\x9a\x85\x72\x9d\x49\x26\x7b\xba\x2c\xdd\xfe\xf5\x47\xd3\x02\x45\x87\x8c\x3c\x50\x4b\x4a\x25\x96\x9d\x8d\x59\x9e\x3b\x8f\xd8\xa7\xf9\x51\x0f\xd4\xfa\x6d\xd4\x83\xa9\x27\x92\x95\xb3\xf8\x1a\x99\xf0\x46\xd4\xcb\x22\xbd\x82\x13\x93\xe5\xe1\x0a\xaa\xd8\xec\x5b\x87\x12\x88\x3a\x9e\xc7\x70\x03\xeb\x89\xb1\x1f\xa8\x69\xc5\xdc\x73\x31\x77\x9d\xc0\x9d\x04\x4e\x2a\x95\xae\xc5\x7a\x5b\xa5\xc6\x83\xe0\x77\xe9\x90\x2f\x20\xb4\x5d\x1a\xfb\x83\x01\x8f\x6f\x22\x6d\xae\xb8\x29\xc8\xbd\x65\xd9\x03\x23\x45\xaf\xc1\x30\x5a\x4b\x5b\x20\xa5\x8b\x5d\x59\x72\xf1\x96\x2a\xad\x6c\xa9\xdc\x2e\x34\xf5\x8e\xb2\xc8\xd2\x3c\x67\x70\x96\xb5\xa1\xc8\x13\x5c\xbf\xa3\x45\x75\x8a\xb7\x94\xb8\xa4\xa5\xbb\x3a\x8b\x30\x7a\xb8\xdc\xd5\x62\x24\xb7\x6c\x13\x45\x37\x4e\x90\x44\x04\x86\x3e\x14\x29\x4e\x98\x13\x2e\x46\x51\xcc\xf1\xa9\x7e\x12\x06\x3c\x49\x20\x1d\x10\x6a\x5a\xa4\xbe\x86\xac\x42\x46\x4e\x38\x71\x82\x60\xf1\xeb\x42\x44\x31\x17\xa9\x8f\xc9\xca\x53\xe2\x3a\xa1\xcb\x83\x46\xe8\x8f\xe0\x75\xf6\x65\x2c\xf8\xd7\x82\x2d\xb5\xb8\x7b\x79\xaa\x8a\xf6\xa9\x9c\x39\x4e\x46\x8b\xa5\x69\xe7\xae\x67\x52\xf4\x8b\x22\xec\xf5\xdf\x82\x90\x15\xce\xdc\x98\x34\xce\xd7\x20\x52\xc6\x31\xbd\x96\x56\x15\xd2\xa1\x82\xde\xae\x23\x45\x06\xdd\xa1\x8e\x93\x9b\x93\x9f\x02\x94\xaf\x6c\x17\x24\x8b\xa6\x2c\x17\x88\xc7\x29\x1c\x9f\xa4\x30\xc5\xe3\x63\x16\x79\xfc\xc8\xc1\x25\x80\x9c\x5a\x0a\x09\xb6\xca\xe8\x5d\x30\x40\xb6\xc3\x4e\xce\xae\xa1\x49\x99\xb6\x59\x52\xa4\x83\x63\x15\x52\x22\x79\xfe\x8e\x78\x10\x40\x7e\x7e\x99\xdc\xc9\x0f\xc7\x13\x88\xb5\xe6\x30\x74\xac\xfe\x19\xb3\x9b\xfb\x57\x04\xa7\x28\x23\xff\x2d\xf4\x8f\xef\x26\x23\x1e\xfb\x6e\x39\xb4\x35\x8c\x21\xea\x66\x64\x1c\x80\x77\xce\xbb\xb2\x61\xb5\x1f\x56\x2a\x64\x75\xe1\x87\x7e\xca\xcb\x61\x41\x6a\x22\x02\x6c\xd8\x4d\x51\x89\x7d\x3b\x0f\x49\x5a\x03\xd1\x58\x1a\xed\xe2\x3a\xfd\x84\xbd\xf5\x72\x59\xce\x88\x32\x93\x46\xf8\x3e\x6a\xf5\xbb\xcc\x97\xd8\xc8\x9c\x85\x45\x28\x45\x3a\xca\x08\xcb\x30\x2d\x11\x94\x83\x72\xdc\x5d\x6b\x93\xcc\x83\x9b\xd8\xef\x27\x14\xc8\x2a\x31\xb2\x23\xc2\x6f\xda\x29\xd3\xd7\x92\x3e\xa8\x1b\x37\x06\xb5\xe2\x1f\x3a\x51\x42\xca\x26\xa1\x6f\xe9\x38\xea\x75\x60\x6c\xa0\xd8\x57\x76\xda\x13\x08\x3e\x10\xd2\xde\x89\x09\x51\x48\x02\x62\x63\xfa\x51\x10\x44\x33\x7a\x46\x32\x03\xa9\x32\x76\x42\x46\xa9\x55\x65\xa8\x5a\x95\x9e\x02\xda\x4c\x97\xbc\x05\x0a\x0c\x76\xe3\x68\x0c\xb6\xba\x12\x1c\x33\x53\xa2\x33\xe3\xa4\x52\xa2\x2c\xb0\x2b\x20\xef\x4f\x43\x71\x28\xa7\x39\x9e\x97\xb2\x79\x29\xc8\x34\x1b\x74\x30\x64\x95\xc0\x4c\x60\x6c\x0d\x5a\x6b\x2c\x93\x13\xa3\x7f\x55\x35\x58\x60\x02\x23\x9b\x49\x4b\x98\xeb\x93\xaa\x1a\x9d\x2c\x77\x3c\x5c\x1e\x93\x3e\x1b\x67\x60\x59\x68\x7a\x48\xff\x3a\x09\x3d\xee\x5d\x63\x30\x61\x55\xb0\xe2\x63\x35\xe3\x68\x96\xe8\x8c\xe6\x5a\xf1\x4a\x1f\x10\x03\x48\x91\xff\xa5\x1f\xf3\x7e\x34\x47\x09\x9e\x5a\xde\xbb\xc7\xea\x54\x5e\xf7\x6b\x29\x4f\xd2\x72\xe8\x4c\xfd\x81\x93\x46\x71\x6d\x92\xf0\xb8\x31\x20\x9f\x26\x8d\x49\xfe\x47\xde\x9c\x0c\x96\xd8\xb7\x8d\x0f\x7f\x2e\xee\x40\x86\x15\xfb\x6f\x88\x3c\x80\xee\x5f\x68\xad\x45\x3d\x66\x92\xe9\xce\xab\x6c\x01\xe1\x5a\xe8\xf3\x73\xf3\x23\x31\x43\x57\xf2\x3d\x57\xc7\x1d\xb1\x79\x04\x30\x85\x0b\xf8\xc0\x71\x17\x5a\x0d\x18\x4a\xdc\x7c\x9e\xb0\xe9\x03\x0d\x16\xeb\xed\x8d\x27\x0d\xd7\xe5\x01\xc7\x35\x41\xc3\x4f\x69\x3f\x64\x3c\xbd\x4a\x33\x0c\x43\xdb\x8c\x5f\x4d\x63\x48\x65\x0e\xa8\x5e\xb7\x4c\x85\x34\x88\x9d\xb5\x81\xdd\xa1\x32\x55\xbf\x6e\x38\x77\x4c\x53\x4f\xeb\xf1\x44\x19\x4b\x4a\x9c\x53\xfa\xdc\xf8\xf8\xae\xf3\x6e\x6f\x9b\x75\x33\x3d\x75\x69\x69\x99\x58\x2a\xc0\xff\x5d\x73\x77\x0c\xcd\x3b\x48\x1d\x82\x5c\x84\x11\xe5\x27\x91\xef\x6d\x7e\xc8\xfa\x93\x74\x12\x73\x36\xe5\x71\x02\xc7\x4b\xd3\xbe\xf3\xe4\x4e\x29\xa7\xea\xc1\xb5\xce\x0c\x45\xda\xb6\xdf\x78\xce\x72\x76\x2f\xae\x6b\x22\x2b\x6d\xcb\x33\x54\xb0\xd6\xa7\xcb\xc2\x8e\x65\x13\x2b\xdb\x9b\x6e\x2a\x7d\xf3\xcd\xaf\x4d\xfc\x60\x05\x2c\x32\xb4\x29\x92\x96\x67\x7d\x27\x95\x6b\x00\x32\xfe\xd2\xc5\x45\xbd\x40\x14\xc4\x3d\xb0\xe2\x3f\xd9\xb8\xd0\x38\xc2\x2a\x64\x30\xf8\x66\x7a\x7c\xea\xbb\xfc\xbd\x3f\xe7\xc1\x47\xb1\x38\xec\x5f\x0c\x53\xf9\x2b\x24\x78\x9a\x0b\x0b\x20\x93\x58\xce\xf1\x68\x4b\x6f\x3b\xc3\x61\xa5\xa7\x12\x52\x66\x13\x59\x2e\xb0\x4d\xac\xb2\x0f\x2a\x87\x15\x2c\xb2\x52\xe8\x64\x8f\x8b\x9f\xc8\x34\xb5\xdd\x34\x9e\xf0\x2e\x26\xec\x55\xf1\x62\xc4\x67\x79\x44\xa5\xd9\x0e\x9b\x71\x7c\x2b\x80\x6a\x42\x6c\x7e\xe8\x75\x6d\x76\x4b\xbb\xbc\x99\xee\x59\x6c\xc6\x09\x84\x33\x49\x23\x21\x52\x0a\xf9\x17\xc2\xd4\x20\x93\x66\x3c\x3e\xd3\x2b\x30\xdd\x05\xdb\xfe\xc7\x7a\x91\xd5\x31\x67\x77\x96\x3f\xe9\x9a\x4f\x2e\x7a\x39\xc2\x68\x56\x15\x4c\x53\x29\x41\x63\x5e\x87\x25\x29\x1f\x33\x92\xd8\x3d\x16\x44\xd1\x05\x73\x52\xca\x0e\x14\x79\x9c\xb9\x41\x94\xf0\x60\xc1\xca\xb3\xb4\xff\xa2\x42\x60\x3a\x7d\x32\xac\x09\x53\xc3\x5f\x94\xa6\x3c\x10\xa4\x8e\x45\xa1\xab\xd2\x2f\x00\xcb\x8b\xcb\xc3\xbd\x2a\xbd\xa5\xd4\xeb\x10\x0f\x7f\xe8\x8c\xc7\xa0\x6c\x70\x52\x0b\x88\x38\x82\x23\x3f\x81\xe7\x34\xcf\x34\xd5\x93\x46\x7f\xd4\x39\x81\x8a\xa6\x3c\xee\x23\x03\x07\x0e\x57\x45\xc1\x05\x20\x70\xac\x8c\x11\x0b\x33\x1c\xc7\x51\x2f\xe0\x23\x08\x30\x36\x8e\xa3\x29\x58\x6e\xcd\x22\x45\xed\xca\x73\x58\x95\x45\xa5\x4a\x7c\xaf\x23\x98\xc4\x53\x6d\x47\x22\xf6\x45\x70\x6f\x99\xd8\x8e\xe4\xd2\x8d\x26\x44\x35\xbd\x68\x33\xe3\x9c\x38\xca\xe6\x47\x9c\x99\x31\x26\xc9\xcd\x0d\x1b\x86\xe6\x3a\xc0\x34\x13\x9c\xee\xbc\x8b\x87\x37\x1a\x77\x4d\x4b\x6f\x73\xfd\x59\x1a\xcd\x9c\xd8\x4b\x60\x2d\x04\x74\x81\x7c\xb8\xe3\xb1\xa8\x2f\x2f\x46\x9a\x90\xdb\x2b\x8c\x4f\x30\xd2\x98\x8e\x44\x46\x15\x13\x64\xc4\x48\x18\x4b\x97\xb1\x62\x04\x0a\x04\x2d\x91\x85\xf9\xfc\x84\xfd\x6b\x98\x8e\x82\x3f\xac\x2b\x01\x7b\x92\x64\x3c\x2d\x39\xf5\x2e\xb7\x34\x71\x63\x71\x4e\xca\x18\x5a\x5d\x9a\x7f\xaa\x74\x57\x15\xcd\xdb\x87\x1e\x90\x92\x3c\x08\x88\x79\x6f\x6c\x37\xce\xc1\x1c\x60\x51\x40\x38\x83\xc5\xc6\x17\xd7\x75\xab\x85\x95\x17\x6c\x2d\x93\xa2\x62\x49\x44\xb4\x02\x38\x86\x53\xe1\x52\x28\xa7\x79\x43\x20\x00\x94\x8d\xf7\x76\x65\x6e\x4f\xd3\x44\x85\x15\xd3\x83\xe2\x16\x13\xa7\x97\xe4\xa2\x99\x7f\xce\x04\x82\x8b\x29\xfa\x56\xd1\xbc\x8b\xc0\x68\x67\xcb\x65\x40\xf2\xd3\x26\x38\xb9\xd8\x73\x3a\xc2\x78\x06\xa5\xdf\xbb\x97\xc3\x8d\x6a\x76\x4a\x10\xb2\xbf\x0b\x19\xc9\x44\xe7\xe5\x7f\x7c\x17\xfd\x5c\x8d\xe7\x55\xf6\x8f\xef\x69\x34\x86\xbf\x36\x2a\xdd\xe7\x16\x18\xb8\x11\x67\x2a\x57\x8d\x55\xde\xcc\x97\x67\x9e\xce\x35\x4e\x2e\xb0\xfa\x12\x58\x2c\x1d\xce\x78\xec\x27\xbc\x2a\x29\x0e\x4a\xf2\x4e\xe8\x39\xb1\x87\x57\xbe\xca\xba\x62\xa0\xe2\x5f\x3c\x3e\x48\xc0\xba\xb0\xa6\x5d\x3b\x6c\x83\xb2\x79\xf1\xc3\x29\x8f\x53\xcc\x7c\x90\xbf\xd4\x76\xf6\x71\xbb\x0d\xa5\x3c\xc8\x1d\xb5\x6c\x9b\xec\xfa\xa4\x90\x89\x5c\xf5\xbb\x64\xb5\x02\xcc\x30\xae\xbb\xba\x66\xf5\xba\x32\xd7\xb4\xd8\x20\x4c\x22\xdd\xcd\x98\xfb\x2b\x4b\x0c\x83\x17\xd2\x66\xcb\x9a\x1f\xb2\xec\x34\xb6\x33\xe6\x90\x59\x93\x65\xd4\xf7\xb2\xae\xa8\xd5\x35\xc0\x49\xad\x05\xda\xa5\x6b\x93\xe9\x53\x69\x46\x69\xf7\xcc\x6a\xb5\x9a\xd9\xb8\x56\xab\x65\x6b\x61\xa4\x01\x28\xd5\x1c\x9c\xa8\x28\x73\xd8\xc9\x36\xf4\xd5\xa8\x6f\xf4\x2f\x1b\x59\xa6\x9c\xf0\xdd\xe8\xd4\xa8\x7e\xf5\xcb\xae\x2d\x37\x37\x3f\x44\xfb\x35\x92\xba\x9d\x50\x99\x61\x9a\xc6\xfb\x9d\x14\xf5\x7e\x89\x84\x41\x0f\xb6\xa6\x2d\x0f\xa8\x6c\x3d\x58\xf9\x9f\x32\x67\x5c\xe2\xc5\xc7\xd6\xf3\x2e\x88\x85\x9e\x7d\x31\xff\x36\xe1\x49\xea\x87\x03\x40\xaa\xeb\x68\x81\x18\xf5\x8d\x0f\x0a\xc2\x75\x00\xb8\x57\xdc\xde\x98\xee\xaf\xda\x5f\x7e\xe4\xdf\x26\x7e\xcc\x51\xfe\xb4\xe5\x4d\x7b\x16\x66\x11\x8e\x4b\x3d\x2b\xcb\x78\x25\x6a\x6e\x24\xd2\x1a\xc6\x52\x64\xa4\x49\xb6\x99\x4a\x64\xb5\xbb\xb0\x25\x00\x3f\x91\x63\x93\x22\xdc\x9d\x3b\x46\x1f\x52\x45\x96\xb1\x09\x2d\xf0\x17\xcc\x66\xab\x37\x5b\xd5\xb2\x43\xa1\x25\xd7\x0a\x38\xa3\xae\x36\x29\x2d\xf8\x08\xae\xa7\xec\x5f\xc6\x94\xb0\x48\x56\x55\x0e\x63\x19\x93\x09\x39\xc9\x8c\x9d\xa2\xb5\x9a\xdd\xd3\xd3\xee\x3f\xbe\xdb\x8b\x75\x75\x7a\xda\xed\x3e\x2f\x68\x02\x3a\x7a\xab\x05\xce\x29\xdb\x20\x27\xce\x9b\x0d\xae\xac\xfb\x14\xcb\x8d\xe8\x2d\x98\x39\x0e\xb3\x16\x39\xdf\x8a\x1b\x3e\x8b\xe2\x8b\xaa\x4a\x36\x9a\x46\x32\xa5\x13\xf3\x53\xe9\x3c\x68\x41\xb9\xd3\xcd\x89\xf2\x2a\xe3\x86\x5c\x9e\xdc\xf3\xc2\x5b\xba\x89\x8e\xeb\xf2\xb1\x65\xbe\x0f\x0e\x8e\x82\x3a\x3a\x89\x54\x4b\x13\x0b\x68\x3a\x50\x20\x13\x6f\x62\x96\x4f\x76\xb8\x0e\xc8\xbe\xb6\x0d\x5f\xd6\x29\x44\xa8\xfc\x21\x08\xad\xfc\x1b\x09\xab\xfc\x45\x34\x57\xfe\x04\x52\x2c\x7e\x40\x41\xdb\x71\x87\x86\x97\x81\xe0\xdb\x21\x1a\x84\x63\x44\xa5\x03\xd4\x87\xba\x25\x3f\x49\x55\xf7\xeb\xf0\xde\xae\xe0\xae\x73\xf4\xe9\xbe\x4f\x03\xa7\xd6\x32\x61\x5c\xca\xe3\x71\xcc\xc5\xa2\x70\x27\xf1\xd1\xf0\x71\x11\x4d\x04\xdc\xf0\x42\x39\x45\x3b\x68\xa0\x09\x44\x36\x8d\x30\xe8\x0d\xbe\xef\xc6\x7e\x9a\xf2\x90\x05\x4e\x38\x98\x38\x03\x9e\xd4\x18\xc4\x62\x88\xc2\x14\xc4\xd3\x32\x0a\x17\xc0\x57\xd0\x84\x2b\x55\xd6\xc5\x21\x02\xfe\x15\x20\xe1\xb3\x1c\x27\x9c\x22\xd1\x81\xb5\xe0\x82\x13\x71\x09\x24\x2c\x95\xc9\xab\xd8\x20\x53\x4a\xa8\x06\x10\x45\x81\x96\x4e\xe8\x41\x25\x1a\xc9\x88\x2b\x7c\xee\x8c\xc6\x40\x7a\x8d\x0d\x4c\xa3\x31\xac\x1a\x2b\x6b\x89\xca\x78\x81\x44\x5b\x48\x27\xf0\x07\x21\xf7\x2a\xd6\xe6\xd2\xda\x43\x43\xac\x66\x37\x85\xa1\x65\x1a\x4a\xde\x4b\xb4\xa1\x80\x95\xcc\xe5\x21\x44\x2d\xac\x98\x67\xca\x18\x93\xe0\xe5\x84\x88\xa9\x82\xcd\x62\x78\x59\x1d\x6e\xb6\x8a\xdd\xc0\xe1\x91\xa4\xb2\xb7\x30\x42\xb3\xa8\xc5\xf8\x9f\x24\x75\x52\xdf\xc5\xbf\xd3\xc5\x98\x4b\x62\x86\x25\x3c\x9c\x68\x62\x23\x29\x88\xe3\x45\x61\x60\x45\x5e\x30\xee\xc2\x2d\x5e\xdb\x4f\xc4\xfd\x85\xc8\xab\xb8\x70\x68\x34\x83\xa1\x58\xf5\x9f\x62\xde\xf4\x53\xec\x8c\x59\x13\xde\x4e\xd4\x17\x5d\xcf\xd8\x0c\xb3\xc4\xfa\xaa\x6b\xe3\xaa\xe7\x0a\xec\xaf\x26\x30\x71\x00\x8d\xea\x18\xfb\x49\x7f\x51\x55\xcf\x9e\x9b\xbc\x8f\x81\x2e\x94\xda\x1f\x57\x2f\xa9\xeb\x6f\xc4\x10\x61\x24\x9c\xd8\x87\x40\x17\x14\x75\xb8\xab\x57\x8a\x8e\xbf\x3a\x16\xf2\xad\x00\x4e\xf5\x7b\xdd\x91\x11\x71\x47\xba\xda\x3f\xb4\xdf\x04\xf6\x80\xaf\x72\x42\xe6\x87\x7e\xea\x3b\x81\xe9\x92\x26\x79\x05\x19\x91\x3b\x99\xf4\x12\x81\x8b\xc3\x34\xbb\xdf\x6e\x10\xb9\x17\x33\x3f\xe1\xac\x1c\xc5\xcc\x8d\x26\xe2\xfc\xae\xab\xd2\x8a\xbe\x7c\xbf\x21\xfa\x17\x5b\x67\x8d\x5c\xc4\xa4\xb2\x9f\x12\x82\x4f\x34\x8e\x94\x41\x98\x34\x30\x95\x15\x83\xc6\xc8\xd6\xf1\x7d\x35\x42\xcb\x32\x41\x92\x9c\xe0\xc2\x8e\xe9\x9c\xc8\xca\x6a\x3e\x19\x56\x8a\xb8\x3f\xa3\x01\x92\x31\x52\x3e\xf8\xb1\x31\xa2\x55\x2f\x13\xb2\x8b\xb2\xb1\x0f\x72\xac\x85\xa9\x86\xc1\x27\x7a\x27\xbb\xf3\x05\x61\x7e\x0c\xf5\xa7\x13\xc7\xf9\x26\x48\x59\xe9\x94\x20\xd8\x35\xb6\x29\xa3\xc7\xba\x51\xe8\x3a\x69\x39\xdb\x8d\x0a\xdf\x00\x0d\xec\xe0\x88\x72\xd8\x2f\xc0\x8b\x39\xe6\x53\x1e\x83\xa7\xc6\xb6\xf8\x5d\x14\xba\x6c\x59\x30\x32\xf3\x4d\xaf\x28\x26\x59\x1e\xc4\x27\x9b\x4a\x16\x82\x50\x75\xfe\xf3\x8e\xcc\x3f\x15\xe9\xfc\x77\x78\x6f\xe8\x7b\x9a\xf5\x10\x97\x1f\xcc\x97\xc7\x66\xfb\x55\xe3\x53\xe7\xe0\xe3\xa1\x14\x78\x5f\xbe\xed\xbc\xdf\x66\xa5\x7e\xe0\x13\xde\x6d\xbd\x3d\x68\xbd\xf9\xdc\x39\x6c\x6f\xb3\x92\x06\x81\x9f\x0e\x8e\xdf\x1d\xb5\x3f\x5a\x35\x32\xd7\x48\x54\xbc\xfa\xcf\xbd\x50\xfe\xf7\x44\x46\x17\x0b\x5c\xf8\x2e\x89\x0f\x11\x5d\xc8\x4e\x59\xe8\x94\x22\xd5\xbc\xa5\x54\x69\x7d\xba\x02\x5a\xd7\x14\x03\x97\xb8\xad\x2c\x7b\x51\x64\x25\xe8\xaf\x94\x4f\x4d\x86\x12\xbe\x95\x34\x16\x80\xc8\x40\x8c\xf7\xee\xe5\x1c\x86\x77\x76\x96\x78\xc5\x9a\x0a\xe1\x84\xf3\x91\x60\x6b\x2f\x38\x2c\x05\x70\x75\xf1\x02\xd0\x69\xc4\x82\x28\x1a\xc3\x92\xf6\x9c\x1e\xbe\x99\xc4\xbc\x04\x79\x8b\x19\x0f\x21\x02\x10\x32\x43\xb0\x55\x0b\x65\x96\x21\x86\x84\x91\xf8\x7d\x4f\xea\xb4\x96\xcc\xe3\x86\x91\xdd\x8b\x1e\xe3\xaa\x45\x9f\xb2\x26\xa0\xca\xef\xd5\x8a\xfe\x2e\x4b\x97\x79\x2e\xe7\xdd\x83\xcd\xb7\xb0\x80\xa7\x56\xa4\x3d\x7b\xdd\x73\xe1\xf6\x32\x0d\x24\x4e\xa4\x27\xc7\x6b\x82\x62\xaa\xb6\x66\x78\xec\xe5\x9d\x6d\x42\x28\x9b\x52\xc9\x18\xa5\xd8\x89\x03\x10\x00\xc9\xb8\x4c\x7c\x48\x66\x7e\xea\x0e\x59\x59\x2d\x02\xc5\xa5\x32\xcc\x29\x13\xae\x11\x52\x0d\x30\x91\x14\x47\x2d\x88\x06\xdd\xcc\x4d\xef\x4c\x67\x2a\x89\xb9\x23\x9d\xe6\x32\xa0\x35\xc6\x2a\x82\x5f\x40\xa0\x2b\x37\x82\x9a\x45\x87\x37\x04\x5e\x05\xc6\xa4\xb8\x0b\xc2\x1b\x85\xa0\xb2\x0b\x69\x9e\x6f\x55\x4f\x59\x43\x95\x93\x94\x8f\x25\x11\xcf\x04\x50\xd2\xa7\xea\xce\xce\x0e\x3e\xf3\xfd\xf8\x61\xc0\xa0\xa0\xeb\xe2\x66\x6b\xae\x21\xa7\x51\x51\x77\xcc\xc8\x13\x74\xab\xf3\xca\x7e\xf2\xb4\x9a\x7a\x8f\x6c\x50\xc7\x02\x27\xf5\x8c\x9e\xa4\xbf\xa4\xb2\xba\xd2\x66\xba\xa1\x49\x22\x50\x54\x3f\x88\xa2\x58\x3d\x34\x16\x07\x10\x1d\x39\x0b\x19\xab\x93\x79\xdc\xf5\x47\x4e\x00\x89\xbd\x85\x50\x2e\x10\xd9\x20\x22\x64\x27\xc6\xe1\x8b\x1d\xc5\x44\x66\x7a\x68\xd8\x0b\xe5\x32\x86\x1f\xd6\xc8\xa3\x29\x8f\x03\x67\x9c\x7c\xe4\x7d\x1d\xb2\x2f\x13\x78\x90\x1e\xbb\x4d\x1d\x15\x00\x2a\x5b\xcb\x84\x6f\x2c\x15\xf6\x07\x7d\xd4\x6b\x02\xef\x29\x95\x0a\xfb\xf1\x63\x59\x07\xa4\xe1\x5f\xd5\x03\xc0\x61\xff\xca\x77\x80\x5d\x5f\xd7\x03\x3c\xf1\xaf\x82\x8f\x22\x5c\xe1\x14\xd2\x68\x7c\x2d\x7c\xf9\xb0\xb1\xaa\x0b\x01\xa7\x68\x06\xd4\x75\xf6\x20\xca\x57\xe6\x84\x5e\x45\x56\xaf\x4a\x26\x23\x45\x25\xb7\xdb\x00\xee\x23\xf9\x69\xde\x60\x1f\xb3\x29\x3c\x96\x40\xc4\xa7\x9e\x95\x53\xb6\x93\x88\x2c\x81\x45\x51\xb1\x77\x34\xbe\x5a\xbd\x57\xb9\xfc\x1e\x4b\x97\xd2\x60\xa5\x57\x9e\x78\x7b\x03\x6e\x74\x84\x33\x8b\x7c\x83\x43\x69\x2d\xe2\xcd\x0e\x59\x76\xad\xac\x6c\x66\xc0\x0a\xa1\x15\xaa\x24\xbd\x7e\x5f\x69\x5c\xad\x17\xb7\x44\x2a\xcc\x20\x04\x2c\x99\x98\x52\x37\xd7\x87\x80\xb5\x7a\x4b\xb2\x5d\xe5\x62\xed\xc8\xe1\xe6\x92\xf7\x49\x2c\x05\x8c\xa0\x12\xb5\x9a\x0b\x0b\x21\xdd\xb9\x23\xc9\x94\xa8\x68\x28\x27\xf5\x75\x2b\x97\x8d\xc9\xdc\xbb\x67\xb2\x1d\x90\xef\x0f\x74\x2d\xd7\xee\x28\x63\xd7\x83\xe0\xa1\xb7\x62\x7f\x19\xa8\xdf\x6f\x37\x8a\xcc\x96\xaf\x04\x91\x1b\x45\x33\x8b\x39\x8a\xf7\x84\x6c\x35\x94\x05\xcd\xad\x37\xa4\x45\x2d\x57\x6e\x8a\xae\xfa\x2b\xbb\x53\xb4\xb8\xb7\x5b\x98\x82\xfd\xbd\xf5\xee\xd0\xe2\xfe\xd2\x06\x89\x1d\xce\x22\xa3\xec\xf2\x02\xea\x2c\xba\x02\xc4\x41\x15\x6e\x85\x82\x09\xc6\x17\x06\x21\xff\xf1\xa3\x10\xdb\x15\xc0\xb2\xe3\x3b\x62\x2c\x46\xd4\x7c\xa1\x81\x51\x2a\x84\x63\x08\x10\x26\x70\x8a\x90\xa8\x64\x75\x4b\x7e\xb3\x9c\x09\x6f\x3e\x22\x2b\x07\xa6\xc9\xe4\x29\xa6\xf1\x44\x71\x8a\x67\x66\xba\x4b\xb3\x9b\x6b\xa6\xc4\x2c\xe1\xa3\x48\xa5\xa3\xd3\xee\x54\x8a\xe0\xe7\xa2\x58\x8d\x97\xa5\xec\x29\xad\x97\xd8\x9a\xd1\x9d\x4c\xd9\x93\x5d\x5d\x3b\xfe\x7a\xc2\xba\x52\x50\xeb\x82\x44\x3e\x73\xd0\xab\x62\x1c\xf3\x84\xc7\x53\x78\xdf\x72\x82\x08\xd2\x65\xa4\x43\x03\x98\xd8\x13\x21\x15\x52\xa0\x57\x15\xc9\x65\xc6\x81\x67\x74\x3c\xb0\x76\x05\x81\x16\x2c\x5e\xad\x19\xe5\x82\x3c\x19\x2b\x96\x7d\xc7\xb7\xc4\x55\xaa\xb0\x24\x26\x94\xd1\x43\xb1\xb4\x5b\x30\x84\xbc\xd7\x63\x7e\xdd\xf5\x17\xed\xc0\x7d\x95\x0f\xa8\x69\x45\x72\x5a\xaa\xa3\x40\x6d\x09\xaa\xa6\xf2\x11\x37\xaf\x35\x4a\xc8\x79\xe2\x68\x4d\x9a\xe1\x90\xf3\x53\x11\x8a\x6f\xe0\xce\x60\x66\xb1\x06\xeb\x95\x04\x8c\x29\x63\x21\x00\x18\xe1\xfc\xd1\xf3\x64\x8d\xbc\x51\xc2\x34\x62\x0e\x1b\xcf\xa9\xd8\x74\x92\x5a\xa2\x41\xfb\xae\xd6\xea\xff\xc2\x3d\xba\xca\x79\xe5\x15\x29\xdd\x93\x34\x66\xeb\xec\x93\xd9\x39\x8e\x6d\x59\x03\x33\xb2\xfb\x3a\xeb\xa2\xa5\x5a\x97\x45\x31\xeb\x82\xf1\x56\x77\x99\xe2\xcd\x62\x03\x97\x55\xca\x06\x1d\xcf\x28\xe0\x30\x13\xe5\x0f\xf3\xb9\x0a\x87\xee\x87\x6c\xec\xcf\x79\x90\x54\xc5\x48\x54\x58\x3b\x5a\x66\xbf\xcf\xc2\x48\xf9\x25\xf1\x98\x33\x3e\x4f\x63\xc7\x4d\xb3\x8a\x3a\xa5\xa0\x4b\x23\x80\x5b\x4e\xd2\xb8\x6a\x4e\xb9\x6a\x4f\x23\x9f\x1e\x41\xeb\xf1\x12\x3e\x76\x62\x27\x95\x3e\x45\x70\x3a\xc4\xfa\x6a\x05\x14\xc8\xc0\xe0\x81\x13\xd7\x20\xf6\x67\xb9\x5e\x2e\xbf\xd8\x3e\x3d\x5d\xff\x71\x7a\xba\x56\x79\x71\x7a\xea\xdd\x3f\x3d\xad\xc1\xbf\x95\x72\xed\x7e\xa5\x6e\xea\xf8\x11\xec\x0e\x5b\x03\x30\x27\x9b\x56\x60\x25\x74\x01\xc2\x2f\x0f\x8c\xf4\x0b\x9d\x3e\x9a\xda\x0a\x19\x54\xfa\xde\x61\x89\x13\x32\x81\x8a\x9c\x34\x8a\xab\xac\xc3\x06\x13\x9e\x24\x52\xe7\x77\xc7\x0c\xdb\x6a\xf8\xfa\xc5\x59\xe5\xa0\xe8\x57\xa7\x5c\xfc\x27\xe5\x5b\xdc\xa8\x98\x5e\x58\xdc\xca\x29\x2c\xf5\x42\xa2\xa5\x99\x57\xd7\x49\x38\x2b\xfd\x73\x5c\xda\xd6\x48\x84\x2b\xaf\xc4\x6c\x48\x79\x59\xc3\xd4\x9d\x28\x18\x1a\x04\x15\xc4\xba\x24\xab\x60\x31\x3b\xc9\xee\x6c\x71\x12\xe4\x58\x19\xe1\x1b\xc6\xf7\x56\xc2\x21\x23\xbd\x4e\x3e\x67\xc0\xe6\xc6\x06\xbb\x8f\x5b\x69\x1a\xfa\xc9\xb5\xa4\x64\xdf\xc3\x92\x20\xc4\x46\xc1\xcc\x32\xaf\xf5\xfb\xe8\x4a\x39\x1d\x8a\xc3\x3f\x9d\x91\x8e\x58\xfa\x6d\xe3\x6b\xf2\x25\xd7\xc9\xb9\x41\xc6\xa0\xf4\xe0\x7a\x63\x44\x1d\x23\x7a\x95\xd5\xbf\xb1\x35\x00\x8a\xf4\x12\x23\x67\x6e\xd0\x10\x6f\x49\xde\x69\xcb\x34\xd6\xa0\x17\xe4\x13\x00\xca\x67\xb2\x9b\xfd\xf1\x43\xa6\xf6\x33\xcc\x64\x32\xc6\xa3\x3f\x3d\x80\xcf\x56\x82\x49\xbb\x7f\xb4\x5e\x2d\xec\xde\x3e\xf4\xa2\xf3\xa5\xfb\x96\xdb\x93\x50\xc5\x1c\x42\xfc\x04\x9b\x08\xfb\x33\xd0\xcf\xbf\x62\x3b\x60\xb5\x9d\xd0\x63\x17\x9c\x8f\xb5\x2b\x62\x1e\x9e\x3f\x22\x78\x08\x09\xee\xee\x78\x5e\x45\xef\x19\x2e\x87\x79\x3e\x49\xd2\x2c\x14\xfa\x64\x0c\x3a\x13\xf5\xe4\xbd\x13\x27\x5c\xf4\xd1\x45\x0a\xd2\x95\xf8\x33\x8d\x10\x61\x8e\x23\x38\x50\xdd\x39\x3d\x4f\x2f\xba\xca\x4f\x52\xf2\x05\x7f\x05\x8d\xc2\xba\x7f\x01\x5d\xc9\x77\x25\xae\xc8\xfb\x25\x59\xa8\x64\xe4\x6c\x30\xfc\x77\xc1\xa5\xd9\x11\x45\x68\xa5\x41\x0e\x00\x4a\x03\xe8\x87\x84\x5e\x93\x25\x24\x06\x9c\x89\x71\x38\x70\x84\xb1\xa1\x91\x05\x57\xd2\x98\xd3\x30\x9f\x8c\x03\x73\xe2\xda\x83\xb5\xa3\x2c\x29\xb5\xe6\xc9\x46\x95\x99\x19\x78\x8e\x13\x2e\x53\xe4\x08\xf1\x52\x47\x3a\x25\x63\x9d\x28\x96\x16\x30\xa1\x47\x0a\x5f\x3f\x61\x1b\x18\x09\x13\x9e\x16\x27\x09\xc7\x3c\x39\x04\xd1\xc7\x30\x54\x6c\xe6\x2c\x8c\x50\x9b\xe4\xda\x00\x1e\x5d\x13\x3c\x57\xce\xdc\x47\x23\x58\x40\x49\x90\x39\x84\xb2\x86\x81\x97\x80\xac\x69\xc5\xdd\x34\x88\x5a\xc2\x09\x4b\x5c\x97\xf6\xc6\x5a\x94\x8c\xde\xa3\x5e\x67\x87\x40\x73\x0d\xd7\x0b\x7d\xc4\x29\x75\x86\xf6\x6b\x26\x86\x01\xdf\x03\x79\xec\x84\x5e\x42\x50\x8e\x40\xe9\x3b\xe0\x73\xc1\xb0\xc7\x3c\x49\xb8\xb2\x2f\x53\x11\xb6\xc6\xc1\x24\x11\x8b\x39\xf2\xc3\x49\xc2\x12\x7f\x10\x82\x1f\x5b\x1c\x85\x29\x2b\xaf\x6d\x6e\x54\xd9\xfa\x83\x8d\x2a\xe3\xa9\x5b\xd1\x73\xec\xc7\xce\x40\x5a\x76\xe0\x00\x49\x53\x5e\x2f\x9f\x9e\xae\xfd\x38\x3d\x5d\xaf\xd4\x2b\x90\x4a\x56\xd4\x64\x3b\x7f\x40\x8b\x5a\x1a\xfb\xa3\x72\xc5\x70\xdf\xd9\x45\x09\x90\xec\x62\xed\xa9\x2a\x19\xc6\x61\x63\xc7\x8f\x8d\x99\x46\xb1\x60\x4d\xfd\x70\x10\x70\x63\x5f\x20\xbc\x87\x1b\x4d\x02\x0f\x0c\xf9\x88\xad\x81\x17\x57\x37\x1a\x8d\x1c\xd1\x0c\x5e\xe4\xf4\x34\x3c\x7f\xea\xe3\x33\x85\x9a\x90\xda\x20\x44\x46\x60\x15\xaa\x3e\x56\x99\x35\x9d\x84\x3b\xb1\xe0\x86\xaa\x3f\x4e\x4f\x93\xba\xdc\x44\x58\x26\xd3\x64\x52\x35\x3f\xa1\xfe\xce\x84\xfc\x9e\x2f\xd5\x1c\x49\x35\x9f\x01\xba\xd8\x9d\x51\xbe\x0a\x58\xb3\x9d\x0d\xfd\x94\x2c\xb1\xca\x49\x05\x74\xf9\xd9\xa4\x10\x0e\x2d\x49\xb9\x5a\x91\x9e\x34\xb5\xac\x77\xa2\x66\xc5\xe4\x32\xf9\x09\xeb\x63\x24\xa4\x19\xa7\x42\x2b\xcb\x49\xc1\x41\x04\x31\x1f\x6a\xea\x5d\x1a\x89\x41\x46\xb0\xd5\x5f\xa0\xf2\xd7\x5a\x86\xd9\xfc\x08\x67\x76\x87\xd5\x4f\x4f\x93\xfb\x55\xf1\x3f\xb1\xc2\x6b\x75\xf5\xe8\x17\x8d\xe1\x25\x84\xc6\x85\xeb\x8e\xc3\x7f\x81\xd6\x5c\xf8\x9f\x5a\x63\x53\xf8\xd3\xb6\x22\xd4\xbe\x62\x7d\x25\x03\x93\x93\x82\xfd\xc1\x23\xae\x47\x58\x39\xd9\x38\x3b\xab\x18\x94\xfa\x66\x8d\x36\xcf\xce\x64\x2f\x66\xcf\xfa\x08\xe2\x00\xe5\xec\xb4\xf1\x8b\x2d\xa2\x9e\xe1\x1f\xdb\x46\xaf\x06\xfa\x24\x21\x4e\x13\x57\xba\xf2\x82\x1c\xc3\xae\xc8\x38\xc6\x24\x90\x40\x51\x10\x44\x33\xc8\x46\x86\xae\xaf\xca\x52\x88\xd6\x3b\x1a\x27\x70\xa7\xcb\x51\xd1\x1b\x5d\xbd\xce\xf6\xa3\x24\x35\x39\x05\xf0\x91\x5a\x48\x56\x2e\x8a\x05\x77\xe3\xe4\x63\x2d\x99\x8c\xaa\x9d\x91\x8b\xec\x7f\xc4\x5d\xd8\x64\x2f\xd8\x1d\x8d\x5b\xb7\x35\x9e\x55\xab\xa3\x13\x6f\xc9\x12\x3b\x7d\x17\x9e\x9d\x11\x8f\x07\xfc\xb3\x9f\x0e\xdf\xcb\x7c\x1f\x66\x80\x90\xbc\xe9\xb5\xd6\x49\x11\x4e\x15\xc4\x61\x30\x88\xf9\x00\x42\xff\x3b\xe1\x82\x75\xd7\x50\xb2\x5c\xef\x22\x02\x05\xe7\x3f\x27\xe6\x61\x29\x55\x2f\x67\xdc\x53\x82\x4b\x62\x01\xe4\xb5\x41\x6d\x9b\x6d\x6e\xb0\x35\xb6\xb6\x25\xd6\xf3\x44\x20\xdd\xb5\x2a\x5b\xdb\x3a\x33\xd4\x22\x31\xf7\x26\x2e\x37\x12\x67\x7f\x37\x0f\x8f\xc0\x33\xce\x89\x23\x1f\x41\xd7\xd9\x26\x66\x72\xc0\xb8\x20\x27\xa5\x35\x41\x82\xd6\x4d\xfa\xa3\xd0\x95\x0d\x88\xb1\x1c\x18\xd6\x7b\x6e\xd7\x28\x5a\x41\x23\x36\xb4\xfc\x4f\xa6\x8e\xb0\x8a\x0d\xc9\x21\x07\x66\xe5\x50\xd6\x6e\x36\x16\x73\x37\x6f\x32\x98\xef\xc5\x55\xe5\x25\xed\x55\xec\x46\xfa\xc7\x55\x95\x9d\x9c\x55\xac\xdd\x7c\x25\xc4\xf6\x19\x38\x52\xaa\xfb\x47\x04\x8d\xae\x21\x28\x4d\x48\xa4\xa5\xa2\xb2\x1f\xb2\xf1\xdc\x00\x04\xd7\x2c\x49\xc1\x27\xe0\xe7\x65\xfc\x8a\x85\xd1\x0d\xb2\x9b\x4d\x53\xa5\x12\x52\x08\x3e\x11\x11\x38\x9f\x73\x57\xc6\x72\xc7\x73\x6b\xe0\x02\xfd\x5e\x5f\x88\x09\xa2\xb1\xae\x20\x70\x13\x55\x79\x60\x1f\x5b\x34\xfe\x91\xb1\x42\x44\xbd\x8a\x75\x00\x68\x50\xa8\xa2\x85\xbd\x07\xe2\x7b\x9f\x95\xa3\x31\x16\x3e\x30\xce\xf9\xba\x76\xe0\xb2\x54\xad\x8c\x29\xd5\x9b\xad\x81\x8b\xcc\x4c\x6f\xff\xe5\x96\x5f\x1a\x88\xad\x79\x52\xd6\x17\x38\xd9\x9d\x0d\x0c\x73\xa4\x59\x2d\x54\xce\x38\x90\xbd\xc3\x8d\xfd\x1e\x57\x6a\x5d\xc3\xc3\x49\x7c\x19\xeb\x25\xf9\xfd\x66\x66\x38\x18\x32\x34\xfb\x2e\xc7\x76\x95\x89\x81\x61\x98\xa2\xe8\x7c\x1c\xf9\x04\xde\xec\x4a\x45\xc2\x30\x34\x4d\x16\xbb\xbd\x32\x01\x68\xa0\x53\xca\x2a\xd7\x61\x7d\x54\xd7\xf0\x93\x3e\xad\x86\x10\x43\xdf\x48\x94\xc9\x62\x18\x5d\xd1\x94\xaa\x64\x93\x82\x5c\xe4\xb6\x94\x90\x55\x63\x65\x26\xa5\x1e\x96\x33\xc9\x1b\x21\xf0\xf2\x9a\x72\x3f\x35\x0c\x59\xf0\x33\x88\x53\xeb\xfa\xfb\xe6\x59\x56\xc7\x53\xd0\x51\xc6\x3f\xf7\x16\x3d\xad\xdd\xb2\xa7\x34\x1a\xe7\xfa\xc9\x02\xca\x76\x24\xc6\x71\xdb\x19\x65\x1d\xc2\x6f\xd1\x55\xc1\x94\xac\x54\x1a\xf4\x0c\x62\x58\xf6\x5c\xf3\x0c\xa0\x63\xa2\x88\xcb\xa0\x7f\x1d\x84\x6f\x23\xc7\x63\x57\xca\x6f\xd1\x08\x9e\x62\x58\xd6\x1a\x41\x4b\x54\x4d\xb3\xd0\xa8\x0b\x4e\x93\x1a\x9c\xf8\x65\x3e\x16\x04\xfe\x58\xfb\x48\x06\xfe\xd8\xf8\x76\xc1\xf9\xf8\x28\x1a\x70\x90\x7e\x65\x1d\xb3\xd0\xa8\x4b\xd7\x59\xd6\xc2\x9f\xc6\xf7\x71\x0c\xe1\xda\x0e\xe8\xfd\x4e\x55\xcc\x94\x1b\x2d\x92\xa1\xdf\xd7\x00\xe1\x97\xf1\x75\x28\xc4\x12\xf9\x51\xfc\x30\x8d\x96\xc3\xd0\x18\x30\x9a\x93\x5a\x6f\x1f\x12\xe5\x2a\xe4\x54\xcd\x64\x8d\x33\x5c\xa0\x0c\xfc\x85\x8a\x05\x70\x5b\x71\x92\x04\x1c\x6b\x00\x5c\x1a\x41\x5c\x82\x6e\x3f\xec\xea\xb4\x00\x86\x3f\xd1\x11\x64\x92\x93\x80\x74\x12\x1d\xd7\x09\x02\xd4\x81\x42\xef\x48\x37\x30\xd2\xa2\x60\x01\xc2\x04\x59\xcc\x45\x34\x61\xa3\x49\x82\x1a\x20\x2b\x99\x1d\x06\xba\x54\x59\xa0\x94\x49\x6a\x2a\xc3\x45\x98\x09\xa2\xc4\xc9\x0f\x78\xc8\xdd\x8b\xc4\x70\x90\x50\xd3\x93\x6b\xf2\x32\xcc\x52\x9b\x6c\x46\xc9\xbf\x41\x6c\x26\x73\x48\x37\x26\x4c\xf9\xfd\x47\xbf\xb4\x71\x30\x19\xf8\xa1\x8e\x40\xe9\x04\x29\xc7\x48\xec\x66\xbe\xd2\x85\x90\x98\xf0\x6e\x27\x56\xd2\x2e\x15\x58\x69\x92\x70\x78\x4d\x03\xb2\xc2\x9e\x19\xfe\xb9\xf0\x16\x8b\x71\x3a\xa4\x77\x4b\xcf\x49\x7c\x57\x9d\x09\x27\xf0\xc9\xf7\xfd\xbe\xf4\x1b\xa6\x54\xcd\x81\xdf\x8b\x9d\x78\xa1\x77\xec\x38\x81\x98\xa3\x70\x2a\x30\x05\x97\x7c\xee\x8d\xa6\x3c\x8e\xa5\xb4\xde\x05\xaf\xc7\x6e\x15\x4f\x25\x28\x48\x23\x40\x2d\x78\x44\x49\x37\xda\xa0\xd1\xa0\x82\xcb\x0c\x9d\x17\x73\x7b\x33\xe8\x2c\x2a\xcd\x4b\x3a\xe3\xce\x85\xf2\x5f\x0e\x9d\x11\x47\x3b\x68\xcb\x01\x39\xcf\x0d\xe0\x7b\x14\x6c\x03\x33\x2f\xa2\x5c\x7b\xbc\xf4\x66\x6a\xa1\x50\x06\x13\x88\x41\x1b\xc8\x43\xd0\x52\x5b\xc1\x52\x08\x98\x8c\x28\xa7\x36\x87\x59\x11\x66\x1d\x2f\x63\xce\x54\xe0\x7c\x99\xbf\xbd\x04\x43\x20\x84\x1e\xe8\xa1\x18\xf7\x61\xb1\xd0\xd7\x11\x05\x42\xf4\x92\xaa\x51\x75\xcd\x4e\xda\x99\x48\xef\xb3\xff\x01\x5c\x84\x3f\xea\xe2\x1f\x98\xee\xb6\x92\xad\xef\x83\xfa\x39\x1a\xb3\xef\x28\x39\x5c\xa1\xef\xea\xce\xe6\xc6\x06\x5b\x67\x98\x90\x50\xae\x94\x19\xb7\x05\xac\x70\xa3\x3e\xb1\xf3\x62\x6e\x08\x9e\xe1\x27\x21\x77\x6e\x54\x73\x7d\x28\xef\x24\xb2\xe6\xdf\x01\xa7\xa4\x75\xf6\x79\x88\x18\xdf\x62\x10\xb5\xd1\xbf\x98\x72\x18\xa5\xaa\x0b\x2a\xc6\x68\xd9\xf9\x5e\x34\x5e\xb9\x52\x4d\xfa\xe1\x36\x4e\x1d\x83\x16\x54\x49\x64\x51\xc7\xe2\x08\x0e\x30\xa9\xfd\x2d\xa4\x8c\xe7\xc3\xb8\x8b\x0c\x1d\x19\x87\x70\x22\x9c\xb9\x9f\xd0\x2e\xe8\xad\x93\x7e\x5a\x56\xb8\x44\x54\x5c\x6c\x53\xad\x75\xd6\x1d\xcf\x61\x2f\x45\xf1\x7a\xc0\x93\xa4\x6a\xb9\xab\x3a\x09\x29\x50\x74\x83\x7f\xe2\xde\xff\x53\xdc\xb1\x31\x8f\x5d\x1e\xa6\xce\x20\x9b\x98\x9f\x33\x12\x6c\xe9\xac\x15\xc6\xf7\x21\x78\xe3\xdb\x00\xb2\xc3\x57\x6b\x28\xd3\x59\xb7\xca\x5a\x87\x87\xea\x45\x8d\x52\xd1\xcb\xb7\x5e\xaa\x35\xcc\xd6\x22\x1d\xbc\xae\x46\x95\x5f\x46\xb1\xec\xd9\x07\xa1\x96\x87\x02\x39\x61\x06\x50\x9f\x94\xe8\xd9\xa1\x6a\x35\xbe\x35\x5a\xfb\x52\x1d\x65\xa8\x1c\x69\x87\xad\x27\x00\xf4\xe7\x15\xcb\x4c\x7e\xab\x55\x73\x29\x24\x19\x4d\x87\x12\x03\xd0\xa3\x7f\x8d\x75\x42\x7c\x5f\x8d\xfa\xe4\xeb\x0c\x40\xd0\x7f\xb7\xca\xfc\xd4\x6c\xab\xcc\x06\xec\x93\xf3\x15\xa2\x3e\x87\x1a\x71\x4b\x5d\x34\x4a\x53\x65\x27\x61\x5d\x94\xc3\x10\x38\x0a\x63\xdd\x4a\x15\x15\xd7\xb6\x32\x9b\x60\x8a\x36\x54\x8f\xd4\x92\x80\xe7\x1d\xad\xba\x16\x08\xa6\x1c\xc5\xe0\x66\x5b\x31\x75\xbc\x49\x76\xf5\x38\x0b\x9c\x34\xc5\x9b\xe9\x18\xaa\x5f\x19\x9c\x5a\x9a\x84\xfb\x29\x0b\xb8\x83\x3a\x5a\x81\xd1\x27\x89\x24\xad\xb4\x06\x04\x11\x83\xff\x82\x64\x38\x7d\x60\x77\xd6\x50\x26\x42\xc1\x02\x56\x4f\x5e\x29\x69\x3b\x44\xa1\xd7\x27\x3d\xb0\x63\x80\x82\x1e\x4f\x67\x9c\x87\xcc\xf3\xfb\x70\xe4\xf1\x6c\xc9\xdb\xc9\xde\x45\xa0\x75\x70\x52\x36\x9a\x04\xa9\x3f\x0e\x7c\xd7\xd1\x90\xc4\xda\x24\xd2\x6f\xdc\x4a\x72\x6a\xef\xd1\xa7\x42\xb7\x6a\x38\x09\xdd\x2e\xfd\xb5\xb9\x41\x7f\x94\x36\x37\xfe\x59\xd2\x7f\x57\xd9\xe6\x86\xf1\xf3\x9f\x99\xdf\x6c\x8d\xd9\xf5\xd9\x3a\xdb\x9a\x0e\xd9\x1a\x7b\xa8\x4b\xd7\x37\x37\xc6\x73\xb6\x26\x3e\x54\xd9\xd6\x78\xce\xd6\xd9\x63\xf5\x55\x0f\xe1\x0f\x76\xff\xfe\xbb\xe6\xfd\xfb\xdb\xac\x83\xfe\xee\x1e\x4f\x7c\x8c\x40\x80\x91\xd8\x8c\x04\xc8\x26\x9b\xc1\xe0\x01\x08\x1f\xb2\xc4\x4a\x39\x0b\x23\x3f\x32\x19\xc6\xa9\x2e\xe4\x53\x8f\x1f\x17\x85\xe3\x9a\x84\xfd\x28\x4e\x27\xa1\x93\x72\xb1\x87\x62\x10\xb0\xfd\xc0\xe4\x82\xf6\x3e\xc1\x94\x8e\x79\x17\xae\x9a\xea\x42\x5e\x09\xa0\xa5\xe0\x08\x1e\xd1\x63\x9b\x8c\xbd\x76\xe2\x27\xc9\x84\x9f\x95\x87\x69\x3a\x4e\xb6\xeb\xf5\x81\x9f\x0e\x27\xbd\x9a\x1b\x8d\xea\x2f\xf9\xe5\xa7\xd8\x49\x52\xa7\x3e\x96\x1c\x53\x1d\x6a\x27\xf5\x87\x4f\x1e\x56\xec\x8d\xbd\x05\x09\xc5\xb5\x5b\x4d\x43\x1f\xfc\x2a\x0d\x7d\xf0\xf7\xa3\xa1\xc6\x2b\xad\x55\x3f\xab\x1f\xd2\x7a\x21\xa6\xb0\xc7\xcf\xea\x86\x98\x5a\x79\xbd\xf6\x1b\x4b\xe8\x78\x8e\xbd\x23\x69\xcf\x24\x61\x20\xa6\xf5\xb8\xa0\xc9\x3a\xda\x1e\x8b\x26\xa9\x4a\x48\x4a\xb6\xc5\x0b\xfb\x88\x34\x58\xe2\xf2\xd0\x89\xfd\x88\xf1\xb9\x9f\xa4\x09\x9b\x0d\x79\x9c\x75\x81\xf1\xd3\x84\x07\x60\xad\x20\x96\x5b\xdc\x11\x9a\x9d\x61\xe9\x6f\xe1\xba\xcf\x14\xb7\xce\x59\x08\x44\x37\x74\x12\x76\x7a\x97\x27\xae\x33\x26\xaa\x67\x18\x3a\xdf\x65\xff\xef\xff\xfd\xff\x88\x9d\x04\xfb\x06\x55\xed\xf4\x6e\x86\x7b\xa4\x3b\x02\x04\x69\x86\x71\x81\xf0\xf0\xb9\x10\x55\xc1\x38\x29\xb4\x24\xc9\x10\xb8\x6c\x64\x34\xb7\xad\x59\xaf\x33\x8f\xa7\x42\x58\xa4\x78\x1c\xe6\x5c\x31\xd5\x2a\x90\xe5\xd3\xbb\x69\xec\x8c\x61\x30\x2c\x37\x61\x41\xa1\x14\x38\x5f\xf0\xd2\xb2\x47\x7f\x10\xca\xec\xa3\x72\xd1\x01\xaa\x9c\x1b\x22\x19\x9b\xf7\xbe\x6b\x8d\xef\xf3\x90\x87\xac\x8b\xb5\x3f\xfb\xe9\x50\xe5\xbd\xed\xea\x00\x96\x46\xfc\x4a\x63\xa3\x12\x95\xef\x1d\x82\x3d\x08\x60\xf2\x10\x60\xd0\x3f\x3d\x7c\x33\x50\xa5\x40\x62\xd2\x28\x98\xc2\x01\x48\x28\x82\xee\x4d\x79\x85\x80\xd9\x6b\x60\xc5\x85\xa1\x45\xc3\xe4\x2b\x46\x58\x70\x6f\xc0\x73\x8c\xdb\x4f\xe3\xa9\x8c\xa2\x63\x35\xc2\x7a\xf8\xab\x08\xeb\xe1\xdf\x0f\x61\x65\x16\x41\x37\x54\xa8\x89\x00\x90\x79\xcb\xc9\x38\xf6\xa3\xd8\x4f\x17\x3b\x27\x14\xf8\x42\x9a\x5a\xa0\x9b\x89\xf2\x32\x39\x53\x00\xde\x1b\x07\x23\x8d\x17\x26\xd6\x51\xe7\x44\x8b\x01\x98\xe4\x9f\x7a\x11\xe7\xa2\xb7\x90\xb2\x6a\x55\x81\x4c\x87\x3c\x04\xbe\x07\xa5\x5f\x05\x86\x64\x53\x15\x55\x46\x07\x70\x01\x32\x9a\x73\xad\xed\x66\xd0\xa7\x9c\xdc\x36\x93\xb3\x33\x22\xb3\x67\xdc\x68\x96\x2f\x95\x3c\x35\xe4\xdf\xbb\xb3\xa5\x2a\x34\x46\xd1\x04\x99\x70\x32\xf7\xb2\x4f\x91\xc3\x46\x7e\xe8\x8f\x26\x23\x41\xfd\x53\xd4\x11\x11\xd7\x96\xc1\x74\x12\xa0\xb4\x96\x21\x0a\x4e\x3c\xbc\x73\xc1\x13\xa5\x92\x92\x17\xd3\x09\x66\xce\x22\x01\x04\xea\xb0\xc0\x4f\xd3\x80\x33\x23\xe3\x31\x80\x33\x7b\x13\x97\x2d\x91\x92\x3d\x19\x85\xa8\x20\x55\x6a\xc1\x10\xc0\x36\xdb\x5a\xbe\x1c\x48\xf4\x7e\xbc\x3a\xda\x7f\xab\x72\x0e\xe4\x76\x62\xa7\x64\x26\x9e\x28\x29\x18\x86\x9f\x03\x2c\x16\x29\x61\x14\x2b\xc4\x5a\xa8\x07\xe8\x9a\xcd\xbb\x55\x21\x78\x84\x5e\x34\xeb\xea\x33\xd3\x95\xa2\x15\x48\x07\x4e\xb8\x80\x6c\x8f\x52\x45\x91\x99\x57\x6e\x7c\xdb\xcc\x1e\xe0\x4d\xe9\xab\xa5\x1d\xcc\x90\x06\xb1\xb0\x92\xc0\xa4\xce\x82\x85\xdc\x89\x51\xf1\x08\xda\x1f\x02\x29\x30\x7c\x34\x01\x99\x61\x2a\x2e\x88\x18\xf9\xc0\x19\x5b\x7b\x95\xce\xa2\x1a\x6b\x27\x63\xee\xfa\x32\x2c\x70\x7f\x12\xa8\xf4\x3b\xa4\x71\xf6\x25\x2a\x94\x28\x04\x4c\xd2\x04\xe3\x49\xfa\x2a\x1e\xd2\x48\x85\xf4\x97\xb2\x71\xe4\x53\x8c\xac\xc2\x48\xb8\x35\x53\x19\x13\x8b\xb3\x12\x06\x0b\xe6\xf4\xc4\x60\xb5\x9d\x17\x68\x00\x14\xa3\x9a\xa4\x8a\xc7\x95\x2c\x35\x06\x31\x72\xe2\x81\x1f\x12\x40\x73\x66\xf2\xf0\xd2\x72\x2d\x1d\xc4\x2d\xf0\xbe\xa9\x2f\x5f\x8d\xf4\x1f\xfd\x2a\xd2\x7f\xf4\xf7\x43\xfa\xe6\x0a\x2c\x55\xf8\x08\x44\x62\x8c\x40\x1d\x68\x99\x3c\xb3\x0b\x87\x4a\x22\xd2\x8c\x1a\x84\x4e\x3e\x01\x83\x53\xe5\x83\x02\xc1\xe0\x28\xcd\x6d\xce\xbb\x16\x66\x2e\x48\xfe\xcc\xd9\x4a\xc4\x68\x22\x24\x6f\x30\xbf\x95\xd8\xde\x1e\x5f\x18\x79\xdc\x70\x7e\x1a\x46\x33\x36\x72\x42\xc9\xd8\x90\x31\x4e\xd4\x17\x98\xee\x5c\x25\x6f\x8c\x65\xd0\xc8\x9c\x0e\x4b\xa0\xd1\x30\x62\xbc\xdf\x27\x43\xba\x30\xca\xf6\x88\x71\xa1\x41\xa7\xf0\x13\xa7\x14\x60\xad\x3e\x9e\x5b\xbf\x7a\x3c\xb7\xfe\x7e\xc7\x13\x63\x8c\xe6\xaa\x17\xd1\x11\x2e\xa9\xc7\xc9\x7c\x1d\x9a\x9d\x95\x20\xa4\x53\xc0\xdd\x14\x3c\x3d\x70\xdf\x61\x65\x9c\x84\xf0\xa0\x1a\x9e\x42\xed\xba\xf5\x4d\xf1\xba\x72\xc6\xc5\xf3\x59\x4a\x0c\x3d\x19\xa0\x5d\xf0\x94\x71\x62\xc4\x9f\xa4\x1a\x10\x07\x5a\x29\x77\x8a\x11\x19\x7d\xa6\x60\x86\x09\xe9\xc3\x6d\x26\xcd\xd0\xc0\x52\x90\x44\xf0\x09\xb2\xc3\x2a\xda\xf0\xee\xdf\x7f\x77\x70\xd4\xde\xbe\x7f\x9f\xde\xb2\x64\x7b\xb8\x44\xa0\x57\x8d\x27\x63\x44\xdb\xee\x24\x46\xed\x10\x1a\x4d\xb8\x0b\x37\xe0\x4a\x3b\xa5\x46\x8f\xea\x7f\xcc\x8c\xe3\xa7\x74\xab\x12\x15\x66\xd5\x5e\x22\xf5\xe8\x7f\xfb\x6b\x20\x80\xac\xbe\x05\x8f\x7f\xf5\x16\x3c\xfe\xfb\xdd\x02\x31\xf3\x95\x4c\x15\x71\xe5\xf2\x59\x6c\x07\x1d\xe0\x2c\xb5\x82\x7a\x32\x93\x0b\xe3\x62\x20\xe4\xe2\xc3\x5b\xcb\xbc\xad\x60\x9c\x77\x64\xa0\x40\x0b\x55\x65\x5d\x15\xa6\x04\x7e\x64\x82\x3a\x11\x77\x65\xda\xbe\x5b\x26\xd3\xbe\xa7\x00\x1a\x01\xd3\xca\x50\x11\x9f\x16\x9d\x20\x13\xc1\xcd\x62\xcc\x68\x36\x56\x18\xaa\x5b\x72\xe1\x47\x19\x69\x15\x63\x0c\xc1\x39\x1e\xfa\x74\x88\x15\xf7\x7b\x43\xc1\xe1\xf7\xf1\xc1\x92\x4d\xb5\x77\x51\xa7\xc5\x54\x69\xb3\x8c\x03\x6e\x88\xd1\x36\x1d\x96\xe4\xb6\xb6\x74\xf2\x21\x9f\x02\x1e\x61\x94\x21\x41\x8a\xf8\x04\x87\x52\x9d\x14\xc9\x1e\x65\x3e\x77\xf9\x18\x30\x40\xd7\xe4\x28\xba\xc6\x5d\xc8\x6d\x5f\x01\x5f\xad\x26\xbc\x7c\xe9\xd4\x4d\xb4\x5d\xd2\x77\xc0\xe2\x70\xe9\xd4\xc8\x79\x4c\x23\x66\xfd\xd2\x28\x79\x8f\xae\x15\x4f\x11\x1f\x10\x05\xfa\x36\x25\xcd\x25\x71\x0f\x02\x67\x9c\x64\x14\x21\x6a\x95\x6d\xbd\x9e\x74\x37\xd4\x03\x21\xed\x0e\x19\x34\x24\x66\x38\xa5\xac\x24\x62\xcf\x78\x1b\x8d\x2c\x6f\xbd\x52\xca\xb9\xfc\x3f\xb4\x64\x99\x64\xae\xd6\x7a\xe9\xe5\xfc\x4f\xae\x9c\x5a\x01\x73\x09\x6f\x2a\xc0\x99\xda\xd1\x40\x65\xc5\x80\x62\x34\x6d\x59\xf6\x9a\x28\x29\x5e\x53\x2b\x31\xa4\x54\x96\xe1\xaf\x49\xdf\xef\xe5\x95\x69\xb9\xbb\x69\xe8\xcf\x7e\x87\x3c\x04\xbf\x57\xd3\xd8\x27\xbf\x4a\x63\x9f\xdc\x88\xc6\xc2\xe6\xfc\x02\x91\xcd\xdc\x8f\x55\x54\x16\x26\x7f\xd3\xb3\x30\x94\x0a\x70\xb9\x3d\xc8\xe8\x15\x88\xa5\x90\x14\xd0\xc2\xa4\x52\xd0\xc0\x96\xc6\xc9\x57\xb2\x8c\x38\xcc\x0e\xeb\xce\xd7\xa3\x49\xba\x1e\xf5\xd7\x75\x1d\x23\x5b\x00\x11\x00\xd7\xd1\xc2\xb2\x3d\x3c\xa2\xb8\xad\xc3\x43\x96\x48\x36\xf8\xfa\x21\x2b\xb5\x80\x10\xdc\xa3\x7e\xee\x56\xfe\x76\x9e\xf4\x36\x87\x53\xcc\x69\xf5\xd9\x7c\xfa\xab\x67\xf3\xe9\xdf\x8f\xff\x13\x33\x5f\x72\x30\x5b\x68\x57\x98\x90\x21\x0e\xe4\xe7\x1c\x3a\xe9\xb2\x6c\x9a\x19\x64\x9c\x46\x90\x15\x49\x1e\x48\x69\x9b\xa5\x25\x73\x7b\xdb\xf5\xc3\x70\x81\xe8\x00\x09\x74\xa2\x89\x8b\xf6\xec\xbb\x07\xfb\xa0\x95\x85\xe7\x97\x71\xcc\xc7\x4e\x6c\x0e\x52\x76\x99\x44\x08\xaf\xab\x2d\x29\x33\x46\x25\xf8\x08\xeb\xa7\xa4\xd0\x24\x37\x2b\x4a\xba\x85\xca\x2d\x82\xe5\x93\x5d\xc1\x22\x9a\x28\xc1\x23\xe6\x80\x2f\x6d\xf8\x74\x2f\xdc\x49\x92\x46\x23\x70\x93\x85\xd5\x30\x28\x47\xb1\xea\x43\x08\xfa\xdd\xa7\x5b\x1b\x5d\xb0\x15\x40\x1b\x2e\x7a\xa3\x03\xea\xe0\x63\x14\xb7\x9e\xe3\x5e\x00\x4d\x70\xa3\xd1\xd8\x49\xfd\x9e\x1f\xf8\xa9\xd4\x2e\x40\xdf\x63\xe9\x28\x51\x98\xa4\xae\xc6\xda\xf3\x31\x77\x53\xeb\x50\x25\x78\x3c\x21\x09\x84\xb4\xdc\x63\x68\xde\x48\x4c\xbc\x4e\x7d\x37\x72\xce\xa3\xd8\x82\x9d\x31\x56\xfb\xa9\x37\x12\xd3\x82\xf5\x06\xd7\x70\xeb\x57\xaf\xe1\xd6\xdf\xee\x1a\x9a\x2b\x70\x03\xb6\x2b\x93\x51\x08\xc6\xaa\x2a\x77\xfa\xd8\xb9\xb8\x23\x60\x9b\x28\x86\x2e\x30\xf5\xc3\x5d\x9d\x38\xce\x91\xd9\xdf\x74\x26\x38\xad\xe0\x57\xa0\x0e\xa4\xbb\xad\x36\x9e\x51\x01\x5f\x75\xcc\x7d\xb4\xb4\xc9\xa6\xf2\x51\xf3\xcb\x0c\x36\xbb\x34\xd9\x49\x26\xf4\x7a\x7d\x32\xdf\x51\xaf\x20\xaa\xce\x67\x7c\xeb\x8d\x98\x13\xba\x43\xa2\x39\x5f\xd0\x1a\xa9\xac\x82\xdc\x47\x31\x8e\xae\x52\x63\x8d\x37\x0d\xf6\xa5\x20\xc1\x19\x22\x38\x29\xa2\xfa\x09\x65\x24\x88\x33\x4f\xb1\x90\x9c\x0c\xac\x31\x3c\x3f\xe6\x32\x69\xbb\xb4\x6c\x81\xb7\x58\x23\xc5\x82\x39\xe9\xf9\xb6\x1d\xe1\x7d\xe5\x54\xd1\x83\xf8\xda\x89\x7e\x95\x13\xcd\x9a\x36\xd1\x44\xbf\xfe\xb5\x13\x55\x99\x25\xcc\x79\x2e\xb6\xad\xb0\xf7\x79\x2a\xd2\x00\x2a\x81\x87\x90\x4e\xb9\x27\x53\x11\x15\x52\x8e\xcc\x73\x3f\x59\xaa\xee\x1e\xec\xb3\x91\x13\xfa\xe3\x49\x60\xa4\x96\x08\xfc\x91\x9f\x4a\x12\x64\xe0\x53\xc2\xe8\x0a\x8d\x4b\x04\x4e\x40\xcd\xd7\x08\x3f\x4c\xf9\x00\x42\xa4\x68\x8b\x5e\x1f\x9c\xfa\x98\xc3\xfa\xb1\x33\xe2\x82\xa7\x80\x98\x16\x3e\x9f\x49\x54\x27\x1f\x35\x24\xea\x25\x60\x1e\x0f\xc0\x71\x50\x99\xfb\xe6\x87\x0d\xef\x1c\xcb\x68\x1f\xe5\xc5\xd0\x56\x39\xc6\x9c\xaa\xca\x20\x3c\xf3\xdc\x53\x68\x13\x28\x08\x0a\x2a\xb6\xe9\x7a\xcb\x24\x92\xd2\x33\xb4\x2b\x39\x28\x3d\x6d\x41\x13\x3d\x7c\x86\x11\x73\xbe\x63\x0d\xf2\xf5\x04\x5c\xaa\x0b\x06\x86\xa6\x5b\x88\x80\xe1\x68\x45\x33\xc0\x2c\x8e\x3b\xf4\x39\xa9\xf1\xd1\xf2\xc9\x23\x4d\xf6\x4f\x13\x0a\x4d\x6a\x57\x93\x89\x67\xbf\xca\xad\x3d\xfb\xfb\x71\x6b\x86\xf7\x48\xae\xcd\x4b\x7a\x4f\xd0\x2d\xd0\xf0\x7b\x3b\xe7\x65\x52\x84\x90\x0c\x43\xc2\xc4\x17\xfc\xba\x4c\xec\xb9\x59\xdb\xdc\xa8\x6d\x90\xbc\x28\x03\x85\xad\x4a\xa3\xfb\xff\x53\xc2\xa5\x72\xf2\x2a\x5c\x67\x07\x96\x07\xfb\x65\xed\xa3\xd0\xa5\x68\x29\x76\xd8\x36\x78\x5d\x25\xf4\xe0\x87\x7a\x4a\xf2\xe1\x59\x33\x6b\x04\x53\x07\x7e\xf3\x13\x36\x76\x12\xf5\x44\xa6\x9c\x19\x42\xc5\x84\x77\xa3\xb0\x15\x73\xf0\xc2\x20\xdb\xff\x63\x72\xca\x70\x9d\x20\x10\xec\x63\x62\x98\xee\x33\x3d\x56\x19\x03\x85\x36\xd8\x72\x7c\x54\xa1\xd0\x60\x82\x16\x9a\x84\xe2\x6c\x5b\x69\x7f\x96\x09\x80\xa7\x3d\xb2\x0c\xc9\x41\xf9\x88\x2f\x87\x90\x0b\xe2\x6e\x40\x92\xdf\x82\x85\xd2\x21\x46\x98\x65\x24\x0b\x52\x1d\x41\x2b\xf6\xe0\x91\xb8\xbd\x3a\xc0\xa5\xc0\x9a\x90\x00\x56\x7e\xef\x51\xf0\xc2\x4c\x76\xb4\x25\x50\x41\x34\x96\x20\x8b\x75\x7a\x28\xb1\xdb\x02\x70\x55\x52\x29\x99\x8d\x0e\x75\x37\x39\x4d\x40\xb6\x73\x4b\xc7\xab\x13\xe5\x51\x11\x7b\x97\x7f\x93\xea\x2d\xe8\x8f\x65\xf3\xb1\xb6\x9d\xa8\x74\x23\x5c\xc0\x2d\x54\xb5\xe4\x4a\x03\x8b\x72\xad\x34\x08\x6a\x07\x0e\x22\x07\xde\xe6\xd7\xce\xd4\x39\x04\xab\x42\x16\x46\x23\x1e\xba\x81\x03\x72\x45\x99\x0f\x6a\xac\x8b\xef\xf3\x4d\x4a\xe1\x74\xed\xd8\xcc\x94\x80\xbf\x30\x40\x5c\x8e\xbf\x6e\x98\x86\xca\x5c\x46\xf3\xb0\x55\xe7\x96\xc6\x7b\x39\x1c\x69\x29\x2c\x2e\xa0\xe1\x25\x0e\xd0\xf2\x4e\xb2\x2a\xc5\xa3\x3c\x76\x37\x02\x2e\x5d\x19\xb3\x79\x3b\xd1\xb8\xbe\xaa\xc3\xec\x29\xdb\xf6\xd5\x20\xf5\x98\x7e\x27\x54\x7c\x45\xcd\x63\xf2\x48\x3a\xcb\x83\x8d\x08\x3e\x2c\xa1\xd5\xb4\x3c\x04\x19\x9e\x76\x83\xbc\x95\xb4\x7f\xe6\x28\x9f\x5d\x45\x15\xd5\xc1\x2f\xdd\x76\x29\xdc\x25\x07\x27\xe9\xd5\x26\xdf\xe2\xc5\x31\x33\x38\xab\x28\x4c\xd2\x78\xe2\xa6\x51\x9c\x77\x10\x94\xef\x60\xe8\xc6\xe5\xf1\x90\x42\xbc\x23\x3e\x47\xb8\x5d\xa6\x1c\xe9\x2c\x79\xde\x04\x66\x78\x82\x41\x1c\x3d\x74\x70\x4c\xfc\xd1\x38\x58\x00\xdd\x30\x68\x91\x0a\x10\x94\x40\xe2\x44\x76\x9f\xe1\xf8\xc4\x21\x97\xcf\x51\xaa\x6b\xe9\x60\x47\x09\xda\x1e\xc6\x9e\x1a\x4d\x0d\x3c\x45\xc8\x12\x1f\x73\x9b\xa1\xfd\xfb\x7d\xc8\x7a\x8d\x03\x2d\xc7\xbc\x0f\x0e\xd0\x55\x60\xda\xee\x9b\x59\x12\xb7\x55\x51\x91\xa9\x64\x46\xe1\xca\xae\xa8\x2e\xfe\x7b\x55\xb1\x3a\xa4\xc4\x62\x74\x62\xf2\x79\xc7\x6e\x94\x2d\x2c\xe3\xa8\xf6\x3e\xff\x74\x29\x79\x53\xe4\x6c\x68\x2b\xf4\x23\xa3\x91\xa1\x49\xc9\xaf\x06\x07\xab\x3e\x5a\xf2\xa1\xdd\x29\xe4\x8a\x02\x97\x53\x4a\x18\x45\x62\x01\x48\x19\xda\xf4\x45\x31\x40\x7e\xca\xd0\xda\x39\x64\x25\xc8\x1a\x5c\x12\xeb\xcb\xed\x81\x2a\x4a\x65\x25\xf7\x30\x1e\x6a\x68\x7c\xe6\x57\xad\xe7\xb6\x07\x28\x99\x5d\xd8\xae\x84\x95\x63\x9e\xf8\x97\xbc\x4a\xf9\xaf\x2b\x94\xf5\x0f\x32\x7d\x05\x0b\x33\xe5\x69\xd1\x78\x10\x48\xdb\x60\xa7\x8d\xe1\x58\x1f\x15\xb7\x5c\xb0\x5c\x05\x2b\x25\x44\x10\x2b\x8d\x3d\xba\xba\x64\xf5\xd4\x86\x4c\xe8\x4a\xbe\xac\xeb\xf1\x24\x8d\xa3\x85\xf4\x65\x5d\x36\x76\x84\x78\x10\xee\x62\xf5\xdc\x6a\x66\xbe\x2f\x5b\xcf\x16\xf1\x66\xd2\x33\x58\x59\xd4\xd1\x30\xfd\x84\xb9\xc0\xd5\x79\xb6\x89\xb9\xf9\xde\x83\x86\x4f\x24\xe5\x85\xd1\x7a\x34\xce\x38\xf3\xb8\x2e\x4f\x92\x02\xee\x0d\x71\x41\xd7\x62\xf4\xba\x99\x09\x4b\xae\xf2\xca\x98\x9b\x2c\xdb\x66\x65\x0c\xfd\x51\xa0\x41\x5e\x3d\x2f\xb4\xff\xf0\x48\x60\x97\x4c\xaa\x34\xdc\xc7\x76\xf2\xe1\x20\x24\x9e\x19\x0e\x96\x7f\x09\x6c\x73\x1d\x16\x26\x17\x74\xa8\xca\x7a\x82\xcb\x42\x32\x60\xa4\x94\x23\x50\xd8\x6b\xf2\xbf\xb6\x9a\xc8\x94\xdb\xab\x89\x65\xd7\xac\xe6\xdb\x6c\xae\x5f\xc3\x5a\xce\xf3\xfb\x68\xb2\x2a\x19\x05\x12\xee\x95\xb3\x78\x31\x7b\xa6\x74\xd1\x7c\xa1\x1c\xde\x46\x46\x98\xa7\x8c\x9f\xb2\x4d\x7b\xec\x49\xa9\x51\x99\xb3\x32\x13\xf8\x66\x72\x70\xa9\xad\x96\xe7\xe8\xd4\x4c\x3c\x9c\xf5\x3d\xcf\xb9\x72\x9b\xed\x71\xe5\x6e\xd2\xde\xc8\xd7\xfa\x97\x86\x82\xf9\x0f\xb8\xc2\xff\xb6\xf8\x2c\xe0\x5a\x0b\xe1\x59\xac\x90\x2c\xcb\xd3\xe6\xfc\x54\xe0\x15\x15\x01\x4e\xf4\x66\x06\x56\x5f\x92\xd0\x49\x87\x33\xf2\xfb\xe4\xfd\x9b\x69\x2a\xee\xe7\x98\xbb\x30\xc5\x2a\x8b\x27\xb6\xf7\xd2\x29\x45\x51\xb1\x1b\x65\x92\x1a\x7f\x37\xa3\xb1\x10\x4e\xba\xca\x24\xe1\xb1\x93\xcc\xdb\x29\x2f\x24\x01\x47\xab\xfd\xd5\xe1\x1f\x35\x20\xd0\x2f\xee\x98\xf0\x5e\xc8\xbc\x21\xdb\x08\xcd\xaa\x6e\xc7\x4d\xb3\x5b\x61\x08\x34\xd1\x8c\xc2\xa3\x65\xb2\x05\xc0\x0a\xe8\x04\x43\x3a\x82\x6d\xea\xc4\xa9\xe0\xb1\x20\xbf\xfd\xd9\xb6\x5e\x0b\x2c\x00\xfd\x06\x56\xe5\xa1\xb7\x6d\x06\x6f\x5a\xd6\x62\xcd\x28\xb1\x62\x0c\xaf\xd3\xea\x5a\xa5\x3a\x1c\x3b\xfd\xa5\xc3\xb2\x2f\x09\x34\xcf\x6a\x35\x19\x13\x1e\xf2\xcc\x1b\x33\x3b\xb1\x37\xfa\x8c\xb2\xcd\x5f\xad\x4c\x16\x3f\xe0\x04\x02\x4d\xee\x8b\x52\x39\x1a\x9f\x7f\x35\xaf\xe2\x80\xa7\x87\xd2\xa7\xf5\x3d\x09\x39\x90\xe0\x3b\xdf\xbe\xb0\x5e\xe9\x3f\x97\xc8\xf0\xbf\x09\x87\x65\x24\x87\xc2\xac\x86\x01\x4f\xf3\x86\x61\x32\x21\xc9\xd2\xb4\x78\xec\xc7\x8f\xec\x11\x29\x17\x25\x29\xa8\x58\xe1\xcd\x23\xf3\x44\xf9\x49\xb1\x2e\xa8\x8a\xa1\x92\x81\x35\x25\x86\x95\x20\x0c\x22\x10\x5e\x21\x0b\xda\x04\xf3\x4c\x4b\xed\x65\xc8\xe7\xa9\x0d\xde\x31\xad\x2c\x14\x08\x8c\x03\xa3\x2d\x8b\x4c\x7d\xbd\xe1\x2a\x37\x49\x78\xc0\x13\x54\x21\x06\x51\x74\x81\xe9\x10\x7b\x71\x74\xc1\xed\x64\x8b\xf9\x34\x83\x10\x57\x29\xb7\x5e\x0a\xc3\x16\x2c\x75\x6e\x21\xf3\xad\x33\xe1\x49\xc1\x9c\x18\x1e\x51\x1c\x64\xb8\x64\x82\xb2\x7a\x9d\xc5\x1c\x7d\xa7\x2d\x03\x53\xf5\xda\x11\x49\x63\x02\xae\x02\x72\xa3\xdd\x3e\x49\xdb\x2a\x32\xb9\xc7\xf8\x9c\xd2\xe8\x9e\xaa\x20\xa6\x96\x89\x7f\xc6\xb0\x01\x5d\x4b\x35\x45\x53\x9a\x69\x71\x4f\x71\x92\x85\x57\xb7\x5c\x52\x35\x4b\x66\x08\x7d\x04\x4f\xaa\xac\x9d\xc2\x0c\x18\xa8\x89\x7b\x0e\xfb\x0a\x01\x88\xa4\x85\xc5\x90\x07\x63\xf0\xe6\xea\x93\x1f\xfd\xa9\x11\x52\x2d\x15\x02\xb7\xa0\x29\x55\x76\x62\x0d\xf2\x6c\x5b\x0f\x1a\xe8\x9d\x39\x84\xe7\xa7\x2a\xf6\x33\x16\x40\x0c\xac\x1d\xcc\xae\x98\xf9\x12\x60\x5e\xb1\x82\x4f\x99\x0e\x65\xa5\xd3\xff\xb5\xbc\x97\x3f\x97\xef\x72\xf5\x11\x4c\x23\x69\x7c\x62\xe4\x7b\x58\x04\xdc\x0a\xaa\xd3\x97\x81\x85\x24\x77\x0e\x86\x85\xa0\x68\x96\x4f\xa2\x4b\x56\x3d\x8d\xc6\x4b\x97\x5d\xfc\x73\x83\x85\x57\x05\x34\xa7\x3c\xaa\x63\xe6\x3d\xb6\x76\x29\xca\xe4\x79\x94\x9e\x8b\x3a\xb7\xa7\xa4\xcd\xc5\x49\x0e\x35\x24\x77\xc8\xdd\x0b\xcd\x7e\x8c\x63\x7f\xe4\xc4\x0b\x33\x39\x98\xe2\x2f\x02\xae\xf3\x4a\x10\xdb\xa0\xaa\xe9\x44\x3e\x02\x33\x69\x8e\x24\x57\x8f\xfd\xcb\x98\x93\x59\x6e\xe6\xd8\x53\x39\xa8\x0a\x1c\x97\x65\xad\x4c\x46\x20\x1c\x96\x0a\xfb\x9f\xeb\xb7\x5a\xdc\x6d\x2e\x6a\xa5\xe2\x49\xbe\x1b\xc9\x44\xcf\xb6\xa9\x87\x2b\x19\xf6\x9f\x4e\x29\x86\x29\x5f\xb6\x60\xc4\x23\x3a\x7e\x78\x88\x6c\x65\x71\x76\xb9\x25\x1c\x66\xe1\x82\x4b\x60\x37\x5f\xef\x3f\xfe\xfa\xf5\xf6\x43\x2b\xa4\x72\x76\xa8\x56\x12\xa0\xe2\xc1\xac\x9b\x55\x96\xa6\xe1\x7b\x21\xc5\x63\x8c\xa1\xb3\x2d\x7f\x0e\xed\x80\xc4\x3a\x3b\x43\xe1\xae\xaa\x71\x15\x6f\xaa\x64\x76\x23\x2b\x45\xaa\x31\xa0\x3f\x6c\x59\x05\x25\x06\xd9\x8d\x76\x1c\xb6\x25\x8f\x5c\xb2\x3d\xb1\xeb\x74\xd9\x60\xe3\xd5\x49\x2a\x59\x81\x0e\x0b\xb8\x6b\xb8\xb1\xc8\xd8\x9b\x60\xaf\xec\x78\xb3\xc5\x9c\xba\x85\x00\x8a\x98\xef\xff\xea\x80\xac\xbf\x9f\x7f\x35\x1d\x1b\xf2\xa2\x78\x71\x1c\xd4\x02\x31\x75\x95\xe4\xbe\x54\x2a\x5f\x92\xe7\xf5\x97\xf3\x3c\x5e\x2b\xee\xd2\x6d\xd3\x8a\x70\xa3\x41\x34\x3e\xbc\x99\x84\xfc\xf3\xf2\x31\x64\x1d\x46\x14\x82\xd2\xab\x91\x58\x95\x64\x58\x1c\xc5\x99\x8e\x05\x5b\x70\xda\x65\xa5\x6c\xc2\xd1\x3c\x94\x62\x29\x58\x72\xbc\xd6\x80\x24\xcc\x3f\x72\xc0\x92\x5b\x0c\x68\x49\xe3\x9b\x0b\xc6\xb7\xcf\x41\x26\x38\xfc\x49\xca\xe3\x43\xff\xb2\x50\x28\xd6\x1f\xcd\xb8\x9d\x2a\x49\x3c\x19\x7f\xe7\xd2\x98\xe5\x6b\x64\x64\x6a\xc1\xfb\x90\xbd\xb2\x62\xba\x8b\x64\xea\xa2\x7a\xff\x41\x99\xfa\xbf\x07\x23\xc1\x13\x6b\xa1\x1c\x2d\x84\x10\x78\x5b\xf6\xf8\x98\x87\x5e\xc2\x32\xf8\x2b\x67\x8f\x2f\xcf\xf6\x9d\xfc\x2e\x2e\xcf\xb4\x57\xc2\x80\xb5\x55\x56\xb2\x02\xcf\x56\xb2\xf9\xbf\xb2\x59\xf5\x05\x2f\x63\x59\x41\x68\xe6\x55\xe7\xfc\xd2\x9a\x45\xab\xaa\xaf\x93\xe2\x55\x31\xf4\x18\xc4\x51\x2b\x25\x19\x4f\x07\x39\xa1\x74\x31\xe6\x51\x06\x06\xe5\x02\x15\x30\x74\xb0\xe1\xcc\x80\x0a\x45\xbc\x6f\x13\x1e\x2f\xa4\x4b\x71\xd9\x6c\x61\x25\x67\x2d\x18\x73\x18\xa5\x32\x73\x07\x06\x06\x2d\xd2\x85\xd2\x16\x58\x70\x57\xa4\x4f\x2f\x4e\x28\xa5\x02\x3d\xe8\x11\x88\x3e\x1d\x06\x13\xd0\xde\x20\x33\x8e\xb6\x8a\xc8\xf8\x4b\x61\x5c\x41\x52\xef\xe4\x42\xb2\x02\xef\x69\x3f\x61\xee\xd0\x0f\x54\x98\x4f\x62\x26\x42\xf9\x92\x89\x13\x28\x5c\x3b\x99\x4c\xc6\x5e\xb6\x0c\x87\x9c\xcb\xaf\xc2\x58\xe9\x73\xe3\xe3\xbb\xce\xbb\xbd\x6d\x72\xaa\x97\x47\xa4\x8b\x43\xef\xf1\xc2\x11\x51\xa5\x3b\x2a\x0f\x85\x66\x03\x97\xad\xa3\x29\x09\xfd\x04\x79\xbe\x25\x03\x90\x21\xd8\x76\x88\x99\xd5\x89\x99\x11\x48\xc0\xc3\x1c\x29\x25\x02\x9a\x49\xbc\xa1\x49\x7c\xcb\x19\xfb\xa9\x13\xf8\x97\x90\xd5\xf5\xff\x63\xef\x5f\xb4\xdb\xb8\x91\xbd\x51\xfc\x55\x10\x65\x46\x24\x3d\xbc\x48\xb2\x9d\x0b\x3d\x8a\xc7\x71\xec\x1d\xfd\xff\x76\xec\x63\x39\x93\xef\xfb\x24\xad\xb0\xc5\x86\x28\x8c\x9a\xdd\xdc\xdd\x4d\x5d\x62\x6b\xad\xf3\x0e\xe7\x0d\xcf\x93\x9c\x85\xaa\x02\x50\x40\x83\x37\x59\x9e\x9d\x99\x49\xf6\xda\x63\xb1\x71\x07\x0a\x85\x42\xa1\xea\x57\x7e\xd9\xf7\xc5\x0c\x0a\xbe\x92\x88\xe7\x1c\x88\x06\x41\xf1\x7e\x5d\xbc\x2a\xae\x64\xf9\x3c\xa9\x64\x9b\x6b\x4b\x92\xac\xde\x48\x32\x58\x20\x48\x98\x60\xd8\xd6\x7a\x99\x37\xc1\x88\xe8\x10\xc3\xbc\x79\x27\x97\x4f\x65\x47\x99\xcc\xdd\x6b\x05\x71\x16\x79\x5d\x03\x6b\xf4\xf8\xa2\x75\x91\x9e\x26\x17\x2a\x9f\x34\xa1\x73\x10\x8b\xc2\xea\x16\xcc\x4a\x83\xb2\x80\x10\x9e\x09\x41\x42\xe5\x1c\x41\xc2\x34\x6d\xf4\x57\xc5\x6c\x00\x2a\x02\xe3\xc5\xa7\x37\x4e\x43\x1c\x11\xbd\xe6\x40\xff\x2a\xb8\x40\xb4\x54\xc8\x40\x91\xa9\x67\x85\x1e\xff\xf3\x7a\xed\x75\x9c\xec\x33\x18\x08\x5c\x92\x01\x86\xfd\x8a\x77\xdd\xbc\x32\x34\x3a\xfe\x9d\xf0\x65\x9f\x35\xba\xfe\x97\x7d\xb7\x69\x57\xd6\xdf\x0b\xea\x77\x1d\x8f\xdf\x7f\xfc\x48\x8c\x91\x3c\x4c\xc1\x44\x1a\x20\x31\x96\x79\xed\x7c\x3c\x5d\xec\x1c\xd2\x9f\x60\xea\xfe\xd2\x37\x17\x4d\x8a\x62\x20\xf6\x62\x6b\x3b\x10\x7b\x3c\x7e\x10\xb6\x89\xaa\xce\x54\x62\xfc\x52\x67\x76\x44\xaf\xf2\x16\x6b\xd7\xc6\xab\x03\xfa\x4a\x2e\x2c\xcd\xa2\x29\x1c\x78\x0e\x8c\xc1\x47\xdf\xe2\x8f\x5e\x49\x3a\x8d\x10\x6a\x12\xcc\xf1\xf3\xb3\x42\x24\x97\x89\xca\x92\xd3\x8c\x05\xea\x1a\x57\xa4\x04\x8c\x8a\x67\x0b\xd5\xed\xbe\x02\xf5\x35\xf4\xc4\x28\x40\x92\xb2\x92\x2f\xb3\x22\xa9\xdb\xe3\xaa\x3a\x22\x8b\xbd\x3f\x7d\x08\xb8\xcc\xed\xe8\xa4\x59\xd1\xf7\x20\xbc\x2c\xa8\xe8\x14\x12\x9b\x15\x41\xe4\x46\x53\x1b\xc6\xb1\x34\xb3\x4a\x74\x46\x0b\xd8\x5b\xb6\x9b\x9a\x43\xe9\x35\x3a\xe5\x16\xd1\xc0\x9b\x79\xa7\x31\x87\x55\x44\x77\x5e\xb0\xa3\x28\xf2\x5a\x4d\xe6\xc5\xbc\xca\x6e\x0c\xd2\x92\xa3\x30\xd6\x57\xa7\xd9\xb2\x2a\x17\xea\x22\xd0\x56\x93\xae\xba\xae\x74\xa7\x2b\x76\x3c\xb5\x40\x20\xf6\xf0\x9f\x4f\x1a\x7b\x07\x65\x4a\xab\x20\x34\x4f\x8c\xd0\x8d\x52\x4b\x37\x6d\xd6\x10\xe5\xa1\xc3\xe0\x64\x28\x5a\xad\xae\x9e\x12\xe6\x18\x51\x88\x79\x0e\xbe\xae\xf9\x0d\x5a\x11\xcd\x93\xcc\x9e\x1e\x2c\x1a\xae\xf1\xd2\x30\x72\xc6\xed\x1a\x5a\x8b\xff\x92\x14\xbd\x8f\x22\x82\x47\x3d\xd9\x69\x23\x4f\xd4\xa5\xcc\x29\x90\x1d\xdc\x27\x9c\xe8\x1f\x18\xa4\xf5\x7f\xd6\xd7\x94\x45\x41\x21\x23\x4d\x04\xb2\xbf\xc9\x69\x6c\x97\x17\x94\x58\x22\xf4\xaf\x08\x72\x8e\x6b\xa3\x59\x72\x24\x6a\x7d\x28\x98\x53\x40\xfc\x30\x34\x47\x34\x6a\x7e\xa3\xac\xc4\xa8\xd5\xc4\x63\x6d\xcc\x50\x2a\x7a\x6f\x37\x55\x1a\xab\xb3\x60\x88\x5c\x58\xc3\x3c\x7f\xbc\xc0\x46\x49\x07\x3c\x75\xfe\x69\x56\x24\x1b\x0b\xc4\x3f\x16\xa5\xfa\x6d\xa9\x34\xbc\x2c\x64\x27\x49\xaa\x84\x73\xfd\x0a\x61\xc8\x99\x2e\x6c\x79\xf4\xcf\x7d\x5e\x15\x71\x53\xd3\xa3\x50\x72\xb5\x6a\x24\x77\xa8\x7b\xb5\x59\x15\x76\x3b\xe8\xcd\xd3\x48\xcd\x0d\xcd\xd7\x89\x18\x06\x2c\x9a\xaf\x4f\x8c\xda\xd9\x25\xa1\xc9\xb2\x17\x88\x3b\xbe\x84\xb3\x34\x24\xfe\x27\xe9\x7d\xd6\x8b\x77\xff\x87\x3e\x07\x9a\x38\x57\xa9\xe4\xdb\x73\x73\x85\x0c\x04\xdb\xe9\x8a\x56\x18\xb9\x67\xa5\x4a\xc6\xc4\x28\x3f\x7b\x87\x61\xca\xe3\x0e\x02\x9c\x1f\xe8\xe3\x5e\xec\x63\x78\xd6\xe3\xc8\x93\x2f\x37\x2b\x14\xcc\x9a\x5c\xec\x7f\xe7\x5c\x40\xc1\xc1\x09\x0e\x99\xb0\xc7\xba\x50\xa7\xdf\x78\xf2\x74\x2f\x5c\xd4\xd7\x3e\x5e\x49\xcc\x53\x22\x3c\xc9\x7e\xfc\xe8\x67\x81\x8b\x16\xbd\x7d\xf5\x4b\x0a\x1f\xee\x67\xd1\xc5\x4c\x0e\xaa\x31\xcc\x82\x05\x4d\x3b\xba\x4e\xe8\x23\xd3\xbc\x3c\x03\x7b\x8e\x79\x9e\xcb\xb1\xac\xaa\xa4\xbc\xe1\x4f\xd2\xea\x4c\x5c\xaa\x8a\xd0\x00\xc4\x79\x02\x1a\x19\xf4\xdd\x4f\x9d\xee\xc4\xb9\x28\xe9\x59\xa9\x4b\x16\x4c\x7f\x81\xe6\x82\xcd\x3d\x96\xe3\x81\x20\x51\xc4\x33\x88\x21\xd5\x51\x2b\x02\x29\xd2\x3a\x71\xe6\x01\x0d\x65\xd2\xbd\x0f\x09\x8c\xab\x37\x1f\x13\x0f\x28\xb9\xf6\xa0\x5c\xa1\x25\x9a\xf4\x55\x3c\x68\x99\xdc\x77\x8f\x82\x82\x35\x57\x47\x67\xef\x77\xb0\xbd\x7a\xe0\x6e\xc9\x6c\x12\xc8\x13\xfc\x54\x0a\x10\xb7\x65\x2a\x92\x5a\x24\x00\xc6\xb7\x88\x23\x35\xed\x6e\x4c\x65\x54\x85\x8d\x5e\xa4\x73\xd7\x49\x26\x2d\x28\x71\x6f\x26\x4b\x00\xb5\x34\x45\x55\x3e\xe9\x8b\x83\xba\x55\x11\x7a\xab\xbe\xb6\xec\xee\xec\xfc\x59\x50\x46\xb4\xe8\x4e\x70\x9e\x26\x45\x01\x5e\x6d\xca\xa2\xc8\x11\xc4\x7b\x29\x93\x0a\x91\x36\x1e\x88\x1f\x54\x35\x9e\x57\xe0\xc4\x7a\x2e\x4b\x39\x14\x6b\x46\x27\x98\xcd\xb3\x6c\xf0\xf5\xee\x63\xdb\xf9\x57\xc5\x95\xf8\xe1\xed\x81\xa8\xc6\xa5\x94\x79\x25\xf0\x82\x9b\x30\x57\x8c\x53\x29\x4e\xb3\x79\x59\xde\x20\x46\x67\x4d\x57\xe9\xb3\x79\x96\x19\x95\x4d\xfb\x30\x39\x4b\x4a\x05\x15\x26\x95\xb8\x92\x59\x26\x8a\x5c\xfc\xa8\x26\xe7\xbc\xf2\x8e\x8b\xf8\xf4\x52\x95\xf2\xac\xb8\xd6\xf7\xbc\x33\x7d\x66\xe4\x05\x4e\x2b\xd4\x5c\x94\x7c\xe6\xd0\x05\xbb\x90\xa8\x0c\x46\xeb\x12\xdd\x1f\x95\xeb\xbd\x44\x74\x77\x1e\x34\xe5\x5a\x7a\x93\x67\x37\xe2\x5c\x8b\x0d\x45\x5e\x7b\x40\x58\x60\x17\x26\xcf\x6a\x52\xcb\x50\x44\x53\x03\x81\x72\x2a\x59\x00\xdc\xfe\xea\xcb\xc5\x3b\xa4\x0a\x32\xd9\xa4\xd7\x05\x46\x94\x9f\xf2\xea\xf9\x01\x27\xa7\x4b\x6f\x99\xb7\x74\x97\x65\x39\xf2\xe2\x1d\x1d\x2c\x97\xfa\xa0\xb8\x84\x24\xef\x80\xc2\x56\xe0\x2e\x2f\xf6\xb1\x3e\xa7\x7d\x42\x6b\x80\xa6\xbe\xc0\xcf\xce\x2d\x07\x3a\x41\x0b\x6b\xea\x65\x7d\xc1\x2c\xf2\x9a\xaa\xaa\xbf\x33\x03\xea\x40\x87\x6c\xc3\x8c\xf7\x5a\xb1\x87\xd8\x64\x8a\xe3\x7b\x9b\x94\x9a\xb1\xee\x87\xc3\xfe\xb3\xd8\x03\x5e\xca\xc7\xf6\x67\x50\x1d\xb9\xd3\xb9\x3e\x7f\x93\xa6\x76\xd8\xf1\xf2\xbb\x62\x7b\x3b\xac\x04\x13\x3c\x99\xda\x11\xdd\xfb\xe2\x20\xaf\xe5\x04\xe4\xc9\x2f\x18\x4d\x20\x5f\x7e\x6a\x56\x0f\x7f\x0e\xf9\x5c\x7e\xfc\xe8\xcd\xc8\xc7\x8f\xe1\x28\x4d\x15\x25\xaf\x20\x7c\xe5\xbe\xa4\xea\x16\xf5\xc3\x75\x41\x0c\xb1\x26\x5f\xc0\xa5\x53\x47\x2f\xea\x30\x36\x2c\xfb\xec\xe0\xcd\xdf\xf6\xb6\xf8\x82\x77\x7e\x7b\x5b\x34\xc6\x8e\x9d\x27\xc2\xc2\x70\x9e\x62\xd7\x25\x0d\x79\x12\x7e\x36\x0a\x92\xba\x98\x0d\x9b\x03\x33\x34\x5a\x17\xb3\x8e\xb5\x8e\xd3\x62\xc9\x92\xbc\x98\xc1\x64\x07\x8a\x8d\x8f\x92\xf2\x43\x8e\x8e\x35\x74\xf1\xc4\xfe\x8a\x14\x7d\x8d\xf7\x61\x9b\xc0\xa3\x41\xca\xfa\x99\x3d\x8e\x23\x05\x5c\xa2\x7f\xb7\x7f\x17\x84\x4b\x8e\x5c\xed\xc3\x2c\xcd\x38\x9b\xcf\xe6\x75\xb1\x50\x39\x10\xcb\xf3\xfb\x53\x0e\x70\x47\xee\x9e\x75\x21\x6a\x98\x28\xf6\x0c\x6b\xb7\xb1\x89\xac\x6f\x3e\x03\x16\x59\xdc\x82\x13\x99\x58\x2b\x0e\x4e\xee\x7e\x5a\xba\xaf\x8b\x54\x65\xa0\x0f\x68\x62\x57\x3d\x85\x5b\xf8\x0c\x7e\x81\x1a\x0c\x40\xb5\x68\x3d\x95\x67\xa5\xac\xe0\x39\x34\x27\xef\x2f\x9c\xf4\xd1\x72\xff\xf3\x2e\x55\xa5\x08\xab\xf1\x2a\xb9\x81\xf8\xe2\x49\xee\x20\x21\x1f\x96\xa9\x98\x25\x08\xbb\x61\x21\x1f\xd2\xd4\x80\x8c\x39\x2c\x1d\x8c\xe1\x36\x18\x88\xef\xa5\x48\xae\x92\x52\x76\x59\x09\x17\xc3\xc2\xc6\x8a\x64\xab\x62\x3c\xe6\x29\x68\x8c\x41\x11\xa3\xfa\x32\x2d\x47\xd8\x40\xa8\xa6\x4e\xc0\x87\xb1\x7b\x36\xaa\xa6\xef\x72\xfa\x63\x6f\x1e\xcb\x67\xce\x11\xd3\x9a\xb3\x07\x5e\x6e\x26\x27\x28\x7d\x2b\xf1\xe3\xfb\xd7\xaf\x04\x23\x4b\x52\xc7\x32\x94\x1c\x8f\x7b\x2c\xeb\xbe\xab\xa5\xb3\xd4\x78\xc0\x4c\xa2\x75\xbf\x27\x36\x77\x9e\x54\xa2\x2a\xa6\x32\x40\x1a\xb1\x17\x18\xaf\x9e\xed\x6d\x81\xb4\xda\xbf\x90\x37\x55\x3b\x04\x3b\xe8\x50\xc8\x7c\x7b\xcd\x09\x16\x80\xd7\xd5\x6d\x40\x25\x2c\xb7\xfd\x71\x9c\xeb\x90\x14\xdc\xd7\x3d\x26\x0a\xda\xdd\x4c\xbe\x85\xf2\x52\x96\x37\x5a\xea\x9e\xe0\xcd\x8e\x45\x9e\xb3\xe1\x42\xe7\x95\x8b\x95\xab\x69\x16\x1f\x62\x42\xe4\x27\xf3\x55\xcb\x95\x95\x11\x2c\x9d\x81\x3e\x42\x09\x92\xf9\xc0\x03\x31\x2e\xca\x12\x6f\x0e\xfc\x71\xaa\xbf\x5a\xbf\x3e\xf5\xf9\x2e\xb9\x0a\x7a\x28\x1a\x4e\xd4\x44\xf6\xdb\x04\xf0\xb0\x21\xad\x9a\xf0\x33\x8b\xab\xa5\xae\x62\x9d\x40\x99\x5e\x75\x49\x15\xab\xa1\xc9\xf6\x9c\xbb\x29\x63\x72\x8e\x73\x45\x38\x16\x02\xfe\xb4\x71\xb9\xb9\x9d\x3c\xdb\x40\x54\x17\xfc\x6d\xa6\xe8\x0d\xfb\x56\xd5\xe0\x5d\xe9\xf8\x9e\x79\xb1\x8c\x20\x16\xbb\x87\xc2\x40\xa8\x76\x0e\x68\x91\x93\xb7\x0d\x4d\x44\x63\xa4\x5b\xcb\x73\x6e\xa2\x1f\x79\x3d\x4d\xe6\x7a\x4d\x5c\x10\x79\x30\xcc\xe7\x51\x25\x73\x1b\x57\x8c\xeb\xd1\xa8\x16\xc7\x26\x2d\xbf\x01\x98\xab\x42\xc8\x54\xd5\x5e\xa8\x58\x7d\xc1\x83\x60\x0d\x96\x95\x51\x38\x2b\x40\xe0\x6f\x40\xd5\x18\x48\x17\xcf\x43\x00\x4e\xc0\xb8\x92\x3c\x26\x55\x90\xe8\x68\xa7\xc2\x8e\x32\x50\x15\xd3\x6c\xd2\x67\xcf\x65\x62\x91\x93\x84\x1d\x38\x20\xe2\x34\xdd\x9f\x96\x67\x67\x81\x7d\x3a\x9e\x7e\xbb\xcf\x79\x6b\xbb\xc5\xd8\x48\xab\x2b\x3c\x95\x32\xcd\xe2\x33\x90\x04\x46\x66\x95\x47\x4c\x28\x20\x6e\x93\xe4\x11\x5e\x43\xa5\x4d\xf0\x1a\xdc\x8a\xb4\x2f\xcd\x89\x81\xc7\x69\xab\x16\x93\x79\x52\x26\x79\x2d\xa5\xe5\x20\x38\xd9\x89\xd9\x4a\x8c\x97\x1a\x4a\xfc\x60\xeb\x1b\xc6\x49\x51\x3c\xb5\x98\x0b\x43\xd1\x32\xe0\x6a\x2d\x67\x20\x4d\x5c\x96\x0a\x37\x54\x43\x86\xd3\xb2\x93\x8a\x78\x23\x3e\x1c\x72\xbe\xb0\xf1\xdb\x61\x18\xc0\x42\xf4\xc4\x0b\x07\xcf\x4a\xd2\x57\xd8\xf8\x22\xe9\xcb\x82\xab\x3e\xa0\x03\x2a\x84\xdd\xe7\x1e\x2f\x79\x6a\xc4\x3c\x06\x25\xdf\x3c\xc6\x99\xc0\xb7\xcc\x43\xd9\x3b\xa8\xad\xf7\x1c\x3b\x96\x91\x35\xf1\x73\x93\x25\x5a\xe3\x7a\x53\x61\x5b\xf7\x34\x70\x05\x36\x9e\x06\x4c\xf7\xa7\x73\x19\xff\x07\x7c\xba\xd4\x59\xbe\x88\x28\x1a\x0d\x72\xa1\x47\xf5\xba\x78\xb7\x51\x9f\xb1\x15\xf3\xb5\xa1\xae\x0a\x44\x8c\xf0\x6b\xe9\x78\xb6\x64\x1d\x47\x43\x03\x41\xcb\x4e\xd7\x96\x54\xea\x0d\x3c\x76\x01\xf2\xf1\xa6\x62\x3e\x7b\x26\xb7\x06\x2e\x2e\xc8\xeb\x12\xe8\x2e\x33\x10\xaf\x81\xec\x5c\x2b\xf4\xe8\x61\xca\x21\x55\x56\x03\xfc\xcc\xda\x20\x0c\x8d\x46\x46\xfa\xce\x72\x22\x42\xc8\x8b\x4b\x99\xd7\xfa\xee\xa0\xaf\x39\x55\xa3\x58\x2c\x13\x6f\x0d\xa1\x09\x57\x54\x12\xcd\xc5\x6a\x21\x38\x9f\x48\x41\x4a\x60\x79\x59\x60\x89\x30\xb7\x4b\xc2\x59\x0c\x28\x7b\x9c\x25\x16\x3c\x22\x44\x9c\x41\x30\x84\x4a\x24\x0c\x40\x87\x03\x4c\x58\xd8\x05\x5e\x89\xf9\x46\x92\x03\x6d\xf2\x8f\xee\x64\xa0\x3d\xfc\xa9\xe2\x4d\xa4\x91\x98\x70\x33\x10\xff\x2b\x22\xe2\x2c\xac\xa9\x29\xe8\xfc\xef\x62\x5e\x9a\xfb\x8d\xf9\x1a\x46\xba\x2f\x72\xff\xde\x72\x64\xd6\xee\xa4\xfd\xa5\x59\x2d\x13\x04\xf2\x6f\x46\x49\x63\x9a\xb2\x70\x1d\xd8\x6b\x77\xb3\x8e\xa2\xdb\x39\x9c\x62\x0b\xe3\xd4\x6e\x20\x07\x58\x59\x45\xec\x8b\x0f\xb7\xfc\xed\x06\x6e\x72\xb8\x3d\xda\x1d\xbb\x49\xd3\xae\xf5\x52\x55\x04\x55\x52\xce\x73\x88\xa9\x8b\x10\x1c\xf9\x58\xf6\x66\xb2\xec\xd5\x6a\x7c\x41\xfa\x9c\x73\x55\xf5\x69\xfb\xed\xdb\x8a\xda\xec\x73\xff\x54\xe5\x29\x7c\xe8\x78\x66\xc3\xc0\xaa\x3f\xdc\xc2\x61\x08\x04\x46\xf4\x15\xc2\x41\x99\x21\x90\xb8\x44\x51\xc1\xb1\x61\x36\x3c\xd1\xef\xf7\x69\xa6\xcc\xac\x83\xcf\x90\xc9\x72\xeb\x99\x2c\xe7\x18\xa5\xa8\x96\xac\x32\xf8\xcd\xe1\x08\x54\x45\x20\x39\x21\xbc\xbe\x4e\xc2\x4d\xd1\x48\xe0\xb1\xf2\xaa\xa1\x38\x3a\x69\x00\x09\x0c\x06\x70\x75\xf0\xa1\xd1\x7c\x6d\x43\x25\xda\x49\x96\x15\x57\xe2\x1f\xff\x17\x58\x30\x5f\x41\x04\xd5\xd2\xc4\x84\x81\xde\x32\xa7\x67\x56\xd7\xf6\x36\x8b\x0f\xfa\x0f\xb4\x7f\x7e\xca\x5e\xee\x77\x4e\x04\xc3\x48\x78\xc2\xea\x0b\x1c\xa5\x9c\xae\xd4\x55\x43\xcf\xf9\x50\x87\xe7\x4e\x05\x83\xfa\x41\xca\x99\x98\xca\x72\xe2\xc1\x78\xdb\x4b\x41\xb0\x64\x4e\x6e\x03\xda\xa4\x9e\xf0\xe3\xd2\x2e\x43\x73\x61\x1b\xaf\xad\x82\xad\x74\x23\xf1\xd6\x1d\xb7\xf8\x00\xfb\x9d\x5b\xe2\x78\x97\x8e\x74\xbe\x13\x4e\x0a\xc6\x8b\x9e\x4c\xef\x4f\xe7\x2a\xab\x7b\x2a\x67\x48\xb8\x74\xcd\x4c\x2a\xb0\x1d\x71\xe5\xfa\xfd\x7e\x7b\x61\xf7\xa9\xa1\x8f\x1f\xf5\xf6\xec\x86\x8d\xd5\x00\x16\x98\x94\x32\xe0\x3b\x5d\x8e\xaa\x96\xd2\x9c\xc3\x7e\x31\xdc\x5c\x33\x22\xbf\x0b\xcd\x69\x7f\xda\x14\xa1\xa9\x3b\x43\xaf\x37\xd6\x47\xd0\xdb\xbd\xef\xe4\x59\xa2\x99\x0e\x40\xb4\x9b\xf2\x2d\x14\xbc\xda\x24\x8c\xed\x7f\x27\x20\x4c\x13\x27\x5b\xbe\xec\x7c\xb5\xe3\x0b\x61\x1d\x1b\xfb\xd3\x64\x66\x57\xaf\xcd\x96\x45\x7f\xeb\x7a\x43\x5d\xb6\xa4\x6e\x50\x1d\x5b\xf5\x60\x20\x2a\x7d\x12\xfa\xf8\xf3\xa7\x37\xe8\x31\x62\x3b\xa0\xf3\xb4\xdb\x49\x57\x9c\x02\x18\x52\xd2\x47\x87\x92\x9e\x38\xc5\xbf\xbc\xd9\x71\xf5\x90\xa9\xa9\xbe\xbd\xe1\xbb\xb1\xbe\xc0\x01\xbc\xaf\x5e\xd9\x53\x55\x03\x74\xf3\xb8\xc0\xf0\xcb\x39\x63\xf6\x9a\x49\x68\x3e\x65\x1e\x97\x75\x3f\xe7\xe3\x73\xcc\xab\x2a\x53\x8b\x55\x90\x81\x0a\xd1\x42\x08\xab\xba\x0a\x9c\x2d\x8c\x52\x0a\x15\x21\x49\x9a\x02\xb7\x65\x12\x32\x0a\xc0\xaa\xb4\x1c\xd7\x53\x64\xda\x4a\xbe\x7f\x21\x9e\xfd\xf2\xec\xdd\x8b\x21\x19\xd3\xea\x9a\xd8\x81\x38\x6a\x5e\xcc\xf4\xd4\x8f\xe0\xad\x54\xa7\x07\xf7\xf9\xd1\x17\x31\xea\xb0\x3b\x36\xc8\xed\x6d\x5e\x2d\x01\x07\xe9\x7d\x03\x6e\xbc\xbd\xcd\x04\xca\x46\x2e\x84\x21\xee\x78\x8e\xbd\xf1\x3c\x9e\x7b\xaf\xcf\x78\xbb\x8d\x24\xef\x7e\xdb\x64\x30\x5e\x42\x4c\xad\xe1\x15\x62\xc7\x93\x88\x39\xf6\xfa\xfb\xf1\x4c\x91\xe5\x3e\x06\x1f\xa5\x13\x39\x2e\x35\x19\x8a\xc1\x07\x54\x10\x0c\x1b\x87\x79\xbb\x13\x60\xf6\x78\xb0\x77\x62\xdf\xe7\x9c\x5e\x22\xbb\x9f\x78\xdf\xd9\x6c\x6b\x5a\x96\xf5\x7c\x86\xb5\x02\xd7\x00\xb1\xb7\xcb\xf4\xa6\x60\xd3\x3d\x4e\x10\xfd\xd1\x8c\x87\xdf\xa6\x55\x6e\xd0\x96\xc6\xa2\x52\xf5\x3c\x61\x47\x0d\x8d\x25\x26\xa0\xb7\x3b\xa1\xe5\x85\x9b\xee\x7e\x38\xca\xe6\xc0\x1c\x12\xc8\x2f\xe6\x16\xaf\x59\x3f\x8a\xbe\x6c\x37\x19\xd5\x23\x0c\x08\x77\x8a\xde\xd1\x30\x54\xb3\x67\x8d\xc2\xc8\x94\xad\x0b\xc0\x8b\xd4\x4c\xfd\xb4\x94\xc9\x85\xa8\xea\xf9\xd9\x19\x02\xa0\x1c\xaa\x5c\xdf\x3b\xeb\xf9\x29\x0c\xd1\xca\x6e\xbe\xa1\x13\x89\x5c\xe3\x24\xcb\x50\xe4\x62\x6e\x01\x28\xcb\x34\x8a\xd0\xf7\x68\x99\xf8\xfc\x05\x15\xc4\x32\xc5\x7b\x10\xbb\xe9\x34\xfb\x13\xcb\x15\xa9\xcf\xbf\xa3\x1c\x8e\xcf\x65\x3a\xcf\xe0\xa2\x6f\x66\xc1\x05\x4b\x9d\xe7\x06\xaa\x0f\xc0\x6a\x7e\x3e\x30\x04\x65\x4d\xff\x59\x84\x1e\x7d\x5f\x12\x15\xd5\x67\x81\xdc\x44\x1c\xaf\xd3\xc8\xe1\x7e\x7e\xb1\x4f\x98\x79\xa5\xfc\xef\xb9\xac\xea\x67\xb9\x42\x48\xed\x97\x65\x32\xf5\xa4\x63\xab\x70\x62\x31\x6e\xb2\x8c\xc2\x1d\x68\xc2\xaf\x15\x01\xdd\xf1\xd0\xc6\x57\xa5\xaa\xf5\xc9\x4b\x72\x81\x63\x9b\x66\x36\xea\xa4\x84\x0c\x70\x0b\x74\xb8\xe9\x5f\x77\xe9\xbd\x04\x07\xa9\x2a\x37\x01\x28\xee\x23\x58\x25\xd5\xa2\xf2\x71\x36\x4f\xa5\x18\x21\xdb\xe8\xc1\x75\xbc\xff\x8f\xca\xe2\xf4\x8f\xac\x85\xca\x28\x8c\xba\xf9\xc3\x8b\xb7\xef\x5e\x3c\x7f\xf6\xfe\xe0\xcd\x4f\x0f\x1e\x0c\x11\x4a\xf1\x2a\xb9\x41\x10\x7e\x06\x54\x08\xda\x02\x7c\xa9\x30\x68\xef\x54\x87\x89\xbc\x09\xe6\x3f\x12\xe1\xdd\x55\x2e\x2e\xf7\xbe\x10\x3f\x13\xf2\x10\xaf\x62\x5a\xe8\xe9\xa7\x58\x11\x7a\x24\x79\x55\xcb\xc4\xc2\x64\xfe\x80\x61\x6b\x74\x29\x30\x3a\x81\xab\x14\x1d\xc9\xf4\x0e\x43\x37\x65\x1b\xf2\x1b\x9a\x83\xca\xbb\x56\x63\x47\xb5\x39\xbd\x1d\x40\xf9\xd6\x05\xc5\x71\x17\x95\x9c\x5e\xca\xb2\x6f\x7a\x38\xd5\x57\x27\x1b\x80\xa0\x54\x95\x89\x60\xc0\x60\x60\x09\xb0\x50\x5d\x32\x3a\x0b\x61\x63\x57\xe1\xe1\x7f\xe3\x13\xa8\xd1\xc1\xac\x24\x5a\xe8\x03\xe6\xd6\x24\x4b\xde\xa3\x18\x41\x1c\xd4\x4a\x2d\x8b\x2f\xdf\x12\x4f\x4d\xc2\x50\x4c\xb2\xe2\x34\xc9\x3a\x7d\xb6\x00\x44\xc7\x54\x25\x53\x44\x30\xe3\xe9\x20\x93\xd5\x6c\xec\xdb\x3f\xc3\x57\x1f\x80\xaf\x0f\x74\x06\x01\x86\x3d\x5c\x57\xc9\x77\x13\xbe\x43\x54\xd7\xb3\x64\x2c\x6d\x48\xa2\x8c\xc4\x63\x2b\x5c\xa1\xc9\x13\x18\x12\xd5\x15\xe0\xac\x3a\xf1\x9d\x82\x28\xd1\xe3\x81\x48\x00\x0f\xcb\xfa\x63\x70\x78\x63\x13\xdb\x1b\xd9\xbc\xdb\x56\xfc\xd4\xb5\x26\x59\xa5\xcc\x92\x5a\x5d\x4a\x7c\x5d\xc6\x08\x7e\x10\x75\xb9\x28\x53\x95\x27\x35\xe9\x31\x79\x58\x27\xe6\xac\x94\x38\xa7\xd4\xba\x80\x06\x39\xc6\x96\x33\x9b\x8a\x23\x1d\xf3\xd9\x33\xba\x81\x9f\x8a\x14\xbd\xdd\x6c\x21\xf8\xfb\xa7\xef\x69\xb3\x9e\x49\xc4\x17\x47\x5f\xda\xca\xc0\x47\xe9\x0e\x1e\xe8\x09\xce\x65\x2d\x5e\x5c\xcf\xb2\xa2\x94\xa5\xd8\xdd\xe1\x10\xfe\x41\x8b\x21\x7e\xb6\x8b\x0a\x01\x6f\x81\x06\x69\x49\xe5\x13\x67\xb1\x0d\x65\x9e\x39\x7d\x2b\x2c\xb2\x79\x39\x8f\x4d\x5e\x63\xad\x81\xd9\xc3\x8c\x8b\x51\xb4\x09\x0e\xa4\xeb\xf5\xcf\xc4\xec\x80\xde\x8d\x21\x3f\x58\xc6\x60\x9f\x72\xf1\xe2\xf0\x2b\x7d\x94\x23\x80\x52\x62\xe3\x71\xc3\xe1\xa5\x5b\x45\x88\x16\x62\x2a\x97\xaa\x04\x37\x9f\x68\xbc\xc2\x55\xcd\xfe\x08\x36\xf2\xeb\xb6\x8b\x16\xf5\xeb\x35\xec\x01\x8c\xff\x6a\x7c\x43\xe1\xb4\x38\xde\xfa\xdb\x69\x72\x2a\xb3\x41\x39\xcf\x6b\x35\x95\x83\x73\x99\xcd\x64\x59\x0d\x64\x35\x1d\x50\xce\xe3\x2d\xa7\x73\xfc\x15\xf7\xe1\x2f\xf8\xe0\xf1\xd6\x49\x40\xab\x6b\x5b\x50\x92\xd7\x0e\x96\x89\xef\x64\x62\xbd\x68\x4a\xfd\x37\x53\x79\xea\x62\xef\x6f\x66\xd6\x12\x47\x4f\x68\x4f\x33\x32\xcf\x78\x26\xab\xae\x29\x5d\xff\xc9\x52\x3e\x88\xf1\x79\xa2\x72\x57\xcb\x2d\xe5\xfb\xdb\x34\xa9\x65\xa9\x92\xac\x37\x57\xa8\x88\x66\xa5\x34\x85\x85\x06\x43\xf8\x18\x31\x70\x49\xbc\x7d\xeb\x97\xd7\x30\xd9\xb1\x29\x3a\xfb\x65\x52\x8a\xc3\x83\xff\xf3\x42\xec\x8b\x47\x8f\x80\x59\x7a\xb6\x8a\xc4\x42\xc0\xe3\x0c\x75\xff\x5d\x31\x55\x79\x57\x4c\x93\x6b\x12\xa3\x88\x1e\x9c\xaf\x9c\xf5\x9e\x83\x8c\x97\xe4\x15\x07\x05\x7a\xba\x70\x47\x0c\x44\x7b\x9a\x5c\xd3\x2f\xc3\x80\x6d\xbb\x32\xa9\xe4\x9b\x79\xdd\x36\xbe\xf9\xb5\x79\x2f\xe5\x7d\xa9\xbb\x62\xa7\x2b\x76\x3b\x80\x07\xe7\x6c\x5a\xab\xba\xcf\x0c\x5b\x27\xa5\x1c\xec\x7e\xf5\x78\x67\xef\xdb\x47\x78\x0c\xd4\x70\xe6\x88\xde\xbe\xd8\xed\x88\x07\xa2\x86\xff\xff\x8b\x40\xe3\x40\x43\xd8\xd1\x0e\x1d\xe4\xb6\x3f\x26\x9f\x2e\x6c\xf2\x92\x6e\x5b\xcf\x66\x65\x40\xec\xdc\xd3\x0d\x3e\xa7\xe9\xd3\x59\xfa\x75\xd8\xf0\x3d\x82\xd6\x36\x78\x1a\x2a\x8b\xa2\xb6\xbb\xc8\x86\x64\xd1\x5f\x19\x14\x69\xaa\xaa\x59\x96\xdc\x0c\x45\x4b\xe5\x99\xca\x65\xef\x34\x2b\xc6\x17\xe4\x98\x6f\x10\x94\xd7\x6c\x04\x22\x0c\x83\x8f\x59\x5e\xef\x1f\x6f\x91\xc8\xb0\x35\x72\x8d\xe3\x27\xd6\x3c\x40\xab\xd1\xeb\x20\x0c\xb1\xef\xbe\x54\x7d\x54\xb4\x7a\xb0\x7f\xf7\xd1\x31\x95\xa7\xb2\x96\xe5\x14\x58\xb1\xd7\x3f\x2f\x85\x75\x33\x31\x02\xf1\x50\xb4\xfe\x34\x56\xe5\x78\x9e\x25\x65\xaf\x2c\x40\x05\xbb\xdb\x7f\x54\x81\x81\x4f\xa2\xaf\xaa\x67\xa0\x04\xf9\x84\x09\x1c\x17\x59\x51\xee\x1f\x6f\x11\xe6\x94\xd7\x3f\x48\x7b\x8b\x09\x43\x0e\xce\x90\x15\xa5\x99\xc0\x59\x92\x69\xae\xdb\xa7\xf2\xfd\x69\xa2\xf2\x4f\xef\x8d\x45\xbd\x6a\xf6\xe7\xd0\x24\xad\xea\x91\xad\x63\xb3\x3e\x8d\xaa\xcb\xc9\xa8\x49\xc8\xd5\xe5\x24\x4a\xc7\x48\xc0\x7a\x67\xff\xff\xa5\x9c\x55\xc6\x4e\x6b\x52\x6a\x29\x1e\x7d\x88\xb5\xd0\xbe\x7e\xf3\x7a\xbd\x33\x39\xd2\x0d\x8a\x99\x66\x4f\x6e\xf8\x90\x32\xe4\x88\xc0\x65\x71\x21\x87\xa2\x45\xc1\xf9\x9f\xeb\x69\x80\xbe\x68\x09\xfb\x74\x5e\xd7\x4c\xf8\x06\x2d\x18\x69\x04\x80\xb8\xba\xe2\xf4\x06\x3c\x34\xc6\x10\x74\xa9\x55\x89\x24\x2b\x65\x92\xde\x50\x00\x30\x54\x96\x3e\x3f\x3c\x44\xbe\xd8\xe7\xea\x09\x68\xf8\x95\xca\xe5\x38\x99\xe9\x49\x98\xd7\x75\xab\xfb\x29\xa3\x5c\xbd\x99\xb1\xc4\xe1\xdd\xb6\x34\x76\xb8\x97\x26\xd5\x39\x9a\xbc\x6c\xb0\xb5\x57\xf5\x75\xf1\xfe\xc6\x82\x07\x1b\xed\x72\xdd\x45\xdc\xe3\x9a\x95\xf7\x54\xde\x2b\xe6\xb5\xdb\xe8\x5d\xb6\x0a\x87\xc5\xd4\xad\x13\xc5\x1e\xd5\xa2\x4f\x56\x14\x17\x95\x80\xc0\x69\x57\x09\x5e\x85\xcf\x28\x22\xa1\x6d\x13\xec\x5c\xd4\xf8\xa2\x12\x2e\xee\x20\x2d\xeb\x0f\x49\x75\x0e\x61\xfa\x87\xa2\xf5\xcd\xce\xec\xba\x2b\xf6\x76\x76\x66\xd7\xae\x69\x97\x0d\xe7\x72\x28\x5a\x3a\x1d\xcc\x42\x52\x0c\x7f\x3d\xcf\x15\xd2\x9e\xba\x16\x89\x78\x91\x4e\xa4\xd8\xfd\x0a\x55\x37\x52\x13\xe3\xe9\x7c\xd2\xe7\xe4\xa2\xff\x6d\xfd\xed\x42\xde\x40\x00\xbf\x4a\x04\x4c\xaf\xc5\xa6\xad\xb5\xf3\xe7\xd6\x30\x78\x7b\x78\xa9\xae\xc5\xc1\x0b\xb1\xbb\x2b\xae\x8a\xd3\xd3\xec\xc6\x25\x5a\x5e\xfe\x06\x6c\x79\x86\xa2\xf5\x78\xe7\xcf\xe2\xf1\xce\x9f\x2d\x18\x8c\x43\xcd\x6e\xed\xee\x84\x75\xdb\xe2\x43\xd1\xc2\xae\xb4\x1f\x7e\xb5\x93\xca\x49\xa7\x15\x2a\x1c\x97\x8d\x42\x2f\xea\xd2\x31\x34\x67\x7e\x37\x32\xf1\x0b\xa7\x3e\x32\x96\xc7\x6b\x34\xb1\x13\x5b\xdd\x68\x23\xbd\xdd\xc7\xf1\x66\x9a\x53\xf6\x89\xed\xec\x79\x0d\x7d\xe2\x26\x25\x6d\xd9\xe1\x79\xa9\xf2\x8b\xfd\x0f\x75\x39\x97\xb7\x8d\xfd\xf9\x03\xcf\xb4\x60\x7f\xe6\x45\x6e\x0f\xd9\x63\x63\x23\xff\xc4\xdd\xc4\xbf\xfc\x52\x3c\x7b\x77\xf0\xcc\x5e\x14\xc9\x55\xcb\x1e\x04\xa7\x09\x46\x73\x97\xd5\xb8\x54\xa7\x06\xb5\x23\x2b\x12\x70\x0e\xb2\xd9\xe0\x46\x3d\x4b\xca\x5a\x01\xdd\x88\x52\x4e\x48\xd3\xa5\x3f\x4f\x40\xa9\x8e\x91\x4f\xc8\xf9\x4b\xdf\x75\x47\x9a\x13\xf5\xa8\x6a\x99\x9e\xde\x90\x31\x96\x42\xab\xa1\xb0\x1f\x5d\xd8\x86\x15\x99\x31\x61\xe1\xd3\x79\x75\x83\x57\x63\x67\x34\x5a\x17\x62\xa4\x27\x6c\x24\xdc\x0d\x13\x7a\xa3\xaf\x2a\x99\x50\x35\x98\xc9\x6a\xb6\x54\x9d\xcb\xd4\x8c\xa5\x6f\x03\x3f\x68\xf9\xf2\x39\x6d\x80\xb7\xa6\xfd\x7d\x31\x78\xf0\xe5\xaf\xbf\xbe\xfd\xf9\xdd\x8b\x5f\x7f\x7d\x30\x80\xab\x4b\xff\xac\x28\xaf\x92\x32\x7d\x27\xcf\xac\xc5\x4f\xa3\x24\xd8\xd5\x54\x60\x69\x48\x62\xa9\xae\x1f\x74\xc3\x20\xc0\x42\x72\x9f\x7e\x5b\x1a\x83\xdf\x00\xd7\xee\xe5\xf8\x89\x3f\x8b\xfd\x0a\x09\x7f\x02\x11\xc2\x65\xd3\xbf\xba\x9e\x78\x21\xf6\x83\xac\xfb\xfb\x02\x1c\x22\x77\x02\xc8\x4e\x9e\x2b\x6c\xc5\x23\x48\xdb\x9a\xf7\xb5\xcb\x64\x0c\x2f\x6f\xbc\x0a\xde\x0b\x8c\xb9\x34\x8c\xe6\x0c\x7b\x52\x21\x50\x12\x76\x00\xa2\x01\x59\xf6\x8e\x29\x5e\x3e\xde\xca\xa3\x1d\xd7\x84\x5f\x10\x9c\x14\x6c\x9d\x2c\xea\xa5\x6d\xb5\x3e\x57\xe3\x8b\x1c\x29\x01\xb3\xd9\x2f\x5d\xf6\x36\x61\xf3\x34\x8b\xf1\x9e\x3c\xec\x7f\xe5\xba\xd2\xac\x88\x12\x2c\x52\x2e\xb4\x87\x17\x43\x93\xc5\xa4\xf9\x59\x79\x1b\x6c\xb0\x7e\x51\xfb\x11\xe4\x00\x56\x3f\xfc\x66\x2d\x98\xf4\xb0\x80\x47\x3f\x9e\x10\xd1\xe2\x6d\xfa\xd5\x15\x80\x4c\xb5\xbf\x50\xaf\x60\xf6\xc9\xd1\xf1\x16\x6d\x86\xe3\xad\xae\xa0\x1f\x9a\xee\xe9\xa7\x26\x4e\xfc\xd3\xa3\x12\xfc\xa4\x57\x95\xfe\xd2\x8b\x88\x7f\xda\xf9\xc5\x9f\x68\x12\x4b\x7f\x42\x1f\x8f\xb7\x4e\x8c\xbe\x1e\xf6\x26\xc9\x6b\x48\x13\x64\xc4\xa0\x13\xb4\xd0\xbf\xe0\xb3\x1e\x87\x35\x79\x38\xe6\xd8\x25\x06\xa9\xcf\x9b\xa5\x8f\x1f\x85\x97\x88\x52\xa3\x43\x27\x31\xdd\x98\x4f\x9d\x35\xc8\x9e\x78\x80\x18\x35\x6f\x0f\xc4\x03\xd1\x6e\x83\x42\xa1\xe7\x88\x4e\xdf\xf8\xf7\xcc\x23\x18\x1b\x43\x3f\x38\xd7\xc4\xbe\x5f\x75\xbf\x2e\xc0\xbe\xb4\xfd\xd0\x14\xb6\x03\x3a\x6a\x01\x93\x85\x19\xcb\x8b\x2b\x70\x47\x66\x30\x39\xa8\x75\xb0\x0f\x8a\x8d\x21\x87\xa3\x5a\xd4\x2d\x8a\x25\xbd\x2f\x8e\xb7\x8e\xb7\xfa\xe3\x22\x1f\x27\x75\xbb\xdd\xde\x85\xb0\xba\xd8\x88\x18\x08\xfd\xf3\x81\xdf\xf5\x0e\xeb\xbb\x5e\xcf\xd9\xf5\xf1\x16\x83\xc8\x33\xcb\xd5\x77\x18\xf4\xfb\x56\x1a\xea\x7d\x8b\xd2\xd0\x02\x2b\xc9\x4d\x7a\x4a\xaa\x8b\x48\x87\x3b\xf7\xd1\xe3\xe3\x2d\xea\x72\xd0\xe4\x9b\x79\x4d\x96\xa2\x03\xf1\x35\x34\xb5\xf7\xf5\x4e\xd8\x80\x1e\xa3\x6b\x82\x63\x04\x92\x76\x24\x72\xac\xe1\xdd\x83\xac\xee\xda\x7a\xa3\x5d\xea\xfd\x62\xf4\x89\xc6\x4e\xc3\xee\xcc\x21\x28\xe2\xda\xb4\x6d\xfb\x7a\x14\x5d\x97\xda\xa5\x53\x08\xde\x1d\x54\x7e\x2e\x4b\x55\xb7\xc4\xf6\xb6\x39\x03\x8f\xec\xa6\x36\xa3\x73\xca\xb3\x36\xa4\x74\x3a\x27\x5d\x26\x82\xfa\x1c\x67\x68\xea\xe9\x7b\xdf\x9d\xa0\x47\x54\xe8\xf2\xb1\x27\x1a\x71\x7b\x44\x14\x7b\x62\x2c\x63\x2a\x8c\xf9\x1c\x0e\x56\xa0\xfe\x77\x28\xbc\x83\x03\x75\xb3\xf8\xd1\x48\x7c\x6e\x15\xbb\x58\x59\xc7\x59\xc6\x83\x91\x96\xf9\x59\xe8\x76\x8e\xb7\x8c\x88\x73\x9a\x94\xc7\x5b\xb0\x3e\x5d\xb7\x03\xbb\xc8\x37\x3b\xdd\x75\xd6\xa9\xba\x9c\xe8\x75\x8a\x2d\x0f\x8d\xfc\xd2\x04\x29\xb8\x54\xf2\xea\xfb\xe2\x7a\xe8\x11\x32\x70\x94\x81\xd8\xd3\x74\x23\x8e\xb7\x3a\xeb\x7c\x8f\x7d\xeb\xd0\x28\xd6\xe8\x32\x6e\xb3\x45\xbd\x66\x44\x85\x19\xbb\x81\x6c\xe1\xa8\xa8\x1f\x11\x89\xd7\x21\x9a\xc8\x4d\x77\x09\xe9\xf0\xab\xfc\x0a\x02\x62\x0c\x84\x12\xc6\xd7\x43\xd0\x02\x9b\x9f\x37\xde\xcf\x72\x28\xe2\x2c\x9d\xd2\xcf\x54\x96\xe9\xe5\xd2\x02\xfd\xf1\x96\x6d\x4b\x73\xa6\x5f\x90\x32\xdd\x39\x07\xc6\xdb\x60\x96\x09\xd6\x24\xb3\xb2\x18\xcb\xaa\xea\xcb\xfc\xb2\xff\xd3\x9b\x1f\x5e\xfc\xfa\xe2\xa7\xbf\xc3\x76\x04\xe2\x4b\xe7\xe8\x39\xba\x25\x9e\x36\x84\xd7\xfe\xcc\x2a\xd0\xf7\xad\x53\x4e\x6f\xd9\x7f\xe2\x97\xa4\x04\x9c\x80\xa5\xb9\x7a\xbd\x1e\x55\xf6\x91\x42\x93\x3a\x4d\x7d\x52\x72\x2b\x59\x8b\x9c\xa6\x13\x29\x50\x2e\x3c\xa3\xc2\xfb\x25\x2a\x4b\xc4\x47\x5b\x99\xfe\xef\x7d\xc1\xec\x4a\xa6\xe8\x57\x03\x8a\xa1\x7e\xad\xc5\xfe\x0c\x2d\x31\xca\x79\x2e\x8e\xb7\x6e\x92\x32\x07\xf9\x07\x9e\x16\x8e\xb7\xa0\x82\x8f\xeb\x0c\x74\xed\xff\x42\x43\x80\x37\xc6\xc8\x0f\xc2\x99\x6a\x26\x83\x1a\xae\xe8\xed\x70\x5c\x4c\x67\x45\xce\x82\x81\x1e\x4a\x29\x8e\x9e\x1f\x1e\x8a\x67\x6f\x0f\x4e\xda\x5f\x8e\x35\x91\xa0\x66\xe2\xac\x28\xc5\xb4\x28\xf5\xcc\xd4\x89\xca\x8c\xd1\x00\x9a\x13\x23\xfd\x0e\xdd\x34\xf7\xad\x5b\x92\xdf\xbb\xbf\xa9\x49\x5e\x94\x32\x2c\x8b\x3b\xd2\x95\x26\xec\xe2\xb0\xf4\x7b\xe8\xb2\xe6\xf6\xf4\x5c\xe5\xfa\x2f\x0e\xec\x73\x63\x25\xea\xf3\x82\x5e\xd2\x29\x7f\x85\x17\x35\x44\xd5\x93\x79\x25\x49\xf1\xa3\xaa\xc6\x14\x90\x7d\x34\xe8\x4d\xd9\x70\x72\xf9\xe6\xac\x7d\x64\x0f\x98\xae\xbb\xd9\x74\x79\x2c\x02\xd8\xa6\x7e\xa7\x0f\xce\xe8\xbe\x88\xa1\xe7\x2b\x64\x2d\x4e\xe1\xa4\xaf\xbf\xc8\x56\x52\x17\xc6\x50\x55\x68\x59\x71\x55\x94\x17\x88\x21\x43\x92\x8f\xaa\xc4\xc8\x63\x36\x23\xde\xef\xd4\xbf\xb2\xfb\x8f\x54\x6d\x37\x9c\xd3\xa2\xc8\xba\xee\x71\x03\x85\x63\x2b\x48\x01\x7e\x7b\xf3\x02\x06\xc6\xbd\x5c\x96\x6f\x7e\xa0\x43\x98\xf3\xc2\x26\x8c\x4d\x2e\xaf\xc4\x8b\xb2\x2c\xca\x76\xeb\xb5\x79\x2d\xfb\xf9\x60\x08\x0f\xe3\xf0\x6c\xed\x42\x0f\x43\x04\x53\xde\x07\x0c\x72\x2f\x5a\xe2\x2f\xa2\x45\x5e\x3b\xa6\x6d\xbc\x01\xd4\xe7\x49\xde\x98\x21\x32\x24\x51\x59\x86\x0d\xe4\x85\x90\x67\x67\x72\x5c\xf7\x5b\x0d\xb3\x2e\xd3\xc9\x79\x96\x51\x80\x88\x28\x19\xf2\xb8\x4a\xc8\x8b\xfb\x6e\xbd\x11\x34\x25\x11\xf8\x38\x8b\xeb\x0e\xe8\x29\xa8\xff\x53\x95\x48\xaa\x6a\x3e\x75\x0b\xce\xca\x18\xd8\xee\x9b\x62\x6e\xe1\x49\x4c\x44\x4b\x5d\x8f\xde\x9c\xba\x96\xae\x90\xfd\x89\x68\x3d\x2c\xe5\xb4\xc5\x49\x40\x77\xac\x41\xb9\xfa\xcf\xf6\x91\xfb\x68\x3a\x16\xee\xb8\x08\xf9\x36\x77\x2c\x9d\x40\x2b\xf7\x3a\x40\xe5\xd8\x0b\x6a\x6c\xae\xa0\x3a\x9b\x85\x57\x49\x1d\x8c\x55\x89\x32\x69\x11\x28\x92\x54\x9e\xaa\x71\x52\x17\xa5\x55\xe9\x32\x0a\x40\xcd\x0e\x9a\x8f\x10\xb9\x58\xa3\x27\xc4\x0b\x3d\x95\xf5\x95\x94\xb9\xd8\x81\xac\xbb\x3b\x3b\xbc\x87\xd0\xe2\xda\xbd\x43\x6a\x44\x7b\x0b\xd3\xc8\xcf\x95\xf4\x1f\xb5\x6c\x04\x59\xb0\x95\xd0\x04\x69\x47\xc2\x1e\x15\x4c\xf3\x50\x65\x8c\x1d\xf1\x8d\xd6\x0d\x77\x5e\xd7\x4a\x18\x27\x9d\xe3\xfc\x56\x0c\xe9\x5a\xfd\xa4\xe1\xc6\xe3\x5e\x9f\xdb\x78\x4e\x90\x68\x93\x03\x5b\x6e\xbd\x9e\xab\xf0\xe4\x46\x75\xe5\x59\xa6\x66\xe4\xca\xa0\x65\x81\x76\x98\xab\xf3\xe4\x0f\x73\x81\xbb\x3c\xfc\xbf\x52\x55\xfd\xbc\xc8\x6b\x79\x6d\xc1\x3a\x06\xec\x5b\xeb\x49\xfc\xb1\x9a\x1c\xb0\x36\x78\x87\xf6\x5e\xa1\x33\x55\xe1\xc5\xc2\xe8\x75\x0d\x28\x1d\x38\xb5\x0f\xc5\x8e\xf1\xc7\x45\x67\x59\xf6\xc1\x7a\x96\xb6\x8c\xbd\x52\x0b\x65\x74\xb3\x43\xd6\x7d\xe6\x24\x5e\xff\x16\x5b\xd8\xff\x00\xa4\xe5\x34\xd3\xb6\xe5\x0f\x5e\x4f\xde\x17\xb3\xa1\xf8\xc6\xef\xdd\xf7\x04\x04\xf3\xcd\x9d\x3a\x92\x6a\x19\xc1\xb4\x0a\x3f\x86\x3c\x90\xf1\x9a\xb5\x24\x62\x54\xcd\x4f\xcf\x65\x92\xca\x12\xcc\xcf\xcc\xc1\x66\x6a\xb6\xa9\xd1\x11\xed\xd0\x6d\xfa\x96\x4c\x3c\x00\x8d\x64\x6d\x45\xb1\xce\xbd\x40\x39\x7c\xae\xb2\xb4\x04\x54\x7c\x52\xea\xd2\x07\x5f\x3d\x7c\x5f\xea\x63\x12\xaf\x98\x0a\x99\xbe\xd8\xac\xcf\x59\x9e\x66\x31\x4f\x1d\x38\xcf\x3c\x4d\x72\x58\x93\x51\xf0\x82\x88\x67\xb5\xc8\xfa\x97\xd3\x1e\x53\x9a\x9f\x75\x99\xb6\xd8\x2b\xee\xab\x90\x89\x50\x43\x85\xf5\x5b\x2f\x62\x9f\x15\xcb\x5c\xee\x05\xb5\xac\xd6\x59\x87\x35\x5b\x0a\x72\xea\x65\xf3\xe5\x4e\xaa\x51\xa2\x04\xa6\x1b\x5d\xa8\x28\xa5\xb9\x27\x65\xa9\x9e\x24\x4f\x6f\x4a\x3d\x25\x75\xa9\xe9\x54\xa8\x0b\x25\x26\xb7\x8f\xdc\xb7\x3f\xaf\xe4\x6b\x39\x2d\x1c\x15\x37\xec\xbc\x3f\x78\xeb\x38\xc4\x7f\x48\x84\x7b\x42\x8a\x81\x23\xf8\x48\x1e\xca\xeb\xea\xa1\x18\x7f\xed\xbf\xc5\x7d\x5a\x76\x9d\xc2\x14\x24\x00\xea\xee\xba\xfa\x07\x4b\xd7\x9f\xa0\xdc\x42\xfa\x64\x8a\x08\x24\x47\xf1\x45\x40\x3b\x2c\x87\x89\x17\xc9\x88\x83\xa5\xda\x8f\xa1\xde\x88\x46\x65\x14\x42\x8e\x8e\x2c\xc3\xb8\xcb\x95\x5f\x4f\x6b\xe4\x9a\x1f\x5c\xe9\xf2\x9a\xec\x66\x63\x97\x52\xbc\x91\x51\x1f\x3c\x31\xac\x48\x65\x43\x08\xfb\x5d\xdd\x7f\xfb\xaa\x32\x80\xb4\x9f\xe5\x2a\x6c\x98\x24\x78\x26\x1b\xc1\x17\x8e\x21\xb0\x3a\xa6\xbc\x2f\x14\x70\x00\x73\xb7\xb0\xb6\xc0\x3e\x80\x4b\xa1\x73\x2c\xb8\x0d\xd3\x47\xd6\x2f\x3a\x08\xc1\xe6\xbc\x02\xbd\x49\xaf\x2e\x7a\x56\xd5\xd1\xc3\xc1\x51\x05\x26\x1c\x8d\x2e\xb9\xec\x7e\x0c\xd6\xb8\x63\x07\x61\x67\x8e\x43\x91\xca\x4a\x4d\x72\x1a\xe3\x85\xbc\x39\x2d\x92\x12\xe1\x89\xa6\x05\xd8\x60\xe7\xb3\x79\x6d\xed\xfe\xcd\x6c\x50\x03\xf0\xa2\xac\xcf\x4e\x30\xdd\xd6\x7f\xa8\x5a\x4e\xab\x3e\x9b\x49\xb8\x54\x7a\x7e\x0d\x75\x01\x8f\xd2\x32\x4f\xb5\x34\x6f\x67\xa0\x32\xfe\xdf\x23\xd8\x87\x23\xc3\x12\xbc\x4b\x38\x72\xa6\xe0\xb6\xbd\x64\xd8\x8d\xe1\x86\x0e\x0c\x56\x4b\xa5\x7b\x1f\xb9\xef\xbf\x35\x72\xd1\x8a\x36\x23\x9b\x8d\x6d\xf3\xbc\x28\xa7\x10\xc3\x79\xa4\x37\xed\xa1\x95\x5c\xbc\xdb\xa5\x93\x58\xfc\x7d\xf8\xa9\x17\x0c\xdd\x64\x0b\x2e\x11\xfa\xaf\x3f\x2e\x0e\xf7\x76\x71\xc0\x9b\xc3\x3f\xe1\xfa\x30\x55\x39\x69\x8a\x1f\x7f\x65\x94\xca\x99\xbc\x36\xba\xa8\x9d\xcd\x05\x71\x73\x47\x16\x33\x0c\x10\x0e\x74\x79\x50\xcb\xe9\x48\x6f\xf1\x4a\x8c\x92\x4c\x4d\x72\xfd\xa1\xda\x3f\xde\xd2\x8d\xf5\x20\x0c\x03\xb3\x35\x73\x39\x5e\xea\xbe\xe8\x54\xd7\x61\xb8\xd7\xe0\xe5\x81\x89\xda\xc6\x74\xe5\x99\xa8\xd4\x74\x96\x49\xe3\x47\xef\x90\x66\xa0\x1f\x23\x86\x57\x97\xe4\x62\xf4\xec\x32\xa9\x13\xdc\x2c\xce\xce\xc3\x74\x18\x13\x37\x13\xde\x5d\xb9\xcf\x67\xe3\x71\x0f\xaf\xe6\xab\xe4\x39\x22\x3a\x2e\x5f\x6d\x26\x98\xdd\xc7\x03\x21\xf2\x68\x47\x0c\xf8\x80\xec\x28\x86\x3f\x18\xf6\x23\x34\xb3\x54\x56\xba\xa3\x54\xe4\xd6\xf7\x8f\x67\x90\xfb\x7f\x06\x59\x26\x57\x8a\xff\xf7\xff\xfe\x7f\xd8\x69\xc7\x76\xee\x32\x69\xd3\xf0\xbe\x25\x22\xdd\xef\x4a\xf6\xfc\x34\x81\xf3\x3e\xce\x73\x47\xe1\xee\x64\x77\xdf\xfe\x38\xe3\xef\x76\xc6\xbf\xbf\x99\x15\x93\x32\x99\x9d\xb3\xb8\xb0\xee\xdb\xef\x44\x18\xd0\xac\x75\x28\x5a\xbb\x62\x17\x00\x0d\xad\x2a\xd1\xca\x08\x3b\xdd\xc6\x21\xfc\xc8\xfb\x64\x14\x78\x8f\xd6\x92\x1b\x46\x6e\x06\x46\x5c\x5a\x57\x67\x26\x42\x3f\x59\x77\xd2\x43\x1d\xf0\xbf\x4a\xda\xce\x4f\xe7\x59\xad\x32\x95\xcb\x98\x74\xf0\x55\xb4\x63\x5f\x7d\x6a\xc7\xee\x47\xc9\x38\x52\x79\x25\xeb\xd0\x86\x17\x3e\x86\x5a\xc5\x57\x00\xe9\xfd\x78\xbd\x8e\x9b\x69\x8b\x0f\xc0\x6a\x64\xad\x13\xcc\xca\x0a\xdd\xdc\x2f\xaf\xb2\x62\x7e\x2c\x81\xf6\x53\x33\x8f\xf7\x28\x5f\x6c\x28\x48\xe9\x52\xbf\x03\x6d\x28\xdd\xd7\x68\xfc\xa1\xda\xd0\x4d\x4b\xa8\x39\x64\x7b\x3e\x54\x1e\xda\xba\x56\x2b\x0f\x29\x6b\xd8\x29\xa0\x15\xdb\x17\xf8\xe5\x10\xab\x28\xcd\xcf\xba\xa4\x29\xbf\x38\x91\x87\xe6\x90\xb6\x01\xfa\x16\xe6\x71\x43\x34\xc6\x8e\x5e\xf6\x20\xd9\x29\x40\x0d\xb5\x78\x6d\xd8\xaf\xcd\x7c\x8b\xda\x59\x94\xe1\xf3\xaa\x51\x1b\xeb\x8b\x9f\x61\x16\xf1\x4f\xeb\x7f\xc6\x7e\x04\x5d\x24\x1d\xab\x73\x0d\xf3\x7e\x36\x32\x7b\x12\xfb\xaf\xb0\x77\xfe\xe4\x04\xf5\x55\xb2\x7b\x53\x91\x1e\xd6\x80\x2a\x4a\xd6\x86\x61\x25\xfb\x1e\x3d\x7c\xb1\x0f\x8f\xec\xe2\xa9\xf7\x75\x68\x37\x24\x8f\x6e\x4f\x15\x98\x22\x60\x77\x80\x6e\x75\x20\xa5\x6a\x19\x9b\x6d\x91\xed\x6d\xab\x1e\x75\x5f\xad\x22\xd9\xf5\x66\xe5\xd5\x83\x6d\xc8\x88\xc5\x9e\x7d\x97\xc5\x99\x80\x60\xbc\xe9\xcd\x1e\xe0\xa7\xea\xbf\x76\x5b\x4d\x16\xe1\x6c\xbd\xc2\x6d\xc0\x94\x6c\xc7\x5b\xd5\x2c\xc9\xad\x15\x16\xf3\xaa\x3b\xde\x02\xb7\x3a\x34\xe4\x83\x2b\x48\x9c\x22\x3a\x36\xc1\x03\x3e\x81\x13\xde\xb2\xe1\x7d\x7f\xf3\xb0\xf9\x76\x79\xd8\x8c\x3b\xb7\xc1\xcd\xe7\x9c\x37\x7a\x5f\xb3\x7e\xbc\x05\xd3\xcd\xa6\x29\x66\x92\xd8\x60\x04\x64\xda\x73\xbc\xa5\x49\xf5\x90\xed\x99\x35\x26\x7b\xd1\x9e\xea\xb0\xa4\x18\x32\xf9\x3f\xe1\x8e\xbb\xe8\x9d\x00\x39\x36\xfb\x8e\x0c\xda\xee\x02\xbe\xb0\x3c\x9b\x15\x88\x56\x3c\x13\x18\x32\xf6\x27\xe0\x8e\xd7\x61\x7d\x4a\xff\x71\x19\xbe\xff\xcb\xf0\xb3\x4c\x25\x95\x7d\x1f\x18\xd1\x9a\xa1\x2d\xd5\xbf\xfe\x23\xcb\x3d\xbf\xac\x04\xf6\x7a\x56\x3e\xbc\x02\x5c\x95\x53\xa3\x0f\x84\xd8\x25\x09\x67\x81\x8d\x71\x82\xd5\x19\x85\xf5\x22\x1c\xa6\xba\x10\xa5\xcc\x53\x08\x92\x2e\x92\xac\x96\x25\xa1\x8d\xb0\x7a\x8c\x09\xd1\x29\x41\x78\x12\x30\x39\xbd\x64\x8c\x4c\x87\x46\xa2\x5d\x94\x6e\x31\x3b\x42\x33\xb4\x2e\x8b\x1c\x92\x64\x62\x64\x77\xe5\x48\x98\x97\x4b\xf1\xc0\x41\x9d\x2c\xe9\x3d\x7f\x5f\x70\xd9\x36\x79\xd6\xf0\x67\x8f\x9e\x34\x54\x9e\xca\xbc\x0e\x4c\x1d\x5d\xc4\x36\x78\xba\x51\x67\x9e\x65\x14\x44\x0a\x4a\x50\x83\x5a\x94\xf8\x53\x8d\x8b\x9c\x77\x94\xee\x3b\x6b\xbc\x7f\x4c\x13\x8c\x39\x0f\x9a\x21\x06\x6e\x22\xc2\x1b\xcd\x8a\x2d\x80\x3c\x04\x64\x3e\x3b\x38\xba\x81\x34\x2f\x51\x75\x64\x9e\xa9\x9e\x76\x52\x89\xac\xc8\x27\x22\xa9\x22\xd2\xbe\xc2\x40\x68\x38\xa5\x9d\x48\x3f\x83\x93\x68\x4d\xb3\x3c\xc7\xf2\x97\xcc\x04\xbb\x88\xdd\xc7\x5c\xb8\x36\x3f\xc3\x6c\x2c\x3a\x99\x9b\xf3\x71\x5f\x8a\x2d\x7d\x56\xf9\x6a\xad\xf7\xa0\xda\xde\xea\x6e\x05\x75\x7e\x60\x3b\x29\x75\xe6\x72\x5c\xfd\xb5\xe0\x4a\xf1\xaa\x28\x2a\x79\x77\x2d\x16\x14\xf7\x14\x65\x64\xbe\xbc\x76\xc5\x5e\x7e\x5e\xd3\x5a\x3a\xaf\x65\x4a\x33\x48\xfb\xe1\xcd\x6b\x9e\xdc\x4b\x8b\xa9\x17\xbb\x2a\x3f\x53\x13\x6b\x00\x87\x3f\x3d\x10\x1e\xdd\xdf\x62\x5e\x57\x87\xe7\xc9\x4c\x5a\x0c\x1e\x03\x92\x63\xfb\xc8\x95\x67\x16\x03\xe1\xbf\xca\x62\x3e\x0b\x8d\xec\xe2\xc9\x81\x8e\xec\xe7\x9f\x5e\xbf\xf9\xf9\xa7\xf7\x2f\x7e\x10\x80\x74\x36\x2d\xe6\x9a\xa1\x05\x99\x5e\xfc\xaf\x03\xca\x21\xaf\x55\x24\xf9\xa7\xf7\x2f\xde\x1d\xfc\xf4\x5f\x90\x21\xaf\xa5\x3e\x89\x62\x59\xa8\x0a\x44\xcb\x88\x34\x61\xaa\xb8\x06\x38\x83\xd6\x13\x1f\x03\xcd\x0d\x87\x29\xbf\x2d\x78\x99\xf1\x8c\x16\x09\x03\x8b\xc0\xa9\x28\x72\xe9\x6d\xcd\x07\x08\x7b\x8d\x6f\x5d\x78\x11\xfe\xb5\xb8\x94\x25\xac\xc0\xaf\x26\x7e\x02\xbd\x97\xa5\x72\x9c\x25\x25\x1e\x6b\xcf\xde\x1e\xf4\xc5\xeb\xa2\x82\x27\xf4\x69\x91\x03\x04\xc1\x03\x44\xd5\x30\x08\xed\x68\x0a\x2f\x09\x4a\x57\x53\x21\xc5\x81\xa4\xb9\xd5\x3f\xc1\xd3\xdb\xd9\x7b\x01\x2c\xec\x18\x8e\xd0\x0a\xe3\x3c\x98\xb3\x83\xde\xed\x61\x5c\x2a\xc7\x70\x1d\x7c\x78\x30\x8e\xca\x04\xae\x74\x10\x68\x28\x1e\xe2\xdf\x0f\x1e\xfc\x54\xd4\xf2\xc1\x83\xa1\x18\xb9\x19\x44\xfc\x38\x31\xcb\x92\xfa\xac\x28\xa7\xbd\x64\x92\x17\x55\xad\xc6\x00\xdc\xec\x39\x22\x00\x18\x62\xab\x94\x68\xd2\x8d\x41\x83\x1c\xf4\x86\x50\xb9\x78\x7e\x78\x08\x06\xde\xad\x2c\xd3\x5c\xf3\x34\x39\xcd\x6e\xc4\x95\x33\x1b\x86\x32\x47\xa3\xe7\x87\x87\xac\xfd\x93\xb6\x81\x48\x82\xcd\xa2\xe7\x73\x9e\xab\xfa\xa6\x5f\x94\x13\xfc\xd4\x73\xcd\xf4\x26\x9a\x7e\x07\xe3\xaa\x62\x1f\x3b\x84\x15\x87\x10\x87\xe2\xa0\x16\x66\x7f\x8b\x24\xcb\x10\x07\x16\xf1\xdb\xc0\x5c\x9b\x0f\x9e\x66\x1c\x31\x0e\x09\x08\x2f\x4d\x15\x89\x19\xb6\x94\x8b\x80\x8b\x41\x6c\x6e\x44\xae\xc6\x04\xad\xa6\x05\x3e\x3e\x0f\xed\x73\xf0\x3c\x35\xc1\x90\x00\x03\x2e\x7c\xa9\xe9\xc4\x17\xe8\xfb\x1b\xcb\x5c\x51\xc7\xca\x56\xc9\x11\xba\x0d\x23\x0a\x72\x16\xe4\x3c\x95\xe7\xc9\xa5\xb2\xfe\x23\x14\x85\xc9\x14\x50\x35\x09\x67\x55\xd7\x22\xd9\xd7\x65\x32\xbe\xa8\xc4\xf1\x16\xec\xc1\xe3\x2d\x20\xcc\xe3\x2d\xbd\xe1\x8e\xb7\x0c\x35\x91\x64\xed\x57\x57\x51\x14\xd8\xf9\x4c\x4f\x86\xde\x70\x75\x01\xb1\x50\xc4\x54\x26\x36\xd6\x29\xfa\x21\xe0\x19\xa9\x79\x32\xd6\xd8\x17\x2f\x0b\x8c\x95\x22\xaf\x13\x7c\x84\xc6\x58\x6a\x49\x9a\xf2\x77\x67\xd6\x79\x78\x2c\x57\xb5\x80\x7e\x56\x28\x98\xab\xba\x1a\x72\x90\xbf\x7f\x54\xd7\x48\x02\x86\x81\x32\x06\x71\xeb\x71\xe2\x90\x92\xc0\x8f\xf5\x01\x0d\x30\xaf\x6a\x91\x9a\x48\x75\xfb\xe2\xe1\xce\x4e\x23\x15\x57\xc7\x7a\x33\x43\x92\x8f\x49\x33\x2a\x66\xc9\x58\xd5\x37\xe2\x4f\x1f\x4c\x5d\xb7\x53\x0f\xdc\x65\xd4\xa5\x62\x94\x93\x1e\x0d\x1e\x80\x9b\x29\x6f\xcd\x55\x7b\xc8\x9f\x2f\x74\x51\xc3\x5b\x87\xe2\x83\xab\x66\x17\x81\x3a\x6c\xba\x3e\x95\x17\xa5\x23\x63\xf5\xd3\x77\xfc\xf4\xb0\xb8\x4d\xbe\x0d\xa7\xe5\x65\x02\x71\x9a\xdb\x1f\x84\xca\x87\x02\x5d\x73\xc4\x2d\x40\xbe\xb6\xa9\xc2\xbf\xb2\x25\x51\xf9\xfe\x07\xcc\x74\x6b\x8e\xba\x7d\x37\x59\xdf\x51\x09\x21\x3e\x50\x0c\x02\x57\x8b\xfe\xef\xaf\xa9\xba\x44\x5a\xd9\xff\xf0\x81\x7d\x07\xb8\x73\xbe\x40\xdd\x30\x31\x9c\xcf\x23\xa8\xff\x84\x65\xbb\x65\xad\xeb\xff\x0e\x5a\x53\x91\x88\x33\x3d\x3c\xd7\xff\x2f\x78\x67\x06\xa9\xba\x74\x65\x3a\xb7\x66\xb8\xec\xc8\xc5\xe4\x08\xba\xe4\x7b\x8b\x68\xff\x08\xc5\x77\xc3\xc4\xbd\x03\x0e\xef\x59\x2a\x1f\x62\xd5\x3d\x31\x72\x27\xeb\x28\xf8\x26\x53\xef\x13\x9d\x9e\xc1\x27\x93\x09\xfb\x10\x1c\x21\xfa\x34\xa8\x8b\xc9\x24\x93\xa9\xb8\x54\x09\xf2\x21\x95\xd3\x9d\x5a\xfc\xa2\x77\x23\xc1\x84\x78\x1c\x8d\x0e\x2b\x8c\x1d\x77\x2e\xc5\xf1\xd6\x0b\x62\x2c\x55\x9d\x4c\x64\x5f\xfc\x30\x47\x1b\x3d\xb8\x17\xe9\x4f\xdd\xe0\xf1\x1a\x04\xec\xea\x5c\x9d\xa1\xd8\x42\xe7\x69\x25\x08\xeb\xaa\x71\xd8\x75\x01\xb1\x84\xcd\x85\xf3\x90\x31\x7b\x98\x71\x43\x56\x3a\xc1\x5b\x7d\x6e\x9f\xb2\xdc\xdc\x61\xcf\x20\xb2\x07\x9e\xe5\xba\x7b\x99\xac\x65\x5f\xbc\x92\xfa\x77\x9d\x5c\x50\x7d\xfa\x50\x01\xa0\x2d\x08\x79\x45\xdc\xac\x7d\x25\xf5\xd9\x47\x48\xd7\x78\xdc\xcd\x2b\xf0\x7c\x95\xc1\x39\xf7\x8f\x0a\x0e\xb8\xb4\x18\x57\x83\xf3\xa2\xb8\xa8\x7a\x0e\xc0\xf4\xbc\x9e\x66\x5f\xce\x2b\x09\xe3\xec\x08\x9d\xdc\x89\x32\x3c\xfb\x1e\xf4\x6c\x36\x23\x93\xe2\x07\x16\xa3\xfc\x08\xf7\x58\x57\x54\xb2\x3e\x80\x3f\x4f\xc4\xbe\x30\xdd\x69\x63\x8c\xa4\x27\x54\xc4\x20\x25\x5a\x52\xfe\xab\x47\xd8\x6b\x6c\xe0\xc7\x3b\x3b\xc1\xee\x89\xef\x5f\x81\x10\x4e\xfd\x7e\xdf\xfb\x68\xb7\x8e\x88\x6e\x1f\xfa\x7e\x3a\xaf\x6b\xbd\xb0\xf9\xf3\x4c\x8d\x2f\xf6\x3f\x20\xae\xb4\x1d\x60\x1b\x82\xe6\x07\xdd\x80\xac\x7a\xb1\x91\x22\x79\x2b\x58\x9d\xcb\xee\x6d\x67\x9a\x9b\xdb\xc6\xbe\xfd\xc5\xd8\x6f\x51\x6f\x54\x25\xc6\xba\x0d\xf2\xec\x8b\x92\xb4\x4f\x6b\x48\xaf\x06\xd3\xfe\x81\xf1\xe3\xba\x21\xfd\x80\x26\xe4\xc7\x3b\x3b\xd3\x4a\xb4\x6b\xee\x19\x36\xa2\xc9\x1e\x75\x0c\xe6\xb4\xaa\xc5\x99\xca\xc1\xde\xa3\xba\x52\xf5\xf8\x9c\x80\x73\xdd\xd6\xd0\x64\xdd\xf7\xbb\x0e\xfb\x59\x55\x62\x04\x24\x30\x72\xf1\x12\x30\x7e\xdb\x79\x32\x9b\xc9\xbc\x12\xf2\x7a\x2c\x67\x35\x29\xc0\xf4\x42\x4e\x8b\x4b\xba\x18\xe1\x94\x38\x06\x43\xed\x11\x73\xf1\x6d\xc5\x18\xdd\x04\x4a\x72\x67\x0d\x4f\x6f\x2d\xd6\xb0\x9c\x14\xec\xfe\xbd\xae\xed\x6a\xea\x8a\x46\x09\x52\xf3\xdb\x3a\x5d\x66\xf3\x80\x45\xe6\x52\x1e\x5a\xc8\xaf\x9a\x1f\x59\x28\x0e\xf8\xe5\x9e\x7e\x6c\xe5\x0e\x6f\xbd\x2b\xc2\xca\x3e\x7e\x14\x54\x87\xa9\x13\xad\xfa\xe0\xa2\x05\xf1\x02\x21\x23\x60\x81\x1e\xe4\x44\x20\x78\x3b\x03\xe1\x3f\xb8\x9a\x81\xc4\x4a\xb2\x8e\x3e\x19\x4a\x09\x8b\xab\x97\x24\x29\x2b\xd3\x51\xdd\x0c\x7e\x12\xfb\x5e\x7b\xdb\xdb\xe2\x0b\xf6\xbb\xaf\xaa\xd7\xe6\xaa\xf1\x94\x1e\x04\xa1\x72\x31\xa4\x5f\x58\x0b\xeb\x3d\x68\x82\x93\x4c\xf3\x88\xb9\x19\x15\xcc\x0b\x65\xc5\x04\xb1\x6f\x3c\x49\x31\x87\x73\xad\x55\x79\xc7\x8f\x49\x81\xc5\xbc\xe0\x12\x5e\x1b\x62\x9f\x2e\x95\x4f\x5c\x86\x68\x83\xe6\x6e\xe9\x42\x3f\x04\xe0\x23\x91\x8a\xf1\xae\xd9\x08\x16\x11\x14\x74\xbd\xa7\xab\xd9\x9b\xfc\xc5\xb5\xaa\xf5\xda\xe2\x67\xf3\x51\x4f\xdd\xd2\x91\xd8\x3b\xf4\x26\x9d\xf4\x47\x6f\xfa\xe8\x11\x65\x33\x1c\x53\x05\xc5\x87\x7e\x6d\xc7\xcc\x61\xc4\x94\xcc\xe5\x75\xfd\x3c\xc9\xb2\xd3\x64\x7c\xe1\x96\x4d\x38\x9e\xff\xab\xa5\x5f\x6a\xd3\x91\x64\x7f\x22\xeb\x1f\x64\xa9\x2e\x65\x0a\x87\xc6\xcb\xb2\x98\x9a\xe7\x65\x8e\xc5\x1b\xcd\xd3\xfe\xb5\x94\x67\x5d\x08\x55\x7c\x88\x07\x19\xdb\x78\xba\x57\x07\x9a\x23\xe8\x4c\x7d\x95\x7b\x94\x44\x89\xf0\x1c\x4a\x85\xfb\x15\x4d\xd7\x3e\x9b\xe4\xa6\x0f\xb6\x87\x4b\x87\x13\x84\xd3\x6b\x67\x77\xa5\x5f\x34\x85\xa4\x3a\xcc\x93\x59\x75\x5e\xd4\xdf\x03\xa3\xc5\x40\x06\x6d\xdd\x9d\xb7\xcc\xa7\x7c\x30\x80\x88\xf2\x35\x0c\xc7\xdb\x19\x36\x15\x69\x8b\x8a\xc1\x33\x11\x06\x47\x09\x6b\x31\xa7\xf6\x07\xea\xb8\xb8\x35\x61\x45\x6c\xe8\x13\xca\xa7\x6b\x74\x75\xb8\x0d\x47\xc9\xf4\xd4\x89\x95\xe8\xf6\xac\x4e\x66\x7b\x5b\x84\x9f\xed\x1c\xda\xc2\xc2\x1f\x8b\x29\xec\xe5\xb9\x65\xbf\x38\x7d\xc7\x7a\xb0\xcf\x7b\xf0\xf1\xa3\x08\x3f\xaf\xee\x01\xaa\x83\x16\x77\xc0\xfe\xed\xfe\x32\xd4\xc0\x6b\x32\xa9\xf0\x2f\xb7\x14\x80\x50\x23\x62\x9f\x93\xbd\x8d\x3e\x42\xf9\x30\x8f\x73\xf1\xfb\x41\xa5\xc0\x57\xf9\x36\x68\x24\x3a\x1f\x2f\x16\xe1\x02\x3b\x03\x72\x0a\x46\x9f\xf0\xb8\x1c\x3d\xb2\x2e\x6e\xd5\x06\xd4\x88\x36\xbb\x80\x4a\xdd\x8e\x5b\xc6\xbc\x97\x92\xa8\xa9\xc4\xac\x1e\x8f\x12\x53\x99\xa3\x82\xb3\xd3\x18\x81\xde\x9d\x3a\x97\x92\x26\x3b\x37\x6e\x97\x70\xdd\x3b\x90\xe4\x32\x7a\x8c\xb6\x1a\xf0\x96\xe6\xba\x63\x78\x3c\x56\xe1\xf2\x15\xff\x45\x65\xd9\xcf\x78\x24\x45\xd7\x9c\xa5\x07\xd4\x36\x4e\xf2\xb1\xcc\x7e\x62\xbc\xbf\x1d\x6d\x6a\x22\xeb\xf7\xa4\x6d\x0e\x78\xba\xf9\xdc\xf6\xa8\x88\x24\x50\xc1\x69\xa4\x4f\x1f\x99\x14\xa1\x45\xc1\x2e\xca\x31\x5d\xe1\xc9\x18\x3a\x45\xec\x63\x92\xd8\x77\x52\x8c\xab\xc3\x11\xa5\x69\x8c\x59\x6b\x50\x50\x0e\x97\xb2\x2f\x5a\x08\x5b\xc0\x11\x39\xa8\x11\xca\xd5\xd7\x3f\xed\x7a\x99\x96\x6d\xa2\xfe\x0d\xe2\xd9\xfb\x37\x3f\xbc\x19\x92\x73\x92\x38\x33\x47\xa6\x16\xc6\x21\x4e\xce\x34\xf9\x47\x51\x3a\x2a\x0f\x7b\x4e\x1b\x19\xba\x64\xe3\x84\x88\xa7\x61\xf2\x10\x3b\xb0\xe0\x18\xf2\x46\x30\xc4\x69\xf4\x3a\x4e\xc5\xbb\x7e\x2f\x86\xf4\x2f\x3f\xff\x83\x85\xe6\x64\xc8\x57\xda\x23\x4f\xa3\x97\xf6\x28\x94\xc3\xa7\x58\xc5\xb5\xb3\x95\x63\xd3\xee\x52\xf1\x35\x28\x1c\xa4\x39\xdb\x0f\xdd\x3e\xd7\xeb\xea\x87\xc2\x62\x19\xe0\xfe\x94\x64\x57\xc9\x4d\x25\x4e\xa5\xdb\xb3\x85\x7d\x24\xb0\x50\xc6\xcb\x88\x9e\xf3\x25\xbe\x95\x19\x1b\xf0\x36\x3c\x52\xb6\x2c\xcf\x8a\x72\x0a\x22\x9f\x1d\x76\x67\x89\x58\xe7\x95\xba\x56\x75\xbb\x19\xa3\x0c\xcb\x04\xec\xd1\x17\x39\x35\x89\x87\xac\x15\x7b\x0a\x62\x4c\x27\x08\xd6\x08\x01\xb1\x35\xcf\x8f\x08\x3e\x56\x4c\xb2\xdd\xf0\xf1\xec\x7c\xfa\xe0\xe3\xe5\xf4\x11\x9f\x87\xc6\x1d\x6a\x8f\x38\xc2\x13\x7e\x45\xb1\x5b\xcd\x8d\x96\x13\xbf\xbb\xc5\x20\xcd\xe0\x1a\xd2\xe5\xe8\xa9\xf7\x93\x5f\x64\x86\x96\xce\xbc\xc6\xb4\x20\xb9\xe7\x37\x96\x17\xa9\x7c\x27\xcf\xc4\x53\x71\x64\xdb\x39\x11\x43\x71\x64\x5e\xe9\xfa\x67\x2a\x4f\x7f\x78\xf3\xfa\xa7\x22\xc5\x38\x54\x9d\xae\xeb\xd1\x09\x83\x2e\x9e\x26\x37\xa7\x52\xe7\x22\x89\x75\xef\x68\xa7\x91\xfc\x8c\x0d\x05\xf3\xec\x9e\x78\x3d\xac\x1d\xa3\x85\x4e\x7a\x4c\xf6\x49\x30\x6d\xef\x2d\xa3\x75\x53\x64\x99\x49\xe5\xb8\x89\xfd\xe2\xf8\x58\x5e\xd0\xcc\x3b\x30\xa6\xea\x42\xcd\x28\xc2\x5d\x5d\x98\x53\x0e\x5b\x1c\x0c\x34\x45\x5e\xa1\x22\xd2\x7b\xa7\x2a\xe7\x79\x6e\x75\x76\xaa\x06\xfd\x7e\x65\xf8\xde\xaf\xd3\x79\x55\xff\xaa\xb7\x65\x25\x6b\xbe\xc1\xbf\xb0\x75\xe8\xcb\x28\x76\xe4\xe3\x47\x7a\xf5\x34\x26\xc1\x69\x83\x90\x93\x33\x79\xb8\x84\x98\xbd\x2e\x83\xa5\x56\xc4\x97\x5e\x98\x4b\xcf\x1e\x11\x40\x81\x57\x36\x99\xb6\xed\x02\xb2\x5d\xc9\x10\x24\x81\xfb\x46\x23\xe1\x79\x15\xb9\x6a\xba\xc1\x9a\x77\x78\xf4\xd8\xf8\x60\xbc\xa1\x90\x44\xbb\x78\x24\xb1\x71\xa8\x7c\xb2\xbc\x07\x41\xe1\x22\x77\x32\xed\x8b\x3c\x6d\x73\xc2\x5a\x35\x81\x8b\x16\x64\xe1\x92\x2c\x5b\x94\xd5\xcb\xb2\x68\x3e\x83\x85\x72\x2c\x2c\x2a\xcd\x30\xf6\x1b\xe3\x61\xc0\x95\x1b\xac\xeb\x61\x94\x75\x91\x04\xc1\x38\x97\x13\x22\x36\xd9\xcc\x9c\x73\x44\x59\x93\x93\x15\x86\x62\x31\x5f\xb2\x1b\x5b\xf7\x6b\xe1\xbe\xa6\xab\x2e\xdb\x8c\x92\xf4\x18\x9f\xba\xfd\xfc\x4b\xf4\x72\xe2\x79\xe8\x96\x19\x34\x82\xf7\xb0\xf9\xf4\xca\x35\x6a\x59\x67\xaf\xb9\xcb\xe3\x8a\xad\xe6\x77\xda\xdb\x69\x8d\x9d\xf5\xb0\xb1\xb3\x1c\x17\x06\xc1\x77\xf9\xec\xac\xb1\xb5\xbc\xe9\x5e\x63\x67\xad\x33\xe5\x9b\x6c\xa4\xa6\x24\xe5\xdd\x3f\x22\x72\x16\x97\x12\x9b\x7a\xa7\x88\xa8\xd7\xc8\x44\x8d\x32\xb9\x69\x85\xfe\x2a\x26\xc6\xf0\xb9\xf5\xe2\x1c\xf1\x39\x37\x42\xa0\xec\x8a\x31\xd5\xcc\xc3\xc1\x33\xdb\x3d\x32\x8d\xb4\xef\xff\x68\x2f\xe0\x42\x51\x5f\x49\x55\xa6\xa2\xc4\xf0\x7a\x79\x4a\x26\x00\x57\x0a\xe2\xa3\xd9\xd0\xae\xd8\x1b\xd3\x54\x15\x1a\x81\xa8\x5c\xd4\xb2\x42\xb9\xbb\x2a\x8c\xc0\x8b\xa0\x8e\xf3\x12\x83\x7c\xd8\xea\xe8\xc1\x1c\xe7\x4a\x24\xf9\x8d\x98\x49\x88\xe5\x16\x6d\xe8\x4c\x9f\xbe\x57\xd2\xb4\x46\xe2\xf2\xd8\x4d\xa7\x91\x22\xbd\xc5\xb4\x93\xe2\x6d\xb4\x65\xb3\x17\xa3\xa1\xa0\x56\x6f\x35\x16\x35\xd8\x60\xce\x8f\x62\xcc\x39\x19\x83\x11\xce\xbe\xa8\xcb\xb9\x7c\xe2\x71\x8c\x7c\x41\x8b\x18\x7c\x37\x54\x4d\x43\x3d\xde\x7e\xb2\x55\xf3\x0b\x8c\xdd\x66\x8f\x96\x50\x23\x9f\x58\x6a\xad\x71\x01\x58\xdc\x57\x22\x7e\xaf\xcb\xac\x63\xd1\x6e\xb9\xea\x6c\xdc\xbb\xa0\xd6\xd8\xb2\x04\xac\x8b\xb7\xb8\x80\xab\x75\xc5\x79\x92\xa7\x19\x53\x7d\x47\xa9\xc6\x64\x62\x87\x5f\xbe\xe4\xdc\x6b\x7e\xec\x9b\xa7\xde\xa5\x07\xa1\xab\x3d\x2d\x64\xf5\x53\x51\xff\x98\x5c\x4a\x3a\x7a\xdf\x94\x26\x46\xae\xbb\x97\x8b\x7d\xa7\x3d\xf8\x82\x35\x9a\xa4\xe9\x8b\x3c\x35\xf9\x3d\xbd\xc3\x17\xd0\xef\x8f\x1f\x97\xb6\xc0\x56\xa7\xb2\x67\x7f\x93\xf5\x75\xc5\xce\xaa\xa3\x2e\xb8\x10\xfa\x1d\x0b\x14\x70\xfa\x62\xf1\x70\xe1\x2d\xa7\xd1\x3a\xdc\x76\xc0\xb6\xb5\x49\x1c\x27\x7e\x04\xee\xe0\x86\xf3\xd0\xbf\xe1\x98\x0c\x3e\xf9\x63\x46\x76\xcd\xf1\xce\x6d\x7f\x20\x0d\x59\x8f\xd7\xd5\x80\x2b\x8d\xa8\x7f\xd6\x9e\x70\x2a\xb7\xec\xb6\x4b\xc6\xea\x8c\xf6\xf1\x8b\x2f\x1e\xae\xa1\xed\x0c\xd4\x8a\x4b\x9e\x26\xfc\x83\x2b\x60\x73\x7f\x9a\xd1\xab\x8a\x9b\x3e\x36\xf9\xcc\x97\x93\xe5\x6e\x7a\x74\xc2\x8b\x69\x90\x49\x79\xc9\xfc\x21\x2b\xc8\xc8\x93\x78\x11\x5f\x3f\xe1\x97\xf1\xd2\x78\x21\xab\x1c\xe3\xb9\xf1\x23\xcf\x26\x23\xfd\x90\x61\x07\x64\xb3\x5d\x19\x34\xe7\xb4\x92\x3c\x97\x61\x5f\xbc\x5f\x1e\x49\x86\xfd\xf3\x12\x79\xb1\x22\x3a\x63\x45\x73\xb2\xdc\x45\x2d\x9e\x97\x63\xdc\xb9\xec\x10\x5c\x3d\x92\x1b\xa0\x18\x78\xe6\xe6\x4c\x14\x8d\xa9\xb7\x02\x6c\x34\x67\xb3\x03\x20\x2f\x46\xf3\xfa\xcd\x1b\x36\xe3\xe7\xa4\xaf\x21\xb1\x9a\x47\xc2\xa5\x16\xe0\x6d\x56\x51\xc4\xbf\x54\xd1\xbf\x9c\x30\xf1\x8b\x47\x76\xf8\x89\xf4\x9f\xf0\xb7\x74\x39\xa5\xcd\x40\xc4\x40\xb9\xbd\x95\xc6\x6f\x05\x6f\xc1\x2d\x97\xf7\x5b\xa6\xf6\xa7\xad\xd8\xce\x2b\xff\x69\x32\xd2\xf4\x30\xe7\x54\xcf\xd4\x06\xfe\xf3\x6c\x22\xec\xc7\x81\x48\xb2\xac\xb8\xaa\x48\xff\x0c\x71\xf2\xdd\xe9\x6c\x03\xfb\x47\x1d\x0d\xa3\xd6\xde\x4d\xf4\x3f\xe1\x10\x00\xcd\x93\xa5\xc0\xcb\x06\x69\xd9\x1d\xdf\x01\x58\x19\x62\x95\x2d\xf1\xd4\xa6\x10\xef\xeb\xb2\x55\xef\x98\xe3\xbb\x3f\xce\x8a\xdc\x76\x0a\x3f\x3d\xa7\x72\xfd\x22\xcf\x6e\xda\x16\x80\xcf\x2b\x4f\x91\xfa\x7c\x99\x92\x26\xcd\x0d\xed\xc9\x71\x7e\x6b\x2a\xf5\x8d\x40\xd8\x3b\x1e\x69\x0f\xdf\xdf\xcc\xa4\xf7\xc0\xc7\xe7\xe5\x89\x57\x82\x7b\xe9\xad\xef\xe8\x17\x80\xff\x3d\x23\x17\x01\x17\x6d\xb8\x2e\x20\x64\xb5\xc1\x37\x00\xd4\x76\x83\x82\xcd\xac\x47\xa9\xbc\x31\x14\xab\xea\x64\x7c\x51\x5c\xca\xf2\x2c\x2b\xae\x20\x6a\x6c\x32\x78\xbc\xbb\xbb\xf7\xf5\xee\xc3\x9d\xc1\xa3\xaf\xbe\xde\xfd\xf6\xe1\x1e\x16\xa1\x82\x42\xf4\xc8\xc4\x87\x08\x6f\x64\x21\xe0\xe6\x95\x4c\xbb\xf8\x7d\x64\x1c\x4e\x66\x49\x45\xb6\xe5\xf6\x46\x60\x16\xb9\xb2\x35\x0a\x21\xda\xb2\x3f\xe9\x8b\x11\x6d\x02\xb0\x3e\x1a\x27\xf3\x0a\x4c\xd3\x4b\x1b\x45\xf2\x1c\x7c\x5b\x4a\x39\xae\x4d\x50\x7b\x32\x7a\xe2\x98\x7d\xb6\x87\xe3\xf3\x24\x9f\x68\x2e\x35\xba\x90\xe4\xb2\x17\x1a\x67\xeb\x8b\x51\xc2\xbf\xc0\xb2\x8d\x44\x22\x72\x79\xc5\xfa\xe7\x06\x6b\xa6\xf4\x94\x83\xad\x17\x7e\xa5\x60\xb4\x0d\xad\xcb\x94\x35\xce\xea\x6b\x57\x52\xb2\x9f\x47\xfa\x72\x36\xf0\x8c\xd6\x7b\xfa\x53\xff\x1f\x95\xb3\xe9\x63\x91\x7d\xc9\xbc\x6f\x91\xed\xfa\x69\x56\x9c\x0e\x76\x1f\x3e\x7a\xf8\xf8\xec\x9b\x6f\xbf\x3e\x7d\x98\x9c\x7e\xbd\x7b\xf6\x95\xdc\xfd\x36\xfd\x7a\xef\xd1\xd9\xee\xa3\xc7\x8f\xbf\xfd\xea\xec\xf1\xb7\xbb\x3b\x8f\xbf\xd9\x1d\x0f\x16\xb7\xfd\xe5\xab\x87\x5f\xed\xf5\x5e\x3d\x7a\xf8\x75\xc7\x73\x19\xa2\xc9\xf0\x3c\x02\xcf\x93\x99\xd5\x34\x90\x90\x3d\x34\x9b\x9c\x36\x28\xee\x71\x2f\xc0\xbd\xab\x40\x5f\x33\x79\x85\x2a\xaf\x6a\x7d\x5f\x79\x73\xd6\xa6\xe2\x18\xbc\xa4\x09\xb3\xfe\x4c\x8c\x0c\x49\x8d\x70\x93\x33\xcf\xc1\xd4\x18\xed\xa3\x29\x14\x6e\x1a\x0b\xbf\x82\x81\xd7\x8d\x7c\xa6\x0c\x45\x6a\x52\x95\xa9\xf3\xf5\x5b\x60\x1f\x3a\xaf\x44\x9b\x5b\xdb\x75\xb9\x41\x5c\x97\xea\x62\x26\x6c\x5d\x66\xc0\xd6\xe9\x8a\xab\x73\x35\x3e\xf7\xba\x6a\x61\xd2\x18\x5a\xaa\x78\x60\x43\xac\x92\x9b\x98\x6f\xbd\xde\xf7\x76\xa7\x35\xdc\xd4\x3f\x42\x7b\x4a\x26\x62\xaa\x9c\x99\x55\xee\x3e\x46\xb3\x4a\xa4\x46\xdf\xa4\xd2\x50\xe8\x5f\x5f\xdf\x38\xac\x61\xeb\x13\xba\xff\x61\x04\x96\xcb\xfa\x7f\x7a\x7f\xc2\x92\xb7\xa3\x5b\x8c\xd7\x8f\x45\x3b\xb7\xa6\x37\x81\xc1\xa5\xb0\x26\x8f\xcb\x7c\x68\xa3\x18\xfc\x7a\xc5\x38\x98\xd4\x52\xa8\xa9\x93\xce\x32\xdc\xa9\xc3\x73\x8a\x63\x6b\x27\xf4\x89\xa8\x4b\x35\x99\xc8\x12\xad\x8c\x51\x7e\x24\x9f\x00\x32\x9f\x66\x7d\x56\xf9\x4a\xd7\xc9\xc0\xe5\x82\x28\xd4\xb9\x4e\x54\x82\xfc\xa0\x84\x9a\x4e\x65\xaa\x92\x5a\x66\x37\x22\x01\x5f\x3e\xab\xe6\x79\xe0\xa1\xf9\x45\xbd\x36\x8c\xff\x8c\x75\x87\x39\xde\xca\x92\xdf\x6e\xb0\xf6\xe3\xad\xc0\x70\x14\x22\x30\x1a\x1e\x74\xa6\xca\xaa\x16\x23\x20\x12\x00\xc3\x81\x7a\x34\x69\x56\xb2\x16\x23\x2e\x1e\x8d\xfa\xe2\xd9\x99\x71\x0a\xc1\x72\x38\x45\x6c\x73\xc4\x4c\x54\xeb\xe4\x86\x1a\xa3\xd1\x76\x85\xbc\x94\xb9\xee\x07\xca\x50\x28\xcf\xcc\xf3\x4c\xb3\x75\xdd\x7c\x92\x55\x05\xd1\xfe\x8d\x18\x79\x02\x99\x87\x38\xc6\x7b\xf7\xa9\x8b\xa1\xbb\xe9\xd6\x03\x75\x5b\xe0\xdb\x92\x8c\xcf\x65\x65\xec\x6b\x69\x0f\x23\x35\x38\xd7\xec\x3a\xec\xa5\xbe\xba\xdd\x14\xf3\x56\x2a\x66\x70\x4e\x83\x8f\x12\xd9\x5a\xf8\x73\x64\x5b\xa2\xe0\x97\x95\x71\x9f\xe0\x03\xf5\x2a\xff\xd4\x91\x5a\x17\x1f\x7a\xb9\x60\xc4\xce\x56\xf2\xea\x5c\xe6\x54\x1f\x74\x4e\x2f\x37\x74\x02\xc0\x80\x26\x49\x99\x66\x2c\x42\x85\xb3\x22\x56\xf9\x28\x20\xc7\x73\xcb\x5d\x8d\x27\x11\x58\x8d\x8b\xd3\xa2\x3e\x17\x23\x94\xad\x47\xa0\xb6\x04\xdb\x61\x1b\x2a\xd4\xe7\x6f\xdf\x31\x0f\x33\xa7\x22\xcd\x89\x4e\x92\xcc\x3c\x1d\x92\x9b\x43\xa6\x2e\xa4\xa9\x5c\xe5\x93\xd1\x80\xfe\x96\xe9\x08\xb5\x15\xfc\x5c\xfe\x0e\xdd\x96\x92\x34\xad\x04\xfa\x0b\x19\x27\xad\x70\x5a\xfa\xe2\xc7\xe2\x4a\x5e\x6a\x39\x57\xf1\x6d\xf4\x9d\x18\xfd\xd5\x3b\x48\xbf\xe3\x4e\x55\x20\x91\x2d\xd8\x31\xb0\x1a\xa5\xac\xf4\x6a\xa9\xdc\x56\xc7\xfa\x30\xa2\xbb\x6d\xef\xc1\xc8\xf8\xf3\x77\xb1\xca\xab\xe4\xc6\x6e\xd7\xf1\x39\xb8\xa7\xd6\x05\x45\xce\x54\xb5\xad\x2b\x55\x67\x20\x2a\xd6\xd9\x0d\x27\x2a\x63\xdd\xb1\x82\x9a\x5e\xe4\x80\xed\x5b\x94\xc6\x1d\xb7\x31\x06\x0f\x71\x40\xae\xb5\x19\x23\x95\x6a\x26\xbb\xa8\xce\x75\xa8\xfe\x7d\xd3\x39\x83\xd5\x07\xeb\x35\x55\x59\xa6\xd0\xeb\xd9\x22\x19\x9b\xf3\xc1\xf0\x9f\x91\x7f\x7d\xf3\x43\x10\x78\x14\xf9\xbf\x8b\xb9\x98\x26\x37\x96\x51\x25\xa2\x52\xf9\x24\x93\x56\x37\xa8\x2f\x57\xe0\x23\xe8\x46\x35\x5c\x7c\x66\x7b\xbe\x0e\xe1\x29\x49\xbf\x8b\x12\x62\xb6\x5c\xaa\x74\x9e\x64\xd9\xcd\x3a\xb5\x7d\x30\xe7\xb1\x59\xee\xc7\x3b\x3b\x46\x42\x31\x8b\xf5\x90\x7f\x82\xb9\x66\x99\x6e\x17\x75\xa6\xe7\x36\x2f\xb1\x1b\x2b\x94\x3b\x76\x00\x2d\x8c\x5c\x09\xfc\xed\x15\x18\xed\xf0\x74\xe0\x9e\xd1\x64\xca\x04\xe8\xd9\xe2\x03\xda\x65\x89\x8f\xe2\x03\x8e\xe2\xe9\xd0\x46\x0e\xd2\x75\xb0\x9f\xd8\x49\xfb\xc1\x0e\x08\x03\xe9\xe0\x3c\x0d\x9d\x2c\x48\x5f\x82\xf0\x4e\x60\x7b\xcf\xcc\xbe\xd0\x7d\xfa\x89\xd3\xd3\x7d\x11\xd7\xaf\x42\x99\x19\x97\x4a\xec\x55\x5d\x93\x47\x1b\x94\x74\x19\x68\xdf\x92\x72\x32\x9f\x82\x0f\x64\x26\xf3\x49\x7d\xde\xd5\x5f\xc0\x9e\x52\x5e\x89\x67\x65\x99\xdc\xb4\x21\xe7\x77\x62\x57\x3c\xc5\x42\x3d\xb1\x2b\x86\x62\xa7\xd3\x15\xbf\x5e\xc8\x1b\xb1\x2f\x76\x9f\xe0\x5f\x7f\x85\x74\xfc\xf1\x97\xbf\x70\x5d\x7f\x39\xa9\x8e\x20\x4b\x4f\xec\x9e\xf0\x56\xe1\xeb\xc9\x02\xd3\xb1\x19\x98\x98\x65\x37\x6d\x34\xcb\xea\x8a\x23\x18\xee\x89\x09\x31\xa8\xab\xed\xd0\xa5\xba\x29\xa6\xa7\xa9\x96\x5b\xe7\x55\x5d\x4c\x39\xeb\x03\x04\x14\x94\xb8\xfa\xe2\x79\x20\x79\xbb\x7c\x0e\xca\x43\xdf\x72\x41\x7b\xae\x0f\x8b\x44\x8c\xd2\x22\x97\x23\x7b\xbd\xec\x8b\x67\x4e\xa9\x01\x80\x28\x10\xb5\x7e\x52\x26\xf0\x00\xee\x37\x4c\x35\x66\xc5\x44\x8d\xfb\xc2\x5a\x29\x02\xc2\x61\xad\xd0\xcd\x2a\x15\x49\x05\x1e\x7a\x74\x7d\x05\x5c\xc4\x18\x27\x70\x27\xd3\x55\xfc\x7e\x8c\x77\xe1\xf8\x0d\x79\x89\x18\xef\x13\xd3\xfe\x87\x36\x2a\xdb\xf5\xb0\xc1\x35\xc9\xee\x6d\x31\x18\x18\xbf\x30\x31\xd6\x77\x63\x3b\x56\x3d\xc7\xf0\x5e\xa4\xb7\xd2\x34\x29\x2f\x48\x7a\xd3\xb2\x06\x5e\x8c\x5c\x5e\x5b\x1b\xdc\xa9\x75\xe3\xba\xa0\x55\xb1\xb7\xbc\x5a\x5b\xd8\x8f\xae\x70\xae\x5e\x71\x6e\x81\x67\x8d\x37\x12\xce\xcb\xf5\xbe\x6b\x50\x8c\x7d\x05\x38\x03\xd6\x4c\xfe\x48\xe8\xfa\x27\xad\xee\xcc\x5c\xc5\x94\x45\xcf\xe9\x8b\x67\xb9\x90\xd7\x75\x09\x81\xcf\x93\xa9\x44\x9f\x2c\xe8\x8f\xaa\xac\xfd\x07\xac\x40\x35\x77\x88\x3b\x14\x08\x4b\x12\x8a\x0a\x9d\x70\xe8\xaf\xa7\x2a\x51\x8c\xf5\x3d\x10\x5c\xea\x51\xc4\x25\xbf\x08\x12\xb0\x3f\x13\x29\x20\xa3\x7b\x49\x7c\x09\xd6\x7e\x28\x7e\xac\xa7\x19\xdd\x8a\xbb\x82\x0d\x69\x28\xf4\xa1\xd8\x11\xbd\xef\xc0\x72\x92\x4d\x7d\xd1\x94\x8f\xd7\x99\xf3\xc4\x8a\xfa\x7f\x4c\xf9\xd2\x29\x6f\x4e\x75\x10\x55\xe0\x4e\xb3\xad\xef\x44\x7f\x4c\xf6\x06\xf4\x2d\xd3\x4f\xe3\x2a\x46\xcd\x1e\x99\xf4\xff\xa9\x09\x58\x30\xda\x40\x18\xde\x98\xbc\xfe\xa5\x46\xfa\xa9\x7b\x89\xd4\x0b\x9f\x75\xac\xf7\x34\xd4\x26\x05\x23\xec\xd2\x87\x5b\xb0\xcf\xfb\x09\x9d\x68\x25\x33\x74\x29\x04\x06\xc6\x1c\x67\xfa\x66\x5b\xd2\x95\x54\xa4\xc5\x18\x44\xba\x04\x0f\xf5\xe3\xdc\x96\xc8\x8b\x02\x5c\xb9\x6f\x83\xa7\x0c\x92\xb7\x6d\xc4\xfc\x63\xd2\x6f\xa1\x47\x49\x53\xd5\xe2\xbe\x07\x9a\x09\x97\x60\xae\x1b\xee\x0b\x5d\x36\xc0\x3b\xc9\xdd\xea\xec\x4f\x7b\x4e\xe9\x4e\x76\x43\x76\x1a\x7e\xd4\x93\xc5\xbf\x41\x5d\xc1\x87\x46\x41\x9a\x64\xfd\x09\x31\x92\xd9\x14\x70\x80\x22\xee\x68\xc9\xb2\x58\x78\x22\xeb\x54\xc9\x13\x1d\x38\x11\xf3\x1d\x0a\x33\x60\x71\xeb\x38\x1a\x54\x4e\xc5\xad\x0f\x50\x80\x89\xc5\xde\xa7\x1c\x60\x96\xbe\x40\x94\xf2\x2c\x2b\xae\x7c\x83\x03\xfd\x05\xa8\x8f\x84\x7f\x63\x28\xa0\x45\xbb\x6a\x5c\x16\x59\xf6\x1e\xe0\x4b\x6f\x5d\x3b\x9e\x83\x8e\x6d\x0b\xdd\x2d\xe9\x1d\x15\x41\xf2\x2a\x06\x05\xed\x5e\xc7\xe3\xef\xe2\x04\x71\x5c\x11\xaa\x09\xe1\x06\xb3\x10\xdc\x14\x1b\xd5\xe1\x25\xd3\x4f\x8e\x97\xfc\xe1\xd6\x81\x25\x43\x32\x0f\x86\x41\x77\x1b\x73\xf7\x1f\x62\x7d\x0c\x90\xe3\x07\xa3\x15\xf8\xf8\x31\x74\xf1\xd9\x67\x2e\x3e\xce\x02\xde\x59\xbe\x1f\xd1\x80\xfb\xd3\x22\x95\x27\xba\x02\x83\xc1\x9e\x4a\xc0\x3b\x6d\xb4\xa5\x3f\x1f\xd3\xdb\xe2\xed\xbd\x81\xf5\x57\x99\x1a\xcb\xf4\x7d\x01\xd7\xc0\x35\xea\xf0\xf2\xff\xab\xc1\xfe\x6f\x08\xb1\x43\xa5\xe6\x95\x7c\x0f\xc1\xab\xc3\x80\x00\x26\xc1\x6b\x01\x37\x48\x37\x42\xea\x0e\x12\xad\x3f\x60\x9a\x1b\xc4\x47\xf3\xdb\x7b\x59\x94\x17\xef\xe4\x99\xcb\x8f\x18\x6a\x2e\xa5\xf5\xc4\x63\xbf\x13\x59\x1f\x8e\x93\x4c\xb6\x41\x3f\xe2\x6f\xcc\xe3\xad\x0a\x92\x5c\xe8\x7f\xc8\xd4\x15\xf8\xd6\x6f\x83\xf9\xbf\x4e\xea\xf3\xfe\xac\xb8\x32\xc9\x7b\x1d\x48\x3e\xde\x02\x08\x59\x83\x8b\xe0\x87\x24\x60\x80\x3e\x48\xbc\x0e\xb5\x87\xa8\x19\x06\x7a\x56\x94\xd3\xa1\xeb\xe4\x6e\xc7\x5c\xe7\x19\xe4\xcf\x1a\x15\x60\x1c\xd4\xe3\x66\x70\xa0\xf7\xe7\x52\xfc\x57\x59\x5c\xf1\xab\x38\x3d\x1e\x8b\x53\x80\xa7\x10\x47\xef\x8b\x22\xab\xd5\xec\xa4\x3d\x70\x98\x50\x83\x1a\x3f\x56\x83\x8e\xbe\xf9\x23\xf2\xc9\xdb\x62\x56\x5c\xca\xd2\xcf\x38\xc3\x8f\x83\x0e\x47\x94\x82\xfc\x07\x35\x86\x3f\x3a\x8a\xd3\xd1\x1d\xde\x5a\x3b\x42\xe5\x00\x45\x9a\xa1\x5a\xd5\x81\x52\xc0\x18\xd7\x46\xdb\xd7\xb9\xef\x8a\xb2\xef\x43\xd5\x1f\xd6\xa5\x1a\xd7\xaf\x43\x84\x7c\xfa\x5c\xa4\xf2\x79\x31\x9d\x25\x75\x88\x93\x1f\xa6\x37\xd0\xf2\x6d\xbd\xab\xd1\xf2\x29\x2b\x83\xc2\xf7\x20\xe6\x99\xbd\x98\xb3\x7a\x8a\xdb\x3b\x71\xeb\xa5\x45\x76\x4b\x9e\x41\xd4\x42\x53\x28\x6b\xda\x14\x35\x6a\x62\x46\x4a\x0b\xcc\x93\xb8\xcd\xd3\x22\x6b\xa7\x65\xc7\x1b\xcd\xd0\xaa\x83\x92\x99\x99\x05\x05\xbc\x60\xae\x10\x19\xc4\xcd\xfb\x82\xe3\xd6\xf1\x34\xbd\xa6\xb6\x4d\xff\xb3\x1f\x06\x36\x92\xe6\xfa\x12\xd6\xc7\xbb\xc4\x98\xf5\x30\x9e\xff\xd3\xc3\x01\x2c\x20\x55\xdf\x96\x2b\x66\x64\xc5\x8c\xaa\x42\x9b\xab\xc0\xc8\xca\x37\xbf\x72\x51\x58\xf5\x5a\x46\xac\xbc\x22\xd3\x15\x44\x09\xd0\xd9\x4b\x1e\x19\x40\x6f\x7b\x54\x94\x81\x9d\xf9\xbc\x2e\x9c\x1f\xde\x82\x4c\x35\x9c\x68\xfb\xf6\x70\x63\x49\x32\x5f\xb0\x79\xa1\x4c\x7f\x9e\x57\xb5\xce\xf0\x6b\x65\x73\x70\xbc\xf9\xb0\x9c\xad\xd6\x59\xe2\x79\x5d\x02\x1b\x59\x9b\x49\x5f\x9c\xd5\x24\xc7\x7c\xee\xb8\xb3\x36\x57\x7d\x00\xe7\xd0\xdc\xcc\x16\x41\x03\xee\x46\x89\x05\xa3\x78\x6a\xfb\x31\x74\x3e\x4c\x5d\xd6\x2e\x9f\x68\x8c\x4a\xa5\x7e\x93\x29\x5b\x94\x88\x99\xfe\xb2\x7c\x4d\x2f\x01\x3a\x97\x9d\xc5\xbc\xee\xd1\x9b\xd2\x6a\x24\x1a\x4e\x65\xbe\xf9\x7f\xa3\x3e\xc1\x8c\xac\xc1\x47\x7d\xc1\xc0\x8f\x02\x83\xf5\xae\x08\x1a\xb6\x66\xd7\x4b\x3a\xe3\x5b\x57\x0b\xeb\xbf\xea\x0b\x92\x04\xa2\xb2\xd7\x09\x72\xe7\x0b\x7d\x51\x61\x74\x55\xd4\x19\x55\xdf\x51\x69\x97\xfd\xaf\xeb\x6b\x84\xd4\x86\xad\xa4\x7f\x39\xaf\x91\xf3\xe4\x52\x8a\xc4\xbd\x49\x36\x9e\x3d\x6c\x2c\x7f\x67\xf6\x8d\x33\xea\xb5\xcb\xfd\xe0\x03\x9f\x25\xeb\x27\x91\x87\x1e\x4a\x0d\xb7\xea\x20\xb3\xa7\x71\xea\x2c\x03\x61\xf0\xcc\x07\x1d\x79\xb3\xe3\x68\x29\xb1\x39\x6e\x14\x6e\x10\x73\x28\x2e\x2d\xee\xd3\xa4\xdf\x6b\x47\xbe\xee\x06\x08\x6b\x73\x88\x4f\x73\xce\xbd\x8f\x5c\x81\x20\x96\x9f\xc3\xef\x87\x9f\x7d\xcf\x86\x3c\x22\x23\xef\xc7\xee\x88\x1f\xbc\xd3\x90\xee\x46\xe1\xf9\x66\xaf\x56\x34\x93\x5d\xee\xe1\x9f\xca\x21\x01\xf7\xb6\x28\x99\x93\x66\xe4\x46\xb7\x1f\xeb\x5d\xdf\x5c\x05\x59\x59\xb8\xae\x2d\xca\xae\xd3\x3c\x1f\x20\x53\x41\x14\x30\x02\xee\x8c\x70\x0c\x33\xc2\x63\xd0\x9e\xc8\x7f\xf9\x53\xf6\x44\xd6\xcf\xe6\x75\xf1\xa3\x54\x93\xf3\xda\xf4\x1d\x96\xa6\x3f\xce\x94\xcc\x6b\x4c\x71\x14\xc7\xce\x06\xeb\xb7\xb2\xcf\x7b\x15\x23\x67\xde\x85\xc6\x4c\x85\xef\x7a\xa8\x07\x08\x2e\xaf\x62\x5f\x1c\x35\x7b\x8f\xf6\xbf\xed\x16\xc9\xfc\xad\x6e\xb3\xc9\xa1\x68\x4c\x39\xdd\x8f\x53\x73\x1f\x86\xb5\x8c\xcc\x8d\xa9\xdd\x5e\x20\x96\xd7\x2f\x1e\x88\x9d\xfe\x57\x5f\x7d\xb5\xb4\x9d\x93\xfe\x3f\x0a\x95\xb7\x5b\xdd\x56\xc7\x5b\xc1\xa2\x01\xb2\x65\x5c\xaf\x17\xee\x7e\xf4\xef\x88\xee\x52\x90\x19\xd7\xd9\xe6\x32\x6d\x94\xb7\x02\xe5\xaa\xf2\x98\x31\x56\x7e\x33\x26\xe1\x3b\xbf\x35\x37\xc1\xde\xe7\xdd\xd2\xd7\xaa\xfe\x94\x1d\xbd\xb7\xe1\x96\xde\xfb\x63\x4f\xff\xbb\xec\x69\xf0\x94\xe3\x19\x1f\x3e\x7c\x18\xdf\xe7\xc1\x14\x18\xa8\xe4\x7d\xd1\xda\x69\x35\x93\x6d\xdf\x90\xf0\x51\xe5\xb1\xd3\xff\xfa\x71\x83\x65\x5c\xab\xda\xe7\x18\xd7\xaa\xf6\x64\x8b\x05\x3c\xc2\x5c\x2b\xd7\xd8\xe2\xc8\x21\xec\xcd\x20\xf4\x23\xb2\x5b\x39\x70\x7a\x43\x21\xf0\x27\x08\x61\x62\xbd\xde\x1a\xb8\x5c\xcb\x84\x4d\x57\x83\x18\xba\x2a\xd6\xdf\x22\x70\xc7\x61\xe4\xcc\x7c\xe7\x72\x8c\xac\x12\xa1\xfa\x8f\x1f\x9d\xdb\xa2\xe7\x3f\x67\x6f\x1c\x2f\x00\xe0\xbb\x1d\xf1\x56\x6d\x48\xe5\xac\x33\xf0\x0c\x62\x5d\xf7\x78\xcf\x3a\x4f\x3c\xb9\xad\x2b\x8e\x4e\x36\x8b\xa7\x1c\xbb\x38\x37\xe2\x4e\x99\x27\x0f\xfb\xa4\x21\x18\x64\x75\xd7\x51\x20\x18\xd0\x6f\x74\xf1\x21\xa5\x9b\x79\x21\x61\x87\x90\x9f\x24\xd3\xa1\x7f\x42\xf9\xc9\xa0\x02\xf4\x25\x55\x97\x01\x5e\x50\x1c\xe9\x7a\x09\xac\x5e\xae\x1b\x61\xcf\x2c\xde\xb9\x46\xc9\xa1\xd1\x47\xd4\x05\x2e\x3c\x43\x18\x9d\xe9\xc9\x98\x67\x99\xf0\xce\x17\x16\x46\xcb\x11\x01\x61\x36\x73\x3f\x21\x9f\x5e\x62\x0b\xcc\x1d\x88\xac\x66\x2d\x12\x3c\x8d\x8e\xbe\x66\x42\x08\xb2\xce\x0f\xb5\x40\x97\x0a\x8c\x85\xe5\xb9\x54\x95\x3a\x55\x19\x94\x25\xab\xfb\x7d\x17\xf6\x02\x2e\xea\xa4\x3a\x7b\x2a\x5a\xe7\x2a\x4d\x65\xde\xe2\x14\x61\xef\x23\x5d\x52\xf5\x12\xdc\x38\xfd\xec\x5a\xdd\x61\x9f\x69\xa4\x5c\x07\x20\x2e\x99\xbd\x91\xdb\x63\x9b\xfb\x49\x3d\xb1\x4c\x6d\xc3\xb8\x64\xff\x55\x16\x57\x7f\xc4\x23\xfb\x0c\xf1\xc8\x8c\x79\xa9\xb1\xe7\x5e\x18\x83\x68\x49\x20\xee\x45\x86\xb8\xd6\x22\x9a\x0c\xd7\x85\xcc\xc7\x60\x0a\x5f\x8a\xd6\xcb\x06\x32\x20\x04\xe8\xca\x0b\x40\xaf\x98\xa8\x4b\x09\xef\x8d\x55\xcb\x58\x8c\xce\x2b\x29\x46\x56\xff\x84\x8c\xd4\x31\x3a\xd0\x63\x59\x27\x19\x3d\xa5\xe3\x24\x6f\xd5\x26\xf6\x11\xc6\xeb\x95\x67\xe6\x31\x3b\xb0\x5e\x8f\x04\xda\x0a\x79\xe8\x26\xe1\xb6\xaa\xcd\x9c\x40\xec\xe5\xd9\x0f\xa3\xb5\xb2\xc5\x66\x70\xb5\x75\xad\xb2\x16\x96\x5c\xc3\xde\x65\x61\xd9\x75\x8c\x2a\xa2\x85\xd7\x31\x3d\x59\x54\xf0\xae\x1d\x5e\xd3\x08\xa4\x59\x96\xf8\xf6\x5a\xb1\xbd\xac\x84\x69\x60\xfe\xd7\xb0\x1c\xbf\x8b\xfd\x77\x37\x34\xe1\xa6\x30\x40\xb9\xc0\xce\xf9\x56\x29\x87\x12\xcc\x36\xe9\x34\xac\x0b\x90\xa6\x34\x01\x8e\xa1\xe8\x38\xc9\xc6\xf3\x0c\x18\x16\xf3\xc0\x51\x53\x09\xe1\x75\x52\x51\xe4\xe2\x1c\x2e\x21\x9c\x5a\xed\x79\xbb\xc2\xd3\x0a\x3e\xb6\x8f\xb0\xed\x93\x0e\xf7\xb4\x32\x86\xd5\x0b\x7c\x00\x9b\x7e\x05\x54\x00\x93\x1b\x0e\x02\x7e\x6a\x40\x62\x98\x88\x67\xd1\x49\x27\x88\x43\x06\x47\xcd\x74\xae\x0e\xe7\xb3\x59\x51\xc2\x7d\xcc\xe1\xb6\x04\xc6\x13\x3a\x2f\x8b\x1e\xb6\xf2\xa5\xda\x65\x58\x1e\x70\x6b\xcd\x17\x6d\x79\x9d\x8c\x6b\x8c\x98\xf0\xe3\xfb\xd7\xaf\x48\xee\x00\xdf\x61\xf3\xde\xfc\xb7\x69\xa2\xf7\x66\x92\xf5\xe6\xaa\xf1\xda\x5c\xc9\x3a\xf2\xd2\x8c\x5f\x3f\xf9\x51\xfa\x39\x86\x28\x92\x65\x7b\x6c\xfe\x22\x01\xca\xfe\xd6\xf3\x4a\x7e\xdb\xee\x53\xc3\x71\xdb\xd6\xd3\x11\x43\xf7\x0b\xd4\x8f\x5f\x3a\x36\x2d\xc0\xa5\xd7\x73\xbd\x8e\x42\xb2\xb8\xce\xf0\xa7\x6d\x7d\x3d\xc8\xcf\x93\x7c\x2c\x53\xbc\x26\xb8\xae\x5d\xa9\x3c\x2d\xae\x10\xb7\xd5\x73\x36\xb5\x17\x8b\x57\xc9\x4d\x31\xaf\xa9\xdc\x30\xbc\x70\xb0\xb7\xea\xb7\x45\x59\x27\x99\x75\xfd\x10\x09\xfa\xef\xf4\xc0\x01\x07\x1c\x6f\x5c\x54\x4a\xfb\x4e\xab\x72\xf0\xd0\x34\x66\xea\x14\xcb\x23\xa9\x35\x55\x57\x75\x25\x8a\x79\x5d\xe9\xca\x34\x83\xd1\x99\xce\x95\x2c\x93\x72\x7c\x7e\x63\xfc\x55\xc8\xcb\xcf\x3b\xed\xdc\xbb\x32\xf6\x69\xfd\x97\x65\xcc\x7f\xe7\x08\xee\x6c\xe9\x29\x8b\xf9\xb2\xe0\xfd\xd9\xf6\xcf\x7b\x7e\xc6\xaf\xe1\xa3\xb3\xcd\x1b\xaf\x62\xf5\x4b\x73\x50\x6d\x91\xbf\x83\xc5\xf0\x1e\x72\xcd\xa7\x68\xe8\x6e\x83\xe2\x65\x69\x80\x00\xa8\xe6\x59\xe6\x04\x65\x30\x6e\x33\xc0\x35\x7e\x51\xfe\x30\x52\xc9\xfa\xf5\x92\x9c\x16\xc3\x66\xc9\x43\x58\x6c\x51\x55\xf5\xf7\x24\x53\x69\x78\x49\xe9\x30\x8c\x84\x7e\x09\x57\x45\xdd\x6b\xf6\xe0\xd6\xd8\x23\xb1\xab\x34\x78\xad\x78\xb3\xe9\x83\xe0\xd8\x11\xb5\x17\xb1\x08\x00\x31\x42\x5b\xc3\xfe\x69\x91\xde\xf8\x97\xfa\xae\x38\x72\x14\xe3\xaf\xfb\xc9\x86\xdd\x74\xcb\xc0\x9e\x30\x63\x7d\xd6\x33\x09\x6f\x5a\xb6\x44\x88\x8f\xb4\x08\xeb\x8e\x17\x76\x8f\x9d\x62\x09\xaa\xbf\xe5\x30\x56\xa9\xe0\xb7\xfc\x89\x63\x66\x14\xbd\xbd\xcd\xa7\x40\xcf\xba\x37\x03\x9e\x76\xca\x14\x6a\x37\x16\xc3\xa5\xad\xe8\xe4\x31\x45\x34\x8f\xcf\xb3\x4e\xd9\x84\x58\x9b\x60\x45\xeb\x5f\xc6\xd9\xfa\xc4\xae\xac\x3e\xea\xb0\xb7\x38\x2c\x20\x7e\x18\x58\xdc\xcd\xe4\xd3\x48\x57\xf4\x21\x84\x57\x16\x62\x9f\xae\x37\x8e\xa6\x0c\x4c\xb0\xfe\xb1\xf9\x0d\x19\x2b\xfe\xe3\x8e\x7c\xff\x77\xe4\xf7\x3c\x7a\xb2\x3b\xa0\xe1\x5c\xc6\x38\xd0\x86\x21\x8d\xee\x14\xc2\xfb\x19\x08\x6f\xe6\xce\xdd\xe5\xbe\xfc\x04\x5a\x01\x02\xbe\xf3\x25\xd4\x87\x3f\x92\x5d\x25\xa4\xaa\xcf\x65\xd9\x67\x5d\x65\xdd\x41\x5f\x79\x78\x1c\x07\x41\x00\xcf\x41\x3b\x16\x88\x9a\x44\x80\x23\x2a\xb8\x25\x38\x77\x6f\x88\xc0\x08\x66\x6e\x10\x40\xaa\x48\xad\x60\x51\x17\xb3\x5e\x26\x2f\x65\x66\x19\xb6\xb0\xb7\x21\xa8\x04\x6c\xc9\x5b\x15\x86\x23\xbd\x11\x23\x8f\xaf\x8f\xc4\xb4\xa8\x6a\x5b\x97\x9a\x4a\x6f\xf6\xcc\x20\xd8\xf4\xe1\xb4\xa1\x31\x7c\x05\x94\xd5\xab\x8b\x9e\x25\x86\x1e\x5e\xd6\xa8\x02\x7e\x01\x09\x84\xe3\x6e\x1c\x17\x24\x84\xe6\xe9\x06\xb7\xc3\x93\x26\x56\xc8\x0f\xe4\x67\xcc\x66\xd7\xb8\xa3\xf7\x63\xd4\x03\x11\xb3\xf4\xe5\x4c\xe5\x38\x33\x24\x9b\x79\x72\x5b\x44\x1b\x81\x9b\x7b\xa5\x46\x20\xf0\x59\x28\x28\xaa\xa7\x6b\xff\x3c\xa9\xc4\xa9\x94\xb9\x83\x88\x58\x4c\xc4\xb6\xff\x46\x89\x63\xe2\x49\xa7\x72\x56\xca\x31\x6c\x76\xd8\x97\x10\x7d\x40\x57\x25\x2e\x1f\x77\xad\xa6\x25\x82\x99\xd2\xf7\xee\xe0\xe6\xdc\x88\xfb\x27\xd8\xeb\xd8\x71\x4e\xb1\x8e\xe2\x7c\xb0\xe5\xd8\x60\xcb\x85\x65\x91\x55\xa6\xf2\xba\x47\xb3\xd7\xcb\xe5\x75\xdd\xcb\x54\x0e\x17\x79\x9c\xcb\xa3\x96\xe5\x94\x2d\xf1\x17\xd1\x6a\x9d\x88\x7d\x77\x9f\x6a\x87\xdc\xd4\x5e\x16\x82\x0b\x20\xe6\xd3\x57\x40\x23\xe3\x1f\x26\x67\x7a\xc2\xd1\x3d\xd4\xec\x59\x17\xcd\x4c\xcf\x21\xe0\x02\xe0\x71\x80\xc8\x40\x0c\x33\xe6\x0c\x10\x81\x50\x19\xfe\x00\x95\xd2\x57\xaa\x92\x38\xf9\x33\x7d\x4d\x80\x05\x06\xd9\x5f\x73\x6d\x8b\x7e\xa4\x59\x84\x16\x31\x5c\xe4\xb4\xbf\x81\x37\x97\xf8\x60\xb2\xdc\xb2\xcc\x75\x81\x7d\xc4\x8c\x86\x99\xd8\xac\x1f\x75\x4d\xb7\x74\x4f\x08\x86\xec\x30\x75\x61\x04\xcf\x71\xa8\xd6\x37\x85\x16\x61\xb5\x1f\xb2\xae\xa7\xe9\x88\xec\xbc\x8e\x77\x96\x7b\x1d\x43\x71\x74\x2f\x5e\xe0\x70\xec\x1f\xd0\x90\xbf\x5f\xca\x74\x3e\x96\x4c\x3a\x4a\xc6\x63\xec\x8a\x27\x8a\xe8\x0f\xa2\x09\x00\x4c\x55\x25\xe3\x71\x0c\xfc\x71\x13\x1a\xb5\xef\x60\x78\xc7\x84\xf6\xbe\xf0\x6e\xbe\x9e\x1c\x39\x2e\xf2\xaa\xc8\x64\x5f\x96\x65\x51\xb6\x5b\xaf\xcd\x9d\xfe\xe7\x83\xa1\x38\xc8\x2f\xb5\x88\x24\x9e\xd1\x14\x08\x64\x71\xd3\x79\x45\x81\x73\xcd\x6d\xd3\xae\x7e\x97\x5b\xbf\x19\xb2\x69\x35\xb1\x5f\x03\xe9\xc7\x2d\x7c\x7c\xc9\x45\xe8\x7e\xbe\xb7\xbe\xff\xf9\x1e\xad\xfb\x9e\x5b\xf8\x3d\x5a\xf9\x3d\xfa\xe9\x79\x9c\x33\x9f\xf3\xbd\xe6\xfa\xef\x9d\xf0\xb1\x98\x3f\x93\xf1\x98\xfc\xcd\x31\x2e\x1e\xb8\x97\xdb\x8c\x00\x02\xb4\x28\xd9\x3e\xf1\x79\x62\x35\x3e\x64\xdc\x9b\x3b\xc6\xbf\x80\x13\xc5\xdb\x62\x36\x93\xe5\xff\xcf\xe6\x81\x9f\xfd\x7f\xf8\x5a\x29\x20\x0f\x5b\x1d\x5c\x20\x91\x24\xef\xa4\xa3\xfa\xe0\x7c\x30\xa2\xf9\xf1\xa5\xca\xeb\x23\x9c\xc3\x56\x53\x85\xbf\x79\x34\xfb\x18\xdf\x0a\x35\x5b\xd1\x4c\xff\x14\xd5\xd9\x59\xa6\x66\x6f\xb3\x64\x8c\xd7\x96\x99\xf9\x8b\x4c\x22\x98\xb6\x05\x91\xeb\x98\x29\x09\x86\x62\x91\x53\xd9\x77\x49\x1f\x3f\x8a\x56\x56\x97\x2d\xef\x06\x66\xcb\x69\x8e\xa3\x53\xc3\x97\x4d\xdb\x2a\x67\xa4\x18\xae\x53\xb8\x2e\xd9\x52\xe3\xa4\x92\xa2\x75\x5a\xd4\x75\x31\xed\xc9\x3c\x6d\x0d\x03\x8e\x69\xd2\xc0\x0e\xb0\x65\x2d\x01\xbc\x72\x98\xb6\xa8\xa4\xae\x35\x28\xa7\xc5\xcf\x68\x63\x3a\x21\xda\x92\x4b\x88\x96\xf1\xda\xa0\xe3\x2e\xcc\xd8\x98\x99\xdb\x50\xef\xf9\x2c\x1f\x9f\x17\xe5\x8b\xac\x9d\xd0\x1f\xbe\x4b\x0e\x71\x7c\x93\xd8\xd4\x77\x9a\x14\x50\x77\x9a\x1f\xff\x3c\x5d\x25\x50\x16\x79\x6e\xc2\xf6\x7e\x83\xce\x6a\xfa\x3e\x79\xeb\xe9\x32\x75\x62\x25\x4a\x99\xdd\x18\x0f\xef\x87\x65\xaa\x25\xda\xfa\x46\x64\xea\xb4\x4c\xca\x1b\xf0\xa8\x41\x16\xe1\x9c\x61\x2c\xd7\x70\xe1\x84\x2f\x77\x07\x1d\x38\x3b\x66\x85\x85\xe7\x08\xd5\x94\xba\xd0\x26\x6a\x4a\x9d\x3f\xae\xa6\x74\x73\x6f\x42\x8a\xd2\x07\xa7\xa6\xfc\x37\x53\x64\x52\xe2\x85\x94\xb3\xd7\x24\xf9\x9b\x7e\xb0\x6f\x36\xbb\x9f\x2f\x56\x78\x49\x0f\x62\x15\x4e\x8b\x54\x9d\x29\x4d\x2e\xfb\x36\x3e\x29\x7d\x71\xca\xd6\x19\x9b\x6f\xfd\x23\xec\xbd\xdd\x7a\x36\x97\x63\x8e\x56\xa6\x42\x8c\x81\xb7\x2c\x6b\xb3\xb4\xe7\xfa\x82\xfc\x85\x39\xbf\x34\x2b\x35\x09\xc1\x76\xa0\x3e\xf0\xaf\xb6\x48\x98\x37\x5e\x05\xef\x48\x74\xcf\x0d\xa3\x05\x83\x56\xde\xc9\x33\xcf\x1f\xca\x7e\xdd\xc8\x91\x88\xdb\xf6\x91\x2f\x91\x7b\xad\x34\x99\xbd\x5c\x91\x92\x4b\xc8\x22\x52\xdb\x06\x8e\x3b\x66\x87\xa2\x9b\x8c\xef\xc6\x63\x37\x9e\xe7\xd5\x83\x3b\x00\x3f\x31\x92\x34\x00\xcd\x44\x7d\xe4\x9d\x33\x33\x75\xd9\xc5\xa7\x9f\x7c\xda\xf9\x27\x40\x48\x0e\x3d\x79\x1c\xe6\x4d\xe0\xb3\x83\x9e\x86\x2b\x1d\x60\x8a\xab\xa6\xf3\x8b\x2b\x1b\xb8\xbe\xd8\x7e\x2c\xaf\x13\x95\x9b\x6f\x59\x66\x56\xb9\xa3\x14\x9f\x94\x16\x16\x8f\x34\x17\xe4\xd8\x40\x1f\xdd\xac\x9b\xd9\xfc\x05\x89\x56\x1b\x1e\x7c\x27\xfd\xb7\xed\xd1\xc1\x74\x26\xcb\xa4\x56\x97\xf2\x47\xc8\xd8\xf6\xc6\x15\x8d\x49\x63\x0e\x76\x93\xd1\x74\xc2\xb7\xea\x3b\x5e\xf7\xa9\x07\xe2\xb9\xbb\x08\x88\x16\xab\x7c\xe9\x3b\xcf\x8b\x45\xd9\xbc\x47\x9e\x25\x7e\x5b\x65\xed\xf1\x3c\x5f\x86\x0c\x99\xa2\x11\x25\x9f\xf8\xda\x23\xc7\x21\xa9\x80\xfa\xcd\xe8\x73\x41\xff\x73\x3a\xaf\x09\x14\x30\xc9\x27\x60\xdd\xa0\xf2\x89\xc8\xd4\x99\x04\xf3\x00\x75\xe6\xd8\x7c\x5f\x77\xc0\x68\xc0\xfc\xaf\x42\x55\x42\x56\x95\xcc\x75\x0b\xd9\x8d\x48\xa0\xb3\x70\xf8\xeb\x8d\x5c\x16\x59\x26\xd3\xc1\x3c\x77\x3f\xac\x4a\xcd\xaa\x8f\x16\x2c\xc6\x5e\x73\x35\xf8\xbc\xb8\x55\xe1\x27\x49\x58\x47\xb0\x32\x6f\x97\x65\xb5\xab\xb3\x86\x8d\x29\x68\x08\x42\x1a\x63\x37\xda\x46\x1a\xc5\xbf\x6c\x2f\x37\x08\x7e\x83\xa7\xa6\xed\x40\xc4\x52\xdf\x7f\x9b\x73\x0c\x85\x9b\xce\x7e\x61\x65\x22\xfd\x43\xf3\xc3\x86\xda\x23\xaa\xf2\xd8\x68\x40\xa9\xac\xea\xb2\xb8\x61\xe1\x92\x16\xb3\x80\x36\x7f\x2e\xf3\xa2\x4f\xf0\x32\xcd\xe0\xc2\xcd\xd4\x76\x9a\xd4\x89\xff\xa0\xe7\xb6\x86\x4e\x73\x62\x44\xa7\x11\xa6\x06\x81\x30\xaa\x22\xbb\x94\xe9\x33\x27\x36\x46\xc5\xfc\x30\xb4\xfc\xc6\xca\xa0\x46\x43\xdb\xdb\x8d\xc6\xe1\x09\x01\xd1\xe1\xf7\xf7\xc5\x6e\xc3\x11\xf0\xb4\xb8\x16\xfb\xcd\x52\x13\x59\x7f\x5f\xcc\x21\xea\xd2\x73\x70\x24\x78\xa7\xc9\x94\x87\x09\x5b\xd5\xed\x5a\x56\x35\xd8\x90\x9e\x16\xd7\xfd\xba\x40\x77\xdd\x1d\xf3\x21\x93\x67\xb5\xff\x05\x43\xbc\x79\x9f\x50\xd4\xc2\x6f\xa1\x7b\x1d\x29\xb8\xae\x92\x32\x6f\x1f\xf9\x0a\x2e\x78\xd4\x30\xb3\x4c\xe0\x39\x1c\x2b\xdd\x87\xbe\x55\x95\x50\xa8\x11\xeb\xb7\xba\xa2\xf5\x1e\xbc\xd3\x74\x59\x0b\x65\x8f\x71\xb2\x00\x71\x3d\x29\xed\x03\x84\x7d\xc2\xc8\xe0\x86\xa4\x0b\x1f\x6f\xbd\x66\x11\xad\xa4\xad\x00\x14\xe2\xb2\x42\x4e\xe9\x17\x06\x43\xaf\xa4\x46\xe5\x7e\x5e\xd4\x5a\xa0\x9f\x65\xc9\x8d\xc8\x8b\x5c\xf6\x8f\xb7\x8c\x73\xc1\xf1\x71\xde\xea\x2c\x75\x06\xe4\x14\x38\x33\x97\x9f\x5c\x5e\x59\x1d\x4c\x3b\x4a\x84\x5d\xd1\xdc\xe0\x31\xfb\x63\x4b\xf3\x43\xef\xec\xa0\xc6\xbb\xbe\x00\xeb\xfb\xde\x20\x33\xe7\xb6\xcb\xb7\xc1\x83\xaf\x01\x57\x61\x4b\x3c\x18\x88\x03\x3d\x27\xf3\x0a\x02\x7f\x01\x56\xcc\x5b\x7c\xfc\x38\x65\x4f\x4d\x14\x2b\xcc\xc0\x0e\x5e\x2a\x79\x05\x7a\x14\x00\x50\xc2\xb2\x09\xbd\xb4\xf4\x5d\xe5\xb3\x12\xd0\x08\xdf\x50\xdc\x81\xa1\x4f\x5b\xa7\x9a\xf0\x93\x52\xc9\x8a\x94\x4f\x43\xd1\xc2\x8b\x72\x2b\x36\xff\x5d\x37\xc6\x60\x1a\xdc\xa5\xc5\x1d\x25\x83\x81\xf8\x45\x93\x9f\xa6\x28\x78\x68\x83\xe7\x15\xd3\x53\x82\xa7\x34\xe5\x10\x40\x18\x0d\xbe\x68\x4d\x55\x25\xd2\xc2\x02\x33\x63\x85\xdf\xcf\x35\x01\x89\x4a\xca\x69\x45\xa1\x4c\xe9\xf1\x4d\x56\xb5\x98\xcd\x4f\x33\x35\x16\xcf\xde\x1e\x90\x5d\x21\xa2\x5d\x80\x8a\xc3\xd6\x52\xe4\xcf\x41\x81\x35\x5c\xa0\xa5\x6f\xb2\xc9\x70\xac\xa6\x86\x0e\xb3\x86\xc1\x9c\x9f\x52\x27\x7e\xa7\x78\x19\xb7\x76\x07\x2c\x39\x07\xb0\x86\x8e\x95\xc6\xec\x5d\xdd\x27\x39\x6f\xd5\xe0\xf6\xe8\xd1\x75\xd0\x93\x93\xb8\x0b\xf9\xb2\x53\xd4\xf3\x77\x23\xbb\x0e\x14\xd8\xd1\x97\xda\x1f\x8a\x3e\x96\xdb\xae\xd3\x26\xa3\x4b\xf4\x84\x4a\xdf\x4b\x37\x38\xcb\xd0\x97\x90\x37\x4d\x01\x13\x19\x46\x66\xd3\x69\xf8\x79\x56\x54\x91\x83\x11\x3e\x07\x12\xc1\xb2\x43\x3c\x7e\xf4\xaf\x3e\xda\xd7\x3a\xd8\x23\xae\xce\x46\x0e\x0e\xe7\x00\x47\x1c\x99\x04\x10\xb7\xbd\x46\x69\x88\x5e\x0b\x9f\xe8\x03\xd4\xac\x38\xe2\xf5\xb3\xa6\x0c\x08\xc2\x15\x46\x76\xb3\xf7\x45\x3f\x9c\xf8\x1b\xfb\xe8\xe7\x4d\x0a\xbc\x00\x8e\xc1\xf4\xf7\x5c\x55\xfd\xa5\x7d\xb3\x74\x07\x1b\xc1\x35\xe4\x59\xe2\x7c\xc1\x35\x3a\xba\x43\xa6\x67\x6d\xd6\x35\x2d\x0f\xe2\x25\xa6\x13\x4e\x95\x0d\x0f\x76\xeb\x96\xd1\x0b\xa5\x44\xd9\xd9\x51\x33\xe3\xe7\xcc\x2d\xeb\x4b\x64\x2e\x5c\x55\xfd\xa6\xa3\xb8\x93\x9b\xf2\xa1\xf0\x94\x45\x4b\xfc\x99\x16\x39\x1e\x79\x0b\xea\x3d\x1a\xae\x74\xe1\x32\xcc\xc7\xc0\x85\xf9\xcf\xf5\x31\x65\x1c\x33\x6c\x70\x8a\x0b\x5c\xae\x95\xad\x1d\x6f\xa5\xea\xf2\x78\xab\x79\x9e\xfb\x76\x4c\xd4\x52\x59\x64\x72\x28\x8e\xb7\x48\x20\x38\xde\x3a\x66\x9e\x4e\xb6\xcb\x0b\x1d\x91\x06\x03\xf1\x16\xcf\xd5\x8a\xce\x6b\xa1\xaa\x6a\x2e\xbb\xe2\x2a\x41\x47\x63\x7d\xfc\x58\xfd\x2e\x58\x92\xa7\x29\x9e\x47\xa8\x70\x02\xfb\x03\xbc\x4b\xd6\x06\x1b\x11\xb8\x07\xc5\x0e\x12\xad\x33\x75\x2d\xd3\x16\x3f\x4c\x5f\xaa\x6b\x56\xa7\x91\x9e\xa0\x61\xab\x84\x2a\x66\xdc\x37\x4a\x8b\x9e\xfc\x37\x95\x19\x3a\x7a\x0e\xe9\x9c\x51\xf7\x53\x02\x96\x12\x3c\xa0\x94\xf1\x7f\x32\x11\x62\x36\x08\x2e\xe5\x07\x95\x72\xe6\x6a\x77\xb1\xe7\x82\x49\xf8\xc3\x9e\xeb\xde\xed\xb9\x42\x7b\xab\x23\x1b\xf4\xea\x0d\xe8\x21\x57\xbd\x54\x7c\x19\xe4\xef\x18\x73\xa7\xa2\x14\xc9\x5a\x66\x5a\x24\x09\xe3\xf5\xa5\x92\x35\xd9\x0f\x11\x4d\x1a\xb3\x6d\x6c\x9c\x8a\xbc\x07\xb3\x1a\x60\x4a\x88\x83\x6f\x0d\x42\x10\x51\x9c\xcc\x6e\x28\x78\x17\x2a\x54\x4d\x4d\xf4\x76\x62\x4c\x9d\xbc\x70\x0d\x24\x4d\x0d\x83\x57\xdb\x76\xd4\x91\x63\x89\x1d\x15\x19\x7e\x35\x4d\xa6\xd8\x89\xea\x83\xdf\xd3\x75\x93\x94\xfd\x41\xd0\xd0\x15\x77\x6e\xff\xd9\x86\x5f\x63\xff\xc3\xef\xd1\xe6\x68\x96\x57\xe2\x05\xd8\x8a\xfc\x67\xdf\xa5\x11\xf8\x00\x84\x9d\x06\x51\x38\xdc\xce\xc6\x2a\x23\xd6\xc2\x2f\x2a\xad\xcf\x71\xd1\x0c\x98\xe7\xca\x32\x88\xcf\xb0\x76\xa1\x28\x39\x2d\x33\x04\xfa\xac\xeb\x7b\xc0\xd7\x33\xc9\x3d\x36\x69\xb9\x07\x72\xb9\x80\x05\x0a\x5d\x7c\x53\xb6\xd9\x6f\x2d\x58\xc1\x05\xf6\x47\x4e\xde\x6c\x1a\x62\x12\x8b\x23\xd3\x5c\x17\x1e\xba\xe4\xa1\xfc\x16\x99\xe5\x1e\xdf\xd5\xae\x34\x30\xec\x6d\x30\xbf\x65\x91\xc2\xfe\xb0\xfa\xfd\xc3\xea\xf7\x7e\xac\x7e\x9f\x21\xe4\x96\x96\x72\x7d\x6b\x5f\x62\xa8\x3f\xbc\x79\xed\xba\x65\x8c\x79\x9d\x79\xee\xd9\x3c\xd3\x39\x0f\x5f\xbc\x11\x95\xaa\xe7\x14\xea\xc8\x44\x00\x00\xc5\x1b\x8f\x02\x37\x4d\xae\xd5\x54\xfd\x26\x49\xe2\xa8\x66\x45\x5e\xa9\x4b\x99\xb3\xb8\x5d\x6f\xb9\xe4\x02\x03\x62\x12\xf8\xca\xe1\x38\xe9\x5f\x55\xce\xe7\x34\x81\xc7\xd9\xf9\x44\xe5\xbd\x4c\x5d\xc8\xe3\x2d\xa1\x67\x4d\xd5\x72\x5c\xcf\x4b\x69\x48\xcf\xd0\x96\xd2\x82\xa6\x4c\x74\x12\xca\xb3\x67\xf3\x2c\xbb\x11\x32\x1f\x27\xb3\x0a\xbc\x5b\x53\xff\x15\xd8\xdf\x06\xcf\x9c\xc6\x4e\x55\x0d\x99\x4e\x55\x26\xa2\xa3\x4c\xc6\xe7\xe8\x1b\xeb\x3a\x9d\x4b\x99\xea\xcb\x10\x55\xa5\xb7\xf5\xbc\x96\x6b\x48\x78\x2f\x8d\x32\xaf\x94\x49\x55\xe4\x4c\xa1\xc5\xb8\xf2\xa5\x2c\x6f\x4c\x88\x35\x5a\x90\x04\x5e\xdc\xb5\x4c\x90\xc9\x5c\x8e\x2f\xac\x2b\xf1\xfb\x42\x64\x52\x8b\xd7\xe0\x8e\x5e\x38\x8b\x63\x53\x31\x88\xbe\x09\x3a\xc7\xbb\xc6\x3c\xa0\xf7\x95\xb2\xb0\x53\x89\xfa\x31\xf4\xac\x96\x78\xa5\xa7\x34\x73\x9c\x77\x93\xa2\x27\x19\xe0\x2c\x32\x8f\x3f\x68\x49\x31\x24\xa0\x65\x4c\x96\x8e\x05\xab\x76\xe0\x75\x31\xb5\x44\xd3\x41\x99\x59\x9d\x75\x03\x0b\x35\xfb\x5b\xff\xa5\xe5\x35\x93\x0b\xfe\xb6\x79\xf4\x2f\xfd\x2f\xc8\x6f\x26\x0b\xfe\xb0\x79\xe0\xa7\xfe\xc3\x58\x9f\x75\xb9\x8d\x1a\xfe\x68\x45\x18\x90\x31\x0f\x09\x4f\xf6\xa3\x91\x5d\xa5\xd1\x6a\x7b\xab\xd8\x7d\xc0\xd3\x92\xae\xb1\x78\xcf\xc0\xd6\x1f\xb6\xc5\xac\x50\xb9\x0b\xd6\x05\xb7\x9b\xd9\xe2\x8b\x87\x55\x21\x0e\xad\x7d\xe8\xfd\x39\xdf\xff\x28\xb3\x19\x84\x2a\x29\xca\x1a\x15\xf1\x0b\x22\xdb\x32\x94\xd9\x28\x18\x04\x0b\x74\x1c\x50\x5d\xe0\xa5\xd0\x70\x0b\xd0\xa3\x7b\xf2\x9f\x86\xd4\xfe\x2b\x5a\x1c\x52\xe2\x3a\x1d\xf5\x0b\x6c\x64\xb0\x7c\xaf\xbe\xf4\xe3\xac\xba\xa6\x74\xfd\xa7\x67\x7f\x9c\x4a\x39\x9b\xca\x72\x22\xbb\x46\x5a\x7b\x36\x1e\xcb\x99\xa6\xac\x77\xf2\x6c\x5d\x2b\x66\x08\x6c\x7b\xdb\xc0\x91\x1f\x17\x59\x51\xbe\x4e\x72\x35\xd3\xc7\x52\x51\xb2\x32\x5a\x62\x38\x44\xc8\xf5\xb0\x94\x4b\xe2\x63\x48\x66\xaa\x06\xab\x8d\x86\x31\xb3\x4d\x61\xd9\x01\x50\xdc\x66\xd4\xbf\x1a\x86\xde\xdc\x88\x5a\xff\xbe\x83\x61\xb3\xcb\x7e\x90\x36\x72\x1a\x34\x17\x48\xbd\x93\x71\xf5\x41\xf5\xb2\x18\xcf\xab\xbf\xe3\x51\x11\xe9\x8a\x9f\xc1\x2f\xfc\xdc\x99\x98\x34\x0b\xba\xc4\x4d\xc3\x01\x30\x73\xe0\x52\x5f\xee\x62\xc0\xfc\x00\xb8\xcf\x52\xc5\x03\xb1\x2b\x1f\x77\xc4\x40\xff\xf3\x24\xb4\x2a\x4e\xca\xb2\xb8\xfa\x2f\x54\xc9\x15\xf6\x2d\xc8\x8f\x54\xd1\xda\x3e\xba\xee\xd9\x33\xed\xc1\xfe\xf1\x16\x9e\x52\xc7\x5b\x27\xe2\x4f\x50\x41\x8b\xbd\x8b\xae\xd0\xa1\x4e\x93\x72\xa2\xf2\xf7\x3a\x53\xab\xb7\xd3\xff\x7a\x57\x4e\x5b\x41\xe2\x2b\x28\xf2\x28\xf8\xfa\x4e\x9f\x68\xfc\x73\x6b\x7b\x38\xc4\x98\x48\x2d\xef\x59\xd6\xe2\x59\xbd\x29\xd5\x44\xe5\x43\xd1\xda\x11\xbb\x3b\x3b\x7f\x6e\x85\x97\xc0\xee\xa2\xe1\xd5\xc5\x2c\x3e\x36\x1c\xf7\xea\xe1\x7d\x4f\xf9\xfe\x69\x23\xd4\xe3\x13\x3b\xeb\x8f\x10\xc4\x83\xf8\x18\xe3\x23\xc2\x1e\x37\xc7\x83\x80\x2d\xba\x07\xfc\xeb\x95\x4a\xeb\x73\x3d\xf1\xd1\xd1\xc3\xe2\x87\x83\x37\x53\x76\xe7\xd1\x6f\xb6\xc4\x7a\x94\xf1\xf1\x97\x38\xa0\x70\x02\x68\x71\x7e\xa7\x33\xb0\x13\x59\xfc\x63\x13\xd5\x85\x39\x17\x7a\xb1\x36\x5c\x60\x26\xf8\xd2\xe6\x5e\x20\x3e\x07\x18\x3c\x10\x74\x5c\x24\x2e\x48\x1b\xd3\xff\xb2\xc8\xde\x28\xdd\x18\x29\x8c\x75\xfb\xb7\x83\x3c\x95\xd7\x43\x72\x23\xc1\x5f\x7d\x7a\x40\x62\x66\xc7\x10\xa4\x02\x02\x39\x56\x26\x34\x87\x18\x0c\x6c\xd8\xdd\x7f\x54\x55\xaf\xac\x33\x81\x17\x36\xa3\xc6\x31\x31\x3c\x37\xe8\xa9\x50\x10\xfc\xb9\x96\x65\x32\xae\xd5\xa5\x34\xf1\xc4\xc3\x11\x1c\xb8\x2c\x43\x6e\x81\xe6\xf7\x13\x50\x87\x3e\xad\x2f\x40\x88\x8b\x7a\xf1\x4c\x27\x0e\x1b\xdc\x7a\x75\x53\x34\xc1\xa2\x9d\x69\x41\x49\x5c\x95\x09\xd8\x3c\x58\x18\x36\xdb\x0e\x65\xe4\xcc\x2e\x19\x5f\x4c\xe0\x20\x79\xae\x25\x89\x21\xc8\x19\x48\x24\xfd\x59\x92\xc9\xba\x96\xfd\x49\x29\x6f\x8e\xbe\xde\xd9\x39\xe9\x8a\x9d\xfe\xb7\xce\xa0\xe3\xb4\x28\x53\x59\xbe\x4b\x52\x35\xaf\xcc\x92\x03\xe8\x52\x9f\xa7\x30\x97\x07\x68\xc0\xaf\x7b\x5c\x4c\xa7\x45\xde\xbf\xd2\x57\x71\x9b\xf3\xac\xc8\xeb\x97\xc9\x54\x65\x37\x26\x7b\x7d\x33\x2b\x26\x65\x32\x3b\xbf\xe9\xbb\x44\x47\x50\x49\x9a\x02\x1c\x57\xeb\xd1\xec\x5a\x7c\x33\xbb\x6e\x79\x55\x1d\xaa\xdf\x64\xa4\xa2\xd9\xf5\xfb\xe2\x9d\x9c\xb6\x77\x77\xdc\x90\x32\x95\xcb\x1f\x69\xaf\x1f\x6f\xb9\xb0\x37\x78\xd4\xee\x3e\xd2\x07\xec\x0e\x04\xb7\x91\xd3\xe3\x2d\x06\xc9\x92\x5c\xff\x82\xcc\xc0\x86\x2d\xd6\xfc\xa1\x28\xd3\x5f\xca\x44\x9f\x82\xa7\xa5\x4c\x2e\x7a\xfa\x83\xdf\xb7\x5f\xa8\xb1\xe8\x30\x31\xf1\xb5\x4c\xd5\x7c\xba\x36\xdd\xad\x20\x86\x65\x64\x48\x45\x89\x0e\xd9\x3e\xb0\x0f\xae\xa5\xcc\xc0\x3a\x3a\xe4\x75\x9a\x3b\xad\xbf\x35\xa0\xf9\x26\x75\x26\x41\xbb\x85\xb5\xc7\x32\x68\x93\xdd\x48\x97\x92\xd3\xaa\xc8\xe6\xb5\x6c\xb2\xe5\x38\x07\x27\x66\x6d\xbe\x0f\x1e\x88\x7d\x2c\x21\x06\xa2\xfa\xef\xb2\x6e\xef\x75\xc4\xbe\x68\x13\xee\x3f\xa9\x5a\xce\x6f\x66\x45\x2d\xf3\x79\x25\x3b\xb6\xbb\x42\xb0\x9d\x70\x7d\xa8\x7e\x43\x12\x44\xda\xef\x9d\x16\x8c\x0a\xc7\x1b\xef\xad\x45\xa7\x02\x21\x2c\x0e\x45\x4b\x93\x67\x8b\xa1\x77\xda\x85\x00\x36\xc5\x21\xa9\xcd\x83\x76\xeb\x34\x2b\xc6\x17\x3c\xc9\xce\x94\x3e\x56\xd9\x77\x77\xdc\x05\x09\x0d\x76\xd1\x22\xb3\x1c\xf8\xd9\x8a\x03\x8e\xb6\xca\x02\x8c\xa9\x1f\x3d\x4e\xe5\xa4\x13\x3b\xbe\x3f\x9d\xa4\x79\x36\x55\x81\xa2\x87\x02\x38\x15\xf3\xf1\x39\x27\xf1\xf9\xf8\x9c\xd3\xb6\x65\x1d\xdf\xcc\xae\xc5\xee\x57\x9b\xf2\x8e\x47\x6b\xf3\x8e\xaf\x34\xef\x78\x14\xe1\x1d\x6b\xb2\x81\x77\x72\x32\xcf\x92\xf2\x5e\xf9\x80\x95\x96\x46\x46\x75\x5e\x09\x23\x36\x35\xd8\x82\x35\x86\x43\x31\x31\xb8\xac\x3b\xc3\x8f\xa6\xe0\x82\x6f\x90\x63\x8c\xa1\x10\xe1\x1c\x62\x4f\xf3\x6d\xcb\x3f\x68\x16\x80\x65\xa2\x56\xa8\x3f\x9f\xb5\x5b\xd5\xb4\xd5\xe1\x96\xa4\xae\xf8\xee\xa3\xd9\x35\x47\x72\xff\x6c\x33\x43\x12\xf5\xe2\xa9\x21\x01\x72\x83\xb9\x81\x17\xdb\x15\x53\xf3\x2f\x30\x33\x70\x9b\x5a\x3c\x2f\x20\x0b\x6f\x30\x2b\x38\x21\xc2\x28\x4a\x1b\x23\x03\x82\xd9\xb9\xeb\xbc\xec\x7a\xa5\x3f\xeb\xbc\x98\x4b\xf4\xe2\xa9\x31\x37\x82\xcd\x67\xa7\x2e\x66\x9f\x7b\x6a\xec\xf5\x82\x3c\x7b\xcf\x6f\xaa\x5a\x96\x95\xaa\xc8\x6f\x04\x6c\x48\xc3\xb4\xf7\x14\x63\x8a\x1e\x5c\xc3\x40\x9e\xb5\xac\xea\x77\xb2\x92\xb5\x51\x44\x2c\xaa\x34\x00\x4f\xf7\xeb\x27\x44\x15\xdd\x30\x85\xe7\x5b\xdf\xb9\x97\x0a\xc4\xbd\x7b\xc9\xdf\x10\x65\x14\xeb\xe1\xab\x7f\xd9\xb9\x36\x69\x7e\xd6\x25\xce\x8b\x7e\xf1\x35\xbc\x83\xb3\xa4\xaa\xa4\x73\x12\xa5\xdf\x0b\x3c\x83\x41\x43\xf5\x4a\x85\xae\xc1\xf4\xd9\x03\x36\xb7\x6f\x83\x5e\x62\xc3\x51\xd8\xd6\xb8\xda\x53\x98\xb2\x2e\xe8\xda\x8f\x5a\x86\x6b\x76\x8d\x3e\xc7\xbb\xe6\x25\x36\xba\x66\x6b\x5c\xdd\x35\xca\xba\xa0\x6b\xef\xb5\x24\xd0\xec\x1a\x7d\x8e\x77\xcd\x4b\x6c\x74\xcd\xd6\xb8\xba\x6b\x94\x35\xec\x1a\xec\xeb\x1f\x28\x84\x08\x76\xcb\x7d\x72\x4e\x81\x3c\x57\xa4\x24\x6f\x7e\x77\x67\xc7\x35\x1e\xa9\x8b\xa7\xfc\x24\xaf\xeb\x48\xe3\xf6\xb3\xdf\x01\x9e\x7b\x41\x2d\xbc\x23\x61\x37\x9a\xb5\xf2\x54\x98\x1f\x9d\xec\x77\xc5\x7e\x0e\xfa\xe2\xbe\x07\x9d\x61\xf5\xf0\xce\x7c\xdd\x98\x15\x9b\xd1\xb9\x82\xa7\x7e\x94\xc8\x34\xec\x28\xd3\x2b\xb0\x58\x92\xf6\x1b\xf3\x29\xe7\xf9\x62\x85\x97\xd0\x4b\xac\x42\x4a\xca\x64\x72\x29\xfd\xf5\x72\x9f\x98\xee\x92\xe5\x8a\x94\x5c\xb0\x46\x91\x9a\x78\x4a\x73\x7d\xfc\xcf\x41\xfb\xb1\xf5\x09\xeb\xf1\xa8\xf6\xf1\x4e\xd8\x97\xe6\x02\x15\xb9\x71\x52\x30\xd0\xaa\xf0\x9b\xa5\xbf\xf1\x20\x01\xe0\xa7\x07\x17\xe0\x2d\xf0\x5d\x21\x03\x66\x9f\x03\x2b\x00\x95\x47\xc6\xaa\xc4\xb6\xee\x7f\x76\xa5\x82\xef\xae\x27\x61\x3d\xbc\x3b\xa4\xa0\x1a\xc6\xf3\x06\x75\x1b\xc3\x79\xde\x0f\xf8\xe6\x7c\xfb\x55\xcd\x40\x02\xe0\x57\x38\xaa\x7f\x66\x00\x50\x78\x9e\x5a\x15\xfa\xb3\xe9\x18\x10\xf6\xc8\x1f\xe3\x26\x88\x03\xfa\xc8\x8f\xc2\x0d\xe0\x59\xee\x81\x0d\x78\xa7\xb1\x97\xe2\x1d\x86\x5e\x8a\x77\x16\x61\x8a\xe3\xef\xec\xb7\x65\xb4\xec\x9b\xdb\x8f\x14\xac\x34\x35\x41\x4b\x2d\xb7\xc1\x0f\x8e\x0d\xb0\xdf\x61\x69\xda\x78\xe6\xc7\x1b\x8b\x86\xb0\x10\x17\x21\xa0\x57\xfe\x11\x26\xdc\x84\x36\xad\x0d\x36\x42\x34\xb0\xa9\x9f\x40\x05\x7d\xe4\x84\x98\xc7\xfb\xf1\xba\xae\xf8\x1d\x5f\x62\x5b\x0b\x71\xf9\xf9\x92\x9c\x9e\x33\xfe\x6a\xdf\x73\x1f\xf4\x19\xe8\x09\xdd\xcc\x56\xb8\x9c\x3f\x5b\x92\xd3\xeb\x02\xda\x47\xfc\x54\xe4\xb0\xa0\xa8\xe6\x0e\xe1\x19\x98\x93\x18\xf8\xe7\xe8\x85\x7e\xbf\x3c\x86\x2c\x52\xd8\xf2\x3c\x48\x47\xcb\xf3\x80\xaa\x66\x61\x1e\x3b\x8f\xfe\x43\xec\xbe\xff\x30\x6b\x6e\x51\x0e\x0d\x60\x68\x39\x3f\xcd\x99\x01\x6a\xc2\x93\x97\x3e\xe6\xc9\x54\x0e\x45\x8b\x2e\x0a\xe6\x96\x05\xe1\x6c\x86\xa2\xa5\x6b\xc0\x58\xe2\x6e\x7d\xfc\x7e\xc4\xc2\x9a\x7a\x19\xbc\x00\xa7\xba\x3e\x43\x83\x41\x3d\xc1\xda\xbe\x59\x92\xd3\x5b\x5b\x42\xc3\xb1\x35\x33\x5f\xa9\xcd\x5c\xcb\x97\xa0\x61\x92\x55\xcc\x79\x51\x5c\x54\x83\x72\x9e\xc9\xaa\x57\x9c\xe1\x4f\x2c\xeb\xd3\x79\x04\xfc\xc3\x1e\xc2\x5f\x78\xa1\x53\x99\x1a\x51\x55\xde\xe2\x7a\xb5\x59\xa4\x8d\x3b\x77\xd2\x5c\xfc\xd7\xf0\xbd\xa3\x00\xba\x76\x7b\x6f\x6f\x3b\xae\x60\xee\x0e\xe8\x1e\xe4\x75\x79\x7b\x9b\x0e\x46\x98\xe0\x96\x5f\xac\x4e\x26\x3f\x25\x53\xd9\xaf\x8b\x57\xc5\x95\x2c\x9f\x27\xe0\x5b\x09\xde\x41\xa7\xf3\xba\x5e\x8e\xe2\x18\x58\x6e\xff\xef\x62\x0e\x96\x8a\x68\xd3\x85\x56\x4b\xb6\x5b\x23\xac\x6e\x44\x81\x6b\x48\xab\x61\xee\xcd\xee\x61\xaf\xd5\x15\xad\x67\xae\x98\x51\x6f\xa4\x85\x44\x0b\xfa\x33\x55\x4a\x81\x3e\x5d\x68\x94\x6f\xaa\x30\x56\x8b\x22\x83\x03\xc9\x9a\x8a\x43\x73\x54\x4d\xab\xa2\xa2\x3a\xd5\xd8\xe2\xa3\x15\x6f\x9d\xc9\xbe\xe6\xe7\x2d\xe8\x40\x9a\x42\xd8\x92\xe9\x2c\x93\x46\xd5\xe2\xec\x9c\xab\xf9\xf8\x5c\x24\x95\x48\xc4\xa8\x9a\x25\xf9\x68\xa5\x15\x78\x57\x1c\xa1\x30\xe2\x26\xbe\xeb\x91\x15\xf9\x5f\x32\x2f\x44\x45\x7c\xe4\x20\x6d\xe3\x2d\x60\x6d\x0f\xcd\xb5\x23\xc1\x39\x46\x1a\x86\x83\x0b\x32\x3a\x6e\xba\x22\xa3\x63\xa9\x2b\x32\x3a\xbe\xba\x22\x12\xdd\x71\x0c\x29\x24\xf0\xac\x05\x47\x65\x58\x56\xe7\x78\xb9\x5c\x69\xa3\xb3\x84\x1a\x1f\x88\x8e\xa2\x77\xf1\x7b\x30\x25\x9d\x57\x52\x8b\x3d\x48\x2e\x68\x8e\x4e\xf1\x8f\xc0\x67\x50\x82\x15\x6b\x2e\xab\x9a\xd1\x28\x19\x2b\x93\x76\xad\x6f\x99\xd7\x2f\x88\x08\x50\x5d\xa8\x99\x28\x25\x1a\xf8\xeb\xdd\x01\x86\xc9\xc1\xab\x41\x92\x41\x10\x10\xe0\x9a\x5e\x0d\x7a\x63\xa1\x4f\x7e\x1d\xe9\x20\xc1\x13\x9b\xb7\x22\x48\x46\x0d\x1d\xa6\xd7\x85\x38\x53\xd7\x22\x11\xe7\x2a\x95\x03\x88\xee\x04\x0e\x89\x36\xa0\x31\x67\xec\xd6\x23\x19\x93\x10\x74\xff\x8d\xef\xe1\x84\x1f\x68\xda\x63\x31\x0b\x37\x75\x0a\xa7\xf0\xe9\x10\xea\xaa\x89\xb9\x2a\xbe\x43\xdf\x21\x07\x92\xba\x73\xe2\x73\x6c\xf1\xd4\x4f\x1c\x9a\x78\x37\xd1\x3d\xe1\x93\x8b\x1f\xfa\xc3\xc8\xe1\x7e\xa8\xb8\xc0\x41\x0b\x2a\xe8\xd7\xc6\xfb\xaa\x65\x17\xc4\xf1\x57\x53\x55\xbf\xc8\x5f\xeb\xd4\x37\x7a\xb9\xb6\xb7\xcd\x28\x7d\xbe\xba\xa8\x80\x3f\xc3\x1e\x18\x2c\xc4\xfe\x8e\xc8\x4f\x16\x14\x67\x7b\x5b\xb0\x6e\xa2\xeb\x96\xce\x86\xb6\xb9\x11\xa7\x1c\xd7\x8a\x26\xba\x77\x80\x8a\xed\xd8\xa3\x48\xce\x0d\x89\x59\x9f\x07\x4b\x9e\x69\x91\xb7\x6a\x6b\x61\x7f\x95\xa8\xda\x86\x8c\x82\x58\x9b\x26\x24\x4c\x31\x9d\x1a\x8f\x0d\x5b\xf6\x0a\x4c\xc3\x4b\x55\x5d\x18\x9e\x0c\x64\x7e\x55\x98\x8d\x51\x89\x04\x1d\x0c\xab\x64\x8a\x1e\x17\xa2\x9d\xc3\x23\xb0\xf8\x0b\x1a\x9c\x17\xb9\xec\x78\xa1\xd1\xbd\x93\xb2\x39\xd5\x70\xf6\x21\xec\xf7\xb3\xba\x2e\xd5\xe9\x1c\xe2\xb2\xea\x61\xb6\xa2\x93\x7d\x9f\x0c\xd1\xa3\x23\xa7\x34\xfb\xf8\x31\x60\x4a\x7a\xfd\xbc\xeb\x93\x37\x0e\x5c\xda\x19\x64\xaf\xdb\xdc\x79\xac\xd9\x3d\x3f\x02\xe9\x82\x48\x1f\xa2\xc9\x4f\xb9\x47\x5a\x37\xe8\xdd\xd3\x50\x07\x37\x64\x5a\x41\x36\x87\x8d\xe0\xf2\x8b\x5b\x59\x18\x45\xfe\xd7\xa6\x9d\xe4\x7e\xd3\x76\x92\xdd\x96\x54\x98\xb9\x59\x43\xdf\xcf\xc3\x74\x36\xdf\x67\xf3\x72\x69\x49\x2f\x0b\x7b\x44\x75\x59\xe8\xee\xd3\x2c\x5a\x02\x10\xdc\x82\x1b\xd8\xc3\xe6\x0d\x0c\x2f\x3f\xfe\x2d\xb0\x31\x13\x61\x35\xb1\x0b\xe1\xea\x42\x91\x68\x3c\x7a\x98\x4d\xce\xad\xbf\xfa\x88\x10\x91\x6e\xf9\x70\x55\x91\x2e\xf0\x7b\x5d\x63\xde\xdb\x2b\xce\x14\xa8\xa8\xd9\x33\xf8\xfc\x7b\x39\x53\x34\x73\x2b\xca\x8b\x04\x1e\xdf\x81\x1b\x1a\x77\x86\x89\xaa\xcf\xe7\xa7\xfd\x71\x31\x1d\x9c\x25\x63\x79\x5a\x14\x17\x03\xb8\x23\x0c\xe0\x50\xae\x06\x5f\x7f\xfd\xd5\xb7\xac\x1a\xf0\x5a\x9d\xd7\x05\x8e\xba\x38\x23\xa3\xf2\x29\xbc\x69\x1b\xb1\x04\x5c\x52\xe1\xb0\x47\xa3\x0d\xdf\x51\xf2\x07\x95\x82\xf7\x52\xc0\x7a\xb5\xd0\x0c\x1e\x38\x63\x08\x6b\xe9\xe0\x78\xa0\xa6\x79\x92\xa9\xfa\xa6\xcf\xf9\xd5\x17\x71\xa6\xca\xd5\x0e\x74\x36\x12\xeb\x79\x9f\x94\x13\xb9\xe4\x00\xf3\x69\x02\xe7\x30\x5a\x75\x40\x3d\x1c\x35\xc5\x71\x15\x12\x2a\x96\x9c\x9a\x1b\x9f\xf4\xe1\xd1\x8c\x8b\xb0\xe6\x39\x8e\x04\xb9\x2e\x9b\x5b\x03\xf7\xe6\xee\x72\xae\x51\x63\xac\x3a\x08\x16\x3f\x85\xc2\x21\xf0\xcd\xce\x8e\xf8\x0b\x53\xe9\x9b\x76\x3c\x01\xd2\x6e\x6d\x2e\x41\xc2\x00\x3c\x11\x92\x0f\x29\x04\xe8\x59\xf3\xaa\xd2\x4c\x59\x63\x88\x4b\xa5\xa6\xc6\x88\x9b\x71\xdc\x4d\x54\xcc\x7e\x75\x5e\x94\xb5\xac\xea\x45\x60\x40\xaf\xf4\x34\x35\x97\x12\x3e\xff\x5e\xd8\xd4\x27\x8b\xbe\xa7\xd9\xbc\xf4\xa5\xc9\xd8\xb6\x81\xa3\x64\xc1\xae\x69\xee\x1b\x38\x62\x9a\x32\x08\xc7\x28\xe0\x67\xd1\x22\xee\x12\x95\xd2\x81\x76\x17\x8b\xe9\xb8\x66\x56\x76\xf6\xd8\x18\xd4\xb2\x44\xac\x8c\xd6\xb5\x84\x19\xdd\xff\x35\x7b\x91\x54\xd8\x2c\xb3\x96\x4c\xd8\x64\x3d\x6e\x18\xdd\x08\x17\x68\xf2\xb4\x54\xd6\x72\x5c\xc3\x46\x3b\xd4\xf7\x0e\xbe\x1b\xc2\xb4\x80\x36\x57\x6c\x53\x46\xe4\x1b\xd0\x70\x8c\x36\x5d\x0f\xb8\xae\x64\x61\xa6\xb5\x6e\xbd\xf1\x11\x87\x69\xc1\x88\x17\x4c\xc8\x93\x08\x4b\x5c\x4c\x04\x6b\x73\xce\xb5\x14\x32\x71\x82\x6a\xe6\x5f\xe7\x64\x59\x7c\x44\xdf\x76\xc3\x57\xf4\x45\x2c\x15\x69\x21\x8f\x20\xac\x99\x94\x90\x8a\xd8\x82\xf7\x67\x7c\x31\x5f\xe4\x69\x64\xbd\x1b\x79\xd6\x39\xa0\x16\xcf\xdf\x9a\x8b\x16\x9f\xe6\x3b\xed\xda\x85\x7b\xd6\xec\xd8\xd5\x93\xfc\x73\xd5\x0c\xc4\xc9\x45\xbc\x00\xc8\x9b\x09\xdf\x8d\x62\xc1\xad\xa8\xeb\xb5\xd0\x01\x8d\x1b\x39\xf2\x9b\x28\x5c\x80\xb9\x75\x25\x45\x5a\x16\xd6\x05\x16\x04\xd3\xbc\x80\x80\xea\xe6\x08\x51\xf9\x04\xad\x94\x58\x00\xf6\x86\xc6\xd0\xe0\x91\x2f\xc3\x45\x34\xce\xbd\xfc\xc1\x21\x12\x96\x57\x38\xd4\x44\x7f\xc0\xdd\x78\x98\x5e\x5b\x6d\x27\x80\xfe\x36\xe5\x16\x40\x38\xb2\xc9\xe3\xd1\x4c\xbb\xde\x90\x3a\x46\x57\x59\x4a\xa1\x2a\x91\x17\xe8\x2a\x22\x54\xce\x75\x28\x49\x2e\xe4\x74\x56\xdf\x30\x9d\xe4\xb1\x81\xab\xc3\xb7\x72\x78\x12\xb0\x03\x2f\x42\x91\x0f\x14\x41\x2f\x8b\x52\x5f\x10\x64\x55\xa9\x53\xa5\x6f\x04\x00\x7e\x75\xf8\xe2\x8d\x18\xeb\xb5\x2a\xf3\x0a\x50\x4f\x49\xc5\xe3\xf4\x45\xa4\x81\x37\x61\x7f\x41\xdf\x79\x8c\xb0\x58\x81\xd6\x13\x6d\xeb\xfb\xe2\xc7\xe2\x4a\x5e\xca\x12\xaa\x03\xf4\x8f\x69\x02\x31\x86\xeb\x32\x49\x65\x71\x76\xc6\xab\x18\xc5\x9e\xa7\x47\xba\xb6\x4a\xd6\x7d\xc4\x89\xc0\x7e\x64\xc5\x44\x8d\x01\xa6\x94\x5e\x15\xfa\x54\x05\x80\x58\x25\x59\x56\x5c\xe9\xc9\x9a\xc3\xab\x80\xc5\xa0\x00\xe5\xbf\x45\x11\x10\x95\xfa\x4d\x8a\xa9\xca\xd5\x94\x70\x5b\x9d\x5a\x16\x66\x0d\xc3\x91\xe5\x13\x69\xc2\xa4\x43\x87\xad\x4e\x0a\x1c\xa2\x00\x03\xe1\xf0\xbc\xb8\xfa\x09\x94\x57\xef\xc9\x5c\xc1\xe1\x29\xc6\x86\xf4\x24\x80\x26\x64\x47\x5c\x88\x78\xd7\x4a\x4a\x95\xf4\x52\xc0\x18\x39\x95\xe9\xe9\x4d\x0b\x9f\x1a\xc5\x53\xa1\x52\x13\x0d\x97\x18\xb8\x6e\x7b\xb8\xa0\x4b\xdb\xdb\x06\xee\x87\x51\x49\x55\x97\x2a\x9f\xb4\xc4\x53\xfa\xe8\xe0\xe6\x1c\x20\x9f\xcf\x43\xbb\xee\x9a\x92\x54\xd5\x4f\xf0\x9e\x39\xce\xaa\xeb\x36\xe4\xee\xdb\xaf\x61\x39\x97\x62\x14\x1f\xfc\xf4\x1d\x36\x4e\x49\x03\x16\xd8\x88\x84\x7a\xcb\x9f\x10\x98\x61\xc1\x2f\xf8\xa2\x63\x66\xd8\x06\x86\x31\x7b\xe3\x8b\x98\x7d\x83\x8f\xea\x18\x15\x0c\x2c\xe8\xbf\xfb\xf4\x64\x49\x19\x3c\xc5\xfc\xc3\x8b\xbf\x03\xf1\xae\x78\x24\xb1\xb0\x2b\x4e\xcf\xbc\xef\x9f\xb6\x0b\xba\xc1\x04\xde\x7d\xff\x6e\xe2\xc9\x4b\x6c\xea\xf8\x2d\x6a\xf1\x84\x2e\xe9\x4a\xa0\xf5\x59\xa3\x92\x58\xff\xbc\x5a\x6e\x17\xcc\x99\x67\xd2\xb2\x70\xce\x8c\x2a\xc9\xd3\x20\x2d\x98\x2f\xd2\x87\xdd\xef\x4c\xc5\x3a\xb0\xd1\x2c\x45\x7a\xb5\x74\x7e\x36\x7b\x7d\x8f\xc8\x4f\xc0\x00\xb8\xe8\xb4\xea\x55\x18\x78\xb9\x85\xfa\x48\xc4\x08\x6a\x20\x70\x2f\xef\xa1\xb6\x38\x13\x7f\x35\x2f\xba\x83\xef\xf0\x85\xd7\x3e\x44\x58\x8e\x0e\xe5\x46\xce\xbf\x25\xd6\x3f\x5d\x72\x24\xe8\x0d\xa2\xf9\xce\x7c\xbc\xd5\x89\xbe\xda\xf2\xc9\xd2\x6c\x03\x60\x13\x52\xdf\x02\xcd\x0a\x13\xaf\xe5\xb4\x58\xf2\x06\x6b\x61\x17\xda\x41\x48\x01\x8b\x4e\xc2\xae\x5a\x0c\x70\xc6\xbb\x1a\x87\x2e\x69\x74\xcf\xcb\xe1\x24\x1b\x8a\xef\x8b\x22\x93\x49\xde\x36\xc6\x39\xdc\x72\x01\x32\x1a\xc0\x70\x93\x81\x27\xdf\x7a\x77\x6b\xef\x8f\xdb\x2e\x37\xbb\x63\xe0\xd5\x54\x8d\x97\x4c\x92\xcc\xba\x90\xb3\xf8\xed\x65\x99\x4c\xf0\x41\x1d\xa3\xb4\xaf\x1f\xfe\xda\xdb\x96\x9d\x35\x50\x67\x43\xa3\xc5\xc6\xc9\x19\x9e\x50\x64\x21\x47\x81\x88\xba\x9e\x01\xed\xf6\xb6\xf0\x93\x99\xeb\x6e\x97\x0c\xf3\x1b\x79\xc0\x22\xca\xac\x4d\x0c\x4e\x98\x92\x38\x9a\xa5\x11\xb6\x9d\x6c\xc6\xbe\x8a\xa7\x78\xb4\xfb\x46\x43\x2a\x1d\xfa\xb3\x73\xd4\x94\x09\xcc\xdb\x00\x47\x86\xd1\x77\x69\x5a\xe1\x25\xbc\xa6\xdb\xdc\x0d\x1e\x3a\xe6\xaf\xce\x8d\x81\x50\xff\xcd\xe8\x0e\x72\xb2\x56\x2f\xe5\x59\xc4\x80\xb5\x61\x06\xe9\xe5\x0f\xd2\x7c\xc5\xd6\xca\xb5\x8f\x99\x76\x46\xb0\x82\x6b\xbc\x52\x0d\x57\xab\xfb\xac\xff\x5b\xb4\xd3\x8d\xaf\xeb\xd0\xa7\x45\x45\x66\x96\x1a\x71\x82\x34\x8e\xec\x86\xbc\x8e\x2c\x38\xb2\x0b\x80\xe0\xd8\xa2\x05\x4d\x69\xfb\x2b\xd1\xaf\x66\x99\xaa\xdb\xad\x5e\xab\x73\xb4\x73\xd2\xe9\x9c\x74\x97\x2b\x5b\x18\x39\xc3\x4d\x37\x42\xe6\xdc\x71\xb7\xe3\x74\xa7\xc8\x89\x31\x77\x2c\xac\x7c\x63\x22\xaa\x59\x92\x2f\x9e\x09\x6c\xcb\xf7\x65\x01\xb9\x8f\x19\x1d\x52\xe3\x1d\x92\x50\xcd\xf5\xeb\x2e\x08\xc6\x74\x6c\xfc\x01\x61\x7c\xff\x10\xc6\x0c\x33\x2d\x49\xd3\x4a\x5f\x55\x91\x4a\x7c\x7f\x37\x0f\xe9\x17\x4f\xc2\x15\xe0\x7b\xe6\xa8\x77\x50\xc2\xc6\xcb\x9b\x55\xe5\x20\x34\x23\x78\x48\xcb\xe0\xd8\xb4\x44\x5b\xaa\x14\x30\x44\x91\x87\xa0\x61\x42\xd4\x67\x2f\x04\xe4\x12\x87\x52\x8a\xa3\xe7\x87\x87\xe2\xd9\xdb\x83\x93\xf6\x97\xe3\xaa\xea\x88\x53\x99\x15\x57\xa0\xdf\x98\x16\xa5\x5e\xd0\x3a\x51\x59\xe5\x75\x16\xc9\x7e\x0d\xd4\xb0\x26\xde\x18\xdb\x3d\xae\x34\x5e\xe5\x9a\xa0\x90\x05\x58\xd8\x21\x22\x22\x0c\x02\x94\x37\xc6\xda\x8e\xd5\x1a\x13\xb0\x57\x2e\x4c\xb3\xfa\x73\x67\xc1\x14\xab\xde\xbb\xf3\xdc\xa1\xfa\xac\xc8\x27\x00\xcd\x5b\xa1\xbe\x72\x71\x4b\xde\x45\x6f\x35\x85\x9d\x4b\x81\xc8\xb8\x5a\x5c\x9d\xaa\x2c\x53\x95\x1c\x17\x39\x9a\x1f\x82\xed\x0b\x3d\xc1\x56\xe7\xa8\x5a\x68\x12\x34\x0f\x4a\x0f\xa6\x33\x6a\x3a\x4b\xc6\xb8\x43\x8d\x6b\xa5\xee\x72\x0a\xa6\x15\xed\x51\xa0\x1d\x1d\x79\x58\x85\xce\xee\x82\xf7\x1d\xbb\x78\xbf\xbd\x47\x9b\xb5\x22\x97\xe2\x2a\x71\xc6\x6a\xa5\x1c\xcb\xbc\xce\x6e\xc8\xe7\xbd\xd1\x35\x6b\x23\xf2\x69\xdd\x4b\xc4\xbc\x92\x25\x86\x05\xc7\xd9\xe1\x30\xcc\x2b\xa7\xdc\xf5\xc7\xcd\xe3\x5a\x1d\x32\x0b\xa5\x1c\xe2\xf9\xb9\xcc\x66\x4e\x43\x84\x88\x12\x9e\x86\x0c\x74\x4e\x7d\xc7\xeb\x6e\x8a\x39\xd9\x48\x99\x58\xe6\xb5\xa9\xb7\x2f\x0e\x6a\x2d\xc4\x65\x14\x18\xbf\x2e\x44\x22\xca\x24\x4f\x8b\x69\x76\xc3\xce\x00\xe5\x4d\xac\x4a\xd7\xd8\xd1\xaf\x93\x0b\xcd\x95\x9c\xaa\x8d\x4b\xaa\xaa\x2f\xfb\x68\xd9\xa8\xf7\x0d\x3c\x14\x38\x93\x44\x3d\xd3\x54\x09\xec\xd2\x0a\xa0\x30\x3c\x52\x60\x66\x06\x23\xf7\x12\x04\x1a\x38\x79\x3d\xd3\xdc\xd3\xeb\x2f\xc7\xb7\xb9\xb7\x0d\x76\x8e\x76\xc6\x9b\xed\x2f\xe8\x6c\xb0\xbf\x02\xc5\xb8\xbf\xbf\xdc\xe8\x3e\x91\x80\xcf\x6a\x9a\x43\x20\xe4\xaa\xd6\xd7\x49\xe8\x87\x51\xd6\xfa\xb4\xbc\x70\x74\xae\x57\x1b\x91\xb2\xd1\x7d\x83\x11\x75\xea\x16\xdb\x01\x04\x95\xf2\xbf\xe7\xb2\x42\xfb\xe8\x53\x89\x44\x91\xfa\xc8\xb2\x7f\x9b\x25\x65\x32\x15\x1f\xf0\x08\xba\x25\x9b\x93\xf7\xd6\xfa\xa4\x2a\xe6\xe5\x58\x1a\x4b\xd4\x31\x35\xe9\x41\xa0\xe2\xc3\xff\x30\x80\x29\xfe\xf4\xee\x3a\xa3\xd9\xfb\xec\xec\x9b\x00\xb1\x35\xda\xd7\x00\x02\x96\xe9\xb6\x35\x43\xca\x57\x21\xc0\x2e\x94\x62\xfe\xdd\x70\x5f\xdf\x7b\xeb\x07\xec\xd4\xd8\x89\xce\x1a\x98\xcb\xc1\xb5\x9d\x8f\x56\x32\x54\xec\x06\x64\x2e\xa8\x69\x02\x59\xec\x68\x84\xb5\x8d\x4e\xda\x83\x64\xa6\x08\x52\x76\xd0\x89\x49\x87\xec\x7e\xbb\x86\xd0\x65\x96\x0a\x7d\x08\xc4\xff\x91\x65\xd1\x23\xd3\x0d\xf8\x54\x09\xe4\xce\x20\xd2\xe7\x52\xb3\x51\x7a\xa2\xf1\x39\x24\xa9\xe4\xef\x88\x1a\x0e\x20\xf1\x4b\x04\xd7\x25\x13\xef\xee\xba\x86\x79\x1e\xbd\x2c\x32\x2d\x95\xc2\x19\x35\x99\xab\x54\x9e\xb4\x07\xee\x95\x6d\xc0\x6e\xc7\x83\x2f\xdd\x0f\x9b\x03\x7a\xd9\x01\x19\x0c\xe0\x9b\x41\xb2\x4d\x4e\x8b\x79\x4d\x98\xdb\xd0\x49\x30\x58\x71\x26\x67\x51\xf8\xda\xc8\xed\xfd\x13\xc9\xc0\xd5\x48\x00\xc3\xc3\x01\x1a\xdf\x8d\x8b\xe9\x74\x9e\xab\xfa\x06\x40\x86\x17\xc0\xed\xba\x0f\x5f\xba\x8a\x7a\x14\x16\x24\x42\x4a\x81\x32\xa0\x49\x4e\xcb\x51\x78\x1d\x4a\x6a\x1b\xaf\x18\x74\x31\x26\xe7\xb0\xd7\x73\xe5\xf9\x87\x9d\x65\x6a\x46\x0a\x21\x7d\xd7\x6d\x53\x62\x87\xc1\xf8\x2e\x06\xa5\xb5\x61\xf1\x4b\x75\xa9\xaf\x8d\xd3\x22\x9d\x67\x00\x90\x2e\xcb\x4b\x22\x17\x0f\x21\xf6\x5a\xcc\x92\xf1\x45\x32\x91\x95\x0b\x74\x1f\xf4\xdf\xea\x86\x8c\x2b\x8b\xb9\x3f\x71\xb4\x8b\x55\x4e\x90\xac\x94\x43\x43\xc0\x06\x0e\x56\x07\x26\xfe\x61\x49\x4e\xdf\x17\x51\xe7\x70\x6d\x89\x8f\x1f\x5d\x2b\x9b\x84\x47\x63\x5d\x43\x00\x12\xdf\x26\xf4\xa5\x39\xd5\x80\x22\x55\x65\xe7\x4a\xd1\x11\x37\x2b\x2a\x86\x1a\x8e\x85\x7e\xa6\x68\x92\x28\x16\x52\xfc\x1c\x08\x38\x0c\x31\x37\x7a\x95\x4a\xcd\x03\xac\xe6\x34\x45\x9e\xdd\x04\x96\x9e\xe3\x44\x4b\x41\xf3\x4a\x62\x5c\xc6\xf2\x52\x96\x50\xaa\x1f\x9b\xaa\xf6\xf1\xd6\x74\xae\x7a\x4e\x93\xc4\xc0\x5e\xf1\x4f\xe8\x47\xbb\x43\xa0\xaf\x9d\x46\xd8\x36\x3b\x09\xbe\x6a\x58\xe9\x99\xbc\xdd\x84\x1a\xe9\x4a\x2b\x7a\x28\x41\xe6\x49\xe6\x33\x0a\x24\x3b\xbd\x7e\x2f\x8b\x72\x4a\x2e\x55\xfa\x1f\x79\x5d\xc7\xe1\x58\x28\xf4\x23\x66\xa1\xf7\x9b\x4d\x9f\x45\x9a\x6d\xf5\x89\xa7\xeb\xbb\xb6\xd8\x17\xad\x66\x8e\x56\x80\x91\xc9\xf7\x06\xcb\x1d\x60\xe3\x3a\xc3\x05\xea\x70\xb3\x62\xc2\xa1\x09\xb6\x5e\x33\xdf\xfd\x81\x79\x7f\x56\x08\xee\x95\xb0\xd9\x9f\x0c\x87\xed\x07\x8a\x5a\x0f\xfe\x7a\x53\x28\xeb\xbb\xc0\x65\x7f\x0f\x2e\x92\xdf\x27\x15\x43\x67\x76\xdf\xee\x80\x93\xfd\x99\xd0\x58\xcb\xa2\xa8\x9b\xd8\x89\xfa\x2b\xc7\x67\x96\xd7\xf5\xb3\x4c\x4d\x1c\x5a\x14\x83\xb5\xcb\xe4\x35\xa2\xc9\x0a\x1f\x2a\x70\x0d\xbc\xbb\x3d\x86\x77\x67\xa1\xf3\x76\xf7\x16\x40\x82\xb6\x1e\x73\xf4\x40\x06\xe7\x48\xa1\x19\xbc\xc8\x7d\x2f\xae\x67\x99\x1a\xab\x3a\xbb\xb1\x21\xcd\xcc\x6e\x42\x8e\x5b\x17\x02\xc2\x1f\x89\x44\x9c\xce\x35\x9b\x15\x07\x2f\xc4\xee\xae\xe5\xa1\x51\x7c\xd1\x04\xa6\xbb\x1f\x20\xa8\x78\xaf\x2f\x8d\x27\x07\xe4\x51\xed\x96\x03\x3b\xec\x8d\x11\xde\x90\x3f\x04\x9a\x87\x89\x35\x1e\x2d\xaa\xda\x14\xbb\xf5\x10\x1e\xe1\x72\xef\xe3\x3b\xae\x83\xc7\xea\x8f\x29\x3e\x60\xa8\xfa\xcd\x2c\x19\xab\xfa\x86\xbf\x4a\x82\x6b\x99\x9e\xdf\x22\xb7\x97\xf0\x4b\x35\xd6\xb2\x8d\x42\x47\x5f\x7d\x52\x25\x69\x2a\xaa\x99\x1c\xab\x33\xbd\x22\x37\xae\x78\xeb\x6f\x53\x99\xaa\x44\xb4\xa1\xfe\x21\x84\xd2\xea\xb4\xc2\x80\xc9\x0d\x90\x48\x98\x1b\x8c\x5a\x13\x8f\x99\xec\x26\xc5\x20\x24\xa5\x2b\xe6\xc5\xab\x93\x0d\x70\x19\x15\x98\xaa\x8f\xc3\xd7\xd6\x95\x00\x70\x7c\xd3\x01\xda\x9b\x4c\x27\x72\xff\x78\x0b\x6e\x5c\xc7\x5b\x0c\x43\x55\x27\x90\xa9\x4c\x80\xae\x86\xb0\x89\x3d\xb6\x5b\x5a\x7f\xaa\xd4\x6f\xf2\x70\x9a\x64\xd9\xb6\x3f\x5c\xaf\xc4\xc3\xfb\xeb\xaf\xcc\xd3\x46\x6f\x5f\xe4\x69\xa3\xaf\x84\x63\xb8\x49\x67\x4d\x91\xfb\xe8\x2d\x2c\xe2\xfe\xf1\x96\xca\xcf\x65\xa9\xfc\x09\x86\xb4\x03\x4c\x18\x72\x33\x08\x24\x0b\x2a\xb2\x3e\x18\xed\xc2\xc6\x67\xa5\x9a\x26\xe5\x4d\xb3\xf1\xb7\x98\xd0\x6c\xdc\x27\x3a\x2a\xdf\x9f\x26\x2a\xbf\x87\x5d\xef\x55\xf7\xef\xb0\xe9\x3f\x7d\x85\x50\xb5\x17\x5d\xa3\x43\x93\xb4\x6a\x95\x6c\x1d\xf7\xb5\x4e\x41\x85\xff\xa6\x2b\xf5\xb6\x92\xf3\xb4\xe8\xa1\x09\xf0\xaa\xf5\x32\x7c\xb7\x89\x38\x6d\x52\x86\xe2\xc3\x5d\x08\x41\x73\x24\x4d\x07\x9a\x29\x79\x34\x60\x59\x55\x0c\xea\xf7\xe1\x46\x08\xbf\xdf\x74\xd6\x26\x54\x0b\xec\x68\xe3\xd0\x35\x05\x35\x40\x10\x65\xbd\x8a\x43\x30\x3b\xcc\x66\x2d\xad\xb9\xef\x89\x96\xe9\x0e\x6a\x39\xad\x18\xab\xb3\xa9\xff\x98\x57\xb5\x3a\xbb\x79\x6e\x31\xa2\x03\x66\x78\xcc\xd0\x3c\xcd\x15\xef\x9d\x3c\x83\xf7\x2e\x54\xd0\x1c\x8c\x8b\xbc\xf2\xd5\x4d\x4a\x7f\x1a\x74\x44\x25\xc7\x3c\xf8\x98\x17\xe6\x0b\x6a\x2a\xe5\x84\x0c\xc3\xe1\x45\xe6\x32\x51\x19\xa0\xf9\xeb\x0a\x44\x41\x21\xfc\xbd\x4b\xa3\x6e\x0d\x45\xec\xf5\xb1\x3b\x5d\x99\xa5\xf0\x9d\xfa\x60\x73\xd8\x81\xe9\xc4\xc9\x7e\x94\xe2\xe5\x5b\x02\xc0\xe7\x95\xfd\x74\xe4\x4e\xfb\x24\xec\xe7\x00\x4b\x5c\x93\x87\x5a\x06\x76\xe5\xb2\xe9\x5f\x3e\xa0\xb8\x1b\x05\xfd\xf4\xc0\xe6\x48\x78\x66\x68\x73\x7e\x15\x3e\x20\x65\x1a\xe2\x60\xa6\x21\xf6\x65\xda\xc0\xbb\x4c\xd7\x41\xba\x6c\xc0\x26\xf2\xe7\xeb\x77\x71\xd0\xd2\x77\x6a\x36\x63\xbe\xdd\xcd\xa4\x38\x60\xe9\xbb\xf5\x01\x4b\xdf\x35\xa0\x37\xc1\xc4\xdc\x74\x46\xff\x70\x6a\x2c\x4c\xf1\xf2\x79\x33\x3d\x05\x80\x7e\x36\xd1\x5e\xf1\x0d\x30\xe3\x34\xad\xad\x84\x8c\xb3\xf4\x42\x3f\xf5\xa2\x7a\xc0\x70\x69\x13\x5a\x0e\x67\x0d\xbf\xeb\xce\x31\x98\xb4\x75\x2d\xb9\xdc\x55\x78\x7d\x03\x3e\xcd\xaf\xbb\x82\x9b\x9a\x03\x9d\x82\x5a\xc7\x92\xa7\x33\x63\x3a\xb2\xa3\x89\xd8\x50\x41\x0a\x18\x4b\x71\xb0\x25\xd3\x92\x25\x36\x61\xd7\xc7\x1e\x0b\x7e\x0b\x38\xfc\x48\x03\x3a\x01\xea\xb7\xac\xb9\x85\xef\x29\xce\xf4\xc9\xca\xf6\x4e\x4c\x90\x79\x1a\x64\x78\x91\xd3\xfd\xe2\xf6\x48\xff\x3c\x31\xc7\x3b\x5e\xc3\x71\x25\xd0\xe6\x8f\x12\xce\xdc\x0a\x0d\xc5\x17\x0b\xf7\x81\x3b\x2a\x83\x9d\x55\x52\x10\xbc\x63\xe6\x0d\xb0\x9e\xdd\x5b\x60\xee\x15\x31\xf6\x82\xd3\x8a\x2a\xfe\x94\x68\xf4\x8e\x6b\x47\xcc\xb9\xbc\x67\x12\x38\x2d\x96\x1a\x0d\x2d\x8c\x34\x8e\x41\x74\x17\xc5\x0b\x47\x47\xdf\x39\x98\xfd\x53\xd0\x56\x63\xb8\x5c\x13\x44\x9b\xcf\xd3\x3b\xfd\xaa\x98\x4a\xa6\x68\x86\x04\xa6\x4f\x5e\xbc\x75\x54\xf5\xf7\x24\x53\xa9\x67\x3c\xdb\xb1\x4e\xaf\x7d\x87\x57\xaa\xc6\x17\x46\x79\xeb\xdb\xb2\x43\x4f\x9b\x6d\x2d\x0c\xdc\x1c\x81\xff\xca\x05\xb5\x40\xcf\xad\x99\xc1\x2d\x6e\x89\xbf\x88\x16\x18\x3a\x58\xb3\xef\x44\x20\x42\x98\x9d\xf9\x56\x57\xb4\x5e\xaa\x52\x9e\x15\xd7\x64\xa6\x00\x6f\x67\x0d\xbc\x03\xc8\xa8\x1b\xa7\x18\xa3\x16\xb5\xc6\xb4\x6d\x5b\x25\x11\x83\x62\xd7\x46\x9a\x8b\x00\x34\x4c\xe7\xaa\x57\x94\x93\x01\xd7\x0d\x12\x4a\xc3\xee\xc3\x6f\x1f\x7f\x1d\xc7\xfe\xda\x24\xf0\xf3\xef\xca\xa4\x6c\xd9\x13\xe2\xa7\x59\x97\xe1\x03\xa4\x66\xbe\xe6\xb5\xdd\x05\x73\x3a\xa8\x8d\xa3\x5f\x25\xea\xf3\x02\x1f\x3b\xa6\x94\xbf\xc2\xe0\x9c\x53\x08\xbe\x2e\xf3\x4a\xae\x78\x32\xa4\x3b\x56\xf3\x65\xdc\xf0\xfb\x2e\x93\x5b\x45\x8b\x2e\xb5\xfa\x4f\x7b\x6f\x8a\xbd\x5c\x07\x2f\xfc\x44\x3d\x40\x98\xa7\xd2\x77\x2d\xf3\x8d\xcb\x56\xc7\x0b\x0e\xaa\x16\x17\xf2\xe6\xb4\x48\xca\x94\xec\xef\x4a\x14\x38\xd6\x68\xea\x25\xe7\xe3\x9b\x35\x4a\x8d\x48\x78\xda\x5a\xa7\xad\xf5\x9b\x99\xa8\x4b\x99\x77\x31\x14\x77\x22\x72\x39\x41\xe8\x26\xd4\xd9\x80\xe3\x1c\xc4\x55\x2e\x8d\x7d\x0e\xdd\x92\xf4\x05\xb4\xc8\x89\xdc\x04\xbc\x70\xb5\x61\xd5\x55\x25\x8a\xb3\x5a\xe6\x60\x85\x75\x36\xcf\x80\x1e\xe0\x5a\x62\x24\x7f\x88\x68\x51\x94\x18\x63\x8d\x57\x40\xa4\x07\x1c\xfe\x4a\xd5\xe7\x26\x98\x8d\x48\x4e\x35\xd7\x28\x4a\xdc\x3b\x5d\x48\x2c\xe6\xb5\x28\xe7\xca\xd6\x8a\x9a\x65\x5b\xdd\x6f\x68\x41\x0b\xe1\xa6\x7c\x73\xbc\x74\x22\x63\xf4\x67\x6d\x23\xd0\x5e\x02\x64\xc3\x05\x26\x12\x50\x3b\x75\x16\x29\xcd\xec\xf7\x11\x88\x14\x68\x65\xf5\xdf\x73\x75\x99\x64\x84\xef\x86\xda\x6a\xbd\x3d\x88\x34\x35\x03\x51\xf9\x84\xf7\xac\x82\x8b\x66\xa4\x67\xba\x4e\xdd\x33\x92\x23\x4f\x3a\x9f\xfa\x2c\xed\x4e\xdb\x16\xbc\x44\xbb\xdf\x9d\xff\xb8\x98\xb2\x9f\xff\x41\x8b\xe2\x0f\xaf\xf7\x92\x75\xd7\xb0\xa1\xec\x41\xd1\x95\x62\x1f\x07\x7e\x9e\x4f\x78\x3b\x63\x97\x72\x9b\x9f\x11\xd4\x82\x87\x2d\x7c\xc1\xe2\x8f\x50\x56\xdd\xf2\x2d\xca\x8f\x28\xc4\xc9\xf1\x85\xd5\xf6\x34\xd4\x3f\x42\xa8\x7c\x36\x77\x55\x8c\xe7\x65\xe5\x29\x75\x8d\x0b\xcf\xe2\xe8\x5f\x05\xea\xd4\x5c\x68\xc7\x98\x7e\x25\x1a\xde\xca\x0b\x69\xea\xc7\xc7\x34\xd1\x51\xcc\x6f\x3b\x34\xf3\xc1\x84\x3d\xdc\x3d\x46\xff\xb5\xdb\x3b\xbd\xa1\x1f\x5e\xa9\x7a\x7c\x0e\x2f\x90\x6b\xab\x43\x5c\x99\xb8\x3a\xc4\x21\x57\xd9\x50\x26\xe6\x0b\xd3\x6a\xc0\xaa\x78\x68\xf8\xf4\x2d\xcc\xa3\x09\x21\xcc\xa3\xbf\xdd\xab\xfe\x83\x18\xdd\x73\xac\xde\x69\x08\xbc\xcf\x0d\xf5\x84\xd7\xfd\x86\xf2\x41\xf1\x8e\x2b\xde\x63\x95\xc6\x62\x3c\x00\x21\xfa\xa0\xf0\xee\x93\x9f\x0b\x81\x03\x58\x9e\x77\xf2\xcc\xe6\xc8\xf9\x50\x73\x3e\x4a\xeb\x3a\x3a\x63\xfe\xad\x3c\xb8\x01\x3a\xb4\xb3\xe8\x06\xf0\x81\xe5\xf0\xd7\x95\x7e\x33\xcf\x9c\x24\x7d\x93\x67\x2e\x38\x84\xf9\xc0\x72\xa0\xac\xc9\x72\x58\xe1\x13\x73\xd4\xc9\x29\x50\xb6\x83\xf5\xa7\x0f\x2e\x07\xc0\xfb\x98\x54\xb4\x04\xc3\x14\x7c\xb4\x35\x49\xf0\xeb\x4e\x38\xfa\x86\x5c\x8d\x62\x04\x56\xdf\xfb\xa1\x09\x70\xb5\xa2\xc4\x27\x9f\x98\xc6\x44\xd9\x7a\x1c\x1e\xbe\x59\x72\xf6\xfb\x9d\x3c\xc3\x5f\xb9\xad\x1b\x17\xcf\xa2\xe1\xc3\x42\x99\x5f\xac\xf3\x66\x05\xcc\x2f\x9c\x6d\x02\xbb\xa7\x99\xa5\x5f\x37\x33\xaa\x00\x26\x2e\x80\xb5\xdf\x1c\xf3\x9c\x6d\xf1\x10\xf6\xdc\xf8\xb0\xfa\xf3\xd3\xf1\x81\xd0\x1d\x9b\x09\xb1\xd0\xa9\xe6\xfb\x84\x43\x1f\xdb\x8d\xbf\x1c\x0c\x9d\xba\xba\x16\x1e\xfa\x74\xae\xf8\x11\xba\xdf\xb0\xfb\xd9\x0c\xe5\xb0\x89\x72\x43\x0b\xed\x41\xac\x45\x00\xe8\x6e\xf9\x25\x3f\xe8\xd4\xf6\x76\xd0\xcd\x7e\xb3\xd2\x78\x86\xb5\x40\x91\x96\xe0\x49\xc6\x86\xa3\x13\xbc\xd1\x34\x61\xc1\x36\x1d\x4c\x50\x65\x34\x7d\xad\xa1\x1c\xe8\x7d\x68\x19\x64\x30\x22\x96\x18\x0c\x4c\x57\x90\xcb\x2b\x77\xb0\x10\x44\x19\xc0\x8b\x99\xe3\xcc\x41\xea\x71\xfa\x6a\xbb\x72\x0d\x68\x3d\x68\xca\xb7\x33\x7c\xff\xe6\x87\x37\xe2\xf2\xf1\x90\x70\x75\x50\xa7\x00\x17\x5c\x8b\x16\xd7\x0f\x59\x3d\x76\xb6\x2b\xfc\x96\xa2\xb3\xc0\x54\xf2\xfc\xf8\x63\x28\x1a\xfe\xdc\x7a\x4b\x4b\xe8\x22\x9e\x12\xbf\x65\xf1\xec\x38\x98\x1c\x6b\x26\x58\x2b\x93\xb2\xc0\x6f\xff\x3c\xa9\x5e\x69\xa1\xfd\x25\x3c\x52\x38\x08\x38\x98\xe2\xd3\xe2\xba\x25\x3e\x7e\x64\x9f\xcb\x24\x55\x45\x6b\x23\x2f\x76\x27\x91\x46\xd4\xd1\xce\x58\xd9\xea\x38\x8f\x37\x54\x54\x13\x89\x30\x15\xb3\x91\x88\x96\xea\x9f\x3b\xab\x94\xb5\x86\xcd\x7b\x78\x30\x65\xa1\xef\xf2\x76\x09\x2c\xee\x0a\xec\xed\x21\x67\x3c\x36\x49\x6f\x95\x21\xdb\xc2\x9f\xac\x0b\x86\xa3\x4d\x1f\x39\xe1\x6c\xda\x03\x78\x28\x42\xd1\xd1\x8a\xf3\x0b\x8f\x97\xe7\x26\x47\x54\x78\x8b\x28\x9c\xa1\x1b\xab\x26\x51\xa5\x43\x8f\xc4\xb6\xb7\x85\x15\xdd\xf0\xc0\x62\x92\x96\xd9\x5e\xc3\x26\x7b\xb0\x93\x86\xc7\xf2\x50\x04\x22\x12\xcc\x66\x20\xd2\x99\x53\x7b\x28\x02\x69\xc9\xad\x6c\x20\x24\x69\x3a\x1f\x0a\x26\x1b\xc1\x91\x3e\xc4\x7f\x8e\x8d\xdf\xbf\x11\x34\x3a\x1d\x47\x7d\x4f\x3d\xb1\x7b\x08\x42\x2c\x29\xdf\x35\x93\xf9\xe9\xfb\xa1\x38\x38\x23\xe4\xa3\xb4\x2b\x66\x99\xd4\x77\x07\x72\x3c\x7e\x4e\x7b\xad\x4b\x77\x04\xd0\x97\xbc\xd3\x3b\xed\x38\x1f\x0c\x44\x55\xa0\x66\x4f\x73\xa6\x67\x6f\x0f\xfc\xf7\x5c\xf0\xb6\x83\x6a\x52\x00\x51\x5a\x5f\xd1\xef\x04\x85\x65\x8a\xfe\x40\xfd\x35\x82\xe1\x8f\xec\xd3\xbe\x51\x80\x81\x06\x4e\xa6\x22\x9d\x97\x46\x0d\x74\xa6\xca\xaa\x16\x53\x87\xa6\x4b\xde\xc9\x8e\x48\x37\xd3\xbc\xb1\xf0\xec\x95\x99\x6d\xff\xd9\x81\x08\x78\x0d\xaf\x39\xb8\x63\xb0\xd8\x16\x11\x9f\xa9\xa5\x8d\xe8\x55\xf6\x1c\xc9\x56\x78\x95\xfc\x87\xe8\xae\x9b\xa5\x43\xe6\xb2\xd9\x92\x57\xb8\x1d\xee\x45\x79\xbc\xfe\xb2\xcf\xf3\xc8\xc2\xab\x0d\x57\x1c\x9a\xb3\x81\x26\x82\x6d\xb3\xb1\x83\xea\x91\x45\xdf\xaf\xd0\x19\xa7\x1a\x0e\x06\xa9\xbc\x94\x99\xbe\x87\xf5\xa7\xc5\x6f\x2a\xcb\x12\x70\xc8\x91\x79\xef\xe7\xc3\x41\x5a\x8c\xab\xc1\x2f\xf2\x74\xf0\xe3\xfb\xd7\xaf\x06\x74\x76\x0c\xa0\x17\x5f\xba\xba\x3a\x21\xe9\x2d\xeb\xa7\xe5\x7b\x6b\xf8\x7a\xbd\x05\x5b\x23\x40\x21\x5c\xb3\xe6\x77\x74\x1c\x7a\x2e\x4a\x0b\xc9\x2a\xbf\x2b\x3d\x9a\xe3\xf8\x8e\x2e\x95\x70\x95\x42\xd6\x00\x9c\xfc\x1e\xbd\x28\xe1\x5d\x70\x9c\xe4\x62\x36\xcf\x32\x61\x5c\xc0\x72\x79\x65\xcf\x18\x6c\xfc\xf4\xc6\xb8\x50\xe7\x13\x31\x8a\x89\xc5\x23\xd1\x3e\xc5\x9b\x62\x27\x70\x27\xa5\xd3\x75\xc5\xe0\x63\xb3\xd6\xe0\xd8\x71\xef\xce\x5a\xcc\x4a\x13\x39\xc8\xb8\xef\x82\x6a\x12\xe6\xcb\x9c\x0c\xa8\x6f\xa0\x69\x38\x53\x32\x4b\xa9\x7c\x1b\x22\x17\xe9\xfc\xd6\x0d\x3a\x9f\xe0\x03\x84\xcd\xea\x8d\xc9\xc9\x03\x9b\x31\x96\x45\xc7\x98\x11\x14\xfc\x36\x8c\x18\xb1\xa2\x8d\xe6\xbc\x39\x41\x23\x78\x4b\xd0\x7f\xb6\x8f\x1a\x8e\xc8\x0d\x8a\x5e\xf0\xec\x01\xbd\x67\x4c\x0b\x71\xbe\xb4\xdc\x32\xf2\x3c\x25\x41\x9c\x09\xeb\x5c\xc5\xb5\xbc\xd5\x89\xbe\x1c\x92\x54\xe4\x2a\x4e\xf2\x9b\x4f\x7a\x08\x21\x57\x3a\xa6\xba\x80\xc7\x10\xf7\x7b\x3d\xcf\x3c\xca\x10\x71\x70\x22\xf5\xf8\x20\xee\x6d\xb4\xc4\x19\xef\xd3\x1d\x8e\x36\xe8\x38\x0a\xfa\x87\x97\x13\x10\x22\xad\x4a\xdf\x39\xad\xf0\xf4\xcd\x9d\xbf\x82\x61\x7a\xb5\xb5\xd7\xb9\x78\xcc\x92\xfa\xdc\x1a\xa1\xa4\xfa\xca\xf6\x7a\xf7\x5b\xf1\xf8\x72\xf7\xd1\x8f\x8f\xff\xfe\xf8\x7c\xf7\xd1\x74\xa7\xb7\xf7\xe3\xe3\x71\x6f\xb7\xbf\x2b\x76\x7a\x7b\xa2\xff\x6d\x6f\x4f\xec\x5d\xee\x3e\x1a\xef\x88\xdd\xfe\x6e\xff\x5b\xb1\xa7\xff\xef\x7c\xf7\xd1\x18\xb2\x88\xbd\x9e\xfe\xd6\xdb\xfb\xfb\xe3\xf1\x8e\x2e\xd5\xd3\x25\xf4\xff\xfd\x76\xbc\xa5\x49\xa0\x2b\x5a\x20\x3a\x7c\x5f\x5c\xbf\x99\xd7\x99\xca\xe5\xf7\x59\x92\x5f\xb4\x36\xa2\x87\x7f\xcd\x69\x7d\x48\x13\x19\x9f\xc9\x6f\xfc\xa9\x8c\xcf\xe5\x37\x66\x32\xa7\xbd\x6f\xc5\xee\xa3\xac\xf7\xb8\xf7\x58\xec\xf6\x1f\xed\xf6\xf4\xff\xbc\xda\xdd\x11\xbb\x8f\xfa\xbb\x5f\x67\x5f\xf7\x1f\x7f\xdb\xd3\xff\xf3\x6a\xf7\x5b\xf1\x4d\xd6\xfb\x56\x7c\xdb\x9c\xff\xff\xa4\x39\xff\x54\xe2\x9d\xf6\xf6\xc4\xee\xce\x8f\x5f\x5f\xf6\xf6\xce\x77\x77\x2e\x19\x35\xeb\xe3\xa0\x96\xe5\x54\xe5\x49\x2d\xa3\x53\xfb\x9f\xed\x72\xb8\xd1\x0b\x2d\x7b\x85\xb3\x14\x66\xa8\x66\xc0\x0e\x13\x57\x22\xc6\x4c\x7c\x0a\xb5\xe5\xab\xcb\x49\x0f\x0d\xaa\xa3\x1c\xa8\x59\xe7\xda\xf5\x7c\xa2\xf7\x63\x94\x84\x56\x36\x1e\x27\xbc\xcd\x5d\x25\x37\x7d\xaa\xfe\x9f\x74\xad\x8c\x7a\x91\x80\x13\xb2\x73\x47\x41\xa5\xe8\x9d\xfd\x25\x48\xe4\x6e\xba\x4b\xf8\xef\xe7\x77\xab\x7c\x73\x67\x8c\x8d\xaa\x57\x9c\x24\x9a\x6d\x78\xc9\x77\xf4\xfa\xb8\x83\x83\x56\x6b\xfb\x4f\xe6\xa1\x6a\xe8\x87\x54\x5d\xd7\x71\x6b\x91\x4b\xd0\x67\x77\xde\xfa\x64\xa7\xa0\x35\xdd\x82\xd6\x77\x0c\x5a\x00\x5d\xbb\xda\x89\xf3\x9f\xe4\x9b\x79\x47\xf7\xb0\x8d\x68\x64\x81\xdb\xd8\xa7\x51\xc9\x27\xb9\x8e\xfd\x87\xd3\xc9\x31\xf3\x6d\xc2\xd0\x37\x5c\x47\x48\x76\x2b\x2b\x65\x38\x7e\xf2\x21\x34\x72\xc7\xaf\x6f\xd3\x8a\x42\x99\x20\x5e\x29\x67\x8a\xeb\xb6\xb0\xf0\xc4\xf6\x9b\x30\xcf\x00\xeb\x9b\x14\x99\x12\x4b\xfd\xab\xd6\xb6\x07\xf2\xf2\xc5\x0a\x73\x57\x9a\xc8\xa2\x0d\x23\x85\xd6\xb6\x36\xba\x1f\x4f\x2a\x67\x99\xbc\xc2\x97\x6a\x89\x91\xd1\x18\x31\x88\x5c\x43\x6a\xd1\xe0\xfd\x51\x7b\xb5\x98\x6f\x7c\xe5\x99\xe9\x11\xfb\xca\x2c\x94\xfc\xbc\xf1\x2a\x96\x78\x4d\xc5\xab\x8d\x25\x1e\xc4\xbb\xe2\x2d\x58\x23\x25\x98\x94\xa0\xbe\xd8\xf4\x34\xf6\x4a\xbc\xab\x07\x1b\x9a\x72\xfd\x8e\xdc\xc0\x56\x98\x35\x39\x87\x2f\x66\xb0\xc4\x87\x1e\xf9\x74\xc0\x72\xfa\x26\x4d\x81\x3b\x18\x60\x31\x21\x19\xfb\x34\xf2\x74\xc1\xda\x0d\x2d\x6d\xdb\x78\x3a\x8d\x8c\x1b\x54\xc6\xc6\xbe\x91\x3d\x80\xbb\x98\x35\x5f\xb0\x51\x63\x49\xf3\x7a\x5a\x5c\xfb\xe6\x00\x92\x63\xfe\xa3\xac\xbf\xc8\x36\x60\x6d\x17\x35\x7f\xb4\xcc\x4e\xc0\x4b\x68\x58\x3c\x0d\x1b\xc6\x06\x26\x83\x13\xcd\x43\x8b\x03\x27\x26\xb1\x93\x93\x73\x27\xfe\xc4\xd2\x44\x5e\x6f\xa5\x49\x9d\xf4\xbc\x6e\xb5\x86\x7e\xff\x4d\x0b\xfc\x91\xda\xd4\x0d\xef\x57\xab\x62\x07\x00\x0f\x73\x73\xec\x9c\xae\x75\x02\x39\x43\x99\x8f\xb0\xa7\x5c\x70\xc5\xed\xed\x98\x43\xdf\x53\xfc\x18\xad\x80\x7a\xdb\xf1\x4d\x14\x0e\xd6\xeb\x68\x83\x6f\x45\x7b\x1d\xe6\xfa\xb4\x21\xac\xa8\x2d\x18\x4f\xd4\xc0\xe3\x0e\x0e\x79\xe6\x90\xff\x03\x5d\xfd\xb3\xa2\xab\xff\x2b\x98\x18\xfc\xbe\xed\x0a\x7e\xdf\xae\x6c\x77\xf4\x5f\x33\x27\xd1\x67\xf1\x60\xfb\x5c\xce\x64\x9f\xc1\xd6\xe1\x33\x1b\x38\x2c\xdc\x88\xc9\x6c\x26\x93\xb2\xf2\x99\xaf\x07\x5e\xad\x6f\xcb\x00\xcd\x6d\xb0\xc8\x72\xf4\x9b\xc3\x47\x52\xa3\x6d\xa8\x8b\xe0\xa8\x4f\xe7\xc6\x65\x0e\x92\xc6\x45\x5e\x81\xff\x6b\x2d\x4e\xe5\x79\x72\xa9\x20\x98\x5f\x59\x54\x95\x38\x2d\x8b\xab\x4a\x96\x66\x13\x78\xd1\xf7\x74\x9b\x89\x18\x35\x8f\xe6\x91\x48\x8c\x99\x05\x5c\xf2\xcd\xab\xad\x6f\xf8\xe0\x69\xd8\xee\x6d\x51\x63\x73\xd5\x6c\x70\x2d\x06\xf3\x1f\x6a\x78\xf2\x87\x1d\xc8\x3f\xc9\x66\x22\x74\xe2\x34\xec\x76\x03\x37\x4e\xcb\xa1\x37\x70\xe4\xa4\x0b\xa0\x3e\x0b\xc0\xa5\x73\x81\x9d\xc5\x02\x53\x08\x48\xfb\xe1\xcd\x6b\xb0\xc6\x1c\x27\x00\xac\x0e\x41\xd7\x0a\x91\x10\x88\x75\x9f\xd5\x42\xfc\x03\x1d\x7b\x8f\xb7\x40\xac\x4b\xaa\x26\x6c\xe2\x67\x35\xb1\x78\x3d\x57\x46\x90\x44\xe3\x0a\xf3\xeb\xdf\xfe\x59\x77\x4f\xec\xee\x8d\xf7\xfa\x7b\xbb\x62\x47\x3c\xea\xed\xf6\xbf\xfe\x56\x3c\xea\x3d\xaa\xe0\xaf\xde\x23\xfc\x3f\x81\x3f\x04\xfe\x21\xf4\x1f\x8f\x7e\x9b\xee\x88\xbd\x71\x6f\xaf\xff\xd5\xd7\x62\xa7\xf7\x8d\xd8\xed\x3f\x7c\xd4\xfb\x46\x3c\xba\xdc\x3b\xdf\xfd\xea\xb2\xb7\x37\xde\xd1\x69\x5f\xf5\x1e\xf7\x1f\x3e\xec\x3d\xea\x7d\xd3\x7b\xe4\x9e\x79\xdf\xca\xb2\x2a\xf2\x3f\xde\x75\xef\xe8\xd8\x8a\xd3\xb7\xf4\x3d\x93\x66\xf8\x7f\xf8\x85\x91\xb9\xb7\x96\x32\x03\xb9\x63\x43\x64\xb0\x10\xf2\xb5\x01\x0c\x16\xc3\x84\x3d\x3c\x2f\x55\x7e\xe1\x9c\x5a\xad\xef\xec\x23\xf7\xc5\x78\xce\xb2\x4f\xfa\xa2\xfa\x32\x99\xaa\xec\x26\x82\xa2\xe6\x12\x37\xc1\x5c\xdb\xdb\x71\xaa\x91\x4c\xe5\xf2\x47\x6a\x75\xd7\x7e\x5d\x13\x67\x16\x43\x1b\xbb\xa4\x79\x25\xcb\x43\x99\xc9\xb1\x9e\x83\xbc\xc8\xe5\xdd\x61\x22\xb5\x6c\x38\xaa\xca\x31\x44\xb9\xd4\x7f\x1c\xca\x3a\x7c\x65\xfa\xc1\xf8\xd8\x2d\x7f\x3c\x76\xef\x29\xc6\xc7\xd5\x8d\x33\x7c\x6a\x09\x9e\x9d\xad\x0b\x4d\x06\x21\x21\xc4\xd3\x20\xc3\xa4\x94\x37\x47\x8f\x76\x76\x4e\x44\x58\x14\x52\xbe\xda\xd9\x39\xb9\xf3\x0c\x8c\x2e\x93\x52\x25\x79\xbd\x7f\xbc\x35\x56\xe5\x38\x93\xfe\x33\x1b\x7c\xba\xe3\x0b\xaf\xab\x19\xc6\x2e\x7d\xd0\x52\xfa\xc6\xa6\xd5\x27\x07\x1c\x28\x40\x43\xf4\x79\xca\x7d\x8c\xb4\xfa\xef\x79\x52\xfa\x23\xc5\x4f\x0b\x7b\xb3\xb3\x76\xb3\x6a\x3a\xe1\xad\x4a\x05\x2a\xe3\x06\x91\x09\x84\xad\x57\xb9\x4c\xd9\xbb\xfa\x74\xb2\x12\x54\x30\xea\xf6\xbe\x1c\x2b\x7a\x30\x10\x3f\x82\xd7\x8c\xc8\x8b\xbc\x87\x23\x15\x6a\x9a\x4c\x24\xca\x2b\x33\xe4\xfc\x37\x42\xc1\xdb\x22\x5d\xbe\x65\xaa\x05\x49\x1f\x9d\x19\x0f\x8c\x97\x0a\xb8\x0f\x3c\x90\x7a\x8d\xa8\x54\x8a\x24\xab\xa1\x33\x21\xa2\x73\x1c\xea\xd7\x94\xc2\x99\x4b\x26\x20\x12\x5d\xc8\x5c\xa0\xba\xb1\xc8\xb3\x1b\x71\x55\x94\x17\x95\x80\x37\xad\xb2\x98\x3a\xb8\x7d\xdd\xca\x41\x9e\x02\x2f\xdc\xdd\xd9\xd9\x59\x7f\x8d\xce\x8c\xec\x0e\x97\x26\x33\xfb\xe6\x6b\x64\x09\xbe\x7e\x1c\x5b\x01\xfd\xf5\xb8\xf9\x70\x79\x9c\x73\x33\xd1\x57\x45\x92\xca\x94\x07\xf6\x84\xe3\xa8\x1c\x9b\xd8\x9c\x55\x39\x76\xcf\x13\x40\x1c\x2c\xe5\x50\xd6\xdc\x65\x78\x55\x9c\x07\x0c\x5a\xec\xd8\x2e\xb4\xbd\x32\xbe\xc3\xab\x45\xd9\xac\xf3\xed\x9a\x71\x1b\xbe\xd0\xc3\xda\xde\x16\x5f\x60\xcf\x9b\xc8\x57\x56\xa1\x1a\xfa\x9e\xda\x5e\xf8\x71\x97\x01\xfc\x00\x63\xc6\xee\x03\xda\x1a\xfb\x8e\xe4\xb2\x0f\xf7\x9f\x03\xfd\xb7\x8d\x39\x8d\xa4\x8d\x53\x5c\x95\xe3\xf0\x2b\xce\xb0\x37\xb9\x26\xb5\xc8\xf5\x94\x71\x29\xa1\xcd\x83\x50\xeb\x21\x36\x42\x53\x9b\xc1\xd9\x50\xd3\x76\x50\x7c\x58\x2d\x5c\x8b\x96\xf5\x06\x6d\xb4\x0c\xa1\x9f\x3f\x4b\xd3\x50\x73\xa4\x65\x5a\x94\x68\x83\x76\xd6\x61\x3d\x58\x51\x0c\x4e\xa1\x89\x96\xa6\xd0\x0f\x4f\x81\xc3\x34\x71\x1a\xf4\x3a\x3d\xbb\x4c\xea\xa4\x5c\xff\xe5\x1a\xf3\x2f\x00\xc2\xc8\x6a\x07\x81\xc1\x4e\x58\x1e\xb0\xf7\x9f\x04\xeb\x69\x94\x2a\xee\x41\xda\x84\xc6\x35\x59\x9f\xb3\x3c\xcd\x62\x3e\xcc\xa7\xba\xf4\x9e\xa5\xc3\xaa\xd4\x74\x12\xbc\x7d\xd2\x07\xef\x61\xb3\xf2\xde\x3c\x2b\xce\x55\x5c\x4a\x8c\xdb\xd8\xa4\x43\x59\x87\x23\xa5\x53\x93\x61\x40\xc0\x6f\x86\x10\x61\xd2\xc3\x02\xde\x08\x51\x92\x60\x83\x0c\xeb\xd9\x04\x4d\x22\xab\x37\x07\xd8\xa4\x29\xa5\xf7\x53\x9a\x3e\xf7\x7a\x6a\xfe\x2c\xc7\xf6\x8f\x43\x59\x1b\xf4\x06\xe8\x6a\xf0\xc0\xca\x60\x64\x01\x9b\xce\x04\x99\x49\xc4\x79\x51\x5c\x08\x95\x57\xb5\x4c\x40\x0b\x5a\xe4\x80\xf6\x67\x95\x7d\x4c\x42\xa8\x0b\x73\xdc\xf2\x88\x32\x2e\x0e\x4d\xdf\xb5\x67\x99\xb9\x3b\x54\x68\xb7\x56\xe5\xff\xc7\xde\xd5\xf6\xb6\x8d\x3b\xf9\xaf\xc2\xfa\x7f\xa8\xad\x85\xa3\x24\xdd\x74\xb1\x48\x91\x5d\x74\xdb\x6d\xb7\x40\xd3\x1e\xfa\x74\x2f\xe2\x20\x56\x2c\x26\xe6\x55\x96\x0c\x49\xae\x93\x6b\xfa\xdd\x0f\x9c\xe1\xc3\x90\xa2\x64\x39\xc9\x75\x6f\xff\xe8\xab\xc4\x22\x39\x1c\x3e\x0f\x67\x86\xbf\x99\x1d\x32\x3b\xb0\xc8\xfa\xa1\xfa\x0b\x2b\x36\x32\x66\xdd\x79\x52\xbd\x5a\x5c\xe2\xfe\xc7\x6e\x6e\xec\x36\x48\x93\xdf\x14\xf5\x8b\x44\x64\x22\xbf\x84\xa0\xf8\x50\xe2\xe1\x43\xcd\x01\x20\x7f\xe2\x9e\x42\xde\xaa\xfb\x25\xcd\x5e\x42\xfa\xa9\xcf\x0b\xe6\xc5\x65\xe8\xfd\xb2\xbc\x1a\xd5\x87\x8c\xae\x79\xaf\xd5\x7e\xbb\xdd\x95\x71\xc8\xdc\x25\x11\x7a\xb4\xbc\xb8\xd4\x02\x84\x59\x6f\x3a\xf2\x31\xe3\x59\xc5\x9d\x38\xfe\xb0\xd3\x3c\xf0\xa2\x13\x91\xa6\xd2\x7c\x3e\x0d\xdb\xa3\x49\x56\x87\x0a\x27\x59\x7d\xb2\x77\x4a\x8b\xdd\xa2\x2f\xf1\x1a\xdc\x1d\x06\x5a\x8b\x3c\xaa\xe1\xaa\xb5\xdb\x61\xca\xde\x22\x26\xbc\x63\x8d\x8f\xab\xeb\xaa\xe6\x0b\x6b\x9d\x57\xcb\xed\xd4\x79\xcb\xff\xa0\x31\x33\xe9\xab\x7e\x72\x4f\xeb\xb4\xb1\x12\xfc\xd3\xed\xad\xad\x78\x30\xfd\xb0\xb5\xde\xbf\xad\xf5\x63\xc5\x53\x26\x72\x36\x2b\x16\xe7\x22\xc7\xc7\xeb\xf0\xb4\xaf\x79\x6d\xaa\x0b\x55\x46\x07\x81\x4d\x72\x90\x0a\xac\x49\x45\xc7\xe4\xc3\x3d\x94\xa7\x6c\x2a\x16\x97\x41\x25\x3f\x6c\x29\x1b\xed\x4f\x1f\x55\xc0\x5a\xa4\xa7\x80\xd0\x4b\xb8\x7d\x68\xa2\x95\xdc\xed\xf5\x35\x46\xc9\x3b\x80\x6c\x2f\xb9\x17\xc6\x04\xe5\xd8\xa6\x66\x49\xce\xce\x39\x09\x59\x3a\x96\x54\xff\x7b\x55\xd5\xbe\xa6\xd8\x43\xce\xfd\x47\xdb\x7d\xef\x03\x00\x35\x18\x81\x11\x6e\xfb\xf0\xf2\x5a\xe5\xfd\x13\x2f\xde\xba\x2f\x65\x8b\x57\x70\x3a\xff\xf5\xe1\xf8\xb5\x39\x7f\x0b\x99\xa3\xc5\x70\xdc\x0c\x96\x38\xd9\x2a\x9e\x64\x57\x64\x45\x6b\xef\x6a\x9a\xbb\xc8\x6c\x95\xb3\xa8\x69\x98\x55\x13\x52\x5b\xfa\x92\x5c\xdd\x21\x14\xed\x57\xb5\x9e\x5c\x3a\x27\xc2\xf7\x9a\xbe\x92\xe7\xb8\xec\x12\xbc\x71\xa0\x7d\x88\xb4\x5c\x1f\x7e\x3d\xcd\xf8\x10\xbf\xa1\x9a\x06\x56\x60\xeb\xc2\x53\x47\x72\xaf\xf1\xc6\x45\xb4\x0d\x71\x29\x17\xf4\x26\x0d\x9b\x4a\x3f\xea\x2a\x84\xa0\xa8\xbc\xfc\x18\x2f\xbd\x02\xc3\x32\xdc\x49\xd5\xc0\x78\x4c\x81\x6c\xd2\x8b\x2f\x50\x7a\x69\xdb\x52\x82\xa7\xce\x84\x1a\x80\xe0\x7c\x0c\x19\xaf\x94\x94\x3d\x66\x43\xa5\x5e\x03\x3b\x16\x28\x7c\xee\x01\x91\x14\x77\x36\xb4\x11\xe1\xff\x3f\xac\x18\xdf\x33\x20\x5e\xef\xe0\x76\xa2\x3a\x5e\x09\x25\x9f\xf9\x6f\xb6\x68\x5a\x03\x9d\xf4\xf3\x3b\x7e\x11\xc0\x33\x55\x29\x24\xfb\x6b\x51\xd5\xde\x0b\xea\x78\x57\x7e\xdc\x25\x29\xc3\xd0\x00\x3c\x7f\x7b\x4c\xc7\x60\x27\x2d\x16\xff\x87\xa6\x9a\x51\x5e\x94\x8b\x24\xcb\xae\xe1\x80\x88\xd8\xd4\xec\xa4\x76\x75\xb3\xe3\xe4\x5a\xee\x96\xeb\x32\x59\x2e\x51\xeb\x99\xc8\x8c\x2a\xfa\xcb\xb4\xd5\xc4\xd3\x66\xc5\x69\x18\x6a\x64\xb2\x8e\xeb\x3c\xe9\x63\xea\xe9\x34\x1e\xc9\xae\x7d\xce\x67\x85\x8e\x5c\x87\x36\x10\xdf\xde\xe3\xe9\x87\xcf\x8b\xab\xf7\xe2\x7f\x00\xef\x74\x88\xaa\xed\x9d\xf3\xe2\x2a\xac\x3f\xc6\xe8\xd5\x86\x17\xc4\x49\xfd\x50\x2c\x0f\xd9\xaf\xfe\xd7\x3f\x20\x18\x36\x4d\x18\x3e\xfc\x0f\x40\xfc\xf9\xa4\xa2\x03\x76\x87\x5e\x0a\xbe\x0e\xa9\xc0\xb8\x43\x5e\x87\x50\xe2\x3a\x71\xcc\xec\xff\xbd\xa2\x3c\x6d\x5f\x55\xf8\x5d\x8b\x05\xa7\x8d\x1f\x13\xbd\x1b\xeb\xa7\x7a\x26\xf3\xca\x7b\x2d\x88\xf2\xdd\x94\x89\x7c\x96\xad\x52\x5e\xb1\xa9\x5c\x4a\x72\x86\x98\x77\x4e\x4f\x81\x69\xc7\x40\xa5\x88\x6d\x30\x3c\x06\xd8\xeb\x7a\x0f\x48\x56\xc9\xb0\x62\x53\x3a\x9e\xcf\xb4\xb8\x36\x45\x68\x09\xc9\x3b\xa2\x65\x37\x9f\x09\xd2\x72\xfd\x6c\x48\x81\xe5\x29\x6b\x00\x6f\x0e\xf2\xc4\x51\xfe\x6c\xc6\x84\x82\x19\x7a\xd0\x36\x43\x0f\xb6\x19\xa2\x10\x13\x53\xbb\x62\x8f\x26\x03\xbb\xa4\x1d\x33\x92\xcd\xf3\x22\xe3\x57\x7e\x08\x41\x67\xcd\x93\x4d\x61\xcb\xe1\x11\x79\xce\xcb\x56\x36\xef\x2b\x4e\xd7\xa6\x5a\xe4\xed\xab\x0c\x55\x02\x09\x0d\x4b\x9a\x1e\x87\xc9\x60\x7f\x79\xc5\xaa\x22\x13\x29\xb3\x0e\xf8\xee\xe2\x54\x34\xa2\x90\x05\x15\xe2\x73\x0f\xd5\xe0\xee\xa0\xcf\x4a\xcf\x81\xed\xd5\x6f\x2f\x57\x75\xcd\xcb\xea\xe8\x2b\x28\xbe\x69\xcb\x2e\x31\xa5\x39\xf1\x30\xc2\xe3\xfe\x2f\xfe\xd4\x53\xc1\x14\xf7\x7f\xb9\x27\x0e\xdb\xd6\x19\x7e\xa7\x81\x63\xff\xdf\x46\x46\xdd\x70\x76\xf5\xdd\xb6\x81\x32\x29\xf5\x8f\x89\xb8\xb7\xdd\x8e\x73\xbb\x43\xa1\x72\x53\x0e\x1d\x4c\xd3\xa7\xb2\x0f\x8a\x05\x67\xd5\x32\x99\x41\x38\xde\x04\x2e\x04\xb3\x22\xcb\x44\x25\x85\xad\xa4\xa3\x12\x42\x48\x5e\x83\x14\x6c\x7b\x76\x6d\x0e\x1d\xed\xeb\xd7\x58\x04\x07\xbf\x6e\xb9\xc9\x35\xc3\x04\xaa\xa3\xba\x39\xff\x8d\x18\xc0\xbe\x36\x5e\x90\xae\x2a\xfe\x67\x3e\x4f\xf2\x19\x4f\xd1\x76\xa9\xa0\x4c\x8b\x0b\xb6\x16\x79\x5a\xac\x7d\xe4\x54\xf6\xbb\x6f\xed\x64\x87\xf6\xcb\xeb\xe4\xba\x58\xd5\xf8\x9d\xf8\xb0\x7d\x84\xc0\x1c\xb9\x9c\x61\xd0\x0d\xe0\xc3\xa6\xa3\x07\x92\xcb\xfb\x45\x7b\xd7\xca\x0e\x85\xcb\x79\x52\xd5\x2a\xc2\x90\x83\x2b\xaf\xcb\xf5\x37\xa4\xe9\x12\x9d\x4f\x40\xed\x91\x44\x0c\x6b\xfa\x53\x40\x58\xb5\x76\x1e\xfa\xcd\x35\xf5\xa0\x30\x6b\x4d\x3d\x01\x82\x3a\xa5\x07\xb0\x3d\xcd\xd3\x2c\xd6\xf1\xe8\xb1\x49\x4a\x25\x9c\xeb\x68\x85\x58\x25\xfe\xb4\x67\x8d\x4e\xf5\x72\x77\xd4\xe4\x51\xf8\x7e\xd6\x48\x33\xb5\xdc\xaa\x1a\xf6\x43\xc5\xe7\x33\x3d\x27\x41\x67\x6f\xf2\xbb\x9f\x3d\x1b\xa6\x9f\x64\x3b\xc6\xa7\xe6\x4c\x82\x4c\x90\x09\xe0\xe6\x6c\xe5\xca\x35\x71\xba\x9f\xc1\x32\xd1\x56\xa0\xe5\x3b\x65\xe8\xeb\xb7\x00\x3b\x9a\xb2\x5e\x13\x96\x4f\xd2\xf7\xc1\x42\x81\xb1\x68\x72\xd5\x66\xc9\x0c\x52\xc4\x47\xa3\xd6\x6a\x79\x1a\xf9\xfd\x84\x3e\xcd\x36\x90\x42\x5e\xd1\x68\x0b\x98\xe6\x66\xed\x8a\xa3\xe8\x14\xff\x9b\xc3\x48\x2a\x99\xcb\xaf\x56\x7d\xf6\x2b\xb7\xb9\x5b\xa8\x6c\x66\xc4\xa7\x6c\x52\x41\xee\x24\x7c\xc0\x6f\xc2\x80\x4e\xf7\x0b\x74\x56\xe9\x12\x09\xde\xa6\x4c\x95\xc1\xd4\xc6\xfb\x66\x75\xe0\x59\xd3\xbd\xbe\x14\xeb\x8c\x24\x47\xa3\x4c\x07\xaf\x0d\x3a\x5b\x59\xe5\xf5\x2e\x8f\x56\x73\x2f\xe6\x03\xee\x91\x77\xb4\xdb\x37\xb7\x23\xef\x3b\xb1\xea\xc3\x0c\xef\x88\xa9\xa9\xe6\x80\xfe\x06\x83\x84\x3f\x82\x63\xa0\xdc\x02\xb4\xbe\xc0\xf3\x05\x50\xaa\xb0\xa3\x26\xf6\x1f\xd1\x87\x59\x2b\x3c\x74\xc0\x33\x53\xe8\xab\x73\xaf\xc5\xc5\x7b\x73\xa3\xa9\xc6\xe6\x03\x8c\xd6\xd8\xbf\x69\x1e\x92\xff\xb5\xf8\xa3\x5c\x06\x94\x04\x80\xc1\x4d\x0c\x6b\x52\x4a\xd0\xe8\x12\xac\x29\x21\xb5\x79\x77\x99\x01\xf5\xfc\x92\x48\x2d\xf1\x6c\x55\x96\x14\xac\x9f\x81\xf3\x6f\x23\x1d\xa7\xb9\x71\xd8\x72\xac\xe3\xad\x06\xd9\xa1\xb5\xc7\x0e\x23\x17\x69\x24\xaf\x8a\x8c\xc7\x60\xcf\x18\xb9\x21\x15\x3f\xe6\x10\xbe\xb8\x2e\xe0\x3d\x16\x46\x83\x83\xc7\x18\x46\x9e\x5a\xc3\x13\x43\x2b\xa4\xcd\x13\x34\xd8\x9d\x73\x9e\x1b\x23\x62\x3c\x8c\x9e\xf8\x72\xfd\x44\xf9\x42\x99\x7e\x39\xf5\x06\x18\x0d\xf5\x2d\x61\x2a\xa9\x90\xe0\xb8\x67\x78\x82\x21\xf1\x25\x88\x33\x9e\x5f\xd6\x73\x40\x4a\x27\x5a\x5c\x43\xea\xc4\xcf\xb8\xc3\xf6\x4f\xc7\xec\x64\xd8\x22\x73\x0e\x4f\x69\xc5\x79\x9a\xf1\xb7\xeb\xdc\x9b\x2b\xfa\x99\x13\x99\x14\x22\xaf\x6a\x39\x5d\xcc\x18\xec\xee\xb2\x7f\xbd\xaf\x4b\x31\xab\x8f\x0b\x70\x5e\x49\x52\x75\xb9\x0a\x0c\xbd\x26\xfe\xfc\xed\x71\x7c\x21\xf2\xf4\xf9\xdb\xe3\x37\x45\xca\x2d\x55\xe3\x63\xd6\xe0\x0e\x59\xb3\xfa\xe8\x11\x65\x1a\xe5\x5b\x67\x4d\x12\xd9\x08\x4e\x8b\x5b\x07\xbc\x25\xab\x55\x2d\x46\x1a\x35\x00\x4e\x52\x13\xf3\x55\x9f\x42\x24\x87\x52\x1c\x8c\xcd\xf9\xe1\xc4\x1c\xc0\xd3\x61\x43\x40\x5c\x25\x84\x92\x34\x25\x73\x52\xd1\x1c\xbd\x16\x50\xfc\x76\x22\xe6\xc6\x01\xb5\xd4\x38\x34\xd7\x48\x11\xef\x16\x39\xb6\x47\x8a\x93\x09\xbf\xb5\x47\x4c\x98\x50\xf7\x0b\x47\xd4\xb2\xf2\xa4\x2b\xc5\xde\xdc\x80\xf4\x48\x5c\x8b\xb0\xa9\xd6\x51\xc6\x19\xd8\x78\xd6\x49\x29\x15\x5f\x86\x4f\x82\xe5\xda\xce\x61\x67\x2e\xd0\x4c\xe3\xf0\xd1\xad\x37\x06\xda\x22\x6b\x95\xa1\x1e\x35\xca\xf7\xc7\xeb\x74\xba\x8c\x3e\x56\x5c\x4e\x12\x76\x7e\xad\xcd\x72\x71\x93\xf8\x83\xd6\x0e\x78\xf8\xd0\x4b\x24\xbe\x85\x86\x02\x38\xaa\x3d\x05\x09\x20\xe7\x15\xc0\x28\x17\x17\x2c\x13\xec\x37\x96\x89\x98\x46\x45\x09\x09\xff\xf8\x4c\x61\xe8\x1d\x01\x9d\x19\x5c\xee\xe9\x88\xb8\x9e\x55\xad\xc3\x1a\x22\xd9\x31\x09\xbc\x1a\xcc\x6e\x8d\xff\xf4\x75\x6b\x22\xe7\x76\xfc\x9f\xe8\x6b\x52\x12\x05\x99\x7a\x85\x47\xb7\x06\xad\xe0\xe8\xe3\x32\xd5\xb8\x70\x05\x3c\xde\xda\xf6\x27\xa3\x59\x18\x07\x2e\x2c\xf6\xd6\x00\x0e\x50\x66\xe3\x34\xcc\xb9\xa2\x52\x9f\xb0\x22\x84\x49\xb7\xd7\x89\x37\x95\xfd\x37\x5e\x16\xcb\x51\x14\xdd\xca\x95\xac\xb3\xcf\x5b\x7a\xbc\x5f\x7f\xb7\x76\x73\xb3\x97\xbe\xf9\xcd\x8c\xee\x16\x35\x5b\x1f\xbe\x5d\xa1\x34\x9e\x83\xf2\x09\x15\x40\x68\x67\xd8\x11\x72\xb7\x9e\xa2\xe9\xd3\xbc\xd0\x70\xbd\x97\xac\x00\xd8\xf4\x04\xa0\x26\x47\xa3\x92\xd9\x8c\x69\x20\x0f\x6c\x26\x40\x2c\xda\x26\x7c\x07\x43\x6d\x0c\x94\x49\xb2\xaa\x90\x05\x55\x94\x69\x9e\x6a\x27\x16\x7c\x32\x8b\xcf\xa2\x95\xc5\x1b\xaf\x1f\x75\x01\xbe\xfd\xf7\x12\x0a\xa4\xd9\x00\x13\x15\x7b\xb4\xc2\x07\xd1\x76\x73\x9e\x46\x31\x43\xe9\x40\xe4\x72\x56\x70\x8d\x36\x7f\x51\x94\x4e\x3e\x70\xa8\xa9\xe7\x1c\x5d\xb6\xac\xa2\xd2\x68\xf3\x1c\x70\x75\xad\x8f\xef\xf1\xc0\x59\x07\xcf\x0d\xa0\x60\x5c\xb0\xa4\x5b\x5b\x08\xc3\x22\x6a\xb6\x58\x55\x3a\x42\xef\x39\x0f\xe8\x10\xef\x35\xf8\xfa\x66\xc1\xd6\x55\x77\x61\x90\x9b\x9e\xa1\xda\xa5\x3c\xf8\x3a\xa9\xe0\x55\xcf\xd5\x48\x54\x2d\xad\x8f\xf4\x5e\x0e\xde\x02\x6e\x9a\x8e\x74\xb8\xb3\x6f\x9e\x39\xc8\xc1\x1c\xc1\x8b\x91\x80\x2c\xbd\xc3\xf6\x9f\x30\xc1\x7e\x3b\x62\x7b\xf2\xef\xce\x11\xdb\x8f\xe8\x2e\xaf\x5a\x4c\x4a\x9e\x88\xd3\x27\xf6\x99\x85\x3c\xb9\x9a\xc2\x78\xb7\xd0\xed\x1c\x64\x2d\xfc\x8b\x27\xc4\x26\x52\xf2\xe4\x73\xe3\x40\x93\xfd\x2a\xa7\x41\x4b\x3d\xde\x44\x90\x33\x4c\xe7\x94\xdc\xdb\x53\x3e\xc8\x80\xdc\xc9\x76\xf6\x01\xf6\xa8\x2d\x39\xd0\x93\x5d\xa1\xee\x9b\x91\xee\x61\xfe\x5a\xff\x47\x96\x5c\xd4\xbc\x6c\x6b\x4e\x8c\x01\xef\x5f\x14\x44\x13\x5e\x17\x2c\xe5\x35\x87\x98\xd7\x89\x5c\xf5\x70\x77\x4b\x2c\xcb\x0c\xcd\x45\x58\xf4\xba\x58\xc1\x52\x61\xcb\xa4\xaa\x64\xe6\xc4\x57\xb8\x4b\x82\x66\xb7\x1e\xfe\x08\x44\xff\x77\xfb\x61\xb2\x3f\x8c\x18\x3c\x66\xa2\x1e\xca\xb1\x9d\x66\x62\x8a\x60\x1b\xca\x1c\x0a\x5b\xe1\x14\x0e\x92\x29\x78\x31\x27\x60\x9c\x0e\x65\x82\x63\xe2\xfb\xf9\x78\xea\xfd\xdd\xb7\x02\x41\x7f\x01\x77\x1b\x36\xf8\xf6\xad\xbc\x29\x40\xd2\x51\xeb\x62\x0a\x8f\xbb\xc6\x4c\x0c\xda\xaa\x24\xa3\xc1\x5a\xfb\xba\x87\x92\xb3\x59\x12\x4e\x66\x35\xfb\xc2\xcb\x5a\xcc\x92\xcc\x84\xa8\x4f\x79\x25\x2e\x73\x35\x83\x4c\xd8\x7e\x39\x90\x8b\x42\x4e\x14\xc4\xea\xd1\x87\xb9\xcf\x92\x52\x99\xdd\x55\x46\xb8\x4f\xe4\x26\x88\x9c\x0f\xee\xf4\xe2\x72\x5e\x9b\x76\x8a\x4a\x85\x91\x0c\x55\xf2\x52\xbb\x16\xf4\xaf\x2a\x61\xfb\xcb\x2b\x06\x2f\xc6\x95\x87\x05\x98\x64\xd3\xd4\x0e\xeb\x39\xb8\x5c\x68\xd9\xc2\xb4\xda\xad\x5f\x79\x6b\x6c\x1d\xc0\x26\x78\x17\xee\xe7\x4e\x0f\x0a\xb8\xe5\x32\xbb\xb6\x3a\x85\x10\x40\x8b\xb1\xea\xba\xbc\xdd\xd5\x8b\x55\xaf\x38\xf4\x63\xd5\xbf\xfa\x61\x9d\xb4\x85\x83\x71\x24\x00\xe3\xcf\xbf\x58\x09\xd9\x29\x95\xeb\xb2\x18\xb8\xad\x88\xea\x53\x92\x89\xd4\x23\x10\xa9\xf0\xab\x40\x03\x40\x27\xaf\xde\x5e\xe8\x44\x40\x0d\x88\x55\x6a\xa4\xce\xeb\xbe\x41\x65\xb6\x8f\x6a\x4e\xfd\x3d\x3b\xde\x1e\x69\xa5\xf7\xd7\x6f\xa8\xeb\xd9\x56\x9f\x4b\x2f\x80\xca\xbb\x52\x69\x65\x86\x9e\x5f\xe9\xb7\x00\x28\x0c\xc9\xf2\xc3\x2f\xf9\x56\x1e\xc6\x7d\x43\x3d\xfc\x9d\xc0\x2a\x4d\xf8\x8f\xa6\xeb\x2b\x5f\x84\x00\x13\xe8\x57\xeb\xbb\x2b\xf2\x4c\xe4\x7c\xe7\x3c\x2b\x66\x9f\x09\x96\x8a\xc8\xb2\x43\x36\x54\x4a\xeb\x67\xe8\x1f\x65\x12\x83\x40\x2b\x7d\x30\x51\x0e\xac\x7e\xa6\x9f\x93\x96\xe4\xe3\xd6\x8e\x59\xa5\xb9\x33\x44\x93\xbe\xbe\x48\xf7\x11\xa8\x61\x63\x40\x86\xbb\x73\xb3\x65\x58\x80\x1e\xf0\xff\x77\xe7\x29\x51\x4a\x1f\x9f\xa1\x86\x1f\x56\x17\x34\x3e\x3e\xbc\xbf\x3b\x33\x60\x0c\x6b\xf2\x02\x97\xb1\x4d\xac\x40\xd9\x7b\xea\x14\x6b\x7b\x6d\x00\xeb\x58\x77\xd4\x3e\x1d\xd3\xc4\x4a\xde\x96\x25\xbd\x40\x8f\x26\x03\x91\xcf\x79\x29\x5c\xdf\x5d\x9d\xfc\x0a\xd3\x0e\x43\xb0\xc1\x43\x55\xf0\xf6\x90\x43\x94\x0b\x85\x23\x1c\xe0\xe1\xbd\x4c\x09\x72\xd0\x85\xb7\x74\x2f\x4c\x65\x49\x79\xc9\x83\x4c\xbd\x96\x29\xdb\x31\xf5\xf3\xe3\x68\x42\xac\xa5\xc4\x31\x4f\x23\xc5\xf5\x76\x67\xd3\x60\x6f\x41\x6f\x36\xa2\x96\xfa\x1e\xe0\x0f\x77\x8a\x44\xa0\xa7\xd0\x86\x38\x04\xf7\x0c\x31\x51\x7d\xb9\xec\x84\x98\x50\x09\x16\xff\x9a\xb9\x10\xd6\x8d\x63\xce\x56\xe9\x60\x66\x13\x50\x0b\x85\xb0\x6b\x6b\x6d\xd0\x9a\xd7\x8b\xec\x99\xd3\x9b\xe6\x8b\x3d\x27\x45\x9d\xf1\xa7\x80\x67\x69\x72\x91\x6f\x0d\xbc\x0a\xc1\xd7\x7f\x40\xa4\x0c\x85\x57\x81\xbf\x2d\x5e\x85\x49\xf7\x0b\x38\xcc\xef\xb1\x3d\xf6\xe8\x80\x3d\x3a\xa0\x90\x15\x1e\xa9\xad\xa2\x01\xf4\xf7\x78\x31\x91\x01\x3c\xe7\x17\x03\x26\x0e\xbf\x4c\x47\xe1\x4f\xd2\x23\x0a\xb4\x02\x99\x25\x8e\x2a\xdf\xe7\x41\xbf\x32\x99\xc3\xa0\x82\x94\x6f\xa6\xbb\xb5\x1b\xf7\x04\xe0\x37\xf3\x0a\xe8\x98\xe9\xe4\xd0\xb1\x9d\x12\x20\xa5\x13\xa3\xc8\x78\xd3\xc1\xb5\x35\x81\x07\x29\x93\x01\x68\x8d\x4c\x20\x01\xd5\x63\x87\xcc\x1d\x67\x75\x26\xf9\x13\x73\x32\x48\x4a\x91\xec\x20\x38\xdd\x64\x70\xe8\xcc\xd3\xdf\x09\x74\xfc\x21\x18\x37\x34\x2a\x41\x21\x6b\x76\xb3\x0e\xc5\x02\x96\xa6\x29\xd2\x0f\xc1\x60\xec\x91\xe9\x01\xae\x01\x05\xe4\xf4\xc8\x57\x59\xe6\x94\x8f\xd8\xa1\x09\x38\xb3\xa5\x7d\x4b\xed\xcb\x3f\x70\x11\xee\x1f\x17\xe1\x4d\x91\x72\x50\x57\x03\x3c\x82\x3a\xbb\xdf\x7f\x7a\x19\x7a\xf6\xfc\x03\x20\xe0\x3b\xc1\xca\x1b\x14\xe6\x15\x92\x60\x53\xb3\x35\xa8\x37\x71\x46\xbd\x95\x28\x66\xec\x7b\xf1\x0d\x63\xd8\x06\x56\x8f\x22\xf0\x70\xcc\x86\xe6\x4d\xe2\x58\x63\xf0\x8c\xed\x16\xbb\x05\x96\xfd\xbf\x0f\x94\x82\x6c\x89\x39\x29\xfc\xf7\x54\x72\x63\x62\x0a\x19\x06\x1c\xff\x1e\x1d\x2c\xaf\xc0\x9d\x4a\x63\x24\xcc\x8a\xfc\x42\x5c\xae\x4a\x8e\x60\xef\xd0\x91\x40\x0f\x50\x0a\x62\x47\xe3\xa9\xc5\xdd\xce\x68\x02\x64\x30\x40\x94\xee\x84\x92\x7e\x0a\xfc\x56\x5b\xcf\x14\x33\xe5\xb6\x81\x14\xd8\x31\xb0\x52\xb6\x1e\x44\x80\x34\xb8\xf6\x6a\xd9\xa4\xe2\xe2\x82\x83\xb7\x5e\xb1\xc4\x7d\x13\xe0\x2a\xe5\x40\x9d\xf3\x54\x01\x59\x29\xf2\x27\xc7\xcf\xdf\xb0\xff\xe2\xe7\xec\x79\x31\xdb\x16\x09\xfe\xfd\xa7\x97\xbb\x06\x0a\x63\xd7\x63\x32\x8a\xad\xd6\xfb\xba\x58\xc1\x6e\x2f\xd9\x04\x65\x7a\xb5\xe2\x15\x62\xc4\x9c\x67\xab\xb2\xbc\x86\xa1\xae\x20\x5f\x35\x2f\x56\x99\xdc\x30\xbf\xf0\xaa\x16\x97\xb8\xbb\x8b\x2a\xe8\x44\x01\x55\xbe\xd3\x35\xf6\xe8\x4c\xe5\x96\x22\x47\x6c\xbe\x5a\x24\xf9\x4e\xc9\x93\x14\x5d\x4c\xe5\x69\x6a\x16\x91\x01\xf8\x92\xdb\x8a\xb2\xaf\x54\x4c\x98\x4d\x44\x77\xd3\x7a\xbd\x8e\xd7\x3f\x43\xdf\x7c\x78\x27\xfb\x63\x07\xa1\xdb\x77\xff\xf5\xa7\x01\x35\x27\xfc\x92\x23\xbb\x07\xb3\x4f\xb3\xac\x58\x63\xa7\x00\x80\x0d\xca\x17\x6c\x2d\x79\xc2\xdd\xb1\x28\x53\x40\xfc\xc7\xbe\x2c\x56\x35\x5b\xe5\xa2\xae\xd8\x82\x27\xb9\x06\xb5\x49\xf2\xc0\x2c\x64\x2f\xe0\xf8\x48\x16\xcb\x8c\x8f\xb5\x87\x07\xc9\x26\x27\xcc\xe3\xbd\x3d\x36\x02\x9d\x5c\xc4\xce\xaf\xd9\x23\xf9\x13\xb5\x71\x4a\x1a\xfb\x09\x8e\x57\xc9\x1e\xd8\x64\x95\xdc\x75\x34\x19\x48\xe9\xfb\xf1\x1e\x7b\xb4\xa7\x85\xb3\x9f\x70\x08\x25\x5b\x6a\xab\xf6\xf9\x27\x08\x3c\x92\x0d\xb0\xec\x5c\x16\x56\x28\xa8\x8b\x25\x9a\x66\x66\x45\x99\xf3\x92\x8d\xf6\xc6\xea\xc2\x0c\x61\x1e\x94\xad\x04\x6d\x36\xa3\xc7\x7b\xe3\x47\x7b\x11\x70\xc7\x93\xd9\x1c\x3a\xc5\x18\x8b\xd6\x45\x59\xcf\xd9\xfe\xde\xf2\xca\x41\xe5\xd0\xd2\xa3\x3f\x2a\x9e\xbd\x42\x8b\x4b\x4a\x75\xcf\x8e\xd8\x90\x80\xa2\x6f\x6d\xcd\xd0\x65\x31\x2a\x3e\xfe\xb8\x3f\x54\x8e\x2e\xd5\x74\x03\xea\x3d\x80\xed\xae\xa2\xf7\xb3\x45\x91\xae\x32\xce\x4a\x0e\x20\x77\x78\xd4\x38\xd0\x18\x57\x6c\x99\xcc\x3e\x27\x97\xbc\x6a\x85\x7c\x37\x8a\x00\x17\xfb\x7d\x99\xd4\xf3\x31\x23\xc6\x02\xa2\x15\xa0\xd7\x63\x1b\x19\x51\x7f\x6c\x6a\x12\xb6\x88\x54\x86\xb5\x87\xdc\xf6\xa8\xd8\x0e\x82\xfb\x52\x39\x91\x49\x4e\x95\x5b\x1c\x71\x6e\xdd\xce\xdd\x7d\x77\x97\xbd\xe1\x78\xbe\x55\xbc\x86\x47\xcb\xba\xdd\x53\x1b\x4c\xc4\xb5\xe4\xca\xce\xc6\x36\x2c\xf8\xa2\x88\x0d\x21\x1c\xdc\x65\x29\xf7\xfd\xba\x60\xfb\xbf\xc4\xfb\x07\x0c\xcf\xdd\x2a\x4c\x19\x11\x32\x4a\xdf\x27\xd5\x33\xd5\x4c\x06\xf6\x32\x46\x52\xe4\xa5\x14\x23\xd8\x39\xbe\x81\x96\x8a\x5d\x11\xde\x1a\xd9\x10\x43\x4e\xb6\x2a\x18\x02\x80\x68\x91\x4c\x2d\xe8\xc1\x67\xd7\x47\x52\x96\xc9\xb5\xbc\xb9\xff\x55\x64\xd6\xaa\x13\xef\xba\xdf\xe9\x9a\x10\x35\x2f\xe5\x86\xff\x01\x9d\x98\x5e\x8b\x85\xa8\x6d\xb9\x50\x2a\x2d\xbd\xca\x0d\xbc\xf2\x2b\x37\xab\xa5\xd1\x9e\x87\x52\xca\x8b\x5c\xa7\xbe\xe3\x15\x61\xc1\x4b\x80\x32\x6d\x6b\xe9\xac\xca\xc4\x8c\xa7\x8a\xfc\x28\x29\xcb\x31\x13\xae\xd1\xc6\xed\x09\x99\x25\x62\x37\x37\xc1\x6e\x30\xe5\x6f\x6e\x3a\x1a\x4a\x73\x79\xbc\x8e\xf4\xe8\xb4\xf2\x1b\xe2\xe6\xab\x5e\x4b\x40\x3e\x16\x95\xa9\x26\x8a\x48\x2b\x36\x91\xee\x6c\x91\xa9\x43\x3d\x1e\x7e\x7f\xbd\x38\x2f\x32\x15\x0f\xce\xdc\xdc\x27\x03\xd9\xa8\x07\x23\x4c\x8d\x81\x62\x5d\x94\x4c\xe4\xec\x2d\xdc\x77\x90\xa9\x88\xe2\xf6\xc2\x63\xdc\xa4\x2c\xd9\x11\x3b\x39\xb5\x5f\x72\x8a\x78\x0c\x5f\x52\x07\x8d\x17\x3e\xc9\xc5\x42\x31\x95\x41\x44\x28\xaf\xf5\x6e\x61\x3c\xdf\xce\x04\x3b\x92\x5d\x70\xe2\x31\x76\x3a\x8a\xc6\xec\xac\x7a\xc2\x1e\x8c\xa0\xc2\xd1\x19\x3c\x94\x10\x71\xce\xaf\xea\x51\x14\xc5\x69\x91\xf3\xe8\x89\xe5\x86\x78\x78\x49\x9e\xe3\xe5\xaa\x9a\x8f\xce\xaa\x18\x7c\x3b\x23\xdf\x2f\x8e\x3d\x7c\x88\xd9\x94\x8b\x98\xec\x2d\x11\x39\xfe\x6c\xa8\x17\x66\xb3\xa4\x9e\xcd\xd9\x88\x9b\xe1\x64\xd8\x5e\x82\xf9\x0c\x8d\xe5\x30\x8c\xb2\xc4\x85\xc8\x01\xd7\x47\x87\x87\xb4\xad\x56\x68\xc9\x67\xf0\x9c\xe1\x4c\x9c\x4c\x06\xd8\xdb\x93\xc1\xa9\x45\xec\x74\xbf\x9b\x97\x48\x0d\xba\x48\xec\x2c\x8d\x58\x3d\x2f\x8b\x35\x3b\xe3\x0e\xe3\x8e\x66\xed\xac\xc7\x24\x6b\x4c\x78\xac\x08\x89\xe7\x7c\x0d\xca\x0b\xf4\x98\x9b\x0c\x5e\xe5\x5f\x92\x4c\xa4\x52\x5a\xe7\x8b\x65\x8d\x0e\x6f\x55\x5d\xae\x66\xb5\xbc\xb0\xe4\x05\xb8\x09\x03\x31\xa6\xdf\xcf\xc4\x93\x49\xfe\x2a\x67\xe8\x11\x52\x83\x27\xae\xce\x33\x86\x12\xb0\x82\x14\x92\x7b\x85\x1e\x71\xf3\xe4\x8b\xbc\xce\x05\x66\x07\x5b\xf0\x7a\x5e\xa4\x31\x6e\xda\xdf\x06\xa7\xe3\x01\x86\x28\x7a\x57\x14\xf5\xe0\x70\x30\xf8\xf6\xbf\x01\x00\x00\xff\xff\xe0\x74\x1b\x01\x56\x9f\x04\x00") +// FileIdentifierStaticJs103af7223eChunkJsMap is "identifier/static/js/10.3af7223e.chunk.js.map" +var FileIdentifierStaticJs103af7223eChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\xfd\x5b\x73\xea\x3a\xb0\x36\x0a\xff\x97\xd4\x7b\x17\xaf\x95\xf3\xe9\xfd\x6e\x3e\x49\x36\xc6\x10\xc7\x21\x40\x08\xd9\xf5\xd6\x2c\x07\x1c\x30\x18\x9b\xd8\x86\x90\xec\x3f\xbf\xab\x9f\x96\x6c\x93\x64\x8c\x39\xe6\x5c\x6b\xed\x9b\x5d\x35\x6a\x04\xcb\x3a\xab\xd5\xfd\xf4\x41\xf2\xff\x7d\xb0\x8d\xf2\x22\xce\xd2\x83\xff\x7d\x66\x1d\x14\xd9\x26\x9f\x44\xc5\xc1\xff\xfe\xbf\x0e\xfe\xf3\x3f\x8f\xfe\xf3\x3f\x8f\xd2\x6c\x1a\xfd\xb5\xca\xa6\x9b\x24\x2a\x8e\xf2\x28\x9c\x94\xff\x11\xa7\x65\x72\x94\xc4\x2f\x47\x45\x3e\x39\x9a\x64\xab\x75\x96\x46\x69\x59\x1c\x6d\x8a\xc8\x4b\xcb\xe4\x3f\x17\xc5\x81\xf5\x53\xe9\xff\xff\x2a\x2c\xa3\x3c\x0e\x93\xff\xd8\xc4\x47\x93\x2c\x8f\x8e\x26\x59\x92\xe5\xc5\xd1\x2c\x8f\xa2\xf4\x1f\x14\x8b\x8a\xd5\xd1\xa6\x8c\x13\x34\xa9\xb2\xb4\xcc\xb3\x24\x89\xa6\xcd\x1a\xf8\x1f\x75\x90\x33\xc6\x85\xcc\xb3\xf7\x22\xca\x7f\x97\x69\x1a\xbd\x64\x9b\x74\x12\xfd\xbe\xa2\xd6\x26\x9d\x94\x71\x96\xfe\x2e\xd7\x2c\x2a\xfb\xe5\x47\x12\xa9\x6c\xb5\xde\x94\xd1\xf4\x3e\xcf\xd6\x51\x5e\x7e\xfc\x4d\x99\xfb\x30\x8f\xd2\xf2\x2e\x9b\xfe\xb6\x0b\x54\xf9\x84\x86\xcc\xd9\xff\x26\xeb\x43\xf4\x1a\xe5\x51\x3a\x89\xfe\xae\xda\xb8\xf0\x9c\xbf\xa9\x2b\x78\x7d\x2d\x4c\x2f\xff\xae\xd9\x2c\xfb\x6d\x96\xd7\x38\x9d\xaa\x6c\xb5\xca\xd2\x3f\xad\x34\x2e\x38\x27\x2d\x78\x18\xa7\xbf\x5f\xca\x6a\x8e\x7e\x5b\x63\x3a\x49\x36\xd3\xe8\xef\x33\xce\xa2\x52\x66\xf9\x34\xca\x8b\x7e\xfc\xf9\x77\x6b\x33\x8a\xd3\x69\xf6\x4e\x19\x8b\xbf\xc9\xa9\x92\x38\x4a\xcb\x87\x68\xf2\x77\x93\x29\xb3\x4d\x3a\x8d\xd3\xd9\x1f\x17\xe0\x99\xa2\x8c\x0f\x51\x12\x96\xf1\x36\x1a\x64\x22\x7f\x89\xcb\x3c\xcc\x3f\xfe\x80\xbe\x1e\xe3\xe8\x7d\x9d\xe5\xbf\xa8\xa7\xfc\xc3\x8a\xe2\xa2\x15\xef\x7e\xbf\x2f\x67\x51\x89\x3c\xf7\x59\x11\xd3\xa6\xfa\x07\x14\x86\x49\x09\xf3\xf8\xf7\xd3\x3c\xe1\x1d\x28\x36\x65\x76\x9f\x84\x93\x68\xf5\x0f\x76\x0c\x77\xe6\xef\x56\x31\xd8\x94\x51\xfe\x27\xcb\x1d\xac\xd7\x34\xca\xe8\x4f\xfb\x71\x9f\xad\xd7\x51\xfe\x07\x9d\xa0\xbd\xf4\xbb\xf7\xf9\x26\xf5\xb3\x69\xfc\x1a\x47\xf9\xdf\xd6\xe3\xa5\xd3\x68\xf7\x73\xa6\x55\x54\xce\xb3\x69\x71\xb4\x59\x4f\xc3\xf2\x6f\x16\xde\xb4\xe7\xa4\xe1\xcb\xdf\xb0\x66\xda\xaa\x9b\x35\x51\x5b\xcd\x27\xef\xc2\xd5\x2f\x1a\x30\x9d\x98\x46\x45\x99\x67\x7f\xc7\x50\x79\x2f\xfe\x2e\x53\x11\x95\x9b\xb5\xb3\x8d\xd2\xf2\x36\x2e\xca\x28\xfd\xe5\x14\x99\x86\x23\x8c\xe8\x9f\x94\x98\xc6\xc5\x9f\x16\xd1\xeb\x15\xad\xb2\xed\x3f\xc8\x1f\x17\x77\x9b\x55\x94\xc7\x93\xbf\x19\x28\x44\xd2\xaf\x3a\x6b\x08\xc4\xec\x18\x64\xfe\xb3\x45\x7e\x88\xde\x36\x71\xfe\xab\x55\x36\xd3\xb0\x36\x64\xff\xfb\xfd\x9a\x64\x93\xe5\x7b\x5c\xfc\x6a\xf9\xab\x6e\xbe\x26\xf1\xfa\xef\xf2\x64\xd8\x3b\x7f\x97\x2b\xfe\x7b\x92\x9f\x46\xaf\xe1\x26\xf9\x55\xcf\xeb\xaa\x8a\x79\xfc\xfa\xb7\xed\xad\xf3\x88\x96\x36\xd8\x46\xf9\x6b\xf2\x2b\xea\xac\xb3\x2f\xa3\x68\x3d\xc8\x66\x51\x39\xff\x95\xc8\xab\xf3\x86\x79\xfe\x7b\x72\x6f\xb0\xa1\xc7\x30\x8f\xc3\x5f\x03\x99\xe6\xfc\xfc\x52\xd8\xd6\x99\xe6\xf1\xdf\x0a\x95\x07\x62\xd8\xd1\xf4\xb7\x0c\xad\x31\x94\xf5\x3a\xf9\xf8\x5b\x22\x2c\xa2\x52\x94\x65\x1e\xbf\x6c\xca\x5f\x51\xf6\xb7\xe5\xfd\x03\x74\xa9\xe2\x7c\xb2\x49\xc2\xfc\x3e\xcf\x66\x79\x54\x14\xdf\x12\xfe\x61\x7d\xb4\x8d\xf1\xdf\xbf\x28\xe7\x95\xd1\x4a\x6c\xc3\x32\xcc\xbf\x3c\xfe\xcb\xba\x06\xd1\xae\xdc\x7b\xf8\x65\x3d\x0c\xf7\xcb\x3c\x4c\x59\x38\xff\xc7\x2c\xcf\x36\x6b\x54\x36\xc9\xd2\xd7\x78\xf6\x6f\x4a\x0e\xaa\xc4\x7f\xd8\xff\xba\xb6\x82\x17\xff\x1f\x96\x77\xf3\xec\x1d\xff\xfd\xc3\x72\xf7\x59\x5e\x86\x89\xfe\xf3\xaf\xb4\x94\x49\x1e\x85\x65\xa4\xe6\x84\x5a\xa7\x3f\xa9\x0f\x7f\xd4\x0b\x02\x03\xfa\xcf\x3f\x2c\x3b\xc8\xb2\xa4\x8c\xd7\xe6\xef\xbf\xd3\xb4\xd2\xa2\x24\x29\xf6\x17\x69\x79\xd3\x7f\x58\x45\x2b\xcb\x57\x5a\x4f\x6b\xfe\xa6\x3f\xbf\xa3\xbf\x9f\x2b\xf3\x26\x59\x2a\x37\x65\x99\xa5\x8d\x9f\xff\xb0\x8e\x38\x2d\xa3\x3c\x0d\x93\xa3\xfe\x7b\x5c\x4e\xe6\x32\xdc\x97\x37\xff\x70\x48\x9b\x22\x6a\x3c\xfe\xdb\xae\x14\xdb\xd9\x7f\xc4\x13\xa2\x6e\x35\x8f\x26\x4b\x99\xed\x82\x4d\x99\xc4\x69\x24\x93\x30\x5d\xfe\xf7\xd5\xfa\x5f\xaf\x89\x30\x62\x19\xe5\xab\x38\x05\x59\xff\xab\x6a\x51\xec\x25\xdb\x55\x3f\xfe\x25\x37\xab\x7e\xfc\x2b\xaa\x8e\x0b\x7f\x13\x3b\xc9\x37\x34\xfe\xef\xe6\xe5\x3e\xca\x8b\x7f\x4c\x8a\x9a\xb5\xff\x6b\x96\x8e\xff\xfe\xdd\x4e\xea\x6f\x67\xb4\x83\xcc\xdf\xff\x02\x6f\xfb\xe7\x35\xec\xbf\x7e\x09\x5f\xa2\x84\xf4\x94\x32\x5e\x45\x47\xf3\x28\x59\x13\x04\xa0\x56\x8a\x24\x9e\x44\x53\xd2\x3a\xf3\xf0\xe3\x7f\xa0\xfe\x90\xea\x1d\xc5\xe5\xbc\x9d\x7d\xc1\xc6\xff\x4d\x0d\xc4\x65\x94\x13\xe3\xd4\x43\xb8\x8d\x57\xf1\x3f\x59\xa7\x3f\x6d\x26\xcd\x52\x4f\xb7\xf4\x10\x31\xce\xf8\x3f\xd6\x41\x1a\xae\xd8\x98\xa7\x6d\x73\x07\xd6\x41\xcc\x7f\x1e\x48\x42\x1f\x58\x07\x9a\x72\xf0\x62\x4b\x88\x30\x2d\x29\x63\x9d\x1c\xbc\x2c\x22\xe4\x9c\x46\xaf\x71\x1a\x19\x0d\xed\xc0\x3a\x88\x76\xa4\xb4\xd1\x48\xb6\x61\xb2\x89\x38\x0b\xc1\xe4\x03\xeb\xe0\xaf\xfa\xe7\xc5\xf1\x81\x75\x70\x72\x4c\xff\x9f\xe2\xff\x33\xfc\x7f\x8e\xff\x2f\xf0\xff\x25\xfe\xbf\xc2\xff\xd7\xf8\xff\x06\xff\x0b\x2e\x26\xb8\x9c\xe0\x22\x82\xf3\xed\x99\xfe\xa8\xc5\x3c\x7a\x3d\xb0\x0e\x26\xcd\x34\xdd\x09\xea\x33\x0d\xb0\xd8\x2b\x40\x73\x73\x60\x1d\x14\x65\x58\xd2\x5f\xc2\xa6\x34\x40\x7a\x35\xd9\xe4\x79\x94\x62\x1c\x98\xa7\xff\xb5\x29\xa2\xbe\xce\x87\xb1\x9a\x87\x22\x2a\x1f\xf5\xd8\xd3\xe8\xdd\xfc\x7c\x87\xd6\x49\xed\x67\x93\xcd\x8a\x2b\x4a\xc3\x6d\x3c\x0b\xcb\x2c\x3f\xb0\x0e\x68\xf1\xb2\x4d\x69\x6f\x72\xe0\xef\x03\xeb\x20\xc9\xd2\x59\x94\x0f\x38\x5d\x5b\x2a\x69\x62\x63\x74\x5b\x27\x1c\x58\x07\xaf\x94\x79\x12\xea\x11\x14\x93\x79\x44\x84\x31\x45\x2e\x03\x2c\x28\x9b\xfe\x39\xc8\xc0\x5d\x0f\xac\x83\x59\x54\x0e\x3e\xd6\x11\xff\xfa\xd1\x34\x49\x0b\xca\x8c\xf0\xc0\x3a\x58\xd7\x89\x93\xa2\xe0\x52\xb5\x71\x52\xd7\xd2\xb0\x41\x1e\x58\x07\x99\x56\x67\x1a\x3f\x9f\x1a\xbf\xc7\x34\xee\xa8\x28\xb9\xec\x9e\x51\xf2\xc0\x3a\xc8\xcd\x33\x46\xe2\x39\x27\x27\xe6\xc7\xb1\xfe\x41\x33\xaf\xed\xd4\xa8\xa1\x69\x28\xa2\xe9\xcd\xbe\x24\x64\x5f\xdf\x4f\xa3\x3b\x5e\x70\xe8\x03\xc1\xab\xee\x48\x96\x99\xd7\x34\x6f\x3f\x1a\x25\xeb\x99\x39\xa9\x7f\x9e\x52\x1b\xf9\x14\xab\xa2\x07\x51\x94\x61\x8e\xcc\x29\x2d\x48\x1e\xa6\xb3\x08\x04\x49\xf5\x89\x74\x12\x15\x65\x96\x57\xc6\x4b\x0c\xeb\x8b\x41\xb3\xd1\x50\xce\xfd\xaa\xa6\x99\xaa\x8f\xd1\xca\x86\x00\x60\x9f\x7f\xcf\xcb\x15\xde\x20\x4b\x9c\xce\x9c\x6a\x01\xf7\x4c\x9b\x98\x60\xec\xe1\x62\xf3\x52\xe6\xbc\xf1\xb9\xd0\x00\x3b\x83\x7f\xdf\x46\xaf\xf4\xc2\xa8\x60\xdc\x7c\xc3\xee\x89\x21\x7e\x24\x11\xd1\x43\xb8\x8b\x0b\xdd\x27\xa1\xff\x4a\xa2\x9b\x30\x2f\xa2\x56\x92\x85\xa6\xf3\x5c\xec\x25\x9b\x7e\xf0\x54\x80\xe4\x40\x7f\x07\xd6\x81\x1f\x96\x73\x53\xc8\x4b\x75\x91\x86\xf9\x94\x13\xd4\x97\x52\x7b\x86\xd3\x6a\xa5\x29\xf3\x3c\x8a\x67\xf3\xd2\xf4\xfb\xab\xc9\x14\xb3\x50\x30\x4f\x2a\x79\xd8\xba\x91\xf7\x78\x8a\x8e\xcc\xb3\x3c\xfe\xe4\x29\x7b\x09\x73\xa6\xb8\xb2\xf9\xfc\x27\x96\x55\x1a\xe7\x3c\x4e\xa6\x79\x94\xf2\xd8\x78\x41\x5e\x9b\x56\x4e\xea\xca\x26\xf5\x98\xac\xe3\xa2\x3d\xf0\x6f\x1b\xc5\x74\x67\xb9\xa8\x7e\x28\xf6\x37\xdb\x0b\x56\x65\x90\xad\x47\xba\xeb\x9c\x40\x2b\x68\x52\x56\x61\x3e\x8b\x53\x5e\x5f\xfe\xad\xd7\xf7\x1f\x99\x77\xc1\xe6\xbf\x92\x12\x67\xe5\xc2\xd5\x02\x30\x0f\xa2\x51\x56\x7d\xaf\x79\xc5\x2f\x6d\xbc\x20\xf9\xc6\x8a\xc1\x9e\x8b\xf1\x34\x1e\x12\xee\x78\x9d\x56\xd3\x79\x9d\xa6\x1b\x5b\x43\x41\x42\x67\xee\xc3\x29\x51\xc0\xdd\x66\xf5\x82\x94\x35\x3f\x73\x6b\x22\x8f\xc2\x9a\x24\xf7\xcc\xc3\x94\xb5\xf1\x9b\xb6\x4e\xc1\x3c\x4a\x2f\xc6\x4b\x56\x96\xd9\x8a\x56\x05\x46\x4b\xaa\x8a\x32\x2c\xa3\x0f\xfd\x87\xf2\xd0\x26\xc1\xba\x27\x65\x94\xd7\x99\xf8\xb9\xb1\x19\x9a\xcd\x6e\x8d\x49\xe6\x0b\x97\x0c\x2a\x12\x9f\xfc\xc4\x9d\xf6\x8c\xd0\x07\xd6\xc1\xee\xc0\x3a\xf8\xd0\xe9\x5f\x6d\xce\x44\xe6\x61\x41\x04\x92\xeb\xcd\x92\x47\x18\x2d\xc8\xa4\x24\x89\xa2\xd9\x7d\xd3\xfa\xdc\x64\xd1\x75\x12\xcf\xb5\x21\xd7\x2f\xf9\xe3\xa2\x4d\xdb\x09\xd5\xc6\xa9\x66\x58\x45\x34\xc9\x68\xbd\x3e\xf4\xf3\x2a\x0a\x8b\x4d\x6e\x3a\x56\xbd\xf5\xf7\x92\x89\x2b\xd3\x6c\xe6\x98\x36\x2d\xd0\x00\xa6\x78\x1f\x55\xb6\xed\x06\xf3\xa2\xdf\xd3\xb0\x0c\x99\x1d\x17\x5a\xa4\xe9\xca\x60\xe3\x66\x31\x6f\x46\x4d\x64\xfc\xb2\x00\x7b\x9d\xb2\x68\x2f\xe7\xe0\x70\xd9\x1a\x16\x07\x2a\x99\xc4\x6b\x8c\x93\xa9\xd8\x90\xfa\x37\x5b\x77\xa3\x17\x5a\xe2\x14\xd9\xca\xc8\xcc\x9f\x0c\xdd\xe8\x5c\x44\x0c\xa2\x30\xfc\x5d\x23\x16\x4e\x06\xbf\x32\x82\x5c\xdb\xbd\x9b\xbc\x92\x7a\xf9\x9e\x46\xb9\x5d\xa3\x8d\x1f\xac\xda\xd8\x00\x45\x11\x6f\xa3\x8a\x9d\xd4\xdb\x28\x2c\xcb\x70\x32\x1f\x64\x4d\x99\x4e\x25\x60\xa8\xd4\x90\xe3\x25\x44\x07\x8a\x2f\x59\xe2\x42\x32\x77\x2f\xc3\x7c\x16\xb1\xfc\xfb\x6e\xee\xa6\x9e\xff\x64\x06\x07\x61\x7d\xb7\x76\xa3\x5e\x6d\xd4\x26\xf1\xcc\xcf\xe1\x9d\x66\x32\x69\x6c\xd0\x57\xdf\x08\xa4\x4d\x1a\x1b\x16\x94\x47\xaf\xd9\x6e\x6f\x65\x8c\x81\x1a\xad\xbd\x6d\xa2\xa2\x64\x3e\x10\x17\xdf\xdf\xe0\xf7\x36\x4c\xe2\x7a\x67\x16\x4d\x8e\x80\x5d\x68\x8c\xd4\xd8\x91\x9b\x94\x77\x74\xac\xc9\x4a\x3a\x6d\xf1\xe8\x05\x0f\x7d\x23\xdb\x2a\x4e\xb9\x29\xa2\xb6\x91\x51\x2f\x61\xb1\xb7\x2b\x5f\xf3\x70\x66\xea\x2f\xd6\x09\x46\xb3\x0a\xd7\xfa\x0d\xe6\x6f\x1b\x33\xde\xc0\xeb\x87\x68\x86\xd6\xb2\x35\xe8\x3e\xca\x67\x11\xa9\x31\xf7\x79\xb4\x8d\xb3\x0d\x93\x2e\x24\x76\xae\x25\x1d\xc8\xc8\x40\x54\xf4\x95\x30\x0c\x2c\xd6\x4d\xbe\x13\x17\x8f\x51\x5e\xc6\x93\x30\x31\x6f\xeb\x3d\x0d\x13\xdc\x6b\x96\xaf\x0c\x7d\x62\xcf\x57\x6b\x50\xbd\xc6\x6e\xc9\x80\x75\xb3\xb5\xde\xea\x30\x4d\xd7\x14\x97\x40\x3c\x12\x6e\x50\xe1\x3a\x2e\xc3\x24\xfe\xc4\xcc\x87\x49\xf9\x43\x01\x8d\x23\x26\x91\x9e\x6a\x6e\xd8\x87\x58\xd3\xd9\x39\x89\xe1\x8a\xe1\x36\xf1\x34\x32\x03\xae\xd6\xcf\x70\x44\xbd\xa3\x03\x8d\xe1\xf2\xe8\xb5\x1e\x27\x81\xd6\x24\x5c\x17\x0f\x50\x29\x0c\x84\x2d\xb4\x00\xad\x9e\x1f\xf4\x52\x56\x09\x2c\x6d\xab\x47\x69\xe4\x44\x23\xa5\x21\xd6\xa8\xf9\x75\x34\xad\xec\xf0\xf2\x83\xdb\xfb\x9e\x0e\x6d\x8c\xa9\xe4\xcb\xbb\x7d\x2e\xdf\x4c\x36\x50\xef\x36\x4a\x67\x1a\x22\x6c\xc0\x47\x93\x68\x16\x4e\x3e\xdc\xf5\x46\x4c\x26\x51\x12\xb1\x0e\x12\xac\x4d\x6d\xfb\xe9\x5f\x90\x74\xc5\xeb\x2b\x1c\x53\xcc\xb3\x4d\x32\x7d\xd0\x75\xe7\xfa\x6f\x9a\x99\x94\x6d\x53\x74\x18\x6c\xc2\x6b\x65\x9e\xe2\xa2\xd9\x6f\x80\x30\x42\xc4\xc9\x20\xf3\xd2\x32\x9a\x45\x06\x89\x11\x4d\x36\xd3\x5e\xb2\x72\x1e\x4c\xa7\xa6\x9a\x6f\x1e\x86\x9a\xaf\x36\x95\x9c\x38\xa5\xba\x78\xa5\xf8\xb7\x5e\xd6\xb0\xf2\x23\x1c\x58\x07\xf7\x06\x46\x68\xae\x20\xd2\x78\x85\x1e\xb6\x72\xe6\xd8\x26\x56\x84\xfa\xc1\xf2\xc9\x30\xfd\xa0\x92\x18\xe0\x9e\x45\x2d\x16\x86\x65\x9c\xd4\x95\x9b\x27\x5b\xfb\x96\xa8\x40\x58\x44\xc1\x06\x00\x95\x2a\x8c\x53\xf0\x00\xda\xe5\x5f\xfd\x0f\x5a\xa0\x69\xc1\x0c\x96\x14\x16\x45\x54\x98\x5f\x5a\xae\xfc\x85\x4c\xff\x0b\x71\x36\xe0\x55\xfc\x57\x27\x6b\x8e\xdc\x9f\xe7\x71\xba\xac\x39\x74\xf5\xac\xb3\x15\x0d\xec\x5f\xa7\x96\xf3\x78\xb2\x4c\xb9\x2b\xcd\xdf\xfa\xb5\x31\x09\x54\x8f\x30\x2d\x18\x8c\xc3\x2a\x5a\x39\xc7\x14\xff\x95\xc1\xc4\x40\xdc\x2b\xdb\x94\x7a\xa9\x78\x8b\x4c\xe2\x7c\x92\x44\x06\xf9\x93\x52\xd4\xfc\x7d\xaf\x67\x80\x72\x6d\x56\xb5\x06\x79\xef\x31\xe3\xcb\x96\x91\x1d\x16\xf3\x50\x43\x85\x32\x33\x32\xbb\x7e\x57\x61\xd7\x49\x96\x4e\xa0\xb5\xfc\x15\xed\x4a\x0d\x19\x26\x49\xb1\xd3\x4d\x41\x06\x1a\x3e\xa5\xf9\x67\x65\x02\xd5\x56\x04\x88\xaa\x3c\x43\xf7\x8a\x2d\xb1\xec\x6d\x1c\xbd\x4b\xc8\xa2\xbe\xf7\xec\x54\xe3\xa9\x7e\xd8\x5f\x26\x9c\x53\xbd\x2f\x75\x9b\x49\xd0\x2d\x4c\x00\x5d\x80\x7d\x18\x4f\x26\xd5\x88\xcc\x56\x78\x8f\xcb\x79\xcd\x95\xe7\x11\x53\x6c\x5c\xac\x13\x9e\x88\xca\x93\xb2\xf7\x80\x21\xc3\x9c\x47\xbb\xc1\x10\xbc\x21\x9b\xfb\x3c\x5e\x85\xf9\x07\x64\x5a\x12\x95\x25\xc3\x16\x93\x46\x18\xcf\xe4\xec\x1b\x18\xd7\x84\x74\x55\x1f\x9b\x72\x22\xc8\xe3\x19\xca\x91\xe0\x6f\x92\xab\x8e\x29\xd3\x30\xd9\xfc\x56\x8d\xdf\x86\x84\xa3\xb4\xe0\xed\xc8\x7f\xf7\x29\xfb\xbe\x42\xfc\xdf\x12\x8a\xcd\xcb\x3c\x0a\xa7\x1a\x8a\x1b\x63\x57\xc3\x96\x4a\x74\x94\x67\x46\xe4\x26\x71\x51\x91\x1e\x6b\x53\xb5\x42\xc1\xbc\x44\x3f\x54\x3c\x7f\xdf\x57\x07\xc9\x16\xcf\x52\x4a\x29\xf6\x1e\x5a\x49\xb4\xeb\x6b\xcb\xc1\x2a\x4e\xcd\x12\xbe\x52\xb2\xa1\x8b\xa6\xb7\xee\xdb\x20\x07\x1f\xeb\x6c\x96\x87\xf5\x20\x75\xc2\x7a\xfe\x51\xe7\x8d\x53\xad\xa2\xe9\xbf\x7a\xe5\x2a\x9c\x89\xa7\xba\xa0\xd9\x59\xd5\xf2\xe9\x8c\xd5\xf3\xf7\xac\x25\x9b\x97\xf6\x1a\x5f\x6d\x92\x32\x4e\xe2\x34\xd2\x03\xaa\x26\xaf\x9a\x25\x3d\x6b\x9a\x05\x0f\x9a\x84\xa9\x4d\x6f\x7b\x8b\xae\x41\x39\xc1\x51\x0c\x26\x2e\xe3\x30\xa1\x9d\x01\xc0\x13\xae\xd7\x51\x98\x6b\xe4\xb7\x49\x35\xc8\x33\x98\x81\xdf\x56\x99\xb1\x82\x9b\x74\x45\x19\x83\xd4\xd9\x31\xe0\xd2\x4f\xba\x48\x61\x32\xa7\xd1\xae\x54\x35\x06\xfe\x2b\x4e\xe7\x51\x1e\x97\xc5\x6d\x96\x15\x1a\xda\xdb\x51\x1e\x6f\xa3\x29\x2c\x83\xad\x3c\x5b\x99\x79\x59\xe7\xd1\xd6\x98\x0b\x69\x31\xca\x8c\x79\x77\x99\xe9\x19\xab\x28\xdc\x8e\xa7\xe8\x76\xa5\x85\x54\x7d\x6d\x66\x19\x1a\x05\x85\x2a\x36\x8d\x50\xff\xbe\xe7\x1e\xc5\x49\x32\xe4\x11\x62\xd2\xd2\x49\x94\xdc\xed\x8f\x64\x16\x95\xda\xea\x08\xf9\xc3\xb3\xa0\xed\x93\x66\x3e\x78\x1a\xd7\x51\x4e\x5b\xd6\x4c\x8d\x79\xe4\x12\x40\xe2\x7a\x8c\xb4\x46\xa7\xd5\x7c\x73\xe1\xbf\xf2\xe8\xf5\x54\xdb\xd9\x18\xe4\x60\x71\xed\xc0\xd7\x2a\x99\x1d\xf8\x5a\x81\x5f\x85\x1f\x2f\x51\xf3\xb7\x68\xd4\x53\x36\xfa\x4a\x1d\x19\x54\x3d\x65\x87\x34\x75\x25\x7c\x8d\xfa\x75\x77\x32\x5e\x4c\xb0\xfd\xac\x5a\x58\xfd\x8b\x2b\xcd\xd2\x9a\xee\x1c\x88\x72\x8c\xe1\x8c\xf3\xf1\x00\xf9\x87\xc9\x4f\xbf\xd9\x50\x8c\x39\x6d\x2c\x80\x56\x4b\xbe\xcc\x32\xea\x3b\xa7\x39\x99\x94\xac\x80\xcd\xc3\x74\x9a\xa0\x2b\xd3\x2c\x2a\xee\xb2\xb2\x1d\x6e\x23\x3d\x9a\x20\x37\x7a\x10\x95\x98\x4e\x9d\x74\xda\x48\xa0\xa9\x3c\xab\xe6\x69\xbf\x9d\xa2\x5a\x4d\xe0\x82\x94\x79\x17\x5a\xff\x5f\x06\x2e\xc0\xca\x64\xe8\xe6\x57\xa2\xd7\xd0\x35\x8b\x83\x1a\xb5\xd7\x13\xe5\xe6\xd9\x66\x5d\xb3\xca\x49\x92\xa5\x8d\x7c\xaa\xb6\x80\x65\x69\xf2\x81\x95\x07\x03\xd1\xac\x56\xdb\xa2\xa9\x4f\xf4\xb3\xd8\xb7\xd5\xd3\xe3\xf0\xce\x0f\x86\x77\x03\xc7\x3e\xb0\x0e\x9c\x27\x4f\xff\xb8\x1b\x38\x0f\xde\x9d\x6b\x7e\x56\x6f\x39\x8d\x88\xb9\xea\x60\x35\x44\x0d\x62\x34\xf3\x9e\xd6\x46\xf7\x5a\xf2\x35\x2c\xf1\x2b\xa6\xbc\x69\xf4\x55\x54\xda\x3a\x05\x26\xd9\x30\x61\x95\xe3\xdd\x10\xa2\xa6\x8c\x75\x38\x89\xd9\x94\x5e\x11\x9d\x9b\x23\xd7\x17\xc8\x55\xe6\xf1\xa4\xf4\x1b\x98\x8b\x13\xb2\x29\xec\xf2\x21\xb3\x6a\xcd\x74\x0d\xe0\xaa\x56\x56\x27\xd4\x63\xa5\x32\x7b\xab\xd3\x64\x9a\x54\x0e\x94\xb4\x29\xb3\x9a\x3a\x36\x45\x34\xd0\xc0\x80\xf5\xf5\x1f\x7a\x50\xf9\xfc\x8b\xea\x1d\x6d\xd7\x2c\x8f\xe2\x59\xca\xdb\x98\x5d\xdf\x4b\x7e\x60\xa2\xe6\xdf\x69\x96\xaf\x58\xa9\x6b\xf4\xaa\xa6\x54\x62\x04\x41\xde\xdc\xda\x7f\xed\x79\xfa\xc0\xc4\x9b\xaf\xb9\xee\xc6\xae\x6d\x24\x30\x08\x66\xdf\xc3\x5f\x3f\x12\xc1\x2c\x2a\xc5\xa6\xcc\x58\xf9\x6e\xac\xf6\x04\xd6\xe1\x4a\x27\x5f\x64\x90\x0a\x8d\xaa\xb1\x84\xfa\xb9\x62\x00\xf5\xf3\xcf\x0d\x9e\xee\xe5\x61\x46\x91\x44\x61\x83\x5b\xf1\xf0\xef\x78\xef\x54\x3b\x59\xf3\x11\x00\xc7\x22\x7e\x89\x13\xa6\xa5\xd5\x26\xd6\x76\x23\x1a\x03\x4f\xba\x93\xce\x89\xf5\x4c\x9d\xd7\x57\x56\xc9\x38\x3c\x45\xef\x30\xe3\x4d\xf8\x82\x86\x4c\x96\xaf\xcf\x59\xfa\x00\x5e\xa1\x6d\x57\x9b\xca\x72\x5b\x44\xa5\xdf\x78\x9c\xed\xfb\x2a\x60\x3a\x7e\xad\xb8\xc4\x97\xf8\x16\x6a\x9e\x95\xfc\x30\x9f\x6d\x8c\x65\x23\x31\xda\xe8\xeb\x26\x9d\x60\x7b\xb2\xb9\x34\x8f\xa6\x1b\x60\xf7\x70\x32\xd1\x6f\x75\x05\xa7\x5c\x83\xc9\xab\x25\x4b\xa2\xb7\xa2\x48\x27\xf3\x2c\x77\x12\x20\xd6\xea\xa7\xe1\x25\x6c\x92\xac\xf4\x31\x3d\x1d\xcb\x28\x5a\x63\x58\x18\xef\xfe\x53\xb6\x46\x97\x75\xce\xa6\x19\x58\x83\x8d\xa6\xc9\xc6\xe4\xfa\xd2\xcc\xcf\xcf\x0f\xd1\xeb\x9e\xd5\x84\xa7\xce\xec\xed\x3d\x44\xce\x61\x3a\xda\xf8\xf0\x9e\x36\x37\xd7\x7d\xa3\xec\x97\x14\x4e\x8c\x0c\xc5\x15\x51\x59\x51\x5f\x5e\xee\xf5\x7b\x1a\xe7\x51\xe5\x2a\x4c\xe2\xf5\xde\x98\xf6\x1d\x9e\xa7\x5c\xd3\xbe\xf9\x98\x9a\x0d\x78\xa2\x9a\x7d\xa8\x90\x09\x3f\x76\x0c\xfa\x69\xc4\x3a\x82\xd8\x94\xd1\x31\xb2\xb4\x2a\xc2\xf5\xa8\x84\xc5\xce\xf7\x0d\x3c\xff\x28\xca\x28\x2f\xe2\xc2\xb4\x6b\x9e\x07\x9a\xbb\xe9\xd8\xa6\x7a\x4a\x61\x3e\x32\x66\xa4\x6f\x7b\xa1\x95\x4d\x36\xc5\x6d\x5c\x6f\x06\x9d\x50\x8b\xd9\xbd\xec\xed\x6c\x1b\xe5\xcd\xec\x3a\xe1\x17\xd9\x07\xd9\x66\x32\x6f\x66\xd7\x09\x5f\xb3\x43\x4a\x18\xc1\xb2\xf7\xd0\xcc\x40\xac\x61\x2f\x53\x33\xa1\x99\x11\xad\xd0\x8b\x0a\x1e\x99\x04\xf0\xd3\xa9\xf1\x83\x4f\x9b\x7a\x41\x19\xe5\x15\x2a\xd9\x7f\xd2\x59\x92\x28\xdc\x46\xa6\x92\xbd\x87\x66\x86\x66\xdb\xfb\x09\x1f\xbc\xe8\x7a\x69\xb3\x54\xaf\x20\xed\xb4\x7d\x01\xc7\x64\x63\x44\x57\x45\x47\x4d\x59\xc6\x29\x95\xca\x11\x97\x49\xe5\x6f\xab\x59\x96\x6a\x3c\x62\xf5\x79\x67\x14\x51\x29\xea\xa7\x78\x96\x66\x79\x74\x97\xa5\xe8\x27\xac\xcf\xda\xb2\x5b\x44\x86\xa6\x2a\x88\x99\x57\x83\xd2\x0f\x25\x15\x32\x0f\x7f\x7d\x0b\x45\xd8\x4b\x38\xd5\x83\x6d\xc0\xc3\xa0\xf1\x18\x4f\x69\x73\xe4\xf1\xb4\x11\x40\xe1\xe9\x0d\x6c\x37\x1e\xf3\x30\x9d\x42\x65\x42\x00\x1e\xcb\xe1\xf7\x30\x9f\x36\x1c\x87\x66\x5e\xb2\xd4\xcf\x36\x45\x44\xf5\x56\xf6\xf5\x2a\x4a\x96\xb1\x7b\xa1\x15\x6e\xaa\xac\x00\xed\x3f\x92\xc8\xc1\x74\xfe\x94\x16\x7f\x4d\xc8\x52\x99\x6c\xf2\xfa\xf9\xb5\xf1\x5a\xb3\xb6\x7d\x4e\x72\x66\x3a\xfa\xad\x6e\xb3\x64\xdf\x5e\x30\x53\xa0\x76\xaa\x07\xe4\xa8\x23\x34\x06\xc6\xe7\x90\xa5\xe6\x4d\x31\xcf\x72\x1d\x68\xc0\x45\x6e\x69\xe1\xaa\x1e\xd7\xd3\x63\xd2\xa7\x51\x19\x4d\x4a\x90\x81\xd1\xc3\x35\x55\x98\x47\xae\x67\x58\x44\x4d\xbe\x8b\xf6\x9a\x09\x81\xe1\xd4\x31\xc1\x26\xb6\x44\xb1\x75\xb4\x3f\xcf\xde\xef\xd8\xbd\xaa\x29\xb6\xb1\xd1\x46\x39\x29\x4a\x79\xd3\xf5\x61\x88\x92\xcd\x8a\x51\x3e\x8b\xa6\xfb\x84\x3f\x8d\xa2\x35\xd2\x2b\xf4\x46\x39\x65\x96\x25\x51\x98\x56\x12\xc6\xdb\xdb\xcd\x9c\x26\x34\x37\xac\x24\x9b\x97\x32\x47\xfa\xc2\x72\x4d\x32\xcf\x66\x5e\x4b\x25\x43\xfc\x75\x8a\xa9\xf2\xd3\xb8\xd5\xd6\x19\x86\x57\xed\x29\x56\xf9\x1f\x2a\xbf\xc7\x64\x39\x83\x9d\x58\x69\x6b\xe4\x6b\xc8\xe8\x22\x67\xc7\x29\x2c\xf8\x0f\xe1\x34\xd6\xcb\x19\xae\xeb\x30\x8a\x03\xeb\xe0\x7d\xae\x8d\xf7\x59\x5a\xb6\xc2\x55\x0c\x24\x50\x36\xad\x0e\xf4\x46\x3b\x0c\xd6\xbb\x41\xf6\x10\xad\x60\xc0\x49\x6b\xdf\xcb\x2a\xdc\x55\xa6\xb2\x2c\x9f\xd2\x12\xe8\x72\x23\x93\xa5\x7e\xf0\xa3\x69\xbc\x59\xa1\x67\xbb\x7e\xfc\xc9\x10\x70\x52\x5b\xe4\xab\x8c\x0f\xd1\x6c\x93\x84\x8d\xb9\xaa\xa4\xa6\x36\x6f\xfc\xf5\x2d\x84\xea\x25\x8f\xc2\x25\xe6\x8b\x5d\x7f\x3f\x94\x35\xf3\xf6\x35\x9d\xad\x4e\x5f\x53\x2b\xc3\xca\xf7\x30\xdb\x03\xeb\xa0\x8e\x97\x6d\x48\x8e\x29\x93\x11\xff\xd9\x97\x63\xd3\x5a\x82\x4d\x7f\x16\xa1\x0f\x5f\x45\xe8\x43\xbc\x5e\x83\xc4\xb9\x1d\x19\x16\xa6\x76\xb3\x9b\xe8\x37\x93\x36\xbb\x73\xaa\x12\xaf\x7b\xe5\x93\xf0\x05\x9a\x35\x75\x5d\x24\xf1\x2c\xd5\xea\xb3\x76\x12\x6c\x09\x61\x19\x6d\x0b\x66\x47\x8f\x6d\x32\xda\xdb\xd5\x5f\xb1\x8d\x68\xb1\x29\xca\xf8\xb5\xe1\x41\xa9\x23\x7e\xb5\x4e\x54\xb1\x94\x79\x34\x59\x46\x46\x48\xea\xa7\xfa\x17\xcd\x5d\xcd\xa1\x55\xf5\xda\xcc\x8f\x11\xae\x9c\x2d\x4e\xd7\x9b\x4a\x97\xc5\x83\x86\x73\xa9\x9a\xeb\xc0\xa0\x3c\x0a\xa7\x01\x2b\xc7\x79\xed\x85\x2c\xc3\x17\xb3\x8f\xc0\x17\xd1\x8c\x91\x15\xab\x4d\xdc\x58\x57\x76\xe5\xdf\xd2\x3c\xb5\xb2\xdc\xb4\xc3\xa1\x68\x75\xff\x26\x9b\xbc\x60\xe3\x7f\x33\x52\x93\x3a\xfe\x6d\x34\xfa\x85\x89\xe8\xdd\x1f\xf1\x97\x97\xcd\xd8\xe4\x2f\x19\x9b\xe6\x6b\xfd\xea\xc7\x88\xe1\x66\x8d\x2f\xb0\x92\x1b\xfb\xef\x5e\x77\x0c\x52\xd1\x13\x3b\xc9\xbe\xc0\x86\xaf\xa6\xf8\x9f\x92\xbd\xaf\x26\x7b\xcf\x2c\xd3\x97\x34\x5d\x75\xc3\x1c\xec\x95\xe0\x1f\x06\x55\x36\x8d\xb8\x26\xad\x41\x44\x3a\xe9\xc5\x6c\xb2\xea\x47\x53\x46\x37\x6d\x74\xfb\x63\xa9\xd4\x2b\x80\x1e\x1d\x9e\x59\x27\xec\xdb\xbe\xab\x77\x86\xce\x7e\x9d\xa0\xbe\xfb\x84\x34\xdd\xba\x9b\xb2\xdc\xf3\xcf\xd7\x09\x55\x46\x63\x04\x6f\xca\xf8\x1f\x6a\x2c\xa2\x24\x9a\x18\xe5\xa3\xfa\x89\x81\xd7\x2c\x28\xd1\x53\xaa\x5d\x9d\x7a\xda\x56\x9b\xf8\x0e\xa1\xaa\xc4\xd1\x8c\x01\x60\x1e\x16\x95\x2b\x41\x98\x9d\xaf\x73\x7e\x9d\x42\x28\xf9\x55\xcf\x8b\x6f\xc5\x5e\xf7\x91\xc5\xba\x5a\x65\x3b\x9a\x64\x95\x39\x80\x65\x4f\xc5\x43\x1b\xa2\x4a\xc7\x7e\xb0\xb5\xda\xb0\x64\x70\xa1\x03\xeb\xa0\x61\xe2\x87\xa6\xb8\x9a\x55\xf6\xf3\x7c\xc2\xff\xf7\x81\x52\x92\x2c\x9c\x1a\xe5\xec\xd6\xfc\x8e\x57\x21\xf8\x81\xa7\xff\x66\x29\x65\xc3\x8f\x28\xcf\xb1\x75\x09\xad\x98\xec\xf3\xb0\xf0\x56\xb3\xea\xc7\x5d\x56\xb6\xc2\x38\xd1\xf1\x0c\x78\xc1\x61\xe8\x10\xac\xb5\x65\x90\xf4\xa5\x95\x61\x95\x76\x15\x9c\xbb\x29\xa2\xbc\x8f\xc5\xda\x1b\xaf\x71\xe5\x72\x67\xdf\x36\x61\x1e\x71\x84\x4c\x34\x29\x5b\x6c\x23\x8e\x76\xd8\xe9\xcc\x53\x2b\xa6\xa2\x49\xa1\x21\x82\xe7\xe5\x2a\x31\x92\x1e\x80\x5d\x4c\x26\xfb\x9e\xc2\xca\x49\x86\x45\x0a\x79\x85\xd0\xcf\x6a\xf9\xf0\xe4\xe8\xd9\x30\xb3\xc2\x43\xa9\xc5\x93\x69\xb4\x16\x04\x26\xc5\x08\x03\xf3\x7c\x1b\x32\x76\x5a\x73\x00\xa2\xf6\x8c\x69\xba\x5a\x45\xab\xac\x86\xd7\x1a\xd2\x15\x86\x28\xfb\x1f\xab\x17\xb0\x5e\xc4\x75\x73\x3c\xef\x5f\x1c\x9a\xf4\x17\x26\x00\x82\x12\xbb\x02\x63\x84\x7c\xcc\xe0\x01\x59\x6f\x10\x77\x15\x21\xf3\x26\x2d\x4c\x2c\x90\xb7\x1f\x21\xce\x4e\x94\x88\x47\xfb\x7f\x10\x04\xb2\x8e\xd3\x59\x71\xf0\xbf\x0f\xfe\x7f\xa7\xae\x10\xc2\xba\xb4\x85\x1b\x59\x7d\x21\xfa\xc2\xf2\x84\x5a\x4b\xcb\x13\xc2\x53\x96\x23\x44\xa0\xac\x50\x88\x58\x2a\xab\x2b\x9c\x0b\x69\x05\xc2\x16\xca\x1a\x0b\xf1\x26\xdb\x96\x2b\xd4\x54\x58\x9e\x15\x2b\xd5\x79\xf2\xac\x00\xd9\x23\x21\x22\x14\xed\x53\xc9\x89\xa5\x84\x3a\x53\x0a\x2f\x2d\x4f\x38\x03\x9b\xde\xf5\x1c\x7a\x39\xb4\x1c\xa1\x12\x6a\x6d\x26\xd1\xdc\x5c\xf6\x28\xff\xa3\xb2\x5c\x21\x3c\x6b\x28\x54\x47\x51\x5f\xba\xf4\xf3\xf6\x7f\xee\x67\x57\x08\x9f\x7e\xde\xfd\xf6\xe7\x48\xb8\x0f\x0b\xa9\xbb\xdf\x13\x62\xa8\x2c\x97\xc6\xbe\x95\x89\xb4\x2e\x95\x70\x78\x0e\x23\xca\x31\xa1\x21\xa8\xb5\xaa\x67\x32\xc4\xc0\xbb\xca\x1a\xd1\x98\x91\x34\x69\x21\x69\x21\xad\x9e\xf0\x53\x99\x49\xcb\x15\xb7\x41\x1b\x89\x9e\xd5\x15\x4a\x75\xf0\xbb\x6b\xf9\xc2\x6d\x5d\x49\x6b\x22\xc4\xb9\xbc\xc6\xf2\xbc\xde\x52\x03\xc2\xb7\xfa\xc2\xb9\xe2\xea\x96\x72\x4e\xb5\x8b\xe8\x98\x2a\x52\x0b\x15\xd4\xed\xce\x90\x74\x25\x1d\x7a\x18\xb5\xaa\xa4\x63\x79\x24\x2d\x9f\xd6\x46\x89\x9d\xec\xde\xd2\x8b\x08\xaf\xc3\x9e\xe5\x88\x95\x7c\x5a\x60\x49\x97\x92\xc6\x36\x5c\x61\x58\x89\xfd\x40\x7f\xda\xa8\xbf\x0f\xd2\x78\xb4\x02\xeb\x5a\xa9\xad\xba\xa5\xda\x62\x65\xbd\x49\x21\x9e\x14\x4d\xd3\x3d\x7e\xbf\x2b\x65\x0d\x85\xd8\xda\x78\x3a\x6e\x29\x6b\xa8\x9c\x75\x0b\x1d\x5f\x49\x6b\x64\xf5\x84\x5a\xf0\x38\xde\xa5\xa5\x84\x00\xc9\xf4\x50\x06\x73\xd6\xc7\xbb\x01\xf7\x5c\xd0\x1f\x0f\x23\x5b\x13\x51\x8a\xa5\x0d\x9a\x49\x6c\xcb\xa1\xae\xf9\x78\x0a\x3b\x54\x7c\x28\xf4\xff\x3d\x2c\x9c\x23\xc4\x85\x6c\xd1\x8a\xd2\x5a\x5a\x81\x50\x0e\xfe\xb8\x34\xd7\xf7\x1b\x9a\x94\x37\xf5\x49\x73\x3c\xa6\x56\x9e\x4f\xa5\x87\xba\xee\xa8\x99\x1d\x8d\xe8\x4c\x06\x34\x19\xa7\x32\xb0\x5c\xda\x2f\x17\x12\xad\x75\xb8\xb6\x80\x3a\x7b\x6b\x51\x21\x57\x70\x92\xb0\xde\xa5\x10\xd7\x34\x4a\x97\xb2\x5b\x8e\x35\x14\xbe\xa2\x4a\x0a\x69\x73\x25\x5b\xe9\xfc\x5c\x09\xba\x37\x16\x6a\xc4\xa5\x07\x96\x63\xf9\xc2\x6e\x59\xbe\xda\xc9\x3e\x08\x0e\x13\x33\x22\x62\x0c\x84\x7b\x24\x85\xe5\xd2\xfb\x42\x0a\x9b\x7e\xba\x43\xa5\xb7\x76\x57\x88\xae\xb0\x5c\xd5\x79\xaa\x8b\x7d\xf0\x94\xf7\xa9\xb4\x2b\xd4\xce\x06\xc1\xf2\x1e\x15\x56\xdf\xf2\x85\x7a\x44\x07\x3d\x8f\xa6\xce\xee\xb7\xf4\xab\x89\x10\x5b\x49\xfd\x5a\xc9\xa9\x15\x4b\xe2\x11\x58\x94\xb5\xb2\x7c\x8c\x20\xd2\xbd\x72\x84\x78\xb2\x69\x68\xf7\x96\xa3\xee\x43\x34\x8d\x55\x98\xb4\x2d\x97\xea\x5f\xa3\x7f\x9e\x30\x6d\x52\x8b\x8e\x70\xba\x26\x61\x2c\xc4\x04\xbf\xaf\xa4\xd5\x55\x36\xd7\xe0\x31\x1d\x74\xd0\x37\xa7\x54\x3c\x6d\xfd\x17\x7a\x79\x6f\x75\x69\x26\xfc\x90\xf2\x3c\x58\x43\x9a\x5e\xc7\x22\xee\xa3\x84\x15\x20\x9f\xa8\x47\xf1\x6a\x75\xe9\x4d\xcb\x1a\xd7\x6f\xa8\x06\x5f\x78\x1b\x45\x13\xf1\x4a\xab\x10\x6d\x95\x4f\xbf\x37\x44\x8b\x11\x6f\xb8\xd7\x4b\x9a\x80\x88\x37\xf3\xeb\x52\x5a\x63\xcb\x17\x33\x79\xa6\xb0\xdc\xef\xe0\x99\xa2\x8b\xed\x3c\x42\xb5\x17\x4a\xaf\xa7\x70\xbb\x7a\x57\xe2\xcf\x56\x5a\x9e\xda\x4a\x1e\x19\x35\x03\x86\x4b\xcb\xa9\xe6\x4a\x80\xfa\x50\xfe\x05\x1d\xde\x28\x3c\x6c\x15\x9e\x68\x56\xef\x5a\xb4\x6a\x3e\xaf\x64\x8a\xfd\x3c\x93\xa0\xd7\x40\x58\x1b\xdd\x97\xbe\x10\x37\xb6\x35\x11\xca\xff\x00\x0f\xeb\xaf\x25\x6a\xc6\xe6\x98\x49\xf4\x75\x2d\xe9\xe9\x8c\xc6\xd8\x67\x66\xc6\x79\xbb\xba\x37\x67\xc8\x86\xa5\x52\x44\x08\x4e\xeb\xcb\x73\xb7\x6d\x56\xfa\x71\x6f\x9d\x5e\x99\xc8\xbf\xae\xd3\x8c\x38\x9f\xeb\x5d\x4a\x1e\x33\x73\x3e\x81\xc1\x9c\x80\xe1\x3c\x1d\xa3\xc5\x2d\xfd\xef\x7a\xa8\x2c\xd2\x2c\x18\xa3\x47\x87\x9c\x20\x06\x4b\x8c\x41\xfa\x62\x29\x39\xc7\x89\xb2\xc0\x51\xd5\x92\x29\x73\x88\xff\x9f\xac\x4c\x0a\xf1\x1a\x4b\x2b\xb4\x3c\xe1\x32\x6f\x1e\x81\x40\x35\x5b\x59\x28\xab\x6f\x05\xc2\xe9\x62\x57\xdb\xd4\x8d\x10\x15\x2f\xd0\xa5\x77\xac\x48\x50\x62\x75\xb5\x64\xc0\x7f\xbc\xa7\x88\xc9\x60\x8f\xdc\x48\x6b\x44\xfb\x70\x24\x1c\x27\x91\xbc\xd7\x50\xff\x84\x48\xda\x99\xab\x99\x64\x52\x73\x85\x4b\x05\x9e\xfb\xaf\x75\x2f\x79\x74\x89\x14\xd6\x4c\x12\x73\xc3\x7c\x7d\xda\xd6\x4c\xaa\x54\x8e\xd0\x54\x8c\x9e\xf7\xf4\xca\xdc\x80\x0b\xf2\x26\xea\x0a\xe2\x1e\xc2\xd6\xef\x1d\xa2\xf1\x31\x1a\x51\x22\xac\xb7\xfe\x86\xb7\x3e\xa4\x98\x27\x9c\xc4\xc6\xde\x67\x4a\x9b\x12\xcf\x8f\x6d\x64\xc8\x6d\xcc\x87\xea\xe7\xaa\x5a\x35\xe2\x07\x05\xbd\x55\x1d\x0c\xb6\x2f\x34\xcd\x0b\x96\x3c\xae\xd5\x15\xad\x96\x75\x2e\x85\xcb\x64\xd9\x33\x7c\xc3\x11\xa2\xa4\x81\x2b\xdf\xa5\xdf\x7e\xbb\x4e\x5f\x53\xba\xeb\x63\x95\x7b\x27\x68\x6c\x6a\x4d\x28\xaf\x30\x7f\xc6\x44\x45\xbd\x53\x54\x79\x8e\xcd\xb3\x90\x97\xd2\x7a\x07\xd7\x96\x37\xf6\x9d\x1e\x82\x2b\xd4\x33\xc9\x5e\xbb\x65\xb9\xc2\x11\xdc\x14\xf1\x96\xf6\x03\xcd\x97\xba\xe1\xcd\x76\x2a\xcf\x24\x53\xe6\x5c\x2d\xb1\x1c\x21\x96\xca\x3e\x97\xe0\x7d\xce\x02\xcb\xef\x2d\x31\xe2\x11\x55\x40\x9b\xd0\xa5\xc9\x6b\x1b\xca\x76\x84\x98\xcb\x88\xc4\x9a\xfd\x29\x2d\xd7\xbe\x96\xfe\x0c\x12\xac\x53\xef\xf6\xb9\x59\x6b\xcc\x5c\x8c\xa7\xe8\x19\xb3\x2b\x79\x01\xbd\x31\x3d\x75\x48\xea\xf7\x1f\x79\x79\x86\xcc\x1b\x1e\x89\xbc\x88\x4c\x9c\x40\xf0\x0b\x26\x67\x33\xa3\xae\x10\x73\xdb\xf2\x9d\x4f\xc5\x84\x01\xb6\x37\x5c\xf0\xb2\x8a\xfe\x92\xa1\x86\xb5\xb1\xa9\x16\x5f\xa8\x13\x85\x94\x37\x69\x13\xb1\x0e\x04\xef\x3d\xf0\xd9\x94\xd0\x9e\xf2\xb9\xb7\x23\xa6\x5a\xa2\x7a\x6a\x3c\x96\x8c\x01\x78\xfc\x1d\x9e\x3e\xc1\x35\x59\x34\xd7\x6a\xa7\xe7\x30\x58\xab\x9a\x86\x73\x49\x24\xac\xfc\x37\x2d\xe9\xf3\xc6\xbb\x89\xb0\x96\x52\x88\x23\xcd\x15\x02\xce\x73\xcf\x82\xac\x9b\x9b\x27\x23\x35\x0a\xa5\x91\x15\x2d\xe6\xd6\x8c\xef\x5d\x63\x1f\xeb\xdd\x16\xea\x88\x49\x76\xfc\x50\x6f\x25\x80\x56\xe5\xf7\xb1\xba\x83\x3a\xfd\x8a\x78\x8f\xf2\x31\xc9\xa3\x76\x85\x07\xfa\x44\x66\x5d\x21\xc6\xa8\xe8\xd9\x72\x98\xf0\x7a\x42\x44\x82\xb7\x92\x4e\xf1\x85\x08\x91\xe7\xc5\xa4\x04\x46\x50\x4d\xf9\xd9\x51\x83\x86\xb8\x8b\xea\xfd\x4a\xe2\x9e\x17\x21\x96\x36\x55\xc4\x8b\x10\xa1\x8a\x2b\xe2\xdf\xca\x77\x78\x54\xa0\xbf\x47\xc1\x73\x87\x6e\x68\xf6\xe4\x3a\x0e\x61\xbd\x11\x10\x62\x00\xca\xbc\x67\x06\x07\xdc\x2c\xc4\x8f\x6f\x5b\x2f\xd6\x50\x3d\xb7\xd0\xab\x2e\xfa\x83\x1c\x3e\x7e\xfb\xa0\x65\x22\x5e\x50\xe4\x89\x16\x60\xd0\x09\x1e\x5b\x9a\xb3\xf4\x85\x2d\x08\xa9\x38\xb7\x75\x4a\x0b\x29\xee\x2d\xf3\x5d\x24\xb5\x45\x4c\x7b\xd2\x6b\xa6\x75\x38\xad\xdb\x4c\xbb\xe5\x34\xff\x76\xa7\x2a\xe6\xaf\xc4\x07\x43\x96\xa4\xce\x27\xa6\xd8\x83\xaa\x8d\x07\x46\x21\x13\x00\xbb\xa5\xbc\xa3\xa1\xf2\x14\x66\x92\x16\xc6\x5e\xd8\x04\x1c\x9d\x3f\xc8\xdc\x17\xed\xd2\x5e\x90\xc0\xbb\x23\x56\x31\xe1\x05\x3b\x46\x67\xa2\xb5\xc3\x8b\x75\x24\x67\x58\x8e\x60\xee\xf0\x82\x77\x85\xf2\x63\xf0\xd7\x60\x61\x73\x12\x88\x3c\x76\x98\x29\x6c\xcd\x60\xba\x42\x04\xa7\x0a\xf8\x28\x51\x80\x3b\x4e\x60\x11\xb2\x55\xee\x5d\x85\x77\x34\x41\xfa\xf4\xbf\x0d\x86\xe4\x0b\xc7\x31\x72\xa0\x07\xee\x6a\xde\xd3\xff\x9e\xf5\x96\x4a\xb5\x90\x9f\xd8\x8f\xfd\x40\xef\x0a\x97\xd0\xd8\x5a\xb7\x52\x21\x9c\x2e\xd6\xdf\x11\xad\x9d\x04\x30\x73\x2b\x01\xe3\x99\x2a\x7b\xca\xea\x2b\x37\x95\xb5\x68\x28\xe4\x85\x86\xa5\x3b\xb5\x51\xcc\x98\x88\x26\x7c\x12\xcb\x78\xf2\xa0\xda\x11\x9d\xdf\xbe\xf0\x36\x7d\xc7\xfa\xf8\x1f\xff\x68\x03\xea\x8d\xa3\xf7\x18\xff\x19\xd6\x1c\xdf\x0d\x16\xca\xd4\x4e\x00\x9d\xa0\x9c\xe3\x5f\x62\xca\xfb\x16\x91\xa7\xba\x87\x34\xb1\x03\xa0\x38\xe7\x01\x43\xed\x59\x1e\x69\x4c\x77\x46\x1a\xfa\x5a\xc2\xb4\x19\x19\x7a\xb7\xe6\x45\x60\xe6\xb6\xbb\x21\x20\xe1\x6d\x59\x24\x5e\xca\x23\xec\xbb\x5c\xd6\xa0\x54\x14\x72\x83\x76\xa3\x2d\xfe\x5c\x29\x41\x32\x72\x0a\x6d\x03\xe4\xa1\x3a\xb6\x5e\x20\xaa\xf6\x08\x0f\xaf\x87\x36\x29\xba\x05\xd0\x91\xbd\x53\xb4\x34\x7e\x0b\x99\x3d\x9d\x99\x14\x49\xce\x3c\x97\x87\x04\xd0\xc4\x3b\xe7\x3e\x21\x3a\xd1\xa0\x27\x96\x0b\xc7\xaa\xe0\xf0\x15\x04\xa8\xb7\xd4\xd4\x96\x98\x57\x21\x26\x9b\xf6\xa2\xe7\xc5\x46\x9d\x10\xe2\x4d\x31\x7f\xbe\x92\x6b\x46\x7e\x37\x1a\x14\xb8\x8c\x8e\x2e\x95\xe6\x3e\x0c\x7e\xba\x94\xaa\xd1\x3c\x27\xce\x29\xd1\x11\x0e\x29\x04\x7a\x89\x88\x41\x87\x86\x3f\x7f\x6a\x50\x3e\xe4\xd6\x9a\xb0\x42\x03\x90\x0d\xb3\xe7\x9b\xd6\x09\xaf\xdd\x29\xcf\x0e\x28\x06\x19\xee\xa8\x82\xa8\x5d\xb1\x2b\x35\x97\x8c\xf6\x5e\x8c\x90\x14\xca\x9f\x80\x84\x88\xbb\x8a\x94\x53\x22\x5e\x11\xa7\xca\xe4\x68\x02\xac\xc7\x28\x94\x7f\xe9\xf0\x1c\x9e\xc9\x9a\x29\x26\x8a\xb7\xec\x4c\x8b\x8f\x8b\xc6\xbb\x14\x3b\xd6\x75\x3f\x80\x90\xdb\x16\xf5\x44\x39\x0c\x31\x17\xb2\x62\x8a\xc2\x7b\xc3\x7c\x0e\x72\xc0\xcf\x05\xed\x5c\x47\x8b\x0f\xc2\x9c\x3f\xe5\xeb\x12\xaa\xb3\x3c\xa2\x55\x07\x4c\x77\x68\xb3\x78\xc6\x0a\xe5\x92\x41\x61\x28\x6a\x40\x9f\x4a\xc2\x65\x36\x55\x41\x58\x77\xcd\x0b\x13\xf2\xce\x46\x8e\xb5\xb4\x09\x6e\x65\x12\xaa\xa1\x9b\x22\x47\x7b\xc5\xfb\xdd\x4b\x74\x81\xa9\xd5\xa7\xf2\xa4\xb4\xe9\x0d\x26\xfc\xee\x11\x30\xee\xad\x5e\x22\xf4\xe1\x95\xc9\x6a\x7c\xd5\x98\x10\xfc\x56\x3e\x43\x89\xf0\xa6\xf1\xe6\x86\xab\x73\xd0\x9d\xe8\x50\xee\x89\xc8\x1e\xcf\x83\x83\x31\xd7\x62\x73\xc6\xbb\x6c\x2e\x1b\x82\x53\xd3\xdb\x82\xd3\x5c\x61\x3a\x19\xd2\x10\xc4\x82\x06\xa6\xbc\x0f\xbb\xa2\x0f\xfb\xe9\x93\x30\xbb\x43\x69\x1e\xf4\x2b\x57\xb4\x01\xd0\xdd\x18\x9a\x1a\xcd\x10\x7a\x96\x28\x06\x12\x2c\x9a\x77\xb4\x54\x80\xc2\xa5\xdd\xe4\xf5\xd7\x6a\xde\xd2\x80\x22\x6e\xed\x51\xec\x15\xdb\xc1\x7e\xc2\x34\xcb\x16\xd3\xd5\x2b\xd3\x3d\x73\x3b\x1b\x24\xc7\xb0\xf6\xa9\x41\x03\x2c\xf4\x06\x31\xe9\x8c\xe2\x54\xa6\x8e\xd6\xcf\xc6\x80\x6f\x54\xe6\x03\x13\xdf\xbf\xfb\xb1\x50\x48\x80\xb7\x2a\x14\xc2\xd4\x41\xe4\xce\x4c\x29\x7c\xd7\xb4\x02\xa0\xa0\xe6\xb6\x9e\x4c\xc2\xc1\x60\xbc\x93\x8d\x26\x15\x08\x3e\x9d\x81\xf9\xf0\x19\x01\x21\xe7\x65\x59\x71\x55\x4f\xa8\x87\x13\x66\xe3\xbc\x99\x9e\x3f\x61\xc7\x8a\x15\x1e\x09\xe5\x0e\x89\x94\xee\x59\x66\xeb\xb6\x5f\x76\x80\x0b\x2b\x85\xc7\x16\xed\x27\x5a\x6c\x61\x39\xb4\x99\x82\x87\x4f\x03\x81\x0d\x2a\x3a\x65\x3d\x6e\xdd\xd2\x92\x46\x2e\x7f\x80\x9d\xea\x57\xb0\x93\x64\xca\x27\x33\x3b\xa7\x45\xa2\xdd\x4b\x9b\x4a\x56\x5f\xb0\x3e\x4f\xcb\x46\x9b\xcd\x2b\xd8\xa8\x95\xb4\x0c\xf7\x20\xf4\x07\xfb\x48\xc0\x0b\x4e\x3d\x7b\x69\xe0\xb5\x4b\x59\x72\xcf\x1c\x62\xf5\x9e\x60\x73\x90\x78\x21\xae\x5f\xa8\xd0\xf2\xa8\xfa\x44\xb1\x9e\xaa\x55\x59\xc7\xc9\xa0\x6a\x74\xb7\xa8\x72\x40\xea\x76\xb0\x69\xb1\x4e\x4c\x7a\xe4\xae\xd5\xe8\xa3\xa7\xd5\x9a\x54\xbd\x23\xf9\xd6\x9a\x40\xef\xc4\x48\xfd\xb5\x8b\x61\x93\xca\xe7\x70\xb7\xde\x5c\x66\x15\x6c\x31\x08\x2c\x4f\x74\x5f\x30\x59\x4a\x10\xad\xba\xde\x8a\x99\x07\xe9\x1e\xce\x19\x78\x12\xea\x1d\x9e\x83\xef\x9c\x31\xcb\xfc\x64\x34\xfa\xa6\x0d\x10\xcc\x70\xe6\x72\x0e\x5e\xb7\xb1\x99\x32\xb4\x8e\xd1\x03\xf7\x3d\x73\x8d\x35\x2b\x24\x5d\xa8\xc5\xdb\x76\xf4\xc4\xfb\x86\x69\xc8\x26\x89\xe0\x82\x78\x1c\x35\x26\x06\xde\x01\xea\x81\x29\x89\x16\x88\x08\x27\x96\x5b\x6d\x79\xb4\x8d\xac\x11\x6a\x25\x3f\x5a\xd6\x08\xa3\x50\x7a\x7b\x4f\xb0\x4f\xa1\x25\x39\x2e\xf1\x1a\x0f\x22\x93\x8d\x77\xd5\xfb\x99\x24\xb6\xe3\x40\x8b\x4f\x59\xe6\xf4\x1b\x1b\x31\xe7\x3f\x34\x2e\xd2\xd7\x67\xea\x03\x2b\x75\x51\x09\xb6\x21\xe9\xab\xc0\x29\x67\x0a\x9c\xbb\x47\x5c\xe6\x61\xe6\x58\x24\xa6\x55\xa9\xae\x58\x4d\x83\xda\x61\x6f\xa4\x15\x09\xb5\xb3\x13\x3c\xbd\xdb\x90\x51\x36\xb1\x70\x7b\x66\x03\xba\x38\x73\x87\x39\xbf\x41\x76\x15\xc0\x9a\x2b\x03\x6a\x02\x42\x9d\x2c\xa0\x6c\xcd\x58\xbd\x8a\x2f\xae\xe4\x57\xd0\x46\x52\x6a\xd4\x78\x0f\xc6\xd6\xbb\xd3\xbb\xd6\xb7\x3c\xd1\x77\x32\x2d\x3f\xb1\x7b\xec\x21\x18\xfa\xa3\x45\xc4\xe3\xe8\x52\x36\x4b\x38\xa1\xc5\x32\x37\xe1\xc3\x16\xeb\x34\x04\xd6\x8f\xd9\xba\x42\x94\x76\x83\x4f\x67\x3f\x67\x0b\x84\xd8\xd9\x0d\xb6\xff\xf6\x73\xb6\x1e\x8c\x18\x10\x17\x8e\xba\x72\x5a\x35\xe2\xec\x01\x5f\x8a\x95\xde\xfb\x73\x05\x33\x32\x9e\x1e\x6f\xad\x40\x84\x4f\x0d\x15\x90\xc5\xe9\x0d\x71\x08\x4f\xf8\x2f\x2d\x6e\x76\x63\x0b\x7b\xc8\xbb\xfd\x11\xcc\xd3\xd5\x3c\xae\xc7\x6d\x83\x1d\x48\x4d\x30\xc0\xa1\x6c\x1a\xd7\x3a\x1b\xd6\x0b\xb0\x22\xf0\x47\xdc\x25\xb0\xc2\x7b\x26\x07\x8f\x94\x72\xbb\x03\x99\xea\x74\x47\x8d\x25\xc6\x3e\x18\x9d\x49\xd8\x0c\x9d\x0b\xc9\xf9\x1d\x66\x6f\x23\x46\x9f\x94\xdf\xce\x59\x22\x3b\x2e\x97\xb8\x91\xe8\x93\xf3\xc2\x05\xd4\x35\x16\xd0\xe6\x3c\x0c\xff\x47\x8c\x25\xb9\x35\x65\xf5\x88\xeb\xce\x15\xe7\x77\xed\x06\xb1\x50\x8d\x76\x22\x01\x6f\x1d\xb6\x02\x51\xfd\x7d\x92\x20\x6c\x2d\x99\xe4\x1d\xc8\x8e\xa2\x03\xf1\xd2\x21\x32\x79\xa6\xfd\x07\xd3\x92\xe8\x5a\x2e\xed\x57\x07\x58\xa0\x45\x8f\xc4\xba\x69\x83\xba\x2e\xf6\x48\x0f\xb3\xf9\xd0\x26\x3d\x6e\x68\xf9\xc2\x7f\x06\xb7\xd2\x7b\xce\x69\xc0\x91\x14\x9c\x90\x2d\xfb\x33\x09\x6c\x31\xf6\x89\xdb\xce\x15\xec\x37\xc2\xbd\xc0\xbb\x36\xa0\x2f\xde\x3f\xb2\x85\xc9\x41\xb3\x7d\x36\x07\x0e\xae\x20\xf4\x0e\xe5\x2d\x25\x0e\x81\x3d\xec\x33\xa0\x36\xcf\x63\xae\x95\x49\xa3\xda\x19\x20\xaf\xae\x94\xb1\xb1\xb9\xc2\xc6\x02\x39\xa5\xee\x03\x25\xb5\xe6\xb0\xe4\xf8\x3d\xa4\x3c\x6b\x02\xf1\xb1\x51\xbb\x5a\x47\x0b\x84\x13\x8c\xa8\xcd\x37\xde\xa9\x63\x2c\xf3\xb3\xd1\x65\xbc\x0a\xee\x2a\xee\xc3\x1a\x40\x35\x58\xb2\xc8\x4f\x35\x8c\x18\x9d\x63\x7d\x0a\x09\xc3\x0b\xc9\x74\x75\xe3\x1c\x6b\xf2\x3d\x51\x7f\xcc\x7c\x17\x6d\x96\x34\xc1\xb1\xdd\x60\x6e\x6c\x4f\xde\xda\x96\x6b\x0c\xad\xd7\xbc\xca\x8b\x36\xcb\xac\x1b\x46\xf5\x76\xff\xaa\x81\x5b\xd8\x60\x5f\x68\x83\x7d\xc9\xf2\x60\x86\xee\x7b\x8b\x7d\x73\xc2\x88\x30\x1b\x1c\x1f\x99\xda\x37\x25\x4c\x84\x98\xb3\x8f\xa5\x00\x3f\xf6\x92\xfd\x92\xe3\xaa\xe4\xdb\x97\x92\xa1\x20\x20\x07\x9b\x7f\xc4\x34\x7c\x57\xf5\x6e\x2c\xec\x16\x84\xba\x73\x6b\x98\x60\x28\x44\xb4\x6c\x5b\xae\xba\x5f\xcb\x5a\x2c\xbf\xc9\x44\x9b\xec\x72\xc5\xdc\x22\x30\xf2\xae\x4b\xf2\xae\x47\x6c\xe3\x1c\x36\xf0\x05\x6c\xa2\x33\xc5\x7f\x99\xa5\x1c\xaa\x2d\xb0\xcc\x85\x0d\x25\x46\x05\xcc\x3e\x87\x6f\x12\x6c\xc2\x3a\x96\x42\x1c\xa3\x39\xc1\xb4\x20\x46\x58\xd7\x27\xd7\xf2\x95\x57\xaa\x7a\xe1\x63\x52\x19\xa8\xa7\x4c\xae\x4b\xb9\xd3\xf8\x3f\xb7\xc5\x57\xba\xba\xe0\x2e\xbb\xda\xf4\x1e\x3e\x1a\x10\x22\x5c\xe6\x35\x33\xcd\x35\x5e\x68\x91\xed\x90\x79\x00\x93\xdc\x68\xee\x58\x3d\xe1\x11\x2c\x77\x89\x90\x3c\xce\x4d\xfd\xeb\x11\x5e\xa3\x6e\x9f\xb8\xf8\x73\xe8\xb0\xd3\xf1\x9c\x59\x8f\x5d\x77\xe3\x8c\x75\x70\xad\x30\xb6\xf4\x0b\x33\x2b\xda\x16\x3b\x69\xeb\xf4\x3e\x98\x6b\x4f\x28\xb6\xc5\xbe\x4b\x03\xf5\x7b\xa4\x9c\x5a\x7d\x92\x2d\x3b\xf6\x65\xb4\x2d\xc7\x18\xde\xd5\x42\x8a\xfa\xc9\xe6\x27\x87\x85\x3a\xe3\x73\xb6\x94\x75\xa9\x97\xb6\x03\x17\x1b\x14\x54\xc7\x7b\x97\x75\x41\xf8\x3e\x1c\x61\xaf\xa9\x01\xcf\xb1\xf9\x0d\xc9\x3c\x3b\xc5\xe6\x25\xf0\x9e\x2a\xa6\x7a\x80\xa1\xae\xb2\x6a\x1f\x85\x73\x21\x95\x9e\xf8\x21\x31\x96\xae\x50\x6c\x00\xf2\xb0\x12\x4f\x54\x69\xd7\xc0\x2f\x06\xd3\x2e\xf4\x13\x57\xb5\xb8\x4e\xcc\x45\x68\x9c\x6a\x0e\xf4\x30\xb6\xad\x48\x70\x82\x01\xb8\x4a\x5a\xcd\x22\x37\xe6\xa8\x3b\x40\xbc\x15\x4f\x56\x17\x56\x19\xbf\xbc\x05\xfa\x70\xb6\x2a\xbe\x6d\xf6\x0a\xb4\xa7\xfb\xd5\xa3\x4d\x32\x6c\x92\x5c\x20\x9a\x1d\xee\xd2\xa0\xb5\x6b\xb4\xf7\x64\x86\x4a\x2c\x9b\x8a\x8c\x7e\x2e\x12\xd0\x72\x3c\xe9\xb4\x1e\xc6\x6d\xb7\x36\x70\xaf\x6b\xd8\x0f\xd9\xd2\xba\x20\x16\xef\x61\xc9\x37\x4c\xf6\x73\xd7\xac\xe5\x98\x48\xa0\x65\x5d\xdb\x00\xd0\x09\xfb\xaf\x59\x4d\x20\xa8\x32\x84\x96\xe2\x88\x0e\xe1\xdb\xee\x55\x85\xbb\xfb\x42\x8c\x8e\xd0\xdb\x9d\x84\xdd\xc0\x73\x80\x99\x25\xdb\x6d\x26\x87\xa0\xc2\x2e\xa3\x01\x65\xac\x3e\x4b\x49\xb8\xf8\xc8\xf9\x96\xe5\x82\x21\x90\x13\x1c\x81\x18\x5d\xc1\x02\x23\x10\x5e\xc7\x72\x1c\xe3\x35\x2b\x3a\xac\x54\x27\xda\x68\x99\x77\x61\x57\xb5\xc6\x34\x3c\xef\xb2\xa3\x19\x05\x46\x88\xe9\x11\x02\x8b\x8a\x3f\x23\xfe\xd3\x67\x6d\xa5\xc7\x36\x36\x47\x78\x4f\xba\x57\x50\x5d\xd4\x56\xc6\x54\xb7\xbd\x91\x0b\xd8\x71\xf4\x73\x0b\xcf\x81\x70\xf5\x73\x1b\xcf\x43\xe1\xe9\x67\x5a\xad\x9e\xe8\xdc\x5b\x91\xe5\x68\x5f\x74\x2c\xc1\xe8\xd5\xeb\x61\x9d\xc1\x1e\xce\x6d\x6b\x28\x9c\xd7\x8d\xaa\xc6\xde\x1a\x6e\xa9\x26\x97\xf3\xb5\xa3\x23\x6a\xc7\xe3\xa7\x0e\x3d\x0d\x45\xb7\x59\x87\xe8\x3d\xc2\x9b\x37\xb2\xba\xe2\xf6\x61\x61\x53\xf7\xfd\x5f\x65\xb8\xfb\x94\x30\xe7\x0c\xcd\xdc\x83\x29\x41\xb7\x03\x40\x9b\x10\xaf\xed\xd5\x45\x4f\x24\x9b\xe4\x04\x2f\xe6\x0e\x73\xb2\x96\x30\x9c\xd9\x99\x24\x8d\x44\x38\x6b\x19\xd5\xbd\x8f\x5e\xa9\xf3\x9c\xd4\x66\x8c\xef\xb3\x9f\xe8\xb0\x59\x71\xcf\xa1\xb6\x5e\xe8\xe7\x91\x44\xae\x6e\x00\xd1\x17\x92\x96\x29\x5e\xd0\xe5\x7b\x58\xb5\xba\xbd\xc6\xe2\x3e\x42\x0b\xf5\x1c\xeb\x8d\xba\xd0\x16\xd6\x8a\xfe\x2a\x61\x15\x52\xcd\x1d\xf6\x85\x7c\x74\x99\x37\xa3\xbe\xd1\x84\x0d\xdb\x17\x0a\x26\xa4\x61\x44\xac\xef\xd5\x60\x92\x2e\x63\x92\x80\x69\x63\x24\xc4\x92\xd5\xbe\x44\x59\x5d\x65\x73\x75\x97\xc8\xf4\x21\xcb\x0e\xeb\x8f\x9f\x6a\x03\xca\x02\x0f\x67\xed\xa5\xf2\x05\x12\x48\x22\xfa\xee\x1a\x13\xd7\x78\xd7\xd1\x3b\xa4\x62\x3b\x2e\xa6\x79\x56\x6d\x1d\x1f\x3e\x5a\x57\x38\xec\x02\xda\x0b\x76\x88\xd1\x36\x47\x3b\xbc\xa9\x45\x97\xe3\x57\x00\x51\x13\xb5\xc2\x4b\x66\x28\x6c\xf3\x62\xf0\x6b\xeb\x8a\x5d\xcd\xb6\xd8\xe8\xe2\xd2\x2c\xbd\x49\x21\x46\xdb\xee\x5e\x6c\x80\x5f\xfb\xa3\x5a\x26\x28\xa2\x6b\x10\xc6\x47\xd7\xf2\x88\x0d\x96\x92\xca\xba\xde\x03\x4f\x6d\x87\x6d\x5a\x1e\xad\x52\xc7\x82\x23\x59\x39\x56\xa1\x78\x2d\x3e\xf4\x9a\x64\xfa\xef\x5b\xb5\x46\xfc\x77\xa3\xff\x9e\xea\xbf\x21\x55\x89\xbe\x27\x92\x54\x9a\xae\x70\x5b\x44\x32\x9e\x77\x5f\x53\xcc\x80\x74\x43\x34\x73\x2d\x85\x58\x29\x9b\x5e\xa5\x0a\xb0\xd3\xea\xaa\x4f\xcd\x13\xd8\x11\x76\xc5\x31\x02\xea\x44\x5e\x77\x78\x3e\x6f\xf0\xb7\x94\x00\xb0\x2a\x30\xc9\x5a\x5d\x04\x82\xb9\xb7\x02\xb5\x94\x7b\x30\xcf\x62\x75\x8d\xf8\x7a\xf0\x62\xfc\x91\x97\x52\x88\x99\xbd\x06\xc0\x9c\xdb\x54\x72\xe5\x00\x8e\xbc\xdd\xc2\x80\xec\x80\x2b\x69\x1f\xe8\x4c\x5e\x99\x96\x69\x8a\x17\x8a\xf5\x1f\x6e\xbf\xd0\xba\xf1\x84\x6d\x01\x41\xd3\x88\xaa\x4a\xbb\x61\x24\x3d\x63\x4b\x06\xac\xa4\xa5\x3c\x67\xff\x2b\x2f\x74\xf5\x6a\x42\xad\x9c\xb6\xa8\x43\x95\x35\x8e\x16\xfc\x43\xa1\x77\xa8\xe8\x0c\xca\xba\x00\x68\x71\xbc\x0b\x3d\x0b\xa0\x24\x52\x25\x00\xae\x82\x96\x45\x22\xe3\x4d\xd2\x8e\x70\x9d\x8b\x5b\xde\xca\x63\xe1\x39\x9a\xf5\x47\xbc\xab\x67\xda\x0e\x11\xb3\x52\xae\x4a\x2d\xa0\x2f\x6f\xa9\xff\x0b\x62\x17\xcd\x9d\x6b\xc8\xc4\x17\x22\xcc\xa8\x52\xf5\xf4\x4a\x7c\x64\x14\x11\x0f\xc4\xef\xd6\x28\xb2\x7a\xc2\xc5\xef\xf6\x88\xf6\xaa\x87\xdf\x9d\x96\x15\x4b\xb3\x21\x3f\x08\x8f\xdb\x03\xa2\xec\x6b\x79\xc4\x7b\xf1\x48\x5a\x8e\xed\x24\xf6\x5b\x77\x4f\x12\xcc\x40\xb6\x6a\x23\x39\x1d\x36\x3c\xa6\xb9\x40\x75\x3e\x54\xe9\x59\x8e\xed\xdd\x17\x1e\xbf\x3c\x96\xd6\x50\x75\x36\xea\xe8\x96\x92\x5b\x5c\x26\x21\xe5\xcc\x51\xad\x96\x35\x53\x42\xac\xec\x1c\xbb\x2e\xb5\xad\x90\x19\xe3\x46\x0a\x71\xce\x52\xf4\xfc\x96\xc1\xe0\x89\x04\x8d\xbc\x29\x4c\x9d\xc8\x15\xcf\x94\xd7\x62\xf3\x06\x66\x8c\xff\xae\xea\x19\x24\xc6\xa3\x5e\x79\x02\x67\x7e\x45\x08\xbe\x50\x29\x9b\x95\xef\xb0\x97\x43\x06\x3a\x17\x6d\xe2\x56\xa9\x3c\x85\x13\xf3\x4d\x39\x30\x73\x28\xcb\x35\x76\x23\x26\xa5\x23\x66\x11\x97\x3a\x60\xe0\x93\xbd\x52\xba\xbb\x97\xda\x08\x57\xca\x42\xbb\x7b\x3c\xe1\x3a\x1c\xe1\x00\x94\x69\x18\x5a\xd0\x78\x24\xde\x7d\xd5\xc1\x9f\x4d\x1b\x4a\x87\xcd\x41\x09\xc3\x1b\x82\x85\xed\x67\x9a\x2d\x82\x7b\x3e\xdb\x80\xe0\x44\x11\x5a\x19\x70\x75\x3c\xcf\x14\xbe\x24\x3f\x83\x70\x1f\x7f\xde\x72\x4c\x0a\xa9\x0d\x7b\x31\x29\x47\xca\x1a\xa9\x2e\xc7\xa4\x5c\xdf\x32\x04\xb1\x58\x21\x23\x4e\xd8\xbd\x67\x53\x24\x7b\xe3\xba\xd0\x23\x47\xb0\x00\x0a\xda\x0c\xce\x15\xa9\x43\x9e\x50\x70\xc9\x0b\xd6\x3a\xc0\xff\x35\x8a\x3a\x73\x19\x3c\x3e\x89\x9a\x45\x83\x6d\x2a\x36\x9f\xdb\x42\xc0\xa0\xd2\x60\xd4\xbd\x77\xea\x72\x3b\x65\x2b\x44\xd0\x61\x9c\xca\x0c\x79\x00\xe4\x72\x07\xf7\x06\x5b\xd3\x1b\x3a\xe4\x9d\xe5\xb1\xed\xb1\x2b\x14\x00\x94\x7d\x6b\xc5\xd4\x3a\x90\xed\x6d\x8b\x2a\x8f\x18\xe0\x87\x42\xd8\xd6\xc6\xa3\x4d\x3c\x51\x17\xd2\xd7\xbe\x0a\x03\xa9\x7d\x70\x3d\x57\x8c\x23\xbd\xce\xa4\x28\x97\x46\x01\xdd\x68\xeb\x34\xec\xd8\x9a\x83\xf4\x2a\x5e\xd7\x03\xa0\x27\x49\x91\xb2\xdb\x6a\x65\x53\xaf\xda\x34\x28\xdb\xed\xd0\x36\x6c\x09\x93\x59\x43\x5c\xd1\x9a\x2b\x68\xa3\x6e\xc0\xe2\xa5\x44\xd1\xc7\xc2\x86\x88\xb6\x1c\xf5\xcc\x91\x48\x50\x55\x30\xfb\xcf\x82\x7f\x8e\xf5\x4f\x77\x62\xad\xa4\x3a\xe4\x80\x16\xee\x31\x02\x1f\x72\x36\x68\xfa\x2a\x01\x21\x0c\x79\xfc\xc6\x88\xdd\xf5\x57\x5e\xa5\xfd\x2c\xbf\x69\x3f\x5d\xfc\x39\xa5\x55\xf7\x4a\x76\x3f\x8d\x2f\xd0\xc3\xe0\xd2\x45\xe7\x41\x50\xc0\x41\x5e\x13\x68\x73\xdc\xc9\x03\xa1\xb5\x9d\x76\x5b\x61\x82\x86\x17\x54\xa5\xda\xc9\x43\x36\xe7\x5e\xda\x4c\x50\x54\x94\x29\x45\x60\x41\x7b\x0d\x47\x22\x54\x5f\x37\x51\x46\x89\xea\x0a\x31\xa5\x3c\xc7\x55\xf4\x91\x0b\xd2\x61\x6b\x14\x0c\x22\xa9\x6d\xbd\xd1\x84\x05\x5e\x97\x09\x63\x22\x94\x87\x39\xf1\x5b\x50\x8f\x2d\x25\x94\xd3\xb1\x32\x29\x1c\x9e\x91\xfd\xaa\x78\x59\x5c\xd1\x46\x30\x92\xe7\xfc\x26\x0b\xc1\xb7\x91\x50\x4e\x53\x35\xa5\x99\xbe\x9b\x52\x4f\xfb\xd4\xd2\xa0\x03\x0c\x3c\x66\x8a\xf5\x3a\x3c\x5b\x13\xda\xd8\x77\x0b\xac\xe8\x87\x3c\x86\xb7\xe5\x11\xa3\x83\xb8\x5b\x73\x04\xd7\xb8\x8e\x5d\x74\x1c\x4c\x24\x0d\xd4\x1d\x5a\x13\x1a\x47\xeb\xaa\x45\x33\xc4\x8d\x3b\x98\xad\x0e\xaa\xe8\x30\xe3\xe6\xf5\x04\x9e\xe9\xb2\xf1\x9c\x26\xa9\x68\xb1\x6d\xf4\x8a\x57\x46\x97\x63\xf7\xa4\x60\x5e\xe9\x0a\xd5\x3f\x6f\x31\xa7\xbd\xbf\x68\x35\xb3\xf9\x7b\xd9\x74\xe8\x0c\xbf\x1c\x58\x5d\xf1\x42\x22\x30\xe6\x40\x4e\x71\xdd\xc2\x9a\xde\xb4\x21\x17\xb5\x2b\xaa\xbb\xc3\x3c\x84\x20\x88\x48\xbb\x02\x16\x36\x1b\x3d\x7a\x3d\xad\x5a\xf9\x00\x2a\x97\x52\x28\x7f\x7d\x8f\x39\x3f\x0f\x6a\x10\xc6\x81\x34\x01\x9b\x79\x5e\xd8\x06\x20\xea\xa0\x53\x44\x7e\x79\x42\x78\x73\x59\xeb\x3b\x6c\xd1\x1b\x33\x23\xd9\xca\xf9\x2d\xdb\xc6\x34\x8a\x71\xa0\x51\xa1\x34\xed\x50\xc0\x0b\x62\x25\xf4\xa4\xe3\x58\xfb\x1f\x3a\x24\xc1\x15\x6a\x9c\xc0\xb2\x14\x81\x5a\xcf\x20\x61\xc0\x1b\xc3\x0f\x84\x6b\x0f\xb4\x53\x85\x20\xa5\xb6\x8b\x23\x3a\xc1\xfd\x54\x55\x38\x99\xea\x9e\xb5\x1b\x71\x20\x89\xa3\x11\xe3\x4c\x0a\xbb\xb3\x74\xac\x50\x38\xb7\x0d\xbf\x54\x6b\x40\xfb\x35\x58\x39\xbf\x2b\x33\x6e\x96\x19\x53\x19\x4f\x74\xc7\x1b\x6c\xef\x29\x46\x81\xa6\x57\xad\x99\x04\x60\xa9\xf6\x99\x63\x02\xd4\xa0\x62\x75\x61\x14\x1e\x33\x18\x7b\x84\xe2\x49\x5b\xe8\xf6\x48\x07\x29\x74\x2b\xbf\xed\x52\x22\xb0\x57\xf4\xc0\x2a\x5c\xf0\x98\x76\x87\x56\xef\x84\xc4\x8b\x77\x67\x39\xea\xa4\xdd\xb2\x3c\x35\xc5\x94\xd0\x34\x0c\x89\x88\xfb\xa4\xed\xd0\x92\x45\x95\x2b\x0b\x7f\xfb\x62\xa6\xda\x16\xc9\xd7\xa1\xb0\x42\x6b\x68\x5f\x48\x17\x26\x1c\xda\x4a\xec\xf7\xf2\x8c\x42\xe9\x3a\x89\x82\x4a\x10\x1d\xd9\x46\xcc\x96\xcc\xa5\x58\xda\x26\xd4\x07\xe5\x17\xda\x25\x73\xb1\x6f\x59\xe8\x0a\x51\xc2\xd8\xe2\x1f\xbb\xcc\xd1\x4f\xdc\xaf\x19\xb6\x1c\xbf\xeb\xea\xb8\x16\x36\x26\x71\xed\xf6\x33\xb1\x9a\x47\x88\x64\x7b\x48\x00\x5e\xad\x5a\x6c\x69\xee\x0b\xe7\x79\xd6\xae\x18\xeb\x4a\x6f\x44\x08\x77\x5a\x9b\x93\xdb\x9a\xb1\xaa\xad\x62\x88\x18\x9c\x76\xf5\x32\x04\x98\x3d\x5f\x28\xff\x8a\xd5\x76\xf6\xb3\x87\x55\x98\x92\x70\x58\x62\xd1\x6c\x8e\x08\xbc\x70\xf7\xd7\x84\x07\x6c\x07\x13\xe4\x20\x51\x0d\x1b\x5c\xab\xa7\x3d\xc6\x78\x38\xd5\x9d\xcd\x6d\xac\x66\x17\x71\xcd\xa2\x50\x31\xd8\x6c\xa9\xc5\x11\xed\x83\xa0\x75\x6a\xf7\xbe\xcf\xbd\x7d\xed\x40\xc4\xcf\x64\x89\xde\xf9\x2c\x1d\x9d\x9c\xad\x63\x90\x5f\x34\x14\x75\xc5\xaa\xeb\xb5\xe2\x59\xbb\x67\x97\x0d\xf8\x86\x7d\xcf\xd1\xe9\x67\x8a\xbd\x58\x84\xbc\x07\x29\xfa\xd5\x27\x5a\xfe\x54\xc0\xb0\xbf\x5e\x3a\xc7\xdb\xb1\xd9\x4c\x89\xb8\xcd\x5b\x8e\x36\x27\x78\x29\xbd\x1e\x22\x08\x4a\x7b\x18\x7b\x8d\xff\x51\xda\x05\x74\xf2\x1c\xe6\x73\x08\xb9\x9d\xb0\xd1\x79\x6a\x22\x0e\xfc\x3a\x3c\xcd\xa3\x2d\x3e\x14\xc2\xcb\x3c\x7e\x3b\xf8\x93\x02\xbd\xbd\x02\xf4\x96\x0b\xbc\x36\x62\x1a\x4c\x70\x1b\x0a\x8c\xb8\x80\xf7\x47\x05\x08\x1e\xb7\x38\xb4\x0e\xd1\x97\xad\xa1\xe5\x12\x33\xc8\x64\xf0\x7d\xc5\xdc\x33\x17\x6e\xde\x0f\x79\xcd\x2b\xd6\x37\xa1\x48\x80\x1b\xaa\x55\x18\xcf\xc7\x4a\xc2\x1e\xac\x63\x8c\x3f\x4c\xf8\x70\x5f\xd8\x6b\x02\x33\x7e\x15\x0e\xcb\xdc\x67\xac\x63\x2f\x1c\xa1\x0a\xf9\x89\xdc\x6b\x79\xce\x2a\x9a\xef\x65\x3a\xa0\x73\x67\x6b\x1d\x2d\x14\xca\x67\x56\x1a\xed\x9c\xbd\x8a\x02\x44\x7b\xfb\xa4\xd0\xa9\x13\xbc\x3a\x56\xcb\x0e\xce\xaf\xb8\x38\xcc\xb2\x53\x25\x6a\x7b\x53\x45\x5b\x27\x77\xc5\x4c\x6a\x23\xde\xc4\xd6\x69\x34\x53\xb1\xcc\xed\x2f\x01\x50\x3e\xa2\x9c\xb6\xa8\x01\x2e\x2a\xb5\x90\x33\xbb\x1e\xdc\x78\x6e\x93\x9c\xdd\x4b\x6c\x8d\x61\x3e\x72\x17\x12\x5d\x6e\xc7\xf2\x93\x9e\xbb\x3a\xd3\x6d\xcb\x98\x9f\xfc\xbd\x90\x2b\x1d\xd6\x13\xa2\xc5\x23\xb0\x95\xde\x7b\x9b\x57\xad\x2f\x94\xb7\xd6\xe1\x3a\xb5\x4d\x8a\xa6\x30\x10\x8e\x0f\x5e\x40\xfb\xad\x47\xcb\x36\x06\x4a\x98\x63\x17\xf4\x3e\xb0\x20\xcf\x8c\xa8\x9d\x06\xe0\x67\x59\xba\x96\x7c\xb6\x25\xa3\xba\x5b\x6d\xab\x80\x42\x34\xbc\x68\x35\xe2\x1e\x38\xa4\x60\x00\x23\xb3\x38\x97\x6c\xa4\x5f\x2b\x8b\x00\x82\xd3\xb2\x7c\x6b\x28\x06\x43\xb4\x3a\xee\xbc\xe9\x83\x0c\x17\x50\x14\xa6\x68\xef\x5d\x82\x3d\x7d\xb2\xeb\xee\xc6\xfb\xef\xe9\x97\x7a\x42\xbf\x6c\x1f\xfd\x72\xee\x32\x03\xc4\x3d\xc4\xb7\x35\x5a\xc7\x44\xec\x24\x54\xcf\x8d\x82\xd6\x7c\xa1\x60\xaf\xf2\x5b\x16\x81\x0e\x0f\x24\x3e\xa9\x7c\x6f\x9e\x50\x77\xec\x56\xe9\xb0\xd6\x85\xc3\x2f\xc4\x84\x5f\x6b\xd3\xbe\xd8\xd1\x10\x6d\x3e\xaa\xc0\xae\x3a\xf1\x21\xd9\x60\xc8\x28\xef\x88\x0d\x14\x6e\x4b\x2b\xe2\xae\xd5\x6f\x9f\xaa\x71\xe3\x3c\x0d\x50\xb3\x2f\x9e\x5f\xac\x21\x2f\x9d\x63\x2d\xa5\xf8\x90\x1e\x29\xa6\xa1\x18\xdf\x7f\xdf\x90\xde\xba\x63\xb3\xf2\xe6\xb1\x16\x0a\x17\x8d\xcd\x47\x76\x94\x66\x8a\xc4\xee\xd5\xa7\x64\xae\xf8\x21\x89\x2d\x9a\xb8\x06\x2d\xe5\xba\xe6\x1c\xce\x9e\xd4\x22\xb1\xc6\x90\xea\xaa\xc3\x98\x99\x04\xca\x7b\xe7\x9b\x54\x82\xf2\x49\x15\x68\xa9\xc4\xce\x8e\xad\xe2\x98\xcc\x5a\x2a\xb1\xa9\xb2\x2f\x94\x0f\xcd\xb9\x7f\x57\x4b\xab\x8b\xdf\x4a\x2b\xb8\x4e\xe7\xed\x9a\x2c\x7a\x6f\x78\xf0\x77\xa8\xe8\x53\xf2\xde\xc1\x7c\x29\xe7\xdd\x6f\xbc\xbb\x7b\xa7\x3d\x2b\x4e\x65\x0e\x29\x7b\x85\x20\xa3\x26\x85\x0d\xf7\xaa\x3a\x6b\x56\x25\xae\xe5\x5e\x5d\x6b\xc5\x46\x2f\xcf\xf2\x3b\x45\xe7\x07\xfe\xd8\x4d\xba\x8c\x26\xae\xdb\x15\x7b\x1c\x92\x8a\x1b\xeb\x10\xeb\x13\x55\x73\xab\x9d\x3c\x56\x68\xe5\x96\xd6\x57\xe3\x4e\xea\x1c\xc7\x72\x45\x29\x26\x21\x95\x56\x8f\xe1\x03\x65\x1d\xad\x1c\xb6\x11\xf8\x17\x5f\xf9\x9e\x76\x00\xae\x15\xd8\x66\x40\x42\x09\x71\x28\xee\x8f\x39\xfb\x58\x0a\xd7\x8a\x60\x11\x74\x18\xfb\x7a\xc2\x73\xf6\xd0\xcf\xcf\x74\x41\xf3\x73\x0d\x4c\x7a\x21\x43\xab\x27\xce\x65\xca\xa4\x76\x21\x57\x44\x6b\xe7\xf2\x8c\x89\xed\x42\x9e\x12\xb5\x5d\xca\x5c\xad\xfc\x6f\x54\x03\x9a\xa7\x3e\x35\xa9\xc6\xd9\xaa\x15\xcf\xdd\x83\x65\x4c\x69\xb4\xbe\x3d\x13\xa6\xba\x94\x03\xfd\xc2\x87\xcd\x86\xe6\xe2\x0c\x04\x16\xb0\xa4\x7f\xc1\x41\x1a\xd6\x18\x1f\x6b\x02\xd3\xb1\xdb\xfb\x84\x87\xa0\x13\xd4\x3d\xe2\xf5\xd9\xb2\xb7\x0d\x84\x81\x2d\xd0\xf3\xb6\x6e\x8d\x7f\x86\x3a\xda\x1b\xc0\x47\x9c\x29\x03\x63\x57\xd2\xe8\x6f\x01\x98\x64\x3f\x6d\x55\x85\xec\x0b\xb8\xc6\x9c\x6f\x30\xca\x54\xf3\xb9\x5f\x4d\xa3\xe8\x7e\x46\x7b\xab\x8c\xb8\x86\x99\x9f\xc3\xde\xbe\xfb\x6c\x3c\xe1\xfa\x1c\x37\xd5\x3f\xf2\xbf\xd6\xc5\xbf\x75\xa4\xcd\x46\x5d\x23\x03\x84\xb7\xe7\x97\x98\x16\x8e\x8f\xfb\x90\xcc\x92\x99\x6c\x4e\x14\x26\x89\x83\xea\x56\xf2\x13\x18\x43\x7b\x92\xd8\x43\xb5\x53\x1c\x62\x7c\xa7\xe9\xfc\x7b\x8e\x8e\xd0\x5b\x68\x28\x94\x77\x7c\x07\xb8\x80\xa6\xfa\x8b\x96\xd5\x54\xb1\x02\x12\xf1\x31\xb1\x76\xf8\x9d\xfb\xc2\x1b\xaf\xbb\x0d\x01\x24\xbe\x09\x23\xde\xc8\x73\xc9\x41\x6f\xac\x39\x3d\xb3\xf1\x54\x40\xb8\xf2\x31\x3f\x35\xac\x8d\xe9\xf6\x2b\xb1\xe1\x2e\xb1\xe1\xde\xed\x61\x6b\x64\x85\x56\x57\x4c\x6e\xbf\x6f\xe9\xd6\x51\x17\x9a\xe8\x84\x17\x0b\x5b\xda\xa5\x2d\xed\x32\x35\x3e\xd7\xb3\xb4\x95\x63\xb6\xb4\xf7\x1b\x5a\xa4\xd3\xc8\x30\x32\xa0\xa7\x3a\x37\xb7\x25\x0e\x00\x99\xa7\x83\x5f\x78\xc6\xfe\x4b\xd0\xa2\x27\x3c\xfd\xdc\xc1\xf3\x52\xee\x61\x0d\xd1\xf3\xfe\x66\x8f\xe7\xe0\xfd\xde\x1b\x06\x9c\xc9\x4f\x97\x25\x26\x12\xb1\xbe\xe3\x63\xf9\x73\x49\x5e\x95\x13\xc6\xd5\x1c\xd6\xc7\xd1\xe9\x4e\x8f\x39\xfb\x03\x04\xad\x0a\x8e\x35\x1b\xe9\x83\x15\x7c\xb6\x2c\xad\x84\x8f\x84\xe3\x7e\x68\xab\x41\xbf\x6d\xd6\x91\x52\xdd\x66\x22\x53\x31\x8c\xf5\x33\x29\xdc\xf1\x56\x9f\x08\x21\x1c\xcf\x08\x75\x29\xad\x09\x42\x2c\x8f\x60\xbd\xe0\x1d\xdd\x3b\x6f\xb8\xd1\x47\xbc\x7f\xcc\x09\x17\x87\xa3\x5b\x87\x89\xfd\xf3\xd0\x16\xba\xc7\x99\x8e\xd4\x5e\x9b\x60\x07\xc7\xe7\xd9\x98\xc9\x71\x4d\xc6\xda\xa9\xcf\x76\xbe\x70\xdb\x20\x70\xe0\x04\xf7\x27\xc1\x0a\x31\xa9\x46\x37\x6d\x9c\xa9\x80\x05\x45\xcd\x98\x17\x96\xa8\xe0\xae\x80\xad\xe6\x92\x37\x2f\xce\x50\xda\xe0\x80\x4e\x74\xd5\xd6\x10\xe7\xc7\x42\x3e\x01\xb5\xba\x50\x7b\x4d\xdb\xd9\xa3\x42\xbd\x5f\x17\xea\x91\xf8\xab\x0b\xdd\x96\xb4\x35\x7c\x2a\x34\xfa\x75\xa1\x6e\x75\xf2\x08\x85\x1e\x72\x6a\x69\x68\x82\x1b\x5e\x7f\xdd\x2f\xc6\xfc\x3b\x1b\x33\xf1\xa1\x03\xeb\xd9\xf6\xf2\xf3\xe8\xb9\xc0\x89\x8d\x79\x3e\x6e\x1e\x3f\xfc\xb9\x3b\x9c\xbf\xb4\xe1\xf4\x3b\x85\xa6\xd1\x49\xbe\xe6\x6f\x8c\x19\xf9\xed\x92\xfa\xef\xfa\xe7\xc8\x3f\x4a\xbd\x6a\x69\x04\xe2\x82\x39\x54\x11\x09\x36\x9c\x83\x91\xa8\xa6\xb4\x45\x09\x6e\x24\xaa\xe9\xea\x50\x8d\x81\x7f\xea\xfe\x19\x7e\x72\xb7\x2a\x83\x09\xa9\x95\xa3\x7f\xc0\x8d\xca\x39\xc7\xa9\x85\xc9\x11\x22\x57\x61\xca\x72\x0e\x5b\xd4\x06\x27\xd9\x88\xa2\x72\xdc\xc3\x16\x77\x72\x28\x44\x84\x17\xad\x05\x90\x4f\xf5\xa2\x67\x5e\xdc\xe2\xb0\x69\xcf\xff\x68\xa3\xb1\x52\x37\x76\xfc\x3f\xd8\x58\xe0\x1f\xb7\x59\x4e\xe0\xfd\x27\x4e\x07\x78\x77\xda\x1c\xe6\x02\xf4\x40\xfd\x81\x39\xca\xd3\x96\x30\x6c\x0f\x3e\x97\x3f\xe4\xbd\x5b\xea\x88\x71\xcf\x72\x7a\x79\x1b\xae\x8f\x6b\x79\xa1\xe3\x98\xce\xa0\xff\x98\x03\xb0\x3d\xa3\x7a\x0b\xa3\x15\x3b\x2d\xcb\x79\x98\xb5\x97\xf2\xb4\x4d\xab\xf0\x7c\xd6\x36\xd2\x15\x61\x00\xcf\xd0\x3e\xb0\xa5\xc7\xb5\x83\xe0\x86\x95\x54\x4f\x58\x99\x14\xaa\x7b\x5c\x1b\x07\xed\x47\x44\x1f\x12\x89\x2b\x3b\xaa\xd9\x76\xe7\x95\xd2\xed\x86\xef\xbd\x03\xdf\x3b\x52\x6e\x3b\x08\x84\xef\x07\xcc\x27\x1a\x40\x2d\x91\x2d\x76\x76\x8e\x89\xa1\xb9\x56\xdf\xc9\x6c\xdf\x0a\x1a\x7a\x81\x10\xd6\x08\x47\x50\xe9\xf9\x43\x8a\x0f\xf5\xc6\xe7\x93\x86\x6b\xf9\x5d\x8c\x05\x57\x01\x23\x53\xe7\xdf\x9b\xb9\x18\xf7\xa1\x40\xdb\xa3\x7d\x71\xc2\x66\x97\x36\xa2\xb2\xdc\x84\x41\x5f\x7b\x49\x98\xcf\xbb\x90\xab\xf6\xb7\xa8\xa8\x1a\xf2\xb9\xb5\xf9\xca\x59\xab\x73\x55\x65\xdd\x34\xf7\x04\xe5\xd9\xde\x55\x59\x39\xb8\x89\x8f\xdb\x70\x8c\xd4\x82\x81\x73\x6a\xf8\xba\x27\xd4\x60\x16\x30\xf7\xb8\xe2\xe0\x3f\x3e\x45\xc2\xb1\xa6\x89\xba\x24\x40\xde\x6a\x63\x30\x9e\x8e\xf8\x60\x83\x40\x7d\x46\x04\xe8\xea\xcc\xd8\x1a\x5c\x02\x11\x9e\xd5\xbd\x8f\xef\xfd\xef\xf3\xda\x9b\xf7\x18\x1e\x1c\x56\x13\x7b\xfc\x2b\xac\x1f\x03\xeb\xaf\x9a\x58\xdf\xbb\xe1\xc1\x64\x0d\x2d\x3e\xe7\xb5\x58\xb1\xca\x0f\xe9\xab\x9e\xfd\x9a\xa2\x02\x92\x87\xcf\xe8\xc1\x55\x0b\x2b\x2e\x40\x8e\xda\x46\x05\x3f\x46\x6b\xcb\x37\x1a\xf8\xce\x87\xb1\xc8\x04\x42\xf4\x37\x1e\x8f\x74\x0b\x75\x5a\x34\x63\x9a\xf1\xca\x7e\xdd\x7a\xd0\x5f\x9b\x07\xd1\xf0\xa6\x35\xdd\x62\xc9\xab\x37\xbe\x10\x3d\xbc\x21\x2e\xda\x15\x5d\xc7\xd2\x3e\x6b\x82\x65\xa9\xab\xbb\x8b\x68\xa7\x7b\x16\xad\x2d\x63\x44\xf9\x50\xb4\x19\x91\xfd\x56\x23\xba\xdf\xe4\x7e\x53\xc6\x8c\x18\x3e\x14\xf7\x93\xef\x4b\x70\x97\x3c\xd8\x0d\x07\xa6\xb1\x49\x2d\x14\xdb\x9a\xfb\x38\xf9\xc2\xee\x4f\xb5\x55\x37\xcc\xf3\xaf\xeb\x44\xe7\x44\xb1\x2d\x65\x04\x5b\x4a\xeb\x50\x5a\x91\xe8\x5e\x28\x3e\x2f\x70\xcd\x26\x5d\x95\xa8\xc6\x12\x5c\x4a\x5a\x83\x44\x7d\x59\x84\xe8\xdb\x1a\xbc\x49\x1a\x1d\x8d\x31\xf6\x39\x2e\xa5\x65\x15\x1e\x4e\x1a\x43\x75\x39\xc7\x09\x22\x31\x47\x3c\x8b\xe3\x21\x48\xa0\x7d\x47\xdb\xba\xeb\xcf\x59\xa8\xe9\xb0\xfc\x86\x09\xcd\xc0\xf1\xc2\x65\x42\x4b\xa0\xf7\x7c\x72\xcc\x22\x64\x6c\x1f\xe1\x54\xaa\xcd\x50\x31\x58\x76\x88\xe3\xbc\xe4\xb7\x96\x13\xed\xcc\x0d\x19\xda\x82\xf7\xee\x32\xbb\x9c\xcb\x1d\x55\x47\x43\x83\xfb\x8b\x6d\x07\x2b\x04\xd3\x9f\x29\xb6\x1d\x9c\x2a\xd8\x0e\xec\x8d\xde\x61\x17\xb7\x56\x57\xb4\x96\x08\xb9\xba\x50\x1c\xc9\x35\x04\xa4\xe1\x44\x37\xb7\x2f\xd1\xb7\xbd\x10\x3a\x01\xaf\xcf\xa3\x8e\xd4\x64\x04\xb1\x45\x8d\x57\x8c\x9a\x4e\xf9\xd8\x24\x1f\x7f\x5d\xe3\xcf\x09\x5b\xb6\x7e\xb0\x88\x7f\xd5\x22\x59\x9b\x67\x97\xda\xcb\x75\x2d\x6b\x33\x79\xe3\xee\x21\x3b\xe3\xcf\xf1\x72\xc5\xae\xc4\x8d\xbc\x27\x6a\xf8\x94\x70\xdc\x32\x64\xbc\xf5\x37\xba\x9f\x8d\x63\x5f\xc0\xe8\x5d\x0f\xda\x46\x0b\xdd\x43\x54\x67\xb7\xd4\xf1\xdc\x6f\xfa\xe8\x02\x1f\x7a\xc1\x56\xf7\x41\x2d\x08\xbc\x51\x24\xc7\x1e\xc3\x76\xb3\x5a\x48\xb8\xae\x39\x0b\xe5\x09\x71\x44\x64\x31\xf2\xb0\x4d\x75\xfc\x47\x40\x9d\xb5\x9f\xce\x3b\x75\x4c\x48\xc7\x86\x41\xd2\x17\xa7\xc8\xb1\x94\x67\xf4\xf7\x4e\x07\x9b\x07\xee\x5e\xf2\x7d\x2e\xad\x9e\xe5\x8b\x9e\x73\xdc\x61\x60\x7f\xa2\x6d\x6b\xc7\x1d\xab\xf7\xda\x09\x5c\x9a\x50\x3e\x16\xe0\xcc\xd5\xae\xa7\x2d\x05\xc4\xb5\x56\xe8\x67\xeb\x82\x1d\xbe\x3a\x58\x70\x85\xe0\xe2\xbb\x2a\xb0\xd4\x87\x8d\xab\x2f\x94\xcf\xa7\x1e\x29\xc3\xd0\x64\x98\xb1\xd5\x0f\x81\xaa\x5d\x1f\xfe\x79\xb1\x92\x6b\x57\x53\x6e\x28\x46\xde\x15\x76\xb1\x7f\x21\x71\x1a\x4e\x3d\xc2\x8e\xfd\x6a\xec\xd3\xc2\xbb\x31\xe7\xef\x86\x42\xe1\x30\xa9\x00\x3a\xb9\x94\x7c\x12\x8a\x83\x8c\xb4\x11\x80\x60\xa1\x38\x95\x1c\xfd\xc3\x31\x80\xcc\x65\xee\xd8\x2e\xae\xcf\x25\x4d\x19\x1c\x50\xed\x47\x8d\xda\xef\x75\xed\x63\x5a\xd9\xaa\x76\xd2\x62\x4c\xed\xbe\x10\xc7\x75\xed\xbe\x70\xd9\x01\x76\x3f\xc3\x8d\x3b\xce\xaa\x63\x9c\xae\x8e\x8e\xb8\xaa\x4c\xba\xf5\x9f\x53\x59\xb1\x41\x05\x78\x50\xc8\x2b\x78\xc3\xd9\x87\xcb\xc7\x87\x7c\xd6\xd0\x37\xf4\x6a\x68\x5e\xa5\xd5\xf1\x3c\x5c\x8d\x81\x48\xdb\xf9\x7e\xda\xb9\xdc\x4f\x1c\x51\x1d\xd8\xd3\xe6\x80\x92\xe7\x1d\xf2\x61\x3c\x4b\x59\x13\x02\x7e\xcc\x60\x4a\x65\x8d\x48\xe7\x2e\x25\x40\x46\xc1\x3e\x17\x92\xff\xd5\xd9\x44\x83\x91\x6f\xaa\x53\xc2\xb1\xbe\x60\xa2\x92\x61\xb0\xb6\x88\x43\xf6\x78\x1f\x29\x2b\x64\x8b\x67\x2c\xfd\xec\x76\x82\x3e\x09\x3e\xb1\xfa\x2e\x07\x56\xdf\x1a\x89\xe5\x4f\xee\x86\xe1\xcd\x00\x2c\x36\x93\xc2\x72\xd5\x1d\x5f\x7e\xb5\x91\x3b\x50\x4f\xff\x9a\x24\x45\xdf\x1e\xa5\xda\xa2\xcf\xbc\xf1\x95\x03\xcb\xcd\xe1\x9e\x9e\x7a\xca\x14\x15\xb0\xa3\x52\xbe\x37\x4c\x1a\xa9\xb4\x02\xf5\x7a\x09\x2f\x80\x1d\x0d\xb8\x8a\x35\x0d\x3e\x50\x53\x1e\xd1\x0c\xfd\x26\xc8\x27\xec\x49\xa1\x4d\xef\x2e\xe3\xd2\xa8\xd2\x2c\xce\x18\x12\x3a\xc2\x2a\xa4\x3d\x16\x55\x5f\x10\x3d\xb8\xbd\xd5\xbb\x88\x94\xe3\x0d\xe8\xe5\x79\x7b\x4b\x64\xfb\xa9\x27\x6f\xbc\xd1\xc7\x2c\xc2\x4a\xb7\xc1\xe9\x0a\x97\x1d\xdf\x21\x3c\x64\x8c\x33\x4f\x38\x9e\xa5\xc7\x31\x92\x2b\x8e\x21\xce\xaa\xb0\x9d\xca\x33\x35\x62\x03\xe2\x96\x7a\xd9\xf5\xd9\xa2\x30\x86\x45\x61\xce\x66\x00\x7b\x26\xe7\x36\x84\x8c\x4e\xa0\x82\x43\x1d\x1a\x71\xdb\x9a\x73\x74\xea\x0f\xef\x68\x09\x08\x66\xf7\x85\x05\x01\xca\x7b\x8a\xa3\x3e\x9c\x6b\x6c\xa4\xe1\x4d\xe3\x1a\x22\x1d\xcd\x52\xda\x86\x00\xde\xe4\x63\xf6\xb0\x92\x79\xd7\xea\x8e\x8f\x86\x62\xf5\x60\x4d\xac\x11\x2e\xc6\x81\xc1\xe8\x50\x33\x69\xbe\x12\xa3\x03\xfb\xa4\xf0\xac\x48\x7c\xf0\xa1\xc5\x40\x08\xff\xd0\x65\x3f\xa3\x89\x31\x22\x66\xb1\x6d\x61\xd9\xf9\xfe\x89\xfe\x82\x9d\xe2\xe0\x01\xc1\xaa\xcd\x11\x88\x49\xdb\x0a\xac\xae\x3e\x29\x97\xe9\xe8\x91\xb5\x44\x14\xb2\xcb\x57\x46\x58\x88\xea\x21\xca\x1b\xf1\x9f\x89\x70\x89\x5d\x74\x71\xd8\x13\x50\x31\xbf\xdf\xbb\xf2\xa7\x49\x6a\xe6\x1e\x1a\x47\x47\xae\xb1\xc9\xa8\x32\x1a\xc2\x93\x69\x22\x4e\x4e\xd8\x83\x3a\x45\x66\x17\xa1\x97\xb8\x8b\x6a\x28\x54\x77\xd9\xb5\xaa\x93\xb4\xcf\xd6\x50\x38\x5d\xcc\x49\xeb\x16\xa1\x9d\x1c\xe8\xb2\xed\x1a\x77\xe0\xb1\x14\x8e\xff\xf6\x50\x15\xa1\xa5\x19\x6a\x28\xdc\x9a\x23\x4e\xdf\xe7\x39\xe5\x65\xac\xfc\x98\x43\xb6\x02\xba\xa2\x73\x87\x89\xe9\x6b\xbd\x67\xee\x37\xcf\x22\x7d\x34\x02\x94\x17\x7c\xb4\xf6\xb1\xee\xc1\x12\x8e\x8c\x4c\x8a\x96\xa0\xd1\xd9\x38\x7c\x34\xd0\x87\x8f\xf8\xf0\x0a\x1f\x74\xeb\x99\xeb\xc0\x68\xb1\xfc\x07\x78\x07\x75\x4c\xfb\x71\xa7\x71\x3e\x61\x26\xd9\x34\xb3\x45\x0c\xc7\x68\x83\x3f\x27\x8a\xcf\xb6\x1b\x33\x8d\xb0\x5b\x3a\xa4\x42\xb4\x5a\xb8\x6e\x83\x23\x1f\x7b\x80\x16\x88\x6a\x83\xa5\x6b\x68\x75\xc5\xa8\x83\x2d\xe3\x98\x28\xcf\x75\xbb\x1e\xcf\x99\x24\xbe\x47\x54\x49\x2c\x9b\xc3\x5d\xdd\x96\x55\x48\x6b\x69\x0b\x9f\x55\xb2\x40\x07\x0b\xf5\xac\x8d\x12\x6e\x10\xd6\x80\xf9\xd5\xea\x59\x99\x2d\xdc\x60\xcc\x22\xdf\x1c\x26\xe9\x59\x6f\x94\xaa\x98\xa1\x23\xf5\x8a\x03\xb7\x4f\x5a\xb1\x84\xd1\x23\x6b\x3f\xfb\x2c\x9f\xf8\x2a\xb6\xf4\x81\x9e\x3e\x58\x42\x2e\x00\x3e\x96\x76\xf6\x60\x8d\xc5\xba\x7d\xa3\x88\xe2\x8a\xf6\xf3\x0e\x54\x09\xca\x2b\xdb\xf6\xbb\x63\xb9\xe2\xbd\xfd\xdc\xd3\x66\x45\xd7\x3a\xb7\xd5\xda\x5b\x23\xa2\x6c\x22\x1a\x87\xf7\xa8\xba\x0e\xd4\x71\x71\x2c\x73\xd8\xce\x83\x02\x7f\x80\x37\x7a\x6b\x12\x6c\x0f\xef\x72\x4b\x69\xdd\xf6\x1b\xfd\xb9\xc5\xa9\xc0\x2e\xc1\xa1\x5b\x5c\xb6\xd2\x1d\x30\xa7\x23\x7a\xee\xf4\xd6\x7c\x0c\xfa\x0d\xb8\xca\xcb\xf9\xa9\xb8\xab\xaf\x27\xeb\x96\x03\x98\xdb\x36\xf8\x13\xd8\xf5\x65\x03\xbe\x4d\x4a\xc9\x05\x8c\x25\x82\x4f\xd3\x76\xf5\x4f\xc7\x28\x02\x44\x37\x3d\x5c\x3d\x78\xda\x6a\x83\x74\x67\xea\x66\x40\xec\x04\xee\x7d\x71\x2c\x0f\x79\x18\x7c\x8f\x5f\xcb\xf2\xc4\xdc\x9d\x10\x17\x9d\xb9\x8f\x6c\xf0\x66\x53\xad\x83\x93\x6d\xfa\xa4\x18\xe3\x4c\xd2\xfe\xcc\x15\x7f\x91\xb9\x5f\xc5\x17\x2a\xe7\xc9\xff\xd0\xb7\x05\x60\x14\xc7\xb2\xda\x30\xea\x06\x84\x27\x36\x7c\x80\xd4\x0f\x88\x72\xae\x74\x19\x18\x18\x3f\x25\x86\x74\xcc\x71\x4d\x27\x36\x23\xa0\x07\x86\xb0\x60\x09\x6b\xce\xbe\x91\x1c\xeb\x7d\x8e\x1c\x7c\x8d\x01\x46\xaf\x72\x0e\xa6\xea\x61\x70\x3e\xee\x77\x9b\x6a\x55\x12\x7e\x0c\x7f\x44\x9d\xff\xe4\x6a\x62\xb4\x9a\x73\x4f\xf9\xda\x41\x84\x01\xaa\x39\x37\xcd\x37\x18\xf9\x9f\x83\x1f\x46\xf7\x36\xd4\xc3\x33\x53\xae\x4a\x73\xe5\x0d\x82\xf1\xfd\x09\x4d\xdc\x96\x0b\x5d\x4a\x3e\x7c\x69\x6b\x9c\x8b\x4b\xaf\xb0\x5b\xd5\x8e\x9b\xea\xe1\xd2\xc9\x0f\x6d\xad\x0b\x18\x96\x0f\x11\xe4\x49\x4c\x15\x5e\xcd\x19\x6e\xa1\x6b\xb8\x39\xeb\x57\x63\xe1\x24\xfa\xda\x25\x58\x6c\x79\xcc\x63\x7d\x4f\x94\xfe\xe9\xf0\x31\xbc\x19\xb7\xff\x8c\x50\xd4\x0f\xdc\xa8\xc8\x76\x99\x82\x44\x90\xca\xf9\x8a\x3c\x9f\xf7\x3a\x86\x77\x81\xa8\xff\xee\x25\xfd\x49\x3d\xa8\xf3\x2b\x2f\x53\x8f\x1c\xcb\x8a\x6b\xf5\x90\x7d\xdc\xd5\x23\xe3\x48\x6f\x36\x4f\x80\xbe\x6c\x56\x6b\x34\x0e\x3e\xe3\xfa\xce\xf9\xc8\xd0\xd5\x03\xf5\x6d\x87\x4b\x17\x9e\x37\x43\xca\xdf\x02\xc5\x8e\x03\x9d\x1f\x47\x09\xf8\x68\x1a\xd6\x28\x41\xcb\xfc\xfb\x72\x08\x8b\x57\xd5\x96\xf0\x60\xb7\x6a\xb1\xca\x74\x03\xf4\x3c\x26\x5e\xe9\x94\x92\x3d\xa2\x5f\xab\xed\x89\x9b\xf6\x4e\x5e\xd1\xe3\x75\xfb\x1d\x24\xe1\xe7\x03\xd3\xc2\x55\xfb\xc6\xc6\x7e\xe6\x55\xbe\x6c\xc7\xce\xbb\xfc\xa9\xc9\xd4\xdd\x6f\x92\x04\xc8\x9b\xb6\x86\x52\x9d\xa5\xbc\xd1\x17\x02\xa0\x36\x9c\xf4\x18\xcd\x1e\x1b\x95\xf4\x85\x97\xb6\xf8\x10\x72\xf9\x88\x99\xcc\xf8\xee\xca\x8f\x47\x5a\xea\x3e\xad\x4e\x69\x6f\xb1\xa3\x46\xef\xb8\x67\xa1\xcb\xb7\x0e\xf4\xf8\x1a\x39\x9f\x9f\xde\xf0\xea\xd1\x69\xdc\xe3\xd5\xe3\x28\x66\x10\x4f\xe0\xd1\xeb\x11\x47\xac\x0f\xa9\xd2\x13\x97\x19\x03\x67\x3d\x07\x4b\xff\x44\xde\x61\x7d\x06\xb0\x47\x7b\x1e\x3c\x50\xb5\xb0\x70\x01\x5f\xf5\x80\x6e\x4d\xb7\x01\xf7\x14\x36\xde\xfb\x1b\x44\xdf\xf5\xae\x71\xbf\xe3\x3d\xfb\x30\x46\x03\x10\xe6\x03\xe2\x20\x41\xfa\xb7\x87\xdc\x6b\x2b\x32\xb7\xec\x8c\x3a\x7c\x2e\xf5\x66\xd8\x1c\x3e\x35\x70\x61\x2f\x87\x18\x37\xa3\xa9\x43\xf4\x23\x95\x3a\x4a\x96\x16\x72\x80\xb1\x81\x1a\x70\xae\xa6\xfb\xf8\x53\xc2\x55\x67\x41\x3c\xe6\xb2\x73\x6d\x6b\x5f\x0b\xa5\xa5\xc4\x5c\xae\x3b\xc1\xae\x9a\xf6\xbe\x9e\x9a\x0b\xa5\xdb\xdd\x9f\xef\x25\xeb\xcc\x20\x1a\x11\x73\x38\x44\x6f\xa5\x60\x41\x7a\xc3\x36\xba\x70\x78\x4e\xf9\xe4\x7e\x2f\xc3\x3b\x33\xab\xfa\xb2\x8d\x37\x28\x0d\x89\xfc\x6c\xce\x2a\x00\x2d\xdf\xd3\xb9\xee\x06\x96\x2b\xde\xba\xf7\xc4\xa4\x73\x3c\x14\xfc\x50\xea\x07\xd2\xb8\xb0\x09\x89\x93\xc8\x99\xbe\xae\x2f\xc0\x9d\xae\xc4\x1d\x10\xa5\xb6\x74\x5a\x4b\x18\xce\x3e\xef\x74\xa8\x18\xdf\x72\xaa\xcc\xec\x3a\xb7\x89\x5e\x09\x25\x54\x67\x25\x2b\x76\xe3\x3d\xcd\x35\xbf\x51\x42\xdd\xc5\xd8\xa2\xe3\x96\x16\x02\x63\x5c\x22\x86\x7b\x6f\x27\xc2\xdb\xaa\x35\xee\x6f\x8d\x28\xeb\xcb\x1b\x13\xa9\xf5\xa1\x84\xf7\xa2\xaa\x8b\x72\x9f\x8f\xb8\x4d\x56\x07\x7d\xb6\x4d\x2a\xfd\xbf\x4f\xfa\x23\x2e\x63\x85\xa5\x53\x4d\x53\xfb\x7b\x66\x1c\xc3\x19\x12\x00\xf0\x16\x0a\xa6\x6b\xd1\xa5\xcc\xed\x89\x09\xdc\xef\x3e\x3d\xd5\x5d\x2e\x74\xf7\x67\x52\xf8\x8f\xa9\xac\x3b\xd2\xff\xd5\x50\x0a\x49\x63\x79\x6e\xac\x64\x2a\x43\x1e\xcc\xa9\x12\xce\xd3\x95\x34\x7c\x78\x42\x88\x8b\x23\x26\xe1\x7e\x74\xd7\x7c\x16\xe2\x9a\xd7\xbf\x9a\x51\xa7\xb3\x52\xa6\xcc\x08\x01\x81\x55\xf7\xb6\x6d\xae\x79\x25\x85\xfb\x4a\xba\x2c\x09\x07\x85\x53\x15\xd5\x72\x2c\x5b\xa6\x70\xf8\xa5\x41\x67\x5d\xef\x8f\xdb\x2a\x57\xb4\x97\xab\x8f\x5c\x55\x83\xbf\xc8\x35\x12\xdd\x52\x86\x7b\x63\x9e\x70\xcf\x46\xe2\x98\xe4\x8a\x12\x6a\xae\xca\x47\xee\x55\x21\x85\xba\x7b\xef\x72\xe0\xb9\x2b\x5a\xc1\x3b\x2d\x81\xfb\x7c\xa3\xf8\xae\xe4\xfc\xbe\x4d\x08\xea\x5a\x7a\x6c\xe4\xc8\xe4\xd9\x53\x8d\x3c\x26\x4d\xe0\x71\xc1\xc2\xe6\x04\xe2\x63\xf4\xc1\x71\x22\x9f\xbe\xd5\xa7\xee\x9d\xfe\x19\x0e\x39\xd6\x27\x36\xaf\x38\xce\xff\xda\x66\x09\xaf\x9a\x12\xbe\xa5\x25\xbc\xb9\x78\x42\x2d\x6c\x88\x98\x88\xa3\x6b\xfc\xd8\xf9\x11\xc0\xb8\x7c\x4a\x8e\xc0\x08\x63\x97\x77\x7d\x19\x95\xbf\x22\xbd\x50\xdd\x70\x81\x53\xb4\x72\xc2\x05\x4e\xb9\xc0\x05\xcb\xf5\xf1\x9a\xf3\x67\x0e\x77\x36\xb7\x7f\x29\xed\x47\x5a\x6a\x68\x91\x5f\x0b\x77\xbd\x48\x13\xe1\xe4\xed\x37\x36\x75\xaf\xc7\x70\x20\x59\x23\xd0\x4a\x45\x04\xb3\x31\x7e\x13\x60\x76\x1e\x74\xb4\x3c\x4e\x85\x40\xa8\xcc\xc7\x9a\xbb\xbd\xc1\x19\x33\x56\x35\x97\xb3\xe7\x5c\xf2\xfa\x89\x56\x25\x58\x9b\x9c\xd7\x7c\x95\x43\xae\xfe\x91\x00\x1a\x5d\x63\x26\xf4\x1d\x61\xbd\x43\x28\x91\x3d\xc8\xa3\xa5\xb9\xe8\x6b\x0e\x4b\x63\x7f\xc9\xba\xa0\xbe\xe2\x6b\xe9\x60\x44\xed\xd4\xd1\x52\xc2\x15\xaa\x33\xe1\x58\x25\xb6\x2e\x5f\xf5\xac\x40\x9c\xab\x41\x71\x4f\x3d\x3c\x69\x11\xe5\x39\x89\xbe\xb5\x8a\x37\xcc\xb9\x06\x4e\x81\x50\x4f\xda\xb4\xe9\x08\xf5\xb0\xbd\xe7\xd9\x24\x8d\x6f\xd6\xe1\xa1\x8f\x85\xf7\x3c\xef\x70\xba\x12\xea\xfe\xfd\x9e\x57\xc1\x01\x6c\x02\x37\x73\x49\x6f\x7d\xe4\x29\x76\x85\x7b\xef\x72\xe5\x4a\xa8\x81\xcf\x99\x3d\x51\x38\x4b\xbd\x45\xae\x46\xe6\x2a\x6d\x3b\x98\x3d\x52\xdf\x9e\x23\xde\x14\xa9\x8b\x4d\xb1\x91\xfa\x6e\x87\x6b\x79\x36\xae\x37\xc5\xfb\x1e\x1c\x9f\xb7\xea\x6b\xb5\xff\x96\xfc\xc7\xbf\x87\x8f\x13\xe1\xac\xed\x9a\x6a\x70\xd9\xf9\x1b\xe9\xeb\xea\x48\x32\x59\xe4\xe3\xff\x02\xd6\x58\x82\x61\x6f\xe5\xd2\x1c\x1b\x18\x0b\x71\x28\xcf\xf8\xe9\xdc\xc1\x91\xb4\x5d\xeb\x6a\x7f\x3d\x03\xf1\x2e\x87\xd7\x60\xa4\x0b\xfb\x87\x15\x84\xc1\x5c\x00\x09\x3e\xea\x7d\xe1\x0a\x6f\xda\xda\x63\x50\x57\x3d\x1e\xa0\x27\xde\xd5\x4a\x4f\xff\xda\xe5\x4a\xde\x64\x3d\xff\x04\x15\x68\x01\x4e\xec\xb6\x15\x3b\xe2\x4d\xf1\x61\x94\x73\x39\x7f\xae\xe7\xbf\xd8\x9b\xff\x0b\xe7\xbf\xce\x95\x0e\x0d\xbf\xe0\x8c\xab\x16\xc2\xea\x34\xc3\xb8\xfe\x81\x61\x1c\x69\x9d\x63\xcd\x05\xde\x5a\x7f\xc6\x91\x26\xec\x6b\xf6\x0b\x1c\x6f\x5a\xeb\x20\xb9\x0f\x7d\xda\xd2\xdf\xb4\xac\x8d\xa4\xb5\xd6\xba\x3b\x5f\xd0\xe4\x7f\x80\x49\x96\x92\xfd\x7a\xa7\xf2\x53\x27\xb7\xac\x0f\x29\xd4\x42\x47\xfd\xfe\x09\x9b\xd2\x4b\x82\x2d\xc4\x22\x9f\x6f\x98\xc0\xcb\x4b\x29\xdc\xab\x0e\x6e\x8d\xb4\xc1\x7f\x1a\xe4\xf7\x44\x70\xc7\x39\x61\x03\xdc\x07\x88\xef\x75\x56\x69\xfc\x34\xb2\x23\xd2\xfc\x9c\x14\x90\xe1\xe9\x10\x8c\xc2\x5c\x21\x94\x61\x63\xe3\x6a\x76\x11\x3d\xe0\xb6\x0c\x9b\xaf\x33\xda\xc8\xfc\x49\xd3\xf3\xf1\x33\xd8\xdc\xc2\xa9\x28\xfa\x06\x87\x05\x44\x7f\x65\x57\xa0\x78\x48\xd3\x76\x26\x6f\xec\x06\xba\xcc\x30\x97\xa9\xec\xd5\x8c\xe4\xd5\xc0\x0b\xf5\xf0\xae\xf8\xac\xd0\x82\x16\xd1\xbd\x91\xf5\x5d\x3c\x63\x78\xc9\x46\xc0\x4c\x83\x18\x43\x7a\x61\x80\xa6\x4f\x9f\x0c\xe3\x6f\xfd\xfe\xb4\x4f\xf4\xbd\x5e\xbb\x5f\xf7\x7b\xee\x3c\x9b\xe3\x60\x6a\xf0\xd4\xe8\xe9\x06\xeb\x98\xca\x35\x43\x25\xd8\x96\xee\x8f\x55\xdd\xd9\x63\x74\xf6\x54\xce\xd1\xd9\xe7\xaa\x8d\x7f\xb3\xd7\xbf\xb3\x75\xaa\x04\x77\x50\x9b\x60\xbd\xde\x0a\x01\x29\x01\x8f\x7a\x04\xcf\x51\xc8\x17\x4a\xf6\x8e\x5b\xc4\xdc\x3f\xdb\x67\xad\x6f\xcc\x9d\xfd\x43\x7d\xd7\xf2\xc5\xb9\x7d\xff\x4c\x7d\x4c\xbd\x1f\x18\x43\xec\x18\xf6\xaa\xee\xa6\xcc\x23\x1c\xa1\x1e\x6f\xf4\x42\x39\x42\x3d\x5d\x3e\x30\xc8\x73\x85\x37\x97\xad\x9a\x59\x9f\x3d\xfc\x22\xcf\x95\xac\x99\x7b\x43\xe1\xb8\x1d\x32\x09\x7b\xc2\x7b\xfd\xac\xd4\x0c\x77\xe0\x56\x5c\xc7\x7d\xd3\x5c\xe7\x42\xe3\xa2\x55\x83\xeb\x64\x84\x85\x8a\xae\xba\xc2\xd1\x31\xd5\xb6\x1c\xab\xaf\xde\xdd\x87\x48\x5b\x0d\xfa\x7c\xe6\x55\xb8\xfa\xca\x15\x96\x6e\x73\x3e\xd4\xf7\x86\xd0\x5f\xbe\x40\x84\x2f\x0f\x77\x38\xf0\xaf\xa7\x6f\x0b\xe1\xc3\x47\x73\x3e\x8c\x7f\xd9\x36\x85\x88\x6a\x12\x9f\x36\xd7\xd6\x86\x63\x3c\x0e\x70\xb6\x13\x3e\xb6\x09\xae\x42\x71\x36\xc4\x21\x46\x42\x84\x25\x5f\x1a\xbd\x81\xdb\xb5\xc7\x01\x9a\xfe\x9b\x6b\x05\x62\x23\x4f\x1c\x2b\x10\xb9\x14\xcc\xd1\x7c\x5c\x55\x43\x98\x62\xc1\xfe\x4d\xe1\x7f\xe0\x12\x8d\x0e\xcc\x8e\x2d\xea\xd4\x91\x3b\xb6\xfa\x62\xd6\x7e\x6e\x55\x45\x8e\x5c\x92\x06\x71\x7b\x8a\x93\x03\x6d\x02\xd1\x59\xfb\x05\xa1\xd5\x0e\xfb\xac\xfc\x63\xd8\xa6\xcd\x81\x1f\xff\xd4\xb5\x42\x51\xb6\xe7\xb8\xc6\xa7\x6d\xf5\xc5\x79\x7b\xce\x91\xaa\xfe\x1a\xf8\x04\x20\xf6\xf9\x1a\x27\x2f\x7b\x30\x1b\xf0\xbd\xbd\xfe\xc8\x74\x51\x4d\x89\x9f\x1c\xc9\x01\x8e\x64\x46\x30\xf2\x8f\x69\xa2\x97\xea\x8c\xcd\x2f\xa3\x08\x2c\xea\x14\x6b\xb0\x54\x25\xdb\x78\x36\xcf\xb4\x18\x17\x34\xee\x56\xb8\xe5\x70\xc3\x19\xed\xc3\xdc\x23\x20\xb0\xf1\x6e\xe1\x4f\x1d\x12\x94\x52\xaf\x20\x10\xe2\xcc\x3b\x8f\x78\xe1\xb9\x37\xb0\x7c\xb1\x92\x38\xa7\xcd\xe2\xa5\xcf\x61\x54\xa3\x25\xed\xaa\xe3\x60\x47\x2c\x61\x17\xf0\x9d\xe5\x01\x87\x9e\x64\x70\xaf\x7e\xca\x39\x9f\xfc\x8f\xef\x49\x1c\xc1\x38\xea\x2f\x38\xe9\x2d\xb0\x22\xe1\x1e\x49\xc4\xec\x06\x9e\x3e\x0f\x42\xfd\x3e\x67\x15\xae\xb4\x1b\xdf\xdf\xe0\x05\x82\x29\x01\xc9\x93\x94\x6b\xb9\x6c\xd7\x5a\x34\x93\xd4\x39\xa6\xbb\xff\x19\x34\x0e\x90\xfb\x98\x55\x67\x2d\x75\x2a\x97\xe2\x85\x3e\xe9\x92\x0a\x77\xda\x7d\xe4\x87\xbe\x35\x16\xc7\x5d\xf8\x58\xd5\xa7\xa4\x2d\x75\xd1\x1d\xd3\xa4\x1e\x76\x1f\x09\x3f\xde\x20\xc7\xf5\x5e\x8e\x9b\x2e\xe9\x12\xab\xdb\x85\x5c\x7f\x1b\x6e\x80\x73\x83\x67\x6c\x16\x0c\x02\xd8\x73\x37\x98\x9c\x0b\x99\x73\xee\xe2\x9e\xb4\x0e\xf7\x9e\x6d\xf4\xb0\x7c\x4d\xf4\x91\x2b\x0f\x67\x4a\x41\x23\x2c\xa6\xe0\x65\x7f\xd9\xe0\x61\xf8\xd9\x9c\x03\xff\xbc\x6d\xf5\xc4\x08\x4a\xf8\x40\xaf\x05\x17\xe2\xeb\xdb\xfb\x28\xe4\xe0\xb8\xcf\x13\xec\xaa\x05\x07\x97\x3f\x0b\xfe\x0e\x86\x6d\x55\x57\x17\xf4\x10\x04\xf7\xaa\x8b\xf3\x8d\x6d\xbd\x9c\xf8\x87\x43\x7c\x27\xa0\x35\x2a\xc7\x6c\xf6\xbb\x04\x3d\xf5\x70\x85\x88\xd8\x48\xee\x9a\x7e\xec\x23\x4c\x6d\x6d\x83\xa4\x32\xe6\x75\x90\xef\x77\x5a\xbb\xc3\xc3\x7d\x4b\x1f\xe7\xf5\x84\xf7\x3c\xd6\x93\x06\x92\x07\x78\x01\x81\x0c\xef\x20\xb5\x00\x2d\x5e\x7c\x58\x14\x04\x1f\xeb\x75\x85\x0b\x5b\xf9\xeb\x1d\x6e\x93\x5c\x57\x73\xfa\x26\x45\x79\x47\x7b\xe7\xfd\x0e\x1b\x57\x99\x77\xa7\xf7\x54\x7b\x88\x70\xbc\x44\x9e\x70\xe2\xf9\xbd\x15\x09\xc7\xb9\xd8\x9b\x52\x6c\xe1\x9b\xbb\x3b\x6b\x24\xae\xef\x36\x72\xfb\x95\xa6\x08\x1f\xd9\x86\xa6\xee\xd9\x86\x47\x9b\x18\x5a\xe9\x22\x88\xac\x48\x14\x41\x2e\xd9\x5f\x13\x36\xc6\x84\xd8\xc0\x13\xfe\xc0\x0c\xfb\x2a\x6f\xa8\x61\x67\x90\x61\x27\xf6\xd6\x7b\x74\xba\xd1\xd7\x07\xf0\xad\x74\xe3\x23\xee\xe3\xd2\x87\x88\x07\x4f\x34\x4f\x3d\xcd\xff\x78\xad\x73\xb6\x5c\xf6\xe6\xbd\x66\x6d\x99\xc7\xd0\x80\x00\x4f\x8b\x0d\x2c\xf4\x93\xef\x4f\x05\x28\x1a\xa7\x3d\xac\x0e\x60\x89\xda\xf1\x5d\xb7\x63\x36\x86\xf3\xb1\xfa\x2e\xb3\xea\x5b\x93\xe4\x6c\xf9\x7a\xc3\x51\xc9\x4d\x6d\x68\x03\xa8\xb9\xbe\x23\x2d\x02\x65\x8f\xf9\x8b\x33\x6b\x46\x09\x1c\xcf\xd4\x4f\xe0\x79\xcf\xed\x02\x9b\x37\x2c\x59\xde\xe2\xa5\xfa\x94\x3b\xae\xed\xa3\x87\x05\x83\x40\x22\x61\x1f\x88\xf4\x9e\x74\xc8\xec\xfe\x99\xf6\x89\xcd\x04\x1a\x2c\x3c\x8c\xef\x92\xcd\x28\x77\x56\x20\xba\x67\x72\xbd\x37\xf6\x6b\x8c\xbd\x77\x6f\xe9\x8f\xae\x10\x68\xcd\x7f\xd5\xc8\xd5\x3d\x4e\xd5\x5c\xdf\xbf\xfe\xd0\xca\xa1\x87\xf8\xf5\x87\xaa\x26\x27\x55\xa8\x36\x88\x80\x42\x66\x12\xd1\x8a\xbc\x91\x15\xe3\xef\x51\xd5\x42\xc2\x2d\x24\x3d\x02\x9a\xab\xde\xe3\xef\x86\xc1\x0d\x4c\x84\x7f\xa2\xb6\x9c\x63\xb2\xcf\x22\xf0\x89\x03\xd0\x10\xee\x18\x1c\xbc\x73\x3f\x76\x7b\xa4\x8c\x0b\x26\x54\xc2\xa1\x00\x5f\x97\x09\x9c\x6a\xbc\xfe\x4a\x26\xa1\x10\xc3\x9c\xdf\x15\xe1\x57\xf2\x70\x16\xce\xfb\x3d\xfc\x36\xf8\x16\x51\xff\x65\xb7\x57\x7c\xc9\x37\x16\x3e\x31\xbd\xac\x7f\x35\xc7\x67\x0f\x91\x35\x16\xe7\x0f\x53\x9e\x01\x0e\xd6\x5f\xe0\x70\xaf\xbf\xe2\x2f\x00\x3d\x33\x7d\xc1\x25\x11\xd8\x7a\x72\x31\xc4\xfe\xd4\xdc\x0f\xa0\xd6\x8a\xdd\xbd\xc1\xed\xd7\x39\x5e\xf7\x87\xd6\x48\xbc\xf5\x07\x3f\xb4\x90\x41\x55\xee\xbf\x58\xa1\x48\xe4\xc9\xaf\x7b\x99\x3f\x8c\xad\x91\x28\x1e\x9e\x7e\x57\x47\x20\xde\xe4\x85\x2c\xb9\x1b\x3d\x23\xcf\x46\xda\xd5\x5b\xca\x92\xd7\xe3\x98\xe4\x9e\xba\x3f\x09\xcc\x53\xc8\xb7\xf0\xf6\xa9\xc7\xc9\x43\x23\x35\xb2\x02\xe1\xed\xf8\x2a\xed\xe0\x54\x36\xd8\x07\x7f\xf7\xe0\x88\xb6\xa7\xa7\x6f\xac\x1b\xad\xf9\xc6\x8d\xec\x41\xcf\xd0\x1c\xce\x89\xb9\xd2\xe9\x9a\x3d\xf1\x2c\x51\x51\x48\xa5\x63\x16\x4b\x85\xd2\xbe\x0d\x3e\xba\xa9\x8b\xb2\xfc\x8d\xe1\x62\xed\xe7\x0f\xa0\xad\xe2\x81\x7d\x07\x8e\x98\xd0\x88\x9f\x45\xb9\xdf\x63\x82\x7e\xdb\x3b\xb0\x0d\xb9\xea\xd5\x7c\x9a\x4d\x13\x2c\x62\xce\x54\x05\x68\x4a\xc9\x47\x4a\xfa\x24\x70\xbc\x97\x54\x7e\x99\x14\xe2\x14\x0c\x24\x3c\xae\xc5\x15\x6e\xa7\x6e\x72\x22\xdc\x29\x4f\xcf\xa1\xdc\x1b\x81\xbe\x2b\xfd\x1a\x47\x12\x3e\xed\xed\xc3\xfe\xdc\x00\xe0\xf1\xc5\xdf\x5e\xf2\xcc\xf3\xdb\xfe\x81\x47\x2e\x7e\x60\x9c\xbd\x35\x2c\x57\xc3\xb7\x6f\x3b\x42\xdd\x38\xef\xe0\x07\xc7\xac\xd5\x1d\x49\x0e\x2b\xfb\x22\xa6\x3b\x24\x68\x12\x18\x8c\xba\x6b\x68\x43\xbd\x15\xfa\xf0\x62\x29\xed\xf1\xf4\x76\x0f\xdf\x8a\x68\xc3\xf1\x55\xe3\xfb\x6e\xbd\x93\x87\x5f\x31\x76\xdd\x73\xcc\x91\x09\xae\xcd\x47\x0c\x44\xdb\xf5\x2b\x75\x64\xb3\x97\x6f\xcc\x84\xa1\xd9\xbb\xbe\x35\xc9\xae\xd8\xfb\x8d\x3c\xf9\xa1\x47\x51\xce\xd4\x04\x7b\xbe\xbb\x83\x48\x7f\x4a\xc0\x56\x5b\x2b\x08\xa2\xd1\x45\x93\x3c\x26\x91\xd5\x13\x2f\x37\xf2\xc7\x77\x96\x27\x62\x99\x28\xbd\x9c\xf5\xd2\xe3\x1e\x0e\x73\x96\xf5\x27\x54\x87\x73\x27\x27\xa3\x95\xb4\x26\xe2\x78\xf4\xaa\xc3\xb9\x03\xbe\xce\xcb\x65\xd8\xca\x06\xb6\xc9\x4d\x63\x10\x2a\x95\x9f\x2c\xb3\x8e\x31\x2f\xe3\x93\x11\x81\x7c\xb9\x95\xa7\x04\x2a\x5e\x7d\x14\x19\xef\x20\xaa\x5b\xef\xfc\x84\x38\x15\xf5\xc4\x51\xd0\xe3\x2d\x3e\xc9\x94\xea\x6f\x0b\x8c\x2f\x70\xd4\xe0\x85\xef\x0e\x1d\x9f\xe0\xa4\xc2\xcb\xb1\x2e\x88\xc8\xbe\x01\x87\x4a\x8d\x71\xe8\x41\xdd\x32\x23\x19\xdf\x12\x43\x48\x59\xa6\x8e\x71\x01\xab\x1a\xf0\x05\x39\xe3\x84\xa3\x14\x99\xbf\x8f\x71\x9b\x8e\x7a\xe5\xeb\xac\xc6\xaf\xd4\xda\x00\x3a\xd7\x78\x4a\x2f\x5e\xc0\xdb\xc7\x2f\xc4\x4a\x5e\x98\x6d\xf3\x77\x52\x1e\x0f\xa1\xf7\x5e\xb3\xa5\x38\x6c\x98\x3a\xb4\x87\xca\xb8\x4d\x63\x59\x5d\x0e\xd4\xaf\xbe\xe0\x36\x32\x36\x5a\xfc\xc6\x52\x41\x79\xd4\x46\x46\xbe\xf0\x67\x6c\x85\xc2\x59\xdc\x23\xd8\x62\x1e\xc1\xcd\xb8\x8a\xf0\x99\x18\xc5\x21\x59\x37\xad\xca\x20\x9b\x1a\x83\x2c\x4d\xd0\x04\x46\x96\x17\x3e\x27\xa2\x83\x5f\xfa\xec\x93\xec\x15\x50\xc9\x27\x0b\xae\xef\x2d\x02\x57\xc8\xf9\xa9\x30\xd7\xe6\xd0\x82\x2e\x9e\x80\x05\x4f\x47\xc4\x45\x92\x36\x0c\xae\x9f\x7d\xa8\xb0\xc7\xfd\x0b\x79\x84\x5d\xe6\x5f\x13\xfb\x3e\xbf\x7d\x40\xc1\x63\xd7\xea\x8a\x93\xdb\x01\xdf\xa8\x3d\x3a\x86\x3d\x62\x72\xcb\xa0\x3e\xe7\xc4\x53\xc7\x1a\x8a\xcd\x2d\xd8\x6c\x87\xcd\x7e\xa3\x73\x87\x99\x97\x22\x0e\xc7\xa6\x5c\x3e\x2a\x02\x97\x18\x2e\xb3\x98\xda\xd8\x1c\xb8\x24\x90\x43\x4e\x61\xa3\xe5\x2b\x33\x00\x78\x59\x15\xc7\x31\xd2\x3b\xed\x91\x02\xb6\x53\x83\x13\x76\x43\x61\x53\xaa\x67\x3e\x15\x3d\x42\xa8\x9e\x7a\x62\x4c\xdd\x03\xb6\x53\x0f\x25\xbf\x2b\xf8\x5d\xce\x2b\xf7\x86\x68\xf4\x67\x3d\xa8\x4b\xea\xff\x36\x91\xa4\x2e\xbe\x27\x72\x2b\xf9\x88\xd5\xe8\x9a\xba\xb2\x4d\xf0\x05\xba\xf7\x44\xae\x25\xc7\x98\x8f\x0e\x1d\xab\x4f\xe9\xa4\xcd\xbc\x27\xb2\xd4\x37\x3a\x8e\x66\x2d\xab\x47\xe9\x43\x6b\x48\xe9\xb9\x9c\xb3\xd3\x33\xde\x4f\xbf\x5b\xb4\xac\x9e\xd5\x53\x8b\x95\xe4\x39\x36\xa7\x01\x39\xfc\x38\xb8\xc0\x47\x27\x77\x8c\x7a\x19\xa4\x0c\x2f\x58\x0b\x87\xee\xa2\xe6\xe6\x2b\x1d\x29\x03\xcb\xfe\x0f\x56\xc2\xe3\x2e\x13\x4a\x1d\x15\x71\xa6\x6a\xbb\x06\x5b\xfd\xf9\xb4\xa7\x7f\xde\x05\x6d\x7d\x68\x35\xe7\xb3\x79\x3f\xaf\xfe\x90\xca\x0e\xbd\xe8\x2d\x07\xcc\x6e\x1c\xa1\xb6\x2e\x57\x77\xc3\x75\x1c\x76\xad\x58\x5a\x63\xa5\x16\x8d\x2f\xac\xf4\x13\x9c\x74\x99\x6b\x83\x0a\x86\xca\x0e\xd9\x04\x71\x18\x01\x23\x20\x4e\xd2\xea\xee\xf2\x99\xe3\xde\x5f\x39\x03\x7c\xe2\x5d\xe1\x2e\x98\x82\x3e\x58\x45\xa3\x31\x3c\x9d\x3e\x57\x3b\xe5\x41\xd5\x66\xfd\xdd\x3d\xd6\xfb\x8d\x91\x0f\xdf\x8d\xec\xd5\xd6\x7d\xfb\x5b\x4e\xab\x2f\xfa\x4f\xc7\xf7\xcc\xca\xaf\x5e\xff\x8d\x93\xea\x1d\xda\xd8\xbb\x3c\xe2\xf5\x98\xf9\x38\x24\xa9\xed\xbc\x99\xfd\xdd\xce\x9b\x3b\xfc\x19\x84\x05\xd7\xc3\x96\x94\xd7\x37\x7d\xb1\x18\x7f\x35\x05\x18\x5c\xcd\x59\xba\x8c\xf9\x0c\x06\xa3\x5d\x95\xf0\x27\x2e\x43\xbe\x2d\x94\x31\xb6\x4a\xf9\x20\x65\x3f\x61\x05\x64\xc9\x56\x0a\xa6\x4c\x8e\xfd\x66\x0c\xa6\x74\x54\xce\x38\xe5\x44\xc0\x47\x95\xc8\x13\xbe\x40\xa0\x19\x34\xf3\x71\xcb\xfa\x4b\xe2\x37\xa8\xef\x4b\x38\x0b\xdf\x15\x74\x2e\xeb\xeb\xa9\x8f\x38\x06\xe6\x5d\xa6\x5c\x2c\xf3\xe1\xf6\xd6\xd3\x31\xab\xa6\x03\x5f\x71\xe0\x03\x0e\x21\xce\x68\xa8\xd2\xe1\x48\xe0\x5f\xdb\x9c\x8f\xd9\x6a\xa3\xbf\x5a\x6a\xec\xcf\xa1\xbe\x65\x60\xc8\x99\x6a\xaf\x19\xb2\xbc\x4b\xe1\xa4\xb7\x6f\xac\xe3\xad\x67\x10\x15\x0f\x6f\xac\x72\x4d\x72\x7e\x9e\x5e\xf2\xfd\xe3\x1f\x1d\x12\x55\x0f\xda\x7e\xce\x71\xdd\xfe\x69\x07\x81\x92\xef\x30\x43\xa9\xad\x7d\xc1\xd7\xaa\xa4\x68\x33\xa4\x99\xda\xca\x0f\xfd\x51\x13\xf4\x7c\xb4\x06\x50\xe9\x1f\xfb\xb5\x95\xb3\x54\xec\x34\x18\x23\x1a\x7a\xa4\xcf\x06\xaf\xc1\xed\xb4\xf6\x30\x3a\x8d\x88\x2d\xe5\x0e\xe6\xe4\x90\x9d\x12\x0a\x21\x60\x6a\xab\xd9\x22\x8d\x72\x33\xe0\x65\x29\x1d\x86\xae\xd8\x25\x0b\x66\x14\xd0\xab\x41\xaa\x37\xcc\x4d\x0e\x23\x6e\x09\x93\xc8\x8e\x48\x0d\xcd\xfa\xd7\x11\x9b\xd3\xeb\x2b\xb5\x4c\x9d\x5b\x0e\x9d\xe9\x9d\x83\xdd\x47\xe5\x6b\x05\x7a\xae\xe4\x21\xc3\xfa\xd3\xa7\x2a\xed\x85\x63\x6a\x26\x57\xfa\xf2\x99\x9e\x70\x3b\xeb\x90\xa3\xb3\x62\x9c\xe3\x6a\x7d\xa2\xcb\xfd\x23\x82\xa7\xce\xe0\xd0\x33\x4f\x38\x38\x31\xb1\x7c\xe1\xa7\x52\x47\x4e\x61\xce\x2f\x25\xee\x08\x55\x37\x6a\xc5\x75\x23\x50\xe9\x92\xb9\x77\x3e\x31\xe5\x3c\xfb\xcc\xb9\x52\x1c\xcf\xb0\x43\xd0\xd3\x99\x0e\x9e\xce\xa4\x35\x54\xa7\xce\xe3\x86\xd0\xa2\x08\xce\xe8\xa5\x43\x68\xbe\xef\x9d\xd3\x64\x0f\x84\xf1\x33\x24\x3a\x34\x8c\x3f\xe2\xfb\xd9\x6d\x18\x5c\x56\x6d\xfd\x65\x2a\x57\xa8\x07\x7a\x6f\x1f\xdb\x86\xf6\x1c\xfe\x12\xd2\x9b\x3c\xd4\xd7\xb4\xcf\xf9\x76\x08\xc5\x31\xa2\x97\x3a\x15\x96\x65\x6f\x8e\x8e\x3f\x9f\x35\x41\xd2\xa8\xe4\xe1\x73\xe4\x41\xd6\xd5\xc1\xb8\x57\x7c\xdd\xf3\xf5\x84\x08\x71\x67\xf3\x16\x18\x97\x11\x30\x6b\x36\xa5\x61\x94\x3c\x46\x5c\xdc\xec\xbe\x5c\x81\x76\xba\x71\x8f\x6d\x20\x6c\xd8\xd0\x56\x8b\x6f\x91\x0d\xc6\x14\x7e\x66\x2f\x11\x1d\x0e\xfe\xae\x1e\x5d\x3d\x68\x4f\xa8\xdb\x4f\xef\x7b\xb1\xb1\xd6\xf3\x76\x8a\x8b\xe1\x86\x53\xf1\xb4\x5f\xb8\x2b\xd4\x2d\x47\x9f\xe0\x06\x93\xdb\x4f\x90\x12\x5f\xb0\xd7\x2b\xc7\xf5\x5a\xbb\x53\xe8\x4a\x33\x76\xfb\x5c\x4a\xbe\x13\xe4\x4a\x9d\xeb\xd3\xad\xcf\x9c\x7c\x62\x73\xf2\x86\x99\xdd\xcb\x3e\x05\x18\xcb\x67\xb5\x9e\xec\x3f\xd8\xc8\xcf\xc6\x7a\x5e\xfc\xe9\x7a\xf6\xeb\xf5\x34\x9f\x5f\xd8\x62\x3d\x4f\xf4\x7a\x66\x3a\x75\x8d\x18\x95\xc5\xff\x17\xd6\xd3\x85\x79\x9a\xd2\x61\x13\x99\xae\xaa\xb5\x55\x83\xa3\x49\xb3\x93\xab\x5b\xd6\xa8\xf0\x75\xa7\xf5\x4b\xf3\x55\xce\x91\x70\x46\x1c\xe3\x03\xdb\x7c\x25\x0a\x13\x46\x70\x42\x18\xd7\xbd\xcf\x60\xa5\x8f\x5e\x79\xe9\xf1\xdd\xa3\x08\xe7\xf4\x6f\x45\x3a\x25\x06\xaf\xf9\x34\xf7\x7f\x24\xd4\xed\xf9\x1c\xaa\x7e\xb8\x63\x8d\x2c\x8f\xac\x31\xe2\x5c\x3c\xa1\x62\x79\x24\xb5\x8f\x6b\x35\xd3\xe1\x70\x27\xdd\xca\xcf\xb5\x76\x4e\x9d\x1a\x6f\x42\x63\xf6\xde\xf9\x83\x65\x57\x8c\x0f\x32\xe7\x3b\x7b\x56\x17\xea\x30\xac\xdf\xaa\x01\x0f\x8d\xd0\x2f\x21\xcb\x4f\x84\x15\x8f\xe1\x03\x57\xcf\x47\x1c\xee\xf0\xee\x30\x06\xc5\xdd\x70\x43\x7e\x7a\xfc\xe4\x72\x05\x97\xbb\x22\x14\xbc\x95\x2b\x1d\x02\xa0\x3f\x4c\x85\x19\xda\x36\x2c\xfb\xc1\x4e\x7b\x08\x0b\x23\x67\x1c\xe1\x20\xb2\x4b\x3c\xa7\x38\xa6\xd7\xe2\x4f\x2b\xd1\x44\xd0\x62\x1c\xbe\x40\x79\xe4\xaf\xf5\xe9\x4f\xda\x11\xd9\xe1\x02\xb9\xae\xc8\xe4\x89\x7d\xfe\xcc\x9f\x31\x41\x25\x82\xa7\x49\x47\xc7\xe0\x8a\xfd\x2b\xfe\xb8\x19\xfa\xbe\x60\x2c\x94\x61\xe3\x9d\xe8\xa8\x81\x45\x44\x08\x7e\x25\xf9\x48\xc7\x70\x15\x54\x53\xbc\xb3\x17\xf2\x5b\x7c\xe0\xb2\xfb\x4b\x98\x86\xb0\xde\x77\xd0\x7a\x01\x68\xff\x98\xce\xf8\x7b\x11\x72\x15\x71\x63\x09\x04\xd9\x13\x81\x95\x33\xc5\xc3\x0a\xd8\x3c\xd0\x3b\x65\xe7\x48\xc2\x36\x92\x0f\x1f\x94\x87\xbb\x23\x76\x8a\x63\x0d\x4f\x21\xa8\x3a\x27\xca\x1a\x8a\x0f\xe7\x9e\x0f\xf5\x74\xb3\x2a\x26\x8b\xb8\xc3\x5a\x59\x3d\xeb\x58\xaa\xa3\xe0\x95\x95\x61\x16\x10\xfa\x33\xdf\x37\xaf\x0c\xaf\xd7\x0c\x93\xdf\x71\x87\xf2\x79\x6b\xe1\xac\xe0\xe4\x2d\x5b\xa3\x14\xf1\x60\x1a\x3c\xce\xf6\x83\x39\x7e\x17\x4c\x70\xcd\x3a\x68\xce\xb7\xe9\xbf\x05\x8d\xc8\xea\x8d\x2c\x39\x75\xf3\x87\x81\xd2\xe1\x8e\xf3\xbf\x07\x1c\x66\xb6\x9d\xe9\x0f\x37\xe8\xaf\xa6\x13\x58\x59\xa8\x77\x8e\x12\x1e\xef\x66\xfa\xc2\x05\xfe\x64\xb7\xc6\x30\xd1\x67\x23\xd9\x39\x92\xa7\x51\x8d\x5b\x3e\xe4\xc9\x4c\x42\xd1\x7d\xa3\x55\xaf\xee\x73\xd3\x50\xc7\xd7\xae\x0b\x57\x14\xf2\xa8\xc5\xfe\xc3\x65\xc0\x31\x3f\xb4\x69\x9f\x10\x0c\x8a\x58\xf4\x13\x79\xc7\x46\xba\x5b\xf8\x3e\x88\xa2\x5a\x7c\x26\x36\xe6\x10\x4a\xbe\x66\xea\x94\x0f\xf6\xe1\x92\x0f\x27\xb7\xe7\x2e\xdf\xd9\x3e\x23\xc4\xbc\x91\x4f\x3e\x31\xc6\x10\x11\xf3\x93\xa3\x57\xa8\x18\x33\xda\xdb\x4e\x62\x83\x65\x1e\x72\x48\xa9\x83\x8f\xbe\x75\xea\x8e\x70\x14\xb4\x87\x4e\xe3\x24\xbc\x33\xe7\xef\xfe\x83\x4b\x04\x67\x98\xc5\xee\x3b\x75\x5d\xdd\x82\xdd\xb8\xcd\x17\x56\x5f\x74\x5f\x6b\xd8\x44\x19\xf9\x93\xf3\x1e\xd1\x71\xa3\x9d\x67\x5c\x61\x1e\xf1\x97\xda\xf1\xfa\x06\x9f\x6e\x70\xec\xba\x34\x7f\x85\x15\x85\x9d\x2d\x07\x84\xcf\x64\x19\xef\x4d\xb3\x5a\xc8\xb2\xbd\xb7\xd9\x68\x47\x1d\x29\x8d\x30\x4f\x7d\x7c\x34\x22\x7f\xc6\x21\xbf\xe5\x8b\xe6\x5e\x2e\x9f\xc0\xbe\x81\x1d\x74\xb8\x7c\xd1\x47\x6e\xba\x2a\xb7\xe7\x7c\x5d\xa5\xc7\x27\xad\x39\x84\xb2\x66\x36\x88\x1b\x1a\x72\xe0\x14\x9b\xd0\xf0\xf2\xf3\x09\x3b\xab\x80\x19\x21\x60\x13\x94\x55\x7d\xaf\x80\xaf\x07\xf6\x51\xe5\xbc\xc5\x46\x31\x0c\xbc\x87\x08\xc7\x21\x2e\x6f\x64\xd6\x11\xf0\x5b\x70\xe1\x40\xfb\xc1\xcd\x37\x1f\x14\x4e\x19\x0a\x98\x3e\x70\x3a\x51\xe1\x3b\xe2\xfd\x96\xfe\x5c\xbc\xe9\x29\x43\xd9\xfb\x46\x4f\x03\xee\x10\xbd\x3c\xe2\x9e\x22\x94\x4d\x7f\x10\xbf\x57\xf7\x94\x3d\x7d\x01\xa8\x62\xcd\x3d\xe5\xcf\x4d\xf4\x07\xa8\xae\xcf\x3d\xc5\x78\x3c\xb6\xa1\x95\xf8\xcc\x9d\x9f\x3d\xb1\x46\xcb\xf7\x90\x78\x5f\x5e\x05\xc2\x49\xa4\x15\x29\x0f\x17\xa3\xf3\x47\x36\x98\x95\xf3\x07\xcb\x4f\x25\x5b\x71\xd0\x89\x63\xa6\x6c\x1c\x44\x71\x35\xab\x67\x26\xff\x5b\x96\xa3\x2e\x9c\xd3\x85\x8e\x72\xb1\x5c\x71\xd9\x7b\x3e\xa1\x91\xed\x7a\xa3\xc5\xe0\x6f\xd8\x0f\x2b\xb9\xa3\x33\xfc\xf1\x4f\xef\x99\xfd\xac\x27\xff\x83\x4c\x69\xa3\xa5\xef\x15\xb7\x79\x7d\x4f\x23\x38\xe3\x12\x6f\x28\xb1\xe5\x12\xef\x5c\xa2\xb4\x53\xbe\x29\xa2\x60\xd4\x52\x6a\x7d\xf7\x8d\xfd\x9d\x47\x5c\xcd\xe1\x3d\x3e\xea\xa4\x81\xde\x1c\x2b\xeb\x9f\x75\x39\xe6\xf3\x3c\xa4\xca\xdf\xbf\x1c\xeb\x30\x97\x06\x99\x98\xcc\x8d\x4c\xb8\xd8\xaa\xf7\xe3\x20\x10\xd6\x76\xc7\x39\x61\x80\xfa\x74\x34\x3a\x5d\x73\xb9\xb7\x1e\x47\x4f\x5d\xb0\x69\xa4\xa9\x36\x5f\x6a\x63\x42\xc9\x39\x67\x36\x87\x68\xa2\x85\x95\xe2\x73\x00\x05\xdc\x5e\xfc\x99\x7b\xb5\xb6\xb7\x5c\xcb\x2f\xf5\xde\x5a\xaf\xad\x02\x8f\x45\xc4\x09\xb0\x3f\x36\x5f\xd5\xea\x6f\x24\x9c\xed\x2d\x9f\xfd\x0a\x4b\xb6\xf9\x43\x5d\x3d\x91\x1b\xed\x0a\xbb\x62\x6d\x54\xdb\x62\x4b\xed\x0b\xc9\xf8\xd3\x51\xeb\x46\x91\x4f\xf9\xbe\xd4\xa2\xe4\x86\xcb\xb0\xc5\x16\x5f\x95\x57\x3b\x3e\xd3\xff\x26\x3f\x75\x11\xca\x0c\xa5\xb7\x54\x4d\xa6\xbb\x31\x37\x3a\xc4\xb0\xe6\x0d\x3f\xf0\x51\x7b\x75\x21\x1b\x71\xaa\xbb\xa5\x04\x74\x3e\x96\xab\x25\x1f\xb2\xa0\xb2\x5b\x46\xae\x6c\x21\xc9\x63\x58\x78\xf9\xd2\x94\x76\xcd\xb7\x20\xe6\xc6\x1c\xb1\xa9\x16\xea\x58\x0f\xf2\x24\x6e\x88\xb9\x4f\x79\xaa\xa5\xdf\x59\x23\xd9\xbd\x90\xe7\x78\xdc\xf1\x77\x03\x36\x72\xc7\x92\xe3\x83\xd6\xc9\x9d\x9b\x51\xf4\x45\xab\x65\xae\x9d\xc6\xda\x06\x0c\xcf\x03\xe1\x9e\x70\x0f\x3f\xa9\x1c\x1f\x44\xc0\x77\xcb\xd5\x1d\xb3\xac\x50\x28\x1d\x83\x11\x09\x67\xc0\x69\x51\x95\x16\x56\x69\xc3\x2a\x6d\x5c\xa5\x8d\xab\xb4\x21\xa5\xf5\xf8\x08\x1f\xe3\xb4\x95\xdd\x3b\x86\x8e\x3b\x99\xf2\xf7\xd7\x4e\x08\x50\x06\x0f\x8c\x06\x57\xf2\x08\x73\x2f\xa2\x73\x5e\x91\x44\xf1\xc0\xc6\xa7\xf8\x83\x3b\x59\xd5\x95\x3e\xc7\x65\x57\x49\xce\x5a\x51\xc1\x0a\x77\x3f\x66\x3c\x97\x98\xfa\xbe\x50\xcf\x6f\x71\xfd\x4c\x50\x7a\x49\xbd\x74\x59\x92\x78\x33\x68\x70\xe1\x82\x98\xa1\x59\x7c\x3e\x8e\xd7\x2d\xf4\x07\x30\xb7\xcc\xa7\xc6\xa7\x2c\x89\x43\x6c\xf7\x4f\x65\x29\xe1\xf1\xb1\x23\xb3\xc8\xdf\x5a\x3a\xec\x32\x4b\x60\x03\x44\x45\x4b\x3d\x5a\x03\xed\xf5\x59\x2d\xcc\x19\x18\x84\xc9\xec\x9e\xc1\x82\xed\x82\xbb\xc5\xd1\x3e\xdd\x92\x48\x25\x9a\x03\x7f\x3c\xaf\xe4\x71\x58\x71\xeb\xb1\x1e\x06\xdb\x52\xfb\x1a\x3b\xa3\xff\xa3\x71\xd5\x7b\xda\x61\xc7\x83\x0a\xdd\x5e\x38\x39\x9b\xa4\xde\x71\x29\xf5\x23\x2c\x9c\x11\x3b\x47\x3f\x39\x58\x72\xa6\x55\x10\x42\x1e\x97\x7e\x45\x7b\x38\xbc\xe0\x9c\xa9\xeb\x0a\x8d\x2a\xa1\x5e\xb7\x13\x30\xfd\x15\xce\x0b\xac\xe5\x39\x83\x84\x0f\xb4\x3f\xf9\x24\x8e\x40\x34\xcb\x36\xd0\x4f\x6d\xca\x28\xb4\x43\x8a\xf9\xc7\x64\x85\x09\x4c\x1c\xb6\xf6\x9e\xfc\x9c\x29\x43\x50\xf9\xda\x79\xd9\x9f\xcd\x59\x9b\x19\x05\x36\xe6\x29\x7f\x65\x84\xbd\x85\xd1\x15\x4c\x65\x23\x66\xc9\xfc\xbd\xe2\xc9\x23\x2e\xaf\xb5\x39\xca\x6f\x7c\x36\x33\x0b\x0f\x73\x95\xc3\x51\x1c\x19\x18\x56\xc0\xd8\xbb\x37\xe7\xed\xf8\x7a\x3c\xc3\x7d\x82\xb8\x02\x5b\x61\xd2\x7a\xa4\x48\xfa\x0f\x98\x20\x78\xef\x9f\x52\xd9\xa0\x08\xef\xf5\x8f\x29\xa2\xc7\x06\x18\x57\x3c\x8b\x23\xf9\xa3\x12\xb9\xe1\x9b\x5e\x6d\x7c\x76\x7d\x9b\x34\x32\x0d\xae\x39\x8e\xaa\x7f\x04\xcf\xde\xf3\x7b\x50\xc3\x36\x0e\x85\xf4\x8f\x7c\xd8\x39\xae\x7d\xbe\x99\x07\xea\xf1\x10\xd9\xc5\xe4\x14\xce\xdd\x33\xf5\xc5\xc1\xc6\x57\xc0\x41\xf7\x7e\xbd\xe2\x43\x45\xb4\x89\x47\x2f\x56\x20\x1e\xbc\x53\x7c\x4d\xa1\xc5\x5f\xd9\x1b\x6d\xda\xc6\x57\x4b\x0a\xbe\x9c\xc3\x04\xe6\x15\x1d\x28\xaa\x8b\xb6\xd5\x13\x9f\x6a\xc2\x7c\xf5\x9a\x2f\x73\xb3\x3c\xf1\xa1\x1e\x76\x6d\xab\x2f\xae\x24\xd8\xe6\x42\xbe\xeb\x57\x44\x93\x63\x2b\x10\x87\x72\x29\x69\xa0\x5a\x3d\xe6\xa9\x44\x4c\xdd\x8d\x02\xb8\xc6\x95\xc9\xea\xb5\x55\x75\x4e\xb9\xeb\x58\xfe\x22\x64\x34\xb1\x39\x42\xb1\x0b\xe3\xa6\xba\xbd\xe8\x56\xc1\x99\xfa\x0b\xf8\x70\x38\x3c\xdc\x7d\x51\x06\x9d\xe9\xce\x36\x3e\x34\xe7\x71\xa1\x61\x1d\xd5\x70\xae\xad\xbb\x8e\x50\x77\x4b\x9c\xf7\x19\xce\xc0\x42\x7b\x36\x1f\x5c\xbc\xf1\x99\x8e\x29\x1b\x78\xe1\x0d\x09\x07\x7c\x64\x95\xd1\x15\xab\x81\xc6\x47\x06\x2f\xa5\x98\x9c\x8d\xac\xc0\x2a\xa4\x3a\xb9\xbd\x41\xc3\xfa\x33\x47\x7c\xf0\x50\xbd\x60\x99\x62\xb7\x71\x24\x71\x42\x6d\x3e\xe0\xb5\x88\x2c\x4f\x2c\xf9\xfa\xc9\x95\xdb\x5e\x25\xe6\x08\xa5\x53\xc5\x7d\xe3\x5b\x3d\xdd\xbc\xe1\x74\xde\xc8\xb3\xa4\xa1\x0f\xc6\x7b\x80\x2c\x61\x40\x76\xfe\xc0\x1b\x8a\x4f\xb7\x5e\x3f\xfc\x6d\xb4\x77\x19\xfd\x84\xd5\x7e\x8a\x46\xbf\x44\x9d\xef\xf2\x88\xeb\x9e\xf5\x11\x85\xaf\x6d\xf0\xf1\x0f\x2e\x89\xc4\xd1\xc1\xea\x0b\x28\xd3\xfe\xf2\xcf\x4b\xa4\x5c\x22\xfb\xd3\x12\x99\xcc\xb9\x44\xd1\xff\x01\x19\x81\x85\x1c\x36\x0e\xe2\x26\xb6\x6e\x67\xcb\xa5\xde\xfb\x3f\x1e\xbb\x81\x3b\xc1\xaa\x4e\xe2\xee\x4c\xa9\x4f\x2e\x75\x8c\xc3\x6c\xa6\xd8\xf9\x97\x62\x55\x63\x67\x5c\xac\x7f\xc6\xa5\xce\xf1\x7d\xe6\x57\x6d\xfc\xbb\xe2\xc4\xeb\xfe\xdf\xa2\x58\x3d\xce\x23\x2e\x30\x1b\xfc\x66\x9c\x55\x8f\xe7\xa6\xc7\x6c\x6b\xf1\x97\x83\xdf\xf5\xb8\x3a\xc5\xa4\x01\xed\x30\xe5\x52\xab\x41\xe3\x38\x42\x9f\xcf\x99\xfa\xd9\x00\xce\x20\x96\x21\x7c\x76\x5d\x83\x68\x7d\x5d\xf7\x37\x14\xbd\x77\x36\x9a\xf9\x7f\x13\x45\xe7\x36\xfb\xf6\xdf\x65\xc9\xb5\x6d\x7e\xd7\xd9\x35\x14\xd0\x7e\x86\x48\xed\x1b\x7d\xa4\x7b\xc7\x05\xdf\x07\xfc\xd9\x41\x56\x33\xd9\x4f\xe0\x7f\xe0\xb4\xf5\x94\xaf\x00\xf9\x33\x47\x12\x7b\x3b\xc0\x43\xe6\x0e\x9f\x36\x5d\xca\x4f\xa6\xfe\x0f\x04\xb4\xa8\x9d\x3c\xc1\x29\xdb\x1f\x61\x76\x8f\xe3\x28\xcc\xb9\x86\x0d\x14\xae\x2f\x7f\xe0\x67\xd2\x5e\x7e\x2d\x9c\xc1\xab\x00\xc6\xf1\x52\xa7\x6a\xbf\x22\x7f\x62\x40\xa3\x73\xfd\x0a\x79\xd1\x58\xc1\x21\xae\x99\x14\x4e\x39\xba\x66\x4d\x19\xfe\x27\xe7\xa1\x8c\x18\x6f\xce\x15\xe1\xc6\x44\x7e\xa4\x7c\x77\xfe\x67\xc5\x7a\x60\xb0\x39\xd6\x5f\xbe\x38\x69\x24\x3b\x47\xf2\x90\x6f\xda\xaf\xb1\x1f\x4d\x66\xa2\x4e\xb9\x92\xd1\x85\xe2\x03\xab\x5c\xc7\x25\xdf\xd1\x74\x55\x27\x3a\x47\x92\x7b\xb3\x91\x57\x29\xc6\x12\xb2\x3d\xf0\x9a\x2b\x08\x6f\x52\x0e\xb7\x38\xd4\xcf\x47\xfa\x79\xc6\xc7\x00\xc2\x39\x47\x35\xbf\xc4\xfa\x79\x81\x67\xe7\x65\x99\xe9\xa3\xb2\x67\x2b\xc9\xa1\x79\x8a\x70\x21\x1b\x4e\x4f\xf9\x9a\x9e\xe7\x2b\xb6\x84\xb2\x95\xf0\xad\x72\xf5\xa9\x3b\x65\xbc\xc8\xce\x6d\xc1\xe7\xb6\x97\x32\x6f\x03\xee\x67\xed\x7a\x56\x16\x36\x7f\x98\xc7\x6e\x4e\x14\x92\xa2\x56\x73\x92\x72\xa4\x05\x05\xfd\x89\xee\x3f\xa5\xe5\xaa\xb3\x7b\xdc\x7c\x18\x9d\xea\x52\xe0\xd1\xe5\x6a\xdf\x82\x56\x64\xdc\x8c\xfe\x04\xcf\x76\xb5\x67\x42\x7b\xe7\xc7\x68\xb7\xda\x37\xa1\x31\xea\xed\xa2\x66\xbe\x5d\xa5\x8f\x30\x85\x07\xb1\xcd\x1a\xa0\x03\xa6\xf7\x97\x0d\x9a\xf0\x5a\x3a\xa4\x9b\x44\xd3\x7c\xd0\x74\x92\xb3\x84\x2a\xf4\x05\x08\xb8\x3c\x4c\x74\x97\xd0\x0a\x9d\x0b\xa5\x7d\x05\x9e\x50\xee\x85\xb4\x1c\xfb\x32\x70\x0e\x81\xe3\x7c\xa8\x31\xea\xf5\x64\xf5\x33\x18\x32\x16\xf5\x25\x8e\x6c\x8c\x8e\x12\x40\xfd\x9d\xbc\x7c\x45\xf2\x8a\x93\xe7\xab\xfd\xe4\x8c\x93\x17\x5f\x92\xdf\x38\x39\xc1\x52\xf3\x87\x50\xb5\xaa\xb6\x5c\xe8\xf3\xca\xb8\x90\xe8\x02\x16\x95\x54\x6d\x86\x28\x86\xe3\x25\xea\xc5\xae\x24\xac\x37\x97\xcc\x4d\x42\xb8\x0e\x41\xe9\xc6\x77\x70\xf3\x6c\x79\xc2\xbb\x3f\x1f\x54\x21\xa4\x73\x5e\xb4\x63\xb4\x34\xbc\x6a\xd5\xd6\x21\x7c\x46\xa9\x90\x8b\xb9\x16\xac\xb3\x39\x48\x1b\xa7\xc2\xf5\x97\x3e\x01\x92\xae\x1a\x8e\xd6\xcf\x47\xcc\x17\xaa\xdc\xbc\xf0\x82\x96\xcc\x35\xd8\xca\xec\x3c\xd2\x7e\x7e\xd5\x47\x17\x32\x18\x9e\xdf\xe5\x0a\xca\xfc\x84\xc3\xf7\x5a\xa8\x94\xbf\x4c\x35\xe1\x28\xb8\xdd\x0b\xc7\x81\xbd\x87\xfa\xa4\x7b\xa2\xaf\xe3\x20\xd0\xfc\x5a\xdc\x9a\xca\x02\x11\x94\x6a\x16\xd4\xd1\x81\xc3\x37\xa9\x23\xf3\xac\x3e\xc1\xff\xa4\xfd\xc7\x0b\xe3\xac\x65\xc1\xea\xf4\xe4\x99\x37\xe1\x84\xc9\x98\xe3\xfa\xfc\xe3\x17\x6c\x32\xd6\xc6\x50\x95\x76\x22\x8c\xf9\x04\xb0\xba\xd1\xd7\x50\x8e\x2e\x9e\x70\xa9\x58\x36\xe6\xf9\x98\x30\xfc\x81\xf5\x72\xad\xd6\xd2\xe4\xf1\x45\xf7\xe5\xf4\xc5\xd2\x9f\x98\x9e\x10\xb0\xd1\x2c\xa6\xc5\xcc\x09\x87\x67\xd7\x4a\xf1\x4a\xb7\x39\xd1\x45\xa4\x98\xd2\xea\x76\x87\x13\xe7\xa4\x5d\x38\xb9\x7a\x7b\xe4\xe7\x7c\x2d\x2b\x2d\x3f\x51\x05\xb7\xc9\xc1\xe2\x9a\xad\x6d\x95\xfe\x96\x53\xab\xe6\x6a\x27\x8a\x4f\x22\x41\xa3\x68\xd1\x18\x5a\x3a\xe6\x0a\x25\x64\x07\x5f\xe4\xf1\xbf\x92\xd2\xf4\xbf\x8f\x92\xbc\xc7\x2c\x84\xa2\xc1\xe6\x60\x76\xfa\xfb\x6f\x13\x2b\x12\xee\x42\x32\xd2\xbc\x7a\x61\xa9\xbc\x9c\x34\xfb\x56\xe2\x8b\x7d\x93\x0b\x52\x22\x5c\xdd\xb1\x9f\x09\xf2\x53\x5e\x42\xd8\x4e\xd8\xd3\x83\xf5\x54\x67\xfa\x9b\x1c\x10\x3c\xbd\x72\x42\x58\x75\x27\x97\x63\x1e\x2b\xfc\x7f\x09\x8e\x28\xe5\x5f\xb6\xa1\x0e\x0a\xb8\x68\x57\x64\x70\x22\x4f\x0d\xb3\xf5\xf4\xd6\xf0\x0b\x34\x32\xd0\xb1\xe9\xd8\xa6\x69\x63\x9b\xf6\xae\x70\xae\xe6\x51\x57\xfd\x95\xbb\x1c\xb2\xf0\x42\xc2\x37\x9a\x3b\xec\xec\x6d\x91\x21\x5b\xd0\xaf\x71\xa1\x83\x76\x69\xae\xe0\xc1\xec\x7f\x74\x59\x25\x56\x5f\x17\x10\x17\xe0\xfc\xbf\xc3\x0b\xfa\x7b\xbc\x20\x10\xaa\xa3\x59\xc1\x92\x87\xc6\xb3\x72\xa2\x57\x63\xc9\xa6\xf0\xcf\x09\xee\x28\x96\x2b\xb8\xc6\x63\x66\x02\xe9\xa4\xc1\x51\x3e\x0c\x47\x61\xf8\x30\x93\x27\x13\x43\x39\xac\x20\x2e\xf8\x3b\x5a\xad\x55\xa5\xf7\xd3\x44\x9f\xa0\xe2\x2b\xa9\xe7\xfd\x0f\xd9\xb7\x66\x3f\x9a\x1f\xbc\x56\x2f\xbf\x2d\xcd\x07\xbb\x7f\x12\x3e\xc8\x79\xfc\x6c\x75\x85\xd7\x8e\x6d\x1d\x52\x02\x7e\x86\xa8\x0b\x75\xa4\xbe\x30\x3a\xc0\xc0\x23\x7d\xb2\xcd\x08\xca\x5f\x90\xf1\x9b\xe4\xd0\x7b\x0e\xa1\xa5\x47\xea\xf4\x05\xed\x8e\x73\x79\x26\x2f\x71\x76\x30\xda\x75\xd0\x31\xbe\xd5\x72\x72\x32\x60\x9b\xe4\x6a\xc4\xbb\xff\x93\xdf\x1e\x7b\x86\xf1\x79\xc2\xb9\x62\x0e\x11\xad\xdf\x9a\xa6\x8a\x37\x0e\x0c\xbc\x52\x27\xa0\xf8\xe0\x5d\xd3\xfa\xd1\x1d\xbb\x9d\xe2\x40\x5f\x88\xcc\x22\xb6\x2b\x94\xd8\x75\x34\xdc\xf8\x1e\xf7\x93\x8d\xa8\x25\xfe\x68\xfb\xe3\x05\xd6\xa8\x75\x02\xd4\x1a\x58\xae\xe8\xb1\x45\xe0\x1d\x4e\xd6\x0f\xb9\x83\xf2\xd9\x87\x0a\xe3\x24\xea\x54\xf3\xc5\xb4\xb6\x30\x9d\x49\x04\xcb\x67\xf2\x0d\x1e\xb5\xe0\x52\x7f\x21\xbb\x2b\xd4\x5c\x85\x7c\x74\x1f\x1c\x4d\x7f\x0d\xe3\xf1\x46\xab\x2d\xbc\x0b\x11\xcb\xeb\x9c\xc0\xfc\x14\xec\x9a\xae\xd2\x80\xa3\x34\xdd\xe6\xd9\x4f\x08\x09\xff\x19\x49\x17\x7e\x23\xb3\xef\x62\x6f\xd9\x87\xb8\x68\x6f\x02\x3e\x31\x9d\x8f\x8c\x11\xa0\x2b\xdc\xf6\x39\xa6\xe4\x9a\xa7\x52\xae\xe1\x66\x69\x7f\xf0\xc6\xc4\x02\xee\xec\x80\x09\xe4\x42\x13\xc8\xe9\x44\x03\x43\x16\x4a\x86\x64\x7f\x01\x2d\x7e\x81\x4f\x1a\x88\xe3\x07\x4a\x9e\x56\x2f\xbf\x0b\x36\xdb\x70\xd7\xae\x50\x2f\x19\x81\x8a\xd8\x6e\xaf\xb8\xc3\xe7\x84\x92\x6e\x54\x97\xdd\xf3\xe9\x94\xc5\xcb\x51\xab\x39\x25\x1f\x23\xd2\x61\x16\x32\x59\xc8\x2f\xc9\x23\x21\x46\x28\xe3\x5e\x98\x41\x7d\xed\xe6\x7f\xef\x3e\x3c\xa7\x7d\xb8\x51\x02\xac\x4d\xb5\x99\x8c\x18\x77\x4c\x2e\x10\xc7\x71\xa1\x39\xb8\x66\x13\x11\x91\xb1\xf3\x29\x71\x8c\x41\xb5\x8e\xb1\x81\xcf\xe5\x89\x34\x45\x3c\x7d\x87\x54\x69\x17\x1d\x7e\xf7\xa0\xcb\x79\x1c\x1a\xed\x95\xf6\x0d\x1b\xd0\xb4\x2e\xc1\x01\x08\xd8\x1e\x3b\x09\x08\xa0\x79\x1d\x8e\x2f\x38\xe9\xd7\xb6\x9e\x75\x7e\xd3\x52\x62\x4f\xf8\xc5\x40\x17\xd2\x0d\x0d\xf5\xb5\x54\x90\x5b\x99\xfc\xc4\xb1\x11\xe6\xf5\x7c\x5a\x2a\x38\xe6\x6b\x8f\xe0\x1c\x7d\xdd\xb9\xf5\x5d\x34\xda\x02\x8b\x53\xc0\x59\x58\x07\xc2\x5e\xc3\x05\xd9\xe7\xeb\x67\x16\x36\x7f\xc7\xf7\x93\xd9\x75\xff\x03\xbd\xf6\xa6\x1d\x80\x85\xff\x87\xbb\x77\xdf\x6a\x62\xd9\x1a\x47\x5f\xa5\xf4\xb7\xb7\x49\x24\x24\x80\xe2\x05\x37\xcb\x2f\x09\x11\xa3\x22\xca\x45\x54\x60\xec\x34\x9d\x4a\xd2\xd0\xe9\x8e\x5d\x1d\x42\x54\xce\x38\x0f\x71\x9e\xf0\x3c\xc9\x19\x35\xe7\xac\x5b\x77\x87\x80\xae\xb5\xbf\xb5\xcf\xfa\x63\x49\xaa\xab\x66\xdd\xe7\xad\xe6\x05\xee\x3c\xa0\x90\xc3\x37\xb2\x5e\x0f\xcd\x12\x2e\x23\xa5\x1b\x83\xd8\xa0\x98\xd0\x55\x12\x11\xfb\xb1\x56\x20\xa5\x79\xd2\x5c\x8f\x55\x6d\xa1\x32\xc5\x3d\xdd\xd3\x37\xfc\xfc\x5d\xa1\x03\x76\xf8\x0e\x23\x29\xc1\x11\xe6\xeb\xa0\x53\xf8\xf8\xf8\x88\x24\xca\x21\xf0\x38\xfb\xeb\x20\xea\x7e\x7c\x72\x24\x25\xc6\x47\xaf\x56\x91\xa4\xa1\xb4\xfe\x59\xa0\x19\xfa\x12\xdc\xd6\x4f\x8f\xc0\x38\x65\x67\x0d\x17\x16\x8d\x98\x42\x12\x04\x3b\x01\x11\x50\x29\x69\x87\x34\x38\xd8\x95\xcf\x53\x60\xb3\x9f\xa0\xe3\x31\x85\x47\x3a\x1f\x37\x2d\xeb\xd8\xc9\x98\xe6\x74\x89\x7f\xbc\x7d\xfc\x1a\x1f\xc9\x1e\x0f\xe9\xc5\xf2\x8a\x3e\x0c\x2e\x30\x06\x22\xb8\x0d\x35\xe2\xe6\x55\x78\xb3\xc1\xce\x05\x04\xda\xda\x7f\xde\xce\x13\xfe\x67\xef\xe4\x85\x89\x5a\x5b\xa8\x16\xbc\x82\xe5\x58\xb2\x20\xea\xdd\x3e\x7f\x55\x18\xc7\x29\xf8\x0c\xb0\xcf\x3f\x23\x9a\x1c\xc1\xaa\x3a\x61\xb2\x46\xa8\xcc\x7f\x7a\x86\xe6\xe8\x60\x05\x25\x81\xae\x7d\x71\xe8\xda\xd1\x05\x6e\xcd\x05\x3c\x3e\xef\xa6\xce\xc6\x8c\x3e\x83\xd6\xea\xed\x3a\x39\xf7\xa8\x87\x51\x33\x4c\x15\xa0\xe7\xbb\x1b\xe6\xea\xf1\x1e\x7a\x61\x3c\x45\x4b\x96\xc7\x07\x78\x1a\xfd\xc6\xb4\xb3\x33\xdc\xab\x06\xcd\xc6\xe5\x45\x73\x5e\x4c\xa7\xe7\xef\xad\x38\x48\x14\x37\xee\xea\x10\x15\x2f\x98\xff\x10\x6c\x7a\x93\x66\x47\x29\x26\xde\x9e\x37\x0f\x94\xae\x42\xae\x59\x73\x5f\x7d\xe9\x48\x1e\xf5\x4b\xe3\x29\x44\xeb\x68\xbd\xab\x5e\xb4\x40\x11\x05\x32\xfc\xf3\xf3\x66\xb1\x0a\x17\x29\x88\x3c\x05\x9f\x5b\x26\xae\x8a\x38\xa7\x67\xca\x76\xa3\x75\xa6\xad\xd1\x3e\x3f\x3d\x30\x31\x92\xb6\x93\x66\x75\x09\x63\xc7\xb6\x24\x9a\x8b\x76\x4d\x18\x97\xcf\x06\x7e\x40\x6e\xfc\x87\x8d\x56\x6f\x7d\xef\xce\x3d\x04\x2d\x08\x5f\x02\x2e\xfc\xcf\x77\x0d\xd8\xcf\x4a\x15\x44\x4e\xaa\x48\x3e\xf7\xde\x2a\x1d\x44\xeb\x83\x9f\x0f\x25\xd0\x96\x48\x41\x77\x15\xb5\xcc\x5b\xad\xec\x6a\xd0\x02\x85\x5a\x4b\xb2\x3e\x21\xea\xc3\xc1\xec\x68\x69\x40\x23\x3d\x6c\xb4\xce\x56\x2f\x7e\xbb\xb7\xfd\xc6\xb4\x99\x34\xa7\x07\xc6\xe6\x7d\x87\x3e\x01\x15\x78\xbb\x8e\xdb\x8f\xa1\xb4\xc4\xa1\xb2\xe9\x6b\x80\xb7\x70\xbd\x85\x81\xba\xd0\x64\x64\x67\x09\xf2\x61\xef\x80\x37\xcf\x6a\xf3\xf2\x73\x3e\x16\xd7\xec\x90\xde\x65\x77\x24\x65\xc1\x2d\x46\xeb\xfe\x9d\x11\x04\x9e\x3e\x82\xd7\xef\xa7\xcd\xe7\x81\x0e\x10\xd2\x3a\x18\xa0\x01\xe5\xe1\xd8\xa9\x49\x46\x79\x1d\x94\x00\x29\xe4\x4b\x63\xfb\x11\x84\xab\xdd\x4d\xc8\xcd\xea\x2d\x66\xe9\x6e\xa5\xad\xc0\xd3\x32\xc1\x27\x8a\x63\xe4\xe9\x68\x31\xdf\x1d\xd0\xbb\xf2\x48\x77\xea\x4d\x3b\xfc\x57\xf4\x55\xd9\x8c\xb7\x3e\x4d\x30\x55\xb2\xa4\x66\x9f\xbe\xbd\x37\xf4\x21\x55\xae\x3e\xfb\x8d\xd6\xa7\x95\x5d\xd3\xa0\xfe\x56\xbb\xe6\x7c\x40\xf4\x2c\x45\xf2\xbd\xb5\x50\xfb\xff\xb4\x3e\x63\xbc\x82\xdd\x6f\x9f\x17\xaf\x3b\x06\x57\xc2\xad\x24\xf5\xe0\xdb\x46\xeb\xe0\x9c\x14\x88\xbb\x8d\xd6\xde\x6a\xd3\x84\xff\x58\xff\x80\xbd\xef\x9a\xde\x65\x95\xb5\x8b\xa6\x13\xdb\x2b\x39\xc3\xc1\x5c\x34\x1b\x6f\xfb\x83\x33\x33\xad\x50\x6d\xc6\xd1\x6f\x6e\xc6\x36\x59\xe3\xbc\xc5\x1d\x19\x79\x05\x6b\x7f\x28\x51\x2a\x84\x75\xfb\x06\x16\xb1\x30\x55\xf4\xd2\x1b\xb7\xc2\x4f\xce\x88\x7d\x9c\xcc\x51\xa3\xf5\x01\x31\xe4\xce\xe0\x88\x0c\x57\x65\xef\x7a\x06\x4f\x9b\xe9\xa1\xaa\xda\x91\x92\x25\x2a\x53\x5f\x1b\xd0\x89\x05\xda\xb7\x40\x1f\xde\x0d\xf4\xf4\x90\xa2\xdb\xbc\x31\xa0\x23\x0b\xb4\x24\x62\xbf\x0a\x7b\x76\x48\x8a\xe5\x77\x06\x76\x6a\xc1\xf6\x7e\x0d\xb4\xdf\x98\xf2\x58\x85\x25\xa1\x58\x54\x5e\x71\xb4\xb6\xa5\xdd\x6a\xa7\xba\xf2\xaa\xfd\x34\x6e\xb6\x26\xc0\xaa\x5c\xb4\x42\x0c\x58\xbe\x7f\xd9\xbc\x48\x21\x0a\x6f\xab\xf5\xf8\xd5\x67\xb8\xf3\x2b\xcd\x28\xb5\xde\xb4\x62\xe7\x4d\xeb\x0a\xdf\xb4\x62\x10\x81\xfc\x04\xd5\x4a\xe2\x6b\x41\xc4\x56\x54\xd4\xe0\x53\xc9\x55\xeb\x39\x26\x0f\xfa\xc5\x10\x4b\xbf\x10\x80\x16\xbd\x48\x2f\x9a\x18\xe1\x63\x67\xfa\x15\x19\x6e\x68\x86\xef\x4e\x63\x1c\xe2\xb7\x96\xfb\x2e\xf3\x9d\x54\x65\x5f\x21\xbf\x1c\x3d\x43\x2c\x15\x84\x71\x1a\xb6\xcf\x71\x15\x6e\x13\xb6\x56\xbf\xa9\x3c\x6a\x61\x50\x83\xa2\xd7\x09\x3a\x33\x4e\xd4\x25\xf3\x62\x81\xf7\x0a\xb4\x7c\x1d\xe4\xa7\xea\x07\x2a\x8e\x10\xda\x32\x7c\x39\xff\x62\xe4\xc8\x3f\x3b\x7c\xe8\x08\x84\xc5\x2f\x68\x57\xf1\x51\x00\x5a\xc5\x47\x90\x83\xf5\x1e\xf2\xea\x94\x51\x1c\xda\x3a\x20\xce\x51\xec\x85\xa3\x0f\x52\xd3\x3e\x55\x5d\x91\x9c\x43\x0b\xd9\x8a\xdd\x55\x04\x0d\x2e\x5f\xad\xfe\x07\x90\x1e\x3e\x1a\x47\x42\xa4\x59\xef\xe0\xef\x57\x96\x19\xfc\xe5\xd7\x6a\x26\xca\x90\x1d\x56\x54\x31\x46\xa1\xcb\x6f\x3d\xfb\x2a\x71\x69\xd8\xfc\x0e\xf9\x65\x96\xb6\x0e\xc5\x87\x2a\x6f\xac\xbe\xbb\x4d\xd8\xcc\x6f\x5f\xd4\xd3\x4f\xeb\xf3\xf8\xd0\xc4\x29\xfa\xb6\xbf\x00\xc3\x9e\x9f\x37\x55\x78\xa1\xd6\xc1\x4a\x40\x54\x6a\xa7\xd1\xea\x8d\x55\x20\xd2\xc3\x46\xfb\xd3\x93\x8f\x79\x0a\xfc\x04\x31\xf2\x77\x20\x01\xeb\xcd\xef\xdb\xf3\xa2\x5a\xa2\xf2\x40\x8e\xf3\x52\x79\x0b\x38\x2e\x0b\xb6\x22\xad\x7d\xd9\x32\x02\xd3\xe3\xe6\x7c\x06\xc2\xee\xbd\xf1\xf1\xd1\x76\xfe\x53\xab\xea\x37\xda\x57\x6d\xf5\x86\x26\x37\xba\xb9\xda\xb2\xf0\xa7\x64\x8e\x34\x51\x6e\x38\x38\x7b\x5c\xc0\x71\x10\x58\xb9\x86\x6f\x87\xad\x8e\x19\xe6\x6a\x48\x8c\x14\x3c\xe8\x6b\xd1\xaf\xa1\x62\x38\xbd\x3d\x6f\xae\x85\x4d\xc3\x16\x25\x2d\x15\x01\xaa\xd5\xb3\xab\x93\x97\xf5\xdb\xb0\xf9\xd8\x8e\x5a\xfa\x15\xb7\xfc\xa8\xd1\x39\x58\xba\x65\x34\xd3\xb7\xe0\x87\xae\x07\x78\x71\x38\x7f\x1d\x4d\x93\xc6\xce\xc1\x9c\x45\xbc\x9c\xb7\x88\x41\xb3\xb1\x73\xd9\x3c\x3f\xbc\x65\xdc\x54\x8c\xfb\x77\xab\x61\x99\x26\xf3\x87\xf5\xfd\xe6\x61\x2d\x35\x55\x20\xbf\xed\x4f\x9e\xe9\x35\x52\x5b\xd1\x5e\xc4\x82\x40\x66\x99\x27\x56\x54\xae\xa7\xa3\xa6\x61\x7f\x1e\x7f\x50\x6e\xd8\xad\x83\x67\x4d\xc3\xb6\xcf\x3e\xd1\x6a\xf8\x8d\xd1\xf6\x17\xa4\x86\xdf\x05\xdd\xd5\xc0\x8a\xd2\x35\x39\xaa\x6e\xb7\xc6\x6f\x5b\xa8\x88\x5c\x69\xa6\x93\x45\x24\x6e\x82\xa6\x62\x57\xa8\xbf\x9f\x7a\x16\x25\xf2\xbf\x63\xe1\x8a\x87\x91\xf8\xb0\xf0\x11\x16\xae\x79\xf8\xd4\x8d\x75\x16\x92\xb6\x99\x47\xda\x77\x6c\xfd\xd8\x93\x2c\xd2\x25\x51\xbc\xa7\x9e\x45\xbc\x12\xf2\x0a\xd9\x7d\x8e\xa5\xcf\x3c\xd0\x64\x61\xd2\xf0\xb7\xeb\xb6\x29\xc3\xe7\x11\x14\x7a\x75\xac\xb9\xe4\xa1\xeb\x28\x5a\x06\x0c\x31\x6a\xf9\xe0\x0c\x49\x70\x44\x41\x3a\x46\x08\x20\x02\x9e\x14\x5e\x71\xc1\x7b\x0f\xf7\x6a\xe9\x13\x98\x16\xa0\x0f\xf3\xd1\x39\x42\x08\x08\x02\x26\xdc\x3b\x5c\xc7\xaa\x8f\x3f\xe1\x5c\x29\x16\x74\x88\x75\x2f\xa8\x2e\x0e\x21\xc2\xc2\x91\x53\x88\x2e\x45\x3b\x31\x15\xae\xa2\xf7\xf0\x2a\x2e\xe0\x0a\x1c\xe8\xb3\x08\x49\xc4\x0c\x4f\x29\x86\x6b\xef\x4d\x0f\xe7\x52\x54\x12\xb9\x20\x3a\x66\x83\x5b\x64\x55\x87\xc3\x6d\x7c\x51\x32\x01\x30\x50\xa0\x68\x52\x65\xc6\xd9\x94\x22\xe4\x2a\x1b\x5d\x53\xe5\xb0\xd1\x8e\x3e\x8e\x0e\x71\x0f\x8b\x5e\xbc\x97\xd0\x27\xfd\xeb\xf9\x04\x6f\xc2\xb7\x6f\x64\xce\xb6\x85\x4a\xd0\xba\x3a\xad\x9e\x79\xfd\xfe\x42\xaf\xdf\x6d\xf7\xf5\xbb\x6d\x5e\xbf\x27\x98\x65\x17\x23\xbb\x0d\xe8\xc1\x21\x40\xde\xae\x79\x6e\xaa\xb6\xc3\xd6\xc5\xeb\x6a\xbb\x35\x6c\x6f\x27\x97\x4d\x0c\xca\x28\x19\xbe\xed\xad\xc1\xf6\x18\x83\x2c\x1c\x41\xa4\x9d\xf6\x67\x38\x38\x02\x73\x2c\x9c\x41\xac\xc3\xd6\x01\x7a\xac\x3d\xc3\xd7\xee\xe7\x60\x97\x47\x51\x10\x97\x94\x71\xba\xd7\x68\x1c\x3c\x85\x27\xbb\x01\x10\x13\x68\xd3\xfa\x4e\x1a\x9f\xef\x5f\x95\xc2\x07\x4f\xd9\x97\xd5\xcf\x16\x87\x12\x5b\xf1\x5b\x1f\x6d\x2d\x0c\x4a\x38\x81\x07\x86\x23\xbc\x91\x1f\xa7\xc8\x1b\xe1\xbb\x92\xc5\x96\x1c\x36\x5a\xdf\x5f\x35\x2c\xfe\xe0\x31\xa1\xa6\xb7\x8d\xd6\xa7\x31\x68\x2a\x76\xce\xe1\x71\xe2\xfd\x13\x88\x2f\xf1\xb4\x05\x2f\xad\x8d\x6f\xcd\x94\x5e\x4b\x85\x6f\xfb\x34\xc2\x03\xcb\xfb\x41\x40\xd6\x08\x50\xca\x57\x5f\xa1\x3e\x6a\xe5\x95\xfa\x49\x8f\x6e\x9d\xc6\xb4\xf5\xbd\x39\x93\x0c\xfd\xb8\xc5\x11\xbb\x7c\x47\x05\xb8\x2c\x35\xcf\xda\xf8\x22\xf4\x2e\x03\xf7\xf2\x15\x86\xf6\xc2\x54\xa8\xf2\x27\xbd\x1e\x75\x1a\x4b\xcd\xab\xe6\xda\xf6\x4d\xbc\x0e\xa8\x33\x8d\xd9\xde\xfa\xd6\xb3\x2f\x96\x7a\x10\x95\xa0\x90\xd8\xe6\x60\x1b\xd1\x26\xf2\xb1\x12\x55\x19\xce\x48\x9c\xa1\x26\x6a\xd8\xb2\xd6\x70\x1d\xf4\xd6\x9d\x35\xd0\x8c\xf2\x47\x10\xe4\x21\x02\xcb\x13\x13\xc5\x2c\x4e\xe5\x32\x42\xec\x21\xc8\x98\xf6\x68\x48\x87\x15\xad\x75\xd1\x06\xd1\x8b\xf0\xdf\x1d\x60\x61\x77\x07\x43\x88\xc9\xf1\x1c\x22\xc7\x35\x06\x10\xd8\xa6\xfd\x15\xe2\xfd\xe1\x32\xed\x3f\xa2\xfb\x3c\x02\x23\xf2\xa5\x66\xd8\xfc\x60\x8d\xeb\xfc\x0c\xd6\x63\x09\x34\x40\xef\xb6\xad\x2f\xf6\xe8\x57\x3f\x59\xc3\x8c\xbe\x6a\xcf\xc7\xd6\xfb\x29\x32\xea\x3e\x06\xf4\x47\x3c\x2e\xa5\xad\x67\xdb\xeb\xcd\xf3\x2f\x55\xbf\x71\xb9\xfb\x16\xc3\x27\xd9\xc1\x29\x57\x77\x14\x1b\xd7\xfe\x3c\x0d\x2d\x9e\x2e\x6c\x9a\x70\xb6\x03\x2b\x12\x43\x5b\x8b\x77\x7b\x57\x3d\xa3\x5e\x58\x79\x6f\x88\xe3\xf7\x2f\x85\xc2\xfe\x76\xb1\xc2\xed\xf1\x87\x6a\x61\xb8\xe3\x58\x65\x8d\xe8\x34\x26\xef\x05\x89\x87\xdf\xc7\xcd\x7c\xb0\xdc\x95\xcf\xd5\xed\xea\xc7\xf6\xf3\xdd\x2f\x60\x1b\xdc\x78\xdc\x5c\xbd\xcc\x29\x29\x93\xf6\x1a\x46\xd9\xda\xae\x2e\xbd\x6a\xb4\xb6\xaa\xd3\x66\xeb\xd5\xd1\xd6\x6d\xea\x4f\x3b\xb2\xfe\x97\xdb\x56\xbf\xd8\x96\xd5\x67\xcd\xd6\x14\x83\x58\x36\x2e\x5a\xeb\xba\xc1\x13\xac\x05\xac\xf2\xb8\x4d\x81\x6c\x9f\xeb\xcf\x4b\x97\x44\xd4\xc1\x85\x01\xbf\x4f\x5b\xc3\xa9\xfa\x1e\x4c\x9b\xd8\x04\x9c\xf8\x5f\x51\xdc\x82\x70\x6a\x71\x00\x17\x6e\x92\x14\xe4\x00\x46\x3e\x0a\x49\xe8\x3b\x43\x84\x3d\x63\x10\x38\xc3\x87\x4d\x8c\x76\xf6\xad\x09\xca\xbe\xa8\x1d\xfa\x79\xda\xdf\xbe\xa5\x0c\xab\x92\x5d\xb7\x86\x5b\x01\x9a\x5d\x93\x27\x3c\xd2\xfb\x71\x73\x0a\x0b\xb8\xa6\xc5\x6c\x10\x30\xe1\xa5\xcf\xdf\xb1\x2c\x29\x27\xcd\x4b\x6a\xd7\x2c\xf0\x7d\x99\x01\x2e\xd5\x1e\x3c\xb4\x26\x57\xd8\x62\xe6\x53\x08\x63\xc0\xe2\x17\x64\x82\x87\xf1\x4b\x70\xa6\x6b\x38\xd3\xf4\x15\xa2\xe6\x2c\xa3\x71\x09\x3f\xff\x3c\xc1\xd8\x10\x6f\x13\x8c\x87\xd8\x4f\x8a\x4a\x4c\xc1\x21\xda\x57\x1d\xf4\x69\xda\x1d\x7e\x45\x8c\x02\x7e\xe3\x8d\x29\xb8\x79\xb5\xea\xe8\xe7\x1d\x37\x91\x57\x33\x5f\xeb\x68\xe6\xdb\x46\xaa\xb5\x3a\xd1\xef\x37\xe8\xda\xf4\xe5\xa9\x2d\x58\x0f\xac\xd8\xb4\x57\xaf\x8c\xa8\x41\xd4\x6a\xab\x80\x82\xad\x92\x01\xf6\x3c\xe1\x7a\x46\x36\x73\x94\x84\xe3\x31\x28\xca\x9e\xbf\x7a\xfc\x05\xa0\xdb\x14\xaf\x75\xde\x24\x2c\x63\x93\xbc\xf6\xb8\xa9\xf1\x5a\x5b\x0e\x05\x55\x74\xc9\x57\x3d\xec\xa8\x49\x0a\x84\x0e\x86\xfb\x0a\xc0\x5d\xe2\xf5\x16\x3e\x64\x3d\x9d\x34\xf1\x29\xeb\xc9\x84\x42\x5f\xb5\x1a\xad\xd5\xd6\x3a\x2c\xfd\x45\x2b\xfa\x06\xdb\x76\xd5\x44\x6e\xa6\xf1\xf6\xb9\x87\x51\x5d\x80\xbe\x8c\x90\xf0\xa7\x70\x78\x28\x6e\xf3\xee\x45\x3f\x53\xf1\xa8\xd1\x4e\x5f\xcd\x60\x77\x57\x60\x85\xa1\xbf\x29\xde\x4d\x7c\x86\x78\xbe\x75\x09\x81\x83\x96\x54\x87\x49\x6b\x65\x42\x6c\xd0\x77\x7f\x51\x8f\x4f\x06\xb9\xaa\x47\x8d\xf6\xf0\xf5\xf9\x97\xaa\x1b\x92\x3c\xd8\x3e\x7c\x06\x72\xcb\xfa\xad\xc4\xfd\xcb\x66\x5e\xc8\x02\x8d\x57\xe3\x6d\xf8\x55\x4a\x8a\xeb\x4d\x7a\x5c\x82\xb0\xc1\xa1\x25\x09\xad\x7e\x56\xa1\xe5\xb7\xfb\xc2\x92\x7f\x8d\x1a\xf8\x6f\x22\x58\x76\x2e\xad\xd1\x2d\x96\xc7\x87\x47\x96\x10\x6a\x3d\x4f\xfc\x3d\xc4\xd1\xdb\x4f\xc6\x6f\x3c\xeb\xbc\x42\x22\xf9\x28\xd1\x29\x6a\x34\x8d\x14\x5f\xab\x9d\xaa\x78\xdd\x5a\xdd\x6e\x0d\x01\x39\x15\xf8\x6c\x7e\x41\xde\xed\xa2\xd9\x78\x9b\xb6\xd7\xf0\x34\x4f\x9b\x8f\x16\x12\x97\xc7\x3e\x62\x22\x8c\x1c\xb1\xf3\xa4\x5d\x60\x3c\x3e\x00\xeb\xbb\x25\x0b\x49\x5e\x6e\x91\x21\xf7\x73\x8a\x8e\xe2\x15\x18\x72\x0b\x50\x1a\x0b\xb2\xc6\xdf\xa2\x78\xf0\x18\xcc\x61\x67\xd0\x93\x7c\x45\x4a\x76\xf5\x70\xcb\x42\x54\x6b\x8e\x28\x9d\x05\x46\x9b\xe7\xe7\xbd\xaa\xd1\xd4\x26\xb7\x0e\x86\xef\x63\x6f\x21\xb6\x7e\x46\xd1\xe7\xbf\x7d\xc5\x75\x89\xb0\x38\xee\x15\x2b\x57\x33\x46\xef\x75\xa5\x93\x4d\xb0\x99\xe8\x55\x79\x63\xfb\x39\x5c\xd7\x57\x6f\x5e\xd9\xc4\xa9\x41\x6d\x55\x9e\xb4\xf6\xb9\x1c\x02\x44\x11\x18\xf5\x50\x3a\x4b\x7d\xa4\x2c\xdf\x7c\x12\x5d\x88\xb4\xb4\xc2\x36\xea\xb1\xef\x90\x22\x64\xf2\xa9\x7a\x47\xed\x72\x40\x53\xb9\xc2\xa9\xcc\x7a\xb7\xcb\x2a\x12\x34\x57\xb1\xc1\x6a\xbb\x20\x2c\x53\x8c\xc2\x43\xdc\x22\xa5\x37\x91\xf1\x47\xd8\x64\xad\x07\x09\x5c\x9e\x37\xc9\x6d\x72\x1d\x8b\x9f\xf4\x16\x0e\x16\x0f\x65\x21\x29\xce\x84\xbc\x2b\x4a\x65\x42\x8a\x6a\x12\xb1\x8d\x02\xdb\x8e\x9c\x37\x6d\xc2\xd2\x7a\x8d\x76\xf8\xa1\x30\x67\xc5\xa3\xe6\x14\x37\x05\xdf\xa7\x9f\x1a\xae\xbd\xb1\x8f\x31\xac\xde\x68\xb6\xf7\xbc\x85\x22\x39\x66\x4a\xbe\x40\xad\xfc\xf3\x2b\xe3\xd7\x5a\x6f\x5e\x28\x31\x0b\xfc\xf5\xbf\x41\xa0\x88\x36\x85\x2a\xac\x5f\x82\x35\x4e\x8f\xf8\x48\xf8\x0d\xde\x71\x53\x39\xd8\xb7\x97\x78\x52\xae\xb6\x30\xc1\x4a\xa7\x15\xbd\x19\xb5\x12\x34\x55\xdb\x7f\x26\xe9\xd3\xd6\xe8\xcd\x55\x6b\x15\x23\xd6\x1e\xa5\xaf\xc1\x82\x3c\x98\x21\x90\x73\x72\xc8\xbc\x20\x8d\xfb\xfa\x37\xb2\x1e\x3a\xab\xee\xb7\xc6\x6f\x5a\x4f\xfb\xd5\xf6\x56\xfc\x46\x34\x31\x1a\x09\x7a\x9c\xca\xaf\x60\xc1\xb8\xdd\x1a\xbf\xb9\x6a\x05\x1f\xa0\xce\x63\xb4\x48\xab\xae\x35\x5b\xd1\x9b\xa4\x3d\x9c\xa9\xe0\x01\x17\x40\xc5\xa7\x70\x15\xd6\x5b\xcf\x90\x64\xee\x3f\x4a\x71\x04\x68\x82\xf2\x71\x72\x84\x01\x26\xbf\x54\x0f\xb7\xe2\x37\xf5\x76\x1d\xee\xed\x3c\xd3\x38\xcc\x9f\xad\x96\xe2\xf0\x9b\xa7\x4d\xe3\xde\x52\xac\xe6\x56\x0b\x03\x67\x91\x51\x1c\x66\x49\xf6\xc7\x47\x10\xdc\xaa\x15\x73\x3c\xbd\x8f\x7c\x23\x8e\x36\x6f\x91\x78\x60\x0d\xce\xa8\xf7\xf4\x2b\xcc\xdf\x4d\x2b\x33\xfd\x8a\x5b\x78\x09\x75\x3e\xc6\xf8\x84\x3a\x44\x43\xf3\x23\xe4\x28\x3f\xae\xa3\x98\x7b\xc1\xf3\xaf\x15\x87\x53\x38\xe5\x87\x88\x3b\x3f\x3e\xf3\x89\x21\x3d\x6a\x34\xfa\x11\x3c\x7c\xae\x59\xf9\x4c\x90\xb1\xfc\xf6\x15\xcd\x8e\xcf\x61\x3e\x1f\xbf\x71\xa2\x33\xa0\xf1\xf8\x82\x17\xed\xe3\x1a\x60\x9a\xf3\xc3\xa4\x4d\x42\xe7\x36\x0a\x74\xdb\x8d\x76\x0b\x93\xc2\x7e\x19\x91\x3d\x76\xf5\x6d\xe3\x23\x84\x3e\x78\xdf\x01\xe3\xfd\x57\x78\x1c\xf8\x25\x88\xe0\x5f\x62\x55\x6d\x47\x22\x62\x72\x33\xf8\x44\x81\xc9\x86\xbe\xbd\x6e\x02\x9d\x51\xce\xd0\xd3\x6c\x1d\x26\xfa\xe5\xb1\x94\x74\xb7\x3f\x41\xbe\xcb\xf6\xab\x31\xf0\x8d\x9e\xf0\x54\x17\x47\x8d\x86\x1f\x2b\x54\x0c\xff\xee\x55\x77\x1a\x6d\xcc\x0f\x73\x29\x27\xdb\x69\xb4\x06\xf0\xab\x07\x38\x91\x94\x15\x52\x36\x6d\xad\x40\xf9\xd3\xa6\x01\xf7\x45\xa2\x91\x89\x67\x4f\xa0\xfa\xb1\xd1\xf9\xfc\xf4\xf3\xc2\xf4\x43\x13\x08\x54\xda\xda\x7d\x7a\xa5\x4d\x82\xae\x28\x98\xd6\xea\x99\x3e\x32\xf5\xe2\x47\xac\x11\x86\x44\x82\x8c\x42\xad\xa8\x95\xf6\xaa\x56\xf4\x97\x95\x8f\x68\x97\x98\x68\xc8\x94\xda\x48\x10\xcf\xff\xfc\x1b\x1e\x18\xbc\x69\x17\x10\x2c\x72\x3b\x7c\x75\x35\x6b\xfe\xc2\xa8\x8b\xd2\x26\x19\x67\x49\x39\x9e\xd9\x1e\x6e\xe9\x73\xc8\x5a\xbb\xb2\xfd\x41\x7c\x90\xd7\xb6\xbe\x77\x97\x0c\x6d\xbb\x8d\xd6\xc1\xe4\x33\x31\x5d\x1e\xe8\x6c\x3e\x21\x52\xdd\x6f\xb4\xbe\x3e\xda\x36\x3a\x85\x29\x7a\xe5\xc2\x26\xb6\x86\xcd\xcb\xc4\xd2\xa2\x0b\xdb\x6e\x61\xda\x34\xca\xb7\xcb\x4f\xb9\x6c\x48\xed\x46\xab\xaf\x30\x36\xb8\x37\x3f\x53\x69\x29\x1f\x15\xbc\x0c\xad\x49\x3a\xdf\xbe\x6a\x39\xc6\x3c\xe3\xed\xdb\xb4\xd0\x9c\xda\xf9\xbe\x32\x89\x78\x7b\x36\xb3\x1e\xa6\xa2\x8f\x55\x9d\xc2\x49\x0c\x9a\xea\x39\x67\xbb\x77\x69\x99\xf8\xed\x17\xa7\x73\xda\x76\x12\x09\x6d\x61\x25\xbf\xd1\xe9\xad\x1d\x1a\x2e\x3d\xe4\x46\x86\xfb\x76\x4e\x1d\x78\x8d\x86\x17\xa2\xdb\x0c\x5e\x51\x1a\x7e\xfd\xb5\x5c\xf2\xe1\x96\x38\x57\xeb\xcc\x1b\x9d\xb0\xf9\xde\x80\xb8\xfc\x62\x1e\xa8\x9e\x7d\x51\x0f\x4d\x98\x7f\x44\x9b\x69\x0d\xbd\x3f\xfd\x01\xef\x49\xc7\xde\xf8\xf3\xd7\x37\x2c\xfe\x63\x48\xb1\x9f\xb6\x1c\x1e\x3a\x79\xed\x3e\xe9\x3c\xdb\x36\x9e\xea\xdb\xfd\x1d\x6b\x22\x43\x12\x71\x76\x1a\x4f\x76\x94\x0d\xc2\x70\x9a\xe7\x9f\x97\x24\xff\x3c\x7b\xd5\xbe\xdc\xff\x72\x7e\x2b\x25\xd3\xc5\xeb\x46\x6b\xab\x7a\xd8\x8a\xb7\xdf\xa0\x06\x86\xcc\xfd\x9e\xcf\x16\x05\x5d\xc2\x00\x88\x3b\x43\x8c\x61\x38\xe8\x4b\x44\xf6\x15\x93\xd4\xff\x22\x27\x7b\x97\x64\x73\x3b\x94\x4b\xbc\x15\x6e\xc5\x18\x51\xe2\x1c\x07\x12\xf4\xf1\x31\xa3\x8e\xec\xc2\x47\x4c\x4f\xbf\xf3\x7c\x07\x1e\x2e\x06\x14\x67\x3a\xc4\xca\x17\x38\x6a\xf4\xe9\xc4\xd8\xa8\x3b\x23\x08\x6c\xdc\x4f\x89\x9c\x2e\x4e\x38\xab\x45\x85\xf3\x1b\xd2\xcd\xd2\x1b\x67\x9e\x75\x3b\x42\x14\xde\xd8\xd7\xc1\x5c\xe5\xbd\x6b\x5f\x76\x28\x3a\x74\xf5\x6d\xa3\xfd\xf9\x09\x4c\xe6\xd1\xd6\x7b\x34\x01\x78\x84\x48\xf1\x9c\xc2\x29\x50\xa4\xb6\xef\xf8\xef\x5b\xf9\xbb\x03\x76\x81\x10\xa4\x83\x4a\x57\x20\x4d\x4a\xbb\x17\x5e\x19\xbf\x3b\x13\xd2\x63\x84\x78\x7e\x3f\xba\x72\x42\x7a\xc4\xf8\xf3\xcb\xd8\x2a\x0e\xd0\xb8\xb4\xde\x6c\x80\x17\xa5\x76\x77\x93\x72\x40\xf0\x1d\x10\x3d\xc6\x36\x3a\xab\xb6\x1a\x9d\x06\x98\x3a\xa0\x7e\x16\x46\xbb\x4e\xf9\x65\xdb\xf2\xfe\x60\x5c\x02\x72\xee\xde\xc1\xe0\x09\xbb\x8d\xa8\x89\xf9\x43\x76\xde\x18\xff\xe1\xaf\x78\x21\x5f\x57\x55\x38\xd4\x76\x7f\x9b\x8e\x93\x8a\xd4\xbd\x57\x07\x67\xa0\x77\x8f\x01\xaa\xc4\xcd\xdb\xb8\xb3\x3b\xdb\x18\x46\xef\xa8\xd1\x3a\x18\x1e\x39\x75\x0e\x1b\xdb\x18\x86\x4a\x0d\x0b\xfc\x4d\xe4\x8e\xcd\xa0\xc6\x5b\xf4\x2e\x90\x60\xe2\xe6\x0e\x44\xc5\x02\xfa\x94\x34\xed\x5c\xab\x68\x47\xd2\xa8\x76\x1a\xed\xf7\x18\xae\x1e\xf3\x4a\xb7\x50\xd9\xbf\x8f\xc7\x1a\x19\x7e\xa0\x01\x9f\x3f\x00\x40\x60\x4b\xce\x9b\xed\xa7\xb0\xbd\x5b\xed\x6f\xf8\x72\x25\x9a\x8f\xbe\xcf\x0b\x0c\xb0\xba\x25\x7a\x56\xcf\xed\x82\x51\xb4\x1b\xad\xbd\x73\x61\x27\x38\x09\xde\x5b\xaf\x0d\x6b\x7d\xcc\xc4\x00\x9c\x07\x56\x83\x34\x03\xed\x46\xab\x8d\xc1\xcb\x31\xaf\xd5\xe1\x67\x80\x04\x34\x1b\x1e\x09\xf6\xeb\x9a\x5e\x3f\xf9\x6e\xc2\x1b\x84\x5b\x8f\xfa\x16\xf8\x27\xfd\xea\x51\xa3\xf3\xfa\xf9\xf7\xf9\xf4\x7a\xf5\x46\x43\x19\x52\xdc\x3d\x03\x81\xff\xe3\x73\xb8\x94\x1f\xbf\xd0\x88\x24\x0b\x38\xeb\xa3\xed\xcb\x2a\x7e\x5a\xea\x43\x04\xc8\xed\xe1\xa0\x99\x7d\xa9\xf9\x78\xf5\xbe\xba\xd3\xb8\x68\xb7\x91\x01\x18\xdf\x2a\x45\xeb\xea\x96\x21\xed\x4f\xda\xf9\x47\xf0\x7d\xfb\x11\x5c\x12\xa6\x66\x6a\xd1\xf2\xa7\x7b\x55\xca\x78\xa5\x1f\x15\xb6\x1b\xad\xbd\x8b\xb0\x39\xdf\x84\xb3\x7d\x3b\x33\x41\x09\x7e\xaf\xc0\x80\x05\x4c\x28\xa7\x4d\x85\x49\x3a\xbd\x2d\x43\xe1\xd7\xfb\x79\x5d\xcc\x33\x78\x70\x3d\x92\x67\x4c\x62\xe2\x56\x90\xe0\x56\x4d\x81\xb2\x5d\xba\xe4\xeb\x5b\x0b\xd5\x95\xeb\x8e\x2e\xce\x58\x59\xee\x3e\x2d\x32\xbf\xdc\x69\x74\xce\xb7\x2f\x3f\xa9\xf9\x6f\xef\x0d\x2c\x82\x7f\xd5\x29\x34\x85\xf5\x1b\x9d\xf5\xe6\xac\x63\x08\xf6\xf7\x8e\x95\x49\x2c\xe8\x54\x75\x3a\xda\x55\xd1\x2c\x7c\xb9\x19\x45\xda\x43\xbc\xfd\xf9\xdb\xb6\x52\x5f\xb7\x3f\x9f\x0f\xa8\x81\xdf\x68\x7f\xb8\x18\x34\x55\xf0\xf9\x4e\x6f\xcf\xc4\xba\x5e\x57\x50\x2d\xd3\xd3\xc3\xc6\xb3\x37\x8a\xdc\x9e\xbf\x52\xaf\xc6\x9a\xda\x5e\xf8\xd5\x4e\x75\xd0\x6a\x3d\x7d\x2f\x25\xd0\xb7\x1d\x34\x40\x58\xb3\xb2\x3e\x76\x1a\x3b\xe3\xd6\xb7\x2f\xd5\xdd\x6a\xb0\xdd\xfa\xb6\xf5\xf9\x82\x34\x21\x97\x2b\x8b\x62\x58\xfc\x56\x82\xc4\x5f\xb0\xde\x9b\xfd\x1a\xf1\x45\xa5\xda\x45\x93\x62\x1b\xee\x5c\x7c\x29\x50\x75\x4c\x00\x79\x3f\xb1\xfa\x1b\xa3\x8e\xec\xcb\x2a\x35\x5b\x19\x34\x6d\x6b\x8f\x47\x54\xbc\x06\x36\xdc\xca\xde\x23\x68\xae\xab\x5e\x5a\x05\xf4\x78\x85\x13\x41\xd6\xef\x39\xe3\xad\xa7\xfd\xb9\x14\xb9\xc8\xea\xcf\x50\x64\xf8\x8b\x82\x81\xb5\xeb\x59\xeb\xbf\xbb\xe2\xb4\xbb\x1b\xff\x4d\xa0\xee\xd9\x13\x40\x79\x2b\xcd\x21\x66\x22\x85\x8b\xeb\xd4\xfe\x76\x04\x9e\x73\x6f\xd7\x3a\xea\xb8\xb7\x3e\x3f\xe2\x14\x8e\x57\xd2\x58\x4a\xc1\x87\x71\xb9\x5b\x1f\x20\x35\x00\xe8\xae\xfd\x75\x78\x49\x6b\x3d\x6d\x06\x68\x51\x87\xf1\x28\x01\x39\x7c\xa4\x6f\xeb\xcd\x8b\xfd\x22\xa4\x2a\xcf\x60\x9c\xd2\x1b\xdf\xea\x4a\xd3\x7e\x0e\x07\x58\x2b\x2b\x14\x62\x6c\xbf\x21\xda\xe3\x6d\x9c\xeb\xb8\x85\x74\xf8\xb0\xd1\x7a\x7d\x79\x26\xd9\xee\xab\x37\xb7\xc1\xc8\x82\x2b\xf3\x8f\xd6\xd7\x7a\xc1\x2d\xdd\x69\xb4\xf6\x82\x8f\x2a\x34\x5b\xeb\xe0\x8d\x62\x8b\x5b\xef\xbf\x59\xb8\xf3\xe2\x60\x01\x9e\x8d\x3e\xcd\x93\x10\x14\x4e\x7a\xd4\xba\x41\x3e\x78\x26\x39\x89\xb7\xdf\x5b\xcf\x0f\xfe\xaa\x9c\xdc\x13\x4b\xf3\xff\x7d\x50\xf0\x48\x62\xac\x06\x3f\x36\x3a\xcf\x9b\x82\xdc\x2d\x5a\x8d\xd6\xa7\xd5\xa2\xfa\x6b\x98\xc1\xe8\xbb\xfc\xa7\xf3\xb4\xb9\x62\xd9\xeb\xad\xdf\x00\xff\x13\x9a\xa5\xac\xbc\xb6\x03\x6b\x0d\xdf\x28\xba\xd9\xf9\x1a\xbc\x31\x80\xce\xdf\x2c\x30\x41\xb3\x2b\x87\x37\x54\xfe\xd8\x18\x6d\x7f\x40\x5c\x9c\x7e\xd3\x11\x42\x34\x32\x5e\xeb\x55\xb7\x5b\xab\x6f\xbe\xc0\x5e\x60\xc8\x74\x1f\x6d\x45\x20\x5a\xa6\x4a\x77\x86\xaa\xac\x2f\xc8\x48\xd7\xb7\x0c\xde\xbd\x22\x03\x9a\xe1\x61\xd5\x4a\x1f\x12\x83\x99\xc4\xfe\x73\x5e\x35\x21\x78\xbf\xdb\x8c\x06\x70\x75\x1f\xbf\x81\x23\xda\xe1\x19\xc4\x3a\x4d\xa1\x8b\xc3\x6f\x98\xa8\x07\x23\x5c\xe3\xe1\x6f\xed\x45\x88\x82\x77\xc4\x2a\x39\xb4\xa5\xab\x58\x30\xc1\xd4\x1b\x47\xdf\x25\x7b\x97\x34\x87\xed\xea\xa8\x55\x7d\xd2\x6a\x75\x30\xd1\xc8\x00\x90\x39\x47\x0f\x80\xb7\xeb\x1d\x9a\xd1\x6e\xeb\x1d\xa8\x85\x67\xcd\xc7\x1d\x0c\x0c\x08\x56\x23\x6d\xd8\xd6\x80\x0c\x9f\x22\x54\xbf\x40\x9a\x3a\xc9\x11\x6e\x75\xae\x40\xc1\xca\x1b\xd5\x4e\xfb\x1d\xdc\x8a\x25\x0a\xef\x8e\x80\x21\x8d\x7f\x83\x2c\x93\x3e\x0f\x80\x51\x68\x3c\x46\x6c\xbb\x8b\xb1\x16\x2e\x29\xe0\xe8\x05\x44\xcf\x3a\x6f\xcb\x95\x81\xb8\x9b\x1d\x41\x79\xc4\x80\x05\x22\x57\x5a\x64\x4f\xad\x3f\x77\x1b\x8d\xb7\x43\xc8\x32\x02\xb1\xf8\x5a\xc8\xc7\xca\xff\x05\xad\x00\x53\x02\x51\xf0\xbc\xb7\x8f\x10\x5e\x27\xfe\xd6\xd4\x8f\x51\x10\xe6\x00\x3d\xd6\x90\x49\x97\xb2\xec\xf9\x21\x46\xcc\x83\xac\xb3\xc3\x36\x60\xa9\xb7\x98\xb0\x07\xf0\xcf\xf6\x77\x70\xf5\x68\x1f\xd0\xa3\xc5\x05\x62\xe5\xb7\xeb\x60\x44\x7c\x94\x82\x74\xf3\xfa\x19\xc8\x42\xe4\x7f\xf1\xf6\x39\xac\xe4\x2e\x4e\xe6\xbd\x3d\x03\xd9\x12\xff\x96\xdd\x41\x88\xc5\xdd\x0f\xb4\x6c\xc0\x52\x77\x50\x7c\xfb\xa8\xf4\x5e\x60\xbd\xbc\xde\xc2\xda\x72\x93\x5e\x23\x67\xbd\x43\x07\xb4\x13\x36\xc9\x71\x6c\xfb\x55\xd4\xc4\xc7\x92\x6f\xcd\xf4\x5b\x53\x6d\x4c\x87\xb6\xb0\xb1\x86\x03\x6f\xa0\xfe\xb4\x6e\xd5\xd8\x7e\x77\x0e\xe1\x5c\xc9\xa1\x0e\x5e\xbd\xbe\x93\x0f\xfe\x93\xce\xeb\xce\xe0\x55\x75\xbb\xf1\x2e\xdd\xbe\x5f\xbd\xdf\x0f\x42\x7e\x7f\xe3\xbe\x48\xbd\x34\xf0\xeb\xe7\xa2\xbe\xba\x52\x7b\xe4\xf5\x9f\xae\xad\x3d\xe2\x35\x7f\x38\x89\x2e\x6a\xe7\xe2\x7e\xf5\xbe\x88\x27\x89\xcf\x45\x2b\x8e\x52\x1e\xa5\xf7\x37\x8e\xef\x07\xa3\x71\x9c\xa4\xec\x21\xf3\x04\xdb\xe3\x9e\x9f\xb2\x7e\x12\x8f\x58\x29\x91\x7f\x97\x5e\x9c\x44\x54\xe1\x07\x83\x46\x57\x29\xbb\xa6\x1a\xb5\x7a\x10\x9d\x73\x3f\xed\x44\x69\xe8\x54\x0c\xa2\x4b\x2f\x09\xbc\x08\xbe\xe4\x5a\xd5\xea\x93\x34\x08\x85\x6c\xc1\xaf\xa0\x45\x8f\xf7\xbd\x49\x98\xb2\xfe\x24\xf2\xd3\x20\x8e\xd8\x44\x70\xd9\xb4\x5c\x61\x3f\x4e\x22\xc6\x18\xbb\xf4\x12\x16\x44\x69\xc8\x36\x71\x8c\xb5\x89\xe0\x04\xb8\x4c\xff\x56\x5e\x60\xd5\xa2\xce\xcb\xb2\xad\xaa\x90\xf0\x74\x92\x44\x00\xee\xc5\x49\x74\x7d\x12\xdd\xaf\xde\x3f\xb9\x3f\x11\x9c\x89\x34\x09\xfc\xf4\xe4\xfe\x8b\x93\xe8\x24\xda\x3d\x93\x73\xab\xf5\x78\x3f\x88\xf8\x87\x24\x1e\xf3\x24\x9d\x95\x71\xc4\xa2\xca\x4e\xee\xff\xfb\xdf\x5c\xec\xc4\xbd\x49\xc8\x4f\xee\x57\x71\xa0\x97\x5e\x38\xe1\x1b\x2c\x4d\x26\xfc\x24\xba\xae\xe8\x19\x8a\x9a\x9a\xe2\x26\xbb\x8c\x83\x1e\x5b\x79\x71\x22\x87\xc9\x06\x09\xe7\x11\xdb\xc4\xd6\xeb\x2b\x1b\xac\xf4\x7f\xf8\xb3\xfe\x3a\x7f\x5e\xaa\xca\x92\xd5\x15\x28\xf2\x9f\xf1\x27\x3e\x15\xad\x61\x91\xb7\xde\x7b\xe2\x3d\xc5\xa2\x47\x58\xf4\x6c\xd5\x7f\xfa\xec\x31\x16\x3d\xc6\xa2\x27\x4f\xce\xce\x9e\x78\x58\xb4\x8e\x45\x8f\x7d\xaf\xbf\xbe\x82\x45\x4f\xa8\xe8\x91\xb7\xf2\x98\x60\x3d\xc5\xa2\x47\xcf\x9e\xf1\x47\x3e\x16\x3d\xc3\xa2\x35\xfe\xb4\xf7\x68\x0d\x8b\x9e\x63\xd1\xea\xd9\x3a\x5f\x23\x58\x0d\x1a\xeb\xd9\xf3\xfe\x13\x9f\xba\x6c\xd0\x60\x9f\x3c\xef\xaf\x78\x9c\xca\x68\x68\x2b\x2b\xfc\xc9\xd3\x27\x54\xf6\x54\x95\xf9\xcf\xd6\x1f\x95\x4e\xa2\x6b\x5a\x9e\x7f\x9b\x65\x83\x95\x2a\x5c\x50\x55\xe9\xc5\xfd\xea\xfd\xfa\x43\xc6\x45\x18\x44\xe9\x72\x2f\x10\xde\x59\xc8\x19\x1c\xe3\xe5\x61\x1c\x5f\x88\x7a\x32\x09\xb9\x58\x8e\xfb\xf8\xb3\xea\x7c\xe3\x57\x43\x6f\x22\xd2\xe0\x92\x2f\xf7\xf8\x58\xb0\x87\x75\x7d\xa0\xe7\x5f\x8d\x1b\xce\xaf\x3c\x79\x49\x1c\x86\xbc\x57\xfe\x77\xc2\xfb\x15\x75\x40\x12\xe6\xeb\x2f\x72\xf0\x09\xef\xd7\x4c\x49\x15\x8f\x28\x53\x20\xe5\xb9\x53\xb5\xa8\x48\x57\x89\xbc\x11\x57\xdf\xe4\xdf\xfa\x83\x2c\xf9\x87\xc4\x04\xfa\x33\xfc\xd0\xdf\xed\x4f\xaa\xde\xa6\x3a\x98\xec\x25\x2b\xc1\x31\x2e\xb1\x0d\xab\x06\x5c\x09\x1c\xff\xbf\x61\x29\xfe\x31\x11\x7c\x8f\xf7\xed\x0b\xb9\xc7\xfb\x65\x6b\x72\xf7\x36\x37\xd9\x24\xc2\xfb\xd3\xab\xe8\xde\x03\xd1\x72\x16\xc0\x86\x56\xf3\x27\x49\xc2\xa3\xb4\xb0\xb7\x7d\x1a\xb6\xee\x0f\x0a\xca\xd6\x4a\x99\x4e\x60\x06\xaa\x41\x06\xc4\xf1\xca\xa9\x59\x0a\x9e\x7e\x92\x55\x0b\x6a\xad\x9e\x5a\xa3\xb8\xa4\x4a\xce\xe0\x5f\xda\x5b\xb9\x61\xf5\x49\x0d\x83\x3e\x2b\x8f\x93\xd8\xe7\x42\xd4\x78\x74\x59\x7b\xbf\xbb\xd5\xfe\x77\xfb\xfd\x27\x58\x99\xd2\x38\x89\x7b\x13\x38\x2e\x25\x8d\xe6\xf4\xd4\xda\xfd\x3e\xf7\xd3\xb2\x3e\x50\x06\x13\x22\x58\x67\x1c\x12\xdc\xfc\x85\xb7\x5a\x32\x39\x60\x11\x87\xbc\xc6\x93\x24\x4e\xca\xc7\x27\xf7\x77\xbc\x94\x27\x81\x17\x2e\x1f\x76\x36\x58\x83\xf9\xf1\x68\x1c\x47\x3c\x4a\x59\x20\x98\x3f\xf4\xa2\x41\x10\x0d\x58\x3a\xe4\xec\xe4\xbe\x3c\xa6\xbe\x97\x96\x33\x6b\x50\x92\x07\xa5\x34\x89\x4a\x12\x27\x5a\xa3\x38\xb9\x5f\x51\x2d\xf0\xf8\xb1\x93\xfb\x74\xf4\xe2\xbe\xfd\x15\xce\xae\xfc\x98\xc6\xec\x8c\xdb\x5f\xb2\x3d\x4d\x22\xe8\x2b\xd3\x53\xed\xe4\x7e\xa5\xca\x4a\xed\x90\x8f\x78\x94\x0a\x26\x86\xf1\x24\xec\xb1\x28\x4e\x99\x98\x06\xa9\x3f\xc4\x5b\x3b\x89\xac\xc1\xa5\xb1\xbd\x77\xe5\x38\x61\x97\x81\xcf\xd9\x25\x4f\x84\x57\xa9\x41\x07\x5b\xdc\x0f\x7a\x9c\x9d\xf1\x74\x2a\x71\xf4\x44\xc8\x95\xf0\xec\x66\x71\xe2\x02\x35\x4b\xa4\xa7\x74\x72\xbf\xc2\x96\x58\x89\xe3\xd8\x58\x3f\x4e\x60\x31\xc3\xa0\xcf\xd3\x60\x04\x2b\x21\x7f\xeb\x65\xc7\xae\x0f\x86\x9c\x45\x5e\x3a\x49\x74\x05\x5c\xb7\x40\xb0\x1e\x4f\x79\x32\x92\x1b\xcb\x7a\x93\x44\x6d\x4e\x3f\x48\x44\xca\x12\x1e\xf5\x78\x52\x65\x41\x5a\x12\xb0\xd3\x41\x8f\x27\xbc\x67\x0f\x39\x40\x70\x78\x9c\x03\x01\x8b\xd4\xd5\x67\xa5\x5b\x93\x94\xac\xb4\x13\x27\x9c\x05\x51\x3f\xde\x60\xc3\x34\x1d\x8b\x8d\x7a\xbd\x7f\x56\x1b\xf1\x3a\xe2\x4b\x03\x6e\x59\x8f\x5b\x94\x4e\x6b\xe7\x71\x10\x95\x4b\x27\x27\x51\xa9\xa2\x48\x2d\x63\xd7\xf8\xc7\x75\x95\x1d\x9b\x76\xa7\x15\xba\x21\x05\x08\x65\x2d\x8b\x51\x0a\xef\xb7\x46\x90\xf9\xdb\x2b\x61\x64\xf0\xc8\x1d\x2e\xd6\x3d\xe7\xcc\x3d\x78\xe0\xf6\x23\x6f\x96\x3d\x9e\x3f\xe7\x6a\x29\xf2\x61\xce\x4f\xc1\x85\xf1\xa2\xec\x61\xcb\x5f\x20\xaf\x9f\xf2\x84\x9d\x71\x09\x38\x88\x82\x34\xf0\xc2\xe0\x3b\xef\xd5\xe8\x18\x9e\xdc\x3f\x88\x99\x98\x8c\xc7\x09\x17\x82\xa5\xc3\x40\xb0\xa9\x97\x44\xb2\x76\x3c\x4e\xe5\x9d\x90\x4c\x90\x73\xc4\xf3\x47\x5a\xde\xb6\xc5\x7b\xfd\x66\x7f\xf7\x7d\x4d\xb2\x53\xd1\x20\xe8\xcf\x9c\x3d\x3c\xc5\x06\xd7\x06\xb9\x2a\x24\xdc\xe9\x1f\x46\x0e\x71\x34\xac\x9e\x17\x86\x67\x9e\x7f\x61\xed\x5b\xc4\xa7\xd0\x48\xef\x41\x6e\xf7\xac\xdd\x51\x3d\x98\x56\x34\x68\x18\xb2\x1c\x30\x8d\x8a\x78\xc3\x63\xb8\x20\xd5\x39\x23\x93\x84\xe1\xfa\x7e\xf5\x7e\x86\xfa\xa7\xb3\x31\x8f\xfb\x6c\x1a\x44\xbd\x78\x8a\x38\x5e\xdf\xac\x92\x3c\x4a\x54\xa1\x17\xfb\x13\xc0\x06\xf3\xab\x44\xde\x65\x30\xf0\xd2\x38\xc9\xd6\x79\x01\xdc\x2a\xf1\x25\x81\x68\x26\xf1\x54\xf0\xc4\xf0\xe3\xaa\xa4\x04\x27\x5f\x1e\xc9\x94\x49\x44\x13\x4f\xd2\xad\x49\xe2\xc1\xd2\x6d\x32\xbd\x8c\xe5\x0a\x2c\x11\xd6\x0b\xe3\x68\xc0\x93\x03\xac\x4d\x70\x04\xdb\x64\xc7\xa5\x76\x6f\xc0\x4b\x55\x56\x3a\x48\x82\x1e\x8f\x52\xf9\xe7\xab\x20\xe1\xfd\xf8\xaa\x74\x0a\xcb\x26\xf1\x5a\x39\xe4\x29\x0b\xd8\x26\x5b\x79\xc1\x02\xf6\xaf\x62\x70\xb5\x90\x47\x83\x74\x28\x6b\x2c\x6d\xb2\x55\x67\xf3\xcc\x74\x1e\x3c\x30\x2b\x20\xb7\x3f\x69\x0c\x24\x6e\x0c\xa2\x1e\xbf\xda\xed\x97\x0b\x21\x1f\x07\xa7\x15\xf6\xc7\x26\x5b\xb1\xb6\x9d\x76\x73\xd5\xd9\x6c\x6b\x9b\x25\x17\x7e\x5d\xae\x20\x36\xa2\xdd\xd4\x27\x6c\x14\xf8\x49\x9c\x7a\xe2\x62\x8b\x9f\xc5\x93\xc8\xe7\xe5\x7e\x44\xb0\xe5\x4c\x7d\x8f\x0e\x69\xdf\x0b\x05\xb7\x80\x96\x2b\x6c\xf3\x0f\x7b\x5e\x58\x33\x37\x2c\x6b\x4c\xcc\x40\x43\xd1\x41\x16\xe1\x39\xaa\x7d\x48\xe2\x51\x20\x78\x2d\xe1\x22\x0e\x2f\x79\xb9\x52\x4b\x87\x3c\x2a\x3b\xbd\xb0\x82\xd1\xc8\xff\xfa\x51\xb9\x42\xdd\x54\x68\xee\xd7\x45\x53\x9d\x3f\x4b\xe1\x0f\xb9\x94\x70\x34\xe8\x17\x37\xcd\xf4\x9e\xae\x6e\xdf\x3d\x0b\x84\x9c\xdd\x0b\xeb\x52\xd2\x1e\x66\x67\xc3\xe6\xf4\x6b\x66\x65\x70\x4e\x35\x7b\xbe\xdd\xab\xfd\x82\xa6\x8c\x47\x5c\x22\x3f\x29\x3d\xec\xc8\xbd\x3d\xf0\xc4\x85\x00\x9e\xce\x3a\x77\xee\xaa\xcb\x96\x27\x51\xfd\xe1\xc3\x93\xe8\x21\x6b\x25\x5c\xe2\x62\x8f\xf5\x68\xa9\x7a\xc0\x2f\xc8\x05\x94\xf8\x99\x8d\x78\x3a\x8c\x7b\x55\x96\x0e\x3d\x49\x80\x3d\x31\x8b\xfc\x61\x12\x47\xf1\x44\x84\x33\x89\x25\x78\x92\xf0\x9e\x84\x74\x36\xd1\xe7\x27\x88\x80\x04\x8c\x82\x28\x18\x4d\x46\x30\x17\x36\x8e\x85\x08\xce\x42\x5e\x3b\x89\xa0\xe3\xff\x41\xc8\xf4\xe7\xe8\x8c\x27\x71\x9f\x7d\x88\xc7\x63\x9e\xd4\x0e\xa5\x28\x0d\x5f\xbc\x64\x80\x68\xe5\xc7\x2b\xda\xd7\x6b\xd6\x8f\xe0\x13\xee\x97\xb0\xbe\x9c\x44\x52\xbe\xc9\x20\xb0\x72\x7e\x79\xe4\x1a\xbe\xcc\x5f\x05\x59\xbc\xe1\x1c\x9b\x0a\x62\x26\x58\x2a\xf6\x90\xb5\x86\xdc\xbf\x50\xdc\xc6\x20\xb8\xe4\x11\x03\xa9\x5c\x4a\x64\x81\x60\x9e\x3e\x7b\x50\x5b\x4f\x90\xcd\x9f\x21\x73\xa6\xd8\x88\x66\xd7\x1a\xc6\x41\x8c\xdd\x2d\x9b\x3e\x24\x7f\x27\xcb\xb0\x9d\x9e\x7f\x33\x8e\x43\xee\x45\xd7\xcc\x8b\xc4\x94\x27\x2c\x8d\x37\xdc\xe1\xbc\x94\x0d\xf2\x2b\xa3\x6f\x4a\x20\xd4\x12\x96\x33\xbd\xd3\x89\xc7\x73\x36\xe0\xe9\xc1\x6c\x2c\xf9\x92\x1f\xd7\xce\x8d\xc1\xa3\x99\x1d\xf8\x83\x07\x58\x4e\xcd\x6a\x69\xbc\x0f\xa4\xb3\x26\x0f\x49\xbe\x23\x29\xac\x95\x8e\x63\xd0\x4f\x30\x35\x9e\xd3\x92\x84\x51\xd1\x1a\x0d\xb5\x13\xdb\x3c\x65\xad\xfd\x7d\x60\x3f\x26\x29\xef\xb1\x31\xa9\x32\x14\x6b\x89\xbb\x43\x1c\xea\x2f\x6e\x47\x1b\x1a\x5f\xbb\x50\xcc\x67\x9c\xcd\xb5\xee\x7a\xc1\x22\x0f\x78\xba\x9f\xce\x42\xde\xa2\x21\x1b\xe5\x0b\x82\xaf\x6a\x40\xb4\xe8\x12\xf7\xd0\xb7\x5a\x14\xf7\x38\xac\xbd\xa4\x9c\x86\xc0\x28\xc2\x7e\xfa\x42\x13\x81\x7a\x9d\xbd\xdf\x3d\x68\x6f\xb0\x55\xb6\xb5\xbb\xc3\x3c\x5f\x0a\x6a\x6c\xc8\x13\x6e\x36\x92\x88\xf9\xa6\x9a\x59\x2d\x9e\x46\x3c\xd9\x22\x0a\xae\x44\xf2\x4f\x01\x9f\xbe\x30\x8d\x7c\x21\xd1\x0a\x61\x92\x01\x4f\xd5\x3c\x60\x52\x66\x12\xd1\x24\x0c\x1d\xae\x43\xef\xcc\x4b\x09\xe2\x58\xfd\x3c\x65\x1b\xf2\x77\x6e\x67\xf7\xe8\x54\xcb\x4d\x1c\x7b\x92\xdd\x7d\x1f\xf7\x38\x23\x11\x63\x18\x8b\x54\x6d\xf1\x6f\x6e\x6e\x58\xb4\xbb\xfa\x4e\xe9\xcf\x38\x86\xc5\x7b\xfb\x41\x8f\x55\xad\xc5\x9c\x6d\x7c\x0f\x0a\x0e\x79\xd8\x5f\x1f\xec\xbc\x2b\x65\xf7\x92\xaa\xbe\xc8\x52\x75\x05\xc2\x5a\x93\x9f\x3f\x75\xa9\x5c\x17\xbd\x94\xc4\x48\xcd\x3b\x70\x9a\xaf\x9a\x57\xc1\xd2\x7a\x3a\x13\xb3\x1b\x9a\x52\x64\xca\x8a\xb6\x4f\xf8\x92\xb3\x94\x8c\x38\x0e\xfa\x4f\xbd\x9b\xb7\xdc\x3e\x1c\xc3\xad\x77\x71\x1f\xaa\xe3\xe4\x32\xfb\x58\xaf\xd3\xe4\xd8\x59\xdc\x9b\x55\x59\x57\x57\xef\xb2\x69\x10\x86\x2c\xf5\x2e\x38\xf3\xbd\x04\xf0\xf4\x80\xa7\x24\x03\x27\x89\x44\x68\x5d\x1c\xc8\x41\x3c\xee\xe2\x32\x06\xa9\x3a\x1c\xf7\xdc\x7e\xf4\x8e\x2b\x8e\xba\x26\xfb\xb3\x84\x0b\x12\xff\x73\x87\x4a\xb7\xf7\x3d\xc1\xe9\x74\x6d\xd8\x25\xcd\xdd\xad\x2f\xaa\x24\x77\xae\x5c\x14\xa0\xba\x54\x4d\xff\x8f\x1a\xcc\xdc\xf6\x99\x41\xd6\xeb\x8c\x98\x69\x36\xf5\xa2\x94\x4d\x84\xa6\x5e\xac\xbb\x7c\xd5\x65\x5e\xd4\x63\xdd\xe5\x59\x17\xa9\x9b\x5c\x7f\xc9\x5c\xb0\x29\x0f\x43\x83\x73\x7e\xb0\xf8\x92\x27\xfd\x30\x9e\x56\xf5\x5f\x9f\xcd\x9f\x5f\xd8\x35\xdb\x5c\x88\x58\x11\x1b\xc9\x95\xae\x97\xbd\x49\x1a\xff\xc4\xad\xf8\x29\xa1\x84\xde\xac\x52\xaf\xa5\x5c\xa4\x65\x05\x94\x2d\x59\xf0\xcd\xdf\x9f\x2b\x0b\x6e\xaa\x75\x57\xb3\x07\xa9\x18\x3d\xe4\xa9\x9a\x7d\x79\x12\xc9\x59\xf1\xc8\xe7\x2c\x02\xfc\xd7\xcf\x94\x22\xa1\xac\x2a\xc4\x98\xfd\xc0\x82\x54\xf0\xb0\x5f\xbb\xd3\xf5\x1a\x7b\x89\x37\xd2\x97\xe7\x27\xbe\x15\x5c\x5b\xb0\x97\x33\x7d\x29\x0d\x50\x19\xb0\x35\xc0\xc3\xbb\x70\x26\x6b\x85\x5e\x1a\x5c\xc2\x6d\x90\x52\x79\xe5\x77\x31\xec\x9e\xea\x16\x56\x51\x0f\x82\xb6\x85\x96\xde\x8c\xed\xc1\x03\xf3\xa3\x96\xd8\x6d\xd9\xcb\xb9\x5f\x36\xcc\x97\x2c\x3a\xbd\xa5\x5c\x1a\x88\x4e\x7b\x75\x35\xcb\x80\xdf\xbb\x57\x26\xca\xb9\xb3\xdf\x89\xc6\x93\x74\x07\x76\x44\xbd\x22\x3d\x78\x60\x6e\xbb\xfa\x63\x27\xee\x01\xff\x69\x81\x5d\xc9\x82\xad\xef\xec\x77\xda\x6c\x75\x85\x8e\x70\x81\x78\x59\x71\xb0\xf3\x96\xd2\xb3\x09\xc5\xc5\x9e\x11\xb0\x40\xb0\x4e\x94\xf2\x24\xe2\x29\x6b\x5f\x8d\xc3\x38\xe1\xc9\xaf\x9c\x9d\xf7\x13\x59\xe3\x5a\xcb\x10\x8b\x58\x56\x39\xaf\x85\xdc\x69\xa7\x5d\x26\x78\x16\x4d\x55\x3d\x48\x52\xba\x9a\x63\x89\x70\x1b\x0c\x15\xcd\xb5\x58\x29\x6c\xb1\x92\xa3\xbb\xb4\x9f\x3f\x7f\x9a\x0a\x7f\x3a\x95\x95\x90\xad\x53\xd5\x69\xcb\x6f\x45\x48\x21\xee\xf7\x05\x4f\xff\x17\xc9\xa9\x33\x80\xc5\x57\x76\x17\xaa\x17\x92\xd3\x5b\x51\x3e\xf5\x47\x3b\x8f\x6a\xf1\x5a\x44\xb1\xdd\x05\x5c\x8f\x4e\xbb\x2c\x37\xf7\xa5\x4b\x3f\xd9\x06\x70\xa6\x2f\x34\x75\xba\x81\x49\x0e\x79\x4a\x13\xd5\x60\x35\x95\xb4\x8b\x7f\xfe\x54\x30\x01\xe2\xfe\x45\x30\x66\xc3\xa0\xd7\x33\xbb\x21\xd8\x74\x18\xf8\x43\xd6\x8b\xa3\x52\xca\x86\xde\x25\x67\x5e\xe4\xc0\x96\x6d\xa7\xc3\x20\xe4\xac\xec\x76\xb9\xb9\x99\x9d\xdc\x83\x07\x7a\x18\x11\xbf\x52\x6b\xb2\x1f\x9c\x49\x16\x4b\x2f\x61\x66\xe0\x6a\xd5\xad\x39\x14\x34\x76\xe6\x55\xb4\xca\x8a\x6d\x75\xc1\x3f\x78\xe0\xfc\xd6\x9c\x88\xf5\x52\x74\x4f\xb7\x95\xab\xe5\xb0\xbf\xc0\x8e\xe4\x8b\x6f\xe2\x8a\xd9\xcb\x79\x22\x8b\x7b\x50\xd8\xc6\xad\xce\x50\xbd\xce\xdc\x1d\x05\xda\x45\x5d\x02\xf7\x16\xc6\x82\x8b\x94\x1d\xbc\xae\xb2\x83\x2d\x49\x6b\x0f\x1a\xcd\x77\x6d\x16\x44\xc0\x17\x11\x8c\x28\x76\x97\x25\x10\x6c\x9c\x70\x01\xe2\x50\x87\x0d\xbd\x94\xa3\x5a\xfa\x3c\x3e\xab\xd5\x6a\x6a\x65\x70\x7e\xc7\xa5\x83\xd7\xa0\x84\xdc\x82\xff\x4b\xe8\xa5\x53\xad\x13\x2c\x5c\xdd\x0a\x08\x81\xcb\xab\xb6\x80\x5d\xcc\x00\xd9\xcd\xab\xac\x34\x8e\x45\x40\x2f\x73\xb0\xd2\x68\x56\x81\x12\x76\x66\xbd\xb3\x77\xd7\x86\x54\x29\xe0\x78\x32\xe7\xc7\x65\x6b\x5e\x05\x51\x8f\x98\x9a\x38\xc6\xd3\xc4\xca\x6a\x5b\xaa\x4c\x0c\xbd\x5e\x3c\x95\xf7\x50\x7e\xae\xfc\x25\x68\x4d\xf6\x39\x0f\xa7\xe9\x41\xdd\x82\x05\x89\xe3\xb4\x2c\xab\x5a\x48\x4c\xfe\xb4\xa5\x32\xb9\x39\x20\x04\xe7\x97\x54\x37\xb7\xea\x17\xad\xa6\xac\x92\x67\x3f\x70\x43\x24\xcb\xe0\x05\x91\xc3\x86\x64\xbe\xb8\xf2\x9b\xec\xd4\x26\x46\xf2\xb7\x5b\xc3\xc1\x32\x56\x4d\xbb\xdc\x95\xf2\xcc\x8e\xba\x14\xc9\x8f\x47\x23\x24\xfa\xf2\x5b\x3a\x8d\xa5\xf4\x7f\x19\xf4\x78\x0f\xe6\x24\xfe\x24\xea\xb4\xba\xa8\xc2\xda\xbc\xbd\xa6\x01\xde\x85\x8c\xf5\x83\xa8\xd7\x82\x66\x45\xd4\x6c\xb5\xaa\xfb\x34\x72\xe2\xc1\x10\x1e\xc3\x40\x59\x28\x58\xc4\x79\x0f\x1f\x67\x3d\x30\x46\x80\xa7\x34\xa1\x70\x08\x8b\x23\x9e\xd1\x68\x08\x16\x08\x49\x2f\xe8\x79\x04\xde\x21\xbc\x68\xc6\x12\xee\x89\x38\xca\x12\x4f\xe0\x4d\xf4\x0f\xa3\x29\xb2\x4a\xd7\x9c\x1f\xba\xca\xaf\x90\xdd\x7a\x9d\xbd\xe6\x09\x67\x53\xce\x46\x52\xde\x15\x13\x92\x77\x25\xa7\xef\x09\x76\x72\x5f\xa4\x5e\x92\x9e\xdc\xb7\x27\x04\xca\x63\xb9\xf6\x5c\xd0\xa3\x2e\x29\x88\xb7\x76\x77\x0c\x95\x89\x93\x1e\x4f\xd8\x26\x0e\x49\xcf\xc7\x8f\x47\x72\x9b\x14\xa6\xff\x40\x38\xac\x6c\x56\x9d\xb0\xa0\xbc\x4c\xb5\xad\xdd\xd6\xe1\x4e\xfb\xfd\xc1\xbf\x3f\xec\xee\x77\x0e\x3a\xbb\xef\xff\xfd\x6a\xf7\xdd\xbb\xdd\xa3\xce\xfb\x6d\x4b\x95\x05\x43\x94\xc4\x0c\x7a\xd4\x34\x65\x95\x6d\xe8\xcd\xb4\x6a\xf3\xa8\x97\xaf\xbb\x66\xea\xae\x1a\xa6\x62\x9b\xeb\x3b\xe0\x45\x3e\x17\x69\x8c\x86\x31\x70\x2d\x0d\xc4\xc4\x8b\x06\x92\x98\xea\x05\xf7\x41\x09\xbf\x27\x8b\xe9\x15\x00\xaa\xd4\x84\xc4\xec\x5e\x02\x4f\xa7\x49\x5a\x65\x2b\x99\x8f\xed\xa8\x57\xe6\x51\x4f\x7f\x50\x52\x33\x8e\xa1\x41\x43\x30\x28\x43\x8a\xcb\xd0\xd8\x0c\xb9\x19\xa7\x43\xbc\x9c\xcc\x83\x07\x72\x11\xf4\x38\xd3\xf2\xbe\x4b\xad\xf4\xa9\x07\x2c\x37\xaf\x17\x45\x97\x98\x59\xac\x1b\xaa\x57\xd8\xcf\x9f\x58\x1f\x26\x59\xa3\xf5\x12\x72\x62\x15\x87\x36\xe1\x73\x5a\x06\xd9\x95\xe7\x81\xcd\xbf\x98\xcd\xa9\x69\x5e\x56\x6e\x24\x81\xf3\xfa\xc9\xdc\x0e\xeb\x3a\xe3\xaa\x06\x42\x2d\xaa\x26\x74\x55\x40\x2a\xc4\x1b\xc6\x91\xa5\x99\x55\xeb\x0b\x34\x69\x53\xd3\x0c\x55\x6c\x54\x19\x76\x45\xd0\xfe\x65\x2f\xf3\x02\xb4\xa5\xdb\x59\xf8\x0b\x67\xc2\x78\x28\xf8\xdd\x80\x55\xb3\x03\x5d\xab\xe0\x98\x5e\x98\xf7\x39\x47\x62\xba\x3d\xc5\x99\x2f\x14\x66\xcf\x81\x2b\x4b\xa8\x9b\xa0\x79\xcb\x6b\xc3\x01\xbf\xb0\x49\x77\x86\x1f\xcd\x2d\xa3\x7e\xa6\xbb\xce\xbf\x78\x14\x30\xae\x12\xd3\xce\x11\x7c\x6a\x80\xfa\x08\xa7\xb6\x86\x41\xd8\x43\x3e\xcc\xb0\x38\xc5\x0f\x1d\xb6\x32\x95\x6c\x5c\x8a\x58\x24\x85\x53\xb1\x10\x0e\x5c\x39\x8d\xc7\xa0\x68\x0b\x79\x3f\xad\xfc\xa9\xa2\x61\xfe\x19\x04\x7a\xec\xa6\xf1\xb8\x2b\xf9\xe4\xae\xec\xb2\x9b\x21\xc3\x11\x29\x07\xbc\x51\x3c\x41\xf9\x15\x67\xc5\x7b\x6c\x1c\x5c\x71\xec\xfb\x36\x0a\x5a\xf3\xdc\x00\xbd\x6e\xb2\x52\x1a\x8f\x4b\xce\xd6\x4f\xe4\x8c\xf6\xf1\x2b\x56\xda\xa4\x6a\xec\x25\x2b\x69\x6d\x2c\x98\x5e\xe1\xaf\x77\xbc\x0f\x87\xae\x40\xea\xc9\xaa\x5a\x2d\x01\xe7\x17\x64\x1a\x04\x3f\x4c\x47\xe1\xfc\x27\x98\x02\x0a\xac\xa9\x97\x52\xab\xb7\x73\xa2\x9d\x0b\x24\x57\xf1\xe7\x4f\xe8\xd5\xb5\x18\xce\xd6\x3a\xd6\x2b\x77\x5a\xc0\x9a\xf2\xa2\x4a\x39\x85\x08\x9e\x55\x5b\x03\x02\x25\x8a\x89\x84\x63\xb1\x3f\x19\xc9\x83\x22\x26\x67\x69\xe2\xf9\xa9\xc3\x2f\xd8\x87\x5d\xb0\xb2\x3c\x4b\x70\x8e\xd3\x78\x5c\x41\xb0\x1e\x9d\x73\x50\xae\xa3\xca\xf3\x57\xd4\x55\x46\xc5\xe9\xa7\x6c\x99\xed\x19\x68\x6c\x16\x4f\x50\x75\x0d\x2a\x2c\x49\x34\x9d\x96\x72\x4b\xb3\x57\x83\x2d\xb3\x03\x6b\x16\x30\x50\x30\x64\x53\x07\x38\xe1\x5e\x2f\x7f\x9d\xdd\x21\x69\xd5\x98\x5e\x99\x65\x26\x99\x55\xc9\x54\x27\x13\x2e\x0f\x9d\x3d\x34\x67\xfd\x0a\xa0\xd2\xbe\x65\x67\x2a\xc7\x39\x8a\x7b\x41\x3f\xe0\x49\x76\x11\x6f\xd2\xc5\x45\x7e\x38\xe9\x71\xba\x85\x09\x68\xa0\xcd\x5d\x54\x43\x21\xeb\x06\xe7\x3e\xea\x1b\x47\x1a\xfb\xcc\x3d\xc6\x0b\xfc\x22\x5b\x5f\xde\xc9\x39\x0d\xe4\xa1\x70\x5a\xe8\xe9\x6c\x9a\x91\xbc\x94\x72\xf2\x06\xd9\xca\xc8\xe1\xd6\x24\x4a\x5c\xda\xb4\x86\xf3\x50\x37\x34\x95\xce\xe2\x34\x8d\x47\x8b\xeb\xc1\xc1\xd4\xb5\x60\xb0\x45\xd5\x92\x60\x30\x5c\x58\x8f\xd4\xd7\xbe\x2d\x3f\xc3\x16\xbe\xe6\xe1\x18\x5e\xf5\xc1\x4c\xd2\x4f\xd9\x19\xf0\xa2\x02\xed\x33\x7e\x5d\x4c\xa6\xf3\xd6\xda\xdf\x07\xed\xc1\x16\xf7\x43\x0f\x8d\x4d\xae\x99\x90\x25\x82\xf4\x8f\x42\x1e\x81\xb8\x8f\x2f\x5e\x45\x8a\x86\x2e\x8b\xa3\x79\x32\x3b\xf5\xa2\xa8\x84\x77\x15\x08\xb6\xcc\xba\x57\x48\x25\x66\x5d\xf7\x94\x2a\x0a\xa1\xa6\x88\x07\x55\xfd\x12\xc1\xf7\x0c\xed\x93\xe0\xe8\xc8\xde\x48\x36\x9a\x08\x61\x3f\xf8\xce\xcb\x38\xb7\x2a\xb4\x75\x8f\x68\xd0\xe3\x0d\xb6\x89\x63\x04\xbc\x7d\x05\xc4\x02\x08\x83\xa4\x13\x92\x5e\xbc\x70\xeb\x37\x89\xbc\x34\xb0\x01\x56\x7d\xc9\x4a\x7b\x72\xcb\xa1\x51\x13\xce\x52\xe9\x85\x83\x46\x89\x81\x18\x7b\x89\xe0\xaf\xc2\x18\x8c\x23\xe5\xa8\x8e\xbb\x38\xd7\x7f\xfc\x00\xa0\xd7\x47\x41\x2f\x1d\x76\x4f\x2b\x6c\xe9\x56\x0d\x9a\xba\x81\xcb\x4d\xdc\xa4\x67\x3e\x89\x1c\xfa\x2a\x57\x48\x2e\x40\x95\x9e\x39\x25\xc1\xa8\x6a\x3b\x0b\xd8\x7e\xf7\xc5\x65\xc7\x4b\x87\xb5\x91\x77\x45\x53\x92\xad\x8e\xbb\x28\x60\xff\xe3\x87\x84\x74\xdd\x55\x96\xe9\xf8\x0d\x2f\x41\xf6\x9b\xec\xe7\xb8\xeb\x87\x01\x8f\x72\xed\xf0\x5b\x31\x4c\xfc\x56\x0c\x53\x29\x83\x95\x1c\xf0\x92\x95\x61\x01\x3b\x51\x5a\x2e\x84\x09\xf6\xa4\x54\x59\xd7\x74\xe6\x7e\xdc\x1d\x79\xc9\x20\x88\xb0\x09\x51\x77\x8e\x9b\xfd\x12\x4f\x88\xdc\x74\x38\x07\x7f\x06\x40\x3a\x3d\x12\x26\x1e\x29\x09\x94\x26\xb4\xc1\x56\x98\xb5\xcf\x37\x5e\x80\x23\x78\x7d\x92\xbb\x2b\xb4\xea\xcd\x39\xfc\xa0\x24\xdf\x74\x95\xe6\xd6\x59\x27\x6e\xe5\x46\x15\x01\xd9\x89\xd8\xb3\xb3\x35\xf2\x0f\x1e\xb0\x9c\xd9\x88\x04\x5b\x71\xaf\x06\x31\x49\x43\x58\x83\x0d\x7d\x26\xd5\xa2\xdc\x74\x2e\x69\xdb\xa7\xf2\x0e\x58\x2d\xe1\x4e\x2c\x6e\x78\x9d\x67\xbe\x1d\xfe\x1a\xcf\x8a\x90\xc2\x4e\xc4\x13\x30\x9a\x8b\x58\x3c\x49\xc7\x13\x89\x0a\x46\x41\xe8\x25\xf4\xf2\xdf\x8c\x27\x51\x2f\x88\x06\x2d\x38\xcd\x7b\x77\xe5\x4d\x0c\x6f\xad\x88\x36\x75\x9d\x61\xa7\xd5\x57\xd3\x0d\x0b\x83\x0b\x4e\x63\x5a\xcc\x4b\x9b\x76\xa4\xdf\x15\xee\xcd\xa6\x9d\xa8\xd5\x6a\x6a\xea\xc4\x38\xe2\xce\x50\x21\x11\x41\xfd\x13\x56\x5f\x5f\x78\x79\x7a\x4d\x55\x20\xbe\xfa\x17\x6e\x71\x66\xed\xff\x5c\xe3\x15\x0b\xef\xdb\x2d\xad\x62\xb7\xbe\x75\x4d\xec\xfa\x56\xb1\x5b\xff\x26\x4e\xd7\xd4\xb2\x36\xc8\xaa\x69\x4a\x17\x3d\x05\x1a\xc5\xeb\x36\x97\x37\x15\x4f\x17\x43\x64\x49\xdc\x5b\xff\xf7\x39\x81\x22\x96\xb6\x98\x89\xb4\x7a\x5e\x7c\xcc\xf2\xb7\x21\x23\xab\x87\x9c\x26\x41\x86\x85\xa4\x49\x81\x07\xef\xd5\x15\xf6\xaa\xf3\x79\x83\x7d\x08\xb9\x27\x78\x95\x5e\xd2\x3c\x71\x51\x75\x04\x06\x50\x98\x52\x3b\xcb\x47\x24\x88\xe0\x7d\x2f\x88\x98\x88\x47\x9c\xf9\x41\xe2\x4f\x46\x22\x05\xdd\x1c\x3d\xc5\x28\x75\x2d\xaa\x5c\x13\x8e\x0e\x4c\x01\x98\x74\x46\x38\x06\x50\x41\xa6\xc1\x59\x10\x06\xe9\x4c\xb2\x6d\xc0\x84\x74\xda\xab\xab\x12\x40\x9a\xcc\x5c\x05\x15\xa2\x3b\x47\xfd\xe4\xdb\x42\x5a\xf1\x92\x18\xe3\xdf\xbb\xf2\xcb\xd9\x36\xb7\xe3\x99\xd5\xc0\x72\x0c\xb1\xfb\x35\xcf\xe1\xba\xdf\x0b\x38\x65\xb7\x42\x01\xef\x6b\x9b\x32\x33\x47\xdd\x74\xc7\xb5\x32\xa6\xef\xbe\x97\xfa\xc3\x32\xaf\xfc\x70\xde\x2d\x13\x64\x5d\x37\x15\x78\x39\x99\x0d\x33\x2f\x42\x52\x69\x3c\xde\xd0\x4b\xe1\x92\x10\x6b\x06\xcb\xb9\x76\x8a\x42\xd9\xeb\xb0\xec\x02\xb2\x4e\xb3\x16\x49\x70\x1d\xce\xbc\x04\xd9\x59\xb8\xeb\xf2\x2f\x61\x33\x96\x12\xff\xe4\xd5\x0e\xb6\x9e\xe9\x65\x96\xaa\x17\xea\x00\x2a\x6c\x43\x19\xeb\x2a\xd3\xcf\x5e\x3a\x54\x4a\x76\xe8\x07\x11\xb6\x6d\x4c\x88\xb7\xfb\x48\x15\xe3\x2a\x62\x35\x9b\x23\x80\xe9\xbb\xa0\xa8\x2c\x07\xeb\xb5\x2e\x27\x60\x58\x91\x56\x47\xde\xff\x61\x9c\x04\xdf\xf7\xf5\xd2\x64\x5f\xdc\x71\x30\xcb\xcc\x0c\x42\x36\xba\xe4\x49\x3a\xbf\x0d\x75\xba\xcc\x9c\xce\xea\x75\x79\x4d\xbd\x88\x0d\x67\xe3\x38\x1d\xf2\x34\xf0\xbd\xd0\xda\x14\xf2\x46\xf3\x53\xde\xab\xc2\x2b\xc7\x44\x32\x47\xf4\xd0\x01\x3e\x68\x51\x9c\x32\x8f\x11\xdf\xdd\x25\x98\xea\x3d\x24\x35\x4f\x3f\x7e\x1c\xf5\xe0\xad\xc2\x0b\xe1\x09\x67\xcc\x93\x7e\x9c\x8c\x24\xf2\xa1\xa7\x1c\xa1\x94\x48\x99\xd9\xff\xfc\xe9\x4e\x2d\xa3\x39\x42\xce\xff\xd6\x96\x6f\x2c\xbb\xb8\xcb\x9b\xf3\x44\xa2\xd2\x95\xc6\x0e\xee\xda\xde\xd0\x64\x56\x32\x7e\x6f\xf6\x51\x91\x6d\xdc\x8e\x5f\x38\x95\xe8\xac\x2c\x6f\xba\x5d\x15\x9b\xd3\x59\x97\x1f\x9b\xe7\x64\x9b\x3f\xc5\x0e\xc7\xd6\x6e\x58\xe1\x00\xac\xd2\x22\xf2\x9f\xd7\x63\xdb\xe5\x59\x86\x24\x8b\xcd\x5c\xbe\x24\xfb\xd5\x6a\x9d\x4c\xa2\x4e\x11\x77\x70\x37\x3e\xe3\x16\xf6\x3a\xb2\xea\x1e\x59\xef\x1d\xc4\x8d\xe4\x2c\x48\x13\x2f\x99\x81\xd9\x9d\x3f\x0c\xc2\x5e\xc2\xa3\x2a\x3d\x9e\x56\x59\x3f\xb8\xe2\x3d\xf5\x2c\x57\xa8\xfa\xd1\xb6\x6b\x34\x03\x49\x1e\x5f\xd8\x9f\x25\x46\x63\x9b\x04\xb1\x08\xdb\xd9\xe2\x05\x0d\x60\x0f\x09\x45\x31\x81\x50\x95\xec\x6e\x10\xfa\x8d\xcd\xc6\x96\x7d\x83\x4d\x51\xb5\x35\x4d\xd6\xb0\xd3\xee\xc7\x7e\x5e\x5c\x74\x3f\xf3\x1d\x21\x36\x39\x88\xc7\x88\xe9\x36\xf3\x92\x7e\xcd\xad\x92\x6f\x2c\x49\xeb\xa2\xd6\xba\x4e\xc5\xe2\xb3\xf0\x21\x5a\xb0\xe9\x90\x27\xdc\x32\xbc\x97\xb8\x10\x76\xd7\x20\xc2\x60\x10\xc5\x09\x67\x11\x1f\xa0\x6d\x27\x29\x1c\x03\xfd\xa4\xee\x7b\xa1\x8f\x58\xad\xec\x1e\x8c\x07\x0f\x68\xa3\x35\x32\x33\x1b\x02\x3c\xc8\xa6\xd1\x24\xb8\x5f\xf4\xeb\xa6\xd3\x24\x44\x2e\xa7\xa8\x0d\xd0\x68\xd5\xe8\xfa\xc4\xb1\xe8\xa2\x6d\xb1\x36\xfd\x87\xc5\x05\xd8\x87\x0b\x06\xb5\x9c\x1d\xe5\x72\x66\xa7\xaa\x36\x67\xe1\x34\x87\x01\x2e\xe7\x86\xbc\x9c\xdd\x2d\x97\xe3\x70\x40\xd8\xa2\x94\xe2\x36\x9c\x0a\xb6\x04\x85\xd3\x55\xb2\x15\x2a\x15\x90\x7d\x5c\x29\xf8\x42\x4c\xe2\x8a\x39\x06\xfb\x8a\x41\xc1\x0a\xa0\x5e\xcc\x9a\x55\x29\x9b\x05\xa0\x83\xe8\x91\x3b\x11\xbc\xc7\x3c\x61\x6c\x29\x88\x1a\xf6\xd0\xea\x97\xc5\x51\x38\x63\x71\xc4\xe0\x8e\x9f\x71\xdf\x9b\xa8\xf6\x60\x3e\x22\xbf\x3a\x56\x02\x67\x7c\xe8\x5d\x22\x33\x54\xaf\xb3\x5e\xd0\x07\x73\xdc\x34\x9c\xc9\xe3\x19\xe9\xc1\x79\x09\x67\xde\x78\x1c\x06\x68\x59\x11\xa4\x35\x54\x69\x5b\x9f\x09\x6f\x4b\x29\x80\xa0\x81\xc1\x6b\x7c\xa5\x54\x88\x99\xd9\x55\xd5\x0b\x9a\x64\x0b\x12\xba\x13\x51\x9c\x6a\x8b\xad\x7b\x84\xc8\xf2\x47\x99\x14\xd0\xd6\x9a\xe7\x2f\xa0\xfe\x5a\x79\x91\x6f\x44\xdb\x31\xaf\x95\xfc\x6c\xa8\xac\x2d\x4d\x2f\x6f\x66\x51\xc7\xb2\x19\xc7\x0b\xb7\xbe\xe2\x51\xef\xd0\x04\x8f\xec\x66\x0e\xc3\x2c\x5b\xe3\xce\x34\x49\x14\x59\x5f\xd0\x06\x5b\xd5\xeb\xac\x91\xa6\x9e\x3f\xb4\x56\xcf\x8b\x7a\xf6\xb2\xe8\x43\x53\x24\xc5\x21\xe3\x35\x03\x23\x1b\xb9\x79\x23\x77\x30\xf6\x96\xcc\x9b\xa3\xb3\x03\x99\x69\x5d\x9b\x87\x3e\xa3\x52\xc4\x23\x70\xcf\xc1\x6f\x46\xc5\x48\x54\x4c\x9b\x31\xd8\x24\x44\x6b\x22\x37\x14\x8a\x95\x34\xce\x21\x32\x0f\x1e\x38\xbf\x0d\x35\xbc\xa7\xdf\x17\x4f\x6c\xa3\x08\x83\xd6\xdc\xb7\x19\xad\xad\x1a\x2f\x30\xda\x13\x05\x9c\xd4\x42\x3e\x20\xff\x68\x7f\x43\xe5\xbf\x4a\x65\x72\x23\x2b\xf3\x29\xe0\x53\xf9\xb1\x78\x74\xa9\xcd\xd3\x68\xf9\x98\x5f\xd9\xfc\x5f\x11\x2b\x73\xe7\x47\x5b\x25\x88\x62\xd7\x38\x18\x24\x41\x8b\x79\x2d\x3d\x2e\xa5\x25\xcd\x08\x71\x86\xf8\xc9\x0a\xb6\xd8\x56\x55\x7e\x7a\x41\x14\xf1\x44\x4b\x72\x0e\xdb\xa5\xe4\xb7\x42\x28\x28\x3b\xb9\x60\x8c\x10\xb7\x92\xe1\x77\x2c\x55\xc5\x3d\x77\x0d\x5f\x5a\x6a\x08\x98\x05\xdb\x20\x72\x54\xa0\xb1\x58\xd0\x56\xeb\x2f\x08\x86\x81\x12\xab\x65\xb5\x69\xb9\x19\xd5\x72\x66\xfd\x49\x0d\x99\x29\xd4\xe8\xc1\x21\xe9\xd6\x00\x73\x60\x48\xf1\x59\x08\xe7\x9d\xd1\x13\xe4\xa9\xb8\xa3\x1b\x28\x14\x72\x70\x46\x7f\x89\x90\x73\x67\x97\xbe\x02\xaf\x67\xa3\x76\x43\x06\x91\xc5\x89\x65\xe7\xe4\x51\xa1\x31\xaf\xfc\x0b\xcc\x4e\x8c\x49\xe7\x44\xa4\xf1\xa8\x65\x59\xd9\xdd\xec\x1b\xcd\x4e\xee\x07\xe2\x95\x1c\xe0\xcb\x93\xfb\x8b\x1d\xa3\x65\xc5\x42\xdb\xa2\x9b\xcd\x43\x7e\xd9\x38\xa4\xd8\xee\x48\x02\x5b\xec\x40\x9c\xb3\xf0\x86\x7d\xc8\xc1\xd6\xf1\x0a\xae\xb3\xd2\x11\x1c\x89\xcd\x39\xee\xac\x7a\x56\xf7\x2c\xeb\xe5\x5b\x99\x4b\xa9\x65\x74\xad\x9e\xff\xb3\x6e\x34\xc6\x64\x19\x2d\x50\x8d\x0f\x8d\x17\xb9\x1c\xe8\xd0\x13\xcc\x63\x69\xe2\x45\xa2\x1f\x27\x23\xdb\xb9\x9c\x2c\x72\xff\x62\x27\x1b\x1c\xa0\x33\x00\x1a\x6c\x92\xe5\x59\x6f\xf3\xf6\xfd\xca\xe6\x53\x6e\xf0\xc8\xf9\x4f\x18\x2e\x3b\x96\xcb\xb6\x55\x32\x59\xc4\x5b\x96\x4a\xa0\x48\xcf\x39\x5d\x2e\xb2\x51\x46\x59\x8f\xdb\x44\xda\x81\x0c\xf5\xc8\xe1\x86\x87\xf4\x26\x39\xef\x5a\x55\x59\x49\xef\x82\xba\x52\x51\x1c\x71\x73\xa3\xa8\xa3\x82\x3e\x5c\xdf\x6d\x39\xa1\x1b\x86\x3e\xcf\x84\xea\x2e\x9a\xa5\xdb\x20\x75\xcb\x2b\xc0\x71\x7b\xb4\xdd\x03\xec\x0f\x56\x9b\x62\x13\x50\xdd\xb2\xf8\x73\x91\x9f\xc1\x5f\xc3\x55\xde\x9e\xdd\xb3\x3b\xb9\x7d\xab\xdf\x78\x26\x24\xec\x67\x61\x26\xf8\xed\x42\x9c\x7b\x49\x6d\xf8\x73\x2b\x65\x08\xb6\x0a\x8a\x81\xf2\xee\x24\xea\x79\x49\xc0\x05\x0b\x83\x51\x90\x0a\x10\xaf\x8c\x8f\xd3\xe8\xb7\x5f\x0a\xd1\xef\x77\xfe\x77\xed\x51\xeb\x54\x51\x96\x3e\x63\xaf\xd7\x0b\xa2\xc1\xfc\xe6\x66\x02\x6d\x6d\x65\xa7\xfe\x02\xe5\x03\x18\x46\x49\x84\x93\x99\x6f\xb1\x55\x9d\xab\x95\x5a\x66\x1d\x40\x68\xc4\xb0\xa8\xe2\x51\xde\x5d\x48\x3f\xb6\xc7\x71\xd2\x0b\x22\x2f\xe5\x42\x61\x3f\xb7\xcb\x5b\x3c\x86\x42\x5d\x10\x28\x71\xed\xaa\x88\x2b\x68\x99\xe0\x17\x2d\x0b\xfc\x9d\x5b\x01\x28\x2d\xd4\xbb\x9e\x44\x06\x99\xcf\xf5\x70\x54\x58\xd2\x3a\x1a\x9b\xec\x07\x72\xcd\x2b\x55\x62\x7c\x57\x98\xfd\x6c\x94\xf1\x2a\x74\xfb\x7e\x79\x33\x95\xc1\x39\x4a\xae\x7d\x8e\x19\x39\x2d\xc2\x4d\x3e\xde\x96\xba\xf2\xb5\x17\xf5\x42\xce\x2e\xe9\xea\x6a\x47\x3c\x49\x59\xf2\x67\x05\x70\xb6\xaa\x5b\x32\x62\xb3\x33\xf7\xbb\x89\x8b\xae\x57\x9d\xb3\x14\x8e\x94\x6d\x3f\x6c\x9a\x71\xdb\xca\xa5\x33\x4f\x9e\xdf\x18\x1f\xa9\xb9\x7d\xa6\x3d\xe1\x9e\x2a\x96\xdd\xb1\xf7\xe8\x22\xa6\x5e\x9d\xe7\x4c\xdc\xd6\x24\x94\xac\x17\x69\x17\x4e\x81\x62\xdb\xe5\x00\xdd\x7d\x40\x10\x6e\xaf\xe0\x7c\x73\x93\x39\x7d\x61\xaf\xb8\xf1\xb7\x32\x7d\x36\x71\xf8\x70\x5d\x6f\x98\x34\xca\xac\x37\x4e\xf7\x0e\x1d\x5f\x67\x1e\xa8\x73\xb0\x72\xa3\xc8\xfa\x93\xd8\x37\x48\xdc\x56\xf6\x2f\xee\x4e\x47\x8a\x74\xce\xa0\x2a\x2c\x50\x48\x55\x6c\x45\x5b\x47\x31\x6e\x7d\xd0\xc6\x82\x56\x1f\xf4\x66\x9e\xd1\xb3\x92\x61\x94\x67\x40\x2c\xdc\x68\x7c\x8f\x7e\xf0\x80\xdd\x53\x7c\xbe\xe3\x2d\x6a\xed\x83\x72\xca\x18\x6a\xed\x42\x2f\x1d\xaa\x18\x1e\xf6\x5b\x76\xd1\xfe\x98\xa3\x67\x46\xa3\x8c\x17\x1c\x8d\x68\x5e\xf9\x57\xd4\x92\x94\xa1\x9b\x4a\x0f\xb2\x64\x03\x29\x6a\xa0\x2c\x21\x5c\xd5\x68\x81\x16\xb1\xa8\x71\x42\xba\x16\x9c\xf1\x92\x03\x64\xce\x41\xab\xd7\x91\x7f\x0e\x43\x4b\x29\x6d\x21\x0a\x51\x55\x0a\x76\x08\x3e\x36\x88\x81\x7c\xb3\x1c\x72\x33\x5a\x3e\xdb\x64\x82\x90\x69\xa3\xd7\x53\xa4\x46\x58\x64\x07\x54\xd1\xf8\xd7\xcf\x9f\x8e\xc2\x26\x10\x1f\xf0\x03\x06\x7a\x60\x9b\x2a\xb8\xa3\x6e\x09\x4c\x32\x7c\xc4\x67\xbb\x82\x25\xcc\x02\x79\xa9\x5b\x6f\xa8\xbf\xb0\x2e\x74\xce\x32\x50\x68\xcf\x6f\x03\x44\x56\x2d\x84\xa1\x95\xd4\xb7\x81\x92\x68\xbd\x57\x0e\x8e\x51\xa9\xdf\x06\x10\xd5\x56\x90\x2c\x09\xc1\x80\x2c\x10\x8c\x0d\xcf\x90\x09\x36\x5f\x77\x3e\xe6\x8d\x79\x1b\x09\xf7\xca\x3f\x48\x01\xa5\x0e\xfa\xb5\x6b\xe4\x87\x27\xf2\xa1\x31\x92\xb8\xb6\x59\x49\xc9\xfa\x05\xe9\x4c\x33\x5a\x5a\x1c\x82\x33\xd9\xf5\x26\x69\xdc\x65\xe3\xd0\xf3\x49\x7e\x46\xc7\x5f\x53\x30\x0d\xd2\x21\x1b\xc5\x09\x72\x53\xde\xa5\x17\x84\x10\xc9\x4e\x8c\x3d\x9f\xdf\x2d\x38\x4d\xde\x2a\xb2\xe7\xa5\x1e\x59\x88\xc3\x9f\xe4\xb8\xa1\xcc\x33\x7b\xec\x6c\xc6\x26\xe3\x9e\x97\x72\x66\xf7\x51\x60\x5e\x39\xc6\xf8\x43\xcb\x6c\x87\x6c\xf2\x21\xd2\x70\x3f\x18\xa8\xe8\xa2\x92\x67\xa6\x5a\x73\xf8\xc2\xcc\x28\x54\x34\xb7\x70\xa6\xec\xfc\x7b\x0b\x98\x43\xb2\x48\x6d\x4c\xd2\xf8\x83\x5a\x3f\xe4\x11\xd5\x2f\xc5\x26\x4a\xba\x51\xbd\x91\x7b\x2c\xe6\x18\xcd\xe5\x5e\x39\xb1\x23\xa9\xe8\x0e\x74\xdc\x81\x92\xdc\x58\x92\x78\x97\x73\xb1\x55\x74\xfd\x7c\xa4\x88\x2c\x5b\x95\x61\x77\x9d\x21\x67\x07\xed\x32\xbd\x05\x93\x38\x89\x0c\x41\x53\x7a\x75\x1f\x48\xaa\xad\xf7\xd5\x08\x94\x5e\x54\xad\xdb\x6a\x6b\x62\x6d\xfb\xad\xbe\xf3\xbc\x6b\x23\x1a\xaa\x7c\xed\x5a\xbe\xde\xd0\x85\x31\x16\x43\xa0\x89\xd6\xf7\xda\x5d\x5a\x0d\x2c\x8d\xb0\xe9\x47\xd9\xcd\xde\x79\x2e\x05\xa8\x49\x0f\x05\x0b\x32\x3d\x21\xb3\x9f\xed\x47\x35\xd1\x2f\xd6\x0e\x0a\xbf\xe3\x74\xae\xdd\xc7\x82\x38\x49\x79\x4f\x62\x26\xb9\x71\x94\x8e\xe2\x82\xcf\x04\x78\x13\x09\x7a\x21\xab\x8d\xbc\x71\xf9\x82\xcf\xd8\xe6\x1f\xac\xac\x47\x77\xc1\x67\xba\xef\x5a\xad\x06\x0d\x8e\x2f\xf8\xcc\x44\xbe\xf7\x12\xee\x6d\x68\xd4\x67\x2a\x28\xd3\xf0\x6b\x65\x3b\x5f\x93\xe3\x28\x97\xbd\x2a\x3b\x83\x28\xad\x67\x35\xd9\x94\x2d\x33\x0f\xfe\x70\x8f\x59\x3f\x08\x53\x9e\x98\x51\x5b\x73\xa8\xe1\x37\xe5\x1f\x5d\x80\x6c\x37\xff\x70\x16\x97\xfd\xa1\xd9\x4f\xdb\xce\xee\xc1\x03\xd5\x24\xfb\x1d\x9f\x5d\xf2\x67\x5f\x59\xb0\x6b\x64\x01\x72\x99\x35\x50\x8a\x4a\xcc\xfe\x90\xd7\x9d\xc1\xdb\xa4\xf3\xfd\x78\xe5\x54\x2e\xfc\x09\xf9\x12\x58\x93\xa2\x2f\x4e\x77\x3a\x4c\x9b\xe4\x0d\x34\xc2\x10\xe3\x30\x48\xcb\xa5\xe5\x52\xc5\x64\x16\x30\xde\xd6\x99\xf1\x2d\xb1\xb2\x81\xf2\x92\x75\x97\xff\xf1\x43\xff\xbe\xee\x42\x0c\xfc\x9c\x5e\xf8\x6f\xae\x76\xfa\x7d\xb5\xcd\xaf\xa8\xe4\x5c\x7b\x70\x25\x59\x10\xf1\xcd\x45\x67\xfb\x1d\xbf\x48\x08\xd4\x5e\x14\x1c\x4e\xa9\x7d\x28\x24\x1c\xfd\x28\xf2\xfc\xca\xeb\x81\xfe\x8c\x30\x72\x59\xe0\x59\xb5\x4e\x70\x47\xb5\x4e\x23\x52\xec\x03\x3d\xdc\xab\x30\xf6\x6a\x75\xd1\x59\x5f\x8d\xca\x32\x3d\x31\x63\xbe\x43\x08\x3b\x3c\x05\x42\x85\xc4\x57\x1a\x10\x43\x10\x73\xea\x1d\x2b\xa4\x8c\xbe\xff\xd9\x5b\xf1\xbf\xa4\x98\xc9\x87\x4c\xb8\x49\xb2\xb5\xe6\x98\x9f\x42\x81\x3e\x25\x1f\xf8\x17\xb6\x65\x92\xf2\x84\x0c\xa5\x0b\xbd\xe1\x49\x08\x45\x23\xeb\x25\x65\x18\xf4\xe7\x3a\xc1\xe7\x4e\x51\xfe\x08\x21\xce\x97\xec\x23\xa1\x77\x7a\x4b\xba\x95\xb2\x70\x57\x4e\xd2\xb1\xee\x76\x4e\xc0\x2f\x85\xf1\xd5\xc6\x89\x0b\x22\xf9\xda\xa6\x02\x57\x37\x1b\x34\xa1\x49\x00\x5b\x9a\x5b\xa7\x69\xe4\x1e\x1b\xec\x6c\x81\xc5\xd3\x42\xb8\x7b\x8e\x41\xc2\x3c\xab\x7f\xe2\x69\x8a\x0c\xca\x97\xd8\x2c\x63\x5e\x57\x68\x42\xbe\xc4\xae\x34\x27\x63\xb9\xea\xca\x6e\xe6\x1f\xd0\x31\xa0\x1d\x5b\x18\x72\xce\x29\x86\xfd\xf8\x95\xb3\xa8\xe3\x4e\x2b\xc0\x99\xc3\xa8\xbe\xf7\xc3\x60\x3c\x96\xe8\xcf\xae\xb7\xe0\xc0\xd1\xa0\x8d\x00\xa2\x1b\xbb\x66\x30\x9e\x18\x82\xce\x18\xd9\xc7\x52\x42\xae\x79\xc4\x1f\xa3\x9d\x46\x55\xb3\xb1\xe0\xac\x52\x45\xf6\xbc\x74\x46\x1e\x8d\xce\x62\x1a\x8e\x22\xe1\xf0\x77\xb9\x2e\x61\xfc\x04\x80\x3f\xb1\xc9\xcf\x34\x1e\xd7\x07\x55\x36\xf2\x52\x7f\xc8\x7b\x92\x6b\x93\xe3\x38\xa6\xdf\xa7\x45\x6f\xca\xe6\x06\x39\x44\x5e\x97\x66\x38\x85\xec\xf4\x9d\x46\xd9\x8f\x0b\x29\xb1\xfd\x30\xf2\x6b\xe4\x77\x6c\x08\x5a\x6b\x7f\xdf\xfc\x94\xd0\x3f\x58\x74\x72\xc0\x53\x45\x92\x16\xbd\xd3\x2c\x26\xd8\xb9\xb0\xaf\x44\xac\x72\x64\x5b\x4d\xf7\xee\x64\x3b\x77\x84\xd9\xb2\xfd\x9c\x7c\xe9\x85\x41\xcf\xbe\x38\x37\x4a\xde\xd8\xb3\x19\xe4\x7f\x86\x94\x7f\xb0\x7b\x2d\xe7\x08\xf8\xae\x36\xbf\xcb\x5c\xa0\xb1\xc5\xae\x17\xf2\xd1\x2b\xa7\x6e\x3c\x29\x5a\x58\x88\x9a\x97\xf1\x13\xc2\x4f\xc6\xa4\xdd\xa2\x17\x44\xdb\x5f\xb8\x9a\x3e\x3a\x3f\xd5\x3c\x59\x4a\x63\x16\x4f\x12\xbd\x44\x3a\x18\x84\xd3\xd3\xae\xd6\x61\xbb\xa8\xd5\x8c\xa3\xd0\x64\xd9\xfa\x5c\x60\xff\x54\xaf\xb3\x1e\x1f\x73\x74\x69\x3c\x9b\xd9\xa7\xd3\xd2\x23\x71\x8c\x9e\x09\x19\xae\x80\x5a\xb1\x40\x0e\x93\x06\x24\x42\x09\x36\x9c\xd9\xf6\xc2\xb6\xce\xf2\x75\x9c\x04\xdf\x21\xe9\x8b\xc2\x54\x88\xa2\x4c\xa4\x45\x6b\x9b\x30\xba\xa2\x1d\x58\xc2\x0b\x22\x8a\x24\xa3\x40\xbd\xa4\x50\x32\x0a\xd7\xd9\x04\x96\xfb\xb1\x94\x86\x67\xf9\x26\xa1\x0a\x24\x90\xba\x81\x04\x46\xdc\x13\x93\x44\x9d\x0a\xab\xc1\x90\xeb\x30\x02\xb0\xb0\x85\xfd\xec\x38\xad\xef\x2d\x68\x6e\xf4\x46\xb4\x9b\xc7\x6a\x7a\xa7\xca\x97\x2b\x7b\x88\xad\x1a\x4b\xf3\x6a\x98\x31\x9c\xb2\x3a\x5b\x63\xcb\xb6\xba\x47\x6e\x7d\xae\xca\x8b\x9c\xfa\x09\x8d\x61\xed\xe5\x33\xbe\x02\xce\x88\x9d\x3a\x7a\xd8\x05\xc3\xca\x54\x5c\xb6\xc7\x53\xb4\x7e\xa7\x05\x21\xb0\x7e\xb1\xeb\x42\x6a\xea\x4e\xae\x28\xbe\x8e\xd3\x5b\x8e\xb9\xd8\x09\x46\x81\x8f\x56\x4c\x5d\xc9\xb3\x77\x49\xb1\x29\x11\x67\x23\x49\xbc\xd9\x2f\xb2\x14\xd0\xf6\x9a\x79\x49\x92\xf9\x22\xb9\xd5\x4c\x11\x04\x97\x71\x51\x31\x5c\x22\x16\x27\x6c\x79\xf5\x16\xc1\x14\xcb\x5e\x92\x54\xd1\xca\xc8\x3c\x56\x4f\x04\x24\x87\x93\x14\x03\x62\xa3\x05\x7d\x95\xd6\x06\x48\x1a\x1c\x14\x18\x65\x6d\x9c\xc4\x69\x9c\xce\xc6\xbc\x26\x2b\x66\x75\x93\x5e\x92\x40\x79\x19\xe1\x67\x82\xb3\xc9\x5e\xba\xa8\x04\xe9\x02\xca\x3b\x93\xf4\x01\x43\xe7\x78\x23\x8e\xce\x07\x41\x9c\x40\xb4\x13\x58\x60\x6b\x6b\x10\x34\x68\x7b\x10\x38\xa2\xea\x4c\x84\x8d\x57\x7a\xaa\xc6\xdc\x83\x8a\x32\xd6\x34\x1d\x58\x35\x5b\x93\x01\x25\x8b\xec\xa0\x2d\xdd\x7f\xd6\x1c\x5a\x1d\x93\x77\x71\x3c\x66\x69\x12\x4f\x06\x43\x4a\xcc\x87\x59\x33\x46\x5a\xbb\x0d\x36\x20\x13\x34\x00\x01\xef\x9d\xa4\x87\x5a\xd9\x87\x8c\x7b\xfe\x90\x08\xf1\x88\x12\x1b\x0c\xa5\x5c\xd5\x0b\x90\xb1\xb5\x94\xdc\xbf\x14\x5d\x5e\xb6\xb7\x35\xf8\xce\x47\x3a\x88\x7a\xa0\x85\x5c\x03\x8f\x7a\x92\xce\xef\x8e\xc9\xb9\x52\x07\xfe\x81\xdc\xa1\xea\xfd\x5c\xa4\x16\xfb\xa5\x99\x06\xab\xf7\x05\x47\x35\x99\x44\xfa\x35\xa0\xac\x07\x54\x85\x31\x57\x61\x0c\x0e\x4b\xac\x6b\x1c\xc4\x7b\x13\x29\xb0\xc3\x28\x37\xed\xa4\x95\x4a\x0b\x67\xcf\x0e\x54\x6f\xba\xa0\x26\xc2\xc0\xe7\xe5\x95\xaa\x39\x20\x76\xd7\x25\x39\xc1\x12\x75\xae\x68\xbb\xdb\x71\xad\x1f\x27\x6d\xcf\x1f\x96\x4d\x34\x24\x27\x99\x95\x2a\x3e\x2e\xa9\x89\x96\x4e\x2b\xec\x87\xbc\x1c\x6e\x8a\xd9\xe5\x30\x88\x38\xeb\xc5\xe9\x72\x14\xdb\xcf\xc1\x26\x25\xe0\xd4\x4b\xa2\x72\xa9\xab\x20\xd6\x14\xc0\x2e\xfa\xd0\x8e\x13\xee\x7b\xe0\x45\x0b\xb7\xce\x54\x8b\xba\xf7\x4a\x15\xd7\x07\x9c\xd4\xac\x72\xd9\x8a\x06\x28\x45\x3c\xab\xfd\x8b\xdb\x8f\xd6\x9e\x72\x8d\x47\xb2\x6a\x0f\xfd\x77\x4c\xc6\xa3\xc8\x7e\xa2\x56\x9c\x92\x96\xd2\x01\x4d\x18\xbe\x9e\x9c\x7c\xf9\x08\x32\x0a\x8e\xc6\x21\x4f\x39\x85\x43\xd8\x73\xa2\x68\x29\x68\x96\x2b\xd4\x19\xef\xc7\x09\xc7\x0b\xa6\xb7\x47\xc1\xc4\x40\xaa\x92\xf7\x49\xf8\x65\x10\x4f\xf0\x61\xb7\x17\x73\x15\xd9\x80\xe0\x8d\xb8\x10\xf8\xac\x96\x0e\xb9\xe0\x26\xd6\x17\xfc\x27\x0f\xa7\x8a\xd6\x51\x23\x2e\x2a\xeb\xf0\x56\x50\xc7\xbc\xad\x3b\x1f\x0d\xab\x7f\x23\x0c\xa3\x0d\xd2\xd6\x06\x08\x88\x6d\xb2\x7e\x54\xc6\x0b\xa3\x26\xec\xfa\xee\x67\x62\xbf\xc8\xaa\x45\x1a\x60\x07\x4b\x16\x25\x9c\x81\x95\x23\x32\x84\x32\x04\x48\x85\x90\x04\xf2\xee\xc1\xe1\xfe\x97\x08\x23\xde\x77\xa0\x8e\x12\x7c\x15\x21\xce\xa5\x91\x48\x3f\x6e\x4b\x28\xa1\xf6\x3c\x6a\x89\x3d\xfb\x13\xc0\x16\xfe\x24\x81\x2c\x4d\xa7\x98\x3f\xd9\x24\x96\xcc\xd1\x51\xc9\x80\x2c\xb1\x2e\xf1\xd0\x5d\xd9\x77\x57\x83\xeb\x92\x31\xb0\x33\x3a\xc5\x50\xa7\xfe\x10\xb4\x95\x8a\x1b\x88\xcf\xce\x65\xd7\xf1\xd9\x79\x71\xd7\xd6\x78\x15\xc7\x0e\x40\x72\x32\x7f\xd1\x2b\x6a\x96\x72\x16\xd5\x99\xa3\x8a\x57\x12\x4f\x9e\xf6\x66\xab\x64\x8c\x71\x1d\x79\x29\xdf\xda\xf9\xee\xfa\x78\x9b\x27\xe8\x4c\x33\xfb\x9b\x7b\x07\x0e\xe1\x91\x9b\x72\x66\x29\x1d\x01\xdd\x03\x25\x99\xe2\xa4\x95\x28\x1c\xf1\xa9\xc6\x6a\x92\x17\x90\x42\xf0\x4c\x99\x61\xaa\x0a\xa0\x6b\xab\xfd\xeb\x2c\x61\xf5\x3f\xe0\xc3\x07\xb8\xe9\xac\xab\xf2\x18\x62\xbf\x5d\xc8\x91\xc3\xba\x13\xfa\xa5\xfc\xf5\xe2\x7e\x51\xc8\x83\xc5\x3c\xc3\x82\x9b\x82\xdd\x94\xcd\xb5\x08\xfa\x4a\x5e\x04\xba\x23\xd2\x24\x9e\x49\xb2\x83\xa1\x62\x68\x08\x60\x87\xde\x9f\x24\x60\x45\x83\x20\xd4\x6d\x91\xb8\x19\x73\x89\xd7\x02\xb1\xa5\xda\x67\xae\x8a\x7d\x01\x42\x9e\x2a\xf4\xa6\x28\x6b\x84\xee\x88\x1b\x80\xe8\x49\xfc\x45\x55\xe5\x06\xfb\xa1\xde\x5a\xbd\x24\x89\xa7\xfb\xb9\xd2\x34\x4d\x82\xb3\x49\xea\x14\x92\xee\x6e\x03\xad\x3a\xa9\x90\x36\x4c\x57\xb3\x24\x68\x25\x14\xe7\xdf\x54\x4c\xe8\xa8\x1b\x71\x7b\xee\x65\x82\x5e\xd4\xf5\xda\x54\xad\x02\xe7\x11\x1f\x4a\xb2\x2f\xf9\x50\x48\x6a\x9b\x9a\x3a\x92\xf0\x12\x61\x3f\x64\x5a\x03\xf7\x26\x69\x6c\x59\x3a\x48\xee\x2d\xb1\x75\xa7\xe4\x5a\x94\x61\x40\xab\x04\xc5\x30\xb6\x5a\xab\x43\xf9\x12\x81\x6d\xed\x6a\x38\x80\xa3\xd0\xaf\x81\x9a\xa2\x35\x74\x1f\x29\x71\x9c\x04\x83\x20\xf2\xc2\x0f\xb6\x45\xcb\x45\x14\x4f\x51\x7f\x44\x5f\x35\xa6\xc7\x15\xb5\x35\x3a\x73\x8d\x38\xb2\x4b\xe2\xd8\x74\xcc\xdb\x9a\xdf\x58\x73\xc3\x52\xca\xa3\x54\x2b\x36\x08\xb9\xb9\x8d\xb1\xcc\xb6\x37\x0c\x37\x46\xa5\xf7\xc6\xdc\x8b\xd9\x5d\xea\xe6\xd6\xb1\x6b\xce\x5f\x6e\x89\x37\x33\xcb\x48\x7d\x61\xa1\x7d\x74\xd8\xe6\x0d\xe7\x2a\x7f\xa4\x2c\x45\xd2\xbc\x4b\x60\x73\x48\xae\x42\x6f\xde\xca\xdf\xb8\x51\xee\x3c\xec\x85\x2b\xe8\x55\x0f\xff\xc6\x69\x29\x99\x81\x5c\xb9\x94\xc4\x50\xf2\xce\x44\x1c\x4e\x52\x5e\x32\xf3\x26\x79\xce\x15\x2f\x08\x4f\x39\xc2\x0c\xf4\x96\x91\x68\xac\x1d\x36\x3e\x52\x1a\xa5\xc3\xad\xf2\xbd\x30\x64\xdd\x38\xc2\x8c\xb1\x5d\xf8\x7d\xe6\x41\x6a\x27\xd5\x0c\x8d\x14\xe3\x88\x0b\xb7\x89\x22\x14\x76\x13\xf0\x04\x72\x70\x2f\x02\x36\x98\xb7\xe8\xa3\x9b\x6e\xd7\x59\x37\x35\xb2\xb2\x9a\x4f\x56\x93\x93\xa9\x8d\x83\xb2\x6b\x67\xd5\x2d\x14\x79\x55\x19\xbf\x01\x22\x70\xfc\x20\x35\x17\x1f\x08\x46\xd2\xc5\xdd\x64\xe2\x9c\x9f\xe2\x42\x87\x44\xb5\x8d\x6d\xec\xce\x16\x0f\xd5\x9f\x56\x32\x40\xe2\x9b\x2c\x01\x33\x1e\x71\x63\xac\x82\xe9\xcf\x95\x5c\x04\xc6\x2a\xcc\x92\x92\x22\x65\xe3\x6b\x43\x3e\x99\x9b\x90\x95\xa4\x17\x7c\x74\xd7\x6c\x9f\xf1\x9e\x8b\xb0\xf5\x6f\xbd\x79\x29\x58\x65\xdf\x1b\xf1\xb0\xe5\x09\x9e\xcd\x2b\x67\xaa\xd2\x48\x0a\xda\x48\x96\xfc\x83\x27\x7c\x0f\x7e\x55\x2d\x05\x34\x3d\xae\x5c\xf2\xa8\x17\x27\x04\xa3\xb2\xf8\x35\x60\x5f\xcd\x56\x79\x8f\xc9\x95\x2a\x67\x12\xba\x92\x2a\x1d\xc7\x05\x39\xc8\x91\xba\xb3\xd2\x48\x94\xaa\xac\x74\xc4\xcf\x2e\x02\x50\x4e\xef\xc4\xdf\xe5\x3f\xbb\x94\x88\xdc\x8a\x68\x2e\xe1\xb3\x4d\x3d\xa7\x9a\x3f\xf4\x92\x46\x5a\x5e\xa9\xd4\xd2\xf8\x50\x56\x90\x13\x2a\xc3\xa3\xa9\xaa\x82\x3a\x85\x55\x75\xc3\x8b\xb2\x9a\xab\x31\x99\x44\xe6\x4b\x4b\x99\xe0\x16\x58\x05\xba\xc6\xba\xc7\xc1\xa9\x13\xc8\x22\xa5\xb4\xbf\xaa\x06\x7b\xc9\xba\xff\xf8\x81\x7f\x5f\xff\xe3\x87\x1e\x3d\x58\xfa\xa8\xc1\x59\x2e\x0c\x99\x3c\xf2\x10\x80\xb4\x06\x3c\xd4\x31\x81\x3e\xcd\xe6\x8d\xcf\xa7\x78\xa0\x9a\xb9\xf8\x70\x2a\xb1\x0e\xa6\xeb\xca\xa8\xec\x32\x57\x2a\xcb\x77\xe7\x2a\x64\xe2\x19\x14\x6d\x7d\x01\xcb\x5f\x58\xaf\x94\x49\xcf\x07\xcc\xa7\xb0\x48\xd7\x6f\xb3\xcb\xc4\x10\x2b\x7e\xb9\x98\xd9\x35\x58\x55\x21\xf3\x78\xe2\x0f\xc1\xda\x1c\x22\xb4\x48\xc1\x0e\x44\x04\xe0\x5e\xbb\x45\x78\x4f\xa1\xf4\x3c\x86\xca\x92\x9b\x92\x81\x54\xaa\xb8\xc8\x9e\xe6\x9c\xf0\x51\x7c\xc9\x1b\x8a\x31\x2e\x97\xae\x96\x35\x55\xd5\xaa\x23\xbb\x01\x4a\x2a\x16\x41\x2d\x95\xe6\xd6\xc2\x58\x43\x37\x54\xa0\xc8\x42\x37\xd4\x50\xd6\xfc\x37\x54\xd1\xee\x05\x37\xd4\x91\x24\xb2\x35\xa4\x5c\x30\xf3\xeb\x1d\xcf\xc5\x2f\xb6\x77\xea\xa9\x81\x41\x62\x0a\x00\x22\xfd\x58\xfb\x92\x47\xe9\xbb\x40\xa4\x3c\x92\x1c\x80\x45\xed\x71\xad\x6d\x66\x29\xe8\x4b\x8a\x97\x30\x7e\x35\x0e\x03\x3f\x48\xc3\x19\xf3\xc4\x05\xb9\xf3\x02\x03\xce\x43\x8e\x22\xa6\x3e\x5e\xea\x21\x2f\x86\xe8\x78\xa0\x1e\x40\xc0\x46\x1c\x84\x34\x8a\xa4\xcf\x52\xd4\xc1\xca\x82\xeb\x10\x67\x6c\xbb\x1b\xd1\x01\x2d\x3c\x24\xc6\x99\x9c\xaa\x43\x4a\x8d\xb2\x55\xa5\x92\x73\xc4\x95\x1f\xe7\x92\x2e\x32\xa7\xf1\x84\x88\xfd\x00\x78\x0d\xa5\x66\x5b\x18\x83\xa0\xd8\x2a\x08\x3d\x5a\x16\x91\x74\xed\xfa\x52\x68\xe3\xe3\x98\xf4\xcc\x33\xf5\xb1\x55\x24\x6e\x83\x97\x6c\xae\x4d\x10\xdb\xa0\x19\xcf\x4d\xe0\x70\x17\xef\x63\x9c\x42\xde\x19\x36\xe3\x94\xe0\x41\xac\x9f\x83\xd8\x06\xe4\x86\xc8\xa9\x32\x7e\x09\xff\x28\x5e\xb1\xea\xc4\xc3\x11\x99\xc8\x72\x4d\x0c\x5b\x5d\x1c\x32\xc7\xf8\xa1\x59\x64\x34\xf5\x92\x01\xc7\x77\x56\x68\xfc\xd2\x6d\x7c\xd3\x7a\xd9\x15\x01\x22\xc2\xaa\x79\xbd\x9e\x73\xc1\xca\xb9\x29\xfc\x60\x63\x4f\x88\xe0\x92\x6f\x60\x12\x07\xad\xf8\xa4\xb8\x52\x72\x24\xfa\x94\x17\x2f\x92\xa2\x74\x59\x57\x3d\x1a\x83\x15\x5b\x41\x5b\x43\xe3\x30\xb4\xde\x5e\x8d\x46\x15\x38\xeb\x7a\xa2\xfd\xc5\xe8\xca\x38\x5f\x6b\xe3\x89\x18\x52\x57\x95\xac\x93\xc8\x3e\x4f\x27\x63\x15\x2d\x00\xfa\x84\x17\x27\x40\x35\x9a\x79\x26\x47\x0c\xfb\x75\xdf\x78\xaa\xdd\xe1\x11\x29\x09\x2e\xc9\x24\xf5\x86\x3b\x25\xe4\x88\x32\x38\xef\x24\xe7\x25\x41\xd8\x06\xfe\x36\x3a\x0e\x1c\x28\x38\x2e\xd8\xde\xb4\x7b\x1c\x2c\x09\xdd\xe9\x49\x0c\x88\x97\x48\xc3\xa8\x59\xed\xd9\xa6\x0d\x0d\x96\xd6\xdc\x76\xa3\x35\xcf\x9f\x9f\x52\x02\xbd\x95\xaa\x79\x98\x37\x9c\xa5\x7a\x9d\x51\xe8\x9c\xfc\x28\x9d\x3c\xe8\x76\xa8\x59\x28\x37\x99\x64\xb2\xa7\xcb\xd1\xed\xdf\x7c\x34\x1d\x50\x74\xc8\xc8\x03\xb5\xa4\x55\x62\xd9\xd9\xd8\xe5\xb9\xf3\x88\x7d\xda\x1f\xcd\x40\x9d\xdf\x56\x3d\x98\xba\x50\xac\x9c\xc3\xd7\xa8\x84\x37\xb2\x5e\x16\xe9\x15\x9c\x98\x2c\x0f\x57\x50\xc5\x65\xdf\x3a\x94\x40\xd4\xeb\xf5\x18\x6e\x60\x5d\x58\xfb\x81\x9a\x56\xcc\x3d\x97\x70\xdf\x0b\xfd\x49\xe8\xa5\x4a\xe9\x5a\xac\xb7\xd5\x6a\x3c\x08\x7e\x97\x0e\xf9\x0c\x42\xdb\xa5\x49\x30\x18\xf0\xe4\x36\xd2\xe6\x82\x9b\x82\xdc\x5b\x96\x3d\xb0\x52\xf4\x5a\x0c\xa3\xb3\xb4\x05\x52\xba\xdc\x95\x39\x17\x6f\xae\xd2\xca\x95\xca\xdd\x42\x5b\xef\xa8\x8a\x1c\xcd\x73\x06\x67\x39\x1b\x8a\x3c\xc1\xcd\x3b\x5a\x54\xa7\x78\x4b\x89\x4b\x9a\xbb\xab\xd3\x18\xa3\x87\xab\x5d\x2d\x46\x72\xf3\x36\x51\x76\xe3\x85\x22\x26\x30\xf4\xa1\x48\x71\xc2\xbc\x68\x36\x8a\x13\x8e\x4f\xf5\x93\x28\xe4\x42\x40\x3a\x20\xd4\xb4\x28\x7d\x0d\x59\x85\x8c\xbc\x68\xe2\x85\xe1\xec\xf7\x85\x88\x62\x2e\xd2\x1c\x93\x85\xa7\xc4\xf7\x22\x9f\x87\x8d\x28\x18\xc1\xeb\xec\xab\x44\xf2\xaf\x05\x5b\xea\x70\xf7\xea\x54\x15\xed\x53\x39\x73\x9c\xac\x16\x73\xd3\xce\xdd\xcc\xa4\x98\x17\x45\xd8\xeb\xbf\x05\x21\x2b\x9c\xb9\x35\x69\x9c\xaf\x45\xa4\xac\x63\x7a\x23\xad\x2a\xa4\x43\x05\xbd\xdd\x44\x8a\x2c\xba\x43\x1d\x8b\xdb\x93\x9f\x02\x94\xaf\x6d\x17\x14\x8b\xa6\x2d\x17\x88\xc7\x29\x1c\x9f\xa2\x30\xc5\xe3\x63\x0e\x79\xdc\xe3\xe0\x12\x40\x4e\x2d\x85\x04\x5b\x67\xf4\x2e\x18\x20\xdb\x64\xc7\xa7\x37\xd0\xa4\x4c\xdb\x2c\x29\x32\xc1\xb1\x0a\x29\x91\x3a\x7f\x07\x3c\x0c\x21\x3f\xbf\x4a\xee\x14\x44\xe3\x09\xc4\x5a\xf3\x18\x3a\x56\xff\x8a\xd9\xcd\xc3\x6b\x82\x53\x94\x91\xff\x0e\xfa\xc7\xf7\x93\x11\x4f\x02\xbf\x1c\xb9\x1a\xc6\x08\x75\x33\x2a\x0e\xc0\x7b\xef\x7d\xd9\xb2\xda\x8f\x2a\x15\xb2\xba\x08\xa2\x20\xe5\xe5\xa8\x20\x35\x11\x01\xb6\xec\xa6\xa8\xc4\xbd\x9d\xfb\x24\xad\x81\x68\xac\x8c\x76\x71\x9d\x7e\xc1\xde\x7a\xbe\x2c\x67\x45\x99\x49\x63\x7c\x1f\x75\xfa\x9d\xe7\x4b\x6c\x65\xce\xc2\x22\x94\x22\x3d\x6d\x84\x65\x99\x96\x48\xca\x41\x39\xee\x6e\xb4\x49\xe6\xe1\x6d\xec\xf7\x05\x05\xb2\x12\x56\x76\x44\xf8\x4d\x3b\x65\xfb\x5a\xd2\x07\x7d\xe3\xc6\xa0\x56\xfc\xc3\x24\x4a\x48\xd9\x24\x0a\x1c\x1d\x47\xbd\x0e\x8c\x0d\x14\x07\xda\x4e\x7b\x02\xc1\x07\x22\xda\x3b\x39\x21\x0a\x49\x40\x6c\x4c\x3f\x0e\xc3\x78\x4a\xcf\x48\x76\x20\x55\xc6\x8e\xc9\x28\xb5\xaa\x0d\x55\xab\xca\x53\xc0\x98\xe9\x92\xb7\x40\x81\xc1\x6e\x12\x8f\xc1\x56\x57\x81\x63\x76\x4a\x74\x66\x9d\x54\x4a\x94\x05\x76\x05\xe4\xfd\x69\x29\x0e\xd5\x34\xc7\x57\xa5\x6c\x5e\x0a\x32\xcd\x06\x1d\x0c\x59\x25\x30\x1b\x18\x5b\x82\xd6\x06\xcb\xe4\xc4\xe8\xdf\x55\x0d\x16\x98\xc0\xa8\x66\xca\x12\xe6\xe6\xa4\xaa\x56\x27\xf3\x1d\x0f\xe7\xc7\xa4\xcf\xc6\x19\x98\x17\x9a\x1e\xd2\xbf\x4e\xa2\x1e\xef\xdd\x60\x30\xe1\x54\x70\xe2\x63\x35\x93\x78\x2a\x4c\x46\x73\xa3\x78\xa5\x0f\x88\x01\x94\xc8\xff\x2a\x48\x78\x3f\xbe\x42\x09\x9e\x5a\x3e\x78\xc0\xea\x54\x5e\x0f\x6a\x29\x17\x69\x39\xf2\x2e\x83\x81\x97\xc6\x49\x6d\x22\x78\xd2\x18\x90\x4f\x93\xc1\x24\xff\xa3\x6e\x4e\x06\x4b\xec\xb8\xc6\x87\xbf\x16\x77\x20\xc3\x8a\xfd\x37\x44\x1e\x40\xf7\x2f\xb4\xd6\xa2\x1e\x33\xc9\x74\xaf\xaa\x6c\x06\xe1\x5a\xe8\xf3\x0b\xfb\x23\x31\x43\xd7\xea\x3d\xd7\xc4\x1d\x71\x79\x04\x30\x85\x0b\xf9\xc0\xf3\x67\x46\x0d\x18\x29\xdc\x7c\x2e\xd8\xe5\x9a\x01\x8b\xf5\xb6\xc7\x93\x86\xef\xf3\x90\xe3\x9a\xa0\xe1\xa7\xb2\x1f\xb2\x9e\x5e\x95\x19\x86\xa5\x6d\xc6\xaf\xb6\x31\xa4\x36\x07\xd4\xaf\x5b\xb6\x42\x1a\xc4\xce\xda\xc0\xed\x50\x9b\xaa\xdf\x34\x9c\x7b\xb6\xa9\xa7\xf3\x78\xa2\x8d\x25\x15\xce\x29\x1d\x35\xf6\xde\x77\xde\x6f\x6f\xb0\x6e\xa6\xa7\x2e\x2d\x2d\x93\x4b\x05\xf8\xbf\x6b\xef\x8e\xa5\x79\x07\xa9\x43\x92\x8b\x28\xa6\xfc\x24\xea\xbd\x2d\x88\x58\x7f\x92\x4e\x12\xce\x2e\x79\x22\xe0\x78\x19\xda\x77\x2e\xee\x95\x72\xaa\x1e\x5c\xeb\xcc\x50\x94\x6d\xfb\xad\xe7\xac\x66\xf7\xf2\xa6\x26\xaa\xd2\x86\x3a\x43\x05\x6b\x7d\x32\x2f\xec\x58\x36\xb1\xb2\xbb\xe9\xb6\xd2\x37\xdf\xfc\xc6\xc4\x0f\x4e\xc0\x22\x4b\x9b\xa2\x68\x79\xd6\x77\x52\xbb\x06\x20\xe3\xaf\x5c\x5c\xf4\x0b\x44\x41\xdc\x03\x27\xfe\x93\x8b\x0b\xad\x23\xac\x43\x06\x83\x6f\x66\x8f\x5f\x06\x3e\xff\x10\x5c\xf1\x70\x4f\x2e\x0e\xfb\x17\xc3\x54\xfe\x1a\x09\x9e\xe4\xc2\x02\xa8\x24\x96\x57\x78\xb4\x95\xb7\x9d\xe5\xb0\x72\xa6\x13\x52\x66\x13\x59\xce\xb0\x4d\xa2\xb3\x0f\x6a\x87\x15\x2c\x72\x52\xe8\x64\x8f\x4b\x20\x54\x9a\xda\x6e\x9a\x4c\x78\x17\x13\xf6\xea\x78\x31\xf2\xb3\x3a\xa2\xca\x6c\x87\x4d\x39\xbe\x15\x40\x35\x29\x36\x3f\xea\x75\x5d\x76\xcb\xb8\xbc\xd9\xee\x59\x6c\xca\x09\x84\x37\x49\x63\x29\x52\x4a\xf9\x17\xc2\xd4\x20\x93\x66\x3d\x3e\xd3\x2b\x30\xdd\x05\xd7\xfe\xc7\x79\x91\x35\x31\x67\x37\xe7\x3f\xe9\xda\x4f\x2e\x66\x39\xa2\x78\x5a\x95\x4c\x53\x49\xa0\x31\xaf\xc7\x44\xca\xc7\x8c\x24\xf6\x1e\x0b\xe3\xf8\x82\x79\x29\x65\x07\x8a\x7b\x9c\xf9\x61\x2c\x78\x38\x63\xe5\x69\xda\x7f\x59\x21\x30\x9d\x3e\x19\xd6\x44\xa9\xe5\x2f\x4a\x53\x1e\x48\x52\xc7\xe2\xc8\xd7\xe9\x17\x80\xe5\xc5\xe5\xe1\xbd\x2a\xbd\xa5\xd4\xeb\x10\x0f\x7f\xe8\x8d\xc7\xa0\x6c\xf0\x52\x07\x88\x3c\x82\xa3\x40\xc0\x73\x5a\xcf\x36\xd5\x53\x46\x7f\xd4\x39\x81\x8a\x2f\x79\xd2\x47\x06\x0e\x1c\xae\x8a\x82\x0b\x40\xe0\x58\x15\x23\x16\x66\x38\x4e\xe2\xb3\x90\x8f\x20\xc0\xd8\x38\x89\x2f\xc1\x72\x6b\x1a\x6b\x6a\x57\xbe\x82\x55\x99\x55\xaa\xc4\xf7\x7a\x92\x49\x3c\x31\x76\x24\x72\x5f\x24\xf7\x96\x89\xed\x48\x2e\xdd\x68\x42\x54\x33\x8b\x36\xb5\xce\x89\xa7\x6d\x7e\xe4\x99\x19\x63\x92\xdc\xdc\xb0\x61\x68\xbe\x07\x4c\x33\xc1\xe9\x5e\x75\xf1\xf0\xc6\xe3\xae\x6d\xe9\x6d\xaf\x3f\x4b\xe3\xa9\x97\xf4\x04\xac\x85\x84\x2e\x91\x0f\xf7\x7a\x2c\xee\xab\x8b\x91\x0a\x72\x7b\x85\xf1\x49\x46\x1a\xd3\x91\xa8\xa8\x62\x92\x8c\x58\x09\x63\xe9\x32\x56\xac\x40\x81\xa0\x25\x72\x30\x5f\x20\xd8\xbf\x86\xe9\x28\xfc\xc3\xb9\x12\xb0\x27\x22\xe3\x69\xc9\xa9\x77\xb5\xa5\xc2\x4f\xe4\x39\x29\x63\x68\x75\x65\xfe\xa9\xd3\x5d\x55\x0c\x6f\x1f\xf5\x80\x94\xe4\x41\x40\xcc\x7b\x6b\xbb\x71\x0e\xf6\x00\x8b\x02\xc2\x59\x2c\x36\xbe\xb8\x2e\x3b\x2d\x9c\xbc\x60\x4b\x99\x14\x15\x73\x22\xa2\x15\xc0\xb1\x9c\x0a\xe7\x42\x39\xc9\x1b\x02\x01\xa0\x6c\xbc\xb7\x6b\x7b\x7b\x9a\x36\x2a\xac\xd8\x1e\x14\x77\x98\x38\xbd\x24\x17\xcd\xfc\x28\x13\x08\x2e\xa1\xe8\x5b\x45\xf3\x2e\x02\x63\x9c\x2d\xe7\x01\xc9\x4f\x9b\xe0\xe4\x62\xcf\x99\x08\xe3\x19\x94\xfe\xe0\x41\x0e\x37\xea\xd9\x69\x41\xc8\xfd\x2e\x65\x24\x1b\x9d\x97\xff\xf1\x43\xf6\x73\x3d\xbe\xaa\xb2\x7f\xfc\x48\xe3\x31\xfc\xb5\x52\xe9\xbe\x70\xc0\xc0\x8d\x38\xd5\xb9\x6a\x9c\xf2\x66\xbe\x3c\xf3\x74\x6e\x70\x72\x81\xd5\x97\xc4\x62\xe9\x70\xca\x93\x40\xf0\xaa\xa2\x38\x28\xc9\x7b\x51\xcf\x4b\x7a\x78\xe5\xab\xac\x2b\x07\x2a\xff\xc5\xe3\x83\x04\xac\x0b\x6b\xda\x75\xc3\x36\x68\x9b\x97\x20\xba\xe4\x49\x8a\x99\x0f\xf2\x97\xda\xcd\x3e\xee\xb6\xa1\x94\x07\xb9\xa3\x96\x6d\x93\x5d\x9f\x14\x32\x91\xeb\x7e\xe7\xac\x56\x88\x19\xc6\x4d\x57\x37\xac\x5e\x57\xe5\x9a\x96\x1b\x84\x49\xa4\xbb\x19\x73\x7f\x6d\x89\x61\xf1\x42\xc6\x6c\xd9\xf0\x43\x8e\x9d\xc6\x46\xc6\x1c\x32\x6b\xb2\x8c\xfa\x5e\xd6\x95\xb5\xba\x16\x38\xa5\xb5\x40\xbb\x74\x63\x32\x7d\xa2\xcc\x28\xdd\x9e\x59\xad\x56\xb3\x1b\xd7\x6a\xb5\x6c\x2d\x8c\x34\x00\xa5\x86\x83\x93\x15\x55\x0e\x3b\xd5\x86\xbe\x5a\xf5\xad\xfe\x55\x23\xc7\x94\x13\xbe\x5b\x9d\x5a\xd5\xaf\x7f\xdb\xb5\xe5\xf6\xe6\x87\x68\xbf\x46\x52\xb7\x17\x69\x33\x4c\xdb\x78\xbf\x93\xa2\xde\x4f\x28\x18\xf4\x60\x6b\xdb\xf2\x80\xca\xb6\x07\x2b\xff\x4b\xe6\x8c\x73\xbc\xf8\xd8\x72\xde\x05\xb1\xd0\xb3\x2f\xe1\xdf\x26\x5c\xa4\x41\x34\x00\xa4\xba\x8c\x16\x88\x71\xdf\xfa\xa0\x21\xdc\x04\x80\xf7\x8a\xdb\x5b\xd3\xfd\x5d\xfb\xcb\x3d\xfe\x6d\x12\x24\x1c\xe5\x4f\x57\xde\x74\x67\x61\x17\xe1\xb8\xf4\xb3\xb2\x8a\x57\xa2\xe7\x46\x22\xad\x65\x2c\x45\x46\x9a\x64\x9b\xa9\x45\x56\xb7\x0b\x57\x02\x08\x84\x1a\x9b\x12\xe1\xee\xdd\xb3\xfa\x50\x2a\xb2\x8c\x4d\x68\x81\xbf\x60\x36\x5b\xbd\xdd\xaa\x96\x1d\x0a\x2d\xb9\x51\xc0\x59\x75\x8d\x49\x69\xc1\x47\x70\x3d\x65\xff\xb2\xa6\x84\x45\xaa\xaa\x76\x18\xcb\x98\x4c\xa8\x49\x66\xec\x14\x9d\xd5\xec\x9e\x9c\x74\xff\xf1\xc3\x5d\xac\xeb\x93\x93\x6e\xf7\x45\x41\x13\xd0\xd1\x3b\x2d\x70\x4e\xd9\x06\x39\x71\xde\x6e\x70\xed\xdc\xa7\x44\x6d\xc4\xd9\x8c\xd9\xe3\xb0\x6b\x91\xf3\xad\xbc\xe1\xd3\x38\xb9\xa8\xea\x64\xa3\x69\xac\x52\x3a\xb1\x20\x55\xce\x83\x0e\x94\x7b\xdd\x9c\x28\xaf\x33\x6e\xa8\xe5\xc9\x3d\x2f\xbc\xa3\x9b\xe8\xf9\x3e\x1f\x3b\xe6\xfb\xe0\xe0\x28\xa9\xa3\x27\x94\x5a\x9a\x58\x40\xdb\x81\x02\x99\x78\x1b\xb3\x7c\x72\xc3\x75\x40\xf6\xb5\x0d\xf8\xb2\x4c\x21\x42\xd5\x0f\x49\x68\xd5\xdf\x48\x58\xd5\x2f\xa2\xb9\xea\x27\x90\x62\xf9\x03\x0a\xda\x9e\x3f\xb4\xbc\x0c\x24\xdf\x0e\xd1\x20\x3c\x2b\x2a\x1d\xa0\x3e\xd4\x2d\x05\x22\xd5\xdd\x2f\xc3\x7b\xbb\x86\xbb\xcc\xd1\xa7\xfb\x21\x0d\x9c\x5a\xab\x84\x71\x29\x4f\xc6\x09\x97\x8b\xc2\x3d\x11\xa0\xe1\xe3\x2c\x9e\x48\xb8\xd1\x85\x76\x8a\xf6\xd0\x40\x13\x88\x6c\x1a\x63\xd0\x1b\x7c\xdf\x4d\x82\x34\xe5\x11\x0b\xbd\x68\x30\xf1\x06\x5c\xd4\x18\xc4\x62\x88\xa3\x14\xc4\xd3\x32\x0a\x17\xc0\x57\xd0\x84\x2b\x55\xd6\xc5\x21\x02\xfe\x95\x20\xe1\xb3\x1a\x27\x9c\x22\xd9\x81\xb3\xe0\x92\x13\xf1\x09\x24\x2c\x95\xcd\xab\xb8\x20\x53\x4a\xa8\x06\x10\x65\x81\x91\x4e\xe8\x41\x25\x1e\xa9\x88\x2b\xfc\xca\x1b\x8d\x81\xf4\x5a\x1b\x98\xc6\x63\x58\x35\x56\x36\x12\x95\xf5\x02\x89\xb6\x90\x5e\x18\x0c\x22\xde\xab\x38\x9b\x4b\x6b\x0f\x0d\xb1\x9a\xdb\x14\x86\x96\x69\xa8\x78\x2f\xd9\x86\x02\x56\x32\x9f\x47\x10\xb5\xb0\x62\x9f\x29\x6b\x4c\x92\x97\x93\x22\xa6\x0e\x36\x8b\xe1\x65\x4d\xb8\xd9\x2a\x76\x03\x87\x47\x91\xca\xb3\x99\x15\x9a\x45\x2f\xc6\xff\x88\xd4\x4b\x03\x1f\xff\x4e\x67\x63\xae\x88\x19\x96\xf0\x68\x62\x88\x8d\xa2\x20\x5e\x2f\x8e\x42\x27\xf2\x82\x75\x17\xee\xf0\xda\x7e\x2c\xef\x2f\x44\x5e\xc5\x85\x43\xa3\x19\x0c\xc5\x6a\xfe\x94\xf3\xa6\x9f\x72\x67\xec\x9a\xf0\x76\xa2\xbf\x98\x7a\xd6\x66\xd8\x25\xce\x57\x53\x1b\x57\x3d\x57\xe0\x7e\xb5\x81\xc9\x03\x68\x55\xc7\xd8\x4f\xe6\x8b\xae\x7a\xfa\xc2\xe6\x7d\x2c\x74\xa1\xd5\xfe\xb8\x7a\xa2\x6e\xbe\x11\x43\x84\x91\x70\x92\x00\x02\x5d\x50\xd4\xe1\xae\x59\x29\x3a\xfe\xfa\x58\xa8\xb7\x02\x38\xd5\x1f\x4c\x47\x56\xc4\x1d\xe5\x6a\xff\xc8\x7d\x13\xd8\x06\xbe\xca\x8b\x58\x10\x05\x69\xe0\x85\xb6\x4b\x9a\xe2\x15\x54\x44\x6e\x31\x39\x13\x12\x17\x47\x69\x76\xbf\xfd\x30\xf6\x2f\xa6\x81\xe0\xac\x1c\x27\xcc\x8f\x27\xf2\xfc\x2e\xeb\xd2\x8a\xb9\x7c\x7f\x42\xf4\x2f\xb6\xcc\x1a\xb9\x88\x49\xe5\x20\x25\x04\x2f\x0c\x8e\x54\x41\x98\x0c\x30\x9d\x15\x83\xc6\xc8\x96\xf1\x7d\x35\x46\xcb\x32\x49\x92\xbc\xf0\xc2\x8d\xe9\x2c\x54\x65\x3d\x9f\x0c\x2b\x45\xdc\x9f\xd5\x00\xc9\x18\x29\x1f\x82\xc4\x1a\xd1\xa2\x97\x09\xd5\x45\xd9\xda\x07\x35\xd6\xc2\x54\xc3\xe0\x13\xbd\x99\xdd\xf9\x82\x30\x3f\x96\xfa\xd3\x4b\x92\x7c\x13\xa4\xac\x74\x4a\x10\xec\x12\x5b\x55\xd1\x63\xfd\x38\xf2\xbd\xb4\x9c\xed\x46\x87\x6f\x80\x06\x6e\x70\x44\x35\xec\x97\xe0\xc5\x9c\xf0\x4b\x9e\x80\xa7\xc6\x86\xfc\x5d\x14\xba\x6c\x5e\x30\x32\xfb\x4d\xaf\x28\x26\x59\x1e\xc4\x27\x97\x4a\x16\x82\xd0\x75\xfe\xf3\x8e\xcc\xbf\x14\xe9\xfc\xcf\xf0\xde\x30\xf7\x34\xeb\x21\xae\x3e\xd8\x2f\x8f\xcd\xf6\xeb\xc6\xa7\xce\xee\xde\xbe\x12\x78\x5f\xbd\xeb\x7c\xd8\x60\xa5\x7e\x18\x10\xde\x6d\xbd\xdb\x6d\xbd\x3d\xea\xec\xb7\x37\x58\xc9\x80\xc0\x4f\xbb\x87\xef\x0f\xda\x7b\x4e\x8d\xcc\x35\x92\x15\xaf\xff\x73\x2f\x94\xff\x3d\x91\xd1\xe5\x02\x17\xbe\x4b\xe2\x43\x44\x17\xb2\x53\x16\x3a\xa5\x28\x35\x6f\x29\xd5\x5a\x9f\xae\x84\xd6\xb5\xc5\xc0\x39\x6e\x2b\xf3\x5e\x14\x59\x09\xfa\x2b\xe5\x53\x93\xa1\x84\xef\x24\x8d\x05\x20\x2a\x10\xe3\x83\x07\x39\x87\xe1\xcd\xcd\x39\x5e\xb1\xb6\x42\x58\x70\x3e\x92\x6c\xed\x05\x87\xa5\x00\xae\x2e\x99\x01\x3a\x8d\x59\x18\xc7\x63\x58\xd2\x33\xef\x0c\xdf\x4c\x12\x5e\x82\xbc\xc5\x8c\x47\x10\x01\x08\x99\x21\xd8\xaa\x99\x36\xcb\x90\x43\xc2\x48\xfc\x41\x4f\xe9\xb4\xe6\xcc\xe3\x96\x91\xdd\x8b\x1e\xe3\xaa\x45\x9f\xb2\x26\xa0\xda\xef\xd5\x89\xfe\xae\x4a\xe7\x79\x2e\xe7\xdd\x83\xed\xb7\xb0\x90\xa7\x4e\xa4\x3d\x77\xdd\x73\xe1\xf6\x32\x0d\x14\x4e\xa4\x27\xc7\x1b\x82\x62\xea\xb6\x76\x78\xec\xf9\x9d\xad\x42\x28\x9b\x52\xc9\x1a\xa5\xdc\x89\x5d\x10\x00\xc9\xb8\x4c\x7e\x10\xd3\x20\xf5\x87\xac\xac\x17\x81\xe2\x52\x59\xe6\x94\x82\x1b\x84\x54\x03\x4c\xa4\xc4\x51\x07\xa2\x45\x37\x73\xd3\x3b\x35\x99\x4a\x12\xee\x29\xa7\xb9\x0c\x68\x83\xb1\x8a\xe0\x17\x10\xe8\xca\xad\xa0\x66\xd1\xe1\x2d\x81\x57\x81\x31\x29\xee\x82\xf0\x46\x21\xa8\xec\x42\xda\xe7\x5b\xd7\xd3\xd6\x50\x65\x91\xf2\xb1\x22\xe2\x99\x00\x4a\xe6\x54\xdd\xdb\xdc\xc4\x67\xbe\x9f\x3f\x2d\x18\x14\x74\x5d\xde\x6c\xc3\x35\xe4\x34\x2a\xfa\x8e\x59\x79\x82\xee\x74\x5e\xd9\x2f\x9e\x56\x5b\xef\x91\x0d\xea\x58\xe0\xa4\x9e\xd1\x93\xf4\xe7\x54\xd6\x57\xda\x4e\x37\x34\x11\x12\x45\xf5\xc3\x38\x4e\xf4\x43\x63\x71\x00\xd1\x91\x37\x53\xb1\x3a\x59\x8f\xfb\xc1\xc8\x0b\x21\xb1\xb7\x14\xca\x25\x22\x1b\xc4\x84\xec\xe4\x38\x02\xb9\xa3\x98\xc8\xcc\x0c\x0d\x7b\xa1\x5c\xc6\xf0\xc3\x19\x79\x7c\xc9\x93\xd0\x1b\x8b\x3d\xde\x37\x21\xfb\x32\x81\x07\xe9\xb1\xdb\xd6\x51\x01\xa0\xb2\xb3\x4c\xf8\xc6\x52\x61\x7f\xd0\x47\xb3\x26\xf0\x9e\x52\xa9\xb0\x9f\x3f\xe7\x75\x40\x1a\xfe\x45\x3d\x00\x1c\xf6\xaf\x7c\x07\xd8\xf5\x4d\x3d\xc0\x13\xff\x22\xf8\x28\xc2\x15\x4e\x21\x8d\xc7\x37\xc2\x57\x0f\x1b\x8b\xba\x90\x70\x8a\x66\x40\x5d\x67\x0f\xa2\x7a\x65\x16\xf4\x2a\xb2\x78\x55\x32\x19\x29\x2a\xb9\xdd\x06\x70\x7b\xe4\xa7\x79\x8b\x7d\xcc\xa6\xf0\x98\x03\x11\x9f\x7a\x16\x4e\xd9\x4d\x22\x32\x07\x16\x45\xc5\xde\x34\xf8\x6a\xf1\x5e\xe5\xf2\x7b\xcc\x5d\x4a\x8b\x95\x5e\x78\xe2\xdd\x0d\xb8\xd5\x11\xce\x2c\xf2\x2d\x0e\xa5\xb3\x88\xb7\x3b\x64\xd9\xb5\x72\xb2\x99\x01\x2b\x84\x56\xa8\x8a\xf4\x06\x7d\xad\x71\x75\x5e\xdc\x84\x52\x98\x41\x08\x58\x32\x31\xa5\x6e\x6e\x0e\x01\xeb\xf4\x26\xb2\x5d\xe5\x62\xed\xa8\xe1\xe6\x92\xf7\x29\x2c\x05\x8c\xa0\x16\xb5\x9a\x33\x07\x21\xdd\xbb\xa7\xc8\x94\xac\x68\x29\x27\xcd\x75\x2b\x97\xad\xc9\x3c\x78\x60\xb3\x1d\x90\xef\x0f\x74\x2d\x37\xee\x28\x63\x37\x83\xe0\x51\x6f\xc1\xfe\x32\x50\xbf\xdf\x6d\x14\x99\x2d\x5f\x08\x22\x37\x8a\x66\x16\x73\x14\xef\x09\xd9\x6a\x68\x0b\x9a\x3b\x6f\x48\x8b\x5a\x2e\xdc\x14\x53\xf5\x77\x76\xa7\x68\x71\xef\xb6\x30\x05\xfb\x7b\xe7\xdd\xa1\xc5\xfd\xad\x0d\x92\x3b\x9c\x45\x46\xd9\xe5\x05\xd4\x59\x74\x05\x88\x83\x2a\xdc\x0a\x0d\x13\x8c\x2f\x2c\x42\xfe\xf3\x67\x21\xb6\x2b\x80\xe5\xc6\x77\xc4\x58\x8c\xa8\xf9\x42\x03\xa3\x54\x0a\xc7\x10\x20\x4c\xe2\x14\x29\x51\xa9\xea\x8e\xfc\xe6\x38\x13\xde\x7e\x44\x4e\x0e\x4c\x9b\xc9\xd3\x4c\xe3\xb1\xe6\x14\x4f\xed\x74\x97\x76\x37\x37\x4c\x89\x39\xc2\x47\x91\x4a\xc7\xa4\xdd\xa9\x14\xc1\xcf\x45\xb1\x1a\xcf\x4b\xd9\x53\x5a\x2e\xb1\x25\xab\x3b\x95\xb2\x27\xbb\xba\x6e\xfc\x75\xc1\xba\x4a\x50\xeb\x82\x44\x3e\xf5\xd0\xab\x62\x9c\x70\xc1\x93\x4b\x78\xdf\xf2\xc2\x18\xd2\x65\xa4\x43\x0b\x98\xdc\x13\x29\x15\x52\xa0\x57\x1d\xc9\x65\xca\x81\x67\xf4\x7a\x60\xed\x0a\x02\x2d\x58\xbc\x3a\x33\xca\x05\x79\xb2\x56\x2c\xfb\x8e\xef\x88\xab\x54\x61\x4e\x4c\x28\xab\x87\x62\x69\xb7\x60\x08\x79\xaf\xc7\xfc\xba\x9b\x2f\xc6\x81\xfb\x3a\x1f\x50\xd3\x89\xe4\x34\x57\x47\x81\xda\x12\x54\x4d\xe5\x23\x6e\xde\x68\x94\x90\xf3\xc4\x31\x9a\x34\xcb\x21\xe7\x97\x22\x14\xdf\xc2\x9d\xc1\xce\x62\x0d\xd6\x2b\x02\x8c\x29\x13\x29\x00\x58\xe1\xfc\xd1\xf3\x64\x89\xbc\x51\xa2\x34\x66\x1e\x1b\x5f\x51\xb1\xed\x24\x35\x47\x83\xf6\x43\xaf\xd5\xff\x85\x7b\x74\x9d\xf3\xca\x2b\x52\xba\x8b\x34\x61\xcb\xec\x93\xdd\x39\x8e\x6d\x5e\x03\x3b\xb2\xfb\x32\xeb\xa2\xa5\x5a\x97\xc5\x09\xeb\x82\xf1\x56\x77\x9e\xe2\xcd\x61\x03\xe7\x55\xca\x06\x1d\xcf\x28\xe0\x30\x13\xe5\x4f\xfb\xb9\x0a\x87\x1e\x44\x6c\x1c\x5c\xf1\x50\x54\xe5\x48\x74\x58\x3b\x5a\xe6\xa0\xcf\xa2\x58\xfb\x25\xf1\x84\x33\x7e\x95\x26\x9e\x9f\x66\x15\x75\x5a\x41\x97\xc6\x00\xb7\x2c\xd2\xa4\x6a\x4f\xb9\xea\x4e\x23\x9f\x1e\xc1\xe8\xf1\x04\x1f\x7b\x89\x97\x2a\x9f\x22\x38\x1d\x72\x7d\x8d\x02\x0a\x64\x60\xf0\xc0\x49\x6a\x10\xfb\xb3\x5c\x2f\x97\x5f\x6e\x9c\x9c\x2c\xff\x3c\x39\x59\xaa\xbc\x3c\x39\xe9\x3d\x3c\x39\xa9\xc1\xbf\x95\x72\xed\x61\xa5\x6e\xeb\xf8\x11\xec\x26\x5b\x02\x30\xc7\xab\x4e\x60\x25\x74\x01\xc2\x2f\x6b\x56\xfa\x85\x4e\x1f\x4d\x6d\xa5\x0c\xaa\x7c\xef\xb0\xc4\x8b\x98\x44\x45\x5e\x1a\x27\x55\xd6\x61\x83\x09\x17\x42\xe9\xfc\xee\xd9\x61\x5b\x2d\x5f\xbf\x24\xab\x1c\x94\xfd\x9a\x94\x8b\xff\xa4\x7c\x8b\x2b\x15\xdb\x0b\x8b\x3b\x39\x85\x95\x5e\x48\xb6\xb4\xf3\xea\x7a\x82\xb3\xd2\x3f\xc7\xa5\x0d\x83\x44\xb8\xf6\x4a\xcc\x86\x94\x57\x35\x6c\xdd\x89\x86\x61\x40\x50\x41\x62\x4a\xb2\x0a\x16\xbb\x93\xec\xce\x16\x27\x41\x4e\xb4\x11\xbe\x65\x7c\xef\x24\x1c\xb2\xd2\xeb\xe4\x73\x06\xac\xae\xac\xb0\x87\xb8\x95\xb6\xa1\x9f\x5a\x4b\x4a\xf6\x3d\x2c\x49\x42\x6c\x15\x4c\x1d\xf3\xda\xa0\x8f\xae\x94\x97\x43\x79\xf8\x2f\xa7\xa4\x23\x56\x7e\xdb\xf8\x9a\xfc\x9d\x9b\xe4\xdc\x20\x63\x50\x7a\x70\xb3\x31\xb2\x8e\x15\xbd\xca\xe9\xdf\xda\x1a\x00\x45\x7a\x89\x91\x77\x65\xd1\x90\xde\x9c\xbc\xd3\x8e\x69\xac\x45\x2f\xc8\x27\x00\x94\xcf\x64\x37\xfb\xf3\xa7\x4a\xed\x67\x99\xc9\x64\x8c\x47\x7f\x79\x00\x47\x4e\x82\x49\xb7\x7f\xb4\x5e\x2d\xec\xde\x3d\xf4\xb2\xf3\xb9\xfb\x96\xdb\x93\x48\xc7\x1c\x42\xfc\x04\x9b\x08\xfb\x33\x30\xcf\xbf\x72\x3b\x60\xb5\xbd\xa8\xc7\x2e\x38\x1f\x1b\x57\xc4\x3c\xbc\x60\x44\xf0\x10\x12\xdc\xdd\xf1\x55\x15\xbd\x67\xb8\x1a\xe6\xf9\x44\xa4\x59\x28\xf4\xc9\x1a\x74\x26\xea\xc9\x07\x2f\x11\x5c\xf6\xd1\x45\x0a\xd2\x55\xf8\x33\x8d\x11\x61\x8e\x63\x38\x50\xdd\x2b\x7a\x9e\x9e\x75\xb5\x9f\xa4\xe2\x0b\xfe\x0a\x1a\x85\x75\xff\x02\xba\x92\xef\x4a\x5e\x91\x0f\x73\xb2\x50\xa9\xc8\xd9\x60\xf8\xef\x83\x4b\xb3\x27\x8b\xd0\x4a\x83\x1c\x00\xb4\x06\x30\x88\x08\xbd\x8a\x39\x24\x06\x9c\x89\x71\x38\x70\x84\xb1\xa1\x95\x05\x57\xd1\x98\x93\x28\x9f\x8c\x03\x73\xe2\xba\x83\x75\xa3\x2c\x69\xb5\xe6\xf1\x4a\x95\xd9\x19\x78\x0e\x05\x57\x29\x72\xa4\x78\x69\x22\x9d\x92\xb1\x4e\x9c\x28\x0b\x98\xa8\x47\x0a\xdf\x40\xb0\x15\x8c\x84\x09\x4f\x8b\x13\xc1\x31\x4f\x0e\x41\x0c\x30\x0c\x15\x9b\x7a\x33\x2b\xd4\x26\xb9\x36\x80\x47\xd7\x04\xcf\x95\x77\x15\xa0\x11\x2c\xa0\x24\xc8\x1c\x42\x59\xc3\xc0\x4b\x40\xd5\x74\xe2\x6e\x5a\x44\x4d\x70\xc2\x12\x37\xa5\xbd\x71\x16\x25\xa3\xf7\xa8\xd7\xd9\x3e\xd0\x5c\xcb\xf5\xc2\x1c\x71\x4a\x9d\x61\xfc\x9a\x89\x61\xc0\xf7\x40\x9e\x78\x51\x4f\x10\x94\x03\x50\xfa\x0e\xf8\x95\x64\xd8\x13\x2e\x04\xd7\xf6\x65\x3a\xc2\xd6\x38\x9c\x08\xb9\x98\xa3\x20\x9a\x08\x26\x82\x41\x04\x7e\x6c\x49\x1c\xa5\xac\xbc\xb4\xba\x52\x65\xcb\x6b\x2b\x55\xc6\x53\xbf\x62\xe6\xd8\x4f\xbc\x81\xb2\xec\xc0\x01\x92\xa6\xbc\x5e\x3e\x39\x59\xfa\x79\x72\xb2\x5c\xa9\x57\x20\x95\xac\xac\xc9\x36\xff\x80\x16\xb5\x34\x09\x46\xe5\x8a\xe5\xbe\xb3\x85\x12\x20\xd9\xc5\xba\x53\xd5\x32\x8c\xc7\xc6\x5e\x90\x58\x33\x8d\x13\xc9\x9a\x06\xd1\x20\xe4\xd6\xbe\x40\x78\x0f\x3f\x9e\x84\x3d\x30\xe4\x23\xb6\x06\x5e\x5c\xfd\x78\x34\xf2\x64\x33\x78\x91\x33\xd3\xe8\x05\x97\x01\x3e\x53\xe8\x09\xe9\x0d\x42\x64\x04\x56\xa1\xfa\x63\x95\x39\xd3\x11\xdc\x4b\x24\x37\x54\xfd\x79\x72\x22\xea\x6a\x13\x61\x99\x6c\x93\x49\xdd\xfc\x98\xfa\x3b\x95\xf2\x7b\xbe\xd4\x70\x24\xd5\x7c\x06\xe8\x62\x77\x46\xf5\x2a\xe0\xcc\x76\x3a\x0c\x52\xb2\xc4\x2a\x8b\x0a\xe8\xf2\xb3\x49\x21\x3c\x5a\x92\x72\xb5\xa2\x3c\x69\x6a\x59\xef\x44\xc3\x8a\xa9\x65\x0a\x04\xeb\x63\x24\xa4\x29\xa7\x42\x27\xcb\x49\xc1\x41\x04\x31\x1f\x6a\x9a\x5d\x1a\xc9\x41\xc6\xb0\xd5\x9f\xa1\xf2\x97\x5a\x86\xd9\xdc\x83\x33\xbb\xc9\xea\x27\x27\xe2\x61\x55\xfe\x4f\xae\xf0\x52\x5d\x3f\xfa\xc5\x63\x78\x09\xa1\x71\xe1\xba\xe3\xf0\x5f\xa2\x35\x17\xfe\xa7\xd7\xd8\x16\xfe\x8c\xad\x08\xb5\xaf\x38\x5f\xc9\xc0\xe4\xb8\x60\x7f\xf0\x88\x9b\x11\x56\x8e\x57\x4e\x4f\x2b\x16\xa5\xbe\x5d\xa3\xd5\xd3\x53\xd5\x8b\xdd\xb3\x39\x82\x38\x40\x35\x3b\x63\xfc\xe2\x8a\xa8\xa7\xf8\xc7\x86\xd5\xab\x85\x3e\x49\x88\x33\xc4\x95\xae\xbc\x24\xc7\xb0\x2b\x2a\x8e\x31\x09\x24\x50\x14\x86\xf1\x14\xb2\x91\xa1\xeb\xab\xb6\x14\xa2\xf5\x8e\xc7\x02\xee\x74\x39\x2e\x7a\xa3\xab\xd7\xd9\x4e\x2c\x52\x9b\x53\x00\x1f\xa9\x99\x62\xe5\xe2\x44\x72\x37\x5e\x3e\xd6\x92\xcd\xa8\xba\x19\xb9\xc8\xfe\x47\xde\x85\x55\xf6\x92\xdd\x33\xb8\x75\xc3\xe0\x59\xbd\x3a\x26\xf1\x96\x2a\x71\xd3\x77\xe1\xd9\x19\xf1\x64\xc0\x8f\x82\x74\xf8\x41\xe5\xfb\xb0\x03\x84\xe4\x4d\xaf\x8d\x4e\x8a\x70\xaa\x24\x0e\x83\x41\xc2\x07\x10\xfa\xdf\x8b\x66\xac\xbb\x84\x92\xe5\x72\x17\x11\x28\x38\xff\x79\x09\x8f\x4a\xa9\x7e\x39\xe3\x3d\x2d\xb8\x08\x07\x20\xaf\x0d\x6a\x1b\x6c\x75\x85\x2d\xb1\xa5\x75\xb9\x9e\xc7\x12\xe9\x2e\x55\xd9\xd2\xfa\xa9\xa5\x16\x49\x78\x6f\xe2\x73\x2b\x71\xf6\x0f\xfb\xf0\x48\x3c\xe3\x1d\x7b\xea\x11\x74\x99\xad\x62\x26\x07\x8c\x0b\x72\x5c\x5a\x92\x24\x68\xd9\xa6\x3f\x1a\x5d\xb9\x80\x18\xcb\x81\x61\x67\x2f\xdc\x1a\x45\x2b\x68\xc5\x86\x56\xff\xa9\xd4\x11\x4e\xb1\x25\x39\xe4\xc0\x2c\x1c\xca\xd2\xed\xc6\x62\xef\xe6\x6d\x06\xf3\xa3\xb8\xaa\xba\xa4\x67\x15\xb7\x91\xf9\x71\x5d\x65\xc7\xa7\x15\x67\x37\x5f\x4b\xb1\x7d\x0a\x8e\x94\xfa\xfe\x11\x41\xa3\x6b\x08\x4a\x13\x12\x69\xa9\xa8\x1c\x44\x6c\x7c\x65\x01\x82\x6b\x26\x52\xf0\x09\xf8\x75\x19\xbf\xe2\x60\x74\x8b\xec\x66\xd3\x54\xe9\x84\x14\x92\x4f\x44\x04\xce\xaf\xb8\xaf\x62\xb9\xe3\xb9\xb5\x70\x81\x79\xaf\x2f\xc4\x04\xf1\xd8\x54\x90\xb8\x89\xaa\xac\xb9\xc7\x16\x8d\x7f\x54\xac\x10\x59\xaf\xe2\x1c\x00\x1a\x14\xaa\x68\x61\xef\x81\xf8\x3e\x64\xe5\x78\x8c\x85\x6b\xd6\x39\x5f\x36\x0e\x5c\x8e\xaa\x95\x31\xad\x7a\x73\x35\x70\xb1\x9d\xe9\xed\xbf\xdc\xf2\xcb\x00\x71\x35\x4f\xda\xfa\x02\x27\xbb\xb9\x82\x61\x8e\x0c\xab\x85\xca\x19\x0f\xb2\x77\xf8\x49\x70\xc6\xb5\x5a\xd7\xf2\x70\x92\x5f\xc6\x66\x49\xfe\x7c\x33\x33\x1c\x0c\x19\x9a\xfd\x50\x63\xbb\xce\xc4\xc0\xb0\x4c\x51\x4c\x3e\x8e\x7c\x02\x6f\x76\xad\x23\x61\x58\x9a\x26\x87\xdd\x5e\x98\x00\x34\x34\x29\x65\xb5\xeb\xb0\x39\xaa\x4b\xf8\xc9\x9c\x56\x4b\x88\xa1\x6f\x24\xca\x64\x31\x8c\xa9\x68\x4b\x55\xaa\x49\x41\x2e\x72\x57\x4a\xc8\xaa\xb1\x32\x93\xd2\x0f\xcb\x99\xe4\x8d\x10\x78\x79\x49\xbb\x9f\x5a\x86\x2c\xf8\x19\xc4\xa9\x65\xf3\x7d\xf5\x34\xab\xe3\x29\xe8\x28\xe3\x9f\x7b\x87\x9e\x96\xee\xd8\x53\x1a\x8f\x73\xfd\x64\x01\x65\x3b\x92\xe3\xb8\xeb\x8c\xb2\x0e\xe1\x77\xe8\xaa\x60\x4a\x4e\x2a\x0d\x7a\x06\xb1\x2c\x7b\x6e\x78\x06\x30\x31\x51\xe4\x65\x30\xbf\x76\xa3\x77\xb1\xd7\x63\xd7\xda\x6f\xd1\x0a\x9e\x62\x59\xd6\x5a\x41\x4b\x74\x4d\xbb\xd0\xaa\x0b\x4e\x93\x06\x9c\xfc\x65\x3f\x16\x84\xc1\xd8\xf8\x48\x86\xc1\xd8\xfa\x76\xc1\xf9\xf8\x20\x1e\x70\x90\x7e\x55\x1d\xbb\xd0\xaa\x4b\xd7\x59\xd5\xc2\x9f\xd6\xf7\x71\x02\xe1\xda\x76\xe9\xfd\x4e\x57\xcc\x94\x5b\x2d\xc4\x30\xe8\x1b\x80\xf0\xcb\xfa\x3a\x94\x62\x89\xfa\x28\x7f\xd8\x46\xcb\x51\x64\x0d\x18\xcd\x49\x9d\xb7\x0f\x85\x72\x35\x72\xaa\x66\xb2\xc6\x59\x2e\x50\x16\xfe\x42\xc5\x02\xb8\xad\x78\x42\x80\x63\x0d\x80\x4b\x63\x88\x4b\xd0\xed\x47\x5d\x93\x16\xc0\xf2\x27\x3a\x80\x4c\x72\x0a\x90\x49\xa2\xe3\x7b\x61\x88\x3a\x50\xe8\x1d\xe9\x06\x46\x5a\x94\x2c\x40\x24\x90\xc5\x9c\xc5\x13\x36\x9a\x08\xd4\x00\x39\xc9\xec\x30\xd0\xa5\xce\x02\xa5\x4d\x52\x53\x15\x2e\xc2\x4e\x10\x25\x4f\x7e\xc8\x23\xee\x5f\x08\xcb\x41\x42\x4f\x4f\xad\xc9\xab\x28\x4b\x6d\xb2\x19\x25\xff\x06\xb1\x99\xec\x21\xdd\x9a\x30\xe5\xf7\x1f\xfd\xd2\xc6\xe1\x64\x10\x44\x26\x02\xa5\x17\xa6\x1c\x23\xb1\xdb\xf9\x4a\x67\x52\x62\xc2\xbb\x2d\x9c\xa4\x5d\x3a\xb0\xd2\x44\x70\x78\x4d\x03\xb2\xc2\x9e\x5b\xfe\xb9\xf0\x16\x8b\x71\x3a\x94\x77\xcb\x99\x27\x02\x5f\x9f\x09\x2f\x0c\xc8\xf7\xfd\xa1\xf2\x1b\xa6\x54\xcd\x61\x70\x96\x78\xc9\xcc\xec\xd8\xa1\x80\x98\xa3\x70\x2a\x30\x05\x97\x7a\xee\x8d\x2f\x79\x92\x28\x69\xbd\x0b\x5e\x8f\xdd\x2a\x9e\x4a\x50\x90\xc6\x80\x5a\xf0\x88\x92\x6e\xb4\x41\xa3\x41\x05\x97\x1d\x3a\x2f\xe1\xee\x66\xd0\x59\xd4\x9a\x97\x74\xca\xbd\x0b\xed\xbf\x1c\x79\x23\x8e\x76\xd0\x8e\x03\x72\x9e\x1b\xc0\xf7\x28\xd8\x06\x66\x5f\x44\xb5\xf6\x78\xe9\xed\xd4\x42\x91\x0a\x26\x90\x80\x36\x90\x47\xa0\xa5\x76\x82\xa5\x10\x30\x15\x51\x4e\x6f\x0e\x73\x22\xcc\x7a\xbd\x8c\x39\x53\x81\xf3\x65\xfe\xf6\x12\x0c\x89\x10\xce\x40\x0f\xc5\x78\x00\x8b\x85\xbe\x8e\x28\x10\xa2\x97\x54\x8d\xaa\x1b\x76\xd2\xcd\x44\xfa\x90\xfd\x0f\xe0\x22\xfc\x51\x97\xff\xc0\x74\x37\xb4\x6c\xfd\x10\xd4\xcf\xf1\x98\xfd\x40\xc9\xe1\x1a\x7d\x57\x37\x57\x57\x56\xd8\x32\xc3\x84\x84\x6a\xa5\xec\xb8\x2d\x60\x85\x1b\xf7\x89\x9d\x97\x73\x43\xf0\x0c\x3f\x49\xb9\x73\xa5\x9a\xeb\x43\x7b\x27\x91\x35\xff\x26\x38\x25\x2d\xb3\xa3\x21\x62\x7c\x87\x41\x34\x46\xff\x72\xca\x51\x9c\xea\x2e\xa8\x18\xa3\x65\xe7\x7b\x31\x78\xe5\x5a\x37\xe9\x47\x1b\x38\x75\x0c\x5a\x50\x25\x91\x45\x1f\x8b\x03\x38\xc0\xa4\xf6\x77\x90\x32\x9e\x0f\xeb\x2e\x32\x74\x64\x1c\xc2\x89\xf0\xae\x02\x41\xbb\x60\xb6\x4e\xf9\x69\x39\xe1\x12\x51\x71\xb1\x41\xb5\x96\x59\x77\x7c\x05\x7b\x29\x8b\x97\x43\x2e\x44\xd5\x71\x57\xf5\x04\x29\x50\x4c\x83\x7f\xe2\xde\xff\x53\xde\xb1\x31\x4f\x7c\x1e\xa5\xde\x20\x9b\x98\x9f\x33\x12\x6c\xe9\xac\x15\xc6\xf7\x21\x78\xe3\xbb\x00\x72\xc3\x57\x1b\x28\x97\xd3\x6e\x95\xb5\xf6\xf7\xf5\x8b\x1a\xa5\xa2\x57\x6f\xbd\x54\x6b\x98\xad\x45\x3a\x78\x53\x8d\x2a\xbf\x8a\x13\xd5\x73\x00\x42\x2d\x8f\x24\x72\xc2\x0c\xa0\x01\x29\xd1\xb3\x43\x35\x6a\x7c\x67\xb4\xee\xa5\x3a\xc8\x50\x39\xd2\x0e\x3b\x4f\x00\xe8\xcf\x2b\x97\x99\xfc\x56\xab\xf6\x52\x28\x32\x9a\x0e\x15\x06\xa0\x47\xff\x1a\xeb\x44\xf8\xbe\x1a\xf7\xc9\xd7\x19\x80\xa0\xff\x6e\x95\x05\xa9\xdd\x56\x9b\x0d\xb8\x27\xe7\x0b\x44\x7d\x8e\x0c\xe2\x56\xba\x68\x94\xa6\xca\x9e\x60\x5d\x94\xc3\x10\x38\x0a\x63\xdd\x4a\x15\x15\xd7\xae\x32\x9b\x60\xca\x36\x54\x8f\xd4\x92\x80\xe7\x3d\xa3\xba\x96\x08\xa6\x1c\x27\xe0\x66\x5b\xb1\x75\xbc\x22\xbb\x7a\x9c\x85\x5e\x9a\xe2\xcd\xf4\x2c\xd5\xaf\x0a\x4e\xad\x4c\xc2\x83\x94\x85\xdc\x43\x1d\xad\xc4\xe8\x13\xa1\x48\x2b\xad\x01\x41\xc4\xe0\xbf\x20\x19\x5e\xae\xb9\x9d\x35\xb4\x89\x50\x38\x83\xd5\x53\x57\x4a\xd9\x0e\x51\xe8\xf5\xc9\x19\xd8\x31\x40\xc1\x19\x4f\xa7\x9c\x47\xac\x17\xf4\xe1\xc8\xe3\xd9\x52\xb7\x93\xbd\x8f\x41\xeb\xe0\xa5\x6c\x34\x09\xd3\x60\x1c\x06\xbe\x67\x20\xc9\xb5\x11\xca\x6f\xdc\x49\x72\xea\xee\xd1\xa7\x42\xb7\x6a\x38\x09\xdd\x2e\xfd\xb5\xba\x42\x7f\x94\x56\x57\xfe\x59\x32\x7f\x57\xd9\xea\x8a\xf5\xf3\x9f\x99\xdf\x6c\x89\xb9\xf5\xd9\x32\x5b\xbf\x1c\xb2\x25\xf6\xc8\x94\x2e\xaf\xae\x8c\xaf\xd8\x92\xfc\x50\x65\xeb\xe3\x2b\xb6\xcc\x9e\xe8\xaf\x66\x08\x7f\xb0\x87\x0f\xdf\x37\x1f\x3e\xdc\x60\x1d\xf4\x77\xef\x71\x11\x60\x04\x02\x8c\xc4\x66\x25\x40\xb6\xd9\x0c\x06\x0f\x40\xf8\x90\x25\x57\xca\x9b\x59\xf9\x91\xc9\x30\x4e\x77\xa1\x9e\x7a\x82\xa4\x28\x1c\xd7\x24\xea\xc7\x49\x3a\x89\xbc\x94\xcb\x3d\x94\x83\x80\xed\x07\x26\x17\xb4\xf7\x02\x53\x3a\xe6\x5d\xb8\x6a\xba\x0b\x75\x25\x80\x96\x82\x23\x78\x4c\x8f\x6d\x2a\xf6\xda\x71\x20\xc4\x84\x9f\x96\x87\x69\x3a\x16\x1b\xf5\xfa\x20\x48\x87\x93\xb3\x9a\x1f\x8f\xea\xaf\xf8\xf7\x4f\x89\x27\x52\xaf\x3e\x56\x1c\x53\x1d\x6a\x8b\xfa\xa3\xa7\x8f\x2a\xee\xc6\xde\x81\x84\xe2\xda\x2d\xa6\xa1\x6b\xbf\x4b\x43\xd7\xfe\x7e\x34\xd4\x7a\xa5\x75\xea\x67\xf5\x43\x46\x2f\xc4\x34\xf6\xf8\x55\xdd\x10\xd3\x2b\x6f\xd6\x7e\x65\x0e\x1d\xcf\xb1\x77\x24\xed\xd9\x24\x0c\xc4\xb4\x33\x2e\x69\xb2\x89\xb6\xc7\xe2\x49\xaa\x13\x92\x92\x6d\xf1\xcc\x3d\x22\x0d\x26\x7c\x1e\x79\x49\x10\x33\x7e\x15\x88\x54\xb0\xe9\x90\x27\x59\x17\x98\x20\x15\x3c\x04\x6b\x05\xb9\xdc\xf2\x8e\xd0\xec\x2c\x4b\x7f\x07\xd7\x1d\x51\xdc\x3a\x6f\x26\x11\xdd\xd0\x13\xec\xe4\x3e\x17\xbe\x37\x26\xaa\x67\x19\x3a\xdf\x67\xff\xef\xff\xfd\xff\xc8\x9d\x04\xfb\x06\x5d\xed\xe4\x7e\x86\x7b\xa4\x3b\x02\x04\x69\x8a\x71\x81\xf0\xf0\xf9\x10\x55\xc1\x3a\x29\xb4\x24\x62\x08\x5c\x36\x32\x9a\x1b\xce\xac\x97\x59\x8f\xa7\x52\x58\xa4\x78\x1c\xf6\x5c\x31\xd5\x2a\x90\xe5\x93\xfb\x69\xe2\x8d\x61\x30\x2c\x37\x61\x49\xa1\x34\xb8\x40\xf2\xd2\xaa\xc7\x60\x10\xa9\xec\xa3\x6a\xd1\x01\xaa\x9a\x1b\x22\x19\x97\xf7\xbe\xef\x8c\xef\x68\xc8\x23\xd6\xc5\xda\x47\x41\x3a\xd4\x79\x6f\xbb\x26\x80\xa5\x15\xbf\xd2\xda\x28\xa1\xf3\xbd\x43\xb0\x07\x09\x4c\x1d\x02\x0c\xfa\x67\x86\x6f\x07\xaa\x94\x48\x4c\x19\x05\x53\x38\x00\x05\x45\xd2\xbd\x4b\x5e\x21\x60\xee\x1a\x38\x71\x61\x68\xd1\x30\xf9\x8a\x15\x16\xbc\x37\xe0\x39\xc6\xed\x97\xf1\x54\x46\xd1\xb1\x18\x61\x3d\xfa\x5d\x84\xf5\xe8\xef\x87\xb0\x32\x8b\x60\x1a\x6a\xd4\x44\x00\xc8\xbc\xe5\x78\x9c\x04\x71\x12\xa4\xb3\xcd\x63\x0a\x7c\xa1\x4c\x2d\xd0\xcd\x44\x7b\x99\x9c\x6a\x00\x1f\xac\x83\x91\x26\x33\x1b\xeb\xe8\x73\x62\xc4\x00\x4c\xf2\x4f\xbd\xc8\x73\x71\x36\x53\xb2\x6a\x55\x83\x4c\x87\x3c\x02\xbe\x07\xa5\x5f\x0d\x86\x64\x53\x1d\x55\xc6\x04\x70\x01\x32\x9a\x73\xad\xed\x66\xd0\xa7\x9a\xdc\x06\x53\xb3\xb3\x22\xb3\x67\xdc\x68\xe6\x2f\x95\x3a\x35\xe4\xdf\xbb\xb9\xae\x2b\x34\x46\xf1\x04\x99\x70\x32\xf7\x72\x4f\x91\xc7\x46\x41\x14\x8c\x26\x23\x49\xfd\x53\xd4\x11\x11\xd7\x96\xc1\x74\x0a\xa0\xb2\x96\x21\x0a\x4e\x3c\xbc\x77\xc1\x85\x56\x49\xa9\x8b\xe9\x85\x53\x6f\x26\x00\x81\x7a\x2c\x0c\xd2\x34\xe4\xcc\xca\x78\x0c\xe0\xec\xde\xe4\x65\x13\x4a\xb2\x27\xa3\x10\x1d\xa4\x4a\x2f\x18\x02\xd8\x60\xeb\xf3\x97\x03\x89\xde\xcf\xd7\x07\x3b\xef\x74\xce\x81\xdc\x4e\x6c\x96\xec\xc4\x13\x25\x0d\xc3\xf2\x73\x80\xc5\x22\x25\x8c\x66\x85\x58\x0b\xf5\x00\x5d\xbb\x79\xb7\x2a\x05\x8f\xa8\x17\x4f\xbb\xe6\xcc\x74\x95\x68\x05\xd2\x81\x17\xcd\x20\xdb\xa3\x52\x51\x64\xe6\x95\x1b\xdf\x06\x73\x07\x78\x5b\xfa\xea\x68\x07\x33\xa4\x41\x2e\xac\x22\x30\xa9\x37\x63\x11\xf7\x12\x54\x3c\x82\xf6\x87\x40\x4a\x0c\x1f\x4f\x40\x66\xb8\x94\x17\x44\x8e\x7c\xe0\x8d\x9d\xbd\x4a\xa7\x71\x8d\xb5\xc5\x98\xfb\x81\x0a\x0b\xdc\x9f\x84\x3a\xfd\x0e\x69\x9c\x03\x85\x0a\x15\x0a\x01\x93\x34\xc9\x78\x92\xbe\x8a\x47\x34\x52\x29\xfd\xa5\x6c\x1c\x07\x14\x23\xab\x30\x12\x6e\xcd\x56\xc6\x24\xf2\xac\x44\xe1\x8c\x79\x67\x72\xb0\xc6\xce\x0b\x34\x00\x9a\x51\x15\xa9\xe6\x71\x15\x4b\x8d\x41\x8c\xbc\x64\x10\x44\x04\xd0\x9e\x99\x3a\xbc\xb4\x5c\x73\x07\x71\x07\xbc\x6f\xeb\xcb\x17\x23\xfd\xc7\xbf\x8b\xf4\x1f\xff\xfd\x90\xbe\xbd\x02\x73\x15\x3e\x12\x91\x58\x23\xd0\x07\x5a\x25\xcf\xec\xc2\xa1\x52\x88\x34\xa3\x06\xa1\x93\x4f\xc0\xe0\x54\x05\xa0\x40\xb0\x38\x4a\x7b\x9b\xf3\xae\x85\x99\x0b\x92\x3f\x73\xae\x12\x31\x9e\x48\xc9\x1b\xcc\x6f\x15\xb6\x77\xc7\x17\xc5\x3d\x6e\x39\x3f\x0d\xe3\x29\x1b\x79\x91\x62\x6c\xc8\x18\x27\xee\x4b\x4c\x77\xae\x93\x37\x26\x2a\x68\x64\x4e\x87\x25\xd1\x68\x14\x33\xde\xef\x93\x21\x5d\x14\x67\x7b\xc4\xb8\xd0\xa0\x53\xf8\x85\x53\x0a\xb0\x16\x1f\xcf\xf5\xdf\x3d\x9e\xeb\x7f\xbf\xe3\x89\x31\x46\x73\xd5\x8b\xe8\x08\x57\xd4\xe3\xf8\x6a\x19\x9a\x9d\x96\x20\xa4\x53\xc8\xfd\x14\x3c\x3d\x70\xdf\x61\x65\x3c\x41\x78\x50\x0f\x4f\xa3\x76\xd3\xfa\xb6\x78\x5d\x3b\xe3\xe2\xf9\x2c\x09\x4b\x4f\x06\x68\x17\x3c\x65\xbc\x04\xf1\x27\xa9\x06\xe4\x81\xd6\xca\x9d\x62\x44\x46\x9f\x29\x98\xa1\x20\x7d\xb8\xcb\xa4\x59\x1a\x58\x0a\x92\x08\x3e\x41\x6e\x58\x45\x17\xde\xc3\x87\xef\x77\x0f\xda\x1b\x0f\x1f\xd2\x5b\x96\x6a\x0f\x97\x08\xf4\xaa\xc9\x64\x8c\x68\xdb\x9f\x24\xa8\x1d\x42\xa3\x09\x7f\xe6\x87\x5c\x6b\xa7\xf4\xe8\x51\xfd\x8f\x99\x71\x82\x94\x6e\x95\xd0\x61\x56\xdd\x25\xd2\x8f\xfe\x77\xbf\x06\x12\xc8\xe2\x5b\xf0\xe4\x77\x6f\xc1\x93\xbf\xdf\x2d\x90\x33\x5f\xc8\x54\x11\x57\xae\x9e\xc5\x36\xd1\x01\xce\x51\x2b\xe8\x27\x33\xb5\x30\x3e\x06\x42\x2e\x3e\xbc\xb5\xcc\xdb\x0a\xc6\x79\x47\x06\x0a\xb4\x50\x55\xd6\xd5\x61\x4a\xe0\x47\x26\xa8\x13\x71\x57\xb6\xed\xbb\x63\x32\x1d\xf4\x34\x40\x2b\x60\x5a\x19\x2a\xe2\xd3\xa2\x17\x66\x22\xb8\x39\x8c\x19\xcd\xc6\x09\x43\x75\x47\x2e\xfc\x20\x23\xad\x62\x8c\x21\x38\xc7\xc3\x80\x0e\xb1\xe6\x7e\x6f\x29\x38\xfc\x79\x7c\xb0\x62\x53\xdd\x5d\x34\x69\x31\x75\xda\x2c\xeb\x80\x5b\x62\xb4\x4b\x87\x15\xb9\xad\xcd\x9d\x7c\xc4\x2f\x01\x8f\x30\xca\x90\xa0\x44\x7c\x82\x43\xa9\x4e\x8a\x64\x8f\x32\xbf\xf2\xf9\x18\x30\x40\xd7\xe6\x28\xba\xd6\x5d\xc8\x6d\x5f\x01\x5f\xad\x27\x3c\x7f\xe9\xf4\x4d\x74\x5d\xd2\x37\xc1\xe2\x70\xee\xd4\xc8\x79\xcc\x20\x66\xf3\xd2\xa8\x78\x8f\xae\x13\x4f\x11\x1f\x10\x25\xfa\xb6\x25\xcd\x39\x71\x0f\x42\x6f\x2c\x32\x8a\x10\xbd\xca\xae\x5e\x4f\xb9\x1b\x9a\x81\x90\x76\x87\x0c\x1a\x84\x1d\x4e\x29\x2b\x89\xb8\x33\xde\x40\x23\xcb\x3b\xaf\x94\x76\x2e\xff\x0f\x2d\x59\x26\x99\xab\xb3\x5e\x66\x39\xff\x93\x2b\xa7\x57\xc0\x5e\xc2\xdb\x0a\x70\xb6\x76\x34\xd4\x59\x31\xa0\x18\x4d\x5b\xe6\xbd\x26\x2a\x8a\xd7\x34\x4a\x0c\x25\x95\x65\xf8\x6b\xd2\xf7\xf7\xf2\xca\xb4\xdc\xdd\xb4\xf4\x67\x7f\x86\x3c\x04\xbf\x17\xd3\xd8\xa7\xbf\x4b\x63\x9f\xde\x8a\xc6\xc2\xe6\xfc\x06\x91\xcd\xdc\x8f\x45\x54\x16\x26\x7f\xdb\xb3\x30\x54\x0a\x70\xb5\x3d\xc8\xe8\x15\x88\xa5\x90\x14\xd0\xc1\xa4\x4a\xd0\xc0\x96\xd6\xc9\xd7\xb2\x8c\x3c\xcc\x1e\xeb\x5e\x2d\xc7\x93\x74\x39\xee\x2f\x9b\x3a\x56\xb6\x00\x22\x00\xbe\x67\x84\x65\x77\x78\x44\x71\x5b\xfb\xfb\x4c\x28\x36\xf8\xe6\x21\x6b\xb5\x80\x14\xdc\xe3\x7e\xee\x56\xfe\xe9\x3c\xe9\x5d\x0e\xa7\x9c\xd3\xe2\xb3\xf9\xec\x77\xcf\xe6\xb3\xbf\x1f\xff\x27\x67\x3e\xe7\x60\xb6\xd0\xae\x50\x90\x21\x0e\xe4\xe7\x1c\x7a\xe9\xbc\x6c\x9a\x19\x64\x9c\xc6\x90\x15\x49\x1d\x48\x65\x9b\x65\x24\x73\x77\xdb\xcd\xc3\x70\x81\xe8\x00\x09\x74\xe2\x89\x8f\xf6\xec\x5b\xbb\x3b\xa0\x95\x85\xe7\x97\x71\xc2\xc7\x5e\x62\x0f\x52\x75\x29\x62\x84\xd7\x35\x96\x94\x19\xa3\x12\x7c\x84\x0d\x52\x52\x68\x92\x9b\x15\x25\xdd\x42\xe5\x16\xc1\x0a\xc8\xae\x60\x16\x4f\xb4\xe0\x91\x70\xc0\x97\x2e\x7c\xba\x17\xfe\x44\xa4\xf1\x08\xdc\x64\x61\x35\x2c\xca\x51\xac\xfa\x90\x82\x7e\xf7\xd9\xfa\x4a\x17\x6c\x05\xd0\x86\x8b\xde\xe8\x80\x3a\x04\x18\xc5\xed\xcc\xf3\x2f\x80\x26\xf8\xf1\x68\xec\xa5\xc1\x59\x10\x06\xa9\xd2\x2e\x40\xdf\x63\xe5\x28\x51\x98\xa4\xae\xc6\xda\x57\x63\xee\xa7\xce\xa1\x12\x78\x3c\x21\x09\x84\xb2\xdc\x63\x68\xde\x48\x4c\xbc\x49\x7d\x37\xf2\xce\xe3\xc4\x81\x9d\x31\x56\xfb\xa5\x37\x12\xdb\x82\xf5\x16\xd7\x70\xfd\x77\xaf\xe1\xfa\xdf\xee\x1a\xda\x2b\x70\x0b\xb6\x2b\x93\x51\x08\xc6\xaa\x2b\x77\xfa\xd8\xb9\xbc\x23\x60\x9b\x28\x87\x2e\x31\xf5\xa3\x2d\x93\x38\xce\x53\xd9\xdf\x4c\x26\x38\xa3\xe0\xd7\xa0\x76\x95\xbb\xad\x31\x9e\xd1\x01\x5f\x4d\xcc\x7d\xb4\xb4\xc9\xa6\xf2\xd1\xf3\xcb\x0c\x36\xbb\x34\xd9\x49\x0a\x7a\xbd\x3e\xbe\xda\xd4\xaf\x20\xba\xce\x11\xbe\xf5\xc6\xcc\x8b\xfc\x21\xd1\x9c\xcf\x68\x8d\x54\xd6\x41\xee\xe3\x04\x47\x57\xa9\xb1\xc6\xdb\x06\xfb\x5c\x90\xe0\x0c\x11\x9c\x12\x51\x03\x41\x19\x09\x92\xcc\x53\x2c\x24\x27\x03\x6b\x8c\x5e\x90\x70\x95\xb4\x5d\x59\xb6\xc0\x5b\xac\x95\x62\xc1\x9e\xf4\xd5\x86\x1b\xe1\x7d\xe1\x54\xd1\x83\xf8\xc6\x89\x7e\x51\x13\xcd\x9a\x36\xd1\x44\xbf\xfc\xb5\x13\xd5\x99\x25\xec\x79\xce\x36\x9c\xb0\xf7\x79\x2a\xd2\x00\x2a\x81\x87\x90\x4e\x79\x4f\xa5\x22\x2a\xa4\x1c\x99\xe7\x7e\xb2\x54\xdd\xda\xdd\x61\x23\x2f\x0a\xc6\x93\xd0\x4a\x2d\x11\x06\xa3\x20\x55\x24\xc8\xc2\xa7\x84\xd1\x35\x1a\x57\x08\x9c\x80\xda\xaf\x11\x41\x94\xf2\x01\x84\x48\x31\x16\xbd\x01\x38\xf5\x31\x8f\xf5\x13\x6f\xc4\x25\x4f\x01\x31\x2d\x02\x3e\x55\xa8\x4e\x3d\x6a\x28\xd4\x4b\xc0\x7a\x3c\x04\xc7\x41\x6d\xee\x9b\x1f\x36\xbc\x73\xcc\xa3\x7d\x94\x17\xc3\x58\xe5\x58\x73\xaa\x6a\x83\xf0\xcc\x73\x4f\xa1\x4d\xa0\x24\x28\xa8\xd8\xa6\xeb\xad\x92\x48\x2a\xcf\xd0\xae\xe2\xa0\xcc\xb4\x25\x4d\xec\xe1\x33\x8c\x9c\xf3\x3d\x67\x90\x6f\x26\xe0\x52\x5d\x30\x30\x34\xdd\x42\x04\x0c\x47\x2b\x9e\x02\x66\xf1\xfc\x61\xc0\x49\x8d\x8f\x96\x4f\x3d\xd2\x64\xff\x32\xa1\x30\xa4\x76\x31\x99\x78\xfe\xbb\xdc\xda\xf3\xbf\x1f\xb7\x66\x79\x8f\xe4\xda\xbc\xa2\xf7\x04\xd3\x02\x0d\xbf\x37\x72\x5e\x26\x45\x08\xc9\x32\x24\x14\x81\xe4\xd7\x55\x62\xcf\xd5\xda\xea\x4a\x6d\x85\xe4\x45\x15\x28\x6c\x51\x1a\xdd\xff\x9f\x12\x2e\x9d\x93\x57\xe3\x3a\x37\xb0\x3c\xd8\x2f\x1b\x1f\x85\x2e\x45\x4b\x71\xc3\xb6\xc1\xeb\x2a\xa1\x87\x20\x32\x53\x52\x0f\xcf\x86\x59\x23\x98\x26\xf0\x5b\x20\xd8\xd8\x13\xfa\x89\x4c\x3b\x33\x44\x9a\x09\xef\xc6\x51\x2b\xe1\xe0\x85\x41\xb6\xff\x87\xe4\x94\xe1\x7b\x61\x28\xd9\x47\x61\x99\xee\x33\x33\x56\x15\x03\x85\x36\xd8\x71\x7c\xd4\xa1\xd0\x60\x82\x0e\x9a\x84\xe2\x6c\x5b\x65\x7f\x96\x09\x80\x67\x3c\xb2\x2c\xc9\x41\xfb\x88\xcf\x87\x90\x0b\xe2\x6e\x41\x52\xdf\xc2\x99\xd6\x21\xc6\x98\x65\x24\x0b\x52\x1f\x41\x27\xf6\xe0\x81\xbc\xbd\x26\xc0\xa5\xc4\x9a\x90\x00\x56\x7d\x3f\xa3\xe0\x85\x99\xec\x68\x73\xa0\x82\x68\xac\x40\x16\xeb\xf4\x50\x62\x77\x05\xe0\xaa\xa2\x52\x2a\x1b\x1d\xea\x6e\x72\x9a\x80\x6c\xe7\x8e\x8e\xd7\x24\xca\xa3\x22\xf6\x3e\xff\x26\x75\x36\xa3\x3f\xe6\xcd\xc7\xd9\x76\xa2\xd2\x8d\x68\x06\xb7\x50\xd7\x52\x2b\x0d\x2c\xca\x8d\xd2\x20\xa8\x1d\x38\x88\x1c\x78\x9b\xdf\x78\x97\xde\x3e\x58\x15\xb2\x28\x1e\xf1\xc8\x0f\x3d\x90\x2b\xca\x7c\x50\x63\x5d\x7c\x9f\x6f\x52\x0a\xa7\x1b\xc7\x66\xa7\x04\xfc\x8d\x01\xe2\x72\xfc\x75\xc3\xb4\x54\xe6\x2a\x9a\x87\xab\x3a\x77\x34\xde\xf3\xe1\x28\x4b\x61\x79\x01\x2d\x2f\x71\x80\x96\x77\x92\xd5\x29\x1e\xd5\xb1\xbb\x15\x70\xe5\xca\x98\xcd\xdb\x89\xc6\xf5\x55\x13\x66\x4f\xdb\xb6\x2f\x06\x69\xc6\xf4\x67\x42\xc5\x57\xd4\x3c\x26\x8f\x95\xb3\x3c\xd8\x88\xe0\xc3\x12\x5a\x4d\xab\x43\x90\xe1\x69\x57\xc8\x5b\xc9\xf8\x67\x8e\xf2\xd9\x55\x74\x51\x1d\xfc\xd2\x5d\x97\xc2\x2d\x72\x70\x52\x5e\x6d\xea\x2d\x5e\x1e\x33\x8b\xb3\x8a\x23\x91\x26\x13\x3f\x8d\x93\xbc\x83\xa0\x7a\x07\x43\x37\xae\x1e\x8f\x28\xc4\x3b\xe2\x73\x84\xdb\x65\xda\x91\xce\x91\xe7\x6d\x60\x96\x27\x18\xc4\xd1\x43\x07\x47\x11\x8c\xc6\xe1\x0c\xe8\x86\x45\x8b\x74\x80\x20\x01\x89\x13\xd9\x43\x86\xe3\x93\x87\x5c\x3d\x47\xe9\xae\x95\x83\x1d\x25\x68\x7b\x94\xf4\xf4\x68\x6a\xe0\x29\x42\x96\xf8\x98\xdb\x0c\xed\xdf\x1f\x42\xd6\x6b\x1c\x68\x39\xe1\x7d\x70\x80\xae\x02\xd3\xf6\xd0\xce\x92\xb8\xa1\x8b\x8a\x4c\x25\x33\x0a\x57\x76\x4d\x75\xf1\xdf\xeb\x8a\xd3\x21\x25\x16\xa3\x13\x93\xcf\x3b\x76\xab\x6c\x61\x19\x47\xb5\x0f\xf9\xa7\x4b\xc5\x9b\x22\x67\x43\x5b\x61\x1e\x19\xad\x0c\x4d\x5a\x7e\xb5\x38\x58\xfd\xd1\x91\x0f\xdd\x4e\x21\x57\x14\xb8\x9c\x52\xc2\x28\x12\x0b\x40\xca\x30\xa6\x2f\x9a\x01\x0a\x52\x86\xd6\xce\x11\x2b\x41\xd6\xe0\x92\x5c\x5f\xee\x0e\x54\x53\x2a\x27\xb9\x87\xf5\x50\x43\xe3\xb3\xbf\x1a\x3d\xb7\x3b\x40\xc5\xec\xc2\x76\x09\x56\x4e\xb8\x08\xbe\xf3\x2a\xe5\xbf\xae\x50\xd6\x3f\xc8\xf4\x15\xce\xec\x94\xa7\x45\xe3\x41\x20\x6d\x8b\x9d\xb6\x86\xe3\x7c\xd4\xdc\x72\xc1\x72\x15\xac\x94\x14\x41\x9c\x34\xf6\xe8\xea\x92\xd5\x53\x5b\x32\xa1\xaf\xf8\xb2\x6e\x8f\x8b\x34\x89\x67\xca\x97\x75\xde\xd8\x11\xe2\x6e\xb4\x85\xd5\x73\xab\x99\xf9\x3e\x6f\x3d\x5b\xc4\x9b\x29\xcf\x60\x6d\x51\x47\xc3\x0c\x04\xf3\x81\xab\xeb\xb9\x26\xe6\xf6\x7b\x0f\x1a\x3e\x91\x94\x17\xc5\xcb\xf1\x38\xe3\xcc\xe3\xfb\x5c\x88\x02\xee\x0d\x71\x41\xd7\x61\xf4\xba\x99\x09\x2b\xae\xf2\xda\x9a\x9b\x2a\xdb\x60\x65\x0c\xfd\x51\xa0\x41\x5e\x3c\x2f\xb4\xff\xe8\x91\xc0\xae\x98\x54\x65\xb8\x8f\xed\xd4\xc3\x41\x44\x3c\x33\x1c\xac\xe0\x3b\xb0\xcd\x75\x58\x98\x5c\xd0\xa1\x2a\x3b\x93\x5c\x16\x92\x01\x2b\xa5\x1c\x81\xc2\x5e\xc5\xff\xda\x6a\x22\x53\xee\xae\x26\x96\xdd\xb0\x9a\xef\xb2\xb9\x7e\x2d\x6b\xb9\x5e\xd0\x47\x93\x55\xc5\x28\x90\x70\xaf\x9d\xc5\x8b\xd9\x33\xad\x8b\xe6\x33\xed\xf0\x36\xb2\xc2\x3c\x65\xfc\x94\x5d\xda\xe3\x4e\x4a\x8f\xca\x9e\x95\x9d\xc0\x37\x93\x83\x4b\x6f\xb5\x3a\x47\x27\x76\xe2\xe1\xac\xef\x79\xce\x95\xdb\x6e\x8f\x2b\x77\x9b\xf6\x56\xbe\xd6\xbf\x34\x14\xcc\x7f\xc0\x15\xfe\x4f\x8b\xcf\x02\xae\xb5\x10\x9e\xc5\x09\xc9\x32\x3f\x6d\xce\x2f\x05\x5e\xd1\x11\xe0\x64\x6f\x76\x60\xf5\x39\x09\x9d\x4c\x38\xa3\xa0\x4f\xde\xbf\x99\xa6\xf2\x7e\x8e\xb9\x0f\x53\xac\xb2\x64\xe2\x7a\x2f\x9d\x50\x14\x15\xb7\x51\x26\xa9\xf1\x0f\x3b\x1a\x0b\xe1\xa4\xeb\x4c\x12\x1e\x37\xc9\xbc\x9b\xf2\x42\x11\x70\xb4\xda\x5f\x1c\xfe\xd1\x00\x02\xfd\xe2\xa6\x0d\xef\xa5\xca\x1b\xb2\x81\xd0\x9c\xea\x6e\xdc\x34\xb7\x15\x86\x40\x93\xcd\x28\x3c\x5a\x26\x5b\x00\xac\x80\x49\x30\x64\x22\xd8\xa6\x5e\x92\x4a\x1e\x0b\xf2\xdb\x9f\x6e\x98\xb5\xc0\x02\xd0\x6f\x60\x55\x1e\xf5\x36\xec\xe0\x4d\xf3\x5a\x2c\x59\x25\x4e\x8c\xe1\x65\x5a\x5d\xa7\xd4\x84\x63\xa7\xbf\x4c\x58\xf6\x39\x81\xe6\x59\xad\xa6\x62\xc2\x43\x9e\x79\x6b\x66\xc7\xee\x46\x9f\x52\xb6\xf9\xeb\x85\xc9\xe2\x07\x9c\x40\xa0\xc9\x7d\x51\x2a\x47\xeb\xf3\xef\xe6\x55\x1c\xf0\x74\x5f\xf9\xb4\x7e\x20\x21\x07\x12\x7c\xe7\xdb\x17\xd6\x2b\xfd\xe7\x12\x19\xfe\x37\xe1\xb0\x8c\xe4\x50\x98\xd5\x30\xe4\x69\xde\x30\x4c\x25\x24\x99\x9b\x16\x8f\xfd\xfc\x99\x3d\x22\xe5\xa2\x24\x05\x15\x27\xbc\x79\x6c\x9f\xa8\x40\x14\xeb\x82\xaa\x18\x2a\x19\x58\x53\x62\x58\x09\xc2\x20\x06\xe1\x15\xb2\xa0\x4d\x30\xcf\xb4\xd2\x5e\x46\xfc\x2a\x75\xc1\x7b\xb6\x95\x85\x06\x81\x71\x60\x8c\x65\x91\xad\xaf\xb7\x5c\xe5\x26\x82\x87\x5c\xa0\x0a\x31\x8c\xe3\x0b\x4c\x87\x78\x96\xc4\x17\xdc\x4d\xb6\x98\x4f\x33\x08\x71\x95\x72\xeb\xa5\x31\x6c\xc1\x52\xe7\x16\x32\xdf\x3a\x13\x9e\x14\xcc\x89\xe1\x11\xc5\x43\x86\x4b\x25\x28\xab\xd7\x59\xc2\xd1\x77\xda\x31\x30\xd5\xaf\x1d\xb1\x32\x26\xe0\x3a\x20\x37\xda\xed\x93\xb4\xad\x23\x93\xf7\x18\xbf\xa2\x34\xba\x27\x3a\x88\xa9\x63\xe2\x9f\x31\x6c\x40\xd7\x52\x43\xd1\xb4\x66\x5a\xde\x53\x9c\x64\xe1\xd5\x2d\x97\x74\xcd\x92\x1d\x42\x1f\xc1\x93\x2a\x6b\xb3\x30\x03\x06\x6a\xe2\x5e\xc0\xbe\x42\x00\x22\x65\x61\x31\xe4\xe1\x18\xbc\xb9\xfa\xe4\x47\x7f\x62\x85\x54\x4b\xa5\xc0\x2d\x69\x4a\x95\x1d\x3b\x83\x3c\xdd\x30\x83\x06\x7a\x67\x0f\xe1\xc5\x89\x8e\xfd\x8c\x05\x10\x03\x6b\x13\xb3\x2b\x66\xbe\x84\x98\x57\xac\xe0\x53\xa6\x43\x55\xe9\xe4\x7f\x2d\xef\xe5\xaf\xe5\xbb\x5c\x7c\x04\xd3\x58\x19\x9f\x58\xf9\x1e\x66\x21\x77\x82\xea\xf4\x55\x60\x21\xc5\x9d\x83\x61\x21\x28\x9a\xd5\x93\xe8\x9c\x55\x4f\xe3\xf1\xdc\x65\x97\xff\xdc\x62\xe1\x75\x01\xcd\x29\x8f\xea\x98\x7d\x8f\x9d\x5d\x8a\x33\x79\x1e\x95\xe7\xa2\xc9\xed\xa9\x68\x73\x71\x92\x43\x03\xc9\x1f\x72\xff\xc2\xb0\x1f\xe3\x24\x18\x79\xc9\xcc\x4e\x0e\xa6\xf9\x8b\x90\x9b\xbc\x12\xc4\x36\xe8\x6a\x26\x91\x8f\xc4\x4c\x86\x23\xc9\xd5\x63\xff\xb2\xe6\x64\x97\xdb\x39\xf6\x74\x0e\xaa\x02\xc7\x65\x55\x2b\x93\x11\x08\x87\xa5\xc3\xfe\xe7\xfa\xad\x16\x77\x9b\x8b\x5a\xa9\x79\x92\x1f\x56\x32\xd1\xd3\x0d\xea\xe1\x5a\x85\xfd\xa7\x53\x8a\x61\xca\xe7\x2d\x18\xf1\x88\x5e\x10\xed\x23\x5b\x59\x9c\x5d\x6e\x0e\x87\x59\xb8\xe0\x0a\xd8\xed\xd7\xfb\x8f\xbf\x7e\xbd\x83\xc8\x09\xa9\x9c\x1d\xaa\x93\x04\xa8\x78\x30\xcb\x76\x95\xb9\x69\xf8\x5e\x2a\xf1\x18\x63\xe8\x6c\xa8\x9f\x43\x37\x20\xb1\xc9\xce\x50\xb8\xab\x7a\x5c\xc5\x9b\xaa\x98\xdd\xd8\x49\x91\x6a\x0d\xe8\x0f\x57\x56\x41\x89\x41\x75\x63\x1c\x87\x5d\xc9\x23\x97\x6c\x4f\xee\x3a\x5d\x36\xd8\x78\x7d\x92\x4a\x4e\xa0\xc3\x02\xee\x1a\x6e\x2c\x32\xf6\x36\xd8\x6b\x37\xde\x6c\x31\xa7\xee\x20\x80\x22\xe6\xfb\xbf\x3a\x20\xeb\x9f\xcf\xbf\xda\x8e\x0d\x79\x51\xbc\x38\x0e\x6a\x81\x98\xba\x48\x72\x9f\x2b\x95\xcf\xc9\xf3\xfa\xdb\x79\x1e\x6f\x14\x77\xe9\xb6\x19\x45\xb8\xd5\x20\x1e\xef\xdf\x4e\x42\xfe\x75\xf9\x18\xb2\x0e\x23\x0a\x41\xe9\xd5\x4a\xac\x4a\x32\x2c\x8e\xe2\xd4\xc4\x82\x2d\x38\xed\xaa\x52\x36\xe1\x68\x1e\x4a\xb1\x14\xac\x38\x5e\x67\x40\x0a\xe6\x1f\x39\x60\xe2\x0e\x03\x9a\xd3\xf8\xf6\x82\xf1\xdd\x73\x90\x49\x0e\x7f\x92\xf2\x64\x3f\xf8\x5e\x28\x14\x9b\x8f\x76\xdc\x4e\x9d\x24\x9e\x8c\xbf\x73\x69\xcc\xf2\x35\x32\x32\xb5\xe4\x7d\xc8\x5e\x59\x33\xdd\x45\x32\x75\x51\xbd\xff\xa0\x4c\xfd\xdf\x83\x91\xe0\x89\xb5\x50\x8e\x96\x42\x08\xbc\x2d\xf7\xf8\x98\x47\x3d\xc1\x32\xf8\x2b\x67\x8f\xaf\xce\xf6\xbd\xfc\x2e\xce\xcf\xb4\x57\xc2\x80\xb5\x55\x56\x72\x02\xcf\x56\xb2\xf9\xbf\xb2\x59\xf5\x25\x2f\xe3\x58\x41\x18\xe6\xd5\xe4\xfc\x32\x9a\x45\xa7\x6a\x60\x92\xe2\x55\x31\xf4\x18\xc4\x51\x2b\x89\x8c\xa7\x83\x9a\x50\x3a\x1b\xf3\x38\x03\x83\x72\x81\x4a\x18\x26\xd8\x70\x66\x40\x85\x22\xde\xb7\x09\x4f\x66\xca\xa5\xb8\x6c\xb7\x70\x92\xb3\x16\x8c\x39\x8a\x53\x95\xb9\x03\x03\x83\x16\xe9\x42\x69\x0b\x1c\xb8\x0b\xd2\xa7\x17\x27\x94\xd2\x81\x1e\xcc\x08\x64\x9f\x1e\x83\x09\x18\x6f\x90\x29\x47\x5b\x45\x64\xfc\x95\x30\xae\x21\xe9\x77\x72\x29\x59\x81\xf7\x74\x20\x98\x3f\x0c\x42\x1d\xe6\x93\x98\x89\x48\xbd\x64\xe2\x04\x0a\xd7\x4e\x25\x93\x71\x97\x2d\xc3\x21\xe7\xf2\xab\x30\x56\x3a\x6a\xec\xbd\xef\xbc\xdf\xde\x20\xa7\x7a\x75\x44\xba\x38\xf4\x33\x5e\x38\x22\xaa\x74\x4f\xe7\xa1\x30\x6c\xe0\xbc\x75\xb4\x25\xa1\x5f\x20\xcf\x77\x64\x00\x32\x04\xdb\x0d\x31\xf3\xff\xb1\xf7\x2f\xda\x6d\xdc\xc8\xde\x28\xfe\x2a\x88\x32\x23\x92\x1e\x5e\x24\xd9\xce\x85\x1e\xc5\xe3\x38\xf6\x44\xff\xbf\x1d\xfb\x58\xce\xe4\xfb\x3e\x49\x2b\x6c\xb1\x41\xb2\xc7\xcd\x6e\xee\xee\xa6\x2e\xb1\xb5\xd6\x79\x87\xf3\x86\xe7\x49\xce\x42\x55\x01\x28\xa0\xd1\xbc\x48\xf2\xec\xcc\x9e\x64\xaf\x3d\x16\x1b\x77\xa0\x50\x28\x14\xaa\x7e\xb5\x3e\x30\x33\x56\x92\xca\xac\x76\x94\xd2\x01\xea\x05\xde\xb0\x47\xfc\xf3\x68\x91\x54\x51\x9a\xfc\x06\x51\x5d\xdd\xb2\xef\xf3\x05\x14\x7c\x25\x11\xcf\xd9\x13\x0d\xbc\xe2\xfd\x2a\x7f\x95\x5f\xca\xe2\x79\x54\xca\x36\xd7\x96\x44\x69\xb5\x95\x64\xd0\x20\x48\xe8\x60\xd8\xc6\x7a\x99\x37\xc1\x88\xe8\x18\xc3\xbc\x39\x27\x97\x4b\x65\x27\xa9\xcc\xec\x6b\x05\x71\x16\x79\x55\x01\x6b\x74\xf8\xa2\x71\x91\x9e\x47\x1f\x92\x6c\x5a\x87\xce\x41\x2c\x0a\xa3\x5b\xd0\x2b\x0d\xca\x02\x42\x78\x26\x04\x89\x24\xe3\x08\x12\xba\x69\xad\xbf\xca\x17\x03\x50\x11\x68\x2f\x3e\xb5\x71\x6a\xe2\x88\xe8\xd5\x07\xfa\x57\xc1\x05\xa2\x95\x42\x06\x8a\x4c\x3d\x23\xf4\xb8\x9f\x37\x6b\xaf\x63\x65\x9f\xc1\x40\xe0\x92\x0c\x30\xec\x57\xb8\xeb\xfa\x95\xa1\xd6\xf1\xef\x84\x2b\xfb\x6c\xd0\xf5\xbf\x1c\xda\x4d\xbb\xb6\xfe\x9e\x57\xbf\xed\x78\xf8\xfe\xe3\x46\x62\x0c\xe4\x61\x0a\x26\xd2\x00\x89\xb1\xcc\x2a\xeb\xe3\x69\x63\xe7\x90\xfe\x04\x53\x0f\x57\xbe\xb9\x28\x52\x14\x03\x71\x10\x5a\xdb\x81\x38\xe0\xf1\x83\xb0\x4d\x54\x75\xc6\x12\xe3\x97\x5a\xb3\x23\x7a\x95\x37\x58\xbb\x26\x5e\x1d\xd0\x57\xf4\xc1\xd0\x2c\x9a\xc2\x81\xe7\xc0\x18\x7c\xf4\x0d\xfe\xe8\xa5\xa4\xd3\x08\xa1\x26\xc1\x1c\x3f\x9b\xe4\x22\xba\x88\x92\x34\x3a\x4f\x59\xa0\xae\x71\x49\x4a\xc0\xa0\x78\xd6\xa8\x6e\x77\x15\xa8\xaf\xa1\x27\x5a\x01\x12\x15\xa5\x7c\x99\xe6\x51\xd5\x1e\x97\xe5\x09\x59\xec\xfd\xe9\xa3\xc7\x65\x6e\x46\x67\xf5\x8a\xbe\x07\xe1\xa5\xa1\xa2\x73\x48\xac\x57\x04\x91\x1b\x75\x6d\x18\xc7\x52\xcf\x2a\xd1\x19\x2d\x60\x6f\xd5\x6e\xaa\x0f\xa5\x57\xeb\x94\x5d\x44\x0d\x6f\xe6\x9c\xc6\x1c\x56\x11\xdd\x79\xc1\x8e\x22\xcf\xaa\x64\xba\xcc\x97\x65\x7a\xad\x91\x96\x2c\x85\xb1\xbe\x5a\xcd\x96\x51\xb9\x50\x17\x81\xb6\xea\x74\xd5\xb5\xa5\x3b\x5d\xb1\xe7\xa8\x05\x3c\xb1\x87\xff\x7c\x52\xdb\x3b\x28\x53\x1a\x05\xa1\x7e\x62\x84\x6e\x14\x4a\xba\x69\xb3\x86\x28\x0f\x1d\x06\x67\x43\xd1\x6a\x75\xd5\x94\x30\xc7\x88\x5c\x2c\x33\xf0\x75\xcd\xae\xd1\x8a\x68\x19\xa5\xe6\xf4\x60\xd1\x70\xb5\x97\x86\x96\x33\x6e\x36\xd0\x5a\xfc\x5d\x52\xf4\x3e\x8a\x08\x1e\xf4\x64\xa7\x8d\x3c\x4d\x2e\x64\x46\x81\xec\xe0\x3e\x61\x45\x7f\xcf\x20\xad\xff\xb3\xba\xa6\x34\x05\x85\x0c\x34\xe1\xc9\xfe\x3a\xa7\xb6\x5d\x6e\x28\xb1\x42\xe8\x5f\x13\xe4\x1c\xd7\x46\xb1\xe4\x40\xd4\x7a\x5f\x30\xa7\x80\xf8\x7e\x68\x8e\x60\xd4\xfc\x5a\x59\x89\x51\xab\x89\xc7\x9a\x98\xa1\x54\xf4\xde\x6e\xaa\x34\x56\x6b\xc1\x10\xb8\xb0\xfa\x79\xfe\x78\x81\x0d\x92\x0e\x78\xea\xfc\xcb\xac\x48\xb6\x16\x88\x7f\xcc\x8b\xe4\xb7\x95\xd2\xf0\xaa\x90\x9d\x24\xa9\x12\xce\xf5\x2b\x84\x21\x67\xba\xb0\xd5\xd1\x3f\x0f\x79\x55\xc4\x4d\x75\x8f\x7c\xc9\xd5\xa8\x91\xec\xa1\xee\xd4\x66\x54\xd8\x6d\xaf\x37\x4f\x03\x35\xd7\x34\x5f\x67\x62\xe8\xb1\x68\xbe\x3e\x21\x6a\x67\x97\x84\x3a\xcb\x6e\x10\x77\x5c\x09\x67\x65\x48\xfc\x3b\xe9\x7d\x36\x8b\x77\xff\x87\x3e\x07\x9a\x98\x25\xb1\xe4\xdb\x73\x7b\x85\x0c\x04\xdb\xe9\x8a\x96\x1f\xb9\x67\xad\x4a\x46\xc7\x28\x9f\xbc\xc3\x30\xe5\x61\x07\x01\xce\x0f\xd4\x71\x2f\x0e\x31\x3c\xeb\x69\xe0\xc9\x97\x9b\x15\x0a\x66\x4d\x2e\x0e\xbf\xb3\x2e\xa0\xe0\xe0\x04\x87\x8c\xdf\x63\x55\xa8\xd3\xaf\x3d\x79\xda\x17\x2e\xea\x6b\x1f\xaf\x24\xfa\x29\x11\x9e\x64\x3f\x7d\x72\xb3\xc0\x45\x8b\xde\xbe\xfa\x05\x85\x0f\x77\xb3\xa8\x62\x3a\x07\xd5\xe8\x67\xc1\x82\xba\x1d\x55\x27\xf4\x91\x69\x5e\x9e\x81\x3d\xc7\x32\xcb\xe4\x58\x96\x65\x54\x5c\xf3\x27\xe9\x64\x22\x2e\x92\x92\xd0\x00\xc4\x2c\x02\x8d\x0c\xfa\xee\xc7\x56\x77\x62\x5d\x94\xd4\xac\x54\x05\x0b\xa6\xdf\xa0\xb9\x60\x73\x8f\xe5\x78\x20\x48\x14\xf1\x34\x62\x48\x79\xd2\x0a\x40\x8a\xb4\xce\xac\x79\x40\x4d\x99\x74\xef\x43\x02\xe3\xea\xed\xc7\xc4\x03\x4a\x6e\x3c\x28\x5b\x68\x85\x26\x7d\x1d\x0f\x5a\x25\xf7\xdd\xa3\xa0\x60\xcc\xd5\xd1\xd9\xfb\x1d\x6c\xaf\x1e\xb8\x5b\x32\x9b\x04\xf2\x04\x3f\x97\x02\xc4\x6d\x19\x8b\xa8\x12\x11\x80\xf1\x35\x71\xa4\xba\xdd\x8d\xae\x8c\xaa\x30\xd1\x8b\x54\xee\x2a\x4a\xa5\x01\x25\xee\x2d\x64\x01\xa0\x96\xba\x68\x92\x4d\xfb\xe2\xa8\x6a\x95\x84\xde\xaa\xae\x2d\xfb\x7b\x7b\x7f\x16\x94\x11\x2d\xba\x23\x9c\xa7\x69\x9e\x83\x57\x5b\x62\x50\xe4\x08\xe2\xbd\x90\x51\x89\x48\x1b\x0f\xc4\x0f\x49\x39\x5e\x96\xe0\xc4\x3a\x93\x85\x1c\x8a\x0d\xa3\x13\x2c\x96\x69\x3a\xf8\x7a\xff\xb1\xe9\xfc\xab\xfc\x52\xfc\xf0\xf6\x48\x94\xe3\x42\xca\xac\x14\x78\xc1\x8d\x98\x2b\xc6\xb9\x14\xe7\xe9\xb2\x28\xae\x11\xa3\xb3\xa2\xab\xf4\x64\x99\xa6\x5a\x65\xd3\x3e\x8e\x26\x51\x91\x40\x85\x51\x29\x2e\x65\x9a\x8a\x3c\x13\x3f\x26\xd3\x19\xaf\xbc\x63\x23\x3e\xbd\x4c\x0a\x39\xc9\xaf\xd4\x3d\x6f\xa2\xce\x8c\x2c\xc7\x69\x85\x9a\xf3\x82\xcf\x1c\xba\x60\xe7\x12\x95\xc1\x68\x5d\xa2\xfa\x93\x64\x6a\x2f\x11\xdd\xcd\xbc\xa6\x6c\x4b\x6f\xb2\xf4\x5a\xcc\x94\xd8\x90\x67\x95\x03\x84\x05\x76\x61\x72\x52\x91\x5a\x86\x22\x9a\x6a\x08\x94\x73\xc9\x02\xe0\xf6\xd7\x5f\x2e\xde\x21\x55\x90\xc9\x26\xbd\x2e\x30\xa2\xbc\xcb\xab\xe7\x47\x9c\x9c\x2e\xbd\x65\xde\xd0\x5d\x96\xe5\xc8\xf2\x77\x74\xb0\x5c\xa8\x83\xe2\x02\x92\x9c\x03\x0a\x5b\x81\xbb\xbc\x38\xc4\xfa\xac\xf6\x09\xad\x01\xea\xfa\x02\x37\x3b\xb7\x1c\xe8\x78\x2d\x6c\xa8\x97\x75\x05\xb3\xc0\x6b\x6a\x52\xfe\x83\x19\x50\x7b\x3a\x64\x13\x66\xbc\xd7\x0a\x3d\xc4\x46\x73\x1c\xdf\xdb\xa8\x50\x8c\xf5\xd0\x1f\xf6\x9f\xc5\x01\xf0\x52\x3e\xb6\x3f\x83\xea\xc8\x9e\xce\xd5\xec\x4d\x1c\x9b\x61\x87\xcb\xef\x8b\xdd\x5d\xbf\x12\x4c\x70\x64\x6a\x4b\x74\xef\xf3\xa3\xac\x92\x53\x90\x27\xbf\x60\x34\x81\x7c\xf9\xa9\x5e\x3d\xfc\x39\xe4\x73\xf9\xe9\x93\x33\x23\x9f\x3e\xf9\xa3\xd4\x55\x14\xbc\x02\xff\x95\xfb\x82\xaa\x6b\xea\x87\xed\x82\x18\x62\x4d\xae\x80\x4b\xa7\x8e\x5a\xd4\x61\x68\x58\xe6\xd9\xc1\x99\xbf\xdd\x5d\xf1\x05\xef\xfc\xee\xae\xa8\x8d\x1d\x3b\x4f\x84\x85\xe1\x3c\xc5\xbe\x4d\x1a\xf2\x24\xfc\xac\x15\x24\x55\xbe\x18\xd6\x07\xa6\x69\xb4\xca\x17\x1d\x63\x1d\xa7\xc4\x92\x15\x79\x31\x83\xce\x0e\x14\x1b\x1e\x25\xe5\x87\x1c\x1d\x63\xe8\xe2\x88\xfd\x25\x29\xfa\x6a\xef\xc3\x26\x81\x47\x83\x94\xd5\x33\x73\x1c\x07\x0a\xd8\x44\xf7\x6e\xff\xce\x0b\x97\x1c\xb8\xda\xfb\x59\xea\x71\x36\x9f\x2d\xab\xbc\x51\x39\x10\xca\xf3\xfb\x53\x0e\x70\x47\xee\x9e\x71\x21\xaa\x99\x28\xf6\x34\x6b\x37\xb1\x89\x8c\x6f\x3e\x03\x16\x69\x6e\xc1\x8a\x4c\xac\x15\x0b\x27\x77\x3f\x2d\xdd\xd7\x45\xaa\xd4\xd0\x07\x34\xb1\xeb\x9e\xc2\x0d\x7c\x06\xbf\x40\x0d\x06\xa0\x5a\x34\x9e\xca\x8b\x42\x96\xf0\x1c\x9a\x91\xf7\x17\x4e\xfa\x68\xb5\xff\x79\x97\xaa\x4a\x08\xab\xf1\x32\xba\x86\xf8\xe2\x51\x66\x21\x21\x1f\x16\xb1\x58\x44\x08\xbb\x61\x20\x1f\xe2\x58\x83\x8c\x59\x2c\x1d\x8c\xe1\x36\x18\x88\xef\xa5\x88\x2e\xa3\x42\x76\x59\x09\x1b\xc3\xc2\xc4\x8a\x64\xab\xa2\x3d\xe6\x29\x68\x8c\x46\x11\xa3\xfa\x52\x25\x47\x98\x40\xa8\xba\x4e\xc0\x87\x31\x7b\x36\xa8\xa6\xef\x72\xfa\x63\x6f\x1e\xab\x67\xce\x12\xd3\x86\xb3\x07\x5e\x6e\x3a\x27\x28\x7d\x4b\xf1\xe3\xfb\xd7\xaf\x04\x23\x4b\x52\xc7\x32\x94\x1c\x87\x7b\xac\xea\xbe\xad\xa5\xb3\xd2\x78\x40\x4f\xa2\x71\xbf\x27\x36\x37\x8b\x4a\x51\xe6\x73\xe9\x21\x8d\x98\x0b\x8c\x53\xcf\xee\xae\x40\x5a\xed\x7f\x90\xd7\x65\xdb\x07\x3b\xe8\x50\xc8\x7c\x73\xcd\xf1\x16\x80\xd7\xd5\xad\x41\x25\xac\xb6\xfd\xb1\x9c\xeb\x98\x14\xdc\x57\x3d\x26\x0a\x9a\xdd\x4c\xbe\x85\xf2\x42\x16\xd7\x4a\xea\x9e\xe2\xcd\x8e\x45\x9e\x33\xe1\x42\x97\xa5\x8d\x95\xab\x68\x16\x1f\x62\x7c\xe4\x27\xfd\x55\xc9\x95\xa5\x16\x2c\xad\x81\x3e\x42\x09\x92\xf9\xc0\x03\x31\xce\x8b\x02\x6f\x0e\xfc\x71\xaa\xbf\x5e\xbf\x3e\x77\xf9\x2e\xb9\x0a\x3a\x28\x1a\x56\xd4\x44\xf6\x5b\x07\xf0\x30\x21\xad\xea\xf0\x33\xcd\xd5\x52\x57\xb1\x4e\xa0\x4c\xa7\xba\xa8\x0c\xd5\x50\x67\x7b\xd6\xdd\x94\x31\x39\xcb\xb9\x02\x1c\x0b\x01\x7f\xda\xb8\xdc\xdc\x4e\x9e\x6d\x20\xaa\x0b\xfe\xd6\x53\xf4\x86\x7d\x2b\x2b\xf0\xae\xb4\x7c\x4f\xbf\x58\x06\x10\x8b\xed\x43\xa1\x27\x54\x5b\x07\xb4\xc0\xc9\xdb\x86\x26\x82\x31\xd2\x8d\xe5\x39\x37\xd1\x0f\xbc\x9e\x46\x4b\xb5\x26\x36\x88\x3c\x18\xe6\xf3\xa8\x92\x99\x89\x2b\xc6\xf5\x68\x54\x8b\x65\x93\x86\xdf\x00\xcc\x55\x2e\x64\x9c\x54\x4e\xa8\x58\x75\xc1\x83\x60\x0d\x86\x95\x51\x38\x2b\x40\xe0\xaf\x41\xd5\x68\x48\x17\xc7\x43\x00\x4e\xc0\xb0\x92\x3c\x24\x55\x90\xe8\x68\xa6\xc2\x8c\xd2\x53\x15\xd3\x6c\xd2\x67\xc7\x65\xa2\xc9\x49\xc2\x0c\x1c\x10\x71\xea\xee\x4f\xab\xb3\xb3\xc0\x3e\x1d\x47\xbf\xdd\xe7\xbc\xb5\xdd\x62\x6c\xa4\xd5\x15\x8e\x4a\x99\x66\xf1\x19\x48\x02\x23\xbd\xca\x23\x26\x14\x10\xb7\x89\xb2\x00\xaf\xa1\xd2\x3a\x78\x0d\x6e\x45\xda\x97\xfa\xc4\xc0\xe3\xb4\x55\x89\xe9\x32\x2a\xa2\xac\x92\xd2\x70\x10\x9c\xec\x48\x6f\x25\xc6\x4b\x35\x25\x7e\x34\xf5\x0d\xc3\xa4\x28\x9e\x1a\xcc\x85\xa1\x68\x69\x70\xb5\x96\x35\x90\x26\x2e\x4b\x85\x6b\xaa\x21\xcd\x69\xd9\x49\x45\xbc\x11\x1f\x0e\x39\x5f\xd8\xfa\xed\xd0\x0f\x60\x21\x7a\xe2\x85\x85\x67\x25\xe9\xcb\x6f\xbc\x49\xfa\x32\xe0\xaa\x0f\xe8\x80\xf2\x61\xf7\xb9\xc7\x4b\x16\x6b\x31\x8f\x41\xc9\xd7\x8f\x71\x26\xf0\xad\xf2\x50\x76\x0e\x6a\xe3\x3d\xc7\x8e\x65\x64\x4d\xfc\xdc\x64\x89\xc6\xb8\x5e\x57\xd8\x56\x3d\xf5\x5c\x81\xb5\xa7\x01\xd3\xfd\xa9\x5c\xda\xff\x01\x9f\x2e\x55\x96\x2f\x02\x8a\x46\x8d\x5c\xe8\x50\xbd\x2a\xde\xad\xd5\xa7\x6d\xc5\x5c\x6d\xa8\xad\x02\x11\x23\xdc\x5a\x3a\x8e\x2d\x59\xc7\xd2\xd0\x40\xd0\xb2\xd3\xb5\x25\x96\x6a\x03\x8f\x6d\x80\x7c\xbc\xa9\xe8\xcf\x8e\xc9\xad\x86\x8b\xf3\xf2\xda\x04\xba\xcb\x0c\xc4\x6b\x20\x3b\xdb\x0a\x3d\x7a\xe8\x72\x48\x95\xe5\x00\x3f\xb3\x36\x08\x43\xa3\x96\x91\xbe\xb3\x9c\x88\x10\xf2\xe2\x42\x66\x95\xba\x3b\xa8\x6b\x4e\x59\x2b\x16\xca\xc4\x5b\x43\x68\xc2\x35\x95\x04\x73\xb1\x5a\x08\xce\x27\x50\x90\x12\x58\x5e\x16\x58\xc2\xcf\x6d\x93\x70\x16\x3d\xca\x1e\xa7\x91\x01\x8f\xf0\x11\x67\x10\x0c\xa1\x14\x11\x03\xd0\xe1\x00\x13\x06\x76\x81\x57\xa2\xbf\x91\xe4\x40\x9b\xfc\x93\x3d\x19\x68\x0f\xdf\x55\xbc\x09\x34\x12\x12\x6e\x06\xe2\x7f\x05\x44\x9c\xc6\x9a\xea\x82\xce\xff\xce\x97\x85\xbe\xdf\xe8\xaf\x7e\xa4\xfb\x3c\x73\xef\x2d\x27\x7a\xed\xce\xda\x5f\xea\xd5\xd2\x41\x20\xff\xa6\x95\x34\xba\x29\x03\xd7\x81\xbd\xb6\x37\xeb\x20\xba\x9d\xc5\x29\x36\x30\x4e\xed\x1a\x72\x80\x91\x55\xc4\xa1\xf8\x78\xc3\xdf\x6e\xe0\x26\x87\xdb\xa3\xdd\x31\x9b\x34\xee\x1a\x2f\xd5\x84\xa0\x4a\x8a\x65\x06\x31\x75\x11\x82\x23\x1b\xcb\xde\x42\x16\xbd\x2a\x19\x7f\x20\x7d\xce\x2c\x29\xfb\xb4\xfd\x0e\x4d\x45\x6d\xf6\xb9\x7f\x9e\x64\x31\x7c\xe8\x38\x66\xc3\xc0\xaa\x3f\xde\xc0\x61\x08\x04\x46\xf4\xe5\xc3\x41\xe9\x21\x90\xb8\x44\x51\xc1\xb1\x61\x36\x3c\xd1\xef\xf7\x69\xa6\xf4\xac\x83\xcf\x90\xce\x72\xe3\x98\x2c\x67\x18\xa5\xa8\x92\xac\x32\xf8\xcd\xe1\x08\x92\x92\x40\x72\x7c\x78\x7d\x95\x84\x9b\xa2\x96\xc0\x63\xe5\x95\x43\x71\x72\x56\x03\x12\x18\x0c\xe0\xea\xe0\x42\xa3\xb9\xda\x86\x52\xb4\xa3\x34\xcd\x2f\xc5\x3f\xff\x2f\xb0\x60\xbe\x84\x08\xaa\x85\x8e\x09\x03\xbd\x65\x4e\xcf\xac\xae\xdd\x5d\x16\x1f\xf4\x9f\x68\xff\xfc\x94\xbd\xdc\xef\x9d\x09\x86\x91\xf0\x84\xd5\xe7\x39\x4a\x59\x5d\xa9\xad\x86\x9e\xf3\xa1\x0e\xc7\x9d\x0a\x06\xf5\x83\x94\x0b\x31\x97\xc5\xd4\x81\xf1\x36\x97\x02\x6f\xc9\xac\xdc\x06\xb4\x49\x3d\xe1\xc7\xa5\x59\x86\xfa\xc2\xd6\x5e\x5b\x05\x5b\xe9\x5a\xe2\x8d\x3d\x6e\xf1\x01\xf6\x3b\xbb\xc4\xe1\x2e\x9d\xa8\x7c\x67\x9c\x14\xb4\x17\x3d\x99\xde\x9f\x2f\x93\xb4\xea\x25\x19\x43\xc2\xa5\x6b\x66\x54\x82\xed\x88\x2d\xd7\xef\xf7\xdb\x8d\xdd\xa7\x86\x3e\x7d\x52\xdb\xb3\xeb\x37\x56\x01\x58\x60\x54\x48\x8f\xef\x74\x39\xaa\x5a\x4c\x73\x0e\xfb\x45\x73\x73\xc5\x88\xdc\x2e\xd4\xa7\xfd\x69\x5d\x84\xa6\xee\x0c\x9d\xde\x18\x1f\x41\x67\xf7\xbe\x93\x93\x48\x31\x1d\x80\x68\xd7\xe5\x5b\x28\x78\xb5\x49\x18\x3b\xfc\x4e\x40\x98\x26\x4e\xb6\x7c\xd9\xf9\x6a\x87\x17\xc2\x38\x36\xf6\xe7\xd1\xc2\xac\x5e\x9b\x2d\x8b\xfa\xd6\x75\x86\xba\x6a\x49\xed\xa0\x3a\xa6\xea\xc1\x40\x94\xea\x24\x74\xf1\xe7\xcf\xaf\xd1\x63\xc4\x74\x40\xe5\x69\xb7\xa3\xae\x38\x07\x30\xa4\xa8\x8f\x0e\x25\x3d\x71\x8e\x7f\x39\xb3\x63\xeb\x21\x53\x53\x75\x7b\xc3\x77\x63\x75\x81\x03\x78\x5f\xb5\xb2\xe7\x49\x05\xd0\xcd\xe3\x1c\xc3\x2f\x67\x8c\xd9\x2b\x26\xa1\xf8\x94\x7e\x5c\x56\xfd\x5c\x8e\x67\x98\x37\x29\x75\x2d\x46\x41\x06\x2a\x44\x03\x21\x9c\x54\xa5\xe7\x6c\xa1\x95\x52\xa8\x08\x89\xe2\x18\xb8\x2d\x93\x90\x51\x00\x4e\x0a\xc3\x71\x1d\x45\xa6\xa9\xe4\xfb\x17\xe2\xd9\x2f\xcf\xde\xbd\x18\x92\x31\xad\xaa\x89\x1d\x88\xa3\xfa\xc5\x4c\x4d\xfd\x08\xde\x4a\x55\xba\x77\x9f\x1f\x7d\x11\xa2\x0e\xb3\x63\xbd\xdc\xce\xe6\x55\x12\xb0\x97\xde\xd7\xe0\xc6\xbb\xbb\x4c\xa0\xac\xe5\x42\x18\xe2\x8e\xe3\xd8\x1b\xce\xe3\xb8\xf7\xba\x8c\xb7\x5b\x4b\x72\xee\xb7\x75\x06\xe3\x24\x84\xd4\x1a\x4e\x21\x76\x3c\x89\x90\x63\xaf\xbb\x1f\x27\x09\x59\xee\x63\xf0\x51\x3a\x91\xc3\x52\x93\xa6\x18\x7c\x40\x05\xc1\xb0\x76\x98\xb7\x3b\x1e\x66\x8f\x03\x7b\x27\x0e\x5d\xce\xe9\x24\xb2\xfb\x89\xf3\x9d\xcd\xb6\xa2\x65\x59\x2d\x17\x58\x2b\x70\x0d\x10\x7b\xbb\x4c\x6f\x0a\x36\xdd\xe3\x08\xd1\x1f\xf5\x78\xf8\x6d\x3a\xc9\x34\xda\xd2\x58\x94\x49\xb5\x8c\xd8\x51\x43\x63\x09\x09\xe8\xed\x8e\x6f\x79\x61\xa7\xbb\xef\x8f\xb2\x3e\x30\x8b\x04\xf2\x8b\xbe\xc5\x2b\xd6\x8f\xa2\x2f\xdb\x4d\x5a\xf5\x08\x03\xc2\x9d\xa2\x76\x34\x0c\x55\xef\x59\xad\x30\xd2\x65\xab\x1c\xf0\x22\x15\x53\x3f\x2f\x64\xf4\x41\x94\xd5\x72\x32\x41\x00\x94\xe3\x24\x53\xf7\xce\x6a\x79\x0e\x43\x34\xb2\x9b\x6b\xe8\x44\x22\xd7\x38\x4a\x53\x14\xb9\x98\x5b\x00\xca\x32\xb5\x22\xf4\x3d\x58\x26\x3c\x7f\x5e\x05\xa1\x4c\xe1\x1e\x84\x6e\x3a\xf5\xfe\x84\x72\x05\xea\x73\xef\x28\xc7\xe3\x99\x8c\x97\x29\x5c\xf4\xf5\x2c\xd8\x60\xa9\xcb\x4c\x43\xf5\x01\x58\xcd\xcf\x47\x9a\xa0\x8c\xe9\x3f\x8b\xd0\xa3\xee\x4b\xa2\xa4\xfa\x0c\x90\x9b\x08\xe3\x75\x6a\x39\xdc\xcd\x2f\x0e\x09\x33\xaf\x90\xff\xb5\x94\x65\xf5\x2c\x4b\x10\x52\xfb\x65\x11\xcd\x1d\xe9\xd8\x28\x9c\x58\x8c\x9b\x34\xa5\x70\x07\x8a\xf0\xab\x84\x80\xee\x78\x68\xe3\xcb\x22\xa9\xd4\xc9\x4b\x72\x81\x65\x9b\x7a\x36\xaa\xa8\x80\x0c\x70\x0b\xb4\xb8\xe9\x5f\x77\xe9\xbd\x04\x07\x99\x94\x76\x02\x50\xdc\x47\xb0\x4a\xaa\x25\xc9\xc6\xe9\x32\x96\x62\x84\x6c\xa3\x07\xd7\xf1\xfe\x3f\x4b\x83\xd3\x3f\x32\x16\x2a\x23\x3f\xea\xe6\x0f\x2f\xde\xbe\x7b\xf1\xfc\xd9\xfb\xa3\x37\x3f\x3d\x78\x30\x44\x28\xc5\xcb\xe8\x1a\x41\xf8\x19\x50\x21\x68\x0b\xf0\xa5\x42\xa3\xbd\x53\x1d\x3a\xf2\x26\x98\xff\x48\x84\x77\x4f\x32\x71\x71\xf0\x85\xf8\x99\x90\x87\x78\x15\xf3\x5c\x4d\x3f\xc5\x8a\x50\x23\xc9\xca\x4a\x46\x06\x26\xf3\x07\x0c\x5b\xa3\x4a\x81\xd1\x09\x5c\xa5\xe8\x48\xa6\x77\x18\xba\x29\x9b\x90\xdf\xd0\x1c\x54\xde\x35\x1a\x3b\xaa\xcd\xea\xed\x00\xca\xb7\xca\x29\x8e\xbb\x28\xe5\xfc\x42\x16\x7d\xdd\xc3\xb9\xba\x3a\x99\x00\x04\x45\x52\xea\x08\x06\x0c\x06\x96\x00\x0b\x93\x0b\x46\x67\x3e\x6c\xec\x3a\x3c\xfc\x6f\x5c\x02\xd5\x3a\x98\xb5\x44\x0b\x7d\xc0\xdc\x8a\x64\xc9\x7b\x14\x23\x88\x83\x5a\xa9\x65\xf0\xe5\x5b\xe2\xa9\x4e\x18\x8a\x69\x9a\x9f\x47\x69\xa7\xcf\x16\x80\xe8\x98\xaa\x64\x8a\x08\x66\x3c\xed\x65\x32\x9a\x8d\x43\xf3\xa7\xff\xea\x03\xf0\xf5\x9e\xce\xc0\xc3\xb0\x87\xeb\x2a\xf9\x6e\xc2\x77\x88\xea\x3a\x89\xc6\xd2\x84\x24\x4a\x49\x3c\x36\xc2\x15\x9a\x3c\x81\x21\x51\x55\x02\xce\xaa\x15\xdf\x29\x88\x12\x3d\x1e\x88\x08\xf0\xb0\x8c\x3f\x06\x87\x37\xd6\xb1\xbd\x91\xcd\xdb\x6d\xc5\x4f\x5d\x63\x92\x55\xc8\x34\xaa\x92\x0b\x89\xaf\xcb\x18\xc1\x0f\xa2\x2e\xe7\x45\x9c\x64\x51\x45\x7a\x4c\x1e\xd6\x89\x39\x2b\x45\xd6\x29\xb5\xca\xa1\x41\x8e\xb1\x65\xcd\xa6\xc2\x48\xc7\x7c\xf6\xb4\x6e\xe0\xa7\x3c\x46\x6f\x37\x53\x08\xfe\xfe\xe9\x7b\xda\xac\x13\x89\xf8\xe2\xe8\x4b\x5b\x6a\xf8\x28\xd5\xc1\x23\x35\xc1\x99\xac\xc4\x8b\xab\x45\x9a\x17\xb2\x10\xfb\x7b\x1c\xc2\xdf\x6b\xd1\xc7\xcf\xb6\x51\x21\xe0\x2d\x50\x23\x2d\x25\xd9\xd4\x5a\x6c\x43\x99\x67\x56\xdf\x0a\x8b\xac\x5f\xce\x43\x93\x57\x5b\x6b\x60\xf6\x30\xe3\x62\x14\x6c\x82\x03\xe9\x3a\xfd\xd3\x31\x3b\xa0\x77\x63\xc8\x0f\x96\x31\xd8\xa7\x4c\xbc\x38\xfe\x4a\x1d\xe5\x08\xa0\x14\x99\x78\xdc\x70\x78\xa9\x56\x11\xa2\x85\x98\xca\x45\x52\x80\x9b\x4f\x30\x5e\xe1\xba\x66\x7f\x04\x1b\xf9\x4d\xdb\x45\x8b\xfa\xcd\x1a\x76\x00\xc6\x7f\xd5\xbe\xa1\x70\x5a\x9c\xee\xfc\xed\x3c\x3a\x97\xe9\xa0\x58\x66\x55\x32\x97\x83\x99\x4c\x17\xb2\x28\x07\xb2\x9c\x0f\x28\xe7\xe9\x8e\xd5\x39\xfe\x8a\xfb\xf0\x17\x7c\xf0\x78\x6b\x25\xa0\xf5\xb5\x35\x94\xe4\xb5\x83\x65\xe2\x3b\x19\x19\x2f\x9a\x42\xfd\xcd\x54\x9e\xaa\xd8\xfb\xeb\x85\xb1\xc4\x51\x13\xda\x53\x8c\xcc\x31\x9e\x49\xcb\x2b\x4a\x57\x7f\xb2\x94\x8f\x62\x3c\x8b\x92\xcc\xd6\x72\x43\xf9\xfe\x36\x8f\x2a\x59\x24\x51\xda\x5b\x26\xa8\x88\x66\xa5\x14\x85\xf9\x06\x43\xf8\x18\x31\xb0\x49\xbc\x7d\xe3\x97\x57\x33\xd9\x31\x29\x2a\xfb\x45\x54\x88\xe3\xa3\xff\xf3\x42\x1c\x8a\x47\x8f\x80\x59\x3a\xb6\x8a\xc4\x42\xc0\xe3\x0c\x75\xff\x5d\x31\x4f\xb2\xae\x98\x47\x57\x24\x46\x11\x3d\x58\x5f\x39\xe3\x3d\x07\x19\x2f\xc8\x2b\x0e\x0a\xf4\x54\xe1\x8e\x18\x88\xf6\x3c\xba\xa2\x5f\x9a\x01\x9b\x76\x65\x54\xca\x37\xcb\xaa\xad\x7d\xf3\x2b\xfd\x5e\xca\xfb\x52\x75\xc5\x5e\x57\xec\x77\x00\x0f\xce\xda\xb4\x96\x55\x9f\x19\xb6\x4e\x0b\x39\xd8\xff\xea\xf1\xde\xc1\xb7\x8f\xf0\x18\xa8\xe0\xcc\x11\xbd\x43\xb1\xdf\x11\x0f\x44\x05\xff\xff\x17\x81\xc6\x81\x9a\xb0\x83\x1d\x3a\xca\x4c\x7f\x74\x3e\x55\x58\xe7\x25\xdd\xb6\x9a\xcd\x52\x83\xd8\xd9\xa7\x1b\x7c\x4e\x53\xa7\xb3\x74\xeb\x30\xe1\x7b\x04\xad\xad\xf7\x34\x54\xe4\x79\x65\x76\x91\x09\xc9\xa2\xbe\x32\x28\xd2\x38\x29\x17\x69\x74\x3d\x14\xad\x24\x4b\x93\x4c\xf6\xce\xd3\x7c\xfc\x81\x1c\xf3\x35\x82\xf2\x86\x8d\x40\x84\x61\xf0\x31\xcb\xaa\xc3\xd3\x1d\x12\x19\x76\x46\xb6\x71\xfc\xc4\x9a\x07\x68\x35\x7a\x1d\x84\x21\xf6\xed\x97\xb2\x8f\x8a\x56\x07\xf6\xef\x3e\x3a\x96\x64\xb1\xac\x64\x31\x07\x56\xec\xf4\xcf\x49\x61\xdd\x8c\xb4\x40\x3c\x14\xad\x3f\x8d\x93\x62\xbc\x4c\xa3\xa2\x57\xe4\xa0\x82\xdd\xef\x3f\x2a\xc1\xc0\x27\x52\x57\xd5\x09\x28\x41\xee\x30\x81\xe3\x3c\xcd\x8b\xc3\xd3\x1d\xc2\x9c\x72\xfa\x07\x69\x6f\x31\x61\xc8\xc1\x19\xd2\xbc\xd0\x13\xb8\x88\x52\xc5\x75\xfb\x54\xbe\x3f\x8f\x92\xec\xee\xbd\x31\xa8\x57\xf5\xfe\x1c\xeb\xa4\x75\x3d\x32\x75\x6c\xd7\xa7\x51\x79\x31\x1d\xd5\x09\xb9\xbc\x98\x06\xe9\x18\x09\x58\xed\xec\xff\xbf\x94\x8b\x52\xdb\x69\x4d\x0b\x25\xc5\xa3\x0f\xb1\x12\xda\x37\x6f\x5e\xad\x77\x2a\x47\xaa\x41\xb1\x50\xec\xc9\x0e\x1f\x52\x86\x1c\x11\xb8\xc8\x3f\xc8\xa1\x68\x51\x70\xfe\xe7\x6a\x1a\xa0\x2f\x4a\xc2\x3e\x5f\x56\x15\x13\xbe\x41\x0b\x46\x1a\x01\x20\xae\xae\x38\xbf\x06\x0f\x8d\x31\x04\x5d\x6a\x95\x22\x4a\x0b\x19\xc5\xd7\x14\x00\x0c\x95\xa5\xcf\x8f\x8f\x91\x2f\xf6\xb9\x7a\x02\x1a\x7e\x95\x64\x72\x1c\x2d\xd4\x24\x2c\xab\xaa\xd5\xbd\xcb\x28\xd7\x6f\x66\x2c\x71\x7c\xbb\x2d\x8d\x1d\xee\xc5\x51\x39\x43\x93\x97\x2d\xb6\xf6\xba\xbe\x36\xef\x6f\x2c\x78\xb4\xd5\x2e\x57\x5d\xc4\x3d\xae\x58\x79\x2f\xc9\x7a\xf9\xb2\xb2\x1b\xbd\xcb\x56\xe1\x38\x9f\xdb\x75\xa2\xd8\xa3\x4a\xf4\x49\xf3\xfc\x43\x29\x20\x70\xda\x65\x84\x57\xe1\x09\x45\x24\x34\x6d\x82\x9d\x4b\x32\xfe\x50\x0a\x1b\x77\x90\x96\xf5\x87\xa8\x9c\x41\x98\xfe\xa1\x68\x7d\xb3\xb7\xb8\xea\x8a\x83\xbd\xbd\xc5\x95\x6d\xda\x66\xc3\xb9\x1c\x8a\x96\x4a\x07\xb3\x90\x18\xc3\x5f\x2f\xb3\x04\x69\x2f\xb9\x12\x91\x78\x11\x4f\xa5\xd8\xff\x0a\x55\x37\x52\x11\xe3\xf9\x72\xda\xe7\xe4\xa2\xfe\x6d\xfd\xed\x83\xbc\x86\x00\x7e\xa5\xf0\x98\x5e\x8b\x4d\x5b\x6b\xef\xcf\xad\xa1\xf7\xf6\xf0\x32\xb9\x12\x47\x2f\xc4\xfe\xbe\xb8\xcc\xcf\xcf\xd3\x6b\x9b\x68\x78\xf9\x1b\xb0\xe5\x19\x8a\xd6\xe3\xbd\x3f\x8b\xc7\x7b\x7f\x36\x60\x30\x16\x35\xbb\xb5\xbf\xe7\xd7\x6d\x8a\x0f\x45\x0b\xbb\xd2\x7e\xf8\xd5\x5e\x2c\xa7\x9d\x96\xaf\x70\x5c\x35\x0a\xb5\xa8\x2b\xc7\x50\x9f\xf9\xfd\xc0\xc4\x37\x4e\x7d\x60\x2c\x8f\x37\x68\x62\x2f\xb4\xba\xc1\x46\x7a\xfb\x8f\xc3\xcd\xd4\xa7\xec\x8e\xed\x1c\x38\x0d\xdd\x71\x93\x92\xb6\xec\x78\x56\x24\xd9\x87\xc3\x8f\x55\xb1\x94\x37\xb5\xfd\xf9\x03\xcf\xd4\xb0\x3f\xb3\x3c\x33\x87\xec\xa9\xb6\x91\x7f\x62\x6f\xe2\x5f\x7e\x29\x9e\xbd\x3b\x7a\x66\x2e\x8a\xe4\xaa\x65\x0e\x82\xf3\x08\xa3\xb9\xcb\x72\x5c\x24\xe7\x1a\xb5\x23\xcd\x23\x70\x0e\x32\xd9\xe0\x46\xbd\x88\x8a\x2a\x01\xba\x11\x85\x9c\x92\xa6\x4b\x7d\x9e\x82\x52\x1d\x23\x9f\x90\xf3\x97\xba\xeb\x8e\x14\x27\xea\x51\xd5\x32\x3e\xbf\x26\x63\xac\x04\xad\x86\xfc\x7e\x74\x61\x1b\x96\x64\xc6\x84\x85\xcf\x97\xe5\x35\x5e\x8d\xad\xd1\x68\x95\x8b\x91\x9a\xb0\x91\xb0\x37\x4c\xe8\x8d\xba\xaa\xa4\x22\xa9\xc0\x4c\x56\xb1\xa5\x72\x26\x63\x3d\x96\xbe\x09\xfc\xa0\xe4\xcb\xe7\xb4\x01\xde\xea\xf6\x0f\xc5\xe0\xc1\x97\xbf\xfe\xfa\xf6\xe7\x77\x2f\x7e\xfd\xf5\xc1\x00\xae\x2e\xfd\x49\x5e\x5c\x46\x45\xfc\x4e\x4e\x8c\xc5\x4f\xad\x24\xd8\xd5\x94\x60\x69\x48\x62\xa9\xaa\x1f\x74\xc3\x20\xc0\x42\x72\x9f\x7e\x1b\x1a\x83\xdf\x00\xd7\xee\xe4\xf8\x89\x3f\x8b\xfd\x0a\x09\x7f\x02\x11\xc2\x66\x53\xbf\xba\x8e\x78\x21\x0e\xbd\xac\x87\x87\x02\x1c\x22\xf7\x3c\xc8\x4e\x9e\xcb\x6f\xc5\x21\x48\xd3\x9a\xf3\xb5\xcb\x64\x0c\x27\x6f\xb8\x0a\xde\x0b\x8c\xb9\x34\x0c\xe6\xf4\x7b\x52\x22\x50\x12\x76\x00\xa2\x01\x19\xf6\x8e\x29\x4e\x3e\xde\xca\xa3\x3d\xdb\x84\x5b\x10\x9c\x14\x4c\x9d\x2c\xea\xa5\x69\xb5\x9a\x25\xe3\x0f\x19\x52\x02\x66\x33\x5f\xba\xec\x6d\xc2\xe4\xa9\x17\xe3\x3d\x79\xd8\xff\xca\x76\xa5\x5e\x11\x25\x18\xa4\x5c\x68\x0f\x2f\x86\x3a\x8b\x4e\x73\xb3\xf2\x36\xd8\x60\xdd\xa2\xe6\x23\xc8\x01\xac\x7e\xf8\xcd\x5a\xd0\xe9\x7e\x01\x87\x7e\x1c\x21\xa2\xc5\xdb\x74\xab\xcb\x01\x99\xea\xb0\x51\xaf\xa0\xf7\xc9\xc9\xe9\x0e\x6d\x86\xd3\x9d\xae\xa0\x1f\x8a\xee\xe9\xa7\x22\x4e\xfc\xd3\xa1\x12\xfc\xa4\x56\x95\xfe\x52\x8b\x88\x7f\x9a\xf9\xc5\x9f\x68\x12\x4b\x7f\x42\x1f\x4f\x77\xce\xb4\xbe\x1e\xf6\x26\xc9\x6b\x48\x13\x64\xc4\xa0\x12\x94\xd0\xdf\xf0\x59\x8d\xc3\x98\x3c\x9c\x72\xec\x12\x8d\xd4\xe7\xcc\xd2\xa7\x4f\xc2\x49\x44\xa9\xd1\xa2\x93\xe8\x6e\x2c\xe7\xd6\x1a\xe4\x40\x3c\x40\x8c\x9a\xb7\x47\xe2\x81\x68\xb7\x41\xa1\xd0\xb3\x44\xa7\x6e\xfc\x07\xfa\x11\x8c\x8d\xa1\xef\x9d\x6b\xe2\xd0\xad\xba\x5f\xe5\x60\x5f\xda\x7e\xa8\x0b\x9b\x01\x9d\xb4\x80\xc9\xc2\x8c\x65\xf9\x25\xb8\x23\x33\x98\x1c\xd4\x3a\x98\x07\xc5\xda\x90\xfd\x51\x35\x75\x8b\x62\x49\x1f\x8a\xd3\x9d\xd3\x9d\xfe\x38\xcf\xc6\x51\xd5\x6e\xb7\xf7\x21\xac\x2e\x36\x22\x06\x42\xfd\x7c\xe0\x76\xbd\xc3\xfa\xae\xd6\x73\x71\x75\xba\xc3\x20\xf2\xf4\x72\xf5\x2d\x06\xfd\xa1\x91\x86\x7a\xdf\xa2\x34\xd4\x60\x25\xb9\x4d\x4f\x49\x75\x11\xe8\x70\xe7\x3e\x7a\x7c\xba\x43\x5d\xf6\x9a\x7c\xb3\xac\xc8\x52\x74\x20\xbe\x86\xa6\x0e\xbe\xde\xf3\x1b\x50\x63\xb4\x4d\x70\x8c\x40\xd2\x8e\x04\x8e\x35\xbc\x7b\x90\xd5\x5d\x5b\x6d\xb4\x0b\xb5\x5f\xb4\x3e\x51\xdb\x69\x98\x9d\x39\x04\x45\x5c\x9b\xb6\x6d\x5f\x8d\xa2\x6b\x53\xbb\x74\x0a\xc1\xbb\x43\x92\xcd\x64\x91\x54\x2d\xb1\xbb\xab\xcf\xc0\x13\xb3\xa9\xf5\xe8\xac\xf2\xac\x0d\x29\x9d\xce\x59\x97\x89\xa0\x2e\xc7\x19\xea\x7a\xfa\xce\x77\x2b\xe8\x11\x15\xda\x7c\xec\x89\x46\xdc\x9c\x10\xc5\x9e\x69\xcb\x98\x12\x63\x3e\xfb\x83\x15\xa8\xff\x1d\x0a\xe7\xe0\x40\xdd\x2c\x7e\xd4\x12\x9f\x5d\xc5\x2e\x56\xd6\xb1\x96\xf1\x60\xa4\xa5\x7f\xe6\xaa\x9d\xd3\x1d\x2d\xe2\x9c\x47\xc5\xe9\x0e\xac\x4f\xd7\xee\xc0\x2e\xf2\xcd\x4e\x77\x93\x75\x2a\x2f\xa6\x6a\x9d\x42\xcb\x43\x23\xbf\xd0\x41\x0a\x2e\x12\x79\xf9\x7d\x7e\x35\x74\x08\x19\x38\xca\x40\x1c\x28\xba\x11\xa7\x3b\x9d\x4d\xbe\x87\xbe\x75\x68\x14\x1b\x74\x19\xb7\x59\x53\xaf\x19\x51\x61\xc6\xae\x27\x5b\x58\x2a\xea\x07\x44\xe2\x4d\x88\x26\x70\xd3\x5d\x41\x3a\xfc\x2a\xbf\x86\x80\x18\x03\xa1\x84\xf1\xd5\x10\xb4\xc0\xfa\xe7\xb5\xf3\xb3\x18\x8a\x30\x4b\xa7\xf4\x49\x92\xa6\x6a\xb9\x94\x40\x7f\xba\x63\xda\x52\x9c\xe9\x17\xa4\x4c\x7b\xce\x81\xf1\x36\x98\x65\x82\x35\xc9\xa2\xc8\xc7\xb2\x2c\xfb\x32\xbb\xe8\xff\xf4\xe6\x87\x17\xbf\xbe\xf8\xe9\x1f\xb0\x1d\x81\xf8\xe2\x25\x7a\x8e\xee\x88\xa7\x35\xe1\xb5\xbf\x30\x0a\xf4\x43\xe3\x94\xd3\x5b\xf5\x9f\xf8\x25\x2a\x00\x27\x60\x65\xae\x5e\xaf\x47\x95\x7d\xa2\xd0\xa4\x56\x53\x1f\x15\xdc\x4a\xd6\x20\xa7\xa9\x44\x0a\x94\x0b\xcf\xa8\xf0\x7e\x89\xca\x12\xf1\xc9\x54\xa6\xfe\x7b\x9f\x33\xbb\x92\x39\xfa\xd5\x80\x62\xa8\x5f\x29\xb1\x3f\x45\x4b\x8c\x62\x99\x89\xd3\x9d\xeb\xa8\xc8\x40\xfe\x81\xa7\x85\xd3\x1d\xa8\xe0\xd3\x26\x03\xdd\xf8\x3f\xdf\x10\xe0\x8d\x36\xf2\x83\x70\xa6\x8a\xc9\xa0\x86\x2b\x78\x3b\x1c\xe7\xf3\x45\x9e\xb1\x60\xa0\xc7\x52\x8a\x93\xe7\xc7\xc7\xe2\xd9\xdb\xa3\xb3\xf6\x97\x63\x45\x24\xa8\x99\x98\xe4\x85\x98\xe7\x85\x9a\x99\x2a\x4a\x52\x6d\x34\x80\xe6\xc4\x48\xbf\x43\x3b\xcd\x7d\xe3\x96\xe4\xf6\xee\x6f\xc9\x34\xcb\x0b\xe9\x97\xc5\x1d\x69\x4b\x13\x76\xb1\x5f\xfa\x3d\x74\x59\x71\x7b\x7a\xae\xb2\xfd\x17\x47\xe6\xb9\xb1\x14\xd5\x2c\xa7\x97\x74\xca\x5f\xe2\x45\x0d\x51\xf5\x64\x56\x4a\x52\xfc\x24\x65\x6d\x0a\xc8\x3e\x1a\xf4\xa6\x6c\x38\x99\x7c\x33\x69\x9f\x98\x03\xa6\x6b\x6f\x36\x5d\x1e\x8b\x00\xb6\xa9\xdb\xe9\xa3\x09\xdd\x17\x31\xf4\x7c\x89\xac\xc5\x2a\x9c\xd4\xf5\x17\xd9\x4a\x6c\xc3\x18\x26\x25\x5a\x56\x5c\xe6\xc5\x07\xc4\x90\x21\xc9\x27\x29\xc5\xc8\x61\x36\x23\xde\xef\xd8\xbd\xb2\xbb\x8f\x54\x6d\x3b\x9c\xf3\x3c\x4f\xbb\xf6\x71\x03\x85\x63\x23\x48\x01\x7e\x7b\xfd\x02\x06\xc6\xbd\x5c\x96\xaf\x7f\xa0\x43\x98\xf3\xc2\x3a\x8c\x4d\x26\x2f\xc5\x8b\xa2\xc8\x8b\x76\xeb\xb5\x7e\x2d\xfb\xf9\x68\x08\x0f\xe3\xf0\x6c\x6d\x43\x0f\x43\x04\x53\xde\x07\x0c\x72\x2f\x5a\xe2\x2f\xa2\x45\x5e\x3b\xba\x6d\xbc\x01\x54\xb3\x28\xab\xcd\x10\x19\x92\x24\x69\x8a\x0d\x64\xb9\x90\x93\x89\x1c\x57\xfd\x56\xcd\xac\x4b\x77\x72\x99\xa6\x14\x20\x22\x48\x86\x3c\xae\x12\xf2\xe2\xbe\x5d\x6f\x04\x4d\x89\x04\x3e\xce\xe2\xba\x03\x7a\x0a\xea\xff\x92\x52\x44\x65\xb9\x9c\xdb\x05\x67\x65\x34\x6c\xf7\x75\xbe\x34\xf0\x24\x3a\xa2\xa5\xaa\x47\x6d\x4e\x55\x4b\x57\xc8\xfe\x54\xb4\x1e\x16\x72\xde\xe2\x24\xa0\x3a\x56\xa3\x5c\xf5\x67\xfb\xc4\x7e\xd4\x1d\xf3\x77\x5c\x80\x7c\xeb\x3b\x96\x4e\xa0\xb5\x7b\x1d\xa0\x72\xcc\x05\x35\x34\x57\x50\x9d\xc9\xc2\xab\xa4\x0e\x86\xaa\x44\x99\x34\xf7\x14\x49\x49\x16\x27\xe3\xa8\xca\x0b\xa3\xd2\x65\x14\x80\x9a\x1d\x34\x1f\x21\x72\x31\x46\x4f\x88\x17\x7a\x2e\xab\x4b\x29\x33\xb1\x07\x59\xf7\xf7\xf6\x78\x0f\xa1\xc5\x8d\x7b\x87\xd4\x88\xf6\x16\xba\x91\x9f\x4b\xe9\x3e\x6a\x99\x08\xb2\x60\x2b\xa1\x08\xd2\x8c\x84\x3d\x2a\xe8\xe6\xa1\xca\x10\x3b\xe2\x1b\xad\xeb\xef\xbc\xae\x91\x30\xce\x3a\xa7\xd9\x8d\x18\xd2\xb5\xfa\x49\xcd\x8d\xc7\xbe\x3e\xb7\xf1\x9c\x20\xd1\x26\x03\xb6\xdc\x7a\xbd\x4c\xfc\x93\x1b\xd5\x95\x93\x34\x59\x90\x2b\x83\x92\x05\xda\x7e\xae\xce\x93\x3f\xcc\x05\x6e\xf3\xf0\xff\x2a\x29\xab\xe7\x79\x56\xc9\x2b\x03\xd6\x31\x60\xdf\x5a\x4f\xc2\x8f\xd5\xe4\x80\xb5\xc5\x3b\xb4\xf3\x0a\x9d\x26\x25\x5e\x2c\xb4\x5e\x57\x83\xd2\x81\x53\xfb\x50\xec\x69\x7f\x5c\x74\x96\x65\x1f\x8c\x67\x69\x4b\xdb\x2b\xb5\x50\x46\xd7\x3b\x64\xd3\x67\x4e\xe2\xf5\x6f\xb1\x85\xc3\x8f\x40\x5a\x56\x33\x6d\x5a\xfe\xe8\xf4\xe4\x7d\xbe\x18\x8a\x6f\xdc\xde\x7d\x4f\x40\x30\xdf\xdc\xaa\x23\xb1\x92\x11\x74\xab\xf0\x63\xc8\x03\x19\x6f\x58\x4b\x24\x46\xe5\xf2\x7c\x26\xa3\x58\x16\x60\x7e\xa6\x0f\x36\x5d\xb3\x49\x0d\x8e\x68\x8f\x6e\xd3\x37\x64\xe2\x01\x68\x24\x1b\x2b\x8a\x55\xee\x06\xe5\xf0\x2c\x49\xe3\x02\x50\xf1\x49\xa9\x4b\x1f\x5c\xf5\xf0\x7d\xa9\x8f\x49\xbc\x62\x2a\x64\xfa\x62\xb2\x3e\x67\x79\xea\xc5\x1c\x75\xe0\x32\x75\x34\xc9\x7e\x4d\x5a\xc1\x0b\x22\x9e\xd1\x22\xab\x5f\x56\x7b\x4c\x69\x6e\xd6\x55\xda\x62\xa7\xb8\xab\x42\x26\x42\xf5\x15\xd6\x6f\x9d\x88\x7d\x46\x2c\xb3\xb9\x1b\x6a\x59\xaf\xb3\xf6\x6b\x36\x14\x64\xd5\xcb\xfa\xcb\xad\x54\xa3\x44\x09\x4c\x37\xda\xa8\x28\xa5\xb9\x27\x65\xa9\x9a\x24\x47\x6f\x4a\x3d\x25\x75\xa9\xee\x94\xaf\x0b\x25\x26\x77\x88\xdc\xb7\xbf\x2c\xe5\x6b\x39\xcf\x2d\x15\xd7\xec\xbc\x3f\x3a\xeb\x38\xc4\x7f\x48\x84\x7b\x42\x8a\x81\x13\xf8\x48\x1e\xca\x9b\xea\xa1\x18\x7f\xed\xbf\xc5\x7d\x5a\x74\xad\xc2\x14\x24\x00\xea\xee\xa6\xfa\x07\x43\xd7\x77\x50\x6e\x21\x7d\x32\x45\x04\x92\xa3\xf8\xc2\xa3\x1d\x96\x43\xc7\x8b\x64\xc4\xc1\x52\xcd\x47\x5f\x6f\x44\xa3\xd2\x0a\x21\x4b\x47\x86\x61\xdc\xe6\xca\xaf\xa6\x35\x70\xcd\xf7\xae\x74\x59\x45\x76\xb3\xa1\x4b\x29\xde\xc8\xa8\x0f\x8e\x18\x96\xc7\xb2\x26\x84\xfd\xae\xee\xbf\xfd\xa4\xd4\x80\xb4\x9f\xe5\x2a\xac\x99\x24\x78\x26\x6b\xc1\x17\x8e\x21\xb0\x3a\xa6\xbc\x2f\x12\xe0\x00\xfa\x6e\x61\x6c\x81\x5d\x00\x97\x5c\xe5\x68\xb8\x0d\xd3\x47\xd6\x2f\x3a\x08\xc1\xe6\xbc\x04\xbd\x49\xaf\xca\x7b\x46\xd5\xd1\xc3\xc1\x51\x05\x3a\x1c\x8d\x2a\xb9\xea\x7e\x0c\xd6\xb8\x63\x0b\x61\xa7\x8f\x43\x11\xcb\x32\x99\x66\x34\xc6\x0f\xf2\xfa\x3c\x8f\x0a\x84\x27\x9a\xe7\x60\x83\x9d\x2d\x96\x95\xb1\xfb\xd7\xb3\x41\x0d\xc0\x8b\xb2\x3a\x3b\xc1\x74\x5b\xfd\x91\x54\x72\x5e\xf6\xd9\x4c\xc2\xa5\xd2\xf1\x6b\xa8\x72\x78\x94\x96\x59\xac\xa4\x79\x33\x03\xa5\xf6\xff\x1e\xc1\x3e\x1c\x69\x96\xe0\x5c\xc2\x91\x33\x79\xb7\xed\x15\xc3\xae\x0d\xd7\x77\x60\x30\x5a\x2a\xd5\xfb\xc0\x7d\xff\xad\x96\x8b\xd6\xb4\x19\xd8\x6c\x6c\x9b\x67\x79\x31\x87\x18\xce\x23\xb5\x69\x8f\x8d\xe4\xe2\xdc\x2e\xad\xc4\xe2\xee\xc3\xbb\x5e\x30\x54\x93\x2d\xb8\x44\xa8\xbf\xfe\xb8\x38\xdc\xdb\xc5\x01\x6f\x0e\xff\x82\xeb\xc3\x3c\xc9\x48\x53\xfc\xf8\x2b\xad\x54\x4e\xe5\x95\xd6\x45\xed\x6d\x2f\x88\xeb\x3b\xb2\x58\x60\x80\x70\xa0\xcb\xa3\x4a\xce\x47\x6a\x8b\x97\x62\x14\xa5\xc9\x34\x53\x1f\xca\xc3\xd3\x1d\xd5\x58\x0f\xc2\x30\x30\x5b\x33\x9b\xe3\xa5\xea\x8b\x4a\xb5\x1d\x86\x7b\x0d\x5e\x1e\x98\xa8\xad\x4d\x57\x9e\x89\x32\x99\x2f\x52\xa9\xfd\xe8\x2d\xd2\x0c\xf4\x63\xc4\xf0\xea\xa2\x4c\x8c\x9e\x5d\x44\x55\x84\x9b\xc5\xda\x79\xe8\x0e\x63\xe2\x76\xc2\xbb\x2d\xf7\xf9\x6c\x3c\xee\xe1\xd5\x7c\x9d\x3c\x47\x44\xc7\xe5\xab\xed\x04\xb3\xfb\x78\x20\x44\x1e\x6d\x89\x01\x1f\x90\x2d\xc5\xf0\x07\xc3\x7e\x80\x66\x56\xca\x4a\xb7\x94\x8a\xec\xfa\xfe\xf1\x0c\x72\xff\xcf\x20\xab\xe4\x4a\xf1\xff\xfe\xdf\xff\x0f\x3b\xed\xd8\xce\x5d\x25\x6d\x6a\xde\xb7\x42\xa4\xfb\x5d\xc9\x9e\x77\x13\x38\xef\xe3\x3c\xb7\x14\x6e\x4f\x76\xfb\xed\x8f\x33\xfe\x76\x67\xfc\xfb\xeb\x45\x3e\x2d\xa2\xc5\x8c\xc5\x85\xb5\xdf\x7e\x27\xc2\x80\x62\xad\x43\xd1\xda\x17\xfb\x00\x68\x68\x54\x89\x46\x46\xd8\xeb\xd6\x0e\xe1\x47\xce\x27\xad\xc0\x7b\xb4\x91\xdc\x30\xb2\x33\x30\xe2\xd2\x7a\x32\xd1\x11\xfa\xc9\xba\x93\x1e\xea\x80\xff\x95\xd2\x74\x7e\xbe\x4c\xab\x24\x4d\x32\x19\x92\x0e\xbe\x0a\x76\xec\xab\xbb\x76\xec\x7e\x94\x8c\xa3\x24\x2b\x65\xe5\xdb\xf0\xc2\x47\x5f\xab\xf8\x0a\x20\xbd\x1f\x6f\xd6\x71\x3d\x6d\xe1\x01\x18\x8d\xac\x71\x82\x59\x5b\xa1\x9d\xfb\xd5\x55\x96\xcc\x8f\xc5\xd3\x7e\x2a\xe6\xf1\x1e\xe5\x8b\x2d\x05\x29\x55\xea\x77\xa0\x0d\xa5\xfb\x1a\x8d\xdf\x57\x1b\xda\x69\xf1\x35\x87\x6c\xcf\xfb\xca\x43\x53\xd7\x7a\xe5\x21\x65\xf5\x3b\x05\xb4\x62\xfa\x02\xbf\x2c\x62\x15\xa5\xb9\x59\x57\x34\xe5\x16\x27\xf2\x50\x1c\xd2\x34\x40\xdf\xfc\x3c\x76\x88\xda\xd8\xd1\xc9\xee\x25\x5b\x05\xa8\xa6\x16\xa7\x0d\xf3\xb5\x9e\xaf\xa9\x9d\xa6\x0c\x9f\x57\x8d\x5a\x5b\x5f\xfc\x0c\xb3\x88\x7f\x1a\xff\x33\xf6\xc3\xeb\x22\xe9\x58\xad\x6b\x98\xf3\xb3\x96\xd9\x91\xd8\x7f\x85\xbd\xf3\x27\x2b\xa8\xaf\x93\xdd\xeb\x8a\x74\xbf\x06\x54\x51\xb2\x36\x34\x2b\x39\x74\xe8\xe1\x8b\x43\x78\x64\x17\x4f\x9d\xaf\x43\xb3\x21\x79\x74\x7b\xaa\x40\x17\x01\xbb\x03\x74\xab\x03\x29\x55\xc9\xd8\x6c\x8b\xec\xee\x1a\xf5\xa8\xfd\x6a\x14\xc9\xb6\x37\x6b\xaf\x1e\x6c\x43\x06\x2c\xf6\xcc\xbb\x2c\xce\x04\x04\xe3\x8d\xaf\x0f\x00\x3f\x55\xfd\xb5\xdf\xaa\xb3\x08\x6b\xeb\xe5\x6f\x03\xa6\x64\x3b\xdd\x29\x17\x51\x66\xac\xb0\x98\x57\xdd\xe9\x0e\xb8\xd5\xa1\x21\x1f\x5c\x41\xc2\x14\xd1\x31\x09\x0e\xf0\x09\x9c\xf0\x86\x0d\x1f\xba\x9b\x87\xcd\xb7\xcd\xc3\x66\xdc\xba\x0d\x6e\x3f\xe7\xbc\xd1\xfb\x9a\xf5\xd3\x1d\x98\x6e\x36\x4d\x21\x93\xc4\x1a\x23\x20\xd3\x9e\xd3\x1d\x45\xaa\xc7\x6c\xcf\x6c\x30\xd9\x4d\x7b\xaa\xc3\x92\x42\xc8\xe4\xff\x82\x3b\x6e\xd3\x3b\x01\x72\x6c\xf6\x1d\x19\xb4\xd9\x05\x7c\x61\x79\x36\x23\x10\xad\x79\x26\xd0\x64\xec\x4e\xc0\x2d\xaf\xc3\xea\x94\xfe\xe3\x32\x7c\xff\x97\xe1\x67\x69\x12\x95\xe6\x7d\x60\x44\x6b\x86\xb6\x54\xff\xfe\x8f\x2c\xf7\xfc\xb2\xe2\xd9\xeb\x19\xf9\xf0\x12\x70\x55\xce\xb5\x3e\x10\x62\x97\x44\x9c\x05\xd6\xc6\x09\x56\x67\x14\xd6\x8b\x70\x98\xaa\x5c\x14\x32\x8b\x21\x48\xba\x88\xd2\x4a\x16\x84\x36\xc2\xea\xd1\x26\x44\xe7\x04\xe1\x49\xc0\xe4\xf4\x92\x31\xd2\x1d\x1a\x89\x76\x5e\xd8\xc5\xec\x08\xc5\xd0\xba\x2c\x72\x48\x94\x8a\x91\xd9\x95\x23\xa1\x5f\x2e\xc5\x03\x0b\x75\xb2\xa2\xf7\xfc\x7d\xc1\x66\xdb\xe6\x59\xc3\x9d\x3d\x7a\xd2\x48\xb2\x58\x66\x95\x67\xea\x68\x23\xb6\xc1\xd3\x4d\x32\x71\x2c\xa3\x20\x52\x50\x84\x1a\xd4\xbc\xc0\x9f\xc9\x38\xcf\x78\x47\xe9\xbe\xb3\xc1\xfb\xc7\x3c\xc2\x98\xf3\xa0\x19\x62\xe0\x26\xc2\xbf\xd1\xac\xd9\x02\xc8\x43\x40\xe6\x33\x83\xa3\x1b\x48\xfd\x12\x55\x05\xe6\x99\xea\x69\x47\xa5\x48\xf3\x6c\x2a\xa2\x32\x20\xed\x27\x18\x08\x0d\xa7\xb4\x13\xe8\xa7\x77\x12\x6d\x68\x96\x67\x59\xfe\x8a\x99\x60\x17\xb1\xfb\x98\x0b\xdb\xe6\x67\x98\x8d\xa6\x93\xb9\x3e\x1f\xf7\xa5\xd8\x52\x67\x95\xab\xd6\x7a\x0f\xaa\xed\x9d\xee\x8e\x57\xe7\x47\xb6\x93\x62\x6b\x2e\xc7\xd5\x5f\x0d\x57\x8a\x57\x79\x5e\xca\xdb\x6b\xb1\xa0\xb8\xa3\x28\x23\xf3\xe5\x8d\x2b\x76\xf2\xf3\x9a\x36\xd2\x79\xad\x52\x9a\x41\xda\x0f\x6f\x5e\xf3\xe4\x5e\x9c\xcf\x9d\xd8\x55\xd9\x24\x99\x1a\x03\x38\xfc\xe9\x80\xf0\xa8\xfe\xe6\xcb\xaa\x3c\x9e\x45\x0b\x69\x30\x78\x34\x48\x8e\xe9\x23\x57\x9e\x19\x0c\x84\xbf\x17\xf9\x72\xe1\x1b\xd9\x85\x93\x3d\x1d\xd9\xcf\x3f\xbd\x7e\xf3\xf3\x4f\xef\x5f\xfc\x20\x00\xe9\x6c\x9e\x2f\x15\x43\xf3\x32\xbd\xf8\x5f\x47\x94\x43\x5e\x25\x81\xe4\x9f\xde\xbf\x78\x77\xf4\xd3\xdf\x21\x43\x56\x49\x75\x12\x85\xb2\x50\x15\x88\x96\x11\x68\x42\x57\x71\x05\x70\x06\xad\x27\x2e\x06\x9a\x1d\x0e\x53\x7e\x1b\xf0\x32\xed\x19\x2d\x22\x06\x16\x81\x53\x91\x67\xd2\xd9\x9a\x0f\x10\xf6\x1a\xdf\xba\xf0\x22\xfc\x6b\x7e\x21\x0b\x58\x81\x5f\x75\xfc\x04\x7a\x2f\x8b\xe5\x38\x8d\x0a\x3c\xd6\x9e\xbd\x3d\xea\x8b\xd7\x79\x09\x4f\xe8\xf3\x3c\x03\x08\x82\x07\x88\xaa\xa1\x11\xda\xd1\x14\x5e\x12\x94\xae\xa2\x42\x8a\x03\x49\x73\xab\x7e\x82\xa7\xb7\xb5\xf7\x02\x58\xd8\x31\x1c\xa1\x25\xc6\x79\xd0\x67\x07\xbd\xdb\xc3\xb8\x92\x0c\xc3\x75\xf0\xe1\xc1\x38\x4a\x1d\xb8\xd2\x42\xa0\xa1\x78\x88\x7f\x3f\x78\xf0\x53\x5e\xc9\x07\x0f\x86\x62\x64\x67\x10\xf1\xe3\xc4\x22\x8d\xaa\x49\x5e\xcc\x7b\xd1\x34\xcb\xcb\x2a\x19\x03\x70\xb3\xe3\x88\x00\x60\x88\xad\x42\xa2\x49\x37\x06\x0d\xb2\xd0\x1b\x22\xc9\xc4\xf3\xe3\x63\x30\xf0\x6e\xa5\xa9\xe2\x9a\xe7\xd1\x79\x7a\x2d\x2e\xad\xd9\x30\x94\x39\x19\x3d\x3f\x3e\x66\xed\x9f\xb5\x35\x44\x12\x6c\x16\x35\x9f\xcb\x2c\xa9\xae\xfb\x79\x31\xc5\x4f\x3d\xdb\x4c\x6f\xaa\xe8\x77\x30\x2e\x4b\xf6\xb1\x43\x58\x71\x08\x71\x28\x8e\x2a\xa1\xf7\xb7\x88\xd2\x14\x71\x60\x11\xbf\x0d\xcc\xb5\xf9\xe0\x69\xc6\x11\xe3\x90\x80\xf0\xe2\x38\x21\x31\xc3\x94\xb2\x11\x70\x31\x88\xcd\xb5\xc8\x92\x31\x41\xab\x29\x81\x8f\xcf\x43\x7b\x06\x9e\xa7\x3a\x18\x12\x60\xc0\xf9\x2f\x35\x9d\xf0\x02\x7d\x7f\x6d\x98\x2b\xea\x58\xd9\x2a\x59\x42\x37\x61\x44\x41\xce\x82\x9c\xe7\x72\x16\x5d\x24\xc6\x7f\x84\xa2\x30\xe9\x02\x49\x45\xc2\x59\xd9\x35\x48\xf6\x55\x11\x8d\x3f\x94\xe2\x74\x07\xf6\xe0\xe9\x0e\x10\xe6\xe9\x8e\xda\x70\xa7\x3b\x9a\x9a\x48\xb2\x76\xab\x2b\x29\x0a\xec\x72\xa1\x26\x43\x6d\xb8\x2a\x87\x58\x28\x62\x2e\x23\x13\xeb\x14\xfd\x10\xf0\x8c\x54\x3c\x19\x6b\xec\x8b\x97\x39\xc6\x4a\x91\x57\x11\x3e\x42\x63\x2c\xb5\x28\x8e\xf9\xbb\x33\xeb\x3c\x3c\x96\x27\x95\x80\x7e\x96\x28\x98\x27\x55\x39\xe4\x20\x7f\xff\x2c\xaf\x90\x04\x34\x03\x65\x0c\xe2\xc6\xe1\xc4\x3e\x25\x81\x1f\xeb\x03\x1a\x60\x56\x56\x22\xd6\x91\xea\x0e\xc5\xc3\xbd\xbd\x5a\x2a\xae\x8e\xf1\x66\x86\x24\x17\x93\x66\x94\x2f\xa2\x71\x52\x5d\x8b\x3f\x7d\xd4\x75\xdd\xcc\x1d\x70\x97\x51\x97\x8a\x51\x4e\x7a\x34\x78\x00\x6e\xa6\xbc\x35\x5b\xed\x31\x7f\xbe\x50\x45\x35\x6f\x1d\x8a\x8f\xb6\x9a\x7d\x04\xea\x30\xe9\xea\x54\x6e\x4a\x47\xc6\xea\xa6\xef\xb9\xe9\x7e\x71\x93\x7c\xe3\x4f\xcb\xcb\x08\xe2\x34\xb7\x3f\x8a\x24\x1b\x0a\x74\xcd\x11\x37\x00\xf9\xda\xa6\x0a\xff\xca\x96\x24\xc9\x0e\x3f\x62\xa6\x1b\x7d\xd4\x1d\xda\xc9\xfa\x8e\x4a\x08\xf1\x91\x62\x10\xd8\x5a\xd4\x7f\x7f\x8d\x93\x0b\xa4\x95\xc3\x8f\x1f\xd9\x77\x80\x3b\xe7\x0b\xd4\xf5\x13\xfd\xf9\x3c\x81\xfa\xcf\x58\xb6\x1b\xd6\xba\xfa\xef\xa8\x35\x17\x91\x98\xa8\xe1\xd9\xfe\x7f\xc1\x3b\x33\x88\x93\x0b\x5b\xa6\x73\xa3\x87\xcb\x8e\x5c\x4c\x0e\xa0\x4b\xbe\x37\x88\xf6\x8f\x50\x7c\xd7\x4c\xdc\x39\xe0\xf0\x9e\x95\x64\x43\xac\xba\x27\x46\xf6\x64\x1d\x79\xdf\x64\xec\x7c\xa2\xd3\xd3\xfb\xa4\x33\x61\x1f\xbc\x23\x44\x9d\x06\x55\x3e\x9d\xa6\x32\x16\x17\x49\x84\x7c\x28\xc9\xe8\x4e\x2d\x7e\x51\xbb\x91\x60\x42\x1c\x8e\x46\x87\x15\xc6\x8e\x9b\x49\x71\xba\xf3\x82\x18\x4b\x59\x45\x53\xd9\x17\x3f\x2c\xd1\x46\x0f\xee\x45\xea\x53\xd7\x7b\xbc\x06\x01\xbb\x9c\x25\x13\x14\x5b\xe8\x3c\x2d\x05\x61\x5d\xd5\x0e\xbb\x2e\x20\x96\xb0\xb9\xb0\x1e\x32\x7a\x0f\x33\x6e\xc8\x4a\x47\x78\xab\xcf\xcc\x53\x96\x9d\x3b\xec\x19\x44\xf6\xc0\xb3\x5c\x75\x2f\x95\x95\xec\x8b\x57\x52\xfd\xae\xa2\x0f\x54\x9f\x3a\x54\x00\x68\x0b\x42\x5e\x11\x37\x6b\x5f\x4a\x75\xf6\x11\xd2\x35\x1e\x77\xcb\x12\x3c\x5f\xa5\x77\xce\xfd\xb3\x84\x03\x2e\xce\xc7\xe5\x60\x96\xe7\x1f\xca\x9e\x05\x30\x9d\x55\xf3\xf4\xcb\x65\x29\x61\x9c\x1d\xa1\x92\x3b\x41\x86\x67\xde\x83\x9e\x2d\x16\x64\x52\xfc\xc0\x60\x94\x9f\xe0\x1e\xeb\x8a\x52\x56\x47\xf0\xe7\x99\x38\x14\xba\x3b\x6d\x8c\x91\xf4\x84\x8a\x68\xa4\x44\x43\xca\x7f\x75\x08\x7b\x83\x0d\xfc\x78\x6f\xcf\xdb\x3d\xe1\xfd\x2b\x10\xc2\xa9\xdf\xef\x3b\x1f\xcd\xd6\x11\xc1\xed\x43\xdf\xcf\x97\x55\xa5\x16\x36\x7b\x9e\x26\xe3\x0f\x87\x1f\x11\x57\xda\x0c\xb0\x0d\x41\xf3\xbd\x6e\x40\x56\xb5\xd8\x48\x91\xbc\x15\xac\xce\x66\x77\xb6\x33\xcd\xcd\x4d\x6d\xdf\xfe\xa2\xed\xb7\xa8\x37\x49\x29\xc6\xaa\x0d\xf2\xec\x0b\x92\xb4\x4b\x6b\x48\xaf\x1a\xd3\xfe\x81\xf6\xe3\xba\x26\xfd\x80\x22\xe4\xc7\x7b\x7b\xf3\x52\xb4\x2b\xee\x19\x36\xa2\xc9\x1e\x75\x34\xe6\x74\x52\x89\x49\x92\x81\xbd\x47\x79\x99\x54\xe3\x19\x01\xe7\xda\xad\xa1\xc8\xba\xef\x76\x1d\xf6\x73\x52\x8a\x11\x90\xc0\xc8\xc6\x4b\xc0\xf8\x6d\xb3\x68\xb1\x90\x59\x29\xe4\xd5\x58\x2e\x2a\x52\x80\xa9\x85\x9c\xe7\x17\x74\x31\xc2\x29\xb1\x0c\x86\xda\x23\xe6\xe2\xda\x8a\x31\xba\xf1\x94\xe4\xd6\x1a\x9e\xde\x5a\x8c\x61\x39\x29\xd8\xdd\x7b\x5d\xdb\xd6\xd4\x15\xb5\x12\xa4\xe6\x37\x75\xda\xcc\xfa\x01\x8b\xcc\xa5\x1c\xb4\x90\x5f\x15\x3f\x32\x50\x1c\xf0\xcb\x3e\xfd\x98\xca\x2d\xde\x7a\x57\xf8\x95\x7d\xfa\x24\xa8\x0e\x5d\x27\x5a\xf5\xc1\x45\x0b\xe2\x05\x42\x46\xc0\x02\x3d\xca\x88\x40\xf0\x76\x06\xc2\xbf\x77\x35\x03\x89\x95\x64\x1d\x75\x32\x14\x12\x16\x57\x2d\x49\x54\x94\xba\xa3\xaa\x19\xfc\x24\x0e\x9d\xf6\x76\x77\xc5\x17\xec\x77\x3f\x29\x5f\xeb\xab\xc6\x53\x7a\x10\x84\xca\xc5\x90\x7e\x61\x2d\xac\xf7\xa0\x09\x8e\x52\xc5\x23\x96\x7a\x54\x30\x2f\x94\x15\x13\xc4\xa1\xf6\x24\xc5\x1c\xd6\xb5\x36\xc9\x3a\x6e\x4c\x0a\x2c\xe6\x04\x97\x70\xda\x10\x87\x74\xa9\x7c\x62\x33\x04\x1b\xd4\x77\x4b\x1b\xfa\xc1\x03\x1f\x09\x54\x8c\x77\xcd\x5a\xb0\x08\xaf\xa0\xed\x3d\x5d\xcd\xde\x64\x2f\xae\x92\x4a\xad\x2d\x7e\xd6\x1f\xd5\xd4\xad\x1c\x89\xb9\x43\x6f\xd3\x49\x77\xf4\xba\x8f\x0e\x51\xd6\xc3\x31\x95\x50\x7c\xe8\xd6\x76\xca\x1c\x46\x74\xc9\x4c\x5e\x55\xcf\xa3\x34\x3d\x8f\xc6\x1f\xec\xb2\x09\xcb\xf3\x7f\x35\xf4\x4b\x6d\x5a\x92\xec\x4f\x65\xf5\x83\x2c\x92\x0b\x19\xc3\xa1\xf1\xb2\xc8\xe7\xfa\x79\x99\x63\xf1\x06\xf3\xb4\x7f\x2d\xe4\xa4\x0b\xa1\x8a\x8f\xf1\x20\x63\x1b\x4f\xf5\xea\x48\x71\x04\x95\xa9\x9f\x64\x0e\x25\x51\x22\x3c\x87\x52\xe1\x7e\x49\xd3\x75\xc8\x26\xb9\xee\x83\xed\xe0\xd2\xe1\x04\xe1\xf4\x9a\xd9\x5d\xeb\x17\x4d\x21\xa9\x8e\xb3\x68\x51\xce\xf2\xea\x7b\x60\xb4\x18\xc8\xa0\xad\xba\xf3\x96\xf9\x94\x0f\x06\x10\x51\xbe\x82\xe1\x38\x3b\xc3\xa4\x22\x6d\x51\x31\x78\x26\xc2\xe0\x28\x7e\x2d\xfa\xd4\xfe\x48\x1d\x17\x37\x3a\xac\x88\x09\x7d\x42\xf9\x54\x8d\xb6\x0e\xbb\xe1\x28\x99\x9e\x3a\xb1\x12\xd5\x9e\xd1\xc9\xec\xee\x0a\xff\xb3\x99\x43\x53\x58\xb8\x63\xd1\x85\x9d\x3c\x37\xec\x17\xa7\xef\x50\x0f\x0e\x79\x0f\x3e\x7d\x12\xfe\xe7\xf5\x3d\x40\x75\x50\x73\x07\xcc\xdf\xf6\x2f\x4d\x0d\xbc\x26\x9d\x0a\xff\x72\x4b\x01\x08\x35\x22\x0e\x39\xd9\x9b\xe8\x23\x94\x0f\xf3\x58\x17\xbf\x1f\x92\x18\xf8\x2a\xdf\x06\xb5\x44\xeb\xe3\xc5\x22\x5c\x60\x67\x40\x4e\xc1\xe8\x13\x0e\x97\xa3\x47\xd6\xe6\x56\x4d\x40\x8d\x60\xb3\x0d\x54\x6a\x77\xdc\x2a\xe6\xbd\x92\x44\x75\x25\x7a\xf5\x78\x94\x98\x52\x1f\x15\x9c\x9d\x86\x08\xf4\xf6\xd4\xb9\x92\x34\xd9\xb9\x71\xb3\x82\xeb\xde\x82\x24\x57\xd1\x63\xb0\x55\x8f\xb7\xd4\xd7\x1d\xc3\xe3\xb1\x0a\x57\xaf\xf8\x2f\x49\x9a\xfe\x8c\x47\x52\x70\xcd\x59\xba\x47\x6d\xe3\x28\x1b\xcb\xf4\x27\xc6\xfb\xdb\xc1\xa6\xa6\xb2\x7a\x4f\xda\x66\x8f\xa7\xeb\xcf\x6d\x87\x8a\x48\x02\x15\x9c\x46\xfa\xf4\x91\x49\x11\x4a\x14\xec\xa2\x1c\xd3\x15\x8e\x8c\xa1\x52\xc4\x21\x26\x89\x43\x2b\xc5\xd8\x3a\x2c\x51\xea\xc6\x98\xb5\x06\x05\xe5\xb0\x29\x87\xa2\x85\xb0\x05\x1c\x91\x83\x1a\xa1\x5c\x7d\xf5\xd3\xac\x97\x6e\xd9\x24\xaa\xdf\x20\x9e\xbd\x7f\xf3\xc3\x9b\x21\x39\x27\x89\x89\x3e\x32\x95\x30\x0e\x71\x72\xe6\xd1\x3f\xf3\xc2\x52\xb9\xdf\x73\xda\xc8\xd0\x25\x13\x27\x44\x3c\xf5\x93\x87\xd8\x81\x86\x63\xc8\x19\xc1\x10\xa7\xd1\xe9\x38\x15\xef\xba\xbd\x18\xd2\xbf\xfc\xfc\xf7\x16\x9a\x93\x21\x5f\x69\x87\x3c\xb5\x5e\xda\xa1\x50\x0e\x9f\x62\x14\xd7\xd6\x56\x8e\x4d\xbb\x4d\xc5\xd7\x20\x7f\x90\xfa\x6c\x3f\xb6\xfb\x5c\xad\xab\x1b\x0a\x8b\x65\x80\xfb\x53\x94\x5e\x46\xd7\xa5\x38\x97\x76\xcf\xe6\xe6\x91\xc0\x40\x19\xaf\x22\x7a\xce\x97\xf8\x56\x66\x6c\xc0\xd9\xf0\x48\xd9\xb2\x98\xe4\xc5\x1c\x44\x3e\x33\xec\xce\x0a\xb1\xce\x29\x75\x95\x54\xed\x7a\x8c\x32\x2c\xe3\xb1\x47\x57\xe4\x54\x24\xee\xb3\x56\xec\x29\x88\x31\x1d\x2f\x58\x23\x04\xc4\x56\x3c\x3f\x20\xf8\x18\x31\xc9\x74\xc3\xc5\xb3\x73\xe9\x83\x8f\x97\xd3\x47\x78\x1e\x6a\x77\xa8\x03\xe2\x08\x4f\xf8\x15\xc5\x6c\x35\x3b\x5a\x4e\xfc\xf6\x16\x83\x34\x83\x6b\x48\x97\xa3\xa7\xce\x4f\x7e\x91\x19\x1a\x3a\x73\x1a\x53\x82\xe4\x81\xdb\x58\x96\xc7\xf2\x9d\x9c\x88\xa7\xe2\xc4\xb4\x73\x26\x86\xe2\x44\xbf\xd2\xf5\x27\x49\x16\xff\xf0\xe6\xf5\x4f\x79\x8c\x71\xa8\x3a\x5d\xdb\xa3\x33\x06\x5d\x3c\x8f\xae\xcf\xa5\xca\x45\x12\xeb\xc1\xc9\x5e\x2d\xf9\x19\x1b\x0a\xe6\xd9\x3f\x73\x7a\x58\x59\x46\x0b\x9d\x74\x98\xec\x13\x6f\xda\xde\x1b\x46\x6b\xa7\xc8\x30\x93\xd2\x72\x13\xf3\xc5\xf2\xb1\x2c\xa7\x99\xb7\x60\x4c\xe5\x87\x64\x41\x11\xee\xaa\x5c\x9f\x72\xd8\xe2\x60\xa0\x28\xf2\x12\x15\x91\xce\x3b\x55\xb1\xcc\x32\xa3\xb3\x4b\x2a\xd0\xef\x97\x9a\xef\xfd\x3a\x5f\x96\xd5\xaf\x6a\x5b\x96\xb2\xe2\x1b\xfc\x0b\x53\x87\xba\x8c\x62\x47\x3e\x7d\xa2\x57\x4f\x6d\x12\x1c\xd7\x08\x39\x9a\xc8\xe3\x15\xc4\xec\x74\x19\x2c\xb5\x02\xbe\xf4\x42\x5f\x7a\x0e\x88\x00\x72\xbc\xb2\xc9\xb8\x6d\x16\x90\xed\x4a\x86\x20\x09\xdc\x37\x18\x09\xcf\xa9\xc8\x56\xd3\xf5\xd6\xbc\xc3\xa3\xc7\x86\x07\xe3\x0c\x85\x24\xda\xe6\x91\x84\xc6\x91\x64\xd3\xd5\x3d\xf0\x0a\xe7\x99\x95\x69\x5f\x64\x71\x9b\x13\xd6\xba\x09\x6c\x5a\x90\xc6\x25\x59\xb5\x28\xeb\x97\xa5\x69\x3e\xbd\x85\xb2\x2c\x2c\x28\xcd\x30\xf6\x1b\xe2\x61\xc0\x95\x6b\xac\xeb\x61\x90\x75\x91\x04\xc1\x38\x97\x15\x22\xb6\xd9\xcc\x9c\x73\x04\x59\x93\x95\x15\x86\xa2\x99\x2f\x99\x8d\xad\xfa\xd5\xb8\xaf\xe9\xaa\xcb\x36\xa3\x24\x3d\xc6\x5d\xb7\x9f\x7b\x89\x5e\x4d\x3c\x0f\xed\x32\x83\x46\xf0\x1e\x36\x9f\x5a\xb9\x5a\x2d\x9b\xec\x35\x7b\x79\x5c\xb3\xd5\xdc\x4e\x3b\x3b\xad\xb6\xb3\x1e\xd6\x76\x96\xe5\xc2\x20\xf8\xae\x9e\x9d\x0d\xb6\x96\x33\xdd\x1b\xec\xac\x4d\xa6\x7c\x9b\x8d\x54\x97\xa4\x9c\xfb\x47\x40\xce\xe2\x52\x62\x5d\xef\x14\x10\xf5\x6a\x99\xa8\x51\x26\x37\xad\xd1\x5f\x85\xc4\x18\x3e\xb7\x4e\x9c\x23\x3e\xe7\x5a\x08\x94\x5d\x31\xa6\x9a\x79\x38\x78\x66\xbb\x47\xa6\x91\xe6\xfd\x1f\xed\x05\x6c\x28\xea\x4b\x99\x14\xb1\x28\x30\xbc\x5e\x16\x93\x09\xc0\x65\x02\xf1\xd1\x4c\x68\x57\xec\x8d\x6e\xaa\xf4\x8d\x40\x92\x4c\x54\xb2\x44\xb9\xbb\xcc\xb5\xc0\x8b\xa0\x8e\xcb\x02\x83\x7c\x98\xea\xe8\xc1\x1c\xe7\x4a\x44\xd9\xb5\x58\x48\x88\xe5\x16\x6c\x68\xa2\x4e\xdf\x4b\xa9\x5b\x23\x71\x79\x6c\xa7\x53\x4b\x91\xce\x62\x9a\x49\x71\x36\xda\xaa\xd9\x0b\xd1\x90\x57\xab\xb3\x1a\x4d\x0d\xd6\x98\xf3\xa3\x10\x73\x8e\xc6\x60\x84\x73\x28\xaa\x62\x29\x9f\x38\x1c\x23\x6b\x68\x11\x83\xef\xfa\xaa\x69\xa8\xc7\xd9\x4f\xa6\x6a\x7e\x81\x31\xdb\xec\xd1\x0a\x6a\xe4\x13\x4b\xad\xd5\x2e\x00\xcd\x7d\x25\xe2\x77\xba\xcc\x3a\x16\xec\x96\xad\xce\xc4\xbd\xf3\x6a\x0d\x2d\x8b\xc7\xba\x78\x8b\x0d\x5c\xad\x2b\x66\x51\x16\xa7\x4c\xf5\x1d\xa4\x1a\x9d\x89\x1d\x7e\xd9\x8a\x73\xaf\xfe\xb1\xaf\x9f\x7a\x57\x1e\x84\xb6\xf6\x38\x97\xe5\x4f\x79\xf5\x63\x74\x21\xe9\xe8\x7d\x53\xe8\x18\xb9\xf6\x5e\x2e\x0e\xad\xf6\xe0\x0b\xd6\x68\x14\xc7\x2f\xb2\x58\xe7\x77\xf4\x0e\x5f\x40\xbf\x3f\x7d\x5a\xd9\x02\x5b\x9d\xd2\x9c\xfd\x75\xd6\xd7\x15\x7b\xeb\x8e\x3a\xef\x42\xe8\x76\xcc\x53\xc0\xa9\x8b\xc5\xc3\xc6\x5b\x4e\xad\x75\xb8\xed\x80\x6d\x6b\x9d\x38\xce\xdc\x08\xdc\xde\x0d\xe7\xa1\x7b\xc3\xd1\x19\x5c\xf2\xc7\x8c\xec\x9a\xe3\x9c\xdb\xee\x40\x6a\xb2\x1e\xaf\xab\x06\x57\x1a\x50\xff\x6c\x3c\xe1\x54\x6e\xd5\x6d\x97\x8c\xd5\x19\xed\xe3\x17\x57\x3c\xdc\x40\xdb\xe9\xa9\x15\x57\x3c\x4d\xb8\x07\x97\xc7\xe6\xfe\xb4\xa0\x57\x15\x3b\x7d\x6c\xf2\x99\x2f\x27\xcb\x5d\xf7\xe8\x84\x17\x53\x2f\x53\xe2\x24\xf3\x87\x2c\x2f\x23\x4f\xe2\x45\x5c\xfd\x84\x5b\xc6\x49\xe3\x85\x8c\x72\x8c\xe7\xc6\x8f\x3c\x9b\x0c\xf4\x43\xfa\x1d\x90\xf5\x76\xa5\xd7\x9c\xd5\x4a\xf2\x5c\x9a\x7d\xf1\x7e\x39\x24\xe9\xf7\xcf\x49\xe4\xc5\xf2\xe0\x8c\xe5\xf5\xc9\xb2\x17\xb5\x70\x5e\x8e\x71\x67\xb3\x43\x70\xf5\x40\x6e\x80\x62\xe0\x99\xeb\x33\x91\xd7\xa6\xde\x08\xb0\xc1\x9c\xf5\x0e\x80\xbc\x18\xcc\xeb\x36\xaf\xd9\x8c\x9b\x93\xbe\xfa\xc4\xaa\x1f\x09\x57\x5a\x80\xb7\x59\x45\x01\xff\xd2\x84\xfe\xe5\x84\x89\x5f\x1c\xb2\xc3\x4f\xa4\xff\x84\xbf\xa5\xcd\x29\x4d\x06\x22\x06\xca\xed\xac\x34\x7e\xcb\x79\x0b\x76\xb9\x9c\xdf\x32\x36\x3f\x4d\xc5\x66\x5e\xf9\x4f\x9d\x91\xa6\x87\x39\xa7\x3a\xa6\x36\xf0\x9f\x63\x13\x61\x3e\x0e\x44\x94\xa6\xf9\x65\x49\xfa\x67\x88\x93\x6f\x4f\x67\x13\xd8\x3f\xe8\x68\x18\xb4\xf6\xae\xa3\xff\x09\x8b\x00\xa8\x9f\x2c\x05\x5e\x36\x48\xcb\x6e\xf9\x0e\xc0\xca\x10\xab\x6c\x89\xa7\x26\x85\x78\x5f\x97\xad\x7a\x47\x1f\xdf\xfd\x71\x9a\x67\xa6\x53\xf8\xe9\x39\x95\xeb\xe7\x59\x7a\xdd\x36\x00\x7c\x4e\x79\x8a\xd4\xe7\xca\x94\x34\x69\x76\x68\x4f\x4e\xb3\x1b\x5d\xa9\x6b\x04\xc2\xde\xf1\x48\x7b\xf8\xfe\x7a\x21\x9d\x07\x3e\x3e\x2f\x4f\x9c\x12\xdc\x4b\x6f\x73\x47\x3f\x0f\xfc\xef\x19\xb9\x08\xd8\x68\xc3\x55\x0e\x21\xab\x35\xbe\x01\xa0\xb6\x6b\x14\x6c\x66\x3d\x4a\xe5\xb5\xa1\x58\x59\x45\xe3\x0f\xf9\x85\x2c\x26\x69\x7e\x09\x51\x63\xa3\xc1\xe3\xfd\xfd\x83\xaf\xf7\x1f\xee\x0d\x1e\x7d\xf5\xf5\xfe\xb7\x0f\x0f\xb0\x08\x15\x14\xa2\x47\x26\x3e\x44\x78\x23\x03\x01\xb7\x2c\x65\xdc\xc5\xef\x23\xed\x70\xb2\x88\x4a\xb2\x2d\x37\x37\x02\xbd\xc8\xa5\xa9\x51\x08\xd1\x96\xfd\x69\x5f\x8c\x68\x13\x80\xf5\xd1\x38\x5a\x96\x60\x9a\x5e\x98\x28\x92\x33\xf0\x6d\x29\xe4\xb8\xd2\x41\xed\xc9\xe8\x89\x63\xf6\x99\x1e\x8e\x67\x51\x36\x55\x5c\x6a\xf4\x41\x92\xcb\x9e\x6f\x9c\xad\x2e\x46\x11\xff\x02\xcb\x36\x12\x91\xc8\xe4\x25\xeb\x9f\x1d\xac\x9e\xd2\x73\x0e\xb6\x9e\xbb\x95\x82\xd1\x36\xb4\x2e\x63\xd6\x38\xab\xaf\x5d\x4a\xc9\x7e\x9e\xa8\xcb\xd9\xc0\x31\x5a\xef\xa9\x4f\xfd\x7f\x96\xd6\xa6\x8f\x45\xf6\x25\xf3\xbe\x26\xdb\xf5\xf3\x34\x3f\x1f\xec\x3f\x7c\xf4\xf0\xf1\xe4\x9b\x6f\xbf\x3e\x7f\x18\x9d\x7f\xbd\x3f\xf9\x4a\xee\x7f\x1b\x7f\x7d\xf0\x68\xb2\xff\xe8\xf1\xe3\x6f\xbf\x9a\x3c\xfe\x76\x7f\xef\xf1\x37\xfb\xe3\x41\x73\xdb\x5f\xbe\x7a\xf8\xd5\x41\xef\xd5\xa3\x87\x5f\x77\x1c\x97\x21\x9a\x0c\xc7\x23\x70\x16\x2d\x8c\xa6\x81\x84\xec\xa1\xde\xe4\xb4\x41\x71\x8f\x3b\x01\xee\x6d\x05\xea\x9a\xc9\x2b\x4c\xb2\xb2\x52\xf7\x95\x37\x93\x36\x15\xc7\xe0\x25\x75\x98\xf5\x67\x62\xa4\x49\x6a\x84\x9b\x9c\x79\x0e\xc6\xda\x68\x1f\x4d\xa1\x70\xd3\x18\xf8\x15\x0c\xbc\xae\xe5\xb3\x44\x53\xa4\x22\x55\x19\x5b\x5f\xbf\x06\xfb\xd0\x65\x29\xda\xdc\xda\xae\xcb\x0d\xe2\xba\x54\x17\x33\x61\xeb\x32\x03\xb6\x4e\x57\x5c\xce\x92\xf1\xcc\xe9\xaa\x81\x49\x63\x68\xa9\xe2\x81\x09\xb1\x4a\x6e\x62\xae\xf5\x7a\xdf\xd9\x9d\xc6\x70\x53\xfd\xf0\xed\x29\x99\x88\x99\x64\xcc\xac\x72\xff\x31\x9a\x55\x22\x35\xba\x26\x95\x9a\x42\xff\xfa\xfa\xda\x62\x0d\x1b\x9f\xd0\xc3\x8f\x23\xb0\x5c\x56\xff\xd3\xfb\x13\x96\xbc\x19\xdd\x60\xbc\x7e\x2c\xda\xb9\xd1\xbd\xf1\x0c\x2e\x85\x31\x79\x5c\xe5\x43\x1b\xc4\xe0\x57\x2b\xc6\xc1\xa4\x56\x42\x4d\x9d\x75\x56\xe1\x4e\x1d\xcf\x28\x8e\xad\x99\xd0\x27\xa2\x2a\x92\xe9\x54\x16\x68\x65\x8c\xf2\x23\xf9\x04\x90\xf9\x34\xeb\x73\x92\xad\x75\x9d\xf4\x5c\x2e\x88\x42\xad\xeb\x44\x29\xc8\x0f\x4a\x24\xf3\xb9\x8c\x93\xa8\x92\xe9\xb5\x88\xc0\x97\xcf\xa8\x79\x1e\x38\x68\x7e\x41\xaf\x0d\xed\x3f\x63\xdc\x61\x4e\x77\xd2\xe8\xb7\x6b\xac\xfd\x74\xc7\x33\x1c\x85\x08\x8c\x9a\x07\x4d\x92\xa2\xac\xc4\x08\x88\x04\xc0\x70\xa0\x1e\x45\x9a\xa5\xac\xc4\x88\x8b\x47\xa3\xbe\x78\x36\xd1\x4e\x21\x58\x0e\xa7\x88\x6d\x8e\x90\x89\x6a\x15\x5d\x53\x63\x34\xda\xae\x90\x17\x32\x53\xfd\x40\x19\x0a\xe5\x99\x65\x96\x2a\xb6\xae\x9a\x8f\xd2\x32\x27\xda\xbf\x16\x23\x47\x20\x73\x10\xc7\x78\xef\xee\xba\x18\xaa\x9b\x76\x3d\x50\xb7\x05\xbe\x2d\xd1\x78\x26\x4b\x6d\x5f\x4b\x7b\x18\xa9\xc1\xba\x66\x57\x7e\x2f\xd5\xd5\xed\x3a\x5f\xb6\x62\xb1\x80\x73\x1a\x7c\x94\xc8\xd6\xc2\x9d\x23\xd3\x12\x05\xbf\x2c\xb5\xfb\x04\x1f\xa8\x53\xf9\x5d\x47\x6a\x5c\x7c\xe8\xe5\x82\x11\x3b\x5b\xc9\xcb\x99\xcc\xa8\x3e\xe8\x9c\x5a\x6e\xe8\x04\x80\x01\x4d\xa3\x22\x4e\x59\x84\x0a\x6b\x45\x9c\x64\x23\x8f\x1c\x67\x86\xbb\x6a\x4f\x22\xb0\x1a\x17\xe7\x79\x35\x13\x23\x94\xad\x47\xa0\xb6\x04\xdb\x61\x13\x2a\xd4\xe5\x6f\xdf\x31\x0f\x33\xab\x22\xcd\x88\x4e\xa2\x54\x3f\x1d\x92\x9b\x43\x9a\x7c\x90\xba\xf2\x24\x9b\x8e\x06\xf4\xb7\x8c\x47\xa8\xad\xe0\xe7\xf2\x77\xe8\xb6\x14\xc5\x71\x29\xd0\x5f\x48\x3b\x69\xf9\xd3\xd2\x17\x3f\xe6\x97\xf2\x42\xc9\xb9\x09\xdf\x46\xdf\x89\xd1\x5f\x9d\x83\xf4\x3b\xee\x54\x05\x12\x59\xc3\x8e\x81\xd5\x28\x64\xa9\x56\x2b\xc9\x4c\x75\xac\x0f\x23\xba\xdb\xf6\x1e\x8c\xb4\x3f\x7f\x17\xab\xbc\x8c\xae\xcd\x76\x1d\xcf\xc0\x3d\xb5\xca\x29\x72\x66\x52\x99\xba\xe2\x64\x02\xa2\x62\x95\x5e\x73\xa2\xd2\xd6\x1d\x6b\xa8\xe9\x45\x06\xd8\xbe\x79\xa1\xdd\x71\x6b\x63\x70\x10\x07\xe4\x46\x9b\x31\x50\xa9\x62\xb2\x4d\x75\x6e\x42\xf5\xef\xeb\xce\x19\xac\x3e\x58\xaf\x79\x92\xa6\x09\x7a\x3d\x1b\x24\x63\x7d\x3e\x68\xfe\x33\x72\xaf\x6f\x6e\x08\x02\x87\x22\xff\x77\xbe\x14\xf3\xe8\xda\x30\xaa\x48\x94\x49\x36\x4d\xa5\xd1\x0d\xaa\xcb\x15\xf8\x08\xda\x51\x0d\x9b\xcf\x6c\xc7\xd7\xc1\x3f\x25\xe9\x77\x5e\x40\xcc\x96\x8b\x24\x5e\x46\x69\x7a\xbd\x49\x6d\x1f\xf5\x79\xac\x97\xfb\xf1\xde\x9e\x96\x50\xf4\x62\x3d\xe4\x9f\x60\xae\x59\xa6\x9b\xa6\xce\xf4\xec\xe6\x25\x76\x63\x84\x72\xcb\x0e\xa0\x85\x91\x2d\x81\xbf\x9d\x02\xa3\x3d\x9e\x0e\xdc\x33\x98\x4c\x99\x00\x3d\x5b\x7c\x44\xbb\x2c\xf1\x49\x7c\xc4\x51\x3c\x1d\x9a\xc8\x41\xaa\x0e\xf6\x13\x3b\x69\x3e\x98\x01\x61\x20\x1d\x9c\xa7\xa1\x95\x05\xe9\x8b\x17\xde\x09\x6c\xef\x99\xd9\x17\xba\x4f\x3f\xb1\x7a\xba\x2f\xc2\xfa\x55\x28\xb3\xe0\x52\x89\xb9\xaa\x2b\xf2\x68\x83\x92\x2e\x05\xed\x5b\x54\x4c\x97\x73\xf0\x81\x4c\x65\x36\xad\x66\x5d\xf5\x05\xec\x29\xe5\xa5\x78\x56\x14\xd1\x75\x1b\x72\x7e\x27\xf6\xc5\x53\x2c\xd4\x13\xfb\x62\x28\xf6\x3a\x5d\xf1\xeb\x07\x79\x2d\x0e\xc5\xfe\x13\xfc\xeb\xaf\x90\x8e\x3f\xfe\xf2\x17\xae\xeb\x2f\xa6\xe5\x09\x64\xe9\x89\xfd\x33\xde\x2a\x7c\x3d\x6b\x30\x1d\x5b\x80\x89\x59\x7a\xdd\x46\xb3\xac\xae\x38\x81\xe1\x9e\xe9\x10\x83\xaa\xda\x0e\x5d\xaa\xeb\x62\x7a\x1c\x2b\xb9\x75\x59\x56\xf9\x9c\xb3\x3e\x40\x40\x41\x89\xab\x2f\x9e\x7b\x92\xb7\xcd\x67\xa1\x3c\xd4\x2d\x17\xb4\xe7\xea\xb0\x88\xc4\x28\xce\x33\x39\x32\xd7\xcb\xbe\x78\x66\x95\x1a\x00\x88\x02\x51\xeb\xa7\x45\x04\x0f\xe0\x6e\xc3\x54\x63\x9a\x4f\x93\x71\x5f\x18\x2b\x45\x40\x38\xac\x12\x74\xb3\x8a\x45\x54\x82\x87\x1e\x5d\x5f\x01\x17\x31\xc4\x09\xec\xc9\x74\x19\xbe\x1f\xe3\x5d\x38\x7c\x43\x5e\x21\xc6\xbb\xc4\x74\xf8\xb1\x8d\xca\x76\x35\x6c\x70\x4d\x32\x7b\x5b\x0c\x06\xda\x2f\x4c\x8c\xd5\xdd\xd8\x8c\x55\xcd\x31\xbc\x17\xa9\xad\x34\x8f\x8a\x0f\x24\xbd\x29\x59\x03\x2f\x46\x36\xaf\xa9\x0d\xee\xd4\xaa\x71\x55\xd0\xa8\xd8\x5b\x4e\xad\x2d\xec\x47\x57\x58\x57\xaf\x30\xb7\xc0\xb3\xc6\x19\x09\xe7\xe5\x6a\xdf\xd5\x28\xc6\xbc\x02\x4c\x80\x35\x93\x3f\x12\xba\xfe\x49\xa3\x3b\xd3\x57\xb1\xc4\xa0\xe7\xf4\xc5\xb3\x4c\xc8\xab\xaa\x80\xc0\xe7\xd1\x5c\xa2\x4f\x16\xf4\x27\x29\x8d\xfd\x07\xac\x40\xb9\xb4\x88\x3b\x14\x08\x4b\x12\x8a\x0a\x9d\x70\xe8\xaf\x97\x94\x22\x1f\xab\x7b\x20\xb8\xd4\xa3\x88\x4b\x7e\x11\x24\x60\x7f\x26\x52\x40\x46\xf7\x92\xf8\x12\xac\xfd\x50\xfc\x58\xcd\x53\xba\x15\x77\x05\x1b\xd2\x50\xa8\x43\xb1\x23\x7a\xdf\x81\xe5\x24\x9b\xfa\xbc\x2e\x1f\x6f\x32\xe7\x91\x11\xf5\xff\x98\xf2\x95\x53\x5e\x9f\x6a\x2f\xaa\xc0\xad\x66\x5b\xdd\x89\xfe\x98\xec\x2d\xe8\x5b\xc6\x77\xe3\x2a\x5a\xcd\x1e\x98\xf4\xff\xae\x09\x68\x18\xad\x27\x0c\x6f\x4d\x5e\xff\x56\x23\xbd\xeb\x5e\x22\xf5\xc2\x67\x1d\xeb\x3d\x0d\xb5\x4e\xc1\x08\xbb\xf4\xf1\x06\xec\xf3\x7e\x42\x27\x5a\xc9\x0c\x5d\x72\x81\x81\x31\xc7\xa9\xba\xd9\x16\x74\x25\x15\x71\x3e\x06\x91\x2e\xc2\x43\xfd\x34\x33\x25\xb2\x3c\x07\x57\xee\x1b\xef\x29\x83\xe4\x6d\x13\x31\xff\x94\xf4\x5b\xe8\x51\x52\x57\xb5\xd8\xef\x9e\x66\xc2\x26\xe8\xeb\x86\xfd\x42\x97\x0d\xf0\x4e\xb2\xb7\x3a\xf3\xd3\x9c\x53\xaa\x93\x5d\x9f\x9d\xfa\x1f\xd5\x64\xf1\x6f\x50\x97\xf7\xa1\x56\x90\x26\x59\x7d\x42\x8c\x64\x36\x05\x1c\xa0\x88\x3b\x5a\xb2\x2c\x06\x9e\xc8\x38\x55\xf2\x44\x0b\x4e\xc4\x7c\x87\xfc\x0c\x58\xdc\x38\x8e\x7a\x95\x53\x71\xe3\x03\xe4\x61\x62\xb1\xf7\x29\x0b\x98\xa5\x2e\x10\x85\x9c\xa4\xf9\xa5\x6b\x70\xa0\xbe\x00\xf5\x91\xf0\xaf\x0d\x05\x94\x68\x57\x8e\x8b\x3c\x4d\xdf\x03\x7c\xe9\x8d\x6d\xc7\x71\xd0\x31\x6d\xa1\xbb\x25\xbd\xa3\x22\x48\x5e\xc9\xa0\xa0\xed\xeb\x78\xf8\x5d\x9c\x20\x8e\x4b\x42\x35\x21\xdc\x60\x16\x82\x9b\x62\xa3\x5a\xbc\x64\xfa\xc9\xf1\x92\x3f\xde\x58\xb0\x64\x48\xe6\xc1\x30\xe8\x6e\xa3\xef\xfe\x43\xac\x8f\x01\x72\xfc\xa0\xb5\x02\x9f\x3e\xf9\x2e\x3e\x87\xcc\xc5\xc7\x5a\xc0\x5b\xcb\xf7\x13\x1a\x70\x7f\x9e\xc7\xf2\x4c\x55\xa0\x31\xd8\x63\x09\x78\xa7\xb5\xb6\xd4\xe7\x53\x7a\x5b\xbc\xb9\x37\xb0\xfe\x32\x4d\xc6\x32\x7e\x9f\xc3\x35\x70\x83\x3a\x9c\xfc\xff\x6e\xb0\xff\x5b\x42\xec\x50\xa9\x65\x29\xdf\x43\xf0\x6a\x3f\x20\x80\x4e\x70\x5a\xc0\x0d\xd2\x0d\x90\xba\x85\x44\xeb\x0f\x98\xe6\x06\xf1\xd1\xdc\xf6\x5e\xe6\xc5\x87\x77\x72\x62\xf3\x23\x86\x9a\x4d\x69\x3d\x71\xd8\xef\x54\x56\xc7\xe3\x28\x95\x6d\xd0\x8f\xb8\x1b\xf3\x74\xa7\x84\x24\x1b\xfa\x1f\x32\x75\x05\xbe\xf5\x9b\x60\xfe\xaf\xa3\x6a\xd6\x5f\xe4\x97\x3a\xf9\xa0\x03\xc9\xa7\x3b\x00\x21\xab\x71\x11\xdc\x90\x04\x0c\xd0\x07\x89\xd7\xa2\xf6\x10\x35\xc3\x40\x27\x79\x31\x1f\xda\x4e\xee\x77\xf4\x75\x9e\x41\xfe\x6c\x50\x01\xc6\x41\x3d\xad\x07\x07\x7a\x3f\x93\xe2\xef\x45\x7e\xc9\xaf\xe2\xf4\x78\x2c\xce\x01\x9e\x42\x9c\xbc\xcf\xf3\xb4\x4a\x16\x67\xed\x81\xc5\x84\x1a\x54\xf8\xb1\x1c\x74\xd4\xcd\x1f\x91\x4f\xde\xe6\x8b\xfc\x42\x16\x6e\xc6\x05\x7e\x1c\x74\x38\xa2\x14\xe4\x3f\xaa\x30\xfc\xd1\x49\x98\x8e\x6e\xf1\xd6\xda\x11\x49\x06\x50\xa4\x29\xaa\x55\x2d\x28\x05\x8c\x71\x63\xb4\x7d\x95\xfb\xb6\x28\xfb\x2e\x54\xfd\x71\x55\x24\xe3\xea\xb5\x8f\x90\x4f\x9f\xf3\x58\x3e\xcf\xe7\x8b\xa8\xf2\x71\xf2\xfd\xf4\x1a\x5a\xbe\xa9\x77\x3d\x5a\x3e\x65\x65\x50\xf8\x0e\xc4\x3c\xb3\x17\xb3\x56\x4f\x61\x7b\x27\x6e\xbd\xd4\x64\xb7\xe4\x18\x44\x35\x9a\x42\x19\xd3\xa6\xa0\x51\x13\x33\x52\x6a\x30\x4f\xe2\x36\x4f\x4d\xd6\x4e\xab\x8e\x37\x9a\xa1\x75\x07\x25\x33\x33\xf3\x0a\x38\xc1\x5c\x21\x32\x88\x9d\xf7\x86\xe3\xd6\xf2\x34\xb5\xa6\xa6\x4d\xf7\xb3\x1b\x06\x36\x90\x66\xfb\xe2\xd7\xc7\xbb\xc4\x98\xf5\x30\x9c\xff\xee\xe1\x00\x1a\x48\xd5\xb5\xe5\x0a\x19\x59\x31\xa3\x2a\xdf\xe6\xca\x33\xb2\x72\xcd\xaf\x6c\x14\x56\xb5\x96\x01\x2b\xaf\xc0\x74\x79\x51\x02\x54\xf6\x82\x47\x06\x50\xdb\x1e\x15\x65\x60\x67\xbe\xac\x72\xeb\x87\xd7\x90\xa9\x82\x13\xed\xd0\x1c\x6e\x2c\x49\x66\x0d\x9b\x17\xca\xf4\x97\x59\x59\xa9\x0c\xbf\x96\x26\x07\xc7\x9b\xf7\xcb\x99\x6a\xad\x25\x9e\xd3\x25\xb0\x91\x35\x99\xd4\xc5\x39\x99\x66\x98\xcf\x1e\x77\xc6\xe6\xaa\x0f\xe0\x1c\x8a\x9b\x99\x22\x68\xc0\x5d\x2b\xd1\x30\x8a\xa7\xa6\x1f\x43\xeb\xc3\xd4\x65\xed\xf2\x89\xc6\xa8\x54\xc9\x6f\x32\x66\x8b\x12\x30\xd3\x5f\x95\xaf\xee\x25\x40\xe7\xb2\xb5\x98\x57\x3d\x7a\x53\x18\x8d\x44\xcd\xa9\xcc\x35\xff\xaf\xd5\x27\x98\x91\x35\xf8\xa8\x37\x0c\xfc\xc4\x33\x58\xef\x0a\xaf\x61\x63\x76\xbd\xa2\x33\xae\x75\xb5\x30\xfe\xab\xae\x20\x49\x20\x2a\x07\x1d\x2f\x77\xd6\xe8\x8b\x0a\xa3\x2b\x83\xce\xa8\xea\x8e\x4a\xbb\xec\x7f\x5d\x5d\x21\xa4\x36\x6c\x25\xf5\xcb\x7a\x8d\xcc\xa2\x0b\x29\x22\xfb\x26\x59\x7b\xf6\x30\xb1\xfc\xad\xd9\x37\xce\xa8\xd3\x2e\xf7\x83\xf7\x7c\x96\x8c\x9f\x44\xe6\x7b\x28\xd5\xdc\xaa\xbd\xcc\x8e\xc6\xa9\xb3\x0a\x84\xc1\x31\x1f\xb4\xe4\xcd\x8e\xa3\x95\xc4\x66\xb9\x91\xbf\x41\xf4\xa1\xb8\xb2\xb8\x4b\x93\x6e\xaf\x2d\xf9\xda\x1b\x20\xac\xcd\x31\x3e\xcd\x59\xf7\x3e\x72\x05\x82\x58\x7e\x16\xbf\x1f\x7e\xf6\x1d\x1b\xf2\x80\x8c\x7c\x18\xba\x23\x7e\x74\x4e\x43\xba\x1b\xf9\xe7\x9b\xb9\x5a\xd1\x4c\x76\xb9\x87\x7f\x2c\x87\x04\xdc\xdb\xa2\x64\x4e\x9a\x81\x1b\xdd\x61\xa8\x77\x7d\x7d\x15\x64\x65\xe1\xba\xd6\x94\x5d\xa5\x39\x3e\x40\xba\x82\x20\x60\x04\xdc\x19\xe1\x18\x66\x84\xc7\xa0\x3d\x91\xff\xf2\xa7\xec\xa9\xac\x9e\x2d\xab\xfc\x47\x99\x4c\x67\x95\xee\x3b\x2c\x4d\x7f\x9c\x26\x32\xab\x30\xc5\x52\x1c\x3b\x1b\x8c\xdf\xca\x21\xef\x55\x88\x9c\x79\x17\x6a\x33\xe5\xbf\xeb\xa1\x1e\xc0\xbb\xbc\x8a\x43\x71\x52\xef\x3d\xda\xff\xb6\x5b\x24\xf3\xb7\xba\xf5\x26\x87\xa2\x36\xe5\x74\x3f\x8e\xf5\x7d\x18\xd6\x32\x30\x37\xba\x76\x73\x81\x58\x5d\xbf\x78\x20\xf6\xfa\x5f\x7d\xf5\xd5\xca\x76\xce\xfa\xff\xcc\x93\xac\xdd\xea\xb6\x3a\xce\x0a\xe6\x35\x90\x2d\xed\x7a\xdd\xb8\xfb\xd1\xbf\x23\xb8\x4b\x41\x66\xdc\x64\x9b\xcb\xb8\x56\xde\x08\x94\xeb\xca\x63\xc6\x50\xf9\xed\x98\x84\xeb\xfc\x56\xdf\x04\x07\x9f\x77\x4b\x5f\x25\xd5\x5d\x76\xf4\xc1\x96\x5b\xfa\xe0\x8f\x3d\xfd\x3f\x65\x4f\x83\xa7\x1c\xcf\xf8\xf0\xe1\xc3\xf0\x3e\xf7\xa6\x40\x43\x25\x1f\x8a\xd6\x5e\xab\x9e\x6c\xfa\x86\x84\x8f\x2a\x8f\xbd\xfe\xd7\x8f\x6b\x2c\xe3\x2a\xa9\x5c\x8e\x71\x95\x54\x8e\x6c\xd1\xc0\x23\xf4\xb5\x72\x83\x2d\x8e\x1c\xc2\xdc\x0c\x7c\x3f\x22\xb3\x95\x3d\xa7\x37\x14\x02\x7f\x82\x10\x26\xc6\xeb\xad\x86\xcb\xb5\x4a\xd8\xb4\x35\x88\xa1\xad\x62\xf3\x2d\x02\x77\x1c\x46\xce\xcc\x77\x2e\xc3\xc8\x2a\x01\xaa\xff\xf4\xc9\xba\x2d\x3a\xfe\x73\xe6\xc6\xf1\x02\x00\xbe\xdb\x01\x6f\xd5\x9a\x54\xce\x3a\x03\xcf\x20\xc6\x75\x8f\xf7\xac\xf3\xc4\x91\xdb\xba\xe2\xe4\x6c\xbb\x78\xca\xa1\x8b\x73\x2d\xee\x94\x7e\xf2\x30\x4f\x1a\x82\x41\x56\x77\x2d\x05\x82\x01\xfd\x56\x17\x1f\x52\xba\xe9\x17\x12\x76\x08\xb9\x49\x32\x1e\xba\x27\x94\x9b\x0c\x2a\x40\x57\x52\xb5\x19\xe0\x05\xc5\x92\xae\x93\xc0\xea\xe5\xba\x11\xf6\xcc\xe2\x9c\x6b\x94\xec\x1b\x7d\x04\x5d\xe0\xfc\x33\x84\xd1\x99\x9a\x8c\x65\x9a\x0a\xe7\x7c\x61\x61\xb4\x2c\x11\x10\x66\x33\xf7\x13\x72\xe9\x25\xb4\xc0\xdc\x81\xc8\x68\xd6\x02\xc1\xd3\xe8\xe8\xab\x27\xf8\x20\xeb\xfc\x50\xf3\x74\xa9\xc0\x58\x58\x9e\x8b\xa4\x4c\xce\x93\x14\xca\x92\xd5\xfd\xa1\x0d\x7b\x01\x17\x75\x52\x9d\x3d\x15\xad\x59\x12\xc7\x32\x6b\x71\x8a\x30\xf7\x91\x2e\xa9\x7a\x09\x6e\x9c\x7e\x76\x8d\xee\xb0\xcf\x34\x52\xb6\x03\x10\x97\xcc\xdc\xc8\xcd\xb1\xcd\xfd\xa4\x9e\x18\xa6\xb6\x65\x5c\xb2\xbf\x17\xf9\xe5\x1f\xf1\xc8\x3e\x43\x3c\x32\x6d\x5e\xaa\xed\xb9\x1b\x63\x10\xad\x08\xc4\xdd\x64\x88\x6b\x2c\xa2\xc9\x70\x5d\xc8\x6c\x0c\xa6\xf0\x85\x68\xbd\xac\x21\x03\x42\x80\xae\x2c\x07\xf4\x8a\x69\x72\x21\xe1\xbd\xb1\x6c\x69\x8b\xd1\x65\x29\xc5\xc8\xe8\x9f\x90\x91\x5a\x46\x07\x7a\x2c\xe3\x24\xa3\xa6\x74\x1c\x65\xad\x4a\xc7\x3e\xc2\x78\xbd\x72\xa2\x1f\xb3\x3d\xeb\xf5\x40\xa0\x2d\x9f\x87\x6e\x13\x6e\xab\xdc\xce\x09\xc4\x5c\x9e\xdd\x30\x5a\x6b\x5b\xac\x07\x57\xdb\xd4\x2a\xab\xb1\xe4\x06\xf6\x2e\x8d\x65\x37\x31\xaa\x08\x16\xde\xc4\xf4\xa4\xa9\xe0\x6d\x3b\xbc\xa1\x11\x48\xbd\x2c\xf1\xed\x8d\x62\x7b\x19\x09\x53\xc3\xfc\x6f\x60\x39\x7e\x1b\xfb\xef\xae\x6f\xc2\x4d\x61\x80\x32\x81\x9d\x73\xad\x52\x8e\x25\x98\x6d\xd2\x69\x58\xe5\x20\x4d\x29\x02\x1c\x43\xd1\x71\x94\x8e\x97\x29\x30\x2c\xe6\x81\x93\xcc\x25\x84\xd7\x89\x45\x9e\x89\x19\x5c\x42\x38\xb5\x9a\xf3\x76\x8d\xa7\x15\x7c\x6c\x9f\x60\xdb\x67\x1d\xee\x69\xa5\x0d\xab\x1b\x7c\x00\xeb\x7e\x05\x54\x00\x93\x6b\x0e\x02\x6e\xaa\x47\x62\x98\x88\x67\xd1\x59\xc7\x8b\x43\x06\x47\xcd\x7c\x99\x1c\x2f\x17\x8b\xbc\x80\xfb\x98\xc5\x6d\xf1\x8c\x27\x54\x5e\x16\x3d\x6c\xed\x4b\xb5\xcd\xb0\x3a\xe0\xd6\x86\x2f\xda\xf2\x2a\x1a\x57\x18\x31\xe1\xc7\xf7\xaf\x5f\x91\xdc\x01\xbe\xc3\xfa\xbd\xf9\x6f\xf3\x48\xed\xcd\x28\xed\x2d\x93\xda\x6b\x73\x29\xab\xc0\x4b\x33\x7e\xbd\xf3\xa3\xf4\x73\x0c\x51\x24\x8b\xf6\x58\xff\x45\x02\x94\xf9\xad\xe6\x95\xfc\xb6\xed\xa7\x9a\xe3\xb6\xa9\xa7\x23\x86\xf6\x17\xa8\x1f\xbf\xb4\x6c\x5a\x80\x4b\xaf\xe3\x7a\x1d\x84\x64\xb1\x9d\xe1\x4f\xdb\xea\x7a\x90\xcd\xa2\x6c\x2c\x63\xbc\x26\xd8\xae\x5d\x26\x59\x9c\x5f\x22\x6e\xab\xe3\x6c\x6a\x2e\x16\xaf\xa2\xeb\x7c\x59\x51\xb9\xa1\x7f\xe1\x60\x6f\xd5\x6f\xf3\xa2\x8a\x52\xe3\xfa\x21\x22\xf4\xdf\xe9\x81\x03\x0e\x38\xde\xd8\xa8\x94\xe6\x9d\x36\xc9\xc0\x43\x53\x9b\xa9\x53\x2c\x8f\xa8\x52\x54\x5d\x56\xa5\xc8\x97\x55\xa9\x2a\x53\x0c\x46\x65\x9a\x25\xb2\x88\x8a\xf1\xec\x5a\xfb\xab\x90\x97\x9f\x73\xda\xd9\x77\x65\xec\xd3\xe6\x2f\xcb\x98\xff\xd6\x11\xdc\xd9\xd2\x53\x16\xfd\xa5\xe1\xfd\xd9\xf4\xcf\x79\x7e\xc6\xaf\xfe\xa3\xb3\xc9\x1b\xae\x62\xfd\x4b\xb3\x57\x6d\x9e\xbd\x83\xc5\x70\x1e\x72\xf5\xa7\x60\xe8\x6e\x8d\xe2\x65\x68\x80\x00\xa8\x96\x69\x6a\x05\x65\x30\x6e\xd3\xc0\x35\x6e\x51\xfe\x30\x52\xca\xea\xf5\x8a\x9c\x06\xc3\x66\xc5\x43\x58\x68\x51\x93\xf2\x1f\x51\x9a\xc4\xfe\x25\xa5\xc3\x30\x12\xfa\x05\x5c\x15\x55\xaf\xd9\x83\x5b\x6d\x8f\x84\xae\xd2\xe0\xb5\xe2\xcc\xa6\x0b\x82\x63\x46\xd4\x6e\x62\x11\x00\x62\x84\xb6\x86\xfd\xf3\x3c\xbe\x76\x2f\xf5\x5d\x71\x62\x29\xc6\x5d\xf7\xb3\x2d\xbb\x69\x97\x81\x3d\x61\x86\xfa\xac\x66\x12\xde\xb4\x4c\x09\x1f\x1f\xa9\x09\xeb\x8e\x17\xb6\x8f\x9d\x62\x05\xaa\xbf\xe1\x30\x46\xa9\xe0\xb6\x7c\xc7\x31\x33\x8a\xde\xdd\xe5\x53\xa0\x66\xdd\x99\x01\x47\x3b\xa5\x0b\xb5\x6b\x8b\x61\xd3\xd6\x74\xf2\x94\x22\x9a\x87\xe7\x59\xa5\x6c\x43\xac\x75\xb0\xa2\xcd\x2f\xe3\x6c\x7d\x42\x57\x56\x17\x75\xd8\x59\x1c\x16\x10\xdf\x0f\x2c\x6e\x67\xf2\x69\xa0\x2b\xea\x10\xc2\x2b\x0b\xb1\x4f\xdb\x1b\x4b\x53\x1a\x26\x58\xfd\xd8\xfe\x86\x8c\x15\xff\x71\x47\xbe\xff\x3b\xf2\x7b\x1e\x3d\xd9\x1e\xd0\x70\x2e\x63\x1c\x68\xcd\x90\x46\xb7\x0a\xe1\xfd\x0c\x84\x37\x7d\xe7\xee\x72\x5f\x7e\x02\xad\x00\x01\xdf\xfa\x12\xaa\xc3\x1f\xc9\xae\x14\x32\xa9\x66\xb2\xe8\xb3\xae\xb2\xee\xa0\xaf\x3c\x3c\x8e\x83\x20\x80\xe7\xa0\x19\x0b\x44\x4d\x22\xc0\x91\xc4\xbb\x25\x58\x77\x6f\x88\xc0\x08\x66\x6e\x10\x40\x2a\x8f\x8d\x60\x51\xe5\x8b\x5e\x2a\x2f\x64\x6a\x18\xb6\x30\xb7\x21\xa8\x04\x6c\xc9\x5b\x25\x86\x23\xbd\x16\x23\x87\xaf\x8f\xc4\x3c\x2f\x2b\x53\x57\x32\x97\xce\xec\xe9\x41\xb0\xe9\xc3\x69\x43\x63\xf8\x12\x28\xab\x57\xe5\x3d\x43\x0c\x3d\xbc\xac\x51\x05\xfc\x02\xe2\x09\xc7\xdd\x30\x2e\x88\x0f\xcd\xd3\xf5\x6e\x87\x67\x75\xac\x90\x1f\xc8\xcf\x98\xcd\xae\x76\x47\xef\x87\xa8\x07\x22\x66\xa9\xcb\x59\x92\xe1\xcc\x90\x6c\xe6\xc8\x6d\x01\x6d\x04\x6e\xee\xb5\x1a\x01\xcf\x67\x21\xa7\xa8\x9e\xb6\xfd\x59\x54\x8a\x73\x29\x33\x0b\x11\xd1\x4c\xc4\xa6\xff\x5a\x89\xa3\xe3\x49\xc7\x72\x51\xc8\x31\x6c\x76\xd8\x97\x10\x7d\x40\x55\x25\x2e\x1e\x77\x8d\xa6\x25\x80\x99\xd2\x77\xee\xe0\xfa\xdc\x08\xfb\x27\x98\xeb\xd8\x69\x46\xb1\x8e\xc2\x7c\xb0\x65\xd9\x60\xcb\x86\x65\x91\x65\x9a\x64\x55\x8f\x66\xaf\x97\xc9\xab\xaa\x97\x26\x19\x5c\xe4\x71\x2e\x4f\x5a\x86\x53\xb6\xc4\x5f\x44\xab\x75\x26\x0e\xed\x7d\xaa\xed\x73\x53\x73\x59\xf0\x2e\x80\x98\x4f\x5d\x01\xb5\x8c\x7f\x1c\x4d\xd4\x84\xa3\x7b\xa8\xde\xb3\x36\x9a\x99\x9a\x43\xc0\x05\xc0\xe3\x00\x91\x81\x18\x66\xcc\x04\x10\x81\x50\x19\xfe\x00\x95\xd2\x97\x49\x29\x71\xf2\x17\xea\x9a\x00\x0b\x0c\xb2\xbf\xe2\xda\x06\xfd\x48\xb1\x08\x25\x62\xd8\xc8\x69\x7f\x03\x6f\x2e\xf1\x51\x67\xb9\x61\x99\xab\x1c\xfb\x88\x19\x35\x33\x31\x59\x3f\xa9\x9a\x6e\xe8\x9e\xe0\x0d\xd9\x62\xea\xc2\x08\x9e\xe3\x50\x8d\x6f\x0a\x2d\xc2\x7a\x3f\x64\x55\x4f\xdd\x11\xd9\x7a\x1d\xef\xad\xf6\x3a\x86\xe2\xe8\x5e\xdc\xe0\x70\xec\x1e\xd0\x90\xbf\x5f\xc8\x78\x39\x96\x4c\x3a\x8a\xc6\x63\xec\x8a\x23\x8a\xa8\x0f\xa2\x0e\x00\x4c\x55\x45\xe3\x71\x08\xfc\x71\x1b\x1a\x35\xef\x60\x78\xc7\x84\xf6\xbe\x70\x6e\xbe\x8e\x1c\x39\xce\xb3\x32\x4f\x65\x5f\x16\x45\x5e\xb4\x5b\xaf\xf5\x9d\xfe\xe7\xa3\xa1\x38\xca\x2e\x94\x88\x24\x9e\xd1\x14\x08\x64\x71\xf3\x65\x49\x81\x73\xf5\x6d\xd3\xac\x7e\x97\x5b\xbf\x69\xb2\x69\xd5\xb1\x5f\x3d\xe9\xc7\x2e\x7c\x78\xc9\x85\xef\x7e\x7e\xb0\xb9\xff\xf9\x01\xad\xfb\x81\x5d\xf8\x03\x5a\xf9\x03\xfa\xe9\x78\x9c\x33\x9f\xf3\x83\xfa\xfa\x1f\x9c\xf1\xb1\xe8\x3f\xa3\xf1\x98\xfc\xcd\x31\x2e\x1e\xb8\x97\x9b\x8c\x00\x02\xd4\x94\x6c\x9e\xf8\x1c\xb1\x1a\x1f\x32\xee\xcd\x1d\xe3\xdf\xc0\x89\xe2\x6d\xbe\x58\xc8\xe2\xff\x67\xf2\xc0\xcf\xfe\x3f\x5d\xad\x14\x90\x87\xa9\x0e\x2e\x90\x48\x92\xb7\xd2\x51\x7d\xb4\x3e\x18\xc1\xfc\xf8\x52\xe5\xf4\x11\xce\x61\xa3\xa9\xc2\xdf\x3c\x9a\x7d\x88\x6f\xf9\x9a\xad\x60\xa6\x7f\x89\xea\x6c\x92\x26\x8b\xb7\x69\x34\xc6\x6b\xcb\x42\xff\x45\x26\x11\x4c\xdb\x82\xc8\x75\xcc\x94\x04\x43\xb1\xc8\xb9\xec\xdb\xa4\x4f\x9f\x44\x2b\xad\x8a\x96\x73\x03\x33\xe5\x14\xc7\x51\xa9\xfe\xcb\xa6\x69\x95\x33\x52\x0c\xd7\x29\x6c\x97\x4c\xa9\x71\x54\x4a\xd1\x3a\xcf\xab\x2a\x9f\xf7\x64\x16\xb7\x86\x1e\xc7\xd4\x69\x60\x07\xd8\x32\x96\x00\x4e\x39\x4c\x6b\x2a\xa9\x6a\xf5\xca\x29\xf1\x33\xd8\x98\x4a\x08\xb6\x64\x13\x82\x65\x9c\x36\xe8\xb8\xf3\x33\xd6\x66\xe6\xc6\xd7\x7b\x3e\xcb\xc6\xb3\xbc\x78\x91\xb6\x23\xfa\xc3\x75\xc9\x21\x8e\xaf\x13\xeb\xfa\x4e\x9d\x02\xea\x4e\xfd\xe3\x5f\xa7\xab\x04\xca\x22\xcf\x4d\xd8\xde\x6f\xd0\x59\x4d\xdd\x27\x6f\x1c\x5d\xa6\x4a\x2c\x45\x21\xd3\x6b\xed\xe1\xfd\xb0\x88\x95\x44\x5b\x5d\x8b\x34\x39\x2f\xa2\xe2\x1a\x3c\x6a\x90\x45\x58\x67\x18\xc3\x35\x6c\x38\xe1\x8b\xfd\x41\x07\xce\x8e\x45\x6e\xe0\x39\x7c\x35\xa5\x2a\xb4\x8d\x9a\x52\xe5\x0f\xab\x29\xed\xdc\xeb\x90\xa2\xf4\xc1\xaa\x29\xff\x87\x29\x32\x29\xf1\x83\x94\x8b\xd7\x24\xf9\xeb\x7e\xb0\x6f\x26\xbb\x9b\x2f\x54\x78\x45\x0f\x42\x15\xce\xf3\x38\x99\x24\x8a\x5c\x0e\x4d\x7c\x52\xfa\x62\x95\xad\x0b\x36\xdf\xea\x87\xdf\x7b\xb3\xf5\x4c\x2e\xcb\x1c\x8d\x4c\x85\x18\x03\x6f\x59\xd6\x7a\x69\xc7\xf5\x05\xf9\x0b\x73\x7e\xa9\x57\xaa\x13\xbc\xed\x40\x7d\xe0\x5f\x4d\x11\x3f\x6f\xb8\x0a\xde\x91\xe0\x9e\x1b\x06\x0b\x7a\xad\xbc\x93\x13\xc7\x1f\xca\x7c\xdd\xca\x91\x88\xdb\xf6\x91\x2f\x91\x7d\xad\xd4\x99\x9d\x5c\x81\x92\x2b\xc8\x22\x50\xdb\x16\x8e\x3b\x7a\x87\xa2\x9b\x8c\xeb\xc6\x63\x36\x9e\xe3\xd5\x83\x3b\x00\x3f\x31\x92\xd4\x00\xcd\x44\x7d\xe4\x9d\xb3\xd0\x75\x99\xc5\xa7\x9f\x7c\xda\xf9\x27\x40\x48\xf6\x3d\x79\x2c\xe6\x8d\xe7\xb3\x83\x9e\x86\x6b\x1d\x60\xf2\xcb\xba\xf3\x8b\x2d\xeb\xb9\xbe\x98\x7e\xac\xae\x13\x95\x9b\x6f\x59\x66\x56\xb9\xa5\x14\x97\x94\x1a\x8b\x07\x9a\xf3\x72\x6c\xa1\x8f\xae\xd7\xcd\x6c\xfe\xbc\x44\xa3\x0d\xf7\xbe\x93\xfe\xdb\xf4\xe8\x68\xbe\x90\x45\x54\x25\x17\xf2\x47\xc8\xd8\x76\xc6\x15\x8c\x49\xa3\x0f\x76\x9d\x51\x77\xc2\xb5\xea\x3b\xdd\xf4\xa9\x07\xe2\xb9\xdb\x08\x88\x06\xab\x7c\xe5\x3b\xcf\x8b\xa6\x6c\xce\x23\xcf\x0a\xbf\xad\xa2\x72\x78\x9e\x2b\x43\xfa\x4c\x51\x8b\x92\x4f\x5c\xed\x91\xe5\x90\x54\x20\xf9\x4d\xeb\x73\x41\xff\x73\xbe\xac\x08\x14\x30\xca\xa6\x60\xdd\x90\x64\x53\x91\x26\x13\x09\xe6\x01\xc9\xc4\xb2\xf9\xbe\xea\x80\xd6\x80\xb9\x5f\x45\x52\x0a\x59\x96\x32\x53\x2d\xa4\xd7\x22\x82\xce\xc2\xe1\xaf\x36\x72\x91\xa7\xa9\x8c\x07\xcb\xcc\xfe\x30\x2a\x35\xa3\x3e\x6a\x58\x8c\x83\xfa\x6a\xf0\x79\xb1\xab\xc2\x4f\x12\xbf\x0e\x6f\x65\xde\xae\xca\x6a\x56\x67\x03\x1b\x53\xd0\x10\xf8\x34\xc6\x6e\xb4\xb5\x34\x8a\x7f\xd9\x5e\x6d\x10\xfc\x06\x4f\x4d\xd3\x81\x80\xa5\xbe\xfb\x36\x67\x19\x0a\x37\x9d\xfd\xc2\xc8\x44\xea\x87\xe2\x87\x35\xb5\x47\x50\xe5\xb1\xd5\x80\x62\x59\x56\x45\x7e\xcd\xc2\x25\x35\xb3\x80\x36\x7f\x2e\x73\xa2\x4f\xf0\x32\xf5\xe0\xc2\xf5\xd4\x76\x1c\x55\x91\xfb\xa0\x67\xb7\x86\x4a\xb3\x62\x44\xa7\x16\xa6\x06\x81\x30\xca\x3c\xbd\x90\xf1\x33\x2b\x36\x06\xc5\x7c\x3f\xb4\xfc\xd6\xca\xa0\x5a\x43\xbb\xbb\xb5\xc6\xe1\x09\x01\xd1\xe1\x0f\x0f\xc5\x7e\xcd\x11\xf0\x3c\xbf\x12\x87\xf5\x52\x53\x59\x7d\x9f\x2f\x21\xea\xd2\x73\x70\x24\x78\xa7\xc8\x94\x87\x09\x5b\xd7\xed\x4a\x96\x15\xd8\x90\x9e\xe7\x57\xfd\x2a\x47\x77\xdd\x3d\xfd\x21\x95\x93\xca\xfd\x82\x21\xde\x9c\x4f\x28\x6a\xe1\x37\xdf\xbd\x8e\x14\x5c\x97\x51\x91\xb5\x4f\x5c\x05\x17\x3c\x6a\xe8\x59\x26\xf0\x1c\x8e\x95\xee\x42\xdf\x26\xa5\x48\x50\x23\xd6\x6f\x75\x45\xeb\x3d\x78\xa7\xa9\xb2\x06\xca\x1e\xe3\x64\x01\xe2\x7a\x54\x98\x07\x08\xf3\x84\x91\xc2\x0d\x49\x15\x3e\xdd\x79\xcd\x22\x5a\x49\x53\x01\x28\xc4\x65\x89\x9c\xd2\x2d\x0c\x86\x5e\x51\x85\xca\xfd\x2c\xaf\x94\x40\xbf\x48\xa3\x6b\x91\xe5\x99\xec\x9f\xee\x68\xe7\x82\xd3\xd3\xac\xd5\x59\xe9\x0c\xc8\x29\x70\xa1\x2f\x3f\x99\xbc\x34\x3a\x98\x76\x90\x08\xbb\xa2\xbe\xc1\x43\xf6\xc7\x86\xe6\x87\xce\xd9\x41\x8d\x77\x5d\x01\xd6\xf5\xbd\x41\x66\xce\x6d\x97\x6f\xbc\x07\x5f\x0d\xae\xc2\x96\x78\x30\x10\x47\x6a\x4e\x96\x25\x04\xfe\x02\xac\x98\xb7\xf8\xf8\x71\xce\x9e\x9a\x28\x56\x98\x86\x1d\xbc\x48\xe4\x25\xe8\x51\x00\x40\x09\xcb\x46\xf4\xd2\xd2\xb7\x95\x2f\x0a\x40\x23\x7c\x43\x71\x07\x86\x2e\x6d\x9d\x2b\xc2\x8f\x8a\x44\x96\xa4\x7c\x1a\x8a\x16\x5e\x94\x5b\xa1\xf9\xef\xda\x31\x7a\xd3\x60\x2f\x2d\xf6\x28\x19\x0c\xc4\x2f\x8a\xfc\x14\x45\xc1\x43\x1b\x3c\xaf\xe8\x9e\x12\x3c\xa5\x2e\x87\x00\xc2\x68\xf0\x45\x6b\x9a\x94\x22\xce\x0d\x30\x33\x56\xf8\xfd\x52\x11\x90\x28\xa5\x9c\x97\x14\xca\x94\x1e\xdf\x64\x59\x89\xc5\xf2\x3c\x4d\xc6\xe2\xd9\xdb\x23\xb2\x2b\x44\xb4\x0b\x50\x71\x98\x5a\xf2\xec\x39\x28\xb0\x86\x0d\x5a\xfa\x3a\x9b\xf4\xc7\xaa\x6b\xe8\x30\x6b\x18\xcc\x79\x97\x3a\xf1\x3b\xc5\xcb\xb8\x31\x3b\x60\xc5\x39\x80\x35\x74\x8c\x34\x66\xee\xea\x2e\xc9\x39\xab\x06\xb7\x47\x87\xae\xbd\x9e\x9c\x85\x5d\xc8\x57\x9d\xa2\x8e\xbf\x1b\xd9\x75\xa0\xc0\x8e\xbe\xd4\xee\x50\xd4\xb1\xdc\xb6\x9d\xd6\x19\x6d\xa2\x23\x54\xba\x5e\xba\xde\x59\x86\xbe\x84\xbc\x69\x0a\x98\xc8\x30\x32\xeb\x4e\xc3\xcf\xd3\xbc\x0c\x1c\x8c\xf0\xd9\x93\x08\x56\x1d\xe2\xe1\xa3\x7f\xfd\xd1\xbe\xd1\xc1\x1e\x70\x75\xd6\x72\xb0\x3f\x07\x38\xe2\xc0\x24\x80\xb8\xed\x34\x4a\x43\x74\x5a\xb8\xa3\x0f\x50\xbd\xe2\x80\xd7\xcf\x86\x32\x20\x08\x57\x18\xd9\xcd\xdc\x17\xdd\x70\xe2\x6f\xcc\xa3\x9f\x33\x29\xf0\x02\x38\x06\xd3\xdf\x59\x52\xf6\x57\xf6\xcd\xd0\x1d\x6c\x04\xdb\x90\x63\x89\xf3\x05\xd7\xe8\xa8\x0e\xe9\x9e\xb5\x59\xd7\x94\x3c\x88\x97\x98\x8e\x3f\x55\x26\x3c\xd8\x8d\x5d\x46\x27\x94\x12\x65\x67\x47\xcd\x82\x9f\x33\x37\xac\x2f\x81\xb9\xb0\x55\xf5\xeb\x8e\xe2\x56\x6e\xca\x86\xc2\x51\x16\xad\xf0\x67\x6a\x72\x3c\x72\x16\xd4\x79\x34\x5c\xeb\xc2\xa5\x99\x8f\x86\x0b\x73\x9f\xeb\x43\xca\x38\x66\xd8\x60\x15\x17\xb8\x5c\x6b\x5b\x3b\xdd\x89\x93\x8b\xd3\x9d\xfa\x79\xee\xda\x31\x51\x4b\x45\x9e\xca\xa1\x38\xdd\x21\x81\xe0\x74\xe7\x94\x79\x3a\x99\x2e\x37\x3a\x22\x0d\x06\xe2\x2d\x9e\xab\x25\x9d\xd7\x22\x29\xcb\xa5\xec\x8a\xcb\x08\x1d\x8d\xd5\xf1\x63\xf4\xbb\x60\x49\x1e\xc7\x78\x1e\xa1\xc2\x09\xec\x0f\xf0\x2e\x59\x69\x6c\x44\xe0\x1e\x14\x3b\x48\xb4\x26\xc9\x95\x8c\x5b\xfc\x30\x7d\x99\x5c\xb1\x3a\xb5\xf4\x04\x0d\x1b\x25\x54\xbe\xe0\xbe\x51\x4a\xf4\xe4\xbf\xa9\xcc\xd0\xd2\xb3\x4f\xe7\x8c\xba\x9f\x12\xb0\x94\xe0\x01\xa5\xb4\xff\x93\x8e\x10\xb3\x45\x70\x29\x37\xa8\x94\x35\x57\xbb\x8d\x3d\x17\x4c\xc2\x1f\xf6\x5c\xf7\x6e\xcf\xe5\xdb\x5b\x9d\x98\xa0\x57\x6f\x40\x0f\xb9\xee\xa5\xe2\x4b\x2f\x7f\x47\x9b\x3b\xe5\x85\x88\x36\x32\xd3\x22\x49\x18\xaf\x2f\xa5\xac\xc8\x7e\x88\x68\x52\x9b\x6d\x63\xe3\x54\xe4\x3d\x98\xd5\x00\x53\x42\x1c\x7c\x63\x10\x82\x88\xe2\x64\x76\x43\xc1\xbb\x50\xa1\xaa\x6b\xa2\xb7\x13\x6d\xea\xe4\x84\x6b\x20\x69\x6a\xe8\xbd\xda\xb6\x83\x8e\x1c\x2b\xec\xa8\xc8\xf0\xab\x6e\x32\xc5\x4e\x54\x17\xfc\x9e\xae\x9b\xa4\xec\xf7\x82\x86\xae\xb9\x73\xbb\xcf\x36\xfc\x1a\xfb\x1f\x7e\x8f\xd6\x47\xb3\xbc\x14\x2f\xc0\x56\xe4\x3f\xfb\x2e\x8d\xc0\x07\x20\xec\xd4\x88\xc2\xe2\x76\xd6\x56\x19\xb1\x16\x7e\x49\xe2\x6a\x86\x8b\xa6\xc1\x3c\xd7\x96\x41\x7c\x86\x8d\x0b\x05\xc9\x69\x95\x21\xd0\x67\x5d\xdf\x23\xbe\x9e\x51\xe6\xb0\x49\xc3\x3d\x90\xcb\x79\x2c\x50\xa8\xe2\xdb\xb2\xcd\x7e\xab\x61\x05\x1b\xec\x8f\xac\xbc\x59\x37\xc4\x24\x16\x47\xa6\xb9\x36\x3c\x74\xc1\x43\xf9\x35\x99\xe5\x9e\xde\xd6\xae\xd4\x33\xec\xad\x31\xbf\x55\x91\xc2\xfe\xb0\xfa\xfd\xc3\xea\xf7\x7e\xac\x7e\x9f\x21\xe4\x96\x92\x72\x5d\x6b\x5f\x62\xa8\x3f\xbc\x79\x6d\xbb\xa5\x8d\x79\xad\x79\xee\x64\x99\xaa\x9c\xc7\x2f\xde\x88\x32\xa9\x96\x14\xea\x48\x47\x00\x00\xc5\x1b\x8f\x02\x37\x8f\xae\x92\x79\xf2\x9b\x24\x89\xa3\x5c\xe4\x59\x99\x5c\xc8\x8c\xc5\xed\x7a\xcb\x25\x17\x18\x10\x93\xc0\xd7\x0e\xc7\x4a\xff\x49\x69\x7d\x4e\x23\x78\x9c\x5d\x4e\x93\xac\x97\x26\x1f\xe4\xe9\x8e\x50\xb3\x96\x54\x72\x5c\x2d\x0b\xa9\x49\x4f\xd3\x56\xa2\x04\x4d\x19\xa9\x24\x94\x67\x27\xcb\x34\xbd\x16\x32\x1b\x47\x8b\x12\xbc\x5b\x63\xf7\x15\xd8\xdd\x06\xcf\xac\xc6\x2e\x29\x6b\x32\x5d\x52\xea\x88\x8e\x32\x1a\xcf\xd0\x37\xd6\x76\x3a\x93\x32\x56\x97\x21\xaa\x4a\x6d\xeb\x65\x25\x37\x90\xf0\x5e\x6a\x65\x5e\x21\xa3\x32\xcf\x98\x42\x8b\x71\xe5\x0b\x59\x5c\xeb\x10\x6b\xb4\x20\x11\xbc\xb8\x2b\x99\x20\x95\x99\x1c\x7f\x30\xae\xc4\xef\x73\x91\x4a\x25\x5e\x83\x3b\x7a\x6e\x2d\x8e\x75\xc5\x20\xfa\x46\xe8\x1c\x6f\x1b\x73\x80\xde\xd7\xca\xc2\x56\x25\xea\xc6\xd0\x33\x5a\xe2\xb5\x9e\xd2\xcc\x71\xde\x4e\x8a\x9a\x64\x80\xb3\x48\x1d\xfe\xa0\x24\x45\x9f\x80\x56\x31\x59\x3a\x16\x8c\xda\x81\xd7\xc5\xd4\x12\x75\x07\x65\x66\x75\xd6\xf5\x2c\xd4\xcc\x6f\xf5\x97\x92\xd7\x74\x2e\xf8\xdb\xe4\x51\xbf\xd4\xbf\x20\xbf\xe9\x2c\xf8\xc3\xe4\x81\x9f\xea\x0f\x6d\x7d\xd6\xe5\x36\x6a\xf8\xa3\x15\x60\x40\xda\x3c\xc4\x3f\xd9\x4f\x46\x66\x95\x46\xeb\xed\xad\x42\xf7\x01\x47\x4b\xba\xc1\xe2\x3d\x03\x5b\x7f\xd8\x16\x8b\x3c\xc9\x6c\xb0\x2e\xb8\xdd\x2c\x9a\x2f\x1e\x46\x85\x38\x34\xf6\xa1\xf7\xe7\x7c\xff\xa3\x4c\x17\x10\xaa\x24\x2f\x2a\x54\xc4\x37\x44\xb6\x65\x28\xb3\x41\x30\x08\x16\xe8\xd8\xa3\x3a\xcf\x4b\xa1\xe6\x16\xa0\x46\xf7\xe4\x3f\x0d\xa9\xfd\x57\xb4\x38\xa4\xc4\x4d\x3a\xea\x16\xd8\xca\x60\xf9\x5e\x7d\xe9\xc7\x69\x79\x45\xe9\xea\x4f\xc7\xfe\x38\x96\x72\x31\x97\xc5\x54\x76\xb5\xb4\xf6\x6c\x3c\x96\x0b\x45\x59\xef\xe4\x64\x53\x2b\x66\x08\x6c\x7b\x53\xc3\x91\x1f\xe7\x69\x5e\xbc\x8e\xb2\x64\xa1\x8e\xa5\xbc\x60\x65\x94\xc4\x70\x8c\x90\xeb\x7e\x29\x9b\xc4\xc7\x10\x2d\x92\x0a\xac\x36\x6a\xc6\xcc\x26\x85\x65\x07\x40\x71\x93\x51\xfd\xaa\x19\x7a\x73\x23\x6a\xf5\xfb\x16\x86\xcd\x36\xfb\x51\x5c\xcb\xa9\xd1\x5c\x20\xf5\x56\xc6\xd5\x47\xe5\xcb\x7c\xbc\x2c\xff\x81\x47\x45\xa0\x2b\x6e\x06\xb7\xf0\x73\x6b\x62\x52\x2f\x68\x13\xb7\x0d\x07\xc0\xcc\x81\x0b\x75\xb9\x0b\x01\xf3\x03\xe0\x3e\x4b\x15\x0f\xc4\xbe\x7c\xdc\x11\x03\xf5\xcf\x13\xdf\xaa\x38\x2a\x8a\xfc\xf2\xef\xa8\x92\xcb\xcd\x5b\x90\x1b\xa9\xa2\xb5\x7b\x72\xd5\x33\x67\xda\x83\xc3\xd3\x1d\x3c\xa5\x4e\x77\xce\xc4\x9f\xa0\x82\x16\x7b\x17\x5d\xa3\x43\x9d\x47\xc5\x34\xc9\xde\xab\x4c\xad\xde\x5e\xff\xeb\x7d\x39\x6f\x79\x89\xaf\xa0\xc8\x23\xef\xeb\x3b\x75\xa2\xf1\xcf\xad\xdd\xe1\x10\x63\x22\xb5\x9c\x67\x59\x83\x67\xf5\xa6\x48\xa6\x49\x36\x14\xad\x3d\xb1\xbf\xb7\xf7\xe7\x96\x7f\x09\xec\x36\x0d\xaf\xca\x17\xe1\xb1\xe1\xb8\xd7\x0f\xef\x7b\xca\xf7\x2f\x1b\xa1\x1a\x9f\xd8\xdb\x7c\x84\x20\x1e\x84\xc7\x18\x1e\x11\xf6\xb8\x3e\x1e\x04\x6c\x51\x3d\xe0\x5f\x2f\x93\xb8\x9a\xa9\x89\x0f\x8e\x1e\x16\xdf\x1f\xbc\x9e\xb2\x5b\x8f\x7e\xbb\x25\x56\xa3\x0c\x8f\xbf\xc0\x01\xf9\x13\x40\x8b\xf3\x3b\x9d\x81\xbd\xc0\xe2\x9f\xea\xa8\x2e\xcc\xb9\xd0\x89\xb5\x61\x03\x33\xc1\x97\x36\xf7\x02\x71\x39\xc0\xe0\x81\xa0\xe3\x22\xb2\x41\xda\x98\xfe\x97\x45\xf6\x46\xe9\x46\x4b\x61\xac\xdb\xbf\x1d\x65\xb1\xbc\x1a\x92\x1b\x09\xfe\xea\xd3\x03\x12\x33\x3b\x86\x20\x15\x10\xc8\xb1\xd4\xa1\x39\xc4\x60\x60\xc2\xee\xfe\xb3\x2c\x7b\x45\x95\x0a\xbc\xb0\x69\x35\x8e\x8e\xe1\xb9\x45\x4f\x45\x02\xc1\x9f\x2b\x59\x44\xe3\x2a\xb9\x90\x3a\x9e\xb8\x3f\x82\x23\x9b\x65\xc8\x2d\xd0\xdc\x7e\x02\xea\xd0\xdd\xfa\x02\x84\xd8\xd4\x8b\x67\x2a\x71\x58\xe3\xd6\xeb\x9b\xa2\x09\x16\xed\x54\x09\x4a\xe2\xb2\x88\xc0\xe6\xc1\xc0\xb0\x99\x76\x28\x23\x67\x76\xd1\xf8\xc3\x14\x0e\x92\xe7\x4a\x92\x18\x82\x9c\x81\x44\xd2\x5f\x44\xa9\xac\x2a\xd9\x9f\x16\xf2\xfa\xe4\xeb\xbd\xbd\xb3\xae\xd8\xeb\x7f\x6b\x0d\x3a\xce\xf3\x22\x96\xc5\xbb\x28\x4e\x96\xa5\x5e\x72\x00\x5d\xea\xf3\x14\xe6\xf2\x00\x0d\xb8\x75\x8f\xf3\xf9\x3c\xcf\xfa\x97\xea\x2a\x6e\x72\x4e\xf2\xac\x7a\x19\xcd\x93\xf4\x5a\x67\xaf\xae\x17\xf9\xb4\x88\x16\xb3\xeb\xbe\x4d\xb4\x04\x15\xc5\x31\xc0\x71\xb5\x1e\x2d\xae\xc4\x37\x8b\xab\x96\x53\xd5\x71\xf2\x9b\x0c\x54\xb4\xb8\x7a\x9f\xbf\x93\xf3\xf6\xfe\x9e\x1d\x52\x9a\x64\xf2\x47\xda\xeb\xa7\x3b\x36\xec\x0d\x1e\xb5\xfb\x8f\xd4\x01\xbb\x07\xc1\x6d\xe4\xfc\x74\x87\x41\xb2\x44\x57\xbf\x20\x33\x30\x61\x8b\x15\x7f\xc8\x8b\xf8\x97\x22\x52\xa7\xe0\x79\x21\xa3\x0f\x3d\xf5\xc1\xed\xdb\x2f\xd4\x58\x70\x98\x98\xf8\x5a\xc6\xc9\x72\xbe\x31\xdd\xad\x21\x86\x55\x64\x48\x45\x89\x0e\xd9\x3e\x30\x0f\xae\x85\x4c\xc1\x3a\xda\xe7\x75\x8a\x3b\x6d\xbe\x35\xa0\xf9\x3a\x75\x46\x5e\xbb\xb9\xb1\xc7\xd2\x68\x93\xdd\x40\x97\xa2\xf3\x32\x4f\x97\x95\xac\xb3\xe5\x30\x07\x27\x66\xad\xbf\x0f\x1e\x88\x43\x2c\x21\x06\xa2\xfc\xaf\xa2\x6a\x1f\x74\xc4\xa1\x68\x13\xee\x3f\xa9\x5a\x66\xd7\x8b\xbc\x92\xd9\xb2\x94\x1d\xd3\x5d\x21\xd8\x4e\xb8\x3a\x4e\x7e\x43\x12\x44\xda\xef\x9d\xe7\x8c\x0a\xc7\x5b\xef\xad\xa6\x53\x81\x10\x16\x87\xa2\xa5\xc8\xb3\xc5\xd0\x3b\xcd\x42\x00\x9b\xe2\x90\xd4\xfa\x41\xbb\x75\x9e\xe6\xe3\x0f\x3c\xc9\xcc\x94\x3a\x56\xd9\x77\x7b\xdc\x79\x09\x35\x76\xd1\x22\xb3\x1c\xf8\xd9\x0a\x03\x8e\xb6\x8a\x1c\x8c\xa9\x1f\x3d\x8e\xe5\xb4\x13\x3a\xbe\xef\x4e\xd2\x3c\x5b\x52\x82\xa2\x87\x02\x38\xe5\xcb\xf1\x8c\x93\xf8\x72\x3c\xe3\xb4\x6d\x58\xc7\x37\x8b\x2b\xb1\xff\xd5\xb6\xbc\xe3\xd1\xc6\xbc\xe3\x2b\xc5\x3b\x1e\x05\x78\xc7\x86\x6c\xe0\x9d\x9c\x2e\xd3\xa8\xb8\x57\x3e\x60\xa4\xa5\x91\x56\x9d\x97\x42\x8b\x4d\x35\xb6\x60\x8c\xe1\x50\x4c\xf4\x2e\xeb\xd6\xf0\xa3\x2e\xb8\xe0\x1b\xe4\x18\x63\x28\x04\x38\x87\x38\x50\x7c\xdb\xf0\x0f\x9a\x05\x60\x99\xa8\x15\xea\x2f\x17\xed\x56\x39\x6f\x75\xb8\x25\xa9\x2d\xbe\xff\x68\x71\xc5\x91\xdc\x3f\xdb\xcc\x90\x44\xdd\x3c\x35\x24\x40\x6e\x31\x37\xf0\x62\xbb\x66\x6a\xfe\x0d\x66\x06\x6e\x53\xcd\xf3\x02\xb2\xf0\x16\xb3\x82\x13\x22\xb4\xa2\xb4\x36\x32\x20\x98\xbd\xdb\xce\xcb\xbe\x53\xfa\xb3\xce\x8b\xbe\x44\x37\x4f\x8d\xbe\x11\x6c\x3f\x3b\x55\xbe\xf8\xdc\x53\x63\xae\x17\xe4\xd9\x3b\xbb\x2e\x2b\x59\x94\x49\x49\x7e\x23\x60\x43\xea\xa7\xbd\xa7\x18\x53\xf4\xe0\xea\x07\xf2\xac\x64\x59\xbd\x93\xa5\xac\xb4\x22\xa2\xa9\x52\x0f\x3c\xdd\xad\x9f\x10\x55\x54\xc3\x14\x9e\x6f\x73\xe7\x5e\x2a\x10\xf6\xee\x25\x7f\x43\x94\x51\x8c\x87\xaf\xfa\x65\xe6\x5a\xa7\xb9\x59\x57\x38\x2f\xba\xc5\x37\xf0\x0e\x4e\xa3\xb2\x94\xd6\x49\x94\x7e\x37\x78\x06\x83\x86\xea\x55\xe2\xbb\x06\xd3\x67\x07\xd8\xdc\xbc\x0d\x3a\x89\x35\x47\x61\x53\xe3\x7a\x4f\x61\xca\xda\xd0\xb5\x1f\x95\x0c\x57\xef\x1a\x7d\x0e\x77\xcd\x49\xac\x75\xcd\xd4\xb8\xbe\x6b\x94\xb5\xa1\x6b\xef\x95\x24\x50\xef\x1a\x7d\x0e\x77\xcd\x49\xac\x75\xcd\xd4\xb8\xbe\x6b\x94\xd5\xef\x1a\xec\xeb\x1f\x28\x84\x08\x76\xcb\x7e\xb2\x4e\x81\x3c\x57\xa0\x24\x6f\x7e\x7f\x6f\xcf\x36\x1e\xa8\x8b\xa7\xfc\x24\xaf\xaa\x40\xe3\xe6\xb3\xdb\x01\x9e\xbb\xa1\x16\xde\x11\xbf\x1b\xf5\x5a\x79\x2a\xcc\x8f\x4a\x76\xbb\x62\x3e\x7b\x7d\xb1\xdf\xbd\xce\xb0\x7a\x78\x67\xbe\xae\xcd\x8a\xc9\x68\x5d\xc1\x63\x37\x4a\x64\xec\x77\x94\xe9\x15\x58\x2c\x49\xf3\x8d\xf9\x94\xf3\x7c\xa1\xc2\x2b\xe8\x25\x54\x21\x25\xa5\x32\xba\x90\xee\x7a\xd9\x4f\x4c\x77\xc9\x72\x05\x4a\x36\xac\x51\xa0\x26\x9e\x52\x5f\x1f\xf7\xb3\xd7\x7e\x68\x7d\xfc\x7a\x1c\xaa\x7d\xbc\xe7\xf7\xa5\xbe\x40\x79\xa6\x9d\x14\x34\xb4\x2a\xfc\x66\xe9\x6f\x1c\x48\x00\xf8\xe9\xc0\x05\x38\x0b\x7c\x5b\xc8\x80\xc5\xe7\xc0\x0a\x40\xe5\x91\xb6\x2a\x31\xad\xbb\x9f\x6d\x29\xef\xbb\xed\x89\x5f\x0f\xef\x0e\x29\xa8\x86\xe1\xbc\x5e\xdd\xda\x70\x9e\xf7\x03\xbe\x59\xdf\xfe\xa4\x62\x20\x01\xf0\xcb\x1f\xd5\xbf\x32\x00\x28\x3c\x4f\xad\x0b\xfd\x59\x77\x0c\xf0\x7b\xe4\x8e\x71\x1b\xc4\x01\x75\xe4\x07\xe1\x06\xf0\x2c\x77\xc0\x06\x9c\xd3\xd8\x49\x71\x0e\x43\x27\xc5\x39\x8b\x30\xc5\xf2\x77\xf6\xdb\x30\x5a\xf6\xcd\xee\x47\x0a\x56\x1a\xeb\xa0\xa5\x86\xdb\xe0\x07\xcb\x06\xd8\x6f\xbf\x34\x6d\x3c\xfd\xe3\x8d\x41\x43\x68\xc4\x45\xf0\xe8\x95\x7f\x84\x09\xd7\xa1\x4d\x2b\x8d\x8d\x10\x0c\x6c\xea\x26\x50\x41\x17\x39\x21\xe4\xf1\x7e\xba\xa9\x2b\x7e\xc7\x95\xd8\x36\x42\x5c\x7e\xbe\x22\xa7\xe3\x8c\xbf\xde\xf7\xdc\x05\x7d\x06\x7a\x42\x37\xb3\x35\x2e\xe7\xcf\x56\xe4\x74\xba\x80\xf6\x11\x3f\xe5\x19\x2c\x28\xaa\xb9\x7d\x78\x06\xe6\x24\x06\xfe\x39\x6a\xa1\xdf\xaf\x8e\x21\x8b\x14\xb6\x3a\x0f\xd2\xd1\xea\x3c\xa0\xaa\x69\xcc\x63\xe6\xd1\x7d\x88\x3d\x74\x1f\x66\xf5\x2d\xca\xa2\x01\x0c\x0d\xe7\xa7\x39\xd3\x40\x4d\x78\xf2\xd2\xc7\x2c\x9a\xcb\xa1\x68\xd1\x45\x41\xdf\xb2\x20\x9c\xcd\x50\xb4\x54\x0d\x18\x4b\xdc\xae\x8f\xdb\x8f\x50\x58\x53\x27\x83\x13\xe0\x54\xd5\xa7\x69\xd0\xab\xc7\x5b\xdb\x37\x2b\x72\x3a\x6b\x4b\x68\x38\xa6\x66\xe6\x2b\xb5\x9d\x6b\xf9\x0a\x34\x4c\xb2\x8a\x99\xe5\xf9\x87\x72\x50\x2c\x53\x59\xf6\xf2\x09\xfe\xc4\xb2\x2e\x9d\x07\xc0\x3f\xcc\x21\xfc\x85\x13\x3a\x95\xa9\x11\x93\xd2\x59\x5c\xa7\x36\x83\xb4\x71\xeb\x4e\xea\x8b\xff\x06\xbe\x77\x14\x40\xd7\x6c\xef\xdd\x5d\xcb\x15\xf4\xdd\x01\xdd\x83\x9c\x2e\xef\xee\xd2\xc1\x08\x13\xdc\x72\x8b\x55\xd1\xf4\xa7\x68\x2e\xfb\x55\xfe\x2a\xbf\x94\xc5\xf3\x08\x7c\x2b\xc1\x3b\xe8\x7c\x59\x55\xab\x51\x1c\x3d\xcb\xed\xff\x9d\x2f\xc1\x52\x11\x6d\xba\xd0\x6a\xc9\x74\x6b\x84\xd5\x8d\x28\x70\x0d\x69\x35\xf4\xbd\xd9\x3e\xec\xb5\xba\xa2\xf5\xcc\x16\xd3\xea\x8d\x38\x97\x68\x41\x3f\x49\x0a\x29\xd0\xa7\x0b\x8d\xf2\x75\x15\xda\x6a\x51\xa4\x70\x20\x19\x53\x71\x68\x8e\xaa\x69\x95\x54\x54\xa5\x6a\x5b\x7c\xb4\xe2\xad\x52\xd9\x57\xfc\xbc\x05\x1d\x88\x63\x08\x5b\x32\x5f\xa4\x52\xab\x5a\xac\x9d\x73\xb9\x1c\xcf\x44\x54\x8a\x48\x8c\xca\x45\x94\x8d\xd6\x5a\x81\x77\xc5\x09\x0a\x23\x76\xe2\xbb\x0e\x59\x91\xff\x25\xf3\x42\x4c\x88\x8f\x1c\xc5\x6d\xbc\x05\x6c\xec\xa1\xb9\x71\x24\x38\xcb\x48\xfd\x70\x70\x5e\x46\xcb\x4d\xd7\x64\xb4\x2c\x75\x4d\x46\xcb\x57\xd7\x44\xa2\x3b\x0d\x21\x85\x78\x9e\xb5\xe0\xa8\x0c\xcb\x6a\x1d\x2f\x57\x2b\x6d\x54\x16\x5f\xe3\x03\xd1\x51\xd4\x2e\x7e\x0f\xa6\xa4\xcb\x52\x2a\xb1\x07\xc9\x05\xcd\xd1\x29\xfe\x11\xf8\x0c\x4a\xb0\x62\xcd\x64\x59\x31\x1a\x25\x63\x65\xd2\xae\xf5\x0d\xf3\xfa\x05\x11\x01\xca\x0f\xc9\x42\x14\x12\x0d\xfc\xd5\xee\x00\xc3\x64\xef\xd5\x20\x4a\x21\x08\x08\x70\x4d\xa7\x06\xb5\xb1\xd0\x27\xbf\x0a\x74\x90\xe0\x89\xf5\x5b\x11\x24\xa3\x86\x0e\xd3\xab\x5c\x4c\x92\x2b\x11\x89\x59\x12\xcb\x01\x44\x77\x02\x87\x44\x13\xd0\x98\x33\x76\xe3\x91\x8c\x49\x08\xba\xff\xc6\xf5\x70\xc2\x0f\x34\xed\xa1\x98\x85\xdb\x3a\x85\x53\xf8\x74\x08\x75\x55\xc7\x5c\x15\xdf\xa1\xef\x90\x05\x49\xdd\x3b\x73\x39\xb6\x78\xea\x26\x0e\x75\xbc\x9b\xe0\x9e\x70\xc9\xc5\x0d\xfd\xa1\xe5\x70\x37\x54\x9c\xe7\xa0\x05\x15\xf4\x2b\xed\x7d\xd5\x32\x0b\x62\xf9\xab\xae\xaa\x9f\x67\xaf\x55\xea\x1b\xb5\x5c\xbb\xbb\x7a\x94\x2e\x5f\x6d\x2a\xe0\xce\xb0\x03\x06\x0b\xb1\xbf\x03\xf2\x93\x01\xc5\xd9\xdd\x15\xac\x9b\xe8\xba\xa5\xb2\xa1\x6d\x6e\xc0\x29\xc7\xb6\xa2\x88\xee\x1d\xa0\x62\x5b\xf6\x28\xa2\x99\x26\x31\xe3\xf3\x60\xc8\x33\xce\xb3\x56\x65\x2c\xec\x2f\xa3\xa4\x32\x21\xa3\x20\xd6\xa6\x0e\x09\x93\xcf\xe7\xda\x63\xc3\x94\xbd\x04\xd3\xf0\x22\x29\x3f\x68\x9e\x0c\x64\x7e\x99\xeb\x8d\x51\x8a\x08\x1d\x0c\xcb\x68\x8e\x1e\x17\xa2\x9d\xc1\x23\xb0\xf8\x0b\x1a\x9c\xe7\x99\xec\x38\xa1\xd1\x9d\x93\xb2\x3e\xd5\x70\xf6\x21\xec\xf7\xb3\xaa\x2a\x92\xf3\x25\xc4\x65\x55\xc3\x6c\x05\x27\xfb\x3e\x19\xa2\x43\x47\x56\x69\xf6\xe9\x93\xc7\x94\xd4\xfa\x39\xd7\x27\x67\x1c\xb8\xb4\x0b\xc8\x5e\xb5\xb9\xf3\x58\xbd\x7b\x6e\x04\xd2\x86\x48\x1f\xa2\xce\x4f\xb9\x47\x5a\xd7\xeb\xdd\x53\x5f\x07\x37\x64\x5a\x41\x36\x87\xb5\xe0\xf2\xcd\xad\x34\x46\x91\xff\xb5\x6e\x27\x79\x58\xb7\x9d\x64\xb7\xa5\xc4\xcf\x5c\xaf\xa1\xef\xe6\x61\x3a\x9b\xef\xd3\x65\xb1\xb2\xa4\x93\x85\x3d\xa2\xda\x2c\x74\xf7\xa9\x17\x2d\x00\x08\xae\xe1\x06\xf6\xb0\x7e\x03\xc3\xcb\x8f\x7b\x0b\xac\xcd\x84\x5f\x4d\xe8\x42\xb8\xbe\x50\x20\x1a\x8f\x1a\x66\x9d\x73\xab\xaf\x2e\x22\x44\xa0\x5b\x2e\x5c\x55\xa0\x0b\xfc\x5e\x57\x9b\xf7\xf6\x9a\x33\x05\x2a\xaa\xf7\x0c\x3e\xff\x5e\xce\x14\xc5\xdc\xf2\xe2\x43\x04\x8f\xef\xc0\x0d\xb5\x3b\xc3\x34\xa9\x66\xcb\xf3\xfe\x38\x9f\x0f\x26\xd1\x58\x9e\xe7\xf9\x87\x01\xdc\x11\x06\x70\x28\x97\x83\xaf\xbf\xfe\xea\x5b\x56\x0d\x78\xad\x2e\xab\x1c\x47\x9d\x4f\xc8\xa8\x7c\x0e\x6f\xda\x5a\x2c\x01\x97\x54\x38\xec\xd1\x68\xc3\x75\x94\xfc\x21\x89\xc1\x7b\xc9\x63\xbd\x4a\x68\x06\x0f\x9c\x31\x84\xb5\xb4\x70\x3c\x50\xd3\x32\x4a\x93\xea\xba\xcf\xf9\xd5\x17\x61\xa6\xca\xd5\x0e\x74\x36\x12\xeb\x79\x1f\x15\x53\xb9\xe2\x00\x73\x69\x02\xe7\x30\x58\xb5\x47\x3d\x1c\x35\xc5\x72\x15\x12\x2a\x56\x9c\x9a\x5b\x9f\xf4\xfe\xd1\x8c\x8b\xb0\xe1\x39\x8e\x04\xb9\x29\x9b\xdb\x00\xf7\xe6\xf6\x72\xae\x56\x63\xac\x3b\x08\x9a\x9f\x42\xe1\x10\xf8\x66\x6f\x4f\xfc\x85\xa9\xf4\x75\x3b\x8e\x00\x69\xb6\x36\x97\x20\x61\x00\x8e\x08\xc9\x87\xe4\x03\xf4\x6c\x78\x55\xa9\xa7\x6c\x30\xc4\x95\x52\x53\x6d\xc4\xf5\x38\xee\x3a\x2a\x66\xbf\x9c\xe5\x45\x25\xcb\xaa\x09\x0c\xe8\x95\x9a\xa6\xfa\x52\xc2\xe7\xdf\x0b\x9b\xba\xb3\xe8\x7b\x9e\x2e\x0b\x57\x9a\x0c\x6d\x1b\x38\x4a\x1a\x76\x4d\x7d\xdf\xc0\x11\x53\x97\x41\x38\x46\x01\x3f\x8b\x9a\xb8\x4b\x50\x4a\x07\xda\x6d\x16\xd3\x71\xcd\x8c\xec\xec\xb0\x31\xa8\x65\x85\x58\x19\xac\x6b\x05\x33\xba\xff\x6b\x76\x93\x54\x58\x2f\xb3\x91\x4c\x58\x67\x3d\x76\x18\xdd\x00\x17\xa8\xf3\xb4\x58\x56\x72\x5c\xc1\x46\x3b\x56\xf7\x0e\xbe\x1b\xfc\x34\x8f\x36\xd7\x6c\x53\x46\xe4\x5b\xd0\x70\x88\x36\x6d\x0f\xb8\xae\xa4\x31\xd3\x46\xb7\xde\xf0\x88\xfd\x34\x6f\xc4\x0d\x13\xf2\x24\xc0\x12\x9b\x89\x60\x63\xce\xb9\x91\x42\x26\x4c\x50\xf5\xfc\x9b\x9c\x2c\xcd\x47\xf4\x4d\xd7\x7f\x45\x6f\x62\xa9\x48\x0b\x59\x00\x61\x4d\xa7\xf8\x54\xc4\x16\xbc\xbf\xe0\x8b\xf9\x22\x8b\x03\xeb\x5d\xcb\xb3\xc9\x01\xd5\x3c\x7f\x1b\x2e\x5a\x78\x9a\x6f\xb5\x6b\x1b\xf7\xac\xde\xb1\xeb\x27\xf9\xe7\xb2\x1e\x88\x93\x8b\x78\x1e\x90\x37\x13\xbe\x6b\xc5\xbc\x5b\x51\xd7\x69\xa1\x03\x1a\x37\x72\xe4\xd7\x51\xb8\x00\x73\xeb\x52\x8a\xb8\xc8\x8d\x0b\x2c\x08\xa6\x59\x0e\x01\xd5\xf5\x11\x92\x64\x53\xb4\x52\x62\x01\xd8\x6b\x1a\x43\x8d\x47\xbe\x0a\x17\x51\x3b\xf7\xf2\x07\x87\x40\x58\x5e\x61\x51\x13\xdd\x01\x77\xc3\x61\x7a\x4d\xb5\x1d\x0f\xfa\x5b\x97\x6b\x80\x70\x64\x93\xc7\xa3\x99\x76\x9d\x21\x75\xb4\xae\xb2\x90\x22\x29\x45\x96\xa3\xab\x88\x48\x32\xae\x43\x89\x32\x21\xe7\x8b\xea\x9a\xe9\x24\x4f\x35\x5c\x1d\xbe\x95\xc3\x93\x80\x19\x78\xee\x8b\x7c\xa0\x08\x7a\x99\x17\xea\x82\x20\xcb\x32\x39\x4f\xd4\x8d\x00\xc0\xaf\x8e\x5f\xbc\x11\x63\xb5\x56\x45\x56\x02\xea\x29\xa9\x78\xac\xbe\x88\x34\xf0\x3a\xec\x2f\xe8\x3b\x4f\x11\x16\xcb\xd3\x7a\xa2\x6d\x7d\x5f\xfc\x98\x5f\xca\x0b\x59\x40\x75\x80\xfe\x31\x8f\x20\xc6\x70\x55\x44\xb1\xcc\x27\x13\x5e\xc5\x28\xf4\x3c\x3d\x52\xb5\x95\xb2\xea\x23\x4e\x04\xf6\x23\xcd\xa7\xc9\x18\x60\x4a\xe9\x55\xa1\x4f\x55\x00\x88\x55\x94\xa6\xf9\xa5\x9a\xac\x25\xbc\x0a\x18\x0c\x0a\x50\xfe\x1b\x14\x01\x51\x26\xbf\x49\x31\x4f\xb2\x64\x4e\xb8\xad\x56\x2d\x0b\xb3\x86\xe1\xc8\xb2\xa9\xd4\x61\xd2\xa1\xc3\x46\x27\x05\x0e\x51\x80\x81\x70\x3c\xcb\x2f\x7f\x02\xe5\xd5\x7b\x32\x57\xb0\x78\x8a\xa1\x21\x3d\xf1\xa0\x09\xd9\x11\xe7\x23\xde\xb5\xa2\x22\x89\x7a\x31\x60\x8c\x9c\xcb\xf8\xfc\xba\x85\x4f\x8d\xe2\xa9\x48\x62\x1d\x0d\x97\x18\xb8\x6a\x7b\xd8\xd0\xa5\xdd\x5d\x0d\xf7\xc3\xa8\xa4\xac\x8a\x24\x9b\xb6\xc4\x53\xfa\x68\xe1\xe6\x2c\x20\x9f\xcb\x43\xbb\xf6\x9a\x12\x95\xe5\x4f\xf0\x9e\x39\x4e\xcb\xab\x36\xe4\xee\x9b\xaf\x7e\x39\x9b\xa2\x15\x1f\xfc\xf4\x1d\xd6\x4e\x49\x0d\x16\x58\x8b\x84\x7a\xc3\x9f\x10\x98\x61\xc1\x2f\xf8\xa2\xa3\x67\xd8\x04\x86\xd1\x7b\xe3\x8b\x90\x7d\x83\x8b\xea\x18\x14\x0c\x0c\xe8\xbf\xfd\xf4\x64\x45\x19\x3c\xc5\xdc\xc3\x8b\xbf\x03\xf1\xae\x38\x24\xd1\xd8\x15\xab\x67\x3e\x74\x4f\xdb\x86\x6e\x30\x81\xf7\xd0\xbd\x9b\x38\xf2\x12\x9b\x3a\x7e\x8b\x6a\x9e\xd0\x15\x5d\xf1\xb4\x3e\x1b\x54\x12\xea\x9f\x53\xcb\x4d\xc3\x9c\x39\x26\x2d\x8d\x73\xa6\x55\x49\x8e\x06\xa9\x61\xbe\x48\x1f\x76\xbf\x33\x15\xea\xc0\x56\xb3\x14\xe8\xd5\xca\xf9\xd9\xee\xf5\x3d\x20\x3f\x01\x03\xe0\xa2\xd3\xba\x57\x61\xe0\xe5\x06\xea\x23\x12\x23\xa8\x81\xc0\xbd\x9c\x87\xda\x7c\x22\xfe\xaa\x5f\x74\x07\xdf\xe1\x0b\xaf\x79\x88\x30\x1c\x1d\xca\x8d\xac\x7f\x4b\xa8\x7f\xaa\xe4\x48\xd0\x1b\x44\xfd\x9d\xf9\x74\xa7\x13\x7c\xb5\xe5\x93\xa5\xd8\x06\xc0\x26\xc4\xae\x05\x9a\x11\x26\x5e\xcb\x79\xbe\xe2\x0d\xd6\xc0\x2e\xb4\xbd\x90\x02\x06\x9d\x84\x5d\xb5\x18\xe0\x8c\x73\x35\xf6\x5d\xd2\xe8\x9e\x97\xc1\x49\x36\x14\xdf\xe7\x79\x2a\xa3\xac\xad\x8d\x73\xb8\xe5\x02\x64\xd4\x80\xe1\x3a\x03\x4f\xbe\x71\xee\xd6\xce\x1f\x37\x5d\x6e\x76\xc7\xc0\xab\xa9\x1a\x27\x99\x24\x99\x4d\x21\x67\xf1\xdb\xcb\x22\x9a\xe2\x83\x3a\x46\x69\xdf\x3c\xfc\xb5\xb3\x2d\x3b\x1b\xa0\xce\xfa\x46\x8b\xb5\x93\xd3\x3f\xa1\xc8\x42\x8e\x02\x11\x75\x1d\x03\xda\xdd\x5d\xe1\x26\x33\xd7\xdd\x2e\x19\xe6\xd7\xf2\x80\x45\x94\x5e\x9b\x10\x9c\x30\x25\x71\x34\x4b\x2d\x6c\x5b\xd9\x8c\x7d\x15\x4f\xf1\x68\x77\x8d\x86\x92\x78\xe8\xce\xce\x49\x5d\x26\xd0\x6f\x03\x1c\x19\x46\xdd\xa5\x69\x85\x57\xf0\x9a\x6e\x7d\x37\x38\xe8\x98\xbf\x5a\x37\x06\x42\xfd\xd7\xa3\x3b\xca\xc8\x5a\xbd\x90\x93\x80\x01\x6b\xcd\x0c\xd2\xc9\xef\xa5\xb9\x8a\xad\xb5\x6b\x1f\x32\xed\x0c\x60\x05\x57\x78\xa5\x1a\xae\x57\xf7\x19\xff\xb7\x60\xa7\x6b\x5f\x37\xa1\x4f\x83\x8a\xcc\x2c\x35\xc2\x04\xa9\x1d\xd9\x35\x79\x9d\x18\x70\x64\x1b\x00\xc1\xb2\x45\x03\x9a\xd2\x76\x57\xa2\x5f\x2e\xd2\xa4\x6a\xb7\x7a\xad\xce\xc9\xde\x59\xa7\x73\xd6\x5d\xad\x6c\x61\xe4\x0c\x37\xdd\x00\x99\x73\xc7\xdd\x8e\xd5\x9d\x22\x27\xc6\xdc\xa1\xb0\xf2\xb5\x89\x28\x17\x51\xd6\x3c\x13\xd8\x96\xeb\xcb\x02\x72\x1f\x33\x3a\xa4\xc6\x3b\x24\xa1\xea\xeb\xd7\x6d\x10\x8c\xe9\xd8\xf8\x03\xc2\xf8\xfe\x21\x8c\x19\x66\x5a\x14\xc7\xa5\xba\xaa\x22\x95\xb8\xfe\x6e\x0e\xd2\x2f\x9e\x84\x6b\xc0\xf7\xf4\x51\x6f\xa1\x84\xb5\x97\x37\xab\xca\x42\x68\x06\xf0\x90\x56\xc1\xb1\x29\x89\xb6\x48\x62\xc0\x10\x45\x1e\x82\x86\x09\x41\x9f\x3d\x1f\x90\x4b\x1c\x4b\x29\x4e\x9e\x1f\x1f\x8b\x67\x6f\x8f\xce\xda\x5f\x8e\xcb\xb2\x23\xce\x65\x9a\x5f\x82\x7e\x63\x9e\x17\x6a\x41\xab\x28\x49\x4b\xa7\xb3\x48\xf6\x1b\xa0\x86\xd5\xf1\xc6\xd8\xee\xb1\xa5\xf1\x2a\x57\x07\x85\xcc\xc1\xc2\x0e\x11\x11\x61\x10\xa0\xbc\xd1\xd6\x76\xac\xd6\x90\x80\xbd\x76\x61\xea\xd5\xcf\xac\x05\x53\xa8\x7a\xe7\xce\x73\x8b\xea\xd3\x3c\x9b\x02\x34\x6f\x89\xfa\xca\xe6\x96\x9c\x8b\xde\x7a\x0a\x9b\x49\x81\xc8\xb8\x4a\x5c\x9d\x27\x69\x9a\x94\x72\x9c\x67\x68\x7e\x08\xb6\x2f\xf4\x04\x5b\xce\x50\xb5\x50\x27\x68\x1e\x94\x1e\x4c\x67\x92\xf9\x22\x1a\xe3\x0e\xd5\xae\x95\xaa\xcb\x31\x98\x56\xb4\x47\x9e\x76\x74\xe4\x60\x15\x5a\xbb\x0b\xde\x77\xec\xe2\xfd\xf6\x1e\x6d\xd6\xf2\x4c\x8a\xcb\xc8\x1a\xab\x15\x72\x2c\xb3\x2a\xbd\x26\x9f\xf7\x5a\xd7\x8c\x8d\xc8\xdd\xba\x17\x89\x65\x29\x0b\x0c\x0b\x8e\xb3\xc3\x61\x98\xd7\x4e\xb9\xed\x8f\x9d\xc7\x8d\x3a\xa4\x17\x2a\xb1\x88\xe7\x33\x99\x2e\xac\x86\x08\x11\x25\x1c\x0d\x19\xe8\x9c\xfa\x96\xd7\x5d\xe7\x4b\xb2\x91\xd2\xb1\xcc\x2b\x5d\x6f\x5f\x1c\x55\x4a\x88\x4b\x29\x30\x7e\x95\x8b\x48\x14\x51\x16\xe7\xf3\xf4\x9a\x9d\x01\x89\x33\xb1\x49\xbc\xc1\x8e\x7e\x1d\x7d\x50\x5c\xc9\xaa\xda\xb8\xa4\x9a\xf4\x65\x1f\x2d\x1b\xd5\xbe\x81\x87\x02\x6b\x92\xa8\x66\x9a\x2a\x81\x5d\x5a\x02\x14\x86\x43\x0a\xcc\xcc\x60\x64\x5f\x82\x40\x03\x27\xaf\x16\x8a\x7b\x3a\xfd\xe5\xf8\x36\xf7\xb6\xc1\x66\x68\x67\xbc\xdd\xfe\x82\xce\x7a\xfb\xcb\x53\x8c\xbb\xfb\xcb\x8e\xee\x8e\x04\x3c\xa9\x68\x0e\x81\x90\xcb\x4a\x5d\x27\xa1\x1f\x5a\x59\xeb\xd2\x72\xe3\xe8\x6c\xaf\xb6\x22\x65\xad\xfb\x06\x23\xea\xd8\x2e\xb6\x05\x08\x2a\xe4\x7f\x2d\x65\x89\xf6\xd1\xe7\x12\x89\x22\x76\x91\x65\xff\xb6\x88\x8a\x68\x2e\x3e\xe2\x11\x74\x43\x36\x27\xef\x8d\xf5\x49\x99\x2f\x8b\xb1\xd4\x96\xa8\x63\x6a\xd2\x81\x40\xc5\x87\xff\xa1\x07\x53\x7c\xf7\xee\x5a\xa3\xd9\xfb\xec\xec\x1b\x0f\xb1\x35\xd8\x57\x0f\x02\x96\xe9\xb6\x15\x43\xca\xd6\x21\xc0\x36\x4a\x31\xff\xd3\x70\x5f\xdf\x3b\xeb\x07\xec\x54\xdb\x89\x2e\x6a\x98\xcb\xde\xb5\x9d\x8f\x56\x32\x54\xec\x1a\x64\x2e\xa8\x69\x3c\x59\xec\x64\x84\xb5\x8d\xce\xda\x83\x68\x91\x10\xa4\xec\xa0\x13\x92\x0e\xd9\xfd\x76\x03\xa1\x4b\x2f\x15\xfa\x10\x88\xff\x23\x8b\xbc\x47\xa6\x1b\xf0\xa9\x14\xc8\x9d\x41\xa4\xcf\xa4\x62\xa3\xf4\x44\xe3\x72\x48\x52\xc9\xdf\x12\x35\x1c\x40\xe2\x57\x08\xae\x2b\x26\xde\xde\x75\x35\xf3\x3c\x79\x99\xa7\x4a\x2a\x85\x33\x6a\xba\x4c\x62\x79\xd6\x1e\xd8\x57\xb6\x01\xbb\x1d\x0f\xbe\xb4\x3f\x4c\x0e\xe8\x65\x07\x64\x30\x80\x6f\x06\xc9\x36\x3a\xcf\x97\x15\x61\x6e\x43\x27\xc1\x60\xc5\x9a\x9c\x05\xe1\x6b\x03\xb7\xf7\x3b\x92\x81\xad\x91\x00\x86\x87\x03\x34\xbe\x1b\xe7\xf3\xf9\x32\x4b\xaa\x6b\x00\x19\x6e\x80\xdb\xb5\x1f\xbe\xb4\x15\xf5\x28\x2c\x48\x80\x94\x3c\x65\x40\x9d\x9c\x56\xa3\xf0\x5a\x94\xd4\x36\x5e\x31\xe8\x62\x4c\xce\x61\xaf\x97\x89\xe3\x1f\x36\x49\x93\x05\x29\x84\xd4\x5d\xb7\x4d\x89\x1d\x06\xe3\xdb\x0c\x4a\x6b\xc2\xe2\x17\xc9\x85\xba\x36\xce\xf3\x78\x99\x02\x40\xba\x2c\x2e\x88\x5c\x1c\x84\xd8\x2b\xb1\x88\xc6\x1f\xa2\xa9\x2c\x6d\xa0\x7b\xaf\xff\x46\x37\xa4\x5d\x59\xf4\xfd\x89\xa3\x5d\xac\x73\x82\x64\xa5\x2c\x1a\x02\x36\x70\xb4\x3e\x30\xf1\x0f\x2b\x72\xba\xbe\x88\x2a\x87\x6d\x4b\x7c\xfa\x64\x5b\xd9\x26\x3c\x1a\xeb\x1a\x02\x90\xb8\x36\xa1\x2f\xf5\xa9\x06\x14\x99\x94\x66\xae\x12\x3a\xe2\x16\x79\xc9\x50\xc3\xb1\xd0\xcf\x14\x4d\x12\xc5\x42\x8a\x9f\x03\x01\x87\x21\xe6\x46\xaf\x4c\x62\xfd\x00\xab\x38\x4d\x9e\xa5\xd7\x9e\xa5\xe7\x38\x52\x52\xd0\xb2\x94\x18\x97\xb1\xb8\x90\x05\x94\xea\x87\xa6\xaa\x7d\xba\x33\x5f\x26\x3d\xab\x49\x62\x60\xaf\xf8\x27\xf4\xa3\xdd\x21\xd0\xd7\x4e\x2d\x6c\x9b\x99\x04\x57\x35\x9c\xa8\x99\xbc\xd9\x86\x1a\xe9\x4a\x2b\x7a\x28\x41\x66\x51\xea\x32\x0a\x24\x3b\xb5\x7e\x2f\xf3\x62\x4e\x2e\x55\xea\x1f\x79\x55\x85\xe1\x58\x28\xf4\x23\x66\xa1\xf7\x9b\x6d\x9f\x45\xea\x6d\xf5\x89\xa7\xab\xbb\xb6\x38\x14\xad\x7a\x8e\x96\x87\x91\xc9\xf7\x06\xcb\xed\x61\xe3\x5a\xc3\x05\xea\x70\xbd\x62\xc2\xa1\xf1\xb6\x5e\x3d\xdf\xfd\x81\x79\x7f\x56\x08\xee\xb5\xb0\xd9\x77\x86\xc3\x76\x03\x45\x6d\x06\x7f\xbd\x2d\x94\xf5\x6d\xe0\xb2\xbf\x07\x17\xc9\xef\xa3\x92\xa1\x33\xdb\x6f\xb7\xc0\xc9\xfe\x4c\x68\xac\x45\x9e\x57\x75\xec\x44\xf5\x95\xe3\x33\xcb\xab\xea\x59\x9a\x4c\x2d\x5a\x14\x83\xb5\x4b\xe5\x15\xa2\xc9\x0a\x17\x2a\x70\x03\xbc\xbb\x03\x86\x77\x67\xa0\xf3\xf6\x0f\x1a\x20\x41\x5b\x8f\x39\x7a\x20\x83\x73\xa4\xd0\x0c\x4e\xe4\xbe\x17\x57\x8b\x34\x19\x27\x55\x7a\x6d\x42\x9a\xe9\xdd\x84\x1c\xb7\xca\x05\x84\x3f\x12\x91\x38\x5f\x2a\x36\x2b\x8e\x5e\x88\xfd\x7d\xc3\x43\x83\xf8\xa2\x11\x4c\x77\xdf\x43\x50\x71\x5e\x5f\x6a\x4f\x0e\xc8\xa3\xda\x2d\x0b\x76\xd8\x1b\x23\xbc\x21\x7f\x08\xd4\x0f\x13\x1b\x3c\x5a\x94\x95\x2e\x76\xe3\x20\x3c\xc2\xe5\xde\xc5\x77\xdc\x04\x8f\xd5\x1d\x53\x78\xc0\x50\xf5\x9b\x45\x34\x4e\xaa\x6b\xfe\x2a\x09\xae\x65\x6a\x7e\xf3\xcc\x5c\xc2\x2f\x92\xb1\x92\x6d\x12\x74\xf4\x55\x27\x55\x14\xc7\xa2\x5c\xc8\x71\x32\x51\x2b\x72\x6d\x8b\xb7\xfe\x36\x97\x71\x12\x89\x36\xd4\x3f\x84\x50\x5a\x9d\x96\x1f\x30\xb9\x06\x12\x09\x73\x83\x51\x6b\xc2\x31\x93\xed\xa4\x68\x84\xa4\x78\xcd\xbc\x38\x75\xb2\x01\xae\xa2\x02\x5d\xf5\xa9\xff\xda\xba\x16\x00\x8e\x6f\x3a\x40\x7b\x93\xf1\x54\x1e\x9e\xee\xc0\x8d\xeb\x74\x87\x61\xa8\xaa\x04\x32\x95\xf1\xd0\xd5\x10\x36\xb1\xc7\x76\x4b\xeb\x4f\x65\xf2\x9b\x3c\x9e\x47\x69\xba\xeb\x0e\xd7\x29\xf1\xf0\xfe\xfa\x2b\xb3\xb8\xd6\xdb\x17\x59\x5c\xeb\x2b\xe1\x18\x6e\xd3\x59\x5d\xe4\x3e\x7a\x0b\x8b\x78\x78\xba\x93\x64\x33\x59\x24\xee\x04\x43\xda\x11\x26\x0c\xb9\x19\x04\x92\x05\x15\xd9\x1c\x8c\xb6\xb1\xf1\x45\x91\xcc\xa3\xe2\xba\xde\xf8\x5b\x4c\xa8\x37\xee\x12\x1d\x95\xef\xcf\xa3\x24\xbb\x87\x5d\xef\x54\xf7\x3f\x61\xd3\xdf\x7d\x85\x50\xb5\x17\x5c\xa3\x63\x9d\xb4\x6e\x95\x4c\x1d\xf7\xb5\x4e\x5e\x85\xff\x43\x57\xea\x6d\x29\x97\x71\xde\x43\x13\xe0\x75\xeb\xa5\xf9\x6e\x1d\x71\x5a\xa7\x0c\xc5\xc7\xdb\x10\x82\xe2\x48\x8a\x0e\x14\x53\x72\x68\xc0\xb0\xaa\x10\xd4\xef\xc3\xad\x10\x7e\xbf\xe9\x6c\x4c\xa8\x06\xd8\xd1\xc4\xa1\xab\x0b\x6a\x80\x20\xca\x7a\x15\x86\x60\xb6\x98\xcd\x4a\x5a\xb3\xdf\x23\x25\xd3\x1d\x55\x72\x5e\x32\x56\x67\x52\xff\xb9\x2c\xab\x64\x72\xfd\xdc\x60\x44\x7b\xcc\xf0\x94\xa1\x79\xea\x2b\xde\x3b\x39\x81\xf7\x2e\x54\xd0\x1c\x8d\xf3\xac\x74\xd5\x4d\x89\xfa\x34\xe8\x88\x52\x8e\x79\xf0\x31\x27\xcc\x17\xd4\x54\xc8\x29\x19\x86\xc3\x8b\xcc\x45\x94\xa4\x80\xe6\xaf\x2a\x10\x39\x85\xf0\x77\x2e\x8d\xaa\x35\x14\xb1\x37\xc7\xee\xb4\x65\x56\xc2\x77\xaa\x83\xcd\x62\x07\xc6\x53\x2b\xfb\x51\x8a\x93\x6f\x05\x00\x9f\x53\xf6\xee\xc8\x9d\xe6\x49\xd8\xcd\x01\x96\xb8\x3a\x0f\xb5\x0c\xec\xca\x66\x53\xbf\x5c\x40\x71\x3b\x0a\xfa\xe9\x80\xcd\x91\xf0\xcc\xd0\xe6\xdc\x2a\x5c\x40\xca\xd8\xc7\xc1\x8c\x7d\xec\xcb\xb8\x86\x77\x19\x6f\x82\x74\x59\x83\x4d\xe4\xcf\xd7\xef\xc2\xa0\xa5\xef\x92\xc5\x82\xf9\x76\xd7\x93\xc2\x80\xa5\xef\x36\x07\x2c\x7d\x57\x83\xde\x04\x13\x73\xdd\x19\xf5\xc3\xaa\xb1\x30\xc5\xc9\xe7\xcc\xf4\x1c\x00\xfa\xd9\x44\x3b\xc5\xb7\xc0\x8c\x53\xb4\xb6\x16\x32\xce\xd0\x0b\xfd\x54\x8b\xea\x00\xc3\xc5\x75\x68\x39\x9c\x35\xfc\xae\x3a\xc7\x60\xd2\x36\xb5\xe4\xb2\x57\xe1\xcd\x0d\xf8\x14\xbf\xee\x0a\x6e\x6a\x0e\x74\x0a\x6a\x1d\x43\x9e\xd6\x8c\xe9\xc4\x8c\x26\x60\x43\x05\x29\x60\x2c\xc5\xc1\x96\x74\x4b\x86\xd8\x84\x59\x1f\x73\x2c\xb8\x2d\xe0\xf0\x03\x0d\xa8\x04\xa8\xdf\xb0\xe6\x16\xbe\xa7\x58\xd3\x27\x23\xdb\x5b\x31\x41\x66\xb1\x97\xe1\x45\x46\xf7\x8b\x9b\x13\xf5\xf3\x4c\x1f\xef\x78\x0d\xc7\x95\x40\x9b\x3f\x4a\x98\xd8\x15\x1a\x8a\x2f\x1a\xf7\x81\x3d\x2a\xbd\x9d\x55\x50\x10\xbc\x53\xe6\x0d\xb0\x99\xdd\x9b\x67\xee\x15\x30\xf6\x82\xd3\x8a\x2a\xbe\x4b\x34\x7a\xcb\xb5\x03\xe6\x5c\xce\x33\x09\x9c\x16\x2b\x8d\x86\x1a\x23\x8d\x63\x10\xdd\xa6\x78\xe1\xe8\xe8\xbb\x04\xb3\x7f\x0a\xda\xaa\x0d\x97\x2b\x82\x68\x73\x79\x7a\xa7\x5f\xe6\x73\xc9\x14\xcd\x90\xc0\xf4\xc9\xcd\x5b\x27\x29\xff\x11\xa5\x49\xec\x18\xcf\x76\x8c\xd3\x6b\xdf\xe2\x95\x26\xe3\x0f\x5a\x79\xeb\xda\xb2\x43\x4f\xeb\x6d\x35\x06\x6e\x0e\xc0\x7f\x65\x82\x5a\xa0\xe7\xd6\x54\xe3\x16\xb7\xc4\x5f\x44\x0b\x0c\x1d\x8c\xd9\x77\x24\x10\x21\xcc\xcc\x7c\xab\x2b\x5a\x2f\x93\x42\x4e\xf2\x2b\x32\x53\x80\xb7\xb3\x1a\xde\x01\x64\x54\x8d\x53\x8c\x51\x83\x5a\xa3\xdb\x36\xad\x92\x88\x41\xb1\x6b\x03\xcd\x05\x00\x1a\xe6\xcb\xa4\x97\x17\xd3\x01\xd7\x0d\x12\x4a\xc3\xfe\xc3\x6f\x1f\x7f\x1d\xc6\xfe\xda\x26\xf0\xf3\xef\xca\xa4\x6c\xd5\x13\xe2\xdd\xac\xcb\xf0\x01\x52\x31\x5f\xfd\xda\x6e\x83\x39\x1d\x55\xda\xd1\xaf\x14\xd5\x2c\xc7\xc7\x8e\x39\xe5\x2f\x31\x38\xe7\x1c\x82\xaf\xcb\xac\x94\x6b\x9e\x0c\xe9\x8e\x55\x7f\x19\xd7\xfc\xbe\xcb\xe4\x56\xd1\xa2\x4b\xad\xfa\xd3\xdc\x9b\x42\x2f\xd7\xde\x0b\x3f\x51\x0f\x10\xe6\xb9\x74\x5d\xcb\x5c\xe3\xb2\xf5\xf1\x82\xbd\xaa\xc5\x07\x79\x7d\x9e\x47\x45\x4c\xf6\x77\x05\x0a\x1c\x1b\x34\xf5\x92\xf3\xf1\xed\x1a\xa5\x46\x24\x3c\x6d\x6d\xd2\xd6\xe6\xcd\x4c\x93\x0b\x99\x75\x31\x14\x77\x24\x32\x39\x45\xe8\x26\xd4\xd9\x80\xe3\x1c\xc4\x55\x2e\xb4\x7d\x0e\xdd\x92\xd4\x05\x34\xcf\x88\xdc\x04\xbc\x70\xb5\x61\xd5\x93\x52\xe4\x93\x4a\x66\x60\x85\x35\x59\xa6\x40\x0f\x70\x2d\xd1\x92\x3f\x44\xb4\xc8\x0b\x8c\xb1\xc6\x2b\x20\xd2\x03\x0e\x7f\x99\x54\x33\x1d\xcc\x46\x44\xe7\x8a\x6b\xe4\x05\xee\x9d\x2e\x24\xe6\xcb\x4a\x14\xcb\xc4\xd4\x8a\x9a\x65\x53\xdd\x6f\x68\x41\x0b\xe1\xa6\x5c\x73\xbc\x78\x2a\x43\xf4\x67\x6c\x23\xd0\x5e\x02\x64\xc3\x06\x13\x09\xa8\x9d\x3a\x8b\x94\xa6\xf7\xfb\x08\x44\x0a\xb4\xb2\xfa\xaf\x65\x72\x11\xa5\x84\xef\x86\xda\x6a\xb5\x3d\x88\x34\x15\x03\x49\xb2\x29\xef\x59\x09\x17\xcd\x40\xcf\x54\x9d\xaa\x67\x24\x47\x9e\x75\xee\xfa\x2c\x6d\x4f\xdb\x16\xbc\x44\xdb\xdf\x9d\xff\xb8\x98\xb2\x9f\xff\x41\x8b\xe2\x0f\x6f\xf6\x92\x75\xdb\xb0\xa1\xec\x41\xd1\x96\x62\x1f\x07\x6e\x9e\x3b\xbc\x9d\xb1\x4b\xb9\xc9\xcf\x08\xaa\xe1\x61\x0b\x5f\xb0\xf8\x23\x94\x51\xb7\x7c\x8b\xf2\x23\x0a\x71\x72\xfc\xc1\x68\x7b\x6a\xea\x1f\x21\x92\x6c\xb1\xb4\x55\x8c\x97\x45\xe9\x28\x75\xb5\x0b\x4f\x73\xf4\xaf\x1c\x75\x6a\x36\xb4\x63\x48\xbf\x12\x0c\x6f\xe5\x84\x34\x75\xe3\x63\xea\xe8\x28\xfa\xb7\x19\x9a\xfe\xa0\xc3\x1e\xee\x9f\xa2\xff\xda\xcd\xad\xde\xd0\x8f\x2f\x93\x6a\x3c\x83\x17\xc8\x8d\xd5\x21\xb6\x4c\x58\x1d\x62\x91\xab\x4c\x28\x13\xfd\x85\x69\x35\x60\x55\x1c\x34\x7c\xfa\xe6\xe7\x51\x84\xe0\xe7\x51\xdf\xee\x55\xff\x41\x8c\xee\x39\x56\x6f\x35\x04\xce\xe7\x9a\x7a\xc2\xe9\x7e\x4d\xf9\x90\xf0\x8e\x27\xbc\xc7\x49\x1c\x8a\xf1\x00\x84\xe8\x82\xc2\xdb\x4f\x6e\x2e\x04\x0e\x60\x79\xde\xc9\x89\xc9\x91\xf1\xa1\x66\x7c\x94\xc6\x75\x74\xc1\xfc\x5b\x79\x70\x03\x74\x68\x67\xd1\x0d\xe0\x03\xcb\xe1\xae\x2b\xfd\x66\x9e\x39\x51\xfc\x26\x4b\x6d\x70\x08\xfd\x81\xe5\x40\x59\x93\xe5\x30\xc2\x27\xe6\xa8\xa2\x73\xa0\x6c\x0b\xeb\x4f\x1f\x6c\x0e\x80\xf7\xd1\xa9\x68\x09\x86\x29\xf8\x68\xab\x93\xe0\xd7\xad\x70\xf4\x35\xb9\x6a\xc5\x08\xac\xbe\xf3\x43\x11\xe0\x7a\x45\x89\x4b\x3e\x21\x8d\x49\x62\xea\xb1\x78\xf8\x7a\xc9\xd9\xef\x77\x72\x82\xbf\x32\x53\x37\x2e\x9e\x41\xc3\x87\x85\xd2\xbf\x58\xe7\xf5\x0a\xe8\x5f\x38\xdb\x04\x76\x4f\x33\x4b\xbf\xae\x17\x54\x01\x4c\x9c\x07\x6b\xbf\x3d\xe6\x39\xdb\xe2\x3e\xec\xb9\xf6\x61\x75\xe7\xa7\xe3\x02\xa1\x5b\x36\xe3\x63\xa1\x53\xcd\xf7\x09\x87\x3e\x36\x1b\x7f\x35\x18\x3a\x75\x75\x23\x3c\xf4\xf9\x32\xe1\x47\xe8\x61\xcd\xee\x67\x3b\x94\xc3\x3a\xca\x0d\x2d\xb4\x03\xb1\x16\x00\xa0\xbb\xe1\x97\x7c\xaf\x53\xbb\xbb\x5e\x37\xfb\xf5\x4a\xc3\x19\x36\x02\x45\x5a\x81\x27\x19\x1a\x8e\x4a\x70\x46\x53\x87\x05\xdb\x76\x30\x5e\x95\xc1\xf4\x8d\x86\x72\xa4\xf6\xa1\x61\x90\xde\x88\x58\xa2\x37\x30\x55\x41\x26\x2f\xed\xc1\x42\x10\x65\x00\x2f\xa6\x8f\x33\x0b\xa9\xc7\xe9\xab\x6d\xcb\xd5\xa0\xf5\xa0\x29\xd7\xce\xf0\xfd\x9b\x1f\xde\x88\x8b\xc7\x43\xc2\xd5\x41\x9d\x02\x5c\x70\x0d\x5a\x5c\xdf\x67\xf5\xd8\xd9\xae\x70\x5b\x0a\xce\x02\x53\xc9\xf3\xe3\x8f\xa1\x68\xb8\x73\xeb\x2c\x2d\xa1\x8b\x38\x4a\xfc\x96\xc1\xb3\xe3\x60\x72\xac\x19\x6f\xad\x74\x4a\x83\xdf\xfe\x2c\x2a\x5f\x29\xa1\xfd\x25\x3c\x52\x58\x08\x38\x98\xe2\xf3\xfc\xaa\x25\x3e\x7d\x62\x9f\x8b\x28\x4e\xf2\xd6\x56\x5e\xec\x56\x22\x0d\xa8\xa3\xad\xb1\xb2\xd1\x71\x9e\x6e\xa9\xa8\x26\x12\x61\x2a\x66\x2d\x11\xad\xd4\x3f\x77\xd6\x29\x6b\x35\x9b\x77\xf0\x60\x8a\x5c\xdd\xe5\xcd\x12\x18\xdc\x15\xd8\xdb\x43\xce\x78\x4c\x92\xda\x2a\x43\xb6\x85\xef\xac\x0b\x86\xa3\x4d\x1d\x39\xfe\x6c\x9a\x03\x78\x28\x7c\xd1\xd1\x88\xf3\x8d\xc7\xcb\x73\x9d\x23\x28\xbc\x05\x14\xce\xd0\x8d\x75\x93\x98\xc4\x43\x87\xc4\x76\x77\x85\x11\xdd\xf0\xc0\x62\x92\x96\xde\x5e\xc3\x3a\x7b\x30\x93\x86\xc7\xf2\x50\x78\x22\x12\xcc\xa6\x27\xd2\xe9\x53\x7b\x28\x3c\x69\xc9\xae\xac\x27\x24\x29\x3a\x1f\x0a\x26\x1b\xc1\x91\x3e\xc4\x7f\x4e\xb5\xdf\xbf\x16\x34\x3a\x1d\x4b\x7d\x4f\x1d\xb1\x7b\x08\x42\x2c\x29\xdf\x15\x93\xf9\xe9\xfb\xa1\x38\x9a\x10\xf2\x51\xdc\x15\x8b\x54\xaa\xbb\x03\x39\x1e\x3f\xa7\xbd\xd6\xa5\x3b\x02\xe8\x4b\xde\xa9\x9d\x76\x9a\x0d\x06\xa2\xcc\x51\xb3\xa7\x38\xd3\xb3\xb7\x47\xee\x7b\x2e\x78\xdb\x41\x35\x31\x80\x28\x6d\xae\xe8\xb7\x82\xc2\x2a\x45\xbf\xa7\xfe\x1a\xc1\xf0\x47\xe6\x69\x5f\x2b\xc0\x40\x03\x27\x63\x11\x2f\x0b\xad\x06\x9a\x24\x45\x59\x89\xb9\x45\xd3\x25\xef\x64\x4b\xa4\xdb\x69\xde\x58\x78\xf6\x52\xcf\xb6\xfb\xec\x40\x04\xbc\x81\xd7\x1c\xdc\x31\x58\x6c\x8b\x80\xcf\xd4\xca\x46\xd4\x2a\x3b\x8e\x64\x6b\xbc\x4a\xfe\x43\x74\xd7\xf5\xd2\x3e\x73\xd9\x6e\xc9\x4b\xdc\x0e\xf7\xa2\x3c\xde\x7c\xd9\x97\x59\x60\xe1\x93\x2d\x57\x1c\x9a\x33\x81\x26\xbc\x6d\xb3\xb5\x83\xea\x89\x41\xdf\x2f\xd1\x19\xa7\x1c\x0e\x06\xb1\xbc\x90\xa9\xba\x87\xf5\xe7\xf9\x6f\x49\x9a\x46\xe0\x90\x23\xb3\xde\xcf\xc7\x83\x38\x1f\x97\x83\x5f\xe4\xf9\xe0\xc7\xf7\xaf\x5f\x0d\xe8\xec\x18\x40\x2f\xbe\xb4\x75\x75\x7c\xd2\x5b\xd5\x4f\xc3\xf7\x36\xf0\xf5\x7a\x0b\xb6\x46\x80\x42\xb8\x61\xcd\xef\xe8\x38\x74\x5c\x94\x1a\xc9\x2a\xbb\x2d\x3d\xea\xe3\xf8\x96\x2e\x95\x70\x95\x42\xd6\x00\x9c\xfc\x1e\xbd\x28\xe1\x5d\x70\x1c\x65\x62\xb1\x4c\x53\xa1\x5d\xc0\x32\x79\x69\xce\x18\x6c\xfc\xfc\x5a\xbb\x50\x67\x53\x31\x0a\x89\xc5\x23\xd1\x3e\xc7\x9b\x62\xc7\x73\x27\xa5\xd3\x75\xcd\xe0\x43\xb3\x56\xe3\xd8\x61\xef\xce\x4a\x2c\x0a\x1d\x39\x48\xbb\xef\x82\x6a\x12\xe6\x4b\x9f\x0c\xa8\x6f\xa0\x69\x98\x24\x32\x8d\xa9\x7c\x1b\x22\x17\xa9\xfc\xc6\x0d\x3a\x9b\xe2\x03\x84\xc9\xea\x8c\xc9\xca\x03\xdb\x31\x96\xa6\x63\x4c\x0b\x0a\x6e\x1b\x5a\x8c\x58\xd3\x46\x7d\xde\xac\xa0\xe1\xbd\x25\xa8\x3f\xdb\x27\x35\x47\xe4\x1a\x45\x37\x3c\x7b\x40\xef\x19\xd3\x42\x9c\x2f\x25\xb7\x8c\x1c\x4f\x49\x10\x67\xfc\x3a\xd7\x71\x2d\x67\x75\x82\x2f\x87\x24\x15\xd9\x8a\xa3\xec\xfa\x4e\x0f\x21\xe4\x4a\xc7\x54\x17\xf0\x18\x62\x7f\x6f\xe6\x99\x47\x19\x02\x0e\x4e\xa4\x1e\x1f\x84\xbd\x8d\x56\x38\xe3\xdd\xdd\xe1\x68\x8b\x8e\xa3\xa0\x7f\x7c\x31\x05\x21\xd2\xa8\xf4\xad\xd3\x0a\x4f\xdf\xde\xf9\xcb\x1b\xa6\x53\x5b\x7b\x93\x8b\xc7\x22\xaa\x66\xc6\x08\x25\x56\x57\xb6\xd7\xfb\xdf\x8a\xc7\x17\xfb\x8f\x7e\x7c\xfc\x8f\xc7\xb3\xfd\x47\xf3\xbd\xde\xc1\x8f\x8f\xc7\xbd\xfd\xfe\xbe\xd8\xeb\x1d\x88\xfe\xb7\xbd\x03\x71\x70\xb1\xff\x68\xbc\x27\xf6\xfb\xfb\xfd\x6f\xc5\x81\xfa\xbf\xd9\xfe\xa3\x31\x64\x11\x07\x3d\xf5\xad\x77\xf0\x8f\xc7\xe3\x3d\x55\xaa\xa7\x4a\xa8\xff\xfb\xed\x74\x47\x91\x40\x57\xb4\x40\x74\xf8\x3e\xbf\x7a\xb3\xac\xd2\x24\x93\xdf\xa7\x51\xf6\xa1\xb5\x15\x3d\xfc\x7b\x4e\xeb\x43\x9a\xc8\xf0\x4c\x7e\xe3\x4e\x65\x78\x2e\xbf\xd1\x93\x39\xef\x7d\x2b\xf6\x1f\xa5\xbd\xc7\xbd\xc7\x62\xbf\xff\x68\xbf\xa7\xfe\xe7\xd5\xfe\x9e\xd8\x7f\xd4\xdf\xff\x3a\xfd\xba\xff\xf8\xdb\x9e\xfa\x9f\x57\xfb\xdf\x8a\x6f\xd2\xde\xb7\xe2\xdb\xfa\xfc\xff\x27\xcd\xf9\x5d\x89\x77\xde\x3b\x10\xfb\x7b\x3f\x7e\x7d\xd1\x3b\x98\xed\xef\x5d\x30\x6a\x56\xc7\x41\x25\x8b\x79\x92\x45\x95\x0c\x4e\xed\x7f\xb6\xcb\xe1\x56\x2f\xb4\xec\x15\xce\x50\x98\xa6\x9a\x01\x3b\x4c\x6c\x89\x10\x33\x71\x29\xd4\x94\x2f\x2f\xa6\x3d\x34\xa8\x0e\x72\xa0\x7a\x9d\x1b\xd7\x73\x47\xef\xc7\x20\x09\xad\x6d\x3c\x4c\x78\xdb\xbb\x4a\x6e\xfb\x54\xfd\xdf\xe9\x5a\x19\xf4\x22\x01\x27\x64\xeb\x8e\x82\x4a\xd1\x5b\xfb\x4b\x90\xc8\x5d\x77\x97\x70\xdf\xcf\x6f\x57\xf9\xf6\xce\x18\x5b\x55\x9f\x70\x92\xa8\xb7\xe1\x24\xdf\xd2\xeb\xe3\x16\x0e\x5a\xad\xdd\x3f\xe9\x87\xaa\xa1\x1b\x52\x75\x53\xc7\xad\x26\x97\xa0\xcf\xee\xbc\x75\x67\xa7\xa0\x0d\xdd\x82\x36\x77\x0c\x6a\x80\xae\x5d\xef\xc4\xf9\x2f\xf2\xcd\xbc\xa5\x7b\xd8\x56\x34\xd2\xe0\x36\x76\x37\x2a\xb9\x93\xeb\xd8\x7f\x38\x9d\x9c\x32\xdf\x26\x0c\x7d\xc3\x75\x84\x64\xb7\xb2\x56\x86\xe3\x27\x1f\x42\x23\x77\xdc\xfa\xb6\xad\xc8\x97\x09\xc2\x95\x72\xa6\xb8\x69\x0b\x8d\x27\xb6\xdb\x84\x7e\x06\xd8\xdc\xa4\x48\x97\x58\xe9\x5f\xb5\xb1\x3d\x90\x93\x2f\x54\x98\xbb\xd2\x04\x16\x6d\x18\x28\xb4\xb1\xb5\xd1\xfd\x78\x52\x59\xcb\xe4\x35\xbe\x54\x2b\x8c\x8c\xc6\x88\x41\x64\x1b\x4a\x9a\x06\xef\x8e\xda\xa9\x45\x7f\xe3\x2b\xcf\x4c\x8f\xd8\x57\x66\xa1\xe4\xe6\x0d\x57\xb1\xc2\x6b\x2a\x5c\x6d\x28\xf1\x28\xdc\x15\x67\xc1\x6a\x29\xde\xa4\x78\xf5\x85\xa6\xa7\xb6\x57\xc2\x5d\x3d\xda\xd2\x94\xeb\x77\xe4\x06\xb6\xc6\xac\xc9\x3a\x7c\x31\x83\x25\x3e\xf4\xc0\xa7\x23\x96\xd3\x35\x69\xf2\xdc\xc1\x00\x8b\x09\xc9\xd8\xa5\x91\xa7\x0d\x6b\x37\x34\xb4\x6d\xe2\xe9\xd4\x32\x6e\x51\x19\x1b\xfb\x56\xf6\x00\xf6\x62\x56\x7f\xc1\x46\x8d\x25\xcd\xeb\x79\x7e\xe5\x9a\x03\x48\x8e\xf9\x8f\xb2\x7e\x93\x6d\xc0\xc6\x2e\x6a\xee\x68\x99\x9d\x80\x93\x50\xb3\x78\x1a\xd6\x8c\x0d\x74\x06\x2b\x9a\xfb\x16\x07\x56\x4c\x62\x27\x27\xe7\x4e\xfc\x89\xa5\x8e\xbc\xde\x8a\xa3\x2a\xea\x39\xdd\x6a\x0d\xdd\xfe\xeb\x16\xf8\x23\xb5\xae\x1b\xde\xaf\xd6\xc5\x0e\x00\x1e\x66\xe7\xd8\x3a\x5d\xab\x04\x72\x86\xd2\x1f\x61\x4f\xd9\xe0\x8a\xbb\xbb\x21\x87\xbe\xa7\xf8\x31\x58\x01\xf5\xb6\xe3\x9a\x28\x1c\x6d\xd6\xd1\x1a\xdf\x0a\xf6\xda\xcf\x75\xb7\x21\xac\xa9\xcd\x1b\x4f\xd0\xc0\xe3\x16\x0e\x79\xfa\x90\xff\x03\x5d\xfd\xb3\xa2\xab\xff\x3b\x98\x18\xfc\xbe\xed\x0a\x7e\xdf\xae\x6c\xb7\xf4\x5f\xd3\x27\xd1\x67\xf1\x60\xfb\x5c\xce\x64\x9f\xc1\xd6\xe1\x33\x1b\x38\x34\x6e\xc4\x68\xb1\x90\x51\x51\xba\xcc\xd7\x01\xaf\x56\xb7\x65\x80\xe6\xd6\x58\x64\x19\xfa\xcd\xe1\x23\xa9\xd6\x36\x54\xb9\x77\xd4\xc7\x4b\xed\x32\x07\x49\xe3\x3c\x2b\xc1\xff\xb5\x12\xe7\x72\x16\x5d\x24\x10\xcc\xaf\xc8\xcb\x52\x9c\x17\xf9\x65\x29\x0b\xbd\x09\x9c\xe8\x7b\xaa\xcd\x48\x8c\xea\x47\xf3\x48\x44\xda\xcc\x02\x2e\xf9\xfa\xd5\xd6\x35\x7c\x70\x34\x6c\xf7\xb6\xa8\xa1\xb9\xaa\x37\xb8\x11\x83\xf9\x0f\x35\x3c\xf9\xc3\x0e\xe4\x5f\x64\x33\xe1\x3b\x71\x6a\x76\xbb\x85\x1b\xa7\xe1\xd0\x5b\x38\x72\xd2\x05\x50\x9d\x05\xe0\xd2\xd9\x60\x67\xd1\x60\x0a\x01\x69\x3f\xbc\x79\x0d\xd6\x98\xe3\x08\x80\xd5\x21\xe8\x5a\x2e\x22\x02\xb1\xee\xb3\x5a\x88\x7f\xa0\x63\xef\xe9\x0e\x88\x75\x51\x59\x87\x4d\xfc\xac\x26\x16\xaf\x97\x89\x16\x24\xd1\xb8\x42\xff\xfa\xe3\xed\xf1\x5f\x09\x77\xba\x31\x74\x69\x52\xbe\x5e\x26\xc4\x3e\xfd\x17\x39\x9e\x56\xf3\x3d\xfd\xf0\x4e\x4e\x02\xde\xaa\x94\xc2\xb2\xbf\x4a\xca\xca\xb3\x8f\xe9\x0f\xd4\xc7\x01\x4b\x69\x85\x16\x40\x91\x3e\x5b\x83\x5e\x9c\xcf\x3f\xe3\x53\x5f\x3b\xcb\x0b\xb5\x49\xaf\xe1\xca\xdf\x11\x23\xb3\x11\x2d\x53\x17\xaf\xa3\x6b\xc5\x8b\x2e\x21\x12\x5b\x0c\xcc\x51\x65\x24\x6c\xaf\x51\xe3\x13\x61\x13\x7a\x57\x0d\x9f\x4b\x25\x6b\xd4\x7e\x9d\xc9\x81\xf8\xf2\xb1\x5b\x99\xe7\x6b\x21\x53\x10\x49\x6c\x62\x05\x91\x5e\xc6\xb9\xc6\x25\x6d\x65\x79\xc6\x92\xc3\x48\x63\xe7\xf9\xd5\x71\xf2\x1b\x78\xb3\xb6\xd0\xc7\xbe\xa7\x76\xb3\x53\xa9\x46\x92\xc5\xd8\x04\xa6\x2f\xe8\x05\xfb\x3e\x5f\x0c\xc5\x37\xfe\xd7\xef\x21\xd4\x01\x4f\x68\xed\xfe\x89\x87\xa3\x5e\x03\xac\x17\xd4\xfd\x97\x32\x95\xe3\x8a\xe9\xfe\x79\xe5\x3a\xb1\x2b\xec\xdf\x1b\x61\xf8\x6d\xdf\x54\xf8\xd5\xc2\xba\x1e\xf7\x1f\x9f\x6e\xfd\x8a\xc5\xe8\xca\x7b\x0b\x46\x34\x9a\x91\x12\x27\xd3\x65\x2c\x4b\x31\x52\x5b\x49\x51\x88\x79\xc5\x7a\x06\x9d\x76\x1e\xb9\xa8\x32\x8e\x7f\x17\xa0\x9d\x40\xf7\x56\xbd\xf6\xb2\x5d\xd2\x2a\xc5\x88\xaf\xe7\x73\x6d\xd1\x4d\x81\x45\x55\xdf\x11\x0b\xa1\xfe\x08\xcc\xcb\x6d\xf6\x06\x1c\xd8\x9e\xaa\x05\x38\xab\xd9\x03\xb6\xfa\x59\x47\xfc\x03\x0a\x7d\xd4\x44\xa1\x8f\xb6\x59\xa2\x50\x27\x46\x76\xc7\x1e\x9e\xee\xd8\x2d\xed\xbc\x3a\xda\x3c\x2f\x53\x79\xe5\x03\xc4\x3a\x7b\x9e\x31\x85\x2d\x97\x27\x81\xc0\x8d\x4d\xdd\xbc\x2f\x14\xc6\x75\xad\x5c\x24\xb1\x2c\x42\x8d\x40\x02\x1b\x35\xb2\x1b\xbd\x0e\xa7\x3b\xfb\x8b\x2b\x51\xe6\x69\x12\x0b\xab\x5e\x75\x37\x27\xd5\x61\x15\xa7\x6c\x33\x43\xf4\x85\x16\x2d\x6e\x0f\x25\x92\x0d\x17\x76\xa3\x79\xfb\xfb\xb2\xaa\x64\x51\x1e\x7e\x84\x07\x12\x3e\xb2\x29\xa6\xd4\x09\x0f\xf1\x7b\xf7\xbf\xf2\x49\x8f\xa0\x72\xf7\xbf\xba\xa7\x1e\x36\xed\x33\xfc\xce\x61\xc1\x7f\xb7\xb8\xd7\x6b\xce\xae\x4d\xd9\x36\xd4\xfc\xef\x88\xa7\xba\x1d\xc7\xb9\xdd\xa1\x50\xba\x29\x43\xc7\x63\xf5\x99\x9a\x83\x7c\x2e\x45\xb9\x88\xc6\x00\xb6\x1e\xc1\xa5\x60\x9c\xa7\x69\x52\x2a\x61\x2b\x5a\xd1\x08\xab\x28\x29\x85\x06\xe5\x48\xaf\xcd\xa1\xa3\x6f\x72\xb5\x4d\xf0\xe8\x9b\x2d\x99\x5c\x1d\x04\x96\x8e\xea\x3a\xfd\x1b\x31\x40\x7c\xac\xd9\x07\x2c\x4b\xf9\x22\x9b\x45\xd9\x58\xc6\x18\x51\x84\x1c\x55\xf3\x89\xb8\x4c\xb2\x38\xbf\xf4\xfd\x62\xc5\x53\x3f\x06\x89\x18\xda\x2f\xaf\xa2\xeb\x7c\x59\xe1\x77\x66\x78\xfa\x33\xc0\x2e\x65\x8a\xc2\x60\x1a\xc0\xf0\x54\x63\xc3\x32\xf5\xca\xa4\x79\x6a\xd5\x84\x02\xac\x52\x54\x56\x84\x1f\xe7\xa0\x86\xe8\x72\x9b\x3f\xf0\xeb\x12\x2b\x1f\xf8\xed\x91\x64\x91\x43\xcc\xa7\x80\xb0\x6a\x9f\x46\xf9\x37\xe7\x81\x94\x84\x59\xfb\x40\x1a\xa8\x50\xa7\x6c\x00\x5b\xc2\xf3\xd4\x8b\xad\x78\xd2\xae\x57\x45\x09\xe7\x1a\x8b\x16\x9b\xc4\x9f\xf6\xac\xd1\xa9\x5e\xee\x15\x2d\x79\x35\xf0\xe0\xd0\x9f\x17\x42\xd6\x90\x96\xdb\x94\x89\xc1\xec\x0d\xfc\xb9\xa6\x49\x88\xf3\x64\xf2\xbb\x9f\x9d\x82\xf5\x24\x3b\x31\x7e\x6d\x0e\x11\xa4\x09\x23\x00\x37\x67\x63\xaf\xdc\xc7\x7b\xf7\x33\xbc\x12\x37\x15\x68\xf8\xce\x3b\xf4\xf1\x26\xd0\x1d\x5d\xb3\xde\x13\xb6\x9f\x6c\xee\x83\x85\x02\x6b\x51\xef\x55\x93\x09\x40\xb0\x46\x34\x09\xb0\x58\x26\x67\x9d\x1a\xa2\x2e\x68\xac\x2c\x4c\x4e\x56\x72\x2c\x1d\x4c\x73\xb3\xae\x42\xc9\x75\x8a\xff\x37\x83\x04\x93\xcc\xe5\x37\x4b\x9f\xfd\xc6\x6d\xee\x86\x5a\xd6\x77\xc4\xaf\xd9\xa4\x82\xdc\xc9\xfa\x01\xbf\x59\x07\x74\xba\x5f\x60\x65\x93\x6e\x25\xc1\xdb\x94\x69\x32\x98\x5a\xb3\x5e\xa1\x03\xcf\x5a\xb0\xe8\x4b\xb1\xce\xc8\x72\xd4\xca\xac\xe8\x6b\xad\x9e\x6d\x10\x7c\x0c\x97\x47\x8b\x13\x0f\xd1\x07\x79\xe4\xf6\xb0\xc7\xc4\x76\xf0\x67\x9d\x1d\x79\xdf\x99\xc5\x0b\x50\xf8\x0a\xc4\x64\xa2\x01\xfd\x0d\x16\x09\x7f\x04\xd7\x80\xcc\x68\xb4\xbe\xc0\x35\xa5\x19\x9b\x58\x58\x35\xcf\x2e\xa6\x0f\xeb\x18\xd3\x19\x98\x00\x1b\x40\xeb\xa3\x73\xaf\xc5\xcd\xfb\xe9\x93\xae\xb5\x6f\x3e\xc0\x6a\x75\xfd\x9b\xe6\x90\xfd\xad\xc5\x1f\x6c\x26\x25\x09\x00\xa1\xab\x4c\xd7\x94\x94\xf0\xff\xb1\x77\xed\xcd\x6d\xdb\xca\xfe\xab\xc0\xea\x1d\x4b\xea\x48\xb4\xa4\x28\x69\xaf\x3d\x6e\x6f\xda\x34\x8d\x67\xf2\xe8\xc4\x4d\xef\x1f\x96\xc7\xa6\x45\x48\xc2\x0d\x49\xe8\x92\x90\x1f\xa7\xf6\x77\x3f\x83\x5d\x3c\x49\x48\xa6\x6c\x9f\x74\x7a\x4e\x26\x7f\x44\x26\x5e\x8b\xc5\x6b\xb1\xbb\xf8\xad\xf6\x1d\x24\x75\x09\x69\x5d\xcc\x35\x33\xa0\x0e\x74\x88\xfc\xee\xb4\xa2\x83\xd9\x77\x5d\xd1\x39\x90\x8e\xd3\xbc\xa3\x81\x4f\x08\xb9\x23\x54\x4e\xc4\x6d\x43\x84\xe9\x53\x30\x2f\x79\x4a\x23\x0a\x88\xb9\x3e\x60\xee\xa7\x1c\xc0\xe9\x05\x07\x6b\x1b\x62\x7d\x82\xaa\xdd\xc8\x53\x57\x60\x40\xb6\x42\xda\x22\x46\x8b\xe0\x05\xa5\xb9\x0a\xf7\x46\x93\xa8\xed\xd0\xaa\x24\xd9\x89\x0a\xc3\x66\xf8\x72\x5a\x19\x60\x44\x90\x5f\x03\x42\xec\x0a\x09\xb6\xdc\x22\x2e\x2b\x82\x21\x39\x34\x95\x45\x2a\xe2\xe5\xee\xae\xa7\xe1\x35\x55\x9d\x54\x33\xf6\xc9\xf0\xb4\x47\x4e\xda\x6b\x64\xce\xf6\xa9\xdb\x70\x9e\xa4\xf4\xc3\x55\x5e\x99\x2b\xda\x88\xe5\x4c\x0a\x96\x97\x42\x4e\x17\x33\x06\x7b\x7b\xe4\x9b\x63\x51\xb0\xa9\x78\xc7\x21\x44\x5e\x9c\xa8\xcb\x55\x60\xe8\x75\xe5\xaf\x3e\xbc\x8b\x66\x2c\x4f\x5e\x7d\x78\xf7\x9e\x27\xd4\xd6\x7a\xa0\xf9\x5a\xa3\x0e\x49\xb3\xfa\xe8\x8e\x4b\x34\xca\xb7\xde\x9a\x74\x64\x23\x38\x2d\x1e\x0c\x67\xee\xac\x56\xb5\x18\x5d\x4c\x18\x38\x49\x0d\xa2\xb7\x3e\x85\x9c\x1c\x4a\x71\xd0\x33\xe7\x87\x87\x28\x83\xa7\xc3\x3d\x70\xe7\x4a\x08\x75\xd2\x94\xcc\xe9\x8a\xe6\xe8\x01\x84\xe2\xb7\x87\x87\x1e\x05\xd4\x52\xbd\xd0\x5c\x73\x8a\x54\x6e\x91\x3d\x7b\xa4\x78\x99\xf0\xdb\x7a\x3c\x9c\x89\xeb\xc0\xe4\x89\x5a\x56\x9e\xf4\xa5\xd8\xdb\x5b\x90\x1e\x1d\x90\x23\xec\xaa\x99\x6e\xfe\xc0\x5a\x69\x37\x58\x53\xc2\x2e\xdb\x07\xc1\x72\xeb\xce\x61\x6f\x2e\xb8\x99\x7a\xe1\xa3\x5b\x6f\x0c\x6e\x8f\xac\x55\x06\x67\xb3\xed\x4b\x9d\xe9\xee\x32\xfa\x54\x52\x39\x49\xc8\xc5\x8d\x36\xcd\x45\xf5\xca\x77\xd6\x32\x60\x77\xb7\x92\x08\x01\x22\xd8\xa5\x14\xc5\x4d\x0d\x80\x29\xf3\x12\x24\x80\x9c\x96\xf0\x48\x9e\xcf\x48\xca\xc8\x0f\x24\x65\x91\x8b\x79\x15\x12\xfe\xe5\x3e\x9c\xb2\x76\xe5\x08\xd8\x98\xc1\xa7\xde\x1d\x11\x6f\xdf\x5f\x3f\xac\xa1\x2a\x37\x4c\x82\x4a\x0b\x66\xb7\xc6\x1f\x4d\x3d\x4d\x9d\x73\x3b\xfa\x0d\xc3\xc9\x17\x8e\x82\x4c\xd9\x58\xdd\xad\x41\x2b\x38\x1a\xbc\x1a\xa8\x5f\xb8\x02\x3e\x9b\xeb\xf6\x27\xa3\x59\xe8\x05\x2e\x2c\x5d\x07\xf6\x71\xb6\x6f\x37\x4e\x43\x9c\x2f\x2a\x35\x01\x8d\x72\x88\xf4\xb9\xee\xc4\x0a\xb0\x3f\xa3\x25\x5f\x76\x74\xb0\xd2\xbb\xed\x82\x4f\x6c\xe4\xf9\x1a\x8e\x37\xe3\xf7\x5a\x36\xd7\xb9\x74\x57\xed\x66\xf7\x71\x31\x11\xf4\xe1\xbb\x09\x28\xe9\x15\x28\x9f\x50\x01\x84\x76\x86\x3e\x93\xbb\xf5\x39\x9a\x3e\x41\xca\xa7\x85\xb8\xf1\xb0\x90\x1c\x01\xb0\xee\xa4\xe0\x9a\x1c\x8d\x4a\xe6\x7e\x8f\x35\x79\x60\x13\x06\x62\xd1\x36\xe0\x4c\x04\xb5\x31\x50\x26\x4e\x4b\x08\x14\xaf\x62\x08\xd0\x44\xae\x6e\x8b\xdc\x81\x4e\x2f\xca\xe2\x8d\xd7\x0f\xc1\x21\x4e\xc6\x93\x00\x3d\xd5\x3b\x60\x62\x1e\x74\x56\xe8\xee\x62\x37\xe7\xf3\x6e\xa4\x22\x58\xb3\x5c\xce\x0a\xaa\xb1\x44\x66\xbc\xf0\xf2\x81\x4f\x8d\x58\xd0\x1c\x2a\xb4\x8a\x4a\xa3\xcd\xf3\xa0\x33\xb4\x3e\xbe\x81\xfb\x8a\x86\x46\x0f\xf8\x38\xce\x48\xbc\x59\x5b\x08\xc3\xc2\x04\xc9\x56\xa5\xc6\x5f\xbf\xa0\x01\x1d\xe2\x93\x86\xd6\xb8\x5f\xb0\xad\x44\xd7\x38\x40\xe5\x7c\xa3\x40\x1c\x52\x1e\x7c\x1b\x97\xf0\xf8\xe3\xba\xc3\xca\x35\xbd\xef\xea\xbd\x1c\xbc\x05\xfc\x34\x8d\x63\xdb\x1f\x1a\xf8\x46\x39\x98\x1d\x78\xb0\x10\x90\xa5\xfb\x64\x78\x40\x18\xf9\xe1\x90\x0c\xe4\xff\xfd\x43\x32\xec\xba\xbb\xbc\xea\xb1\x53\xf2\x84\x9d\x9a\xaa\xf1\xf4\xab\x0b\xe3\x9b\x85\x6e\xef\x20\x5b\x43\x3f\x3b\x70\x6c\x22\x05\x8d\x3f\xd7\x0e\x34\xc9\x57\x39\x0d\xd6\xb4\x53\x99\x08\x72\x86\xe9\x9c\x92\x7a\x7b\xca\x07\x09\x90\x3b\x59\x7f\x08\x4e\xed\xeb\x92\x03\x9c\xdc\x14\xc8\xa4\x1e\xc7\x04\xe6\x6f\x6c\x82\x83\x90\x78\x26\x68\xb1\xae\x3b\x11\x86\x33\x79\xcd\x1d\x4d\xb8\xe0\x24\xa1\x82\x42\x44\x83\x58\xae\x7a\xb8\xbb\xc5\x96\x64\x82\xe6\x22\x2c\x7a\xc3\x57\xb0\x54\xc8\x32\x2e\x4b\x99\x39\xae\x2a\xdc\x65\x85\x66\xb7\x6e\x7f\x0d\x33\x72\x4f\x98\x11\x2d\x71\xc1\x38\xa2\x8f\xb5\x32\xdb\x00\xbe\x99\xca\xfb\x0b\x03\x15\x92\xf6\x6d\x93\x9d\x5f\x95\x72\x57\x7e\xf3\xfb\xbb\xb7\x66\xec\xb9\xcc\x51\x63\xc8\x4f\x46\x0c\xee\x11\x26\xda\x72\x6c\xcf\x53\x76\x8e\xae\x94\xca\x1c\x0a\x5b\xe1\x39\x1c\x24\xe7\xf0\x1e\x20\x06\xe3\x74\x28\x13\x1c\x13\xbe\xeb\xb7\x41\x10\x35\x7d\xc6\x9e\x92\xff\x01\xe7\x2f\x78\xa6\xd0\x17\xbc\x6f\x5e\x16\xf4\x15\xc4\x08\x56\x10\x29\xfa\x83\xfe\x9f\x7a\x7f\xaf\x5a\x81\x80\x5f\x40\xdd\x3d\x1b\xfc\xfa\xad\xbc\x2e\x40\xba\xa3\xb6\x89\x28\x3c\xee\x6a\x33\x31\x68\xab\x92\x84\x06\x5b\x6d\xea\x50\xeb\x9c\xcd\xb2\xe2\x78\x2a\xc8\x25\x2d\x04\x9b\xc6\xa9\x09\x40\x92\xd0\x92\xcd\x73\x35\x83\x4c\x50\x16\x39\x90\x19\x87\x48\xfa\xe0\x89\xad\x0f\xf3\x2a\x49\x4a\x65\xf6\x58\x19\xe1\x29\xfd\xf2\x21\x2e\x0a\x3c\x4c\x61\xf3\x85\x30\xfd\x64\xa5\x02\x09\x0e\x35\xf2\xab\x76\x2d\x68\xde\x54\x4c\x86\xcb\x6b\x92\x42\x1b\xe8\x61\x01\x26\xd9\x24\xb1\xc3\x7a\x01\x2e\x17\x5a\xb6\x30\xbd\xf6\xdb\x57\xde\x1a\x5b\xc3\x93\x05\xef\xc2\x0d\xf6\x8e\x4f\x28\xf0\xc9\x19\x78\x63\x75\x0a\x21\xf7\x5b\x63\xd5\xf5\x69\x7b\xac\x27\xab\x5e\x71\xe8\xc9\xaa\xff\x6a\x06\x50\xb4\x0e\xec\xcb\x93\x00\xd4\xf2\xeb\x91\x6c\xc5\x24\x53\x4a\xdf\x65\xf1\xfe\x38\x62\xaa\x82\xae\x02\xd7\x86\x3a\xe0\x49\xe1\xf5\x87\x99\x4e\x04\x10\xfe\x48\xa5\x76\xd5\x79\xfd\x1f\x00\x19\x36\x22\xc3\xd1\x74\x14\x8d\x86\x64\x40\xc6\xfd\x61\xf4\xdd\x7f\x93\x71\x7f\x5c\xc2\xaf\xfe\x18\xff\x11\xfc\x83\xe0\x0f\x22\x7f\x8c\xff\x91\x0d\xc8\x68\xda\x1f\x45\x2f\xbe\x23\x83\xfe\xf7\x64\x18\x3d\x1b\xf7\xbf\x27\xe3\xcb\xd1\x62\xf8\xe2\xb2\x3f\x9a\x0e\x64\xda\x8b\xfe\xf3\xe8\xd9\xb3\xfe\xb8\xff\x7d\x7f\x6c\x71\x97\x7e\xa3\x45\xc9\xf3\xaf\x40\x4b\x0f\x74\x5b\x46\xf6\x6d\x04\x18\x52\x1c\xfe\x8b\x21\x7f\x36\x7a\xdd\x36\x0a\xd5\x5b\xf5\xe3\xad\x79\x02\x57\x33\xc8\xba\x8e\x17\x05\xcb\x3f\xdb\x28\x33\xc6\x85\x77\x6c\xbf\xe8\x50\x36\xce\xa7\x19\xcf\xc5\xeb\x38\x63\xe9\x4d\x20\xac\xb1\x4d\xf4\xf2\xdf\x13\x04\x79\x34\xb0\xea\xa3\x94\xe5\xf4\x8d\x6a\x75\xe8\xb8\x11\xcb\x93\xe6\x63\x9c\x30\x79\x35\x6f\x3f\x77\x5d\x8c\xf9\x25\x2d\x66\x29\xbf\xda\x27\xed\x05\x4b\x12\x9a\xdb\xa4\x55\x49\x8b\x63\xd8\xcf\xb5\xcb\xd7\xa4\xee\x0d\xd4\x0c\xf6\x25\xe7\x82\x9c\x97\xc5\xf4\x5c\xca\x8c\xf2\xc7\x31\x15\x55\xd8\x97\x57\x3a\xe8\xc5\x66\x34\x27\xeb\xd1\xa5\x83\xce\x84\x1c\x0e\x83\x38\x50\x06\xd3\x1e\x0e\xe0\x36\xf9\xb1\x92\x61\x5e\xd0\x9b\x93\xf1\x60\x70\x4a\xaa\x45\x21\xe5\xc5\x60\x70\xfa\x60\x0e\x9c\x5f\xc6\x05\x8b\x73\x71\x38\x69\x4d\x59\x31\x4d\xa9\x8f\x7b\x03\x9f\x1e\x08\xb9\x64\x6b\x86\xbe\xd3\xc4\xab\x5a\x7d\xab\xb9\x76\xea\xe9\x80\x1d\x85\x58\x6d\x91\x9b\xf2\x14\x3d\x2d\xff\x7f\x15\x17\x7e\x4f\xf1\xd3\x5a\x6a\x06\x8d\x9b\x65\xd9\xdc\x6d\x95\xe2\x8d\xa5\x36\xc9\xa4\x7c\xa5\xbc\xc4\x1c\xa0\xab\x6c\x7e\x6f\x94\xef\x60\x1c\x2a\xdf\xe5\xbe\xba\x2f\xec\xed\x91\x37\xa0\x94\x24\x39\xcf\xfb\xd8\x53\xc2\xb2\x78\x4e\xf1\x01\x91\x56\x08\x12\x06\x9e\x8d\xea\x35\x2c\x3e\x5e\x38\xfa\x85\x0c\x87\x36\xec\x04\x1c\x18\xaf\x19\xec\x3e\xe0\x90\xe9\x35\x22\x2f\xab\x71\x2a\x80\x98\xa8\xb2\x5a\x3c\x07\xc7\x5a\x29\xe4\x5c\x3c\x87\x37\x4a\x9f\x69\x4e\xf0\xfd\x3f\xcf\xd3\x1b\x72\xc5\x8b\xcf\x25\x01\x90\x99\x82\x67\x34\x72\xbb\x7c\x94\x27\xb0\x17\x0e\x07\x83\x41\xf3\x31\x9a\xe9\xc7\x74\xf0\x8a\xd1\x78\x98\xab\xaf\x81\x21\xf8\xee\x79\x68\x04\xe4\xd7\x89\x63\xbe\x55\x9e\x82\x93\xdc\xc5\x6d\x7d\xcb\xe3\x84\x26\x9d\x33\xdf\x61\xae\x2c\xa6\xe4\x90\xc8\x8f\x51\x59\x4c\xad\xa7\x05\x4c\x0e\x27\xe5\x98\x0a\x37\x86\x0f\x1c\xc4\xff\xb5\x2a\xa9\x8e\x5f\x63\x4c\xab\x18\x70\x04\x6e\xae\xce\xb6\x0b\x6d\xcb\xea\xfc\x82\x95\x98\x38\x6f\xd7\x65\x33\xd1\x70\x2a\x4e\x8c\xeb\x8c\xfa\x3b\xb2\x5b\xbb\xbb\x64\x07\x29\xaf\x6b\x70\x8c\x67\x64\x55\x1d\x62\xa8\x50\x5d\x38\xb0\x3a\xb9\x78\x0a\x8f\x68\x0f\x41\xad\xeb\x7c\xc7\xe9\x72\x08\x5a\xa1\x23\xf9\xdb\x78\x00\xe0\xd4\x46\x16\x97\xc5\xb4\xfa\x15\x39\xec\x31\x57\xa7\xf2\x5c\xb2\xcc\x95\x12\x3a\x15\xe3\xd4\x0e\x92\xe3\x69\xdd\xb0\x73\xae\x4e\xad\xc6\xdc\x4e\x1b\xc7\xc2\x2a\x82\x6a\x2d\x83\xc3\xc1\xbf\xa4\x69\xa8\x39\xd0\xb2\x1a\x94\x60\x83\x86\xeb\x30\x1e\x4e\x51\x34\xa7\xcb\x49\xab\x58\xa8\x2c\xeb\xaa\x32\xec\xa6\x5c\x09\xda\xd7\xf4\xe5\x65\x2c\xe2\xa2\xb9\xa7\x29\xe6\x5f\x13\x99\x2e\x15\x8e\x67\xa9\xf8\x0b\x9c\x24\x0d\x94\x93\x35\x11\xae\xf3\x93\x0c\x78\x39\xfa\x76\x48\x27\xee\x3e\x9a\x55\xab\xb9\x2c\x1c\x51\x36\xaf\x80\x11\xa9\x0f\x1e\xd2\x50\xe9\x81\x10\x95\xee\xae\x62\x53\x42\xbb\x8d\x49\x3a\xa6\x35\x37\x4f\x75\x6a\x3a\x41\xd9\xe0\x6f\x93\xcd\xa6\x57\x0b\xf8\x7e\xbc\x20\x49\x38\x9d\xac\xd6\xb3\x95\x73\x98\x78\xa4\xeb\x97\x66\x9f\x85\x33\xd2\x3f\x8b\xa9\xf9\x71\x4c\x85\x0e\xa7\x06\xa4\x56\xdd\xb4\xac\xf1\x02\xb4\xb8\xda\xe4\x1e\x93\x05\xe7\x9f\x09\xcb\x4b\x41\x63\x50\x95\xf3\x1c\xb4\xd6\xe6\xf5\xbd\x23\x21\x08\xae\x8f\x5b\x52\xd2\xe2\x92\x16\x7d\x88\x7a\x8b\x9e\x42\xa8\xc3\xd0\xed\x99\xcd\xdc\x1e\x2a\x6a\xb5\x96\xc5\x74\x9f\xd8\x81\x45\xd2\xf7\xd5\xff\xb0\x62\x3d\x9f\xa0\xa3\x6c\x8e\xfb\x1f\xb9\xbd\xb5\xdb\xa0\x9b\xfc\x9e\x8b\xd7\x31\x4b\x59\x2e\x33\xaa\x12\xbb\xbb\x9a\x02\x70\x9f\xc2\x3d\xe5\xc0\xf3\x45\xf0\x4a\x5a\x0f\x0b\xcb\xa7\x26\x21\x85\xb2\x79\x28\xa0\x90\xbc\x1a\x89\x7d\xe2\xae\xf9\x4a\xaf\xab\xfd\xf6\x57\xc6\x3e\xf1\x97\x44\x28\x8a\x50\x36\xd7\x02\x84\x59\x6f\xda\xf2\xec\x38\x16\xb8\x3b\xcd\x0e\x0e\x7d\xa8\xab\x6e\xbe\x6a\x1d\x96\xa3\x71\x2a\x42\x85\xe3\x54\x9c\x0c\x4e\xdd\x62\x0f\xe0\x25\x5e\x83\x1d\x2f\x83\x40\x9f\xb5\xc8\xa3\x3a\xfe\x20\x3b\xfb\x06\x7b\x78\x03\xa7\x28\x5a\x46\xe5\x4d\x29\x68\x66\xe1\xb2\xd4\x72\x3b\xf5\xdc\xa6\x76\x6a\x33\xd3\x0d\xb3\xe5\xdc\xd3\x36\x82\x1e\x39\xc6\xf7\xed\x6d\xef\x78\x30\x7d\x05\x3f\x7a\x7a\xf0\xa3\x4f\x60\x7c\xce\xc9\x94\x67\x17\x2c\xc7\x68\x52\x10\x6b\xa3\x7e\x6d\x12\x5c\x95\x59\xa2\x4b\x07\x3c\x94\x49\x85\x83\x71\x62\x8c\x47\xca\xdb\x92\x9c\xb3\x6c\x1e\x44\xdd\x80\x2d\xa5\x89\x8e\x19\x2e\x0e\x58\x1f\x5e\x19\x64\x13\xf4\xda\x5c\x2f\x4b\xb9\xdb\xeb\x6b\x8c\x92\x77\xe0\x95\x91\xa4\x9e\x19\x4c\x18\x0f\x2c\x66\x1a\xa3\xfd\xdf\x98\x2c\x7b\xb2\xd6\xff\x5b\x95\xa2\x0a\xdd\x50\xb1\xb7\xff\xad\x81\x98\xfe\x16\xa6\xc2\x2f\x60\xce\xb3\x00\x34\x75\xfc\x19\x67\xb6\x6a\x6f\x17\x1f\x29\x49\x4d\x48\x0d\xbd\x13\xe7\xea\x0e\xa1\xea\x3e\x12\x7a\x72\xe9\x9c\x29\xe0\x09\x19\x5e\xc9\x73\x5c\xb2\x04\x6f\x1c\x08\xd8\xe2\xf4\x5c\x1f\x7e\x0d\x71\xb5\xce\xe1\x64\x3d\x0f\xac\xc0\xb5\x0b\x4f\x1d\xc9\x8d\xc6\x1b\x17\xd1\x36\x95\x4b\xb9\xa0\x71\xd5\xb0\xa9\x34\xab\x1d\xad\x4d\x72\xed\xfa\xf9\x0b\x5a\x2e\x79\x5e\x02\xd2\x13\xdc\x49\xd5\xc0\x54\x88\x02\xd9\xa4\x11\x5d\xa0\xf4\xd2\x96\xb6\x18\x4f\x1d\xa7\x2e\x75\x3e\x86\x1c\xb5\x94\x94\xdd\x23\x6d\xa5\x5e\x03\x60\x19\x50\xf8\xb4\x4f\xbb\x8f\x35\x76\xe1\xce\x86\xa6\x2e\xfc\xdd\xcc\xd0\xb5\x7d\x54\x73\x17\x11\x64\x83\xa8\xa3\x9f\x45\xfc\x79\x87\x82\xf9\xb6\x1e\xff\xae\x8b\xa0\x1a\x34\x75\xfd\x6b\x57\x90\x47\xee\x02\x36\x28\x27\xcb\x57\x63\xce\x83\x8c\x39\x4d\x43\x3d\xfc\x95\x76\x9c\xba\xb5\xa1\x0e\x8e\x42\xb3\x90\x7e\xd6\xfd\x6a\x0d\x3e\x2c\x4f\x59\x4e\xfb\x17\x29\x9f\x7e\x76\x4c\x37\x2c\x4d\xf7\x49\x5b\x3d\x6b\xf8\x19\x5f\xd0\x9b\xc4\xa0\x5d\xa7\x89\x09\x66\x6c\x75\x81\xcd\x9e\xf1\x4b\x3a\x1e\xfc\x74\xbf\x30\x6a\xa8\xee\xe4\xc1\x5a\xfa\x07\x04\x6a\xb8\x37\x20\xc3\xe3\xa9\xd9\x32\x2c\x40\x03\xf8\xff\xc7\xd3\x14\xab\xab\x49\x95\xa0\xda\x4b\xfd\x4d\xd0\xf8\xa8\xe7\x7b\x3c\x31\x20\x4b\xd4\x69\x01\xc5\xc7\x7d\xa4\x40\xd9\x27\x62\x8a\x7d\x9d\x57\xb3\xe3\x59\xc0\x92\x26\x8c\xa9\x63\x25\x6f\x4b\x92\x5e\xa0\x87\x93\x16\xcb\x17\xb4\x60\x3e\xba\x8b\x4e\x3e\xc2\xb4\xfd\x10\x6c\x70\x5b\x15\x7c\xb8\x85\xd3\xa5\x42\xe1\x08\x07\x68\x38\x96\x29\x41\x0a\x36\x99\x77\x9f\x84\xa8\x34\x2e\xe6\x34\x48\xd4\x5b\x99\xb2\x1d\x51\xcf\x9e\x6b\xa2\x26\x15\xe8\x06\xed\x98\xd2\x58\x0d\xad\x7d\x4b\x82\x7a\x68\x47\x0f\xf3\x25\x74\xcd\x8f\x8a\x44\xa0\xa7\xd0\x3d\x71\x08\x9e\x58\xa3\x5d\x5e\xce\x37\x6a\xb4\x55\x82\xc5\xbf\x26\x3e\x84\x75\xed\x98\xb3\x4d\x7a\x98\xd9\x8e\x0e\x5d\x21\xec\xda\x56\x6b\x75\x2d\x44\x96\xfe\xec\x71\xd3\x7c\xb1\xe7\x24\x13\x29\x7d\x09\x78\x96\x26\x97\xf3\xad\xa6\x1e\x67\xf4\xea\x27\x88\x94\xa1\xd4\xe3\xf8\xb7\x55\x8f\x9b\xf4\x6a\x01\x8f\xf8\x01\x19\x90\xd1\x98\x8c\xc6\xae\x86\xbc\x52\xd5\x56\xd1\x00\x9a\x2b\xc6\x4d\x64\x80\x8a\x8e\xdc\x80\x89\xc3\x5f\x86\x51\xf8\xa7\xc3\x11\xa5\x23\x47\x62\x1d\x1d\xf9\x97\xd1\x1f\xaa\x47\x95\x30\xa8\x20\xe5\x9b\xe9\x6e\xf5\x83\x0d\x01\xf8\xcd\xbc\x82\x7a\xcc\x74\xf2\xea\xb1\x4c\x09\x54\xa5\x13\xbb\x5d\x83\xb7\x00\x8e\x8d\x31\x40\x96\x4d\x5a\x60\x4a\x33\x81\x04\x14\xc7\xf6\x89\x3f\xce\xea\x4c\xaa\x4e\xcc\x49\x4b\xde\xfa\xfa\xe8\x0b\x33\x69\xed\x7b\xf3\xf4\x47\x07\x3a\x7e\x1f\xec\xa4\x5a\x09\xca\x65\xcb\x7e\xd6\x36\xcb\x60\x69\x9a\x22\xcd\x14\xa6\xbd\x4a\x35\x0d\x74\xf9\x50\x40\x4e\x8f\x7c\x95\xa6\x5e\xf9\x2e\xd9\x37\x01\x67\xb6\xd4\xc2\xaa\x7d\xf9\xab\x1a\xf6\xe9\xd5\xb0\xef\x79\x42\xe1\x41\x03\x68\x63\xd5\xd9\x7d\xfc\xc7\xaf\x21\x2d\xcb\x57\x7d\xe4\x17\x82\x95\x37\x28\xcc\x2b\xac\x82\x9c\x9b\xad\x41\xa1\x26\x1a\x07\xe8\x58\x11\x63\xd5\x53\xf7\x8c\xe1\x3a\xb0\x7a\x14\x81\xdb\x3d\xd2\x36\xa8\x95\x3d\x6d\xf2\xeb\xd9\x2d\x76\x0b\x2c\xfb\x7f\x1f\xcd\xad\xec\x89\x39\x29\xaa\xbe\x5f\x72\x63\x22\xca\x10\x05\xd0\x10\xa3\xf1\xf2\x1a\x1e\xdc\x6b\x95\xec\x94\xe7\x33\x36\x5f\x15\x14\xc1\xde\x81\x91\x50\x1f\x28\x45\xdd\x6e\x58\x71\x77\x63\x34\x01\x67\x30\x40\x94\xde\x08\x25\xfd\x12\xe8\x2d\xb7\x9e\x29\x66\xca\x6d\xa3\xc1\xec\x1b\x2b\xb6\x6d\x07\x1d\xce\x0c\xae\xbd\x5a\x36\x09\x9b\xcd\x28\xe0\x39\xf0\x25\xee\x9b\xe0\x1d\x27\x07\xea\x82\x26\xca\x6e\xae\xaa\x3f\x79\xf7\xea\x3d\xf9\x5f\x7a\x41\x5e\xf1\xe9\xb6\x48\xf0\xc7\x7f\xfc\xba\x67\x34\xef\x7b\x15\x22\xbb\x46\x7f\x3e\x23\x37\x7c\x05\xbb\xbd\x24\x13\x9e\x5b\x94\x2b\x5a\xa2\x49\xea\x22\x5d\x15\xc5\x0d\x0c\x75\x09\xf9\xca\x05\x5f\xa5\x72\xc3\xbc\xa4\xa5\x60\x73\xdc\xdd\x59\x19\x7c\x66\x0b\x4d\x7e\xd4\x2d\x36\x60\xa6\x7a\xb8\x2c\x47\x6c\xb1\xca\xe2\xbc\x5f\xd0\x38\x41\x10\x12\x79\x9a\x9a\x45\x64\xfc\x09\xe4\xb6\xa2\x5e\xe0\x94\x84\x99\x4d\x44\xb3\xe9\xea\xea\x2a\xba\x7a\x06\xbc\xf9\xfd\xa3\xe4\x47\x1f\xa1\xdb\xf7\xbe\xf9\xc5\x80\x9a\x3b\xf4\x3a\x47\x76\x03\x62\x5f\xa6\x29\xbf\x42\xa6\x80\xbd\x0c\xe5\x0b\x72\x25\x69\xc2\xdd\x91\x17\x09\x20\xfe\x23\x2f\xf9\x4a\x90\x55\xce\x44\x49\x32\x1a\xe7\xda\x86\x16\xe7\x81\x59\x48\x5e\xc3\xf1\x11\x67\xcb\x94\xf6\xb4\x55\xc4\xc9\x26\x27\xcc\xf3\xc1\x80\x74\x40\x27\xd7\x25\x17\x37\x64\x24\xff\x44\x6d\x9c\x92\xc6\xbe\x85\xe3\x55\x92\x07\xaf\xf6\x94\xdc\x75\x38\x69\x49\xe9\xfb\xf9\x80\x8c\x06\x5a\x38\xfb\x16\x87\x50\x92\xa5\xb6\xea\x2a\xfd\x8e\xc1\x4f\x92\x01\x6f\x7f\xe6\xdc\x0a\x05\x82\x2f\xf1\xf1\xce\x94\x17\x39\x2d\x48\x67\xd0\x53\x17\x66\x08\xf3\xa0\x5e\xd3\xe0\xab\x9e\xce\xf3\x41\x6f\x34\xe8\x02\x75\x34\x9e\x2e\x80\x29\xe6\x39\xd1\x15\x2f\xc4\x82\x0c\x07\xcb\x6b\xcf\x08\xa0\xa5\xc7\xea\xa8\x54\x94\xfc\x5a\x5c\x52\x8f\x3b\xc8\x21\x69\x3b\x6f\x30\xb6\x36\x01\xe8\xb2\x18\x15\x1f\xff\x78\xba\xa7\x0c\x9b\x54\xd3\xb5\x97\x25\x81\xa7\x24\x2a\x7a\x3f\xc9\x78\xb2\x4a\x29\x29\x28\xf8\xd4\xe0\x51\xe3\x81\xa7\x5f\x93\x65\x3c\xfd\x1c\xcf\x69\xb9\xf6\x85\x89\x51\x04\xf8\x4f\x4d\x96\xb1\x58\xf4\x88\x63\x2c\x70\xb4\x02\xee\xf5\xd8\x46\x46\xd4\x1f\xeb\x9a\x84\x2d\x22\x95\x61\xeb\x21\xbf\x18\x57\x6c\x07\xc1\x7d\xa9\x60\x06\x24\xa5\xca\xa1\xc3\x71\xd3\xd9\x0e\x10\x69\x6f\x8f\xbc\xa7\x78\xbe\x95\x54\x00\xac\xad\xee\xf7\xb9\x0d\x26\xe2\xbf\xf5\x93\xcc\xc6\x3e\x64\x34\xe3\x91\xa9\x08\x07\x77\x59\xc8\x7d\x5f\x70\x32\x7c\x11\x0d\xc7\x04\xcf\xdd\x32\x5c\x33\x62\xa8\x17\x55\xd4\x92\x8a\xa9\x66\xd2\xb2\x97\x31\x27\x45\x5e\x4a\x31\x82\x9d\xe7\xd5\x62\x6b\xb1\x2b\xa2\xb2\x46\xee\x89\x21\x27\x7b\x15\x7c\x71\xe4\x68\x91\x4c\x2b\x88\xf1\x60\xd7\x47\x5c\x14\xf1\x8d\xbc\xb9\xbf\xe1\xa9\xb5\xea\x44\x7b\xfe\x77\x77\x4d\x30\x41\x0b\xb9\xe1\xff\x8e\xcf\xdc\xdf\xb2\x8c\x09\x5b\x2e\x94\xea\x96\x5e\xe5\xc6\x9b\xfb\xc8\xcf\x6a\xeb\x58\x9f\xc7\xad\x29\xe7\xb9\x4e\xfd\x48\x4b\x87\x84\x4a\x02\x94\x59\xb7\x96\xce\xca\x94\x4d\x69\xa2\xaa\xef\xc4\x45\xd1\x23\xcc\x37\xda\xf8\x9c\x90\x59\xba\xe4\xf6\x36\xc8\x06\x53\xfe\xf6\x76\x43\x47\xdd\x5c\x15\x5a\x3b\x7a\x74\xd6\xd2\x1b\xa2\xe6\x4f\xbd\x96\xa0\xfa\x88\x95\xa6\x99\x6e\xd7\xe9\xc5\x7d\x55\x6f\xec\x91\x69\x43\xc1\xcb\x1e\xdf\x64\x17\x3c\x55\xf1\xe0\xcc\xcd\x7d\xd2\x92\x9d\xda\xe9\x60\x6a\x04\x35\x0a\x5e\x10\x96\x93\x0f\x70\xdf\x41\xa2\xba\xae\x9b\x30\xf8\x91\xc7\x45\x41\x0e\xc9\xc9\xa9\xfd\x92\xbb\x0e\xd6\xf0\x25\xf1\x9c\x7f\xe1\x93\x5c\x2c\xae\x0b\x37\x88\x08\xc5\x8d\xde\x2d\x0c\x36\xc2\x19\x23\x87\x92\x05\x27\x15\xc2\x4e\x3b\xdd\x1e\x39\x2b\x0f\xc8\x4e\x07\x1a\xec\x9c\x01\x94\x16\x8b\x72\x7a\x2d\x3a\xdd\x6e\x94\xf0\x9c\x76\x0f\x2c\x35\x8e\x43\xb2\xa4\x39\x5a\xae\xca\x45\xe7\xac\x8c\x00\xfd\xa3\x5b\x45\x4e\x20\xbb\xbb\x98\x4d\x81\x08\x48\x6e\xb1\xae\x87\x78\x80\x7a\x61\x32\x8d\xc5\x74\x41\x3a\xd4\x0c\x27\xc1\xfe\x3a\x2e\xe6\xd0\x59\x0a\xc3\x28\x4b\xcc\x58\x0e\x91\x1f\x74\x78\x48\xdb\x6b\xe5\x9c\x7d\x06\x80\x57\x67\xec\x64\xd2\x42\x6e\x4f\x5a\xa7\xd6\x41\xd0\xff\x6e\x3c\xd5\x6b\xf5\x62\x65\x67\x49\x97\x88\x45\xc1\xaf\xc8\x19\xf5\x08\xf7\x34\x6b\x67\x0d\x26\x59\x6d\xc2\x63\x43\x58\x79\x4e\xaf\x40\x79\x81\x98\x0a\x93\xd6\x51\x7e\x19\xa7\x2c\x91\xd2\x3a\xcd\x96\x02\x21\x11\x4a\x51\xac\xa6\x42\x5e\x58\x72\x0e\x40\x32\x50\x19\xd1\x08\x6b\xd1\x64\x92\x1f\xe5\x04\xdf\x0c\x0b\xc0\x6a\xd1\x79\x7a\x50\x02\x56\x90\x7a\x38\x52\x22\x66\xc2\x22\xbe\x94\xd7\xb9\xc0\xec\x20\x19\x15\x0b\x9e\x44\xb8\x69\xdf\xb5\x4e\x7b\x2d\x0c\x51\xf4\x91\x73\xd1\xda\x6f\xb5\xee\xfe\x19\x00\x00\xff\xff\xd5\xcc\x2f\x29\x5f\x9f\x04\x00") -// FileIdentifierStaticJs815de8a91ChunkJs is "identifier/static/js/8.15de8a91.chunk.js" -var FileIdentifierStaticJs815de8a91ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xbd\x6b\x7b\xdb\x38\xb2\x2e\xfa\xfd\xfc\x0a\x09\xd3\x87\x01\x5a\x08\x23\xd9\x49\xec\x50\x41\xb8\xd3\x89\xd3\x9d\xe9\x5c\xbc\xec\xa4\x7b\xcd\x52\x34\xde\x34\x05\x5a\x8c\x65\x50\x03\x82\xbe\x8c\xc8\xf3\xdb\xcf\x83\x1b\x09\x4a\x94\xe2\x74\xcf\xac\xfd\xec\x95\x0f\xb1\x08\x82\xb8\x16\xaa\x5e\x14\xaa\x0a\x50\xcc\xd3\xdc\xbf\xa1\xe7\xcb\x28\xbe\xfc\x6b\x9e\xb1\x65\x3a\xa3\x4c\xa4\x49\x4a\x39\xd9\xf1\xae\x2c\x27\x53\xe4\x2f\x8b\x7c\x0e\x27\x93\xc3\x29\x7e\xc9\x79\x74\x07\x47\x87\xc8\x8f\x33\x16\x47\x02\x4e\x92\x82\xc5\x22\xcd\x18\x14\x98\xa1\xd5\x75\xc4\x7b\x94\x08\x9f\xde\x2e\x33\x2e\x72\xb2\xba\xa6\x3c\x4f\x33\x16\x80\x3d\xff\xa9\x3f\x1a\x81\x6a\x0c\x58\x71\x75\x4e\x39\x20\x44\xdc\x2d\x69\x96\xf4\xce\xce\xa8\xe7\xc1\xb3\x33\x4a\x28\xaa\x30\xc6\x78\x77\x91\xa0\x60\x33\x9a\xa4\x8c\xce\x40\xdf\x16\x71\x93\xb2\x59\x76\xe3\x79\xfa\xaf\xff\x3e\x12\x73\x42\xe4\xff\xa1\x4e\x09\xba\x3e\xca\xe9\x22\xf1\x3c\xf9\xbf\xfb\x81\x7c\x0e\xde\xd8\x16\x00\x4e\x45\xc1\x59\x4f\x0e\x11\x40\x10\x75\xb5\xfe\x42\xb5\xfe\xc2\xb6\xbe\xdd\x7e\x4c\x75\x0f\x38\xa1\xf0\xc9\x08\xe1\x8c\x50\x38\x1a\x8d\x10\x4e\x09\x85\x07\x43\x84\x0b\xf2\xf1\xfc\x2b\x8d\x85\xaf\xdb\x77\xcc\xb3\x25\xe5\xe2\x6e\xcc\xfc\x84\x50\xb8\xf7\x0c\x85\x9d\xef\x83\xf5\x4a\xd2\x04\x72\x28\x10\x66\x24\x85\x0c\xf7\x87\x08\x73\x48\x11\xce\x90\xe0\x77\x2b\xd3\x8b\xc2\x64\xae\xe2\x48\xc4\x73\x18\xa1\x55\x95\x26\x10\x5c\x50\x01\x52\xd6\xa3\x65\x09\x72\xf3\x13\x89\x39\xcf\x6e\x7a\x9f\xee\x96\xf4\x88\xf3\x8c\x43\xf0\x32\x8e\x69\x9e\x67\x3c\xef\xb1\x4c\xf4\xf2\x62\x29\x67\x83\xce\xfa\x00\x8d\x75\xe9\xe0\x3a\x5a\x14\x54\x7d\xed\x79\x50\x4c\xd8\x94\x50\x5f\xa5\x21\x2c\xaa\x6a\x63\x54\x9a\x19\xed\x53\xf8\x64\x0f\x41\x58\xe7\x40\xb6\xc1\x07\xfd\xee\xd1\x81\xab\x0a\x83\x08\xe0\xd5\x05\x15\x41\xc7\x67\x55\x85\xfc\xa8\x42\xa8\xea\xa4\xa5\x55\xe5\xcf\xa3\xfc\xe3\x0d\xab\x07\xbb\x69\x4b\x3b\xbf\x29\x8f\xfa\x71\xb4\x58\xa8\xa4\x8e\x8e\x80\x22\xa7\xbd\x5c\xf0\x34\x16\x60\x6c\x5f\xf6\xb8\x2e\x21\x4d\x20\x2b\x16\x0b\x42\x04\xd2\x85\xad\xaa\xb1\x6a\x05\xe6\x38\x5b\xab\x6d\x77\xde\x55\x85\x53\x3b\x1a\x97\xf4\x2e\x87\x02\x8d\x93\x8c\x43\x4e\x86\x63\xfe\x3c\xf5\x17\x94\x5d\x88\xf9\x98\x0f\x06\x88\x92\x74\xc2\xa7\x98\xf9\x29\x9b\xd1\xdb\x8f\x09\xa4\xe8\x05\x19\x96\x25\xcc\x26\x74\x4a\xc4\x84\x4e\xed\xa4\xf5\xb2\x4a\xd5\x3d\x4e\x13\x68\xca\xbe\xa0\xc2\x19\x9a\xd3\xbb\xab\xf3\x6c\x91\xeb\xa1\xab\xeb\xef\xcc\xf3\x07\x1a\x64\x8a\x5b\xf2\x4c\x64\x72\x3d\xc9\x5f\xaa\xc8\xb7\xf9\x11\x2b\xae\x28\x8f\xce\x17\xf5\xe0\x53\xe4\x79\x4e\x0f\xaa\xba\x07\xd4\x9f\x41\xa6\xe8\xa1\x83\x84\xb8\x22\x83\x9d\xeb\x72\x6f\xcf\xac\xcb\x43\xbd\x2c\x47\x23\xb5\x2e\x29\xdc\x3f\x44\x38\x92\x7f\x87\x08\xc7\xf5\x64\xf5\x04\x64\x98\xe2\x58\x17\x90\xe3\x04\x2f\xf1\x82\x30\x4f\xf8\x6f\xf0\x5c\xfd\xfd\x19\x5f\xab\xbf\xa7\x78\xa6\xfe\x1e\xe3\x3b\xf5\xf7\x27\x7c\xa5\xfe\xfe\x8e\x2f\xc8\x3c\xcc\x02\xd9\x19\x3b\x2b\xab\x0a\xe1\x73\x72\xd1\x8c\x05\xbe\x25\xf3\x90\x07\xd7\x21\x9f\xd0\x69\x00\xb9\xca\xbb\xaa\x50\x93\x43\x8d\x76\xde\x4b\x59\x6f\xee\x79\x30\x26\x14\xe1\x18\xc1\x84\xf4\x17\x9e\x77\xeb\x79\xd7\x59\x3a\xeb\x0d\xfb\x84\xdc\x4e\xf2\x29\xf2\xbc\x08\x5e\xe0\x1c\x95\x25\x5c\x92\x24\x94\x69\x41\x3c\xc9\xa7\xf8\x62\x92\x4f\xc9\xdc\xf3\x80\xed\x5f\xc3\x21\x65\xa6\x50\x66\x0a\xee\x3c\x2f\x09\x53\xb8\xc4\x1c\x05\x57\x9e\x27\x5f\x10\xb2\x0c\x9b\x11\xd5\x83\xc1\x1a\x8a\x96\x43\xc4\x15\x4d\x4b\xde\xd9\x4b\x59\x2e\x22\x16\xcb\x52\x05\x5a\xe5\x37\xa9\x62\x40\xfc\xa2\xb8\xa2\x4c\xe4\x86\x56\xd0\x2a\x8e\x72\xda\x1b\x06\x66\xee\x18\xbd\xe9\x89\xb1\x4a\x1b\xb5\xd2\x20\x43\x3a\x79\x6f\x2d\x59\x32\xb7\xf5\x14\xcc\xeb\x34\xe1\x47\xcb\xe5\xe2\x4e\x35\x09\xd7\xb5\xa3\xca\xae\x06\xd6\x0c\x2e\x71\xc8\x12\xb3\x0a\x2e\x51\x30\x73\x07\xa9\x16\x00\xcb\x30\x85\x56\x5e\x28\x52\xc5\x4b\x14\x2c\xf1\xcc\xf3\x20\xbc\xf0\xaf\x53\x2e\x8a\x68\x51\x96\xcd\x6f\x39\xd5\x48\x0e\xe0\x12\x4b\x62\x38\xf1\xbc\x73\xcf\xeb\x9f\x4f\xf2\xa9\xe7\x15\xf0\x1c\xe7\x78\x89\x10\xaa\xc6\xb1\xff\x86\x8c\x70\xec\xff\x4c\xf6\x70\xec\x9f\x92\xc7\x38\xf6\x8f\xc9\x21\x8e\xfd\x9f\xc8\xe8\x29\x8e\xfd\xdf\xc9\xbe\x7c\xf3\x99\x3c\x95\xaf\x4e\xc8\x68\xef\x10\x37\x9c\x2c\xde\xe4\x54\x35\xc1\x1f\x6a\x82\x7f\xf2\x0c\x39\xac\x4f\x4b\x9b\xf5\x6f\xec\x32\xf2\x13\x95\x92\xc1\x11\xa6\x08\x55\x1b\xf2\xc7\x8e\xb0\xe2\xfb\x1b\x0c\xdf\x65\xf7\x2e\xd1\x18\xd1\x91\x29\x3e\x00\x48\x3d\xa8\x22\x94\x9c\xb0\x4f\x88\x08\xdc\x21\xaf\x5f\x77\xb0\xe1\xba\x73\x43\xb3\x9c\x0f\xf6\x50\x27\x63\x6f\xfa\x04\x33\x28\x50\x17\x4b\xb7\x65\x1d\x1c\x20\x08\x6e\x2e\x73\xa0\x4b\x7c\x6a\xe4\xf6\xde\x1e\xf2\x35\xd3\xc3\x05\xe9\x20\x89\x74\x0c\x77\x57\x3c\x11\x72\xdd\xcb\x3f\xa4\xf0\xbc\x54\x3f\x16\x61\x1a\x64\x08\x02\x5d\xb2\x0f\x06\xb2\x6d\xc8\xcf\x45\xc6\x29\xe1\x86\x87\xed\xe2\x63\xfb\xcf\xb6\x75\x38\x4d\x60\x5f\xa2\x83\x0d\xb1\x2e\x06\xa0\x97\x6a\x91\x1e\xb1\x9e\x9e\x86\x46\xa4\x6f\x8c\xf3\xb6\x69\x6c\x30\x46\xbf\x2f\xa0\xc5\x17\xb5\x00\xed\x0f\xab\x6f\xc9\xcd\x9d\x3c\x7c\x59\x21\x34\xb6\xbd\x1c\x0d\x9f\x1a\xea\x55\x93\xe1\x33\x98\x69\x6e\xfd\xf4\x99\xe6\xd6\xcf\x14\xb7\x86\x14\x3e\x45\x58\x66\x3f\x44\x08\xe7\xea\xc3\x67\x08\x4b\x50\xf5\xe4\x10\xe1\x65\xab\xfd\x35\x6b\x97\x95\x4a\xae\xaa\x98\x19\xa6\x64\x9d\x43\x61\x4e\x24\x5f\xd1\x30\x58\xc2\x2b\x32\x1c\x67\xcf\xe9\x38\x1b\x0c\x10\x9f\x64\xd3\xe6\x83\x49\x36\x35\xa3\x08\x19\x11\x8a\x31\x58\xe6\x83\x27\x92\xff\x4c\x2d\x84\xe6\x08\x95\xa5\x4c\x41\xfe\x3c\x95\xb3\x7d\x67\xc4\x2c\x8c\xfc\x08\x41\xc5\x93\x96\x39\xc2\xcc\x72\x31\xf3\x96\xab\xb7\x58\x62\x3e\x47\x82\x72\xca\x66\x94\x93\xcd\x41\x4c\xfd\xc8\x8f\x39\x8d\x04\x3d\x5a\x50\xd9\x44\x58\xf8\x31\x5e\x99\x2a\x03\xb5\x09\x30\x0f\x38\x9e\xa7\x8b\x19\xa7\x4c\xa7\xaa\xfa\x7d\x9b\x56\xa1\x4a\xf2\x43\x59\xdc\xab\xec\x6a\x99\x31\xca\x04\x1a\xb7\x1e\xdb\x4f\x55\x27\xd1\xb6\x66\x9f\xf9\xd1\x26\x16\xea\x0b\x43\xae\x72\xc4\x0d\x0a\x7d\xcb\xae\x23\x9e\x46\x4c\xf4\x92\x28\x5d\xd0\x19\x58\x5f\xbd\xdd\x14\xda\x60\xb9\x15\xad\x71\x45\xd0\x87\x23\x4f\x20\x1c\x67\x2c\x49\x2f\x0a\x9b\xb6\x27\xd3\x6e\x78\x2a\xcc\xf3\x63\xf9\xac\x70\x6c\xc0\xd6\xc9\xb8\x85\x62\x87\xdd\x68\x73\x88\xb9\xda\x59\xf8\x3c\x62\xb3\xec\x0a\xee\x66\x4a\x66\xf5\x43\x60\xa9\x43\x4b\x71\xc9\xfa\x42\x00\x02\x81\x01\x3a\x03\x18\x0e\x06\x74\xc0\x91\x2f\xb2\x53\xc1\x53\x76\x01\xf7\x9f\x2a\x3e\xb6\x85\x41\xdc\x7f\xa5\xdd\x56\x08\x61\x93\xe3\xbc\x33\xc7\x57\x27\x47\xdc\x99\x63\xe6\xe4\x98\x75\xe6\xf8\xe4\xe4\xa0\x9d\x39\xae\x5b\x2b\xfe\x70\xa8\x56\xbc\xcf\x20\x37\x08\x4d\xf2\x80\x42\xf3\x80\x48\xbd\x28\xdc\x35\xff\x6c\x68\x96\xbc\x5c\xe9\x89\xca\x7f\x20\x97\xbc\xcc\x98\x20\xbc\x20\x9a\x2d\xe0\xb9\xfc\xe2\x89\x61\x13\xcf\x10\xc2\xd7\x32\xe1\xf1\x01\xc2\x9b\xc0\x26\x83\x72\xfb\x57\xe3\x84\x63\x9e\x5d\xa7\x33\xca\xfd\x59\x9a\x2f\x17\xd1\xdd\x87\xe8\x8a\x12\x31\x00\xf5\x0b\x80\x99\xff\x2a\x63\xb9\xa4\xb6\x8d\x4c\xf6\x05\x90\x2b\x09\x9c\x64\x85\xa0\x1c\x20\x84\x67\xdb\xb8\x92\xa5\x26\xcb\x52\xa8\x61\x29\x1a\xc9\xb0\x9a\x81\xe4\x22\x12\x94\xac\x16\x59\x1c\xc9\x2f\x03\x66\x97\xb4\x6f\x93\x2a\x4c\xfd\xb3\x34\x7f\x9f\x15\x4c\xd0\x19\xe9\x8f\xe4\xf3\x92\xb2\x59\xca\x2e\xde\x99\x3c\x44\x0a\x5f\xcc\x54\x69\x69\xfc\x2a\x63\x82\xde\x8a\xb2\x84\xd4\x2f\xd8\x22\xcd\x05\x65\xc4\x29\x58\x25\x38\xbb\x37\x81\x56\x6e\x15\x21\xf5\x73\x2a\x4e\x65\xc3\x60\xd3\x30\x51\xa1\xa0\xa3\x62\x51\x21\x49\x1a\x95\x61\x71\xa9\xc3\xe2\xe2\xec\x6a\x59\x08\x7a\x92\x65\xe2\xbd\x14\x2f\x1d\x8b\x67\xb5\x8c\xc4\x3c\x00\x8f\x00\x2e\xf8\x42\xfd\x5d\x46\x3c\xba\xca\x03\xb9\x77\xca\x8f\x6e\xa3\x58\xc8\x54\xb9\x98\x2a\xb3\xb5\x22\x0e\xef\x1c\x37\xdb\x3d\xcb\xbb\x5e\xa7\x33\xd5\x0d\x97\x9f\x2a\x9e\xe8\x0e\xe1\x10\xeb\xa4\xb5\xce\x78\x9e\x4a\xee\xea\x7c\x57\x76\xc9\x57\x9d\x9a\x7f\x4f\x17\x8b\xcf\xec\xaa\xb3\x72\x3b\x0b\xa6\x06\xfb\x08\x55\x09\x5b\x05\x40\xb4\x21\x00\xae\x6b\x6a\xc5\xab\x5d\x2c\xbf\x2c\x15\x41\x68\x26\xd8\x96\x18\x3a\xa3\x95\x1b\xed\x1e\x2a\x62\xac\x09\x0f\x5f\xc9\x59\x0b\x36\x27\x12\x76\x64\xf6\xe5\x4c\xb2\xe8\x8a\x22\xdc\x22\x42\xb7\xd2\xd6\x8b\xca\x88\xa5\xa8\x2d\x96\x5a\x8f\x6a\xc6\xef\xb6\x0b\xfe\xdd\x9b\x04\xbd\xc4\x36\x28\xf3\xcf\x91\x91\xee\x49\xc6\xd4\x5b\x33\x9d\xad\x34\x67\x95\xab\x15\xde\xa2\x91\xd7\xe9\xec\xf3\x72\x26\x57\x7c\x0b\x8c\xb9\x85\xe8\xf7\x6b\x25\xeb\xc4\xb5\xa2\xb1\xb8\x3f\x01\xd6\x05\xe9\xf7\xeb\xc5\xeb\xd4\xae\xa6\x6f\x25\x4e\x49\x60\x5d\x13\x28\x47\xf7\x8a\xac\x2a\x7c\x41\x86\x8d\x72\xe5\xbc\xa5\x9e\x69\x44\xa4\xe7\x41\x41\xc0\x23\x80\x70\x9d\xc6\x3c\x0f\x32\xb5\xbb\x36\x2b\x3f\x74\x34\x46\x1a\x1a\x5f\x4d\xc4\xd4\x68\x5c\x7a\xf2\xf7\x58\x73\xfc\xa5\x5c\x2f\xd9\xd5\x32\x5d\x50\x28\x6a\xd6\x7f\xf1\x7c\x44\x1f\x7b\x9e\xfa\x88\x30\x7c\x31\x18\x48\x64\x06\x85\xa4\x86\xd5\x92\x53\x21\xee\x82\xfe\xb0\x42\x55\xdd\xd8\xdb\x46\x88\x08\x4b\xfc\x33\x45\xf9\x58\xb2\x71\x91\x61\x2e\x37\x9b\x45\x3e\xc7\x19\xa9\x37\xed\xdc\xf3\xf8\x78\xc7\xca\xb5\x22\x04\xab\xa5\xd9\xe2\xbe\xc2\x2a\x56\x60\x2e\xa9\xb4\x3f\xb2\xa2\x54\xd4\x0b\x35\x25\xa2\xbd\x7e\x70\x41\xb2\x90\xab\x56\x04\xdc\xe7\x74\xb9\x88\x62\x8a\x13\x8b\x44\x63\x3f\x46\x90\x85\x20\x57\x70\xc3\xd9\x89\xd1\xf0\x1c\x52\x09\x40\x15\xa3\x45\x81\xc9\xbf\x90\x15\xaf\x2a\x4c\xf1\xca\xae\xe4\xe0\x1c\xd2\x7a\x59\x37\x5f\x48\x39\x50\x0f\x6e\x1a\xc2\x42\x4a\x68\xd9\x27\x14\x6c\x76\xfb\x0e\xaf\xcc\xba\x70\xb5\x7e\xf2\x93\x0a\x5b\xb2\x0e\xda\x20\xac\xee\x40\x22\xa1\xb4\xc8\x70\x82\xca\x52\x7f\x21\xb2\x80\x56\xa8\x42\xa8\x92\xc3\xf3\x51\x52\xd9\x8d\x4b\x65\x67\x06\xc6\x75\x90\xd2\xc6\x38\x98\x77\x4a\x00\xb1\xaa\xe6\x0a\x98\x13\xdd\x69\x85\x5f\xa8\x94\x40\x38\x6d\x26\x39\xf3\xbc\x4c\xe2\x18\x5f\x83\x33\x1c\x35\xaf\x0a\xcf\x2b\x70\x2c\x5f\x51\x96\xa7\x22\xbd\xa6\x38\x6f\xde\xc6\x9e\x17\x9b\x41\x9b\x38\x1b\x09\x9f\xd3\x59\x11\x53\x47\x18\x5b\xdd\x30\xb3\x04\xce\x0c\x2d\x74\x41\x55\x00\x06\xcc\xa7\x6c\x36\x60\xa6\x41\xf2\x47\x5d\x3d\x27\x1f\xb5\xbe\xea\xa3\xd1\x57\x8d\xd3\x44\xed\x61\x91\xb3\xad\x55\xa5\x67\x64\x32\xc5\x29\x59\x71\x7a\x41\x6f\x97\xc1\x12\x22\x28\x70\x86\x19\xc2\x97\xf4\x2e\x0f\xb2\x5a\xdf\x72\x63\x16\x93\xda\x09\xa7\xf8\x46\x2e\xa6\xb4\x82\x14\xaf\x28\x9b\x05\x29\xd6\xad\x08\x22\x5c\xb7\x22\xc8\x2b\x89\x05\x25\x89\xca\xb2\x71\x41\xb8\xd2\x86\xe2\x98\x64\x3e\xbd\xa5\xb1\x5c\xaa\x72\xf3\x10\x23\x87\xb3\xa8\x56\x25\x24\x9e\x0c\xa7\x78\x41\x62\x3f\x5f\xa4\x31\x85\x23\x89\x00\x05\x21\x24\xa9\xe9\xcf\xf3\xfa\x73\xa5\x7a\x08\xf4\x54\x52\x8b\x24\x08\x21\xd4\xf3\x80\xfc\x9b\x84\xe0\x11\x08\x92\x1a\x51\xcc\x2d\xca\x28\x36\x87\x7f\x43\x39\xe2\x4b\xea\x9f\x92\xc5\x84\x4e\xb1\xa8\x10\x5e\x55\xa8\xaa\x0c\xc1\x2b\x32\xfc\xfa\x27\xe5\x53\x7b\x8f\x98\xde\x73\x8f\x28\x6b\x16\xea\x20\xe8\x8f\xf0\x1c\x86\x56\xac\x9b\xe7\x18\x35\xda\x32\xaf\x25\x7b\x59\xb2\x06\x12\xf0\xfa\x75\x8b\x2f\x86\x9d\xa9\x81\x4d\x95\x33\x13\x9e\xb9\xdc\xc4\xbc\x41\x01\xf3\x15\xca\xc0\x19\x59\x63\x44\x0c\x37\xf0\x8b\x1a\x28\xc2\x2b\xa4\x18\xa1\xfa\x16\x17\x24\xad\x01\x0f\x8e\xe5\x83\x95\x42\x38\x21\xa9\x19\xb3\x31\x54\x5b\x7f\x3f\xcd\xb5\x0a\xa0\x40\x9e\x27\x59\x43\x61\xf4\x03\x9e\x07\x0b\x85\x9e\x11\xee\xd2\x5b\xc9\xec\xcd\x8e\x0e\x16\xa4\x80\x19\x42\xcd\x47\x68\xd7\xe8\x37\x58\x4d\x03\xb1\xac\xc2\x85\xe7\xf5\x3b\xf4\x4b\xb2\x70\x25\x47\x4d\x77\xfc\x58\xb2\x4c\x28\x50\x05\x0b\x14\x16\x41\xa6\x47\x29\x8c\xc3\xcd\x7a\x62\x9c\xa1\x20\x09\x13\x98\xa1\x40\x2d\x04\x4d\x9a\xa8\x13\x5e\xd5\xe4\x79\xec\xec\x60\xb5\x98\xf5\xe3\x79\xc4\x5f\x0a\x38\x44\xa1\x02\xdd\x03\xd1\x48\xc4\x23\x77\x8f\xdf\xe2\x4b\x94\x1c\x3b\xb2\x56\x72\xba\x06\x0a\x3a\x87\x07\x21\x5b\x17\x34\xcc\x11\x34\xce\x27\x79\x71\x9e\x0b\x0e\xa9\x55\x30\xbb\x72\xf9\xd4\x69\xf3\x06\x3f\x97\x30\xa1\x16\x1d\x14\xc9\xb1\xab\x3f\x7c\xe5\x0c\xb5\xb3\x86\xd6\xe8\xbf\x6a\x3e\x78\x09\xd1\xaa\xda\x84\xa2\x9f\xfe\x67\x2d\x75\x75\x4a\xb5\x6b\xb9\xbb\xf5\xd5\xa4\x99\x64\xfc\x28\x92\x9b\x80\xb5\x3d\x47\x1b\xd2\xd4\x47\x63\xdc\xf3\xe4\xe7\x69\xfe\x5b\xb4\x48\x67\xb6\xbd\x02\xa1\x15\x25\x7a\x54\xeb\x15\xad\xa8\xa0\x2c\xed\x53\xc2\xb3\xab\x31\x27\x69\x78\x06\xb3\x86\x73\xac\x91\x91\x65\x06\x9a\xfb\xa7\x15\xaa\x59\x4a\x55\x21\x84\xb9\x5e\x30\x8b\x8c\xd5\x43\x45\x1d\xc6\x92\xe1\x36\xc3\xe2\x95\x5e\x43\xdd\xab\x67\xbb\xda\x79\x9b\x22\xd7\x2e\x1a\xa5\xca\xb5\x24\x62\x06\x3f\x93\x52\x8f\x75\x9d\x50\x40\x8d\x32\xb5\xa6\x08\x79\x5e\x9f\x43\x09\x46\x34\x3a\x47\x75\x41\xaa\x80\x2d\x5f\x2b\x86\xf3\x31\xf9\xc6\xc7\xfd\x3f\x57\xfd\xc6\x91\xf3\xab\x88\x3d\x10\xbd\x38\x63\xd7\x94\x0b\xa3\x9c\xee\x89\xac\xb7\xe4\xe9\x95\x02\x03\x3d\x7d\xe4\xbc\xa9\x03\xd4\xac\x44\x69\xdd\x62\x9a\x2e\xac\x06\x2e\x59\x64\x19\xdf\x7d\x26\x90\xe6\x1f\xa2\x0f\x50\x90\x81\x40\xe1\x30\x80\xe2\xc5\x30\xe4\x81\x5e\xff\xf7\x53\x85\xa7\x49\xcd\xe0\xc5\xe6\x29\xba\xe9\x52\xb4\x58\xf4\xae\xa8\x98\x67\xb3\x5e\xc6\x7a\x3d\x30\x10\xf7\x52\xb9\xaf\x76\x1c\x55\x58\xe3\x82\xbd\xa1\x35\x2e\x38\xd4\x2a\xb2\x83\xa7\x08\x82\xb7\x47\x67\xc7\x27\x1f\x3f\x7d\x04\x08\x47\x2e\x33\xa8\x9c\x73\x4d\xcb\x1b\x30\x53\x67\xa0\x7b\x08\x82\x34\xe1\xd1\x15\x05\x08\x73\x52\x9f\xe7\x26\x19\x87\x12\x1f\xde\x2d\xa8\xd5\x6b\x11\xc0\x32\x46\x01\x96\xb5\x3f\x45\x92\x67\x51\x36\x53\x2b\x1c\x32\xc9\x8e\x72\x1e\x13\xf0\x35\xba\x8e\xf2\x98\xa7\x4b\x11\x00\x0c\x05\x91\x52\x89\x09\xb5\xd1\x54\x46\x1b\xb3\x2c\x56\xec\x0d\xf9\xd9\x92\x32\x88\xb0\xf0\x6f\x78\x2a\x28\x04\xcf\xf5\x67\x2f\x6c\x0e\xff\x8d\x91\xee\xcf\xbf\x3c\x32\xaf\x80\xcc\x1e\x2f\xb2\x9c\x42\x84\x63\x22\xfc\x37\x63\xfe\xf0\xe1\x18\xcd\xe8\x82\x0a\xda\x8b\x1b\x8e\x38\x49\x27\x7c\x6a\x55\xf3\xbd\x18\xa2\xca\x21\x08\x73\x1e\xad\x99\x61\x59\x76\x10\xd5\xd8\x41\x95\x7d\xb9\x9b\x84\x91\x73\x66\xa8\x2c\x30\xa8\x3a\x22\x88\xb0\xfb\x42\x71\x51\x3a\x29\xa6\x44\xa0\x80\x92\x18\xba\x3b\xd4\x90\x06\x99\xdc\x44\xed\x3a\x89\x1a\x8d\x9e\x98\x53\xad\x43\xb4\xd9\x60\x89\x80\xdd\xe6\x3a\x47\x5c\x02\x67\xdf\x3c\xe1\x92\x9f\x37\x47\x5c\xdf\x38\x34\x73\xce\xae\xbe\x75\x7c\x36\x32\xe7\x8c\x7b\x7b\x92\x24\xb3\x09\x38\x3b\x8b\x33\x4e\x1f\x7e\xcd\xcf\xf2\x79\xc4\xe9\xec\xec\x0c\xe8\x03\xf0\xce\x37\x6a\x8f\xd1\x79\x92\xe6\x6c\xfe\xcd\xe1\x99\xfc\xd3\x6c\x8f\x58\xc8\x02\x89\xac\x11\x04\xc6\x00\x29\x07\xb8\xb6\x64\xaa\x8d\x92\xb8\x6f\x7e\xe1\xab\x6c\x46\x03\x0a\x9f\x0e\x51\x08\x96\x05\xa7\x20\x00\x17\x8b\xec\x3c\x5a\x00\x1c\x67\xcb\x3b\x9e\x5e\xcc\x45\x00\xbe\xdc\x46\xcf\x7a\x7b\xc3\xd1\xb3\xde\x6b\xca\xd2\xbc\x77\x5c\xe4\xf3\xcb\x88\xd3\xeb\x1e\xfc\xe7\x22\x4b\x79\x16\x5f\xfa\xbc\x40\xa0\xda\x30\x3c\x71\xcc\x97\xe2\x8c\xe5\x82\x17\xb1\xc8\x38\x6e\x9b\xa1\xe0\x34\x3f\xb6\x14\xf3\x31\xc1\x5d\xb6\x10\x58\x64\xef\xb2\x38\x5a\x50\xcd\x4e\xb1\xe5\xab\xd8\x70\x68\xe0\xe7\xcb\x45\x2a\x20\xc0\x60\x87\x7c\xd9\x3b\x44\x7e\xa2\x66\x66\x7f\xa8\x99\xc5\xe3\x11\x82\xc0\x16\xf6\x29\xba\x00\xdb\x04\x90\xb2\xdc\xf1\xbc\x7e\x06\x05\xa1\xa1\x08\xdc\x53\xf2\x14\x79\x9e\x24\xb8\x14\xaf\xda\x67\x2a\xc3\xfa\xfc\x64\x27\x29\x7e\xeb\xbc\xd6\x9e\x7b\x6d\xa1\x3a\x6d\x31\xf5\x78\xb4\xab\xe3\x6b\x96\x1e\x4f\x8d\xa1\xc7\xe1\x48\x1f\x1d\xaa\x81\xd9\xd2\x08\x73\x0c\x60\x0e\x7e\x25\xd5\x9a\x9f\x24\x0d\x57\x55\xc0\xeb\x17\x92\x6a\xc1\x19\x68\x61\xe0\xb2\x14\xbd\x94\xf5\x58\x59\x46\x12\xa3\x59\x08\x5f\xf8\x89\x94\x2c\x9b\xb2\x45\xf6\x65\x55\x75\x9a\xc3\x54\xf7\x39\xe4\x71\xcc\x90\xec\xf0\x41\x6e\xb9\x45\x94\xe7\xe9\x05\x6b\xf3\x8b\xfa\xd0\x93\x8c\xc6\xec\xf9\xfa\xb1\xe7\x98\x0d\x06\x56\xaa\x36\x27\x9c\x6c\x3a\xb6\x9f\xf1\x9e\xb2\x1a\xdb\xb0\xe7\x69\x13\xb8\x16\xfa\x14\x73\xa4\x2c\xc4\xf8\x94\xd0\x09\x6f\x2c\x79\x44\x85\xb6\xd8\x67\xd4\xdd\xc9\x76\xec\x33\x9a\x5c\xa9\x1e\x44\xdb\x38\xa3\x87\x19\x8c\x14\x3e\xb5\x66\x49\xcf\xb3\x31\x1d\x90\x11\xe6\x03\x32\x42\x42\x9b\x15\xf1\xe9\x58\xf8\xcb\x6c\x09\xf5\x5e\xbc\x58\xd7\x92\xb4\x35\x41\x00\xd4\xc8\x97\x08\xcf\x13\x76\xed\x3d\x02\xa8\x2c\x27\x53\x5c\xc8\x7c\x6c\x3d\x35\x92\x79\x65\x3f\x70\x2c\xdf\x67\x52\x44\xe6\x24\x2a\xcb\x58\x62\x28\xf3\x2e\x2c\x08\x0f\xb8\xb3\xa9\xd4\xad\xc2\x05\x29\x9c\x63\x63\xdc\xb7\xfb\x4e\x54\x8f\x89\x2c\xa4\x4e\x5d\x69\xbd\x47\x31\xb1\x29\x0f\x47\xd3\x31\x25\xc0\x57\x7a\x8c\xb2\x04\x7e\xfd\x4b\xfd\xad\xe8\x22\xa7\x3d\x4a\xfa\xa3\x7a\x66\x97\x64\x88\x17\xf5\xfe\x76\xbc\x78\x41\x86\xe3\xc5\xc3\x87\xba\xe8\x39\x29\x26\x8b\xe9\x58\x97\x37\x0f\x53\x58\xe0\x05\x0a\x4c\xa9\xf3\x10\xea\x04\xbc\x1c\x0c\x50\xb0\xf4\xbc\xfa\xf9\xe1\x43\x54\x49\xc0\x98\x23\x59\xcd\x78\xf9\xf0\xe1\x78\x89\x0a\xbf\x60\xf9\x3c\x4d\x04\x94\x05\xa0\x71\x3f\x37\xcd\x2a\x26\xc3\x69\x59\xca\xff\xe5\xe0\xc8\xbf\xa8\x2c\x9d\xdc\x66\x1a\xae\x49\xe1\x7f\xcd\x52\xa6\x86\xba\x56\xc2\x7b\x1e\x78\x04\xfa\x84\x5c\xdb\xbd\xe0\xc3\x91\xda\x84\x0f\x8c\x9e\xb8\x6a\xd6\x4a\xe4\xf0\x9a\x1a\xf3\x86\xf5\x2f\x68\xb5\x9b\x0e\x7d\x9b\x57\x16\xcd\x2a\xaa\x59\xb7\x14\xd3\xbb\x17\x42\x08\x45\xd6\x1c\x62\x5c\xef\x67\xcc\xd9\x8a\xf3\x72\x24\x5f\xb6\xb5\x0c\xac\x46\xc9\xed\x74\x8a\x24\x7d\xe9\x99\x91\xe5\xd7\xf4\xc2\x7c\x7a\x4d\xf9\x5d\x4b\x0f\xc8\x9b\xbe\xc9\x56\xa9\x85\x87\x94\xae\x6c\xd3\xfc\x86\x95\xe5\x66\x62\xcd\x47\x23\x49\xb2\x19\x89\x60\xa3\xb8\xe5\x7d\xd5\x95\xac\x4f\xa4\x54\x80\x1c\x67\xf5\x60\x29\x5b\xc5\x16\xe7\xd1\xfb\x75\x8a\xd0\x46\x2b\x5b\x6d\x9c\xf0\x69\xdd\xcc\xca\x0e\x4e\x65\xcf\x75\x9b\x69\x4b\xbe\x4b\xf7\xb0\xdc\x99\xdb\x12\xc9\x08\x05\xce\x37\x8b\x16\xe2\xe8\x84\x21\xea\xf8\xc1\x97\xd2\xf9\x86\xf2\x57\x91\xc4\xa1\xb5\xbe\x82\xb5\xd3\x91\xe7\x3d\x1c\xf5\x09\x01\x8f\xc2\xbf\x80\x3a\x53\xdd\x0c\x3b\xa1\x08\x69\xd3\xcc\xa6\x51\xf5\x1b\xb7\x6d\xf3\xad\xfd\x11\xf5\x9a\x57\x65\x28\x95\xe7\x10\x3f\x6c\x77\xed\xda\x3d\x9c\xa8\x77\xc5\x72\xcb\x96\xd3\x88\xc7\x73\xa5\xa2\x9b\x47\xea\x6c\x42\x52\xc5\x23\xe0\xae\xac\x50\xae\x2c\xea\x79\x30\x1b\x10\x10\x2a\x25\xa9\x33\x9a\x34\x00\x21\x18\x50\x84\xb9\xe7\x81\xbf\x00\x7d\xa8\xa1\xb2\xfe\x45\x66\xe5\x4e\x56\x1e\x80\xbf\x80\x01\x47\x38\x6b\x9a\x36\xd3\x92\x0d\x67\xc6\xf8\x74\xdc\xa5\xa5\x81\x69\x87\x90\x16\xaa\xa1\x98\x12\x00\x30\x97\xff\x65\xa4\x31\x3d\x05\x7f\x01\x68\xac\x26\x20\xf3\x3c\xc8\x09\xb3\xc3\x9b\x21\xcc\x9a\xa7\x21\xce\x8c\x09\x42\xea\x7e\x1c\xd6\xac\x45\x15\x91\x7a\x1e\xa4\xcd\x47\xe9\x5a\x11\x29\x42\xae\x5e\x0a\xeb\x31\x0d\xcc\x50\x85\x00\x04\x54\x62\xc0\x79\x60\x46\x44\xa6\xf0\xaa\x92\x00\xc7\x1c\xe5\xb3\xc0\xd1\x17\xa6\x84\x2b\x25\x05\x42\xf5\x54\x49\xa6\x5a\x3f\x48\x89\x84\x53\x33\x73\xa1\x9e\x1d\xfb\xd8\x0c\xb6\xfa\x44\x27\xca\x49\x1b\xd8\x07\x14\x34\xc9\x00\xa7\x6a\xd6\x43\x3d\x6f\xfa\x61\xad\x08\x99\x24\xa7\x72\xa0\x7f\xca\xcf\x75\x12\xc0\x0d\x10\xb7\x66\xa8\x44\xb5\x44\xa8\xb3\x48\x98\xda\xce\x21\x34\x16\xfc\x6e\xe5\xf4\x60\x46\xe3\x6c\x46\x3f\x9f\xbc\x75\xba\xe5\xd8\xab\xeb\x0d\x75\xe4\x9a\x93\x7e\x3e\x79\xab\x36\xd7\xa1\xdc\x75\xd9\x07\xf8\xe0\xd8\x7c\xdc\x03\x0f\x06\x4d\x51\x83\x07\xa0\x17\x67\xc5\x62\xa6\x4c\xde\xce\x69\x4f\xd7\x37\xf3\x7b\x9f\x94\x95\x6a\xde\x5b\xa4\x97\x74\x71\xd7\x8b\xa3\x22\xa7\xb3\xde\xf9\x5d\x2f\x62\xbd\x94\x5d\x47\x8b\x74\xd6\x5b\x52\x1e\x53\x26\x1e\x52\x16\x67\xb3\x94\x5d\xf8\x0f\x50\x10\x55\xcd\x7a\x80\xa9\xe4\x76\x84\x22\x9c\x85\x4d\x9d\xa1\x16\x40\x4d\xc2\xda\x38\xd6\x7d\x2f\x9c\x07\xdc\xe8\xa8\x90\x1c\xd9\x3a\x53\x93\xee\xa4\xca\x0d\x90\x43\x05\x52\xb0\xa5\xcd\x42\xba\x6b\x71\xaa\x66\x99\x13\x57\xbb\xaa\xf0\x8b\x9e\x7d\x99\xac\x7f\xca\x44\x35\xa7\x32\x49\xfe\x90\x09\xb2\x8b\xf2\xf9\x92\xde\x79\x5e\x0c\xf5\x41\x22\x35\xe6\x22\xd4\x81\x61\x57\xb5\xb6\xb1\x3e\x83\x61\x64\x62\xf7\xde\xab\x9c\x8a\x63\x9e\x5d\x2d\x9d\xb3\x3c\xa7\x95\x84\x61\xf7\xd4\xd9\x80\x2e\x5d\x94\xc4\xcb\x6a\x87\xc1\xaf\x3e\xf1\x48\x9d\x0c\x65\xec\x53\x16\xb4\x8d\x8f\x25\xe3\x30\x72\xb6\x4f\x84\xb5\x60\xef\x34\x27\x0d\xb5\xa0\x0e\x44\x07\x8f\x49\xc3\xae\x4f\x78\xc8\x61\x2a\xa5\x5c\x06\xfb\x43\xf5\xbf\x62\x07\x48\x23\x28\x95\x58\x61\xad\x08\x79\xa7\x8c\x33\x28\x0f\xd6\x19\x15\x25\xfd\x61\x1b\xa9\xab\x59\xd0\x10\x58\x2f\x1b\x17\x04\x37\x36\xca\x72\x13\xcb\x91\x3b\x3e\x12\xb2\x29\xd6\x93\xa4\x0b\x41\x79\xdb\x1a\xc7\x0e\xa9\x64\xc0\x95\xda\x3a\xb1\x4c\xa4\xc9\x9d\x6d\x58\xee\x1e\xa6\x5a\xdc\x27\x36\x6d\x1f\xa9\x63\xfb\x28\x10\xd6\x76\xfe\x42\x1b\xf8\x4b\x30\xdf\xec\x0c\xf8\x74\xdc\x68\x76\x3b\xdb\xd2\xee\x25\x55\x32\xbe\xda\x6d\xc9\xff\xf1\x9b\xb6\x69\x47\xdf\xb4\x3c\x7b\xf5\x5d\xd6\x6b\x49\x67\x8e\xbb\xfb\x5b\xaf\x5d\x90\x3e\x74\x5c\x8f\x1a\xf2\xd1\x6e\x49\x65\xd9\xbf\x69\x2b\xbf\x36\x53\xda\x9a\x79\xb4\x61\x03\xc1\xa0\xf9\xc0\x2c\x08\xb5\x39\x76\x6c\x0f\x5c\xe3\x5c\x53\x6d\x6d\xba\xa5\x16\xac\xdc\xb0\x1a\x06\xdb\x18\x52\x55\xce\xe9\xc5\x47\x45\xaf\x6d\x1b\x8b\x55\x85\xf0\x45\xf7\x39\x00\x23\xed\x5a\x30\xdd\x3c\x7d\x30\x39\x58\x74\x9d\x5e\x44\x22\xe3\x7e\x91\x53\xfe\xf2\x82\x32\x61\x0d\xdc\x1e\x8e\x14\x94\xa9\xe5\xee\x4b\x36\xe3\xb2\x09\x7b\x3e\x50\xf8\xa9\xfb\xed\x63\x7f\x28\x77\x59\xeb\xaf\xdf\x67\xe7\xe9\x82\xf6\x4e\xa3\x24\xe2\xa9\xce\xd0\x6f\x65\x78\x35\xe7\xd9\x15\xed\x7a\xa3\x95\x93\x79\xef\x78\x9e\x31\x0a\xd4\x59\x5d\xbb\x7b\x9e\x07\xe4\x7a\x54\x26\x5e\x20\x5d\x1f\x62\x54\x41\x09\x95\xfb\xba\x3f\xdb\xbb\xdd\x54\xf8\x89\x2b\xef\x3b\x80\xd4\xd9\xa4\x3a\x95\x4c\x32\x1e\xd3\x13\x9a\x70\x9a\xcf\x3b\x4c\x04\x52\xff\x82\x8a\xcf\x39\xe5\xaf\x34\x05\xe8\xa3\xd5\x25\xa9\xa7\x2c\x0e\xcf\x83\x18\xdf\x11\x25\x9d\xde\xe9\xb5\xfc\xb1\x79\x7d\x17\x3e\x0d\xee\xf0\x0d\x11\xfe\x79\x94\x53\x25\xb1\xe6\x50\x02\x52\xfb\x88\x50\x00\x40\xcb\x2c\xc2\x01\x5a\xab\x4a\xf2\x05\x59\x32\x56\x58\x4a\xc9\x82\xcc\x76\xb5\x3e\xe9\x4d\x1d\xc1\x35\xc8\x8c\x78\x19\x64\x4a\xa8\xd4\xd6\x00\x52\x1c\x92\x05\x4c\xf1\x0d\x42\x78\x06\x53\xcc\xb1\x2b\x4f\xbe\x36\x2b\xac\x65\x50\xdb\x32\x83\xb5\xe0\x6b\x0f\x7f\xd4\xdb\xb1\x63\x72\x05\x9d\x65\x73\xa4\xa8\x1c\x7e\xc0\x02\xe1\x0f\x76\xef\x64\x91\x35\x3e\xf6\xd7\x58\x23\xfc\xd0\xf4\xe1\x83\x1f\xa9\x32\xd6\xcf\x10\xbb\x18\x5c\xb3\x5e\x2c\xea\x51\x14\xb0\x73\xea\x5f\xf1\xf4\xe3\x29\x40\x15\x82\x02\x95\xe5\x27\x78\x66\x65\x2b\x6a\x1d\x3e\xa2\x95\x7c\x75\x0b\x91\x31\x5c\x79\xa9\xb6\xeb\xf6\xfd\x27\x73\x08\xf1\x12\xc9\x74\x7c\x04\xd1\x58\x8a\xa4\xd5\xb1\xdf\x21\x31\xa1\xc0\xe0\xf8\xe3\x31\xc0\xcb\xb5\x23\xbe\xf0\x08\xae\x74\x67\x03\x9d\xa1\x65\xb8\xb9\x89\xb8\x9d\x51\xa2\xe4\x9d\xb3\xf3\xb9\xa4\x77\x12\x6d\x6b\xf3\x09\x48\xc9\xd0\xda\x22\xbd\x73\x76\x3e\x4d\x26\xae\x20\xb9\xc9\x94\x11\xfa\x90\x8f\x25\x4a\x7f\x49\xfa\x43\x7c\x02\x33\xb5\x27\xd2\xb2\x42\x66\xb8\x24\x7a\x1c\xf0\x3b\x32\xb9\x94\xa5\x4c\x9b\x71\x78\xef\x4c\xc6\xcd\xe0\xba\x75\x80\x7b\x22\xdf\x31\xff\x22\xb3\x5b\xf6\xcf\xae\xd9\xcf\x1b\xf9\x56\x36\x06\x7e\x1e\x10\x81\x3c\x4f\x71\x93\xd0\xae\xfb\x68\x36\x3b\xba\xa6\x4c\x58\x12\x81\x60\x99\x2d\xd5\x34\x01\x7c\x8a\x70\x56\x7b\xa1\x6e\x66\x94\xc4\x1e\xcf\x23\x76\x41\x01\x7e\x85\x50\x20\xe9\xe3\x73\xc3\x51\x38\xbd\xca\xae\xe9\xfd\x0a\xef\xcc\xbb\x56\xbe\xea\xda\x5b\x49\x1d\xf2\xc7\x07\xb2\xd2\x44\x1e\xd4\xd4\xde\x3d\xc3\x97\x58\x8b\x9c\x5f\x38\x4d\x82\xf7\x58\x99\x84\x39\x7b\x5e\xae\xe7\x3c\x23\x72\x7f\xc6\xf1\x57\xa8\xd6\x91\xf9\x18\x8d\xbb\xe9\x2c\xc3\xe0\xf8\xf3\xe9\x2f\x6d\x42\xd3\x84\x2a\xac\x5a\xe1\xbd\xdc\x81\x49\x3e\x21\x79\x49\x41\x32\x4d\xfb\xe3\x34\x81\x14\x49\x1c\xe7\xd7\x7c\x16\xae\x2e\xe9\x9d\x32\x0f\x8a\x04\x0d\x8a\x4a\x1f\x52\x73\x84\x23\xb4\xc6\x77\xfc\x39\xa7\x09\xe1\x7a\x09\x68\xe5\x4c\x43\x78\x4d\xb3\x15\x05\xe2\x9c\xbc\xab\xb7\xc9\xf1\x60\x84\xc6\xb9\x86\x5a\x99\x7e\xfd\x8e\xe4\xd8\x5d\x16\xaa\x3f\xcd\xd9\x6f\x65\xb0\x5f\x77\x0b\x2a\x75\x06\x6c\xec\xea\xfe\x15\xc3\x79\x72\x74\xfc\xee\xe5\xab\xa3\x3f\x37\xa2\xa6\x3d\xdf\x3b\xa8\xe6\x33\xc8\xd1\xbd\x06\x56\xef\xb6\x63\xcf\x83\xef\x26\xf1\x94\x98\xe1\x74\x86\xb2\xee\xcb\xb7\x47\xb3\xa9\x5a\x8f\xe8\x45\x16\x9c\xe0\x8b\xec\xa7\x28\xbe\x74\x51\xec\x09\x7c\x38\x52\x6f\xdf\x64\xfc\x26\xe2\xb3\xf6\x3b\xf9\xea\x7c\x91\xb9\x9f\x6c\x42\x9c\x06\xcf\x1c\xfb\xf5\x56\xc5\x31\x4e\x79\x5b\x96\xf0\x0d\x1c\x21\xfc\x96\xf4\x87\x2d\x30\x6e\x33\x78\x1e\x94\xab\x0f\xbf\x91\x8d\x41\x98\x41\x09\xbd\xb5\xa9\x76\x07\x0b\x3d\xf6\xdb\xdb\x05\xa7\x2a\x55\x8d\x53\x81\x2a\x50\x97\x57\x9b\xd2\x7d\x50\xab\xfd\x86\xac\x24\x13\x38\x8f\xd8\x45\xb0\x52\xdb\x54\x2a\x37\xc2\xc1\xa6\x84\x02\xfd\x0e\x55\x59\xff\x11\x18\x2c\x25\x53\xc4\x7a\x5f\x7c\xff\x6f\x5b\x8a\x33\xb9\xc1\xc8\x17\x51\x3e\x6f\xb5\x61\xd9\x2a\xb4\xc2\x9b\x39\x92\x76\x8e\xaa\x1b\x73\xb4\x35\x39\x56\x19\xa3\x0e\x52\x45\xd0\x28\xba\xd8\x1a\x72\x68\x21\xcf\xd6\xea\xc4\xbb\x0b\x05\x20\xb0\xdd\x93\x18\x83\x0d\x46\x4e\xc9\xca\xf0\x69\x1b\x91\x9e\xc1\xae\xea\xd0\x00\xfc\x05\x0c\x5c\x79\x74\xf4\xa7\x11\x36\xbc\x0f\xb4\x7c\x93\x72\x9a\x64\xb7\x00\x49\xec\x93\x11\xda\x89\x1b\xd3\x06\x18\x66\xe1\x79\xa0\xcd\x53\x25\x4d\x7d\xba\x5b\xd2\x1a\x7d\x12\x42\x8a\x10\xa8\x19\x04\x41\xa1\x4e\xdc\x77\x81\x47\xbc\x24\x37\x93\x68\x8a\xef\xc8\xd2\x6f\xe6\x1b\xdf\x92\xa5\xdf\xcc\xf8\xd8\xd9\x71\xd8\xe9\xba\x85\x5f\x61\x63\x15\x17\xab\x91\x59\x40\x81\x63\x05\x10\x8d\xf4\x3e\x6a\x23\x3c\x6d\xd7\x05\x5f\xcb\x5e\xbe\xde\x40\x78\x47\x1b\x08\xef\x75\x83\x5d\x5e\xd7\x08\x4f\x96\xfb\x4a\x2e\xde\x97\x5a\x79\xe1\xe0\xab\xda\x4c\x02\x53\x22\xd9\x35\x27\x77\x90\x2a\x45\x3a\x95\x3b\x6c\x74\xdc\xe2\x8b\x19\xf9\xa8\xce\x6d\x9a\x5a\x94\xa9\xcc\x2b\x75\x82\x94\x61\x28\x48\x81\xfe\x8c\x46\xc6\x1e\x0d\xa8\x53\x03\x42\xc8\xb5\x44\x49\x26\x49\xb7\x1d\xaf\x89\x87\x57\x48\x75\xec\xd4\x22\xc3\xa3\x9d\xc8\x30\x5d\x47\x86\xa7\xdf\x87\x0c\x5f\xbb\xc8\xf0\xc4\x5f\x44\xb9\x78\x6b\x08\xf2\x1a\x32\xd4\x0d\x0e\xd7\xf3\x09\xb4\x1b\x1f\xbe\x92\xf8\xf0\x73\x0b\x1f\xc2\xac\x06\x89\x72\x92\xde\x91\x3b\x78\x89\xc6\x97\x7d\x42\xde\x79\xde\x31\x7c\xa7\x8b\x78\xaf\x66\xe7\x84\x4c\xae\xe1\x7b\xe4\xa0\xc7\xcf\xeb\x08\xf1\x8d\x8b\x10\xdf\xd6\x08\xf1\x8d\x8b\x10\xef\x85\xfb\x3e\x69\xd8\xf7\xe6\xfe\x48\xee\x93\x6e\xc1\x07\x0b\xe4\x5e\xdf\x17\xc8\xbd\x77\x81\xdc\xe6\xcc\xd4\x1a\x86\x7f\x14\x94\xdf\x9d\xd2\x05\x8d\x45\xc6\x21\x90\x2b\x17\x20\xa5\x3d\xaf\xad\x5d\x3c\x8f\x49\x6e\xf1\x52\x08\x9e\x9e\x17\x82\x42\x20\x39\x99\xdc\x8a\x43\x4a\xb6\xb0\x39\x84\xa9\xe2\x74\x77\x30\x56\xf8\x1b\x55\x1b\x58\xb2\x36\xd5\x92\xe0\xc7\xe8\x82\xcc\x9f\xd7\x0e\x08\xea\xa6\x50\x6a\x31\x65\xba\x0d\x01\x31\x72\x0d\xa9\x5e\xa0\xf1\x40\x07\xb9\xf8\x0a\x91\x5a\xa4\xab\x97\xae\x82\xb1\x83\x87\xab\x45\x26\x2a\xb9\x96\x35\xad\xad\xd3\xa4\xd3\x40\x09\xb2\x4e\x6a\xc1\x93\x49\xe8\x98\x6a\xe8\xc8\x24\x71\xa5\xf8\x74\x2b\x6c\xa4\x16\xe8\x9c\x42\xb4\x15\x23\xfe\xd9\x61\xaa\xf1\xd5\xbd\x47\xca\x0c\x93\xda\x7a\x31\x2c\x39\x5a\x33\x0c\x69\xe7\x10\x34\x47\x2a\x27\x93\x6c\x4a\x18\x72\x3b\xbd\x09\xf0\x68\xd5\x00\xb8\xcf\x1d\x00\xee\xf3\x0e\x00\xf7\xf9\x7b\x01\xdc\x51\x27\x80\xfb\x50\x96\xf0\xad\x44\x56\x1f\xb6\x00\xb8\x0f\x9e\x07\xe5\xaa\xc3\x6f\xef\x05\xe0\x8e\xb6\x03\xb8\xb7\x6b\x00\xee\x6d\x07\x80\x7b\xdd\xd2\x2a\xb4\xfc\x06\x94\xb6\xe3\x2a\x65\x50\xff\x88\x6e\x15\x4d\xb4\x74\x23\xaf\xba\x21\x84\x19\x00\xa1\x74\x34\x5d\xe2\x5e\x9f\x8c\xa5\x22\x8d\x16\x47\x4c\xf0\x94\xe6\x6d\x04\x30\x01\x8f\xc0\x54\xa1\x80\x3a\x9f\x5a\x02\x6d\x24\x30\x54\x18\x80\x39\xfa\xa5\xdc\x55\x3f\x3d\x0d\x62\x9c\xb4\x85\xb4\x3e\x86\x85\xb7\x52\x48\xdf\x5a\x21\x7d\xeb\x53\xdd\x06\xcb\xd7\x92\x0d\x61\x7d\xdb\x88\x93\xdb\x4d\x75\xcc\xe2\xfb\x34\x44\xb9\xe6\xac\x73\x72\x0a\x23\x3c\xc4\x69\x73\x60\xaa\xb4\x65\x57\xd1\xb2\x53\x79\xed\xac\xc2\xae\x23\xc9\x05\x44\x81\xd2\x69\x94\xe5\x02\x22\x29\x8d\xf0\x05\xb9\x6e\x29\x6e\x2d\xc9\x9c\xc2\x5b\xbd\x9c\x06\x02\x0f\xf1\x7a\xf7\x65\x3b\x78\x33\x28\xca\xde\xa6\x73\x89\x73\x23\xab\xe9\x9a\x1f\x58\xb8\xdc\x26\xab\x39\x56\xd5\x06\xac\x42\xc1\x12\xd6\x3e\x50\xb7\xb5\x68\xb9\xdb\x2d\x5a\xee\x26\xf3\xa9\x29\x62\x8e\x4d\xfb\x82\x3b\x57\xde\x5c\x6c\x63\xf6\x9c\xe8\x83\xdd\x05\x54\x33\x5f\x73\xaf\xed\x5d\x53\x1c\x93\x6e\x67\x5d\x76\x0c\x47\x98\x3a\x24\x64\xd8\x31\x1a\x5b\xb3\x88\x17\x2c\xa4\xca\x18\x27\xa6\x90\x61\x9b\xfa\x90\x61\x8e\x02\x5a\x1f\xaa\x2c\xb7\xb2\xea\x7a\xcc\xea\x0e\xd7\x4c\x6c\x3b\xcf\xfe\xee\xde\xd6\xac\x72\x7d\x32\x3d\x0f\x36\xa4\x60\xba\x3c\x25\xdc\x6d\xf0\x26\x9b\x55\xe7\x3d\x86\xcd\x9e\x77\xb0\xd9\xf3\x1d\x6c\xf6\x5c\xb1\xd9\x38\x62\x3f\x67\x1d\xdc\xae\x26\xdc\x1a\x23\xbc\x20\x43\xcf\x63\xcf\xd7\xa9\xb8\x8b\x53\x77\x3b\x6e\xf6\x25\x93\x6c\xb1\xea\x4e\x6e\x6b\xcd\x30\x36\xd9\x6d\xc3\x4c\x6f\x2b\x27\x5e\xca\xf7\xd9\xcb\x19\x7b\xcd\xc6\x76\xb7\x65\x14\x0c\x1d\xe7\x0a\x84\x5d\x53\x20\xc7\xae\x93\x08\x2c\xfc\xb3\x33\xf5\xee\xec\x8c\xb0\xfb\x44\xa8\xda\x6e\x43\xfb\xc4\x35\x8b\x9c\x37\x11\x7e\xfc\x65\xc4\x73\x4a\x52\x27\xc5\xb8\xab\x76\x5b\xca\x46\x50\xdb\xc5\xc9\x9d\xb1\xf3\x8d\xc8\x2e\x29\xcb\x3f\x65\x36\x86\x11\x89\x3a\x5e\x9e\xd0\x8b\xa3\xdb\x25\x59\x18\x10\xc0\xe8\x4d\x4f\x27\xc1\x09\x80\x5f\xbe\x7c\xf9\xe2\x23\x80\x01\x9c\x7c\xf9\xf2\xc8\x9f\xa2\x10\x86\x01\x0c\x83\x2f\x5f\x02\xf8\xe5\xcb\xcd\x00\xa9\xdf\x10\xaa\x3f\x5f\xbe\xf8\xe5\xe4\xef\xf2\x2f\x44\x53\x34\x40\x5f\xbe\x20\x14\x96\x3b\x5f\xc3\xc9\xe0\xc7\x70\x8a\xc2\x12\x7e\xf9\xf2\x23\x42\x60\x6a\xcc\xbc\x4a\x80\x30\xb8\x00\x8e\x54\x59\x37\xfc\xc3\x5c\x7b\x22\x0e\x71\x41\x86\x38\x22\x00\xe0\x44\x1b\xe5\xcd\xe8\x22\xbd\x4a\x05\xe5\xda\xa6\x45\x1f\x12\x43\xda\x38\x11\xa2\xb1\x9e\x83\x25\xa1\xda\x6b\x90\x4e\x46\x53\x3c\x27\xc6\x0d\x49\x62\xc9\x68\x40\xac\xba\xa1\xc0\x73\xb9\xc9\x9b\x0f\x96\x96\x6f\x2e\x50\x34\x20\x8b\xc9\x68\xda\x6c\x05\xaf\x89\x98\x14\x53\x3c\x23\x74\xb2\x27\xf7\xc2\x74\xb2\x3f\xc5\x57\x84\x4e\x1e\x4f\xf1\x05\xa1\x93\x27\x53\x7c\x4e\xe8\xe4\xe9\x14\xdf\x12\x3a\x39\x98\x8e\x23\xb9\xdb\xd1\x9c\x29\x42\xaa\xf9\x5a\xa0\x7f\x24\xba\xbd\x33\xcf\xd3\x3f\xae\x3d\xef\xba\x4f\xc8\x0c\xdf\x10\x30\x90\xc2\xe8\xbc\x2c\xc1\x8f\xea\x07\x3e\x33\x96\x39\x4e\xd2\x57\xd5\x82\xb2\x4c\xf0\x31\xb9\x2a\xcb\x8b\xb1\xa9\x64\xa5\xcc\x0a\xee\xca\x32\x1d\x0c\xf0\x92\xd3\x24\xbd\x0d\x66\x65\x09\x00\xae\x87\x2b\xf8\x8a\xb3\xa5\x1c\xeb\x68\x11\x9c\x49\xbe\x47\x23\x11\xdc\xe0\x65\xc4\x25\x34\x08\x3e\xe2\x28\x17\x94\xa7\xf9\x65\xd0\xef\xdf\xe2\x65\x24\x04\xe5\x2c\x38\x0e\x73\x78\x8c\x82\xdb\x10\xf8\x3f\x82\x00\x4c\xfe\x0e\x06\x31\xfc\x8a\x06\x60\x3a\x08\x81\x64\xa2\x86\x44\x8b\xe7\xa2\xb1\x79\xd4\xc3\xab\x65\x75\x81\x10\x8e\x3c\xaf\x19\x0c\xde\x08\xfd\xc2\x61\x0a\x5a\xb9\xf0\xf9\x44\xee\xd0\x6a\x35\xcc\xa3\xc9\x97\x47\xe1\x5f\xa6\x8f\x2e\x70\x87\x34\x07\xff\x2f\x18\x68\x4d\xd6\xab\x6c\x46\x95\x36\xab\x41\x0b\xa3\xa7\xf2\xe1\xf3\x72\x69\x6d\xb7\x2a\xf7\x28\x26\xda\x30\x33\x6d\x8e\xc7\xad\xa9\x96\x89\x10\x54\x9b\x9d\x66\x83\x01\xea\x08\x77\x35\xc9\xa6\x72\x2b\xa5\x90\x73\xb3\xb6\xc0\xdf\x61\x18\x80\x81\x7c\xeb\x9b\xa1\x1c\x00\xf4\x03\xc0\x4b\xb9\x73\xae\xd1\xa5\x63\xf6\x90\x35\xcd\x49\x25\xb5\x47\x84\xa9\x23\xba\x98\xc0\xcc\x46\x8f\xa3\x42\xdc\x85\x45\x50\x0f\x55\xed\x91\x84\x73\x32\x1c\xe7\x4d\x5b\x73\x6b\xf4\x9b\x10\x31\xc9\xa7\xca\x54\xd0\xe0\x9d\x7e\xdd\xf4\xc4\x2c\x13\xbc\x20\xd1\x24\xd1\xee\xad\x8d\x79\xe3\x42\x49\xea\xc4\xb7\x34\x83\x56\x89\x6f\x68\xc5\xf3\x60\x3a\x20\x89\xaf\xe9\x0c\x8d\xe3\x8c\x89\x94\x15\xb4\x6a\x82\xfe\x34\x8e\x33\x0f\x8e\x6e\x97\x34\x16\x74\xd6\x03\x0f\x06\xba\x96\xc1\x03\xd0\x13\x99\xb6\xe1\x51\xc7\xeb\x0f\x94\x4d\x29\x87\x0b\xa4\xbd\xa4\x12\x5f\x93\x27\xfa\xbe\x02\x59\x26\x7a\xfa\x43\xdc\x3b\x2f\xe4\xef\x98\xa6\xd7\x74\xd6\xfb\xdf\x0f\x06\x7f\x3d\xfd\xf8\xc1\xd7\x43\x90\x26\x77\x70\x81\x06\xe0\x7f\x03\xb5\xaf\x94\x52\x6c\x51\x9b\xdd\xb6\xfb\x6c\x7b\x36\xfe\xfe\x86\x9c\xd3\x1e\xbd\x5a\x8a\xbb\x07\xa8\xb2\xf3\x3a\x27\xc3\xf1\xfc\xb9\xad\x6b\x3c\x97\x93\x94\x26\x70\x49\x62\xb8\x98\xcc\xa7\x08\xf7\xe9\x24\x9f\xfa\x82\xe6\x02\x2e\xd1\x37\x3a\x1f\x2d\x16\x1b\xf5\x2a\x77\x37\x9d\x6a\x89\xee\x01\xf8\xe6\x58\x2c\xed\x58\x0c\x88\x1a\x8c\x79\x68\xa7\x36\x48\x1a\x6e\x8b\x06\xcb\x4a\xed\x77\x75\x93\x13\xdf\xb2\x8b\xb0\x59\xb9\x0b\x77\xe5\xfe\xeb\xd6\x6d\x10\xc3\xc5\xf7\x0d\xce\x1f\x19\x18\xf0\x60\xb0\x1c\x3c\x00\x0f\xd4\x40\xd8\x11\xb0\x9d\xee\xc9\x34\xcb\xeb\x52\xc7\xc4\x22\x6e\x99\xc6\xd4\xbd\x87\x13\x7f\xf0\x63\x48\xfe\xde\x0f\x7e\x58\x55\x10\x4d\xbe\x4c\xcb\x2f\x8f\xbe\x7c\x99\xa2\x47\x17\x18\x7c\xf9\xf2\xc3\x08\x38\xdc\x28\xdf\x56\x06\xe9\x07\x3f\x7c\x79\x24\xc5\x69\xd7\x67\xc9\x9a\x71\xd8\x25\xbd\xcb\x09\xc3\xdd\x16\xb3\x3d\x6d\xe6\x6e\x9d\xf1\x43\x00\x02\x90\x82\x35\x43\x59\xb5\x71\x85\x0c\x95\x25\xa4\x92\xfd\x50\xcc\xc8\x64\x8a\x6a\x8b\xf2\x4c\xca\x59\xaa\xb9\x91\x89\x7b\x90\x12\x65\x3e\x45\x7d\xca\x66\xb8\xd0\x8c\x6b\x38\x8e\x1a\x56\x14\x59\x56\x94\x13\x31\x89\x5a\xac\xa8\xe1\xa2\x39\x2a\x06\x24\x86\xb9\xa3\x7d\x5d\xc8\x67\xcb\x62\xf0\x9c\x00\xc5\x50\x73\x87\x9b\x82\xb1\x31\xa8\xca\x11\xce\x0d\xc7\xf0\x3c\x38\x1f\x98\xbc\x8b\xc1\x7c\x00\xd0\x8f\x00\xe1\x62\x40\xe6\x24\xaf\x97\x75\x98\x5b\x4e\x16\x2e\x06\x00\x02\x95\x2f\x04\x81\xfd\xcc\x26\xc9\xb4\xe6\x09\x68\xa5\xe4\x35\x89\x21\x5d\x03\x21\x08\xcf\x48\x61\xf0\xc4\xc3\x6b\xcb\x4b\x08\x21\xd7\x75\xb0\xd6\xb2\x84\x05\x81\xb3\xb0\x68\xcc\x79\xeb\x8c\x41\x81\x06\xba\xee\x6b\xf9\x97\xfc\x20\x6b\x56\xad\x4e\x43\xf0\x03\x08\x32\xcf\x9b\xa9\x09\x83\x21\x51\x79\xca\x1f\x10\xc0\x09\x6c\xc9\x1b\x30\x28\xf0\x12\x52\x84\x5a\xc7\x27\xf3\xf5\x60\x90\x9b\xb3\x8b\xcd\x94\x62\xe1\xda\x66\xea\x72\xc3\x2e\x55\x96\xf0\xf3\xac\xe0\x31\xd5\xde\xb5\xf0\xd1\x17\x08\xc3\xfe\x97\x10\x3d\xba\xd0\xaa\x74\x54\xbb\x96\x28\x33\x33\xea\x86\x93\x65\x2e\x5c\xe1\x16\xa9\x28\x5d\x77\x03\x54\xd4\x63\x8d\x55\xfa\x23\x0b\x56\xfa\xa3\x1a\xad\xf4\x47\x0e\x5c\x19\xd5\x68\x45\xbb\xec\xd6\xd2\x55\xc7\xfd\x55\xff\x07\x72\x97\xb1\x11\x22\xb3\x69\xe9\x64\xda\x25\xef\x0d\x6a\x99\x43\x29\xc8\xd5\x27\xa6\xef\x4e\x1d\xee\x2c\xa8\x49\xe4\x0d\xc8\x95\x64\xd3\xcc\x8a\xa9\x75\x5b\x00\xce\x85\x42\xf9\x14\xe9\x40\xcf\x36\xe0\xf3\xfd\xa3\x16\xff\x4f\x70\x17\xfa\x03\xdb\xad\x3f\x11\xc4\xf9\xdf\x15\x98\xf9\xcf\x6c\x1a\x9f\xed\xef\x72\xe0\xb3\xb1\xc2\x1b\x7f\xa6\xc6\x9b\xdc\x84\xe6\xa5\x26\x16\x6f\x1d\x77\xb7\x2e\xc3\x09\x67\xa2\x27\x48\x11\xd8\x5a\x38\xde\x26\xb7\xeb\x77\x52\xe7\xc7\xdc\x7e\xb1\xdf\xf5\x85\x84\xb1\x1d\xdf\x28\x4f\xd6\xcd\xb8\x0b\x6b\x26\xa5\xcc\xa5\x84\x6f\xc5\x1d\xdf\x7b\x86\x3c\xef\x0f\xc4\x1f\xb7\x0e\xd2\xb3\xf4\x5a\x6e\x42\xbf\x3b\x14\xf9\x9a\xb7\xbf\xf5\x92\xad\xad\x3e\x71\x4a\x38\xcc\x94\x3f\x65\xb6\x6e\x01\xba\xdb\x7f\x3d\x5c\xcb\x0f\x05\x0a\x56\xdf\x0c\xbf\x6a\xdb\xf2\x54\x47\x5a\x84\xfb\x07\x36\x14\xf6\xe3\x76\x28\xec\x83\x7d\x84\x63\xe5\x66\x3e\xd4\x21\x16\x0f\x4c\x50\xd5\xd1\x48\x87\x58\xd4\xae\xa4\x92\x03\x47\x22\xe3\x00\xe1\x05\xe9\xc3\xc9\x54\xad\x0c\xcf\x03\x8c\xde\x0a\x90\x32\x93\x00\x91\x14\xca\x1d\x73\x39\x4f\xf3\x6a\x2b\x01\xe3\x6b\x3c\xc3\x77\xf8\x0a\xad\x62\x48\x31\xc3\xd7\xc6\xd8\x16\x9f\xe3\x5b\xfc\x71\x23\xf0\xed\xc2\xf3\x94\xf3\xe5\xb1\x25\xf2\xe3\x89\x98\x5a\x3a\x17\x9a\xce\xb5\x0b\x74\xa0\x7e\x2a\x9f\xae\x1c\x6c\x10\x66\x13\xab\x8c\xde\xf4\x28\xb4\x31\xd3\xb6\x53\xe4\x5a\x3e\x7c\x43\xd8\x00\xf4\xde\xda\xa1\x91\x3b\x73\x53\x97\xdc\xba\x7f\x25\xfd\x11\x3e\x6e\x85\x9d\x3e\x22\xc7\x93\xe5\xb4\x2c\x8f\x27\xe0\x7f\xfd\xaf\x7a\x48\xa7\x65\x39\xf3\xbc\xe3\xc9\x6c\x8a\x4f\xc9\x51\x59\x7e\x84\x33\x84\x5f\x91\x59\x78\x16\x7e\x84\xc0\x28\xdf\x00\x0a\x4e\x03\xa3\xa4\x7e\x49\x80\xda\x95\x02\x65\x43\x7f\x6c\xf5\x73\x65\x79\xa4\x0e\x8d\x3d\x0f\xde\x92\x04\xbe\x34\x2b\x8d\xde\xf4\x04\x42\xa8\x4f\xc8\x3a\x7b\xf6\xbc\x5b\x5f\xce\x9f\xe7\xc1\x1c\xde\xe2\x1b\x7d\xcb\x40\x59\x76\x44\x40\xbe\x55\xed\x2e\xe0\x2d\x5e\xe2\x39\x42\xf8\xcc\xf3\x8e\x3c\xcf\x76\xb7\x4f\xc8\x91\x6f\xbc\x57\xbe\x92\xfe\x10\x9f\x76\xd0\xc0\x51\x13\x3f\x0e\x55\xca\x87\xa8\x7f\x55\x96\x72\x36\xfb\x5f\x65\xf7\x75\x05\xc7\x78\x89\x4f\x11\x8e\x26\x6c\x4a\x4e\x71\x34\xb9\x99\x92\x39\x9e\xa1\x34\x81\x17\x44\x3b\xd9\xe6\xc1\x59\x78\x1a\x7c\x84\xb6\x72\x13\x84\xea\x4e\x27\x1a\xd7\x77\xab\xd1\x7d\x55\xe1\x2b\x85\x3c\xce\x25\xc5\x5c\x20\xf5\xe7\xb8\x2c\x53\x78\x8c\xcf\xf1\xc5\xe4\x7c\xaa\xc1\x65\x2f\x83\x99\x7f\x3c\xc8\xfc\x37\x3f\xc2\x45\x59\x7e\x95\xe2\xf6\xa2\x89\x11\xb7\x93\xed\xa8\xc5\xb4\x83\x1d\x98\x25\xf8\xd8\xb8\x66\xef\x0d\xf7\x95\xe9\x47\x57\x30\x87\xad\x51\x42\xb4\x74\x8a\x88\xf1\x33\x1d\xe2\x9c\x4c\xb4\xf8\xa5\xb2\x47\x11\xa2\x7d\x52\x48\xee\x12\xa9\xb0\xfa\xc6\xd0\x8d\x6a\xc1\x35\xb6\xe7\xca\x2f\xe2\x31\x52\x59\x08\x9b\xc4\x83\xc1\x54\xca\xe1\xff\x2f\x85\x39\xa6\xa8\x2c\xeb\x6f\xea\x6e\xe7\x5b\xe2\x70\xac\xaa\x7a\x67\xb6\x9b\x79\xd5\x51\x41\x0c\xbc\x3d\xc4\x0f\x47\xbb\x3c\xc6\xed\x50\x1d\x9a\xa1\x5a\x0f\x75\x51\x6c\x90\xf0\x66\xe8\x84\x0b\xa5\x6e\xb6\x4e\xf7\x9d\x41\x14\x84\x1e\x46\xe5\xda\x8e\x42\x31\x49\xa7\x41\x07\xc9\x0b\x57\x03\xac\x59\x4e\x13\xf2\xde\x7d\x17\xb6\x9e\x9a\xb6\x05\xad\x4f\x74\xf3\xc2\x42\xa3\xd1\x2e\xff\xf0\x5d\x77\x31\xdc\x2f\x90\x84\x75\x25\x06\x7a\xba\x01\x06\x75\x63\x00\x1a\x6f\xad\xe3\x43\x74\x45\xff\x60\xb8\x89\xc3\xfd\x3a\xf2\xbc\x8e\x3b\x60\x1c\xf0\x0f\x86\xee\x4d\x0b\xe6\x8a\x94\xbc\xbb\xfa\xd7\x54\x07\xfd\xc8\xb8\x73\x49\x4a\xbe\x76\xf6\x92\x26\x50\x90\x54\x5f\x88\x52\x98\x0b\x51\x62\xf7\x2e\x94\x5c\xc3\x7a\xed\xf8\x40\xf5\x4d\x28\x5a\xa1\x57\x47\xa4\x81\x7d\xee\x27\xcd\xd5\x1f\x58\x4c\xd8\xb4\xab\x73\xad\x10\xfa\x7b\x07\x68\xe3\xe8\xe1\x3b\xfe\xed\x94\xd2\xcc\x3f\x3b\xa3\xf9\xfb\x6c\x56\x2c\x94\xef\x90\x1e\xd5\x14\x52\xf8\x04\xc9\x71\x95\xbf\x46\x87\x23\xd4\xd6\x88\xb7\x37\xef\x4d\x09\xa1\x08\x56\x33\x9a\x44\xc5\x42\x04\xa2\xaa\x98\x6f\x1e\x08\xb7\xbf\x0c\x92\xa8\x03\x00\x67\xf6\x85\x73\xcd\x40\xfd\xd9\x37\x10\x46\x77\xdb\x55\x04\xe7\x8c\xc0\x02\x72\x84\x0b\x15\xbf\x59\x59\x53\x14\xaa\x27\x7b\x08\x8d\xf5\xaf\x7d\xb7\x4f\xc5\xbd\xfb\xb4\xae\xaa\x95\x70\x00\xb6\x96\x19\xeb\x56\x02\x81\x57\x11\x63\x99\x89\xd4\x13\xf5\xe2\x45\x94\xe7\xbd\x28\xef\x45\xb5\x98\x77\x75\x28\x71\x77\xcc\xf2\x13\x9a\x50\x4e\x59\x6c\xcb\x54\x17\x61\xcc\xa3\x9c\x3d\x10\xbd\x73\x4a\x59\xcf\x1c\xa8\xa7\x39\x9d\xf5\x1e\xf6\xf2\x62\x49\x39\x44\xad\x1c\xb2\x7e\x3a\xab\x2d\x12\xfb\x8e\x63\x76\xdf\x8d\x3d\xe9\x5e\xde\x51\x27\x87\x22\x60\x2d\xfd\x90\x69\x64\x67\x66\x7b\x94\x40\x58\xf7\x80\x9c\xca\xd6\xf5\xe8\xed\x92\xd3\x3c\x57\xde\x7d\x45\x2e\x7a\x34\x15\x73\xca\x7b\xe7\x54\x05\xc4\xe9\x65\xdc\x19\x21\xac\x34\x98\x60\x60\x6b\x90\xd2\x6a\xeb\xa9\x9a\xe7\x39\x07\x6b\x2a\x7e\x88\x65\x90\x81\x89\x95\x21\xb0\x1b\xba\x7d\xe4\x84\x68\x1f\xae\x85\x70\x1f\xaa\x88\x8a\x9e\x67\xbd\xce\xf3\x16\x8b\x0f\x3b\x53\xf5\xf6\xbe\x75\x6a\xd7\x56\x92\xd9\x73\xcf\xc6\x7f\x31\x6b\x1f\x4b\x1a\xa5\x84\x40\x15\xce\x92\xb6\xbd\x55\xa7\x63\x5e\xa3\x74\x63\x72\x1a\xf4\x29\x6d\xe7\x1e\x42\x54\x38\x77\x5f\xa8\x3d\x95\x20\x14\x77\xf9\xd8\x39\xc5\x2a\xeb\x72\xed\x58\xd7\x2c\xee\x2e\x9c\x50\xe0\x25\x01\x67\x67\x7a\x2e\x1e\x72\x1a\xc5\xe2\x61\xac\x17\xfd\x43\x30\x80\x43\x9c\xda\xcf\x11\x44\x03\x70\x76\x06\xf0\xa2\x3b\x76\x1d\x35\xd6\x91\x0c\xf3\x71\xa4\xa1\x2f\x75\x35\x7f\x1b\x3e\x85\x29\xd1\x07\x26\xea\x0e\x87\xe1\xb8\x78\x9e\x8d\x8b\xc1\x00\xa5\x93\xc2\xf5\x27\x2c\xea\x80\x4d\x8c\x70\x12\x1b\x4c\xbd\xeb\x52\x85\x54\xf2\x11\xee\xd3\xab\x54\x08\xca\x49\x02\xb9\x09\x03\x67\x6e\xa4\x8a\x21\x97\xec\xbf\x16\x06\x14\x0b\x84\xa9\xa3\x8a\xb8\xa0\x42\x45\xb0\x32\xcc\x6f\xc3\x87\xcd\x3a\xaa\x29\x33\x9b\xc9\x72\xaa\x6f\x51\x33\xf5\x61\x51\xb5\x0a\x6b\x05\x55\x3e\xd1\xba\x62\x29\xce\x36\x42\x87\x39\x71\x94\x55\x43\x95\x33\x9a\x6e\xb2\xd5\x9b\xad\xe5\x50\x0e\xfa\xfa\x97\x8d\x1e\x3c\x86\x30\x25\x14\xe9\x08\x93\x1c\x85\xc3\x3e\x21\x69\x59\x8e\x1e\xa5\x84\x90\xd1\xa3\x22\x48\xb5\xe7\x7a\xd1\x27\xa4\x40\x61\x46\x86\x01\xcc\x3a\x1d\x63\x59\xa8\xa9\x2d\x18\x0d\x0f\xf6\x0f\x1e\x8f\x0e\xf7\xf6\xb1\x2c\x0d\x66\x25\x19\x22\x13\xf6\xd9\xf4\x59\x2e\x28\x58\x37\xc5\x18\x94\xa4\xb8\x68\x8f\xc4\xd6\x00\xd0\x5d\x37\x4d\x60\x5a\x41\xee\xc6\x9b\x5c\xe8\x77\x66\x4e\x24\x77\xca\x09\x84\xd4\x4e\x41\x2d\x9f\x7c\xcd\x23\xfd\x34\x3f\xa1\xff\x28\x52\x4e\x67\x92\x0c\xf5\xe9\x89\xbb\x52\x36\xe8\x56\xfc\xbb\xe8\x56\x34\x74\xcb\x5c\xba\x65\xdd\x74\x6b\xe2\xf8\x6b\xce\xc7\x25\x31\xfe\x26\x7f\x42\x54\x61\x5e\x07\xf0\x5e\x5b\xcb\x6a\x62\xe0\xb0\xe4\x7e\x76\x9e\x53\x7e\x4d\x67\x3f\xa5\x22\x47\x1e\x43\x9e\xc7\x9d\x30\xf4\x1d\x85\xa2\x4a\x2d\x08\xd1\x5a\x10\x0c\xfd\x01\x1a\xb6\x36\xfa\x6e\x13\xc6\x6a\x6e\xdd\x94\xc6\x38\xac\x8e\x7f\x42\x58\xd8\x10\x59\xc0\xb6\xac\x9f\xad\x81\xd4\x0d\xbb\x9a\x2c\xa7\x86\x2a\x9b\x04\x5f\xb6\x4c\xb5\xc0\x8c\x9b\xa6\x04\xe1\x2e\xa5\xfb\x36\x57\xd4\xcd\x15\x6e\x73\x77\x2d\xf7\x6d\x31\xd4\x77\xb6\x38\x49\xd6\x9a\x5c\xad\x33\x27\x35\x75\xdb\xd6\x51\x53\x54\xb8\x5e\xf4\x05\x15\x10\xad\x37\x78\xdb\xaa\x84\xad\x41\xaa\x43\x73\xb6\xa3\xd0\x08\xb9\x27\x1a\x4e\x03\x81\xdc\x48\xfe\x9a\x69\xe9\x91\xde\x5c\xc8\xa6\xb1\x73\xdb\x32\xbb\x94\x8b\x6d\x4b\x19\x17\x08\xaf\x6c\x04\xdc\x60\x81\x6d\x7c\xd2\x60\x5e\x55\x7f\x00\x8d\xb6\xe4\xa5\x66\xac\xe0\xec\x4c\x87\x7c\x3b\x2b\x58\xfa\x8f\x82\x9e\xa5\xb3\xb3\x33\xd0\xb5\x61\x6d\x24\xec\x84\x4e\x09\x64\x2a\x2a\xf6\x10\x0d\x46\x55\x85\x9c\xa0\xf7\x14\xee\x3f\xfe\xa6\xaa\xb9\x31\xf3\x79\xec\xee\xe6\xf9\x77\x68\xa8\xbb\x62\xd1\xd6\xc8\xa1\xd2\xfc\xcb\x79\x55\x8d\x33\x5f\xcc\x23\x71\xa2\xb2\xe4\x84\xe3\xd6\xf3\x9b\x68\x91\x53\xc2\x95\xc6\xa1\xf5\xe2\x13\x2f\x54\xfa\x70\x2d\xfd\x83\x5c\x0f\x1c\xea\xa0\xc7\xed\x2f\xe6\x69\xd7\xa8\x29\xe5\x5e\x3b\xe7\x4b\xc3\x31\xbb\x94\x02\xc2\x9d\xdf\x6c\x7b\x60\xbd\x16\x51\x76\xed\x4e\xc1\xc4\x84\x10\x55\x39\xa6\x60\x53\xc1\x55\xab\x29\xea\x78\x4e\xf7\x26\x23\xe1\x44\xe2\x5c\xbf\xac\xe6\xf0\xc0\x5c\x50\xd5\xba\xac\xa6\x75\x25\xa9\x15\xb8\x9a\x02\xe5\xc0\x85\xcd\xcf\xa0\x33\xab\x36\x58\xef\xbc\xe0\xd4\x0d\x62\xbc\x72\xbc\xa8\xf2\xff\xdb\x61\xac\x36\x46\xc9\xea\x78\xc5\xf5\xce\xb4\x0b\xd5\x66\xb8\xd8\x81\x6a\xd7\xf1\xdc\xb6\xf5\x6f\x5d\x8f\x26\x62\x4a\x60\xac\x82\x4d\xaa\xa5\x6e\x81\x70\xf2\x0d\x20\xec\x5e\x02\xb6\x23\x98\x33\xaa\xa1\x6a\x6e\x6f\xfc\xb2\x50\x95\xb5\xee\x1c\xa1\xf6\xce\x11\x75\xb3\xc0\xfa\x9d\x23\xfc\x3b\x71\x6b\xb1\x89\x5b\xf9\xbf\x10\xad\x62\xbe\x89\x57\x33\x9b\x47\xc1\x54\x6e\x60\x6a\xf6\x4d\x98\x4a\x25\x4c\xa5\x5b\x61\xaa\x0a\x39\xb6\x0e\x53\xe9\x37\x60\x2a\x75\x61\x2a\xff\x93\xe0\x34\xd9\x01\x4e\x25\x2a\xf4\xa3\xed\xb0\x74\xf9\x0d\x58\xda\xcc\x1a\xdb\x4d\x45\x2d\xe0\x28\x5a\xc0\x51\x74\x00\x47\xc5\xd2\x2c\x70\x14\x6b\xc0\x91\x22\x6d\xed\xd1\x06\x8e\x62\x0d\x38\x8a\x35\xf2\x64\x3b\xc9\xf3\xbf\x1b\x45\xf2\xef\xc0\x8e\xc5\x3a\x12\x2b\xfe\x9b\xb0\x23\xff\x3e\xc4\xd8\xd9\xce\x0e\xc4\xc8\xef\x8d\x13\x8b\x35\x9c\x58\x38\x38\x71\xfb\xb2\xf8\x77\xa3\xc3\xe5\x3a\x3a\xcc\x36\xd7\x12\xce\x5c\x5c\x98\x34\xb8\x70\x59\x55\xfa\x5a\xc1\xef\xc7\x64\xeb\xc7\xff\xff\x67\x8d\xc1\xb7\xdf\x68\xf8\xaf\xd5\x66\xee\xb2\x26\x18\x3a\xda\xd7\x6c\xdd\xea\x75\x38\xa6\xcf\xed\x89\xd1\x98\x5a\xcb\x8f\x8c\x48\x5c\x3c\xce\xfc\x46\x6b\x47\xdc\x87\xb2\xec\x8f\x70\xe6\xbb\x9a\x3b\xd2\x1f\xe2\xe6\x16\xf1\xcc\xf3\x60\xe6\x5b\x2d\x1f\xd1\x37\x9a\x0b\xac\x83\x19\x64\xa8\xaa\xb6\xdb\x37\x34\x5e\x8b\x19\x6c\x5d\xe3\x8b\x30\x55\x69\xf8\x9b\x77\x92\xcb\x5e\x77\x45\x12\x96\xe9\x7b\xee\xd5\x84\xc8\xd7\x24\xb1\xc3\xdc\xa2\x66\x7e\x6b\x46\x04\x5b\x6d\x73\xea\xf3\xad\x03\x34\xe6\x90\xfb\xa7\x03\xee\xbf\xf9\x51\x9b\x2b\x60\xa0\xeb\x03\x78\xb5\x76\x23\xbc\x09\x5f\xbc\x2b\xf8\xf4\x9a\xfc\xee\xb8\xf2\x79\x33\x66\xbd\x7b\x45\x6c\x4d\x2f\x3b\xee\x88\x6d\x53\xce\x13\x6b\xdb\xb0\x25\xae\x78\x63\x7b\xb8\xa6\xdb\xe6\x90\xa1\x6d\x7a\xed\x0c\x0a\x14\xb0\x9d\xf5\x9a\x3b\x62\xf7\x46\xa3\xee\xc3\x10\xd8\x1d\x09\x2e\xf3\x3c\x90\xab\x23\xb4\x56\xac\xb7\xae\x6d\x89\xbd\x89\xb8\xcb\x37\x45\xb4\x2f\x42\x70\x4a\x6f\x9d\xfd\x11\xe5\x30\x29\xfa\x84\x64\x0d\x95\x86\xb6\x01\x41\x5d\x45\xfb\xfa\x91\xa2\x01\xc7\xdf\xee\x42\x0a\x39\x0a\x9b\x81\x2f\x3a\x6d\x46\x64\xf1\xc1\x37\x32\xfd\x6b\xba\xa4\xaa\xc2\xb2\x07\xce\xf2\x2d\xbe\xb5\x10\x0f\xb6\x2c\xc4\x43\xa4\xae\x1c\x38\x40\xd8\xcd\x7f\x38\x42\x7e\xe2\x9a\xa0\xdc\x77\x0b\xfe\xec\x19\x92\xdb\xdb\x31\x85\xa3\xd1\x3e\x82\x26\xb2\x3a\xd0\x7f\xc1\x9a\x3b\x96\xba\xc2\x51\x10\x63\x70\x2c\x90\xb9\x03\x32\x25\xc3\x0a\xb5\x18\xbb\x09\x16\x40\xcc\x17\xd8\xa8\x70\xcf\xd2\x3a\x90\xea\x8b\x3a\x3a\x41\x68\x30\x96\x31\xdc\x98\x65\x4c\x1d\x67\x04\x50\xc8\xf5\xa0\xb8\x96\xfe\x76\x50\x07\xb2\xc6\xf5\xf1\x88\xce\x3d\xd2\x37\x9a\x6d\x8f\xb2\x3e\xba\xe7\xed\xd8\x6d\x8c\x68\x50\x32\x8e\x6c\x8f\x33\xc8\x90\xdc\xc6\x72\x48\x55\xfc\xea\xda\xcc\xcd\xec\x97\x9e\x0f\xcb\x32\x7e\x41\xf2\x50\xdd\x5b\xab\x3b\x14\xc0\x94\x44\xae\xcd\x76\x8c\xd0\xf3\x27\x4f\xf6\x9e\x3d\x2d\xcb\xf4\xc5\x93\xa7\xfb\xa3\x67\x65\x19\x0f\x46\x84\x90\x5c\x99\xba\xb6\x33\x0f\x46\x32\xfb\xd3\xfd\xbd\x61\x59\x16\x2f\x9e\x1c\xec\x3f\xde\x0f\x45\x18\xd9\x30\x24\x31\x0a\xd2\x40\x3e\x6b\xe3\x81\x18\xc7\x83\x3d\x14\x14\x0f\xd5\x17\x03\x98\x3e\x54\x35\x3d\x7f\x3e\x1a\xa2\xc1\xd3\x27\x4f\xf6\x9f\xde\xdb\x2a\xea\xe0\x71\xfb\xd4\xfa\xe0\x99\xdc\xd0\xaf\xaa\xb1\x32\xe5\x80\x05\xde\xb4\x7a\xea\x10\xed\x4a\xef\x81\x5c\x5a\xdd\xa4\x7a\xf7\x2a\x89\x02\xaf\x18\xbd\x15\x81\xbe\x72\xbd\x42\x58\x79\x37\xb9\x16\x44\xbb\x64\x47\x7d\xc7\xbb\xbd\x0e\xe4\xc9\xe6\x5d\xef\x5d\xb6\x6d\x29\x5d\x3f\x4a\xcf\xac\x41\xa3\x39\x2c\x22\x29\x64\x08\x47\x75\x4c\x70\x1c\x93\xe1\x38\x52\xb6\x22\xea\x92\x78\x4a\x0a\x65\x2d\x82\x99\x6b\xcf\xb8\x53\x4c\x8c\x9e\x6e\x5e\x6a\x01\xc1\x3f\x01\xea\x8c\x80\x0f\x87\xb6\xe9\x5d\xb1\x69\x4e\xad\x59\xb8\xb2\xd5\xad\x83\xb2\x83\xfa\x6e\xc2\x4e\xb5\x8e\x6d\xca\xe3\xa1\xbd\x46\xe5\xb1\x35\xbf\x79\xf2\x1d\x0b\x05\x17\xba\xa8\x48\xad\x0c\x15\xd9\x3d\x83\x71\xed\x0c\x94\x90\x14\x16\x38\x47\x26\xd2\x3b\xed\x13\x63\x3e\x3c\xce\x5f\x24\x63\x94\x26\x10\x46\x24\x9e\x24\x83\xc1\x14\xf5\x49\x54\xc7\x0b\xd7\xde\x03\x75\xc6\x64\x30\x50\x79\x45\x59\x26\xbd\x94\xf5\x62\xe4\x79\xf1\x24\x99\x3a\x31\xc6\x7b\xf2\x5d\x59\x0e\xed\xc1\xb1\xf0\xbc\x87\xa3\x2e\x82\x6f\xf3\x05\xeb\x69\xbe\xbb\xc7\xe2\xc5\x30\xcc\xb4\x09\xe9\xb3\xe1\xf0\x60\xf4\xec\xd9\xde\x93\xc7\x07\x8f\x87\xcf\x9e\x8d\x50\x30\xbc\x67\x25\xd1\x2d\x4e\x77\xd7\xd7\x60\x03\xc5\xff\x04\x42\xcf\x65\xbd\x62\xc0\xf0\x10\x05\xda\xd7\x6f\xd7\x0a\x70\xec\x29\x5d\xd5\xaa\xe7\xf1\x3a\xdd\x18\x49\x76\x89\x97\xbd\xe1\x61\x43\xf6\xee\xe5\x11\xfb\xe6\xf2\x88\x83\x7d\xad\xd6\xdb\xbc\x3b\x03\x47\x04\xbc\x3a\x3d\x3d\x29\x16\xf4\x5d\x9a\x0b\xfc\xea\xf4\xf4\x54\xdc\x2d\xe8\x6b\x1a\x2f\x22\xae\xbd\xd7\x5f\x9d\x9e\xaa\xad\x99\xce\xb0\x48\x29\x13\x27\x34\x56\x21\x40\xf0\xeb\x8f\xef\xdd\xdf\xba\x64\xfb\xf4\x29\xbb\xa4\x4c\x3f\x44\x22\x52\xee\xc3\x09\xe5\x6f\x05\xbd\x52\x89\x6f\x52\x53\xe9\x2f\x9f\xde\xbf\x7b\xb9\x58\xbc\xca\x16\x0b\xaa\xcf\xe3\x65\xca\xda\xe3\x9b\x8c\x5f\x99\x31\x50\xcf\x3a\x0a\x88\x4d\x79\x4f\x67\x69\xa4\x0a\x7b\x9f\x5e\x51\x09\x09\xd5\x9e\x0e\x7f\x88\xae\xe8\xec\x43\x36\xa3\xef\xa3\x25\x96\x7f\x55\x9e\xe3\x28\x95\x7d\xf8\x47\x41\x73\xdd\xf4\xe3\x45\x71\x91\x32\xf3\x47\x7f\x79\xfa\xdb\xcf\x3a\x40\x80\xca\x70\xfa\xdb\xcf\x1f\x8a\xab\x73\xca\xed\xd3\x71\x24\xe6\xa7\xf4\xa2\x7e\xcc\x52\x1d\x14\x45\x3e\x38\xa3\x70\xfa\xdb\xcf\xba\xdf\x19\xd7\x9d\x3e\x55\xe6\xf4\x3f\x15\x49\x62\xcb\x92\xc3\x7d\x3a\xa7\x54\x7f\xfe\x49\x6e\x22\x79\x14\x5f\xbe\x32\x03\x5e\x27\xe8\xa7\xac\x88\x55\x8b\xdc\xeb\x53\x14\x5b\x8b\x9f\xd7\x82\x2d\x6e\x5c\x50\xa2\x49\x3c\xc5\x09\xe1\x93\x7c\x8a\x97\x24\xf1\xbc\xc4\x51\x75\x2c\x3d\xaf\xbf\x54\x7b\xf4\x0c\x2e\xb1\x5c\xed\x38\x9d\xe4\x53\x92\xfa\x6a\x08\xee\x2b\x73\xf6\x86\xd6\x2c\x78\x34\x5c\xa3\xb7\x61\x9b\x93\x2b\xb0\xa2\x87\xd7\xd8\x79\x62\xb8\xb6\x01\x30\x60\xa5\x68\xe1\x14\xf3\xeb\x92\xb0\x2e\xc4\x52\xe3\x15\x8b\x5c\x2e\x1b\xe4\x32\x18\xd4\x6c\xa5\x2c\xe9\x8b\x1a\x8b\x84\xd0\xd6\x64\x00\x4c\x06\x47\x08\x05\x19\x1c\x62\x6d\x68\xa9\x2f\x3b\x6a\xac\x5e\x59\x28\x26\x74\x1a\x4c\x28\x96\x7f\xa7\x52\xc8\x35\x66\x9a\x72\xc0\x8c\x7a\xcb\x0e\x1e\xe6\xb5\xc5\x26\x77\x0c\x3a\xb9\x63\xf6\x7a\x8f\xcd\x0f\x5a\xbf\x47\x6b\xfb\x16\xdb\xe8\xc8\xcd\xf5\x35\x06\x62\xf5\xc5\x6e\xbb\x72\x39\x67\x7b\x9d\x90\x75\x6f\xb4\xaf\x20\xeb\x48\x23\xd7\xd1\x33\xf5\x67\x6f\xd8\x06\xb0\x72\x53\xa9\xed\xf8\xee\x4b\x2b\x96\x33\x59\x93\xd1\x67\xc6\x68\xfb\x40\x5b\xd5\x29\x2b\x6e\x65\xb5\x3d\x7a\x8c\xfc\x5f\x8f\xfe\xa6\x2f\x51\xd8\xd3\x96\xdb\x07\xc6\x70\x5b\xa2\x9a\x85\xbe\x02\x0a\xcf\x35\x5f\xc3\xd7\xe6\x72\x9c\x99\xfc\xbb\x87\xf0\x9d\x2a\xe4\x09\xc2\x57\xea\xc7\x53\x84\x2f\x0c\xc6\x38\x37\x96\xec\xb7\xc6\x1e\xf3\xa3\x11\xa6\x37\xc6\xba\xef\xcc\xe0\xa7\xaf\x06\x4f\x1d\xab\x02\x0e\x10\x3e\x92\x0d\x94\x43\x70\xaa\x5a\x7a\x88\xf0\x2b\x03\x5f\x5e\x6a\xd8\x82\x3f\x91\x23\x3f\xc1\x97\xe4\x95\x9f\xe0\x77\xe4\xd8\x4f\xf0\x7b\x62\xaf\xdb\xc1\x27\x84\xfb\x7f\x3d\xfd\xf8\x01\x7f\x26\x27\x9e\x77\xd2\x78\x24\xe2\x37\x64\x0e\xc1\xd9\x3c\x9d\xcd\x28\x03\x08\xbf\x95\x8f\x22\x3b\xb6\x97\xc7\x01\x84\x3f\x6c\xbb\x63\x07\xbf\x26\x09\x34\x9b\x96\x87\x9c\x5e\xa4\xb9\xe0\x77\x00\xe1\xdf\x9b\x64\x49\x77\x3f\xc9\xc7\x6c\xf9\xb0\x49\xf9\x65\xe3\x4c\x09\xff\x46\x3a\x8c\x45\xdf\x7b\x5e\xbf\x7f\xea\x27\xf8\x67\xc2\xfd\xff\xd0\xdf\xe0\xbf\x92\xfe\xcf\x65\xd9\xff\xb9\xf9\xb8\xfd\xe4\x27\xa9\xb9\x56\x0d\xff\x40\x52\xcf\xcb\xb7\xb8\x2c\x7c\x85\x97\x70\x55\xed\xf2\x4a\xb8\xd4\xda\x30\x95\x43\xd3\xf6\x81\x72\x53\xa8\x90\x76\x56\xd8\x70\x71\xd2\x94\xf6\x09\xfe\x82\x19\x1a\x73\xcf\x33\xf7\xaa\xfd\x32\x61\x53\x7c\x69\x32\x61\xae\x37\x7e\xbf\x78\xde\xa5\xcc\x88\x39\xaa\x82\x4b\xfc\x8f\x0e\xcd\xee\xef\x13\x31\x25\x5f\xe1\x7b\x47\x7d\x56\x1b\xf8\x48\x8e\x24\x30\xab\xf0\x3f\xc9\x6f\xee\x56\xd6\x8e\x9c\x6f\x51\x76\xc7\xae\x7c\x23\xf7\x96\xed\xb9\xab\x33\x7b\x5f\xe1\x5f\xb7\xa9\x6c\x04\x51\xdd\xf9\x15\xfe\xa4\x7b\x78\xa1\x0d\x4a\x6f\x8c\x41\xe9\x85\xdc\xfb\x64\xf0\x77\xcc\x50\x08\xa9\xa3\xdc\x0a\x61\x06\x05\x7e\x83\x3c\x4f\x4c\xde\x4c\x27\x6c\xaa\x1c\x98\xd4\x2f\x15\xe5\x82\x92\xaf\xfa\x92\xe3\xda\xa0\xed\x0c\x0e\x71\x7f\xa4\xfc\x54\xcd\xb7\x65\x29\x07\xf6\x0d\x3e\x83\x23\xbc\x52\xfb\x06\x5b\xc0\x10\xe1\x1f\x4c\x43\x51\x60\x47\xbf\xc2\x7f\x5b\xe3\x5d\x17\x6d\xdc\xce\xc9\x1d\x64\xe4\xa3\xda\xb6\x65\x64\x88\x53\x62\xef\x17\x1a\xa7\x2f\xb2\x31\xfa\x55\x41\x77\x3e\xc9\x3a\xa0\x3b\xfe\x8f\x8e\x49\xfc\xe0\x5e\xf0\x4e\x6e\xa0\x90\x63\x52\x5b\x2a\xaa\x74\x3d\x7c\x72\x84\x04\x52\x97\x86\xfd\x84\x85\x8a\xa1\xdd\x87\xac\x2c\xfb\x99\x75\x8e\x50\xbf\x7f\x57\x3f\x4c\xda\x1b\x73\x6c\x23\xfb\x2c\xa6\xa8\x2c\x19\xaa\xf0\x7f\x6e\x2a\x40\x05\xf9\xd8\x9e\x13\x45\x81\xa6\x3c\xa6\xca\xfb\x09\x33\x64\x0f\xf9\x3f\xa9\x0f\x6d\x1b\x69\x2b\x5f\x6b\xc2\xca\xb2\x35\xa1\x6a\xd0\x69\x55\xe1\xff\x6a\x1f\xf7\x59\x37\x38\x4c\xc9\x3b\x28\x5b\x82\xea\x90\x13\x4d\xdc\x99\x74\x8c\x54\x2d\x84\x4e\x52\x89\xec\xcb\x92\x11\xf2\x46\xfd\x1f\x97\x25\xb7\x91\xc2\xea\x43\x92\x0a\x0b\xb1\xb5\x1a\x45\x92\x98\x93\x77\x90\x86\x3f\x05\xba\xca\x94\xa8\xdb\xa6\x86\x63\x3b\xa3\x2f\x8a\x31\xd2\x3d\x23\x7c\x52\xe8\x3a\xa9\x9a\x80\x5f\x54\x67\x4d\x74\xb2\xdf\x27\xac\x99\xe5\xb4\x1a\xff\x56\x96\x30\x82\xf0\xbd\x2b\x2a\xcd\x31\x5f\x6b\xc5\x6c\xde\x6b\xa9\x99\x71\xa3\x27\x74\x34\x42\x7d\x60\xcf\x4c\x16\x70\xdd\x8c\xea\xc5\x30\x6c\x8c\xa5\x86\x53\xa3\x26\x90\xd3\x59\x6b\xbb\x94\xc3\x59\x43\x4b\xda\x78\x0a\xfe\x84\xd5\xca\xab\x49\x45\xff\x9c\xbc\x99\x2a\x42\x83\x0d\xe5\xa8\xe5\xf6\x83\xa1\x33\xb5\x96\x28\x42\x95\x73\xdf\xf7\x5f\x3d\xef\x07\xf8\x0b\x16\x9b\x77\xd6\xe5\x54\x04\x12\x1a\xfd\x43\x85\x14\x74\x38\x7a\x0d\xf6\x3b\x35\xf8\x06\x2d\xc9\x15\x7b\xe4\x27\xe4\x3f\xf1\x2b\x3f\x21\xbf\x62\x29\xdb\x9e\x21\x3f\x91\xf2\x8b\xfc\x17\x56\xa6\xf0\x7e\x42\xfe\x03\x9f\xfa\x09\x11\x02\xa7\xca\x0f\xed\xe9\x10\x79\x5e\x04\x7f\x51\x96\xf8\x1b\x62\x09\xe0\xff\x50\x34\x7e\xed\x27\x5d\xdb\xb2\x7f\xc0\xb9\x0a\xb3\x87\x70\x01\x0b\xff\xe7\x41\xe1\xff\x3e\x28\xfc\x37\x3f\xf6\x7f\xc3\x2b\x3d\x41\xc1\xfb\xaa\x61\x09\x4c\x10\x30\x8f\xf2\xb7\x66\x62\x71\x9a\xbf\x52\x36\x68\xa7\x4b\x4e\xa3\x99\x12\x83\x96\xd5\xea\x0b\xb3\x6d\x98\x23\x73\x8d\x0d\xce\x97\x34\x4e\x69\x8e\x15\x66\xc6\x8e\x68\xc5\xce\x6e\x08\x17\x2c\x8f\xb3\xa5\x2c\x2e\x6f\xc1\x6b\x2a\xc8\x70\xcc\x2c\x74\x7c\x41\xc5\x18\xcd\x21\x13\x13\x2a\x24\xbd\x36\x3b\x2f\x41\x5e\xc2\xb9\x9f\x8b\x8c\xcb\x29\x97\x1f\xf1\xfa\xa3\x4c\x8c\xd1\x0c\x72\x31\xc9\xf4\x47\xb2\xdf\xa7\xb6\xcf\x86\x28\x01\x96\xeb\xa7\x4b\x0c\x64\xf0\x35\x16\x03\x02\x00\x0a\x5f\x4f\xc4\x34\x90\xff\x91\xf7\x4a\x43\x79\x49\xef\xde\xac\x7d\x94\x26\xb0\xff\x4f\x39\xbe\x3b\x15\xe4\x5a\x00\x49\x9a\xaf\x87\x59\xee\xd0\x5f\xcb\xfd\xfa\x6b\xc9\xbd\x1b\x27\xd2\x1e\xab\x70\x91\xd3\x53\x2a\x84\x7b\x39\x08\x5a\xfd\x95\xf4\x87\xfa\x55\x7a\xb5\x5c\xd0\xb5\x57\xa3\xca\x4c\x70\xd3\xd1\xfa\x44\x40\x1f\x4b\x05\x5d\x18\xb6\xe7\xdc\x37\xfa\x15\x0a\x14\xfc\x0d\x7e\x55\x9c\x53\x05\xfb\x6d\x1d\x24\xfc\x8a\x37\x34\x42\x7f\xc3\xdb\x7c\x30\x82\xff\xc4\x1d\xde\x21\xc1\x7f\xe1\x4e\xbf\x94\x40\x08\x13\x94\x2e\x15\xa4\x8d\x5f\x4e\xfd\x04\x2a\x01\xe8\xcc\x62\x2a\x9c\xce\x75\x17\xd8\x31\xaf\xb2\xa4\x5b\x7d\x49\x24\xc2\x27\x9e\xd7\x94\x07\xfb\xbf\x95\x65\xbb\x5a\xcd\x9a\xde\x43\xcb\x07\xc1\x84\x15\x8b\xc5\x14\xf4\xc9\x67\xa8\x25\x0f\x58\x55\xea\x69\x15\x05\xa2\x72\x9e\x6b\x75\x92\x6c\x34\xc2\x40\xa2\x50\x80\x57\x35\x00\x0d\xb6\xb0\x70\x29\x21\xc4\x14\x67\x64\x34\xde\xe0\x87\xd9\xd8\x7a\x8b\x37\x7c\x31\x53\xa4\x9d\x26\x90\x12\xc9\xce\x47\x53\x0c\xcf\x95\x03\x7e\x7d\x11\x84\x12\xae\xff\x74\x2e\x85\xbe\xd2\x0e\xfa\x6c\x53\x5e\x76\x60\x51\xaa\x42\xd1\x52\x57\x9a\x4b\x89\x89\xfb\xff\x74\x2e\x9e\x93\x8c\x50\xd6\x4d\x18\xfe\x6c\x2c\x10\x4e\xb0\x0a\xc2\x8d\x1d\x14\x37\x79\x3b\x2d\x4b\xad\x14\x75\x52\xf1\x5b\x37\x4f\x7d\x99\x34\x5e\xc2\xf7\xf5\x22\x55\x4f\x91\x98\x63\x20\xff\x07\x8a\xcd\x2d\xa1\x81\xf6\x66\x68\xd5\x9d\x3a\xdb\xb4\x3d\x4f\x47\x08\x82\x2b\x2a\x22\x73\x91\xed\xbe\xd1\xd5\xee\x1b\x0f\x23\x7d\xe7\x69\x44\x86\x38\xb6\x18\x3d\xcd\x8f\x6e\x05\x65\x79\xaa\x8e\x23\x37\x38\xb9\x5c\x84\xca\x49\x78\x8b\x73\x70\x0c\x6b\xac\x4f\xaf\x29\x13\xa6\xb0\x8c\xe5\x70\xa5\xc3\xae\xad\x19\x07\x15\x2a\xc2\xbb\x01\xdc\xab\x34\x00\x1f\xc1\xa0\x37\x18\x44\xf8\x46\x79\xe8\xa2\x0a\x2f\x89\x73\xd9\xf3\xaf\x47\x7f\x0b\x38\xfe\x70\x74\xf4\x3a\xe8\x8f\x70\x12\xe5\xe2\x57\x7a\xb7\xe9\xe6\xd4\xcf\x9a\x89\xdf\xc4\xbf\xa1\x08\x9c\x48\x19\x75\x2a\x38\x05\x01\x38\x06\x68\x20\x54\x34\xe2\x54\xd9\x58\xe9\xe2\x62\xa7\xb8\x37\x40\xdf\xeb\x6d\x9f\x8f\xc0\x58\x5d\x58\x6a\x45\xdd\x84\x4f\xfd\x54\xd9\x7b\xfd\x4e\xa3\xcb\x8e\xb6\x6d\x29\x58\xdf\x80\x58\x97\xdb\x1f\x6d\x16\x7b\x53\xe1\x8c\xbd\xe1\x94\xfe\x93\x76\xad\xf1\xdc\xf3\x96\xbe\x1c\x1b\x75\x05\x95\xa4\x7f\x5d\x95\xe7\x25\x4a\xc9\xb1\x53\xd5\x69\x0e\x25\x47\xf6\x1a\xd8\xc3\x2d\xde\xf2\x16\xe9\x9a\x6b\x9d\x33\x3f\x69\x87\xa6\x28\xd4\xee\x5a\x79\x58\xa6\x7e\xa2\xc2\x27\x59\x75\xd1\x8b\x7c\x8c\x62\xeb\x3b\x56\x90\x68\x92\x6b\xff\x49\x63\x5e\x57\x34\xfb\x9d\xfb\xeb\xc5\xbf\x6d\xe1\x68\xdd\x7c\xf9\xfd\x94\xdc\x1a\x91\xe0\xd4\xf5\xd0\xc4\x05\x69\xe2\x53\xb5\x4c\x0d\x6d\xc4\x62\xcf\xdb\xee\x15\x18\x6e\x7f\x65\x82\x04\xa3\x60\x32\x6d\xfa\xd4\x0d\x64\x0a\xcf\xab\x8d\x35\xf5\x05\x3c\x53\x40\x48\x6a\xad\x32\x5b\x1b\x3f\xc7\xa5\x4f\x05\x6b\xd6\x0e\x7d\x8d\xd8\xb3\xa1\x52\x90\xba\x56\x2f\xc8\x3a\xaf\x0f\x46\xab\x2e\x6d\xcd\xe1\x1e\x82\x20\xca\xef\x58\xfc\x76\xc7\x59\xa2\xc9\xa7\x6d\x7e\x14\x4a\xbb\xff\x01\x7c\x63\x1b\xf4\x6f\x75\x1b\xdb\x79\xf8\xb2\xb7\x67\x7c\x32\x47\x7b\xed\xb3\x72\x37\x2a\x90\x6d\x7f\x4a\xb2\xb0\x13\x4b\x39\x26\x2e\x65\xa9\xc8\x0f\xa7\xed\x53\xde\xf4\x5b\x8e\x93\x8f\xbb\x55\x66\x7b\x4f\x36\xb5\x63\x9d\xbe\xbb\x3b\xbc\x4e\x6b\x7a\x3f\x40\x63\x59\xe4\x53\x04\x41\xfb\xe3\x4e\x28\xdf\x89\x19\x0d\xfd\xec\x8c\xe8\x70\xd0\xbe\x66\xfa\xc9\x96\xb3\xd6\xc6\x45\x1a\x66\xa6\x4f\x2a\x2c\x92\xb2\x32\xd5\xcf\x12\x29\xa8\xa3\xc6\x42\x82\x53\xa6\x82\x34\xd7\x16\x21\x69\x4b\x2c\x51\x0d\x9f\x1a\xc4\x54\x74\xf1\x00\xd9\xfd\xc3\xad\x23\x9a\xdf\x73\x44\x6b\xcb\x14\x07\x9f\xb5\xbf\x0d\x64\x45\xcf\x90\x2c\x71\xdd\x22\xa5\x2b\xf8\x85\x3e\xa6\xdc\x10\x20\xca\xf1\xba\xaf\x6d\x41\xd6\xfc\x13\x1b\x00\xce\x06\x20\xe8\xc5\x91\xa4\xfe\x9c\x8a\x5e\x94\xf7\x6a\xb0\xd1\x07\xad\xfb\xfd\x65\x1b\x83\xce\xae\x96\x25\x04\x35\x05\x83\x94\xad\xaa\xb6\x0e\x8c\x6b\x4e\x03\x35\x5b\x1e\x22\x68\xc3\x65\x2a\xa6\x84\xb5\x0a\xd3\x4f\xe0\x86\xfa\xcf\x29\x55\x0d\x06\xde\x43\x08\x0a\x3c\x99\xca\x5d\xee\x9a\xf9\x96\x62\xdf\x96\x85\x65\x68\xc5\xe4\x46\x60\x83\x16\x1d\xfd\x94\x0d\xf5\x13\xba\x16\x66\x34\xe0\xb5\x85\x13\x5c\x55\xb8\x3f\x42\xf5\xc6\x3a\x9e\xd3\xf8\x32\x48\x77\xb1\x83\x7d\x63\x20\xb0\xb7\xff\x78\x3b\xd5\xfe\xf7\x79\x91\x82\xb6\xdb\x28\xbf\x9f\xab\xe8\xb7\x9d\x43\xb3\x6d\xc7\x87\x2d\xa6\xb4\xbf\x45\x8f\xbf\xbf\xff\x1d\x36\x60\x8e\x05\x98\xb1\x1b\xfc\xc6\xc9\x65\xd7\xea\x32\x5b\x3b\xa5\x3c\xdf\xb5\xa0\xda\x5c\x3c\x83\x2d\x75\x66\xe3\x47\x41\xf8\xba\xd1\xfc\x26\x23\x57\x61\xe0\xb0\x2e\xa2\x6a\xf9\x60\x7c\xb7\xe7\x7a\xdd\xa0\x7f\x8f\x49\xa5\x36\x38\x54\xae\x17\xa9\xf2\xb0\x50\x6e\x79\xca\x9d\x1c\x53\xf8\x6c\x88\xcc\x39\xc8\xe1\x53\x7d\x0e\xd2\xba\x3f\x3a\x6f\x0c\x5a\xf3\xff\x7b\x63\x5e\x69\xd7\x08\x0a\x47\x43\x7d\x9c\xe3\x33\x98\x48\x61\xf7\xe4\xa9\xd3\xd5\xc5\xff\xc9\x78\x56\xda\xfd\x92\xc2\xc7\x07\xea\x5c\xc9\x67\x70\x8e\xc6\x3b\x8d\x61\x8f\xec\x3d\x9a\xb3\x0e\x50\x6e\xb6\xdf\x91\x1f\x21\xe8\x9c\x1e\xcc\xd2\x7c\xb9\x88\x14\xe4\x54\xc7\x08\x10\x9c\x64\x85\xa0\xfc\xe1\x2f\xfa\xb2\x1c\x80\xf0\xdd\x9f\x2f\x0d\x20\x7c\xd5\xed\xf8\xd1\x78\x94\x59\x9b\x7d\x4a\x84\xb3\xb7\x66\xeb\xa6\xfa\x75\xac\x6e\x56\xdf\xcb\x69\x93\x2a\x4c\xfd\xb3\x34\x57\x56\xeb\x74\x46\xfa\x23\xf9\xbc\xa4\x6c\x96\xb2\x8b\x77\x26\x8f\xbe\xe2\x45\x5f\xbc\x98\xc6\xb5\x43\x0c\xa4\x7e\xc1\x74\xf0\x6c\xe2\x14\xac\x12\xda\x41\xed\xdd\x2a\x42\xea\x98\xfb\xb7\x2e\x76\xe9\xa8\x58\x28\xb5\x07\xad\x38\x64\x58\x20\xcc\x94\x11\x7b\x21\xe8\x49\x96\x89\xf7\x52\x84\x75\x40\x7b\x75\x19\x76\x00\x1e\x01\x5c\xf0\x85\xfa\xbb\x8c\x78\x74\x95\x07\x92\xe8\xf2\xa3\xdb\x28\x56\x17\xb6\x4b\x44\x5c\x19\x9a\x24\x6c\xd3\x8f\xe0\x3e\x1e\xa1\xee\xc0\xd9\xb3\xee\xb5\x2e\x18\x33\xfa\xae\x2e\x77\x65\xaf\x94\x17\xe6\xbd\x4c\xf5\xed\xd8\x9b\x1a\xec\x23\x54\x25\x6c\x75\x33\x49\x6b\xc7\x26\x1b\xbc\xeb\xce\xb7\xb6\xed\xb5\xde\xc0\xcc\x65\xe0\x98\xde\xdb\x7b\xa0\xda\xcd\xd7\x96\xf6\xf5\x75\x09\x4a\x85\x1b\x6c\xce\x12\xec\xc8\xdc\xdc\x3d\x8d\x5b\x74\xe5\x56\xda\x7a\x51\x55\x78\xb3\xf1\x33\xa7\xf1\xd6\x3b\x20\xe8\xf0\x18\xd0\x7e\x11\xd8\xc8\xee\x8d\x6e\x29\xa8\xcd\x2a\x28\x2b\x70\x9c\x04\x5a\x8f\x6b\x4f\x2a\x1c\x98\x64\x64\xe7\xee\xb5\x3d\xb7\x06\x71\xd7\x8a\x50\xa5\xf8\x5a\x55\x08\x77\x04\x13\x65\x65\xd9\x76\x64\x60\xea\xe0\x8a\x11\x4d\xc2\xcc\xa8\x31\x29\x61\x58\xb9\xba\x44\x62\xae\xdc\xfe\xa8\xa4\xe1\xfa\x0e\x0d\x7d\x25\x8a\xbe\x44\xcb\xc4\x3a\xdd\xbc\xc0\x95\x36\x11\x55\xeb\x7b\x33\xf4\x85\x79\xb1\x21\xf8\x49\xed\x1f\xce\x91\xcf\xe9\xac\x88\xa9\xeb\x2b\x67\x62\xfa\xf5\xa9\xe7\x01\x75\x23\x7f\xad\xb5\x2b\x16\x0b\x15\x8c\xb9\x4e\x30\xa8\xa5\x6b\x0f\x02\xc0\x80\xf9\x94\xcd\x06\xcc\x34\x55\xfe\xa8\x1b\xc6\xc9\x85\xf2\x73\x85\xf2\x8f\xba\x5a\x24\x4d\x20\x9f\x88\xa9\x2d\x5a\xfe\x36\xe1\xe1\xd5\x01\xd8\x8a\xd3\x0b\x7a\xbb\x0c\x96\x50\xe2\xdd\x0c\x33\x13\x78\x2b\xab\x4f\x5f\xce\x9f\x8f\xe8\x63\xcf\x53\xa5\x90\x14\x9f\x0f\x06\x08\xa7\x95\x3e\x18\x9d\xa9\x9b\x08\x65\x2b\x82\x08\xd7\xad\x08\xf2\x4a\x82\x53\xee\xeb\xb2\x71\x41\xb8\x12\x51\x38\x6e\x02\xb7\x2b\xcd\x52\xdc\x1a\x01\x2d\x1b\x63\x1d\xc7\x3d\x36\x0a\x01\x65\xe5\x20\x08\x21\x89\x73\x1a\xd4\x9f\x87\xf2\x8b\x40\x4f\x32\xb5\x5c\x4a\xdf\x50\x05\xe4\xdf\x24\x04\x8f\x40\x90\xd4\xdc\x6a\x6e\x39\x58\xb1\x39\x31\x6b\x87\xc9\x13\xa6\xc3\x63\x93\xc5\x84\x4e\xb1\xa8\x10\x5e\xa9\x0b\x24\xb0\xbe\xd3\xbc\x4d\xc2\x35\xd5\x7e\x74\xf4\x3b\x8f\x3a\xee\xec\x7b\x04\x06\x4e\xb0\xde\x1b\x37\x14\x4d\x6b\xd2\xa9\x3a\x29\xb5\x7d\x55\x97\xf3\x37\x37\xd2\x37\xf2\x3b\x64\x41\x2e\x77\x0d\x0c\xaf\xea\x8b\xe6\x9d\x8c\x26\x1e\xbb\x3d\xdb\x94\x50\xb4\xae\xfb\xcc\x3d\x88\xdf\xbc\x17\xc5\xee\xbc\x60\xe1\xd3\xb6\x45\xfb\xd7\x6e\x27\x66\x93\x3d\x36\x77\xdf\x55\xee\xad\x7b\x68\x55\xed\x62\x00\x75\xce\xa3\x46\xc4\x83\x9b\x54\xcc\xb5\xf8\x86\x60\x00\x85\x2b\xdc\xcb\x52\xa8\xb9\xd1\xb1\x56\x69\xcb\x1b\xcf\x4a\xa1\x1b\x1e\x2d\x97\x74\x56\x57\x72\x42\x13\xcc\xc9\x02\x32\x3c\x01\x1d\xef\x80\x73\xb4\xda\xc1\xd7\xad\xa3\x92\xbe\x66\xb3\xd3\xf1\xb5\xbe\xfd\xcf\x8e\x40\x07\x8f\x15\x58\xcd\x16\x97\xf3\xc5\x69\x12\x50\x73\xe1\x47\x23\x29\x5d\x08\xc3\x30\xf5\x7f\x5f\x6b\x2a\x11\xf8\x1a\x6a\xbf\x52\x35\xa4\x45\x6e\xdd\x6a\xbf\x11\xc7\xea\x5e\xa6\x49\x4f\x0f\x37\xbc\xa1\x0f\x95\x42\xde\x67\x30\xb5\xa8\xfc\x99\x42\xe5\x3e\x83\x91\x8e\x29\x39\x7a\xf6\x58\x99\x26\xf9\x0c\xe6\xda\x36\x69\x6f\x6f\x4f\x19\x27\xf9\x0c\x2e\xb5\x75\xd2\xde\xfe\xb0\x81\x91\xca\x3e\xe9\x89\x32\x4f\xf2\x19\x9c\x21\xed\xf9\xb5\xcb\x54\xb7\xe5\x64\x29\xda\xbe\xba\xbd\x02\x22\x1b\x03\x04\x43\x46\x12\xfb\xb8\x90\xe3\xe4\xba\x93\x09\x84\x6a\x1c\x57\xe3\x02\x1d\xb1\x0d\x33\x8b\xd9\xf5\xe8\x32\x84\x63\xf5\x63\xa2\xee\x59\x05\x1b\x00\x06\x18\x01\xb8\x76\x36\xc5\x70\x8d\x7a\x32\x3f\xf2\x95\x3a\xd2\x61\x31\xdc\xd8\x0f\x8f\x91\x09\x68\xc9\xd5\x71\x04\xe1\x2a\x52\xa3\x09\xe2\x3a\x0c\xea\x0d\xa8\x4c\x25\x7b\x58\x15\x25\x89\x16\x0a\x88\x90\x0d\xde\xca\x08\x97\x1c\x5f\xdf\x16\x55\x87\xfa\x6a\x43\xa4\xa6\x9b\xb4\x32\x1f\x3e\xd1\x71\x33\x29\x9b\x81\xa6\xa2\x5c\x64\x4b\x58\x73\x37\xac\xc3\x38\x56\x58\x77\x5e\x23\xa0\x2d\x3d\x36\xa6\x87\x1a\x91\xd4\xd5\xd5\xaa\xcc\xf0\xae\x63\x11\x34\xa8\x01\x99\x80\x79\x53\x09\x4d\xa1\xcc\x7b\x5c\x70\xda\xe0\x06\xf9\x66\x8a\xc6\xff\xcf\xa3\x47\x7f\xe9\xe9\x28\xcc\xef\xa3\xe5\x32\x65\x17\x9f\x4f\xde\x91\x43\x7f\xf4\x64\x46\x0f\xa3\x67\x23\x3f\x9e\x17\xec\xd2\xff\x9a\xfb\x57\xd1\xf2\xff\x0f\x00\x00\xff\xff\x72\xd8\xcd\x10\x3e\xb5\x00\x00") +// FileIdentifierStaticJs8Cecd3c0cChunkJs is "identifier/static/js/8.cecd3c0c.chunk.js" +var FileIdentifierStaticJs8Cecd3c0cChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xbd\x6b\x7b\xdb\x38\xb2\x2e\xfa\xfd\xfc\x0a\x09\xd3\x87\x01\x5a\x08\x23\xd9\x49\xec\x50\x41\xb8\xd3\x89\xd3\x9d\xe9\x5c\xbc\xec\xa4\x7b\xcd\x52\x34\xde\x34\x05\x5a\x8c\x65\x50\x03\x82\xbe\x8c\xc8\xf3\xdb\xcf\x83\x1b\x09\x4a\x94\xe2\x74\xcf\xac\xfd\xec\x95\x0f\xb1\x08\x82\xb8\x16\xaa\x5e\x14\xaa\x0a\x50\xcc\xd3\xdc\xbf\xa1\xe7\xcb\x28\xbe\xfc\x6b\x9e\xb1\x65\x3a\xa3\x4c\xa4\x49\x4a\x39\xd9\xf1\xae\x2c\x27\x53\xe4\x2f\x8b\x7c\x0e\x27\x93\xc3\x29\x7e\xc9\x79\x74\x07\x47\x87\xc8\x8f\x33\x16\x47\x02\x4e\x92\x82\xc5\x22\xcd\x18\x14\x98\xa1\xd5\x75\xc4\x7b\x94\x08\x9f\xde\x2e\x33\x2e\x72\xb2\xba\xa6\x3c\x4f\x33\x16\x80\x3d\xff\xa9\x3f\x1a\x81\x6a\x0c\x58\x71\x75\x4e\x39\x20\x44\xdc\x2d\x69\x96\xf4\xce\xce\xa8\xe7\xc1\xb3\x33\x4a\x28\xaa\x30\xc6\x78\x77\x91\xa0\x60\x33\x9a\xa4\x8c\xce\x40\xdf\x16\x71\x93\xb2\x59\x76\xe3\x79\xfa\xaf\xff\x3e\x12\x73\x42\xe4\xff\xa1\x4e\x09\xba\x3e\xca\xe9\x22\xf1\x3c\xf9\xbf\xfb\x81\x7c\x0e\xde\xd8\x16\x00\x4e\x45\xc1\x59\x4f\x0e\x11\x40\x10\x75\xb5\xfe\x42\xb5\xfe\xc2\xb6\xbe\xdd\x7e\x4c\x75\x0f\x38\xa1\xf0\xc9\x08\xe1\x8c\x50\x38\x1a\x8d\x10\x4e\x09\x85\x07\x43\x84\x0b\xf2\xf1\xfc\x2b\x8d\x85\xaf\xdb\x77\xcc\xb3\x25\xe5\xe2\x6e\xcc\xfc\x84\x50\xb8\xf7\x0c\x85\x9d\xef\x83\xf5\x4a\xd2\x04\x72\x28\x10\x66\x24\x85\x0c\xf7\x87\x08\x73\x48\x11\xce\x90\xe0\x77\x2b\xd3\x8b\xc2\x64\xae\xe2\x48\xc4\x73\x18\xa1\x55\x95\x26\x10\x5c\x50\x01\x52\xd6\xa3\x65\x09\x72\xf3\x13\x89\x39\xcf\x6e\x7a\x9f\xee\x96\xf4\x88\xf3\x8c\x43\xf0\x32\x8e\x69\x9e\x67\x3c\xef\xb1\x4c\xf4\xf2\x62\x29\x67\x83\xce\xfa\x00\x8d\x75\xe9\xe0\x3a\x5a\x14\x54\x7d\xed\x79\x50\x4c\xd8\x94\x50\x5f\xa5\x21\x2c\xaa\x6a\x63\x54\x9a\x19\xed\x53\xf8\x64\x0f\x41\x58\xe7\x40\xb6\xc1\x07\xfd\xee\xd1\x81\xab\x0a\x83\x08\xe0\xd5\x05\x15\x41\xc7\x67\x55\x85\xfc\xa8\x42\xa8\xea\xa4\xa5\x55\xe5\xcf\xa3\xfc\xe3\x0d\xab\x07\xbb\x69\x4b\x3b\xbf\x29\x8f\xfa\x71\xb4\x58\xa8\xa4\x8e\x8e\x80\x22\xa7\xbd\x5c\xf0\x34\x16\x60\x6c\x5f\xf6\xb8\x2e\x21\x4d\x20\x2b\x16\x0b\x42\x04\xd2\x85\xad\xaa\xb1\x6a\x05\xe6\x38\x5b\xab\x6d\x77\xde\x55\x85\x53\x3b\x1a\x97\xf4\x2e\x87\x02\x8d\x93\x8c\x43\x4e\x86\x63\xfe\x3c\xf5\x17\x94\x5d\x88\xf9\x98\x0f\x06\x88\x92\x74\xc2\xa7\x98\xf9\x29\x9b\xd1\xdb\x8f\x09\xa4\xe8\x05\x19\x96\x25\xcc\x26\x74\x4a\xc4\x84\x4e\xed\xa4\xf5\xb2\x4a\xd5\x3d\x4e\x13\x68\xca\xbe\xa0\xc2\x19\x9a\xd3\xbb\xab\xf3\x6c\x91\xeb\xa1\xab\xeb\xef\xcc\xf3\x07\x1a\x64\x8a\x5b\xf2\x4c\x64\x72\x3d\xc9\x5f\xaa\xc8\xb7\xf9\x11\x2b\xae\x28\x8f\xce\x17\xf5\xe0\x53\xe4\x79\x4e\x0f\xaa\xba\x07\xd4\x9f\x41\xa6\xe8\xa1\x83\x84\xb8\x22\x83\x9d\xeb\x72\x6f\xcf\xac\xcb\x43\xbd\x2c\x47\x23\xb5\x2e\x29\xdc\x3f\x44\x38\x92\x7f\x87\x08\xc7\xf5\x64\xf5\x04\x64\x98\xe2\x58\x17\x90\xe3\x04\x2f\xf1\x82\x30\x4f\xf8\x6f\xf0\x5c\xfd\xfd\x19\x5f\xab\xbf\xa7\x78\xa6\xfe\x1e\xe3\x3b\xf5\xf7\x27\x7c\xa5\xfe\xfe\x8e\x2f\xc8\x3c\xcc\x02\xd9\x19\x3b\x2b\xab\x0a\xe1\x73\x72\xd1\x8c\x05\xbe\x25\xf3\x90\x07\xd7\x21\x9f\xd0\x69\x00\xb9\xca\xbb\xaa\x50\x93\x43\x8d\x76\xde\x4b\x59\x6f\xee\x79\x30\x26\x14\xe1\x18\xc1\x84\xf4\x17\x9e\x77\xeb\x79\xd7\x59\x3a\xeb\x0d\xfb\x84\xdc\x4e\xf2\x29\xf2\xbc\x08\x5e\xe0\x1c\x95\x25\x5c\x92\x24\x94\x69\x41\x3c\xc9\xa7\xf8\x62\x92\x4f\xc9\xdc\xf3\x80\xed\x5f\xc3\x21\x65\xa6\x50\x66\x0a\xee\x3c\x2f\x09\x53\xb8\xc4\x1c\x05\x57\x9e\x27\x5f\x10\xb2\x0c\x9b\x11\xd5\x83\xc1\x1a\x8a\x96\x43\xc4\x15\x4d\x4b\xde\xd9\x4b\x59\x2e\x22\x16\xcb\x52\x05\x5a\xe5\x37\xa9\x62\x40\xfc\xa2\xb8\xa2\x4c\xe4\x86\x56\xd0\x2a\x8e\x72\xda\x1b\x06\x66\xee\x18\xbd\xe9\x89\xb1\x4a\x1b\xb5\xd2\x20\x43\x3a\x79\x6f\x2d\x59\x32\xb7\xf5\x14\xcc\xeb\x34\xe1\x47\xcb\xe5\xe2\x4e\x35\x09\xd7\xb5\xa3\xca\xae\x06\xd6\x0c\x2e\x71\xc8\x12\xb3\x0a\x2e\x51\x30\x73\x07\xa9\x16\x00\xcb\x30\x85\x56\x5e\x28\x52\xc5\x4b\x14\x2c\xf1\xcc\xf3\x20\xbc\xf0\xaf\x53\x2e\x8a\x68\x51\x96\xcd\x6f\x39\xd5\x48\x0e\xe0\x12\x4b\x62\x38\xf1\xbc\x73\xcf\xeb\x9f\x4f\xf2\xa9\xe7\x15\xf0\x1c\xe7\x78\x89\x10\xaa\xc6\xb1\xff\x86\x8c\x70\xec\xff\x4c\xf6\x70\xec\x9f\x92\xc7\x38\xf6\x8f\xc9\x21\x8e\xfd\x9f\xc8\xe8\x29\x8e\xfd\xdf\xc9\xbe\x7c\xf3\x99\x3c\x95\xaf\x4e\xc8\x68\xef\x10\x37\x9c\x2c\xde\xe4\x54\x35\xc1\x1f\x6a\x82\x7f\xf2\x0c\x39\xac\x4f\x4b\x9b\xf5\x6f\xec\x32\xf2\x13\x95\x92\xc1\x11\xa6\x08\x55\x1b\xf2\xc7\x8e\xb0\xe2\xfb\x1b\x0c\xdf\x65\xf7\x2e\xd1\x18\xd1\x91\x29\x3e\x00\x48\x3d\xa8\x22\x94\x9c\xb0\x4f\x88\x08\xdc\x21\xaf\x5f\x77\xb0\xe1\xba\x73\x43\xb3\x9c\x0f\xf6\x50\x27\x63\x6f\xfa\x04\x33\x28\x50\x17\x4b\xb7\x65\x1d\x1c\x20\x08\x6e\x2e\x73\xa0\x4b\x7c\x6a\xe4\xf6\xde\x1e\xf2\x35\xd3\xc3\x05\xe9\x20\x89\x74\x0c\x77\x57\x3c\x11\x72\xdd\xcb\x3f\xa4\xf0\xbc\x54\x3f\x16\x61\x1a\x64\x08\x02\x5d\xb2\x0f\x06\xb2\x6d\xc8\xcf\x45\xc6\x29\xe1\x86\x87\xed\xe2\x63\xfb\xcf\xb6\x75\x38\x4d\x60\x5f\xa2\x83\x0d\xb1\x2e\x06\xa0\x97\x6a\x91\x1e\xb1\x9e\x9e\x86\x46\xa4\x6f\x8c\xf3\xb6\x69\x6c\x30\x46\xbf\x2f\xa0\xc5\x17\xb5\x00\xed\x0f\xab\x6f\xc9\xcd\x9d\x3c\x7c\x59\x21\x34\xb6\xbd\x1c\x0d\x9f\x1a\xea\x55\x93\xe1\x33\x98\x69\x6e\xfd\xf4\x99\xe6\xd6\x87\xcf\x24\xb7\x86\x14\x3e\x45\x58\x66\x3f\x44\x08\xe7\xea\xc3\x67\x08\x4b\x50\xf5\xe4\x10\xe1\x65\xab\xfd\x35\x6b\x97\x95\x4a\xae\xaa\x98\x19\xa6\x64\x9d\x43\x61\x4e\x24\x5f\xd1\x30\x58\xc2\x2b\x32\x1c\x67\xcf\xe9\x38\x1b\x0c\x10\x9f\x64\xd3\xe6\x83\x49\x36\x35\xa3\x08\x19\x11\x8a\x31\x58\xe6\x83\x27\x92\xff\x4c\x2d\x84\xe6\x08\x95\xa5\x4c\x41\xfe\x3c\x95\xb3\x7d\x67\xc4\x2c\x8c\xfc\x08\x41\xc5\x93\x96\x39\xc2\xcc\x72\x31\xf3\x96\xab\xb7\x58\x62\x3e\x47\x82\x72\xca\x66\x94\x93\xcd\x41\x4c\xfd\xc8\x8f\x39\x8d\x04\x3d\x5a\x50\xd9\x44\x58\xf8\x31\x5e\x99\x2a\x03\xb5\x09\x30\x0f\x38\x9e\xa7\x8b\x19\xa7\x4c\xa7\xaa\xfa\x7d\x9b\x56\xa1\x4a\xf2\x43\x59\xdc\xab\xec\x6a\x99\x31\xca\x04\x1a\xb7\x1e\xdb\x4f\x55\x27\xd1\xb6\x66\x9f\xf9\xd1\x26\x16\xea\x0b\x43\xae\x72\xc4\x0d\x0a\x7d\xcb\xae\x23\x9e\x46\x4c\xf4\x92\x28\x5d\xd0\x19\x58\x5f\xbd\xdd\x14\xda\x60\xb9\x15\xad\x71\x45\xd0\x87\x23\x4f\x20\x1c\x67\x2c\x49\x2f\x0a\x9b\xb6\x27\xd3\x6e\x78\x2a\xcc\xf3\x63\xf9\xac\x70\x6c\xc0\xd6\xc9\xb8\x85\x62\x87\xdd\x68\x73\x88\xb9\xda\x59\xf8\x3c\x62\xb3\xec\x0a\xee\x66\x4a\x66\xf5\x43\x60\xa9\x43\x4b\x71\xc9\xfa\x42\x00\x02\x81\x01\x3a\x03\x18\x0e\x06\x74\xc0\x91\x2f\xb2\x53\xc1\x53\x76\x01\xf7\x9f\x2a\x3e\xb6\x85\x41\xdc\x7f\xa5\xdd\x56\x08\x61\x93\xe3\xbc\x33\xc7\x57\x27\x47\xdc\x99\x63\xe6\xe4\x98\x75\xe6\xf8\xe4\xe4\xa0\x9d\x39\xae\x5b\x2b\xfe\x70\xa8\x56\xbc\xcf\x20\x37\x08\x4d\xf2\x80\x42\xf3\x80\x48\xbd\x28\xdc\x35\x7f\xf8\xcc\x2c\x79\xb9\xd2\x13\x95\xff\x40\x2e\x79\x99\x31\x41\x78\x41\x34\x5b\xc0\x73\xf9\xc5\x13\xc3\x26\xe4\x37\xd7\x32\xe1\xf1\x01\xc2\x9b\xc0\x26\x83\x72\xfb\x57\xe3\x84\x63\x9e\x5d\xa7\x33\xca\xfd\x59\x9a\x2f\x17\xd1\xdd\x87\xe8\x8a\x12\x31\x00\xf5\x0b\x80\x99\xff\x2a\x63\xb9\xa4\xb6\x8d\x4c\xf6\x05\x90\x2b\x09\x9c\x64\x85\xa0\x1c\x20\x84\x67\xdb\xb8\x92\xa5\x26\xcb\x52\xa8\x61\x29\x1a\xc9\xb0\x9a\x81\xe4\x22\x12\x94\xac\x16\x59\x1c\xc9\x2f\x03\x66\x97\xb4\x6f\x93\x2a\x4c\xfd\xb3\x34\x7f\x9f\x15\x4c\xd0\x19\xe9\x8f\xe4\xf3\x92\xb2\x59\xca\x2e\xde\x99\x3c\x44\x0a\x5f\xcc\x54\x69\x69\xfc\x2a\x63\x82\xde\x8a\xb2\x84\xd4\x2f\xd8\x22\xcd\x05\x65\xc4\x29\x58\x25\x38\xbb\x37\x81\x56\x6e\x15\x21\xf5\x73\x2a\x4e\x65\xc3\x60\xd3\x30\x51\xa1\xa0\xa3\x62\x51\x21\x49\x1a\x95\x61\x71\xa9\xc3\xe2\xe2\xec\x6a\x59\x08\x7a\x92\x65\xe2\xbd\x14\x2f\x1d\x8b\x67\xb5\x8c\xc4\x3c\x00\x8f\x00\x2e\xf8\x42\xfd\x5d\x46\x3c\xba\xca\x03\xb9\x77\xca\x8f\x6e\xa3\x58\xc8\x54\xb9\x98\x2a\xb3\xb5\x22\x0e\xef\x1c\x37\xdb\x3d\xcb\xbb\x5e\xa7\x33\xd5\x0d\x97\x9f\x2a\x9e\xe8\x0e\xe1\x10\xeb\xa4\xb5\xce\x78\x9e\x4a\xee\xea\x7c\x57\x76\xc9\x57\x9d\x9a\x7f\x4f\x17\x8b\xcf\xec\xaa\xb3\x72\x3b\x0b\xa6\x06\xfb\x08\x55\x09\x5b\x05\x40\xb4\x21\x00\xae\x6b\x6a\xc5\xab\x5d\x2c\xbf\x2c\x15\x41\x68\x26\xd8\x96\x18\x3a\xa3\x95\x1b\xed\x1e\x2a\x62\xac\x09\x0f\x5f\xc9\x59\x0b\x36\x27\x12\x76\x64\xf6\xe5\x4c\xb2\xe8\x8a\x22\xdc\x22\x42\xb7\xd2\xd6\x8b\xca\x88\xa5\xa8\x2d\x96\x5a\x8f\x6a\xc6\xef\xb6\x0b\xfe\xdd\x9b\x04\xbd\xc4\x36\x28\xf3\xcf\x91\x91\xee\x49\xc6\xd4\x5b\x33\x9d\xad\x34\x67\x95\xab\x15\xde\xa2\x91\xd7\xe9\xec\xf3\x72\x26\x57\x7c\x0b\x8c\xb9\x85\xe8\xf7\x6b\x25\xeb\xc4\xb5\xa2\xb1\xb8\x3f\x01\xd6\x05\xe9\xf7\xeb\xc5\xeb\xd4\xae\xa6\x6f\x25\x4e\x49\x60\x5d\x13\x28\x47\xf7\x8a\xac\x2a\x7c\x41\x86\x8d\x72\xe5\xbc\xa5\x9e\x69\x44\xa4\xe7\x41\x41\xc0\x23\x80\x70\x9d\xc6\x3c\x0f\x32\xb5\xbb\x36\x2b\x3f\x74\x34\x46\x1a\x1a\x5f\x4d\xc4\xd4\x68\x5c\x7a\xf2\xf7\x58\x73\xfc\xa5\x5c\x2f\xd9\xd5\x32\x5d\x50\x28\x6a\xd6\x7f\xf1\x7c\x44\x1f\x7b\x9e\xfa\x88\x30\x7c\x31\x18\x48\x64\x06\x85\xa4\x86\xd5\x92\x53\x21\xee\x82\xfe\xb0\x42\x55\xdd\xd8\xdb\x46\x88\x08\x4b\xfc\x33\x45\xf9\x58\xb2\x71\x91\x61\x2e\x37\x9b\x45\x3e\xc7\x19\xa9\x37\xed\xdc\xf3\xf8\x78\xc7\xca\xb5\x22\x04\xab\xa5\xd9\xe2\xbe\xc2\x2a\x56\x60\x2e\xa9\xb4\x3f\xb2\xa2\x54\xd4\x0b\x35\x25\xa2\xbd\x7e\x70\x41\xb2\x90\xab\x56\x04\xdc\xe7\x74\xb9\x88\x62\x8a\x13\x8b\x44\x63\x3f\x46\x90\x85\x20\x57\x70\xc3\xd9\x89\xd1\xf0\x1c\x52\x09\x40\x15\xa3\x45\x81\xc9\xbf\x90\x15\xaf\x2a\x4c\xf1\xca\xae\xe4\xe0\x1c\xd2\x7a\x59\x37\x5f\x48\x39\x50\x0f\x6e\x1a\xc2\x42\x4a\x68\xd9\x27\x14\x6c\x76\xfb\x0e\xaf\xcc\xba\x70\xb5\x7e\xf2\x93\x0a\x5b\xb2\x0e\xda\x20\xac\xee\x40\x22\xa1\xb4\xc8\x70\x82\xca\x52\x7f\x21\xb2\x80\x56\xa8\x42\xa8\x92\xc3\xf3\x51\x52\xd9\x8d\x4b\x65\x67\x06\xc6\x75\x90\xd2\xc6\x38\x98\x77\x4a\x00\xb1\xaa\xe6\x0a\x98\x13\xdd\x69\x85\x5f\xa8\x94\x40\x38\x6d\x26\x39\xf3\xbc\x4c\xe2\x18\x5f\x83\x33\x1c\x35\xaf\x0a\xcf\x2b\x70\x2c\x5f\x51\x96\xa7\x22\xbd\xa6\x38\x6f\xde\xc6\x9e\x17\x9b\x41\x9b\x38\x1b\x09\x9f\xd3\x59\x11\x53\x47\x18\x5b\xdd\x30\xb3\x04\xce\x0c\x2d\x74\x41\x55\x00\x06\xcc\xa7\x6c\x36\x60\xa6\x41\xf2\x47\x5d\x3d\x27\x1f\xb5\xbe\xea\xa3\xd1\x57\x8d\xd3\x44\xed\x61\x91\xb3\xad\x55\xa5\x67\x64\x32\xc5\x29\x59\x71\x7a\x41\x6f\x97\xc1\x12\x22\x28\x70\x86\x19\xc2\x97\xf4\x2e\x0f\xb2\x5a\xdf\x72\x63\x16\x93\xda\x09\xa7\xf8\x46\x2e\xa6\xb4\x82\x14\xaf\x28\x9b\x05\x29\xd6\xad\x08\x22\x5c\xb7\x22\xc8\x2b\x89\x05\x25\x89\xca\xb2\x71\x41\xb8\xd2\x86\xe2\x98\x64\x3e\xbd\xa5\xb1\x5c\xaa\x72\xf3\x10\x23\x87\xb3\xa8\x56\x25\x24\x9e\x0c\xa7\x78\x41\x62\x3f\x5f\xa4\x31\x85\x23\x89\x00\x05\x21\x24\xa9\xe9\xcf\xf3\xfa\x73\xa5\x7a\x08\xf4\x54\x52\x8b\x24\x08\x21\xd4\xf3\x80\xfc\x9b\x84\xe0\x11\x08\x92\x1a\x51\xcc\x2d\xca\x28\x36\x87\x7f\x43\x39\xe2\x4b\xea\x9f\x92\xc5\x84\x4e\xb1\xa8\x10\x5e\x55\xa8\xaa\x0c\xc1\x2b\x32\xfc\xfa\x27\xe5\x53\x7b\x8f\x98\xde\x73\x8f\x28\x6b\x16\xea\x20\xe8\x8f\xf0\x1c\x86\x56\xac\x9b\xe7\x18\x35\xda\x32\xaf\x25\x7b\x59\xb2\x06\x12\xf0\xfa\x75\x8b\x2f\x86\x9d\xa9\x81\x4d\x95\x33\x13\x9e\xb9\xdc\xc4\xbc\x41\x01\xf3\x15\xca\xc0\x19\x59\x63\x44\x0c\x37\xf0\x8b\x1a\x28\xc2\x2b\xa4\x18\xa1\xfa\x16\x17\x24\xad\x01\x0f\x8e\xe5\x83\x95\x42\x38\x21\xa9\x19\xb3\x31\x54\x5b\x7f\x3f\xcd\xb5\x0a\xa0\x40\x9e\x27\x59\x43\x61\xf4\x03\x9e\x07\x0b\x85\x9e\x11\xee\xd2\x5b\xc9\xec\xcd\x8e\x0e\x16\xa4\x80\x19\x42\xcd\x47\x68\xd7\xe8\x37\x58\x4d\x03\xb1\xac\xc2\x85\xe7\xf5\x3b\xf4\x4b\xb2\x70\x25\x47\x4d\x77\xfc\x58\xb2\x4c\x28\x50\x05\x0b\x14\x16\x41\xa6\x47\x29\x8c\xc3\xcd\x7a\x62\x9c\xa1\x20\x09\x13\x98\xa1\x40\x2d\x04\x4d\x9a\xa8\x13\x5e\xd5\xe4\x79\xec\xec\x60\xb5\x98\xf5\xe3\x79\xc4\x5f\x0a\x38\x44\xa1\x02\xdd\x03\xd1\x48\xc4\x23\x77\x8f\xdf\xe2\x4b\x94\x1c\x3b\xb2\x56\x72\xba\x06\x0a\x3a\x87\x07\x21\x5b\x17\x34\xcc\x11\x34\xce\x27\x79\x71\x9e\x0b\x0e\xa9\x55\x30\xbb\x72\xf9\xd4\x69\xf3\x06\x3f\x97\x30\xa1\x16\x1d\x14\xc9\xb1\xab\x3f\x7c\xe5\x0c\xb5\xb3\x86\xd6\xe8\xbf\x6a\x3e\x78\x09\xd1\xaa\xda\x84\xa2\x9f\xfe\x67\x2d\x75\x75\x4a\xb5\x6b\xb9\xbb\xf5\xd5\xa4\x99\x64\xfc\x28\x92\x9b\x80\xb5\x3d\x47\x1b\xd2\xd4\x47\x63\xdc\xf3\xe4\xe7\x69\xfe\x5b\xb4\x48\x67\xb6\xbd\x02\xa1\x15\x25\x7a\x54\xeb\x15\xad\xa8\xa0\x2c\xed\x53\xc2\xb3\xab\x31\x27\x69\x78\x06\xb3\x86\x73\xac\x91\x91\x65\x06\x9a\xfb\xa7\x15\xaa\x59\x4a\x55\x21\x84\xb9\x5e\x30\x8b\x8c\xd5\x43\x45\x1d\xc6\x92\xe1\x36\xc3\xe2\x95\x5e\x43\xdd\xab\x67\xbb\xda\x79\x9b\x22\xd7\x2e\x1a\xa5\xca\xb5\x24\x62\x06\x3f\x93\x52\x8f\x75\x9d\x50\x40\x8d\x32\xb5\xa6\x08\x79\x5e\x9f\x43\x09\x46\x34\x3a\x47\x75\x41\xaa\x80\x2d\x5f\x2b\x86\xf3\x31\xf9\xc6\xc7\xfd\x3f\x57\xfd\xc6\x91\xf3\xab\x88\x3d\x10\xbd\x38\x63\xd7\x94\x0b\xa3\x9c\xee\x89\xac\xb7\xe4\xe9\x95\x02\x03\x3d\x7d\xe4\xbc\xa9\x03\xd4\xac\x44\x69\xdd\x62\x9a\x2e\xac\x06\x2e\x59\x64\x19\xdf\x7d\x26\x90\xe6\x1f\xa2\x0f\x50\x90\x81\x40\xe1\x30\x80\xe2\xc5\x30\xe4\x81\x5e\xff\xf7\x53\x85\xa7\x49\xcd\xe0\xc5\xe6\x29\xba\xe9\x52\xb4\x58\xf4\xae\xa8\x98\x67\xb3\x5e\xc6\x7a\x3d\x30\x10\xf7\x52\xb9\xaf\x76\x1c\x55\x58\xe3\x82\xbd\xa1\x35\x2e\x38\xd4\x2a\xb2\x83\xa7\x08\x82\xb7\x47\x67\xc7\x27\x1f\x3f\x7d\x04\x08\x47\x2e\x33\xa8\x9c\x73\x4d\xcb\x1b\x30\x53\x67\xa0\x7b\x08\x82\x34\xe1\xd1\x15\x05\x08\x73\x52\x9f\xe7\x26\x19\x87\x12\x1f\xde\x2d\xa8\xd5\x6b\x11\xc0\x32\x46\x01\x96\xb5\x3f\x45\x92\x67\x51\x36\x53\x2b\x1c\x32\xc9\x8e\x72\x1e\x13\xf0\x35\xba\x8e\xf2\x98\xa7\x4b\x11\x00\x0c\x05\x91\x52\x89\x09\xb5\xd1\x54\x46\x1b\xb3\x2c\x56\xec\x0d\xf9\xd9\x92\x32\x88\xb0\xf0\x6f\x78\x2a\x28\x04\xcf\xf5\x67\x2f\x6c\x0e\xff\x8d\x91\xee\xcf\xbf\x3c\x32\xaf\x80\xcc\x1e\x2f\xb2\x9c\x42\x84\x63\x22\xfc\x37\x63\xfe\xf0\xe1\x18\xcd\xe8\x82\x0a\xda\x8b\x1b\x8e\x38\x49\x27\x7c\x6a\x55\xf3\xbd\x18\xa2\xca\x21\x08\x73\x1e\xad\x99\x61\x59\x76\x10\xd5\xd8\x41\x95\x7d\xb9\x9b\x84\x91\x73\x66\xa8\x2c\x30\xa8\x3a\x22\x88\xb0\xfb\x42\x71\x51\x3a\x29\xa6\x44\xa0\x80\x92\x18\xba\x3b\xd4\x90\x06\x99\xdc\x44\xed\x3a\x89\x1a\x8d\x9e\x98\x53\xad\x43\xb4\xd9\x60\x89\x80\xdd\xe6\x3a\x47\x5c\x02\x67\xdf\x3c\xe1\x92\x9f\x37\x47\x5c\xdf\x38\x34\x73\xce\xae\xbe\x75\x7c\x36\x32\xe7\x8c\x7b\x7b\x92\x24\xb3\x09\x38\x3b\x8b\x33\x4e\x1f\x7e\xcd\xcf\xf2\x79\xc4\xe9\xec\xec\x0c\xe8\x03\xf0\xce\x37\x6a\x8f\xd1\x79\x92\xe6\x6c\xfe\xcd\xe1\x99\xfc\xd3\x6c\x8f\x58\xc8\x02\x89\xac\x11\x04\xc6\x00\x29\x07\xb8\xb6\x64\xaa\x8d\x92\xb8\x6f\x7e\xe1\xab\x6c\x46\x03\x0a\x9f\x0e\x51\x08\x96\x05\xa7\x20\x00\x17\x8b\xec\x3c\x5a\x00\x1c\x67\xcb\x3b\x9e\x5e\xcc\x45\x00\xbe\xdc\x46\xcf\x7a\x7b\xc3\xd1\xb3\xde\x6b\xca\xd2\xbc\x77\x5c\xe4\xf3\xcb\x88\xd3\xeb\x1e\xfc\xe7\x22\x4b\x79\x16\x5f\xfa\xbc\x40\xa0\xda\x30\x3c\x71\xcc\x97\xe2\x8c\xe5\x82\x17\xb1\xc8\x38\x6e\x9b\xa1\xe0\x34\x3f\xb6\x14\xf3\x31\xc1\x5d\xb6\x10\x58\x64\xef\xb2\x38\x5a\x50\xcd\x4e\xb1\xe5\xab\xd8\x70\x68\xe0\xe7\xcb\x45\x2a\x20\xc0\x60\x87\x7c\xd9\x3b\x44\x7e\xa2\x66\x66\x7f\xa8\x99\xc5\xe3\x11\x82\xc0\x16\xf6\x29\xba\x00\xdb\x04\x90\xb2\xdc\xf1\xbc\x7e\x06\x05\xa1\xa1\x08\xdc\x53\xf2\x14\x79\x9e\x24\xb8\x14\xaf\xda\x67\x2a\xc3\xfa\xfc\x64\x27\x29\x7e\xeb\xbc\xd6\x9e\x7b\x6d\xa1\x3a\x6d\x31\xf5\x78\xb4\xab\xe3\x6b\x96\x1e\x4f\x8d\xa1\xc7\xe1\x48\x1f\x1d\xaa\x81\xd9\xd2\x08\x73\x0c\x60\x0e\x7e\x25\xd5\x9a\x9f\x24\x0d\x57\x55\xc0\xeb\x17\x92\x6a\xc1\x19\x68\x61\xe0\xb2\x14\xbd\x94\xf5\x58\x59\x46\x12\xa3\x59\x08\x5f\xf8\x89\x94\x2c\x9b\xb2\x45\xf6\x65\x55\x75\x9a\xc3\x6c\x31\x66\xd9\x66\x85\x64\x47\x0f\x72\xcb\x2c\xa2\x3c\x4f\x2f\x58\x9b\x5d\xd4\x67\x9e\x64\x34\x66\xcf\xd7\x4f\x3d\xc7\x6c\x30\xb0\x42\xb5\x39\xe0\x64\xd3\xb1\xfd\x8c\xf7\x94\xd1\xd8\x86\x39\x4f\x9b\xbe\xb5\xcc\xa7\x98\x23\x65\x20\xc6\xa7\x84\x4e\x78\x63\xc8\x23\x2a\xb4\xc5\x3c\xa3\xee\x4e\xb6\x63\x9b\xd1\xe4\x4a\xf5\x18\xda\xc6\x19\x35\xcc\x60\xa4\xe0\xa9\xb5\x4a\x7a\x9e\x8d\xe9\x80\x8c\x30\x1f\x90\x11\x12\xda\xaa\x88\x4f\xc7\xc2\x5f\x66\x4b\xa8\xb7\xe2\xc5\xba\x92\xa4\xad\x08\x02\xa0\x06\xbe\x44\x78\x9e\xb0\x4b\xef\x11\x40\x65\x39\x99\xe2\x42\xe6\x63\xeb\xa9\x91\xcc\x2b\xfb\x81\x63\xf9\x3e\x93\x12\x32\x27\x51\x59\xc6\x12\x42\x99\x77\x61\x41\x78\xc0\x9d\x3d\xa5\x6e\x15\x2e\x48\xe1\x9c\x1a\xe3\xbe\xdd\x76\xa2\x7a\x4c\x64\x21\x75\xea\x4a\xab\x3d\x8a\x89\x4d\x79\x38\x9a\x8e\x29\x01\xbe\x52\x63\x94\x25\xf0\xeb\x5f\xea\x6f\x45\x17\x39\xed\x51\xd2\x1f\xd5\x33\xbb\x24\x43\xbc\xa8\xb7\xb7\xe3\xc5\x0b\x32\x1c\x2f\x1e\x3e\xd4\x45\xcf\x49\x31\x59\x4c\xc7\xba\xbc\x79\x98\xc2\x02\x2f\x50\x60\x4a\x9d\x87\x50\x27\xe0\xe5\x60\x80\x82\xa5\xe7\xd5\xcf\x0f\x1f\xa2\x4a\xe2\xc5\x1c\xc9\x6a\xc6\xcb\x87\x0f\xc7\x4b\x54\xf8\x05\xcb\xe7\x69\x22\xa0\x2c\x00\x8d\xfb\xb9\x69\x56\x31\x19\x4e\xcb\x52\xfe\x2f\x07\x47\xfe\x45\x65\xe9\xe4\x36\xd3\x70\x4d\x0a\xff\x6b\x96\x32\x35\xd4\xb5\x0e\xde\xf3\xc0\x23\xd0\x27\xe4\xda\x6e\x05\x1f\x8e\xd4\x1e\x7c\x60\xd4\xc4\x55\xb3\x56\x22\x87\xd5\xd4\x90\x37\xac\x7f\x41\xab\xdc\x74\xe8\xdb\xbc\xb2\x60\x56\x51\xcd\xba\xa1\x98\xde\xbc\x10\x42\x28\xb2\xd6\x10\xe3\x7a\x3b\x63\x8e\x56\x9c\x97\x23\xf9\xb2\xad\x64\x60\x35\x48\x6e\xa7\x53\x24\xe9\x4b\xcf\x8c\x2c\xbf\xa6\x17\xe6\xd3\x6b\xca\xef\x5a\x6a\x40\xde\xf4\x4d\xb6\x4a\x2d\x3c\xa4\x54\x65\x9b\xd6\x37\xac\x2c\x37\x13\x6b\x36\x1a\x49\x92\xcd\x48\x04\x1b\xbd\x2d\xef\xab\xae\x64\x7d\x22\x85\x02\xe4\x38\xab\x07\x4b\x99\x2a\xb6\x38\x8f\xde\xae\x53\x84\x36\x5a\xd9\x6a\xe3\x84\x4f\xeb\x66\x56\x76\x70\x2a\x7b\xac\xdb\x4c\x5b\xf2\x5d\xaa\x87\xe5\xce\xdc\x96\x48\x46\x28\x70\xbe\x59\xb4\x00\x47\x27\x0a\x51\xa7\x0f\xbe\x14\xce\x37\x94\xbf\x8a\x24\x0c\xad\xd5\x15\xac\x9d\x8e\x3c\xef\xe1\xa8\x4f\x08\x78\x14\xfe\x05\xd4\x99\xea\x66\xd8\x09\x45\x48\x5b\x66\x36\x8d\xaa\xdf\xb8\x6d\x9b\x6f\xed\x8f\xa8\xd7\xbc\x2a\x43\x69\x3c\x87\xf8\x61\xbb\x6b\xd7\xee\xd9\x44\xbd\x29\x96\x3b\xb6\x9c\x46\x3c\x9e\x2b\x0d\xdd\x3c\x52\x47\x13\x92\x2a\x1e\x01\x77\x65\x85\x72\x65\x51\xcf\x83\xd9\x80\x80\x50\xe9\x48\x9d\xd1\xa4\x01\x08\xc1\x80\x22\xcc\x3d\x0f\xfc\x05\xe8\x33\x0d\x95\xf5\x2f\x32\x2b\x77\xb2\xf2\x00\xfc\x05\x0c\x38\xc2\x59\xd3\xb4\x99\x96\x6c\x38\x33\xb6\xa7\xe3\x2e\x25\x0d\x4c\x3b\x64\xb4\x50\x0d\xc5\x94\x00\x80\xb9\xfc\x2f\x23\x8d\xe5\x29\xf8\x0b\x40\x63\x35\x01\x99\xe7\x41\x4e\x98\x1d\xde\x0c\x61\xd6\x3c\x0d\x71\x66\x2c\x10\x52\xf7\xe3\xb0\x66\x2d\xaa\x88\xd4\xf3\x20\x6d\x3e\x4a\xd7\x8a\x48\x11\x72\xd5\x52\x58\x8f\x69\x60\x86\x2a\x04\x20\xa0\x12\x02\xce\x03\x33\x22\x32\x85\x57\x95\xc4\x37\xe6\x24\x9f\x05\x8e\xba\x30\x25\x5c\xe9\x28\x10\xaa\xa7\x4a\x32\xd5\xfa\x41\x4a\x24\x9c\x9a\x99\x0b\xf5\xec\xd8\xc7\x66\xb0\xd5\x27\x3a\x51\x4e\xda\xc0\x3e\xa0\xa0\x49\x06\x38\x55\xb3\x1e\xea\x79\xd3\x0f\x6b\x45\xc8\x24\x39\x95\x03\xfd\x53\x7e\xae\x93\x00\x6e\x70\xb8\xb5\x42\x25\xaa\x25\x42\x1d\x45\xc2\xd4\x76\x0e\xa1\xb1\xe0\x77\x2b\xa7\x07\x33\x1a\x67\x33\xfa\xf9\xe4\xad\xd3\x2d\xc7\x5c\x5d\xef\xa7\x23\xd7\x9a\xf4\xf3\xc9\x5b\xb5\xb7\x0e\xe5\xa6\xcb\x3e\xc0\x07\xc7\xe6\xe3\x1e\x78\x30\x68\x8a\x1a\x3c\x00\xbd\x38\x2b\x16\x33\x65\xf1\x76\x4e\x7b\xba\xbe\x99\xdf\xfb\xa4\x8c\x54\xf3\xde\x22\xbd\xa4\x8b\xbb\x5e\x1c\x15\x39\x9d\xf5\xce\xef\x7a\x11\xeb\xa5\xec\x3a\x5a\xa4\xb3\xde\x92\xf2\x98\x32\xf1\x90\xb2\x38\x9b\xa5\xec\xc2\x7f\x80\x82\xa8\x6a\xd6\x03\x4c\x25\xb7\x23\x14\xe1\x2c\x6c\xea\x0c\xb5\x00\x6a\x12\xd6\xc6\xb1\xee\x7b\xe1\x3c\xe0\x46\x45\x85\xe4\xc8\xd6\x99\x9a\x74\x27\x55\xee\x7f\x1c\x2a\x90\x82\x2d\x6d\x16\xd2\x5d\x8b\x53\x35\xcb\x9c\xb8\xca\x55\x85\x5f\xf4\xec\xcb\x64\xfd\x53\x26\xaa\x39\x95\x49\xf2\x87\x4c\x90\x5d\x94\xcf\x97\xf4\xce\xf3\x62\xa8\xcf\x11\xa9\xb1\x16\xa1\x0e\x0c\xbb\xaa\x95\x8d\xf5\x11\x0c\x23\x13\xbb\xf5\x5e\xe5\x54\x1c\xf3\xec\x6a\xe9\x1c\xe5\x39\xad\x24\x0c\xbb\x87\xce\x06\x74\xe9\xa2\x24\x5c\x56\x1b\x0c\x7e\xf5\x89\x47\xea\x60\x28\x63\x9f\xb2\xa0\x6d\x7b\x2c\x19\x87\x91\xb3\x7d\x22\xac\x01\x7b\xa7\x35\x69\xa8\x05\x75\x20\x3a\x78\x4c\x1a\x76\x7d\xc2\x43\x0e\x53\x29\xe5\x32\xd8\x1f\xaa\xff\x15\x3b\x40\x1a\x41\xa9\xc4\x0a\x6b\x3d\xc8\x3b\x65\x9b\x41\x79\xb0\xce\xa8\x28\xe9\x0f\xdb\x48\x5d\xcd\x82\x86\xc0\x7a\xd9\xb8\x20\xb8\x31\x51\x96\x7b\x58\x8e\xdc\xf1\x91\x90\x4d\xb1\x9e\x24\x5d\x08\xca\xdb\xc6\x38\x76\x48\x25\x03\xae\xd4\xce\x89\x65\x22\x4d\xee\x6c\xc3\x72\xf7\x2c\xd5\xe2\x3e\xb1\x69\xfa\x48\x1d\xd3\x47\x81\xb0\x36\xf3\x17\xda\xbe\x5f\x82\xf9\x66\x67\xc0\xa7\xe3\x46\xb1\xdb\xd9\x96\x76\x2f\xa9\x92\xf1\xd5\x6e\x43\xfe\x8f\xdf\x34\x4d\x3b\xfa\xa6\xe1\xd9\xab\xef\x32\x5e\x4b\x3a\x73\xdc\xdd\xdf\x78\xed\x82\xf4\xa1\xe3\x79\xd4\x90\x8f\xf6\x4a\x2a\xcb\xfe\x4d\x5b\xf7\xb5\x99\xd2\x56\xcc\xa3\x0d\x13\x08\x06\xcd\x07\x66\x41\xa8\xbd\xb1\x63\x7a\xe0\xda\xe6\x9a\x6a\x6b\xcb\x2d\xb5\x60\xe5\x7e\xd5\x30\xd8\xc6\x8e\xaa\x72\x0e\x2f\x3e\x2a\x7a\x6d\x9b\x58\xac\x2a\x84\x2f\xba\x8f\x01\x18\x69\xd7\x82\xe9\xe6\xe1\x83\xc9\xc1\xa2\xeb\xf4\x22\x12\x19\xf7\x8b\x9c\xf2\x97\x17\x94\x09\x6b\xdf\xf6\x70\xa4\xa0\x4c\x2d\x77\x5f\xb2\x19\x97\x4d\xd8\xf3\x81\xc2\x4f\xdd\x6f\x1f\xfb\x43\xb9\xcb\x5a\x7f\xfd\x3e\x3b\x4f\x17\xb4\x77\x1a\x25\x11\x4f\x75\x86\x7e\x2b\xc3\xab\x39\xcf\xae\x68\xd7\x1b\xad\x9b\xcc\x7b\xc7\xf3\x8c\x51\xa0\x8e\xea\xda\xdd\xf3\x3c\x20\xd7\xa3\xb2\xf0\x02\xe9\xfa\x10\xa3\x0a\x4a\xa8\xdc\xd7\xfd\xd9\xde\xed\xa6\xc2\x4f\x5c\x39\xdf\x01\xa4\x8e\x26\xd5\xa1\x64\x92\xf1\x98\x9e\xd0\x84\xd3\x7c\xde\x61\x21\x90\xfa\x17\x54\x7c\xce\x29\x7f\xa5\x29\x40\x9f\xac\x2e\x49\x3d\x65\x71\x78\x1e\xc4\xf8\x8e\x28\xe9\xf4\x4e\xaf\xe5\x8f\xcd\xeb\xbb\xf0\x69\x70\x87\x6f\x88\xf0\xcf\xa3\x9c\x2a\x89\x35\x87\x12\x90\xda\x47\x84\x02\x00\x5a\x56\x11\x0e\xd0\x5a\x55\x92\x2f\xc8\x92\xb1\xc2\x52\x4a\x16\x64\xb6\xab\xf5\x41\x6f\xea\x08\xae\x41\x66\xc4\xcb\x20\x53\x42\xa5\x36\x06\x90\xe2\x90\x2c\x60\x8a\x6f\x10\xc2\x33\x98\x62\x8e\x5d\x79\xf2\xb5\x59\x61\x2d\x7b\xda\x96\x15\xac\x05\x5f\x7b\xf8\xa3\xde\x8e\x1d\x93\x2b\xe8\x2c\x9b\x23\x45\xe5\xf0\x03\x16\x08\x7f\xb0\x7b\x27\x8b\xac\xf1\xb1\xbf\xc6\x1a\xe1\x87\xa6\x0f\x1f\xfc\x48\x95\xb1\x7e\x84\xd8\xc5\xe0\x9a\xf5\x62\x51\x8f\xa2\x80\x9d\x53\xff\x8a\xa7\x1f\x4f\x01\xaa\x10\x14\xa8\x2c\x3f\xc1\x33\x2b\x5b\x51\xeb\xec\x11\xad\xe4\xab\x5b\x88\x8c\xdd\xca\x4b\xb5\x5d\xb7\xef\x3f\x99\x33\x88\x97\x48\xa6\xe3\x23\x88\xc6\x52\x24\xad\x8e\xfd\x0e\x89\x09\x05\x06\xc7\x1f\x8f\x01\x5e\xae\x9d\xf0\x85\x47\x70\xa5\x3b\x1b\xe8\x0c\x2d\xbb\xcd\x4d\xc4\xed\x8c\x12\x25\xef\x9c\x9d\xcf\x25\xbd\x93\x68\x5b\x5b\x4f\x40\x4a\x86\xd6\x14\xe9\x9d\xb3\xf3\x69\x32\x71\x05\xc9\x4d\xa6\x8c\xd0\x87\x7c\x2c\x51\xfa\x4b\xd2\x1f\xe2\x13\x98\xa9\x3d\x91\x96\x15\x32\xc3\x25\xd1\xe3\x80\xdf\x91\xc9\xa5\x2c\x65\xda\x8c\xc3\x7b\x67\x32\x6e\x06\xd7\xad\xf3\xdb\x13\xf9\x8e\xf9\x17\x99\xdd\xb2\x7f\x76\xad\x7e\xde\xc8\xb7\xb2\x31\xf0\xf3\x80\x08\xe4\x79\x8a\x9b\x84\x76\xdd\x47\xb3\xd9\xd1\x35\x65\xc2\x92\x08\x04\xcb\x6c\xa9\xa6\x09\xe0\x53\x84\xb3\xda\x09\x75\x33\xa3\x24\xf6\x78\x1e\xb1\x0b\x0a\xf0\x2b\x84\x02\x49\x1f\x9f\x1b\x8e\xc2\xe9\x55\x76\x4d\xef\x57\x78\x67\xde\xb5\xf2\x55\xd7\xde\x4a\xea\x90\x3f\x3e\x90\x95\x26\xf2\xa0\xa6\xf6\xee\x19\xbe\xc4\x5a\xe4\xfc\xc2\x69\x12\xbc\xc7\xca\x22\xcc\xd9\xf3\x72\x3d\xe7\x19\x91\xfb\x33\x8e\xbf\x42\xb5\x8e\xcc\xc7\x68\xdc\x4d\x67\x19\x06\xc7\x9f\x4f\x7f\x69\x13\x9a\x26\x54\x61\xd5\x0a\xef\xe5\x0e\x4c\xf2\x09\xc9\x4b\x0a\x92\x69\xda\x1f\xa7\x09\xa4\x48\xe2\x38\xbf\xe6\xb3\x70\x75\x49\xef\x94\x75\x50\x24\x68\x50\x54\xfa\x8c\x9a\x23\x1c\xa1\x35\xbe\xe3\xcf\x39\x4d\x08\xd7\x4b\x40\x2b\x67\x1a\xc2\x6b\x9a\xad\x28\x10\xe7\xe4\x5d\xbd\x4d\x8e\x07\x23\x34\xce\x35\xd4\xca\xf4\xeb\x77\x24\xc7\xee\xb2\x50\xfd\x69\x8e\x7e\x2b\x83\xfd\xba\x5b\x50\xa9\x23\x60\x63\x56\xf7\xaf\x18\xce\x93\xa3\xe3\x77\x2f\x5f\x1d\xfd\xb9\x11\x35\xed\xf9\xde\x41\x35\x9f\x41\x8e\xee\x35\xb0\x7a\xb7\x1d\x7b\x1e\x7c\x37\x89\xa7\xc4\x0c\xa7\x33\x94\x75\x5f\xbe\x3d\x9a\x4d\xd5\x7a\x44\x2f\xb2\xe0\x04\x5f\x64\x3f\x45\xf1\xa5\x8b\x62\x4f\xe0\xc3\x91\x7a\xfb\x26\xe3\x37\x11\x9f\xb5\xdf\xc9\x57\xe7\x8b\xcc\xfd\x64\x13\xe2\x34\x78\xe6\xd8\xaf\xb7\x2a\x8e\x6d\xca\xdb\xb2\x84\x6f\xe0\x08\xe1\xb7\xa4\x3f\x6c\x81\x71\x9b\xc1\xf3\xa0\x5c\x7d\xf8\x8d\x6c\x0c\xc2\x0c\x4a\xe8\xad\x2d\xb5\x3b\x58\xe8\xb1\xdf\xde\x2e\x38\x55\xa9\x6a\x9c\x0a\x54\x81\xba\xbc\xda\x92\xee\x83\x5a\xed\x37\x64\x25\x99\xc0\x79\xc4\x2e\x82\x95\xda\xa6\x52\xb9\x11\x0e\x36\x25\x14\xe8\x77\xa8\xca\xfa\x8f\xc0\x60\x29\x99\x22\xd6\xfb\xe2\xfb\x7f\xdb\x52\x9c\xc9\x0d\x46\xbe\x88\xf2\x79\xab\x0d\xcb\x56\xa1\x15\xde\xcc\x91\xb4\x73\x54\xdd\x98\xa3\xad\xc9\xb1\xca\x18\x75\x8e\x2a\x82\x46\xd1\xc5\xd6\x90\x43\x0b\x79\xb6\x56\x27\xde\x5d\x28\x00\x81\xed\x9e\xc4\x18\x6c\x30\x72\x4a\x56\x76\x4f\xdb\x88\xf4\x0c\x76\x55\x87\x06\xe0\x2f\x60\xe0\xca\xa3\xa3\x3f\x8d\xb0\xe1\x7d\xa0\xe5\x9b\x94\xd3\x24\xbb\x05\x48\x62\x9f\x8c\xd0\x4e\xdc\x98\x36\xc0\x30\x0b\xcf\x03\x6d\x9d\x2a\x69\xea\xd3\xdd\x92\xd6\xe8\x93\x10\x52\x84\x40\xcd\x20\x08\x0a\x75\xe0\xbe\x0b\x3c\xe2\x25\xb9\x99\x44\x53\x7c\x47\x96\x7e\x33\xdf\xf8\x96\x2c\xfd\x66\xc6\xc7\xce\x8e\xc3\x4e\xd7\x2d\xfc\x0a\x1b\xa3\xb8\x58\x8d\xcc\x02\x0a\x1c\x2b\x80\x68\xa4\xf7\x51\x1b\xe1\x69\xb3\x2e\xf8\x5a\xf6\xf2\xf5\x06\xc2\x3b\xda\x40\x78\xaf\x1b\xec\xf2\xba\x46\x78\xb2\xdc\x57\x72\xf1\xbe\xd4\xca\x0b\x07\x5f\xd5\x56\x12\x98\x12\xc9\xae\x39\xb9\x83\x54\x29\xd2\xa9\xdc\x61\xa3\xe3\x16\x5f\xcc\xc8\x47\x75\x6e\xd3\xd4\xa2\x2c\x65\x5e\xa9\x13\xa4\x0c\x43\x41\x0a\xf4\x67\x34\x32\xf6\x68\x40\x9d\x1a\x10\x42\xae\x25\x4a\x32\x49\xba\xed\x78\x4d\x3c\xbc\x42\xaa\x63\xa7\x16\x19\x1e\xed\x44\x86\xe9\x3a\x32\x3c\xfd\x3e\x64\xf8\xda\x45\x86\x27\xfe\x22\xca\xc5\x5b\x43\x90\xd7\x90\xa1\x6e\x70\xb8\x9e\x4f\xa0\xdd\xf8\xf0\x95\xc4\x87\x9f\x5b\xf8\x10\x66\x35\x48\x94\x93\xf4\x8e\xdc\xc1\x4b\x34\xbe\xec\x13\xf2\xce\xf3\x8e\xe1\x3b\x5d\xc4\x7b\x35\x3b\x27\x64\x72\x0d\xdf\x23\x07\x3d\x7e\x5e\x47\x88\x6f\x5c\x84\xf8\xb6\x46\x88\x6f\x5c\x84\x78\x2f\xdc\xf7\x49\xc3\xbe\x37\xf7\x47\x72\x9f\x74\x0b\x3e\x58\x20\xf7\xfa\xbe\x40\xee\xbd\x0b\xe4\x36\x67\xa6\xd6\x30\xfc\xa3\xa0\xfc\xee\x94\x2e\x68\x2c\x32\x0e\x81\x5c\xb9\x00\x29\xed\x79\x6d\xec\xe2\x79\x4c\x72\x8b\x97\x42\xf0\xf4\xbc\x10\x14\x02\xc9\xc9\xe4\x56\x1c\x52\xb2\x85\xcd\x21\x4c\x15\xa7\xbb\x83\xb1\xc2\xdf\xa8\xda\xc0\x92\xb5\xa5\x96\x04\x3f\x46\x17\x64\xfe\xbc\x76\x40\x50\x37\x85\x52\x8b\x29\xd3\x6d\x08\x88\x91\x6b\x48\xf5\x02\x8d\x07\x3a\xc6\xc5\x57\x88\xd4\x22\x5d\xbd\x74\x15\x8c\x1d\x3c\x5c\x2d\x32\x51\xc9\xb5\xac\x69\x6d\x9d\x26\x9d\x06\x4a\x90\x75\x52\x0b\x9e\x4c\x42\xc7\x54\x43\x47\x26\x89\x2b\xc5\xa7\x5b\x61\x23\xb5\x40\xe7\x14\xa2\xad\x18\xf1\xcf\x0e\x53\x8d\xaf\xee\x3d\x52\x66\x98\xd4\xd6\x8b\x61\xc9\xd1\x9a\x61\x48\x3b\x87\xa0\x39\x52\x39\x99\x64\x53\xc2\x90\xdb\xe9\x4d\x80\x47\xab\x06\xc0\x7d\xee\x00\x70\x9f\x77\x00\xb8\xcf\xdf\x0b\xe0\x8e\x3a\x01\xdc\x87\xb2\x84\x6f\x25\xb2\xfa\xb0\x05\xc0\x7d\xf0\x3c\x28\x57\x1d\x7e\x7b\x2f\x00\x77\xb4\x1d\xc0\xbd\x5d\x03\x70\x6f\x3b\x00\xdc\xeb\x96\x56\xa1\xe5\x36\xa0\xb4\x1d\x57\x29\x83\xfa\x47\x74\xab\x68\xa2\xa5\x1b\x79\xd5\x0d\x21\xcc\x00\x08\xa5\xa3\xe9\x12\xf7\xfa\x64\x2c\x15\x69\xb4\x38\x62\x82\xa7\x34\x6f\x23\x80\x09\x78\x04\xa6\x0a\x05\xd4\xf9\xd4\x12\x68\x23\x81\xa1\xc2\x00\xcc\xd1\x2f\xe5\xae\xfa\xe9\x69\x10\xe3\xa4\x2d\xa4\xf5\x31\x2c\xbc\x95\x42\xfa\xd6\x0a\xe9\x5b\x9f\xea\x36\x58\xbe\x96\x6c\x08\xeb\xdb\x46\x9c\xdc\x6e\xaa\x63\x16\xdf\xa7\x21\xca\x35\x67\x9d\x93\x53\x18\xe1\x21\x4e\x9b\x03\x53\xa5\x2d\xbb\x8a\x96\x9d\xca\x6b\x67\x15\x76\x1d\x49\x2e\x20\x0a\x94\x4e\xa3\x2c\x17\x10\x49\x69\x84\x2f\xc8\x75\x4b\x71\x6b\x49\xe6\x14\xde\xea\xe5\x34\x10\x78\x88\xd7\xbb\x2f\xdb\xc1\x9b\x41\x51\xf6\x36\x9d\x4b\x9c\x1b\x59\x4d\xd7\xdc\xc0\xc2\xe5\x36\x59\xcd\xb1\xaa\x36\x60\x15\x0a\x96\xb0\x76\x81\xba\xad\x45\xcb\xdd\x6e\xd1\x72\x37\x99\x4f\x4d\x11\x73\x6c\xda\x17\xdc\xb9\xf2\xe6\x62\x1b\xb3\xe7\x44\x1f\xec\x2e\xa0\x9a\xf9\x9a\x7b\x6d\xef\x9a\xe2\x98\x74\x3b\xeb\xb2\x63\x38\xc2\xd4\x21\x21\xc3\x8e\xd1\xd8\x9a\x45\xbc\x60\x21\x55\xc6\x38\x31\x85\x0c\xdb\xd4\x87\x0c\x73\x14\xd0\xfa\x50\x65\xb9\x95\x55\xd7\x63\x56\x77\xb8\x66\x62\xdb\x79\xf6\x77\xf7\xb6\x66\x95\xeb\x93\xe9\x79\xb0\x21\x05\xd3\xe5\x29\xe1\x6e\x83\x37\xd9\xac\x3a\xef\x31\x6c\xf6\xbc\x83\xcd\x9e\xef\x60\xb3\xe7\x8a\xcd\xc6\x11\xfb\x39\xeb\xe0\x76\x35\xe1\xd6\x18\xe1\x05\x19\x7a\x1e\x7b\xbe\x4e\xc5\x5d\x9c\xba\xdb\x6f\xb3\x2f\x99\x64\x8b\x55\x77\x72\x5b\x6b\x86\xb1\xc9\x6e\x1b\x66\x7a\x5b\x39\xe1\x52\xee\x13\x14\xc1\x39\x86\x33\xf6\x9a\x8d\xed\x6e\xcb\x28\x18\x3a\xce\x15\x08\xbb\xb6\x40\x8e\x5d\x27\x11\x58\xf8\x67\x67\xea\xdd\xd9\x19\x61\xf7\x89\x50\xb5\xdd\x86\xf6\x89\x6b\x16\x39\x6f\x22\xfc\xf8\xcb\x88\xe7\x94\xa4\x4e\x8a\x71\x57\xed\xb6\x94\x8d\xa0\x36\x8c\x93\x5b\x63\xe7\x1b\x91\x5d\x52\x96\x7f\xca\x6c\x0c\x23\x12\x75\xbc\x3c\xa1\x17\x47\xb7\x4b\xb2\x30\x28\x80\xd1\x9b\x9e\x4e\x82\x13\x00\xbf\x7c\xf9\xf2\xc5\x47\x00\x03\x38\xf9\xf2\xe5\x91\x3f\x45\x21\x0c\x03\x18\x06\x5f\xbe\x04\xf0\xcb\x97\x9b\x01\x52\xbf\x21\x54\x7f\xbe\x7c\xf1\xcb\xc9\xdf\xe5\x5f\x88\xa6\x68\x80\xbe\x7c\x41\x28\x2c\x77\xbe\x86\x93\xc1\x8f\xe1\x14\x85\x25\xfc\xf2\xe5\x47\x84\xc0\xd4\xd8\x79\x95\x00\x61\x70\x01\x1c\xb1\xb2\x6e\xf9\x87\xb9\xf6\x44\x1c\xe2\x82\x0c\x71\x44\x00\xc0\x89\xb6\xca\x9b\xd1\x45\x7a\x95\x0a\xca\xb5\x51\x8b\x3e\x25\x86\xb4\x71\x22\x44\x63\x3d\x07\x4b\x42\xb5\xd7\x20\x9d\x8c\xa6\x78\x4e\x8c\x1b\x92\x04\x93\xd1\x80\x58\x7d\x43\x81\xe7\x72\x97\x37\x1f\x2c\x2d\xe3\x5c\xa0\x68\x40\x16\x93\xd1\xb4\xd9\x0b\x5e\x13\x31\x29\xa6\x78\x46\xe8\x64\x4f\x6e\x86\xe9\x64\x7f\x8a\xaf\x08\x9d\x3c\x9e\xe2\x0b\x42\x27\x4f\xa6\xf8\x9c\xd0\xc9\xd3\x29\xbe\x25\x74\x72\x30\x1d\x47\x72\xbb\xa3\x59\x53\x84\x54\xf3\xb5\x44\xff\x48\x74\x7b\x67\x9e\xa7\x7f\x5c\x7b\xde\x75\x9f\x90\x19\xbe\x21\x60\x20\xa5\xd1\x79\x59\x82\x1f\xd5\x0f\x7c\x66\x4c\x73\x9c\xa4\xaf\xaa\x05\x65\x99\xe0\x63\x72\x55\x96\x17\x63\x53\xc9\x4a\xd9\x15\xdc\x95\x65\x3a\x18\xe0\x25\xa7\x49\x7a\x1b\xcc\xca\x12\x00\x5c\x0f\x57\xf0\x15\x67\x4b\x39\xd6\xd1\x22\x38\x93\x8c\x8f\x46\x22\xb8\xc1\xcb\x88\x4b\x6c\x10\x7c\xc4\x51\x2e\x28\x4f\xf3\xcb\xa0\xdf\xbf\xc5\xcb\x48\x08\xca\x59\x70\x1c\xe6\xf0\x18\x05\xb7\x21\xf0\x7f\x04\x01\x98\xfc\x1d\x0c\x62\xf8\x15\x0d\xc0\x74\x10\x02\xc9\x45\x0d\x89\x16\xcf\x45\x63\xf4\xa8\x87\x57\x0b\xeb\x02\x21\x1c\x79\x5e\x33\x18\xbc\x91\xfa\x85\xc3\x15\xb4\x76\xe1\xf3\x89\xdc\xa2\xd5\x7a\x98\x47\x93\x2f\x8f\xc2\xbf\x4c\x1f\x5d\xe0\x0e\x71\x0e\xfe\x5f\x30\xd0\xaa\xac\x57\xd9\x8c\x2a\x75\x56\x03\x17\x46\x4f\xe5\xc3\xe7\xe5\xd2\x1a\x6f\x55\xee\x59\x4c\xb4\x61\x67\xda\x9c\x8f\x5b\x5b\x2d\x13\x21\xa8\xb6\x3b\xcd\x06\x03\xd4\x11\xee\x6a\x92\x4d\xe5\x5e\x4a\x41\xe7\x66\x6d\x81\xbf\xc3\x30\x00\x03\xf9\xd6\x37\x43\x39\x00\xe8\x07\x80\x97\x72\xeb\x5c\xc3\x4b\xc7\xee\x21\x6b\x9a\x93\x4a\x6a\x8f\x08\x53\x67\x74\x31\x81\x99\x8d\x1e\x47\x85\xb8\x0b\x8b\xa0\x1e\xaa\xda\x23\x09\xe7\x64\x38\xce\x9b\xb6\xe6\xd6\xea\x37\x21\x62\x92\x4f\x95\xad\xa0\x01\x3c\xfd\xba\xe9\x89\x59\x26\x78\x41\xa2\x49\xa2\xdd\x5b\x1b\xfb\xc6\x85\x12\xd5\x89\x6f\x69\x06\xad\x12\xdf\xd0\x8a\xe7\xc1\x74\x40\x12\x5f\xd3\x19\x1a\xc7\x19\x13\x29\x2b\x68\xd5\x04\xfd\x69\x1c\x67\x1e\x1c\xdd\x2e\x69\x2c\xe8\xac\x07\x1e\x0c\x74\x2d\x83\x07\xa0\x27\x32\x6d\xc4\xa3\xce\xd7\x1f\x28\xa3\x52\x0e\x17\x48\x7b\x49\x25\xbe\x26\x4f\xf4\x7d\x05\xb2\x4c\xf4\xf4\x87\xb8\x77\x5e\xc8\xdf\x31\x4d\xaf\xe9\xac\xf7\xbf\x1f\x0c\xfe\x7a\xfa\xf1\x83\xaf\x87\x20\x4d\xee\xe0\x02\x0d\xc0\xff\x06\x6a\x63\x29\xc5\xd8\xa2\xb6\xbb\x6d\xf7\xd9\xf6\x6c\xfc\xfd\x0d\x39\xa7\x3d\x7a\xb5\x14\x77\x0f\x50\x65\xe7\x75\x4e\x86\xe3\xf9\x73\x5b\xd7\x78\x2e\x27\x29\x4d\xe0\x92\xc4\x70\x31\x99\x4f\x11\xee\xd3\x49\x3e\xf5\x05\xcd\x05\x5c\xa2\x6f\x74\x3e\x5a\x2c\x36\xea\x55\xee\x6e\x3a\xd5\x12\xdd\x03\xf0\xcd\xb1\x58\xda\xb1\x18\x10\x35\x18\xf3\xd0\x4e\x6d\x90\x34\xdc\x16\x0d\x96\x95\xda\xf0\xea\x26\x27\xbe\x65\x17\x61\xb3\x72\x17\xee\xca\xfd\xd7\xad\xdb\x20\x86\x8b\xef\x1b\x9c\x3f\x32\x30\xe0\xc1\x60\x39\x78\x00\x1e\xa8\x81\xb0\x23\x60\x3b\xdd\x93\x69\x96\xd7\xa5\x8e\x8d\x45\xdc\xb2\x8d\xa9\x7b\x0f\x27\xfe\xe0\xc7\x90\xfc\xbd\x1f\xfc\xb0\xaa\x20\x9a\x7c\x99\x96\x5f\x1e\x7d\xf9\x32\x45\x8f\x2e\x30\xf8\xf2\xe5\x87\x11\x70\xb8\x51\xbe\xad\x0c\xd2\x0f\x7e\xf8\xf2\x48\x8a\xd3\xae\xcf\x92\x35\xeb\xb0\x4b\x7a\x97\x13\x86\xbb\x4d\x66\x7b\xda\xce\xdd\x3a\xe3\x87\x00\x04\x20\x05\x6b\x96\xb2\x6a\xe7\x0a\x19\x2a\x4b\x48\x25\xfb\xa1\x98\x91\xc9\x14\xd5\x26\xe5\x99\x94\xb3\x54\x73\x23\x13\xf7\x20\x25\xca\x7e\x8a\xfa\x94\xcd\x70\xa1\x19\xd7\x70\x1c\x35\xac\x28\xb2\xac\x28\x27\x62\x12\xb5\x58\x51\xc3\x45\x73\x54\x0c\x48\x0c\x73\x47\xfd\xba\x90\xcf\x96\xc5\xe0\x39\x01\x8a\xa1\xe6\x0e\x37\x05\x63\x63\x51\x95\x23\x9c\x1b\x8e\xe1\x79\x70\x3e\x30\x79\x17\x83\xf9\x00\xa0\x1f\x01\xc2\xc5\x80\xcc\x49\x5e\x2f\xeb\x30\xb7\x9c\x2c\x5c\x0c\x00\x04\x2a\x5f\x08\x02\xfb\x99\x4d\x92\x69\xcd\x13\xd0\x5a\xc9\x6b\x12\x43\xba\x06\x42\x10\x9e\x91\xc2\xe0\x89\x87\xd7\x96\x97\x10\x42\xae\xeb\x60\xad\x65\x09\x0b\x02\x67\x61\xd1\xd8\xf3\xd6\x19\x83\x02\x0d\x74\xdd\xd7\xf2\x2f\xf9\x41\xd6\xac\x5a\x9d\x86\xe0\x07\x10\x64\x9e\x37\x53\x13\x06\x43\xa2\xf2\x94\x3f\x20\x80\x13\xd8\x92\x37\x60\x50\xe0\x25\xa4\x08\xb5\xce\x4f\xe6\xeb\xc1\x20\x37\x67\x17\x9b\x29\xc5\xc2\x35\xce\xd4\xe5\x86\x5d\xba\x2c\xe1\xe7\x59\xc1\x63\xaa\xbd\x6b\xe1\xa3\x2f\x10\x86\xfd\x2f\x21\x7a\x74\xa1\x75\xe9\xa8\xf6\x2d\x51\x76\x66\xd4\x0d\x27\xcb\x5c\xb8\xc2\x2d\x52\x51\xca\xee\x06\xa8\xa8\xc7\x1a\xab\xf4\x47\x16\xac\xf4\x47\x35\x5a\xe9\x8f\x1c\xb8\x32\xaa\xd1\x8a\x76\xd9\xad\xa5\xab\x8e\xfb\xab\xfe\x0f\xe4\x36\x63\x23\x44\x66\xd3\xd2\xc9\xb4\x4b\xde\x1b\xd4\x32\x87\x52\x90\xab\x4f\x4c\xdf\x9d\x3a\xdc\x59\x50\x93\xc8\x1b\x90\x2b\xc9\xa6\x99\x15\x53\xeb\xb6\x00\x9c\x0b\x85\xf2\x29\xd2\x81\x9e\x6d\xc0\xe7\xfb\x47\x2d\xfe\x9f\xe0\x2f\xf4\x07\xb6\x5b\x7f\x22\x88\xf3\xbf\x2b\x30\xf3\x9f\xd9\x34\x3e\xdb\xdf\xe5\xc0\x67\x63\x85\x37\x0e\x4d\x8d\x37\xb9\x09\xcd\x4b\x4d\x2c\xde\x3a\xee\x6e\x5d\x86\x13\xce\x44\x4f\x90\x22\xb0\xb5\x70\xbc\x4d\x6e\xd7\xf1\xa4\xce\x8f\xb9\xfd\x62\xbf\xeb\x0b\x09\x63\x3b\xbe\x51\x9e\xac\x9b\x71\x17\xd6\x6c\x4a\x99\x4b\x09\xdf\x8a\x3b\xbe\xf7\x0c\x79\xde\x1f\x88\x3f\x6e\x1d\xa4\x67\xe9\xb5\xdc\x84\x7e\x77\x28\xf2\x35\x6f\x7f\xeb\x25\x5b\x9b\x7d\xe2\x94\x70\x98\x29\x7f\xca\x6c\xdd\x04\x74\xb7\xff\x7a\xb8\x96\x1f\x0a\x14\xac\xbe\x19\x7e\xd5\xb6\xe5\xa9\x8e\xb4\x08\xf7\x0f\x6c\x28\xec\xc7\xed\x50\xd8\x07\xfb\x08\xc7\xca\xcd\x7c\xa8\x43\x2c\x1e\x98\xa0\xaa\xa3\x91\x0e\xb1\xa8\x5d\x49\x25\x07\x8e\x44\xc6\x01\xc2\x0b\xd2\x87\x93\xa9\x5a\x19\x9e\x07\x18\xbd\x15\x20\x65\x26\x01\x22\x29\x94\x3b\xe6\x72\x9e\xe6\xd5\x56\x02\xc6\xd7\x78\x86\xef\xf0\x15\x5a\xc5\x90\x62\x86\xaf\x8d\xb5\x2d\x3e\xc7\xb7\xf8\xe3\x46\xe0\xdb\x85\xe7\x29\xe7\xcb\x63\x4b\xe4\xc7\x13\x31\xb5\x74\x2e\x34\x9d\x6b\x17\xe8\x40\xfd\x54\x4e\x5d\x39\xd8\x20\xcc\x26\x56\x19\xbd\xe9\x51\x68\x63\xa6\x6d\xa7\xc8\xb5\x7c\xf8\x86\xb0\x01\xe8\xbd\xb5\x43\x23\x77\xe6\xa6\x2e\xb9\x75\xff\x4a\xfa\x23\x7c\xdc\x0a\x3b\x7d\x44\x8e\x27\xcb\x69\x59\x1e\x4f\xc0\xff\xfa\x5f\xf5\x90\x4e\xcb\x72\xe6\x79\xc7\x93\xd9\x14\x9f\x92\xa3\xb2\xfc\x08\x67\x08\xbf\x22\xb3\xf0\x2c\xfc\x08\x81\xd1\xbe\x01\x14\x9c\x06\x46\x4b\xfd\x92\x00\xb5\x2b\x05\xca\x88\xfe\xd8\x2a\xe8\xca\xf2\x48\x9d\x1a\x7b\x1e\xbc\x25\x09\x7c\x69\x56\x1a\xbd\xe9\x09\x84\x50\x9f\x90\x75\xf6\xec\x79\xb7\xbe\x9c\x3f\xcf\x83\x39\xbc\xc5\x37\xfa\x96\x81\xb2\xec\x88\x80\x7c\xab\xda\x5d\xc0\x5b\xbc\xc4\x73\x84\xf0\x99\xe7\x1d\x79\x9e\xed\x6e\x9f\x90\x23\xdf\xb8\xaf\x7c\x25\xfd\x21\x3e\xed\xa0\x81\xa3\x26\x7e\x1c\xaa\x94\x13\x51\xff\xaa\x2c\xe5\x6c\xf6\xbf\xca\xee\xeb\x0a\x8e\xf1\x12\x9f\x22\x1c\x4d\xd8\x94\x9c\xe2\x68\x72\x33\x25\x73\x3c\x43\x69\x02\x2f\x88\x76\xb2\xcd\x83\xb3\xf0\x34\xf8\x08\x6d\xe5\x26\x08\xd5\x9d\x4e\x34\xae\xef\x56\xa5\xfb\xaa\xc2\x57\x0a\x79\x9c\x4b\x8a\xb9\x40\xea\xcf\x71\x59\xa6\xf0\x18\x9f\xe3\x8b\xc9\xf9\x54\x83\xcb\x5e\x06\x33\xff\x78\x90\xf9\x6f\x7e\x84\x8b\xb2\xfc\x2a\xc5\xed\x45\x13\x23\x6e\x27\xdb\x51\x8b\x69\x07\x3b\x30\x4b\xf0\xb1\x71\xcd\xde\x1b\xee\x2b\xdb\x8f\xae\x60\x0e\x5b\xa3\x84\x68\xe9\x14\x11\xe3\x68\x3a\xc4\x39\x99\x68\xf1\x4b\x65\x8f\x22\x44\xfb\xa4\x90\xdc\x25\x52\x61\xf5\x8d\xa5\x1b\xd5\x82\x6b\x6c\x0f\x96\x5f\xc4\x63\xa4\xb2\x10\x36\x89\x07\x83\xa9\x94\xc3\xff\x5f\x0a\x73\x4c\x51\x59\xd6\xdf\xd4\xdd\xce\xb7\xc4\xe1\x58\x55\xf5\xce\x6c\x37\xf3\xaa\xa3\x82\x18\x78\x7b\x88\x1f\x8e\x76\x79\x8c\xdb\xa1\x3a\x34\x43\xb5\x1e\xea\xa2\xd8\x20\xe1\xcd\xd0\x09\x17\x4a\xdf\x6c\x9d\xee\x3b\x83\x28\x08\x3d\x8c\xca\xb5\x1d\x85\x62\x92\x4e\x83\x0e\x92\x17\xae\x06\x58\xb3\x9c\x26\xe4\xbd\xfb\x2e\x6c\x3d\x35\x6d\x0b\x5a\x9f\xe8\xe6\x85\x85\x46\xa3\x5d\xfe\xe1\xbb\xee\x62\xb8\x5f\x20\x09\xeb\x4b\x0c\xf4\x74\x03\x0c\xea\xc6\x00\x34\xde\x5a\xc7\x87\xe8\x8a\xfe\xc1\x70\x13\x87\xfb\x75\xe4\x79\x1d\x77\xc0\x38\xe0\x1f\x0c\xdd\x9b\x16\xcc\x15\x29\x79\x77\xf5\xaf\xa9\x0e\xfa\x91\x71\xe7\x92\x94\x7c\xed\xf0\x25\x4d\xa0\x20\xa9\xbe\x10\xa5\x30\x17\xa2\xc4\xee\x5d\x28\xb9\x86\xf5\xda\xf3\x81\xea\x9b\x50\xb4\x42\xaf\x8e\x48\x03\xfb\xdc\x4f\x9a\xab\x3f\xb0\x98\xb0\x69\x57\xe7\x5a\x21\xf4\xf7\x0e\xd0\xe6\xd9\xc3\xfd\xff\xed\x94\xd2\xcc\x3f\x3b\xa3\xf9\xfb\x6c\x56\x2c\x94\xf3\x90\x1e\xd5\x14\x52\xf8\x04\xc9\x71\x95\xbf\x46\x87\x23\xd4\xd6\x88\xb7\x37\xef\x4d\x09\xa1\x08\x56\x33\x9a\x44\xc5\x42\x04\xa2\xaa\x98\x6f\x1e\x08\xb7\xbf\x0c\x92\xa8\x03\x00\x67\xf6\x85\x73\xcd\x40\xfd\xd9\x37\x10\x46\x77\xdb\x55\x04\xe7\x8c\xc0\x02\x72\x84\x0b\x15\xbf\x59\x99\x53\x14\xaa\x27\x7b\x08\x8d\xf5\xaf\x7d\xb7\x4f\xc5\xbd\xfb\xb4\xae\xaa\x95\x70\x00\xb6\x96\x19\xeb\x56\x02\x81\x57\x11\x63\x99\x89\xd4\x13\xf5\xe2\x45\x94\xe7\xbd\x28\xef\x45\xb5\x98\x77\x75\x28\x71\x77\xcc\xf2\x13\x9a\x50\x4e\x59\x6c\xcb\x54\x17\x61\xcc\xa3\x9c\x3d\x10\xbd\x73\x4a\x59\xcf\x9c\xa8\xa7\x39\x9d\xf5\x1e\xf6\xf2\x62\x49\x39\x44\xad\x1c\xb2\x7e\x3a\xab\x4d\x12\xfb\x8e\x67\x76\xdf\x8d\x3d\xe9\x5e\xde\x51\x27\x87\x22\x60\x2d\xfd\x90\x69\x64\x67\x66\x7b\x94\x40\x58\xf7\x80\x9c\xca\xd6\xf5\xe8\xed\x92\xd3\x3c\x57\xee\x7d\x45\x2e\x7a\x34\x15\x73\xca\x7b\xe7\x54\x05\xc4\xe9\x65\xdc\x19\x21\xac\x34\x98\x60\x60\x6b\x90\xd2\x6a\xeb\xa9\x9a\xe7\x39\x07\x6b\x2a\x7e\x88\x65\x90\x81\x89\x95\x21\xb0\x1b\xba\x7d\xe4\x84\x68\x1f\xae\x85\x70\x1f\xaa\x88\x8a\x9e\x67\xdd\xce\xf3\x16\x8b\x0f\x3b\x53\xf5\xf6\xbe\x75\x6a\xd7\x56\x92\xd9\x83\xcf\xc6\x81\x31\x6b\x9f\x4b\x1a\xa5\x84\x40\x15\xce\x92\xb6\xc1\x55\xa7\x67\x5e\xa3\x74\x63\x72\x1a\xf4\x31\x6d\xe7\x1e\x42\x54\x38\x77\x5f\xa8\x3d\x95\x20\x14\x77\x39\xd9\x39\xc5\x2a\xf3\x72\xed\x59\xd7\x2c\xee\x2e\x9c\x50\xe0\x25\x01\x67\x67\x7a\x2e\x1e\x72\x1a\xc5\xe2\x61\xac\x17\xfd\x43\x30\x80\x43\x9c\xda\xcf\x11\x44\x03\x70\x76\x06\xf0\xa2\x3b\x76\x1d\x35\xe6\x91\x0c\xf3\x71\xa4\xa1\x2f\x75\x35\x7f\x1b\x4e\x85\x29\xd1\x07\x26\xea\x0e\x87\xe1\xb8\x78\x9e\x8d\x8b\xc1\x00\xa5\x93\xc2\x75\x28\x2c\xea\x80\x4d\x8c\x70\x12\x1b\x4c\xbd\xeb\x52\x85\x54\xf2\x11\xee\xd3\xab\x54\x08\xca\x49\x02\xb9\x09\x03\x67\x6e\xa4\x8a\x21\x97\xec\xbf\x16\x06\x14\x0b\x84\xa9\xa3\x8a\xb8\xa0\x42\x45\xb0\x32\xcc\x6f\xc3\x89\xcd\x7a\xaa\x29\x3b\x9b\xc9\x72\xaa\x6f\x51\x33\xf5\x61\x51\xb5\x0a\x6b\x05\x55\x3e\xd1\xba\x62\x29\xce\x36\x42\x87\x39\x71\x94\x55\x43\x95\x37\x9a\x6e\xb2\xd5\x9b\xad\xe5\x50\x1e\xfa\xfa\x97\x8d\x1e\x3c\x86\x30\x25\x14\xe9\x08\x93\x1c\x85\xc3\x3e\x21\x69\x59\x8e\x1e\xa5\x84\x90\xd1\xa3\x22\x48\xb5\xeb\x7a\xd1\x27\xa4\x40\x61\x46\x86\x01\xcc\x3a\x3d\x63\x59\xa8\xa9\x2d\x18\x0d\x0f\xf6\x0f\x1e\x8f\x0e\xf7\xf6\xb1\x2c\x0d\x66\x25\x19\x22\x13\xf6\xd9\xf4\x59\x2e\x28\x58\x37\xc5\x58\x94\xa4\xb8\x68\x8f\xc4\xd6\x00\xd0\x5d\x37\x4d\x60\x5a\x41\xee\xc6\x9b\x5c\xe8\x77\x66\x4e\x24\x77\xca\x09\x84\xd4\x4e\x41\x2d\x9f\x7c\xcd\x23\xfd\x34\x3f\xa1\xff\x28\x52\x4e\x67\x92\x0c\xf5\xe9\x89\xbb\x52\x36\xe8\x56\xfc\xbb\xe8\x56\x34\x74\xcb\x5c\xba\x65\xdd\x74\x6b\xe2\xf8\x6b\xce\xc7\x25\x31\xfe\x26\x7f\x42\x54\x61\x5e\x07\xf0\x5e\x5b\xcb\x6a\x62\xe0\xb0\xe4\x7e\x76\x9e\x53\x7e\x4d\x67\x3f\xa5\x22\x47\x1e\x43\x9e\xc7\x9d\x30\xf4\x1d\x85\xa2\x4a\x2d\x08\xd1\x5a\x10\x0c\xfd\x01\x1a\xb6\x46\xfa\x6e\x13\xc6\x6a\x6e\xdd\x94\xc6\x3a\xac\x0e\x80\x42\x58\xd8\x10\x59\xc0\xb6\xac\x9f\xad\x81\xd4\x0d\xbb\x9a\x2c\xa7\x86\x2a\x9b\x04\x5f\xb6\x4c\xb5\xc0\x8c\x9b\xa6\x04\xe1\x2e\xa5\xfb\x36\x57\xd4\xcd\x15\x6e\x73\x77\x2d\xf7\x6d\x31\xd4\x77\xb6\x38\x49\xd6\x9a\x5c\xad\x33\x27\x35\x75\xdb\xd6\x51\x53\x54\xb8\x5e\xf4\x05\x15\x10\xad\x37\x78\xdb\xaa\x84\xad\x41\xaa\x43\x73\xb6\xc3\xd0\x08\xb9\x27\x1a\x4e\x03\x81\xdc\x48\xfe\x9a\x69\xe9\x91\xde\x5c\xc8\xa6\xb1\x73\xdb\x32\xbb\x94\x8b\x6d\x4b\x19\x17\x08\xaf\x6c\x04\xdc\x60\x81\x6d\x7c\xd2\x60\x5e\x55\x7f\x00\x8d\xb6\xe4\xa5\x66\xac\xe0\xec\x4c\x87\x7c\x3b\x2b\x58\xfa\x8f\x82\x9e\xa5\xb3\xb3\x33\xd0\xb5\x61\x6d\x24\xec\x84\x4e\x09\x64\x2a\x2a\xf6\x10\x0d\x46\x55\x85\x9c\xa0\xf7\x14\xee\x3f\xfe\xa6\xaa\xb9\x31\xf3\x79\xec\xee\xe6\xf9\x77\x68\xa8\xbb\x62\xd1\xd6\xc8\xa1\xd2\xfc\xcb\x79\x55\x8d\x33\x5f\xcc\x23\x71\xa2\xb2\xe4\x84\xe3\xd6\xf3\x9b\x68\x91\x53\xc2\x95\xc6\xa1\xf5\xe2\x13\x2f\x54\xfa\x70\x2d\xfd\x83\x5c\x0f\x1c\xea\xa0\xc7\xed\x2f\xe6\x69\xd7\xa8\x29\xe5\x5e\x3b\xe7\x4b\xc3\x31\xbb\x94\x02\xc2\x9d\xdf\x6c\x7b\x60\xbd\x16\x51\x76\xed\x4e\xc1\xc4\x84\x10\x55\x39\xa6\x60\x53\xc1\x55\xab\x29\xea\x80\x4e\xf7\x26\x23\xe1\x44\xe2\x5c\xbf\xac\xe6\xf0\xc0\x5c\x50\xd5\xba\xac\xa6\x75\x25\xa9\x15\xb8\x9a\x02\xe5\xc0\x85\xcd\xcf\xa0\x33\xab\xb6\x58\xef\xbc\xe0\xd4\x0d\x62\xbc\x72\xdc\xa8\xf2\xff\xdb\x61\xac\x36\x46\xc9\xea\x78\xc5\xf5\xce\xb4\x0b\xd5\x66\xb8\xd8\x81\x6a\xd7\xf1\xdc\xb6\xf5\x6f\x7d\x8f\x26\x62\x4a\x60\xac\x82\x4d\xaa\xa5\x6e\x81\x70\xf2\x0d\x20\xec\x5e\x02\xb6\x23\x98\x33\xaa\xa1\x6a\x6e\x6f\xfc\xb2\x50\x95\xb5\xee\x1c\xa1\xf6\xce\x11\x75\xb3\xc0\xfa\x9d\x23\xfc\x3b\x71\x6b\xb1\x89\x5b\xf9\xbf\x10\xad\x62\xbe\x89\x57\x33\x9b\x47\xc1\x54\x6e\x60\x6a\xf6\x4d\x98\x4a\x25\x4c\xa5\x5b\x61\xaa\x8a\x39\xb6\x0e\x53\xe9\x37\x60\x2a\x75\x61\x2a\xff\x93\xe0\x34\xd9\x01\x4e\x25\x2a\xf4\xa3\xed\xb0\x74\xf9\x0d\x58\xda\xcc\x1a\xdb\x4d\x45\x2d\xe0\x28\x5a\xc0\x51\x74\x00\x47\xc5\xd2\x2c\x70\x14\x6b\xc0\x91\x22\x6d\xed\xd1\x06\x8e\x62\x0d\x38\x8a\x35\xf2\x64\x3b\xc9\xf3\xbf\x1b\x45\xf2\xef\xc0\x8e\xc5\x3a\x12\x2b\xfe\x9b\xb0\x23\xff\x3e\xc4\xd8\xd9\xce\x0e\xc4\xc8\xef\x8d\x13\x8b\x35\x9c\x58\x38\x38\x71\xfb\xb2\xf8\x77\xa3\xc3\xe5\x3a\x3a\xcc\x36\xd7\x12\xce\x5c\x5c\x98\x34\xb8\x70\x59\x55\xfa\x5a\xc1\xef\xc7\x64\xeb\xc7\xff\xff\x67\x8d\xc1\xb7\xdf\x68\xf8\xaf\xd5\x66\xee\xb2\x26\x18\x3a\xda\xd7\x6c\xdd\xea\x75\x38\xa6\xcf\xed\x89\xd1\x98\x5a\xcb\x8f\x8c\x48\x5c\x3c\xce\xfc\x46\x6b\x47\xdc\x87\xb2\xec\x8f\x70\xe6\xbb\x9a\x3b\xd2\x1f\xe2\xe6\x16\xf1\xcc\xf3\x60\xe6\x5b\x2d\x1f\xd1\x37\x9a\x0b\xac\xa3\x19\x64\xa8\xaa\xb6\xdb\x37\x34\x6e\x8b\x19\x6c\x5d\xe3\x8b\x30\x55\x69\xf8\x9b\x77\x92\xcb\x5e\x77\x45\x12\x96\xe9\x7b\xee\xd5\x84\xc8\xd7\x24\xb1\xc3\xdc\xa2\x66\x7e\x6b\x46\x04\x5b\x6d\x73\xea\xf3\xad\x03\x34\xe6\x90\xfb\xa7\x03\xee\xbf\xf9\x51\x9b\x2b\x60\xa0\xeb\x03\x78\xb5\x76\x23\xbc\x09\x5f\xbc\x2b\xf8\xf4\x9a\xfc\xee\xb8\xf2\x79\x33\x66\xbd\x7b\x45\x6c\x4d\x2f\x3b\xee\x88\x6d\x53\xce\x13\x6b\xdb\xb0\x25\xae\x78\x63\x7b\xb8\xa6\xdb\xe6\x90\xa1\x6d\x7a\xed\x0c\x0a\x14\xb0\x9d\xf5\x9a\x3b\x62\xf7\x46\xa3\xee\xc3\x10\xd8\x1d\x0a\x2e\xf3\x3c\x90\xab\x23\xb4\x56\xb0\xb7\xae\x6d\x89\xbd\x89\xb8\xcb\x39\x45\xb4\x2f\x42\x70\x4a\x6f\x9d\xfd\x11\xe5\x31\x29\xfa\x84\x64\x0d\x95\x86\xb6\x01\x41\x5d\x45\xfb\xfa\x91\xa2\x01\xc7\xdf\xee\x42\x0a\x39\x0a\x9b\x81\x2f\x3a\x6d\x46\x64\xf1\xc1\x37\x32\xfd\x6b\xba\xa4\xaa\xc2\xb2\x07\xce\xf2\x2d\xbe\xb5\x10\x0f\xb6\x2c\xc4\x43\xa4\xae\x1c\x38\x40\xd8\xcd\x7f\x38\x42\x7e\xe2\x9a\xa0\xdc\x77\x0b\xfe\xec\x19\x92\xdb\xdb\x31\x85\xa3\xd1\x3e\x82\x26\xb2\x3a\xd0\x7f\xc1\x9a\x3f\x96\xba\xc2\x51\x10\x63\x70\x2c\x90\xb9\x03\x32\x25\xc3\x0a\xb5\x18\xbb\x89\x16\x40\xcc\x17\xd8\xa8\x70\xcf\xd2\x3a\x92\xea\x8b\x3a\x3c\x41\x68\x30\x96\x31\xdc\x98\x65\x4c\x1d\x67\x04\x50\xc8\xf5\xa0\xb8\x96\xfe\x76\x50\x47\xb2\xc6\xf5\xf1\x88\xce\x3d\xd2\x37\x9a\x6d\x8f\xb2\x3e\xba\xe7\xed\xd8\x6d\x8c\x68\x50\x32\x8e\x6c\x8f\x33\xc8\x90\xdc\xc6\x72\x48\x55\x00\xeb\xda\xcc\xcd\xec\x97\x9e\x0f\xcb\x32\x7e\x41\xf2\x50\xdd\x5b\xab\x3b\x14\xc0\x94\x44\xae\xcd\x76\x8c\xd0\xf3\x27\x4f\xf6\x9e\x3d\x2d\xcb\xf4\xc5\x93\xa7\xfb\xa3\x67\x65\x19\x0f\x46\x84\x90\x5c\x99\xba\xb6\x33\x0f\x46\x32\xfb\xd3\xfd\xbd\x61\x59\x16\x2f\x9e\x1c\xec\x3f\xde\x0f\x45\x18\xd9\x38\x24\x31\x0a\xd2\x40\x3e\x6b\xe3\x81\x18\xc7\x83\x3d\x14\x14\x0f\xd5\x17\x03\x98\x3e\x54\x35\x3d\x7f\x3e\x1a\xa2\xc1\xd3\x27\x4f\xf6\x9f\xde\xdb\x2a\xea\xe0\x71\xfb\xd4\xfa\xe0\x99\xdc\xd0\xaf\xaa\xb1\x32\xe5\x80\x05\xde\xb4\x7a\xea\x10\xed\x4a\xef\x81\x5c\x5a\xdd\xa4\x7a\xf7\x2a\x89\x02\xaf\x18\xbd\x15\x81\xbe\x72\xbd\x42\x58\x79\x37\xb9\x16\x44\xbb\x64\x47\x7d\xc7\xbb\xbd\x0e\xe4\xc9\xe6\x5d\xef\x5d\xb6\x6d\x29\x5d\x3f\x4a\xcf\xac\x41\xa3\x39\x2c\x22\x29\x64\x08\x47\x75\x50\x70\x1c\x93\xe1\x38\x52\xb6\x22\xea\x92\x78\x4a\x0a\x65\x2d\x82\x99\x6b\xcf\xb8\x53\x4c\x8c\x9e\x6e\x5e\x6a\x01\xc1\x3f\x01\xea\x8c\x80\x0f\x87\xb6\xe9\x5d\xc1\x69\x4e\xad\x59\xb8\xb2\xd5\xad\xa3\xb2\x83\xfa\x6e\xc2\x4e\xb5\x8e\x6d\xca\xe3\xa1\xbd\x46\xe5\xb1\x35\xbf\x79\xf2\x1d\x0b\x05\x17\xba\xa8\x48\xad\x0c\x15\xda\x3d\x83\x71\xed\x0c\x94\x90\x14\x16\x38\x47\x26\xd4\x3b\xed\x13\x63\x3e\x3c\xce\x5f\x24\x63\x94\x26\x10\x46\x24\x9e\x24\x83\xc1\x14\xf5\x49\x54\x07\x0c\xd7\xde\x03\x75\xc6\x64\x30\x50\x79\x45\x59\x26\xbd\x94\xf5\x62\xe4\x79\xf1\x24\x99\x3a\x41\xc6\x7b\xf2\x5d\x59\x0e\xed\xc1\xb1\xf0\xbc\x87\xa3\x2e\x82\x6f\xf3\x05\xeb\x6a\xbe\xbb\xc7\xe2\xc5\x30\xcc\xb4\x09\xe9\xb3\xe1\xf0\x60\xf4\xec\xd9\xde\x93\xc7\x07\x8f\x87\xcf\x9e\x8d\x50\x30\xbc\x67\x25\xd1\x2d\x4e\x77\xd7\xd7\x60\x03\xc5\xff\x04\x42\xcf\x65\xbd\x62\xc0\xf0\x10\x05\xda\xd7\x6f\xd7\x0a\x70\xec\x29\x5d\xd5\xaa\xe7\xf1\x3a\xdd\x18\x49\x76\x89\x97\xbd\xe1\x61\x43\xf6\xee\xe5\x11\xfb\xe6\xf2\x88\x83\x7d\xad\xd6\xdb\xbc\x3b\x03\x47\x04\xbc\x3a\x3d\x3d\x29\x16\xf4\x5d\x9a\x0b\xfc\xea\xf4\xf4\x54\xdc\x2d\xe8\x6b\x1a\x2f\x22\xae\xdd\xd7\x5f\x9d\x9e\xaa\xad\x99\xce\xb0\x48\x29\x13\x27\x34\x56\x31\x40\xf0\xeb\x8f\xef\xdd\xdf\xba\x64\xfb\xf4\x29\xbb\xa4\x4c\x3f\x44\x22\x52\xfe\xc3\x09\xe5\x6f\x05\xbd\x52\x89\x6f\x52\x53\xe9\x2f\x9f\xde\xbf\x7b\xb9\x58\xbc\xca\x16\x0b\xaa\xcf\xe3\x65\xca\xda\xe3\x9b\x8c\x5f\x99\x31\x50\xcf\x3a\x0c\x88\x4d\x79\x4f\x67\x69\xa4\x0a\x7b\x9f\x5e\x51\x09\x09\xd5\x9e\x0e\x7f\x88\xae\xe8\xec\x43\x36\xa3\xef\xa3\x25\x96\x7f\x55\x9e\xe3\x28\x95\x7d\xf8\x47\x41\x73\xdd\xf4\xe3\x45\x71\x91\x32\xf3\x47\x7f\x79\xfa\xdb\xcf\x3a\x42\x80\xca\x70\xfa\xdb\xcf\x1f\x8a\xab\x73\xca\xed\xd3\x71\x24\xe6\xa7\xf4\xa2\x7e\xcc\x52\x1d\x15\x45\x3e\x38\xa3\x70\xfa\xdb\xcf\xba\xdf\x19\xd7\x9d\x3e\x55\xe6\xf4\x3f\x15\x49\x62\xcb\x92\xc3\x7d\x3a\xa7\x54\x7f\xfe\x49\x6e\x22\x79\x14\x5f\xbe\x32\x03\x5e\x27\xe8\xa7\xac\x88\x55\x8b\xdc\xeb\x53\x14\x5b\x8b\x9f\xd7\x82\x2d\x6e\x5c\x50\xa2\x49\x3c\xc5\x09\xe1\x93\x7c\x8a\x97\x24\xf1\xbc\xc4\x51\x75\x2c\x3d\xaf\xbf\x54\x7b\xf4\x0c\x2e\xb1\x5c\xed\x38\x9d\xe4\x53\x92\xfa\x6a\x08\xee\x2b\x73\xf6\x86\xd6\x2c\x78\x34\x5c\xa3\xb7\x61\x9b\x93\x2b\xb0\xa2\x87\xd7\xd8\x79\x62\xb8\xb6\x01\x30\x60\xa5\x68\xe1\x14\xf3\xeb\x92\xb0\x2e\xc4\x52\xe3\x15\x8b\x5c\x2e\x1b\xe4\x32\x18\xd4\x6c\xa5\x2c\xe9\x8b\x1a\x8b\x84\xd0\xd6\x64\x00\x4c\x06\x47\x08\x05\x19\x1c\x62\x6d\x68\xa9\x2f\x3b\x6a\xac\x5e\x59\x28\x26\x74\x1a\x4c\x28\x96\x7f\xa7\x52\xc8\x35\x66\x9a\x72\xc0\x8c\x7a\xcb\x0e\x1e\xe6\xb5\xc5\x26\x77\x0c\x3a\xb9\x63\xf6\x7a\x8f\xcd\x0f\x5a\xbf\x47\x6b\xfb\x16\xdb\xe8\xc8\xcd\xf5\x35\x06\x62\xf5\xc5\x6e\xbb\x72\x39\x67\x7b\x9d\x90\x75\x6f\xb4\xaf\x20\xeb\x48\x23\xd7\xd1\x33\xf5\x67\x6f\xd8\x06\xb0\x72\x53\xa9\xed\xf8\xee\x4b\x2b\x96\x33\x59\x93\xd1\x67\xc6\x68\xfb\x40\x5b\xd5\x29\x2b\x6e\x65\xb5\x3d\x7a\x8c\xfc\x5f\x8f\xfe\xa6\x6f\x51\xd8\xd3\x96\xdb\x07\xc6\x70\x5b\xa2\x9a\x85\xbe\x02\x0a\xcf\x35\x5f\xc3\xd7\xe6\x72\x9c\x99\xfc\xbb\x87\xf0\x9d\x2a\xe4\x09\xc2\x57\xea\xc7\x53\x84\x2f\x0c\xc6\x38\x37\x96\xec\xb7\xc6\x1e\xf3\xa3\x11\xa6\x37\xc6\xba\xef\xcc\xe0\xa7\xaf\x06\x4f\x1d\xab\x02\x0e\x10\x3e\x92\x0d\x94\x43\x70\xaa\x5a\x7a\x88\xf0\x2b\x03\x5f\x5e\x6a\xd8\x82\x3f\x91\x23\x3f\xc1\x97\xe4\x95\x9f\xe0\x77\xe4\xd8\x4f\xf0\x7b\x62\xaf\xdb\xc1\x27\x84\xfb\x7f\x3d\xfd\xf8\x01\x7f\x26\x27\x9e\x77\xd2\x78\x24\xe2\x37\x64\x0e\xc1\xd9\x3c\x9d\xcd\x28\x03\x08\xbf\x95\x8f\x22\x3b\xb6\x97\xc7\x01\x84\x3f\x6c\xbb\x63\x07\xbf\x26\x09\x34\x9b\x96\x87\x9c\x5e\xa4\xb9\xe0\x77\x00\xe1\xdf\x9b\x64\x49\x77\x3f\xc9\xc7\x6c\xf9\xb0\x49\xf9\x65\xe3\x4c\x09\xff\x46\x3a\x8c\x45\xdf\x7b\x5e\xbf\x7f\xea\x27\xf8\x67\xc2\xfd\xff\xd0\xdf\xe0\xbf\x92\xfe\xcf\x65\xd9\xff\xb9\xf9\xb8\xfd\xe4\x27\xa9\xb9\x56\x0d\xff\x40\x52\xcf\xcb\xb7\xb8\x2c\x7c\x85\x97\x70\x55\xed\xf2\x4a\xb8\xd4\xda\x30\x95\x43\xd3\xf6\x81\x72\x53\xa8\x90\x76\x56\xd8\x70\x71\xd2\x94\xf6\x09\xfe\x82\x19\x1a\x73\xcf\x33\xf7\xaa\xfd\x32\x61\x53\x7c\x69\x32\x61\xae\x37\x7e\xbf\x78\xde\xa5\xcc\x88\x39\xaa\x82\x4b\xfc\x8f\x0e\xcd\xee\xef\x13\x31\x25\x5f\xe1\x7b\x47\x7d\x56\x1b\xf8\x48\x8e\x24\x30\xab\xf0\x3f\xc9\x6f\xee\x56\xd6\x8e\x9c\x6f\x51\x76\xc7\xae\x7c\x23\xf7\x96\xed\xb9\xab\x33\x7b\x5f\xe1\x5f\xb7\xa9\x6c\x04\x51\xdd\xf9\x15\xfe\xa4\x7b\x78\xa1\x0d\x4a\x6f\x8c\x41\xe9\x85\xdc\xfb\x64\xf0\x77\xcc\x50\x08\xa9\xa3\xdc\x0a\x61\x06\x05\x7e\x83\x3c\x4f\x4c\xde\x4c\x27\x6c\xaa\x1c\x98\xd4\x2f\x15\xe6\x82\x92\xaf\xfa\x92\xe3\xda\xa0\xed\x0c\x0e\x71\x7f\xa4\xfc\x54\xcd\xb7\x65\x29\x07\xf6\x0d\x3e\x83\x23\xbc\x52\xfb\x06\x5b\xc0\x10\xe1\x1f\x4c\x43\x51\x60\x47\xbf\xc2\x7f\x5b\xe3\x5d\x17\x6d\xdc\xce\xc9\x1d\x64\xe4\xa3\xda\xb6\x65\x64\x88\x53\x62\x2f\x18\x1a\xa7\x2f\xb2\x31\xfa\x55\x41\x77\x3e\xc9\x3a\xa0\x3b\xfe\x8f\x8e\x49\xfc\xe0\x5e\xf0\x4e\x6e\xa0\x90\x63\x52\x5b\x2a\xaa\x74\x3d\x7c\x72\x84\x04\x52\x97\x86\xfd\x84\x85\x0a\xa2\xdd\x87\xac\x2c\xfb\x99\x75\x8e\x50\xbf\x7f\x57\x3f\x4c\xda\x1b\x73\x6c\x23\xfb\x2c\xa6\xa8\x2c\x19\xaa\xf0\x7f\x6e\x2a\x40\x05\xf9\xd8\x9e\x13\x45\x81\xa6\x3c\xa6\xca\xfb\x09\x33\x64\x0f\xf9\x3f\xa9\x0f\x6d\x1b\x69\x2b\x5f\x6b\xc2\xca\xb2\x35\xa1\x6a\xd0\x69\x55\xe1\xff\x6a\x1f\xf7\x59\x37\x38\x4c\xc9\x3b\x28\x5b\x82\xea\x90\x13\x4d\xe0\x99\x74\x8c\x54\x2d\x84\x4e\x52\x89\xec\xcb\x92\x11\xf2\x46\xfd\x1f\x97\x25\xb7\xa1\xc2\xea\x43\x92\x0a\x0b\xb1\xb5\x1a\x45\x92\x98\x93\x77\x90\x86\x3f\x05\xba\xca\x94\xa8\xeb\xa6\x86\x63\x3b\xa3\x2f\x8a\x31\xd2\x3d\x23\x7c\x52\xe8\x3a\xa9\x9a\x80\x5f\x54\x67\x4d\x78\xb2\xdf\x27\xac\x99\xe5\xb4\x1a\xff\x56\x96\x30\x82\xf0\xbd\x2b\x2a\xcd\x31\x5f\x6b\xc5\x6c\xde\x6b\xa9\x99\x71\xa3\x27\x74\x34\x42\x7d\x60\xcf\x4c\x16\x70\xdd\x8c\xea\xc5\x30\x6c\x8c\xa5\x86\x53\xa3\x26\x90\xd3\x59\x6b\xbb\x94\xc3\x59\x43\x4b\xda\x78\x0a\xfe\x84\xd5\xca\xab\x49\x45\xff\x9c\xbc\x99\x2a\x42\x83\x0d\xe5\xa8\xe5\xf6\x83\xa1\x33\xb5\x96\x28\x42\x95\x73\xdf\xf7\x5f\x3d\xef\x07\xf8\x0b\x16\x9b\x77\xd6\xe5\x54\x04\x12\x1a\xfd\x43\xc5\x14\x74\x38\x7a\x0d\xf6\x3b\x35\xf8\x06\x2d\xc9\x15\x7b\xe4\x27\xe4\x3f\xf1\x2b\x3f\x21\xbf\x62\x29\xdb\x9e\x21\x3f\x91\xf2\x8b\xfc\x17\x56\xa6\xf0\x7e\x42\xfe\x03\x9f\xfa\x09\x11\x02\xa7\xca\x0f\xed\xe9\x10\x79\x5e\x04\x7f\x51\x96\xf8\x1b\x62\x09\xe0\xff\x50\x34\x7e\xed\x27\x5d\xdb\xb2\x7f\xc0\xb9\x8a\xb3\x87\x70\x01\x0b\xff\xe7\x41\xe1\xff\x3e\x28\xfc\x37\x3f\xf6\x7f\xc3\x2b\x3d\x41\xc1\xfb\xaa\x61\x09\x4c\x10\x30\x8f\xf2\xb7\x66\x62\x71\x9a\xbf\x52\x36\x68\xa7\x4b\x4e\xa3\x99\x12\x83\x96\xd5\xea\x0b\xb3\x6d\x9c\x23\x73\x8f\x0d\xce\x97\x34\x4e\x69\x8e\x15\x66\xc6\x8e\x68\xc5\xce\x6e\x08\x17\x2c\x8f\xb3\xa5\x2c\x2e\x6f\xc1\x6b\x2a\xc8\x70\xcc\x2c\x74\x7c\x41\xc5\x18\xcd\x21\x13\x13\x2a\x24\xbd\x36\x3b\x2f\x41\x5e\xc2\xb9\x9f\x8b\x8c\xcb\x29\x97\x1f\xf1\xfa\xa3\x4c\x8c\xd1\x0c\x72\x31\xc9\xf4\x47\xb2\xdf\xa7\xb6\xcf\x86\x28\x01\x96\xeb\xa7\x4b\x0c\x64\xf0\x35\x16\x03\x02\x00\x0a\x5f\x4f\xc4\x34\x90\xff\x91\xf7\x4a\x43\x79\x49\xef\xde\xac\x7d\x94\x26\xb0\xff\x4f\x39\xbe\x3b\x15\xe4\x5a\x00\x49\x9a\xaf\x87\x59\xee\xd0\x5f\xcb\xfd\xfa\x6b\xc9\xbd\x1b\x27\xd2\x1e\xab\x70\x91\xd3\x53\x2a\x84\x7b\x3b\x08\x5a\xfd\x95\xf4\x87\xfa\x55\x7a\xb5\x5c\xd0\xb5\x57\xa3\xca\x4c\x70\xd3\xd1\xfa\x44\x40\x1f\x4b\x05\x5d\x18\xb6\xe7\xdc\x37\xfa\x15\x0a\x14\xfc\x0d\x7e\x55\x9c\x53\x45\xfb\x6d\x1d\x24\xfc\x8a\x37\x34\x42\x7f\xc3\xdb\x7c\x30\x82\xff\xc4\x1d\xde\x21\xc1\x7f\xe1\x4e\xbf\x94\x40\x08\x13\x95\x2e\x15\xa4\x8d\x5f\x4e\xfd\x04\x2a\x01\xe8\xcc\x62\x2a\x9c\xce\x75\x17\xd8\x31\xaf\xb2\xa4\x5b\x7d\x49\x24\xc2\x27\x9e\xd7\x94\x07\xfb\xbf\x95\x65\xbb\x5a\xcd\x9a\xde\x43\xcb\x07\xc1\x84\x15\x8b\xc5\x14\xf4\xc9\x67\xa8\x25\x0f\x58\x55\xea\x69\x15\x05\xa2\x72\x9e\x6b\x75\x92\x6c\x34\xc2\x40\xa2\x50\x80\x57\x35\x00\x0d\xb6\xb0\x70\x29\x21\xc4\x14\x67\x64\x34\xde\xe0\x87\xd9\xd8\x7a\x8b\x37\x7c\x31\x53\xa4\x9d\x26\x90\x12\xc9\xce\x47\x53\x0c\xcf\x95\x03\x7e\x7d\x13\x84\x12\xae\xff\x74\x2e\x85\xbe\xd2\x0e\xfa\x6c\x53\x5e\x76\x60\x51\xaa\x62\xd1\x52\x57\x9a\x4b\x89\x89\xfb\xff\x74\x6e\x9e\x93\x8c\x50\xd6\x4d\x18\xfe\x6c\x2c\x10\x4e\xb0\x8a\xc2\x8d\x1d\x14\x37\x79\x3b\x2d\x4b\xad\x14\x75\x52\xf1\x5b\x37\x4f\x7d\x99\x34\x5e\xc2\xf7\xf5\x22\x55\x4f\x91\x98\x63\x20\xff\x07\x8a\xcd\x2d\xa1\x81\xf6\x66\x68\xd5\xa5\x3a\xdb\xb4\x3d\x4f\x47\x08\x82\x2b\x2a\x22\x73\x91\xed\xbe\xd1\xd5\xee\x1b\x0f\x23\x7d\xe7\x69\x44\x86\x38\xb6\x18\x3d\xcd\x8f\x6e\x05\x65\x79\xaa\x8e\x23\x37\x38\xb9\x5c\x84\xca\x49\x78\x8b\x73\x70\x0c\x6b\xac\x4f\xaf\x29\x13\xa6\xb0\x8c\xe5\x70\xa5\xe3\xae\xad\x19\x07\x15\x2a\xc4\xbb\x01\xdc\xab\x34\x00\x1f\xc1\xa0\x37\x18\x44\xf8\x46\x79\xe8\xa2\x0a\x2f\x89\x73\xd9\xf3\xaf\x47\x7f\x0b\x38\xfe\x70\x74\xf4\x3a\xe8\x8f\x70\x12\xe5\xe2\x57\x7a\xb7\xe9\xe6\xd4\xcf\x9a\x89\xdf\xc4\xbf\xa1\x08\x9c\x48\x19\x75\x2a\x38\x05\x01\x38\x06\x68\x20\x54\x38\xe2\x54\xd9\x58\xe9\xe2\x62\xa7\xb8\x37\x40\xdf\xeb\x6d\x9f\x8f\xc0\x58\x5d\x58\x6a\x45\xdd\x84\x4f\xfd\x54\xd9\x7b\xfd\x4e\xa3\xcb\x8e\xb6\x6d\x29\x58\x5f\x81\x58\x97\xdb\x1f\x6d\x16\x7b\x53\xe1\x8c\xbd\xe1\x94\xfe\x93\x76\xad\xf1\xdc\xf3\x96\xbe\x1c\x1b\x75\x07\x95\xa4\x7f\x5d\x95\xe7\x25\x4a\xc9\xb1\x53\xd5\x69\x0e\x25\x47\xf6\x1a\xd8\xc3\x2d\xde\xf2\x16\xe9\x9a\x6b\x9d\x33\x3f\x69\x87\xa6\x28\xd4\xee\x5a\x79\x58\xa6\x7e\xa2\xc2\x27\x59\x75\xd1\x8b\x7c\x8c\x62\xeb\x3b\x56\x90\x68\x92\x6b\xff\x49\x63\x5e\x57\x34\xfb\x9d\xfb\xeb\xc5\xbf\x6d\xe1\x68\xdd\x7c\xf9\xfd\x94\xdc\x1a\x91\xe0\xd4\xf5\xd0\xc4\x05\x69\xe2\x53\xb5\x4c\x0d\x6d\xc8\x62\xcf\xdb\xee\x15\x18\x6e\x7f\x65\xa2\x04\xa3\x60\x32\x6d\xfa\xd4\x0d\x64\x0a\xcf\xab\x8d\x35\xf5\x0d\x3c\x53\x40\x48\x6a\xad\x32\x5b\x1b\x3f\xc7\xa5\x4f\x45\x6b\xd6\x0e\x7d\x8d\xd8\xb3\xa1\x52\x90\xba\x57\x2f\xc8\x3a\xaf\x0f\x46\xab\x2e\x6d\xcd\xe1\x1e\x82\x20\xca\xef\x58\xfc\x76\xc7\x59\xa2\xc9\xa7\x6d\x7e\x14\x4a\xbb\xff\x01\x7c\x63\x1b\xf4\x6f\x75\x1b\xdb\x79\xf8\xb2\xb7\x67\x7c\x32\x47\x7b\xed\xb3\x72\x37\x2a\x90\x6d\x7f\x4a\xb2\xb0\x13\x4b\x39\x26\x2e\x65\xa9\xc8\x0f\xa7\xed\x53\xde\xf4\x5b\x8e\x93\x8f\xbb\x55\x66\x7b\x4f\x36\xb5\x63\x9d\xbe\xbb\x3b\xbc\x4e\x6b\x7a\x3f\x40\x63\x59\xe4\x53\x04\x41\xfb\xe3\x4e\x28\xdf\x89\x19\x0d\xfd\xec\x8c\xe8\x70\xd0\xbe\x66\xfa\xc9\x96\xb3\xd6\xc6\x45\x1a\x66\xa6\x4f\x2a\x2c\x92\xb2\x32\xd5\xcf\x12\x29\xa8\xa3\xc6\x42\x82\x53\xa6\xa2\x34\xd7\x16\x21\x69\x4b\x2c\x51\x0d\x9f\x1a\xc4\x54\x74\xf1\x00\xd9\xfd\xc3\xad\x23\x9a\xdf\x73\x44\x6b\xcb\x14\x07\x9f\xb5\xbf\x0d\x64\x45\xcf\x90\x2c\x71\xdd\x22\xa5\x2b\xf8\x85\x3e\xa6\xdc\x10\x20\xca\xf1\xba\xaf\x6d\x41\xd6\xfc\x13\x1b\x00\xce\x06\x20\xe8\xc5\x91\xa4\xfe\x9c\x8a\x5e\x94\xf7\x6a\xb0\xd1\x07\xad\xfb\xfd\x65\x1b\x83\xce\xae\x96\x25\x04\x35\x05\x83\x94\xad\xaa\xb6\x0e\x8c\x6b\x4e\x03\x35\x5b\x1e\x22\x68\xc3\x65\x2a\xa6\x84\xb5\x0a\xd3\x4f\xe0\x86\xfa\xcf\x29\x55\x0d\x06\xde\x43\x08\x0a\x3c\x99\xca\x5d\xee\x9a\xf9\x96\x62\xdf\x96\x85\x65\x68\xc5\xe4\x46\x60\x83\x16\x1d\xfd\x94\x0d\xf5\x13\xba\x16\x66\x34\xe0\xb5\x85\x13\x5c\x55\xb8\x3f\x42\xf5\xc6\x3a\x9e\xd3\xf8\x32\x48\x77\xb1\x83\x7d\x63\x20\xb0\xb7\xff\x78\x3b\xd5\xfe\xf7\x79\x91\x82\xb6\xdb\x28\xbf\x9f\xab\xe8\xb7\x9d\x43\xb3\x6d\xc7\x87\x2d\xa6\xb4\xbf\x45\x8f\xbf\xbf\xff\x1d\x36\x60\x8e\x05\x98\xb1\x1b\xfc\xc6\xc9\x65\xd7\xea\x32\x5b\x3b\xa5\x3c\xdf\xb5\xa0\xda\x5c\x3c\x83\x2d\x75\x66\xe3\x47\x41\xf8\xba\xd1\xfc\x26\x23\x57\x61\xe0\xb0\x2e\xa2\x6a\xf9\x60\x7c\xb7\xe7\x7a\xdd\xa0\x7f\x8f\x49\xa5\x36\x38\x54\xae\x17\xa9\xf2\xb0\x50\x6e\x79\xca\x9d\x1c\x53\x78\xf8\x0c\x99\x73\x90\xc3\xa7\xfa\x1c\xa4\x75\x81\x74\xde\x18\xb4\xe6\xff\xf7\xc6\xbc\xd2\xae\x11\x14\x8e\x86\xfa\x38\xc7\x67\x30\x91\xc2\xee\xc9\x53\xa7\xab\x8b\xff\x93\xf1\xac\xb4\xfb\x25\x85\x8f\x0f\xd4\xb9\x92\xcf\xe0\x1c\x8d\x77\x1a\xc3\x1e\xd9\x8b\x34\x67\x1d\xa0\xdc\x6c\xbf\x23\x3f\x42\xd0\x39\x3d\x98\xa5\xf9\x72\x11\x29\xc8\xa9\x8e\x11\x20\x38\xc9\x0a\x41\xf9\xc3\x5f\xf4\x6d\x39\x00\xe1\xbb\x3f\x5f\x1a\x40\xf8\xaa\xdb\xf1\xa3\xf1\x28\xb3\x36\xfb\x94\x08\x67\x6f\xcd\xd6\x4d\xf5\xeb\x60\xdd\xac\xbe\x98\xd3\x26\x55\x98\xfa\x67\x69\xae\xac\xd6\xe9\x8c\xf4\x47\xf2\x79\x49\xd9\x2c\x65\x17\xef\x4c\x1e\x7d\xc7\x8b\xbe\x79\x31\x8d\x6b\x87\x18\x48\xfd\x82\xe9\xe8\xd9\xc4\x29\x58\x25\xb4\xa3\xda\xbb\x55\x84\xd4\x31\xf7\x6f\xdd\xec\xd2\x51\xb1\x50\x6a\x0f\x5a\x71\xc8\xb0\x40\x98\x29\x23\xf6\x42\xd0\x93\x2c\x13\xef\xa5\x08\xeb\x80\xf6\xea\x36\xec\x00\x3c\x02\xb8\xe0\x0b\xf5\x77\x19\xf1\xe8\x2a\x0f\x24\xd1\xe5\x47\xb7\x51\xac\x6e\x6c\x97\x88\xb8\x32\x34\x49\xd8\xa6\x1f\xc1\x7d\x3c\x42\xdd\x81\xb3\x67\xdd\x6b\x5d\x30\x66\xf4\x5d\x5d\xee\xca\x5e\x29\x2f\xcc\x7b\x99\xea\xdb\xb1\x37\x35\xd8\x47\xa8\x4a\xd8\xea\x66\x92\xd6\x8e\x4d\x36\x78\xd7\x9d\x6f\x6d\xdb\x6b\xbd\x81\x99\xcb\xc0\x31\xbd\xb7\x17\x41\xb5\x9b\xaf\x2d\xed\xeb\xfb\x12\x94\x0a\x37\xd8\x9c\x25\xd8\x91\xb9\xb9\x7c\x1a\xb7\xe8\xca\xad\xb4\xf5\xa2\xaa\xf0\x66\xe3\x67\x4e\xe3\xad\x77\x40\xd0\xe1\x31\xa0\xfd\x22\xb0\x91\xdd\x1b\xdd\x52\x50\x9b\x55\x50\x56\xe0\x38\x09\xb4\x1e\xd7\x9e\x54\x38\x30\xc9\xc8\xce\xdd\x7b\x7b\x6e\x0d\xe2\xae\x15\xa1\x4a\xf1\xb5\xaa\x10\xee\x08\x26\xca\xca\xb2\xed\xc8\xc0\xd4\xc1\x15\x23\x9a\x84\x99\x51\x63\x52\xc2\xb0\x72\x75\x89\xc4\x5c\xb9\xfd\x51\x49\xc3\xf5\x25\x1a\xfa\x4e\x14\x7d\x8b\x96\x89\x75\xba\x79\x83\x2b\x6d\x22\xaa\xd6\x17\x67\xe8\x1b\xf3\x62\x43\xf0\x93\xda\x3f\x9c\x23\x9f\xd3\x59\x11\x53\xd7\x57\xce\xc4\xf4\xeb\x53\xcf\x03\xea\x4a\xfe\x5a\x6b\x57\x2c\x16\x2a\x18\x73\x9d\x60\x50\x4b\xd7\x1e\x04\x80\x01\xf3\x29\x9b\x0d\x98\x69\xaa\xfc\x51\x37\x8c\x93\x0b\xe5\xe7\x0a\xe5\x1f\x75\xb7\x48\x9a\x40\x3e\x11\x53\x5b\xb4\xfc\x6d\xc2\xc3\xab\x03\xb0\x15\xa7\x17\xf4\x76\x19\x2c\xa1\xc4\xbb\x19\x66\x26\xf0\x56\x56\x9f\xbe\x9c\x3f\x1f\xd1\xc7\x9e\xa7\x4a\x21\x29\x3e\x1f\x0c\x10\x4e\x2b\x7d\x30\x3a\x53\x57\x11\xca\x56\x04\x11\xae\x5b\x11\xe4\x95\x04\xa7\xdc\xd7\x65\xe3\x82\x70\x25\xa2\x70\xdc\x04\x6e\x57\x9a\xa5\xb8\x35\x02\x5a\x36\xc6\x3a\x8e\x7b\x6c\x14\x02\xca\xca\x41\x10\x42\x12\xe7\x34\xa8\x3f\x0f\xe5\x17\x81\x9e\x64\x6a\xb9\x94\xbe\xa2\x0a\xc8\xbf\x49\x08\x1e\x81\x20\xa9\xb9\xd5\xdc\x72\xb0\x62\x73\x62\xd6\x0e\x93\x27\x4c\x87\xc7\x26\x8b\x09\x9d\x62\x51\x21\xbc\x52\x37\x48\x60\x7d\xa9\x79\x9b\x84\x6b\xaa\xfd\xe8\xe8\x77\x1e\x75\x5c\xda\xf7\x08\x0c\x9c\x60\xbd\x37\x6e\x28\x9a\xd6\xa4\x53\x75\x52\x6a\xfb\xaa\x6e\xe7\x6f\xae\xa4\x6f\xe4\x77\xc8\x82\x5c\xee\x1a\x18\x5e\xd5\x37\xcd\x3b\x19\x4d\x3c\x76\x7b\xb6\x29\xa1\x68\x5d\xf7\x99\x7b\x10\xbf\x79\x31\x8a\xdd\x79\xc1\xc2\xa7\x6d\x8b\xf6\xaf\xdd\x4e\xcc\x26\x7b\x6c\x2e\xbf\xab\xdc\x6b\xf7\xd0\xaa\xda\xc5\x00\xea\x9c\x47\x8d\x88\x07\x37\xa9\x98\x6b\xf1\x0d\xc1\x00\x0a\x57\xb8\x97\xa5\x50\x73\xa3\x63\xad\xd2\x96\x37\x9e\x95\x42\x37\x3c\x5a\x2e\xe9\xac\xae\xe4\x84\x26\x98\x93\x05\x64\x78\x02\x3a\xde\x01\xe7\x68\xb5\x83\xaf\x5b\x47\x25\x7d\xcf\x66\xa7\xe3\x6b\x7d\xfd\x9f\x1d\x81\x0e\x1e\x2b\xb0\x9a\x2d\x2e\xe7\x8b\xd3\x24\xa0\xe6\xc6\x8f\x46\x52\xba\x10\x86\x61\xea\xff\xbe\xd6\x54\x22\xf0\x35\xd4\x7e\xa5\x6a\x48\x8b\xdc\xba\xd5\x7e\x23\x8e\xd5\xbd\x4c\x93\x9e\x1e\x6e\x78\x43\x1f\x2a\x85\xbc\xcf\x60\x6a\x51\xf9\x33\x85\xca\x7d\x06\x23\x1d\x53\x72\xf4\xec\xb1\x32\x4d\xf2\x19\xcc\xb5\x6d\xd2\xde\xde\x9e\x32\x4e\xf2\x19\x5c\x6a\xeb\xa4\xbd\xfd\x61\x03\x23\x95\x7d\xd2\x13\x65\x9e\xe4\x33\x38\x43\xda\xf3\x6b\x97\xa9\x6e\xcb\xc9\x52\xb4\x7d\x75\x7b\x05\x44\x36\x06\x08\x86\x8c\x24\xf6\x71\x21\xc7\xc9\x75\x27\x13\x08\xd5\x38\xae\xc6\x05\x3a\x62\x1b\x66\x16\xb3\xeb\xd1\x65\x08\xc7\xea\xc7\x44\x5d\xb4\x0a\x36\x00\x0c\x30\x02\x70\xed\x6c\x8a\xe1\x1a\xf5\x64\x7e\xe4\x2b\x75\xa4\xc3\x62\xb8\xb1\x1f\x1e\x23\x13\xd0\x92\xab\xe3\x08\xc2\x55\xa4\x46\x13\xc4\x75\x18\xd4\x1b\x50\x99\x4a\xf6\xb0\x2a\x4a\x12\x2d\x14\x10\x21\x1b\xbc\x95\x11\x2e\x39\xbe\xbe\x2e\xaa\x0e\xf5\xd5\x86\x48\x4d\x37\x69\x65\x3e\x7c\xa2\xe3\x66\x52\x36\x03\x4d\x45\xb9\xc8\x96\xb0\xe6\x6e\x58\x87\x71\xac\xb0\xee\xbc\x46\x40\x5b\x7a\x6c\x4c\x0f\x35\x22\xa9\xab\xab\x55\x99\xe1\x5d\xc7\x22\x68\x50\x03\x32\x01\xf3\xa6\x12\x9a\x42\x99\xf7\xb8\xe0\xb4\xc1\x0d\xf2\xcd\x14\x8d\xff\x9f\x47\x8f\xfe\xd2\xd3\x51\x98\xdf\x47\xcb\x65\xca\x2e\x3e\x9f\xbc\x23\x87\x7e\x4c\xe3\xd9\x7e\x3c\x8c\xfd\x78\x5e\xb0\x4b\xff\x6b\xee\x5f\x45\xcb\xff\x3f\x00\x00\xff\xff\xce\x94\xdd\x64\x3e\xb5\x00\x00") -// FileIdentifierStaticJs815de8a91ChunkJsMap is "identifier/static/js/8.15de8a91.chunk.js.map" -var FileIdentifierStaticJs815de8a91ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x59\x77\xea\xca\xf2\x27\xf8\x5d\xbc\xf6\x9b\x75\x2e\x9e\x87\xff\x53\x67\xa6\x84\x90\x65\x8c\x31\x60\x8c\x7b\xd5\xda\x4b\x06\x19\xc4\x20\xb0\x10\x18\xdc\x5f\xbe\x57\xc4\x2f\x34\xe0\x61\x9f\xbd\x7d\xee\xad\x7f\x75\x57\xbd\xd8\x48\xca\x39\x63\x8e\xc8\xc8\xff\x67\x6f\x1d\x26\xcb\x68\x1e\xef\xfd\xd7\xb1\xb5\xb7\x9c\xaf\x92\x7e\xb8\xdc\xfb\xaf\xff\x7b\xef\x5f\xff\xaa\xfc\xeb\x5f\x95\x78\x3e\x08\x7f\xce\xe6\x83\xd5\x34\x5c\x56\xfa\xf3\x24\xfc\x6b\xbc\xac\x4c\xa3\xa7\x24\x48\xb6\x95\xec\xfd\x4f\xfa\xf0\xaf\xf1\x72\xcf\xfa\xa3\x5a\xc3\xe9\xfc\x29\x98\xfe\x79\xbd\xf9\xd3\x38\xec\xa7\x7f\x0d\x16\x7f\x5e\x75\x10\x2e\xfb\x49\xb4\x48\xe7\xc9\xf2\xcf\x2b\x8f\x82\xaf\x2b\x3d\x05\x4f\xe1\xf4\xaf\x45\x12\x2e\xc3\xf4\xaf\x24\x0c\xfa\xe9\x5f\xc1\x62\xb1\x5b\xe6\xff\xe2\x42\x95\x64\x15\xa7\xd1\x2c\xac\x8c\xc2\xe9\x22\x4c\x96\x95\x70\x39\xab\x60\x4a\xdd\x28\x1d\xcd\x57\xe9\x6d\x32\x5f\x84\x49\x1a\x85\xff\xb3\xbb\xbb\x9e\xcf\x97\xdf\xd8\xc7\x70\xb3\x98\x27\xe9\x37\xd6\x33\x1a\x7c\xa3\xb7\x68\xf9\x17\x86\xff\xe7\x55\xd3\xf9\x5f\xd1\x77\xeb\xbe\x4e\xbe\x01\x31\x41\xfc\xed\xb1\x3e\x07\xd1\xf4\xeb\x1e\xb1\xe5\xc9\x7c\x95\x86\xc9\x5f\x83\xf9\x8c\x77\xf5\xfd\xcb\x2f\x6b\xa7\x51\xbc\xfd\x2b\x8a\xd7\x41\x12\x05\x71\x5a\x19\x44\xcb\xf4\xdd\xbb\x7f\x85\xcb\xaf\xab\x7f\x39\xe6\x05\x20\x69\xfb\x17\xa1\xd9\x9f\x57\x97\x17\x7f\x5e\x71\x15\x0d\x7e\x7f\xa5\xbe\xfc\xfa\x61\x0d\xbf\x05\x60\x8b\x24\x9a\x45\x69\xb4\xfe\x06\x64\x13\x78\xc6\x69\x38\xfc\x4e\xcf\x83\xf0\x39\x8a\xc3\xaf\x97\xe1\x6b\x74\x4a\xc3\x24\xf8\x1e\x3d\x14\x3a\xdc\x4f\xc2\x20\xfd\xc6\x74\xa5\xfa\x24\xdc\x7e\xa3\xef\xe5\x28\x48\xc2\x01\x55\xfe\x6e\xdd\x6f\xd0\xb9\x78\x35\xfb\xeb\x69\x35\xfc\xee\x90\xc3\xf4\xaf\x74\xfe\xd7\x32\x4d\xa2\x78\xf8\x57\x1a\x0c\xbf\x05\x21\xff\x80\x7e\xfd\x15\x6e\xbe\x59\x11\xd0\xf5\xed\x2d\x5e\x44\x5f\xd7\x1d\x45\xcb\x74\x9e\x6c\x7f\x9b\x75\x85\x9b\x34\x8c\x07\xbf\xa2\x8c\xcb\xf9\x74\x1d\xfe\xb5\x08\xd2\x51\x1c\xcc\x42\xc1\xea\xdd\x97\x5f\xd6\x5e\x07\xd3\x55\xf8\x57\xf8\xb2\x0a\xa6\x5c\xb1\xf4\xfc\xb7\x33\xa0\xf2\xf2\xfb\x9b\xd4\xe8\x17\xd3\x8e\xe2\x51\x98\x44\xe9\xdf\xb0\x68\x9a\x1f\xc1\x58\x12\x0e\xc3\xcd\xa2\x12\xc5\x83\x70\xf3\xef\x1f\xcb\xdf\x6f\xc1\x37\x1b\xfe\xf7\x8a\x25\xfd\xf4\xeb\xb9\x7f\x4d\x0e\xc3\x0b\x1a\xf2\xb7\x21\x9e\xea\x7e\x97\x20\x46\xbc\x5e\xdf\xec\x38\x09\xff\x21\x92\x12\x51\x63\xfe\x93\xc4\xdf\x11\xca\xfb\xf3\xe7\x6f\x77\x3d\x5c\xcc\xbf\x5f\x77\xbe\xf8\x3e\xeb\x1a\xce\x17\xf1\x3f\xa9\xfc\x35\x13\x79\x07\xe5\x59\x5b\xa8\x5a\x21\x56\xb0\x48\xe6\xe9\x3c\xdd\x2e\xc2\xbf\x7e\xb5\x72\x0c\x4a\x22\xe1\xf7\xe7\x71\x1a\x6e\x52\x1a\xd0\xdf\xa0\xf6\xd7\xd5\x66\x8b\x69\x38\x0b\xe3\x34\x48\xa3\xf9\xd7\x53\x1f\xae\x06\x7f\xd3\xc3\xf3\x13\x56\xa6\xf2\x1a\x24\x71\x14\x7f\xcd\xcb\xf2\x82\xe1\x6c\x91\x6e\xab\xab\xb8\xff\xcb\x9e\xdf\x51\xb0\x9d\x6f\xd1\x32\x48\x92\x60\xfb\x37\x23\x9b\x45\x71\xf4\xd7\xa7\x0b\xc0\x72\x2e\x88\xe9\xf7\x1a\xf8\xf7\x12\xeb\x2f\x1a\xe8\x4f\x83\xe5\xd2\x04\xd3\xa9\x19\x85\xfd\xc9\x1f\xd7\xe6\x71\x1b\x6a\xe3\x9b\xb0\x09\x32\xf2\x57\x26\xcb\xff\x36\x7a\x3c\xc7\xff\xb4\x85\xec\x7d\xb8\x3c\xfb\x97\x88\x39\xff\xb4\xa9\x9f\xc1\x5f\xcf\x7f\x07\x72\x5f\xac\xe4\x62\xbe\x5c\x46\x4f\xd3\xd0\xcc\xe3\x65\x9a\xac\xfa\xe9\x3c\xb9\x0b\xd3\x55\xf2\xc7\x0d\x11\x8e\xff\x02\xc5\xbf\xd8\x8d\xe5\x76\xf6\x34\x9f\x56\x32\xf1\xfc\x4f\xb6\xe1\xbb\x55\xcb\xeb\x0f\x29\xf5\x5f\xdf\x6e\xe3\xa7\x88\xb9\xc1\x37\x24\x4e\xe6\x83\xff\x50\xab\x18\x7c\x87\x2b\x7c\xdb\x38\xc0\x74\xe9\xaf\x28\xee\x4f\x57\x83\x5f\x58\x6d\x7e\x25\xd7\x4f\xc3\x78\x98\x8e\xbe\x55\x35\x78\x5a\xce\xa7\xab\x34\xfc\xeb\x6f\x98\xc2\x97\x76\x98\x74\xf6\xe7\x0c\xff\x35\x7c\xfa\xd7\x60\x3e\x03\x84\x3c\x4d\xff\x7c\xa7\x08\xca\x78\xdd\xfe\x01\x90\x05\x83\x01\x31\x8b\x55\xbc\xec\xcf\x17\x34\x8a\xef\x6c\x3a\x41\xdb\x32\x0d\xbf\xb6\x26\xfe\x12\x43\xbf\x83\x98\xdf\xda\x26\xc6\xca\x3f\xeb\x32\x9f\xe3\x2c\x4c\x83\x6f\xea\xbb\xdf\xd3\x75\xa3\xe5\x5f\xd8\xdb\x7f\x22\x99\x7d\x4b\x5f\x0d\x97\xe7\xd9\x32\x05\xcb\x6d\xdc\xff\xeb\x1f\x90\xc1\xbc\xa5\xf9\xd3\x32\x4c\xd6\xbf\x04\xf3\x2f\x88\x7f\xb0\x5c\x86\x49\xda\x1e\x45\x4b\x2f\x8e\xd2\x28\x98\x46\x6f\xbf\x30\x3d\x7c\xd1\xc8\x30\x24\x6d\x08\xd2\x62\xe3\x8f\x39\x89\x70\xe5\xe1\x6f\xcb\x9c\x5f\x32\xf6\x6f\x37\xf1\x09\x67\xff\xc7\x6d\x65\x90\xb2\x0c\x7e\xdf\x0f\x50\x4c\xe5\xf7\x25\xf0\xbf\x9f\xca\x3f\x6e\xeb\x67\xde\xc2\x9f\x42\x46\x26\x69\x7e\x13\x26\xfe\x90\xc9\x16\xcb\xf7\x4d\xee\x5c\x5a\xb4\xbf\x69\xe1\x8b\xf9\x2e\x7f\x0f\x13\x76\xcc\xba\xff\x5e\xa9\xfd\x5b\x4d\xff\x89\xc5\xe4\xdf\x6e\x2d\xf9\xd7\xbf\x2a\xbb\x7a\xe1\x4d\x30\x23\xa9\x36\x7d\x47\x5e\x4b\xe5\x6a\x30\x63\xfd\xba\xd0\x1d\x0f\xf7\x77\xca\x7c\xf1\xb1\x1e\xce\xe6\xc9\xf6\x97\x45\xae\xa3\xe7\xb0\xbf\xed\x4f\xbf\x9a\xd0\x2c\x48\xfb\xa3\xdb\x60\x57\x70\x7a\xdf\xff\x17\xdf\x5a\xa4\x04\xf7\x7f\xd9\x7d\xeb\x35\x4a\xfb\x5f\xb5\xfd\x1a\xa5\xa3\x5f\xd6\x1e\xcd\xe7\xbf\x70\x1a\x4d\x16\xf3\x45\x25\x5c\x56\x14\x71\x29\x33\x9f\x2d\xe6\x71\x18\xa7\xef\x1e\xa9\xf6\xff\xb0\xf6\xe2\x60\x06\xa7\x2c\x21\xd6\x9e\xb5\x87\x36\xf6\xac\x3d\xb8\xde\xa8\x87\xcc\x8b\x6b\xed\xfd\xfc\x49\x5f\xe0\x5c\xdd\xb3\xf6\x5e\xa3\x78\x30\x7f\xdd\xb3\xf6\xea\x41\x3a\xda\xb3\xf6\x96\xe1\xf4\x79\xcf\xda\xcb\x34\x71\xae\x30\xdc\xb3\xf6\x82\xb8\xc1\x00\xb5\x67\xed\x25\xe1\xcb\x2a\xe2\x8e\x3c\xe7\xe2\xa7\xdd\xa8\xff\xb4\x9d\xaa\x77\xe3\xec\x59\x7b\xe9\xfc\x36\x73\x70\xec\x59\x7b\x83\xdb\x3d\x6b\x2f\xaf\x06\x65\x4d\x20\x71\xbb\x67\xed\x51\x3f\x8d\x3d\x6b\x8f\x4a\xa9\x34\x4d\xa2\xa7\x55\x1a\xd2\x60\xa9\x6e\x7b\xbb\x08\x9d\x24\x99\x27\x34\xf8\x60\xba\xe2\x41\x87\xd4\x4e\xb0\x67\xed\x8d\x82\x65\xe3\x35\x2e\xb5\x15\xd1\x97\x49\x48\x3f\xfb\xc1\x94\x26\xf6\xf3\x0b\x04\xd8\xcb\xdc\xd8\xbc\x3e\x2c\x92\x0f\xa8\x01\x1a\x7d\x90\xa0\x0b\x14\xf0\xc3\xed\x12\xad\xd2\x3f\x48\xe0\x54\x92\xe4\xb3\xc6\x33\xc6\x53\x1a\x45\x8b\x85\x81\xa2\x7d\x3c\x4b\x23\x39\x03\xc0\x6f\xae\xe0\x2d\x9d\x78\x35\x83\x7c\x4c\xe3\x4e\x37\x34\xb3\x68\x10\x62\x82\x7b\xd6\xde\x0f\x6c\x20\x0d\x0d\x55\x69\xa7\xf7\xac\xbd\xf9\x2b\x6d\xcc\x7c\x45\x5f\xbc\xd6\xcf\x6a\xe3\xce\x38\x36\xed\x1a\x9e\xdd\xeb\x86\x56\xd7\x7b\xd6\x9e\x8b\xe7\x56\x5b\xb5\x3d\xb3\x67\xed\xb5\xf0\x7c\x7b\xd7\x68\x37\xf0\x53\x7b\x37\x54\x51\xe3\xa9\x7b\xa7\x68\x33\xba\x00\x1d\x26\xa5\x7b\xd6\xde\x2a\x16\xf7\xd1\x9e\xb5\x47\xad\x3c\xd1\x60\x69\x4c\xa3\x88\x06\x19\x24\xc3\xd5\x2c\x8c\x19\xcc\x82\xc5\x62\x4a\x7b\xb0\x8e\x92\x74\xc5\xf0\x75\xb7\x67\xed\x75\xa8\x02\xd3\x16\x3b\x5c\x52\xcd\x79\x06\x13\xde\x3b\xe8\xa0\x2e\x88\xb6\xd0\x24\x57\x11\x3d\x61\x15\xa9\x91\x96\xf3\xb3\xd5\xab\xeb\x06\x4d\x2c\x5a\xe6\x15\xc3\x4d\x48\x4d\xea\x64\xfe\xba\x0c\x13\x60\x1c\x6d\xff\x1d\x11\xcd\x1f\x39\xaa\xd0\x2b\x19\xf0\xcf\x69\x18\x63\xdc\xf4\xa4\x48\x10\xa5\xb7\x02\x3d\xf3\xb8\x1f\xa4\xbc\x11\x4c\xe4\xf2\xa1\x4b\x07\xb5\xfc\x35\x6d\x23\x37\xb7\xc3\x19\x18\x3f\xe2\x01\x8f\x81\x87\x90\x37\xe0\xc0\xb4\x46\xef\xb3\x41\xf6\x47\xd1\x74\x90\xf0\x68\xca\x03\xcd\xfd\xac\x18\xcf\x20\x12\x4c\x9c\x85\xcb\x65\x30\xa4\x2e\x32\xcc\x78\x8a\xd2\x59\xb0\xa0\x55\xd8\x81\xa4\x79\xfc\x1c\x0d\x57\xd9\xe3\x6b\x12\xa5\xf2\x93\x97\x74\x41\x70\x96\x04\xf1\x60\x3e\x63\x94\x6d\xb1\x2e\x8e\x7a\x44\xac\xf3\x11\x9b\xfc\xf9\x36\x99\xaf\x23\x4c\x6a\x10\x2d\x17\xd3\x60\x7b\x03\x48\x34\xf3\x78\x49\x3d\xe7\x75\xe8\xfd\xa0\xa8\xb8\x4c\x83\x94\xca\x4d\xe7\xfd\x20\xa3\x27\xd1\xb2\x3e\x5f\xc5\x29\x6f\xf6\xcf\x45\x18\x0f\xa2\x78\x78\x5d\x7c\x5f\x32\xe1\x2d\x9a\x58\xc5\xd3\x68\x99\xf2\x22\xe5\x3f\x96\x61\xda\x92\x96\xfb\xf3\xd9\x62\x95\x86\x77\xf3\x79\x5a\x27\x72\x4f\x13\x14\x3f\x8e\xfc\xa4\x36\x92\x29\x3f\x24\xc1\x6c\xc9\xe0\xe3\x6c\xb0\x35\x3f\x17\x02\xe4\xfd\x6c\xfd\xed\x68\xc0\xc3\x2b\xbf\xeb\x46\xd3\x69\x27\x9e\xc9\xeb\x99\x74\x93\x73\x1f\x82\xe8\xf8\x43\x25\x3b\x1a\x74\x16\x03\x0c\x72\x91\x84\xeb\x5b\x81\x97\x79\x9c\xbf\x9e\xc7\x45\xab\xfd\xa0\x3f\x0a\xb3\xff\x46\x5e\x0e\xc3\x98\xd4\x93\xf0\x16\xd3\x90\x47\xde\x7a\x9a\x59\x7b\x7e\xc7\x86\x50\xe9\x36\x9a\x86\xc5\x2f\xa9\xb2\x48\xc2\x94\x29\xe4\x5d\x38\x88\x12\xa0\xcc\xcf\x24\x7c\x2e\x56\x6e\x90\x2d\x1b\xaf\x03\x7d\xfb\xb1\x58\x2d\xb9\x2e\xfe\x09\x58\xfc\xf8\x71\xc8\x30\x98\x8e\xe6\x03\x86\xf2\xc5\x34\x60\x2a\x8a\x8d\x2f\xed\xe0\x4f\x11\x68\x4a\xfb\xbe\x54\x49\xe8\xbc\x80\x24\xf0\x0c\xb9\xb1\x62\xae\x68\x3b\x63\xd7\xb4\x34\x0b\xae\xc6\x84\xfc\xc3\xcf\x1f\xa1\x6c\x5f\xf6\x3f\xff\xb0\x4c\x93\xa8\x0f\xc0\x93\x1f\xc5\xa7\x30\x5e\x66\x9c\xa9\xfc\x3b\x09\x07\x2b\x9e\x07\x77\x0f\xa8\xdc\x5d\x43\x1e\xa6\xcf\xe4\x21\x8c\x07\xb2\xf6\x46\xf6\x2b\x09\x97\xab\x29\xd8\xe2\xee\x56\x50\x65\x9e\x16\xb3\x2f\xe6\x0b\xd3\x08\x1d\x85\xb3\x79\xc6\x48\x32\x72\x90\xd1\xa7\x1f\x19\x59\xe9\x97\x09\xc2\x32\xa3\x52\xa6\xa0\x18\x7d\x81\x91\x68\xe9\xcc\x16\xe9\xb6\xf4\x25\x18\x0c\xae\xc3\x80\xd0\xaa\x35\x0d\xb0\x85\xa3\x20\x51\xd9\xb2\x2c\x74\xb0\x0c\x05\x3f\x9e\x76\x7f\x52\x89\xd5\xd3\x32\x2d\xf0\xb9\x73\x77\x9d\xff\x96\xe5\x00\x82\xd6\x82\x78\x30\x65\xc4\x07\x48\x08\x41\x88\xe7\x73\x5a\x03\x88\x46\xb4\x60\x39\xd5\x7b\x9e\x27\x4e\xd0\x1f\x65\x64\x8f\x47\x7e\x1f\x4c\xa3\x41\x41\x18\x9f\x13\x26\x49\xfd\xe9\x3c\x2e\x91\xcb\xe7\x18\x8b\x98\x2d\x25\xf3\xde\x7e\x18\xd1\x8b\xe7\xe9\x9c\xb1\x21\x5a\xde\x04\x37\x2c\x72\x2c\x85\x1a\xea\xd5\x50\x78\xaf\xe7\xe4\x1c\x8f\x57\xaa\xe0\x46\x80\x90\xe8\x39\x09\x66\xa1\x3d\xef\xaf\xa4\x43\xbc\xe0\x99\x6e\x19\xa5\x84\xe6\x81\xc1\x85\xf1\xc0\xc8\x04\x96\x49\x3f\xc3\x0f\x22\x12\x22\x49\x0d\x8a\x96\xe6\x0b\xde\x10\xa2\xc0\x4c\x05\x53\xcc\x6e\x59\xa0\x0d\x88\x6b\x21\x9b\xfc\x10\x71\x03\x51\x08\x10\xe6\x80\xd5\x8b\x6d\x12\x0d\x47\xbc\x89\x8b\x69\x24\x3c\x93\x24\x25\xe5\xb2\xec\x32\x94\xad\x21\xca\xe4\xe9\x3b\x75\xd7\xa3\x9e\x27\x4b\x87\xa9\xe8\x8f\x9c\x91\x06\xcb\x65\x34\x8c\x01\x55\x62\x1a\x94\x36\xfb\x61\x23\x0e\x85\xcc\x92\xe0\x43\xdb\x49\xd0\xce\x3b\x2a\x4e\xf2\xdb\x82\xb6\x8e\x82\x65\x3b\x09\xa2\x69\x09\xce\xd2\xf9\x6d\x00\x81\x93\xb6\x32\xfb\x1d\x2d\xdb\x73\xf5\x84\x5f\xd5\x64\x3e\xc3\xef\xd9\x6a\x99\x3a\xf1\x00\x0f\xd3\x80\xbb\x5c\x2d\x40\xa6\x41\xf7\x97\xa3\xe8\x99\x7e\x8d\xe7\x51\x0c\xa9\x21\x03\x81\x8c\x94\x84\xeb\x30\x81\xf8\x17\x12\xe0\x04\xf7\x22\x29\x3e\x65\x3f\x18\xde\xdf\x21\xc3\x22\x09\x9f\xa3\x0d\x8f\xf6\x7a\xfe\x1a\x26\x06\x80\x3f\x0a\x96\x25\xc4\xe0\x8a\xef\xa7\xb7\x0c\x83\x84\x21\x78\x24\x68\xb5\x4a\x92\x30\x4e\x4b\xa4\x8f\x3e\x78\x82\xd7\x28\x9d\x3d\x2d\x82\x64\x99\x61\xd0\x20\xec\xcf\x07\x61\xe7\xce\x23\xb9\xe6\xce\xcb\xb8\x39\x20\xa2\x9d\x04\x4c\x9c\xe6\x71\x3d\x88\x83\x21\xa3\xd8\x22\x99\xcf\x16\x69\xce\x01\xc3\x64\x09\x26\x78\x9b\xbd\x8f\xc3\x4d\xf1\xc0\xfc\x3f\x99\x15\x0d\xb5\x89\xdc\x04\x99\x40\x3f\x0c\xd3\xce\x92\x55\x33\x2a\x95\x8d\x9c\xc4\xe6\xa7\xa0\x3f\xc9\x81\xfc\x5a\xba\x02\xa4\xf4\x85\x5a\x4e\x8b\xb7\xcf\xd1\x14\x62\x4c\x3c\x4f\xa3\xe7\xed\x75\x69\x68\xfd\x20\xee\x2c\x43\xbb\x51\x47\x77\xef\xbb\xc2\x23\xbe\x89\x40\x95\xb1\x73\x28\x26\x85\x94\x85\x96\x8a\xe7\x55\xc0\x62\xf0\x3a\x1a\x0a\x1f\x5c\x2d\xc3\x44\x0d\x81\x6e\xcb\xd5\x82\x15\x9e\xa2\x78\x1c\x86\x83\x65\x2d\x58\x8e\xcc\x28\x88\x87\x61\x69\x4e\x3f\x73\xf9\x8d\x7f\xfc\x78\x9e\x27\xfd\xf0\x2e\x7c\x4e\x42\xde\xda\x77\x8f\x52\x68\x77\xe9\x8a\xf7\x93\x70\x7b\x9d\xe9\x07\xe5\xdf\xc3\x30\xb5\x1b\xf5\x32\x7c\xec\xce\xf6\x27\xd4\xaf\x1f\x25\xf1\x08\x40\x00\x6e\x93\x7e\x02\x0a\xb4\xd3\x59\xf5\x11\xd3\xe0\xdb\xf9\x22\x7b\x11\xae\x33\x86\xe1\x6c\xa8\x72\x38\x5f\x2d\x6f\xe7\x0b\x96\xc2\x1c\xf9\x96\x57\xca\x7f\x17\xeb\x93\x4d\xfc\x86\xc0\x89\x4b\xcc\x27\x82\xcc\xa5\x49\x10\xde\x94\x1e\x32\x08\x0f\xa6\x99\xb6\x43\xe5\xb3\xb7\x83\x70\x9a\xd2\x9e\x0d\xe7\x4c\x44\xd6\x61\x22\x2d\x47\xb0\x78\x5e\xbf\x9f\x7a\x0d\xd2\x49\x06\x68\x99\x28\xd4\x1f\x85\xfd\x09\x2d\x66\x09\xcc\x82\xc1\x80\x67\x55\xda\xd6\x24\x9c\xcd\xd7\xe1\xfb\xb7\xd1\x52\x4f\xe7\xfd\x09\x13\xd4\x11\xda\x27\xe1\x26\x5b\x36\x12\xcf\xb2\xf1\xd2\xfa\xca\x34\x44\xc4\xc9\x41\x73\xae\x81\x1f\xc3\x79\x75\x9e\xbc\x06\x09\xb5\xf6\x44\xed\x32\xb5\xca\x7e\xd1\x6a\x12\x9e\x9b\xf9\x00\xa3\x24\x9a\xf0\x14\xb0\x84\x1d\xc6\x84\xf8\x3b\x54\x40\x1e\xe2\xf9\x32\x23\x32\xd9\x7f\xa2\x40\x35\xfc\x26\x3c\x91\x66\x73\x16\x0d\x99\x5d\xc6\x58\xfa\x2a\xab\x18\x2c\x47\x05\x1a\x08\x98\xd2\x48\xda\xd0\x24\x4b\x3f\x7f\xee\x8e\x18\xa5\x68\xd1\x86\xf1\x3c\xc9\xc6\x87\x91\x0f\x0a\xa9\x72\x5d\xda\xb8\x60\x3a\xa5\x0f\x19\x21\xf7\x72\x0d\x99\x64\x8a\x36\x73\xa6\x97\x55\x98\x6c\x5b\xe1\x34\xec\x03\x6d\x87\x61\x9a\xeb\xfc\xb2\x1b\xa5\x39\x30\x39\x93\x16\xfb\xd3\x60\xb6\x60\x51\xf2\x35\x4c\xf4\x7c\xc5\x12\xd8\x6a\xb1\x28\x1e\x66\xcc\x1e\x66\xc1\x26\x9f\x3d\x6c\x47\x1f\xe6\x2f\x20\xe7\xc4\x69\x02\x6e\xfb\xe1\xc5\x6e\xc1\x0c\x26\xde\x3d\x86\x79\xf1\x4c\xf9\x4a\x85\xd8\x6c\xd2\x32\x18\x15\xcd\x82\xbb\x82\x9c\xb9\x73\x6c\x21\x7b\xe1\x41\xb4\xc2\x24\x7b\xe8\x17\xee\x64\x36\xbd\xb0\x7a\xf2\xf3\x27\x83\x70\x20\x32\x20\x73\x12\x00\x08\xe3\xdf\x24\x8c\x97\xed\x79\xc9\x62\x93\xbd\xba\x0b\x87\x0e\x4b\xa4\xb7\xaa\x5d\xfb\x79\xe7\xb8\xce\xc3\x2d\x6b\x02\xf2\x3a\xe1\xb1\xa1\x34\xc4\x89\x60\x35\x4d\xed\x70\x1a\xcd\x22\x50\xf6\x41\xe9\x37\x91\xbb\x70\xd9\x0f\x16\x8c\x45\xf3\xe7\xe7\x65\x98\x71\x1e\x9e\xd8\x22\x5d\xb1\xde\x3e\x4c\xe6\xcc\xc6\x67\xf3\x41\xf4\x1c\x71\xd5\x60\x99\x86\x49\xb4\x9c\x08\x73\x8f\x98\x77\x27\xe1\x22\x0c\xd2\x5c\xd4\x0f\xa0\xa1\xa5\x69\x98\xc4\x79\x4f\xae\xb4\x85\xa7\x5c\x51\x05\x30\x76\xee\xbc\x5c\x6b\xbe\xcd\xd4\x9c\xfc\x93\x48\xbd\x04\xd3\x2c\xf9\xa6\xf3\x0e\xc1\x8c\x30\x7b\xc8\xfa\x4c\xab\xa6\x01\xdb\x01\xe6\x0b\x96\x55\x06\x01\x53\x2b\x34\xf3\x69\x57\xd9\x92\x31\x07\x1e\x8a\xa0\x77\xd5\x6a\xdc\x08\xce\xc6\xc3\xe8\x99\x46\x42\xc2\x4a\x1a\xb2\x58\x13\xa4\x69\xd0\x1f\xe5\x54\x85\xfe\x88\xcc\x4f\x6a\x52\x37\x4a\x47\xe5\x45\xe7\x05\x5c\xe6\x1a\x45\x49\xc9\x5b\x88\x40\xc5\x90\x50\x7a\x8f\x6e\x4b\x2f\xbe\x32\x7e\x65\x26\x8a\xa0\x0c\x2d\xa3\x00\x2c\x03\xba\x10\xdb\x61\x48\x6a\xce\x22\x7f\x49\x78\xa4\x91\x99\x4c\x5e\x5d\x86\x69\x5b\x8c\x06\xc0\xed\x5d\x07\x14\xd5\x6d\x3b\x77\xaa\xdd\xb8\xdb\xb3\xf6\x74\xc7\x75\x7b\xdc\x72\xba\x4a\xe2\x36\x2c\x30\x1a\x9b\x70\xa3\xea\x8e\xd8\x10\x0a\x98\xb7\x9d\xaa\xea\x5c\xb7\xc5\x72\xe5\xd0\x8f\xdc\xbe\x05\x4d\x63\x59\x1a\xdd\x6d\xc9\xae\x36\x0c\xd3\x7a\xa6\x9d\x4e\x22\x28\x6a\xa2\xdd\xdb\x4e\xf5\xe7\xbd\xba\xee\x38\xad\x3d\x6b\x0f\x3f\x7e\xea\x0e\xc9\xcd\x3f\xe2\x40\x24\x9b\x1f\x02\xff\x6c\x77\xcb\x31\xf7\x47\x10\x6f\x6f\xb2\x22\xe9\xbc\x30\x58\xf1\x1e\x14\x94\x0e\x36\x58\x2a\x92\x97\xc0\x8f\xcc\x8a\x36\x8a\x06\x83\x30\x16\x18\xd8\xb5\x1c\xde\x48\xdd\x85\x47\xcb\x31\x6c\xdc\xda\x1f\x8a\xd8\xf9\xc9\x14\x98\x70\x97\xf5\xcc\xc6\xfb\x93\xbd\x03\x47\x30\x44\xa5\x61\x32\x5f\xdc\xc1\x3e\x6b\xe7\xd3\xf9\xb9\x1b\xd7\x75\x54\xe0\x7a\x5e\x3f\x23\x7d\xc4\x12\x96\xdc\xd8\x70\x35\xe0\xff\xbb\x01\x47\x4c\x0c\x97\x69\x10\x33\x35\xfb\xf9\x65\x14\x0c\x93\x99\xe7\x30\x09\xe3\x7e\x6e\xc6\xcd\x0d\x65\xb9\xec\x5a\x02\x19\xb1\x91\x11\xdf\x76\x66\x51\x0a\x4c\x80\x78\x92\xc0\x6a\x52\x3c\x83\xfc\xd0\x33\x5a\x62\x2a\xf4\x9a\x89\xfc\x7d\x96\x64\x06\x1a\x1d\xc9\x44\xf3\x8f\xc1\xb4\xbf\x9a\x06\x69\x68\x76\x4a\xfd\xcc\x0c\x5c\x3f\x58\x37\x85\xf1\x89\xde\x67\xf6\xad\x1f\x62\x04\x11\x96\x29\x4f\xb4\x3b\x28\x55\xb6\x32\x86\xcc\xae\xc2\x7c\x16\x24\x00\x17\xad\x7e\x30\x2c\xdd\x85\xfd\x30\x5a\x87\x99\x79\x48\x24\x79\x98\x8a\xa6\x83\x6c\xe0\x34\x9a\x6d\xa6\x3b\x9b\x62\x30\xd0\xaa\x64\xcb\x07\x3b\x83\x39\xca\x46\x73\x94\x19\x17\x8e\xc4\xfa\x79\x24\xf6\xce\x23\x8c\x2e\xeb\x03\x7e\xec\x7c\x51\xfa\xbb\xbd\x48\x28\x1f\x13\xcf\x49\xe8\x94\xe3\xf5\x60\x4d\xe5\x49\xef\xbe\x25\xda\x02\x80\x58\xee\x3e\x55\x83\x29\x93\x80\xd2\xab\x76\xb2\x7a\xf7\xe6\x66\xc5\x96\xfc\x72\x19\xd0\x8f\xd2\x1b\x25\xd6\x67\x60\x24\xd6\x76\x36\x8f\xc7\x4b\x37\xf3\x70\x40\xa3\x90\x9a\x24\xc0\xc7\xd1\xcb\x2a\xf4\x06\xa2\x79\x67\xd3\x03\xab\xe5\x95\x01\xe2\xfe\xf8\xe0\xb0\xf8\xb9\xf3\x06\xf4\x61\x50\x46\x4c\x6e\x22\xdb\x3c\x98\x49\xb2\xa7\x1f\x25\x4b\x37\xdb\xc0\x7f\x22\xf0\x0b\x0a\xf9\xc7\x20\x00\x2a\x01\x95\xfd\x47\x16\xa2\x50\xbc\x2a\xaa\x1f\x31\x89\xa2\x66\x73\xe6\x88\xe2\x68\x01\xd8\xcf\x3a\x7c\xc4\x6b\x34\x98\xc7\x42\xc8\x70\x94\x64\xcf\xda\x6b\x37\x7e\xb6\xda\x77\xde\x8d\xcb\xc5\x78\xe4\x24\x6d\x61\xb1\x84\x5e\x7d\x32\xf1\x3e\x8f\x3d\x9d\xe7\xba\x4e\x3a\xcf\xcc\x09\x99\x0c\xe4\xb5\x7e\x7a\x37\xe6\xba\x63\x33\xd9\xfd\x21\xe6\xf7\x70\x5a\xb2\x91\x14\x56\x9e\x7c\x18\x3f\x61\xd0\xb0\x1b\x75\x4f\x82\x87\x96\xcc\x24\xa6\x24\x3b\x0a\xb0\x0d\x06\xed\x79\xa7\x08\xeb\xe1\xd5\x0e\x19\x15\x27\x6c\xd2\x2f\x3c\x12\xb6\xd3\x32\x77\xde\x6d\xbb\x71\x47\x63\xa8\x3b\x6d\xb5\x67\xed\xf9\x0e\xb1\xa4\x1f\x7c\x88\x0a\x46\x12\xfc\xb5\x33\xe6\x17\xc6\xab\x99\x4c\xfd\x67\x6e\xa7\x19\x36\x6e\x6f\xc4\x98\xe2\x82\x46\xd3\x7f\x9e\x9a\x7d\x2b\xdf\xe9\x41\x64\x81\x9f\x65\x61\xa0\xe6\xd9\xb6\x73\x83\x69\xde\xde\x79\x75\xaf\xed\xdd\x3b\x50\xd4\xe2\xd5\x2c\xf7\x73\xdc\x85\xc3\x68\x09\x61\x52\x4d\xa7\x85\x47\xa9\x71\x5b\xfc\xee\xb4\x9c\x9f\x37\x4a\xea\x37\x73\xb0\x5a\x86\x42\x6e\x9e\xa3\x92\x81\x2a\x4c\x51\x51\x1c\x2f\x76\x06\xa4\xf2\xfc\x9a\xb0\x00\xbb\xdc\xce\x78\x2c\x39\x74\x95\x40\xee\x23\x1a\xfc\xf8\x04\x1a\x7e\x7c\xe1\xd4\xa2\x31\xfe\xf8\x05\x2b\xfb\xf1\x39\x27\xfc\xf1\x95\x6b\xcd\x6b\xfd\x6c\xd0\x5a\xff\x00\xd9\x0f\x97\x67\xc5\xb7\xd7\x70\x3a\xf5\xe3\xf9\x6b\x5c\xbc\x9a\x84\xdb\x6a\x66\x25\x68\x65\x0b\x44\xbf\x99\x23\x92\x68\xa1\xbc\xeb\xd6\xcf\xc6\x4d\xb1\x29\xad\x42\xa9\xe2\x01\x96\x7e\x2f\xc3\x54\xd6\x8d\xf5\xeb\x30\x66\xde\x47\xad\xdc\x39\xce\xa3\x23\x7a\x11\x41\x35\x3e\xc2\x68\xbd\x64\xb1\x84\x84\xca\x57\x88\x30\xf4\xf3\xc6\x61\x81\xe6\x39\x58\xa6\x50\xf5\x87\x61\xda\x0d\x83\x09\x73\xba\x6a\x12\x86\x6f\x02\x71\x2d\x7c\x2b\x39\x17\x8b\xf9\xb2\xed\x20\x5b\x32\x6a\x60\xe7\x45\x46\xc6\x3e\x48\x67\xd9\x87\x0f\x3c\xf8\xe7\x87\xa2\x73\xd9\x8b\xdd\xb7\x19\xde\x88\xb9\x5b\xe4\x82\xa7\xd5\x70\xb8\x2d\x35\x9f\xe3\xcd\xcf\x0f\x1d\x2d\x0a\x4b\x48\xc1\x14\x77\x02\x06\x08\x65\xde\x17\x28\x3c\xea\x02\xb9\x8b\x70\x90\x33\xbb\x3b\x56\xea\x93\x70\x16\x44\xc4\xa5\x32\xb2\x0b\x5d\x7f\x34\x8f\x96\x29\x1c\xfa\x4b\xe1\x5f\xbb\x8e\x74\xda\xd2\xd9\x62\x9e\xec\xf8\x0e\x6f\x57\x49\x58\x2e\xf1\xa1\xca\xcf\x52\x38\x35\x24\xa9\xdc\x41\x73\x87\x88\x0c\xa6\xee\xdb\xb8\x0f\x9f\x42\x36\x11\x82\x12\xfa\x92\x61\x9f\x18\xaf\x52\x16\x26\x76\x7b\xfd\x1f\xac\x63\x2e\xa2\x78\xb8\xdc\xfb\xaf\xbd\x57\x57\x29\x65\x79\x4a\x79\xca\x72\x94\x6a\x18\xf9\xdb\x54\xaa\x63\x19\xa5\x1c\xfe\xd9\xb2\x3a\xca\x24\xda\x8a\xb4\x52\xb7\xc6\xaa\x2b\x15\x69\xae\x55\xbf\xb2\x3c\x2b\xd2\x46\x4d\x0d\x37\xe2\x53\xf5\xd6\x55\xd1\xc8\x91\xb6\xe6\x5a\xa9\x7b\x8f\x1e\xb6\x5a\x59\x0d\xfe\x52\x57\xaa\xa9\x2c\x5f\x99\x37\xc7\xa6\x57\xaf\x28\x76\xe7\xd0\x97\x95\xa6\x4f\xca\xb7\xf3\x62\x54\xc5\x57\xce\xb1\x6d\xac\x16\x8d\xa6\xaf\x54\x5b\x59\xae\x32\xfd\x4f\x86\x74\x6d\x79\xd6\x8b\x36\xd7\x32\xa4\x3a\x0d\xa6\xcb\xf3\x6a\x5a\x9e\x32\xb1\xe6\xdf\x91\xb6\xf1\x8a\x06\xa1\x1d\xfa\xdd\xaf\xe6\x85\x52\xed\xd2\x6f\xdf\xc8\x78\x43\xe5\x8c\xf4\x33\x7f\x1e\x6a\xfa\xe7\xdd\x64\x65\xd5\x5c\x7b\x79\x29\x15\x69\x1a\xe1\x2b\x1a\x74\x8d\xfc\x75\x95\x77\x5a\xb5\x5c\x55\x53\xf7\xbc\x40\x4d\x1a\x7b\xdb\x14\x0d\xf5\xea\x96\xab\x94\x4b\xaf\x63\xdd\xe6\x32\x1d\x7a\xb8\xbe\xa3\xdf\x43\x4d\x63\x9a\x6a\xee\x06\x2d\x7b\xef\xda\x37\x23\x4d\x6b\xd0\xa0\x39\x9b\x36\x35\xc6\x2b\xde\xb2\xe9\x67\x9f\x7f\xf2\x06\xf7\xa8\x54\xdd\xb1\x3a\xb4\xbf\x27\x5a\x39\x23\x5a\x72\xdb\xa3\x17\xdd\x2a\x4d\xa7\xc7\xab\xe0\x50\xa3\x34\x7f\x5a\x3c\xd7\x6a\x28\x93\x1a\x5a\xd8\xa1\x36\x4f\xed\xa9\x96\x0d\x6e\x29\xd5\xed\x60\x21\x5c\xa5\xee\xb8\x87\xb9\xb6\xba\xca\x2c\x78\xe5\xf6\x1d\x7a\xbf\x71\x4a\x0b\x14\x62\x6c\x9e\x52\x3e\xc3\x57\x13\x3f\xbb\x34\x4a\x2a\x44\xbb\xdd\x34\x56\xdd\xea\x9b\xea\xa9\xc3\x3b\x28\xfb\xc5\x2b\xa4\xac\x50\x99\x8d\x3e\xd4\x65\x38\x6d\x29\xd5\x39\xc0\xb6\xf0\x5a\x9c\x63\xa5\x78\x22\xa1\xcb\xb0\x54\x95\xaf\xbe\x75\xa6\x8d\x3d\xe5\x5d\x6a\xf1\x52\x6e\x01\x0f\x4d\xae\xb9\x96\xf5\xaa\x2b\x75\x6f\xcb\xd2\xd3\xb2\xd2\xb7\x63\xde\x05\xaf\xc6\x80\x41\x80\x6e\x5f\x1b\xcb\x31\xb5\x16\xb5\xb5\x32\xb5\xa2\x95\xd3\xbf\x6b\xc5\x29\xb5\x52\xbd\xe6\xfe\x5b\x05\x48\x04\x0b\x8c\xff\x45\xf3\xd0\xaf\x2d\x57\xb9\xe7\x9a\xd7\x89\x47\x8c\xbd\xe7\xc5\xf6\xf8\x45\xd7\xa1\xf2\xcd\x2b\x1a\xdf\xd8\x5c\xd3\xab\x7a\x83\x3f\x10\xd0\x99\x27\x1e\x43\xab\x4e\x8b\xd5\xbc\xa7\x76\x18\xc6\xcf\x35\xa3\x46\xe3\x86\x06\xdb\x60\x78\x6f\xd4\x2c\x4f\xb9\x6b\x74\x5f\xb7\x1c\xbb\x5d\xa7\x4d\x3a\xd3\xc5\xe4\xdc\x29\x4f\xce\x1b\xa3\xd0\xab\xb6\x96\x9a\x50\xd6\x32\xca\x8c\x4c\xb1\x5f\x33\xfd\xb6\x53\x62\xa9\xef\x2c\x57\x39\x0b\xfb\xf3\x79\x34\xb0\xc7\xb5\x62\x22\x6b\x99\x48\x0f\x5f\x6e\x81\x1b\x9f\x4c\xc5\x25\x80\x78\xe2\xbe\x0e\x34\x03\xb6\xb1\x5e\xb4\x52\x2f\xfa\x89\xd7\x8f\xfb\x6a\xd6\x08\xd1\x37\xf6\xe7\x53\xf6\xde\xf2\x29\xab\xb1\x6e\x5b\x33\x6a\xc1\x11\xc2\x78\xc9\x90\xd5\x6a\xe4\xc4\x61\xac\x1f\xb9\x66\x2f\x7f\xf3\x3c\xe4\x39\xd7\x47\x26\xa7\x29\x83\x08\xa4\x74\x5c\x50\x9e\xe7\x09\x4a\x4d\xf3\x57\xee\x60\xc6\xbf\x19\x84\xef\x05\x7d\x50\x08\x7f\xc7\x04\xf5\x86\x29\x59\x4b\x60\xe6\x45\x0b\x65\x72\x54\xfb\x9e\x4b\xf5\x40\x6f\x41\xcf\x68\x0a\xe6\x18\x8d\xf4\x6e\x4a\x1f\x9a\xe5\x0f\x77\xa5\x0f\x9d\xd2\x87\xee\x7d\xe9\xc3\x31\xf5\x64\x0e\xf5\x0a\x63\x7c\x28\x7d\x0a\xe8\xcb\x1b\xea\x74\x9e\x4a\x1f\x42\x7c\x38\xe5\xa7\xce\x9c\xff\xf5\x52\xfe\xd7\xe0\xf9\xf9\x91\x4d\xbb\xd2\x19\xdb\xd9\x93\x2b\xcb\xf3\x66\xf7\x79\x08\xe7\x28\x4d\x2c\x67\xaa\xb1\x8a\xad\x19\x4f\xba\x87\x4a\xad\x19\x9a\x8d\x51\xf0\x84\xa1\xae\x75\x6a\xca\x4f\xf4\x67\x4c\xd0\xe0\x9e\x03\xe2\x16\x84\x4c\xb6\xbd\x65\x3c\xea\xa6\xd8\x53\x26\x2a\xe6\x91\x57\xd9\xb9\x9f\x30\x89\x69\x30\xcd\x0a\xc6\x9a\x60\xec\x40\x9f\x71\x85\x91\x3e\xd7\x02\x39\x3e\x2d\x49\x04\x6a\x83\x3e\x5b\x47\xd4\xb6\xb3\xd1\x4b\x7e\x5b\xe7\x61\xd5\x9f\x3f\x81\x34\x57\x39\x63\xc3\xcb\xaa\x9a\x47\xe8\x6d\xcb\xff\x66\xc6\x9a\x69\xa5\x9e\x63\x5d\xd4\x7a\xd1\xa5\x6a\x0b\xe7\x82\x0b\x76\x99\x39\xd4\x6f\x0a\xa4\xf1\x2f\x09\x2d\x9d\x43\xfd\xca\x4b\xd9\x3d\xcc\x9a\x20\xe4\xc0\x88\x1a\x4c\x21\xfb\x4c\x7e\x80\xa2\x8f\xc0\x3f\x7a\x8d\xe1\xb8\xaf\x25\x5e\x92\x72\x57\x9e\xb1\x86\x9a\x68\x17\xc3\x9d\x4b\x08\x9e\x30\x9a\x34\x99\x5b\x74\x2a\xb4\x42\xc4\x77\x08\xc9\x50\x84\x09\x38\xb5\x7f\xc4\xa0\x13\x7f\xfa\x8d\xc1\xc0\x59\x73\x4f\xc9\xa7\x25\x00\x70\x54\x44\x46\xc6\x28\x5e\x7c\xb7\xdf\x7d\xce\x07\x9e\x94\x08\xbf\xe3\x33\xab\xab\x52\x07\x75\x63\xf5\x94\xcb\x48\x6e\xab\x11\x4f\xd8\xd0\x1c\xfa\xbd\xec\xa7\x69\xd3\x92\x3c\x1c\x10\x1d\x0b\x46\xa6\xca\x7b\x43\x04\x5b\x1d\x68\xde\x9a\xdb\x5b\x60\x27\xff\xf3\x62\x08\x22\xa0\xd0\xf5\x17\x6c\x25\x4d\xcc\x59\x3b\xc4\xc2\x8c\xbd\x01\x3e\xbc\x30\xab\xed\x25\x4e\xf6\xc4\x0c\x8b\xe6\x7c\xc8\x1c\xb6\xc1\x3b\xe4\x54\xc0\x3e\x04\x89\x00\x13\x7e\x9b\x26\x1b\xf0\x72\xb5\x20\xcc\xd4\x21\x7c\xf8\x13\xfe\xd7\x01\x21\xf1\x97\xc4\x5d\xfc\x4b\xe7\x2a\x27\x00\x4c\x5a\xcd\xe3\x4d\x8e\xf8\xf2\xe2\x2e\x47\x78\x79\x71\x5f\x20\xba\xbc\x39\xd2\x39\x82\x2b\x8f\xb1\xe3\x29\x47\x6c\x79\x01\x39\x48\x18\x2e\xbf\x01\xcc\xd1\xb8\x1d\x30\x77\xf3\xb8\xe6\x19\x0b\x87\x3e\x33\x96\x4b\xa2\xc3\xb9\x3d\x66\x74\xf2\x40\x28\xfd\x5a\x4e\x1b\x9f\x2e\x78\xea\xc1\xa5\x9d\xbf\x7a\xd3\x0f\xa5\x26\x3a\x56\x21\x6f\x31\xdc\xee\xa3\xe4\x25\x5a\xba\x66\x3a\xc9\x7c\xb0\xc1\x28\xe2\x32\xf2\x38\xdb\x9d\x52\x67\x20\x72\xfc\x7d\x4a\x74\xc8\x24\xbc\x91\x9d\xd9\x87\xc6\x1c\x81\x16\x7c\x69\x5c\x62\xb7\x88\x25\x99\xdb\x99\x6d\x79\x56\xdf\xdc\xb4\x0f\xcb\x93\xcc\xc4\x10\x97\x86\x4e\xb0\xf7\xa2\xad\x09\x41\x0e\xef\xe0\x96\x41\x13\xbf\x4f\x20\xed\xde\x2a\x08\x54\x6a\xcd\x24\xca\x1b\x82\x68\x8e\x9c\x9c\x89\x4c\x75\xc4\x0f\x9d\xb1\x63\x15\xa2\xe9\xc3\x97\x9d\xd2\xec\xd1\x4a\x13\x3c\x66\x6c\x5b\x75\xea\xe2\xea\x0d\xeb\x3e\xc1\xc7\xa9\x34\x07\xa1\xcd\xf0\x50\x1b\x24\x11\xcc\xf8\x43\x3d\x2e\xba\x1b\xcc\xf9\x77\x6b\x91\xbf\x52\xc1\x9c\xd6\xd9\x5c\x82\xfc\x5f\x00\x3f\xee\x89\xfa\x38\xed\xca\x87\x15\xd9\x07\xfa\x42\x92\x3e\x03\x85\x3c\x67\xbc\xe9\x14\x4f\x2c\x18\x0d\x79\x8d\xfb\x58\xf0\x0a\x8a\x80\xb1\x06\xa0\xfb\x4c\xe0\x7c\x46\xa8\x4b\x5a\x61\x77\xec\x9c\x69\x51\x12\x5c\x6b\xab\xcd\xbd\x80\x17\x4b\x16\xdd\xb4\x98\xc5\xfa\x17\x8b\x46\xdc\x61\x89\x0e\x52\xe9\xa1\xce\x6a\x04\x11\x39\x26\x4d\x3e\x49\x30\xd9\x14\x14\xef\x7d\xad\x7d\xfc\x41\x04\x8d\xaa\x79\x8b\xc6\x11\x91\x9b\xa5\x71\x92\xfd\xce\xa9\x69\x73\x2b\x32\x2e\x49\xa1\x57\x0f\xd6\xb0\xa6\x42\x8f\x21\xdf\xb9\xe2\x26\x58\xc2\xba\x63\xda\x42\x30\xe1\xde\x5a\x9e\xaa\x42\x0c\xa1\xc9\x38\x10\xc8\x1b\x53\x9d\x51\x60\x22\xc7\x13\x61\x98\x90\xbd\x40\xf4\x0a\xae\x63\xe5\x42\x56\x83\xd1\xad\xee\xd2\xa0\x2a\x0e\x13\x49\x9f\x99\x5d\x33\x41\x7b\x4c\xc7\x7c\x86\xa3\xaa\x02\x35\xe1\xa6\x23\xbd\x66\xa6\xed\xbf\xa2\x79\xa6\x05\x13\x22\x95\x24\x0c\xf1\xab\x15\x80\xaf\xc6\x9b\xb6\xa0\x77\x66\xe3\xbc\x32\x0f\xed\x10\xf1\x55\x2f\xa0\x9c\xf5\x26\x81\xce\xc2\x10\x25\xea\xb5\xad\x86\x5a\x6b\xd5\xa2\xef\x21\x6f\x50\x48\x0b\xd0\x1f\x43\xcc\xeb\x1f\x12\x65\x76\x16\x7a\xc9\x3a\x62\x8b\xf4\x8a\x81\x68\x12\x1e\x13\xf5\xbe\x52\x7d\x03\x29\xd0\x90\xe8\x7b\xcb\xab\xbe\x01\x53\xe1\xde\xcd\xa0\xc9\x0b\x3b\x32\xfc\xee\x00\xa3\xad\x5b\x3d\xe5\x4d\x35\x73\x82\x8d\x6e\x5b\x46\x6d\xb5\x13\x70\xa3\x9e\xd5\x55\xfb\xe6\xe6\x4a\x1e\x3a\x6a\xeb\xe4\x0f\x5d\x2b\x32\x26\xbd\xe2\xee\xef\x9f\xa9\xdd\x99\x88\x4d\x0c\xe3\x87\x3a\xe7\x4e\x9e\xe2\x7e\x64\xe3\xea\xea\xe6\xda\x5a\x6a\xab\x6f\xec\xa7\x8d\xfb\x1e\x6c\x5e\x5d\xe0\x24\x43\xcf\xd8\x40\x53\x30\xca\x5c\xcf\xaa\x56\xc0\xa2\xb5\xa3\x54\x9b\xc1\x67\xe0\x90\x0a\x05\x32\xdb\xae\x42\xed\x73\x49\x77\x82\x50\xd8\xae\x31\x35\x9e\x56\xb9\x0d\x65\xf9\x56\xdf\x5c\x3f\xac\x4b\xda\x5a\xc7\x72\xad\xbe\x51\x82\x26\x27\x50\x72\x89\xa6\x41\x09\xf1\x37\xd0\x96\xb6\xae\xd5\x52\x66\x50\xf9\x30\xd6\xa3\x12\x79\x6b\x30\xcc\x5c\xd8\xbc\x7b\xac\xd6\xa8\xbb\xd8\x80\x4b\x32\x1a\x41\xde\xe3\x2d\x89\x00\x6d\x8c\xe0\x9e\x03\x25\xbe\x61\xcd\x8d\xa9\xc5\x55\xeb\xe4\x4e\x2d\x35\x6b\x6e\xa9\xbe\xb2\xea\x2a\xdc\x32\x85\x3f\xd1\x63\x87\x85\x7e\x50\x47\xa1\x84\xb4\x3e\xee\x80\x21\x14\xb4\x0c\xad\x31\x8c\xf5\x41\xa4\x1a\x56\x8f\xd4\x55\x54\x68\x7a\x82\x4d\xef\xbe\x57\x40\x5a\xfd\x36\xab\xa1\x33\x52\x5a\xeb\xcf\x0b\x5d\xa0\xe2\xc0\x72\x49\x4e\xa6\xca\x2c\x97\x36\x98\xc5\x0c\x78\x2c\x04\xbd\x07\xfa\xca\x6a\xa8\x8d\x56\xea\x13\x44\x59\x32\xb8\xd5\x0f\x78\x55\x3a\x87\xc0\x07\x33\x87\x45\x83\x36\xf7\xd1\x94\x84\xaf\x7a\x95\xf5\x99\x33\xc2\xc2\xc6\xa1\xc6\x22\xd6\xe7\x3c\xa7\x00\x82\xd4\x02\xef\x5e\x0c\x1b\x3c\x66\x2c\x70\x2e\x44\x28\xad\x5f\x68\x92\xd4\x4c\x3b\x45\xa1\x15\x14\xf3\x4a\xb9\xed\x09\x6f\x22\x04\x41\x9e\xc8\xa1\x29\xba\xe9\x2a\x73\x27\x1d\x6c\xc5\xc2\x62\x94\x79\xba\xe1\xd2\x44\x7d\xdc\xc7\xf8\x5d\xff\x04\x62\xfe\x06\x43\x4d\x4d\x1b\x28\xcc\x64\xb7\x49\x0b\xe7\xac\x35\x16\xed\x4c\x67\x03\x6e\x91\x28\xc5\x78\x32\xb5\x0b\x18\xc7\x3a\x11\x45\xba\x31\xb0\x04\x78\xfc\xb6\x21\x9a\xdd\x1d\x8f\x9b\x25\x1c\xf5\x44\x78\x38\x31\x4f\x25\x4b\x13\x86\xd5\x78\xb3\xad\x8e\x3a\xd1\xac\x37\x1f\x6a\x75\x52\x15\xb8\x25\xf6\x0b\x7b\xc4\x9b\x8e\x1d\xec\x8c\x9d\xad\xaa\x33\x48\xb1\x59\x2b\x9b\x0a\x9a\x5b\xd9\xbb\x23\x3b\x5f\x82\x47\x2c\x41\x92\x97\x9b\x6b\xe5\x27\x9a\x05\x88\x86\xc3\x5a\xe6\x8a\x9b\xdf\xe8\x05\x9a\xdf\xda\x8c\x15\x6f\x76\xf6\xd4\x53\xee\xa1\x6e\x71\x85\xd4\xfc\x82\x8c\x41\xb2\x03\x34\x77\xa8\xef\x63\x12\xad\x3f\x23\x5d\xc4\xfe\x48\x38\x18\x9b\x53\xa7\x58\xc8\xb9\x53\xa6\x7d\x52\x98\xf6\xde\x2c\x48\x87\x29\x4d\x03\x50\x58\xa7\x8d\x36\x89\x16\xd3\x04\x40\x27\xdb\xae\x88\x14\xb8\x77\x65\x55\xab\x49\x72\x72\x6c\x5f\xd3\x78\xc3\x8d\x5d\xee\xe8\x82\x45\x1d\xff\x8d\x94\x7e\x47\xa5\x0e\x91\xd4\x95\xe3\x54\x73\x92\x7a\x56\x26\xa9\x43\x7d\xc7\x7b\xf8\x62\x0a\x74\x4b\xec\x82\xf5\xbd\x10\xc6\x0b\xaf\x4c\x04\xb1\x9e\xdf\x49\xf3\x24\x27\xf8\xaa\xb6\xb0\x8f\x34\xc3\xde\x11\x08\x31\x37\x53\x17\x4a\x1c\x81\xab\x7b\x10\xab\x5c\xab\xa3\x26\x9a\x8d\x1b\xa3\x4f\x61\x24\xc9\x60\x44\x26\x75\x86\x69\xaf\xdf\xbf\x24\x7c\x3a\x77\xcb\x78\xae\xac\x86\x72\x37\xf6\x04\xe4\xa5\xce\x02\xd1\x8b\x10\x31\x01\xf9\xb7\x9d\x56\x86\x00\x93\xc3\xf7\x2f\xa9\xbf\x51\x6d\xb7\x69\xfa\xbb\x75\x08\x0b\x47\xce\xed\xd7\x90\x27\x8d\x44\x36\xf1\x83\xee\xf1\xfb\x97\xd4\xdd\xb8\xf6\x61\xd0\xa7\xd9\xa0\x3f\x00\x27\xd1\xd9\xea\x01\xad\xea\x1b\x73\xc8\x03\xed\xbc\x99\x7c\x3f\x5f\x0d\xb6\xf0\xc8\x64\x92\xa4\x73\x07\x51\xcd\x72\xd4\x44\x8f\xb5\x50\x65\x7a\x03\x85\xab\x4e\xc4\xbc\x75\x48\xbb\x75\xc7\xac\xb6\x4d\xd0\x61\xaa\x10\x4d\x48\x53\x67\x76\xf9\xe0\x14\x6f\x49\x8b\x77\x59\x1a\x6b\xc3\x96\xa7\x78\x34\x1b\x6e\xfc\x45\x2b\x98\x84\x98\xa7\x30\xb5\xa9\x0f\x58\xee\xe1\xe1\x17\x2f\xcc\xa5\x40\x03\x6c\x08\x3c\x87\x00\xbb\xc8\x95\x1b\x09\x4d\xfd\xda\x23\xa9\xe6\xb6\x6b\xd5\x55\x13\x06\x33\xb4\xd6\xe4\x6a\x66\x40\x90\xe7\xb2\x2d\x69\xa8\x97\x9a\xb4\x61\xd5\x63\x76\xa1\x1e\xe7\x2c\x09\x4d\x34\xcc\xa2\x4c\xde\x13\x7b\xc6\xb2\x0f\x09\x9f\xcd\xc7\x62\x2d\x5a\x99\xad\x36\xb7\x93\x0d\x21\xeb\xf8\x44\x05\x4c\x02\x71\xc2\x2f\x64\x33\x23\x26\x1e\xd8\x7e\x3c\xc6\x7b\x58\xd1\x5f\xb8\x91\x01\x4b\xac\xfb\x5a\xb1\xa9\x06\x12\xea\xb1\xfd\x91\xae\x40\xd7\x87\x50\xc2\x42\x07\x24\x16\x9b\xd6\x50\x9d\xd4\x36\x36\x89\x1a\x6c\x72\x5e\xb3\x71\xd6\x63\xcd\xb0\x03\xe0\xe8\x4e\x89\xb8\x10\xb1\x90\x21\xc3\x90\xd5\x9d\xf2\xa0\x8f\x35\x8c\x58\x2d\x60\x94\xa8\x2a\x11\x03\x60\xf6\xc4\xd4\xc9\xac\x0d\x74\xf6\xee\x2b\x63\x70\x78\x2b\xfa\xc3\x04\x36\x7c\x16\x2a\x59\x79\x0b\x98\x60\x42\xcf\xef\xa7\x90\x22\x2f\x18\xcf\x5b\xbc\xdb\x50\xc2\x69\xa1\x2b\xb5\x43\x10\x37\xec\x2e\x2a\xba\xf2\x0e\x82\x12\x35\xd0\x51\xa6\x62\x56\xb4\xdb\xee\x35\xad\x91\x57\x61\x41\xa6\x8a\x91\x13\xf0\xbb\xca\x28\x06\xf9\x8d\x2e\xad\xde\xab\x28\x8c\x86\x64\x56\x71\x85\x74\x95\xb9\x9d\xeb\xac\x9e\xa7\x9c\x36\x50\x9d\x25\xa4\x89\x4e\x3d\x70\x4a\x0f\x4a\xcd\x92\x87\x3d\xd1\xb0\x38\xb1\x11\x46\x79\xac\xcd\x9b\xd8\x2c\x4d\xd1\x8c\xfb\x30\x81\x78\x44\xbb\x1b\xb0\x6d\xd3\xe3\xd9\x74\xd8\x38\xc5\x25\x09\x44\xb7\x3a\x2e\x21\x57\x27\xc1\xbf\x25\x0d\xce\x3c\x50\xad\x47\x55\x60\x50\x87\x1a\xee\xf2\x02\xf3\x6b\xb5\xd4\xf2\xde\x28\xf3\x46\xda\xaf\x0f\xae\xee\x29\xe7\xae\x00\xca\x2e\xad\xbc\x79\x40\xdb\x0d\x8c\xb2\x95\x52\x61\x33\x12\x73\xa0\xf8\x4f\x5a\xc4\x82\xcc\x21\x40\xf2\x88\x97\x2e\xd6\x0c\x93\x73\xc3\x30\x79\x6a\x1c\x6c\x6c\x4d\x68\x71\x83\x56\x85\x8b\xc3\xb4\xb6\x40\xf1\x17\x14\xbf\x44\xf1\x17\xcd\xc6\xdf\x16\x71\x3b\x73\x89\xe2\x33\xc6\xdc\x35\x8a\xbf\x72\x71\x67\x43\xfc\xc9\xee\xb1\x6b\x60\x5a\x65\xe8\x5f\xf1\x5e\xb6\xcf\x4a\x02\x0f\xc6\x7f\x09\x13\x11\x16\xf9\x42\x8c\xee\x8d\xcc\x6e\xb3\x28\x70\xf2\xd8\x30\x1b\x5a\xe9\x4a\x2e\xf4\x64\x86\x7b\xe5\x75\x01\x10\x24\xdf\xb2\xc6\xd2\xec\x31\xb8\xb0\x41\xad\xe9\x33\x0d\xe5\xa1\x37\xd9\x80\xb9\x86\xc1\xb9\x07\x12\xd8\xec\xd3\x72\xf7\x07\xf2\xdb\x25\x46\xee\x11\x16\x8a\x58\xcc\x36\x1d\xbb\xa0\x61\x50\xec\xf0\xca\xa4\xb0\xdc\x9d\x03\xcb\x08\x26\x6e\x87\x57\x98\x84\x51\xe6\x81\x50\xbf\xda\x85\x99\x28\x98\x8a\x62\xcd\x65\xeb\x13\x02\x45\x77\x61\xa6\x9e\xd0\x7d\x57\x35\xef\x98\xe4\x0d\x09\x56\x07\x01\xc9\xdc\xcf\x61\xa9\xfb\x26\x5b\x3d\x0c\x6b\x48\x44\xf6\x98\x88\x1c\xe9\xbe\x43\x84\xae\x0f\x96\x5c\x67\x3a\x67\x22\x98\x57\xdb\xac\x44\xc0\x0f\xc1\x1b\x79\xc7\x86\xaf\xae\x62\x04\x61\x13\x14\xd6\x25\xf0\xd9\x99\xa4\xc7\x30\x5a\x9f\x30\xb6\x04\xa7\x1e\x04\xda\x39\x74\x21\xd8\x69\x1a\x31\x98\xec\x45\x66\x00\xa4\x8e\x9a\x98\xbe\xb8\x8a\x88\xfc\x7b\x99\x13\xad\x5e\xc7\xb8\x48\x07\xda\xc7\xfe\xca\x0e\x0e\x21\xc6\xc0\x44\xb8\xc0\xaa\xb2\x38\x12\x38\x30\x7e\x33\x4d\x58\xf1\xe2\x09\x46\x0d\x69\xe6\x66\xcd\x7e\x8d\xeb\x9a\x2c\x9c\xa3\x1c\x88\xa9\xec\xdb\x69\x03\x12\x59\xe2\xca\x98\x9f\x97\x95\xdb\xe4\x26\x00\x47\x39\x6d\x56\x60\x9b\x15\xd0\xf5\x03\xaf\x00\xcd\x2e\x36\x8a\x17\xc3\xbf\xb8\x62\xd1\xd9\xb0\xe1\x09\x6c\x01\x5f\xbc\x39\xcc\x1c\x2b\x5e\xad\x06\xfb\x09\x49\x49\x26\xb1\xd9\x6a\x90\x08\x55\x57\xdd\xeb\xc2\x4c\x00\x91\x6a\xed\x16\x22\xd5\xca\x2d\x44\xaa\xb5\xfb\x2b\x91\x6a\x68\x2f\x68\xb4\xb1\xad\x44\xb2\x3a\x03\xc4\x71\x6b\xf5\xf6\x8a\x2b\xd7\xa7\x57\xa4\x9a\x3f\xee\x68\xe6\x39\xdb\x68\x4e\x59\x3f\x79\xcc\x4c\x3e\x7f\xc6\x8d\xb6\x65\x6e\xb4\x00\x37\x82\xfd\xbf\x2b\x5a\x48\x93\x6b\x1e\xb1\xd1\xa2\xf7\x22\x82\x1f\xcb\xb3\x97\x46\x7a\x80\x6f\x40\x4a\x9e\xd8\xd4\xf9\x50\x43\xfd\x2b\xbf\x34\x53\x7b\xe7\xe5\x9c\x09\x62\x63\x0e\xa2\x7a\x0e\x20\x82\x05\xe1\x38\xeb\x9b\x26\x3c\x04\x5f\x4c\x68\x5b\x9c\x8d\x83\x6f\xc4\xe5\x72\x16\xc5\xfb\xd6\x23\xe8\x89\x33\x23\x23\xe3\xc5\xbd\x08\xdc\xac\x56\x5d\xc3\x41\xd2\xc7\x8e\xf0\x18\xcc\x02\x6e\xb9\xee\x96\x97\xbd\xf7\x56\xa5\x79\xad\xf5\x01\x1e\x6d\x91\x61\x3a\x84\x10\x97\xfc\xae\x85\x0d\xea\x9d\x93\xb4\xef\x26\xfa\x96\x67\xb2\x74\x59\xfe\x38\x66\x11\x3c\x32\xa0\xb4\x90\xaa\x2e\x49\xce\x34\xa9\x81\xc9\x95\x24\x1e\xb7\xcb\x06\xc9\x27\x45\x62\x58\x73\x41\x8b\x50\x1d\x6b\xac\x42\x17\x95\x6e\x48\x30\x9a\xca\xd8\xac\x86\xf2\x9e\xc5\xe0\xf3\x4b\x15\xe6\x14\xa6\x88\x25\x8b\x32\x37\x24\xe0\x1d\xda\x6d\xfa\xbe\x85\xf4\x06\x57\xe3\x01\x0f\x2f\x36\x68\x6c\xbf\x2a\xec\xad\x0e\x12\xe6\xaa\xad\x7d\x77\x51\x25\xd2\x33\xa4\x29\x13\xd9\xe4\x31\x75\x81\xf5\x47\x08\x27\x78\xb1\xb3\x55\x28\x46\x04\x21\xbf\x3b\x22\xd0\x15\x77\x2f\xdc\xe0\x0d\x6e\xa6\xc5\x9b\x6d\x75\x94\x97\x5e\x5d\x50\xd1\x85\x4d\x92\xee\x8b\xed\x1c\x17\x9a\xcb\x85\x06\x06\x71\x01\x35\x14\xa3\xc4\x9a\x77\x11\xe2\x75\x8c\x75\xf5\x27\x30\x3f\xb3\xfb\x68\x2a\x96\x86\x8c\x1e\x74\x2a\x50\x26\x60\x60\xed\x0b\x7c\x71\x53\x15\x10\xb6\x33\xd0\x7f\x6e\xe2\x9c\xc9\x52\x0a\xda\x76\x81\xa6\xae\xd0\xbd\x2b\xbc\xa8\x41\x3c\x90\x77\xd5\x9c\x3b\x05\x98\xb6\x0e\xa1\xef\x0f\x7d\xe6\xc1\xfa\x12\x04\xce\x6c\x4d\x01\x9a\x6f\x26\x17\x01\x4e\x35\x80\xfb\xae\xd4\xc2\x0a\xd3\x00\xfd\x19\xfb\xb4\x3c\xa7\x32\x78\x56\xba\x3b\x23\x58\xaa\x78\xee\x47\x90\xde\x9e\x78\x05\x5e\xb1\x10\xdd\xa8\x4a\x9d\x75\xc7\x54\xce\xbd\x84\x56\x33\xa9\xca\xc4\x0b\x37\x0d\x51\x8d\x95\x9b\xba\x40\x76\x4f\x79\x87\xb5\x8c\x56\xf9\xea\xa5\x7a\x7b\xea\xe6\x1a\xe3\x44\x34\xc6\xad\x5b\x90\xb7\xb7\x5a\x41\xde\xb6\xb5\x82\xbc\xbd\xd5\x7e\x49\xde\x0c\xc8\x9b\xc9\xc8\xdb\x3e\x58\x0e\xb7\x56\xbf\xdf\xc2\x0f\xb3\xa0\x69\x3b\x4f\xff\x09\xf2\x76\x50\x26\x6f\x09\x3b\x4b\x30\x2d\xd5\x62\x83\xb5\xdd\x1e\xfd\x1e\xb1\x0b\xa7\x34\xba\xb6\x12\x81\x55\xd0\x66\x08\xbd\xe3\xb0\x56\xaa\x5c\x47\xb8\x07\x0d\xe5\x8c\xe1\x87\xb5\x64\x15\x30\x13\xdb\xb0\x09\x38\xd2\x1b\x28\x77\x51\x8d\xa3\x34\xc4\x2d\x6b\x94\x19\xd9\xbc\x73\x1d\x06\x24\x88\xa5\x62\xe4\xdf\x17\x67\x41\x2d\x23\x9d\x84\x86\xbb\x2f\x5f\xd8\xed\x7e\x6c\xe0\x28\x69\x42\x7d\xfd\x8c\xba\x46\x25\xf8\x04\xef\x96\x26\xd8\xba\xb1\x70\xe6\x85\x36\x6c\xaa\x27\x3a\xa3\xbe\x1d\xe5\x0e\x60\x7f\x93\xe1\xcf\x6a\xb4\xb6\xc1\x75\x2e\x18\xbd\x99\xb4\x5a\xa2\xbe\x11\x6f\x54\xc8\x06\x50\x43\x8a\x99\x57\x7d\xa1\xb1\x2d\x0c\x63\xbe\x71\xce\x33\xa0\xeb\x59\x43\x6d\x4e\xe7\x02\x78\x70\xcc\x96\x5c\x0a\xee\xe7\x2e\x05\x62\xd6\x67\x5a\x82\x50\x08\xad\xa1\x83\xe4\x9e\x85\x4c\xde\xcc\x8c\xc5\x5b\x1e\x29\x8b\x9d\xe6\x8e\x67\x7f\x4e\x42\x80\x9a\xc0\x21\x9c\xe8\x13\x88\x06\x6f\x5c\xce\x7d\x61\xcc\x3a\xd1\xb0\xed\xb5\xe6\xd0\x35\x18\x55\xdd\xf5\xb5\x44\xba\xd0\xf8\x11\x0e\xc1\xee\xaa\x37\xa6\x75\x43\x34\xb8\x10\x75\x53\xda\x3b\xba\xb6\xba\x84\xc4\x89\xf7\xfb\xed\xc5\xfc\xc6\xff\xb7\x8f\xf3\x90\x79\x45\xbd\x02\xc7\x8b\x75\x66\xac\xbe\x69\x4f\x45\x77\x47\xdc\xc6\xf8\x86\xab\x46\xec\x85\x7f\x04\xd3\x9d\xe2\xdd\x84\x18\x94\x19\xeb\xcd\xcd\x27\xbb\x52\x78\xc7\x2e\xae\xb9\x93\xcb\x6b\x1a\x3c\x8b\xc2\x2c\x16\xe6\xc6\x6a\xde\x3f\x08\xf0\xbc\x63\xf5\xd3\x6b\x36\xa3\xd7\xd6\xf6\x47\x87\x4f\xde\x32\xbd\x99\xb3\x62\x71\xb3\xc8\xa2\x95\x0a\x1f\x92\xb5\xd5\xb4\xc6\x3e\xab\xfe\xce\x2f\x9c\x48\xec\x0d\x34\x62\x9c\x67\xdd\x6f\x27\x6e\x6d\x1f\xf2\x6d\xa5\x6e\xe5\x41\x26\x43\x9e\x6d\x7f\x94\x47\xa3\x99\x54\x47\xfc\xd0\x1d\xcb\xbb\xdc\xc7\xb7\x25\x7a\x67\x16\x66\x22\x1f\x02\xe5\x65\x52\x6b\x57\x39\xcf\x44\x80\x19\x0e\xaf\x14\x10\x33\x29\x42\xdc\xf2\x06\x3a\xca\x4c\x0d\x82\x0a\x3c\xde\x35\xd5\x4b\x49\xa1\xee\xb3\xfa\x74\xaf\x8e\xae\x65\x3e\xb0\x1a\x36\xc1\xd0\xcc\x5a\xaf\x6f\xb2\x41\xab\xee\xeb\x0d\x01\x47\xaf\x06\xe6\x07\x7e\xec\x01\x1a\x42\xe5\x3e\x5d\x63\x01\xa1\x02\xf8\xe2\xe3\x21\x5d\x4a\x93\x60\x6c\x9e\x99\x57\x85\x2d\xe9\x62\xc5\x61\x09\x4c\x97\xc3\x2e\xe9\xc0\xcf\xac\x8a\x05\xd0\x97\x8f\xd9\xb9\x91\x90\xca\x4c\x5d\x62\x67\x3b\x4c\x4a\x99\x40\xf6\x0e\x49\x6a\x26\x7a\xc8\xb4\x9c\x20\xd3\x6d\x5f\x96\x41\x08\x51\x69\x27\x37\xf9\xae\x0f\xf5\x1b\x7f\x77\x0f\x6e\x4a\xde\x09\x76\xf7\x37\xaf\xac\x86\xba\x65\x16\x7e\x33\xe5\xed\xae\x1e\xd5\x01\x57\x1d\xa5\xfa\xf1\x8d\x95\x07\xff\x9d\xea\x09\x2c\xd8\xa0\x02\x8c\xff\x4f\xaa\x28\x4b\x0c\x26\xd6\xe0\xd4\x0d\xe6\x1f\xaa\x77\xc8\x0a\xcc\x40\x2a\x1e\xb0\xc0\x5b\xaf\xb0\x1e\xf3\x7c\xc6\x2f\x8f\x34\xc2\x0e\x5a\x50\xd9\x3d\x58\x75\x9b\xaf\xb6\xe5\x13\x68\xa5\xe6\xcd\x2e\x94\xfc\xe6\xb4\x91\x03\xd2\x48\x7f\x80\x24\xe7\x70\x87\xc0\xf5\xb3\x90\x34\xf6\x60\xb4\x94\xea\x4f\x19\xfa\x4f\x61\x73\x3a\x82\x2c\x76\x8c\xa5\xd9\xd6\xd1\xe1\xb5\xa0\x2f\xc4\xf7\x56\xdc\xb0\x3e\xb8\x9d\x9b\xa4\xdf\x7f\x74\x3b\x4f\x3f\x52\xd7\xa3\x32\x1e\x03\x88\x1b\x40\xfe\x56\xf1\xe4\xe6\x6a\xb3\x37\x15\xdf\x77\x4d\x62\x5e\x24\x82\xa7\x14\xb5\xc5\xec\xa8\x08\xec\x72\xc6\x1a\xf6\xae\xe6\x1b\x33\x62\x63\xbd\x6a\x65\x26\x0c\xa1\xf6\x94\xc3\xd8\xcc\x8c\x03\x51\x2b\xe6\xea\x93\xd1\xe5\x71\x08\xf0\xcb\x36\xe0\x54\xae\x8f\xd9\x52\xde\x8a\xf2\xa7\x26\x81\x37\xac\x19\xf7\x1b\xde\x0a\xb1\xca\xb0\xfc\x3f\x72\x88\x24\xf7\x60\x20\xf7\x10\x1e\x63\x08\xaf\x0f\xaf\x58\xa1\x84\x25\xd0\x65\xdf\xe6\x19\x87\x4b\xd6\x17\xf9\x14\x48\x6d\x65\x89\x85\x74\x06\xf3\xc2\x2e\xba\xae\x90\xd2\xa7\xd1\x6d\x3e\x68\x73\x6d\x0d\x5d\x65\xd4\x10\xca\x82\x2c\x54\xc9\x02\x54\x5f\x97\xdb\xe4\xa0\xb2\x4b\x0d\xbe\x5b\x8a\x5f\x33\x83\x57\x2e\x56\xdf\xbc\xdf\xd9\x89\xb6\x42\xe5\x9c\x7e\xc9\x23\xb7\xbc\x63\xec\x10\x34\x97\xfa\x90\xa3\x95\x1a\x08\x6b\xf1\x60\xbd\xf0\x0f\xb0\xa9\x87\x28\xc9\x0b\xe4\xf6\x79\x42\x07\x6c\x29\x06\x3b\xf1\x40\x59\xbc\x57\x14\xe3\x98\xd2\x8d\xc7\x54\x83\x47\xb6\x80\x06\x72\x76\x23\x81\x10\x23\x17\xf8\x0a\x51\xf6\x0f\xe2\x2a\x44\xdc\x83\xd3\x31\x8b\xab\xa8\x65\xa1\xa8\xef\xc2\x82\x19\xfa\x95\xd8\x94\xde\x81\xd9\x67\xf1\x83\x47\xfc\xb5\x73\xdc\x28\x21\xc0\x09\x3f\xb4\x4e\xcb\x15\x7d\xd0\xc6\xeb\xf7\x7b\x73\x4e\x5c\xe3\xd3\xc0\x0b\x09\xfc\x78\x65\x3a\xd4\x79\xe3\xb1\xf8\x43\x16\x89\xba\xa3\x6a\xf6\x44\x30\xb3\xc2\x92\x30\x37\x9c\x02\x54\x8e\x24\x5e\x89\x96\x87\xa1\x78\x2a\x1c\xdd\x9f\x5d\xe5\xe1\x58\x61\x7c\xc5\x41\xbb\xaf\xcc\x48\x3b\x00\x85\x10\x80\xd1\xda\x88\x4d\x86\xb6\x45\xdc\xc6\x43\xfe\xd2\x48\xf9\x9f\xb3\xaf\xad\x86\xd5\x37\xb7\xb1\x0b\x5b\x4d\xb6\x90\x6c\xd2\xdb\x12\xd2\x59\x33\x63\x94\x82\x66\x40\x62\x7e\x98\xd2\x86\x0c\xe0\x77\xed\x4e\x31\x90\x83\x46\x31\xf1\x35\x13\xe6\x45\xee\x4f\x14\x43\x72\x39\xdc\x74\x66\xca\x01\x14\x57\x96\x84\x23\x1b\x78\x38\x3c\xe8\xd5\x2f\x28\x14\x1b\x38\x34\x8b\xe6\x58\x80\xe1\xf0\x0a\x73\x3f\xd2\xe5\xc8\xd3\x67\x16\x9e\xdd\xf7\x71\xa7\x15\xf3\x79\xdc\xa9\x7f\x9c\xc5\x9d\x7a\xca\x6d\xcc\xcc\x8e\xc6\xd2\x35\xcf\x97\xb0\xf4\x2e\x79\xbf\xbb\x87\xcc\x31\xa7\xbc\x8a\x17\xfc\x77\x2d\x1a\xfd\x2c\xd7\x3c\xbd\x37\x54\x79\x85\x91\x4b\x02\x4e\x33\x95\x35\x9f\xc1\x1b\xcc\x4a\x5b\x90\x31\x90\x5f\xef\xf4\xa6\x58\xa6\x33\xfc\x06\x80\xac\x6f\x78\x99\x80\x62\xa0\x0f\xee\xf9\x0d\x04\x5a\xfa\x7d\x92\xff\x36\x53\x07\xf2\xe5\x31\x5e\x1d\x15\x68\xee\x4a\x54\x87\xef\x5a\x75\x35\x74\x9a\x34\xd9\x53\xfb\x19\xc6\x80\xd4\x05\x12\xdb\x4c\xd6\x62\xde\x90\xf6\xec\x0a\xe1\x5e\xe2\x21\xf2\x94\xc3\xaa\xf2\x44\x43\x43\x98\x6a\x08\x2a\xdd\x8d\x2b\xc2\x1c\x8d\x65\x55\x15\x8a\x26\x21\xd5\xb1\x01\x55\x09\xc6\x50\x69\xc0\x63\xf7\xf5\x4e\x29\xe7\xcd\x80\x45\x75\x0e\xd1\xd6\x90\xc7\x03\xc3\x81\x39\xd6\x47\xfc\xd8\x8b\xd1\x84\x38\x05\x36\x06\xb4\x1e\x36\x9c\x80\xa5\x6c\x96\xd7\xba\xa7\x44\x37\xda\xde\xf1\xc7\xb6\x9c\x58\x43\xd7\x63\x43\x8e\xa9\x81\xec\x9f\xdf\x58\x2d\xe2\x3e\x17\xbc\x5a\x9d\x2b\x62\x03\xf7\xbc\x0f\x30\x74\x74\xde\xa0\x38\xbc\xfa\x24\x9f\x1c\x4a\xd8\xed\x25\x76\x05\x4a\x92\xa7\xdc\x4b\x78\xc2\xa4\x91\xec\x2b\x69\x4f\x12\xfb\x05\xbc\xe3\x2d\xef\xa8\x52\xa1\x16\x02\xb4\x4e\xb8\xe2\x09\xaf\x4c\x9b\x71\x19\x31\x6b\x6d\x25\x61\x90\x3e\xff\x6e\x28\x67\x61\xf3\xee\xf2\x92\x79\x09\xb5\x6e\x23\x46\x09\x01\xa9\x34\x33\x05\xfe\x21\x9d\x66\xa3\xb9\x2a\x60\x46\xe5\x38\x77\x08\x9c\x03\xc1\x68\x60\xf4\x53\x36\x70\xdf\xf1\x50\xf8\x83\xa9\xb2\xd5\xbc\xd3\x04\xd2\x73\x28\x3d\x07\x8b\xd3\x67\x57\x99\xf6\xc7\xcf\x89\x5e\xb1\x89\x58\xa2\xb0\x9e\xbe\x2a\xe0\x01\xfd\x61\x44\x63\xcc\x76\x72\xb3\x0d\xe1\x3a\x55\x6b\xc0\x99\xd7\x50\xee\xd4\xa6\x49\x98\x88\x97\x63\x0c\xaf\x06\x13\xc8\xbb\xdc\xe1\x22\x11\x88\x5d\xf1\xde\xf8\xca\xd9\x18\x55\x6e\xc6\xcb\xdd\x0d\x29\x28\x0d\x94\xe6\x4e\x13\xdc\xde\x57\xde\x29\xc7\x60\x79\xf7\xbc\xf2\x4c\x16\x52\x0d\x33\x4f\x23\x73\x2c\xfa\x04\x90\xbc\xe5\xdc\x45\x6a\x2b\xcb\x35\x6b\xa7\x0d\x6b\x0b\x68\xe9\x92\x3d\x07\xcf\xb9\xd6\xa9\xbc\x94\xc5\x8f\x0e\x44\x13\x7a\x22\x51\x78\x5d\x2f\xd3\xb0\x33\x0e\xd9\x69\xbe\x41\x4d\xdb\xa7\xa5\x9a\x98\xd4\xa6\x51\x54\x34\xe3\x2b\x6c\x68\xdd\x05\x33\x09\xc4\xe7\x3a\x09\xa0\x4f\xd4\x70\x09\xca\x05\x55\x72\x94\xbb\xd0\xb0\xb7\xd5\x95\xba\x66\xbc\x21\x01\x81\x1e\x32\x07\x9b\x14\x74\x62\xb8\x67\x56\xba\x6c\xc4\x4c\x7c\xf1\x9a\x36\x94\x71\xf6\xed\xf2\xa7\x73\x36\xfc\x0c\x20\x46\x39\x3d\x66\x6b\x10\x53\x9c\x53\x5d\xa8\x03\xce\x0b\xdb\x86\xea\x85\xe3\xac\x9e\x54\x4b\xa6\xa8\x19\x0c\x85\x10\x43\x2f\x99\x58\x3b\x5b\x82\x2f\x7f\x64\x60\x1e\x61\x33\xd7\xcd\xd8\x87\xbb\x15\x4f\xaf\x99\xa7\xc0\x70\x50\x0b\x6d\x28\x74\xb4\xd6\x21\xc4\x84\xf3\x6b\x58\xca\x5e\x21\x02\x1c\xe3\x6d\x72\x25\x0b\xd6\x40\x05\x4f\xa9\xee\xfa\x96\x51\xe3\xf5\x96\x9f\x20\x85\x77\x4e\x60\x6d\x85\x81\x0a\xab\x6c\x4f\x9b\xe5\xb3\x21\x32\xfc\x83\x46\x6e\x79\xf4\x46\x8d\x6c\x57\x68\x3c\x67\xf5\x62\xde\x53\x3e\x43\xf1\x06\x5d\x27\xba\x2d\xed\xa1\x03\x4a\x05\xeb\x92\xc3\xfe\x70\x6f\x64\xa4\x4d\xab\x69\x0e\x35\xc0\x6a\xe9\x5b\xff\xc0\x06\xea\x88\x0d\x34\x62\x12\x34\xd1\xe3\xab\x22\x98\xec\xef\x5a\xf1\x97\xc5\x2b\x9f\xad\x30\x7e\x6c\x97\x2d\xaa\xd0\x1d\xea\x93\xab\xdc\x3e\x7a\x55\x45\x98\xc0\xf4\xaa\xf4\x05\xc2\xdc\x09\x6f\x56\x62\xe3\x13\x09\x33\x24\x2f\x5e\x02\x3d\xcf\x1a\x22\x49\x45\x5a\xa9\x15\xd3\x82\x0a\x38\xb3\x14\x38\xaa\x96\x07\x39\x84\x7b\xe4\xb2\x61\xb5\x94\x7b\x5c\x1d\xde\x22\x34\xa0\xd4\xa9\xea\x48\x3f\x32\x87\x13\x27\xab\x41\xa8\xc8\x36\x6a\x67\x8a\x30\xb6\x17\x2e\x38\xd3\x0c\x22\x86\xe3\xc6\x14\x82\x2e\xc7\x66\x67\x69\x64\x55\x4e\xab\x19\x01\x57\x01\x8c\xdd\xfe\x2a\xf7\x75\x41\x88\xf2\xd7\x36\x47\xab\x2d\xd0\xc3\x2b\x3c\x17\x6c\x9b\x35\xa2\x9e\x81\x28\x16\x36\x60\xb3\xd0\x2b\xb8\x16\x2b\xf8\xb7\x4f\x42\x96\x99\x8a\x4e\x3e\x82\x02\x3a\xf4\xa1\x39\xae\xb3\xe3\x27\xe2\xcf\xc4\xf9\xa1\xaa\xb7\xba\xc2\x29\x06\x1a\xce\x83\x82\xb0\x9a\xf2\x3b\x04\xed\x26\x7a\x89\x9a\x8b\x6a\xb1\xdb\x73\x10\x44\x81\x19\xd2\x2f\x9d\x0c\x01\xeb\xcc\x7e\x3c\xa5\xfa\x6b\x6e\xe5\x48\x40\x06\x43\xf5\x93\x52\x2b\x2f\xd5\x32\xe4\x11\x0a\x3a\x3c\x4a\x17\x60\xbc\xcf\x04\x22\x94\x00\x39\x1c\x79\x39\xc6\xea\x9d\xdd\x4a\xb4\x32\xad\xcb\x98\x26\xea\x0c\x81\xed\x6d\x16\x14\xda\x44\xda\xd7\xe6\x0a\xc1\x9f\x2d\x31\x84\xe7\x32\x26\x07\x82\x66\xf6\x9a\xa5\xb8\x67\xf3\x83\x5d\xcc\x75\x6e\x79\x03\x7a\x87\xf8\x28\xe6\x7a\xab\xae\x1c\xb6\x30\x3f\xcf\x6f\xd9\x7b\x8f\x09\x6c\x50\x48\x2c\xf2\xb3\x2a\xb0\x0e\x55\xc5\x2f\x23\xdf\x18\xe7\x67\x55\x8e\x12\x2a\x9d\xc2\xea\x1f\xef\x76\xe3\xab\x46\xcc\xd1\x2e\x88\x1e\x19\xeb\x17\x74\x87\x52\xeb\x9d\xee\xe6\x12\xce\x7c\xfc\x55\x77\x73\xee\xee\x0d\x2e\xd2\xe3\xab\x92\x95\x75\xc5\x42\xf9\x2c\xdb\xfa\xfc\xf8\x9e\x0f\x1f\xbf\x66\x63\x6e\x28\x3b\xea\xc8\xa1\x40\x9f\x76\x6a\xa2\x9f\x3d\x42\xa0\xce\x31\x1f\x02\x7b\xbc\x97\xf0\xee\xa6\xf2\x5a\x1c\x72\x66\x1f\x6a\xc4\xf4\x77\xb7\x26\x5b\x5e\x26\x56\x9e\x32\x0f\x1c\xfb\xf4\xaa\x4b\xde\x8c\x2e\x31\xdb\xc4\xbe\x2b\x81\x31\x78\xcb\xa5\x2e\xc3\x76\x01\x84\xc4\x56\x8f\x9d\xd2\x17\xc0\x62\x51\xb8\xa9\x9c\x8d\xb3\x53\x97\x86\xe0\x8e\xb2\xf6\x80\x16\x00\xfb\x53\x5d\xc6\x95\x02\x46\x4b\x9d\xe0\x0b\x40\xb5\x28\x5c\x57\xce\xc2\xd9\xa9\x4b\xc4\xc2\xbd\x7a\x63\x45\xf9\x9e\xe5\x64\x75\x60\x36\x36\x02\x2e\xb6\x59\x7c\x7c\x93\x10\xce\xc8\x03\x56\xce\x53\x2e\x9f\xa3\x34\x4e\xc9\xde\xde\x3d\xbb\x62\x5e\x9f\xf8\xf2\xae\xa3\xcc\x1a\xa1\xc7\x2c\xb5\x1a\xb6\x0b\x78\x8a\x8d\xe9\x5b\xa6\x09\x7c\x1a\xc5\x83\x1e\x46\xaf\xc3\xd4\x2f\xda\xdb\x68\x2b\xaa\x2a\xe7\xe9\x98\x78\xd5\x5c\xdf\x73\x8c\x9d\xc7\xb3\xf2\x41\x97\x5a\xa7\xd5\x1c\x1d\x9d\x85\x3e\x23\xbe\xe3\xb8\xe3\xa2\x0d\x09\xe5\x1f\x99\xb2\x2f\x2a\x53\x6c\x7c\x65\xa6\xe6\xb8\xe4\xe7\xea\x72\xe8\x82\x1a\xea\x8d\x57\xbc\xec\x6c\xc5\x49\xf6\x76\x65\x75\x55\x75\xed\x94\x01\xa1\xf4\xad\xa5\xea\xe3\xbc\x9b\x6e\x76\x2e\x26\x03\x18\x5f\x79\x63\x06\x21\x91\xa5\x0e\x24\x32\xe9\xcd\x2b\xc4\x1d\x73\x0a\xc6\x2b\x72\xc7\x8a\x83\xb0\x83\x0a\x0e\x26\xed\x8b\x54\x85\x13\x28\x17\xb7\xdc\x6c\xca\x2c\xdd\x59\xc2\x90\x78\x09\xb6\xbb\xcf\x52\x49\x0b\x26\x0c\x67\x75\xc3\x5b\x56\xc9\x58\x32\x7b\x35\x73\x96\xec\x7f\x60\xda\x17\x30\x6d\xe0\x74\x9d\xc3\xbe\x2a\xf7\x1c\x2e\xb4\x57\x1f\xfe\xb0\x9c\x10\xb4\x2c\x5f\x45\x12\x3a\x8b\x88\x32\xcb\x55\x27\x5a\x4e\x0d\x4b\x28\x6e\x47\x9d\xda\xd5\x2c\xac\x9d\x35\x36\x8e\x44\x40\xe4\x0e\xab\xbb\x55\x5a\x2e\x9b\xfd\xb4\x5d\x36\xa4\xc0\x8c\xda\xb2\x9a\x6a\x6b\xa7\xc6\xb3\xe6\x5a\x25\x68\xe3\x4c\x9f\xc2\xa0\x00\xd3\x24\x0e\xa4\xbc\x70\xc3\x1e\x2b\xa4\x72\x40\xf6\xb6\x24\x43\x81\x92\x9e\xf2\xc2\xc9\xc9\xf1\x07\x04\xa9\x8b\x6b\xb1\xb1\xc9\xdb\x74\x39\x92\xd9\x51\xce\x98\xc3\x77\xd5\x03\x57\x33\x07\xa8\xb6\xd1\x13\x1a\x99\x69\xcb\xa1\xca\x29\x8e\x1a\xcd\xd8\x67\x78\xca\xce\x67\xc6\x5b\xef\x41\xc1\x51\xca\xb1\x87\x71\x8d\xb0\xec\x81\x4b\x31\xe2\xcf\xcc\x83\xb1\x42\x75\xae\xab\x38\xd6\xbd\xa8\xca\xf9\x38\xb6\xce\x41\xe5\xa3\x31\x3c\x8b\x60\xe9\x29\x53\x63\x46\xd8\x49\x18\xea\xdd\x8a\x47\x90\x01\x8b\x3d\x51\x27\x6f\x8c\xe8\x0e\xe8\xd7\x9d\x04\x06\xbe\x0b\x0e\x16\xbb\xa3\xc5\xbd\xb6\xb3\x46\xcd\x03\x83\xa5\xa8\x80\x9d\x22\x66\x84\xd5\x4b\x93\xe4\xc7\x51\x70\x02\xb1\xa1\x66\x7a\xa1\x1d\x6b\xa8\xd5\x80\xb7\xc9\x29\xd4\xfd\x54\xec\xa3\xff\xc1\x63\x23\xee\x9b\x16\x1b\xd3\x94\xd7\x0a\x08\x79\x54\x15\x39\x26\xd7\x40\x5a\x49\xa3\x58\x91\x09\x89\xe8\xa7\xfe\xc2\x58\x27\x75\xf5\x7a\x0d\x25\x72\x79\x23\x21\x0b\x2f\xb4\xab\x9b\x16\x22\xc7\x91\x39\x20\xe2\xca\xbd\x71\x23\x7b\xa2\x65\x4f\x3c\x2b\x54\x66\x0d\xff\xe7\x59\x1d\xf0\xb4\x86\x20\x3e\x64\x9b\xf9\xc8\xc8\x29\x3a\x04\x7c\x1d\xb4\x98\x1b\x6e\x48\xf4\x3e\x32\x08\x16\x6c\x6d\xeb\x19\xca\x18\x10\x9d\x63\x14\x5e\x82\x75\x9e\xe8\x5c\x55\xae\x00\x69\xa6\x1c\x5e\x73\x9b\xe9\xdf\xad\x87\xcc\x7b\x2e\x70\xde\x14\xa7\xf1\x7d\x29\x1e\x8f\x3d\x87\xed\x21\xab\xcf\x4b\x77\x53\xcf\x1d\xc1\x63\xc6\x29\xef\x44\x46\x7f\x5a\xea\xdb\xac\xf5\x8a\xf6\x6f\x6d\xdf\xe4\xdb\x0a\x1c\xf6\x2f\x51\x6c\xbf\x25\xc7\x9e\x3b\xbc\xd6\xcd\x2c\x56\xee\x52\x03\x08\xcf\x9b\xe0\xfe\x43\x12\x68\x99\x65\x54\xf4\x59\x73\xe7\x13\xc9\xba\x47\xfc\x69\x6c\xde\x7d\xe2\x60\x66\xfe\x74\xf8\xbe\x56\x2f\xfb\xf2\xa1\xd2\x5c\x2b\x93\x5e\x8d\x4d\x36\x0d\xa6\xac\x7d\xe2\x1a\xd5\xe2\xd5\xdc\x3e\xd6\x47\x37\xd0\xed\x88\xc0\x9d\x9b\x25\x18\x9a\x3d\x6d\xbf\x9f\x98\xea\x54\xf2\x4e\x2f\x4c\x6a\x26\xa0\xd9\xec\x70\x30\x6d\xd8\x2e\x96\xb0\x30\x35\x1c\x2b\x50\xe6\x1c\x20\x83\xa0\xae\x0d\xa2\x06\xb7\x08\x32\xdc\xd8\x0e\x68\x4a\x2d\x43\x0b\x1a\x6e\x05\x15\x86\x32\x55\x1c\xa9\x99\x99\x27\x50\x7f\x3e\x87\x71\x0c\x1e\x3a\xd3\x10\x5c\x7d\x2c\x38\x57\x43\x88\x4d\x82\x11\x5c\xc0\x86\x29\x11\x8d\x6b\xee\xa6\x8b\x93\x3f\xf5\x57\x97\x17\x03\x27\x62\x66\x44\x51\x78\xc7\x93\xfc\x2b\x71\x12\x62\x92\xf0\x5b\xb7\x10\x91\x10\x9a\x12\xe1\x59\x33\x11\x6c\xac\x98\x08\x0e\x35\xa4\xc2\x98\xcd\x0d\xf5\x13\xf8\x07\x4e\x59\x2f\x7e\x80\xaa\xd2\xc4\x29\x6a\x9f\x0f\x17\x39\x4f\xdb\x3a\xba\x3e\xc6\x22\xcf\x88\x65\x78\x38\xa4\x50\xeb\xee\x8b\xfb\x6d\x44\x3a\xa3\x89\xf5\xb0\x8e\xe7\x37\x76\xbe\xc5\x7a\x2b\xfe\xcd\x8d\xc9\xed\x14\xb6\x07\x97\x70\x47\x8e\xd7\xec\x6a\x64\x73\x16\x3e\xa6\x06\x61\x75\x1f\x84\x6e\x57\xb9\x89\x1c\xa6\x6d\x15\x31\x1c\xc7\xed\xe2\x1c\x12\xd1\xd5\x56\xe6\x29\x5b\x55\x0b\xf9\x73\xc9\xc4\xfc\xb2\x94\x79\x64\xae\x63\x0e\x65\x45\x84\x78\x4b\xa4\x8b\x17\xd0\x00\x3d\xc5\x23\x7c\xf8\x2d\xb6\x1b\x39\x53\x2d\xae\x8b\x14\xa1\x1e\x27\x0c\xc6\xfd\x53\x3e\xa6\x56\xd1\x67\x77\xd8\xfd\x54\xcb\x59\x68\xf1\xaa\xca\x89\x0a\xb8\x94\x9a\x07\x75\x62\x1b\x12\xe8\x22\xca\x05\x8d\x63\xe1\x80\xb6\xcc\x8c\x92\xb3\x5d\x3d\xa5\x56\x3a\x65\xcb\xfd\x48\x2f\xb9\xaf\xfa\x25\x67\x33\x88\x18\xaf\x0f\xcd\xd9\xf5\x27\x20\xdf\x51\x2f\xce\xa1\x3d\x6c\x91\x64\x7c\x80\xb8\xbf\x4b\xa4\x18\xe9\xb0\xa9\x29\x6c\x14\x2d\xb9\x63\xd1\xb2\x6f\x78\x39\xed\x52\xa9\x81\x55\x57\xae\xc4\xb1\xe2\x8c\x71\xc8\x36\x17\xac\x16\xc2\x3c\x2a\x75\xd1\x69\x48\xac\x66\x57\x32\x91\x2e\x29\x6a\x9e\x8f\xa9\x0b\xe3\x5b\x46\x39\xd7\xf3\x3a\x16\xe7\x12\x2c\x77\x0e\x86\x6f\xb3\x42\x6f\x8e\xcc\x85\x2f\xfa\x5f\x2b\xf3\x8e\x9b\x31\x53\x41\x53\x3d\x05\x71\x26\x9e\x7f\xbb\xf2\x49\x57\x6f\x58\x75\xe5\xdf\x9e\xfb\xf9\x91\xa3\xd6\x02\x4b\xa7\x67\x37\x25\x25\x0b\xfe\xea\xf1\x6d\xb1\x09\x5e\xa2\x5f\xc0\x4b\x61\xf2\xda\x80\xb6\x2f\xe1\x3e\x1f\xb5\xf9\xe4\x15\x57\x7e\x8a\xda\x50\x42\xc5\x50\x57\x9c\x0c\x80\x46\x66\x97\xeb\xbf\x70\xfd\xa0\xd2\x42\x78\x33\xab\x66\x33\xae\x0f\x7f\x20\xcb\x4f\x66\x5a\x52\xb5\x9a\x30\x05\x72\xfc\x25\x69\xca\x44\xf3\x6f\x8b\x85\x03\x79\xa4\xad\x8b\xb5\xe1\x38\xda\xce\xe1\x8d\xd5\x50\x2b\x2d\x52\x0f\x4c\xe5\x13\x9d\x68\xd9\x2b\x3e\xe2\x03\x4a\xc2\xa9\x78\x8c\x18\x5f\xd6\x6d\x76\x41\x8a\x9d\x1f\xa6\xc6\xd3\x1b\x51\xe7\xd9\x47\x05\x15\x1f\x87\x60\x59\xd1\x5f\x65\xc5\xe1\x76\x73\x63\x66\xcb\xf7\x38\xdb\xdc\xc7\xb9\x5b\xbc\xec\x4a\x40\xed\x4a\xc8\x92\x84\x46\xe7\x66\xb3\x89\xa6\x9e\xdc\x9a\xe5\xab\x6a\xca\x21\x0d\xec\x8e\xf2\x94\x03\x11\xea\x5e\x89\xd2\x88\x40\xb6\xc9\x3d\x71\x96\xf3\x3a\xb1\xed\xb3\x3a\x87\xae\xb3\x4d\xfe\x09\xe6\x65\x21\xf3\x59\xa9\x85\xb6\x02\x75\x56\x5f\xda\xcf\xb4\x7a\x70\xdb\x4e\x75\xc0\xe6\xdb\xd1\x3d\x88\xd5\x3d\xc1\xda\xe8\x86\x1a\x1c\xde\xf0\x91\x2f\x8e\x8d\xde\x6d\x30\x2b\xc5\x0d\x0e\x6f\xb6\x36\x9f\xb8\xf0\xce\xc1\x3b\xa1\x8b\xf6\x2c\x47\x45\xd9\x51\x0c\xc8\xe3\x1c\x12\xf7\x08\x4a\xd0\xdc\xa1\x04\xa9\x1e\x36\x33\x6b\xbb\xb9\x13\x30\xe5\x1d\x33\xf7\x86\x45\x12\x06\xec\xc7\xcd\xb5\xe5\xab\x85\xc7\x94\xbb\x7f\x9c\x91\x3a\xa6\x33\x1c\xe8\x95\x1f\x7f\xf8\x40\x0a\xe1\xd3\x0c\xe0\x15\xc3\x51\x40\x33\x72\x0e\x3e\x45\xb1\x2a\x5b\xb1\x9c\x4f\x51\x8c\xcd\x9a\xe2\x2e\xbd\xa6\xf9\x40\xa8\x1a\x66\x59\x21\xca\xd0\x72\x8a\xf8\xf0\xb2\x82\x66\x9e\x85\x65\x14\x4a\x64\x66\xda\xe5\xd8\x0e\x96\x11\xaf\x11\x9c\xdc\x3f\x00\x95\x82\x7b\xba\xc2\xd8\x01\x0d\xff\xfa\x28\x3b\x82\xea\x2a\xc3\x2e\xfa\xfa\x8c\xc9\xed\x35\x1f\xfc\x37\xd5\xa4\xc4\x7a\x54\x6b\xc2\x1a\x71\x43\xd1\xe2\x4e\x61\x4e\x28\xe1\xe5\x60\x07\x2f\xed\x12\xfd\xa5\x21\xfb\xca\x9c\x9b\x88\xb3\x03\x74\x91\x98\x20\xbd\x82\x01\x8c\x4d\x14\x7e\x8e\xab\xa7\x06\x53\x1a\xd7\x99\xb5\x20\x4e\x47\x5a\x58\xeb\x09\xe3\x51\x87\x71\xf5\xbe\x72\xf3\x8e\x3c\x11\xa4\x13\xaa\x5e\xe7\x04\xaa\xa5\xfc\x41\x5c\xfb\x74\x12\x0d\xb5\x72\x8f\xf5\xf1\xb5\xd5\x54\x53\x97\x21\x21\xd2\x97\x25\x50\x48\xfe\xdd\xa0\xd0\xf9\x5f\x00\x14\xce\x0c\x9b\x0a\xd8\x87\xaa\xa7\x9d\x6f\x83\xc2\x0a\x07\xb3\x8e\xae\x21\x6d\xfc\x19\x2c\xd4\x33\x8a\xfe\x3c\xec\x80\x54\x97\x8e\x5a\x04\x8b\x46\x69\xc7\x17\xf6\xc4\x7d\xb7\xc9\x0b\x4d\xf2\xdc\xcb\x2f\x37\xb9\x18\x5e\x53\xad\x9c\x53\xdd\x96\x13\x3b\x8e\x32\x57\x7d\xab\xa1\x2a\x36\x54\xaf\x81\x25\x59\xae\xf6\xed\xab\x50\xf4\x6a\x7a\xcf\x10\x4a\x9a\xd4\x89\x5d\xe3\x40\xf0\x37\xc3\x10\x12\x8e\xf9\x80\x14\xd3\xa7\x87\x4c\x5f\x10\x15\xd5\x7d\x80\xfb\x0e\xfc\x7e\x24\x64\x78\x04\xdc\xa3\x3d\x68\xf0\xb9\xaf\x6b\x7f\xcb\x82\x41\xad\x86\x02\xd8\x57\x17\xa4\x8e\x15\x95\xae\xaa\x5f\xf3\xb1\x8f\x52\x07\x3d\x26\x5b\x35\x71\xe7\x79\xca\x1d\xf4\xac\xba\x7a\xd5\xed\xa4\xc1\x4b\x52\x45\xc8\x13\xeb\xdb\x12\x03\x7b\xc9\x38\xd5\x5d\x0a\x3c\x1e\x6a\xf6\x79\x93\x46\xe8\x8c\x6c\x56\x6e\x4f\x4c\x31\x84\x07\x56\x6a\x95\x74\xc0\x07\xf6\x98\xef\x45\x1a\x76\x37\xce\x8f\xe4\xb6\x19\x25\x5e\x9b\x90\x2d\x39\x6a\x5e\x9b\x3c\x8e\xfc\x0e\x24\x96\x9e\xe7\x7a\xd1\x10\xce\xfd\x5b\xbe\x07\xb6\x9a\x14\xfe\x06\x4f\x39\x53\xe7\xa5\x51\x6a\x2e\xf9\x83\xe6\xde\x3b\x21\x3c\xe5\x26\xf6\xb2\x81\x63\x61\x04\x47\x55\x6e\x38\xae\xf2\xa2\xce\xf1\xb4\xa0\xa5\x73\x06\x4b\xbf\xb0\xb4\xd4\x50\xcc\x47\x31\x3f\x2b\xe6\x29\x0f\x47\x7e\xb3\x50\x8c\x75\xa3\x24\xfa\xbc\xe2\x44\x01\x4c\xc2\xde\x69\x6e\xd0\x15\x53\xd4\x52\x67\xe6\x63\x96\xed\x51\x4c\x7c\x98\x4b\xbb\xa0\x88\x13\xd6\x5a\xc5\x13\x33\xac\x66\x49\x26\xb8\x6b\x5a\xb1\xe4\xfe\x03\x51\x33\x6b\x8d\x9c\x24\x3d\x1c\x7b\xf0\x17\xed\xbc\xf3\xf3\xcf\x3a\xe7\xf5\x91\xb2\x11\x6c\x04\xe3\x6a\x46\x88\x1b\xa7\xe5\x80\xf0\xa1\x3e\x6e\x40\x7f\x39\xfd\x0c\xd1\x40\xf4\x3a\x8b\xee\xbb\x41\xd5\x25\xfc\xa5\xfe\xc6\xe2\x88\x78\x4f\x10\x31\x33\xd1\xa3\xbb\xfc\x30\xdc\x57\xca\xf7\xac\xac\x7c\x5f\xba\x5f\x2a\xdf\xce\x5a\x9f\x51\x85\xb8\xe3\xc6\xbf\xd0\x49\xbb\x6a\xd6\x39\xd7\x2b\x76\xb7\xb6\xe1\x81\xff\x8e\x76\x09\x81\x6c\xa2\x25\x61\xd6\x8a\x0f\x6a\xbc\xa1\xe6\x7e\x7e\x5a\xce\x61\x0f\x4a\x33\xb3\xb6\x4f\xed\x37\x60\xe4\x1f\x2a\x98\x66\x5a\x3d\xf2\x31\x52\x1e\x45\xc8\x6c\x72\x6d\x98\x09\x05\x7c\x30\x69\xa9\x19\x7d\x63\xb0\xce\xa0\x83\x77\xf7\x56\x97\x4f\x29\xd1\x92\xb3\xa7\x44\x0c\x8d\xe7\x08\xfe\x7c\x69\x88\xf8\xe9\x2b\x37\x85\x7e\x98\xf8\x7f\xa2\x1f\xba\xca\xdd\x94\xc3\x7e\xff\xbb\xb5\x3a\x1a\x09\xa2\x7b\x21\xca\xbf\x4a\xd4\xac\xcf\xf9\xd9\x68\x48\x6f\xf9\x2a\x5c\x9f\xe8\x0a\xce\xa0\x72\x29\xff\x58\x03\x0f\x1a\xdb\x06\x17\xc1\x40\x78\xbd\xbb\x4c\xc9\x9c\x73\x2d\x3c\xc4\x23\xa5\x8d\xcd\xe2\x0f\x37\xd8\xb2\x3a\x0d\xf7\xa1\xe0\x81\x87\xb7\x19\xe5\x25\xdd\x1e\xec\x2f\xdc\xdc\x15\x63\x97\x43\x8a\x3e\xeb\x7e\x83\x57\xbd\xa1\xee\xfa\x47\x00\xcc\xc1\xa5\xe6\x03\x68\xfd\xa1\x3e\x20\x41\xe4\x29\x36\xf1\xed\xbf\xcd\x6e\x1d\x10\x6b\x71\x62\x36\x0c\x7a\x5b\xb6\x07\x84\x30\xd6\x42\x05\x61\x1f\xbf\xf3\x66\xb6\xb7\xd9\xe2\xf9\x63\xd1\xf0\xde\x6e\xff\xbf\xaa\x72\xae\xb2\x43\xdd\x3d\xa5\x7a\x30\x77\x77\x67\x9e\xd0\x45\x52\x39\xcd\x2f\x35\xce\x97\x4f\xaa\x4f\x4a\xd5\x9f\xbd\xff\x80\xc2\x39\xd6\x83\x7d\x8e\xc7\x23\x55\xdf\x53\x5b\xe1\xea\xad\x5f\x42\x29\x13\x21\x01\x50\xe2\x87\x39\x80\xba\x79\xfc\x0e\x44\x58\xd6\x5f\x39\x7c\x71\x29\xa7\xcb\x48\x73\x3d\xc6\xdc\x0e\x68\x3e\x2b\xe7\xb8\x64\x6f\x80\xd6\xe9\xfc\x87\x54\x51\xe7\x83\x2a\xba\x69\x74\xad\x40\xbd\x36\xb6\xfa\xb9\x38\x89\x4f\x3a\xa6\xfb\x5e\xc7\x3c\xe4\x92\x07\x0d\x76\x92\xb8\x1c\x4e\xfc\x1f\x52\x1e\x63\xe8\x8b\x73\x9d\x6b\xf1\x7c\xec\x0b\xad\x8e\xae\xb2\x98\x89\x3e\x12\xb9\x9a\xb1\x91\x48\x66\xcb\x55\xf5\x07\x82\x64\xef\x04\xb9\x01\xc1\xe5\x1c\x48\xe2\x1c\xaa\x0f\xbd\xa3\x11\x7e\xce\x45\x1b\x70\x85\xe4\xae\x72\x9c\x6d\x86\xdb\xb1\x30\x1f\xf8\xea\xa4\x96\xd8\x7c\x00\xe7\xad\xf6\xdb\x9a\x6d\x03\x71\x87\x8d\x6c\x58\x12\x95\x23\xea\xcc\xf4\xdf\xa7\xd9\xbe\x21\xb4\xf2\x5d\x5c\xc3\xc1\x6d\x09\x84\x65\x46\x0b\x87\x59\x0b\x35\x56\x9d\xe8\x2d\x4b\x11\x13\xdd\x14\x13\x98\x51\xde\x33\x22\xf9\x38\x4e\x7a\xe3\x25\xdc\xf9\x12\x07\x15\x17\xef\xe4\x13\x71\xca\xb2\xc7\xfc\xd5\xe3\x08\x1f\xa3\x54\xc0\x94\x0c\x5e\x36\x1c\xf8\xef\xbd\xea\x8f\x38\x7e\xe9\x66\x4b\xd1\x65\x4d\x84\x81\x05\xc9\x3a\x5b\xa7\xd7\x9f\x6a\xaf\x97\x99\x25\xe8\x12\xc7\x5d\x8e\x59\x96\x7e\x9e\x81\x23\x70\x0c\xf0\xc3\xe9\xed\x3b\x12\x17\x6b\xda\xe3\xb9\xbe\x2d\x69\x34\xde\x63\xdd\x6a\xa9\xa1\x7b\x15\x91\x84\x75\x5c\xfd\x7d\x05\xf5\xfb\x3b\xfa\x87\x0a\xea\x1f\xee\xa8\x49\x4b\x7b\xe9\xa9\xfa\xd4\x94\xb6\xd1\x3c\x21\xb4\x9a\x68\x95\xa7\x5c\xc1\xad\xdd\xbd\xb9\x64\xdf\x5a\x73\xf6\x7e\x73\x7a\x6c\xb2\x65\xc1\xb6\x01\x42\x2c\x15\x36\x8c\x6e\x01\xc7\xb8\x9a\x53\x53\xfb\xb0\xec\x24\x22\xce\x75\xbb\xb4\xec\x4b\x67\xb0\xbd\x79\xa7\x2c\x9e\xbf\x57\x16\xcf\xa0\x2c\x1e\xbe\x57\x16\x0f\xfe\x8f\xb2\xb8\xab\x2c\x32\x06\xc2\xdf\x71\x8e\xec\xa4\x17\x38\xce\x53\xf6\xcd\xaf\x1f\x90\x06\x0e\x2b\xb2\xc1\xd3\x16\x4f\x63\x2f\xab\xe5\xf2\x59\x21\x57\x35\x8e\x21\xd0\xba\x22\x71\xb6\x68\x89\x9f\x3e\x55\x21\xee\x4b\xf6\xda\xcc\x01\x05\x9f\xca\x52\x23\xd8\x38\x13\xfa\xcf\x35\x4c\x28\xaf\xfa\x0d\x52\xe0\x81\x63\x85\xb9\x2e\x70\x64\xa0\x0b\x30\xb8\xce\x0c\x73\x4a\xb1\x21\x39\xca\x9c\xc2\x49\xb5\xd4\x08\x7b\x68\x9c\x7c\xee\xd5\x72\xd8\xf5\x94\x7b\x9b\x16\x36\x12\x6f\xfe\xa1\x8b\xea\xdf\x24\x67\x83\xe7\x37\xc5\xbf\x3a\x22\x7e\x63\xc6\xe6\x1b\x4e\x94\x13\xfd\x4f\x7c\x41\x31\x12\x91\x41\x7b\xa8\x33\x9c\xf0\x61\x10\x17\x59\x84\xce\xef\x73\x57\xee\xda\x1e\x32\xd3\xeb\xc0\xc9\xc6\xde\x78\x9c\xde\xc5\xe1\x09\xf6\x5f\xce\x0c\x82\x99\xc3\x15\xdc\xce\x1b\xd6\x83\xc6\x48\x1d\x75\xff\x0a\xad\xc8\x66\x7b\x80\x1a\xda\x4b\xa8\x35\xc7\x5d\xde\xca\x17\x5a\x0a\xb7\x52\x43\x78\x79\x70\x4c\x23\xdb\x1a\x51\x1b\x5e\x3d\xab\x64\x8d\xe7\xa1\x1f\x20\xec\x9b\xa9\x5c\x7d\xc4\x43\x6f\xee\xb3\x05\xad\x89\x44\x9c\x2e\xaa\xf8\x1f\x16\x1a\x81\xec\x63\x47\x42\x59\xb3\x55\x45\x09\x17\x7e\xeb\xd4\xf9\x8a\x44\xd7\xbf\x20\xd1\x5f\x8a\xcf\xd7\x44\x72\xeb\x05\x67\x21\x61\x66\x82\x7c\x64\x17\x44\x6a\xfd\xf6\x21\x09\x3d\x17\xfa\x06\x5b\x62\x3e\xc8\x48\x58\x79\x81\x92\xd1\x67\x32\x12\x7c\xca\xcd\xe3\x3a\xc8\x93\x12\x43\xa2\xa3\xcc\xed\x51\x3d\xcf\xae\x61\xda\x63\xfb\xbd\x09\xfe\xb0\xfa\xbf\x9a\x09\xde\x20\xcf\xa7\xdd\x3b\x2f\x6d\xaa\xe1\x9c\xbb\x1b\x39\xd9\xd9\xbf\x6c\x95\xf7\xec\xbc\x9e\x05\x72\x3a\x0b\x83\x43\x9d\x3d\x88\x70\xad\x19\xc7\x87\xac\x25\x99\x37\x9c\xec\xd8\x76\xf3\xa1\x98\xea\x8e\x38\xf3\xfa\xa5\x1d\x21\x9e\xe4\xbc\x91\x19\xc0\x5d\xe5\xc6\xfa\xfd\xc6\x3e\xb7\xac\x86\x1a\x96\x98\xd7\xee\xce\xd2\xe2\xd7\x78\xed\x09\x4f\x56\xce\xd3\x61\xc3\x6a\xaa\xa9\xf3\xdf\x69\xe8\x1e\x71\x8a\x54\x73\x5d\x69\x94\xd7\xef\x30\x5f\x68\x5a\x0b\xb6\xe0\x99\xb1\x79\x3f\xdd\x1b\xe2\xd5\x8d\x32\xab\x3e\xb0\x3f\xb2\xea\xd8\xbc\x63\xd5\x33\xc3\xac\x7a\x64\xde\xb1\xea\xa1\xa9\x1d\xd8\x56\x3d\x8b\x18\x0a\xcf\xbd\x42\x22\x14\xdc\x3e\xff\x88\xd5\x46\x82\xad\x0f\x38\x62\x37\x28\xc0\x27\x2b\x5c\x20\x7a\x53\x9d\xe8\xc4\x3e\x69\x93\x38\xa0\x73\x71\xc0\x55\xfe\x93\xd5\x53\x57\xe1\xa7\x32\xc1\xd5\xe4\xbd\x1c\xe0\xa9\x17\x1d\x9b\x98\x16\x60\xfa\x9e\x6d\x4b\xd2\xfe\x5d\x7e\xed\xab\x99\x96\xf4\x62\xa4\x36\x5a\x27\xc6\xc4\xa7\xba\x5e\xb0\xcc\xf0\x02\xc7\x1d\x70\x28\x06\x22\x58\x2b\xee\xb2\x45\x41\xe2\x7f\x4e\x6e\xa0\x88\x89\xec\xd6\xa5\x95\xbb\x34\x00\x52\x29\xda\x79\xe9\x72\xa6\x86\x2a\x36\x0b\x51\x3b\x2e\x37\x42\xaf\x6a\x6b\x6d\xcd\x0c\x9f\xad\x83\xa8\xc8\x5d\x77\x12\x39\x49\xe7\x2b\x7f\xf7\x14\xdf\xe4\x8a\xdb\xd1\x71\xe9\xb8\x66\x73\xf8\x28\x91\x91\x8c\x42\xe3\xc7\xd2\xa7\xd9\x95\xd5\x54\x4b\x97\xa3\xb9\x26\x1a\x1a\x98\x7f\xda\x28\x1d\x14\x38\x93\x8b\x0a\xe0\x2e\x31\x45\x01\x98\x10\x52\xb7\x62\x10\x17\x29\x2d\x4e\x1e\x25\xff\x25\x4c\x75\x26\xde\xe9\xee\x11\x57\x86\xd0\xb7\xc6\x4e\xd8\xae\xfc\x6c\xc0\x62\xec\x1e\x73\x66\x50\x65\x1d\xb8\xca\xa8\x63\x2f\x3b\x26\xa2\xea\x96\xaf\x5a\x4f\x08\xcd\xf7\xa4\xe1\x7c\x44\x4d\xd6\x9f\x6f\x69\x58\xbe\xc7\x86\xa5\x6b\x95\x87\xcc\x9a\xf6\x29\x2f\x14\x23\xf4\xcd\x05\x92\xfd\x72\x12\x82\x37\x09\x0b\x73\x95\xb9\x7d\xbd\x83\x2c\x11\xdf\x96\xf4\xcb\x39\x8c\x46\x24\x09\xf1\xc9\x92\x11\x04\xe0\x3a\x2c\xbc\x31\xb2\x9b\x0f\x3b\x08\xf1\x35\x7c\x42\x38\x37\x30\x20\x2d\x0e\xa2\xdd\x60\xe3\xbe\xce\x5f\x0c\x80\x9a\x38\x64\x76\x7e\x63\xd5\xd9\x42\xe4\xaa\x2b\xf5\x86\x73\x57\xa0\x5f\xde\x21\x87\x49\xd6\xc5\x96\x28\xd6\x09\x39\x5a\x3c\x83\x8f\x07\x09\xe0\x53\x52\x8e\xdd\xe7\xd5\x03\x73\xb0\x63\x4e\xaf\xd0\x3c\x82\xb9\x8c\x44\x4f\x76\x35\xfa\x45\x76\x65\xd5\x40\x5a\xfc\x0d\xcb\xf5\x0f\x48\xc0\x23\xb9\x0b\x80\xc6\x6b\x64\xfe\x5c\x75\xf3\x57\x0f\xcc\xa2\x90\x3f\x05\xb3\x00\xc2\xb6\xf3\x17\x8f\xf0\x4d\xde\xe7\x2f\x9e\x41\x95\x1f\xb2\x17\xee\x73\x7a\xc7\x08\xbb\xc2\xad\x0c\xa7\xb7\x25\x0d\xef\x31\x57\xcf\x5d\x04\xe0\x4e\x5a\x10\xd5\x38\x76\x72\x74\x25\x47\xb3\xea\x4a\xdd\x1d\x79\x08\x07\x82\xa1\x86\x25\x0d\x93\xd8\x70\x7e\x48\x02\x55\x16\x77\x23\x0e\xf6\xe3\xc3\xe6\xe6\x5c\xf3\xec\x5e\xb3\xfc\xaa\xef\x3e\x57\x90\xb4\x19\x41\x9e\x38\xa2\x2f\x99\x69\x38\x3f\x7c\xe7\x36\x3f\xf3\xe6\xbc\xe9\x9d\xd1\xd3\xc6\xdf\x9f\xba\x79\xc2\x31\xd5\xe4\x13\x4f\x66\xb0\x62\xa1\xae\xa9\x70\x70\x89\xf9\xfa\xca\x93\x54\x61\xa4\xc4\x76\x4b\x5c\xc7\xb6\x8a\x74\x62\x76\x89\xdf\x97\xd9\xbd\x57\xdc\x6d\x83\x08\x90\x1e\x0e\x22\x20\x68\x1d\x91\xd3\xbe\x5c\xed\xa1\x82\x01\xe8\x6b\x4b\xf5\xa7\xae\xd5\x50\x6d\x39\x2d\x93\x1d\x6d\x3c\xef\x72\xde\xe3\x93\x6a\x19\xde\x8e\x71\x3a\x8a\x68\xb8\x37\xd6\x0c\x8b\x9f\xee\x95\x7b\xcb\x2f\xe7\x72\x56\x06\x09\x09\x0f\xf4\x5a\x4b\xec\x8f\xd0\x55\xa2\x72\x50\x20\xfd\xf8\x36\xf3\x1e\x28\x4c\xfb\x1c\x99\x75\xec\x2c\xa6\x50\x1c\x38\xce\xb6\x8b\x32\xae\x52\xee\x71\xbb\x90\x80\x4f\xda\x44\x5d\x66\xfa\x12\x52\xf1\x9b\x50\x6d\x08\x87\x7c\xdc\xc7\x67\x0d\xb6\x06\x20\x5f\x01\x58\xf9\x77\x72\x8f\x9c\xa3\x0c\x9d\x8d\xf8\x81\xc4\xd4\x54\x0b\x7a\x16\x07\x65\x57\x0f\xd9\xf7\xfc\x62\x96\x3b\x96\x7b\x07\xf2\x85\xb5\x2c\x33\xd2\x27\xa0\xc1\xa7\x3d\x1c\xf1\xe3\xf8\xd8\x07\x10\xb0\x46\x96\x7b\x89\x0a\xd3\x14\x5e\x7a\xf9\x35\x08\x75\xc4\x40\x6d\x88\x78\x7b\x89\xb8\xd7\x68\x29\x96\xc8\x4d\x3d\x23\xa6\x54\x67\xd8\x91\xf0\x50\x08\x49\xa0\x4f\xfb\xf8\xcd\x2e\x36\xe4\xc4\x1b\xbc\xd0\x6f\xbb\x53\xcd\xcf\x61\xd8\x6f\x77\x10\x86\x78\xc7\x8e\x74\xcb\x9a\x69\x52\x3e\xc7\x8f\x7f\x3f\x57\x39\x7a\x0f\x02\x36\x41\x8e\x3f\x49\xd9\xc1\x53\x71\x70\x00\x4f\x12\xfd\xdf\xa3\xc4\x83\x65\x68\xdf\x32\xd1\xc7\x56\xe7\xa8\xb8\xe5\x7f\x3e\xdc\x30\x31\x69\xce\xee\x1a\x86\x04\x3e\x08\x81\xcd\x63\x8a\x29\xa6\xf0\x13\xae\x50\x1f\x64\x7e\x50\x67\x80\x23\xed\x23\x16\x94\xee\xa6\x7c\xf4\xa1\x89\xc8\x85\xfa\xc8\xa7\x1d\x64\xff\xa1\x53\x4a\x3e\x7e\x7e\x8b\x10\x8d\x40\xa9\xf0\xec\x31\xeb\x9a\xb1\x62\xa6\x95\xb7\x40\xea\x41\x11\xc5\xdf\x78\x7b\x1e\x69\x08\x08\x1e\x96\x11\x10\x99\x47\x1a\x7b\x34\x7a\xd9\xfb\xb2\xd1\x89\x51\x6a\x6e\x5e\xf8\xc9\x17\x1f\xd9\xa3\x25\xb9\xb6\xdc\x4b\x57\x96\x8b\xcf\x9e\xf0\xaa\xd7\x39\xb1\x44\x1f\x31\x24\x3c\x98\x8b\x5e\x3e\x6d\x4e\xc4\x58\x9e\x4e\xe5\xeb\x9e\x5f\x30\x9d\x3c\xe6\x79\xd5\x7b\xbf\xbf\xa3\xa0\xe8\x90\x18\xb3\xec\xaf\xcb\x29\x21\xab\x08\x73\x87\x22\xd8\x38\x44\xdb\xc3\xc0\xf2\x49\x71\xb8\x2f\xc1\xb6\xbb\x7a\xe4\xc9\x5d\xc1\x3e\x51\x5a\x95\x47\x8c\x0d\xfc\xfe\xdd\xe8\x98\xcf\xcf\x30\xb3\x27\x40\xff\x9c\x6f\x45\x0a\x4b\x2b\x25\x7e\x12\x5f\xb9\x6b\x2f\x66\x72\xcf\xf2\xdc\xcd\x12\xc1\x29\x57\xd9\x46\x37\x60\x80\xa4\xa7\x37\xcd\xcc\xf8\x40\xb3\x01\xe6\xcd\xb6\x8c\x3a\x61\x8b\x65\x15\xe7\xe3\x3b\x92\x75\x82\xe0\xe2\xd4\x79\x6a\x5a\x1d\x75\xe2\xac\x48\x0c\x71\xd5\xa9\xb3\xd1\xaf\x1e\x48\x50\x0b\x49\x23\x32\x12\x54\x31\x7f\x46\x82\x8e\x9c\xae\x9f\x2d\x1c\x1f\xb8\x59\x3e\xfe\xc9\x92\x7d\xb2\x9d\x5f\x2e\x58\xdf\x92\x53\xb5\x6e\x5c\x8b\xdb\xef\x50\x80\x56\x26\x22\x4c\x48\xec\x44\x97\xbf\xbe\xda\xc8\xdf\x30\xa5\x77\x1d\x09\xd5\x86\x65\x20\xd5\x25\xf9\x0e\x90\x92\x11\xe6\x33\xcd\x86\x92\xa6\x6a\xc9\x61\x43\x44\x28\xc0\xcc\xbb\x28\xd5\xa8\x8f\x4b\x21\xd6\x11\xd5\xe8\x6c\x40\x93\x0f\xa0\x74\x49\x3e\x96\x47\x49\x25\xd0\x50\xb6\xc2\x12\xb9\xe9\x63\x61\xf3\xa9\xf1\xbb\x16\x96\x17\x92\xe2\xa6\x59\x48\xe5\xaa\x24\x85\x35\x90\x07\x5c\x88\xed\xab\x73\x8e\xee\x56\x62\xed\x84\x05\x64\x01\x19\x8f\x13\x80\x9a\x91\x39\x00\xb3\x3b\x25\x10\x33\x0f\x13\x2e\x33\x31\x53\x0f\xcb\xe4\x21\x85\xf0\xd4\xcb\x24\x8e\x4e\xbb\xa0\xba\x2b\x2a\x54\xbd\xc2\x69\x68\x8c\x83\x36\x9a\x33\x5a\x99\xb1\x66\x09\x78\x29\x57\x25\x61\xeb\x39\xb5\xe9\x60\x0b\x15\x9e\x1d\x35\x87\xff\x21\x8a\x6b\xda\x9c\x78\xa4\x85\x1c\x5d\x01\xac\x4e\xa5\xd0\x21\x39\x47\x85\xb3\x95\x70\x6c\x83\x5c\x9a\x53\x8d\xfc\xa3\x1d\xa8\x62\xba\x0c\x6d\x9e\x72\x52\x33\x65\x00\xf4\x5f\x91\x38\x7b\xc5\x8a\xf4\x8d\x12\xa2\x48\xf4\xe9\x1a\x4b\x41\xd5\x4f\x71\x12\xa9\x68\x31\xd8\x18\x76\xcc\xdc\x78\xa7\x9a\xf3\x2a\x49\x07\x4c\xd9\x6a\x39\x2d\x6f\x2a\xd7\x8c\xe4\xa8\x20\xe1\x5b\xd6\x80\x2f\x86\x99\xbc\xe5\x9d\xaf\x75\xe5\xc7\xe6\xb3\x0f\xbe\x6a\x48\x16\x0b\xe4\x67\xe2\x7e\x82\x29\xf6\x21\x93\xdd\x7d\xd2\xbc\xa0\x15\xce\x61\x0f\xac\xc7\x38\x58\x2c\x07\xf6\x93\x07\xe4\x9b\x7b\xe0\x74\xde\xc7\x24\x89\x3d\xfa\x15\xf6\x0e\xd6\x86\x2c\x49\xb7\xde\xd7\xce\x4f\x9d\x16\x4d\xf0\x51\x73\x21\xff\x34\x91\xb1\x1c\x3d\xea\x2a\xef\xb2\x1a\x11\xd9\xb5\x9d\x37\x56\x3b\xa8\x65\x4f\xb1\x3c\xd9\x81\xdc\x25\x97\x48\x70\xbd\xa9\xd4\xab\x2b\xf7\xd8\x46\x80\x75\x37\x33\x2b\x65\x69\x48\xe4\xf4\x72\xe3\x29\x13\x28\x3c\xa5\xba\x0c\xdb\xe1\xb9\x44\x66\x33\xeb\xed\x7f\x92\x1c\xb7\xc9\xe2\xd9\xad\xff\x87\x08\xe2\xb6\x51\x24\x43\x08\x57\x39\x63\x9d\x70\x24\xdc\x50\xbf\x90\xd8\x31\xbd\x4a\xd9\x50\xb1\xd5\xc9\x5d\xd6\x2b\x7c\xfe\x1c\x83\xcd\xf0\xdd\x3a\x65\xf2\xe5\x4f\x71\x5c\x7e\xeb\x62\x25\x03\x8e\xf1\xa5\xf5\x7c\x69\xe3\xe8\x55\xce\xda\x4e\x3f\x20\xd2\x89\x10\x8b\x47\xab\x74\x11\xa0\x5b\x86\x5d\x8e\xa3\x12\x81\xfc\x99\x95\xbe\x09\x24\x71\x9a\xea\x9d\x88\xe0\x3c\x6d\x28\xe2\x22\x80\x37\x33\xb5\x50\x2e\x45\x80\xf8\x9d\x17\x80\xf4\x6d\x35\x94\x8f\x24\x03\x92\xa7\x75\xd3\x2e\x26\x3b\xf4\x9e\x0f\x48\xa4\x50\xe1\x39\xbf\x3d\xd3\xfc\xda\x1d\xdb\x27\x90\x3a\x2a\x84\xbd\x9b\xda\x00\x27\xac\xd4\x87\xcd\x71\xd9\xe9\x2d\xb7\xe0\x6c\xef\x32\x7a\xe2\xd4\x2e\x3f\x2c\x03\x52\x6d\xc8\xa9\x68\x2c\x43\x45\x5f\x08\x63\xe1\x6c\x9f\x3e\xf2\x8b\x4b\x8a\x21\x24\x06\x85\x15\x01\x9d\xa9\xd6\x9a\xe6\xe4\x4f\x71\x4a\xfe\x80\xea\x56\xeb\x3b\xb0\x46\x00\x89\x53\x10\xf5\xc5\x75\xae\x8a\xe3\xac\x23\x7c\x48\x80\x3e\x27\x06\xe4\x0c\x6b\x63\x7d\xc2\x2b\xf0\x62\x2a\xdc\xfd\x85\x96\x2c\xce\xdc\x65\xe2\x26\x55\x81\x11\xf3\x61\xf2\x46\x7a\xbd\x80\x05\x1a\x9a\xf6\x08\xb0\xc4\x79\xa9\x55\x07\xf0\x88\xe2\x2b\xf7\xd8\x1c\xdd\x51\x5f\x4b\x33\xea\xbc\xef\x8b\xaf\x1d\xda\x04\x09\xa2\xa5\xae\xff\x77\xca\xa5\xa3\x9e\x2f\xd9\x74\x74\xa6\x8d\x0a\x79\xfa\x17\x0f\x58\x9e\x98\xa5\xc2\xff\x9f\x5d\xdc\xa9\x1e\xdb\x62\x28\x13\x9f\x6a\xc4\xb3\xec\x6d\x70\x99\x1b\xdf\x85\xf9\x31\xdf\xd5\x0c\x5a\xf0\x10\x37\x35\xb1\xdc\x8e\x84\x1c\xb6\x02\x12\x75\x2a\x04\x1a\xc6\x4d\x90\xa0\xe7\xa5\x27\x84\x9a\x7a\x85\xbb\x55\xa0\xa0\xe2\xe7\xe1\xbe\xe5\xcb\xfd\xa8\x93\x47\x2b\xcf\xfb\xdb\x40\xba\xc0\x2c\x23\xe4\x0a\xf2\xf9\x71\x40\x0b\xbd\xfe\x70\x33\x60\x66\x17\xc8\x8e\xe0\x8a\x55\x71\x76\xf5\x79\x1b\x79\x12\x0c\xe7\xf0\xd3\xa6\x70\x74\x77\xe7\xfa\x40\xb9\x37\x76\xf2\xeb\x16\x51\xdc\x53\x6e\xa5\x48\x63\x7b\x5d\xae\x58\xf1\x18\xf6\xf6\x21\x7c\x8d\x7a\x56\x9f\x36\x62\xac\x0f\x25\x01\xf5\xee\xc5\xb9\xf5\x52\xfa\xb7\x77\x97\xe8\xc2\xdb\x7e\xc2\x44\x2a\x71\xcb\x97\xe8\x16\x09\xc0\xf2\xd4\x8c\x0d\x79\x81\x14\x68\x81\xf5\xc5\xb5\xba\x43\x6d\xec\x37\xc4\x3b\x22\x47\x54\xf9\x9a\xb4\x58\xc3\xab\xd9\x3d\x2e\x72\x3f\x06\x47\x9c\x9d\x68\x64\xf6\x91\xcb\x09\x32\x25\x49\x53\xf4\x31\xb9\xb2\x0a\xd9\x4a\x4e\x62\x8e\xed\xf1\x87\x8b\xa3\x76\x52\xa9\x1d\xf0\x5a\xfa\x12\x66\x9f\x20\x5b\x5b\xca\xa1\x63\x75\xb9\x1b\x4d\x72\xf6\x61\x38\xbb\x79\xd1\xe4\xca\xd4\xd8\x94\xde\x1d\x21\x2c\xe0\xb8\x00\xef\x58\x7f\x72\x01\xeb\x09\x7f\xef\x9d\x3e\xe5\xaf\x16\xfa\x8c\x1f\xfa\xe7\x45\xd5\x54\x5f\xf0\x43\xa4\x2f\x8b\x82\x6f\x7a\x5f\x5e\x56\x8a\x92\x6f\x7a\x88\x3b\x4b\x47\x7d\xeb\x43\xfe\xbb\x1e\x01\x54\xc4\xa6\x5c\x4e\xaa\xe6\x6e\x02\xc4\xad\x36\xb3\x17\x8a\x39\x8d\xd9\xf2\x72\x04\xc5\x66\x1d\x92\xa4\xe3\xa4\x26\xfe\x70\x99\xde\x19\xa4\x46\x53\xfc\x0d\xa6\x10\xc0\x10\x40\x05\xa1\x0c\xc4\xec\xcd\xe1\x9d\xea\x41\x65\xc9\xb3\x0f\x66\x19\xa7\x43\x4f\x2e\xbd\x03\x4d\xf0\xb7\xf4\xef\x79\x20\x92\x56\xee\x02\x95\xb4\xfb\x6c\x19\x68\x75\x05\x8c\xf2\x14\xfc\xe0\xd6\xb6\x84\x81\x65\x86\x3d\x73\x63\x79\xea\x9e\x54\x03\x4e\x4a\x7f\x4f\x08\xd7\xa9\x67\xc8\x92\x11\x0c\x2b\xcf\x8d\xd7\x3b\x67\xa5\xaf\x3e\x7f\xe4\x64\x9c\x4e\x5e\xf2\xe5\x17\x25\x7d\xe5\xbc\xd9\x88\xe9\xaf\xe3\xf8\x27\xdf\xeb\xf5\x44\x68\x35\x20\xed\xa8\x5f\xbf\xe3\x00\x10\x64\x47\xe1\x9f\x38\xcf\xc0\xda\xbc\x9f\x70\x88\xd4\xd3\x04\x79\xa1\xc0\x58\xd9\x4f\x13\x50\xd9\x58\x8f\xb5\x15\xaa\x99\x5e\x19\x18\x39\xd1\x11\x14\x3f\x07\x16\x5c\x9c\xd4\x86\x4a\x74\x0d\x0d\x8b\x09\x62\x97\x69\x65\x97\xd7\xfd\x35\xcb\x10\xd5\x55\x2a\xe1\x80\x4e\x35\x31\x6c\x10\x32\x89\xb3\xcf\x05\xe1\xca\xba\x7b\xb6\x38\x2b\x12\xa2\x1a\x62\xc9\x5d\xb3\xa4\x11\xbf\xea\x4b\xea\x2a\xd1\x1e\x9f\xc1\xae\xb6\x41\x21\x70\x61\x1e\x74\x8a\xee\xb8\x0f\x1a\xc7\xb4\xfe\x09\x97\x39\x56\xf2\x4b\x91\x49\xe6\x3f\x61\x28\x9b\xe8\x35\x49\x36\xce\xa5\x8d\x9b\x7b\x42\x1e\xf1\x4c\x4f\x11\xd4\xce\x7e\x52\xc3\x04\x27\xb2\xf9\xe4\x6f\x45\xef\xcb\xc1\x34\x66\x40\x5b\x5d\x81\x19\x0b\x40\x3b\x83\x69\xa4\xe3\x90\xf8\xbe\x70\x59\x1f\xed\x13\x22\x8f\x0d\x69\x1a\x91\x64\xcf\x54\xcd\xe3\x80\x0f\x74\x98\x83\xa0\xd8\x0d\xb0\xc0\x12\x44\xc8\x25\x9c\x4f\xd9\x2d\x45\x4d\xe5\x56\xcc\x8c\x95\xb8\xee\x19\xfb\x91\x7b\x1c\x69\xdc\xe2\x03\x1d\x61\x35\xdf\x33\xf3\x66\xcb\xb0\x30\x4b\x28\x01\x9d\x48\x62\x89\x71\xa4\xae\xc3\xe8\x89\xab\x8b\xa7\xd9\xbb\x05\x98\x28\xe7\x9a\x34\x4f\x5e\x71\xac\x05\x9e\x25\x96\x9a\xcf\xef\x60\x31\xc2\x91\x40\x64\x73\xa3\xf2\x97\x86\x7d\x92\xfb\xe6\x76\xca\x43\xae\x5f\x70\xe7\xad\x4e\x5e\x62\x64\x27\xa4\xdf\x45\xf6\xf5\x98\xe3\xf5\x5b\xaf\x2c\xfe\xdf\xde\xe7\xd4\xd5\x5f\x73\xd5\xc6\xeb\x13\xbb\x01\xf5\x06\x8f\x27\x7c\x9e\xad\x09\x31\xb5\x25\x41\x25\x20\x5b\xfe\x2b\xe8\xcf\xe6\x89\xd4\xc8\x73\x49\x6f\xd7\x94\x65\x46\x54\x87\x5c\xe2\x8a\xcc\xc6\xaf\x50\xc0\x70\x08\x06\x3c\x89\xf7\x39\x2d\x52\x11\x0f\xb5\x89\x9d\xf6\x62\x50\x22\x37\xc2\x9d\x90\xc8\x32\xbb\x3d\x54\xd2\x09\x96\xf2\x7f\xce\xb9\x4e\x0f\x55\x85\xa2\xbe\xf0\x43\x98\x0c\xca\x4c\x0a\x41\xeb\x1c\x2f\xf5\xcb\x04\xc5\xce\xc6\x7c\x90\x4b\xb6\xe0\x50\xab\x47\xb1\xa4\x7b\xca\xf5\x12\xa2\x84\x72\x9f\xbe\x07\xb2\xd8\x49\xb8\xc0\x00\x59\x73\x59\x5b\xbb\x9a\xe5\x39\x78\x1c\x46\x6e\x7f\xc3\xc9\x2a\x1b\x70\x40\x33\x19\x6e\x0c\x91\xb8\xb2\x82\xec\xcf\x72\x1f\x32\x5b\xc9\x9b\x38\x74\xd1\x90\x5b\xd5\x46\x24\x62\x3b\x15\x1b\x91\x1d\x20\xc5\xa7\x8c\x64\x2d\x76\x9d\x20\xa3\x67\xd1\x02\x0b\xe9\xa2\xe7\xf7\xb1\x5b\x60\x22\xc1\x29\xbc\x44\x9b\xab\xcf\x7b\xf1\x94\x23\x79\x75\x5f\xaf\x38\x53\xf4\x33\x9c\x3f\x0b\x41\x19\x30\x8f\x96\x72\xa6\x7a\x54\xfb\x25\xab\x45\x26\xa4\x56\x5c\x95\x9c\xdb\xa4\xee\x9c\x5d\x95\x32\x44\xf1\x06\x57\x13\xb0\xdb\x63\xef\xc3\x06\xaf\x78\x17\xbb\xeb\x62\x83\xe3\xbf\xcd\x30\xfd\xca\x85\xfb\x8b\x41\x21\xce\x3b\x6f\x59\x32\xe3\x72\x3a\xe1\xa3\x27\x36\x98\x4d\xe0\xcc\xdf\x3c\x31\xf9\x41\x58\x98\x28\x74\xdc\x52\x6b\xc4\xf7\x78\xb5\x01\xd6\xd9\xfa\x1e\xd4\x41\x31\x0f\x91\xae\x8d\x1f\x4d\x8d\x89\xd6\x38\x7b\x79\xf2\x40\xca\xf8\x99\x3e\xe5\xff\xb8\x4b\x99\x5e\xf6\x94\x19\xd9\xf0\x80\xe2\x51\xf5\x12\xd2\x7b\xcd\x60\xad\xb9\x24\x07\x7b\xb6\x00\xdd\x7d\xce\x50\xfa\x50\x31\x53\x8e\xa3\xcd\x32\x94\x56\x33\x8f\xce\x4a\xb3\xa0\x2d\xe1\xca\x08\x75\xdb\x4d\xae\xbc\xe5\x76\x82\xb7\x02\x23\xe6\x7a\xbf\xe4\xec\x20\x65\xff\xd2\x7e\xab\x7e\x6c\x7e\x39\xc8\xee\x7a\xe3\x94\x2a\x31\x2f\x84\x70\xc8\xdd\x9c\xcb\x93\xc1\x6e\xce\x65\x09\x43\x2a\xf6\x6d\xf0\xf1\x8a\xe5\x44\x7f\x86\xbf\x38\x9e\x51\xcd\xdf\xa4\xfa\x13\xc4\x97\x34\x00\xb6\x55\xc8\x42\x27\xa0\x1f\x1b\x6c\xfb\x76\x60\x6d\x35\x41\xe8\x7a\x67\xd5\x6e\x4a\x4b\x20\x15\xd8\xdb\x6e\x40\x2e\x58\x10\x77\xf9\x2e\x54\xb9\xe0\x33\x43\xee\x73\xbe\xbf\x1c\xfd\xa2\x95\x1e\x03\x00\x87\x36\x3d\x67\x59\x64\xbc\xfc\x14\xf4\xd1\x00\x6c\xbe\x68\xd6\xf0\x8d\x10\x9c\xdd\xd1\xe0\xe0\xde\xeb\x0e\x40\x21\xf5\x20\x96\x1d\x4e\x44\xd8\xa4\x3d\xb4\xe1\xc0\xa9\xf1\x50\x2a\x8b\x73\x13\x22\x56\x0f\x36\x76\xbc\x93\x84\x17\xe2\xbd\xb5\xaa\x1a\xe7\x4d\xd8\xe0\x6b\x98\xdf\x3e\x99\x40\x9f\x84\x30\x4b\x7f\xab\xf6\x28\xcc\x16\xa7\x3e\xd6\x51\x08\x06\x6b\xef\x7c\xaa\x2b\x4f\x92\xc2\x0e\xf9\xcd\x4a\x57\xc0\xc1\x0a\x03\xb1\xd8\xb0\xcf\x6e\x98\xed\x9f\x03\x48\x58\x29\x88\x70\x54\x6d\xcc\x9e\xb2\x75\xf5\x18\x36\xc1\x93\x90\x87\x8b\x04\x39\x72\x6b\xcc\x03\xec\xef\x07\x0f\x96\xe4\x62\x6f\x92\xd8\x73\x1e\x96\xa6\x27\x8e\xe9\x16\x89\xeb\x4f\x9b\x2f\xe6\x97\xdf\xd3\x19\x66\xa4\xa2\x3e\xd6\xf3\xd0\x72\xd5\x15\xdc\x19\x2b\x0e\x3a\xf5\x62\x16\x93\x8a\x69\xfa\xaa\x9e\xe8\x17\x3c\x5c\xbf\x5b\x80\x7a\x8d\xa7\xbe\xb3\x26\xeb\x7f\xd7\x9a\x70\x33\x2f\x62\x44\xc7\xde\x4c\xe5\xe8\x0f\x71\xf8\x09\x1b\xf7\xe6\x1a\xef\x86\x25\x57\xc6\xe1\x13\xac\x62\x2f\x46\x39\x23\xc4\x88\x9f\x31\xd8\x1c\xe9\x53\x1e\x55\x7d\xa9\x33\x9f\xa4\xf2\x53\x9d\x0d\x5d\xaa\x9f\x85\xac\xd7\x59\x67\xb6\x52\x43\xa0\xf7\x9a\x9d\xd5\x5b\xc9\x3e\xc7\xd3\x78\x31\xec\x04\x41\x52\xa3\x0b\xb9\x53\xee\x16\x57\xc8\x4f\x91\x0c\x07\xb4\xb7\xf3\xe6\x5a\x59\x34\x8e\xea\x4b\x90\x00\x55\x7d\xc6\x85\x7f\xcc\x5c\x9e\x15\x56\xab\x18\xc5\xfa\x01\x93\x98\x90\x80\xe9\xac\x58\xe8\x0f\x7f\x1d\xca\x43\xed\x4b\x3a\xd0\x2e\x6c\x88\xb4\xaa\x08\xe3\x09\xf8\xf7\xfa\x81\xd1\x8e\x4d\xc9\xaa\x33\xe5\xab\x62\x99\x51\x36\x9c\xcc\x90\x48\x2a\x44\x1f\x59\xef\x55\x38\x61\x7b\x76\xef\x12\xde\xe3\x55\x08\x50\x5c\x87\xa5\xc7\xf0\xb0\x3c\x3d\x0c\x30\x8b\x12\x72\x55\x7f\x0c\x0b\xcf\x81\x0b\x0c\x1a\x85\x56\x71\x3b\x33\xd0\xaa\x5b\x90\x03\xc9\x7d\xe5\x4a\xe0\x27\x42\x88\x07\x72\x0e\xfa\x1e\xe9\x99\x48\xf4\x75\x46\x5a\xac\x60\x2d\x56\xa7\x38\x28\x16\x41\x77\x08\x53\x3a\xaf\x17\x29\x9a\xa2\x9b\x92\xed\x8e\x2d\x30\xf5\x2a\x5f\x58\xae\xa7\x61\xa6\x99\x23\x7f\x6d\x03\xf7\xa6\x2f\xc3\xa2\x6d\x93\xcf\xcd\x1c\xea\x0d\x80\x7c\xc5\x87\x7a\xee\xa0\x31\xbf\xb1\xab\x4e\x32\x2c\xb5\x4a\xdc\x1e\x48\x08\x64\x6b\xbc\x12\x5e\x6f\xbd\x4b\x7d\xf9\x5c\xe0\x79\xa5\xc6\x17\xe6\x9c\x68\x58\x6a\xfb\xd9\xe5\xec\x79\xe8\xd1\x8a\xa1\xde\x91\xd8\xc2\xbe\x75\xa4\x39\x27\x30\x61\x0f\xae\xbb\xac\xd7\x32\x17\x82\x33\x76\x0e\x1f\xb0\x9a\x34\x92\x09\x49\x5f\xae\x60\xe2\xf4\xb1\x38\x17\x38\x83\x71\x7a\xfc\xc4\x67\xdb\x60\xaa\x1e\xea\xcb\x80\x31\x6a\xc8\xf3\x4f\x4b\x16\xc1\xf3\x3c\x84\xfa\x63\xb2\xaa\xdf\xcd\x53\x75\xfc\xab\x3c\x55\xd4\x60\x78\x06\x59\x7d\x0c\x61\x1a\xe6\xad\x23\x3d\x82\x20\x3f\x81\x56\xbf\x81\x73\x56\x6e\x3d\x87\xaa\xdf\xe3\x30\xed\x29\xdb\x08\x77\x6e\x3d\xcf\x62\xc2\x26\xf0\x1f\xe1\x38\xed\x4c\x4f\x61\x3e\x02\xaa\x43\xe4\x1e\x0a\xe3\x3b\xd2\xb0\x60\xc7\x26\x22\xc9\x67\x6e\x8e\xaf\xad\x86\xaa\xf0\xf5\xdc\x8c\x2a\x8c\x25\x58\xd7\xfe\x42\x4f\xe1\x2d\x38\x04\xd6\xec\x0f\x32\xd1\x89\x0f\x68\xc2\xd1\xf5\x80\xdb\x91\x72\x50\x60\xcd\xb9\x75\xc2\x02\x63\x28\x2a\xe2\xbc\xcf\x04\xaf\x42\x2f\xdd\xd4\x86\xcd\x39\x6b\x75\x18\x5a\x07\xd8\x70\x4e\x5b\x23\xd1\x95\x8c\x1c\xeb\x7e\xf9\x46\xd9\x14\x99\xe1\x67\x0c\x5a\x9d\xb8\x40\x25\x81\xa5\xf9\x33\x56\xf0\x7d\xa5\x3a\x89\x13\x2b\xe0\x60\xaf\xa8\x6b\x12\xfd\x1a\x22\x10\xc0\x53\x63\xe7\x8e\x16\x6d\xe6\xb8\xb6\x55\x57\xb1\xa3\x1c\x7e\xea\x90\x86\x3c\x46\x9a\xcc\x9b\xbe\x25\x59\xd2\xe4\xe4\x24\x0b\x5d\x9e\x44\x22\xd9\x56\x96\x69\x50\xf9\x26\xff\x3d\x74\xa6\x5a\xe4\x39\x57\x39\xb8\x36\xe8\x02\x04\xf5\x0d\x32\xcf\x12\x01\x87\x2f\x9a\x69\x52\x87\x36\xe5\xd0\xd9\x38\xa4\xc8\x56\x1d\xcb\x57\xd5\x85\x16\x5e\xe0\x29\xf7\xe9\xf4\xa9\xb4\x9e\x30\xcf\x7a\x41\x79\x39\x5e\xa9\xdc\xa5\x83\xa0\x74\x9c\xf1\x85\xe0\x30\xaf\x8e\xf5\xe1\xce\x6e\x96\x2e\x9a\x12\x0a\x7b\xba\x73\x91\x73\xdd\xea\x28\xf7\x89\x45\xa8\x91\x4d\x8c\x2b\xb2\x9f\x8e\xa0\x27\x1d\xf6\xac\xae\x72\xda\xbc\xa4\xad\xa3\x47\x9e\xcf\x0b\x7c\xb0\xaf\x8c\x55\x07\x9a\xb1\x20\x84\xc6\xdb\xc3\xc1\xf1\x38\x80\x7a\xd0\xe7\x50\x2a\x16\xbc\x53\x5c\xb5\x77\xde\x2b\x50\xfa\xa8\x8c\xd2\xc7\x25\x94\x06\x12\xb3\x25\xc8\x79\x1c\x9b\x1d\x8c\x9e\x7c\xc0\x68\x60\x57\xb3\xd2\xff\x12\xa3\x8f\xa0\xef\x8a\x7c\x99\xa3\x74\x33\x2b\xe3\x11\x18\xc2\x44\xe7\x9f\x71\x59\xd2\x09\x18\x62\x89\x4b\xba\x58\xb4\xa1\x18\x5b\x00\xd2\x08\x35\xce\x71\x1a\x62\x64\x2f\x7e\x2e\xe3\xf4\x11\xbc\xa3\x8c\xd3\xe7\x1f\x71\x7a\x22\x86\xc5\xc6\x31\x62\x46\xf9\xca\xcb\xab\x11\x7b\xe8\x1a\x47\x0c\xe2\x0d\x97\xad\x4e\xd0\xc2\x12\x24\xa0\x06\x0b\x78\xc8\xc9\xb8\x43\xb4\xdf\x66\xdd\x2a\x15\xc2\xdb\xf0\xac\xbe\x32\x37\x6b\x91\x58\xe5\xe5\x02\x57\x05\x83\x6d\xbe\xeb\xa5\xaf\x9c\x8d\x86\x04\x7e\xa4\xe1\x03\x5d\x18\x5a\xea\x25\x5b\x9f\x37\xb6\x3a\x05\xd9\x18\x01\xaf\x78\xef\x5e\xf4\x42\x1f\x8b\x97\xf1\x97\x18\x4e\xdb\xc4\xf5\x42\x18\xfa\x7b\xa4\x92\x9c\x93\xbe\x41\xab\x35\x1b\xb0\x10\x32\x34\xeb\x01\x42\x77\x56\x2c\x9b\xec\x33\x7f\x43\x20\xcf\x61\xed\x94\x48\xd1\x51\x6d\xc1\xe1\x27\xee\xd5\x38\x28\x77\x7b\x56\x2d\x5d\xb4\x3d\x36\x72\xd1\xf6\x45\x1e\x07\xeb\x29\xf3\x2c\x04\xaa\x78\x09\x83\x05\xc9\xf8\x29\x70\xed\x80\x1a\x73\xe0\x8d\xf2\xb6\x18\xaf\x0c\x51\x10\x65\xfb\xc4\xba\xd4\x1f\x0c\x7c\xe1\xf1\xc0\x5f\xbc\xcf\x07\x7e\x51\x2d\x5d\xb6\xbd\x30\x8b\xdf\x1e\x38\x34\xf6\x4d\x3e\xf0\xae\xf2\xd6\x66\xa3\xcb\x6d\x9f\x84\x00\x97\x6e\x76\x66\xc9\x9b\x0e\x3e\xb4\x64\xee\x3e\x6d\xfe\x34\xb4\xea\xca\x39\x24\xb2\xe9\x2a\xef\xe1\xb8\x57\x6e\xf8\x3d\x39\x59\xd4\x02\x82\xbe\x79\xcd\x7b\x7f\x99\x7c\x4b\xc5\xb5\x37\xfd\x60\xed\x5e\x19\x99\x5f\xb1\xd8\xb2\xb2\xc4\xbc\xb3\xda\xb5\xd4\x95\x3b\xe1\x47\x2e\x37\xbc\x66\x62\x3b\xd3\x27\x44\x64\x56\xb5\x3b\x36\x47\xbd\x31\x8d\x3a\xb0\x9f\xb6\x25\x1a\xe5\xb7\xad\x86\xaa\xa9\x48\x6c\x5a\x01\x09\x72\x43\x0d\xa1\x22\xa3\x54\xe6\x2b\x4a\xd5\xdc\x3e\x71\xde\x0a\x97\xc5\xb5\xd1\x63\x29\x4a\xd4\xc9\x0f\x70\xfb\x83\xa4\x6c\x0d\xc9\x35\x94\x0b\x6d\xe2\xfa\x46\x5b\x3d\xb9\x76\x40\xec\x63\x75\x6b\xa5\x95\x73\x7f\xba\xa3\xb4\x75\xb3\x7c\xf9\x10\x2f\x30\xb0\x26\xf6\x2d\x7b\x82\xa9\xd4\xb7\xf6\x8d\xf1\x38\xba\xb9\xe5\x9d\x10\x9a\xb6\x87\xfa\x5c\xae\x00\xb4\x7c\x35\xb3\x77\xaf\xbf\x59\x8d\xb4\xe5\x92\xb6\x34\xb5\xc7\x3b\xc7\x98\x4d\x49\x82\x2b\x9c\x49\xb4\xe8\xad\x87\x42\x30\x1b\x6a\x82\x6c\xb9\xc3\xb3\x8f\x0b\x0d\x39\xc5\xe9\xa9\x28\xec\x8e\x44\x9e\xe1\x5e\x36\x1c\x9f\xc3\x19\xb2\xbe\x2b\xb2\xc2\x75\xf1\x69\x2a\x9f\x3c\xf9\x24\x46\x5e\x4e\xc1\x24\x9f\xfc\x92\x84\x71\x89\xe1\x9d\x0f\x08\xea\xda\x62\xe0\xa9\x4b\x48\x16\x6f\xc0\xad\x55\xdc\x06\xc5\x88\xd4\x3e\x1c\x95\x57\xf6\x80\xa7\xdf\x37\xb1\x19\xeb\xe3\x9d\x2f\x72\x65\xc7\xd2\x2d\x88\xe7\xbc\x2b\x2e\x85\x3a\xf3\x68\xc2\xe1\xb5\x89\x77\xfd\xc3\x2b\xb8\xb1\xc5\xb4\xf5\x32\xd4\x96\x4f\x3b\x6d\x6f\x8c\xb5\xb5\x55\x5d\xc4\x59\xa4\x11\x7d\xe6\x0c\x32\x67\x5a\xd1\xbf\x7d\x8d\xd4\xa2\x15\xb4\xb7\xcd\x2f\xaf\xe6\xb7\xcc\x72\xb6\x3a\x07\xff\x70\x83\x13\xd8\x10\x75\xfe\xf7\xd6\x26\x56\x9e\xe4\x2f\x48\x60\xdd\x38\x44\x4e\x67\xbe\xec\xe9\xbc\x36\xd5\x50\x2d\x10\xc0\xf9\xf7\xaa\xc5\x81\x56\xc7\x66\xa1\x8b\xa4\xa6\x18\x1d\xa3\xa5\xc1\x51\xfc\x15\xd0\x29\x5c\x0f\x81\x79\xef\x9f\x2d\xb9\x4f\x64\x6b\x1e\xb7\x9c\x08\x13\xf7\x36\x3b\x87\xf6\xf4\x49\xe8\x4a\xa1\x9a\x2c\xcc\x07\xd5\x84\x8f\x2b\x79\x24\x31\x4b\xbc\x64\x73\x28\x07\x8c\xfb\xd6\xc7\xdb\x43\xeb\xca\xac\x0d\xe4\xbd\x5f\xc8\xf7\x66\x83\x9b\x75\x6f\xdb\xac\xea\x86\x48\xf5\x82\x31\x74\xc4\x92\x0e\x1e\xdd\x12\xfb\x3e\x0b\x81\x73\xc3\xb1\x18\x53\xa3\x90\x84\xab\x31\xeb\x95\xf0\x6f\xad\xbf\x2d\xe1\x8b\x51\x6a\xde\xfb\xc8\xf8\x17\xce\x1f\x8b\xf6\x8e\xf7\xca\xd6\x17\xa8\xf0\xbf\x29\xe0\x37\xd5\xa5\xfd\xfc\x42\x0d\x46\x10\xea\xc7\x10\xea\x23\x08\xf5\x15\xfb\xdb\x42\xfd\x85\xfd\x0d\xa1\xfe\x14\x42\xfd\xfc\xdb\x42\xfd\xf9\x27\x42\xfd\xac\x3a\xd6\x1b\xd8\x35\x52\x63\x15\xd7\xc6\xfe\x52\x98\xaf\x98\x99\xb6\x8c\x1a\xda\x87\xfa\x99\xc8\x7b\xf5\xef\xc5\xf8\x09\x6e\x29\x3f\x1d\x7c\x10\xe0\x4f\x6b\x25\x01\x5e\x20\xff\xa8\x0c\xf9\x65\x09\x9e\x4d\x9b\x38\x57\xfd\x0c\xd0\xc7\xa9\x99\xde\xf1\x17\x90\xbf\x31\x60\xfc\x2c\x04\x3f\x7d\x94\x81\xdd\x91\xfe\xa5\x10\xec\x12\x31\xaf\x7e\x14\x82\x9d\xaf\x85\x60\x33\xf8\x28\x04\xfb\x2c\x6a\x2f\x74\x7b\xf1\xc4\xd8\xb5\xd2\x85\xb4\xbb\xd2\x82\x5e\xf2\x12\x34\x00\x42\xd1\x04\x31\x27\x23\xa3\x2e\x60\x0e\xb9\xd4\x1f\xf1\x21\x71\x3e\x15\x84\xcd\x9f\x08\xc2\x23\xc8\x93\x43\xef\xc4\x61\x36\xb8\x70\x21\xf1\x34\xc7\x41\x49\x04\x4e\xf5\x3f\x11\x81\xdd\xbf\x15\x81\xcd\x9f\x88\xc0\x6f\x18\xf2\xf6\xc3\x90\x47\x41\x49\xf8\x7d\xd3\xff\x50\xf8\x3d\x80\x1a\x08\x36\xc1\x52\xef\xf8\x1f\x4a\xbd\x2b\xc9\xf9\xda\xcf\xf1\xed\xf9\xbf\x41\xda\x3d\xb4\x19\x89\x8f\xec\x43\x3d\x26\x21\xcd\xad\xb2\x07\xeb\x37\x04\xdd\x1d\x5c\x86\x88\x6b\x92\x5f\x8a\xb8\x75\xf3\xe2\x58\x4d\x92\x3c\x2b\x3e\xee\x62\x40\xe6\xc6\xff\x99\xc7\x2f\xfb\xa6\xae\x40\x64\x58\x80\xbb\xb9\x45\xf4\x62\x04\x86\x31\x35\xe2\xa5\xfd\x60\x2f\x27\xed\xe7\x83\xbd\x7c\xc5\x51\x6a\x55\x49\xf8\x35\x01\x5b\xdd\xe6\x42\xb4\x23\xc9\xa1\x45\x54\x5e\x8b\x78\x7d\x64\xe7\xae\xe0\x2c\x26\xf6\x43\x5c\xe2\x09\x42\x5e\x36\xf6\xbb\xb8\x44\xf1\x75\x6e\xd1\x54\x70\x2e\x7e\x5c\x1b\x71\x69\xf2\x9a\x04\x80\xae\x52\x41\x11\xdf\x13\x20\x89\x80\x19\xdb\xf2\xae\xf2\xc4\x09\xcd\xe5\xa6\xf6\x8e\x52\xdd\x7d\x76\x31\xcb\xe5\xf4\x97\x4f\x30\x87\xbb\xca\x19\xdb\x08\x3c\x5a\xe9\x54\xc6\xff\x2a\xbd\x5c\x42\x8e\xf1\x2f\xf8\x7f\x27\xb6\x0f\x23\xfd\x6e\x61\x97\x7a\x1f\x46\x0a\xa4\x92\x60\x89\xd2\x3d\x37\x7c\xc5\x0e\xbc\x54\x55\xac\x0d\xdc\x87\xbd\x75\xc0\xfd\x4e\x90\x17\x3c\xb1\x19\xd2\x82\x5a\xb9\x4c\x70\x82\xab\x5d\xcc\x69\x15\xce\xff\x91\x6e\x8f\xca\xce\x7f\x4b\x5c\x57\xf0\xfd\x67\xa1\x00\xca\xe0\x82\xd0\x49\x24\xe4\x55\xa8\x04\xbd\x5c\x69\x8f\x83\x4e\xcc\xb3\xb5\xeb\x8e\x7e\xd5\x72\xe3\x27\x4e\xa6\x4e\x38\x99\x92\x19\xd9\xa5\x80\x8f\xf3\x11\x4e\x19\x77\xdf\x95\x63\x77\x66\x4d\xc2\x48\x47\x58\xb1\x52\xd8\x97\x93\x4a\x28\x98\xc4\x3e\xf0\x30\xe5\x86\x76\x44\x3e\xbc\xe5\x65\xd5\x4c\x67\xa7\xa8\x94\xe3\x03\x21\x77\x2f\xd1\xf4\xad\xbe\xa9\x8e\x6a\x1f\xaf\xd1\xcc\xdd\xe9\xb8\x85\x68\xa6\x95\xc2\x09\x80\x49\xf9\x8e\x67\x46\x2a\x9f\x25\x57\x09\x1d\x96\xb8\x8a\x2a\x48\xe1\x7c\x24\x89\x9c\x33\xb8\x96\xcb\x94\x5e\x73\x48\xef\x2c\xcc\xa8\xd4\xfb\x1d\x6f\xfe\x1c\xc1\xae\xf0\x1d\x91\x00\xd6\x60\xd9\x08\xb7\x1f\x75\x95\x9a\x6a\xc1\x98\xe6\x14\xc9\xa8\x96\x25\x0f\x91\x77\x6c\x66\xf8\xba\xd4\x6f\x1c\x0b\x53\x5b\xe8\xa5\xc6\xb8\x6e\x1e\xca\xe3\x9a\x15\x08\x77\x2c\x6e\xaf\xfc\x45\x5a\x52\x56\x5b\x6b\xa6\x91\x11\xa7\xd4\x3a\x6f\xe0\x04\x4d\x6a\x73\x9f\x8f\x0c\x8d\x4b\xdc\xc6\x21\x59\x46\x4e\x0c\x8e\x52\x27\x2d\x38\xe4\xfa\xec\x2d\x72\x33\xb6\x3b\xc1\x45\x1c\x25\x47\x9d\xb8\xa9\x1e\x97\x2d\x3c\xa5\x38\x36\x3c\xe1\x18\xc1\xa1\x9e\xb3\xc3\xa9\x9b\xb2\x8b\x48\x92\x7c\x37\xdf\x86\xb8\x1c\x5f\xc4\xe5\x59\x03\x24\x96\x6f\x9a\x89\xbb\x50\xde\x50\x32\xa6\x56\xbb\x24\xc8\xdd\xaf\x76\x3a\xda\xf2\x91\xd2\x8a\x5c\x9d\x53\x85\x2a\x3b\xde\x01\x86\x0b\x81\x7a\xe4\x39\xe0\x96\x24\xe6\x4d\x96\x81\xd6\x86\x53\x0c\x9d\x36\x7f\xaf\xda\x3f\x9f\x30\xf1\xd1\x03\x20\x06\x7a\xf7\x8e\x6b\xe5\xa9\xba\xe3\x8f\x83\x71\x69\xf7\x17\x7a\xac\x2b\xd1\x67\xde\xea\x0f\x28\xaf\x8a\x9f\x65\x6b\x46\x27\xc7\x9e\x03\x84\x23\x3b\x56\x60\x9d\x69\x63\x27\xc8\x93\x36\x43\xeb\xf5\xb7\x12\x91\x40\x5b\xaf\x1a\x41\xfd\xca\xda\x8d\x61\x3d\xd0\x07\x91\x84\xb1\x76\x32\xe4\x83\x96\x62\x8b\xd1\x76\xce\x31\x72\x7e\x55\x02\x61\x39\x47\x9f\x7c\x7a\x79\x16\xa3\x8c\x72\xda\x7c\x47\x4d\xee\x5c\xaf\xaa\x35\x86\xe0\x45\x76\xd1\x8a\x69\x9f\xf3\x6c\x9a\xeb\x5a\x51\xdf\x11\x79\xe4\x12\xd1\x8e\x48\x5f\xe8\xcc\xe0\x30\x62\xd2\x31\x20\x30\x69\xc8\xa5\x85\x47\xcf\x19\x3b\x33\x1b\x1b\xa4\x0c\xa7\xd9\x85\x30\xba\xaf\x1c\x05\xfd\x5c\x74\xe1\xe5\xb1\x9b\x0b\xdc\x66\x78\x2f\xad\x92\x90\x3b\xc9\xf7\x83\x5b\x6d\xd2\x56\x3c\x57\x4a\x49\x08\x7b\x42\x1f\x24\x4c\x23\x42\x8e\xa7\xe2\x0a\x63\xf7\x93\x2b\x8c\x8f\xc6\xe5\x68\x20\x84\xd9\xc0\x4f\xb6\xad\xc9\xb1\x37\x4f\xb9\xde\x22\x1b\x31\x75\x54\xab\x9d\x31\x15\xf7\x90\xf0\xf4\x0d\x36\x03\xce\xa3\x64\x62\x89\x97\xf7\x0e\x84\xa0\x71\x06\xae\x01\xc2\xdb\x11\x0e\xf1\xc6\x53\x73\x58\x81\x2f\xce\xfb\x43\xae\x52\xfe\x85\xd4\x43\xbe\x26\x1a\xa8\x7f\xce\x1b\x72\x6e\x70\x5b\xb9\xf7\x82\xb1\x38\xf1\x15\x9f\x38\x3c\xe4\x83\x64\x2c\xbb\x64\xc7\xec\x1b\xd9\x45\x9e\x38\x92\x7e\x01\xd2\x57\x87\x9f\xd3\xc3\xe0\x4b\xd5\xf3\x82\x5c\x71\x28\xd1\x61\xa4\xd2\x54\xa1\x58\xf4\x78\xf8\xce\x31\x3c\xce\x7c\x73\xbb\xf2\x39\x78\xf4\x50\x0b\x1c\x4b\x91\xb4\xc7\x9b\x83\x8b\xd2\x44\xce\x00\x35\xce\x9a\x6d\x90\xe2\xb9\x29\x1e\x38\x8e\xec\x45\x4b\x9c\xc4\x29\x14\x0c\xdc\x57\xde\x1a\x95\xaf\x76\xde\xc7\xc2\x04\x95\x51\xb1\xc9\xc9\xe7\x91\xc8\x07\x2c\x10\xcc\x25\xba\xf1\xf0\x7d\xec\xf1\x4c\x0a\xcc\x3e\x7e\x9a\x20\xba\xa9\x08\x35\xe6\x9b\xc4\x9c\xc3\xea\xc7\x50\x63\x91\x3a\xca\x71\xc3\xa7\x06\x4e\x1b\x91\x31\x7a\x13\x9c\x43\xc0\xa9\x29\x96\x81\x95\xb3\x66\x24\x93\xd3\x68\xcc\xd1\xdd\x53\x4e\x69\xb9\x71\x24\xe2\xb4\x51\xb4\xdb\xb0\x42\x82\xf2\x07\x11\xc9\xc6\xdc\xa5\x5f\xcb\xa7\xfa\x94\x5d\xaa\x57\xc4\x9e\xbd\x88\x73\x34\x29\x70\xc1\xd9\x85\xfb\x82\x32\xcd\x35\xa2\x79\x26\x63\x2d\xb6\x51\x8b\xef\x12\x12\xca\x27\x37\xf8\x4f\x5d\xc4\x6a\xf1\xc5\xfc\x3e\xb1\xeb\x2b\xbe\x35\x8d\x91\x2e\xb3\x57\x37\x4e\x64\x5b\x16\xf7\xc0\x69\x24\xab\xc0\x8d\xc6\x7c\x35\xca\x20\x3f\x3b\xef\xc0\xd5\x83\x98\x40\x17\xe6\x17\x17\x49\x55\xb3\xd3\x03\x0e\x32\x49\x62\xb6\xb4\x5e\x47\xb8\xea\x93\xef\x77\x33\x49\x26\x1d\x31\xa7\xbe\x87\x04\x31\xc4\x84\xeb\xeb\xb1\x2e\x09\x11\x1f\xaf\xe8\x67\x5a\x23\xc6\xcc\x17\x9c\xa1\x3b\xce\x2f\x85\x27\x7d\x96\x04\x09\x07\xf9\xf2\x68\x17\x1f\x56\x42\x1e\xd7\x48\x6d\x29\x11\xbb\xee\xf2\x26\x17\xd6\xeb\x53\x70\xe8\x5e\x16\x2d\x28\x39\x71\xe1\x51\xdb\x89\x1d\x7b\x1d\xcb\x09\xb0\x62\x94\x26\xd6\xdb\xb1\x64\x26\x78\x2b\xbd\xbe\xfc\x48\xad\xe6\x93\x0f\xd4\x2a\x0b\x1a\xe4\xc4\x1c\xb7\xb9\xe9\xd5\xf5\xf8\x8c\x59\x4d\x81\xe2\x4a\x8c\xd8\x8a\x83\xc1\x06\x63\x51\xbd\x84\xd6\xb4\x84\x91\x3b\x7c\x75\xae\x59\x68\x9c\x56\x68\x1e\x30\x69\x18\xea\x04\x49\x14\x0f\xf9\x3e\xb0\x35\x8c\xb7\x43\x2c\x46\x88\x43\x09\x4a\x62\x25\x89\x3a\x48\xdb\x2f\xb4\xbb\xee\x31\x8e\xa6\x49\x3a\x2e\x1e\x8b\xf3\xea\x13\xf9\x93\x14\x5d\x72\x31\x6b\x83\xc5\x28\x9f\x4f\x9f\x17\xe7\x25\xe4\xf2\x2e\xb8\x24\x38\x76\x3a\x3c\xe6\x20\x33\x62\x3d\x9e\x32\xa7\xb6\xca\x5a\xf4\x95\xea\x9e\xf5\x72\xaa\xd2\xa8\x66\xa5\x5d\x39\x95\xb7\x80\x9a\x73\xd4\x83\x40\x8b\x9d\x8a\xb5\xd8\x6b\xef\x3f\xe1\x1f\x33\xc4\x02\x6f\x4a\x69\xf2\xcc\xf3\xe5\xaf\x2f\xc1\x47\x66\x74\x1e\x06\x14\x47\xef\x0c\xf1\xef\x23\xb9\xe0\x31\x33\x71\x30\xe4\x5e\xbd\x01\x50\x86\x42\x43\x77\xfb\x9f\xa3\xff\xb7\x52\x62\x3e\xf3\x60\xff\xd6\x98\xb6\xc8\x34\x8d\x8b\x74\x47\xb8\x51\x4d\x36\x35\x82\xd1\x71\xcc\x5c\x03\x79\x4b\x5e\x60\x47\x4c\x10\x98\x99\x5c\xe5\x34\xd1\xdf\x22\x7c\x78\x51\xcf\x9a\x43\x04\xa5\x0c\x1b\xf9\xe3\x3e\x9e\x85\x31\x0b\x93\x36\x4a\x43\x7a\x69\x94\x4c\x08\x93\xae\x15\x71\x3c\xa8\x9d\x9a\xf3\x02\xda\x7b\xa4\x3a\xe1\x16\x54\x9c\x64\x68\x95\x69\xff\x6f\x1e\x55\xb9\x40\x7b\x43\x7d\x99\x35\x5c\x26\xec\xa1\x72\xa6\x66\x1f\x5f\x42\xeb\xf5\x49\x79\x9d\x37\x24\xf9\x60\x8b\xb8\x1e\x95\xae\x77\x07\xe7\xda\x62\x5f\x82\x24\x7a\x7f\x76\x4f\x72\xf6\x20\xa0\xbd\x71\xc4\xeb\x18\x40\x87\x30\x0b\x96\xd3\xe8\xc5\x5a\x02\xd3\x8f\xfa\x78\x0f\xc9\x13\xb7\xe7\x49\x50\xd8\x94\xf3\xbf\x9b\xb1\xd9\xe7\x13\x49\xf0\xc9\xd5\xa3\x1a\xa0\xf4\x1c\x08\x9a\x45\xed\x47\xc8\xc2\x87\x7b\xee\x2b\xb8\xb4\x53\xa2\xf6\xf1\xbb\xd2\xb5\x9a\xc4\x47\x47\x19\x5c\xcf\xc5\x29\x33\x9e\x14\x74\xe5\x58\x4f\xb2\x2c\x8c\xa5\xb7\x9f\x2e\xe8\x87\xe8\xd7\xfa\xe6\x0b\x56\x92\x89\xa8\x67\x48\x84\x56\xe4\x4b\xb8\x40\xbc\x5d\x85\x75\x86\x73\x67\xf1\x58\x96\x54\x37\xb8\x53\x69\x55\xc5\xfa\xbc\x93\x55\x1d\x65\xee\x13\xbc\x3a\x82\xf3\xc2\x67\x51\xb1\x90\x60\x15\xc2\xdc\xdf\x8b\xae\x23\xf8\x26\xa5\x2f\xd4\x35\x8f\x0b\x98\xd7\x0a\x69\xd3\xcf\x0c\x6c\x7e\x2a\xd8\xc9\x02\x69\x59\xb0\x6d\x12\x75\xbe\xd0\x59\xe3\x24\x8d\x6d\xf8\x74\x70\xed\x02\x6a\x05\xd1\x21\x27\x28\xd0\x7e\xc1\x89\xe7\xef\x52\xde\xa9\x7d\x7d\x7e\x87\x2c\x5a\xc4\x48\xee\x90\xe7\x31\x32\x18\xb3\x03\xe9\x77\xc3\x62\x01\x84\x7d\xb9\xbd\x11\x14\x92\xbe\x74\x94\x5b\x43\x92\xbf\xce\x2b\x9f\x40\xee\xe1\x3a\x4f\xda\xe8\x3a\x61\x36\xf6\x97\x13\x2a\x18\x49\x18\x22\x00\x95\x3f\xf4\xac\xbe\x19\x9b\xb1\x3e\x9d\xec\xa8\x33\x7d\xab\x6f\xd4\x58\xdb\x1f\x48\x87\xb0\xd1\x18\xc0\x5c\xc9\x2f\xc0\x94\x3c\x23\xe2\x56\x99\x09\x4a\x28\x90\x04\x7b\x6c\x0e\xc7\x7f\xaa\x2e\x7d\xfe\xf3\x73\xf8\x5a\xe9\xb9\x03\xd8\xae\x8e\xb0\xf3\x72\xdb\x69\x99\x4c\x7c\x12\x86\xfd\x82\x59\xf7\x93\x49\x41\x5a\xd3\xdf\x3e\x22\xb7\x94\x35\x4b\x0b\x44\x51\xdd\xd5\x84\xed\xf1\x87\xa2\x0c\x6f\x4a\x2d\x8f\xb5\x24\xd8\x8a\xcb\xc3\xfa\x54\x46\x45\x92\xff\x7a\x5c\x1c\x2e\x1c\x6c\x27\xa2\x12\x96\x5a\x1c\x9c\xc8\xad\x2c\xe5\x06\x0f\x50\xa0\x77\x38\x29\xf3\x8b\x23\x3c\x75\x8f\x27\x65\xd1\x62\x06\xfe\x13\x5f\xe7\xef\xa6\xfa\xa3\xd4\x88\xa4\x9c\xbb\x47\x1d\x3f\x3b\xd9\xf0\x7b\xe1\xf0\x9f\x05\xd2\x9f\x60\x54\x9d\xd3\xd2\x98\xa7\xfa\x4c\xde\x9e\x97\xc6\x3c\xd5\x17\xf2\x74\x59\x7a\x3b\xd2\xfb\xf2\x54\xd9\x79\x3b\x94\x74\x05\xa3\x69\x69\xd1\x90\x61\x21\x3f\x63\xe0\x71\x02\x26\x18\xf0\x26\xd0\xee\xb0\x6b\x12\x97\xe4\xcb\x30\x3c\x2c\xa8\x69\xcb\x52\x36\xc0\x0a\x41\xc6\xcd\x33\x72\x87\x74\x70\xbb\x6c\xe3\xc8\x41\x1e\x0d\x21\x04\xcd\x37\x0c\xa0\x11\x3d\x31\x39\xdd\x32\x2a\xb3\xe7\x5a\xd2\x6f\xd5\xd7\xbe\xd5\x51\xce\xa9\xc6\xa7\x96\x24\x38\xeb\x2a\xf3\x54\x72\xa8\xf0\x09\xd1\x18\x7e\x33\x36\x79\xb8\x24\xd0\xbe\x68\x65\x1e\x45\x76\x8c\x34\x8e\x98\x72\x86\x22\xb3\xd1\x08\x1c\x0e\x12\x79\xd9\xa5\x3d\x59\xe2\x68\x63\x2a\xef\xfa\xac\x19\x20\x41\x34\x4e\x9d\xd4\x89\x48\x2c\xf4\x12\x83\xde\x87\xdd\xee\xe1\x9c\x0f\x30\x1e\xe9\x49\xb7\x04\x88\x26\xb1\x5f\xa6\x62\xd1\x14\x17\xd4\x84\x49\xa3\x33\x86\x99\xbe\x63\x17\x66\xdd\x86\xd5\xcb\x13\xfa\x23\x05\x0b\xfb\x63\x46\x8e\xc4\x68\xc0\x4e\x18\xba\x30\x6b\x75\xc5\x66\xe7\xd0\x4c\xab\x70\x7e\x35\x05\xfc\x91\x7a\x20\xe7\xb8\x44\x44\x76\x8f\xec\xb2\x6c\xe2\xbe\x40\x9f\xb2\xf2\x93\xbd\xa7\x45\x6a\x1e\x9f\xdd\xad\x0b\x5b\xd1\x8e\x70\x82\x86\x0e\x14\x71\xd8\x50\x2f\x20\x4d\xa7\x65\x13\xc2\x82\xc7\xe0\x23\x15\xca\x9a\xf9\xf6\x25\x43\x5e\x87\x64\x08\x50\xdf\x1e\xde\x4f\x0d\x8e\x4e\x04\x1f\x9b\xbc\x83\x51\x79\x84\xa3\x26\x8d\x57\x9c\x2d\x93\xa3\x16\x38\xfe\x45\x8d\x53\x8d\x7d\x50\x93\x8d\x7d\xce\x6b\xec\xa8\x0b\x81\x23\xd8\x22\x1e\x24\x25\x10\x5b\xe4\x21\x10\xf2\xbc\xbb\xec\xbd\x56\x8d\x99\xe4\x88\xb8\xcf\x36\xdf\x39\x16\x71\x0f\xe0\x85\x14\x19\xfe\xe1\x3d\xa7\xc8\xd8\x52\x73\x2e\xce\xe5\x77\xf9\x88\xc7\x16\xd7\xf8\x2f\xf4\x39\x1a\x5a\x71\xea\x1f\x1c\xa7\xe9\x2c\xa6\x3c\x9b\x63\xe6\xe9\x73\xe8\x88\x37\x7c\x80\x35\x73\xbe\xf0\x4f\x08\xbe\x81\x52\x7d\xbe\x0a\xc6\x8d\xf5\x2b\x77\x8e\x63\x4b\xaf\x3a\x99\xea\x0f\x4b\xe4\xb3\x0e\x77\xe5\x55\x26\x3b\x4b\x74\x26\xb7\x56\xe3\x84\xa8\x90\xd6\x6c\x55\x37\xf6\x08\xf0\xd7\x02\x6f\x42\x52\x81\x3a\x4c\x14\xb8\x22\x1d\x3e\x0a\x09\x1b\x18\x22\x47\xf6\xb5\x88\x99\xde\x12\xff\x7b\x6b\x2c\xf9\x93\x90\x19\x67\x34\xd4\x56\x4f\x79\xf6\x39\x5c\x24\x32\xda\x39\x46\xd6\x5d\x08\x38\x42\xf7\x52\xcd\x78\x02\x45\xc5\xfe\xf0\xd6\x93\x4c\x08\x87\xb6\xb4\xec\x41\xb7\x6d\xce\x04\xa0\x8d\x74\xc6\x57\xf4\x62\x13\x70\x42\xa7\xa1\xae\x52\x83\x38\xab\x77\xdd\xb7\xc6\x78\x16\x28\x9b\x0b\xed\x4b\x21\x18\xc2\x7e\xc0\x84\xde\xbe\x34\x5f\x0d\xc8\x7b\x10\xfa\xd6\x17\x82\x5a\xda\x09\xe6\x45\xa7\x3b\x7d\x94\x3f\x3a\xb1\x66\xa2\x37\x17\xcb\x40\x2a\xa3\xbb\x83\xdd\xb1\x5d\xec\xc6\x47\xc3\x00\x0c\xab\x13\x2c\x7a\x2b\x96\xae\x4f\xa0\x89\x9e\xf6\x71\x49\x27\xc4\x37\x3e\x8a\x28\xda\xa8\x27\xc1\x4f\x6c\x35\x70\x6e\xc4\x8e\xe6\x5d\xb2\x63\x44\xb9\xc2\x05\x86\xbb\x50\x85\x34\x79\x62\x2b\xc0\x69\xa4\xd6\x8e\xa5\xc0\x55\xfe\xf5\x0a\x35\xe0\xf9\xbf\xe0\xb9\x30\x54\xc1\x25\x3e\x2d\x2f\x7f\x63\x81\x5d\xf6\x97\xf0\xd3\xad\x3f\x01\x35\x8f\x33\x11\x36\xa9\x2e\xe2\x19\x86\x7c\x76\x37\x4c\x9f\x3e\x40\x9b\x9f\xe7\x3b\xf4\x56\x99\x01\x80\xef\x76\x36\xe7\xf6\x0a\x44\xa2\x2e\x32\x86\xb7\xd4\x59\x8f\xa5\x5a\xbb\xa0\xab\x9a\xd1\x4e\xd9\x13\x18\xf8\xba\xa7\x23\x0c\xfa\x64\xb4\x03\xaa\x0d\x74\xe1\x54\xaa\x3c\x0b\x71\x2d\x98\xb7\x7c\x01\x5d\xe5\x72\xa4\x8b\x9c\x28\xf3\x61\xb8\xe8\x2c\x98\xcc\x3d\x7f\x8e\x65\x31\x02\x4e\x08\x71\xbd\xcf\x27\xed\x7d\x3e\x69\x57\xa9\xa9\x53\x5c\x66\x90\xa3\x0a\x08\xef\x69\x3f\x1f\x13\xac\xcd\xb6\x07\x48\x54\xfe\xe7\x68\xcc\xa7\x98\x7f\x1f\x6d\x1b\xbb\x48\x8f\x8b\x9e\x46\xd5\x21\xfb\x17\x9d\x6b\x46\xa8\xec\x30\xe1\x21\x03\x88\x9f\xda\xef\x21\x1b\x67\x56\x9b\x50\xfb\x7c\x64\xd8\xa7\xd5\xf2\xd8\x41\x9a\x9f\xa8\x35\xed\xb8\x64\xf3\x1a\x7e\x38\x0f\x6b\x9e\x7b\x1f\x26\xb4\x7b\x24\xb6\xc1\x69\x68\x98\xce\x63\x1a\x9d\x18\xff\x1b\x2f\xc8\x81\x58\x3f\x97\xc4\x46\xa5\x03\xb8\x66\x51\xcd\x8e\xc6\xba\xca\xb9\x9d\xf4\xe5\x98\x54\x8b\xf8\xfc\x31\xcf\xa9\x7e\x68\x67\xa9\xcb\x3c\x9e\xd3\x95\x3a\x12\xf9\xe9\xb4\xe0\x59\x24\xf3\x54\xcb\x33\x95\x63\xd3\xa0\x6a\xbd\xc4\x2b\xcd\xfb\xd8\xfc\xee\xbc\x59\x18\xfb\x8d\x89\x77\x96\x18\x49\xf3\x30\x43\x8c\xa7\x8c\x6f\x7a\x4a\xf5\x77\xcf\x04\xaf\xe0\x72\x16\xca\xbe\x71\x8b\x05\xf0\x6e\xa2\x27\xcb\x53\xbd\x5a\x85\x9e\x1e\xd4\x25\x6e\x4c\x23\xd1\x83\xd3\x74\x79\xc9\xb5\x64\xdd\x7f\xb9\xc6\x04\xea\x30\xe8\xb1\x8f\x65\x68\x94\x39\x17\x5d\x1f\x87\xe2\x90\xbd\xd8\xbb\x2f\x85\xea\xc3\x23\xb5\x8f\xa8\x4b\xd6\x11\x91\xed\xc0\x16\x5d\x8a\x59\xf9\xad\xe8\x63\x63\x30\xa5\xe7\x93\x32\xcd\x08\x60\x9c\xf1\x69\x77\x78\x3a\x22\xca\x9f\x83\xf1\x1d\x9b\xe5\xa7\xf8\x3e\x1d\x97\x5f\x67\x68\xdf\x42\x6a\xfd\xfa\xf8\x7a\x87\x18\x1c\x77\x73\x06\x95\x38\x90\x0e\xfa\xa4\xf7\x52\xd1\xe8\x1a\xdd\xfb\x05\x53\x99\x92\x5c\xe5\x72\x82\x7f\xdb\xdb\x02\xda\xc2\x15\x9a\x82\xc4\x9f\xf2\xfe\x07\x48\x2a\x0e\xd9\xeb\x0d\xa9\x4a\x78\xa1\x24\x81\xe4\x11\x5f\xb4\x5d\x71\x90\x7e\x80\x0d\x57\x0e\x07\x61\x07\x38\xe7\xd6\x55\x66\x0d\x77\x9f\x8c\xf7\x88\x4f\x0d\xba\x03\x88\xa0\x22\x02\x78\x33\xe6\xa1\xe6\xfe\xad\x2c\xa8\x2b\x6f\x9f\xa1\xd6\xdc\x25\x85\x83\x56\x4d\xe0\x6f\xf3\x64\x11\x45\x7c\x57\xde\x1c\x4d\x1c\x9a\xc3\x59\xae\x2a\xa8\x48\x0a\x47\xf8\x78\xae\x37\x3b\x3a\x98\xf7\xc2\xdb\xe5\xdc\xa4\x72\x53\x55\x52\x52\x3e\x0e\x45\x67\x6c\x9d\xc1\xdc\x63\xad\x34\x71\x97\x7d\xf6\x78\xf0\x52\xb9\x6b\xe7\x18\x22\x38\x0c\x62\xb8\x3a\x61\x5f\xae\xee\x40\xd4\x09\xf6\xd0\x47\xbf\xec\x68\xaa\x2b\x6f\x81\x58\x57\xf1\xdc\x37\x85\xe7\xd2\x6f\x76\x36\x79\x08\xd1\x82\x17\x3f\x12\x2c\xe2\x1d\x48\x11\xb3\xdb\xdc\xb2\x61\x22\x76\x8a\x00\x90\xa8\xc7\xe4\xc0\x8a\x6a\xca\xa8\x4d\x2f\x33\x7c\xa9\xfa\x52\x4e\xba\xf3\x21\x69\xfe\xdd\x5d\xe0\x8c\x70\x0b\x7b\xe8\x9e\x01\x9d\x91\x4f\xab\x3b\xad\x13\x63\x3e\x2e\xa5\x12\x9d\x71\xad\x99\x46\xd0\x4b\x5d\xd2\x3f\xaf\x87\x18\xca\xf0\xba\x68\xff\xec\xff\x65\xef\x5f\xd4\xda\x38\x92\xc6\x71\xf8\x56\x1a\xd6\x8b\x24\x33\x48\xc6\x8e\x73\x10\x51\x58\x49\xc8\x98\x18\x0c\xe6\xb0\x8e\x83\x78\xf1\x48\x6a\x49\x63\x46\x33\xca\xcc\x08\x50\x6c\x2e\xe8\xbb\x8d\xef\xca\xfe\x4f\x57\x55\x1f\x67\x24\xb0\xe3\x64\xf7\xfd\xbd\xc9\xf3\xec\x1a\x4d\x9f\xab\xbb\xab\xeb\x5c\xbf\xa0\x99\x40\x42\x03\xdc\x60\xf6\x83\x1b\x8c\x92\x81\x03\x04\xad\xef\x7e\x81\x10\x1c\xbb\xb5\x03\x6f\x99\xf9\x82\x5a\xb8\x8c\xff\x8a\x72\x77\xa4\x9c\x7f\xc7\xab\x83\xb6\xea\xf4\x44\xfc\x26\xe5\x83\x19\x61\x51\xa4\x41\x88\xcb\xe7\x19\x35\xb1\x7f\x83\x61\x10\x60\x46\x31\xd7\xdd\x69\x7b\x3d\x24\x2d\x2c\x44\x85\x1f\x68\x16\xe2\x15\x0a\x04\x80\xe5\xc3\xdc\x04\xd7\xe4\xa4\x47\xc4\xc5\x01\xf0\x71\x9b\x86\x55\xce\x07\xbc\xf0\x87\xa9\xa4\x6a\x3c\x19\x57\x1f\x87\x07\x12\x80\x82\xb1\xe1\x25\x01\xfc\xdd\xd9\xec\x08\xe2\xf6\x8c\xc2\x83\xf4\x31\xed\xec\x09\x72\x25\xa9\x51\x90\x51\xc1\x2b\x31\x71\xa9\x5c\xf8\x0c\x78\x6e\x8a\x9d\xa8\xbd\x78\x87\x6b\x25\x09\xe9\x31\xc6\x72\x81\xe7\xf3\x1b\x58\xcc\xeb\xe7\x64\x7f\x24\xe9\xd3\xe7\xf4\x3c\x11\x7f\x09\x81\xf2\x8d\xef\xaf\x8e\xbd\xbd\xe6\x68\x37\xeb\xbc\x44\x53\x93\x11\xdc\xbe\xce\xb8\x55\x43\x76\xe4\xaa\x35\xda\xc1\xb4\x6d\xbf\xef\x79\xf3\x96\xa0\x3c\x41\x61\xd6\xd9\x6c\xd5\xf6\xc8\xf4\x73\xf4\x33\x7a\x51\x0b\x9a\x36\x05\x23\xbc\x75\x00\xd8\x2b\xb2\x71\x04\xb9\x68\xda\x7a\xd6\x96\xac\x66\xb3\x7f\x68\x5e\x6d\xc1\xd4\x74\xae\x77\xbe\x5d\x0c\x13\x50\xe3\x5e\xc9\x78\x9a\x32\xd9\xea\x77\x3b\x62\x57\x53\x15\x74\x60\xbd\xf5\x2b\x12\xc3\xb0\x3f\x24\x5f\x56\x83\x04\x18\xa0\xe1\x5a\x3c\x69\xaf\x9e\x83\xe4\x55\x6c\x08\x69\xd8\x0a\x87\x15\xc4\x60\x80\x70\xea\x87\x2d\xc5\x28\x53\xa2\x45\xa2\x8e\xf7\x46\xa2\xe2\xde\x31\xa5\x65\x3d\x6b\x36\xa3\x56\x8a\x61\x77\x40\x9e\x48\x98\xfd\x29\x30\xc3\xb7\xad\x34\x68\xa9\xb2\x0e\xe1\xb0\xdd\x75\xa8\x32\x87\x2a\xbf\xab\x2a\x82\x23\x83\xf8\x04\xe0\xd4\x9e\x60\xa8\x40\xb1\xf0\x5f\xbe\xff\x05\x0f\x16\xe4\x00\x7c\x26\x56\xbd\xf7\xbc\x25\xa3\x67\x77\x08\xbf\x92\xaf\xfe\xbf\xc9\xae\x01\x24\x87\x18\x37\xae\x7d\x7c\xa0\xa9\x02\x2b\x28\x1e\x69\x02\x31\xde\xd2\xab\xdf\xd0\x8a\xf2\xf6\x85\x8c\x88\x77\xd0\xec\x80\x7e\x75\xa7\x89\xe8\x9e\x52\xd1\xbf\xbd\x25\x0d\x21\xd2\x5d\xa8\x32\xfe\x3e\x80\x4d\x89\x5b\x63\xa4\x03\x8f\xa6\x40\x47\xc7\xad\x09\x31\x85\x11\x12\x40\x60\xf5\xb6\x4f\xf1\x08\xdf\x04\x60\x4b\x49\x69\xbb\x60\xa7\x23\x5c\x0c\xbc\xe4\x9d\x31\x8c\x7e\x83\x42\x92\xde\x1c\x72\x3b\x35\xe7\xad\xdf\xe9\x1d\x99\xd3\xc2\x45\x9b\x1c\xcf\xf0\x6a\x1f\xe4\xcc\x1d\x42\x01\x27\xd7\x21\xb9\xb9\x4b\x5f\x85\x4e\x8d\x52\x60\xa2\x5a\xfd\x06\x16\xd5\x7e\x49\xfc\xe1\xef\x63\xb4\xa2\xba\x21\x8f\x90\x0c\x5e\xc7\x57\x51\x3b\x20\xf5\xd9\x59\xb3\xf9\xee\xe6\x2d\x3e\x65\x89\x94\x81\x19\xaa\x6e\x4c\xc8\x00\xf5\xfc\x1b\x38\x20\xfd\xdb\xb7\xba\x69\xd8\xf6\x4e\x9a\x9d\xe7\xbb\x98\x28\x8d\x7f\xa0\xcc\xde\x67\xcd\xce\x2d\x85\x31\xe1\x51\x1f\x25\x2c\x6f\xb0\xe7\xce\x77\xad\x09\xbc\xf0\x1c\xe5\xd8\x28\xf0\x92\xe5\xa0\xd7\x4a\x8e\xc8\xfe\xf6\x1b\x24\xd2\x94\xf8\xd4\x54\xc7\xbc\x11\x9c\x67\x91\xdc\xb1\x40\x8a\x9b\x22\xc9\x79\x96\x45\xfa\xe5\x1e\xc1\xcb\xdd\x0e\xdb\xe8\x0e\x00\xea\x82\xfd\xdf\x10\x4c\x3c\xa2\xd7\x75\x12\xb5\xd0\x4e\x48\x89\x9a\x30\x0c\x3a\xba\xa0\x9c\xdd\x46\xd6\xc4\x54\x60\x39\x4a\x37\x32\xa3\x88\xb9\xb2\xb7\xdf\x22\x0c\x36\x00\xb3\xef\x3c\x6b\x93\x21\x98\x38\x2f\x9b\x13\x92\x25\xa5\x74\x28\xb2\x89\xc5\xad\x60\x30\x85\xcd\x0f\x4a\x9c\xde\x26\xa9\x38\x90\xaa\x6f\xbe\x81\xb4\x01\xbf\xcc\xc7\x2d\xf9\x6d\xd4\x7e\x89\x4a\xaf\x6b\x8c\x60\x25\xe5\xea\x6d\x41\x77\x04\x48\x1a\xbf\xda\x81\x45\xcf\x54\xfa\xe2\xf6\x6b\x51\x6b\xdc\x46\x14\xfe\x03\x4d\x01\x32\xfa\x76\xd0\x23\xe7\xd5\x26\x92\xe9\xd9\x8e\x27\xa3\xc7\x6a\xc1\x4e\x07\x93\x6d\x60\x76\x31\xf3\x1b\x5a\x87\xa8\x30\xcc\xdf\x61\xac\xd5\x2b\x8b\xf1\x4a\x3f\x10\xae\x6a\x53\x2a\xa1\xe6\xab\x00\xe5\xc0\xd7\x13\x1d\xaa\x56\x3c\xb9\x1d\x54\x4e\xbd\x1a\x91\xe2\x50\x7e\x9e\xb6\xc8\x02\x1a\x81\xd9\x39\xd6\x2a\xd5\x5d\xea\xfd\x60\x0c\xff\xa6\xad\xb0\x35\x07\x19\xe4\xb4\x85\x6b\xad\x99\x6b\x25\xef\xa3\x57\x3f\xec\x7f\xe6\x04\x29\x5d\x96\x3b\x41\xf9\xf9\x21\x13\xfc\x4d\x00\xf6\x5d\xd8\x7a\xe5\x9d\x34\x4f\x7d\x98\xdb\x18\x62\x32\x53\x58\xeb\xbd\x1b\x1c\xec\x0c\xf9\x5d\x40\xbe\x6f\x5e\xab\x69\xbc\x6a\x36\xdf\xe4\xe1\x2a\xa8\x9a\x78\xc7\x18\xba\x3d\xee\x90\xe6\xe5\x59\x1b\xcd\x1f\xc8\x2a\xc8\xb4\xfb\x68\x87\xad\x80\x0e\xcf\x87\x58\x93\xad\x43\x8c\xfc\x62\x86\xbe\x09\xf3\xa6\x06\x4a\xad\x0d\x92\x47\x3c\x34\x94\xc3\x20\x41\xf1\xdb\x87\xd6\x15\xdd\x0f\xc4\xdb\xcf\xe0\x97\x8c\x52\xff\x0d\xfc\x7a\xf5\x42\xf3\xce\x1f\xe0\xcb\xcb\x26\xb5\xc2\xc8\xeb\x6f\xc3\x88\xc2\x8b\x13\x09\x74\xf2\x0c\x95\xd2\x20\x2c\x6d\xf7\x28\x2a\x0e\xbc\x19\xdf\xd2\xd5\xfa\x7d\x62\xbc\x1a\x87\xa3\x2b\x5b\x62\x03\xd8\x80\xa4\x42\x34\xd4\x9b\xef\x26\x66\x2c\x4c\x9b\x5b\x1e\x2b\x6e\x19\x70\xd7\xaf\x68\xf7\x49\x41\xf6\x0d\x63\x12\x07\x48\x79\xa7\xbc\xa0\xf5\x0d\xd8\xbe\x60\x7a\x0a\xb4\xa5\xf9\xf5\x86\x2c\x33\xda\x64\x1a\x82\x99\x8e\x9e\xa1\x99\x90\xa5\x46\x21\x32\xef\xf0\x43\xe8\xb2\x32\xed\x0f\xed\x75\x74\x7d\xf3\x54\x60\xab\x01\x99\x43\xad\xe3\x45\xfd\xf7\x66\x0c\x8a\xc7\xb4\xd5\x24\xc5\x19\x05\x47\x8a\x5b\xe2\xf5\xcd\x06\xc6\x6f\xf1\x38\x72\x19\x64\xf1\xec\x77\x0c\xab\x2a\x73\xff\x10\xb8\x41\xfe\x81\x09\x79\x11\x15\xc6\x18\x57\x3c\x6e\xc3\x1b\x98\xb4\xc8\x0a\xcb\x0c\x9c\x75\x8a\x5e\x9b\x28\x15\x86\xb0\xae\x6d\x0c\xd4\x12\x90\x18\xf7\x03\xd2\xd7\xe0\x2a\x0e\xc1\x59\x29\x81\xdd\x13\x12\x28\x5c\x0f\xbc\x93\xe6\xab\x27\xed\x9b\x01\x84\x43\x4e\x70\xc8\x03\xd9\x5c\xcb\x59\x0e\xbc\x51\xbb\xfd\xa1\x95\xec\x8e\xdd\x77\x05\xa2\xc1\x90\xd2\xb1\x99\x2f\xe3\x5e\xbf\xfd\xe6\x77\x63\x1f\xd1\x8a\x78\xd4\x3e\x40\x41\xbf\x80\x01\xe8\xe1\x4f\x31\xab\x5b\x61\xfc\x99\x5d\x0a\xa4\xfb\x1d\xc7\x13\xb3\x8f\x17\xf0\x09\x5e\x31\xc3\x34\xff\x03\x3e\x10\x0b\x8c\xf5\x47\xa0\x3c\xd9\x03\xac\xf0\xb2\x39\x9d\x9a\x58\xfe\x6a\x4a\x64\x33\x39\x5b\xd2\x3f\xe8\x47\x00\x36\x3c\xcf\x77\x35\xee\xe9\x24\x90\x22\xc5\xc7\x3c\xa9\xb3\xd6\x2e\x24\x29\x6c\xef\xe8\x51\x76\x7f\x6f\xe5\x07\x00\x43\xd7\x5f\x3e\xb4\x22\xab\xc4\x5b\xa4\xb8\x5d\xa4\x97\x45\x7b\x1b\x88\x54\x06\x8d\xd0\x05\x84\x42\x47\xd9\xda\x43\x02\xd1\x55\x6b\x53\xa3\xa3\xce\x0f\x2d\xd7\xd0\x75\xae\x5e\xd9\xb7\x32\xc5\xe0\x21\x6a\x12\x50\x93\x4f\x61\x68\xe9\xd8\x8c\x5a\xa8\xdb\x14\x34\xf6\x09\xec\x07\x11\x1f\x92\x2a\x33\x95\xbc\x28\x2d\x7b\xa7\xbe\x0c\x9f\xd2\x4c\x9e\xc5\x2d\xe3\x2e\xe6\xb0\xa1\xe4\xc1\xc6\x38\x03\xb2\xae\xc0\x88\xd8\x07\x09\x06\x7e\x1d\xb5\x64\x60\xfc\xe6\xde\x84\xe4\xb4\x11\x11\xd3\x13\xd2\x60\xb4\x7f\x43\xb5\xaf\xf8\xf1\x6f\x34\x32\x49\xc0\x84\xea\x90\xec\xf7\x5f\x51\x2e\x82\x16\xca\x99\x16\xf2\x25\x57\xf8\x8a\x1c\x00\x5f\x13\x62\xf6\x46\xf4\x3e\x83\x40\xc5\x7d\x44\x37\xc7\xcf\x3a\xcf\x0d\xcc\x7f\xcf\x1e\xce\xb8\xb3\x87\xb7\x7d\x17\x82\x45\x2e\x05\xbb\xda\x73\xe0\xfb\x1e\xf2\x73\xcf\x54\x98\xaa\xe6\xa8\x75\x35\xf4\x0e\xb1\x57\x34\xee\x7c\x0e\x6a\x06\x9b\xe6\xcb\x6b\xa4\xbf\x95\xf3\x16\x9d\x67\xf8\x63\x37\xed\xd3\x43\x2a\x98\x81\x1f\xd0\x54\x0c\xea\xff\xbc\x8e\x1e\x3d\xb3\x77\x68\xd7\x28\xd6\x83\xf0\xa5\x18\x54\x21\xc6\xd6\xb8\x22\x83\xcf\xef\x5b\xcd\x4e\xd8\xb9\x1d\x38\x94\xd5\xf0\x9b\x21\x12\x0e\x2a\x98\x12\x99\x45\xfa\xe2\xee\xa3\xff\x36\x50\x56\x68\x86\x15\x20\x6d\xfd\xfc\x67\xb2\x14\x7e\xd5\x6c\x77\x50\xd5\x1b\x0e\x9d\x33\x7d\xd5\xc2\x98\x57\x18\xfa\xfa\x20\x87\xe3\x9b\x9d\x17\x86\xef\xf6\x5b\xb0\x42\x8d\x07\x52\x50\xd0\x8e\x76\x13\x3a\x38\x7b\xcd\xf6\xbf\x03\xd0\x6e\x9e\x7d\x38\xc4\x48\xfa\x98\x21\x72\x13\x49\x4b\xcc\x30\xff\x2a\x8e\x89\xcd\xc0\x17\x59\x5f\xa1\x6b\x13\x94\x7b\x40\xe8\xbe\x6c\x8e\xd0\x8b\xc2\x02\x73\x7b\x1f\xed\xbb\x24\x01\xda\xf9\x16\x53\x1e\x40\xb0\xc9\xf6\xb4\x85\xe9\x04\xf6\x70\xab\x65\x93\x4c\xfc\xf3\xef\x5f\xbc\x76\xf3\x1d\x6e\x36\x78\xda\x7e\x4b\xb6\xe8\xf3\xb0\x45\x26\x24\x80\x38\xaf\x5b\x88\x39\x61\x65\x81\xc6\x08\xbf\xb7\xa6\xaf\xec\x4f\x41\xeb\xbb\x56\xa6\x3d\x67\x86\x47\xc8\x83\x3e\x45\x5b\x36\xe8\x1d\x52\x4c\x2d\x8c\xe2\xd5\xce\xda\xf9\x28\x5e\xe9\x4e\x73\x37\x23\x55\xb9\xf4\x05\x0b\x10\xa9\xf0\xef\xde\x78\x45\x91\xbb\xda\x99\x11\xba\xab\xfd\x8b\x19\xba\xab\x7d\x34\x3e\x31\x33\x03\x50\xbc\xae\xdd\xc1\x15\xa8\xf1\xdf\xcd\x31\x0d\xa0\x8a\xcc\xf5\x0a\x1d\x8b\x9e\xb5\x0d\x57\xb1\xaf\xea\x59\x34\xa2\x64\xbb\xbb\x33\x54\x74\x85\x88\x49\x51\xcb\xf9\x26\x44\x12\xe1\xf6\xb5\xaa\x82\xee\x44\xcf\x10\xb5\x3d\xff\xe0\x62\xcf\x42\x77\x22\xe3\xee\x4f\x20\x2c\xc3\x1b\x69\xb3\x0d\x57\xfe\x45\x0d\x51\xf1\x2c\xf7\x36\xd2\x4b\x78\x82\x57\x14\x98\xcf\x5d\x08\x7f\x07\xce\x78\xfb\xcd\xe7\xd6\xa3\xf4\x44\xbe\x87\xa7\xb4\xc9\xf0\x10\x76\x54\xab\xce\x35\xba\x14\x1e\xcb\xe7\x50\x6c\x25\x18\x4e\xb5\x8f\x8e\xc5\xfb\xf7\xe2\xd0\x1d\x68\xf7\x79\x2b\x3f\xc6\xae\x17\xec\xb4\x7f\xc1\x20\x77\xa4\x6e\xfa\x2b\x1c\x07\xbd\x78\xa7\x8d\x71\xc7\x4e\x9e\x1f\xfe\x5f\xca\x3a\xe0\x7d\xd3\x6a\x0f\x21\x9b\xe4\xff\xdb\xe9\x06\xbc\xd9\x4e\xfb\xf4\xd4\xdb\x6b\xef\x1c\x3c\x15\x08\x66\xa7\x8d\x02\xc5\xa6\x60\x4c\x76\x29\x68\x6c\x87\xce\x59\x1f\xf3\xfd\xee\x78\xa3\x56\x53\x3c\x27\xed\xfd\x49\x1b\xd4\x2b\x49\xdb\xbb\x6a\xb5\xdf\x1c\x88\x89\x1d\x51\x07\x1f\x3a\xf7\xb6\x6f\xee\x7e\xd3\x82\xf6\x3f\xb4\xbc\xb3\x36\x24\x8b\xeb\x78\xb3\x16\xa4\x9b\xf2\x9e\xb6\x04\x95\x7e\x46\xc6\x7d\x88\xd5\x28\x60\x09\x24\xd5\x6c\xf6\x9f\xb6\x3c\x71\xd5\xdf\x6c\xb6\x3c\x50\x09\x36\xbd\xb4\xd5\xec\xbc\xc2\x98\xa0\xfb\x1e\x90\x2d\xed\x0e\x22\x1c\x80\x65\x13\xf4\x69\x34\xbf\xa7\xd2\x8a\xb0\xd3\x6c\xfe\xec\xbd\x55\x75\xfb\x64\x51\xe8\xa3\xdc\xd7\x03\x17\xea\xdb\xd6\xce\x21\xbc\xb8\x47\xde\x3b\xef\xa0\xd9\xc6\x40\x4f\x20\x0e\x04\x89\x83\x0f\x67\xb7\x87\x58\x0f\xb0\x19\x26\x88\x9b\xb4\xdb\xc8\xfc\x50\x96\xc6\x3d\xb1\xac\x6f\x5b\xc9\xce\x81\xf7\x2d\xbe\xca\x5e\xbf\xd9\xd9\x43\x8f\xf2\x9f\xbd\x2b\xfa\xa6\xa6\xf1\x1b\xda\x06\x25\x68\x44\x3a\xdb\xf1\x00\x5d\xed\x45\x6d\x1f\x14\x80\x07\x53\x6a\x78\x86\x89\x4a\xc1\x1c\x7b\xc7\x13\x68\x7b\x77\xb3\xf5\x1d\xb0\x1c\x87\xcd\xce\x1e\x50\xad\xd2\xc2\x78\xc7\x3b\x6b\xb6\x3b\xd7\xb1\x16\xf8\xec\xc7\x10\x38\xe2\xe4\xd6\x08\x76\xb0\x73\xea\xbd\x69\x76\xf6\x9f\xb6\xcc\x09\x80\x4b\xf5\x8b\x7f\x7b\x27\xcd\xdd\xfd\x00\xdb\x67\xc8\x77\xdd\xb4\x6a\x2d\xd3\xeb\x5a\x20\xd1\x97\x89\xb8\xc4\x7b\xfb\xbb\xe0\x6d\x7b\xbb\x63\x7a\x74\x7f\x0f\x19\xc5\x77\x9f\x23\x41\xdd\x8e\x03\x63\x6a\xcf\x89\x5d\x73\x7d\xc0\xcf\x9a\x3b\x90\x5b\xa2\xd3\x79\x8e\xb6\xbc\xdf\x58\x15\x5e\x78\xef\xbc\xdd\xe6\xf5\xce\x11\x20\x8a\x83\x3d\xef\x6d\x5b\x80\x06\xff\x3e\x6b\x1f\x9f\xea\xbf\x9b\x48\x26\x1f\xa0\x5f\x0b\x08\xa1\x90\x2f\x17\x5c\xf8\xac\xd5\x94\x04\x11\x88\x2d\x50\x96\x06\x41\xcd\x31\xbd\xeb\x00\x4e\xe4\x99\xd8\x2a\xf4\xd0\xff\x15\x1e\xf5\x9b\xd6\x0f\x62\x37\x9b\x20\x17\x6e\x77\xbe\xc7\x53\x8f\x72\x6d\x94\xbb\xfe\xd6\xf6\xf6\x04\x00\xa1\xe7\x57\x1f\xda\xd0\xf5\x7e\xd0\xf6\x80\x6a\x12\xbd\xbe\x7a\xd6\xba\x81\x2c\xff\x02\xee\xf8\xf1\xb0\xf9\xea\x57\x71\xfb\xf7\xdf\xc9\x2f\x67\xcd\x57\x7b\xf0\xe5\x67\xef\xc4\x3b\x68\x1e\x22\x81\xb1\x1b\xbd\xc0\xb8\x00\x62\x35\x87\xc8\x2f\x82\x02\xbc\x37\x03\x91\x22\x20\x4e\xb4\x07\xf6\xc9\xdd\x84\x3c\xb1\xd5\x97\xef\xdb\x9e\x00\xec\xb8\x7d\xdb\xc2\xa6\x6f\x8c\xa8\xd5\xbf\x20\xa8\x80\x88\x85\x5e\x10\x87\xfd\x86\x4f\x46\x04\x5b\x77\x80\xb9\x4a\xa6\x70\x03\x62\x3c\x90\x99\x58\xb4\x00\x70\x4c\x10\xde\x55\xd9\x01\xa0\xe5\x11\xa0\x89\xce\xb0\xb6\xa7\xf6\xe2\x60\x44\x1a\xfb\x36\x38\xde\x1c\x36\x77\x5e\x40\x26\x21\x99\xfd\x87\xf2\xec\xa0\x6b\xfa\xbc\xd5\xf4\xde\x88\x53\x9e\xb4\xbe\x11\x28\xae\xf7\xda\x3b\x68\xf6\xc5\x2b\x73\xd8\x6c\x8b\xcd\x78\x85\xd9\xe3\x27\xad\xa7\x88\x6c\xde\x4d\x95\xdc\xb3\xfd\x7b\x3b\x10\x0c\xc5\xce\x1c\x43\x95\x00\xdb\xff\x02\x7e\xec\xfe\x0e\x77\xf3\x25\xd8\xef\xfc\x0c\x09\xef\xf7\x92\xd6\x07\x31\xb1\x9f\x61\xfa\x27\xb5\x56\x0c\x28\xf5\xcd\xb7\xb0\xdc\x01\xae\x03\xd6\xf4\x4e\x02\x78\xaf\xd9\xf9\x35\xda\x41\x0a\x41\xe0\xe2\x9e\x38\xa2\x7e\xd6\x5a\xc7\x43\x55\x6b\xe3\xb7\x93\x66\xbf\x86\x19\x3c\xcf\xe0\x90\x8e\x05\x22\x14\x17\x77\x0e\xcb\xfe\x19\x1f\x20\x71\xf4\xaf\x31\x3b\xda\xad\x58\xd6\x8e\x78\x5c\x3a\xfb\x6d\x12\xb8\xf6\x55\xe0\xdb\x31\x58\xc0\x40\xfe\xf7\xdd\xfd\x5d\xef\x4d\xf3\xa5\xa8\xb9\xb7\x8f\x8e\x26\xb5\x17\x88\x0b\xdf\xa0\xe3\xad\x00\x53\x48\x8e\x35\xaf\xbe\x83\x7f\xf6\x31\xce\x38\xc5\xc5\xfc\x00\xe1\x4b\xc0\x28\xe6\xc5\x81\x77\xd8\xcc\x5a\xbf\x7a\x07\xed\x23\x70\x49\x97\x17\x2a\x69\x6d\xa2\xaf\xf1\xf7\x2f\xf0\x35\x04\xec\x7f\x20\xb0\x7d\x13\xe8\xde\x11\xcc\x12\x14\x0f\xef\x90\x8a\x41\x33\xe3\x3e\x02\xe2\x3b\x7a\x2c\x10\x1d\x73\x79\x3a\x30\xdc\x12\xde\x24\x34\x79\xed\x79\xbb\x02\x30\x68\xa1\xb3\xd9\x01\x6d\xd7\xf7\xe2\x08\x82\x53\x15\xc4\x50\xea\x20\x67\x86\xc9\x4e\xe7\xd4\xfa\x77\x71\x39\xcf\x9a\x7b\x90\xab\xea\x64\x84\xd6\xfd\xe3\x17\x38\xc9\x33\xa8\xda\x23\x1f\x57\xa4\x6d\x82\x17\x82\x2c\x02\xed\xce\xee\x0b\x2d\x1b\xe9\xb7\x61\x02\xed\x01\x84\xfb\xca\x76\xc5\xa3\xb0\x87\x61\xa6\x66\x82\xf4\x78\x73\xd5\x7a\xbe\xab\xc0\xf2\x7b\xfb\x57\x8d\x74\x76\x9e\x21\x88\x48\xaf\xfe\x16\x34\x8e\x62\xd1\xbf\x22\x83\xdd\x17\xf4\x4b\x1f\x3d\xea\x29\x8a\x15\x86\xd1\x02\x31\x6b\xfb\x60\x4a\xae\x89\xe2\xf1\xfa\x96\x9a\x36\x49\xad\xf9\xb4\x8d\x56\x45\x3b\x21\x78\x91\xb7\x39\x5a\x97\xef\x0c\xc5\x33\x73\xd8\xdc\x1b\x22\x9a\xfd\x19\x91\x2c\x6f\xb6\x77\xf1\x91\x07\xaf\xe2\xc3\x66\x1b\x90\xf8\xab\x8e\xe0\x3e\x77\x3b\x57\x28\xd7\x7d\xf5\xc2\x3b\xf1\x0e\x9b\x6f\x3e\x80\x65\xc8\xa8\xd5\x6c\x37\x9b\xde\x6f\xad\xe6\xbb\xc3\x18\xf5\x4c\xfe\x14\x05\x19\x82\x3c\x6d\xdf\xb6\x83\x16\x6e\x72\xd4\xf2\xde\x79\x4f\x76\xda\x47\x4d\x6f\xfd\x65\xf3\xaa\x03\x73\xd9\x6b\x6e\xee\x0c\x31\xc8\x94\xb8\xb5\xb3\x1d\x8c\x6e\xb7\xd3\x54\xce\xc2\xbb\xc7\x1a\xca\xfc\x99\x65\x00\x2b\x88\xe7\x37\x82\xd6\x7c\xdd\xfc\xe6\x57\xd4\xb0\x50\xc4\xca\xdf\x60\x26\x9d\xac\x15\x11\xdf\xfa\x3d\x94\xab\xd0\x91\x23\x14\xa7\x8f\x5a\xbf\x51\x88\xa9\x67\xb1\xa5\x09\x7b\x02\x0f\xee\x0f\x1d\x7c\x42\x40\x99\xf8\x6b\xda\x41\x9e\xea\xa0\xd9\x79\x7d\x2b\x6e\xf8\x6f\xed\x53\xef\xb0\x39\xde\x69\x8e\xd0\x13\x06\x0d\xd7\x47\x2d\x71\x36\xfa\x9b\x2d\x60\x27\x7d\x49\x05\xb6\x9b\xcd\x36\xf8\xe1\xb4\x9e\xc7\x44\xb6\x8a\x0d\xd9\xdf\xc7\xd7\xf6\xad\x4c\x6d\x18\x60\xc0\x7e\xe0\x55\xd1\xe3\xf6\xf0\x5b\x8e\xd8\xb5\x8d\x66\xd0\x0a\x58\x6d\x48\xe2\x87\x22\x4b\x64\x71\x4e\x60\xf6\x18\x84\xe1\xe4\x87\x37\xe2\x0c\xd7\x54\xaa\xa4\xce\x4b\xe0\x38\xbe\x7f\x23\x4b\x5f\xa1\x92\xa0\x7d\xfa\x8d\xf2\xad\x14\xef\xe5\xb1\xb8\x32\x51\x5b\x36\x6b\xbf\xfc\x01\xcf\xe1\x21\x45\x16\x38\xd9\x45\x3b\x76\x94\x18\xbc\x4b\xe8\xf8\xbd\x11\xdf\x12\x14\xae\x3e\xdd\x51\x01\x7f\x7e\x5d\xdf\xa1\x5c\xd0\x90\x5d\x5c\x76\xba\x8f\x20\x38\x90\x51\xce\xd6\x31\x4c\xd2\x9e\x77\xd6\xdc\x4d\x50\xe2\xf0\x1d\x9a\x6c\xff\x5b\xf4\xb2\x73\xad\x62\xab\xe5\x41\x86\xa9\xdb\xf6\x76\x4d\x3a\x03\x36\x4b\x5a\xac\xa0\x1c\x76\x0f\x8f\xe1\x41\x1b\x18\x5d\x7c\xdf\x76\x77\x25\xa5\x40\xee\x94\x7b\xdf\xb5\xd1\x94\xfe\xc3\xce\xa9\xd7\x6e\x5e\xed\x74\x6e\x51\x30\x76\x10\x84\xad\x55\x6f\x75\x18\x84\x7c\xb5\xbe\x9a\x66\x7e\x16\xf4\x6b\x1f\xd2\xda\xf7\xd5\xcd\xe7\x03\xfe\xbd\xff\xc3\x66\xb5\x3f\x9e\x45\x57\xd5\x0f\xe9\xaa\xb7\x9a\xc6\xb3\xa4\xcf\xd3\x76\x1c\x65\x3c\xca\x56\xeb\xe7\xab\xd7\x7e\xc2\xfa\x71\xc2\x59\x83\x4d\xe2\xc1\x2c\xe4\x55\x7e\x3b\x8d\x93\x2c\x65\x0d\xf6\x91\x5d\xf3\x24\x0d\xe2\xa8\xce\x4a\x4f\xab\xdf\x56\x37\x37\x4b\xec\x6e\xab\x1b\x05\x43\x56\xce\xe6\x53\x1e\x0f\xd9\xe5\x25\x67\x8d\x06\x2b\x45\xb3\x49\x8f\x27\xa5\x0a\x7e\x80\x1e\xb7\x58\xad\xc6\x78\x1a\x06\x51\xb6\x31\x08\x52\xbf\x17\xf2\x8d\x30\x88\x38\x8b\xe2\x8d\x59\x34\xe0\xc3\x6e\xb4\xea\xad\xd6\x6a\x6c\x9c\x65\xd3\xb4\x5e\xab\x8d\x82\x6c\x3c\xeb\x55\xfb\xf1\xa4\xf6\x7b\x18\x07\x49\xdc\xbf\xaa\x89\x8e\x36\x3e\xa4\xb5\x20\x4d\x67\x3c\xad\x7d\xff\xed\x3f\xe0\xaf\x7e\x3c\x99\xf0\x28\xdb\xd8\xdc\x7c\xfe\xdd\xf3\x1f\x9e\x3c\xfd\xbe\x1b\x89\x85\x8c\xc2\xb8\xe7\x87\x45\x4b\xa1\xe9\xde\x04\xd1\x20\xbe\x61\x2b\x0d\x56\x82\x29\x04\x11\x1f\x94\xd8\xda\x1a\x15\x54\x0f\xfc\x6c\x2c\xd6\x23\xfe\xed\x46\x8c\x6d\xcb\x16\x75\xd9\x43\xca\xc3\x61\x41\x7b\xf1\xd9\x6a\xcd\xb6\xe1\x9b\xe8\x24\x0f\x86\x88\xdf\x66\x0a\x16\x11\xbf\xd9\x18\xce\xa2\xbe\xa8\x5a\x67\x2f\x66\x51\x3f\x0b\xe2\xa8\x5c\x4a\x78\x36\x4b\x22\x96\x8d\x83\xb4\x54\x29\x57\x5c\xb8\x8f\x5c\xb8\x8f\x58\x83\x00\xf0\x30\xc8\x0b\x80\xf9\xd1\x61\xef\x03\xef\x67\xac\xc1\x12\xfe\xdb\x2c\x48\x78\xb9\x54\xad\x5d\xfa\xd1\x46\x0c\xdf\x4b\x62\x58\x51\x71\xaf\xf3\xfd\xe5\xce\xe1\xc1\xe5\x4e\xe7\xc5\xde\xeb\x8e\x53\x3d\xe0\xdf\x6f\x0c\xe2\xc9\x06\x02\x44\xb5\xc9\xe2\xa3\x24\x98\x04\x59\x70\xcd\x9d\x06\x59\xbc\x31\x95\x45\xaa\xfa\xe0\x88\x35\x18\x4e\xa7\x8a\x3d\x1d\x25\xf1\x94\x27\xd9\x7c\xab\x1b\x75\x23\xda\xcb\xea\xd0\xe9\x6b\xc0\xd3\x7e\x12\x4c\xb3\x38\x49\x4b\x15\xb6\x5d\xdc\x03\xab\xb3\x21\x01\x96\xd9\x25\xe5\x43\x8f\x1d\x79\xac\x99\x65\x49\xd0\x9b\x65\x3c\xad\xb0\x8f\x62\x27\x24\x64\xca\x87\x62\x7e\x8c\x89\xc9\x19\x0b\x2a\x1f\x79\x2c\x4b\x66\x1c\x0b\x55\x65\xa3\x1b\x28\x10\x3b\x66\x83\xae\xc2\xb2\x64\x8e\x43\x30\x46\x5b\x3c\x38\xca\xcf\x02\x9a\xdf\xb1\xbe\x9f\xf5\xc7\xac\xcc\x2b\xec\x23\xab\x3d\x66\x7c\x32\xcd\xe6\xec\x71\x8d\xdd\xc9\xde\x4b\x23\x9e\x95\x58\x10\x19\x6d\xd9\xa7\x4f\xac\x94\xe6\x3e\x57\x58\x36\x4e\xe2\x1b\x76\x3a\x9f\xf2\x4e\x92\xc4\x49\xb9\xd4\xec\xf7\x79\x9a\xc6\x49\xca\xa2\x38\x63\xe9\x6c\x2a\x40\xcc\x07\x2b\x25\x3d\xfb\xd2\xb5\x1f\xce\x78\xae\xab\xc3\xf3\xa3\x0b\xd6\x30\x3e\x55\xa1\x1e\x34\xa3\x55\x1d\x6e\x75\x23\x81\x2d\xf0\x92\x9f\x8e\xfd\xe8\xaa\x94\x8a\x83\xc4\x86\x71\xc2\xc6\x41\x2a\xb6\x24\x9a\x3b\xfb\xd1\x8d\x72\x77\x77\xc5\xdc\xee\xa1\x1f\x84\xe2\x3e\xa8\xed\x2c\xd3\x86\xc9\x51\x8b\xb6\xbf\xfc\xf1\xce\x63\x25\xbf\xe4\xb1\x8f\x6c\xc4\x33\xe3\x30\x88\xd6\xb2\xe9\x77\x5b\xec\x8e\xdd\x55\xaa\xbe\xb8\xdf\xdf\x89\xd9\x57\xb6\xd4\x4d\x19\xfb\xe9\xe1\x4d\xa4\xce\x53\x83\x7d\xbc\xab\xda\xdf\xb6\x0a\xa6\xae\xc7\x09\x32\x8f\x5d\xf1\xb9\x3d\x59\xbb\x83\x6a\xdf\x0f\x43\x55\x51\x43\x2f\x98\x88\xee\x18\xde\xc8\xb7\x41\x36\x8e\x67\x19\xb5\x09\x78\xba\x1f\xc7\x29\x67\xc3\x24\x9e\xb0\xee\x6a\xb5\xb6\xac\x56\x77\x75\x4b\xde\x23\x01\x75\x7f\x16\x66\x7a\x86\x97\x0b\x5a\x96\xf1\xcd\xf0\x18\xbf\xed\x87\xb3\x01\x1f\xd0\x12\xc4\xe1\xc0\x22\x81\x88\xa2\x59\x18\x56\xe4\xb2\x3e\xde\xc1\x39\x00\x1c\xe0\x27\x23\x2e\xd0\xcb\xb2\x79\xe5\x87\x50\xed\xaf\xf8\xdc\x63\x01\x20\x00\x1c\x92\xf6\x77\xc4\x33\x03\x72\x27\xf3\x49\x2f\x0e\xe5\xd5\xc5\x96\xd8\x27\x96\xbc\xe2\xf3\x54\x23\x97\xc2\xb6\x34\x87\x0a\x0d\xc5\xe0\x90\x96\x03\xd6\x60\x4f\xb6\x58\xc0\x7e\xcc\xf5\x57\x0d\x79\x34\xca\xc6\x5b\x2c\x58\x5f\x57\x03\x33\x31\x61\xd6\xc8\x55\x3e\x0f\x2e\xb6\x64\x0d\xb1\x0a\xb9\xd0\x6a\x10\x0d\xf8\xed\xe1\xb0\x0c\x47\xe3\xa7\x06\x7b\x52\x61\xfd\x38\xca\x82\x88\xee\x92\x6c\xb0\x42\x73\x9f\x26\x71\x16\x8b\x37\x40\xfc\x05\xf3\xdf\x4b\x3b\xd1\x6c\xc2\x13\x81\xe5\xf1\x04\x49\x68\x8a\x3e\x0b\xba\xc3\x2d\x39\xbf\xe2\xf3\x0b\x35\x53\xf8\x45\x35\x00\xb5\xdc\x21\x18\xe4\x1b\x04\x4d\xc4\x89\x5c\xf5\x56\x3f\xf7\x00\x2d\xd8\xe2\x2f\x3a\x45\xc6\x37\x6c\x65\xef\xec\x15\x9f\x9b\x1b\x59\x70\x84\x8a\x77\x75\xe1\x7e\x9a\xbb\x69\xef\xe3\x67\xee\xe2\x72\xa0\x2f\x81\xb6\x45\xd6\x98\x88\x10\x3f\xaa\xd7\x93\x68\x38\xb3\x86\xf8\xa4\xcb\xb3\x5b\xb7\x38\xbb\x55\xa5\xe3\x60\xe0\xb6\x16\x9f\x74\xb9\x9f\xba\xc5\x7e\xaa\x4a\x8f\x8e\x0f\x4f\x0f\x4f\xdf\x1d\x09\xba\xa0\xa4\x4e\x68\x09\x40\x2e\xca\x1f\xd1\x91\x31\xf1\xa1\xa8\xe1\xb1\xc8\x9f\x70\x8f\xc0\x41\x40\x07\x6a\xe3\xe4\xf2\xc5\xe1\x71\xbb\xb3\x43\x94\x1b\x5b\x93\x7d\x54\x5f\x6c\x19\x95\x76\xf7\x0f\x5b\xcd\xfd\x7c\xa5\x5d\xb3\xd2\xc9\x69\xf3\x74\xaf\x9d\xaf\x74\x62\x56\x82\x25\xe4\xeb\x1c\x99\x75\x5a\x7b\xaf\x0b\x26\xd4\x32\xab\xbc\x3d\x6e\x1e\xe5\xab\xbc\x55\x55\xf4\xcb\xa0\x67\xbf\x8d\x7b\x57\x87\x7f\xce\x05\x44\x2e\xc4\x0b\x5e\x36\x7e\x8a\x83\x5f\x31\x3b\x39\x12\x40\x66\x0d\xd9\xdf\xb9\xda\x81\x8b\xfc\x9d\x31\x47\xa2\x93\x54\x37\xe0\x22\x3f\xd2\x50\x75\x56\xb6\x7e\x7f\xfa\x24\xc6\x2e\x1a\x00\xee\x55\x7c\x13\x79\x2c\x9e\x65\x9a\xda\x91\xa3\x55\x98\xbc\xd7\xb0\xcb\x5b\xea\xf6\x89\x3b\x15\x44\xf6\xa6\x03\x91\x2c\xae\x8c\x1f\x44\xa9\x28\x8d\x7c\x41\x65\x61\x51\x7c\x13\x09\x2a\x40\x1f\x8a\xb5\x35\xb9\x3a\xf5\x17\xde\xac\x95\x46\x83\x29\xba\xdc\xb8\xa8\xa2\x87\xb5\x35\x71\x8a\xcb\x04\xb1\x05\xd8\x51\xd0\xcd\x78\x56\x71\x02\x2c\x4e\xd8\xd4\x4f\x53\x3e\xa0\xa9\xcc\xe0\x2d\xbb\x89\xd8\xb6\x35\x70\xbd\x00\x8f\xd6\x6a\x6c\x9a\xf0\x6b\x1e\x65\x12\xec\xd3\x38\x0c\x67\x70\xfc\x05\x20\x04\x54\xd2\xa9\xdf\xe7\x29\xd6\x97\x7b\x49\x38\x42\x6f\x9b\x58\x24\x52\xfd\xf6\x5a\x59\x49\x5e\xa7\x92\xe0\x36\xf4\x04\xd4\xf8\xbd\x20\x1a\xb0\x2c\x98\xf0\x24\x65\x59\x2c\xa7\x21\x06\x17\x0f\x05\x12\x0d\xb4\x5e\x01\x08\x7e\x9b\x61\xd3\xba\x3a\xee\x6b\x6b\xb4\xda\x7e\x76\x5b\x8e\x67\x99\x47\x9d\x54\xd4\x18\x37\x89\x3f\x95\x3d\xf7\xe3\x28\xcd\x92\x59\x5f\x10\xe3\x30\x8c\x04\x40\x7f\xec\x47\x23\xce\xb2\x31\x9f\x88\xdd\x0d\x83\x5e\xe2\x27\x73\x63\x30\xb8\x38\xce\x6e\x36\x1a\x00\xef\x6d\x66\x10\x7b\x6d\xe3\xa9\x15\x87\xf0\x85\x85\x54\x7c\x8f\xf5\x3c\xd6\x37\xea\xe0\xfe\x0b\x1e\x8a\x05\x51\x9a\xf9\x51\x5f\xc0\xb1\x6d\xd5\x60\x2c\xbd\x09\x80\xcc\xf6\x93\xd1\x4c\xf0\x95\xf2\x31\x70\xaa\x31\xd6\xf7\x53\xce\x9e\xd4\x25\xa6\x8e\xf8\x0d\x6b\x97\x2b\x5b\x05\x95\x36\x9d\x4a\x7e\x61\xad\xa7\x6e\x2d\x8f\xf5\xec\x8a\x77\xf9\x0a\x62\x85\x46\x1d\x55\xa3\x5d\xf5\xa7\xd3\x70\x0e\xab\xf5\x98\x5a\x8b\xae\x7b\xa7\xfe\x7a\x61\x5c\x68\xd6\x60\x6d\xf7\x7e\x1b\xcc\xc9\x0b\x7d\x9c\x27\xfe\x15\x67\x28\x62\x90\x92\x01\xb9\xcd\x84\xf3\xd9\x84\x67\xe3\x78\x40\x27\xfa\xae\x22\x8e\x4c\x05\x77\x18\x31\xac\x3e\xcb\x70\x95\x9c\x33\x2c\x0e\x99\x64\x80\x81\x96\x01\xdc\x22\x3a\x90\x28\xc6\xbc\xa2\x30\xaa\x1c\x51\x9c\x6f\x81\x31\xab\xff\x6c\x1f\xbe\x3e\x39\x3d\x3e\x6b\x9f\x1e\x1e\xff\xb3\x4a\xa5\xd5\x7f\xbe\x6e\x1e\x74\xfe\xa9\x31\x82\x9c\x90\xb1\xc3\x12\x35\x54\xaf\x83\x24\x9b\xf9\x21\x20\x61\xf7\x1b\x60\xe2\x8a\xbc\xa3\x7a\x56\x9f\x3b\x2f\x4d\xc7\x99\x33\xa3\xd3\x6a\xbf\x1e\xc7\x02\x68\x0a\xe7\xaf\xad\xb1\x15\xf9\x03\xa6\x51\x81\xc7\xbb\x2c\xbf\x79\x84\x97\x67\x59\xc5\xa1\xe7\xc4\xee\xd7\x6a\xf8\x36\xf5\x82\x6c\xe2\x4f\xbb\x91\x7a\x55\x59\x83\x6d\x6e\xe1\x2a\x86\x71\xd2\x17\xf8\x4e\x3d\xa6\xac\xc1\x9e\x52\x19\xde\x73\x5d\x76\xc2\x1a\xec\x1b\x2a\xc3\x83\xa1\xcb\xc4\x43\xf8\xfd\x96\x44\x84\x71\x16\xeb\xa2\x96\x18\xee\xdb\x2d\x85\xa3\x74\xc9\x5b\xd6\x60\xcf\x9e\x6e\x29\xcc\xa2\x4b\xce\x58\x83\x7d\xfb\x0d\x96\xa4\xfe\x90\xeb\x92\x63\xd1\xdb\xd3\xef\x41\xea\x91\x70\x81\x67\x8d\x0d\x80\xf3\xf9\x9e\x10\xce\xfb\x02\x16\x8d\x7a\xd1\x9c\x1e\xc8\x21\x4c\x52\x07\xe9\xda\x8d\xc1\x54\x13\x53\x09\xf7\x33\xbe\xc3\xd3\xbe\x53\x55\x12\xe5\x1b\x03\x9e\xf6\xa1\x7a\x6e\xbc\x65\xb2\x0b\x8d\xc9\x70\x4c\xda\x4c\x60\xad\x6d\xce\x71\x70\x54\x1d\xda\x95\xf4\x9c\xca\x9b\xb2\x09\x30\x91\xa6\xec\x63\x71\xbf\x58\x20\x0f\x76\x8e\x99\xc7\x62\xcd\x93\x2e\xe5\x74\xed\xa9\xd2\x7d\x0f\xc4\x75\x6f\xb0\x12\x09\x96\xd8\xb6\xf8\xb2\x42\x44\xbf\x96\xaf\xc9\x6a\x0a\x2d\x58\x52\x84\x2c\x66\x40\x6b\xf3\x01\x93\x2b\xc9\x62\x12\x61\xdd\x04\xd9\x98\x0d\xfd\x30\xec\xf9\xfd\x2b\x7c\x61\xe3\x68\xc3\x4f\x12\x7f\xbe\x11\x06\x57\x9c\x75\x4e\x9e\xb1\x34\x4b\x82\x68\x94\x92\x50\xab\x50\xf8\x15\x38\xa2\x2f\x22\x27\x72\x5b\x87\xc2\xbf\xc2\x3d\x5e\x0c\x0c\x1a\xb2\x4c\xcd\x45\xb9\xc1\xe9\x03\x5f\x93\xe5\x29\xf9\x74\xec\x27\x62\xac\x72\xe9\xe6\x4a\x93\xdd\xb3\xc0\x9d\xd4\x2c\x18\xa8\x52\x64\x3e\x17\x30\x0d\x55\x2c\xa5\xaa\x67\x27\x9d\xcb\x93\x77\x07\xad\xc3\x7d\x2d\x29\x95\xcd\x9d\xad\xb0\x08\xfa\xb4\x48\xd2\xaa\xd7\x2e\x08\x1c\x7b\xf5\xb0\x36\x83\xc4\x35\x7f\x37\x10\x5b\x19\x73\x59\x5b\xa3\x59\x18\x2d\x8c\xe2\x6d\x39\xc7\xba\x80\x44\xa5\x5c\xc2\x9f\xd5\x12\x5b\x07\xda\x4a\x01\x56\x61\x8a\xb4\x2a\x81\x0b\xff\x6a\x98\x07\x69\xf1\x49\x48\x4d\x31\xe8\x43\x76\x19\x58\x75\xd9\x1b\x6c\x6e\x4e\xe8\x16\x64\x6c\x9d\x95\x58\x80\x32\x37\x5f\x5e\x2d\x29\x73\x23\x48\x05\x0f\xbb\x6b\xfc\x96\x4b\x6a\x27\x2f\x56\x5c\x59\x11\xc5\xe5\x02\x51\xa2\x55\x2d\x4b\xe8\xaa\xdf\xb9\x12\xa7\xcb\x20\x1a\xf3\x24\xc8\x4c\x19\x53\xe9\x5f\x3d\xbf\xc7\xc3\x5a\x32\x8b\x04\x61\x59\x1b\xf3\x70\xca\x93\xb4\xc6\xd3\x49\xcd\xaa\x2e\x4e\x0b\xf5\x73\xcc\xfd\x7e\x46\xcd\x13\xf1\xb7\x51\xf6\x91\x1d\xc7\xb3\x8c\x27\x1e\xbb\xbc\xc4\xbf\xda\x48\x89\x7a\x58\xc0\xee\xcc\x86\x1b\x09\x54\x29\x69\x39\xd6\xe3\x05\xc5\xaa\x7b\xc4\x8b\xad\x24\xbe\x49\x79\xf2\x32\x10\x3b\xaf\xb0\xe5\x4b\x3f\x1d\x3b\x9f\xf6\xe3\xbe\x0f\xb0\x95\xe3\x8e\xb1\xdc\xe8\xf3\x28\x89\xa7\x62\x3f\x53\xaa\x21\x90\xfe\x86\xb8\x36\xa9\x51\xe9\xc6\x4f\xa2\x20\x1a\x51\x95\x2c\x88\xe6\x1b\xf4\xc9\xa8\x74\xc9\x6f\x33\x1e\x0d\xd2\xfb\x41\x4b\x15\xcd\xb6\xf7\xcb\x03\x97\x75\xb8\xac\xb5\x31\x4a\x20\xee\x7b\xe0\x47\x99\xb9\x10\xf5\x11\x31\x42\xed\xf1\xe3\x6e\xc4\x1e\xb3\xd3\x31\x67\xd3\x59\x2f\x0c\xfa\xac\x79\xb4\x07\x18\xd8\x67\x3f\xe2\xa6\xfe\xc4\xb2\xb1\x9f\xb1\x59\xca\x53\xf6\xf2\xf4\x60\xff\x39\x23\xb8\x56\x45\xd3\x9a\x44\x2c\xb4\x4d\xd8\x46\xa0\x84\xda\xe3\x7f\x5c\x5e\x1e\x9d\x1d\x77\x2e\x2f\x45\x2d\x7d\xf2\x2f\xe1\x50\x3d\x6a\xc7\x93\x69\x1c\xf1\x48\x5e\x40\xfb\xc8\x96\xad\xfe\x3c\x96\x6b\x24\xa5\x42\xb2\x5b\xab\x7e\xd9\x92\x27\x5e\x0a\xb2\xda\x96\x0e\xc2\xe7\x90\x0b\xee\xd4\xe5\x1c\x80\xfe\x16\x77\x55\x90\xed\x4d\xf1\x06\x95\x45\xcd\x8a\xc7\x2e\x51\xa6\xf4\x64\x0b\xff\xfa\x11\x7a\xc0\x1f\x96\x20\x51\xb4\x3f\xbf\xa4\xf7\x58\x75\x8f\x5f\x34\x65\x87\x7f\xc0\xdc\x58\x23\xb7\x3e\xa0\xa1\x89\x2b\x70\xcb\x3c\x76\x2e\x5a\x5d\x54\xfb\x71\xd4\xf7\x33\xc1\xfb\xa4\x95\x8a\x40\xb2\xb4\x50\xd5\x71\x95\xb6\x8a\x35\x0a\x2f\x53\x19\x2b\x89\x5b\xa0\x78\x0d\x42\x2d\x97\xaa\x2b\x9a\x2a\x40\x6c\x4a\xc2\x0b\x0b\xd8\x9a\x22\x26\x18\x63\xb5\x6a\xc2\xa3\x81\x38\x0a\x7a\x8f\xf0\x4b\xd9\x45\x63\xb0\xbc\x2a\x4e\xb0\x13\x72\x01\xad\xb2\xdc\x77\x05\x54\x5a\x49\x9d\x99\xeb\xf2\x64\x69\x7f\x1c\x84\x83\x84\x47\x54\x0c\x2b\xaa\xca\x8f\x92\xa5\xc1\xe5\x6c\x59\x12\x3b\x6b\x25\x02\x71\x97\x71\x36\xce\x41\x13\xaf\xc3\x34\x89\xfb\x3c\x4d\xab\x3c\xba\xae\xbe\x3e\xdc\xe9\x5c\x76\x5e\xff\x1b\xc8\xa0\xee\xea\x34\x89\x07\x33\x58\x63\x77\x95\x56\x97\x03\x11\x21\x9e\x86\x5c\x52\xcf\x4f\xb9\x78\xec\xea\x1a\x2b\x55\x91\xc6\xa1\x55\xe9\x35\xe9\x0a\x51\x3c\xe0\x9e\x3a\xc7\x7d\x7e\xcc\x87\x09\x4f\xc7\x66\x95\x5e\x1c\x87\x54\x65\xc4\xb3\xb3\x14\xd0\xf2\x30\x48\x26\x80\x1c\xcd\x9a\x62\x5f\x3c\x25\x2d\xdd\x87\xd3\x6f\x0d\x06\x1a\x4a\x13\x68\x0b\xf6\xbd\xda\x97\xd0\xda\x09\x06\x07\xf1\x2c\xb2\x05\x86\x6a\xbf\x1f\x08\x41\xb6\x2d\x71\x70\x79\xc5\xd8\x4e\xb9\xe7\xac\xbb\xfa\xa3\x35\x91\x9f\x58\x30\x8a\xe2\x84\xa7\x2c\x1b\x73\x79\x50\xc4\x60\xd3\x2a\x3b\x8d\x05\xe6\x62\x3e\xeb\xcf\xd2\x2c\x9e\x30\xa3\x13\xb6\xce\xba\xab\xa2\xf0\xbd\xf3\xa0\xb1\xbb\xf7\x20\x72\xe0\xfe\x80\xc5\x43\xa3\xd8\xc6\x71\x7e\xaa\xeb\x57\xc5\xbe\xd7\xd9\x75\x1c\x0c\xd8\x13\x75\xce\xee\xbe\x04\xc7\x92\x3e\x3b\xa4\xd7\xac\x3a\xf6\xd3\xb1\x8d\x6a\xc5\xdb\xf7\xd5\xf0\xac\xee\xec\x01\x48\x56\x57\xfe\x1b\xc3\x2e\xc0\xb0\x06\x61\xf2\xc5\xe8\x55\x83\xf9\x7f\x35\x6e\xd5\xcb\xf8\x9a\x88\xd5\x06\xce\xd7\xc6\xaa\x0f\x47\x99\xe2\x5e\x8a\x8f\x66\x71\x1c\xf1\xc3\x61\xf9\xbc\xbb\x2a\x0a\x7b\x7e\x34\xea\xae\x0a\x4c\x13\xc5\x69\xe8\xa7\x63\xfc\x41\x7f\x5e\x54\x4c\x88\x15\xed\xf8\x5f\x8f\x55\xf5\x2c\xfe\x32\x94\x6a\xe0\xb2\x07\xe2\x53\x05\x81\x20\x3d\x88\x07\xc1\x30\xe0\x83\xce\xb5\x38\xd6\x20\xaf\xb6\xb9\xd6\x95\x15\xfc\x5a\x9d\xf0\xcc\x7f\xc5\xe7\xe2\x06\xe3\x07\x3f\xcc\xac\xdf\xfd\x2c\x09\xad\x0f\xe9\x38\x18\x8a\x2a\x15\x1c\x77\x09\x16\xc7\x9b\x27\x38\x06\x5f\xc2\x62\xc3\xbf\xf1\x13\xce\x7e\xf4\x7f\xd2\x98\x1b\x71\xf7\x7e\x10\x5d\x7d\x05\xac\x2d\xba\x79\x00\xbe\x16\xd5\x72\x28\x21\x87\x08\x8b\x65\xcf\x16\xb6\x2b\xc2\x52\xa2\xf3\x45\xf8\x69\xec\x47\x83\x90\xb7\xc3\xa0\x7f\x65\x1e\x5a\xe3\x33\x6e\x8c\x27\x21\xa6\x26\x29\x85\xfe\x74\x3c\xe3\x08\x6a\x57\x58\xfe\x1b\x6d\xb8\x7a\x76\x80\x83\xc7\xcd\x23\x0d\xf7\x11\xea\x30\xf8\x80\xad\xad\xb1\x5a\x8d\x51\x43\xa9\xdb\xe0\x03\xa9\x0a\x27\x35\x0e\xb4\xed\xcd\xb2\x2c\x8e\x40\x94\xf5\x44\xb4\x2b\x8b\x96\x78\x1b\x44\x8d\x64\x9e\x8d\xc5\x5e\xf7\x66\x19\x0b\xf9\x30\x63\x7d\xd1\x25\x89\xcd\xcd\x8b\x45\x7a\x2e\x82\xa2\xfd\xb1\x01\xb7\xf3\x12\xcc\xcc\x56\x2b\x34\xbb\x90\x67\xac\x87\x14\x06\x01\x8a\x75\x57\xb1\x41\xe3\xb2\x17\xfa\xd1\x55\x77\x95\xf1\xac\x5f\xa5\xb1\x16\x9c\x7f\x3d\x5b\x9c\x19\x4a\xd7\x26\x58\x15\x74\x7f\x34\x59\x4b\x45\x82\x6b\x27\xc0\xec\x20\x54\x2c\xf5\x88\xd8\x7a\x92\xcb\x36\xcc\x15\x25\x7c\x1a\xfa\x7d\xce\xb6\x15\x5b\x28\xbf\xd4\xd5\x97\xe9\x2c\x1d\x1b\x5d\x61\x37\xe6\x2e\x67\xb1\xa1\xea\x30\xf1\xe2\x83\x9f\x3b\x45\x85\xd0\xec\xd4\xa9\x50\x05\x8f\x60\x28\x6b\xf2\x9e\xa1\x6b\x8a\x22\x9e\x1c\xf3\xa1\x20\x14\x74\xed\xaa\xfc\x6c\xd4\x94\xcb\xb3\x2b\xd2\x57\xa3\x1e\xdc\x11\xb3\x4a\x16\x5b\xbd\xa4\x02\x9d\x2f\xb7\xbc\x30\x5a\x7b\xec\xbc\xbb\x2a\x67\x83\x0f\x09\x0d\x89\x3f\xb2\x58\x3c\x29\xcb\xcd\x07\x67\x29\x1f\x6c\x5c\xfb\x49\x8a\xe8\xe8\x1e\x2a\xc1\x11\xea\x54\xdb\x71\x94\xce\x26\x82\x6e\x88\x66\x61\xe8\x19\x2f\x11\x29\x20\x8d\xf3\xb4\x42\x9f\xd8\xf6\x67\xbc\x4e\x4a\x36\x51\x1e\xfa\x61\xca\xc5\xaa\xde\xc5\x33\x96\x8e\xe3\x59\x38\x00\x91\x9b\x78\x59\x7e\x14\x68\xe7\x27\x16\xcf\xb2\x34\x18\x70\x83\x84\xc6\x17\xc3\xe9\xc4\x79\x44\xe4\x81\x90\xc4\xb5\x16\x9a\x8a\xdd\x82\x49\x21\xb1\x00\x13\xb2\xc5\x4a\xe5\x2c\x96\x4b\xc7\xff\xa7\x35\x2a\x4a\x5d\x8c\x95\xc5\xd6\x38\xe3\x04\x4e\x94\x1a\x6e\x5b\x35\x92\x57\x83\x88\xc6\x84\x0f\xcb\x66\x3f\xdd\x55\xb0\xf8\xb2\xd4\x79\x45\x9b\xd4\x5d\xf5\xc5\xfe\x4b\x69\x14\x58\xcb\x89\xa3\xe5\x99\x77\x9b\xd0\x9e\xa1\x4c\xb0\x31\xa8\xad\x2a\x35\x29\xd4\x6a\x01\xc2\x76\x56\x60\xe9\x33\x8d\x03\x2e\x96\x5e\x87\xff\xb7\x4e\xfd\xb0\xae\xae\x9a\xba\xf0\x15\xa5\xef\x2a\x24\x23\xc5\x86\x7f\x4d\x02\x12\x0d\x5c\x05\xc1\xc6\x1a\x2e\xed\x26\xfe\x2c\x9f\xe7\x48\x47\xb3\x1a\x5c\xd8\x0b\x6d\xd3\x21\x97\xf3\xa5\x1d\x02\x49\x69\x52\xab\x63\x7f\xca\xcb\xb4\x25\xfd\x59\x92\xf0\x28\x33\x69\x4c\x3f\x02\xed\xfb\x5d\x85\xe6\x20\x9f\x61\x97\x12\x96\xf3\xaa\x5b\x33\xa4\xcd\x50\x47\xa2\x90\xb4\x25\xcc\xb2\x40\xaa\x80\x4f\xd2\x42\x02\x3b\x8b\xeb\x04\xde\x6a\x90\x1e\xa3\x4c\x7e\x50\x4c\xc1\x7d\x88\x83\xa8\x1d\xfa\x69\x0a\x06\x15\x12\x99\xdf\xcf\x3e\xf6\x55\x9b\x2f\x67\x22\x75\x1f\x4b\x19\x49\xdb\xbe\x4b\x37\xaa\x0e\x83\x50\xb0\xc1\x86\x26\xc1\xa5\xb3\x02\xec\xa0\x52\x15\xcb\x2c\x77\x57\x59\x77\xd5\x21\x26\x9b\x12\x9b\xdd\x24\xfe\x74\xca\x13\x94\x02\x5c\x45\xf1\x4d\x2a\xa8\x99\x20\x2b\xa5\xac\xbb\xea\xf7\xc1\xa0\x66\x95\x81\x5e\x2c\x33\x29\x4a\x35\xfa\x6b\xff\x1a\x68\xbd\xcb\x84\x0f\x8d\x63\x2e\x7e\x3e\x12\xf8\xb0\x8d\xe7\x48\xbc\x38\x09\x1f\x9e\x77\x57\xc5\xc7\x0d\x3a\x5d\xdd\xd5\x0b\x4f\x73\xd6\x6e\x65\xbb\x7d\xa3\x41\xf8\x94\x6d\x8b\xdb\xe5\x8f\xc4\xc4\xea\xb9\x8a\xaa\x3f\x2c\x80\x15\xc0\x4e\xbf\xf6\x27\x9c\x3a\xae\x3a\x9f\xf5\x1c\x0a\xab\xe7\x7b\xb1\xe7\xa2\xc0\x54\x2f\xac\xee\xf4\x7e\x92\xcd\x43\x67\x22\xf0\x49\x73\xbd\xb2\xa1\x38\xe6\xb2\x62\x3f\xd7\x1b\xbf\xf5\xfb\x12\x52\x55\xf8\xa1\x8a\x82\xb4\x09\xfd\x9a\x1d\xc8\x6f\xaa\x92\xf1\x12\x41\x05\xf9\x5b\x55\x10\x77\x4b\x8f\x80\xbf\x8c\xc2\x79\x68\xf5\x9f\x5a\x6b\x40\x12\x44\x7c\x37\x68\x8f\x87\x51\x1e\x02\x6f\xb3\xdc\x39\xf1\x14\x9c\x15\x5c\xcd\x8f\x00\x41\xfc\xd0\xb7\xcb\x01\x32\xf8\xa7\x04\x01\xfe\x92\xeb\x25\xde\x18\x96\x27\xff\x56\x9d\x11\x71\xa3\x79\x90\x29\xb8\x6b\xe4\xde\x6e\x5c\x12\xbc\xdd\x59\x5c\x15\x95\xc4\x5d\xc5\x67\x59\x50\x46\xc7\x7c\xc4\x6f\x59\xe6\x5f\xf1\x08\x94\x22\xf5\x22\x07\x96\x69\x10\x86\x7e\xf2\x21\xad\x89\xf6\x1b\x59\xbc\x91\x88\x56\xd3\x5a\x2f\x8c\x7b\xb5\x89\x9f\x66\x3c\xa9\x81\x26\xbb\xfa\x21\xfd\xc7\xfe\xd3\x27\x4f\xf5\xb4\x78\xda\xf7\xa7\x7c\x70\x84\xb3\x83\x49\xae\xad\xc1\xbf\x92\x3e\x2c\xd7\xca\xe7\xd5\xf5\xc7\xdb\x8d\xff\x59\xa9\x3f\xfa\x78\x57\xae\x9c\x77\xbb\x17\x9f\x6a\xdd\x6e\xb7\x7b\x51\xa9\x8d\xc4\x62\xc5\xdf\x8f\x36\x11\x57\xdc\x2f\xc6\x51\x0f\xbd\x18\xa5\x6e\xce\x80\x36\x1c\x20\x5f\x67\xe6\xd1\x44\x28\xd7\x99\x75\x98\xe4\x46\xd4\x99\x73\x04\xb5\xc0\x44\x61\x1b\xf9\x09\x8e\xc9\x53\xc7\xae\xcb\x39\xd1\x4f\xf3\x47\x1a\x78\x00\x50\x69\xca\x2a\xf0\xcb\xa2\x9c\xe4\x29\x61\x0d\xc1\xc4\x5b\x57\x69\xdb\xba\x59\x65\x68\xeb\x31\x93\x7a\x82\x4f\x15\xab\xbf\xbe\x81\x4d\x54\xdf\xdb\xee\x0b\x64\x5d\x7a\xcf\x45\x44\xa2\x6b\xab\x86\x35\x42\x4a\x18\xc5\xe8\xdd\x22\xcb\xd4\x5d\xf5\x4c\x14\x24\xfa\x54\x25\x0f\xa1\xf8\x88\xf3\x57\x3d\x6b\xa0\xba\x97\xb5\xae\xa7\xb2\xb6\x66\x21\xf6\x4f\x9f\x90\x84\xd5\x6d\xd5\xb2\x8c\x15\x1a\xc5\x30\x43\x9a\xa8\xc5\xe2\x88\xab\xa5\xe8\x38\x24\x3d\x2b\xb6\xf5\x52\x45\xbe\xfa\x5f\x46\xa8\x19\xd3\x2e\x26\xb0\xca\xe7\xf2\x19\x42\xa4\xc1\xa7\x45\x88\x65\xe0\x67\x12\x97\x04\x12\x27\x65\xc9\x8c\x13\x5e\x61\xf2\x01\xb5\x08\x29\x6b\xfb\xec\x52\x75\xed\xf2\x40\x77\x66\x4c\xe0\x72\x8e\xd2\x42\xea\xc9\x38\x1a\xf5\x1c\xd5\xe9\x19\xa4\xcb\xd2\x5e\xe8\xd2\x03\x86\xd0\x93\xb6\xde\x27\x79\x36\x16\x90\x80\x1a\x1d\x2c\x98\x84\x44\x22\xee\x18\x16\x52\x49\x8b\xd7\x61\x1f\x0c\x32\x07\x70\xd4\x2b\x1e\x33\x35\x13\x78\xea\x69\x93\xd8\x9d\x69\xff\x71\xa4\x0e\x8e\xc0\xb9\x45\x07\x0c\xac\x92\xf4\xf9\x2a\x91\xed\xcc\x34\xe1\xc3\xe0\x96\x35\x58\x69\x4f\xab\xca\xfd\x20\xe4\x03\x51\x43\x8b\x19\x15\x47\xd9\x8f\xa3\x41\x00\x98\x8c\x4d\x78\x9a\xfa\x23\x6e\x49\xad\x54\xb1\xc5\x50\xe1\x55\x36\xaf\x04\xd6\x36\x27\x6e\x35\x40\xab\x13\x41\xd5\xa2\xd5\x09\x4e\xb3\x62\xf7\x50\x5c\x09\xc4\xaf\x75\x94\xc3\x96\x69\x8a\xe0\x52\x56\xaa\xb8\xd0\x96\x3e\x20\x6a\x75\xf7\x1a\xac\xa0\xe1\x61\xa1\x49\x1b\xcd\x9e\x2b\x6f\x96\x3a\x5b\xa1\xfa\x6c\x8d\x6d\x56\xe4\xb9\x8d\xa3\x61\x30\x9a\xe5\x6b\x3c\x95\x35\x6e\x92\x20\xcb\x95\x7e\x23\x4b\x61\xe4\x3a\xfe\xa3\x18\x8a\x05\xf3\x26\xd3\x18\x79\x4a\x06\xc0\x10\xd0\xbe\x8b\x3d\x3f\x80\x47\xd9\x8f\x06\xf1\xa4\x7c\x8f\x89\x50\xce\xf7\x8b\xcc\x95\xca\x25\xa9\x1e\x02\x86\xc3\x34\x60\x67\xdb\xac\x54\x62\x75\xb4\xd5\x2b\x55\x2e\x4b\x1e\x2b\xaf\xaf\x07\x03\xb6\xce\xa6\xb7\x95\x6a\x16\x9f\xc0\x6d\x2d\x3f\xfb\xb6\x92\xf7\x16\x43\x7c\x4f\x62\x17\x32\xde\xc0\x6f\x1b\x68\x2a\x43\x1c\xb8\x69\x51\xf2\x17\x98\xfb\x7c\x3d\xdb\x19\x69\xd9\x73\xc0\x27\x71\x32\x5f\x60\xc5\xa3\x5f\xf4\xb4\x99\xf0\xce\x6f\x33\x3f\x94\x55\x80\xbe\x5a\x6c\xe4\x73\xbf\xe1\x0b\x55\x14\x24\xd3\x69\x0c\x44\xe1\x54\x2e\xca\xa2\xf9\xbe\x92\xbd\xcf\x47\x16\xa4\xff\xf6\xc3\x60\x40\x6f\x38\x3c\x64\xb6\x71\x54\xf0\xd7\xdb\x07\x8d\xe3\x20\xcd\x4e\xc0\xf2\x57\xae\x0a\x3e\x6d\x44\x71\x44\x07\x0d\xed\x82\x53\xb2\x15\xaa\xb1\xd3\xc3\x9d\xc3\x3a\x3b\x26\x01\x28\xc8\x95\x4d\x12\x45\x1e\xd9\x38\x12\xa5\x9c\xf5\xfd\x88\xf9\x69\x3a\x9b\x70\x3a\x58\x9b\xdf\xae\x4b\x3d\x08\xb6\x10\x8f\xd8\x40\x36\x33\xee\x5c\xbe\xd4\x34\x49\x44\xa7\x29\xd9\xc8\x1a\x9b\x44\xd6\x52\x46\x75\x94\xc4\xd7\xc1\x80\x27\xd5\x41\x90\x4e\x43\x7f\x4e\x04\x20\x70\x05\x02\x57\xaa\x0a\x24\x6d\xeb\x3b\xb2\xce\x85\xed\x64\x05\x6a\x27\xc5\x03\xd8\x5c\x19\x2f\x5a\x13\xcd\xe9\x7c\x0a\x16\x59\xc2\xf7\xae\x54\xb9\xcf\x3a\x6b\x3a\xcb\x32\x71\xcf\xa4\x66\x2e\x56\x83\xdb\xa6\x02\x5f\xcd\x4c\xe0\x3e\x13\x01\x52\x5e\xf6\xe3\xc9\x74\x96\xf1\xe3\x38\xce\x0e\x88\xc2\xd7\x9b\xea\x94\x95\x25\x83\xe6\x0a\x4e\xd4\x63\x88\x3c\x4d\x77\xb5\xd6\x5d\x55\x54\xe7\x2c\x09\xdd\x4f\x53\x3f\xf1\x27\x69\x9d\x7d\xbc\x33\x78\xef\x0e\x92\x40\x8a\x09\x44\x0e\xb1\xd6\x5d\xa5\x77\xd4\x92\x34\xaa\x39\x92\x71\x03\xaa\xec\x17\x5b\x38\x2c\xb5\x29\x20\x4d\x1a\xf5\x51\x64\x33\x20\xee\x15\xd7\x92\x3a\x93\xda\xb2\x94\xb2\x8a\x75\x92\x73\x66\xe0\x8e\x1d\xa4\x2c\x48\x99\xcf\x7a\x41\xc6\xe2\x21\xf3\xd9\xd8\xef\x5f\x55\xd9\x5b\xce\xc6\xfe\x35\x17\xec\x70\x9a\xf9\x49\xc6\xc2\x20\xcd\x38\xa2\xe3\x58\xf3\x65\xd8\x57\xad\x46\x9e\x3d\x29\x1b\xf3\x84\xb3\x20\x02\x4d\xaf\xe1\x06\x24\x3e\x81\xa7\x4b\x06\x15\x7c\xf1\xbf\x68\xce\x7e\x3c\xe6\x83\x20\xe1\xfd\xec\xa7\x54\xf5\x14\x63\xe3\x20\x0a\xb2\xc0\x0f\x49\x37\x53\x65\x7b\x43\xdd\xd6\x13\x7f\xce\xd9\x4d\x10\x86\x52\xbc\x58\x9b\xce\xd2\x31\xbb\x19\x73\x3d\x25\xa8\x33\x01\x55\xb7\x1f\x0d\x58\x1a\x08\x4c\xd2\xdf\x39\x60\xc3\x20\xe1\xe0\x5d\x26\x59\x4f\xd6\xe3\xc3\x38\xe1\x62\xef\x79\x94\xa5\x9e\xc0\x37\x13\x7f\xae\x7a\x1a\xf1\x8c\xf9\x40\x20\x29\x7e\x94\x5a\x88\x99\x2a\xb3\x9b\x20\xc5\xe1\xf8\xa0\x6a\xed\x6d\xf5\x32\x48\x0f\xb0\x40\x1c\x61\x3f\x4c\xb9\xb5\x83\x97\x53\x1e\x0d\x82\x68\xb4\xaf\x99\x5d\xc1\x51\xd9\xba\x48\xdc\x4b\x44\xa2\xed\x9c\x8e\x04\x3b\x9a\x45\xb8\x4b\x48\xbb\x9a\x5b\x0f\x9f\x0d\xf9\xa2\x66\x70\x1d\x17\x29\x77\xc2\x8e\x3c\x9f\x8e\x1c\x07\x5c\xcf\xcb\x8e\x5b\x54\x9e\xed\x37\xcb\xef\x6c\x6f\x25\x1e\xa6\xbc\xa8\xf3\x02\x68\xc8\xde\xcc\xf6\x5a\xe0\xef\xda\xe8\x3c\xc8\x2a\x66\xb9\x45\xcc\x52\x63\x89\x5c\xa1\x56\x1c\xe6\x77\x9b\x48\xc7\xae\xad\x8e\x76\xd7\x68\x40\x79\x21\x80\x35\x70\x0b\xbb\x28\x82\x47\x4e\xf5\xa9\xa6\xfe\x36\x08\xc3\xb3\x68\xb2\x70\x69\x46\x79\x39\xaf\x4d\x97\xe7\x8c\x14\xe9\xf2\x67\xd9\xd6\xb8\x7c\x0d\xeb\x22\xf7\xed\x35\x54\x51\x4b\x2d\x89\x72\x52\x09\x22\xf7\x0d\x78\xda\x76\x4a\xb6\xfd\xca\x42\xa8\x03\xb2\x2d\x12\x42\x81\x94\xa8\xbe\xe8\xe5\x2a\x17\x34\x56\x22\xc5\x8a\x25\x1b\x31\xee\xb7\x35\x35\xab\xa4\x1b\x59\xb7\xa0\x58\xd5\xf5\xf5\xad\xa5\x16\x5b\x4a\xdd\x63\x08\xa5\x60\xed\x32\xef\x86\x56\x47\x71\xf9\x16\x04\x0a\xb9\x7d\x9b\x4c\x28\xb6\x71\x3a\x9b\x0e\xf0\x5d\xd4\x48\x6f\x9a\xf0\xeb\x23\xeb\x31\xfe\x7c\x6b\x27\xd5\x87\xb6\xd5\x6b\x34\x8a\x8e\x10\x29\x9c\xfb\x7e\x14\xc5\xca\xf1\x95\x9e\x0a\x09\x8f\x9f\xbe\x8a\xa1\x27\x38\xb1\xa4\xfa\x69\x0a\x22\x36\x01\x66\xc8\xa6\xde\x90\x41\xfa\x6a\x34\x9c\xd9\xdd\x03\x8c\x87\xcc\xea\x7f\x9b\x7b\x2e\x30\xf7\xb4\x78\xd8\x2f\x36\xf8\x34\x41\xfd\xbf\xda\xe4\xd3\x5c\xc8\xd7\x44\x63\x2e\x80\xf2\xca\x6e\x20\x3d\x3b\x51\x96\x04\x3c\xb5\xd4\xe5\xe2\xc0\x79\x56\xad\xbd\x68\xc0\x6f\xf3\x86\xee\x5f\xd3\x68\xfe\x1e\x63\x53\x13\x72\xc5\x7b\xff\xd7\x1b\x7f\x9a\xf3\xf8\xcb\xcc\x3f\x2d\x0c\xf7\x40\x03\x50\x34\xa3\x1c\xf2\xfe\xbc\x1f\xf2\xaf\x62\x4b\x49\x7d\x3d\xc8\xa0\x92\xea\xfe\x89\x56\x95\x34\xc2\xd7\x26\x74\x73\x86\x95\x50\xee\x18\x56\xc2\x37\x93\x8b\x15\xff\x5f\x48\x23\x2e\x7f\xb8\xf3\xa5\x05\x4f\x79\x6e\x46\x58\xd3\x99\x12\x7e\x74\xe7\xe4\x31\xdd\xdf\xd2\xe9\xfd\x31\xb2\x59\x4d\x02\x6b\xb8\x53\xc3\xaf\x0f\x82\xd7\x83\xd1\x37\xf1\x91\x05\x66\x50\x74\x30\x16\xe3\xd5\x65\x02\xa3\x24\x9e\x4c\x41\x64\x24\x6e\xf4\x2c\xe5\x89\xe4\x87\x23\xff\x3a\x18\xf9\x50\xe4\xdf\xf8\x73\x14\x05\xfa\x2c\xed\x27\x9c\x47\x9a\x1e\x51\xd3\x3e\x82\x9e\x5c\x4b\x13\xa9\x6d\x20\x7b\x03\xfa\x69\x9b\x81\x08\x56\x5f\x56\x10\x7f\xab\x52\xa3\x80\x2a\x99\xa6\x1d\x82\x1f\x93\x46\x1d\xa2\xf4\x3e\xbd\xb8\x2b\xc4\x5b\x68\xb0\xf8\xe8\xd1\xa6\x02\xfe\x8a\xfe\xf6\x67\x18\x2d\x22\xd0\xbe\xdc\x6c\x11\xe4\x09\x00\x9a\x4f\x9f\x98\x9e\xaa\x2b\x5c\x70\x8f\x90\x63\xb6\x6b\x34\x94\x62\x86\x5e\x18\xf7\xaf\xb6\xee\xa5\x1f\x0c\x1c\xa9\x48\x08\xc2\x16\x96\x59\x21\xe2\x9c\x94\x87\x43\x4b\x0a\x01\x31\x36\x13\x1e\x72\x3f\x85\x70\xa5\x68\x00\x2c\x95\x68\xda\xf4\xd7\xd3\x7d\xe3\xb5\xb7\x3a\x27\x44\x22\x3a\x33\xaf\xbf\x2b\x0f\xd1\xf4\xbe\x3c\x94\x62\xe7\x5c\x8d\x5d\x7e\x62\x4e\x34\x98\x07\xce\xd9\x94\x6b\x98\xd3\x47\xd4\x60\xcf\x9f\xd0\xcc\x52\xf0\x94\x8b\xc0\x41\xa3\xd6\xe5\x1f\x36\x09\xf6\x07\x55\xec\xd4\xe7\xc3\xec\x17\x73\xd6\x8a\xa0\xc8\x22\x25\x3a\x9e\xf2\x22\xfa\x4c\x1c\xdd\x05\xe6\x84\xee\xda\x96\x59\x0e\x82\x40\xdd\xef\x8f\xb9\x0c\x28\xa7\x3e\xec\x07\x93\x40\x20\xf8\xcd\x27\x4f\x9e\x3c\x31\x0b\xda\x84\xf9\x9f\x6c\x59\x58\x4c\xe0\xff\x20\x04\x55\x12\xc8\xa1\x8d\x28\x00\xd0\xec\x5c\x7c\xbc\x50\x37\xca\xf8\xa6\x0c\x3f\x47\x3c\xe2\x89\x9f\xc5\x09\xd9\xfa\x48\x55\x52\x95\xfa\xc6\x7e\x8d\x00\x88\xc6\x7c\x7e\x34\x66\xad\x4d\x12\xf5\x20\xac\xa1\xbb\xdf\x32\x4a\xa1\xf5\xfa\x7a\x81\x69\xa2\x59\xdd\x30\x31\x3c\xb2\x9f\x01\xaa\x85\xce\x2a\x67\xc7\xfb\x5a\x3e\x4e\x68\x1f\x8c\x96\xfc\x68\x80\x42\x75\x9e\xf1\x24\x2d\x34\x38\xa4\x8e\x34\x00\x3d\x12\xc3\x1b\x80\x44\x2b\x2d\x85\xca\x2b\xa6\xa9\x12\x23\x69\xbc\xb9\x12\x6c\x23\x3a\x29\x6e\x85\x25\x32\x92\xa0\xbd\x7c\x35\x16\xf4\x2a\x50\xb8\xf8\x50\xcf\xef\x33\x8d\xa0\xed\xa6\x12\x9e\x65\x82\x0f\x4a\x48\xa9\x5c\x79\x00\x3f\x6f\xbc\x99\xd3\x24\x1e\x25\xfe\x44\x30\x0a\x82\x0c\x98\xa3\x5a\xcc\xd7\x04\x46\xc1\x13\x2a\x45\xe8\xee\x23\x4a\x32\xa8\xc1\x81\x61\x1c\x55\xb5\x3e\x2e\x37\xed\x83\x27\x12\xa4\xea\x54\x26\xfe\xd6\x6a\x12\x5d\x40\x95\xcc\x57\x16\xde\x1d\xf9\xcc\x2a\x87\x8d\xff\x65\xcf\xac\xd2\x4d\x7c\xf1\x43\x8b\x21\x15\x15\x8f\x9f\x7b\x30\x17\x09\xfe\xec\xca\x56\x51\xd1\x4b\x0c\xf0\xdf\xb6\x1c\x64\x0c\x7f\x19\x52\x90\x18\x0d\x0d\xa3\x3a\xc7\x2b\xc1\x3e\x33\xdb\xcb\xfc\x19\xac\x3b\x9b\xc5\x9e\x7d\xde\xaa\xf2\xfe\xd6\x6d\xc3\x27\x51\xd1\xd2\xc8\xa1\x7b\xa5\xd3\x99\x12\x8d\x2e\xe8\x55\xbe\x58\x60\x8c\x89\x7e\x2a\x6f\x05\x39\xa3\x9d\xe7\x82\x48\x50\x9d\x18\xa2\x8c\x40\x49\xc0\xae\xd5\x58\xca\x33\x20\x5c\x2d\x85\x4e\x30\x99\xf0\x41\xe0\x67\x3c\x9c\x57\x4d\x79\xfd\x22\x8d\x0b\x3d\xe1\x4a\x91\xe2\x9a\xdb\x19\x64\x93\xab\x99\xf8\xe3\x34\x91\xf5\xe0\x2f\x9c\xc9\xd7\xa1\x80\x56\x72\xa6\x13\x06\x51\x24\xf6\x53\x0d\xec\x90\x43\x0b\xe7\x55\x48\xe5\x98\xe6\x7f\x5f\x81\x16\x91\x97\xb7\x88\x7e\x10\x17\x64\x01\xfd\x80\x86\xbc\x4b\x9c\x11\xbe\xd8\xc5\xe3\x5e\x2a\xe4\xd1\x66\x31\x1d\x02\xdf\x8b\x29\x11\x28\x5a\x4c\x8b\x3c\xda\xa4\xc7\x34\x9e\xc2\xfe\x99\x8f\x83\xe8\xe3\x15\x08\x4c\xbb\xab\x20\x6b\xa1\x3a\x55\x1e\x0d\x8c\x5f\x64\x30\x6e\x7c\xe0\x51\x0a\x91\xcf\x15\xe5\x22\x86\x68\x13\x19\x45\x0b\x39\x97\xdd\x53\x04\xd3\xdc\x57\x1d\xc8\x54\x3e\xed\xed\x02\x3a\xc9\xf9\x6e\x46\x1c\x15\xbb\x79\xae\xbf\xa0\x85\x8d\x43\x3a\xd1\xe2\x45\x6d\x0d\x02\xa3\x49\x3a\x0b\x33\x7d\x28\xb0\x8b\x3a\xfd\xab\x85\x72\x69\x5d\x79\x39\xde\x15\x92\x5f\x8f\x36\x2d\x02\xcc\x78\x9f\x9c\xf9\x43\x54\x29\x31\x68\x8e\x06\x7b\xb4\x59\x48\x85\xa9\xda\x8b\x49\x30\x50\x3b\x15\x10\x60\x59\x4c\xe4\x57\x21\xbd\x05\xad\x14\x15\x83\x88\xd6\x3e\x23\x10\x2d\x15\xbf\x14\x91\x4f\xaa\xc8\xa1\x9f\x8c\xcc\x04\x66\x6b\xfd\x70\x54\xcc\xa6\x1a\x4a\x75\xf9\x59\x82\x99\xe4\x58\xba\x32\xfd\xe5\x99\x6f\x07\x38\x1e\xd0\xb9\x9c\x6a\x23\x75\xa6\xbe\x3e\x52\x0e\x15\xea\x74\x5b\x4e\x15\x6e\xb1\xac\x5f\x48\xca\x58\x75\xf2\x43\x69\xd7\x0a\xfb\xee\x14\xf8\x5e\xb8\x4d\x96\x0e\xe7\xf4\xa2\xbf\xcb\x8b\x68\x0d\x29\x3f\xea\x51\x0b\xaa\x99\x6d\x97\x8f\x5d\x78\xd9\xf1\xee\x49\xf5\x86\xe4\x4b\x2c\xe2\x39\xad\x26\x7c\x30\xeb\x73\xc3\xe2\x00\xce\x1c\x1f\x78\xcc\x60\x90\xf0\xc0\x50\x89\xba\xf6\xf4\xdb\x76\xba\x35\xd0\x1a\x50\x47\x79\x24\xa7\xde\x1e\x1e\x0d\x6c\x17\x85\x05\x4e\x0a\x06\x70\xea\xfa\x4f\xf9\x02\x59\x8e\x86\x84\x5d\xcc\x59\x54\x2d\x44\x21\x91\x85\x5b\x49\x7c\xb3\x16\x22\x5d\x15\xb0\x75\x15\x22\xb3\x29\x45\xb0\x29\x9f\x41\xb7\x83\x05\x42\x98\x59\x02\xd9\x4d\x44\x95\xf3\x27\x17\xc6\x1c\x40\xcd\x9d\xca\xb2\x6a\x1a\x06\x7d\x5e\xde\xac\x18\x4d\xc9\x98\x89\x70\xa5\xb2\x66\x9a\x25\xa1\x31\x3a\xde\x83\xb5\x35\xb6\x42\xd5\x8b\x26\x52\x6c\x60\x65\x5d\x44\xb4\xc2\xc1\xcb\x3a\x4b\xf9\x40\xe0\x25\x98\x99\xac\x00\x06\x58\x0e\xbb\xb5\xb6\x86\xeb\x6b\xd0\xdb\xb4\x4d\xdf\xeb\xe2\xb3\xdb\x35\x1d\x16\x36\x8d\x13\x24\x6b\xc0\x4c\x48\x20\x43\x59\x51\x59\x6f\xd1\x1f\x66\x0f\x37\x63\x9e\x8d\x79\x42\xce\x70\x68\xf6\x83\xfd\x01\x04\xc2\xb9\x5e\x1b\x5a\x85\x89\xfd\x2c\x38\xdb\x7c\x22\x03\xae\x82\x33\x8f\x43\x9e\x4d\x20\x42\x6b\x55\xc6\xf0\xc6\x3d\x3a\x87\x9a\x17\x5b\xe6\x31\xc3\xe3\xcf\x27\xb1\x41\xc2\x89\x97\x92\xce\x24\x62\x5a\x64\x8d\x2a\x05\x11\x2c\x3a\x93\x69\x36\x6f\x4b\x77\x1a\xa9\x2e\xb2\xcd\x8d\x49\xd4\x4b\x65\xd5\x3e\x90\x93\xba\x2a\x04\x2a\xb8\x37\x48\x85\xf1\xea\xa4\x41\x34\x0a\xb9\xe6\xf4\x15\x09\xee\xc6\xaa\xc0\x28\x7e\x5f\xc9\x76\xf0\x01\xca\x15\xa8\xf7\xa7\x29\x56\x94\xa3\xc2\x97\x29\x57\x17\x06\x18\xf8\xda\x2c\xf2\x9f\xcf\x24\x0b\x40\x7c\x45\x0f\x7a\x43\xe9\xad\x2c\x65\x1c\x31\x75\xce\x1a\xcc\xc4\xab\x66\x7b\x97\x9b\x5d\x5c\x56\xab\xb1\x1f\x4f\x20\xf8\xf7\x4f\xcc\x0f\x13\xee\x0f\xe6\x8a\xf3\xd4\x68\x06\xce\xfe\x2c\x95\xc3\xd6\xad\x0e\xa7\x98\xec\x49\x93\x56\x39\x3b\x1f\xcf\xac\x0f\xee\x5f\x7a\x4d\xd2\x67\xcd\x5c\x92\x0c\x31\x61\x31\xd0\xba\x8d\xe5\x95\xbf\xd0\xe1\x8e\x69\xdb\x24\x0b\xf1\xde\x55\x9c\xd1\xec\xb0\x16\x97\x85\x71\x2d\xb4\x0e\xda\x89\x46\x21\x3f\xdb\x75\xe5\x25\x73\x2b\x2b\x4b\x09\xb3\xb6\xba\x34\x76\x20\x0c\xf1\x11\x18\xfc\x23\xb0\x22\xc7\xa8\x66\x7e\x44\x19\x90\x40\x1f\xcf\xfc\xd4\xb0\xe4\x9c\x1b\xe8\x9d\xfc\x52\x3c\x96\xa2\x9a\x19\x42\x0c\x07\x43\x30\x9b\x29\xa1\x3a\xba\xef\xa7\xbc\xaa\x21\x21\x1e\x3f\xb0\x2a\xa9\x06\x29\x5a\x97\x68\xdc\xb8\xb6\xa6\x86\x21\x63\x14\x44\x97\x16\xb6\x37\x00\x64\x3c\x95\x86\x0c\xc0\x22\x92\x75\x6d\xb8\x82\xf2\x2a\x2b\x2e\x36\xd7\xa7\x72\x96\x54\x66\x21\x36\xb3\x6e\x75\xa8\x3c\x48\x1c\xc6\xfc\xf3\xb9\x69\xfd\x9f\xe1\x30\xeb\x9e\x7e\x27\xb0\xfd\xe7\x1b\x13\x58\x88\x06\x31\x21\x1f\xb0\xf7\x6a\x19\xef\x51\xae\x2c\xb6\xed\xbd\x5c\xe8\x7b\x43\xa2\x31\x24\x67\xa5\xee\x2a\x22\x21\xfc\x45\x17\xb3\xbb\x0a\xf3\x6e\x74\xbb\xc4\xf0\xc2\xf7\x75\xf4\x91\x5d\x05\xf2\x42\xfc\x53\x81\x4f\x3f\x79\x10\x92\x67\x1e\xcf\x98\xfc\x44\x88\x0f\x8c\xa2\xd5\xdc\x7c\xf2\x45\xe0\x88\xa3\x05\x1d\xf1\x5e\x6c\xfb\xfb\x9c\xc1\x81\xfc\xef\xae\x1b\x2d\xb8\x4f\xd6\x71\x31\x45\x24\xba\xc5\x97\x19\x4a\x2a\xe3\x47\xd8\x2a\x83\xb2\x50\x83\x13\xa1\xb7\x80\x7c\xd8\xd6\x15\xa5\x49\xf9\x84\x30\xaa\xbe\xe2\xdb\x0b\x66\xa5\x8c\xa2\x14\xd6\xa3\x8b\xbe\x2d\x1f\x45\x55\x40\x01\xc0\x25\x75\xc3\x96\x1b\x36\x7e\x75\xbb\xc6\x87\x9a\x35\x3e\x48\x93\x15\xc5\x03\x7e\xa1\x5d\xd5\x68\x7e\xf5\x02\x93\x81\x32\x45\xe4\x11\xff\xbc\x36\xfd\x17\xd4\x3d\x9d\xa6\xe7\xb2\xf0\x82\xb6\xca\x75\x00\x72\xab\x55\x0a\xbc\x06\x0d\x07\xbf\xee\xea\x5e\x74\x2d\xba\x80\x51\x59\x49\x4d\xa6\x04\xc9\xdf\xc2\x00\x29\x75\x74\x20\x29\xd5\x91\x86\x17\x35\x65\xb4\x6a\x86\xad\xf1\xf0\xab\xd6\xd2\xcd\xdc\x38\xbe\x77\xb6\x0f\x69\xa1\xcc\xed\x5e\xef\x50\x64\x2c\x3e\x5b\xf2\x06\x8f\xc3\xe1\xb0\xec\xd6\xa9\xa8\x8d\xc1\x13\xb8\xc0\x20\xcb\x60\x0e\x0b\xa7\x2d\x79\x4a\xbb\xb0\xeb\xda\xa7\xfe\x25\x56\x58\xe5\x22\x13\xe8\xa2\x5b\x5d\x50\x0f\x1e\x36\x87\x32\xc2\xdb\xb4\x94\xe6\xd3\xdb\xfe\x13\x10\xfe\xf2\x2b\xf5\xfa\x93\x74\x02\x49\x05\x87\x09\xf1\xb8\xb7\x0a\x5a\x82\x0b\x47\x8f\x93\x85\xd8\xa0\x00\x6d\xfe\x87\xa1\x81\x47\xe4\x1e\x50\x60\xa5\xcf\x86\x83\x6c\xf6\xe7\x03\x41\xa1\xe9\x2f\x58\x5c\xf1\x3e\xcb\xb9\xff\xf1\xd5\x3d\xe4\xb6\xfc\x49\xc6\xdc\x16\x90\x14\xb7\x21\x4e\x8a\xd6\x70\x28\xf5\x85\xc7\x4a\x92\xdb\xa1\xe7\x3e\x35\x21\x46\x16\xde\x40\xa1\xcc\x22\xf1\x1c\x27\x71\x18\x22\x22\x35\x7e\x95\xe3\x84\x5d\x07\x7d\x0e\x89\x73\xfc\x4a\x95\x09\xc0\x93\x29\x69\x38\x47\x21\x49\x14\x5b\x21\x07\x10\xf5\x0a\xd8\x67\x63\x1e\x89\x5f\xe2\x85\x1f\xb0\x38\xe2\x2c\x06\x3d\xd7\xac\x97\xf2\xdf\x66\x62\x7f\xc9\x5b\xaa\xf4\x55\x4e\xd0\xca\x02\xe8\xfc\x31\xe0\xd8\xa0\xb1\x40\x55\x08\x1c\xb5\x5e\xbf\x00\x2a\x1a\x72\x82\x5e\x8b\x27\x41\x26\x38\xb6\x20\x7b\x28\x60\xf2\x61\xa4\xfc\xc1\x60\x9f\xfb\x83\x20\x1a\x9d\x84\x7e\x6a\xd9\x73\x18\x02\xce\x6a\x7f\xec\x27\xcd\xac\xfc\xa4\x52\x64\x27\x80\x3f\x91\xc4\x2c\x1a\xa0\x45\x71\x65\xcb\x32\xc0\xac\x19\x71\x44\xc9\xdf\x57\x64\xa9\x12\xbe\x59\x9c\xaf\x94\x68\x98\xdc\xa1\x62\xfe\x4c\xe1\x3a\xaa\x58\xdd\x75\xe9\xce\xd7\x59\x8e\x55\xed\x5a\xda\x37\x35\x75\xf1\xe4\x4d\xbf\xca\xe4\x05\x1b\xd1\x43\x5b\xa8\x85\x13\x53\xfa\xa1\xdc\xf4\x54\xa2\x45\x51\xb7\x02\xc7\xf8\xc9\x57\x01\x52\x7e\x24\x71\x84\xb2\x04\x06\x92\xc9\xc0\x16\x00\x07\x29\xdf\xb3\xe3\x7d\xd7\xb9\xce\xce\x7f\xa3\x65\x1d\xae\x46\x5d\x95\xd4\x0d\xd7\x74\x4b\x7d\xea\xee\x86\x9f\x05\xfd\x97\x10\x54\x2f\x29\xa3\xb6\xf5\x75\x2e\xd7\xca\x1f\x22\x30\x16\x08\x81\xc8\xa9\xe5\x9f\x14\x0e\xf4\x47\x74\xfc\x56\x82\x1f\x8f\x99\x93\xc9\x0b\x81\x16\xdc\xbc\x28\x8e\xa7\x62\x92\xc5\xb2\xc7\x2c\x9e\x6e\x84\xfc\x9a\x87\x86\x1f\x4c\x97\x12\x9d\x77\x57\x95\xd8\x49\xf0\xfa\x1b\x7d\x1f\xd0\x49\x8f\xf7\x7d\xf1\x90\x05\x19\x74\xd6\xf7\xa3\x52\xc6\xfc\x7e\x36\x03\x84\xa1\x73\xd1\xc9\xc0\x78\x7a\xfb\xd9\x1e\xda\x97\x7b\x02\x95\x7c\x98\xa5\x02\x7f\xf4\xe3\x04\x12\x9a\x3d\xd6\x1b\x25\x9d\x5e\xc1\xda\x40\xfa\x66\x93\x63\x13\x3b\x4b\xf9\x70\x16\xb2\x89\x1f\x44\x21\x64\x3a\xcc\x78\x8a\xb6\x52\xd1\x00\xba\x49\x79\x72\xcd\x93\x0d\x6d\xb4\x90\xf6\x79\xe4\x27\x41\x9c\xba\xb2\x53\x13\xbe\x5f\x41\x84\x6a\x76\xf7\x00\x49\xaa\x59\xfd\xff\xb8\xeb\x8e\xd1\x35\x45\xb3\x3c\x42\x3b\xa8\xa5\x9e\xb5\x56\x10\x4c\xb2\xf6\xe2\xa7\x71\x59\x23\xa2\xee\xea\xd1\xd9\xc9\x4b\xcd\x3f\xdd\x15\x8e\x75\xac\x82\xc5\xfe\xe1\xe1\x8e\x3b\x47\xfb\xcd\x76\xe7\xbe\x11\xf7\xa5\x3b\x71\x01\x16\xd1\x7c\x65\xac\x82\x4d\x15\xf7\xd2\x0a\x63\x3b\x72\xf3\x43\x3b\x79\x90\xbb\x93\x79\x3c\x17\x49\xe4\x35\x14\xcc\x69\x14\xc2\xc6\xb7\x83\xe8\x3c\x30\xe2\xaf\x51\xe5\x91\x7c\xc0\x1c\x59\xa6\x7a\x2e\x75\xab\xe2\x9a\x46\x07\x76\x50\x42\x0c\x47\x58\x50\xd1\x8c\xbd\xa5\x2c\xc8\x6c\x91\xab\x69\x3c\x26\x65\x45\xbe\x0c\x74\x84\x7f\x38\xa5\x86\x50\xbe\x98\x64\x71\x6c\xc7\xb4\x19\x90\xd3\x11\x2a\x2b\xf5\xf3\x98\x0b\x75\xfb\x65\x1e\x0e\xce\xce\x3c\x7d\xc0\xd6\x3c\x5d\xb0\x37\x4f\x1f\xbe\x39\x4f\x1f\xbc\x3b\x4f\x8b\xb6\xc7\x2a\x2f\xdc\xab\xa7\x55\xdb\x5e\x6d\xe1\xa6\x1a\xed\xcd\x89\x7c\xbc\x73\xa7\x91\xef\xcf\x2a\x76\x95\x2f\x72\x1a\x05\x8a\x84\x05\x55\x1f\x59\x34\x8d\x01\x92\x5a\x1e\x26\x05\xbd\x7e\x6e\xf4\xea\xa7\x10\x4b\x52\x02\x97\x22\x44\x92\x5f\xb4\x13\xad\xed\xa2\x62\x29\xdf\xb5\x2d\xa6\xf6\x22\x57\x21\x93\xeb\x6e\xc4\x18\x88\xa3\x6c\x59\x2b\x18\x38\x69\x11\xd5\xca\xd6\x8d\x93\x0e\x8d\x8b\xec\xf1\xf0\xc2\x09\x46\xe1\xe8\xf0\xc8\x08\x3e\xa2\x45\x61\x8b\x48\xed\x85\x97\xce\xb2\xcc\x95\x9e\x98\xea\x89\x32\x02\x76\x52\x34\xde\xfc\xbb\xa2\xea\x8c\xe2\xba\x43\x5c\x76\x57\x47\x71\x77\xb5\x62\xd4\x68\xf9\xfd\xab\xa2\x5a\xe2\xbb\x5d\xf3\x45\x9c\xdc\xf8\xc9\xa0\xa8\x32\x15\x99\xf5\x31\x92\x80\x35\x3d\x7c\x84\x54\x0d\x70\x32\xb1\x2a\xc0\xfb\xd2\x35\x74\xe4\x0f\xf2\x5e\x5d\x16\xe6\x5a\x39\xb4\xba\x86\xba\x8e\x77\xba\x95\x2d\x59\x86\x9e\x76\xa4\xd5\xe6\xfb\xf4\x35\x85\xd6\xee\xbb\xf7\xf9\xc9\x4b\x16\xf9\xd8\x2f\x93\xcb\x7e\x9e\xd1\xa3\x09\x8e\xe2\x77\xfa\xaf\x77\x4d\xb5\x98\x95\xbf\xca\x35\xd5\xa2\xe0\xff\x78\xae\x27\xcd\x33\x88\x79\x0f\x83\x24\xcd\x94\x2a\x1e\x62\x02\xa0\x19\x4b\x6a\x47\x00\x40\x0d\xf7\xd7\x60\x20\xa0\xa3\x87\xb0\x0e\x50\xf1\x4f\xb3\xc2\xc0\xee\xff\x36\xc3\xd0\xc6\x0b\xff\x71\x3b\x0c\x92\xfe\x79\x78\x02\xd1\x34\x1f\x5c\x44\x5d\xcb\xa3\x61\x9c\x74\xfc\xfe\xd8\xbc\x2e\x4e\x8d\x2c\x46\x26\xb1\x52\x1d\x06\xd1\xa0\x5c\xe9\x6a\xc5\x3e\x04\x82\x92\xec\x3d\xd5\x13\x4f\x72\x8a\x46\x78\x59\xcc\xfc\x30\x44\x19\xbc\x96\x47\xfa\xd1\x80\xdd\x70\x36\x88\xd1\xd6\xcb\x8f\x32\xa3\xc7\x2c\x66\x59\x12\x8c\x46\xe2\x7a\x46\x6c\x86\xce\x75\xb5\x84\xa3\xaf\xaf\xb8\x73\xd9\x4d\x2c\xef\x58\x8a\x97\x8c\x0e\x98\x94\x7f\x1b\xbd\x69\x81\xbb\x9f\xb1\x41\x30\x1c\x72\x90\x2f\x9c\x1d\xef\xa7\x86\xb1\x41\x31\x44\xca\x97\x05\x6a\x09\xeb\x7c\x89\x6f\x39\x33\x7d\x32\x80\xa1\x3c\xca\x6b\x6b\xd4\xbb\xad\x2b\xa4\xb6\x8e\x56\x5f\x6a\xaf\xc9\xbc\xc0\xd2\x57\x1b\xfa\x7e\x28\x34\xad\x5d\xc4\x71\x30\xbe\x0d\x93\x78\x62\xb5\x95\x36\x39\x0f\x32\x8d\xb1\x8c\x5c\x74\xaf\x9e\x6b\x80\xa0\xad\x0c\xcd\xef\x77\x95\x05\x06\x35\xaa\x42\xd7\x34\x7c\xb1\x48\x39\xa9\xcc\xa6\xdb\x1e\xc6\x91\xba\xec\xea\x34\x3f\xd4\xd4\xc6\x32\x2b\xca\x99\xdc\x90\x76\x7b\xa9\x72\x1b\x6f\xf2\x57\x25\x14\x14\x96\xfc\xcc\xa8\x3d\x8b\x15\xb3\xd6\xbb\xee\x20\xe1\xff\x4a\xc5\x8d\xc4\x8f\x7f\x6b\x6e\xfe\x08\x74\xfe\x3b\x55\x37\x3a\x01\x06\x51\x49\xe3\x60\x34\xe6\xc9\x46\x9c\x08\xec\xac\x51\xb1\x78\x15\xfa\x02\x94\x18\x5f\x70\x32\x05\xe7\xd5\x6b\x2e\xa8\xaa\xbc\x5b\xe5\x4d\x90\xc9\xec\x94\x2e\x35\x24\x70\x62\xdb\x3c\xd3\xed\x82\x18\x8f\x98\x85\x63\xa0\xda\x62\x3a\x28\xdc\x92\x82\x32\x8b\x1f\x9e\xf8\x81\xd8\xc8\x23\x69\x8c\xb7\x94\x33\xd6\x19\x9d\x0a\xba\xb5\x58\xe0\x07\x87\xff\x5f\x1e\xa7\x1f\xd4\xbc\x6a\x90\xbc\xd3\xd8\x92\x61\x0c\x49\xab\xc3\x7e\x99\x4b\xf6\x58\xc1\x10\xce\x43\x00\x0c\x7b\xd1\x82\x23\xe3\x49\xc8\x59\xa3\xd8\x18\xb7\xed\x44\x64\xed\xae\x1a\x9b\x8e\xc6\x63\x9a\x44\x35\xab\x7e\xfa\xc4\x74\x81\x54\xa2\x75\x57\x2b\xe4\x81\xdc\xae\xbe\x75\x26\xc6\x1a\xba\x81\xe1\x44\xf4\xb9\x46\x78\xed\x22\x24\xce\x8a\xc0\xe0\xda\xb4\x98\xdc\xb1\xed\x64\x64\x46\xee\x2d\xb7\x3d\x66\x3d\x37\x5f\xe8\x7c\x67\x58\x38\x62\x02\x5a\xaa\xaa\x2c\xf9\x8c\x35\x81\xf3\x7b\x18\xf7\xfc\x90\x35\xa8\xb6\xe1\xad\x70\x45\x2e\x6a\x97\x97\x60\xfe\x79\x89\x89\xdd\x2f\x7b\xb3\x20\x1c\x5c\x5e\xaa\xb4\x56\xa0\x4e\x14\xdf\x5e\x53\x1e\x1f\x7d\x90\x3f\xa4\x75\xd6\x5d\x6d\xc7\x93\x49\x1c\xfd\x7c\x62\xc8\x5a\x78\x3a\x11\x25\x9d\x13\x86\xe1\xba\x53\x33\x2e\xec\x64\x20\xca\xce\x0e\x76\xcc\x10\xaf\xf8\x97\x58\x1c\x4e\xf8\x1c\x34\x11\x6b\x6b\xcc\xfc\x89\x2b\xe5\xe9\xc4\x32\x9e\xc4\xdc\x4e\x80\xf0\x5a\x72\x9e\xac\x61\xcc\xf9\xdc\xe8\xe3\xc2\x4e\x05\xc1\xfb\x71\x34\xf0\x93\xf9\x82\x86\x34\xd8\x05\xc6\x73\x85\xa0\xca\xcd\xc1\x80\x85\x41\x74\x05\x28\x2f\xc9\x82\x7e\xc8\x91\x62\xe5\xb7\xd3\xd0\x0f\x22\xd0\x58\x0d\x78\xe6\x07\x21\x1b\xc7\x37\x50\x4d\x60\x56\x83\x82\x0d\x63\x10\x6e\xb1\xa7\x06\xf9\x0a\x83\x9a\x04\xac\x1b\x38\x1e\x79\x13\x3f\xe1\xaa\xb9\xc0\xb4\x70\x93\x0a\x56\x21\xae\x0c\xf6\xa9\x88\x7f\xc9\x17\x4b\x3b\x4e\x78\x0a\xa6\xfe\x88\xa6\x1f\xa4\xca\x3a\x3b\x99\x45\x91\x35\x40\x0e\xba\xd0\xbd\xb4\xde\x84\x61\xc0\x0e\x18\x12\x2e\xa6\xec\x26\x8e\x4a\x19\xbb\x89\x93\x2b\x96\x04\xa3\x71\x56\x35\x54\x21\x72\x81\xe6\xb6\xaa\x4d\x95\x57\xc8\xce\x36\x60\x47\xc3\xc3\xd0\x15\x9e\x72\x42\xf5\x18\xe1\x57\x59\xc1\xd6\xc0\x49\x76\xda\xf4\x82\xf6\x34\xb9\xec\x19\x6f\x91\x32\x00\x67\x7e\xca\x9c\xa4\x7a\x32\x93\x41\xad\xc6\xbe\xab\x6e\x56\x37\xd9\x69\x7c\x94\x04\x13\xb0\x61\x2b\x07\xd1\x74\x96\xb1\x73\x31\x37\x3e\xe4\x49\xc2\x07\x02\x39\x5c\x54\x50\x32\x10\xa4\x87\xf0\xc4\x80\x63\x12\x38\xa9\x96\x4b\xd5\xda\x65\x90\x6e\xe0\xd3\x03\x31\xa4\x6b\x35\x93\x59\x13\x80\xef\x9c\x7c\xcb\xd2\x29\xef\xc3\xa3\x0f\xda\x13\xc1\x5f\x05\x03\x01\xda\x60\x32\x25\xb6\xe2\x5f\xff\xca\xf4\x44\xc0\xe0\x1a\xfa\x22\xb2\x88\x4e\x86\x62\xfb\xd9\x06\x1b\x86\xfe\x88\x6d\x40\x4a\x05\x98\x29\xa8\xce\x31\x4a\x31\xa9\xcb\x97\x45\xd8\x0f\x32\x8f\x9d\x98\x96\x08\x72\x71\xe5\x20\xab\x28\x2b\x81\x20\x53\x76\x08\xc3\x08\xf2\x10\x28\x73\x83\x13\xb0\x92\x42\xf4\x55\x1e\x0a\x66\x38\xc8\x54\x94\xfd\x8a\x60\xb1\x4a\x72\xb4\x12\x99\x95\xd1\x00\xd7\x80\xc4\x86\x11\xc6\x70\x12\xc3\xa9\xf1\xcc\x01\xdc\xbe\xc1\x3c\xf7\x70\xf8\x35\xba\x5e\xf9\x53\x27\x8f\xf7\x5d\x1c\x1c\x79\xdf\xdb\xa0\x53\xef\xc7\xd1\x35\x4f\xa4\xea\x5b\xa0\x93\xa9\xda\x6f\x4c\xb0\xb0\x6a\x64\x26\xa0\xf3\xf9\x0d\x3b\x8d\xf7\xa2\x8c\x8f\x78\x42\x7e\xcd\x3c\x08\x65\x32\x05\xf1\x37\xb9\x3b\x0f\xc3\x18\xa2\xa2\xc0\x77\xf8\xb1\x3c\xc3\x42\xe0\xa4\xed\x0d\xd2\xd7\xfe\xeb\x32\xc4\x73\x59\x17\x65\xdb\xec\x09\xab\x8b\x6a\xec\x27\xf4\x7a\x84\xfe\xeb\x30\x7c\x45\xb4\x76\x66\xfa\xb4\xba\xc9\xc8\x73\x1b\x21\xd5\x8e\x79\xd2\x0f\x7a\x21\x2f\xcb\x33\x5b\x79\xd8\x84\x20\x53\x47\xc6\x6c\xcb\xfc\x85\x30\xf5\xc3\x50\x86\x78\x88\x23\x46\x48\x2e\xb3\x5c\x2d\x83\x6c\x49\xd2\x8a\x8f\x7a\x11\x9b\x3f\x54\x37\xab\x4f\xab\x4f\x59\x8d\x6d\x3e\xaf\x3e\xad\x3e\xab\x3e\x67\xb8\x16\xa2\xcf\xca\x87\x88\x1a\x24\x65\x29\xf1\x82\x1f\x15\xe2\x05\x3f\x32\xf1\x82\xa8\x38\x38\x4a\x9d\x3a\x58\x61\x63\x30\x4d\x55\x25\x1e\xcd\x26\xad\xd9\xe8\x15\xfa\x49\x9a\x95\x45\xc9\x46\x6f\x36\xda\xb8\xe2\x73\x5d\x7f\xaf\x73\x79\x74\x7c\x78\x7a\xe8\x54\x4e\xc7\x7e\xc2\x07\xa2\x6a\xa9\x52\x2e\xc9\x4a\xaa\x15\x98\x78\xba\x42\x64\x56\x7b\x4c\x2e\x23\x8f\x6b\x4c\xfa\xd8\x43\xbb\xd3\x77\x47\x1d\x86\x29\x5d\x90\x7f\x55\x09\x0a\xda\x00\x1a\x79\xa8\xc1\xd2\x65\xe8\x5f\x71\xb2\xf0\x67\xaa\x41\x1d\xc4\x5b\xc1\x30\x11\xaf\xce\xa1\x51\xbb\x1f\x72\x31\x53\x5d\xd3\xcc\x56\xb0\x83\xce\xc0\x39\x51\x37\x04\x65\x4f\xfc\x54\xa0\x7d\x3f\xcd\x38\xc6\x2e\x8f\x07\xf1\x64\x5e\x67\x7b\x1d\xb6\xdb\x66\xbd\xd9\x48\xe2\x2e\x1a\xd5\x06\xd0\x20\x9e\x6c\xe0\x20\x02\x40\x58\xa5\x64\xe4\x98\x64\x0d\x73\x2b\xc8\x3a\x43\x15\x83\x53\x7c\xe9\xc7\x92\x0e\x4d\x04\x1f\x7e\xd2\x1f\xb0\xc7\x9d\xb8\x0f\x87\x9f\x70\x4f\x02\xd6\x52\xd9\x3c\xe4\x92\x54\x16\xad\xa2\x38\xe2\x25\x3a\xb2\x7a\x82\xe3\x6c\x12\x96\x2a\x55\x41\xb5\x46\x03\x90\x7f\x95\xb1\x83\x8a\xd5\x59\xd2\x17\x5d\x7c\xf0\xaf\xfd\xb4\x9f\x04\xd3\xac\x5e\x5a\x96\x92\x16\xeb\x6c\xcc\x92\x90\xc0\x68\xc1\x99\xfa\x84\xd7\x33\xca\xde\x02\x9d\x59\xc5\xcd\xda\xa2\xfa\x62\x56\xd5\x84\x4f\xe2\x6b\xbe\x68\x4e\x72\xcd\x8b\x3a\x1c\xe4\x61\x22\x9b\x54\xe3\xa9\x8a\x90\xed\x94\xdc\x24\x41\xc6\xcb\x61\xc6\xd6\x59\x09\x57\x51\x62\xeb\x02\xec\xeb\xac\x24\x7b\xac\xbe\x68\xe0\x6c\x45\x11\x56\xad\x99\x75\x0b\x3b\xee\x87\xb1\x8a\x01\x56\x00\x0d\x55\xef\x05\xd4\xb8\x19\x07\x21\x67\xe5\x60\x63\xa3\xc2\x06\x3c\xe4\x19\x37\x1a\x9d\xab\xcb\x72\x71\x6e\x1c\x9e\xf3\x80\xa8\x55\x19\xda\x4a\x35\x28\x57\x54\xe6\x8a\x1c\x6a\xb2\x70\x8f\xe0\xa6\x1c\xcd\x6b\xf9\xd0\x44\x46\x06\xd7\x6d\xc4\x4f\x10\xc8\xf4\x10\xa8\x6d\x70\x18\x91\xa4\x36\xdc\x7e\x63\xb2\xac\xa1\x90\x58\xf9\x50\x87\xd1\xa5\xd8\x0f\x40\xba\x8a\x16\x2a\x50\x5a\x41\x7b\x43\x64\x27\xc8\x96\xc1\x00\xf8\x11\xb8\xd4\x82\x05\x01\xe1\x30\xad\x68\xc4\x05\xb3\x8a\x97\xfd\x70\xc8\xa6\x71\x38\x1f\x06\x61\x68\x8e\x7a\x2e\x11\x96\xe8\xfa\x10\xa9\x49\x8c\x85\xaf\x66\xe5\x00\x51\x01\x57\x83\x24\x97\x20\x88\xda\xd6\x05\x22\x2e\xe3\x0f\x0b\x84\xd6\x9b\x46\xcf\xc1\xe6\x37\xfa\x3d\xd8\xfc\x46\x2e\x41\x60\xe0\xf2\x21\xe1\xff\x47\x57\x79\x5c\x4d\x88\x5d\x94\x6c\x04\x51\xc6\x93\xc8\x0f\xbf\x08\xc5\x2f\x3e\x18\x30\xaa\x79\x2c\x68\x52\xd6\xbb\xfe\x08\x3f\x7a\xe6\x98\xc6\x3a\x81\x75\x82\x97\xa2\xf0\xf9\x10\x98\xd1\x7a\x6c\x66\x81\x5b\x71\x16\x0c\x4a\x9f\x9b\xcd\x09\x3b\x47\x96\xe1\xd3\x27\x56\x36\x7f\x37\xc4\x18\xd0\xc4\x99\x66\x3f\x4e\x5c\x14\x2e\x3e\xa9\xa9\x29\xf6\xd8\xac\x81\x1f\x55\x9d\x93\x97\xcd\xe3\xce\x8e\xc0\x97\x97\xd0\x78\xe3\x43\x4a\x2b\xbd\xbc\x94\x39\xca\x20\x50\x38\x6b\x48\xbe\x06\x9b\xe0\x3c\x9d\x4f\x32\x3e\x4b\x37\x2a\x2f\x5f\x7d\x61\x06\x2f\x18\xc7\x80\x81\xfe\x49\xce\xef\x70\x6d\xcd\xe3\x8b\x5f\xeb\x34\xea\x5d\xa5\x5c\x22\x8e\x22\x2d\x79\xec\xfc\xa2\x02\x31\xad\x30\x19\x02\x15\xd4\x01\x6a\x55\xc9\x78\x88\x92\x49\x3c\xe0\x75\x0b\x46\x61\xd0\x4b\xfc\x64\x5e\x12\x44\x5f\x69\x3a\x4b\x78\x89\xd5\x59\x89\x20\x07\x6d\xfa\xf1\x74\x0e\xfc\x5f\x9d\x95\xfe\xff\xff\x3f\xf6\xf4\xc9\xe6\x0f\x6c\x87\x47\x41\xca\x8e\x66\xe9\xf8\xca\x4f\xf8\x35\x2b\xff\x1e\xc6\x41\x12\xf7\xaf\xaa\xc9\xac\x52\x12\xd3\x53\x37\x69\xaf\xc3\xbe\xdf\x60\x03\xe0\x25\xc5\x31\x14\x4f\x33\x85\x8b\xc9\xc1\xad\x2c\xc6\x2b\x19\x39\x51\xbc\xb1\x9f\x1e\xde\x44\x74\x4b\xe7\x1e\x24\x71\x93\xb8\xc3\x9b\xd2\xe7\xbd\xb4\xa3\x32\xa1\x79\x59\xbc\x1f\xf7\xfd\x90\x23\x39\xef\x49\xba\xde\x23\x0e\xa2\xd4\x8d\x2a\xd5\x74\x1a\x06\x59\xb9\xe4\x95\x2a\xfa\x84\x0d\x40\xf8\x58\x48\x9e\x95\x2a\xd5\x21\x9d\x8f\xb1\xef\x5e\xda\xb1\xaf\x2f\xc8\x69\x73\xd7\x29\xbd\xb9\x4a\xc5\x35\x92\xb3\x38\xf5\x47\x8b\xee\xb5\xcd\x9d\x65\xfe\xc8\x03\x4b\x0a\x9b\x2e\x16\xdc\xc8\xd8\x4f\x91\x54\x17\xc5\x6c\x9b\x05\x02\xa7\x05\x99\xd6\x2e\x78\x62\x1e\x15\xf1\x40\x0d\xa1\xaf\xd3\xe6\xae\xc7\x3e\x3a\xd9\xe0\xb2\x64\xc6\x3d\xe9\xf5\x98\xf9\x23\x32\xd7\xb6\xd9\xe3\x67\xec\x34\xa6\x87\xc1\xa0\xe3\x09\x5a\x70\x2e\x1d\xaa\x0a\xbf\xde\x87\x12\x5c\xf6\x83\x86\xa0\xd6\xc0\x57\xe9\xb9\x50\x07\x55\x77\x77\x00\xb2\x7a\xfb\x1e\x82\x00\xee\x43\x22\xfb\x7b\xad\xe3\xe6\xf1\x3b\xa7\x8a\xba\x21\x54\xeb\xe6\x2a\xed\xdc\xba\xe4\xfe\xcd\x55\xba\xc1\x6f\x0d\x62\x1f\xd6\x22\xcf\xed\x3d\x07\x6b\x09\xa8\x9c\x2c\x5c\x8f\x30\x13\x1e\x84\x77\x49\x78\x95\x7e\x41\x00\x29\xe3\x77\x43\xad\x84\x6c\xdd\x10\x0e\x46\x75\x33\xb4\x14\xd8\xf0\x6b\x5f\x8d\x15\x81\x1f\x91\xef\x85\x22\x16\x44\x72\x58\x3c\x53\xc6\xba\xca\x54\xe0\x31\xd4\x50\x7e\x94\x07\x0a\x61\x54\x1d\xd2\xfc\xef\x16\xec\xe7\xc7\xbb\x6a\xd1\x1d\x36\x2b\xaa\xc4\x89\x0a\x26\x4a\x2a\x2e\x0d\x2f\x64\xa6\x38\xf5\x36\xfa\x69\x1a\x8c\x22\xeb\x75\x2c\x63\x12\x75\x45\x03\x29\x43\x6c\x41\xe9\x6f\x6e\xb1\x80\xfd\x98\x33\xc6\xde\x62\x81\x65\x5a\x0d\xef\x43\x3c\x4b\xc0\xbc\x58\x9b\x56\x07\x17\x86\x8b\xb9\xea\xf7\x8a\x83\x41\x3b\xd6\xcf\x69\xa2\x69\xa2\x5a\x21\x68\xe3\x39\x94\x2f\x60\x5b\x08\x9a\xe2\xaa\xa3\x71\x35\xf2\xc1\xc0\x8a\xe7\x86\x89\x37\x73\xbc\xa3\x59\x41\x88\x3d\xec\xa3\x48\xbf\x2a\x21\xba\xc0\xe6\x44\xec\xe5\xaa\xb7\x6a\x44\x55\x69\xf6\xd2\x38\x9c\x65\xdc\xcd\x30\x66\x78\x03\x39\xa7\x0c\x52\x84\xd6\x4a\x4a\x3f\x55\x63\xcd\x5e\x3c\xcb\xd8\x66\xf5\xf9\x2d\x1b\x42\xd2\x67\x96\x8d\x7d\xf4\x9c\xcb\x6e\xe2\x0d\x3f\x19\xc9\x77\x8d\xc5\x43\xb4\x8d\xff\x87\xc0\xe3\x7d\x5e\xae\x98\x1e\x1f\xf0\xe9\x30\xe2\xe5\x30\x48\x33\x3b\xd8\x8c\xb5\xe9\x50\xe0\xb1\x2b\xf1\x27\x5b\x67\x9b\x1e\x83\x34\x4a\x41\x9a\xa9\xed\xbf\x62\x3f\xb2\x48\x9c\x8d\xf5\x86\x28\xbf\x82\x7f\xd5\x4e\x88\xaa\xe7\xc1\x05\x35\x3a\xbf\xb2\xf2\xd7\x43\x3f\xd3\x78\x5a\xae\x18\x4b\xc4\x4c\x62\x52\xe8\x47\x31\x15\x53\xb0\x42\x1b\xb0\x31\xf7\xaf\x83\x10\x32\xcb\x45\xf1\x80\x97\x52\x36\x4b\xc2\xea\xd4\x4f\x52\x6e\x2c\x2f\xe1\x69\x1c\x5e\x83\xf8\x13\xac\x1e\xb3\xd8\x03\xbd\xa3\xf1\x4c\x80\x1a\xd2\x89\x6d\x80\xdf\x58\xa9\x64\xe4\xf4\xce\xe2\x23\x9f\x9e\xdd\x2c\x06\x91\x58\x2c\x1f\xc6\x5a\x09\x4d\xfa\x8d\xf0\x71\xa2\x07\x55\x1f\xba\x5b\x5b\x83\x8f\x85\x6d\x14\x1b\x9c\x9e\xc6\xcd\x1e\xd8\x0e\xc1\x10\xc6\x51\xc9\x62\x83\xdd\x4e\x5f\x24\xf1\x04\x2b\xca\xbe\x8d\xaa\xb0\x40\x55\x79\x32\x4b\xb3\x4e\x34\xc0\xda\x72\x80\x4f\x9f\x74\x27\x86\xf6\xa8\x68\x54\xb5\x81\x68\xd2\x12\xa4\xcc\xa7\x52\x42\x0d\xc6\x4a\x09\x46\x26\x0b\x82\xdd\xc2\x67\xe9\xed\x94\xeb\x30\xe1\x21\xa8\x4d\x3d\x36\x48\xe2\x29\x19\xa0\x85\x3c\x52\x16\x30\x6a\x0c\x75\x46\xdc\x91\x75\x0d\x72\xb4\xa0\x31\x2b\x6e\x2c\xb9\x15\x5d\x53\x4e\x47\xa6\x4d\xad\x99\xdb\x3d\xf6\xd3\xd3\xc4\x0f\x42\x69\x8e\xbb\x65\x9e\x97\xc2\xe5\x80\xa4\xc3\x07\xc3\x63\x55\xe7\xdc\xad\xcd\x36\xd8\xa6\xc4\x3a\xee\x10\xe2\x6a\x40\x7b\x71\xd9\xab\x25\xb1\x49\xc6\x6f\xf7\x43\xc9\x84\xf2\xc7\x85\x3d\xea\xdc\x70\x86\xb9\xdb\x6c\x4a\x51\x1e\x9d\x4b\xee\xce\x56\x5c\xe6\x9f\xc0\x8b\x06\x58\x78\x63\xa1\x53\x3f\xb1\x17\x6a\xa0\x75\x8a\x93\xac\x16\x62\x20\x63\x8d\x6e\x54\x4b\x8f\x05\x4a\x4d\xa2\x8f\x8c\xd1\xfe\x33\x3a\x60\x6c\x36\xa5\xb8\x87\x56\x6f\xb3\xe9\x67\x75\xb1\xb1\xa1\xf5\x36\xf6\xe1\xd1\x97\xa9\x82\x90\xdb\xc2\xea\x4c\x8c\xa0\xa1\x37\x8b\xd2\x71\x30\xcc\xca\x30\x79\xe3\x7e\x61\xaf\xc6\x8d\x5c\x5b\x73\x8e\xf2\xf9\x13\xd4\xf7\x95\x4a\xaa\xcc\x38\xb2\xa2\xf4\xd3\x27\xb6\xe2\x5c\x76\x59\x56\x01\x83\xb6\x8a\x7b\x67\xd4\x6c\xd4\x5c\xac\x68\x95\xba\xe2\x87\x38\x88\x00\x33\x19\x53\xce\x1d\xa9\xb5\x35\x6a\x2a\x1d\x19\x37\x36\xd1\x5f\x52\x34\x94\xbd\xae\x37\x8c\xeb\x54\x10\x7b\x32\x97\xe7\xd9\x41\xd4\x48\xd2\x28\x34\x4e\xcc\x48\x39\xee\x7d\xb0\x9f\xca\xb8\xf7\x41\xea\x3a\xd8\xb6\xf9\xab\x5c\x61\x75\x96\x23\x1b\xa8\x10\xe9\x05\xd1\x59\xce\x63\x10\x6a\x60\x48\x5a\xdf\x63\x3d\x43\x82\xca\x53\x34\xda\xa3\x10\x8b\x5c\xd4\x09\xb2\x39\x9a\xca\x56\x25\xb8\x7c\x38\xb4\x3d\x85\x54\x8c\x64\x7d\xb5\x1a\x3b\xcc\xc6\x3c\xb9\x09\x52\xee\x89\xca\x3c\xc0\x48\x71\xa0\xf9\x9a\x28\x43\x3b\x48\x32\xe9\x27\x1c\x6c\x65\x60\x18\xab\x77\xac\xf4\xe9\x13\xeb\x31\x25\xa9\x92\x8e\x99\x74\xd7\x65\x75\x3b\xec\x90\x5f\x71\x8d\x66\xcb\xf2\xc8\xdb\x15\x7b\x15\x75\xf6\x18\xf3\xcd\xc0\x44\x3d\xf9\xc3\x2c\xe7\xd7\x3c\x99\xab\xd0\x75\xe5\x20\xe3\x93\xa2\xa0\x75\x5a\xf1\x23\x01\x8c\x35\x7b\x14\xb6\xce\x30\xad\xa0\x13\x9c\xc3\xdd\xa4\x84\x42\x18\x97\x48\x5f\x00\x26\xbd\x58\xd0\xb3\x0a\x2c\x7c\xe5\xff\x1b\xe4\x01\x0d\x75\x94\x7c\x33\x82\x61\xcf\x2d\xed\x55\x2c\x6c\x46\xad\xc5\x29\xf7\x01\xf4\xfa\x77\xaf\x52\xb0\x32\xac\xef\x51\xbd\x9c\xb9\x8c\x25\x17\x33\x69\x70\xb0\x5c\x81\x73\x57\x71\xc1\xaa\xe5\x42\xc5\xc0\xf4\x81\x9e\x15\xe0\x14\xff\xba\xd1\x6e\xac\x8b\x28\x8f\x49\xd1\x3d\xd4\x3d\x5a\x39\xbf\xff\x48\x7a\x69\xe7\x6a\xab\xbc\xd2\xf0\x75\x43\x12\xbb\x46\x03\x3d\x07\xaa\x0b\x1f\x36\xe0\x2a\x7c\x6e\x2e\xef\xfb\x93\x6d\xff\x51\x47\xfd\x52\xad\xa4\xdd\xf4\xc5\x0f\xd3\x49\xdf\xf6\x73\xff\x23\x9d\x4b\x6c\xbb\x29\x10\x5b\xc1\x00\x63\x3f\x55\xbe\x3d\x94\xef\x00\x13\xf3\xe7\x87\xc8\xe2\xfd\xf8\x86\x27\x6d\xc8\xe6\xa1\x1c\xdf\xb1\xba\x5d\x48\xd1\x1b\x05\xce\x2f\xd5\xb6\xff\x51\xd2\x95\x8d\xa9\x52\x43\xa2\x86\xf0\x2d\xd8\xd8\x2c\x5a\xff\x03\x26\xb8\x78\x19\x36\x18\xec\x41\x8b\x41\x02\x63\x5a\x8f\xd7\x3d\x40\x87\xbf\x35\x9d\x96\xdf\x02\x60\x9f\x9e\x78\x6c\x63\xd1\x2e\x00\xff\xe1\x26\xed\x90\x06\xcf\xe4\xfa\x27\x0d\x9d\xf1\x81\x94\x16\x39\x7e\x02\x86\xcd\x25\xfd\x6d\x8c\x04\x9c\xf3\x05\x92\xc3\x19\xa1\x56\xd5\x96\x94\xfe\xe1\xbe\xdb\x54\x17\xf7\xa3\x62\xd0\x88\x63\xb3\x3d\x01\x54\xd5\x97\xa8\xc3\x99\xb1\x59\xf7\x89\xc7\x9c\xea\x06\x6d\x89\x4b\x59\x3c\xcd\x6d\x6b\x9a\x66\x6d\x67\xa2\x0a\x26\xee\xf0\x46\x9b\x87\x4d\x36\xd7\xc0\xc6\x87\xb9\x98\x0d\xca\x86\xdc\x9c\x48\x5d\x4d\x48\x1c\x8a\x6d\x71\x28\x4a\x25\x26\xbf\x7a\x1a\xb8\x75\x02\xb1\xa8\xf6\x0f\x55\x4d\x7c\xeb\x6a\x1b\x53\x47\x3d\x65\xc7\x65\x28\x3c\x36\x79\x0b\x77\x45\xd0\x4a\x40\xa9\x2a\xd6\x9c\xd4\x96\xab\xe2\xb1\xe4\x67\x0c\x53\x7c\x35\x92\x71\x32\xf5\x06\x09\x0c\x40\x7f\xad\xe0\xf2\x2b\x14\xed\xae\x41\xdf\x5d\xc4\x05\x00\xa2\x26\x75\xd6\x5d\xdd\x26\x9b\x2d\xf1\x61\xcb\x3c\xa4\xa2\x6b\xf8\x77\x05\x01\xa6\x3b\x16\x5f\xdd\x6e\x01\xa0\x50\x5d\x74\xfa\x0f\xe8\x54\x2d\xc7\xb8\xd2\x0b\x62\x69\x28\x2f\x47\xc4\x2d\x90\x3e\x97\xc2\xec\x52\xc4\x86\xfd\xfc\x26\x18\x5e\x29\x0e\x25\xa2\xc2\x0c\x97\xd0\x8a\xa8\x64\xf2\xb6\xa7\x24\x86\x19\xc6\xc9\xa4\x0e\x3e\x94\xe6\xa8\x44\xe3\x18\xfe\x31\x0e\xee\xd8\xb2\x2b\xa8\xa4\xec\xf0\x6f\x01\xef\x27\xc8\xcb\x88\xbb\x23\xaa\x33\x95\x1b\xce\xb2\x96\x35\x47\x2c\x8c\x8f\xe2\x4a\x48\x0a\x2a\x68\x71\x89\xd3\x07\x6e\xba\x13\x85\xce\x29\xb5\x24\xaa\x74\xc0\x9c\x2a\x0c\x4f\xd5\xba\xfb\xdd\x66\xf7\xd4\x20\x05\xad\x4b\xae\x39\x9e\x35\x11\x71\x8c\x16\x4d\xd2\x39\x8a\xea\xa8\x5a\x15\x18\x9e\xcf\xf5\x82\x8b\xb6\x64\x7a\x36\x9a\x77\x26\x87\x9b\x6e\xeb\xb6\xd6\xd6\x72\x87\x62\xc1\xde\x14\x1c\x19\xec\x3c\x4b\xe6\x4a\x2c\x57\xb0\x91\x03\xde\x8f\x07\xfc\xec\x78\x2f\x7f\x0e\x08\x7f\xb2\x3e\x78\xb8\x94\xb9\x15\x76\x9d\x83\x35\x9f\x1f\xf5\xc5\xdd\x38\x3b\xde\x03\xf3\x23\x03\xa4\xda\xb8\x53\x16\x96\x4b\x8a\x2c\xec\xae\x96\x8a\xe2\x06\xb1\x75\x56\xea\xae\xb2\xbe\xf2\x1e\xe8\x71\x9a\xdf\xa0\xca\x44\x8b\x12\x8a\x09\x53\x16\x06\x57\x3c\x9c\x33\xf0\xe0\x1a\xb0\xde\x9c\xf9\x11\x90\x7f\x10\x94\x90\x27\x7d\x1e\x65\x1b\x3c\xea\xc7\x82\x04\xab\x96\x2a\x0b\xf6\x05\xe7\xc8\x17\x08\x00\x80\x0a\x57\x73\x44\x53\xe2\x2b\x3e\x37\xb3\x38\x14\xa2\x11\xb8\x9e\xc7\x48\xf2\xb2\x20\xea\xc7\x93\x69\xc8\x33\x5e\x93\x92\x2f\x8d\x7e\xd5\x97\x2c\xce\x07\x91\xd1\xa0\x5e\xc9\xef\x4c\xc1\xd9\x32\xf6\xd4\x99\x97\x2a\xca\x0b\x4b\xf2\x11\x8b\x9c\x83\x5f\x2b\xdd\x33\x96\x2b\x75\x2d\x70\xce\x5a\x34\x9d\x8a\x05\x78\x17\xc1\x41\x4a\x9e\x0c\x5c\xf5\x20\x6e\x24\x9b\x26\x41\x6c\x38\x19\x62\x62\x30\x9a\x47\x90\xa2\x7d\x96\x07\xd9\x79\x02\x30\x22\xac\xfd\x01\x08\xca\x57\xd1\x3e\x15\xf9\x10\x51\xe6\xeb\x9e\x4f\x74\x63\x48\x15\xa4\xdf\xbf\x8d\x64\x7b\xfa\xe7\xda\x1a\xf3\xab\x06\xd5\xd1\xab\xea\xd7\xd8\xaf\x2a\x2a\xa3\x57\x95\xef\xa8\x8f\x47\x12\xbe\x89\xbf\xd6\xd6\x2c\x16\xb1\x4a\xef\x5d\x0f\xff\x58\x14\x70\xea\x34\xf1\x21\x4e\x65\x1c\x1d\xf8\x91\x3f\xd2\xee\xad\x14\x42\x7a\x32\xcd\xb4\x0d\x4b\xd7\x74\xce\x4d\xc1\x58\x65\x32\xcd\xca\x11\xbf\xa5\x3f\xff\x80\x4f\x96\x1c\xab\x41\x0e\xb1\xa5\xa6\x72\xa8\x4e\x67\x53\xd4\xfe\xc5\x11\x28\x01\xb8\x9c\x98\x9f\x31\x9f\x09\xae\xb4\xd0\xed\x89\xa6\xae\x26\x67\xfb\xf6\x17\x46\x93\x21\x5f\x05\x9c\x88\xd9\xb6\x92\x83\x05\x73\x1d\x22\x8c\xd8\xac\x90\xad\x59\x43\xb6\x20\x40\x8c\x57\x94\xda\xd9\x03\xab\xcd\x9e\xdf\xbf\xb2\x48\x0b\xb0\xc9\xdf\x1b\x32\x3f\x8a\x41\x86\x94\xa9\x8e\x05\xb2\x17\x70\x41\xd3\xab\x1b\x5e\x4a\x38\x4b\xb3\x20\x0c\xe5\x1c\xc0\xd8\x99\x19\x99\x14\x12\x7e\x1d\xc4\x33\x01\x49\xee\x61\xbe\x82\x39\xe3\xd1\x80\xcd\xa6\x18\x85\xea\x86\x07\xc9\x00\xdf\x90\x2a\x7b\x11\x8c\x66\x09\x67\xf1\x0c\xf2\x5d\xa9\x8e\x7a\x3c\x15\x0c\xf9\x5c\xdc\x31\x8c\xa0\x80\xd1\x14\xf4\x75\x23\x58\xad\x38\xc6\x55\x8e\x2c\x52\xd2\x55\x1a\xde\x86\x6d\xf1\x36\x7d\x2f\x08\xad\x53\xa7\xa2\xad\xc2\x98\xd8\xb2\xfb\x22\x42\xcd\xa9\x5a\xb0\x05\xce\x34\x1c\xd5\x62\x41\x03\x65\x2d\xa5\xb6\xce\x54\x33\x3a\xef\xcd\x97\xdd\x0c\xf2\xdc\x36\x2e\x44\xc4\xf9\x20\x65\x7e\xe1\x02\xb4\xea\x31\x62\xe8\xc2\x96\xc9\x48\x04\x04\x69\xca\x6d\x99\xbf\x33\xf8\x9f\x5c\x48\x39\x4b\x66\x0b\x72\x8b\xe6\x96\x05\x0f\x9e\x96\x37\xc9\x04\x8e\xc6\x49\x1d\xc7\x31\xf8\x93\xf4\x05\xc5\x10\xa2\xea\x52\x95\x56\x75\x4f\x6a\x74\xda\x47\x01\x19\x23\xec\x9b\x31\x0f\x77\x16\x85\xf3\xbe\x73\x18\x56\x8c\x0f\xc2\x13\x95\x00\xca\xba\xb9\x68\x51\xba\x4f\x75\xca\x43\x3b\x8e\x53\x90\x36\xfb\x94\x0a\xc7\x90\xf4\x1a\xcd\x65\xe7\x2e\x46\x91\x0d\x2b\x6c\x18\x91\xde\x18\xe1\xee\x68\x8e\x2d\x8a\x50\xcd\x14\x8d\x97\xe4\xcf\xca\x43\xb0\x98\x9e\xa8\xd6\x08\x59\x7d\x92\x62\x16\xfb\x1f\x06\x61\x26\x56\x6b\xd8\xa0\xf0\x49\x91\x38\x57\x7c\x87\x0d\x91\x6d\x0d\x29\xee\x52\x8c\x18\xc5\x59\x30\x9c\x4b\xb8\xa6\xe5\xbc\xa9\xc1\x7f\x45\xcc\x37\x03\x24\xe4\x4b\x6f\x04\x4a\x93\xf0\xcf\xc9\x65\x65\x49\x7e\x67\xd3\xa5\x92\x59\x25\xf9\xa0\x27\xa6\xae\xff\xd4\x11\x56\xdc\x87\xa4\x5e\xf4\x91\xaa\xdb\xa7\xb7\xee\xfc\xa6\x4a\xce\x56\xd4\xdd\x0f\xdd\x7c\x72\xb9\xe8\x2c\xe5\x3b\x87\x07\xac\xc1\x56\x56\x0a\xfc\xf2\x4a\x8a\x1b\x01\xcb\x98\x1b\xdb\x94\xb9\xe0\x93\xed\xd4\x29\x40\x63\x64\x72\xcd\x2c\xe4\x2a\x53\x77\xbb\x0f\xa3\xba\xeb\xd4\x35\x01\x45\x65\x44\xae\x2c\xb3\xf4\xf6\x43\x9e\x64\x56\x8e\x1a\xc4\x5d\x29\x66\xf7\x0e\xd0\x39\xe9\xe5\xe9\xc1\xfe\x73\x85\x71\x9b\x47\x7b\x82\xc6\x24\x4a\x44\xb0\x23\xa7\xfe\x15\x8f\x10\xd1\x1d\xc4\x03\x9e\x44\xc1\xef\x09\xc4\x4b\x81\x1e\xc7\x59\x36\x4d\xeb\xb5\xda\x28\xc8\xc6\xb3\x5e\xb5\x1f\x4f\x6a\xaa\x96\xf1\x57\x2f\x8c\x7b\xb5\x09\x98\x74\xd4\xf6\xf7\xda\x9d\xd7\x27\x9d\x2f\x6d\x3e\xe4\x7e\x36\x4b\xf8\xc6\x80\x67\xbc\x9f\xa5\x35\x99\xbf\xf3\x03\x06\x9d\x44\x3f\xec\x81\xf2\xd5\x23\x44\x1d\xf1\x11\x70\x20\x29\x5c\x45\x34\x43\x4f\xd9\xd1\x38\x8e\x78\x5a\x2f\x9a\x06\xf8\x51\x7e\x48\xf1\xdf\x0d\xf4\xa7\xac\x05\x69\x3a\xe3\x69\xed\xf9\xf7\xdf\xe6\x1d\xa1\x25\xf1\xf6\x12\xe7\x63\x92\x97\x33\x5f\xf9\x6c\xca\x10\x7b\x71\x52\x9d\xa5\x3c\x69\x8e\xb4\x15\x3c\x2b\x97\x67\xbe\x16\x29\x36\xa3\x41\x22\xe6\xff\xb4\x5a\x92\xe2\x67\xf6\xe9\x13\x2b\xaa\xf2\x4d\xf5\x89\xaa\x03\x81\xb9\xcd\x4a\x07\x71\x4f\x10\x4d\x27\xfe\xd0\x4f\x02\xdd\x95\x53\xab\x3d\x4e\x62\x20\x2f\x1b\x85\xc5\x16\xc0\x54\xad\x9c\x8e\x4e\xdd\x79\x5a\xac\x3c\x55\x6b\x6b\xac\x24\xb0\xfb\x89\xa0\xb7\x4a\xe2\xc5\xb6\x2b\x6c\x2d\x3d\xa5\xbd\x24\xbe\x49\x79\xc2\x86\x41\xc2\x53\x36\x8d\xa7\x28\x02\x40\xfd\xc0\x98\x76\x1c\x8e\x24\xdb\xeb\x6c\x3e\x01\x86\x69\xaf\xb3\xb9\x49\x21\x4c\x0a\x72\x01\xcb\xbd\x3a\x8a\xa7\x30\xa5\xc3\xe8\xa5\x9f\x8e\xdb\xd0\x51\xd9\x66\x64\x16\x6f\x9b\x86\xce\x69\x12\x0c\x78\x94\x29\xb8\x14\x2f\x07\x0f\x62\x30\x64\xb3\x34\x88\x46\x6c\x14\x97\xa3\x0a\x3a\xc0\xc0\x32\x24\xac\x80\xd5\x17\x44\xcf\x70\x16\x86\xe8\xd4\x99\xf0\x30\xf6\x07\x4b\xd6\xb1\x1b\x93\xd3\xfb\x31\xd4\x3c\x13\x03\x88\x15\x7d\xc1\x5a\x5e\x04\x09\x1f\xc6\xb7\xf7\xac\x45\x6e\x8d\xcf\x46\xc1\x35\x8f\xf4\xa6\xf0\x6b\x81\x0b\x03\xcc\x3d\x73\x2b\x28\x1f\x2e\xc8\xf0\xb7\xbc\xf7\x2a\xc8\xb0\x14\x77\xaa\xd9\x87\x9c\x5a\x78\x1f\xc1\x38\xc6\xef\x67\xe8\xbe\x8a\x67\x51\xec\x6f\x70\x78\x42\xbb\x9e\x70\x3f\x74\x46\xa1\xfb\x1e\x47\x19\xfa\xc4\x1b\xd2\x24\xac\x75\x83\xc1\x24\x78\x9a\x4a\x0f\x58\x81\x4a\x59\x6f\x96\x65\x48\x8a\x39\xd0\x0c\xd2\x8e\x9a\xf1\x11\x0d\xd5\xb9\x86\xf8\x26\xd7\x3a\xaa\x01\xc1\x12\x97\x52\x20\xaa\x12\x87\x7d\x29\x84\xdb\x49\x70\x78\xe2\xc0\x97\x1c\xad\xe8\x38\xc2\xa0\xe0\x6c\x45\xb3\x90\x96\xe9\xfa\x94\xaa\x2a\xe2\xec\xe0\x0d\x70\xf4\x7e\x23\x9e\x11\x2a\x82\x3e\xe5\x51\x30\xa4\x64\x85\x77\x95\x96\x04\xf6\xa1\x8b\xc4\x62\x68\xd1\xbd\xb9\xc9\xd2\x78\xc2\x05\x5b\x9a\xa2\x84\x29\x45\x90\x63\xf4\x08\x01\xf3\xa2\xae\x55\x17\x27\x9c\x17\x21\x5e\x70\x70\x3e\x4d\x70\x4f\x25\x76\xaf\x4d\x67\x61\x58\x7b\xfa\xfd\x0f\xd6\xcc\x75\x52\x4d\xe3\x88\xa2\x3b\x9a\xb8\x40\xf2\x46\x49\x77\x4b\x71\xb6\xe0\x6e\x2d\x78\xf6\xa2\x7e\x38\x1b\x20\x27\xf9\x98\x29\x74\xe5\xc9\x58\x80\xf4\x4b\xfa\xe3\xda\x87\xb1\x30\x7f\x28\xbe\xff\x2d\x44\x5f\xf2\x5d\x30\x43\x60\xa8\xcc\x25\x85\xb9\xd7\x29\xac\x85\x9d\x3a\x74\x45\xd3\x29\x7f\x28\x3e\x56\x89\xa6\x95\xe3\xb5\x76\x0e\x0f\x4a\xf7\x87\xc2\xd2\xe6\xd6\x2f\x55\xb0\xc8\x1c\x4e\x97\x39\x74\xc5\x84\x75\xb5\xdc\x43\xa9\x6a\xc2\x14\xf4\x19\x97\xb4\x9a\x20\xc8\x96\x63\x6c\xd5\xc3\xa5\x04\x9a\x1d\xdd\x14\x3f\x3f\x1a\xc6\x49\x9f\x1f\xf3\x61\xc2\x31\x29\x3b\xc5\x63\x32\xbe\xaa\x16\x85\x55\x9d\x0e\x0a\x73\x82\xe6\x2b\xba\xb3\xb0\x99\x59\x3d\x8f\x22\x41\x89\x6c\x5a\xc8\xc1\x2f\xea\xd0\x9c\x97\x43\x68\xea\x19\xda\x8d\xdc\x39\x5e\xf1\xf9\x3e\x59\xc8\xc8\xe9\xa9\x4f\xaa\x6e\xbe\x92\xd9\xce\x9c\xc5\xb7\x7a\x5c\x55\x43\xed\x99\x11\x40\xd6\x8e\x00\xcc\xb6\x8b\xb4\xdd\x39\x7b\x06\xab\x0d\xc4\xb7\x52\x3a\x1b\x13\x19\xee\x1c\x1e\x28\x45\xd9\xd8\x40\x8c\x76\x94\xbb\x04\x3c\x40\xcc\x72\x44\x85\x76\xfe\x52\x99\xea\xff\x8a\xbb\xb9\xe9\xb9\x2c\x92\xea\x09\xa3\x6f\xbc\x1f\x66\x20\x59\xba\x31\x05\x01\xb2\x0c\x11\xad\xdb\x2e\xaf\x2b\x35\xb4\xa5\xb9\xca\x8e\xd6\x54\xe9\x4d\x73\x15\x0d\xb5\x4e\x91\x06\x55\xaa\x39\x4d\xd5\xe4\x17\x05\x5d\x52\xbb\xfb\xe9\x53\x81\x61\x84\xda\x47\x8f\x95\x64\x90\x0c\x3f\xcb\xf8\x64\x0a\x31\xe1\x95\x88\x47\xf5\xa2\x43\x5f\xdc\x8c\xe3\x94\xab\xf4\xce\x6c\x10\xf3\x94\x74\x2b\xa3\x20\x42\xad\x0a\x50\x5b\x48\x08\x60\xf3\x2a\xeb\xdc\x4e\x79\x3f\xe3\x28\x62\x27\x7d\x0d\xa5\x3c\x2b\x75\x57\xc5\x80\xd8\x1e\x9a\x62\xb1\x11\xc3\xb6\xd4\x5d\x2d\x08\x45\x25\xd0\xba\xce\xeb\x40\x90\x2c\x32\x16\xb1\x73\x38\x38\xde\xa1\x0b\xd5\xba\x95\x62\x69\x2c\x34\x7a\xc5\xe7\xb9\x30\x92\x10\x11\x20\xf1\xa3\x41\x3c\x29\x57\x54\x90\x83\xf2\xb3\x6f\x2b\xd2\x9c\xe0\xa9\xa7\x2f\x73\xce\xf6\x21\x73\x25\xe7\xca\xf5\xb2\x40\xa6\x5e\x20\x3c\x47\xf2\x23\xe2\xb7\x99\x7d\xdf\x94\xae\x56\x45\x0c\xd5\x75\xd4\xc5\x91\xa4\x83\xb4\xd7\xb3\x1f\x1d\xd3\x27\x9b\xe5\x27\x5a\x75\xe5\x31\xaa\x37\x25\x6b\x95\x5f\x48\xe6\x5a\x08\x59\x0a\x0f\x4c\x2f\x8f\x45\x0c\x22\x2d\x04\xb1\x51\x4d\x72\xd7\x21\x54\x05\xc3\x83\x14\xb0\x21\x3b\xbe\x8f\xda\x94\xcc\x95\xb2\xab\xa6\x49\x94\x1d\x5c\x66\x10\xa2\x95\x65\xf3\xcf\x73\x38\x4b\x3a\xcd\x11\x8f\x95\xdc\xb1\x80\x27\xee\x35\xbf\xcd\x8e\xe2\xa9\x21\x80\x2b\x86\x5c\x3e\xfe\x3e\x58\x9d\x1b\x5d\x18\xf2\xa6\x05\x3d\x4b\x4c\x47\x07\x6a\x91\xae\x13\x0c\x23\x65\xc4\xf6\xd2\xd1\xe1\x51\x49\xb5\xcd\x1f\x90\x3f\xa0\xc2\xd0\x22\xb3\xf8\x2a\x27\x78\x77\x3e\x19\xd3\x76\xc2\x34\xca\x08\xd7\x34\x94\x5d\x98\x0f\xa1\x68\x96\xdf\xdd\x27\x81\x4f\xf8\x35\x4f\x32\x0b\xfa\x85\x52\xee\x22\x19\xb2\xe1\x6c\x22\x3b\x19\x26\xf1\x24\xa7\x01\x46\x27\x92\x7d\xfd\xa4\xb9\x57\xcc\x08\xb7\xf4\x96\x93\xc6\x7b\x9a\xc4\x3d\xbf\x17\xce\xd9\xc4\xbf\x42\x9d\x0a\x9b\x88\x1b\x94\xf0\x30\xf0\x7b\x21\x57\xd9\x49\x6b\x35\x76\xc5\xf9\x14\x53\x28\x87\x41\x9a\xb1\x78\x88\xa1\x4b\x6f\x78\xe9\x9a\xb3\x94\x73\x90\xff\xa7\x82\xdf\x88\xa3\x93\x2c\x4e\x7c\x14\x05\xd0\xcd\x94\xe9\x49\x6e\x38\xa6\x27\x91\x16\xa1\x59\xcc\x9e\x00\xe7\x49\x9d\x91\x6f\xea\x55\x14\xdf\x54\xcd\x37\x3b\x8b\xa5\xcd\x97\x1f\x86\x10\x05\x42\xb2\x71\x7a\xd1\x55\x85\x92\xa5\xbf\x09\xb5\x21\x19\x89\xee\xe3\x89\xf1\xbe\x0a\x68\x2e\xea\xdb\x84\xb4\xdb\xbb\xd1\x8e\xfa\x37\x7b\x32\x47\x18\xf0\x30\xf3\xc1\x7f\x05\x4b\x37\x74\x4d\xcb\xa4\x05\xea\x2d\xbe\x7e\xa4\x02\xc0\xb2\x51\x4c\xd5\x17\xa8\x1d\x28\xba\x94\x71\x1e\xee\x45\x2c\x8a\x0e\x24\x28\xb0\x06\x3b\x77\xba\xa9\x82\x10\x1b\xb2\xdb\x62\xe4\x42\xf0\xa7\x1f\xfa\x7d\x5e\xf8\x06\x42\x40\xfa\x1c\xc2\xa1\xc7\x30\x17\x80\x3e\x97\x3d\x28\x7f\x07\x72\x66\x4e\x7f\x28\x22\xa7\x6b\x65\x25\x4d\xbe\xd7\xd6\xc8\x20\xb3\xd8\x3c\xa6\xe0\xb3\x24\x92\x28\x0c\x25\xca\x3b\x31\x98\x24\x5e\x99\xa7\x91\x94\x85\xa8\xb0\x51\x59\x0c\xcb\x41\x4e\x5d\x90\x42\x9b\x69\x86\xc4\x91\xaa\x02\x11\xa4\x24\x44\x36\xc2\xe0\x8a\x5b\x2c\xb4\x0c\x2d\x36\xf6\x53\x32\xc2\x61\x01\x34\xa2\xcc\x75\x79\x7a\xc8\x41\xc9\x67\x27\x2f\x4b\x46\x89\x41\x0f\x2f\x23\x7c\x0c\xfa\xc6\xcb\x61\x99\xca\x42\x12\xe0\xeb\x63\x78\xb0\xb3\x10\x5f\xac\xf7\x99\x8c\x59\x91\x7f\x28\x3a\x87\x56\x3d\xe4\x21\x4c\x9b\x1b\x0b\xf5\x4b\x4e\xc2\x36\x7a\x72\xf4\xc0\x16\x5f\x6d\x3d\x37\x36\x8d\xa4\x24\x19\xf6\xdb\x73\xc5\xe7\x90\xa7\x3f\x3f\x30\xa6\x20\xe0\xc6\x53\x21\x83\x77\x8b\xe5\x55\x72\xc9\x94\x4d\x66\xd7\x79\xf6\x1c\x06\xa7\x4a\xf0\x11\xff\xdc\xf3\x78\xa1\x59\x06\xbf\x5e\x84\x23\xdd\x13\x60\xe2\x49\xdd\x83\xa0\x28\x09\xa9\xc8\x0e\x94\xbd\xb3\xee\x7d\x9d\x6d\xda\x4d\x65\xb3\xaa\x65\x6e\x98\x1f\x42\xa3\x2c\xd9\x62\xeb\x2f\x7d\xf4\xbb\x0b\x15\xd5\x9f\x8f\x99\x0a\x44\x99\x05\x52\x22\x4a\x69\x06\x28\x04\x5b\x04\x91\x14\xd0\x53\xb8\x6f\x0a\x1c\x4e\x12\x1b\x5b\xd0\x56\xac\x8b\x7f\xc8\x29\x71\x42\x93\xe6\xa8\x14\x10\xd1\xfd\x3f\x84\xa4\x69\x45\xff\x41\x3c\x4d\xb9\xaf\xfe\x46\xd5\x7f\x1d\xaa\x36\x25\xcd\xff\x05\xd8\x5a\xde\x2a\xd9\x91\x1a\xe1\x4f\xc1\xd7\x28\x0c\x97\x3d\x48\x6d\x26\xf5\x73\xae\x4a\x2e\x9c\xdd\xf8\x3f\x82\x71\x25\x3e\xf8\xd3\x90\x6e\xf1\x66\x2f\x47\xbb\xa8\xc3\x24\x20\xd8\x47\x19\x8a\x16\x34\x6a\xf9\xfd\x2b\x2d\x84\x18\xc5\xe5\x8d\xcd\x45\x55\x29\xf5\x91\x55\x7b\x33\x27\x8b\x90\xa6\x29\x6d\x4a\x8c\xf3\xc4\x15\x44\xf4\xc7\xbc\x7f\x25\xf8\x10\x25\x0a\xb2\xb9\x1e\xbb\x83\xf5\x06\x32\x4f\xb6\xe5\xbf\x3d\x46\xa3\xc1\x40\x4b\x4e\x5c\x56\xc3\x8c\x0a\xa1\x80\xeb\x0f\x06\x20\xd2\x51\x96\x56\x96\x86\xcf\x73\x24\x4b\x1a\xea\x10\x92\xa5\x58\x19\x52\x59\xd8\xb7\xa3\x1c\xf4\x72\x72\x9f\x02\x8f\xf4\xfc\xa2\x9e\xe4\x57\x81\xb1\xfe\xfe\xb4\x85\x14\x75\xff\xf0\xb5\xb8\x0c\x68\x0a\x59\xae\x20\x2a\x51\xa1\x48\x0a\xd2\x62\x91\xe1\xa6\x25\x8c\x32\xcc\x33\x1d\x45\x9c\x61\x64\x6b\xca\xa2\xee\x4c\x41\xc1\x2c\xea\x51\xf6\xc6\xfc\xbb\xa6\x0d\x88\x69\x58\xeb\x5c\xad\xa8\x29\x1b\x03\xe6\xcf\xab\x41\xa1\x9a\x6b\x34\xb8\x73\x37\xb6\xcb\x42\xc3\xdf\xa2\x01\x59\x21\xe4\x64\x59\x7e\x3a\x1b\x9b\x16\x8e\x90\x7f\xd2\xd0\x04\x8d\xf2\x72\x6b\x39\x3c\x7c\x79\x8b\x33\x84\x67\x28\x73\x6a\xe6\x01\xea\x98\x2f\xba\x26\x83\x4b\x80\xb7\x0c\x34\xcb\x17\x29\x27\x54\xbc\xa6\xc2\xac\x79\x28\x9c\xae\x17\x8a\xac\xa5\x29\x1b\xbd\x4b\x20\xa7\xcc\xa5\x13\x71\xc4\x20\xd2\x5a\xce\x48\xc5\xa7\xff\xa6\x42\xcc\x6a\x37\xd5\xa9\xec\x54\x22\xbb\xc4\xca\x5e\x37\x8a\xeb\x6c\x14\xab\x1f\x98\xa6\x0e\xff\x55\x1f\x55\x46\x3a\xf5\x27\x15\x51\x6a\x39\xf8\xc7\x33\x11\x68\x9d\xfe\xed\x46\x12\x3e\xd2\x03\xd6\xb4\xf3\x29\xb4\x65\x78\xb4\x99\xb7\x66\x90\xd5\x8e\xfc\x6c\xdc\x8e\x07\x68\xcf\x09\xc0\x15\xf5\x7a\x7e\x34\xaa\x4b\x58\x83\x0f\x0c\xc8\x72\x8c\x54\x0c\xfa\xa3\x9b\x9f\x70\x89\x73\xf2\x8a\xe9\xf9\xbc\x02\xae\xcf\x0b\xfc\x9c\xe5\x41\x20\x10\xa0\x03\x8f\x33\x05\xfd\xf1\x4b\xa6\x50\xe4\x1f\xad\xb1\x1e\x8c\x1b\xc5\x69\x08\xfe\x99\x05\x80\xc8\xcd\xbb\x60\xa6\x8e\x3a\x55\x77\xbc\xb8\x5b\xa7\xc9\x03\x3b\x95\x51\x4e\x6d\x4f\x66\xb0\x52\x9a\x25\xa1\x61\x2d\x67\x3a\x04\xcf\x92\xd0\xf5\x05\x36\xbd\xaa\xc7\xa6\x24\x94\x6d\x8b\xea\xac\x0e\x8d\x14\x97\x6f\xf9\xf4\xde\xe5\x2c\x64\xe8\x74\x19\x51\x85\xdf\x72\xca\x80\x3d\x4b\x79\x9e\x33\x05\x4b\x2d\x33\xab\x56\x90\x95\x40\xcd\x48\xad\xfb\x71\x94\xc2\x15\xc8\x98\xdf\x4f\xe2\x34\xd5\x74\xda\x06\x23\xdb\x2a\x76\x13\x84\xa1\x20\x96\x37\x10\x66\x2c\xc8\x56\xd4\xe2\x91\x2b\x29\xe2\x88\x0b\x3d\xa6\x45\xc1\xe7\x40\x08\xdd\x76\x41\x41\x0d\x47\x4b\xd0\xa1\xba\x1a\x09\x42\x6c\x30\x09\x64\xa2\xe0\x64\x1c\xe2\x42\xd8\x34\x8a\x1d\x55\x09\xf9\x3c\xa4\x1b\x49\x87\xea\xe3\x51\x04\x8c\x8a\xe0\x84\xff\x21\x95\xb5\x8b\x9c\x7e\x44\xf3\xff\x36\xbb\x9b\x97\xa6\xb1\xdf\x9f\x69\x74\xe3\x18\x05\x1a\x96\x37\x8b\xcd\x05\x1f\x68\x48\xf3\xbf\xc1\x84\x45\x1c\xc7\xd3\xf9\x94\xeb\xd9\xc9\x2f\x96\x0b\xb9\x55\xc5\x68\x64\xce\xa0\x04\xb8\xb0\xa4\x47\x96\xd5\xfe\x6c\x1b\x16\xda\x0b\xfb\x0d\xc4\xd1\x59\xc3\x79\x1a\xcf\xe5\xa4\x2e\x74\xea\x16\x85\xb4\xc5\x0a\x8b\x7a\xa9\xea\x2a\xaa\x95\x46\xe4\x0b\x5b\xe9\x2a\xf7\x18\xda\x38\xe1\xb5\xa0\x4b\xe3\x49\xb4\x30\x70\xe5\x6f\x9b\x92\xbf\xd6\xa6\xe4\x6f\x4b\x8f\xfb\xcd\x19\x88\xab\x04\x89\x29\x5d\x89\x22\x1f\xd1\x9c\x4b\xec\xa3\x47\x9b\xa6\x57\xec\xd7\xf6\x8b\xfd\x4c\x3b\x0f\xe3\xf6\x59\x57\xce\x10\xed\x22\x22\x18\xd0\x1a\x5d\xca\xd9\x09\x83\x97\x61\x60\x0b\xa3\x8d\x41\xd8\xd6\x6a\xac\x13\xa5\xb3\x84\xb3\x1b\xce\xfc\xf0\xc6\x9f\xa7\x6c\xec\x5f\x93\x63\xde\x94\x27\xe1\x7c\x83\x5a\x62\x34\x0c\x4d\x11\xdb\x44\x82\xd9\xfd\x12\x63\x8f\x70\xa1\xb2\xd9\x16\xe4\x4e\x13\x7e\xbd\xcc\x50\xc1\x64\x91\x57\xac\xe3\x60\x04\x27\xb0\x36\xd8\xec\xd1\x63\x3a\xc7\xb8\x14\x37\x0b\x50\x34\x99\xe6\x69\x00\x7f\x08\xd2\x92\xa0\xd2\xd0\x92\x4c\xed\xc5\x60\x71\xea\xc6\xb9\x6b\x34\x0a\x15\xd6\xd6\x60\x64\x89\x04\x16\x15\xd8\xe1\x16\x6e\x02\x6a\x02\xe4\x15\x65\x01\x52\x75\x35\x82\xb8\x39\x6a\xc1\x49\x97\x8f\x65\xce\x96\x67\x99\xdd\xc8\xdf\xa6\x3f\xf2\xbf\xbf\x4d\x7f\xbe\x9a\xe9\x8f\xc0\x3c\x5f\xcf\xf6\x47\xf6\xf6\x20\xe3\x1f\x71\x25\xd2\x6a\xe8\xa7\xd9\x1e\x71\x5b\xc6\x6d\xd4\x60\xa8\xfc\x61\x4b\xa0\xa5\x03\x59\x1b\xf1\xdf\x6e\x16\x64\xbc\x04\x90\x36\x5e\x3c\x61\x41\x2a\x5f\x0d\xf5\x18\xb0\x1e\x1f\x8a\x23\x30\x88\x61\xb3\xa3\x39\xa4\x9e\x83\x43\x5d\x45\x87\x8a\x7b\x1e\xb0\x07\x3d\x5f\xcb\x9e\xae\x7b\x1f\x9e\x07\x99\x36\x59\x96\x4c\xb0\x8b\xac\xc1\xce\x8d\xcd\x73\x7a\xa8\xfc\x61\x93\x26\xc9\x79\x9c\xfa\x23\x41\x57\x4b\xb7\xd3\xdf\x66\x3c\x99\x9f\xf0\x90\xf7\xb3\x38\x29\x97\x44\x8d\x92\xf9\xd4\x93\x8c\xc1\x89\x6c\x24\x3b\x5a\x5b\x93\x7d\x0a\x76\xae\x99\x65\x49\xd0\x9b\x65\xbc\x5c\x12\xcd\x4a\x66\x10\x72\xea\xe7\x1e\x46\x7d\x81\x74\x1a\x1a\x4b\x1e\xde\xd8\xaf\x7b\xec\xb3\xfe\x74\x03\xad\x62\xa5\xdc\x4b\xdb\x43\xcf\xb1\x81\xf8\x93\x0d\xa0\x8c\x89\x18\x7f\xfe\xb7\xea\xd5\x65\x16\xf4\x45\xc6\x75\xec\x3e\x82\xd3\x38\x01\xa6\x98\x55\xcb\xbe\xda\xe4\xe2\xeb\xe0\x02\xf7\x5e\x3b\x3a\x78\xa3\x65\xc5\x09\xe9\x80\x22\x3f\xb1\xa7\x19\x0f\x43\xf4\x6b\x34\xa8\xb6\x1b\x3f\x35\x03\x30\x31\xb1\x7f\x90\x23\xf3\x86\x97\x06\x56\x47\x89\x0f\x81\x4b\x14\x9d\x05\x92\x42\x3f\x1a\xd0\xc9\x50\x68\x90\x88\x3d\x76\x3a\x16\x23\x5f\x73\x3f\x83\xaa\x56\x5f\x01\x69\x76\x31\x16\x8a\xe1\x22\x1a\x70\x30\x28\x07\x1f\x34\xe0\x51\x29\x0e\x4a\x1a\x0c\x78\x22\x4e\xa2\xcf\x8e\x0e\x8f\x8c\x50\x13\x16\x4d\x67\x48\x91\x19\xe9\x0b\x96\x11\xdc\xac\x58\xb5\xbf\xf4\x91\xca\x9d\x4c\xb7\x33\x08\x37\x43\x08\x52\x75\x76\xbf\x5d\x96\x6a\x56\x55\xf7\xdd\x2c\x36\xb0\xae\xaa\x69\x14\x17\x93\x61\x4b\x88\xb0\x65\x24\x98\x41\x80\x7d\x0d\x4b\x80\x42\xd9\x20\x1d\x49\x71\xda\x30\x01\xa8\xb8\x13\xb0\x7d\xcc\x87\x38\x11\x3c\xca\x92\x39\x6e\x3f\xc5\x10\xf3\x07\x03\x74\x7d\x87\x83\x26\xa3\x0a\x65\x7e\xff\xaa\xd8\x06\x20\x47\x51\xff\xb5\x76\x56\x0f\xc7\xb5\x96\xf5\xc3\x9f\x6f\xc7\xf4\x37\xc6\xfd\xef\xc2\xb8\xb4\x85\xff\xaf\x20\xdd\x07\x08\x3a\x2c\xad\xfa\x42\x04\x1c\x7c\x16\xf2\x5d\x68\x60\x05\x9d\xd9\x16\x56\xd6\x8c\x8b\x50\xe7\x42\xc4\xb9\x18\x6d\xde\x15\x87\x89\x29\xb6\x26\xfa\x7c\x6c\x92\x57\x79\xb8\xc8\x04\x07\x58\x18\x60\x01\x37\x38\x50\x2a\xbb\x3c\x62\xf9\xdb\xc4\xe9\x7e\x13\xa7\x9c\x5e\xff\xcf\x35\x44\xfa\x9c\xe1\xba\x7f\xdb\x0a\xfd\x6d\x2b\xf4\xb7\xad\xd0\xff\x2e\x5b\x21\x8d\xe0\x42\x7f\x32\x2d\x83\xa0\xfd\x86\x27\xad\x78\x16\x09\xf2\x6c\x3a\xa5\xbf\xed\xf0\x2c\xe0\xf3\x3c\x09\xa2\x32\xfe\xe1\xdf\xda\x0d\x2b\x56\xcb\xad\xcf\x08\x20\x02\x59\x3a\x53\xad\x0f\x10\x8f\xc6\x84\x4f\xc4\x6e\x2d\x0e\x01\x72\x00\x15\xbe\x92\x25\xc2\x12\xf5\xfc\x32\x1d\xfb\x52\xe5\x3c\xe9\xb5\xe9\x10\x75\xa2\x0c\x08\x1e\xd5\xd4\xfe\xae\x5a\x2d\xa8\x9e\xeb\xc6\xd4\xa5\x9f\x97\x6a\xa5\x0b\xad\x49\x5f\xd0\xb3\x5d\x2a\xe9\x1e\x7b\x36\xf0\xd5\x9d\x8b\x5d\xd5\xe9\xc0\x9c\xc7\x93\xdc\x1c\xec\xfe\xfe\x03\x81\x30\xfe\xbb\xd4\xaf\xf2\x03\xc7\xad\xf9\x6b\x5c\xed\xff\xb4\x20\x06\x01\x9d\x0b\x44\x22\xd6\x8e\xb3\x27\x9e\x73\x92\xcd\x74\x19\x86\x84\x59\x9e\x72\xa7\xf2\xc4\x9f\x1a\xf1\x13\x81\x29\x77\x27\x4f\xee\x44\xc8\xb0\x9b\x11\x5b\xd9\xb6\xcb\x80\x42\x1d\x8b\xed\x34\x60\x22\x08\xd2\x7b\xeb\xc3\x17\x88\x94\xfc\xe9\x93\xd5\x18\x61\x52\x59\x22\x75\xbe\x56\x69\xf7\x5f\x9a\xde\x31\x45\x86\x1e\x7f\xfb\xc4\xfe\xed\x13\xfb\x40\xf1\x84\xc1\xb9\xca\x39\x06\xa4\x6e\xd2\xb5\x04\x4a\x52\xf9\x55\x4c\x09\x60\xae\x96\x7e\x6e\x5c\x14\x45\x22\xc4\x8a\x23\x87\x30\x1a\xc9\x9b\xfd\x93\x1e\xcf\x22\x6c\xcd\xaa\x94\x58\x54\x55\xf4\x58\x41\x47\x1b\xcc\x28\xcf\x8b\x5d\xf2\xc2\x41\xb3\x0f\x3b\x99\x45\x11\x8d\xfc\x07\x39\x6f\xa3\x10\x20\x5e\x37\x66\xab\x8b\x08\x7c\x75\x73\x6e\x0f\xe5\xd9\xff\x76\xbc\xfc\xdb\xf1\xf2\x33\xf0\x81\x73\x63\xcf\x2d\x7c\x60\x7a\xf6\xfd\x47\x65\x4f\x2e\x3e\x42\xa2\xc1\x9a\x2b\x5b\x67\x11\x50\x0e\xc5\x64\x92\x26\x1d\x96\x58\xa5\x38\x1b\xeb\xc2\x46\xcd\xe0\xe2\x2f\xde\x38\xc7\x82\xe5\x2b\x28\x4e\xac\x62\x17\x13\x75\x1f\xa6\x55\xa9\xd5\xd8\x41\x30\x09\xfa\x68\x6b\xc9\xc7\xfe\x75\x10\x43\x9e\xc9\x9d\xc3\x03\x43\x48\x2b\xed\x47\xa8\x49\xdf\xc7\x68\xab\x3e\x4b\x78\x34\xe0\x09\xf3\x87\x99\xf8\x7f\x8a\xcf\x1e\xf2\x81\x23\xb7\xfd\x6c\x95\xc8\x57\x96\xf5\x69\x52\xd8\x8f\x76\x97\x1d\xca\xdc\x71\xb4\xc5\x16\xba\xea\x4f\x94\xec\x4e\x7f\xf9\x71\x19\x71\xef\xce\xe3\x4f\x10\x82\xa9\x34\xa2\x0f\x91\x7e\x3d\x5c\x16\xb4\xb0\xdb\xa5\x32\xa0\x87\x48\x65\x6c\x30\x3d\x48\x1e\x23\x6f\x31\x62\x36\x2a\xa6\xa3\x1f\x18\x0f\xb0\x7a\x7c\xb9\xc5\x02\xff\xe7\x05\x37\x70\xfe\xea\xf8\xcf\xd7\x92\xe5\x50\x5e\xce\x8f\x85\x91\x51\xbd\xbc\xd3\x86\x57\x24\x3f\xf1\x9c\x27\xd0\xcb\x1b\x67\x7a\x3a\xef\x98\x67\xf0\x30\x30\xb7\x55\x6f\xd5\x49\x0f\xaa\x0e\xd6\x65\x10\x8d\x79\x12\x64\xe9\x7e\x1c\xa7\xbc\x9c\xce\x7a\xed\xd0\x4f\x53\x8f\xa5\xb3\x29\x4f\xe0\x6f\x3a\x6c\xb2\x48\xa7\xe1\x65\x0d\x99\x01\x15\xc7\x2b\xeb\x36\xba\x12\x9e\xb8\x7c\x63\x81\xc8\xd3\x2c\x99\xf5\xb3\x38\x01\x3f\x0d\xac\x60\xd7\xbe\xbc\x84\xfa\x97\x97\xe8\xc9\x41\x9d\x53\x22\x7e\x94\x67\xfb\x49\xe2\xcf\x21\x57\xd1\x6f\xb3\x20\xe1\xe5\x12\x7d\x2a\x55\x04\xf4\xa5\x80\xab\x73\x3b\x8d\x53\xce\xde\x0b\xd2\xe1\x34\x3e\xe6\x23\x7e\x3b\x7d\x2f\xa5\x57\x93\x78\x30\x0b\x79\x15\x41\x94\x92\x26\x48\xd6\x72\x8b\x31\x35\xbd\x4c\xf3\x96\x2b\xed\xc7\x93\x69\x10\x42\xa2\x26\xfc\x2b\x57\x23\x8b\xaf\x78\x94\x9e\xc6\x2f\xe4\x16\x34\x98\xfb\x69\x61\x9b\x63\x3e\xea\xdc\x4e\x8d\x16\xf8\xc1\x5c\xe9\xe9\x98\xb3\x89\x1f\xa0\x97\x1d\x9b\xf8\x59\x1f\x4c\xcb\x12\x58\x0c\x9b\x65\x41\x18\x64\x73\x1d\xcc\xfe\x5f\xb0\x91\x1f\xb1\x9f\x3b\x02\x08\x04\x66\x6e\x9e\xbe\xbc\x3c\xee\xec\x76\x7e\x39\xa2\x1c\x0d\x58\xa7\x7c\xde\x45\xb7\xaf\x03\x08\x91\xcc\xd3\xbe\x3f\xe5\x03\xd6\x1f\xfb\x89\xdf\xcf\x94\x73\xfe\x0d\x10\xa0\xb1\xcc\x93\x0c\x09\x0b\x40\x26\xc1\x86\xb3\x6c\x96\x70\x9c\x19\xc7\xcc\x32\xb5\x1a\x83\xe4\x5f\x7e\x18\xc6\x37\x18\xab\x78\x96\x62\x76\x13\xec\x9f\xa5\x53\xde\x0f\xfc\xb0\x60\x98\xa8\x94\x21\xfa\x1b\xc6\xc9\x04\x7a\x2b\x95\xbb\xf4\x5f\xb5\x82\x48\x4a\xcd\xb6\x73\x0b\xb1\xb1\x37\xd2\x6c\x1e\x72\xb1\x83\xfe\x84\x43\x67\x7e\x34\x60\xb3\x68\x23\xf2\x27\xe0\xc2\xa0\xbe\x83\xbb\x82\x4f\xb9\x4b\xa9\x2b\x51\x37\x9e\x8a\x7d\xf2\x43\x96\xce\x86\xc3\xe0\x96\xa7\x55\x1c\x81\xa7\x72\xa5\x7e\x5a\xc7\xfa\xd4\xaa\xbb\x5a\xab\x67\x3c\xcd\x60\x72\x83\xf5\xca\x76\x77\x95\x35\x7e\x62\xe7\xdd\xd5\x5a\x77\xd5\x63\xdd\x55\x51\x88\x7f\x89\x72\xf1\x97\x21\xe0\x80\xbc\x8b\xc6\x97\x0b\xdd\x2b\xc4\xe9\x97\xbd\x76\x57\x19\xf4\x5a\xac\xcd\xb7\x3a\x2c\x18\xa5\xa8\xfb\xc7\xa2\x4b\xfd\x9f\x31\xe5\x7b\xc7\xb0\x86\x7b\xdc\x5d\xbd\xc0\xdd\x39\x17\x73\xad\x55\x2f\x2a\xdb\xe5\xed\x7a\x79\xbb\x2e\x7e\xd6\x61\x01\x37\xeb\x15\xfa\x5d\x2e\xd3\x1f\xb0\x8d\x9f\xce\xff\x47\xfe\x5d\xae\x5c\x54\xd6\x2b\xe2\xaf\x4a\x65\xfb\xd3\x83\xab\x96\xcf\xd7\x1f\x6f\x5f\x54\xb6\x3f\xc1\x38\x8f\x2b\x95\x52\x37\xba\xa0\x3c\xe9\x9f\x4a\x82\x6d\x1a\xd9\x08\xe3\x08\x6e\xb9\xcf\x50\x68\xa5\x22\xb6\x27\xfe\x0d\xdd\x3d\xe3\x0a\xc1\x79\x61\xec\x23\xd6\xbd\x63\xa2\x91\x5d\x82\x68\xb2\x71\x47\xe7\x06\xc3\xb8\xff\x4b\x86\xf4\x5e\x81\xec\x27\xf2\xf2\xd9\x39\x68\x59\x39\xcd\x12\x4f\xb6\x33\x5c\x46\x71\x16\x90\xea\x46\x7e\xa2\xb4\x29\xae\xfc\x4f\x7d\x20\xa3\x89\x52\x49\x7e\xa0\xd7\x60\x87\x87\xc1\x24\xc8\x40\xf8\x4a\x03\x09\xe2\x89\xfe\xac\x0e\x54\x31\xa6\x14\xed\xea\xc4\xf3\x48\x47\x60\x8a\xaa\x72\x39\x01\x09\x85\x81\x38\xaa\xfc\x96\xf7\xc5\x02\x20\x9b\xb0\x9d\x30\x4a\xf4\x30\xc1\x1c\x73\xe7\x4f\x2e\xf4\x37\x89\x50\xb0\x64\xd3\x28\x89\x87\xc3\x94\x67\x58\x80\x24\x20\x91\x06\x32\x7f\x69\x96\x90\x38\x04\x89\x0d\x6a\x50\x31\xe8\x10\xb1\x40\xec\x65\x9d\x4d\x88\xb4\x91\x14\x9a\xf6\x25\x90\xcc\xac\x9c\x4a\xca\x7f\x9b\xf1\xa8\xcf\xcd\x34\x58\x54\x66\xd2\x7f\x34\x0d\x2a\x51\x53\x87\x5c\x2f\x59\x10\xcd\x78\x37\xaf\x17\x15\x04\x2a\xda\x93\x12\xd5\xa4\x8b\x10\xe7\x10\x1c\x9e\x1a\x05\x3a\x39\xdf\xf9\x33\xe3\x73\xdf\x9f\x02\x62\xc5\x92\x6f\x8c\x92\x51\x12\xcf\xa6\xf4\xfd\xb9\xf1\x7d\x12\x0f\x82\x61\x00\xdb\x2e\x8a\xbe\x35\x8a\x20\xef\x48\x90\x5e\x51\xd1\x77\x17\x06\x94\x8e\x66\x29\x7a\x7f\xc9\xb4\x86\xb0\xf2\x38\x22\x1b\x2c\x7d\x3d\x0c\xdf\x19\x33\x79\x24\x96\x6b\x7b\x36\x0b\x80\xf2\x78\x3a\x70\x9a\xfa\x49\x26\xf0\x7f\x43\x82\x85\x8e\x93\x24\xf2\x0b\x7e\x37\x0c\xac\x2d\x0f\xec\x94\xfb\x02\xdc\x7a\xe1\x8d\x06\x2b\xad\x43\xea\x79\xfb\xdb\xe3\x92\x71\xee\x24\xae\x77\x1b\x6e\xdf\xd3\x70\x60\xdc\x2b\xdc\x44\x51\xdf\xbd\x74\xe6\x22\xb3\x8c\x27\x20\xf0\xa0\xbd\xfc\xf4\x09\x37\x4f\x82\xc2\x84\x9d\x02\x28\xe6\x3a\x96\xbe\x80\x90\x24\xc9\xd3\x4c\x89\x00\x41\x5d\x42\x4d\x5c\xe0\x92\xe1\xf5\x48\x53\xa8\xeb\x3f\x55\xa1\x5c\x75\x5d\xfd\xa5\x8a\x10\x8e\x75\xfa\x57\x8f\x85\x7b\x54\x97\x7f\xa8\x02\x79\x98\xea\x6c\x65\x45\xfe\x6d\xb4\x82\x45\xd7\xd5\xea\xb7\xe9\x06\xed\x8a\x85\x97\xe9\x6b\x85\xd5\x59\x59\x1d\xca\x6d\x56\xaa\x3e\x2e\xb1\x3a\x2b\x9d\xff\x0f\xd8\x52\x43\x03\x52\x8f\xa8\xa5\x80\xbf\xf4\xc5\xfa\x76\xa9\x22\x99\x59\x83\xf7\x51\x24\x81\x1f\xcd\x4d\xaa\x02\x53\xec\x25\x7c\x82\xc9\x18\xe0\x18\x83\x51\x00\x71\x91\x02\xc9\xc8\x64\xe5\x1f\x0b\xf0\x0f\xea\x65\xa0\xb6\x33\xdc\xde\x90\x4c\xa9\xb2\x31\xe3\xb7\x41\x9a\xa5\x1e\x8a\xe0\x83\x4c\x5f\x1e\x1e\x0d\xd4\x90\xd6\xbd\x29\xbc\x35\x76\xd2\x29\xac\x42\x6c\x87\xd2\xec\x12\x3d\xaa\x5e\xb2\x2c\x66\x3e\xcb\xf8\x64\x1a\xfa\x19\xd7\x7c\x80\x7c\xe0\x40\xe0\xb8\xe4\x69\x33\xfe\x5b\xfc\xca\x19\xff\x15\x3f\x78\x72\xd8\x32\x35\xf1\x88\x91\x68\x54\x72\xaf\xa0\x24\xa8\x8b\xde\x41\x6b\xe1\x9a\x7c\x2e\xc3\xcb\x69\x37\xd0\x7f\x39\x00\x3a\x4a\x78\x96\x89\xeb\x2b\x53\xca\x32\xcc\x79\x8b\x1b\x95\xf2\x11\xe6\x2c\x5b\x08\x12\x7b\x65\xc6\x47\x73\x11\x68\xed\x76\x76\xbc\x27\xb6\x23\x8e\x78\x94\xc1\xb0\x73\x58\x95\x93\x64\x45\x56\x85\x22\x15\x1a\xa0\x76\xde\xed\xd6\xb6\xff\x71\x51\x1b\x99\x72\xac\xbe\x2b\x08\x28\xfd\x53\xdc\x87\x3e\x44\xd7\x68\xc7\x03\x0e\x11\x36\xb4\xea\x70\xf3\x5b\xf1\xe3\x6c\x2a\x38\x29\x3f\xe5\x65\x3c\x45\x2e\x48\x3a\x30\x05\x38\x0e\xea\xca\x29\x9a\xb8\xca\x4e\x82\x49\x10\x02\x05\xc2\xde\x4f\x61\x19\xef\x3d\xd6\x9b\x65\x92\x7c\x07\xcf\x71\xfe\x75\x40\xd6\x94\xe3\x7f\x06\xa0\xfe\x2a\x28\x21\x4b\xe9\xb3\x09\xcf\xc6\xf1\x00\x6f\x90\x64\x44\xf0\xa6\x01\x85\x16\xc8\xbb\x0d\x07\x4a\xce\xaa\xea\xae\x37\xc7\x16\x96\xf1\x8b\x7b\xe6\x6b\x35\x7d\xa7\xc3\xd0\x78\x71\x71\x20\xe4\xf3\xf0\xf9\x85\x37\x9e\xb8\x12\x33\xcd\x1e\xe1\x12\x42\x63\x0a\x41\xb9\xdd\x12\xea\x4d\xa5\xb3\x12\xde\x44\x5f\xce\x5e\x27\xf8\x0b\x30\x59\x5f\xc0\x7e\x64\x56\xd7\x5b\x2c\x30\xf2\xf5\x19\xc9\x39\xb1\xd6\x79\x70\x61\xe9\x3b\x0c\x1a\x81\x66\x0d\x35\x4c\xde\xb3\xf4\x3f\xe5\xed\xba\xd8\x3b\xd5\x43\x55\x3e\x1b\xeb\xac\x54\x79\x54\xf2\xd8\x30\xf4\x47\x69\x59\xc2\xac\xa2\x68\x09\x17\x5b\x1a\xc2\xe0\xde\x07\x00\x72\x5a\xe4\x3b\x5c\x32\xdf\x73\x1f\xbc\xc8\xe2\xde\x07\x4c\x90\xe1\x92\x08\x29\xd2\xcf\xa9\x5b\x8a\x27\x55\x13\xd7\x55\xbc\x35\xe2\xa5\x5b\x84\x17\xea\x05\x45\x92\x08\xf8\x4c\xb8\x1b\xec\x82\x12\x1c\x9c\x07\x17\xdd\xa2\x04\xab\x54\x6b\x51\x7e\x55\xf9\xd2\x41\x35\x33\xc8\xa2\x4d\xe1\xe6\x0c\x79\x21\x77\x31\x6b\x00\x00\xcf\xa1\x71\x55\x90\x2b\x17\x66\x1d\xc2\xb4\xf6\xb4\xa8\x61\x2e\xd7\xac\xf4\x35\x14\x3d\x49\xf2\xc4\x71\x41\x15\x84\xaa\x20\x50\x20\x93\x34\x12\x8f\x34\x04\x11\x43\x8a\x9c\x77\x3b\xa4\xea\x4e\x7f\xce\xea\xab\x26\x71\x99\x5b\x74\x11\x4c\x8a\xbd\x56\x75\x2a\xf5\xd3\xf9\x94\x53\x2e\x75\x15\x4c\x01\x03\x25\x68\x88\x99\xd1\x14\x98\xcc\xcc\x58\x31\x46\x28\xd8\x00\x34\x69\x04\x99\x18\xc2\xb3\x92\x03\xe4\x0a\x8e\x80\xf4\x5c\xe5\xeb\x4c\x90\x5c\x18\x04\x81\x08\x8f\x43\xc2\xfb\x3c\xb8\xe6\x03\xf6\x5e\xb4\xf8\xf9\xe4\xf0\x75\x15\x8f\x58\x30\x94\xf3\x12\x8d\xdf\x3b\xcb\xb1\x27\x0a\xf5\x94\xbd\x8e\x63\x31\xfb\xa0\x63\x51\xb4\x2f\xc5\x3b\xf3\xc7\x96\xde\xe3\x98\xb4\xdc\x5c\x8e\xb1\x3f\xce\xda\xd4\x95\xfe\x80\x57\xfa\x03\xfb\x91\x99\x6b\xdd\x62\x1f\xac\x1b\xcd\x40\x6b\x83\xa7\x59\xba\x23\x20\x70\xce\x3f\x5c\x54\xec\x73\x08\x1b\xac\x11\x6a\x15\x84\x50\xd4\xb8\x92\x83\xce\xf2\x35\x8b\xa7\x61\xf1\xba\x61\x10\xab\xdc\x40\xce\xdd\xd5\x07\x9c\x03\x39\xad\xdc\x49\xc8\xdd\x2e\x79\x19\xcb\x1f\xf0\x1c\xb0\x6d\xeb\x5e\xb2\x3a\xfd\xb4\xb8\x01\x85\x63\x0a\x3b\x5d\x82\xc4\x34\xac\xb1\x57\x83\x13\xb1\xe9\x14\x79\x92\xeb\xd6\xa6\x54\xec\xdb\xf8\xb0\xdd\xf8\xd2\xd3\xf7\x79\xbb\x80\xf5\xe4\xfa\xa0\x86\x86\xbb\x01\x81\x22\xe4\xe7\x42\xd4\x55\x76\x89\x36\x5d\x95\xac\xce\xa0\x9c\x50\xa6\xeb\x0b\x62\x65\x26\x28\x49\x8e\x62\x59\x19\x21\x0d\xd9\xae\x05\x1c\x88\xe2\x3a\xee\xa3\x1f\x0d\x9e\xb0\x80\x7a\x14\xcc\x9a\x22\x19\xcb\xe7\xd5\xf5\xc7\xdb\x8d\xff\x59\xa9\x3f\xfa\x78\x57\xae\x9c\x77\xbb\x17\x9f\xba\xdd\x5a\xb7\xdb\xed\x5e\x54\x04\x2d\x59\x12\x7f\x3e\xda\x2c\xe5\x68\x40\x5c\x09\x08\x43\x80\x65\x87\x2c\x97\x20\x6e\xe9\x91\xfc\x48\x7c\x29\x90\x5e\xfb\xd1\x80\x4d\xb8\x1f\x2d\x5f\x2c\x31\xff\x0f\x5e\x2e\xf0\xcc\xac\x0c\xcd\xec\xf5\xc2\x27\x73\xc5\x8d\x95\xfa\xa3\x6e\xb7\x56\xae\x2c\x5f\x61\x33\xcb\xfc\x3e\x8a\x7b\x20\x6f\x88\x9f\xaa\x98\x26\xd9\x5c\xb0\x4a\x20\x15\x05\xa2\xb3\x60\x1d\x2b\xa4\x57\x60\xe0\x73\x64\x14\xa0\xc4\x13\xed\x48\x5d\xe6\xd0\xd6\x45\xe8\x04\xde\x30\x13\x88\x3d\x5f\x4e\x30\x2b\x94\xe6\x03\xab\x57\x18\x93\x9e\xba\x93\xab\x16\xc3\x5a\xcb\xd9\xe5\x19\x66\xde\x14\x54\x22\xa0\x5d\x5f\xaa\x46\x20\xdd\xaf\x28\x93\x54\x5a\x7e\x39\xc8\xa4\x2e\x90\xe2\x2e\xd8\x18\x1c\xa9\x5c\xc8\xb8\x16\x08\x5b\x53\x0e\x8a\xdc\x6b\x2e\x03\xd7\x95\x82\x92\xcb\xb1\xce\xc2\x10\x12\xf7\xc3\x9a\x29\x1d\xfb\xfd\x5b\x40\xb7\xd1\x2c\x92\xbb\xf0\xf0\x4d\xc0\x61\xa4\x6e\x8c\x91\x29\x8e\xb1\x15\xb5\x1a\x3b\x03\xae\x48\x66\x1f\x66\x61\x1c\x5f\xf9\x63\xee\x0f\x34\x72\x8a\xa3\x70\xee\x5e\x18\xcd\xb2\xe0\x4f\x52\xc3\x55\xd3\x78\x96\xf4\x79\x15\x1a\x96\x6b\xdd\x6e\xb9\xbc\xbd\xd2\xed\x6e\x57\x6a\x23\xc2\xaa\x02\xa3\x62\x13\x85\x3e\x8b\x28\x64\x1a\xa4\x98\x42\xbe\x52\x89\x0f\x4c\xb3\x35\x90\xab\x05\x66\x86\x3a\x92\xa6\x41\xac\x71\xfd\xd9\x90\xa3\x39\x25\x5a\x88\x86\xee\xae\xba\x44\xca\xd0\xdc\xef\x4a\x88\xe6\x16\x68\x21\x5a\xbe\x09\x49\xd0\xc4\xe0\x0a\x75\x2f\xe6\x7c\xf4\x45\x32\xb7\xcf\x39\x64\xa7\x92\x93\x65\x7e\xc4\x50\xc7\x0a\xfc\xe5\xb2\x93\x26\x8f\x53\xfe\xa4\x15\x5c\x77\xd5\x6a\xe9\xa5\x5a\x88\x0c\x44\x87\x45\xc7\xb0\x48\x55\x22\x60\x2a\x35\x25\x8b\x18\x57\x38\x6b\x45\x87\x03\x1a\x6b\xb9\x9b\x1c\x13\x7e\x9c\x07\x17\xee\xa8\x74\x5e\x4d\xf1\x1c\x8a\x9e\x61\xa2\x36\x33\x4b\xbc\x2c\x8e\xa0\x74\x51\xc0\xc9\x16\x31\xb2\xc5\x5b\x88\x3d\x17\x6f\x22\xba\x75\x40\x60\xb7\x6c\x6c\xe1\x39\x12\x06\x06\xd1\x74\x96\x2d\x13\xf7\x3d\x08\x69\xfc\xb1\xad\xc4\xb1\x1e\xb2\x97\x8e\xb8\x8f\xc0\x88\xc2\x3e\x6c\xa5\xa5\x7d\x76\xfb\x45\xa2\x1b\x5b\xfc\xe9\x5f\x19\x62\x1b\xf1\x40\xe3\x80\x68\x4b\x85\xa3\x2d\x3b\xf6\x8a\x70\x23\x39\xac\x59\xa9\x0c\x95\x3e\x21\x80\x2a\x8d\xbb\x02\xe8\xe5\xa4\xa7\x9f\x05\x45\xc7\x42\x40\x09\x8f\x8a\xe0\x48\x6e\x75\xc8\x12\xc2\xb9\x51\xa7\x5d\x0b\x32\x6a\x8f\x95\x71\x80\xda\xd7\xc7\x35\x06\xf5\xd9\xa7\x4f\x06\x68\x25\x02\x55\xba\x48\x3a\xf7\x96\x50\x04\xfe\x22\xb9\x88\xbc\x14\x62\xe7\xfb\x99\x21\x17\xc1\x0f\x5d\xe5\x7d\x30\x30\xca\xc4\xaf\x95\x06\x59\x57\xa9\x6b\x15\xcf\x20\x13\x45\xa9\xa4\xc5\xec\x19\x4f\x20\x55\xfa\x35\x4f\x4c\xe9\x98\xd8\x4f\x34\x53\x61\xf1\x4c\x5d\x48\x4d\x6e\x7e\xae\x58\x65\xa9\x50\xe5\xa1\x22\x15\x9c\xbf\x52\x1a\x92\xfc\x11\x9a\x48\xfc\x5d\x10\xef\x4b\x69\x06\xf3\xad\x88\x32\xaf\x98\xd5\xb5\x62\xb0\x64\x4a\xcf\x2c\xc9\x59\x49\x53\xfa\xfa\x2d\x94\xf3\xb0\x04\x45\x8b\x24\x05\x72\x94\x75\x3d\x8c\xe2\x12\x54\x19\x2b\x55\xa4\x82\x2c\x27\xa3\x58\xc2\xb6\x1b\x32\x8a\x62\xe1\x4c\x7e\x89\x6a\xec\x52\xb9\xe4\xcc\xa0\xb2\x5d\x5a\x2e\x93\xd1\xbd\x2d\xe9\xc5\xea\x44\x2d\x29\xd7\xdb\x83\xfa\x2a\x02\x89\x3a\x1a\x54\x31\xff\x9c\xbb\x2a\x46\xeb\x34\x2c\x52\xde\x57\x8c\xdb\x95\xbe\x0d\xb2\xb1\xa9\xfc\x87\x31\x49\x87\xbe\xa1\x5a\x2a\x7d\x97\x38\xc4\x03\xad\xb6\x94\x17\x2e\x62\x51\x1c\x6d\xd0\x65\x9e\xc4\x03\x0a\x82\x18\xc6\x37\xcc\x47\x65\x00\xf3\x33\xa9\xdd\x12\x2c\x03\xd0\x72\x55\x4b\x21\x96\xc5\xd4\x1b\x12\x88\x4a\x03\x1f\x0d\x94\x0d\x0e\xf4\x04\xa1\xcd\xd0\x27\x9a\x05\x19\xdc\x59\x15\x7e\xba\x3f\xc7\x40\x07\xa9\x8c\xbf\x8d\xc1\x0d\xae\xfd\x30\x18\x38\x33\xf0\x0d\xeb\x28\x0f\xe4\x35\x14\xe8\x60\x12\x0c\x06\x21\x04\x4c\x08\x52\x30\x5f\x9f\x4c\xe3\x24\xf3\x23\x19\xeb\x3a\xc0\xc5\xf2\x08\x34\x45\x62\xb1\x1e\xbb\x81\xe8\x0b\xdd\xd5\x9a\xe0\xe5\x6b\xdd\x55\xb2\xbe\x8f\x4a\x99\xe2\xc5\xb1\x08\x4d\x75\xba\xab\x4a\xc3\xb7\x82\x40\xd3\xea\x09\x42\x67\xe5\xfc\xe6\x6c\x5b\x9b\xf3\xc4\x63\x05\xfb\x53\xc7\x3a\x40\x41\xd0\x35\xd0\xdb\x0f\xdf\x1a\x8f\xe4\xe9\xbf\xd3\xc4\x33\x8f\x06\xce\x0c\xc4\x1d\x7e\x84\xd5\xac\x03\xad\x77\xdb\x06\x00\x87\xa0\xce\x45\x6c\x70\xaa\x89\x7e\x3f\x65\x93\x19\xfc\xab\x3a\x9b\xc6\x69\x1a\x60\x04\x3c\x26\x6d\x96\xa7\x31\xf1\x3f\x16\xdf\xa0\xf6\x8e\x4c\x26\x4c\xe5\x5c\xd5\x99\x3a\x9d\xc4\xb5\xb5\x82\x33\x2e\x99\xaa\xf2\x76\x23\x07\x9e\x4f\x8f\x2a\xa5\xa5\xd4\xb2\xa5\x88\x10\xcd\x61\xc8\x1c\xa5\x56\x4c\x8b\xbd\x8e\x93\x89\x1f\x06\xbf\xa3\xb4\x60\x14\x5c\x73\x32\xd1\xc3\x57\xc1\xb3\x88\x8d\xbc\x60\x44\x13\x1e\xcd\x08\x25\x8b\x44\x95\xf7\xfd\x88\xf5\xc4\x2d\x4a\x53\x0e\xe1\x1c\xa4\x26\x17\x5f\xfe\x9b\x71\xd0\x1f\x63\xe8\x8e\x71\x1c\xc2\x1e\x61\xae\xff\xd0\xef\x73\xf1\x85\xa3\xdd\xd0\x80\xa7\xfd\x24\x20\xa4\xc1\x5e\xc4\x62\x6c\x7f\x32\x0d\xb9\x47\x3b\xf3\xbe\x36\x4b\x79\x52\xab\x07\x83\xf7\x1e\x7b\x2f\x3a\x7f\x0f\xdd\x42\x6f\xfd\x38\xca\xfc\x20\x62\xef\xcf\x3f\x12\xdb\x54\x0a\x06\x25\xcf\xe4\x8c\x4a\xb5\x92\x97\xe3\x87\x6c\x36\x88\xdd\x5d\xbc\x2f\x20\xb0\xca\x08\xa1\x4f\x08\xfa\x4f\x40\x49\x55\x8a\xf8\xd9\x1c\x91\xa5\x1f\xb4\xfb\x15\xd5\x9f\x4b\x70\x99\xcc\xc0\x32\xa2\xf5\xbf\x81\xd8\x52\x61\x00\x83\x28\xcd\xfc\xa8\x2f\xe8\x12\x5c\x96\xab\x19\xb5\xf9\x7b\x5a\x96\x39\x3b\x22\x76\xe5\xe4\x2a\x15\x07\x99\xc8\x95\x82\x8d\x42\x2e\x12\xb0\xc9\xb5\x95\x17\x74\x0b\x2d\x97\x0f\xea\x59\x00\xb1\xef\xab\xcd\x4e\x98\x83\x48\xa6\xe6\x0b\x06\xb9\x5b\x6e\x43\x2d\x9d\x8d\x69\xbd\xf2\xb7\xb6\x8f\xf6\xd3\x34\x18\x45\x62\x4b\xb4\xda\x31\xf3\x93\x11\xcf\x8a\x65\x16\x9b\x48\x7e\x4a\xef\xab\x65\x8a\x3d\xe4\x37\x59\x43\x57\x3e\x0f\x2e\x0c\x6f\x40\xd5\xaf\xb8\xe5\x41\x44\xf5\x73\xe4\x15\x4d\x54\x9b\x67\x8f\xfd\xf4\xf0\x26\x3a\x22\x49\x5f\xb5\xef\x87\x61\x19\xdb\x62\x42\x76\x57\x4d\x04\xab\x39\xbf\xe2\xf3\x0b\xd6\xa0\x41\xe0\x57\x61\x0c\xd6\x62\x79\x31\xf6\x81\x1e\x0a\x5b\xd6\xa6\x4a\x88\x56\xfd\xe9\x34\x9c\x97\xb3\x71\x90\x7a\x7a\xc1\x15\x32\x08\x5f\xb8\x3f\xa8\x60\xa6\x38\x39\xb4\xa4\x80\x4b\x93\x77\x5a\x14\xbf\xed\x87\xb3\x81\x32\xe9\x13\x40\x91\xb0\x95\xfa\x47\x89\x13\xee\xb4\xff\x3a\x4c\x59\xc7\x2b\xd0\x3b\x42\x49\x32\x09\xae\xe2\x44\x51\x77\xda\xbd\xfa\x8a\xcf\x3d\x16\x6c\x19\x42\x09\x83\xf5\xd0\xbd\x14\x6e\x3e\xda\x7a\xea\x4a\xb8\xe9\x72\x37\xe5\x5a\x54\xb4\x24\xb1\x63\xe0\x15\x53\x51\x6a\x0e\xe9\x61\xb5\x74\xe3\x1c\x0b\x23\xb9\x41\x02\xda\xb5\x9a\xb6\x8c\xab\xb1\x34\x10\x8f\x05\x74\x2e\xde\xe7\x5e\x00\x04\x02\x9a\x92\xfb\x86\xa9\xbb\x32\xd3\xaf\xd6\x2e\xfd\x0d\xb9\x45\x10\xab\x33\x67\x86\xaf\xef\xca\x30\xf2\xc0\xde\xdb\x63\x96\xed\x95\xea\xb8\x3c\x8c\x74\xc0\x53\x30\x0c\xb7\x22\xac\xa9\x9d\x1b\xa2\xc7\x50\x7a\x13\x08\x8a\xa4\xec\x18\x72\xf5\xfd\x94\xb3\xcd\x7a\xde\x42\xc0\xcf\xe7\xb0\x19\x46\x78\x25\x70\x56\xbe\x1d\xf5\x84\xba\x7a\x5a\xd4\x95\x19\x20\x7d\x51\x6f\xa2\x4e\x51\x87\xcf\x16\x74\xe8\xb1\xfe\x43\xfa\x14\xd5\xdc\xe8\x2c\x05\xf6\x10\xb5\xc7\xac\x5a\xad\xfa\xc9\x28\x65\x8f\x6b\x2e\x0a\x1f\x46\xea\x0e\x42\xb7\xe6\x1d\xc4\x6e\xc9\xe1\x24\xb7\x9b\x2b\xe6\xd6\x4b\x72\x23\x4e\xd2\x52\x45\x90\x6a\x56\xe9\xd0\x0f\xc2\xb4\x54\x29\xe7\xe2\xd0\xd0\x24\xe8\x52\xe1\xee\x4a\x14\x55\xb6\xfa\x8f\x27\x1b\xc8\xed\x97\x2a\xe5\xd2\x20\xb8\x06\x1b\x6f\xbf\xe4\xb1\x8f\x6c\xc4\xb3\xba\x1d\xe2\x46\xf6\xfb\xdd\x16\xbb\x63\x77\x95\xaa\xcf\x56\x1a\xec\x3b\xb1\x96\x0a\x2e\x06\x5d\x4d\x70\x58\xe7\x10\x07\xe9\x86\xb4\x5f\xa1\xf4\x4d\x32\x28\xad\x53\x11\xc3\xdc\x94\x2a\x55\x59\xbe\xd5\x8d\x6a\x35\x19\x27\x41\x45\xb2\xc5\x59\x77\x42\x2e\xdd\x6e\x95\x3b\x70\x10\x31\x41\xc1\xed\x75\x70\x98\x00\xe2\x32\xd0\xa4\xca\xb2\x3d\x00\x33\xf7\xd5\xee\xf5\x9e\xcb\x16\x64\x36\xb4\x83\x94\x6d\x2f\x98\x1f\xd4\xad\x23\xf2\xa3\x7d\x2f\xcd\x52\x4e\x24\xb8\xcc\x67\xb5\xbf\xd7\x3a\x6e\x1e\xbf\x73\xe0\x11\x06\xbd\xc4\x4f\xe6\x0a\x6c\x8f\x08\x7d\xdb\xb5\xf0\xa3\xaa\x94\x70\xdc\x74\xa7\x96\xfc\xac\xea\x8d\x83\x81\x5b\x47\x7c\x52\xe5\x28\x25\x8a\x21\xbb\x96\xb5\x9b\xf2\xbb\x9e\x96\xf8\x44\x82\xd4\x7c\x5d\x75\xc8\xa8\x76\xca\xb3\x53\x32\x23\xc3\x08\xc5\x66\x83\x94\x67\x1b\x59\xbc\x81\x74\xc8\x46\xe6\x8f\x54\xb3\x11\x38\x01\xe2\xcb\x7b\x38\x74\x9a\xe1\xfe\x6f\x8c\xa6\xb1\x9e\xfe\x69\xe7\xb8\x79\x7a\x78\xec\xd4\xbc\xb9\x12\xb7\xa6\x24\x17\xa1\xaa\xb7\xce\x76\x77\x05\xf8\x57\xca\xe7\x17\xa8\x29\x5b\x5b\x63\x25\xc1\x48\xc1\xa9\xa2\x8f\xe5\x0a\xc6\xc9\x38\xf1\x87\x7e\x12\x80\x2b\x77\x6f\x36\x1a\xcd\x99\x02\x0a\xbb\xa9\xc5\xec\xbd\x68\xf7\x1e\x3b\x7e\xf1\xe2\xd2\x98\x4a\xe9\x5f\xff\x52\x43\xd3\xc8\xaf\x3a\xef\x4e\x44\x89\xe8\x5f\x7e\xfb\x77\x73\xff\xac\x03\x5f\x41\x39\x9e\x62\x4c\x66\xdc\x5d\x71\xe0\x80\xf7\x6e\x14\xdf\x50\xf1\xf2\x6f\x11\x75\xb0\xe4\x08\xb7\x7c\xc1\x5c\xbc\x6e\x1e\x74\x3c\xd6\xd6\x7e\x66\x18\xce\xc0\x63\x3b\x9d\x17\xcd\xb3\xfd\x53\x8f\xed\x9d\x5c\x9e\x74\x4e\x3d\xf6\xe2\xf0\xb8\xdd\xd9\xa1\x63\x6f\xec\x78\xd9\x6a\x8c\xfd\x89\x2e\xf4\x1b\x3e\xe2\xd9\x01\xda\xff\x99\xe3\x5f\x05\x06\x4f\x0d\x1c\x00\x6e\xc1\xda\x1a\x13\x45\x90\x8c\x40\xec\xb7\x7a\x98\xe0\xd7\xb9\x28\x93\xcf\xb8\x7c\xa3\xac\xae\xe8\x1d\x10\x50\xcd\x3f\x05\xb8\x87\x1a\x56\x82\x5d\x35\xe6\x4f\x54\x13\xf4\xb7\xa5\xde\x15\xea\x11\xf7\x24\xdf\x27\xee\xd0\x67\xf7\x7a\x97\xeb\x88\x5c\x3d\x3f\xb3\x27\x4d\x54\x9d\x36\x77\x59\x03\x76\x40\xb0\xea\xea\xfe\xea\x8c\x41\x3b\x9d\x17\x97\xea\x64\xd1\x06\x0b\xca\x0d\xbf\xa9\x6a\xf8\xf3\xb2\x75\xb6\x9b\xcb\x78\x02\x7b\xc0\x1a\x4c\x1c\x1e\x4d\x08\xab\xe2\x47\x11\xea\x33\x1b\xb4\x59\xf2\xe0\x83\x51\x3f\x7e\x32\xae\x03\x7c\x95\xd3\x58\x5b\xa3\x0a\xf4\xe1\x42\x77\x2a\x89\xd5\x86\xea\xff\xd3\x27\x7d\xa8\xca\xd4\x40\x9f\xb7\x47\x3a\x26\x8f\xec\x7d\x9b\xad\x18\x8b\xdf\xd6\x7d\xd6\x8d\x8e\x4a\xd4\x0e\x02\x31\x28\xc2\x48\x77\xeb\x47\xf3\xd7\x72\x7d\x00\xe5\x46\x83\x95\x80\x25\xfa\xff\xd8\x7b\x1b\xae\x36\x8e\x64\x61\xf8\xaf\x34\x5c\x2f\xd2\xc4\xc3\x08\xb0\x93\x38\x22\xd8\xeb\x05\x9c\xe5\xc6\x36\x5c\x20\xc9\xbb\x0f\xe2\xc8\x83\xa6\x25\x4d\x18\xcd\xe8\xce\x8c\x8c\x59\xe0\xfd\xed\xcf\xe9\xaa\xea\xcf\xe9\x11\xe0\x38\xb9\xd9\xfb\x6c\xce\xd9\xb5\x98\xae\xfe\xaa\xee\xae\xae\xaf\xae\xea\x60\xf2\xaf\xba\x90\x2f\xa7\xc5\x08\xe5\x60\xfb\xf2\x97\x6a\x09\xbd\x61\xd1\xf2\x10\xaa\x75\x3a\xb2\xd0\xd9\xeb\xb1\x37\xe9\x27\x86\x35\x25\xdb\xa6\x87\xa0\xb6\x7b\xa3\x36\x46\x63\x35\x48\xa5\x51\x0b\xb9\x1d\xb1\xa9\xfe\x06\x4e\xbb\x56\xae\x80\x66\x4b\x2b\x3b\x8a\x39\xd7\x0f\x5a\xd7\xd6\x9a\x7d\x46\x70\xe0\xf5\x09\x14\x14\x92\xd7\xec\xaf\x7f\xad\x0d\x42\x5f\x17\x34\x1b\x4d\x2c\x07\xca\x77\xc8\xbc\x12\x9a\x23\x09\xc5\xde\x0e\x21\x52\xa1\x7e\x7f\xdf\xeb\xb1\x71\xfa\x09\x84\x82\xaa\x98\x71\xb8\xf8\x79\x3e\x49\x73\x1d\xa6\x04\xc8\x8a\xbc\x5a\xd7\xd6\x24\x23\xd1\x68\xdf\xd8\xa8\x2b\x3b\xac\xa3\x59\x6e\xb8\x24\x7d\xe3\x91\x15\x42\x83\x20\xbb\x01\x25\xd5\x10\x61\x8f\xfc\xc7\x0d\x12\x8a\x90\xe9\x2b\xe0\x0e\xfd\x92\xd2\x9c\xfd\xfc\x82\xf5\xd8\x9b\x37\x72\xa1\x8d\xcd\xba\xb6\xa6\x76\x92\xfe\x89\xf5\x56\xd4\xd9\x55\xb8\xb7\xce\xae\x11\xd9\xd1\x38\x44\x4b\x08\x97\x6c\x9d\x98\x62\x31\x25\x93\x0d\xee\xf5\xd8\x1e\xb2\x16\x72\x02\x72\xbc\x1a\xcb\xb7\xb7\xea\xa6\x58\x5b\x63\x5d\xa4\xe9\xb7\xb7\xe6\xc0\x6e\x6f\xd9\x8a\x43\x1f\xb4\xa8\x0c\x08\x87\x52\x13\xc9\x72\xf8\x81\x35\x98\xa3\x6c\x81\xcf\x0e\x89\x4f\x12\x9f\x15\xd7\x72\x26\x8e\xa8\x90\xd7\x64\xdd\x6d\xbb\xf8\xf4\xf5\x0f\xe7\xc0\x1b\xc8\xe5\xdb\x36\x90\x0f\x04\x45\x0e\x89\x8e\xab\x7e\xff\xcf\x08\x75\x7d\x76\x3f\x51\xa1\xf5\x31\x83\xc2\x55\x7d\xba\x54\xdb\xea\x88\xbb\x2b\x30\xd2\xb5\x51\x28\x00\x49\xd7\x6c\xa9\x47\x8c\x58\x62\x1c\x04\x64\x52\x62\xd0\xa8\xdd\xe8\x2b\xb2\x18\xef\xd6\x40\x71\x8b\x12\xe7\x40\x92\xa8\x2e\xc8\xb8\x4e\x54\x56\x62\x41\xbb\xf4\x6f\x74\xc4\x9e\xca\x6f\xd1\x1b\xf6\x95\x77\xc5\x03\xc9\x17\xc8\x31\x35\x24\x2b\x2a\x58\x22\x1a\x79\xd9\x54\x12\x3b\x04\x1b\xe6\x40\xc4\x9a\x3b\xad\x8b\x03\xaf\x54\x52\x17\xeb\xa9\x23\x96\x80\xf2\x8d\x42\xd7\xbb\x82\xb8\x28\x5a\x4f\x73\x50\x1a\x80\xe0\x05\x99\x18\x25\xb3\xb9\x3f\x3c\x3a\x3e\x3c\x3d\x74\xb9\xd9\x69\x5c\xf2\x64\xfd\x92\x5f\x0b\x9e\x53\x02\x75\x82\xfb\x78\x33\x1c\x56\x08\x7a\x62\xd3\x4b\xe3\x10\x13\xb4\x90\xe4\x82\x50\x46\x2a\x12\x95\xd2\x85\x9e\x9e\xe2\x79\x3f\x3b\x37\xb5\x29\xdb\x4a\x91\x42\x1b\xe1\x30\x80\x8d\x21\xfe\x5a\xd9\x51\x13\x09\x04\x52\xbb\x87\xa8\xc7\x12\x27\x19\x9b\x43\xa3\xa7\xca\xd1\x2f\x08\x02\xbc\x2e\xe7\xf9\x62\x26\x38\x61\xb6\x26\x0e\x70\xc2\x73\xe5\x65\x46\x0f\x5f\x61\x26\x3a\xcc\x56\x1a\xc8\x50\xe0\xd4\x07\xdb\xc1\xc9\x9e\xa5\x4f\x9f\x1a\xd4\xe0\xff\x37\x57\xa4\x8b\x63\xa0\x31\xdd\xde\xfa\xc7\x64\x6e\x2b\x04\xd0\xbb\x0a\xb7\x03\x39\x3c\xee\xb0\x9b\x3b\xf5\xa0\xe5\xbe\x15\x71\x05\x3e\x59\x0f\x49\x65\x5a\x07\x64\x75\x7a\x11\x32\x0c\xf3\x42\x3d\xf6\x7a\x6c\xf3\xbb\x68\x33\xda\x8a\xbe\x63\x3d\xb6\xf9\x75\xb4\x15\x3d\x8b\xb6\xe4\xad\xea\x5c\xd4\x87\x01\x49\x66\xf7\xec\xe7\xb6\xed\xec\xec\xe6\xc7\x6f\x4a\xd8\x63\xd0\xc8\x11\x31\x7a\xee\xf5\xef\xc7\x93\x77\x3a\xb6\x2a\xf7\x90\xf0\x87\x5b\x98\x76\xf0\xa1\xd6\x48\xd1\x56\x50\xfb\x4f\xb1\xfd\x87\x67\xf2\xdb\xb9\x56\x5f\xe1\x3d\x7e\x68\x07\xc8\x30\x6f\x6e\xb1\x65\x0f\x4d\x5d\xbe\x05\xeb\x6a\x6c\xac\x42\x87\xaf\x55\x7c\xba\xdd\x1c\x2e\xc1\x2b\x0b\x5d\x7d\x99\x1a\xcd\x0a\x28\x52\x45\x63\x0b\x45\x86\xca\xf8\xe4\x7a\x76\x51\x64\x95\xbb\x55\xbe\xd5\x5b\xe5\xb9\xbf\xe2\x7b\x71\x56\xd4\x7e\x79\x42\xd6\x0e\x8f\x44\x2c\x4a\xd6\x21\x9c\x63\x1e\x67\xa6\xe8\x9f\xf0\xfc\xc7\x66\x2d\x71\x8e\xd7\x2f\x16\x13\xa8\xd7\x09\x04\x5a\x46\x71\xdd\xed\xe0\xc1\xed\x84\xac\xa3\x90\x43\x54\xec\xde\x39\xc2\x50\xad\xbd\xe0\x9f\x8a\x75\xbc\x60\x46\x62\x3f\xe8\x91\x06\xf6\x31\x9e\x1f\xec\xfb\x67\x3c\x4f\xb5\xaa\x01\x35\x0f\x7b\xbc\x1a\x39\xb0\xd2\x3b\x77\x3d\xe1\xd5\xe8\x73\x6e\x8a\xba\x38\x2a\xd3\x59\x4a\xd2\x80\x03\x3c\x97\x45\x1a\xe1\x4b\x4f\xf4\xc1\xfe\x8b\xe1\xde\xe1\xbb\xe1\xde\xfe\x9b\x83\xf7\xee\xb4\x52\xfe\x62\x3d\x29\x66\xeb\x8e\xf6\x66\x72\x78\xb4\xd7\x86\xf2\x3d\xa5\x39\x6c\x2c\x51\xbb\x82\xf1\x15\x36\xd9\x6f\x5b\x27\xdd\xa8\x58\x97\x23\xeb\x38\x1f\xd8\xe7\xf9\x08\x3e\x2a\x04\x75\x8f\x4c\xd6\x1d\x44\x0d\x6b\xc2\x01\xab\xcb\x6b\xe7\x44\x8a\xb1\x60\x3f\x74\x08\x47\x60\x20\xef\x0a\xc1\x87\xf5\xbe\x22\xf3\xee\x57\x3d\x24\xf7\x06\x01\x39\xd2\x94\x43\xaf\x7e\x77\x65\x7e\xb0\x1f\x8d\x91\x58\x03\x50\xc8\x0e\xcf\x8e\xce\x83\x07\x30\x1c\x83\xd5\x51\x51\xf2\xf5\x5f\xab\x1e\x71\x99\xbd\x71\xde\xc3\xdd\xd0\xab\x78\xbd\xae\x0e\xc4\x7a\x31\x1e\xac\x06\xdb\x4d\xfd\x9e\x5e\x81\xe1\x90\x57\xef\xa0\x23\xcd\x9d\xe3\x72\x0e\x4b\x1e\xdb\xfb\x0e\x3e\xd0\x21\xd3\x10\x5b\x6c\x87\x0d\xe1\x3c\x17\xf3\x63\x04\xdd\x43\x0e\xb2\x8b\x00\x46\x05\x30\x37\xcc\x78\x5e\xc7\x4d\xc3\x82\x5d\xd6\x69\xad\xb5\xac\x3f\x1b\x32\xb0\xd3\xb8\xb7\x54\x2a\x2e\x7e\x35\xe4\x8d\xe2\xe2\x57\x70\xec\xbe\xf8\xd5\x44\xcd\x2b\xf8\xde\x67\x37\xd2\x4c\xd5\x87\x0f\x77\xdb\xec\xce\x44\xa6\x96\x68\x08\x35\xf2\x0b\xe9\x5f\x77\xc9\xce\x72\x7b\xdb\x98\x54\xa4\x45\x82\xc6\xba\xd3\xaf\xb3\x0e\xc1\x74\xce\xff\x44\x4b\x2a\xe8\xd6\xe9\xf5\x9c\x5b\xd4\x44\x7c\x5c\x17\x3b\xb0\xea\xf8\x40\x97\xb5\xaf\x80\x8c\x8a\x93\x45\x62\xb6\x3e\x59\x24\x1d\xbb\x74\x59\x83\x93\x45\x62\x00\x53\x00\x4f\xb3\xb9\xf1\x05\x9e\xa4\x1e\x95\x75\x9a\xe0\xcb\xda\x27\x90\x3f\x6c\xb3\xe9\x2e\x46\x59\x5c\x55\xbb\x71\x96\xed\x4e\xf9\xe8\xb2\x2b\x79\x01\x4b\x79\x2a\x7a\x43\x29\x4b\x16\x9b\x3c\x83\x09\x28\x20\x7d\xaf\x97\x06\xab\xbb\x98\x00\x47\x90\x2a\x16\x33\xe8\x15\x5f\x94\xc8\xa1\x08\x22\xc3\xee\xdc\xe1\x49\x3f\x21\xa3\x93\x63\x98\x77\xb7\xe2\xd9\x38\x84\xf6\xd4\xf0\xc4\x27\x7b\x04\xc7\x7c\xcc\x4b\x9e\x8f\xd4\x30\x20\xe3\xc9\x34\x86\xbc\xb4\x17\x98\x53\x13\xc2\x5b\xa7\x15\x4f\xd8\x3a\x46\x1a\xeb\x06\x16\x84\xe8\x82\x27\x34\x3c\x49\x83\x63\x0c\x38\x22\x59\x36\xf8\x7b\x07\x82\xbd\x22\x0d\x1d\xac\x8a\x03\xda\x2c\x35\x66\xcb\x5e\x61\x41\x9f\x89\x71\x37\x16\x46\x46\x67\x6b\x0b\xcc\x66\x72\x8c\xba\x80\x22\xce\xea\x6e\x20\x5c\xac\x5d\x4c\x2f\x6a\x5b\x16\xea\x44\x00\x9b\xef\xb2\x66\x8b\xaa\x66\x3c\x85\x1c\x41\x17\x1c\x63\xad\xc0\xeb\x19\xd9\x09\xba\xd1\x0d\x56\xd9\x53\xd6\x18\x0f\x20\xed\x51\xf1\xe3\xec\x01\xeb\x2a\x21\xbb\x61\x06\x3b\x2b\xb6\x36\xa8\x2b\xfa\x4c\x23\x48\xf0\x79\xbc\x8c\x2f\x32\xae\xdc\x8c\xae\xca\xb4\xc6\x0f\x82\x8a\x85\x0c\x82\x88\x4e\x16\xa5\xfe\x06\x86\xbf\x6d\xb4\xfa\x1b\x08\xa6\xf1\x55\x36\xf3\xff\xca\xff\xbd\x65\x91\xfa\xf7\xc6\xb3\xc3\x55\x17\x64\xe2\xdd\xeb\xff\x6f\x78\x72\xf0\xc3\xfb\xfd\xbd\xe1\xb3\xcd\xe1\xdf\x0e\x4e\x87\x07\xef\x4f\xd9\x0e\xdb\xdc\xf8\xf6\xd9\xb7\xcf\x37\x5f\x6c\x3d\x03\xe2\x00\x8e\x78\x19\x04\x02\xa6\x91\xa4\x15\x9b\x17\xd9\xf5\x38\xcd\xb2\x08\xca\xa7\x75\x3d\xaf\xfa\xbd\x5e\xc2\x3f\xf2\x4c\x70\x39\xd1\xac\xf8\x67\x9a\x65\x71\x54\x94\x93\x1e\xcf\xd7\x7f\x3a\xe9\x25\xc5\xa8\xea\xfd\xc2\x2f\x7a\xff\x19\x7f\x8c\x4f\x80\x03\xea\xa9\xc3\xd2\xfb\x01\x0c\x96\x43\xec\xa0\xea\xe1\xbf\xbd\xb4\x32\xf6\x27\x6e\xf3\x83\xaa\xfb\x29\x64\xd7\x86\xe3\x04\x26\x1e\x68\xc4\x84\xc7\x0c\x4c\x1b\xe2\x50\x6c\xb2\x1e\xfb\x44\xf9\x76\x7a\xec\x9a\x18\x21\xd3\xd9\xd0\xaa\xf3\x49\x6c\x88\x6b\xf8\x79\x2d\x25\xe1\x3b\x4f\xd6\x09\x48\x88\xb3\x3f\x4b\xeb\x9a\x97\xf2\x2d\xa6\xd2\x30\x60\x92\x9c\xb2\xd2\x7a\x03\xe9\xd0\x81\x3d\x16\xb9\xc1\x20\x16\x79\x97\xe0\xcd\xf4\x9f\xd4\x02\x8a\xe5\xb2\x5c\x2a\x91\x48\xab\x55\x8c\xc7\x66\x3b\xe3\xf1\x92\x86\xd8\x8e\x6e\x73\x9c\x66\x62\xd4\x5a\xac\x9c\x5a\x3e\x36\x32\xbc\x24\x20\x81\x2a\xe9\x78\xad\xee\x20\x6c\x23\xf7\x84\xd7\xdd\xa6\x87\x00\xe0\xc7\xa9\x57\x59\xf5\x2a\x5e\x77\x73\x7e\xf5\xb3\x00\x0c\x29\xbd\x76\xf2\xb7\xb4\xae\x02\x47\x5d\x88\x2f\x5b\x7e\x36\x1a\x34\x90\x35\x2e\xca\xfd\x78\x34\x35\x67\xd6\x40\x88\x9e\x1f\x16\xe1\xe2\xd9\x7d\x7a\x66\xab\x9c\x0e\xac\xbd\x50\xe4\xd9\xf5\xee\x34\xcd\x92\xee\x48\xfc\x7f\xc9\x73\x5b\x02\x03\x9d\x75\x94\x56\x18\x0e\x43\xc3\xbc\x62\xf2\xf7\xd9\xc6\x39\xeb\xab\xbf\x9a\x79\x59\x60\xb3\x1d\x0b\x06\x86\x38\xb1\x2e\xdd\xb0\x12\x55\x71\x36\x5a\x64\x82\x51\x6b\xe0\x0c\xb8\x81\x23\x88\xc9\xcd\xcb\x27\xd0\x05\xb6\x11\xb2\xa1\xb8\xe0\x04\xf1\x7a\x42\x7e\x34\xa7\x52\x2b\x41\x9e\xfc\xf8\x55\x48\x2d\x6c\x87\x75\x86\x43\x1c\xc7\x3a\x70\x52\xeb\x54\xba\xde\x61\x4f\x59\x77\x23\x44\x76\x46\x72\x83\x41\x17\xdc\x82\x87\xc3\x8e\xd1\x9e\x1c\x85\xa5\x0d\x1a\xaa\x80\x13\x3a\x9b\x86\xba\x86\x64\x0d\x18\xab\x04\x53\xde\x66\xaa\x11\x09\xd6\x75\x9c\xd5\x86\x35\x9f\xcd\x43\x36\x44\x53\xdf\xb0\x04\x67\x22\x09\xe0\x72\x21\x08\x24\x9b\x0a\x7c\x3e\x6d\xc3\x0c\xde\x5f\xb8\x7e\x72\xe0\x97\x22\xce\x16\x2e\xb0\x80\x0a\x42\x36\xa4\xf8\x78\xdb\xf8\xeb\x7b\xa8\x8d\x7f\x38\x8f\xeb\x45\xed\xb3\x21\xb9\x44\x69\xbf\xba\xa1\xe5\xcf\xd6\x4c\xeb\x24\xe6\xc3\x76\x58\x17\x66\x89\x3f\xd0\x94\xbd\x84\x81\x21\x4c\x28\x64\x82\x18\x47\x2e\x36\xfa\x6b\xc8\xce\x04\xe0\xb9\xd4\x59\x88\x01\x06\x41\x40\x98\x94\xff\x46\x1c\x09\x9f\x8a\x98\x6e\x51\x43\x04\xc1\x7c\x2e\x48\x19\x43\x5c\x0f\xf1\x6f\xfb\x00\x8d\xb5\x0a\xdc\xa0\xc6\x72\x6d\x0c\xb7\xc1\x09\xaf\x77\xf5\x96\xb6\x4c\x32\x4e\x51\x63\x6f\x94\x7c\xbc\xed\xc3\xe9\x18\xb4\x99\x30\x84\xf1\x99\x71\x04\xc4\xe2\x98\xd3\x0e\x65\x13\xd2\x82\xd0\x3a\xc8\x91\xc4\xeb\x2f\x69\x96\x1d\xe3\x53\xf8\x23\xca\x2e\x64\x05\x9e\xf2\x02\x41\x7a\x84\x23\x23\xa1\x91\xb4\x3f\xb8\x08\x46\x3e\x4b\x02\x47\xe6\x75\xa4\xa7\x5d\x64\xc9\xcf\x44\x41\xdd\xfa\xdb\x36\xa4\x24\xb0\xac\xd1\xa8\x03\x68\xd0\x4c\xb6\xa3\xa3\xee\x0f\x2c\x87\x4f\x75\x75\xcb\x01\x84\xaa\x03\xd7\xb7\xd3\x6e\x6f\x03\x9c\x44\xde\x17\xf4\x79\xb0\xfc\x29\x8d\x55\x55\x73\xc2\x0d\xe2\x88\x2f\xa4\xb4\x8a\xf3\x95\x17\xca\x37\x58\xd6\xf7\x73\x4d\xdb\xe6\x38\x28\x78\xb7\x3f\x37\x43\x47\xa7\x66\xe8\x34\x02\x62\x00\x25\x95\xc2\x9b\xa6\xa6\x5d\x73\x66\x6b\xfe\x11\xe0\x8b\x19\x03\x30\x64\x1d\xdf\xac\xfa\x4c\x85\x75\xc0\xd7\xf4\xfa\x76\xa6\x50\x2f\x31\x66\x63\x78\xb6\xb9\x7e\x91\xd6\x90\xc1\x66\xc2\xcb\x48\xe6\xfb\x57\xd1\x1c\xfa\xec\x2f\x55\xa7\xe5\xce\x64\x9e\x08\x35\xc6\x14\x6e\x77\x9c\x3d\x82\x38\x33\x41\x56\x3c\xf1\x56\x98\x75\x02\x23\xe4\x17\xac\xbd\xb9\x7c\x38\x8d\x9f\x77\x0f\x38\xbe\x14\xd6\x7e\xc7\x4c\xc9\x91\x3b\xb7\x8d\xe1\x2f\x44\x47\xca\xb8\xcc\xed\x1e\x08\x54\x76\x84\xec\x25\xa9\x27\xa2\xc6\x2d\xa7\xc6\x63\xdc\xdc\xb5\x54\x5b\x74\xbd\x17\xbb\xa4\x5f\xbe\x32\x97\xa0\x19\xaa\x0d\xa5\xf2\x29\x24\x8b\x4f\x2a\x80\xa4\xa5\xad\xc0\xb8\xda\x25\x27\xd1\x72\xb5\x6f\x79\xee\x76\x59\xc5\xbc\x8e\xb6\x3c\x97\xbb\x84\xf3\x5e\xee\x5b\x74\x17\x6d\xe1\x95\xb1\x75\xef\xfd\x2e\x5b\x6b\xbd\xdf\xb7\x1e\x76\xc1\x6f\xd1\x0d\xbf\xa5\xaf\xf8\x2d\xba\xe3\xb7\xe8\xcf\xb6\x5b\x7e\xab\x79\xcd\x6f\xdd\x77\xcf\x6f\xa9\x8b\x7e\x4b\xdd\xf4\x5b\x8f\xbb\xea\xb7\xfc\x77\xfd\xd6\xf2\xcb\x7e\x4b\xfd\xa0\xbc\x30\x3b\xf6\x8d\x02\xc2\x30\x01\x4c\x38\xf2\xa3\x5d\x1d\xd1\x45\x55\x2e\xf2\x9f\xe6\x09\xd6\xd7\x1b\xe4\x3e\x5e\x9f\xae\xac\x8b\x8a\x97\x1f\x15\x55\x97\x0d\x9a\x5f\x6f\xad\x9c\xdb\xe0\x45\x61\x95\xaf\xd9\x1d\xf8\x48\x8b\x9c\xa4\x4a\xc5\xd1\x3a\x39\x33\x89\x86\x49\x4a\x88\xbf\xd9\x7a\x00\x83\x23\xb7\x6b\x83\xc5\x91\xdb\xf3\xf7\xe5\x1e\x3c\x58\xd5\x64\xd4\x2c\x30\x0e\x09\x90\x36\xa7\x92\xfd\xa7\x95\x30\xe8\xf6\xb6\x59\x0a\x5a\x9c\x57\x2d\x4a\x87\x5e\x8f\x9d\x2c\x2e\xaa\x51\x99\x5e\xc0\x35\x14\x67\x19\x2d\x5a\xc5\x2e\xae\xa5\x46\x51\x8e\xa6\xcf\x9c\x61\xda\x34\x76\x19\x1a\xf7\xd2\xe4\x1d\x65\xf8\x6d\xa2\x4f\x16\xba\x49\x5a\x61\xf6\x44\x3b\x2d\x1a\xea\xc4\x50\x6a\x81\x8a\x0a\x3c\x8f\xea\x18\x34\x52\x9f\x78\x17\xc5\xb8\x4e\xfe\xb7\xaf\x8a\xd8\xb7\x3f\xe5\xb3\xd6\x85\x31\xca\xbf\xf8\xda\x8c\xc7\xf7\x2c\xce\xd2\x29\x48\xc2\xe0\xc8\x1e\x92\x58\x7c\xc6\x50\x4d\x66\xc2\x3b\x62\xd0\xaf\x2c\x49\xe4\x43\x0d\x98\x3a\x82\x47\x4d\xe9\x11\x1c\x8f\xd6\x7d\x78\x78\x9f\x00\x3f\xc2\xc5\x41\xf2\x48\x1b\x3b\x24\x47\x71\x0f\x3b\xa4\x06\x3b\x72\x39\x21\x9f\x2e\x43\x72\x42\xbe\xb2\x87\x73\x42\x2d\x0d\xe0\x90\x9a\x6a\x3d\xc9\x2a\xf5\xd5\xaf\xd0\x46\x74\x5f\xfd\xb2\xd4\x49\x4d\x5b\x5c\x53\xed\xf3\x70\x23\x5b\xaf\xc7\xfe\x3a\xce\x8a\xab\x41\xde\x30\xb7\x7d\x54\xb1\xfb\x3b\x43\x7a\x26\x32\x5c\xe4\xe9\x7f\x2f\xf8\x30\x4d\xa4\xc6\xa6\xd5\x7f\xc7\x79\x1b\x83\xf5\xe5\x7b\xae\xae\xf9\xe7\xed\xad\xb8\x64\x31\xbf\xa0\x74\xe1\x51\x61\xa2\xe7\xd7\x65\x3a\x99\xd6\x10\x2d\x77\x6b\x63\xf3\xf9\xfa\xbc\xe4\x15\xa8\x1e\xde\xc4\x23\x7e\x51\x14\x97\x21\x3b\xc8\x47\xfa\x7d\x2e\xb8\xe9\xd3\x0b\x39\x88\x6f\x9a\x56\x2c\x4b\x47\x3c\xaf\x78\x02\x14\x0e\x9f\x21\xbf\x3b\x38\x95\x9f\xd9\xb8\x58\xe4\x94\x72\x1e\x5f\x21\xbf\x3d\xd8\xdd\x7f\x7f\xb2\xcf\xc6\x69\xc6\xe5\x13\xfc\xb2\x28\x6a\x96\xa4\x25\x1f\x61\x22\xe2\x31\x26\xa8\xa7\x9e\xea\x92\x73\x35\x06\xc8\x3c\xec\x45\x27\x98\xd0\xfd\xcf\xce\xac\x22\xb2\xd0\x49\x34\x18\xa1\x8d\x53\xd1\x4e\x1a\xe7\x35\xc4\xcb\x83\x88\x55\x59\x31\xa9\x58\x2c\x33\xf7\x09\xfa\x01\x2f\xde\x8b\x3c\x81\xd4\x4b\x02\x01\x79\x51\xb3\x19\xc7\x90\x3a\x88\x21\x7a\x9f\xbd\x10\x58\xa9\x0b\xd1\x06\x4b\xab\x6a\xc1\x21\x8b\x32\x29\xe7\xe1\xa9\x0f\xcf\x3f\xa6\x65\x91\x03\x0f\x2a\xca\x46\x65\x5a\xa7\xa3\x18\x1f\x58\xcf\xe3\x7a\x5a\x45\xec\x98\xcf\x8a\x8f\x10\xa4\x66\xca\x45\x53\x13\xf1\x1b\x90\x2f\x58\x66\x2d\xc6\xda\x8d\xc1\xeb\xef\x4b\xce\xe7\x0a\xef\x55\x3c\x83\xfa\xe9\x08\xe2\xa2\x8c\x0b\x88\xd6\x20\x1a\x85\x12\x68\x11\xbb\x54\x68\x16\x58\xd5\x26\x4f\x0b\x89\x80\xc2\xc7\x4a\xd8\xe8\x71\x9f\xe6\xf5\x2f\xaa\x51\xfd\xb6\xda\xf8\xde\x1d\x17\xe5\x2c\xf6\xbc\x93\x7d\xb8\xee\x8f\xbd\x64\x9b\xec\x15\x56\x58\x67\x9b\xac\xcf\x36\xb4\x3a\x70\xf3\x3e\x75\xa0\x12\x13\x44\xdd\x76\x85\xa0\x95\xae\x20\x2e\x27\x32\x67\x99\x99\xef\x70\xc6\xab\x2a\x9e\x40\x98\x12\x9a\x5d\x1f\x04\x7b\x9c\xa2\x8e\xce\xf7\x97\xca\x0e\x60\xdd\xa4\xf2\x30\x28\xd9\xcb\xd3\xa7\xe7\x76\xa6\x3f\xcb\x91\x6c\x54\xe4\x55\x91\xa1\x32\xaa\xa3\x38\x0f\x53\xd1\x41\x10\x11\x07\xe3\x1f\x0d\xd2\x52\xb1\x33\xd3\x8b\x05\x5c\x23\xd7\xd7\xd7\xd9\x2f\x3c\x1b\x15\x33\x60\x43\x12\x7e\xb1\xc0\xdd\x08\xd4\x51\x14\x1b\xc0\x70\x10\xa0\x75\x76\x15\x57\x68\x72\xcc\xd1\xf0\x3b\x2a\xf2\x8f\x3c\x4f\x79\x3e\xe2\xac\x2a\x30\xa9\xcf\x75\xb1\x80\x63\x23\x0e\x36\x9e\xfd\x3a\x1e\x5d\x1a\xed\xd5\x05\x1b\xa7\xb9\x0c\x38\x91\x65\x55\x5a\x73\xac\x3a\x8a\xf1\xa0\x89\x5a\x72\xb7\x02\x74\xc9\x23\xcd\xa2\x49\x8b\xe7\xbe\x77\xc2\xd2\x1d\xe7\x53\x40\x51\x9c\xe5\xdd\x78\xd5\xdc\xa9\x32\x8b\xa7\x22\x02\x21\x73\xf6\xab\x58\x09\xfc\xe4\xbe\x49\xbd\x69\x1b\x50\xe7\x43\x6b\xb3\xa1\x7c\x9a\x19\x7c\x90\x34\xcd\x24\x49\xa0\x25\x92\xbb\x4c\xee\xd3\x4e\x43\xa8\xd1\x63\x52\x0f\x84\x3b\x6f\xe2\x34\xe3\x09\x04\x01\x2f\x00\x9f\xf2\xfa\xed\xb3\x4e\xd0\x88\xb5\x4b\x39\x2e\x8d\xa4\x29\xaa\xa2\x62\x11\xa0\x05\xb0\xf3\x8e\x84\xbc\x1f\x79\x06\xb1\xa2\x26\x68\xb4\xfd\x59\xd2\x3f\x7b\xc9\xb6\xe8\x8c\x6f\xb1\x75\xb6\x65\x1c\x72\xd1\xc4\xd6\x23\x35\x02\xa2\x89\x87\x6a\x05\x4c\x6a\x45\xd2\xbc\x91\xf9\xe8\x0c\x11\xed\x48\xf3\x5e\xfb\x55\xe3\x8a\xa7\x65\x15\xec\xc3\x60\x55\x5f\x73\x83\x55\xeb\xd2\x6a\xdc\xdd\xcf\xfe\x15\xee\x6e\xa6\x6e\x16\x75\x98\x66\xf1\x25\xdf\x37\x2f\x16\x81\x2c\x9b\xbb\xf1\xd0\x44\x4d\x11\xb7\x2d\x6c\xea\x84\x68\x69\xa5\xeb\xc5\xa3\x11\x9f\xd7\x18\x0e\x2c\x49\xab\x51\x5c\x26\x15\x86\xc1\xab\x20\x65\xed\x34\x16\x97\x38\xab\xd2\x84\x33\x3e\x1e\xf3\x51\x5d\xa9\x68\x40\x78\x13\x97\xe9\x2c\x2e\xd3\xec\x5a\x90\xa7\xf1\x22\x63\x69\x92\x16\xb3\x18\xae\xea\xec\x1a\x36\x6f\xf1\x91\x97\x65\x9a\xc4\x17\x19\x37\x1f\xc0\x25\xf3\x22\x85\xeb\x78\x9a\x8e\x30\x72\x49\x9c\x5d\xc5\xd7\x15\x05\xcf\x01\x45\xaf\x68\x44\xd4\x0b\x59\x95\x0a\x92\xf8\x9f\x27\x2c\x8b\x47\x97\xe2\x8c\x0b\xb1\x70\x1d\x7c\x45\xa0\x47\x16\x67\x31\xdb\x2d\x46\x45\x1c\x19\x59\xdb\x5c\xbe\x47\x77\x6f\xe1\x35\xc0\x27\xbb\x83\xdc\xfa\x1c\x09\x12\x8a\x5a\x11\xb1\xfb\x1a\xcb\xb1\xbd\x04\xfe\x0d\x04\x70\xf1\x54\xd2\x6f\x09\x5a\xeb\x9e\x96\x0b\x7f\x55\xe9\x58\xd9\x5a\xf3\xbd\x10\x95\x7d\x35\xc1\xbb\x65\x69\x9f\x9e\x47\xa6\xc6\x3e\xab\xf1\xcd\xcc\xdd\xb2\x26\x5e\xcb\xdc\xc8\x66\x33\x8d\x1d\x8b\xfb\xb2\xe5\xc5\xaa\xcd\x46\xf9\x3c\x35\x2d\x53\xb5\xed\x75\x1e\x97\xa5\xf7\x59\xbc\x16\x1b\x6d\x47\x7e\x80\x17\x4c\xc0\x19\x65\x6e\x86\x36\xcf\x3b\x5a\x1a\xc0\x68\x57\x78\x85\x87\xec\x86\x69\x52\x7e\x87\x61\x23\xc9\xcb\x6f\x7b\x90\x13\xa8\x9d\x3e\x92\x80\xfe\x7a\x11\x5f\xf0\xac\x57\x2e\xf2\x3a\x9d\xf1\xde\x94\x67\x73\x5e\x56\x3d\x5e\xcd\x7a\x16\xb8\xd1\xce\x91\xf2\xfd\xc3\x26\x0c\xb7\x3f\x0d\x24\x6f\x39\x04\xa9\xd3\xfc\x7a\x5d\x3a\xda\x6d\x3f\xca\x81\x06\x6d\xe9\xb3\x59\x91\xff\x5a\xa1\x97\x8b\x36\x4e\xa1\xc0\x04\xdb\xc3\xe1\x98\xd8\x2b\xb3\xb0\x2f\x2b\x5c\xa5\x79\x52\x5c\x79\x80\xa9\xa0\x6f\xb7\xdc\xda\xaa\x7c\x47\x6f\x10\xc4\x09\xaf\x7f\x02\x39\xf0\x40\xa5\xcf\x7d\x80\xac\xa8\xf6\x83\x3d\x45\x25\x12\xfa\x3e\x5b\xa2\xa1\xed\x4b\xf1\x6f\x17\x9f\x7f\xbb\xf8\xfc\xdb\xc5\xe7\xcf\xe7\xe2\x63\x13\x87\x65\xbe\x3d\xbd\xaf\xfe\x63\x38\x3c\xfa\xe9\x78\x7f\x38\xfc\xaa\xf7\x30\x47\x1f\x0c\x8d\xf4\x9b\xbd\x7d\xf0\x16\x55\x06\x40\xe9\x0e\xa3\xbd\x5d\xfc\xf1\x9c\xc0\x6b\x56\xbe\x5a\x55\x35\x1f\xeb\xde\xb2\xed\x9a\xed\x8c\x26\x2d\x69\x7d\x28\x5f\xfe\x37\x6d\xcd\x6a\xf4\x08\xf3\x27\x74\x6f\xa1\x81\xfd\xbf\xe3\xd2\xf2\x25\x3d\x59\x0c\xab\xe1\x9f\xce\x79\x65\xe0\xb8\x62\x7c\x9e\xfb\x8a\xd4\x24\xfc\x49\xfd\x55\x20\x12\xee\xff\x26\x77\x15\x3a\x8e\x7f\x88\x8b\xca\x1f\xed\x9b\xa2\x98\xf4\xdf\xea\x91\x72\xef\x85\xe4\x71\x4f\xc1\x1b\xe9\xb7\xfb\xa8\x4c\xd3\x6a\xcb\xbd\x93\xb6\xac\x4b\x69\xeb\x51\xb7\xd2\xe7\xb9\x61\x34\x46\xf0\x87\xf8\x63\x0c\xbe\xb0\x47\x86\x7d\xb4\xee\x9b\x34\x33\xd9\x3a\xfb\x14\x79\x2e\x46\xb9\x50\xcc\x7f\x5b\x8b\x25\x6b\x1a\x4a\x9d\x63\xb8\xf5\x3f\xed\xab\x61\xd0\x9c\xdf\xd1\x27\xe0\x1e\x2b\x7f\x03\x17\x7f\x3e\x87\x8b\x25\xb8\x6d\x77\xb9\xf8\x73\x22\xf7\x5f\xc4\x6f\x42\x8e\xfb\x5f\xdd\x59\x42\xce\xe3\x7f\xde\x43\xe2\x0f\x74\x8d\x70\x2f\xe2\x25\x0e\x11\x5f\xca\x19\x02\x62\xb0\x90\x49\x13\x84\xe2\xe6\x43\x64\xaf\x77\x84\x74\xa3\x50\x51\x79\xa1\x91\xed\xe5\xf1\x94\xed\x3b\xbf\xe5\xe9\xa3\x18\xde\xa3\xde\x14\x6a\x20\x44\x4c\xb3\xb2\x1d\x72\x43\x01\xd8\xd0\x2d\x6f\xf8\x30\x28\xee\xa3\x9f\xd4\x4a\x75\xda\x83\x5e\xd5\xe2\x4a\xfd\x86\xa7\xb5\xa6\x5a\xad\xa1\x6a\x76\x86\xbc\x4d\xc1\x28\xe8\x01\xe0\x13\x3b\xda\xaa\x15\x44\x20\x8a\x7a\x32\x8e\x00\x05\x0f\x40\xe0\x75\x19\x8a\x02\xfb\x36\x1f\xb6\x5a\xad\xa5\xbc\xa2\x70\xd8\x21\x18\x0d\xe5\xf2\x7a\x13\x35\xc1\x71\x6d\xcb\xc8\xa2\xc3\x3e\x60\x9c\xbe\xb9\x11\x18\x59\x97\x45\xfa\x89\x28\xdb\x69\xf9\x7e\x7b\x6b\x84\x07\xb4\x2a\x9b\x8f\x47\xed\x40\x64\x62\x21\x07\xab\x40\x35\x06\xab\xe8\xdf\x21\x6b\x05\x66\x0b\xf2\x39\xaa\xf9\xaa\x1e\x88\x99\x17\xd5\x0a\x35\x46\x0b\x10\xc9\xca\x68\xdd\xaf\x30\x25\xe5\x11\x6c\x50\x3b\x94\x25\x6c\x61\x60\x59\x42\x26\x68\x5d\x3a\x32\xd9\x1c\x12\x37\x09\x22\xf0\xac\xd6\xae\x2f\xa4\x8c\xd9\xac\x8e\x87\x61\x35\xbf\xb4\x25\x7b\x28\x26\xf1\x32\x80\x5a\x8d\xa5\xe6\x64\xbd\xa6\x94\x87\x04\xbd\xf0\xec\xdb\xd5\x70\x55\x7b\x0f\x45\xbd\x28\xea\x61\xcb\x55\x8f\x57\xdf\x48\x49\xc8\xa9\xa7\xa3\xc7\x7a\x62\xae\x58\x6d\x0c\xc5\x58\x3a\x41\x84\x70\x4b\x03\xf3\x3a\xbb\x22\xad\x29\xa0\x99\xd8\x06\x4e\x84\x19\x7f\x80\x64\xbb\x86\x1d\x72\xe6\xde\xe8\xbb\x3a\x82\xcf\x73\x1d\xc1\xe7\x9b\x96\x50\xcc\x87\x21\x3b\x0a\xd9\xeb\xba\x2e\xd3\x8b\x45\xcd\xab\x60\x90\xbb\xb1\xd5\x4e\x9c\xd8\x6a\xed\xe1\xa1\x43\xd6\xc1\x5e\x20\x7a\xb3\xdd\x53\xdf\x17\x25\x27\x99\x77\x82\x68\xcc\x64\xf0\xe6\x87\x44\xbe\x32\xfc\x65\xd2\xda\x8d\x93\x88\x04\x57\x13\xdb\x14\x12\xa5\x4a\x77\x2f\x4d\x61\x57\x3a\xd6\xa6\x4d\x9d\xe0\x5c\x43\xea\xc0\xa1\x9c\xd2\x3c\x86\xa5\x92\x52\x82\x17\x51\x55\xf1\xb2\x3e\x9d\xa6\xd5\x01\xc5\x27\xf8\x27\x4f\xec\xea\x3d\x2f\x4c\x93\xdc\x3e\x30\x82\x82\x44\x85\x8a\x6c\x40\x63\xee\x62\xf9\x23\x63\x1b\xb8\xb6\x21\x01\x25\x09\x95\x81\x27\xef\x14\x60\x5c\x41\xfb\x61\x6f\x9d\x90\xba\xb6\x30\xfe\xd4\x13\x19\xcd\xb1\xed\xc2\xaa\x00\xac\xa7\x82\x3e\x1a\xf8\xa7\x26\x96\xd7\x6c\xe2\x1a\x71\xb2\x25\x23\x74\x18\x5b\x4b\x35\xe8\x09\xcf\x60\x83\x18\xc3\x06\x58\xd5\x17\xbb\x51\x1d\x98\x3b\xd9\xed\x54\x32\xe1\xd8\x68\x71\xf1\xeb\x36\x44\xfd\x20\x5e\xfb\x31\x4d\x50\x64\x91\x07\xcc\xa0\xb8\xf8\xd5\x89\x59\xb6\xa3\xe0\xb1\x18\xb4\x0a\xf4\xc9\x60\xd9\x5e\x19\x13\xd4\xe6\x52\x3d\x68\xa5\x12\x30\x06\xd8\x88\x94\x41\x1b\x15\x07\xef\x1c\xe9\x65\xa3\x56\xad\xba\x98\x0f\x9a\xa8\xc7\xdd\xdc\xdc\x8c\xea\x60\x2f\x19\x8e\xa5\xdb\x30\x27\xa2\xa5\x0b\x57\x18\xfa\xcd\x1d\xfd\xf1\x6b\xb7\x64\x6a\xd6\x99\x37\x87\xdd\x7e\xc8\x11\xe8\xf1\x97\xb9\xe7\x4c\x2f\xbf\xc5\x29\x0d\xa0\x15\x38\xbd\x05\xfc\x8a\x5f\x44\x49\x31\x43\xd8\x8b\x8c\xfb\x53\x57\xb4\xdd\xf6\x57\x97\xd5\x3a\xff\x54\x8b\xfb\xc9\x89\xd3\xee\x0f\x9d\xff\x24\x76\xaf\x64\x8a\x1e\x1f\xd7\x9d\x40\xf9\xc7\xc0\xed\xbc\xb5\x19\x6d\x46\xcf\xa2\xad\x6f\x19\x39\x7d\xa8\x45\x3a\xd3\x41\x79\xcf\xbb\x81\x39\x33\x0a\x62\x2f\xc3\xaf\x75\x4f\x28\x17\x55\x07\x7f\x74\x42\xeb\xae\x84\xc4\x8a\xd2\x71\x11\xc4\xe4\xa1\x18\x1d\x65\x9c\x53\xe5\xe0\x15\x88\x3c\xab\x06\x24\x0e\xde\xf9\xaf\xd7\xc3\x74\x5e\x20\x14\xea\x59\x08\xe6\x62\x93\xfd\x05\x1b\x6e\x04\x28\xfe\x0b\x44\x64\x16\x13\xb9\xf3\x38\xc9\xaa\x50\xa2\x38\x3e\x1d\x40\x94\x84\x57\x1a\x8e\x8e\xfa\x5d\xa4\x79\xad\x98\x55\x84\x7a\xb9\xc3\x0e\x55\x56\x35\x29\x3f\x4b\xfd\xa6\xe1\xdb\x97\x14\xb9\x0a\x1f\x03\x4d\x40\x63\x6c\x47\x2c\x9b\xe0\x81\xa0\x35\x3c\x06\x12\x0b\x4f\x77\x10\x48\x4a\x30\xa6\x84\x2e\x7b\x00\x00\xd9\x3a\x65\xc6\x72\x92\x51\xd4\xc5\x01\x1a\x55\x3c\xd1\xfc\xb0\x40\xa7\xa3\x20\xcd\x97\x1b\x1f\x8f\xdc\x80\x29\x0b\x85\x98\x03\x5b\x7f\x49\x8b\xf9\x1f\x71\x0d\x9f\xb1\x73\xfd\x79\x54\x24\xfc\x48\x8c\xee\x75\xbd\x34\xa2\xe8\xe9\xe1\xf0\xe4\xf4\xf8\xe0\xfd\x0f\x6d\xde\x7b\x98\x3d\x64\x5e\x54\x96\xf4\x56\xe9\xdd\x44\xe3\x03\x40\xe5\x2e\x29\x45\x41\x35\xfb\xae\x68\xc1\x28\x14\x77\x75\x65\xa2\x96\xdc\xb1\x43\x76\x61\x88\x68\x42\x8c\x04\x0f\x95\x54\xac\xb4\xce\xeb\xa3\x46\x2d\xd3\xc4\xd9\x71\xd2\x19\x8b\xa1\xf9\xd1\x34\x2e\x77\x8b\x84\xbf\xae\xbb\xa9\xec\x5c\xb2\x32\xa2\xe5\x4f\xc9\x8b\x0d\x68\x3e\x66\x2f\xc5\x5f\x17\xe3\x31\x76\xf6\x94\x6d\x02\x61\xcd\xc4\x9f\xdd\x8b\x46\x63\x02\x20\x08\xb0\x89\x11\x36\x71\x81\x4d\x8c\xc7\x63\x49\xda\x5f\x59\xc3\xc4\x06\x60\x24\xac\xcf\x62\x09\xd4\x77\x80\x30\x7e\x6b\x1a\xc2\x20\xb6\x04\x68\x37\x66\xeb\x72\xa8\xdf\x7f\xcf\x36\xc1\xfb\xa7\x7b\x81\x1f\x47\x1b\xf0\xe7\xc6\xa7\xcd\x8d\x8d\x8d\x0d\xed\x56\xd9\x4a\xa6\x46\xbe\xfc\x18\xc4\x8d\x3b\x19\x32\x2c\x09\xfd\xfe\xb0\x95\x9f\x99\x50\xc3\x17\x39\x9e\xbc\xab\x04\x91\xf9\x1a\x04\x99\x4d\x41\x64\x9a\xe4\x65\x19\xb9\xc4\xe8\xcc\xbe\xa0\xe9\x4b\xf3\x70\x84\x4b\xb3\x59\xdc\x1b\x32\xb9\x2d\x0b\x05\x9e\x1d\xaf\x2c\xae\x9c\x24\x7c\x63\xbd\x81\xea\x7d\x63\x2d\xba\x9b\xb2\x49\xb2\xd0\x38\x51\xeb\x1b\x23\xb0\xb3\x30\x38\xc2\x64\x72\xe4\xdf\x0a\x42\x30\x93\xd1\xa8\x73\x6f\x34\xd2\x38\x77\x03\xfd\x4e\x78\xed\x89\xe5\x6a\x44\x80\x6d\x8b\x38\xbd\x2c\x1a\xa8\x4f\x6a\x4d\x79\x65\x06\x08\x6d\x28\x2a\x0e\x21\x16\x0d\xfd\x25\x13\x50\xe5\x76\x70\x50\xf2\xce\xab\x30\x4f\x01\x24\x8d\x34\xea\x28\x10\x0a\x15\xbd\x83\xb9\x76\x0d\x72\xd5\x8c\x74\x7d\x04\xbf\x28\xd0\xb4\x19\x62\x3a\x39\x8a\xc6\x30\x26\x6a\x06\x82\x4b\x9b\x43\xa4\x10\xa0\xda\x3b\xd4\x0a\xdc\x3c\x8e\xb3\xec\x22\x1e\x5d\x82\x8e\x2d\x2f\xf2\x75\x8c\x01\x9e\xa5\x97\x9c\xed\x9f\x3c\x03\xff\x68\x4c\xf4\xa9\x34\x62\x45\x96\xb0\x9f\x5f\x50\x82\xbd\x4a\x7a\x51\xba\x81\x57\x47\xc5\x58\x5e\x2a\xbc\xca\xd2\xbc\x5e\x4f\xd2\x4a\xd4\x5f\x17\xfb\x6b\x3d\x4b\x73\xce\xf2\xc2\x88\x2c\x7a\xb1\x48\xb3\x3a\xcd\xab\xd6\xd0\xcb\xdd\xce\x3f\x3b\x41\x24\xc9\xc3\x41\xb5\xaf\x86\xd4\xdd\xd0\x8b\x69\xae\x5d\x23\xa2\xf5\xa8\x18\xc3\xb7\x9d\x1d\xc5\xda\xb0\x57\x2c\xad\xa3\x6a\x9e\xa5\x75\xb7\x03\x59\x31\xa8\xb7\xb4\x0e\x5c\x4c\xe1\x1d\x88\x99\x0e\xe8\xc1\x84\x7d\x6b\xca\x22\x0c\xa0\xfe\x19\x01\x77\xdf\xca\x1d\xe1\x40\x52\x6c\x62\x0d\xf8\xfa\xa2\x2a\xb2\x45\xcd\xe5\xf3\x22\x07\x3e\xa6\xe2\x75\x18\xe6\x7d\x69\xd5\x0e\x4e\x86\x07\xef\x77\xdf\xfe\xb4\xa7\x92\x2c\x34\x2e\xea\x27\x68\x05\xe7\x59\x08\x6e\xb7\xd0\xad\x75\x67\xdb\x41\x72\x9f\xd4\x46\xae\x08\x6b\xab\xcb\x39\x76\x15\x67\x65\x5e\xea\x92\x39\xb3\xe7\xd7\x55\x5d\xaa\xc4\x6f\x46\x25\xd3\x4f\xa8\xd7\x73\xd6\x80\x2d\x2a\x5e\xb1\x93\x78\xc6\xc1\x80\xf4\x7f\x78\x59\x30\xfe\xdf\x8b\x38\x4b\xeb\x6b\x16\x67\x93\xa2\x4c\xeb\xe9\x4c\x55\x5e\xb6\x55\x2b\x9e\x8d\xd7\x47\xc5\x6c\x1e\xcb\x2c\xcc\x10\xe6\x57\xe3\x0e\x52\xcd\x66\x6c\x65\x87\xf1\x2c\x68\x9e\x55\x0b\x65\xda\x99\xf2\xf0\x2c\xb5\x1f\x6f\x7d\xc6\x40\x70\x28\xd2\x33\x8b\x91\x3b\x96\xbc\x5d\x4a\x1f\x7a\x30\xfe\x7f\x0a\x8f\x76\x2a\x36\x2d\x32\x5e\x85\x2e\xee\xd6\x59\x5e\xd0\x1b\x72\x92\x48\x41\x13\xbf\x6d\xcf\x69\x9b\xd1\x04\x82\x06\x42\x04\xbb\x03\x4b\x8a\x31\xf8\x2d\x2b\x22\xcd\xfb\x1c\x58\x21\xae\xb9\x2f\x6f\xfd\x5b\x1d\x48\x42\xe9\x01\x56\x1c\xd4\xaf\x6f\xba\x1c\x4a\xaf\xc7\xbe\x15\xb7\xfb\xd7\xec\x94\x76\x9d\x3a\x92\x0f\xe5\x9a\x67\x69\xce\x76\xd8\xbb\xb8\x9e\x46\xb3\x34\x7f\x64\xc2\xb4\x5a\x70\x6d\xec\x95\x68\xa4\xab\x79\xd5\xb4\x0e\x42\xc1\x53\x8d\xcd\xff\x04\xe1\xc1\x88\x4a\xf3\xe2\xaa\xbb\x15\xb2\xaf\x9f\x05\xf0\x48\x71\x67\x87\x7d\xb7\xb1\xf1\xed\xe6\x77\xdf\x6d\x7d\xfd\xfc\xdb\xe7\x1b\xdf\x7d\xb7\xe9\x84\xfa\x7f\xf8\x5c\xe2\x4f\x6a\x2e\xf1\xa7\xcf\x99\xa0\x75\x04\x49\xbd\xa2\x8e\xac\x9a\x9f\x96\x76\x24\x22\x00\xe6\x7b\xc4\x45\xfc\x89\xa4\xab\xa7\x4c\x3e\xe3\xda\x10\xb3\x17\x48\x4a\xdd\x33\x6e\x32\x13\x0f\x4f\xa7\xd7\x98\x82\xaa\xbb\xb6\xa6\x33\xd8\xc9\x1f\x94\xc3\x0e\x7b\x32\x1f\x08\x57\xdf\x44\x31\xba\x0f\xbb\x89\xd4\x26\xf2\xb1\x80\x6f\x24\x5f\x3c\xf5\x9c\xe2\xe1\x87\x98\xfd\xca\xc3\x62\x1a\x39\x88\x8c\x60\xc3\x7b\x87\xef\x0e\x48\x3d\x01\x06\xe7\xce\xee\xc9\xc9\xf1\x22\xe3\x6f\xd3\xaa\x0e\x77\x4f\x4e\x4e\xea\xeb\x8c\xef\xf1\x51\x16\x97\x10\x33\x5a\x7c\x03\x32\x89\x00\x59\xca\xf3\xfa\x98\x8f\x6a\xf8\x73\xef\xf0\x9d\xf9\x1b\xfb\x83\xbf\x3a\xec\xa9\x58\xec\xce\xde\xe1\xbb\xd3\xe2\x92\xe7\x08\x12\xd7\xf1\x69\x19\xe7\xd5\x98\x97\x07\x35\x9f\xc1\xc7\x37\x29\x75\xfe\xf7\xd3\x77\x6f\x5f\x67\xd9\x6e\x91\x65\x1c\xc3\xc6\x8a\x2f\xce\x9f\x6f\x8a\x72\x46\x8b\x03\x7f\x9f\x70\x51\x2a\xbf\xc8\x5e\xdf\xf1\x24\x8d\xa1\xd1\x77\xe9\x8c\x9f\x5e\xcf\x39\x50\xb1\xf0\x7d\x3c\xe3\xc9\xfb\x22\xe1\xef\xe2\x79\x28\xfe\x05\x98\xa3\x38\x15\x73\xfa\xef\x05\xaf\x70\x2a\x47\xd9\x62\x92\xe6\xf4\x0f\xd6\x3c\xf9\xf9\x07\xa4\x16\x00\x70\xf2\xf3\x0f\xef\x17\xb3\x0b\x5e\x5a\x73\x3d\xf9\xf9\x87\xa3\xb8\x9e\x9e\xf0\x89\x04\x02\x79\x58\xfe\x61\x60\xe7\xe4\xe7\x1f\x10\x0f\x45\x89\x48\x38\x81\x57\x70\x7f\x5b\x8c\xc7\xd4\x26\x2c\xc3\xc9\x94\x73\xac\x7e\xca\x3f\xd5\xa7\x65\x3c\xba\xdc\xa5\x85\x90\x7d\xaa\x02\x04\x2b\x16\x23\x18\x61\x27\x90\xec\x4b\x48\x6b\xef\xb3\x97\x9a\x7b\xc1\x63\x36\x15\xd0\x98\xef\xcb\x82\x94\x56\x53\x74\xdc\x93\xab\x23\xd8\x5a\x7c\x34\x02\xf9\x87\xb4\x0e\x85\xfc\xa7\x0d\xc8\xb5\x35\xe3\x2f\x27\xeb\x84\x32\x2f\x42\xe2\x4f\xcc\x96\x64\xed\xf5\xf3\xc0\x4a\x95\x64\x95\xa1\xf8\x81\x64\xa6\x99\x0f\x49\x7d\x89\x60\x49\xb7\x65\xea\x66\x8f\xcc\x1a\x27\xc9\x69\xf1\x53\x5e\x8d\x8a\xb9\x3c\x28\x96\x24\x92\x24\x42\xb6\x5c\x68\x00\x2d\x93\xd6\x7c\xee\xcb\x05\x29\xbe\x7f\xc6\x31\x7f\x20\xa3\x88\x92\xeb\x16\x28\xf9\x9e\xd3\xfb\x06\xed\xb9\xa0\xf2\xeb\x99\x60\x9b\xcf\x1a\x70\x98\x24\xd0\x04\xda\xfa\xae\x01\x24\x93\x67\x99\x60\xcf\x36\x5c\x30\x57\x4e\x5e\x2a\x81\xd9\x7a\x46\x3c\x6f\x32\xc1\x9c\x4f\xcb\x48\x89\x00\x5d\x5d\xa3\xe6\x34\x3f\x47\xdd\xd8\xd4\x38\x4a\xf8\x4b\x21\x45\xa5\x79\xe2\xd3\x50\x8a\xef\x1a\x13\xa4\x9b\x84\x91\x7f\x21\xd5\x24\xa4\x84\x94\x9f\x2f\xdb\x34\x96\x4f\x9f\xaa\xc3\xb3\x72\xa8\x39\x24\x4b\x57\xa9\x3c\x44\x24\xbe\x5c\x0d\x96\x4a\x92\xce\xe7\xdd\x4d\xe5\x35\x80\xad\xe2\x30\x64\xb2\xce\xc0\x82\xdd\xb0\x94\x99\x16\x34\x25\xf1\x6c\xc0\x4b\x3e\xcf\xe2\x08\x64\xe1\x19\xdd\xf8\x12\x08\xb3\x55\x84\xba\x35\xb9\xe1\x95\xfb\xad\xa0\x78\xe6\x8e\x63\x69\x45\xab\x00\xd8\x1f\x62\xc5\xbf\xb0\xee\x77\xd1\xf3\xe8\x79\xf4\x4d\xc8\xf0\xc7\xb7\xc1\x20\x37\xa9\x02\x35\xe7\xa5\x15\x83\xdc\x25\x0a\xdd\x8e\x52\x31\x34\x8b\x8c\xb1\x36\x0b\x55\xbe\xc5\x7b\x8d\xd0\x8d\xac\x1f\xf7\xd6\x48\x8a\x9c\x87\xcc\x7c\x7c\xe1\xaa\x90\xc9\x97\x1d\x55\xc8\x2b\x2b\xe2\xdf\xa5\xc9\x99\x1f\x60\x4e\x79\x80\x15\x05\xe0\x96\x19\x4f\x0c\x8f\x09\xa5\xb7\x5b\x0e\xff\x2d\xb5\x1a\xc5\xd5\x75\x3e\x5a\x7f\x88\x85\xc6\xa8\x84\xae\x9b\x8f\x37\xd3\x90\x53\x06\x5a\xbb\xbc\x5a\xcf\x5e\x8f\xed\xef\xbe\x7b\x8d\x41\xd3\xd9\x37\x0c\x3b\xac\x58\x35\x4d\x67\x8f\xe0\x15\x97\xa6\xce\xd9\xdb\x3f\xd9\x3d\x3e\x38\x3a\x3d\x3c\x3e\x59\xa6\xcf\xfa\x3d\xf2\x27\xbf\xdb\x3f\x7d\xed\xc0\xcc\x78\x1d\x77\x82\xe8\xc7\xfd\x7f\xc8\x0e\x21\x4d\xb7\x03\x45\xa9\xbb\xe5\x4d\x09\xe9\xb8\xbc\x39\xba\x7e\xab\x86\x77\x91\xba\xed\x2e\x52\xdd\xe8\xd5\xa5\x3b\x30\x60\x98\x75\xe9\xfe\x27\x17\x53\xca\x34\xa7\x81\xf6\x7c\xb8\x12\x70\x0e\xb6\x78\xbe\x98\xb5\x25\x9c\x52\xf4\x03\x48\x3a\xbd\xe3\x6e\xa4\x10\x07\x79\xe3\xf1\xca\xd1\x07\xe7\x24\x7f\x70\x5e\xb5\xdf\x2f\x4d\xd4\x23\xf3\x55\x0d\x1f\x61\x53\x98\x1c\x1e\xbd\x6f\x2e\xa8\xcc\x9b\x5d\xcc\x73\x6b\x61\x9f\xfc\x80\xe9\xa5\xfc\xb0\x89\x05\xe7\x1e\x3c\x0d\x67\x1c\xbc\xbd\xfb\xd5\xdd\xf7\x64\x31\x73\x33\x5f\xc1\x10\xa3\xb1\x34\x99\x88\xf6\x9f\xec\x1d\xa9\x0f\x62\xbe\x82\x17\xc7\x69\xab\xcf\x4f\x94\xbf\x0a\x92\x19\x4d\xbf\xa0\xf4\x3f\x4f\x0e\xdf\xeb\x32\xf1\x97\x44\x35\x1e\xaf\x74\x2c\x36\x26\x82\xad\xad\xe1\x8f\x48\x15\x11\x2c\x24\xab\x3b\xfd\xc7\x91\x10\x18\x8c\x7c\x69\x54\xfa\xf7\x83\xbd\xbd\x7d\xd1\xc9\xd5\x65\xd5\xed\x0c\x31\xc1\x99\x29\xcf\x1e\x1d\x1f\xbc\x3b\x38\x3d\xf8\x79\x5f\xc2\x18\x9b\xc8\xd8\xd5\xfb\xf9\x62\x86\x39\x0c\x7d\x6a\x5f\x02\xc3\xd9\x1d\xf3\x49\x5a\xd5\xa5\x18\x3a\x12\x96\x6e\x07\x69\xf1\x7a\x49\x25\xaa\xdd\xd7\x59\x46\x49\xe9\x1a\xc0\x7a\x05\x0e\x8f\x9a\x30\xc5\x7c\xbd\x01\xe6\xc9\x24\x78\xa6\x90\x73\x4e\x50\x3f\x9d\xec\x0f\xdf\xbf\xa6\xf9\x92\x1b\x86\x5a\x25\x37\xa5\xdf\xca\x0a\xec\x38\xb5\x9c\xff\xa5\x0e\x22\x2d\xd9\x7f\x29\x27\x41\x95\x9b\x12\x2e\x25\x5e\xd7\xbc\x84\x98\x61\xff\x55\x33\xbc\x91\x42\x95\xff\x63\x92\xd6\xd3\xc5\x45\x34\x2a\x66\xbd\x7f\x66\x45\x5a\x16\xa3\x4b\xe5\xc1\x84\x81\xc8\x7a\x9b\xdf\x3e\x53\xa4\x18\xdf\xd7\xae\xc8\xbe\x6f\x6f\xd5\x6f\x63\x76\x2d\x9f\xa3\x71\x9a\x27\xe0\x59\x2f\xb9\x37\xcb\xca\x50\x64\x09\x7b\x9d\x27\x65\x91\x26\x7a\x78\xa3\x22\xe1\xd1\xa4\x28\x26\x19\xc4\x9e\xec\xcd\x7b\x1f\x5f\xc8\x71\x25\xbc\x8e\xd3\xec\x55\x9a\xec\x7c\xf3\xe2\x5b\x35\x42\x44\x1f\xd1\x11\xf3\x8a\x14\x7b\x16\xae\x9f\x6e\x5b\x54\x0f\xa2\x29\xdd\xe4\xa8\x7b\x23\x98\xcd\xb8\x13\x4a\x96\xd9\x7e\x4c\x6f\x1a\xe9\x92\x23\x7a\x09\x86\xe0\x92\xc3\xfa\x96\xdd\x05\x51\xbc\x4d\xef\xd3\x83\x20\x8a\xd9\xca\x0e\xfb\x16\xec\xf4\xec\x95\x25\xd1\x90\xd7\xe5\x9e\x15\xf9\xac\xa8\x0b\x9a\x03\xa6\x83\xd3\xfb\x09\x73\x80\xda\x92\xf2\x1e\xf8\x78\x26\x3c\xe3\x35\x37\xf7\xde\x99\x8a\x40\x96\x1c\x99\x3d\x35\x6b\x0b\xf4\x80\x6b\xe3\x8e\x59\x3f\x10\xf5\xdc\xbe\x43\x3d\x3c\x60\xcb\x59\x9f\x25\x47\x4a\xb9\x74\x55\xc6\x73\x8b\x1b\xad\xe3\x89\x31\xb3\xea\x5a\x9c\x5c\x7d\xd4\xce\xea\x78\x72\xae\xdd\x73\xbb\xb4\xfd\x8d\x6d\x43\x06\xc7\xeb\x19\x8a\x61\x75\x3c\xb1\x24\x86\xeb\x99\x8a\x9f\x82\xc4\x41\x51\x39\xe3\x74\x69\x2f\x27\x6a\x3f\x32\x1c\xe8\x18\x1d\xf2\x8e\xb3\x2e\x4e\xc8\x17\xe5\xfe\x69\xd4\xa0\xe9\x2f\xd5\xf5\x1a\xfe\xfa\x4f\x14\xc5\xd5\x03\x6e\x3a\xce\xdf\xeb\xd1\xbb\x67\xb8\xb0\xa5\x18\x37\xcc\x5a\x33\xd7\x41\x5c\xd1\x2c\x7b\xfd\x95\x75\x32\xa5\xd4\x0d\x18\x38\xc4\xcc\x5e\x08\xe0\x3a\x7f\xa1\xaa\x61\xec\xa0\x69\x5c\x75\xf5\x72\xe2\xe6\xb4\xa2\x9b\xad\xec\x19\x7e\xf3\x8e\xb2\x7f\x45\xd4\x16\xf3\xc2\x9b\x21\x08\xe4\x3e\xc5\xbf\x43\x33\x8f\xe1\x66\xc8\x6e\xee\x02\xfd\x32\x28\xad\xcf\x10\xea\x5c\x86\x2e\x31\x2c\x1a\xee\xb3\x21\x39\x52\xa3\x2f\xdc\xf1\x56\x1b\x81\xa7\x51\xd3\xcb\x9f\xb1\x3d\x63\xab\xee\x89\xe3\x6e\x66\x93\x32\x06\xbb\x11\x62\x45\x23\xf8\xb4\x32\x50\x58\x44\xaa\x71\x2a\xef\x0c\xc2\x62\x97\xdd\x6d\xfb\x76\x0c\x26\xfb\x6f\xb7\x4b\x8b\x36\x8e\x5c\x7b\x74\x5a\x37\x0c\xd2\x92\x49\xed\x1e\x59\x7a\x94\xa3\x20\x68\x31\x3d\x67\x2d\x06\x6a\x99\x68\x59\x1a\xba\xd0\x1e\xed\xee\x49\x9a\x9a\x63\x9d\x36\xb2\x6e\xbb\x5e\xd2\x30\x73\xc5\xf4\x39\x71\x38\xac\x59\xca\xd7\xd0\xce\xd3\xbe\x57\x6a\xe1\xc4\x21\xed\x37\xd1\xd8\x35\xca\x29\xfb\xa6\xea\xd8\xc7\x67\xd8\x21\x29\x3d\xe6\x67\xc8\xd5\xac\x28\x9f\xb8\xe3\x91\x75\xd1\x39\xe6\xc3\xa5\x67\x4e\x1f\x32\x8c\x8c\x61\x9f\x73\xb1\x7f\x7d\x87\x0f\x78\x05\xc8\x08\x7a\xe4\x1c\x4a\x69\xbd\x55\x3b\x9a\x3e\xec\xc3\x85\x2d\xaa\xa8\x31\x05\xea\x53\xa3\xf9\xdb\x5b\xa6\x41\x8d\xb3\x24\x3e\xd8\x87\xe7\x15\xdb\x67\x7d\x79\x2a\x15\x2a\xdb\x52\xab\x3a\x4f\x0c\xfd\xe9\x57\x53\x99\x02\x1b\x09\xa0\xab\xf3\x7b\x20\x1d\xf3\x13\xce\xcf\x45\xa8\xda\xf9\x7b\xf2\xb6\x96\xa3\x54\x9d\xed\x2d\x6d\xfb\x21\x94\x29\x60\x7b\xf6\xb3\x24\x45\xec\x68\x11\xf7\xda\x71\x8c\x69\x88\x5b\xd1\x8b\x59\x88\xd5\xcd\x25\x1a\xc8\xa9\x86\x10\x21\xba\x16\x82\x35\x35\xf0\x25\x59\xb7\x29\x84\x43\x09\x9a\x79\xd0\xcd\x5b\xc2\x83\x1d\x3b\x31\xba\xc0\x0a\x65\x6a\x27\x39\x42\x7f\x78\xb7\x7f\xfa\x3a\x68\xc9\x89\xee\x4d\x88\xee\xc1\x92\xe6\xeb\x5b\xf0\x44\x00\x36\xa6\x0e\x4e\x86\x87\x82\x62\x36\xb7\xd3\xb6\x17\x99\x08\xff\xca\x90\x23\xfa\xec\x0f\x41\xf0\x83\xf0\xab\x86\x07\xdb\xdd\xe5\x39\xe9\x30\x07\x36\xa6\x0d\x5e\x4e\x53\x6f\x3f\xd6\xe5\x33\xa1\xe7\xe0\x5b\x87\xb5\xba\x67\x52\x5b\x95\x16\xf9\x79\x80\x91\x82\x57\x34\xef\x46\x93\xd0\xc2\xab\x5a\x1d\xaa\x6f\xcd\x12\x08\x65\x93\xe3\x6a\x3e\xd2\xe9\x50\x7b\xea\x95\x8e\xe1\xde\xbe\xd2\x31\xfd\x48\x6a\xd0\x3a\x2d\xd2\xa4\xeb\x06\x1a\x25\x33\xbe\x0e\x02\x0a\x21\xa3\x74\x08\x57\xa3\x91\x27\x15\xb7\x03\x01\xba\xa1\x71\xda\xa8\x7c\x00\x55\x29\x7b\xb3\xa6\x3f\x4e\x08\x23\xb9\xc0\x0d\xa2\x2c\x3f\x4a\x62\x12\x8a\xe9\x04\x81\x4d\xac\x89\x05\xb7\x39\x1d\x9b\x4b\xc1\x86\xeb\x78\xe2\xb2\x64\x38\x10\xdb\x97\x9f\x68\x9e\x2d\x7b\xa1\xf0\x18\x38\xed\x5a\x7b\x0c\x9a\xbf\xf1\x64\xdf\x0c\x31\x28\x19\x20\xf1\xce\xf1\xa9\x15\xf2\x06\xc8\x18\xca\xcb\x83\x29\x35\xa6\x47\x9a\x08\x99\x32\x8a\x9b\x86\x25\xf9\xad\x11\x37\xd4\xb4\xba\x90\x27\x26\x93\xfa\x17\xb6\xd3\x7e\x9b\x41\x05\x50\xca\x08\x28\x9b\xf9\xa1\x31\x7a\x55\x51\xf0\x34\xcd\xd0\xdd\x34\xfb\x00\x72\xdd\xd6\x04\x64\x80\xc7\x5a\x2d\xaa\x11\x1c\xfd\x89\xaf\x65\x9d\x92\x5f\xdd\x5b\xf6\x1a\x5a\x8f\xf0\xc8\x02\xd0\x31\xdf\x71\x11\xda\xad\x55\xed\xf8\x06\xd2\x09\xfd\x03\x34\x6f\x69\x7a\x12\x82\xda\xd8\x68\x6c\x47\x3e\x89\x67\xdc\x5d\x2a\xd8\x09\x57\x97\x15\x16\xea\xfd\x00\xed\xb8\xef\x0b\x7f\x30\xde\x17\xfe\xe2\xbe\x35\xd4\xd4\x47\xec\x47\x44\x4b\x5f\x91\xa0\x3b\xc7\x9a\xce\xab\x6f\xf4\xdd\xd1\x15\xbd\x4a\x2a\xb7\x15\x6d\x85\xf2\xd7\x33\xf5\xeb\xb9\xfa\xf5\x8d\xfa\xf5\x42\xfd\xfa\x4e\xfd\xda\xdc\xd0\x3f\x37\xf5\x4f\xdd\xe4\xa6\x6e\x73\xf3\x39\xb8\x02\x4c\xe3\xea\x40\xbe\x24\x4f\xab\x5d\x08\x29\x7c\x32\x2f\x79\x0c\xd1\x66\x43\x29\xf4\x86\xb3\xb8\x1e\x4d\x43\x0a\x28\x1e\x56\x3c\x2e\x47\xd3\xb0\x9a\xf3\x51\xca\xab\x10\xbc\x06\x42\x83\x7d\x0a\x0d\x37\x92\xd0\xb4\x78\x0f\x72\xd3\xc7\x20\x64\xbf\xa2\x59\x55\x23\x44\x13\xca\x5f\xb7\x03\xb1\x34\xba\xe8\xec\x57\x71\xe9\xd8\x98\xbc\xe2\x59\xf6\x63\x5e\x5c\xe5\x1a\x9f\xa0\x19\x15\xab\x1a\x55\x75\x51\xf2\x20\x64\x97\xd8\x89\x0b\xab\xbb\xba\xdc\x0e\xb4\x76\xbe\xeb\xc2\x9d\x5d\xaa\x7e\xef\x7d\x73\x6a\xee\x03\xba\x30\xa4\x4a\x48\x2f\xb1\xbc\xc8\xa2\x71\x51\x02\xdb\x01\x2b\x31\x2e\xca\x8e\xa9\x18\xd0\x4c\xab\x11\xe7\xb0\xea\xda\x4a\x4a\xbc\x95\x9f\xee\xb0\x4e\x47\x85\xc5\x79\xe5\x28\x32\xe1\x92\x1d\x28\x47\x7e\x4f\xa1\xc0\x1a\xdd\x8d\x9a\x0b\x0a\xed\x41\x7f\x2d\x07\x7d\xc9\xaf\xdf\x14\x65\xb7\xba\x9e\x05\xc4\x3a\xbf\x29\x4a\x63\xe0\x46\xb9\xc5\xae\x49\x3d\x0b\x94\x34\xaf\xd7\xea\x7a\x66\x3f\x82\x45\x85\x89\xbe\x59\xd5\x9a\x8b\x19\xa7\xb9\x33\x0f\x74\x19\xf4\xce\x6d\x67\x87\xc1\x60\x08\x89\x92\x05\xc2\x09\x2e\x2a\x7e\x02\xf7\x8c\xab\xac\x53\xaa\x4b\x60\x9b\x0d\x68\xc8\x8e\xdf\x0a\x8d\x57\x22\xbc\x9c\xff\x9c\x2d\xa3\xdf\x25\x6b\xec\x6f\x0a\xaa\xe0\x04\xa1\x38\x64\x67\xa6\x6b\xf6\x39\x2c\x05\x96\xf5\xa5\xd0\x1b\xda\x4d\x3c\x7f\xf8\xd3\x6a\xd6\x78\x14\xed\xdc\x47\x4e\xd3\xcf\xda\xfc\xdf\x1d\x1f\xf7\x46\xcb\x29\xaf\x3c\x62\xb5\xd3\xba\x7a\x13\xde\x2a\xe3\x89\x5e\xa0\xf1\x36\x88\x7e\xfb\xb5\xeb\x74\xf6\xad\xbf\x33\x94\x78\x0e\x3d\x9d\x40\x49\xa3\x7d\xf8\xea\x34\xfd\xc2\xdf\xb4\x14\x12\x7c\x8d\x53\x59\xa3\x79\xfa\xae\x36\x59\xaf\xc7\x76\xa7\x65\x31\xe3\xec\xd9\x0b\xf0\xb4\x7f\xf6\x1d\xfb\xb0\xac\xb7\x0f\x0c\x6d\xad\x98\x1b\x03\x89\x76\x65\xa5\xf9\xbe\x58\x4c\xaa\x68\x24\x1a\x4d\x17\x33\x48\xf1\xed\xd7\xa4\x3f\x7b\xfe\x9c\x94\xfd\x6f\x5e\x1f\xbc\x3d\x19\x1e\xbe\xd7\x36\x99\x13\x41\x58\x3c\x1a\x74\xc9\x50\x74\x37\x03\xf5\x5a\xe5\xbe\x73\xe2\x69\xbd\x71\x5e\x5a\x90\xf7\x50\xe9\x4c\x87\x3b\xa0\xe1\x49\x23\xa7\x96\xb2\xee\x4c\x94\x6f\x3d\x8f\x9e\x45\x5b\xcc\x36\x6b\x91\xf3\xf4\x59\xc8\xe8\xb2\x2c\xc5\xef\x6a\x1e\x8f\xf8\xb9\x38\xa6\xda\x1c\x76\xcf\x84\x4d\x91\x86\xdd\xde\xb6\x9a\x22\xc0\x72\x65\x50\x70\x1c\x68\xaf\xc7\xde\x9d\xb0\xfd\x64\xc2\x31\x23\x46\x59\x57\x44\x51\x91\x01\xaf\x58\x5d\xc0\xc8\x59\x5c\x51\x56\x8a\x5e\x8f\xfd\xc2\x2f\x7e\x4c\xeb\x07\xd4\xc8\x17\x59\x46\x75\x7e\x7e\x81\xb4\x1c\x36\xd3\x45\xf1\x89\x27\xd2\x77\xc1\x34\x94\x68\xfc\x9c\x9d\x9c\x07\x10\x10\xe1\x4c\x34\x72\xde\x11\x73\x33\x8a\x6f\x58\xdc\x67\x27\xec\x0e\x61\x6e\xee\xdc\x72\x5a\x91\x93\x40\x01\x80\x85\x24\x08\x59\x47\x0c\x4e\x6e\x05\x55\xc1\x8c\x4c\xac\x1a\x31\x96\xfc\x23\x66\x57\x81\x00\xcf\x69\x7d\xee\x3c\x0c\xdc\x34\xfe\x96\xeb\x19\xb2\x27\xf2\x27\x95\x92\x34\xed\x91\xf6\xd2\x00\x1a\x47\xb9\x57\x8b\x7d\x29\x71\x14\xa2\xb2\x6a\x0c\xac\xb9\xea\x27\xa4\x8e\xd8\x3c\xdf\xb6\x6e\x50\x9a\xbc\x04\x23\xbd\x4f\x33\x22\x99\xba\x6b\xc5\xc6\xb5\x72\x6b\xec\xbf\xa0\x3f\x2b\x42\x87\x58\x35\x55\xd7\xea\x0c\x23\x1d\xab\xbe\x02\x73\x74\x16\x9b\x62\x7b\x0e\x31\x3b\x5b\x8c\x31\x3d\x3b\x08\x86\x7c\xb6\xa0\x00\x1c\x25\xa7\x57\x64\xd5\x5c\x04\x89\x91\xde\xb8\xd4\xf2\x75\x25\xa2\xd0\xc0\xab\x2d\x08\xea\x5d\x45\x01\x1a\xe1\x6c\x62\x32\x10\xcf\x71\x07\x46\xe8\x59\xf4\x9c\xb9\x6f\xd6\xcf\xfe\xfa\x57\x83\xf7\x3d\xef\x4e\xd3\xbc\x16\x27\xbd\x21\x4a\x9e\x99\x06\x6b\x30\x7a\x7a\x9e\x02\xfa\x24\x50\xb3\x5e\xc8\x9a\x10\xe8\x60\x79\x38\x0e\xb6\xcd\x91\x7e\xed\x1f\xa9\xe2\xcc\xcf\x07\xb9\xf3\x2a\x8f\x5a\xd6\xbc\x2b\x35\xb8\xb5\x01\xaf\x1b\xbf\x03\xf7\xfe\xfb\x1a\x11\x30\x21\xeb\x88\x7f\x3a\x5a\x3a\x93\xf4\xf2\x19\xd0\x90\xfb\xda\x30\x7c\x0a\xf4\xc1\x96\x4d\x91\x1f\xbf\xc7\xa5\x08\x3c\x76\xba\x1d\xf4\x2c\x7a\xac\x4b\xcb\x72\xdf\xa9\x8a\xd7\x1e\x57\x13\x2b\x40\x8c\xec\x30\x21\x95\x1b\xb9\x1e\x7c\xaa\x79\x0e\xa1\x45\x74\x28\x31\xeb\xab\x95\x83\xc1\x31\x21\xda\x9a\xf0\x37\xc7\xfb\xfb\xff\x67\x9f\xed\xd8\x62\x35\x79\x48\xb5\x1a\xa9\xcd\xce\xba\x2a\xa5\x03\x87\x58\xd7\x58\x50\xe4\x55\x97\x2c\x65\x77\xc6\x7c\xdf\xf1\x3a\xf6\xbf\x4b\x21\x64\x80\x0a\x5a\x2c\x83\x61\xc6\x96\x2c\x7f\x9f\x75\x0e\x3b\xec\x29\x7b\xfa\x34\x4d\x42\x41\x7a\x28\x47\xc4\xc1\x1e\xd1\xcc\x3e\xbb\xb9\xb3\xdc\x62\xaf\x78\x7c\xc9\x46\xca\xc7\xbb\x62\x07\x7b\x15\x6a\x06\xef\x4c\xcb\xca\x38\xae\xea\x1f\xf9\xb5\x33\x30\xa9\x65\x0a\x14\xe7\x4c\xb3\x57\xec\x0d\xbb\x4a\xeb\x29\x9b\x97\x7c\x9c\x7e\x92\xda\x0a\x4d\x52\x0d\x42\xe9\x37\xdc\xc2\xf3\x3e\xd6\x37\xa3\xfa\x40\xa9\x7a\xfc\xd7\x39\xe9\xb0\x3e\xeb\x1c\x75\x02\xf6\x14\x8d\x50\x8e\xc5\x12\x54\xce\x8a\x48\xf6\x7a\x6c\x14\xe7\x9d\x5a\xe0\x92\x89\x0d\x9b\xc4\x75\x2c\xae\xd8\x45\x3e\x8a\x17\x93\x69\xcd\xc6\x65\xf1\x4f\x2e\xf3\x25\x58\x94\xd9\x58\x4f\x73\xdc\x9d\x37\x1d\xfd\x3c\x4b\x08\x51\x39\x1f\xf1\xaa\x8a\xcb\x6b\x48\xec\x99\x24\xaa\x1f\xa3\x35\x89\x36\xd9\xc6\xbe\xd1\x06\x54\x49\xab\x4a\x5c\x13\x76\x55\xda\x1d\xca\x80\xa2\xf1\x6d\x2d\xf3\x9d\x36\xca\x9d\x89\xe9\x9f\x47\xa9\xb1\x92\x13\x5e\xff\x22\xd6\x7c\xe9\x4a\xfe\xb1\x28\xb4\x9f\xb8\x7d\x26\x0e\x4d\xb5\xe8\x67\x62\x71\x1a\x57\xd3\x25\x07\xc2\xc5\xea\x15\x61\x55\xf6\x26\x71\x51\xe4\x6c\x5c\x72\xfe\x4f\xbe\x3e\x8e\x67\x69\x76\x2d\x4a\xa6\x45\x52\x41\xe4\xa4\x34\x9f\xe0\x3a\x14\xf9\x1b\x00\x6a\x8f\x64\x45\x84\x67\x6d\x0d\x9a\x8e\xde\xef\xef\x83\x7d\xca\x45\xa3\xb2\x7b\x19\x6b\xe5\xce\xd1\x67\xa5\x9d\x21\xa1\x69\x78\xd3\x42\xff\x3f\xee\xff\xa3\x8f\x44\x46\xfc\x25\xba\xa6\x18\x16\xf0\x37\x51\x83\xbe\xfc\x11\x92\x1c\x20\x36\x56\x5f\xfe\x80\x8f\x72\x96\x7d\xf5\xcb\x7c\xde\x17\x67\x19\x33\x9f\x26\xe3\x2e\xbe\xe4\xd7\x55\xc8\xd4\x33\x46\xc5\xd7\x3e\xfc\x1d\x39\x79\xd7\x3d\xc4\xed\x6f\x7e\xb0\xef\x87\x02\x15\xed\x03\x5f\x0c\x5a\x66\x20\xf9\x64\xdc\x34\xde\x4f\xa4\x36\x9d\x0c\x4c\xe8\x1e\x86\xcb\xac\xcb\xec\x28\x1a\x1a\x5e\x01\xa8\x36\x89\x57\x96\x1e\x76\xf3\x83\xfd\x68\xec\x30\xd1\x66\xc6\x42\xa9\x7d\x51\x4c\x73\xe5\x2a\xe3\x52\x54\xe5\x98\x86\x6f\x6d\xfa\x27\x68\x64\xa0\x1f\x65\xbf\x93\xaf\x38\xb7\xa2\x2d\x76\x40\xbc\xad\x64\xc8\x83\xfb\xde\x9e\x3f\x22\x8b\x52\xaa\xdb\x6e\x3e\x19\x87\x8f\xe2\xda\xc0\x77\x2a\xed\x0f\xe8\x0f\xf6\x37\x37\xd9\xc5\x62\x32\xb9\x5e\xa2\x8f\xc0\x1b\x2d\x1d\x97\xf1\x8c\x83\xd4\x8f\x09\x82\x1e\xed\x77\x4b\xde\x9f\x4b\xec\x0b\xca\x41\x17\x39\x34\xf4\xa4\x94\x7f\x69\x47\x2e\xe8\x5e\xda\x8e\xed\x6c\x46\x62\xd2\xd4\xad\xa0\x12\xf4\x75\x6d\x6d\xc9\xf4\x04\xee\x5e\x2d\x53\xc7\x60\x23\x01\xeb\xa3\xbd\x53\x5f\x2a\xd6\x38\x3c\x87\xc4\xc8\x3d\x29\x93\xdc\x1e\x1e\xbd\x57\x5b\x5a\x25\x6c\x6c\x1a\x0c\x74\xcb\x14\x02\x45\xcb\x09\x9e\xa0\x11\xb6\x09\x62\xa9\x0d\xbd\xd9\x01\x78\x48\x58\xf9\xb6\x64\xc0\x01\x99\x6e\x0b\xe7\x79\x0e\x19\x9f\xac\x59\x93\xbf\x8a\xdf\x16\x7f\xd7\x78\x9f\x6a\x79\xa0\x77\x3b\xf0\x30\xe2\xc0\x09\x25\xd5\x0e\xee\x3c\x89\xb0\x62\xd6\x2e\x89\xc4\xa7\x2f\x17\xf1\x27\x88\xb0\x1f\x8b\x34\x31\x62\xc4\xeb\xb0\xb4\xc7\x7c\xcc\x4b\x9e\x8f\x54\x6c\x5a\xb0\x7b\x4e\xe3\x4a\x5c\xfe\x17\x9c\xe7\x2c\xa5\xe6\x2b\x9e\xb0\x75\x8c\xa2\xdb\x0d\x2c\x08\x81\x41\x19\xc8\xd0\x0d\x1e\x26\x46\xd0\x1e\x34\xcc\x3b\x09\x37\x98\xed\x84\xd7\xea\xd1\xd6\x61\x23\x24\xa3\x13\xcc\x76\xc2\x6b\x23\x5e\x85\x1d\xa3\x51\x36\x58\x3d\xa6\xc1\xaa\xa5\x41\xbd\x12\xf6\xf8\xba\x05\x61\xb9\x39\xdb\xc6\x44\x5a\x06\xf4\xaa\x6d\xea\x86\xc2\xa5\xad\x57\x1d\x4f\xce\x08\x7e\x7c\x7b\xdb\xd2\x62\xb7\xb0\x2d\xb5\x28\xbb\xfb\x60\x5a\x16\xd0\x06\xfd\xec\x50\xae\xbe\x55\x7b\x50\x2c\x57\xb7\xe2\x67\x3d\x1d\xd2\x74\xd0\x9c\x8b\xbc\x3c\x48\xc5\xfc\x1d\xf3\x82\x81\x6e\xf9\x51\xaf\x36\xda\xf7\xb3\x79\x3b\xcc\x0b\x7a\x57\xe7\x29\xac\xe2\xb9\xa0\x0e\x76\x3b\x1d\xcf\x23\x46\x37\x42\x88\x33\x74\x8f\x76\xd6\x81\xf0\x68\x69\x8d\xe0\x66\xbd\x1e\x9b\x15\x55\x2d\x83\xba\x48\x06\xf8\xe2\x9a\xed\x9f\x7c\xc3\xaa\x69\xb1\xc8\x12\x4a\xe2\x69\xa9\xc2\x1f\xfc\x02\x4a\xac\x4f\x83\x6d\x28\xf5\xe3\x83\xe5\x8f\x9a\x96\xf0\x74\x3f\xee\xff\x23\x64\xfc\x13\x1f\x19\xac\xdd\x38\xc7\x84\x7b\x25\x8f\xb4\x43\xfd\xcd\x5d\x70\xf6\xe3\xfe\x3f\x40\xa1\x44\x3e\xf4\xe2\x4f\xc5\xf2\xf1\x4f\x73\x19\xad\x8a\x89\x3f\x10\x78\x07\xda\xee\x8e\x73\xc4\xd9\x7d\xea\x68\x9f\x1a\x7f\x9c\x93\x06\xdf\xd4\xc4\xf3\x4f\x73\xef\x35\xd3\x76\x3a\x5c\xda\xf5\x5b\x4e\x47\xb5\xe4\x74\x3c\x8b\x36\xd5\xf1\xa8\x9c\xe3\x41\x0e\xea\xc1\x03\x97\xbd\x81\x2b\x3b\xa2\xb0\xdd\x7a\xbf\xf1\xfe\x0c\xfa\xea\x04\x91\x72\x4e\xc1\x51\xfe\x52\x94\x97\xc4\xd3\x69\xaa\x58\xe4\xd9\x75\xc4\x0e\xb3\x84\x7d\x7c\x41\xd2\xee\x55\x51\x5e\x22\x18\xe4\x99\xc0\x87\xef\x88\xcc\x2a\x1a\xe4\xbd\xaf\x9c\x98\x2f\x2a\x3a\x92\x4a\xea\xfa\x60\x95\xd8\x83\xdf\x8d\x41\x42\x66\x6b\xf7\x2a\x9c\xfa\x03\x5b\xd9\xda\x17\x82\x5c\x5b\xa3\xd9\xac\x50\x12\x8d\xa6\x99\x18\xcb\x9f\xb2\xc1\x6a\xdf\x10\xfe\xe3\x8a\xa9\x2d\xb4\x82\x97\xdf\x9d\x6f\x17\x49\xe5\x55\xdf\xbf\x11\x20\x8c\x5e\x47\x21\xbf\xc3\xd2\x9c\xdd\xdc\xb1\x57\x9e\x38\x3a\x59\x9a\x53\xc8\x1c\xe3\xdd\x02\xaf\xea\x10\xb9\x76\xf0\x3f\x32\x33\x72\x9b\xd9\xce\x61\x08\x2e\xc9\xa8\x3f\x75\x82\xae\xca\x0a\x2b\xb8\x95\xb0\xfd\x41\x59\x34\xee\xba\xb9\x59\x43\x66\x0c\x1c\xf6\x56\xc8\xb6\xb4\xf2\x1c\xfa\xa4\x11\x9e\x9d\x9b\xdf\x51\xca\xd8\x61\x2b\x50\x6a\xba\xc2\x81\x90\xa2\x41\x2d\xb6\x58\x55\x23\xf3\xf8\xc0\x0e\x14\x6b\x66\x83\xf4\x9e\x34\x13\x1b\xb0\x79\x74\x91\x31\x36\xb1\x4b\xa0\xa3\x80\x1d\x5a\x79\x12\xe6\xca\x5f\x12\xff\x03\xdf\x7d\x31\x43\x5f\x2b\x46\xbc\x32\x9a\x89\x34\x14\xc0\xab\x1d\x72\xbb\x37\xfd\xf0\x40\x61\x00\xc3\xea\xe3\x3f\x76\xdc\x6d\x62\x53\x1a\x0f\x0a\x7d\xac\x19\x02\x99\x1c\xde\x32\xce\xae\x67\x17\x36\xf9\x38\x99\xc9\x62\x59\x12\x0b\xc3\xfa\xa2\xcb\xe0\x4c\xb9\x51\x7a\x9d\x62\x3c\x72\x4b\xb3\x42\x9c\x88\x1a\x82\xc6\x97\xbc\xaa\x20\xc7\xf6\xa2\xaa\x19\x4f\xeb\x29\x2f\xd9\x05\x47\x92\x54\x94\xfe\x34\x11\x83\xb6\x0c\x1b\x36\x46\x8d\x14\x1b\xf6\x20\xcd\xdd\x4e\xa3\x34\x9c\x30\xfb\x4e\x48\xac\xbe\xea\x2b\x94\xdf\x65\x9e\x04\x72\x12\x94\x9f\x9b\xfe\x83\xb4\x3f\x06\xb9\xca\x30\x05\x92\x8a\x81\x69\x67\x63\x7b\x97\xa3\x9d\x25\x95\xcb\xf8\xd9\xcc\xa8\xde\x56\x0f\xba\x64\x9d\xf7\xad\x5f\x32\x8b\x00\xad\xd9\x91\x7e\x65\xe4\x24\x0d\x30\x01\x3e\x3b\x47\xc0\x96\xce\x11\xf0\xf5\xfd\xbe\x30\xf7\x5c\xd0\xd2\x51\x66\xc9\x43\x60\x66\x06\xc7\xfd\x9d\x64\x32\x67\x0b\x15\x21\x9b\xb7\x8a\x65\x8d\xae\x5b\xc6\x64\xaa\xa2\x96\x74\xc0\x2c\xd1\x6b\x87\xcd\x6d\xcb\x68\xa1\xd8\x68\xcb\x86\xef\x69\xae\x7d\x8b\x57\x0d\xa9\xeb\x7f\x61\x7a\x9e\xd6\x29\xf1\x4f\x35\xcf\x93\x4a\x0a\x39\xf2\x6f\x3d\xdc\xb8\xaa\xd2\x49\x6e\x1b\xff\x30\xe8\x8c\x5a\x22\x2b\xfa\xd2\x26\x46\x5f\x72\x7d\x0c\xec\x8c\x35\xa4\xaf\x85\xb8\x50\xe8\x43\x20\x1d\x0e\xce\x8d\x8c\x78\xae\x27\x1d\xc2\x5b\x57\x32\xc4\xd5\x73\x38\x8c\x68\x1a\x57\x86\x02\x0b\x75\x52\x58\xd7\x79\xc4\x47\x3c\x0f\xcc\x46\x3a\x18\x22\xa0\x7e\x5e\x4a\x37\xb1\xba\x92\x15\xc5\xb5\x36\x22\xb6\xe1\xdd\x8d\x84\xd1\x96\xdc\x8a\xf7\xad\x0f\x1e\xd2\x5f\xd2\x7a\x5a\x2c\x6a\x4d\x3c\x68\x07\xd2\xa4\xf8\x27\x50\xfc\x27\xa6\xb2\x8a\x70\x2b\x2f\x4b\x19\x27\xe5\x4e\x49\x5b\x38\x64\x2d\x70\xe9\x15\x21\x73\x01\xe1\x15\xdc\x54\x09\xf5\xe6\xfb\x8c\x90\xa5\x34\x53\x58\x27\x23\xf2\x96\x6e\xc5\xbb\xf8\xa4\x21\x57\x40\x3a\x51\x91\x18\xb8\x9c\x4b\x44\x11\x1b\xd1\xbf\xf4\x25\x24\x65\x1c\x15\x79\x9d\xe6\xca\xf2\xb5\x7c\xe1\x6c\xd5\x99\x5a\xa0\x3b\x14\x62\x4e\x0f\xf7\x0e\xfb\xec\x18\xfd\x2d\x50\x4a\xf1\x65\xf7\x2a\x72\x51\xca\x05\x0b\xcf\xe2\xaa\x5a\xcc\x38\x82\xb1\xcd\x6f\x9e\xaa\xf4\xfc\x76\x15\x48\xd2\x3f\x58\x9d\xa5\x79\xba\xee\xcb\x61\x3d\x58\x05\xb4\xc1\x91\xa6\xaa\x10\xb9\x4d\x67\x56\xce\xe3\x19\x67\x3b\x2f\x11\x5f\x04\xa7\x0a\xad\xce\x48\xad\x4b\xa5\x51\x92\x56\xf3\x2c\x06\x95\x2d\x35\x63\xef\xc5\x91\xca\x4e\x76\xe7\xcb\x50\xd6\x1c\x0c\x5e\x2d\xd6\x34\xad\xb1\xd2\x5c\xa3\x9e\x2e\xdb\xf5\xcc\x72\x9a\x56\x75\x51\x5e\xeb\x19\x5a\x79\x50\x3d\x0d\x77\x07\xab\xc7\xc5\xa2\xe6\xe5\xfa\xdf\xb1\x2a\x5e\x4a\xce\x78\xed\x66\x95\x7c\xfa\xef\xa5\xd5\x63\x78\x3c\xc6\xbd\x98\x1e\x79\xb6\x03\x22\x8b\x50\x02\x68\x80\xe9\x53\xa9\xca\xd4\x27\x21\xe6\x65\x31\x5f\x17\xe4\xb9\x32\xc1\x28\x4b\xb3\x04\xaa\xd3\xfc\x7a\x9d\xbe\x11\x32\x09\xf0\xef\xf6\x16\x52\x1b\xcf\xfe\x1e\xfd\x6a\xb5\x8e\x33\x6a\xd4\xb1\x3e\xcb\x2a\x83\xbc\xf7\xd5\x57\x83\x9c\x7d\xc5\x4e\xa7\x9c\xcd\x17\x17\x59\x3a\x62\xaf\x8f\x0e\x80\xba\xcd\x17\x75\x2d\x86\x49\x3b\x8e\x15\x0a\xe1\x91\xa8\xd2\x1b\xe4\x98\x77\x0e\x5b\x66\xf2\x12\xc5\x6d\xa7\xf2\x23\x4a\x8f\xbf\xb8\x4e\x47\x90\x17\x73\x51\xf3\xe3\xa2\xa8\xdf\x09\x71\xb5\x3b\x8f\xeb\xa9\xef\xf1\xc7\x0d\x13\x25\x7d\x36\x58\xed\x0d\x56\x43\xb6\x28\x33\xf5\x7b\x1e\x97\xf1\xac\xea\x43\xfe\xc4\xb4\xda\xff\x14\x8f\xea\x3e\x93\xed\x50\xba\x93\xde\x60\xd5\x4e\x44\x62\xf0\x12\xdd\xb9\x95\xe2\x15\xcd\x11\x73\x99\x84\x6c\xa0\x43\xaa\x35\x32\xfd\x66\xc5\x08\x02\x68\xf6\x29\x2d\x1d\x21\x26\x92\xdf\x07\xca\xc1\x4d\xb9\x17\x9c\xc2\x03\xb6\x8a\xc5\xec\x22\xad\x59\x31\x66\x31\x9b\xc6\xa3\xcb\x88\xfd\xc2\xd9\x34\xfe\x08\x19\xb4\xab\x3a\x2e\x6b\x96\xa5\x55\xcd\x71\x5b\x14\x25\xb3\x9b\xec\xf5\x28\x5d\x6f\xc5\xa6\xbc\xe4\x82\x2d\xa8\xa7\xdc\x9c\x94\xf8\x34\x8a\x2b\x2e\xbe\x97\x9c\xc5\xe2\x7f\xf9\x35\xfb\xfe\x98\x27\x69\xc9\x47\xf5\xcb\x4a\xb5\x54\x60\x65\x32\xca\x50\xe2\xcc\x88\x1d\x8c\x75\xdd\x50\xfc\xbc\x66\x57\x69\x96\x49\xef\xbc\xde\x7c\x51\x4d\xd9\xd5\x94\xeb\x21\x01\x0c\xa6\x3e\x8d\xf3\x84\x55\xa9\xa0\x2d\xa3\xbd\x77\x6c\x9c\x96\x1c\x02\x94\xc8\x34\x9b\xec\x82\x8f\x8b\x92\x8b\xa5\x13\xf7\x7f\x28\x28\xd0\x2c\xbe\x56\x2d\x89\x2b\x39\x06\x69\x56\xce\x5b\xd6\x10\x23\xfd\x1e\x37\xd8\x4b\x81\x47\xe8\x8e\x27\x91\xb1\x4c\xc3\xb4\x7a\x87\x5f\x9d\x47\x6f\x58\x3a\xe7\x79\x92\xe6\x93\xb7\xb2\x61\xe4\x0d\xd4\x1a\x81\xaa\x0b\x97\x13\xf7\x28\x9d\x10\x53\x3d\x24\xda\x59\xe4\xb8\x40\x32\xd1\xa0\x5e\x7c\xf8\xdc\x55\x03\x97\x74\x4e\xb3\x6a\xce\x28\x5d\x46\x0c\xb6\x9a\x4a\xb2\xac\x31\x60\x27\x4f\xf6\x24\xac\x6f\x9b\x9f\x6c\xc1\xcb\xc9\xa9\xa7\x7d\xd6\xe1\x68\xcd\x06\xdc\xc4\xb0\x95\xc2\x50\x4f\xcf\x19\x86\x8b\x3e\xcf\x04\xfb\x2d\x13\x58\x3e\x44\x6f\x42\x5d\x35\x0c\xb9\x4a\x81\xbd\x68\x5d\xc7\xae\x68\xa7\x8a\x25\x92\xd3\x95\x03\xfe\xde\x26\x95\x32\x73\xaa\xc6\x26\x28\x30\x76\x6e\xac\xc5\xa0\xed\xd0\x37\x33\x18\xd3\xb7\xd0\x84\x73\x66\x8f\x99\x67\xe5\x47\x0b\x12\x1e\x75\xf5\x89\xba\x46\x0d\xca\xe9\xa9\x1e\x29\x6a\x6a\x35\x64\xed\x6b\x6b\x80\x56\x89\xb1\x5b\xd4\x76\x79\xa9\x3f\x7e\xef\x5c\x3a\x4d\xb4\x30\x75\xde\x77\x6e\x3c\xb9\x76\x85\x34\x25\x8e\xde\x9d\x59\x83\x50\xd9\x44\x9a\x01\xd5\x53\xa3\xf8\xbe\xe7\x5f\x1a\x02\xd0\xe6\x7e\xb8\x43\xc7\xac\x3b\x1c\xee\xed\xff\x3c\x1c\xd2\x52\x13\x2a\xe7\xea\x96\x56\xb4\x5d\x8e\xb1\x6f\x24\xdb\xcd\x8b\x44\x2a\xa1\xd4\xe2\x2e\xcb\x89\x4f\xd7\x89\x8d\x6c\xb7\x82\x29\x2b\xe9\xe1\x28\x81\x57\x9f\xc3\x46\x7a\xf8\xee\xbc\xe4\x1f\xed\xec\xe4\xc4\x33\xa8\x8d\xab\x20\x24\x12\xe1\x36\x5c\xb2\x21\x07\xab\xff\x28\x16\x82\x17\x84\x5c\xb2\x70\xc3\xc8\xdd\x2f\xe7\xfc\x72\xb0\x6a\x21\x57\xaa\x14\x1c\x5e\x09\x2b\x7d\x79\x56\x49\xaa\x83\xde\xf1\x59\x51\x5e\xd3\x16\x64\x71\x45\x9f\xe5\x87\x3b\xd9\xca\x54\x72\xce\x9f\xc1\x6d\xd1\xc4\x1d\x8e\xe9\x41\xac\x52\xac\x2f\xa9\x7a\x1a\xd7\x0c\x1e\x37\x56\x9a\x96\xa7\x39\x9b\xc1\x0c\x6c\xce\x09\x67\xf5\x10\xfe\x49\x2d\xa8\x3d\x71\x23\xa7\x75\xb0\xbd\x94\xba\x39\xcb\x4a\x47\x4e\x1e\xb6\xe5\x27\xf7\x8e\xf5\x5e\xde\x73\xb4\xcc\x99\xf8\x0e\x18\x71\x1b\xfb\x18\x26\xd5\x3c\x17\x10\x0b\x31\xb4\xa0\x20\x07\x84\x75\x14\x21\x32\x37\x01\x4d\x78\xfd\x53\x05\x34\x60\x9c\x96\x33\x22\xa6\x1a\x56\x9c\x97\x50\xc9\xdc\x18\xe1\xbb\xb5\xad\xb6\x73\x6f\x1e\x53\x77\x6a\x9e\xc3\xea\xe6\xd7\xef\xb6\x1e\xd1\x95\xa5\xa7\xf1\x7b\xb3\xaf\x97\x2a\x6d\x83\x60\x82\xe4\x06\x10\x55\x23\x76\x5a\x40\x2c\xb8\x98\x8d\x16\x55\x5d\xcc\x64\x69\xc8\x06\xab\x18\x45\x5c\xb6\x28\xa0\x3e\xa8\xb3\x44\x7b\xe0\xee\x03\x18\x92\x78\x9c\x08\x8e\x54\x17\x5b\xdb\x31\xae\x34\x78\xf4\x30\x22\x60\xd6\x7f\x08\x29\x90\xc7\xe0\x6d\x3a\xe6\xa3\xeb\x51\xc6\x97\x9f\x81\x25\x6c\x8a\x62\x00\x10\xb3\x45\x0e\xe5\x01\x6b\x7e\x33\xdf\xb1\xe8\xec\x25\x1e\x46\x08\x09\xb0\x87\xea\x36\xfa\xa2\xec\xfb\xcc\xf3\xd1\xed\x2d\xd4\x34\xda\xdf\xf1\x72\xf6\x46\x35\x8e\x10\x6e\x97\xf8\x75\xe9\x0c\x5b\xa8\x03\xb1\xc4\xfa\x84\x3b\x2b\xab\x56\xc8\x5a\x56\xc1\x6e\x9c\x16\xc7\x7c\xc2\x3f\xcd\x15\x19\x8f\xeb\xe9\x7a\x5d\xac\x97\xf0\xd5\xd6\x0d\xc4\xa3\xa9\xca\xcc\x65\x7c\x7a\x9b\xce\x20\xf2\x8f\x4c\x3f\x96\x71\x2a\xd8\xa5\x63\xb5\x61\xab\xe6\x05\xb2\xd2\x8c\x1f\xc5\x35\xca\x8f\x21\x2b\x20\xda\x88\x5c\x22\xa3\x69\x7c\x8a\xf0\xe1\xc9\x0d\x41\x44\x3c\x4f\xee\xf4\x5f\x18\xe0\xd7\xfc\xc0\xf3\x0a\x7c\x4c\xee\x3e\x6c\xeb\xa6\x44\x27\xbb\x34\x78\x68\xf6\x4c\x36\x0e\x5e\x1d\x5d\xf7\x9b\x98\x62\x60\x84\x5d\x50\xf5\xcf\xc4\xaf\x73\xa5\x97\x74\xbe\x6f\x1b\xa2\xaa\x0c\xe3\x45\xb1\x62\xf0\x1b\xe2\x54\x48\x20\x06\xe2\x09\x05\xe8\x0c\x2d\x11\x61\x55\x22\x7f\xe3\x1b\xaa\x8f\xb0\x8a\xbc\x61\x02\x60\x85\xed\xef\x8d\x35\x51\xbb\xc4\x19\x28\xd8\x56\xc8\x7b\x17\xa8\xa8\xaa\x4e\x51\xcb\x6d\x2d\xa4\xf6\xf4\x35\x6f\xd1\x23\xfb\x06\x05\x6e\x57\x5c\xd3\x31\xfb\xe9\xf8\xad\x96\xe7\xeb\x82\xc5\xf0\x97\xbc\x39\xd5\x36\x80\x1a\x6a\x13\x08\x60\x35\x7f\x5c\x81\x86\xbd\x55\x95\x62\xa6\x57\x70\xde\xc4\xc4\xc6\x96\xc7\x70\x57\x62\x51\x9b\x63\x74\xb3\xa4\x97\x90\x5f\x9a\x4a\x06\x02\x09\x19\xff\x14\x83\x11\x0f\xdd\xe1\x29\x98\xb4\xf1\xb7\xdc\x6a\xf2\x13\xbb\x63\x3b\xb2\x5d\x6b\x2b\x88\xe6\x70\x2f\x44\x23\x08\x01\x01\x13\x0e\x6c\x55\x18\x00\x45\x25\x4f\x16\x23\xde\xed\x02\x6e\x78\x12\xc2\xe7\xc0\x90\x49\x51\xdc\x8d\xeb\x29\xb8\x73\x88\x7f\xd1\xf2\x3c\x58\x0d\x1a\xb4\x00\xa1\xa9\x29\x55\x4c\x7f\x2b\x11\x50\x4e\xda\xde\x5c\xe2\xa4\x34\x8e\xa9\x12\x98\x78\x9e\xf4\x11\x3f\xea\xf2\x43\xf4\xe8\x3f\x25\x76\x48\x14\x94\x32\x21\xf6\x06\x63\x80\x5d\x28\xfa\x8c\xc0\x55\x4a\xc9\x3e\xb6\x68\x0f\xa0\xee\xdc\xcc\xb6\xce\x16\x65\x16\xb2\x28\xa2\x34\x08\x62\x73\x43\x1d\xab\x43\xd2\x33\xd1\xd1\x53\x8a\xa6\x45\x69\x2b\x12\x70\xc9\xd7\xd6\xd8\x0a\x55\xf0\x77\x2c\x75\x5c\x8a\x6f\x07\xec\xa0\x46\x05\x17\x65\x51\xf1\x44\x6c\x7d\x18\x89\x04\x03\x25\x18\x14\x6b\x25\xd7\xda\x9a\xf8\x4c\x1f\x06\xab\x90\xa0\xb7\x07\xb9\x79\x61\x5a\xd4\x26\xad\x19\x13\x54\x5b\x1c\x9d\x02\x74\x3d\xe2\xa0\xc9\xb6\x69\xbc\x50\xe3\x6a\xca\xc1\x61\x00\x52\xc5\xd5\xa8\xab\xc1\xfa\x30\xbf\xec\x5a\x8f\x1b\x35\x71\x10\x36\x50\x6d\x3d\x3e\x93\x71\x45\x29\x17\x96\xad\x11\x11\xe5\x67\x97\xfc\x3a\x12\x58\x14\xd8\x46\xbc\x53\x66\x80\xa6\x63\x88\x80\xd7\xbe\x21\x10\x34\x52\xeb\xd9\xe0\x0b\xd8\x7a\x5a\x58\x12\x45\x24\x1e\x21\x9a\xdc\xb0\xb4\xfa\x39\xce\xd2\x84\x72\xd0\x08\xb6\x50\x4b\x18\xa8\xfb\x4e\xab\xcf\x10\x66\xd2\xfc\x63\x5c\xa6\x71\x5e\x5b\xb2\x88\xfa\xfa\x1b\x84\x96\x87\x69\x7b\xa9\x8a\xc2\x89\x06\x57\x9f\xb4\xb4\x63\xbc\x99\xd8\x9f\xcd\xeb\xeb\x5d\x62\x95\xbb\x92\x67\xb6\xfd\x09\x88\x63\xa3\xb2\x68\x04\x1c\x8c\x06\x15\x1b\x74\x43\xae\x91\x6a\x9a\x7f\x8c\x33\x59\x65\x8f\x7f\x54\xf0\x21\xea\xd8\x24\xf9\x32\x6e\x75\xf9\x2e\x59\x42\xda\x8a\x5b\x9b\xdb\x96\x89\xd2\x8c\xe7\xd7\x44\x5f\x50\xee\xc5\x91\xf3\x84\x7d\x50\xe5\x1f\x10\x25\xe2\x70\x7c\x90\x5d\x7c\xd0\x86\xc9\x62\x6c\x31\xd8\x1f\x50\xa8\x7a\x72\x03\x87\xf2\x15\xfb\x00\xe3\xdd\x19\xac\xe2\x97\xbb\xc1\xea\x07\xd6\x87\x73\x79\xf7\x32\x64\x17\x8b\x9a\x5d\x17\x0b\xf6\x41\x37\x30\x58\x25\x17\x57\x50\x05\xab\xf1\xc4\xb4\x41\x39\xee\x3f\x71\x10\x3f\x88\x4d\xfe\x01\xd9\x70\x87\xf2\xe3\x34\x49\xb9\xe2\xde\xb2\x1e\x59\xd5\xb8\x69\xab\x34\x9f\x64\x44\x72\xe2\x3c\x21\xee\x30\xcd\x27\x1e\x05\xff\x72\xde\xfc\x91\x3a\xb5\xdd\x22\xaf\x16\x33\xa5\xb8\x11\xff\xdd\x28\xb3\xcd\x4b\x5b\xcd\xa9\xce\x47\x97\x20\x42\x5a\x3f\xc2\x9d\xa0\x51\x42\xcc\xc1\x2e\x5e\xb2\x62\x51\x57\x69\xc2\x0d\x99\x5c\x3a\x77\xe8\x36\x71\x33\x69\x9d\xad\xc9\x48\xab\xaf\xb7\xb7\xca\xde\xe1\x51\xa9\xba\x77\x91\x29\x37\xa3\xae\x2e\x79\x67\x52\x6f\xfc\xef\x55\x2b\x9c\xa0\xbc\xdf\x9f\x5c\xa5\xf5\x68\xfa\x92\xc5\x59\xc9\xe3\xe4\x5a\xda\x4b\x12\x4d\xc5\x61\x09\x17\x95\xdd\xaa\xa5\xd4\x13\xab\xe9\x76\xaa\x79\xa5\x86\xae\x30\x34\xea\x06\x6e\xb3\x72\xfe\xf2\x46\x6c\x4e\x1f\xea\x01\x63\x14\x45\x91\x5a\x20\xa5\xd0\xa4\x41\xdf\x39\x75\x05\x8b\x7f\xc3\xf4\x71\x57\xf2\x4f\x48\x3b\x09\x38\x08\x3d\x30\xa7\x7a\xaf\xc7\x8e\x80\x0e\x63\xde\xc7\x38\xa7\x74\x2a\xa0\x4b\x00\xed\x90\x32\x3c\x5c\x3b\xf5\xe8\x62\x08\x59\x85\x22\x34\xb8\xc4\xa5\x63\x50\xdb\x74\x50\xd4\x1e\xc5\x15\x8f\xac\x1d\x38\x66\x5d\x9b\x43\xd4\x84\x6d\x6d\x4d\x75\x26\x5f\xc9\x01\xad\x73\xb4\xfc\x5a\xd5\xa0\x0d\x10\xba\xec\xce\x9e\x9e\x7b\x78\xf0\xbf\x16\xb5\xb4\x54\xa1\x02\x9e\xee\x5e\xda\x75\x18\xc3\xef\xd1\xac\xb9\x15\x71\x67\xc8\x61\x35\xcb\x60\xb3\x22\xe3\xac\xc7\xee\xb8\x29\xfa\x6a\x89\x7a\xa4\x1c\xf2\x17\x0b\x80\x7b\x29\xbf\xb3\xa1\x83\xb6\xa6\xfa\xee\x55\xe0\x07\xec\x2f\x9d\x68\x5f\x6f\x40\x3f\x1e\x4c\x53\x3a\x71\x05\x5d\x63\xcf\xb6\xf7\xdc\xa7\xfd\xec\x6f\x96\xa8\xe6\xb2\xea\x32\x96\x8b\xfb\xfd\xf1\x2b\xb3\x74\x55\xbe\xd0\x8a\x3c\x60\x35\xfa\x4d\x23\xc0\xbd\x8a\x7d\xfc\xcf\xb2\x87\xa9\x06\xdc\xaa\xce\xd5\xf2\x20\x9b\xc0\x43\x4d\x02\x45\xce\x0f\xc7\xe2\x67\xf7\xcc\x51\x38\x3a\xfa\xc3\x73\x69\x81\x51\x9b\xa4\xcf\xba\x92\xa7\x29\x8b\xf9\x7b\x30\x79\x9b\x37\x1d\x45\xef\x9f\x57\x67\xb2\xfc\x9c\x04\x09\x97\x15\x75\xc1\x6c\xcf\x2e\x29\x6f\xf0\x2b\x46\x5e\xc1\x06\x06\x3f\x1c\xe4\x1f\x45\x6b\x30\x06\xd6\x51\x83\xeb\xb0\x6a\x31\x9f\x67\x29\x0a\x1d\x1d\xc0\x49\xa7\x8f\xe2\x88\x80\x54\x61\xdf\xb0\x36\x72\x27\xaa\xf6\x07\xdd\x85\xe1\x8f\x4e\x4c\x3a\xe1\x81\xa3\x99\x5e\x63\xe9\xa2\x28\x32\x2a\xd3\x26\x31\xd7\x5a\x12\x6a\xf5\x43\xcb\x32\xc8\xee\x74\x21\x8a\xf5\x61\xb3\x00\x2e\x87\xc3\x71\xd7\x05\xa5\x3d\xaa\x96\x0c\x0f\x65\x8b\x4a\x59\xc9\xa5\x2d\x73\x41\x31\xd6\x2d\x1c\xb8\x56\x9f\xdf\xae\x47\x36\xd6\xd5\x67\x6b\x5b\x5b\xd3\xe5\x2b\x2e\x07\xef\xa9\x10\x58\x35\x1c\x1e\xc5\x22\x8c\x81\x63\x3d\xf2\x72\x61\x7a\x73\xbc\x04\xc6\x52\x7e\xa5\xde\x5e\x4a\x0f\x86\x4a\x48\xd2\xa5\x28\xdb\xf6\xd4\x04\xff\x83\x0b\x4e\x7a\xf0\xc4\x54\x42\xff\x0f\x63\xc5\x26\xea\x0f\x43\x09\xd6\x79\x34\x3e\x64\xb5\xcf\x40\x86\x6f\x19\x65\x68\x77\x6b\x22\xbf\x65\x4d\xe5\xf8\x7e\xd3\x0c\x1e\x76\x3c\x3e\xc7\x26\x6a\x61\x41\xb1\xf6\x98\x89\x54\x5a\x4b\xe5\x67\x8d\x86\x8e\x14\x26\x48\x04\xab\x4c\x94\x90\xa1\x14\x24\xc5\x45\x2e\x78\xde\xb2\xc8\x32\xa4\x9d\xc6\x5f\xdd\xa2\x64\x1f\xd3\x11\x67\x1f\x79\x59\xc5\x41\xc4\x04\x66\xc9\xc2\x95\x5d\xa3\x8a\x27\x2f\xd8\x60\x55\xf9\xfa\xac\x22\xb5\x15\xc8\xad\xa7\x1c\xb2\x10\x88\x5b\x30\x61\x45\xce\x59\x91\x0b\x81\x6d\x71\x51\xf1\xff\x5e\x88\x75\x24\xbf\x9d\xce\xfd\xdb\x60\xa5\x05\x03\x5f\x04\x01\xf6\xf4\x2d\x74\x78\x11\xa0\xe6\x14\x7b\x66\xae\xb1\x23\x84\xe5\x62\x96\xd6\x42\xf6\x49\xeb\x07\x4c\xfe\x1e\xd3\xf4\xef\x67\x99\x7e\xab\x44\x1d\xfc\x1b\x14\x2b\xcb\xec\xd1\xbf\x9f\x16\xa8\xdd\x74\xad\x34\x18\x71\x92\xbc\xe5\x71\x92\xe6\x93\x93\x2c\xae\x50\x31\x6b\x2b\x72\x40\xd7\x3e\x9a\xc6\xe5\xeb\xba\xbb\x11\x18\xaa\xc6\x57\xa8\x27\x20\x3f\x3c\xf6\x14\xfe\x6c\xa8\x74\xe2\x24\xf9\x5b\x5c\x71\x21\x59\x76\x2f\xe8\x87\x96\x07\xcd\xb0\x41\xb2\x54\xe9\x48\x0d\x21\xdb\x18\x0f\x9d\xeb\x28\x72\xbd\x64\xa4\x00\xdb\x6f\x4c\x4a\xb7\xfc\x94\x35\xe4\x5d\x6b\xab\x58\xd1\x07\xe7\x5f\x68\xe0\x28\x18\x0b\x28\xb6\xd3\x3e\x36\xc3\xfc\xd2\x18\xa3\x72\x03\x17\xd0\x01\xa8\xb0\x36\x7e\x3b\x9a\x9a\xdd\x88\x13\x55\x97\xd0\x8b\x4c\x2a\xeb\x47\x0f\x6e\xed\x9f\x8e\xdf\x76\x1d\x84\xd8\x41\xb9\xb4\x42\xc5\xb6\xb0\xbc\xd2\x25\x7d\xe3\x98\xe8\xc6\x3c\xeb\x11\xd7\xe9\xe8\xef\x71\x9e\x64\xbc\xec\xe2\xbb\xf0\xf7\xda\x4f\x54\x4a\xc8\x96\x69\x43\xe9\x89\xc8\xc2\x62\x79\xb7\xfc\x85\x1e\xef\x7e\x7f\x02\x2d\x2b\xcd\x50\xc8\x8c\xc6\xb7\xfd\xb3\xcf\x8b\x62\x2e\x58\xb1\x36\xcd\x5a\x5d\xcc\xd7\x33\xfe\x91\x67\x86\x3f\x88\x98\xbd\xe8\x68\xb0\xaa\xd4\x50\x21\xab\x8a\x75\x8c\x74\xc1\x2e\xf8\x28\x16\x57\x6b\x5a\x43\x63\xf8\x58\x36\x1e\xd5\x0b\xa0\x7e\x44\x60\x41\x19\xb1\x28\x4b\x41\xf1\xd4\xe2\xb1\x03\x34\xdd\x87\x82\x2e\xfe\xba\x00\x0b\xdf\xa8\x28\x93\x0a\x1a\x52\x78\x96\xfe\xa2\x69\x8e\xc9\x10\xd0\xfb\x1b\x9d\x96\xd8\x4f\x15\x1f\x2f\x32\x36\x8b\xd3\x3c\x83\x47\x26\x35\xaf\xc0\xd5\x37\xce\x13\x68\xa6\xe2\xe5\x47\x5e\xae\x2b\x7d\x20\xab\x46\x3c\x8f\xcb\xb4\xa8\x6c\xcd\xa0\x89\xcc\xe5\x0a\xc2\x3c\xfe\x98\x4e\xe2\x9a\x9f\x16\x5d\xad\x1c\x8a\x47\x96\xaf\xa0\x34\x25\xc9\x33\xc2\xd0\xa8\x11\x1a\x1e\xdd\x37\x77\x4d\xcd\x10\x55\x05\xe9\x2f\x96\x99\xcb\xf1\x87\x53\x6a\x28\xfc\xfc\x74\xca\x26\xe9\x7a\x7f\x06\x4e\x43\x60\x73\x31\x4e\x85\xdb\x81\x65\x73\x9f\xc2\x2e\x3e\x5a\x54\x53\xc3\x39\x53\x6c\x5c\x98\x85\x17\x31\x83\xd5\xa3\x9f\x4e\xfe\x2e\x1f\x67\x62\x03\xd2\xb7\xff\xe1\x6d\x1c\xef\x1f\xbd\x7d\xbd\xbb\x6f\x37\xf3\x56\xba\xb1\xe2\xe1\x11\x7b\xdb\x28\xfd\x5b\x56\xc0\x53\x71\xab\xd0\xa7\xe0\x7d\xd0\x5a\x85\xa6\x8a\x95\xdc\xb7\xa3\x28\x2a\x79\x55\xb7\x29\xf8\xac\xb7\x13\xa6\xf3\x35\xf9\x3d\x95\x7c\x2c\x8d\x60\x2f\x5b\x89\x2b\x7b\x6a\xac\x0d\x5c\x71\x9a\xb3\xc1\x8d\x21\x6e\xb1\xa3\xc3\xa3\xc1\xaa\xfa\xae\xa5\xd0\xb6\xbb\xa0\x75\x73\xa8\x36\xe6\x8b\x6a\x4a\xba\x58\xbd\xe8\xaa\x94\x3c\xa9\x2d\x00\x5a\x54\x05\x33\x29\xfa\x0e\xed\x1b\xac\x4e\x8a\xc1\x6a\x60\x40\xfc\x2d\x1e\x5d\xfa\xa0\xc4\x77\x1b\xf2\x4d\x51\x5e\xc5\x65\xe2\x03\xa6\x22\x13\x1e\x7d\x65\xad\xe1\xe1\x66\x51\x10\x17\x62\x77\x58\x00\xb0\x5f\x06\xca\x1e\x37\x30\x95\xff\xd2\xe5\xec\x86\x96\xfc\x4e\x3b\x9f\x29\xbf\x33\xcb\x5d\x72\x47\xda\x00\x1e\xe0\x70\x66\x52\x1e\x9f\xfa\x46\x2e\x5b\xbf\x4d\x35\x30\x6a\x73\xd1\x5c\xa6\x95\xf0\xe9\x7f\xa8\xd5\x46\x3b\xe7\x81\x29\xd7\xb8\xe3\xfd\x3d\xbd\xc8\xac\x2b\xee\x0f\xf7\x22\xb3\xee\x84\xcf\xf0\x22\x33\xeb\x7f\x79\xb6\xfd\x5f\xca\x06\xbb\xc4\x8a\xa7\xaf\x66\xb1\xae\xe3\xb4\xac\x6a\x65\x01\x03\x17\x54\xb4\xd9\xbb\xf7\x35\xd8\x97\xfe\xfc\xa6\x3c\x69\x07\xfb\x9d\x6d\x79\x03\xc7\x24\x45\xc2\x6e\xc8\x7c\xf6\x2e\x88\xc0\x0e\xc3\x73\x6c\xdd\xe3\xa2\xdc\x8f\x47\x53\xf3\x34\x38\x10\x75\x81\x66\xa3\x00\x72\xe6\x76\x03\xa7\x59\x78\x76\x23\x39\x42\x82\x15\x77\x5b\x85\xce\x34\x75\x01\x01\x30\x41\x59\xa4\xe5\x71\x08\x29\xc8\x59\x52\xa0\x93\x46\x6c\x9b\x2e\x7a\x3d\x51\xad\x2e\xd3\xc9\x44\x9c\xc2\x9c\x2d\xd0\x39\xb0\x57\x72\x7c\xb1\x23\xf6\x50\x7d\x55\xc8\x3d\x53\xe1\xa6\x21\xe3\x9b\x54\xe4\x38\x2d\x6a\x25\x52\x5c\xb3\x24\x1d\x43\xdc\xb7\x9a\xfd\x74\xfc\xb6\xb2\xec\x65\x7e\xfc\xf8\x14\x6c\x21\xcd\xca\xdd\x28\x86\xeb\x91\x7c\xcd\xcb\xd6\xd6\xa8\x61\x5b\x25\x8e\x86\x0a\xf7\x79\x33\x83\xb0\x23\x68\x3e\x27\x6f\x01\x67\x39\xf5\xd6\x41\x6e\x02\x81\x0c\x03\x07\xec\x19\xe3\x9b\x38\xa8\x9e\x36\xa4\xfd\xb7\x69\x76\x65\xf7\x9b\x5e\xd1\x6a\xaa\x3b\x41\x8f\x07\x76\xe7\xb5\x9b\xb8\xc6\x58\xb3\xd4\xb2\xa7\xdc\xb9\x47\xc4\x74\xdd\xb2\xeb\x29\xd3\x56\x56\xe4\xca\xb2\xa5\x8e\xc1\x8d\x61\xc8\xb5\x8c\xd5\x7d\x69\xd7\x6d\x58\x8c\x1d\xdb\xe6\x17\xb3\xd3\x20\x45\xf8\x8c\xb7\x1b\xed\xd6\x05\xeb\x7a\x56\xcd\xff\x0f\xeb\x1d\x25\xe5\xfb\x7f\x57\xf1\xf8\x50\x0c\xfc\xf9\x35\x8f\x38\x93\x2f\xcf\xc3\x4c\x8b\xb4\xaa\x91\x4d\x52\x90\xf0\x6d\x3d\x2f\x72\x7a\x9c\x8d\x8c\xf5\xa3\x59\x9f\xdf\xf8\x8a\xf8\xb5\x64\x53\xa6\xe9\x64\xca\xcb\xf5\xa2\x14\xd7\x89\xbe\x37\xc4\x55\x36\x1a\xf1\x0a\xb9\xd1\x74\x36\xe7\x65\x0c\x3e\xb0\xaf\x8f\x0e\x5c\xff\xde\xab\xb4\x9e\x62\x77\x5d\xc5\xa1\x58\xbe\x60\xf6\xeb\xf0\x0f\x06\xfc\x93\x1b\x55\xc3\x7a\x43\x7e\x7b\xcb\x74\x81\xa0\xc0\x77\x81\xe9\xe7\xbd\x2b\x1f\x77\x1a\xf7\x91\x94\x73\xaf\xca\x78\x3e\xe7\x89\xaa\x7e\xcc\xc7\x24\xcb\xce\xe2\x54\xec\x7b\xd8\xd0\x20\xd5\xda\x02\xed\xef\xc2\x3e\xd9\x54\x57\x32\x53\xf6\xd7\x0f\x3e\xc6\xea\xc9\x8d\x81\x0f\x21\x66\x79\x58\xac\x0f\x83\x16\xa3\x7b\xab\x67\xca\x6e\x9b\xf7\xc4\x4d\x03\x43\x77\x3e\x10\x29\xf6\xb9\x65\x25\x1f\xef\xdc\x78\x30\xef\x00\xf6\xbe\x98\x9b\x00\xad\xda\xae\x13\x79\xc0\xf8\x6b\x1b\xcb\x7f\x71\x06\xc5\x76\xf4\xce\x32\x34\xbb\xf6\x1d\x26\x2a\x7a\x2e\x30\xe6\xdb\x5c\xf7\xd8\xbb\x97\x58\xbc\x99\xdf\x72\x6d\x17\x98\x41\xf7\x19\x3b\xb7\x5d\x6a\x2d\xc5\xb2\x49\x6c\xba\xbb\xa1\x9e\x66\x9b\xcb\xad\x3e\x87\x8f\xa0\x7c\x8f\xa2\x4d\x8f\x92\xb4\x3e\x2b\x86\xc2\xc3\xc4\x33\xa4\x0d\x8b\x8a\xeb\x50\x17\xc8\x4d\xe9\x4f\x66\xc4\x11\x45\xd9\x16\x95\x7a\xbf\x67\xd8\x15\xdc\xbd\xd2\x3c\xed\xa4\x65\x37\x3b\x74\xbc\x7e\x1c\x3b\x2e\x84\x7f\x53\x12\x0b\x7b\xb9\xc3\x36\xbf\x89\x5e\xb0\x34\x67\x48\x98\x6b\x54\x00\x98\xe3\x71\x64\x74\x6b\x2b\xe8\x8e\xbb\x36\xf6\xdc\xad\x60\xce\x54\xe9\xcb\xfe\x2c\x53\xd5\x03\x7a\xe0\x5c\xe5\x24\x4d\xc9\xb1\x6d\xb6\x47\xe0\x12\xff\xa7\x99\xab\x1c\x8e\x77\xa6\xb6\xff\xaa\x6f\xc2\x5a\xd2\x30\x25\x08\x29\xd4\x44\xe8\xff\xcf\xfa\xf8\xa2\xab\x0d\x25\x70\x38\x75\xb4\x8f\x3f\x0b\x6a\x8c\x61\x2d\x43\x8f\xa1\x57\xb0\xf6\xce\xf6\xe3\x30\x38\xb0\x0d\xac\xf7\xc9\x85\x88\xa8\xbe\xd2\x43\xdc\x99\x94\x74\x58\xf2\x09\xcf\x31\x02\xfc\xf1\x22\xaf\xd3\x19\x97\x64\xea\xaf\x17\xf1\x05\xcf\x7a\x25\x7e\xed\x19\x80\x26\x75\x1b\x82\x32\x68\x37\xce\xb2\x5d\x88\x0c\xeb\xaf\x3c\xe5\xd9\x9c\x97\x55\xcf\x06\xb6\xdb\xc1\xd8\x3d\xa0\x5a\xba\xa7\x11\x0d\x69\xb5\x30\x2f\x2a\x48\x50\xb2\xab\x43\x99\x1c\x53\x90\xd2\xa5\xed\xb5\xd6\xb3\x5a\x77\xe2\x64\x2f\x6f\x72\xe2\x04\xf7\x34\xda\x91\x21\xf0\xee\x69\x41\x82\x59\xd1\x78\xf4\xb5\xd7\x81\x5b\xaf\x63\x1b\xe4\x67\xf1\x25\x7f\x5d\x5d\xe7\x23\x75\xaf\x76\xb1\x26\x2f\x8d\xc8\xd2\x36\x04\xdb\x11\xdf\xad\xe0\x46\xe2\x83\x0e\x55\x37\x84\x5e\x9f\x1c\x2d\x4a\xee\xb2\xce\xcc\x88\x52\x6a\xb7\x1a\x32\x6f\x35\xc5\xc8\xaa\xe6\x9d\xe1\xda\xe1\x74\x70\xbc\x43\x21\xf9\x19\x4a\x08\x67\xc7\xd1\xeb\x54\xbb\x21\x53\x69\x31\xc4\xdc\xe9\x4b\xf6\x07\x35\xe1\x46\x9a\x77\x9a\x34\xdf\xc2\xe2\x38\x35\x77\x38\xf4\x07\xf9\xb1\x7c\x36\x4d\xef\xdb\x3b\x55\x53\x06\xb9\xa3\x49\x32\xd3\x83\xdb\x3c\x13\x0d\x04\x9f\xa9\x5e\x2e\xf9\x75\x9f\x0d\x56\x1b\xea\x7f\x83\xa0\x51\x98\x54\xeb\xd9\x6b\xcb\xf3\x67\x85\xf6\x52\x48\x25\x23\x87\x11\xb5\x07\xdd\x24\x1e\x11\xe4\x94\xe8\xb6\x77\xf4\xa4\x3b\x1c\x35\xa2\xe2\x30\x9d\x25\x66\xb3\xa1\x7c\xab\x50\xcf\xac\xea\x41\x4a\x33\xb1\x9e\xf2\xef\xbc\xd9\x18\xa0\x3e\xae\x38\xdb\xe8\x37\xb5\x5f\x56\x45\xb6\xc3\xb6\xb6\x9b\x30\xcb\x66\x08\xc9\xc4\xe5\xc1\xea\x06\xae\x82\x4c\xf5\xbd\xe5\xeb\xbb\xe4\x63\x73\xec\x15\xa2\xd6\x05\x1b\x19\xb2\x80\xa8\x72\x36\x58\x25\x96\x78\xb0\x7a\xee\x81\x77\xe2\xe2\x34\x01\xac\x9d\xb8\xc4\x41\xbd\xa1\xee\x53\xb3\xf9\xba\x31\x1b\xf8\x3c\x58\xe5\x79\x32\x58\xf5\x4c\x55\xa2\x50\x4d\xb5\x2e\xe6\xdd\x60\xa9\xae\xd1\x10\xb6\xf0\x29\x9e\xf9\xea\x9c\x99\x9e\xc0\xcc\xdd\xfd\xe4\x45\xd9\xbe\xe5\x5d\x53\x04\xa3\x7d\xbe\x2b\xb5\xfc\x18\xff\xc6\xdc\xf0\xce\x4c\x76\x5b\x9c\xf7\x77\xad\x67\x2f\xae\xde\x52\x0e\xf9\x3c\x70\xc5\x78\xfb\x44\x23\xbb\xd0\xc5\x0e\xbc\x64\xb3\xad\x9a\xff\xad\xa2\x7b\x15\x6c\xaf\x9e\x87\xab\x18\xe2\xf1\xb8\x28\xea\xd5\xfe\xea\xea\xdd\xff\x0d\x00\x00\xff\xff\xb6\x98\x54\x9a\xc5\x90\x03\x00") +// FileIdentifierStaticJs8Cecd3c0cChunkJsMap is "identifier/static/js/8.cecd3c0c.chunk.js.map" +var FileIdentifierStaticJs8Cecd3c0cChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x59\x77\xea\xca\xf2\x27\xf8\x5d\xbc\xf6\x9b\x75\x2e\x9e\x87\xff\x53\x67\xa6\x84\x90\x65\x8c\x31\x60\x8c\x7b\xd5\xda\x4b\x06\x19\xc4\x20\xb0\x10\x18\xdc\x5f\xbe\x57\xc4\x2f\x34\xe0\x61\x9f\xbd\x7d\xee\xad\x7f\x75\x57\xbd\xd8\x48\xca\x39\x63\x8e\xc8\xc8\xff\x67\x6f\x1d\x26\xcb\x68\x1e\xef\xfd\xd7\xb1\xb5\xb7\x9c\xaf\x92\x7e\xb8\xdc\xfb\xaf\xff\x7b\xef\x5f\xff\xaa\xfc\xeb\x5f\x95\x78\x3e\x08\x7f\xce\xe6\x83\xd5\x34\x5c\x56\xfa\xf3\x24\xfc\x6b\xbc\xac\x4c\xa3\xa7\x24\x48\xb6\x95\xec\xfd\x4f\xfa\xf0\xaf\xf1\x72\xcf\xfa\xa3\x5a\xc3\xe9\xfc\x29\x98\xfe\x79\xbd\xf9\xd3\x38\xec\xa7\x7f\x0d\x16\x7f\x5e\x75\x10\x2e\xfb\x49\xb4\x48\xe7\xc9\xf2\xcf\x2b\x8f\x82\xaf\x2b\x3d\x05\x4f\xe1\xf4\xaf\x45\x12\x2e\xc3\xf4\xaf\x24\x0c\xfa\xe9\x5f\xc1\x62\xb1\x5b\xe6\xff\xe2\x42\x95\x64\x15\xa7\xd1\x2c\xac\x8c\xc2\xe9\x22\x4c\x96\x95\x70\x39\xab\x60\x4a\xdd\x28\x1d\xcd\x57\xe9\x6d\x32\x5f\x84\x49\x1a\x85\xff\xb3\xbb\xbb\x9e\xcf\x97\xdf\xd8\xc7\x70\xb3\x98\x27\xe9\x37\xd6\x33\x1a\x7c\xa3\xb7\x68\xf9\x17\x86\xff\xe7\x55\xd3\xf9\x5f\xd1\x77\xeb\xbe\x4e\xbe\x01\x31\x41\xfc\xed\xb1\x3e\x07\xd1\xf4\xeb\x1e\xb1\xe5\xc9\x7c\x95\x86\xc9\x5f\x83\xf9\x8c\x77\xf5\xfd\xcb\x2f\x6b\xa7\x51\xbc\xfd\x2b\x8a\xd7\x41\x12\x05\x71\x5a\x19\x44\xcb\xf4\xdd\xbb\x7f\x85\xcb\xaf\xab\x7f\x39\xe6\x05\x20\x69\xfb\x17\xa1\xd9\x9f\x57\x97\x17\x7f\x5e\x71\x15\x0d\x7e\x7f\xa5\xbe\xfc\xfa\x61\x0d\xbf\x05\x60\x8b\x24\x9a\x45\x69\xb4\xfe\x06\x64\x13\x78\xc6\x69\x38\xfc\x4e\xcf\x83\xf0\x39\x8a\xc3\xaf\x97\xe1\x6b\x74\x4a\xc3\x24\xf8\x1e\x3d\x14\x3a\xdc\x4f\xc2\x20\xfd\xc6\x74\xa5\xfa\x24\xdc\x7e\xa3\xef\xe5\x28\x48\xc2\x01\x55\xfe\x6e\xdd\x6f\xd0\xb9\x78\x35\xfb\xeb\x69\x35\xfc\xee\x90\xc3\xf4\xaf\x74\xfe\xd7\x32\x4d\xa2\x78\xf8\x57\x1a\x0c\xbf\x05\x21\xff\x80\x7e\xfd\x15\x6e\xbe\x59\x11\xd0\xf5\xed\x2d\x5e\x44\x5f\xd7\x1d\x45\xcb\x74\x9e\x6c\x7f\x9b\x75\x85\x9b\x34\x8c\x07\xbf\xa2\x8c\xcb\xf9\x74\x1d\xfe\xb5\x08\xd2\x51\x1c\xcc\x42\xc1\xea\xdd\x97\x5f\xd6\x5e\x07\xd3\x55\xf8\x57\xf8\xb2\x0a\xa6\x5c\xb1\xf4\xfc\xb7\x33\xa0\xf2\xf2\xfb\x9b\xd4\xe8\x17\xd3\x8e\xe2\x51\x98\x44\xe9\xdf\xb0\x68\x9a\x1f\xc1\x58\x12\x0e\xc3\xcd\xa2\x12\xc5\x83\x70\xf3\xef\x1f\xcb\xdf\x6f\xc1\x37\x1b\xfe\xf7\x8a\x25\xfd\xf4\xeb\xb9\x7f\x4d\x0e\xc3\x0b\x1a\xf2\xb7\x21\x9e\xea\x7e\x97\x20\x46\xbc\x5e\xdf\xec\x38\x09\xff\x21\x92\x12\x51\x63\xfe\x93\xc4\xdf\x11\xca\xfb\xf3\xe7\x6f\x77\x3d\x5c\xcc\xbf\x5f\x77\xbe\xf8\x3e\xeb\x1a\xce\x17\xf1\x3f\xa9\xfc\x35\x13\x79\x07\xe5\x59\x5b\xa8\x5a\x21\x56\xb0\x48\xe6\xe9\x3c\xdd\x2e\xc2\xbf\x7e\xb5\x72\x0c\x4a\x22\xe1\xf7\xe7\x71\x1a\x6e\x52\x1a\xd0\xdf\xa0\xf6\xd7\xd5\x66\x8b\x69\x38\x0b\xe3\x34\x48\xa3\xf9\xd7\x53\x1f\xae\x06\x7f\xd3\xc3\xf3\x13\x56\xa6\xf2\x1a\x24\x71\x14\x7f\xcd\xcb\xf2\x82\xe1\x6c\x91\x6e\xab\xab\xb8\xff\xcb\x9e\xdf\x51\xb0\x9d\x6f\xd1\x32\x48\x92\x60\xfb\x37\x23\x9b\x45\x71\xf4\xd7\xa7\x0b\xc0\x72\x2e\x88\xe9\xf7\x1a\xf8\xf7\x12\xeb\x2f\x1a\xe8\x4f\x83\xe5\xd2\x04\xd3\xa9\x19\x85\xfd\xc9\x1f\xd7\xe6\x71\x1b\x6a\xe3\x9b\xb0\x09\x32\xf2\x57\x26\xcb\xff\x36\x7a\x3c\xc7\xff\xb4\x85\xec\x7d\xb8\x3c\xfb\x97\x88\x39\xff\xb4\xa9\x9f\xc1\x5f\xcf\x7f\x07\x72\x5f\xac\xe4\x62\xbe\x5c\x46\x4f\xd3\xd0\xcc\xe3\x65\x9a\xac\xfa\xe9\x3c\xb9\x0b\xd3\x55\xf2\xc7\x0d\x11\x8e\xff\x02\xc5\xbf\xd8\x8d\xe5\x76\xf6\x34\x9f\x56\x32\xf1\xfc\x4f\xb6\xe1\xbb\x55\xcb\xeb\x0f\x29\xf5\x5f\xdf\x6e\xe3\xa7\x88\xb9\xc1\x37\x24\x4e\xe6\x83\xff\x50\xab\x18\x7c\x87\x2b\x7c\xdb\x38\xc0\x74\xe9\xaf\x28\xee\x4f\x57\x83\x5f\x58\x6d\x7e\x25\xd7\x4f\xc3\x78\x98\x8e\xbe\x55\x35\x78\x5a\xce\xa7\xab\x34\xfc\xeb\x6f\x98\xc2\x97\x76\x98\x74\xf6\xe7\x0c\xff\x35\x7c\xfa\xd7\x60\x3e\x03\x84\x3c\x4d\xff\x7c\xa7\x08\xca\x78\xdd\xfe\x01\x90\x05\x83\x01\x31\x8b\x55\xbc\xec\xcf\x17\x34\x8a\xef\x6c\x3a\x41\xdb\x32\x0d\xbf\xb6\x26\xfe\x12\x43\xbf\x83\x98\xdf\xda\x26\xc6\xca\x3f\xeb\x32\x9f\xe3\x2c\x4c\x83\x6f\xea\xbb\xdf\xd3\x75\xa3\xe5\x5f\xd8\xdb\x7f\x22\x99\x7d\x4b\x5f\x0d\x97\xe7\xd9\x32\x05\xcb\x6d\xdc\xff\xeb\x1f\x90\xc1\xbc\xa5\xf9\xd3\x32\x4c\xd6\xbf\x04\xf3\x2f\x88\x7f\xb0\x5c\x86\x49\xda\x1e\x45\x4b\x2f\x8e\xd2\x28\x98\x46\x6f\xbf\x30\x3d\x7c\xd1\xc8\x30\x24\x6d\x08\xd2\x62\xe3\x8f\x39\x89\x70\xe5\xe1\x6f\xcb\x9c\x5f\x32\xf6\x6f\x37\xf1\x09\x67\xff\xc7\x6d\x65\x90\xb2\x0c\x7e\xdf\x0f\x50\x4c\xe5\xf7\x25\xf0\xbf\x9f\xca\x3f\x6e\xeb\x67\xde\xc2\x9f\x42\x46\x26\x69\x7e\x13\x26\xfe\x90\xc9\x16\xcb\xf7\x4d\xee\x5c\x5a\xb4\xbf\x69\xe1\x8b\xf9\x2e\x7f\x0f\x13\x76\xcc\xba\xff\x5e\xa9\xfd\x5b\x4d\xff\x89\xc5\xe4\xdf\x6e\x2d\xf9\xd7\xbf\x2a\xbb\x7a\xe1\x4d\x30\x23\xa9\x36\x7d\x47\x5e\x4b\xe5\x6a\x30\x63\xfd\xba\xd0\x1d\x0f\xf7\x77\xca\x7c\xf1\xb1\x1e\xce\xe6\xc9\xf6\x97\x45\xae\xa3\xe7\xb0\xbf\xed\x4f\xbf\x9a\xd0\x2c\x48\xfb\xa3\xdb\x60\x57\x70\x7a\xdf\xff\x17\xdf\x5a\xa4\x04\xf7\x7f\xd9\x7d\xeb\x35\x4a\xfb\x5f\xb5\xfd\x1a\xa5\xa3\x5f\xd6\x1e\xcd\xe7\xbf\x70\x1a\x4d\x16\xf3\x45\x25\x5c\x56\x14\x71\x29\x33\x9f\x2d\xe6\x71\x18\xa7\xef\x1e\xa9\xf6\xff\xb0\xf6\xe2\x60\x06\xa7\x2c\x21\xd6\x9e\xb5\x87\x36\xf6\xac\x3d\xb8\xde\xa8\x87\xcc\x8b\x6b\xed\xfd\xfc\x49\x5f\xe0\x5c\xdd\xb3\xf6\x5e\xa3\x78\x30\x7f\xdd\xb3\xf6\xea\x41\x3a\xda\xb3\xf6\x96\xe1\xf4\x79\xcf\xda\xcb\x34\x71\xae\x30\xdc\xb3\xf6\x82\xb8\xc1\x00\xb5\x67\xed\x25\xe1\xcb\x2a\xe2\x8e\x3c\xe7\xe2\xa7\xdd\xa8\xff\xb4\x9d\xaa\x77\xe3\xec\x59\x7b\xe9\xfc\x36\x73\x70\xec\x59\x7b\x83\xdb\x3d\x6b\x2f\xaf\x06\x65\x4d\x20\x71\xbb\x67\xed\x51\x3f\x8d\x3d\x6b\x8f\x4a\xa9\x34\x4d\xa2\xa7\x55\x1a\xd2\x60\xa9\x6e\x7b\xbb\x08\x9d\x24\x99\x27\x34\xf8\x60\xba\xe2\x41\x87\xd4\x4e\xb0\x67\xed\x8d\x82\x65\xe3\x35\x2e\xb5\x15\xd1\x97\x49\x48\x3f\xfb\xc1\x94\x26\xf6\xf3\x0b\x04\xd8\xcb\xdc\xd8\xbc\x3e\x2c\x92\x0f\xa8\x01\x1a\x7d\x90\xa0\x0b\x14\xf0\xc3\xed\x12\xad\xd2\x3f\x48\xe0\x54\x92\xe4\xb3\xc6\x33\xc6\x53\x1a\x45\x8b\x85\x81\xa2\x7d\x3c\x4b\x23\x39\x03\xc0\x6f\xae\xe0\x2d\x9d\x78\x35\x83\x7c\x4c\xe3\x4e\x37\x34\xb3\x68\x10\x62\x82\x7b\xd6\xde\x0f\x6c\x20\x0d\x0d\x55\x69\xa7\xf7\xac\xbd\xf9\x2b\x6d\xcc\x7c\x45\x5f\xbc\xd6\xcf\x6a\xe3\xce\x38\x36\xed\x1a\x9e\xdd\xeb\x86\x56\xd7\x7b\xd6\x9e\x8b\xe7\x56\x5b\xb5\x3d\xb3\x67\xed\xb5\xf0\x7c\x7b\xd7\x68\x37\xf0\x53\x7b\x37\x54\x51\xe3\xa9\x7b\xa7\x68\x33\xba\x00\x1d\x26\xa5\x7b\xd6\xde\x2a\x16\xf7\xd1\x9e\xb5\x47\xad\x3c\xd1\x60\x69\x4c\xa3\x88\x06\x19\x24\xc3\xd5\x2c\x8c\x19\xcc\x82\xc5\x62\x4a\x7b\xb0\x8e\x92\x74\xc5\xf0\x75\xb7\x67\xed\x75\xa8\x02\xd3\x16\x3b\x5c\x52\xcd\x79\x06\x13\xde\x3b\xe8\xa0\x2e\x88\xb6\xd0\x24\x57\x11\x3d\x61\x15\xa9\x91\x96\xf3\xb3\xd5\xab\xeb\x06\x4d\x2c\x5a\xe6\x15\xc3\x4d\x48\x4d\xea\x64\xfe\xba\x0c\x13\x60\x1c\x6d\xff\x1d\x11\xcd\x1f\x39\xaa\xd0\x2b\x19\xf0\xcf\x69\x18\x63\xdc\xf4\xa4\x48\x10\xa5\xb7\x02\x3d\xf3\xb8\x1f\xa4\xbc\x11\x4c\xe4\xf2\xa1\x4b\x07\xb5\xfc\x35\x6d\x23\x37\xb7\xc3\x19\x18\x3f\xe2\x01\x8f\x81\x87\x90\x37\xe0\xc0\xb4\x46\xef\xb3\x41\xf6\x47\xd1\x74\x90\xf0\x68\xca\x03\xcd\xfd\xac\x18\xcf\x20\x12\x4c\x9c\x85\xcb\x65\x30\xa4\x2e\x32\xcc\x78\x8a\xd2\x59\xb0\xa0\x55\xd8\x81\xa4\x79\xfc\x1c\x0d\x57\xd9\xe3\x6b\x12\xa5\xf2\x93\x97\x74\x41\x70\x96\x04\xf1\x60\x3e\x63\x94\x6d\xb1\x2e\x8e\x7a\x44\xac\xf3\x11\x9b\xfc\xf9\x36\x99\xaf\x23\x4c\x6a\x10\x2d\x17\xd3\x60\x7b\x03\x48\x34\xf3\x78\x49\x3d\xe7\x75\xe8\xfd\xa0\xa8\xb8\x4c\x83\x94\xca\x4d\xe7\xfd\x20\xa3\x27\xd1\xb2\x3e\x5f\xc5\x29\x6f\xf6\xcf\x45\x18\x0f\xa2\x78\x78\x5d\x7c\x5f\x32\xe1\x2d\x9a\x58\xc5\xd3\x68\x99\xf2\x22\xe5\x3f\x96\x61\xda\x92\x96\xfb\xf3\xd9\x62\x95\x86\x77\xf3\x79\x5a\x27\x72\x4f\x13\x14\x3f\x8e\xfc\xa4\x36\x92\x29\x3f\x24\xc1\x6c\xc9\xe0\xe3\x6c\xb0\x35\x3f\x17\x02\xe4\xfd\x6c\xfd\xed\x68\xc0\xc3\x2b\xbf\xeb\x46\xd3\x69\x27\x9e\xc9\xeb\x99\x74\x93\x73\x1f\x82\xe8\xf8\x43\x25\x3b\x1a\x74\x16\x03\x0c\x72\x91\x84\xeb\x5b\x81\x97\x79\x9c\xbf\x9e\xc7\x45\xab\xfd\xa0\x3f\x0a\xb3\xff\x46\x5e\x0e\xc3\x98\xd4\x93\xf0\x16\xd3\x90\x47\xde\x7a\x9a\x59\x7b\x7e\xc7\x86\x50\xe9\x36\x9a\x86\xc5\x2f\xa9\xb2\x48\xc2\x94\x29\xe4\x5d\x38\x88\x12\xa0\xcc\xcf\x24\x7c\x2e\x56\x6e\x90\x2d\x1b\xaf\x03\x7d\xfb\xb1\x58\x2d\xb9\x2e\xfe\x09\x58\xfc\xf8\x71\xc8\x30\x98\x8e\xe6\x03\x86\xf2\xc5\x34\x60\x2a\x8a\x8d\x2f\xed\xe0\x4f\x11\x68\x4a\xfb\xbe\x54\x49\xe8\xbc\x80\x24\xf0\x0c\xb9\xb1\x62\xae\x68\x3b\x63\xd7\xb4\x34\x0b\xae\xc6\x84\xfc\xc3\xcf\x1f\xa1\x6c\x5f\xf6\x3f\xff\xb0\x4c\x93\xa8\x0f\xc0\x93\x1f\xc5\xa7\x30\x5e\x66\x9c\xa9\xfc\x3b\x09\x07\x2b\x9e\x07\x77\x0f\xa8\xdc\x5d\x43\x1e\xa6\xcf\xe4\x21\x8c\x07\xb2\xf6\x46\xf6\x2b\x09\x97\xab\x29\xd8\xe2\xee\x56\x50\x65\x9e\x16\xb3\x2f\xe6\x0b\xd3\x08\x1d\x85\xb3\x79\xc6\x48\x32\x72\x90\xd1\xa7\x1f\x19\x59\xe9\x97\x09\xc2\x32\xa3\x52\xa6\xa0\x18\x7d\x81\x91\x68\xe9\xcc\x16\xe9\xb6\xf4\x25\x18\x0c\xae\xc3\x80\xd0\xaa\x35\x0d\xb0\x85\xa3\x20\x51\xd9\xb2\x2c\x74\xb0\x0c\x05\x3f\x9e\x76\x7f\x52\x89\xd5\xd3\x32\x2d\xf0\xb9\x73\x77\x9d\xff\x96\xe5\x00\x82\xd6\x82\x78\x30\x65\xc4\x07\x48\x08\x41\x88\xe7\x73\x5a\x03\x88\x46\xb4\x60\x39\xd5\x7b\x9e\x27\x4e\xd0\x1f\x65\x64\x8f\x47\x7e\x1f\x4c\xa3\x41\x41\x18\x9f\x13\x26\x49\xfd\xe9\x3c\x2e\x91\xcb\xe7\x18\x8b\x98\x2d\x25\xf3\xde\x7e\x18\xd1\x8b\xe7\xe9\x9c\xb1\x21\x5a\xde\x04\x37\x2c\x72\x2c\x85\x1a\xea\xd5\x50\x78\xaf\xe7\xe4\x1c\x8f\x57\xaa\xe0\x46\x80\x90\xe8\x39\x09\x66\xa1\x3d\xef\xaf\xa4\x43\xbc\xe0\x99\x6e\x19\xa5\x84\xe6\x81\xc1\x85\xf1\xc0\xc8\x04\x96\x49\x3f\xc3\x0f\x22\x12\x22\x49\x0d\x8a\x96\xe6\x0b\xde\x10\xa2\xc0\x4c\x05\x53\xcc\x6e\x59\xa0\x0d\x88\x6b\x21\x9b\xfc\x10\x71\x03\x51\x08\x10\xe6\x80\xd5\x8b\x6d\x12\x0d\x47\xbc\x89\x8b\x69\x24\x3c\x93\x24\x25\xe5\xb2\xec\x32\x94\xad\x21\xca\xe4\xe9\x3b\x75\xd7\xa3\x9e\x27\x4b\x87\xa9\xe8\x8f\x9c\x91\x06\xcb\x65\x34\x8c\x01\x55\x62\x1a\x94\x36\xfb\x61\x23\x0e\x85\xcc\x92\xe0\x43\xdb\x49\xd0\xce\x3b\x2a\x4e\xf2\xdb\x82\xb6\x8e\x82\x65\x3b\x09\xa2\x69\x09\xce\xd2\xf9\x6d\x00\x81\x93\xb6\x32\xfb\x1d\x2d\xdb\x73\xf5\x84\x5f\xd5\x64\x3e\xc3\xef\xd9\x6a\x99\x3a\xf1\x00\x0f\xd3\x80\xbb\x5c\x2d\x40\xa6\x41\xf7\x97\xa3\xe8\x99\x7e\x8d\xe7\x51\x0c\xa9\x21\x03\x81\x8c\x94\x84\xeb\x30\x81\xf8\x17\x12\xe0\x04\xf7\x22\x29\x3e\x65\x3f\x18\xde\xdf\x21\xc3\x22\x09\x9f\xa3\x0d\x8f\xf6\x7a\xfe\x1a\x26\x06\x80\x3f\x0a\x96\x25\xc4\xe0\x8a\xef\xa7\xb7\x0c\x83\x84\x21\x78\x24\x68\xb5\x4a\x92\x30\x4e\x4b\xa4\x8f\x3e\x78\x82\xd7\x28\x9d\x3d\x2d\x82\x64\x99\x61\xd0\x20\xec\xcf\x07\x61\xe7\xce\x23\xb9\xe6\xce\xcb\xb8\x39\x20\xa2\x9d\x04\x4c\x9c\xe6\x71\x3d\x88\x83\x21\xa3\xd8\x22\x99\xcf\x16\x69\xce\x01\xc3\x64\x09\x26\x78\x9b\xbd\x8f\xc3\x4d\xf1\xc0\xfc\x3f\x99\x15\x0d\xb5\x89\xdc\x04\x99\x40\x3f\x0c\xd3\xce\x92\x55\x33\x2a\x95\x8d\x9c\xc4\xe6\xa7\xa0\x3f\xc9\x81\xfc\x5a\xba\x02\xa4\xf4\x85\x5a\x4e\x8b\xb7\xcf\xd1\x14\x62\x4c\x3c\x4f\xa3\xe7\xed\x75\x69\x68\xfd\x20\xee\x2c\x43\xbb\x51\x47\x77\xef\xbb\xc2\x23\xbe\x89\x40\x95\xb1\x73\x28\x26\x85\x94\x85\x96\x8a\xe7\x55\xc0\x62\xf0\x3a\x1a\x0a\x1f\x5c\x2d\xc3\x44\x0d\x81\x6e\xcb\xd5\x82\x15\x9e\xa2\x78\x1c\x86\x83\x65\x2d\x58\x8e\xcc\x28\x88\x87\x61\x69\x4e\x3f\x73\xf9\x8d\x7f\xfc\x78\x9e\x27\xfd\xf0\x2e\x7c\x4e\x42\xde\xda\x77\x8f\x52\x68\x77\xe9\x8a\xf7\x93\x70\x7b\x9d\xe9\x07\xe5\xdf\xc3\x30\xb5\x1b\xf5\x32\x7c\xec\xce\xf6\x27\xd4\xaf\x1f\x25\xf1\x08\x40\x00\x6e\x93\x7e\x02\x0a\xb4\xd3\x59\xf5\x11\xd3\xe0\xdb\xf9\x22\x7b\x11\xae\x33\x86\xe1\x6c\xa8\x72\x38\x5f\x2d\x6f\xe7\x0b\x96\xc2\x1c\xf9\x96\x57\xca\x7f\x17\xeb\x93\x4d\xfc\x86\xc0\x89\x4b\xcc\x27\x82\xcc\xa5\x49\x10\xde\x94\x1e\x32\x08\x0f\xa6\x99\xb6\x43\xe5\xb3\xb7\x83\x70\x9a\xd2\x9e\x0d\xe7\x4c\x44\xd6\x61\x22\x2d\x47\xb0\x78\x5e\xbf\x9f\x7a\x0d\xd2\x49\x06\x68\x99\x28\xd4\x1f\x85\xfd\x09\x2d\x66\x09\xcc\x82\xc1\x80\x67\x55\xda\xd6\x24\x9c\xcd\xd7\xe1\xfb\xb7\xd1\x52\x4f\xe7\xfd\x09\x13\xd4\x11\xda\x27\xe1\x26\x5b\x36\x12\xcf\xb2\xf1\xd2\xfa\xca\x34\x44\xc4\xc9\x41\x73\xae\x81\x1f\xc3\x79\x75\x9e\xbc\x06\x09\xb5\xf6\x44\xed\x32\xb5\xca\x7e\xd1\x6a\x12\x9e\x9b\xf9\x00\xa3\x24\x9a\xf0\x14\xb0\x84\x1d\xc6\x84\xf8\x3b\x54\x40\x1e\xe2\xf9\x32\x23\x32\xd9\x7f\xa2\x40\x35\xfc\x26\x3c\x91\x66\x73\x16\x0d\x99\x5d\xc6\x58\xfa\x2a\xab\x18\x2c\x47\x05\x1a\x08\x98\xd2\x48\xda\xd0\x24\x4b\x3f\x7f\xee\x8e\x18\xa5\x68\xd1\x86\xf1\x3c\xc9\xc6\x87\x91\x0f\x0a\xa9\x72\x5d\xda\xb8\x60\x3a\xa5\x0f\x19\x21\xf7\x72\x0d\x99\x64\x8a\x36\x73\xa6\x97\x55\x98\x6c\x5b\xe1\x34\xec\x03\x6d\x87\x61\x9a\xeb\xfc\xb2\x1b\xa5\x39\x30\x39\x93\x16\xfb\xd3\x60\xb6\x60\x51\xf2\x35\x4c\xf4\x7c\xc5\x12\xd8\x6a\xb1\x28\x1e\x66\xcc\x1e\x66\xc1\x26\x9f\x3d\x6c\x47\x1f\xe6\x2f\x20\xe7\xc4\x69\x02\x6e\xfb\xe1\xc5\x6e\xc1\x0c\x26\xde\x3d\x86\x79\xf1\x4c\xf9\x4a\x85\xd8\x6c\xd2\x32\x18\x15\xcd\x82\xbb\x82\x9c\xb9\x73\x6c\x21\x7b\xe1\x41\xb4\xc2\x24\x7b\xe8\x17\xee\x64\x36\xbd\xb0\x7a\xf2\xf3\x27\x83\x70\x20\x32\x20\x73\x12\x00\x08\xe3\xdf\x24\x8c\x97\xed\x79\xc9\x62\x93\xbd\xba\x0b\x87\x0e\x4b\xa4\xb7\xaa\x5d\xfb\x79\xe7\xb8\xce\xc3\x2d\x6b\x02\xf2\x3a\xe1\xb1\xa1\x34\xc4\x89\x60\x35\x4d\xed\x70\x1a\xcd\x22\x50\xf6\x41\xe9\x37\x91\xbb\x70\xd9\x0f\x16\x8c\x45\xf3\xe7\xe7\x65\x98\x71\x1e\x9e\xd8\x22\x5d\xb1\xde\x3e\x4c\xe6\xcc\xc6\x67\xf3\x41\xf4\x1c\x71\xd5\x60\x99\x86\x49\xb4\x9c\x08\x73\x8f\x98\x77\x27\xe1\x22\x0c\xd2\x5c\xd4\x0f\xa0\xa1\xa5\x69\x98\xc4\x79\x4f\xae\xb4\x85\xa7\x5c\x51\x05\x30\x76\xee\xbc\x5c\x6b\xbe\xcd\xd4\x9c\xfc\x93\x48\xbd\x04\xd3\x2c\xf9\xa6\xf3\x0e\xc1\x8c\x30\x7b\xc8\xfa\x4c\xab\xa6\x01\xdb\x01\xe6\x0b\x96\x55\x06\x01\x53\x2b\x34\xf3\x69\x57\xd9\x92\x31\x07\x1e\x8a\xa0\x77\xd5\x6a\xdc\x08\xce\xc6\xc3\xe8\x99\x46\x42\xc2\x4a\x1a\xb2\x58\x13\xa4\x69\xd0\x1f\xe5\x54\x85\xfe\x88\xcc\x4f\x6a\x52\x37\x4a\x47\xe5\x45\xe7\x05\x5c\xe6\x1a\x45\x49\xc9\x5b\x88\x40\xc5\x90\x50\x7a\x8f\x6e\x4b\x2f\xbe\x32\x7e\x65\x26\x8a\xa0\x0c\x2d\xa3\x00\x2c\x03\xba\x10\xdb\x61\x48\x6a\xce\x22\x7f\x49\x78\xa4\x91\x99\x4c\x5e\x5d\x86\x69\x5b\x8c\x06\xc0\xed\x5d\x07\x14\xd5\x6d\x3b\x77\xaa\xdd\xb8\xdb\xb3\xf6\x74\xc7\x75\x7b\xdc\x72\xba\x4a\xe2\x36\x2c\x30\x1a\x9b\x70\xa3\xea\x8e\xd8\x10\x0a\x98\xb7\x9d\xaa\xea\x5c\xb7\xc5\x72\xe5\xd0\x8f\xdc\xbe\x05\x4d\x63\x59\x1a\xdd\x6d\xc9\xae\x36\x0c\xd3\x7a\xa6\x9d\x4e\x22\x28\x6a\xa2\xdd\xdb\x4e\xf5\xe7\xbd\xba\xee\x38\xad\x3d\x6b\x0f\x3f\x7e\xea\x0e\xc9\xcd\x3f\xe2\x40\x24\x9b\x1f\x02\xff\x6c\x77\xcb\x31\xf7\x47\x10\x6f\x6f\xb2\x22\xe9\xbc\x30\x58\xf1\x1e\x14\x94\x0e\x36\x58\x2a\x92\x97\xc0\x8f\xcc\x8a\x36\x8a\x06\x83\x30\x16\x18\xd8\xb5\x1c\xde\x48\xdd\x85\x47\xcb\x31\x6c\xdc\xda\x1f\x8a\xd8\xf9\xc9\x14\x98\x70\x97\xf5\xcc\xc6\xfb\x93\xbd\x03\x47\x30\x44\xa5\x61\x32\x5f\xdc\xc1\x3e\x6b\xe7\xd3\xf9\xb9\x1b\xd7\x75\x54\xe0\x7a\x5e\x3f\x23\x7d\xc4\x12\x96\xdc\xd8\x70\x35\xe0\xff\xbb\x01\x47\x4c\x0c\x97\x69\x10\x33\x35\xfb\xf9\x65\x14\x0c\x93\x99\xe7\x30\x09\xe3\x7e\x6e\xc6\xcd\x0d\x65\xb9\xec\x5a\x02\x19\xb1\x91\x11\xdf\x76\x66\x51\x0a\x4c\x80\x78\x92\xc0\x6a\x52\x3c\x83\xfc\xd0\x33\x5a\x62\x2a\xf4\x9a\x89\xfc\x7d\x96\x64\x06\x1a\x1d\xc9\x44\xf3\x8f\xc1\xb4\xbf\x9a\x06\x69\x68\x76\x4a\xfd\xcc\x0c\x5c\x3f\x58\x37\x85\xf1\x89\xde\x67\xf6\xad\x1f\x62\x04\x11\x96\x29\x4f\xb4\x3b\x28\x55\xb6\x32\x86\xcc\xae\xc2\x7c\x16\x24\x00\x17\xad\x7e\x30\x2c\xdd\x85\xfd\x30\x5a\x87\x99\x79\x48\x24\x79\x98\x8a\xa6\x83\x6c\xe0\x34\x9a\x6d\xa6\x3b\x9b\x62\x30\xd0\xaa\x64\xcb\x07\x3b\x83\x39\xca\x46\x73\x94\x19\x17\x8e\xc4\xfa\x79\x24\xf6\xce\x23\x8c\x2e\xeb\x03\x7e\xec\x7c\x51\xfa\xbb\xbd\x48\x28\x1f\x13\xcf\x49\xe8\x94\xe3\xf5\x60\x4d\xe5\x49\xef\xbe\x25\xda\x02\x80\x58\xee\x3e\x55\x83\x29\x93\x80\xd2\xab\x76\xb2\x7a\xf7\xe6\x66\xc5\x96\xfc\x72\x19\xd0\x8f\xd2\x1b\x25\xd6\x67\x60\x24\xd6\x76\x36\x8f\xc7\x4b\x37\xf3\x70\x40\xa3\x90\x9a\x24\xc0\xc7\xd1\xcb\x2a\xf4\x06\xa2\x79\x67\xd3\x03\xab\xe5\x95\x01\xe2\xfe\xf8\xe0\xb0\xf8\xb9\xf3\x06\xf4\x61\x50\x46\x4c\x6e\x22\xdb\x3c\x98\x49\xb2\xa7\x1f\x25\x4b\x37\xdb\xc0\x7f\x22\xf0\x0b\x0a\xf9\xc7\x20\x00\x2a\x01\x95\xfd\x47\x16\xa2\x50\xbc\x2a\xaa\x1f\x31\x89\xa2\x66\x73\xe6\x88\xe2\x68\x01\xd8\xcf\x3a\x7c\xc4\x6b\x34\x98\xc7\x42\xc8\x70\x94\x64\xcf\xda\x6b\x37\x7e\xb6\xda\x77\xde\x8d\xcb\xc5\x78\xe4\x24\x6d\x61\xb1\x84\x5e\x7d\x32\xf1\x3e\x8f\x3d\x9d\xe7\xba\x4e\x3a\xcf\xcc\x09\x99\x0c\xe4\xb5\x7e\x7a\x37\xe6\xba\x63\x33\xd9\xfd\x21\xe6\xf7\x70\x5a\xb2\x91\x14\x56\x9e\x7c\x18\x3f\x61\xd0\xb0\x1b\x75\x4f\x82\x87\x96\xcc\x24\xa6\x24\x3b\x0a\xb0\x0d\x06\xed\x79\xa7\x08\xeb\xe1\xd5\x0e\x19\x15\x27\x6c\xd2\x2f\x3c\x12\xb6\xd3\x32\x77\xde\x6d\xbb\x71\x47\x63\xa8\x3b\x6d\xb5\x67\xed\xf9\x0e\xb1\xa4\x1f\x7c\x88\x0a\x46\x12\xfc\xb5\x33\xe6\x17\xc6\xab\x99\x4c\xfd\x67\x6e\xa7\x19\x36\x6e\x6f\xc4\x98\xe2\x82\x46\xd3\x7f\x9e\x9a\x7d\x2b\xdf\xe9\x41\x64\x81\x9f\x65\x61\xa0\xe6\xd9\xb6\x73\x83\x69\xde\xde\x79\x75\xaf\xed\xdd\x3b\x50\xd4\xe2\xd5\x2c\xf7\x73\xdc\x85\xc3\x68\x09\x61\x52\x4d\xa7\x85\x47\xa9\x71\x5b\xfc\xee\xb4\x9c\x9f\x37\x4a\xea\x37\x73\xb0\x5a\x86\x42\x6e\x9e\xa3\x92\x81\x2a\x4c\x51\x51\x1c\x2f\x76\x06\xa4\xf2\xfc\x9a\xb0\x00\xbb\xdc\xce\x78\x2c\x39\x74\x95\x40\xee\x23\x1a\xfc\xf8\x04\x1a\x7e\x7c\xe1\xd4\xa2\x31\xfe\xf8\x05\x2b\xfb\xf1\x39\x27\xfc\xf1\x95\x6b\xcd\x6b\xfd\x6c\xd0\x5a\xff\x00\xd9\x0f\x97\x67\xc5\xb7\xd7\x70\x3a\xf5\xe3\xf9\x6b\x5c\xbc\x9a\x84\xdb\x6a\x66\x25\x68\x65\x0b\x44\xbf\x99\x23\x92\x68\xa1\xbc\xeb\xd6\xcf\xc6\x4d\xb1\x29\xad\x42\xa9\xe2\x01\x96\x7e\x2f\xc3\x54\xd6\x8d\xf5\xeb\x30\x66\xde\x47\xad\xdc\x39\xce\xa3\x23\x7a\x11\x41\x35\x3e\xc2\x68\xbd\x64\xb1\x84\x84\xca\x57\x88\x30\xf4\xf3\xc6\x61\x81\xe6\x39\x58\xa6\x50\xf5\x87\x61\xda\x0d\x83\x09\x73\xba\x6a\x12\x86\x6f\x02\x71\x2d\x7c\x2b\x39\x17\x8b\xf9\xb2\xed\x20\x5b\x32\x6a\x60\xe7\x45\x46\xc6\x3e\x48\x67\xd9\x87\x0f\x3c\xf8\xe7\x87\xa2\x73\xd9\x8b\xdd\xb7\x19\xde\x88\xb9\x5b\xe4\x82\xa7\xd5\x70\xb8\x2d\x35\x9f\xe3\xcd\xcf\x0f\x1d\x2d\x0a\x4b\x48\xc1\x14\x77\x02\x06\x08\x65\xde\x17\x28\x3c\xea\x02\xb9\x8b\x70\x90\x33\xbb\x3b\x56\xea\x93\x70\x16\x44\xc4\xa5\x32\xb2\x0b\x5d\x7f\x34\x8f\x96\x29\x1c\xfa\x4b\xe1\x5f\xbb\x8e\x74\xda\xd2\xd9\x62\x9e\xec\xf8\x0e\x6f\x57\x49\x58\x2e\xf1\xa1\xca\xcf\x52\x38\x35\x24\xa9\xdc\x41\x73\x87\x88\x0c\xa6\xee\xdb\xb8\x0f\x9f\x42\x36\x11\x82\x12\xfa\x92\x61\x9f\x18\xaf\x52\x16\x26\x76\x7b\xfd\x1f\xac\x63\x2e\xa2\x78\xb8\xdc\xfb\xaf\xbd\x57\x57\x29\x65\x79\x4a\x79\xca\x72\x94\x6a\x18\xf9\xdb\x54\xaa\x63\x19\xa5\x1c\xfe\xd9\xb2\x3a\xca\x24\xda\x8a\xb4\x52\xb7\xc6\xaa\x2b\x15\x69\xae\x55\xbf\xb2\x3c\x2b\xd2\x46\x4d\x0d\x37\xe2\x53\xf5\xd6\x55\xd1\xc8\x91\xb6\xe6\x5a\xa9\x7b\x8f\x1e\xb6\x5a\x59\x0d\xfe\x52\x57\xaa\xa9\x2c\x5f\x99\x37\xc7\xa6\x57\xaf\x28\x76\xe7\xd0\x97\x95\xa6\x4f\xca\xb7\xf3\x62\x54\xc5\x57\xce\xb1\x6d\xac\x16\x8d\xa6\xaf\x54\x5b\x59\xae\x32\xfd\x4f\x86\x74\x6d\x79\xd6\x8b\x36\xd7\x32\xa4\x3a\x0d\xa6\xcb\xf3\x6a\x5a\x9e\x32\xb1\xe6\xdf\x91\xb6\xf1\x8a\x06\xa1\x1d\xfa\xdd\xaf\xe6\x85\x52\xed\xd2\x6f\xdf\xc8\x78\x43\xe5\x8c\xf4\x33\x7f\x1e\x6a\xfa\xe7\xdd\x64\x65\xd5\x5c\x7b\x79\x29\x15\x69\x1a\xe1\x2b\x1a\x74\x8d\xfc\x75\x95\x77\x5a\xb5\x5c\x55\x53\xf7\xbc\x40\x4d\x1a\x7b\xdb\x14\x0d\xf5\xea\x96\xab\x94\x4b\xaf\x63\xdd\xe6\x32\x1d\x7a\xb8\xbe\xa3\xdf\x43\x4d\x63\x9a\x6a\xee\x06\x2d\x7b\xef\xda\x37\x23\x4d\x6b\xd0\xa0\x39\x9b\x36\x35\xc6\x2b\xde\xb2\xe9\x67\x9f\x7f\xf2\x06\xf7\xa8\x54\xdd\xb1\x3a\xb4\xbf\x27\x5a\x39\x23\x5a\x72\xdb\xa3\x17\xdd\x2a\x4d\xa7\xc7\xab\xe0\x50\xa3\x34\x7f\x5a\x3c\xd7\x6a\x28\x93\x1a\x5a\xd8\xa1\x36\x4f\xed\xa9\x96\x0d\x6e\x29\xd5\xed\x60\x21\x5c\xa5\xee\xb8\x87\xb9\xb6\xba\xca\x2c\x78\xe5\xf6\x1d\x7a\xbf\x71\x4a\x0b\x14\x62\x6c\x9e\x52\x3e\xc3\x57\x13\x3f\xbb\x34\x4a\x2a\x44\xbb\xdd\x34\x56\xdd\xea\x9b\xea\xa9\xc3\x3b\x28\xfb\xc5\x2b\xa4\xac\x50\x99\x8d\x3e\xd4\x65\x38\x6d\x29\xd5\x39\xc0\xb6\xf0\x5a\x9c\x63\xa5\x78\x22\xa1\xcb\xb0\x54\x95\xaf\xbe\x75\xa6\x8d\x3d\xe5\x5d\x6a\xf1\x52\x6e\x01\x0f\x4d\xae\xb9\x96\xf5\xaa\x2b\x75\x6f\xcb\xd2\xd3\xb2\xd2\xb7\x63\xde\x05\xaf\xc6\x80\x41\x80\x6e\x5f\x1b\xcb\x31\xb5\x16\xb5\xb5\x32\xb5\xa2\x95\xd3\xbf\x6b\xc5\x29\xb5\x52\xbd\xe6\xfe\x5b\x05\x48\x04\x0b\x8c\xff\x45\xf3\xd0\xaf\x2d\x57\xb9\xe7\x9a\xd7\x89\x47\x8c\xbd\xe7\xc5\xf6\xf8\x45\xd7\xa1\xf2\xcd\x2b\x1a\xdf\xd8\x5c\xd3\xab\x7a\x83\x3f\x10\xd0\x99\x27\x1e\x43\xab\x4e\x8b\xd5\xbc\xa7\x76\x18\xc6\xcf\x35\xa3\x46\xe3\x86\x06\xdb\x60\x78\x6f\xd4\x2c\x4f\xb9\x6b\x74\x5f\xb7\x1c\xbb\x5d\xa7\x4d\x3a\xd3\xc5\xe4\xdc\x29\x4f\xce\x1b\xa3\xd0\xab\xb6\x96\x9a\x50\xd6\x32\xca\x8c\x4c\xb1\x5f\x33\xfd\xb6\x53\x62\xa9\xef\x2c\x57\x39\x0b\xfb\xf3\x79\x34\xb0\xc7\xb5\x62\x22\x6b\x99\x48\x0f\x5f\x6e\x81\x1b\x9f\x4c\xc5\x25\x80\x78\xe2\xbe\x0e\x34\x03\xb6\xb1\x5e\xb4\x52\x2f\xfa\x89\xd7\x8f\xfb\x6a\xd6\x08\xd1\x37\xf6\xe7\x53\xf6\xde\xf2\x29\xab\xb1\x6e\x5b\x33\x6a\xc1\x11\xc2\x78\xc9\x90\xd5\x6a\xe4\xc4\x61\xac\x1f\xb9\x66\x2f\x7f\xf3\x3c\xe4\x39\xd7\x47\x26\xa7\x29\x83\x08\xa4\x74\x5c\x50\x9e\xe7\x09\x4a\x4d\xf3\x57\xee\x60\xc6\xbf\x19\x84\xef\x05\x7d\x50\x08\x7f\xc7\x04\xf5\x86\x29\x59\x4b\x60\xe6\x45\x0b\x65\x72\x54\xfb\x9e\x4b\xf5\x40\x6f\x41\xcf\x68\x0a\xe6\x18\x8d\xf4\x6e\x4a\x1f\x9a\xe5\x0f\x77\xa5\x0f\x9d\xd2\x87\xee\x7d\xe9\xc3\x31\xf5\x64\x0e\xf5\x0a\x63\x7c\x28\x7d\x0a\xe8\xcb\x1b\xea\x74\x9e\x4a\x1f\x42\x7c\x38\xe5\xa7\xce\x9c\xff\xf5\x52\xfe\xd7\xe0\xf9\xf9\x91\x4d\xbb\xd2\x19\xdb\xd9\x93\x2b\xcb\xf3\x66\xf7\x79\x08\xe7\x28\x4d\x2c\x67\xaa\xb1\x8a\xad\x19\x4f\xba\x87\x4a\xad\x19\x9a\x8d\x51\xf0\x84\xa1\xae\x75\x6a\xca\x4f\xf4\x67\x4c\xd0\xe0\x9e\x03\xe2\x16\x84\x4c\xb6\xbd\x65\x3c\xea\xa6\xd8\x53\x26\x2a\xe6\x91\x57\xd9\xb9\x9f\x30\x89\x69\x30\xcd\x0a\xc6\x9a\x60\xec\x40\x9f\x71\x85\x91\x3e\xd7\x02\x39\x3e\x2d\x49\x04\x6a\x83\x3e\x5b\x47\xd4\xb6\xb3\xd1\x4b\x7e\x5b\xe7\x61\xd5\x9f\x3f\x81\x34\x57\x39\x63\xc3\xcb\xaa\x9a\x47\xe8\x6d\xcb\xff\x66\xc6\x9a\x69\xa5\x9e\x63\x5d\xd4\x7a\xd1\xa5\x6a\x0b\xe7\x82\x0b\x76\x99\x39\xd4\x6f\x0a\xa4\xf1\x2f\x09\x2d\x9d\x43\xfd\xca\x4b\xd9\x3d\xcc\x9a\x20\xe4\xc0\x88\x1a\x4c\x21\xfb\x4c\x7e\x80\xa2\x8f\xc0\x3f\x7a\x8d\xe1\xb8\xaf\x25\x5e\x92\x72\x57\x9e\xb1\x86\x9a\x68\x17\xc3\x9d\x4b\x08\x9e\x30\x9a\x34\x99\x5b\x74\x2a\xb4\x42\xc4\x77\x08\xc9\x50\x84\x09\x38\xb5\x7f\xc4\xa0\x13\x7f\xfa\x8d\xc1\xc0\x59\x73\x4f\xc9\xa7\x25\x00\x70\x54\x44\x46\xc6\x28\x5e\x7c\xb7\xdf\x7d\xce\x07\x9e\x94\x08\xbf\xe3\x33\xab\xab\x52\x07\x75\x63\xf5\x94\xcb\x48\x6e\xab\x11\x4f\xd8\xd0\x1c\xfa\xbd\xec\xa7\x69\xd3\x92\x3c\x1c\x10\x1d\x0b\x46\xa6\xca\x7b\x43\x04\x5b\x1d\x68\xde\x9a\xdb\x5b\x60\x27\xff\xf3\x62\x08\x22\xa0\xd0\xf5\x17\x6c\x25\x4d\xcc\x59\x3b\xc4\xc2\x8c\xbd\x01\x3e\xbc\x30\xab\xed\x25\x4e\xf6\xc4\x0c\x8b\xe6\x7c\xc8\x1c\xb6\xc1\x3b\xe4\x54\xc0\x3e\x04\x89\x00\x13\x7e\x9b\x26\x1b\xf0\x72\xb5\x20\xcc\xd4\x21\x7c\xf8\x13\xfe\xd7\x01\x21\xf1\x97\xc4\x5d\xfc\x4b\xe7\x2a\x27\x00\x4c\x5a\xcd\xe3\x4d\x8e\xf8\xf2\xe2\x2e\x47\x78\x79\x71\x5f\x20\xba\xbc\x39\xd2\x39\x82\x2b\x8f\xb1\xe3\x29\x47\x6c\x79\x01\x39\x48\x18\x2e\xbf\x01\xcc\xd1\xb8\x1d\x30\x77\xf3\xb8\xe6\x19\x0b\x87\x3e\x33\x96\x4b\xa2\xc3\xb9\x3d\x66\x74\xf2\x40\x28\xfd\x5a\x4e\x1b\x9f\x2e\x78\xea\xc1\xa5\x9d\xbf\x7a\xd3\x0f\xa5\x26\x3a\x56\x21\x6f\x31\xdc\xee\xa3\xe4\x25\x5a\xba\x66\x3a\xc9\x7c\xb0\xc1\x28\xe2\x32\xf2\x38\xdb\x9d\x52\x67\x20\x72\xfc\x7d\x4a\x74\xc8\x24\xbc\x91\x9d\xd9\x87\xc6\x1c\x81\x16\x7c\x69\x5c\x62\xb7\x88\x25\x99\xdb\x99\x6d\x79\x56\xdf\xdc\xb4\x0f\xcb\x93\xcc\xc4\x10\x97\x86\x4e\xb0\xf7\xa2\xad\x09\x41\x0e\xef\xe0\x96\x41\x13\xbf\x4f\x20\xed\xde\x2a\x08\x54\x6a\xcd\x24\xca\x1b\x82\x68\x8e\x9c\x9c\x89\x4c\x75\xc4\x0f\x9d\xb1\x63\x15\xa2\xe9\xc3\x97\x9d\xd2\xec\xd1\x4a\x13\x3c\x66\x6c\x5b\x75\xea\xe2\xea\x0d\xeb\x3e\xc1\xc7\xa9\x34\x07\xa1\xcd\xf0\x50\x1b\x24\x11\xcc\xf8\x43\x3d\x2e\xba\x1b\xcc\xf9\x77\x6b\x91\xbf\x52\xc1\x9c\xd6\xd9\x5c\x82\xfc\x5f\x00\x3f\xee\x89\xfa\x38\xed\xca\x87\x15\xd9\x07\xfa\x42\x92\x3e\x03\x85\x3c\x67\xbc\xe9\x14\x4f\x2c\x18\x0d\x79\x8d\xfb\x58\xf0\x0a\x8a\x80\xb1\x06\xa0\xfb\x4c\xe0\x7c\x46\xa8\x4b\x5a\x61\x77\xec\x9c\x69\x51\x12\x5c\x6b\xab\xcd\xbd\x80\x17\x4b\x16\xdd\xb4\x98\xc5\xfa\x17\x8b\x46\xdc\x61\x89\x0e\x52\xe9\xa1\xce\x6a\x04\x11\x39\x26\x4d\x3e\x49\x30\xd9\x14\x14\xef\x7d\xad\x7d\xfc\x41\x04\x8d\xaa\x79\x8b\xc6\x11\x91\x9b\xa5\x71\x92\xfd\xce\xa9\x69\x73\x2b\x32\x2e\x49\xa1\x57\x0f\xd6\xb0\xa6\x42\x8f\x21\xdf\xb9\xe2\x26\x58\xc2\xba\x63\xda\x42\x30\xe1\xde\x5a\x9e\xaa\x42\x0c\xa1\xc9\x38\x10\xc8\x1b\x53\x9d\x51\x60\x22\xc7\x13\x61\x98\x90\xbd\x40\xf4\x0a\xae\x63\xe5\x42\x56\x83\xd1\xad\xee\xd2\xa0\x2a\x0e\x13\x49\x9f\x99\x5d\x33\x41\x7b\x4c\xc7\x7c\x86\xa3\xaa\x02\x35\xe1\xa6\x23\xbd\x66\xa6\xed\xbf\xa2\x79\xa6\x05\x13\x22\x95\x24\x0c\xf1\xab\x15\x80\xaf\xc6\x9b\xb6\xa0\x77\x66\xe3\xbc\x32\x0f\xed\x10\xf1\x55\x2f\xa0\x9c\xf5\x26\x81\xce\xc2\x10\x25\xea\xb5\xad\x86\x5a\x6b\xd5\xa2\xef\x21\x6f\x50\x48\x0b\xd0\x1f\x43\xcc\xeb\x1f\x12\x65\x76\x16\x7a\xc9\x3a\x62\x8b\xf4\x8a\x81\x68\x12\x1e\x13\xf5\xbe\x52\x7d\x03\x29\xd0\x90\xe8\x7b\xcb\xab\xbe\x01\x53\xe1\xde\xcd\xa0\xc9\x0b\x3b\x32\xfc\xee\x00\xa3\xad\x5b\x3d\xe5\x4d\x35\x73\x82\x8d\x6e\x5b\x46\x6d\xb5\x13\x70\xa3\x9e\xd5\x55\xfb\xe6\xe6\x4a\x1e\x3a\x6a\xeb\xe4\x0f\x5d\x2b\x32\x26\xbd\xe2\xee\xef\x9f\xa9\xdd\x99\x88\x4d\x0c\xe3\x87\x3a\xe7\x4e\x9e\xe2\x7e\x64\xe3\xea\xea\xe6\xda\x5a\x6a\xab\x6f\xec\xa7\x8d\xfb\x1e\x6c\x5e\x5d\xe0\x24\x43\xcf\xd8\x40\x53\x30\xca\x5c\xcf\xaa\x56\xc0\xa2\xb5\xa3\x54\x9b\xc1\x67\xe0\x90\x0a\x05\x32\xdb\xae\x42\xed\x73\x49\x77\x82\x50\xd8\xae\x31\x35\x9e\x56\xb9\x0d\x65\xf9\x56\xdf\x5c\x3f\xac\x4b\xda\x5a\xc7\x72\xad\xbe\x51\x82\x26\x27\x50\x72\x89\xa6\x41\x09\xf1\x37\xd0\x96\xb6\xae\xd5\x52\x66\x50\xf9\x30\xd6\xa3\x12\x79\x6b\x30\xcc\x5c\xd8\xbc\x7b\xac\xd6\xa8\xbb\xd8\x80\x4b\x32\x1a\x41\xde\xe3\x2d\x89\x00\x6d\x8c\xe0\x9e\x03\x25\xbe\x61\xcd\x8d\xa9\xc5\x55\xeb\xe4\x4e\x2d\x35\x6b\x6e\xa9\xbe\xb2\xea\x2a\xdc\x32\x85\x3f\xd1\x63\x87\x85\x7e\x50\x47\xa1\x84\xb4\x3e\xee\x80\x21\x14\xb4\x0c\xad\x31\x8c\xf5\x41\xa4\x1a\x56\x8f\xd4\x55\x54\x68\x7a\x82\x4d\xef\xbe\x57\x40\x5a\xfd\x36\xab\xa1\x33\x52\x5a\xeb\xcf\x0b\x5d\xa0\xe2\xc0\x72\x49\x4e\xa6\xca\x2c\x97\x36\x98\xc5\x0c\x78\x2c\x04\xbd\x07\xfa\xca\x6a\xa8\x8d\x56\xea\x13\x44\x59\x32\xb8\xd5\x0f\x78\x55\x3a\x87\xc0\x07\x33\x87\x45\x83\x36\xf7\xd1\x94\x84\xaf\x7a\x95\xf5\x99\x33\xc2\xc2\xc6\xa1\xc6\x22\xd6\xe7\x3c\xa7\x00\x82\xd4\x02\xef\x5e\x0c\x1b\x3c\x66\x2c\x70\x2e\x44\x28\xad\x5f\x68\x92\xd4\x4c\x3b\x45\xa1\x15\x14\xf3\x4a\xb9\xed\x09\x6f\x22\x04\x41\x9e\xc8\xa1\x29\xba\xe9\x2a\x73\x27\x1d\x6c\xc5\xc2\x62\x94\x79\xba\xe1\xd2\x44\x7d\xdc\xc7\xf8\x5d\xff\x04\x62\xfe\x06\x43\x4d\x4d\x1b\x28\xcc\x64\xb7\x49\x0b\xe7\xac\x35\x16\xed\x4c\x67\x03\x6e\x91\x28\xc5\x78\x32\xb5\x0b\x18\xc7\x3a\x11\x45\xba\x31\xb0\x04\x78\xfc\xb6\x21\x9a\xdd\x1d\x8f\x9b\x25\x1c\xf5\x44\x78\x38\x31\x4f\x25\x4b\x13\x86\xd5\x78\xb3\xad\x8e\x3a\xd1\xac\x37\x1f\x6a\x75\x52\x15\xb8\x25\xf6\x0b\x7b\xc4\x9b\x8e\x1d\xec\x8c\x9d\xad\xaa\x33\x48\xb1\x59\x2b\x9b\x0a\x9a\x5b\xd9\xbb\x23\x3b\x5f\x82\x47\x2c\x41\x92\x97\x9b\x6b\xe5\x27\x9a\x05\x88\x86\xc3\x5a\xe6\x8a\x9b\xdf\xe8\x05\x9a\xdf\xda\x8c\x15\x6f\x76\xf6\xd4\x53\xee\xa1\x6e\x71\x85\xd4\xfc\x82\x8c\x41\xb2\x03\x34\x77\xa8\xef\x63\x12\xad\x3f\x23\x5d\xc4\xfe\x48\x38\x18\x9b\x53\xa7\x58\xc8\xb9\x53\xa6\x7d\x52\x98\xf6\xde\x2c\x48\x87\x29\x4d\x03\x50\x58\xa7\x8d\x36\x89\x16\xd3\x04\x40\x27\xdb\xae\x88\x14\xb8\x77\x65\x55\xab\x49\x72\x72\x6c\x5f\xd3\x78\xc3\x8d\x5d\xee\xe8\x82\x45\x1d\xff\x8d\x94\x7e\x47\xa5\x0e\x91\xd4\x95\xe3\x54\x73\x92\x7a\x56\x26\xa9\x43\x7d\xc7\x7b\xf8\x62\x0a\x74\x4b\xec\x82\xf5\xbd\x10\xc6\x0b\xaf\x4c\x04\xb1\x9e\xdf\x49\xf3\x24\x27\xf8\xaa\xb6\xb0\x8f\x34\xc3\xde\x11\x08\x31\x37\x53\x17\x4a\x1c\x81\xab\x7b\x10\xab\x5c\xab\xa3\x26\x9a\x8d\x1b\xa3\x4f\x61\x24\xc9\x60\x44\x26\x75\x86\x69\xaf\xdf\xbf\x24\x7c\x3a\x77\xcb\x78\xae\xac\x86\x72\x37\xf6\x04\xe4\xa5\xce\x02\xd1\x8b\x10\x31\x01\xf9\xb7\x9d\x56\x86\x00\x93\xc3\xf7\x2f\xa9\xbf\x51\x6d\xb7\x69\xfa\xbb\x75\x08\x0b\x47\xce\xed\xd7\x90\x27\x8d\x44\x36\xf1\x83\xee\xf1\xfb\x97\xd4\xdd\xb8\xf6\x61\xd0\xa7\xd9\xa0\x3f\x00\x27\xd1\xd9\xea\x01\xad\xea\x1b\x73\xc8\x03\xed\xbc\x99\x7c\x3f\x5f\x0d\xb6\xf0\xc8\x64\x92\xa4\x73\x07\x51\xcd\x72\xd4\x44\x8f\xb5\x50\x65\x7a\x03\x85\xab\x4e\xc4\xbc\x75\x48\xbb\x75\xc7\xac\xb6\x4d\xd0\x61\xaa\x10\x4d\x48\x53\x67\x76\xf9\xe0\x14\x6f\x49\x8b\x77\x59\x1a\x6b\xc3\x96\xa7\x78\x34\x1b\x6e\xfc\x45\x2b\x98\x84\x98\xa7\x30\xb5\xa9\x0f\x58\xee\xe1\xe1\x17\x2f\xcc\xa5\x40\x03\x6c\x08\x3c\x87\x00\xbb\xc8\x95\x1b\x09\x4d\xfd\xda\x23\xa9\xe6\xb6\x6b\xd5\x55\x13\x06\x33\xb4\xd6\xe4\x6a\x66\x40\x90\xe7\xb2\x2d\x69\xa8\x97\x9a\xb4\x61\xd5\x63\x76\xa1\x1e\xe7\x2c\x09\x4d\x34\xcc\xa2\x4c\xde\x13\x7b\xc6\xb2\x0f\x09\x9f\xcd\xc7\x62\x2d\x5a\x99\xad\x36\xb7\x93\x0d\x21\xeb\xf8\x44\x05\x4c\x02\x71\xc2\x2f\x64\x33\x23\x26\x1e\xd8\x7e\x3c\xc6\x7b\x58\xd1\x5f\xb8\x91\x01\x4b\xac\xfb\x5a\xb1\xa9\x06\x12\xea\xb1\xfd\x91\xae\x40\xd7\x87\x50\xc2\x42\x07\x24\x16\x9b\xd6\x50\x9d\xd4\x36\x36\x89\x1a\x6c\x72\x5e\xb3\x71\xd6\x63\xcd\xb0\x03\xe0\xe8\x4e\x89\xb8\x10\xb1\x90\x21\xc3\x90\xd5\x9d\xf2\xa0\x8f\x35\x8c\x58\x2d\x60\x94\xa8\x2a\x11\x03\x60\xf6\xc4\xd4\xc9\xac\x0d\x74\xf6\xee\x2b\x63\x70\x78\x2b\xfa\xc3\x04\x36\x7c\x16\x2a\x59\x79\x0b\x98\x60\x42\xcf\xef\xa7\x90\x22\x2f\x18\xcf\x5b\xbc\xdb\x50\xc2\x69\xa1\x2b\xb5\x43\x10\x37\xec\x2e\x2a\xba\xf2\x0e\x82\x12\x35\xd0\x51\xa6\x62\x56\xb4\xdb\xee\x35\xad\x91\x57\x61\x41\xa6\x8a\x91\x13\xf0\xbb\xca\x28\x06\xf9\x8d\x2e\xad\xde\xab\x28\x8c\x86\x64\x56\x71\x85\x74\x95\xb9\x9d\xeb\xac\x9e\xa7\x9c\x36\x50\x9d\x25\xa4\x89\x4e\x3d\x70\x4a\x0f\x4a\xcd\x92\x87\x3d\xd1\xb0\x38\xb1\x11\x46\x79\xac\xcd\x9b\xd8\x2c\x4d\xd1\x8c\xfb\x30\x81\x78\x44\xbb\x1b\xb0\x6d\xd3\xe3\xd9\x74\xd8\x38\xc5\x25\x09\x44\xb7\x3a\x2e\x21\x57\x27\xc1\xbf\x25\x0d\xce\x3c\x50\xad\x47\x55\x60\x50\x87\x1a\xee\xf2\x02\xf3\x6b\xb5\xd4\xf2\xde\x28\xf3\x46\xda\xaf\x0f\xae\xee\x29\xe7\xae\x00\xca\x2e\xad\xbc\x79\x40\xdb\x0d\x8c\xb2\x95\x52\x61\x33\x12\x73\xa0\xf8\x4f\x5a\xc4\x82\xcc\x21\x40\xf2\x88\x97\x2e\xd6\x0c\x93\x73\xc3\x30\x79\x6a\x1c\x6c\x6c\x4d\x68\x71\x83\x56\x85\x8b\xc3\xb4\xb6\x40\xf1\x17\x14\xbf\x44\xf1\x17\xcd\xc6\xdf\x16\x71\x3b\x73\x89\xe2\x33\xc6\xdc\x35\x8a\xbf\x72\x71\x67\x43\xfc\xc9\xee\xb1\x6b\x60\x5a\x65\xe8\x5f\xf1\x5e\xb6\xcf\x4a\x02\x0f\xc6\x7f\x09\x13\x11\x16\xf9\x42\x8c\xee\x8d\xcc\x6e\xb3\x28\x70\xf2\xd8\x30\x1b\x5a\xe9\x4a\x2e\xf4\x64\x86\x7b\xe5\x75\x01\x10\x24\xdf\xb2\xc6\xd2\xec\x31\xb8\xb0\x41\xad\xe9\x33\x0d\xe5\xa1\x37\xd9\x80\xb9\x86\xc1\xb9\x07\x12\xd8\xec\xd3\x72\xf7\x07\xf2\xdb\x25\x46\xee\x11\x16\x8a\x58\xcc\x36\x1d\xbb\xa0\x61\x50\xec\xf0\xca\xa4\xb0\xdc\x9d\x03\xcb\x08\x26\x6e\x87\x57\x98\x84\x51\xe6\x81\x50\xbf\xda\x85\x99\x28\x98\x8a\x62\xcd\x65\xeb\x13\x02\x45\x77\x61\xa6\x9e\xd0\x7d\x57\x35\xef\x98\xe4\x0d\x09\x56\x07\x01\xc9\xdc\xcf\x61\xa9\xfb\x26\x5b\x3d\x0c\x6b\x48\x44\xf6\x98\x88\x1c\xe9\xbe\x43\x84\xae\x0f\x96\x5c\x67\x3a\x67\x22\x98\x57\xdb\xac\x44\xc0\x0f\xc1\x1b\x79\xc7\x86\xaf\xae\x62\x04\x61\x13\x14\xd6\x25\xf0\xd9\x99\xa4\xc7\x30\x5a\x9f\x30\xb6\x04\xa7\x1e\x04\xda\x39\x74\x21\xd8\x69\x1a\x31\x98\xec\x45\x66\x00\xa4\x8e\x9a\x98\xbe\xb8\x8a\x88\xfc\x7b\x99\x13\xad\x5e\xc7\xb8\x48\x07\xda\xc7\xfe\xca\x0e\x0e\x21\xc6\xc0\x44\xb8\xc0\xaa\xb2\x38\x12\x38\x30\x7e\x33\x4d\x58\xf1\xe2\x09\x46\x0d\x69\xe6\x66\xcd\x7e\x8d\xeb\x9a\x2c\x9c\xa3\x1c\x88\xa9\xec\xdb\x69\x03\x12\x59\xe2\xca\x98\x9f\x97\x95\xdb\xe4\x26\x00\x47\x39\x6d\x56\x60\x9b\x15\xd0\xf5\x03\xaf\x00\xcd\x2e\x36\x8a\x17\xc3\xbf\xb8\x62\xd1\xd9\xb0\xe1\x09\x6c\x01\x5f\xbc\x39\xcc\x1c\x2b\x5e\xad\x06\xfb\x09\x49\x49\x26\xb1\xd9\x6a\x90\x08\x55\x57\xdd\xeb\xc2\x4c\x00\x91\x6a\xed\x16\x22\xd5\xca\x2d\x44\xaa\xb5\xfb\x2b\x91\x6a\x68\x2f\x68\xb4\xb1\xad\x44\xb2\x3a\x03\xc4\x71\x6b\xf5\xf6\x8a\x2b\xd7\xa7\x57\xa4\x9a\x3f\xee\x68\xe6\x39\xdb\x68\x4e\x59\x3f\x79\xcc\x4c\x3e\x7f\xc6\x8d\xb6\x65\x6e\xb4\x00\x37\x82\xfd\xbf\x2b\x5a\x48\x93\x6b\x1e\xb1\xd1\xa2\xf7\x22\x82\x1f\xcb\xb3\x97\x46\x7a\x80\x6f\x40\x4a\x9e\xd8\xd4\xf9\x50\x43\xfd\x2b\xbf\x34\x53\x7b\xe7\xe5\x9c\x09\x62\x63\x0e\xa2\x7a\x0e\x20\x82\x05\xe1\x38\xeb\x9b\x26\x3c\x04\x5f\x4c\x68\x5b\x9c\x8d\x83\x6f\xc4\xe5\x72\x16\xc5\xfb\xd6\x23\xe8\x89\x33\x23\x23\xe3\xc5\xbd\x08\xdc\xac\x56\x5d\xc3\x41\xd2\xc7\x8e\xf0\x18\xcc\x02\x6e\xb9\xee\x96\x97\xbd\xf7\x56\xa5\x79\xad\xf5\x01\x1e\x6d\x91\x61\x3a\x84\x10\x97\xfc\xae\x85\x0d\xea\x9d\x93\xb4\xef\x26\xfa\x96\x67\xb2\x74\x59\xfe\x38\x66\x11\x3c\x32\xa0\xb4\x90\xaa\x2e\x49\xce\x34\xa9\x81\xc9\x95\x24\x1e\xb7\xcb\x06\xc9\x27\x45\x62\x58\x73\x41\x8b\x50\x1d\x6b\xac\x42\x17\x95\x6e\x48\x30\x9a\xca\xd8\xac\x86\xf2\x9e\xc5\xe0\xf3\x4b\x15\xe6\x14\xa6\x88\x25\x8b\x32\x37\x24\xe0\x1d\xda\x6d\xfa\xbe\x85\xf4\x06\x57\xe3\x01\x0f\x2f\x36\x68\x6c\xbf\x2a\xec\xad\x0e\x12\xe6\xaa\xad\x7d\x77\x51\x25\xd2\x33\xa4\x29\x13\xd9\xe4\x31\x75\x81\xf5\x47\x08\x27\x78\xb1\xb3\x55\x28\x46\x04\x21\xbf\x3b\x22\xd0\x15\x77\x2f\xdc\xe0\x0d\x6e\xa6\xc5\x9b\x6d\x75\x94\x97\x5e\x5d\x50\xd1\x85\x4d\x92\xee\x8b\xed\x1c\x17\x9a\xcb\x85\x06\x06\x71\x01\x35\x14\xa3\xc4\x9a\x77\x11\xe2\x75\x8c\x75\xf5\x27\x30\x3f\xb3\xfb\x68\x2a\x96\x86\x8c\x1e\x74\x2a\x50\x26\x60\x60\xed\x0b\x7c\x71\x53\x15\x10\xb6\x33\xd0\x7f\x6e\xe2\x9c\xc9\x52\x0a\xda\x76\x81\xa6\xae\xd0\xbd\x2b\xbc\xa8\x41\x3c\x90\x77\xd5\x9c\x3b\x05\x98\xb6\x0e\xa1\xef\x0f\x7d\xe6\xc1\xfa\x12\x04\xce\x6c\x4d\x01\x9a\x6f\x26\x17\x01\x4e\x35\x80\xfb\xae\xd4\xc2\x0a\xd3\x00\xfd\x19\xfb\xb4\x3c\xa7\x32\x78\x56\xba\x3b\x23\x58\xaa\x78\xee\x47\x90\xde\x9e\x78\x05\x5e\xb1\x10\xdd\xa8\x4a\x9d\x75\xc7\x54\xce\xbd\x84\x56\x33\xa9\xca\xc4\x0b\x37\x0d\x51\x8d\x95\x9b\xba\x40\x76\x4f\x79\x87\xb5\x8c\x56\xf9\xea\xa5\x7a\x7b\xea\xe6\x1a\xe3\x44\x34\xc6\xad\x5b\x90\xb7\xb7\x5a\x41\xde\xb6\xb5\x82\xbc\xbd\xd5\x7e\x49\xde\x0c\xc8\x9b\xc9\xc8\xdb\x3e\x58\x0e\xb7\x56\xbf\xdf\xc2\x0f\xb3\xa0\x69\x3b\x4f\xff\x09\xf2\x76\x50\x26\x6f\x09\x3b\x4b\x30\x2d\xd5\x62\x83\xb5\xdd\x1e\xfd\x1e\xb1\x0b\xa7\x34\xba\xb6\x12\x81\x55\xd0\x66\x08\xbd\xe3\xb0\x56\xaa\x5c\x47\xb8\x07\x0d\xe5\x8c\xe1\x87\xb5\x64\x15\x30\x13\xdb\xb0\x09\x38\xd2\x1b\x28\x77\x51\x8d\xa3\x34\xc4\x2d\x6b\x94\x19\xd9\xbc\x73\x1d\x06\x24\x88\xa5\x62\xe4\xdf\x17\x67\x41\x2d\x23\x9d\x84\x86\xbb\x2f\x5f\xd8\xed\x7e\x6c\xe0\x28\x69\x42\x7d\xfd\x8c\xba\x46\x25\xf8\x04\xef\x96\x26\xd8\xba\xb1\x70\xe6\x85\x36\x6c\xaa\x27\x3a\xa3\xbe\x1d\xe5\x0e\x60\x7f\x93\xe1\xcf\x6a\xb4\xb6\xc1\x75\x2e\x18\xbd\x99\xb4\x5a\xa2\xbe\x11\x6f\x54\xc8\x06\x50\x43\x8a\x99\x57\x7d\xa1\xb1\x2d\x0c\x63\xbe\x71\xce\x33\xa0\xeb\x59\x43\x6d\x4e\xe7\x02\x78\x70\xcc\x96\x5c\x0a\xee\xe7\x2e\x05\x62\xd6\x67\x5a\x82\x50\x08\xad\xa1\x83\xe4\x9e\x85\x4c\xde\xcc\x8c\xc5\x5b\x1e\x29\x8b\x9d\xe6\x8e\x67\x7f\x4e\x42\x80\x9a\xc0\x21\x9c\xe8\x13\x88\x06\x6f\x5c\xce\x7d\x61\xcc\x3a\xd1\xb0\xed\xb5\xe6\xd0\x35\x18\x55\xdd\xf5\xb5\x44\xba\xd0\xf8\x11\x0e\xc1\xee\xaa\x37\xa6\x75\x43\x34\xb8\x10\x75\x53\xda\x3b\xba\xb6\xba\x84\xc4\x89\xf7\xfb\xed\xc5\xfc\xc6\xff\xb7\x8f\xf3\x90\x79\x45\xbd\x02\xc7\x8b\x75\x66\xac\xbe\x69\x4f\x45\x77\x47\xdc\xc6\xf8\x86\xab\x46\xec\x85\x7f\x04\xd3\x9d\xe2\xdd\x84\x18\x94\x19\xeb\xcd\xcd\x27\xbb\x52\x78\xc7\x2e\xae\xb9\x93\xcb\x6b\x1a\x3c\x8b\xc2\x2c\x16\xe6\xc6\x6a\xde\x3f\x08\xf0\xbc\x63\xf5\xd3\x6b\x36\xa3\xd7\xd6\xf6\x47\x87\x4f\xde\x32\xbd\x99\xb3\x62\x71\xb3\xc8\xa2\x95\x0a\x1f\x92\xb5\xd5\xb4\xc6\x3e\xab\xfe\xce\x2f\x9c\x48\xec\x0d\x34\x62\x9c\x67\xdd\x6f\x27\x6e\x6d\x1f\xf2\x6d\xa5\x6e\xe5\x41\x26\x43\x9e\x6d\x7f\x94\x47\xa3\x99\x54\x47\xfc\xd0\x1d\xcb\xbb\xdc\xc7\xb7\x25\x7a\x67\x16\x66\x22\x1f\x02\xe5\x65\x52\x6b\x57\x39\xcf\x44\x80\x19\x0e\xaf\x14\x10\x33\x29\x42\xdc\xf2\x06\x3a\xca\x4c\x0d\x82\x0a\x3c\xde\x35\xd5\x4b\x49\xa1\xee\xb3\xfa\x74\xaf\x8e\xae\x65\x3e\xb0\x1a\x36\xc1\xd0\xcc\x5a\xaf\x6f\xb2\x41\xab\xee\xeb\x0d\x01\x47\xaf\x06\xe6\x07\x7e\xec\x01\x1a\x42\xe5\x3e\x5d\x63\x01\xa1\x02\xf8\xe2\xe3\x21\x5d\x4a\x93\x60\x6c\x9e\x99\x57\x85\x2d\xe9\x62\xc5\x61\x09\x4c\x97\xc3\x2e\xe9\xc0\xcf\xac\x8a\x05\xd0\x97\x8f\xd9\xb9\x91\x90\xca\x4c\x5d\x62\x67\x3b\x4c\x4a\x99\x40\xf6\x0e\x49\x6a\x26\x7a\xc8\xb4\x9c\x20\xd3\x6d\x5f\x96\x41\x08\x51\x69\x27\x37\xf9\xae\x0f\xf5\x1b\x7f\x77\x0f\x6e\x4a\xde\x09\x76\xf7\x37\xaf\xac\x86\xba\x65\x16\x7e\x33\xe5\xed\xae\x1e\xd5\x01\x57\x1d\xa5\xfa\xf1\x8d\x95\x07\xff\x9d\xea\x09\x2c\xd8\xa0\x02\x8c\xff\x4f\xaa\x28\x4b\x0c\x26\xd6\xe0\xd4\x0d\xe6\x1f\xaa\x77\xc8\x0a\xcc\x40\x2a\x1e\xb0\xc0\x5b\xaf\xb0\x1e\xf3\x7c\xc6\x2f\x8f\x34\xc2\x0e\x5a\x50\xd9\x3d\x58\x75\x9b\xaf\xb6\xe5\x13\x68\xa5\xe6\xcd\x2e\x94\xfc\xe6\xb4\x91\x03\xd2\x48\x7f\x80\x24\xe7\x70\x87\xc0\xf5\xb3\x90\x34\xf6\x60\xb4\x94\xea\x4f\x19\xfa\x4f\x61\x73\x3a\x82\x2c\x76\x8c\xa5\xd9\xd6\xd1\xe1\xb5\xa0\x2f\xc4\xf7\x56\xdc\xb0\x3e\xb8\x9d\x9b\xa4\xdf\x7f\x74\x3b\x4f\x3f\x52\xd7\xa3\x32\x1e\x03\x88\x1b\x40\xfe\x56\xf1\xe4\xe6\x6a\xb3\x37\x15\xdf\x77\x4d\x62\x5e\x24\x82\xa7\x14\xb5\xc5\xec\xa8\x08\xec\x72\xc6\x1a\xf6\xae\xe6\x1b\x33\x62\x63\xbd\x6a\x65\x26\x0c\xa1\xf6\x94\xc3\xd8\xcc\x8c\x03\x51\x2b\xe6\xea\x93\xd1\xe5\x71\x08\xf0\xcb\x36\xe0\x54\xae\x8f\xd9\x52\xde\x8a\xf2\xa7\x26\x81\x37\xac\x19\xf7\x1b\xde\x0a\xb1\xca\xb0\xfc\x3f\x72\x88\x24\xf7\x60\x20\xf7\x10\x1e\x63\x08\xaf\x0f\xaf\x58\xa1\x84\x25\xd0\x65\xdf\xe6\x19\x87\x4b\xd6\x17\xf9\x14\x48\x6d\x65\x89\x85\x74\x06\xf3\xc2\x2e\xba\xae\x90\xd2\xa7\xd1\x6d\x3e\x68\x73\x6d\x0d\x5d\x65\xd4\x10\xca\x82\x2c\x54\xc9\x02\x54\x5f\x97\xdb\xe4\xa0\xb2\x4b\x0d\xbe\x5b\x8a\x5f\x33\x83\x57\x2e\x56\xdf\xbc\xdf\xd9\x89\xb6\x42\xe5\x9c\x7e\xc9\x23\xb7\xbc\x63\xec\x10\x34\x97\xfa\x90\xa3\x95\x1a\x08\x6b\xf1\x60\xbd\xf0\x0f\xb0\xa9\x87\x28\xc9\x0b\xe4\xf6\x79\x42\x07\x6c\x29\x06\x3b\xf1\x40\x59\xbc\x57\x14\xe3\x98\xd2\x8d\xc7\x54\x83\x47\xb6\x80\x06\x72\x76\x23\x81\x10\x23\x17\xf8\x0a\x51\xf6\x0f\xe2\x2a\x44\xdc\x83\xd3\x31\x8b\xab\xa8\x65\xa1\xa8\xef\xc2\x82\x19\xfa\x95\xd8\x94\xde\x81\xd9\x67\xf1\x83\x47\xfc\xb5\x73\xdc\x28\x21\xc0\x09\x3f\xb4\x4e\xcb\x15\x7d\xd0\xc6\xeb\xf7\x7b\x73\x4e\x5c\xe3\xd3\xc0\x0b\x09\xfc\x78\x65\x3a\xd4\x79\xe3\xb1\xf8\x43\x16\x89\xba\xa3\x6a\xf6\x44\x30\xb3\xc2\x92\x30\x37\x9c\x02\x54\x8e\x24\x5e\x89\x96\x87\xa1\x78\x2a\x1c\xdd\x9f\x5d\xe5\xe1\x58\x61\x7c\xc5\x41\xbb\xaf\xcc\x48\x3b\x00\x85\x10\x80\xd1\xda\x88\x4d\x86\xb6\x45\xdc\xc6\x43\xfe\xd2\x48\xf9\x9f\xb3\xaf\xad\x86\xd5\x37\xb7\xb1\x0b\x5b\x4d\xb6\x90\x6c\xd2\xdb\x12\xd2\x59\x13\x63\x94\x82\x66\x40\x62\x7e\x98\xd2\x86\x0c\xe0\x77\xed\x4e\x31\x90\x83\x46\x31\xf1\x35\x13\xe6\x45\xee\x4f\x14\x43\x72\x39\xdc\x74\x66\xca\x01\x14\x57\x96\x84\x23\x1b\x78\x38\x3c\xe8\xd5\x2f\x28\x14\x1b\x38\x34\x8b\xe6\x58\x80\xe1\xf0\x0a\x73\x3f\xd2\xe5\xc8\xd3\x67\x16\x9e\xdd\xf7\x71\xa7\x15\xf3\x79\xdc\xa9\x7f\x9c\xc5\x9d\x7a\xca\x6d\xcc\xcc\x8e\xc6\xd2\x35\xcf\x97\xb0\xf4\x2e\x79\xbf\xbb\x87\xcc\x31\xa7\xbc\x8a\x17\xfc\x77\x2d\x1a\xfd\x2c\xd7\x3c\xbd\x37\x54\x79\x85\x91\x4b\x02\x4e\x33\x95\x35\x9f\xc1\x1b\xcc\x4a\x5b\x90\x31\x90\x5f\xef\xf4\xa6\x58\xa6\x33\xfc\x06\x80\xac\x6f\x78\x99\x80\x62\xa0\x0f\xee\xf9\x0d\x04\x5a\xfa\x7d\x92\xff\x36\x53\x07\xf2\xe5\x31\x5e\x1d\x15\x68\xee\x4a\x54\x87\xef\x5a\x75\x35\x74\x9a\x34\xd9\x53\xfb\x19\xc6\x80\xd4\x05\x12\xdb\x4c\xd6\x62\xde\x90\xf6\xec\x0a\xe1\x5e\xe2\x21\xf2\x94\xc3\xaa\xf2\x44\x43\x43\x98\x6a\x08\x2a\xdd\x8d\x2b\xc2\x1c\x8d\x65\x55\x15\x8a\x26\x21\xd5\xb1\x01\x55\x09\xc6\x50\x69\xc0\x63\xf7\xf5\x4e\x29\xe7\xcd\x80\x45\x75\x0e\xd1\xd6\x90\xc7\x03\xc3\x81\x39\xd6\x47\xfc\xd8\x8b\xd1\x84\x38\x05\x36\x06\xb4\x1e\x36\x9c\x80\xa5\x6c\x96\xd7\xba\xa7\x44\x37\xda\xde\xf1\xc7\xb6\x9c\x58\x43\xd7\x63\x43\x8e\xa9\x81\xec\x9f\xdf\x58\x2d\xe2\x3e\x17\xbc\x5a\x9d\x2b\x62\x03\xf7\xbc\x0f\x30\x74\x74\xde\xa0\x38\xbc\xfa\x24\x9f\x1c\x4a\xd8\xed\x25\x76\x05\x4a\x92\xa7\xdc\x4b\x78\xc2\xa4\x91\xec\x2b\x69\x4f\x12\xfb\x05\xbc\xe3\x2d\xef\xa8\x52\xa1\x16\x02\xb4\x4e\xb8\xe2\x09\xaf\x4c\x9b\x71\x19\x31\x6b\x6d\x25\x61\x90\x3e\xff\x6e\x28\x67\x61\xf3\xee\xf2\x92\x79\x09\xb5\x6e\x23\x46\x09\x01\xa9\x34\x33\x05\xfe\x21\x9d\x66\xa3\xb9\x2a\x60\x46\xe5\x38\x77\x08\x9c\x03\xc1\x68\x60\xf4\x53\x36\x70\xdf\xf1\x50\xf8\x83\xa9\xb2\xd5\xbc\xd3\x04\xd2\x73\x28\x3d\x07\x8b\xd3\x67\x57\x99\xf6\xc7\xcf\x89\x5e\xb1\x89\x58\xa2\xb0\x9e\xbe\x2a\xe0\x01\xfd\x61\x44\x63\xcc\x76\x72\xb3\x0d\xe1\x3a\x55\x6b\xc0\x99\xd7\x50\xee\xd4\xa6\x49\x98\x88\x97\x63\x0c\xaf\x06\x13\xc8\xbb\xdc\xe1\x22\x11\x88\x5d\xf1\xde\xf8\xca\xd9\x18\x55\x6e\xc6\xcb\xdd\x0d\x29\x28\x0d\x94\xe6\x4e\x13\xdc\xde\x57\xde\x29\xc7\x60\x79\xf7\xbc\xf2\x4c\x16\x52\x0d\x33\x4f\x23\x73\x2c\xfa\x04\x90\xbc\xe5\xdc\x45\x6a\x2b\xcb\x35\x6b\xa7\x0d\x6b\x0b\x68\xe9\x92\x3d\x07\xcf\xb9\xd6\xa9\xbc\x94\xc5\x8f\x0e\x44\x13\x7a\x22\x51\x78\x5d\x2f\xd3\xb0\x33\x0e\xd9\x69\xbe\x41\x4d\xdb\xa7\xa5\x9a\x98\xd4\xa6\x51\x54\x34\xe3\x2b\x6c\x68\xdd\x05\x33\x09\xc4\xe7\x3a\x09\xa0\x4f\xd4\x70\x09\xca\x05\x55\x72\x94\xbb\xd0\xb0\xb7\xd5\x95\xba\x66\xbc\x21\x01\x81\x1e\x32\x07\x9b\x14\x74\x62\xb8\x67\x56\xba\x6c\xc4\x4c\x7c\xf1\x9a\x36\x94\x71\xf6\xed\xf2\xa7\x73\x36\xfc\x0c\x20\x46\x39\x3d\x66\x6b\x10\x53\x9c\x53\x5d\xa8\x03\xce\x0b\xdb\x86\xea\x85\xe3\xac\x9e\x54\x4b\xa6\xa8\x19\x0c\x85\x10\x43\x2f\x99\x58\x3b\x5b\x82\x2f\x7f\x64\x60\x1e\x61\x33\xd7\xcd\xd8\x87\xbb\x15\x4f\xaf\x99\xa7\xc0\x70\x50\x0b\x6d\x28\x74\xb4\xd6\x21\xc4\x84\xf3\x6b\x58\xca\x5e\x21\x02\x1c\xe3\x6d\x72\x25\x0b\xd6\x40\x05\x4f\xa9\xee\xfa\x96\x51\xe3\xf5\x96\x9f\x20\x85\x77\x4e\x60\x6d\x85\x81\x0a\xab\x6c\x4f\x9b\xe5\xb3\x21\x32\xfc\x83\x46\x6e\x79\xf4\x46\x8d\x6c\x57\x68\x3c\x67\xf5\x62\xde\x53\x3e\x43\xf1\x06\x5d\x27\xba\x2d\xed\xa1\x03\x4a\x05\xeb\x92\xc3\xfe\x70\x6f\x64\xa4\x4d\xab\x69\x0e\x35\xc0\x6a\xe9\x5b\xff\xc0\x06\xea\x88\x0d\x34\x62\x12\x34\xd1\xe3\xab\x22\x98\xec\xef\x5a\xf1\x97\xc5\x2b\x9f\xad\x30\x7e\x6c\x97\x2d\xaa\xd0\x1d\xea\x93\xab\xdc\x3e\x7a\x55\x45\x98\xc0\xf4\xaa\xf4\x05\xc2\xdc\x09\x6f\x56\x62\xe3\x13\x09\x33\x24\x2f\x5e\x02\x3d\xcf\x1a\x22\x49\x45\x5a\xa9\x15\xd3\x82\x0a\x38\xb3\x14\x38\xaa\x96\x07\x39\x84\x7b\xe4\xb2\x61\xb5\x94\x7b\x5c\x1d\xde\x22\x34\xa0\xd4\xa9\xea\x48\x3f\x32\x87\x13\x27\xab\x41\xa8\xc8\x36\x6a\x67\x8a\x30\xb6\x17\x2e\x38\xd3\x0c\x22\x86\xe3\xc6\x14\x82\x2e\xc7\x66\x67\x69\x64\x55\x4e\xab\x19\x01\x57\x01\x8c\xdd\xfe\x2a\xf7\x75\x41\x88\xf2\xd7\x36\x47\xab\x2d\xd0\xc3\x2b\x3c\x17\x6c\x9b\x35\xa2\x9e\x81\x28\x16\x36\x60\xb3\xd0\x2b\xb8\x16\x2b\xf8\xb7\x4f\x42\x96\x99\x8a\x4e\x3e\x82\x02\x3a\xf4\xa1\x39\xae\xb3\xe3\x27\xe2\xcf\xc4\xf9\xa1\xaa\xb7\xba\xc2\x29\x06\x1a\xce\x83\x82\xb0\x9a\xf2\x3b\x04\xed\x26\x7a\x89\x9a\x8b\x6a\xb1\xdb\x73\x10\x44\x81\x19\xd2\x2f\x9d\x0c\x01\xeb\xcc\x7e\x3c\xa5\xfa\x6b\x6e\xe5\x48\x40\x06\x43\xf5\x93\x52\x2b\x2f\xd5\x32\xe4\x11\x0a\x3a\x3c\x4a\x17\x60\xbc\xcf\x04\x22\x94\x00\x39\x1c\x79\x39\xc6\xea\x9d\xdd\x4a\xb4\x32\xad\xcb\x98\x26\xea\x0c\x81\xed\x6d\x16\x14\xda\x44\xda\xd7\xe6\x0a\xc1\x9f\x2d\x31\x84\xe7\x32\x26\x07\x82\x66\xf6\x9a\xa5\xb8\x67\xf3\x83\x5d\xcc\x75\x6e\x79\x03\x7a\x87\xf8\x28\xe6\x7a\xab\xae\x1c\xb6\x30\x3f\xcf\x6f\xd9\x7b\x8f\x09\x6c\x50\x48\x2c\xf2\xb3\x2a\xb0\x0e\x55\xc5\x2f\x23\xdf\x18\xe7\x67\x55\x8e\x12\x2a\x9d\xc2\xea\x1f\xef\x76\xe3\xab\x46\xcc\xd1\x2e\x88\x1e\x19\xeb\x17\x74\x87\x52\xeb\x9d\xee\xe6\x12\xce\x7c\xfc\x55\x77\x73\xee\xee\x0d\x2e\xd2\xe3\xab\x92\x95\x75\xc5\x42\xf9\x2c\xdb\xfa\xfc\xf8\x9e\x0f\x1f\xbf\x66\x63\x6e\x28\x3b\xea\xc8\xa1\x40\x9f\x76\x6a\xa2\x9f\x3d\x42\xa0\xce\x31\x1f\x02\x7b\xbc\x97\xf0\xee\xa6\xf2\x5a\x1c\x72\x66\x1f\x6a\xc4\xf4\x77\xb7\x26\x5b\x5e\x26\x56\x9e\x32\x0f\x1c\xfb\xf4\xaa\x4b\xde\x8c\x2e\x31\xdb\xc4\xbe\x2b\x81\x31\x78\xcb\xa5\x2e\xc3\x76\x01\x84\xc4\x56\x8f\x9d\xd2\x17\xc0\x62\x51\xb8\xa9\x9c\x8d\xb3\x53\x97\x86\xe0\x8e\xb2\xf6\x80\x16\x00\xfb\x53\x5d\xc6\x95\x02\x46\x4b\x9d\xe0\x0b\x40\xb5\x28\x5c\x57\xce\xc2\xd9\xa9\x4b\xc4\xc2\xbd\x7a\x63\x45\xf9\x9e\xe5\x64\x75\x60\x36\x36\x02\x2e\xb6\x59\x7c\x7c\x93\x10\xce\xc8\x03\x56\xce\x53\x2e\x9f\xa3\x34\x4e\xc9\xde\xde\x3d\xbb\x62\x5e\x9f\xf8\xf2\xae\xa3\xcc\x1a\xa1\xc7\x2c\xb5\x1a\xb6\x0b\x78\x8a\x8d\xe9\x5b\xa6\x09\x7c\x1a\xc5\x83\x1e\x46\xaf\xc3\xd4\x2f\xda\xdb\x68\x2b\xaa\x2a\xe7\xe9\x98\x78\xd5\x5c\xdf\x73\x8c\x9d\xc7\xb3\xf2\x41\x97\x5a\xa7\xd5\x1c\x1d\x9d\x85\x3e\x23\xbe\xe3\xb8\xe3\xa2\x0d\x09\xe5\x1f\x99\xb2\x2f\x2a\x53\x6c\x7c\x65\xa6\xe6\xb8\xe4\xe7\xea\x72\xe8\x82\x1a\xea\x8d\x57\xbc\xec\x6c\xc5\x49\xf6\x76\x65\x75\x55\x75\xed\x94\x01\xa1\xf4\xad\xa5\xea\xe3\xbc\x9b\x6e\x76\x2e\x26\x03\x18\x5f\x79\x63\x06\x21\x91\xa5\x0e\x24\x32\xe9\xcd\x2b\xc4\x1d\x73\x0a\xc6\x2b\x72\xc7\x8a\x83\xb0\x83\x0a\x0e\x26\xed\x8b\x54\x85\x13\x28\x17\xb7\xdc\x6c\xca\x2c\xdd\x59\xc2\x90\x78\x09\xb6\xbb\xcf\x52\x49\x0b\x26\x0c\x67\x75\xc3\x5b\x56\xc9\x58\x32\x7b\x35\x73\x96\xec\x7f\x60\xda\x17\x30\x6d\xe0\x74\x9d\xc3\xbe\x2a\xf7\x1c\x2e\xb4\x57\x1f\xfe\xb0\x9c\x10\xb4\x2c\x5f\x45\x12\x3a\x8b\x88\x32\xcb\x55\x27\x5a\x4e\x0d\x4b\x28\x6e\x47\x9d\xda\xd5\x2c\xac\x9d\x35\x36\x8e\x44\x40\xe4\x0e\xab\xbb\x55\x5a\x2e\x9b\xfd\xb4\x5d\x36\xa4\xc0\x8c\xda\xb2\x9a\x6a\x6b\xa7\xc6\xb3\xe6\x5a\x25\x68\xe3\x4c\x9f\xc2\xa0\x00\xd3\x24\x0e\xa4\xbc\x70\xc3\x1e\x2b\xa4\x72\x40\xf6\xb6\x24\x43\x81\x92\x9e\xf2\xc2\xc9\xc9\xf1\x07\x04\xa9\x8b\x6b\xb1\xb1\xc9\xdb\x74\x39\x92\xd9\x51\xce\x98\xc3\x77\xd5\x03\x57\x33\x07\xa8\xb6\xd1\x13\x1a\x99\x69\xcb\xa1\xca\x29\x8e\x1a\xcd\xd8\x67\x78\xca\xce\x67\xc6\x5b\xef\x41\xc1\x51\xca\xb1\x87\x71\x8d\xb0\xec\x81\x4b\x31\xe2\xcf\xcc\x83\xb1\x42\x75\xae\xab\x38\xd6\xbd\xa8\xca\xf9\x38\xb6\xce\x41\xe5\xa3\x31\x3c\x8b\x60\xe9\x29\x53\x63\x46\xd8\x49\x18\xea\xdd\x8a\x47\x90\x01\x8b\x3d\x51\x27\x6f\x8c\xe8\x0e\xe8\xd7\x9d\x04\x06\xbe\x0b\x0e\x16\xbb\xa3\xc5\xbd\xb6\xb3\x46\xcd\x03\x83\xa5\xa8\x80\x9d\x22\x66\x84\xd5\x4b\x93\xe4\xc7\x51\x70\x02\xb1\xa1\x66\x7a\xa1\x1d\x6b\xa8\xd5\x80\xb7\xc9\x29\xd4\xfd\x54\xec\xa3\xff\xc1\x63\x23\xee\x9b\x16\x1b\xd3\x94\xd7\x0a\x08\x79\x54\x15\x39\x26\xd7\x40\x5a\x49\xa3\x58\x91\x09\x89\xe8\xa7\xfe\xc2\x58\x27\x75\xf5\x7a\x0d\x25\x72\x79\x23\x21\x0b\x2f\xb4\xab\x9b\x16\x22\xc7\x91\x39\x20\xe2\xca\xbd\x71\x23\x7b\xa2\x65\x4f\x3c\x2b\x54\x66\x0d\xff\xe7\x59\x1d\xf0\xb4\x86\x20\x3e\x64\x9b\xf9\xc8\xc8\x29\x3a\x04\x7c\x1d\xb4\x98\x1b\x6e\x48\xf4\x3e\x32\x08\x16\x6c\x6d\xeb\x19\xca\x18\x10\x9d\x63\x14\x5e\x82\x75\x9e\xe8\x5c\x55\xae\x00\x69\xa6\x1c\x5e\x73\x9b\xe9\xdf\xad\x87\xcc\x7b\x2e\x70\xde\x14\xa7\xf1\x7d\x29\x1e\x8f\x3d\x87\xed\x21\xab\xcf\x4b\x77\x53\xcf\x1d\xc1\x63\xc6\x29\xef\x44\x46\x7f\x5a\xea\xdb\xac\xf5\x8a\xf6\x6f\x6d\xdf\xe4\xdb\x0a\x1c\xf6\x2f\x51\x6c\xbf\x25\xc7\x9e\x3b\xbc\xd6\xcd\x2c\x56\xee\x52\x03\x08\xcf\x9b\xe0\xfe\x43\x12\x68\x99\x65\x54\xf4\x59\x73\xe7\x13\xc9\xba\x47\xfc\x69\x6c\xde\x7d\xe2\x60\x66\xfe\x74\xf8\xbe\x56\x2f\xfb\xf2\xa1\xd2\x5c\x2b\x93\x5e\x8d\x4d\x36\x0d\xa6\xac\x7d\xe2\x1a\xd5\xe2\xd5\xdc\x3e\xd6\x47\x37\xd0\xed\x88\xc0\x9d\x9b\x25\x18\x9a\x3d\x6d\xbf\x9f\x98\xea\x54\xf2\x4e\x2f\x4c\x6a\x26\xa0\xd9\xec\x70\x30\x6d\xd8\x2e\x96\xb0\x30\x35\x1c\x2b\x50\xe6\x1c\x20\x83\xa0\xae\x0d\xa2\x06\xb7\x08\x32\xdc\xd8\x0e\x68\x4a\x2d\x43\x0b\x1a\x6e\x05\x15\x86\x32\x55\x1c\xa9\x99\x99\x27\x50\x7f\x3e\x87\x71\x0c\x1e\x3a\xd3\x10\x5c\x7d\x2c\x38\x57\x43\x88\x4d\x82\x11\x5c\xc0\x86\x29\x11\x8d\x6b\xee\xa6\x8b\x93\x3f\xf5\x57\x97\x17\x03\x27\x62\x66\x44\x51\x78\xc7\x93\xfc\x2b\x71\x12\x62\x92\xf0\x5b\xb7\x10\x91\x10\x9a\x12\xe1\x59\x33\x11\x6c\xac\x98\x08\x0e\x35\xa4\xc2\x98\xcd\x0d\xf5\x13\xf8\x07\x4e\x59\x2f\x7e\x80\xaa\xd2\xc4\x29\x6a\x9f\x0f\x17\x39\x4f\xdb\x3a\xba\x3e\xc6\x22\xcf\x88\x65\x78\x38\xa4\x50\xeb\xee\x8b\xfb\x6d\x44\x3a\xa3\x89\xf5\xb0\x8e\xe7\x37\x76\xbe\xc5\x7a\x2b\xfe\xcd\x8d\xc9\xed\x14\xb6\x07\x97\x70\x47\x8e\xd7\xec\x6a\x64\x73\x16\x3e\xa6\x06\x61\x75\x1f\x84\x6e\x57\xb9\x89\x1c\xa6\x6d\x15\x31\x1c\xc7\xed\xe2\x1c\x12\xd1\xd5\x56\xe6\x29\x5b\x55\x0b\xf9\x73\xc9\xc4\xfc\xb2\x94\x79\x64\xae\x63\x0e\x65\x45\x84\x78\x4b\xa4\x8b\x17\xd0\x00\x3d\xc5\x23\x7c\xf8\x2d\xb6\x1b\x39\x53\x2d\xae\x8b\x14\xa1\x1e\x27\x0c\xc6\xfd\x53\x3e\xa6\x56\xd1\x67\x77\xd8\xfd\x54\xcb\x59\x68\xf1\xaa\xca\x89\x0a\xb8\x94\x9a\x07\x75\x62\x1b\x12\xe8\x22\xca\x05\x8d\x63\xe1\x80\xb6\xcc\x8c\x92\xb3\x5d\x3d\xa5\x56\x3a\x65\xcb\xfd\x48\x2f\xb9\xaf\xfa\x25\x67\x33\x88\x18\xaf\x0f\xcd\xd9\xf5\x27\x20\xdf\x51\x2f\xce\xa1\x3d\x6c\x91\x64\x7c\x80\xb8\xbf\x4b\xa4\x18\xe9\xb0\xa9\x29\x6c\x14\x2d\xb9\x63\xd1\xb2\x6f\x78\x39\xed\x52\xa9\x81\x55\x57\xae\xc4\xb1\xe2\x8c\x71\xc8\x36\x17\xac\x16\xc2\x3c\x2a\x75\xd1\x69\x48\xac\x66\x57\x32\x91\x2e\x29\x6a\x9e\x8f\xa9\x0b\xe3\x5b\x46\x39\xd7\xf3\x3a\x16\xe7\x12\x2c\x77\x0e\x86\x6f\xb3\x42\x6f\x8e\xcc\x85\x2f\xfa\x5f\x2b\xf3\x8e\x9b\x31\x53\x41\x53\x3d\x05\x71\x26\x9e\x7f\xbb\xf2\x49\x57\x6f\x58\x75\xe5\xdf\x9e\xfb\xf9\x91\xa3\xd6\x02\x4b\xa7\x67\x37\x25\x25\x0b\xfe\xea\xf1\x6d\xb1\x09\x5e\xa2\x5f\xc0\x4b\x61\xf2\xda\x80\xb6\x2f\xe1\x3e\x1f\xb5\xf9\xe4\x15\x57\x7e\x8a\xda\x50\x42\xc5\x50\x57\x9c\x0c\x80\x46\x66\x97\xeb\xbf\x70\xfd\xa0\xd2\x42\x78\x33\xab\x66\x33\xae\x0f\x7f\x20\xcb\x4f\x66\x5a\x52\xb5\x9a\x30\x05\x72\xfc\x25\x69\xca\x44\xf3\x6f\x8b\x85\x03\x79\xa4\xad\x8b\xb5\xe1\x38\xda\xce\xe1\x8d\xd5\x50\x2b\x2d\x52\x0f\x4c\xe5\x13\x9d\x68\xd9\x2b\x3e\xe2\x03\x4a\xc2\xa9\x78\x8c\x18\x5f\xd6\x6d\x76\x41\x8a\x9d\x1f\xa6\xc6\xd3\x1b\x51\xe7\xd9\x47\x05\x15\x1f\x87\x60\x59\xd1\x5f\x65\xc5\xe1\x76\x73\x63\x66\xcb\xf7\x38\xdb\xdc\xc7\xb9\x5b\xbc\xec\x4a\x40\xed\x4a\xc8\x92\x84\x46\xe7\x66\xb3\x89\xa6\x9e\xdc\x9a\xe5\xab\x6a\xca\x21\x0d\xec\x8e\xf2\x94\x03\x11\xea\x5e\x89\xd2\x88\x40\xb6\xc9\x3d\x71\x96\xf3\x3a\xb1\xed\xb3\x3a\x87\xae\xb3\x4d\xfe\x09\xe6\x65\x21\xf3\x59\xa9\x85\xb6\x02\x75\x56\x5f\xda\xcf\xb4\x7a\x70\xdb\x4e\x75\xc0\xe6\xdb\xd1\x3d\x88\xd5\x3d\xc1\xda\xe8\x86\x1a\x1c\xde\xf0\x91\x2f\x8e\x8d\xde\x6d\x30\x2b\xc5\x0d\x0e\x6f\xb6\x36\x9f\xb8\xf0\xce\xc1\x3b\xa1\x8b\xf6\x2c\x47\x45\xd9\x51\x0c\xc8\xe3\x1c\x12\xf7\x08\x4a\xd0\xdc\xa1\x04\xa9\x1e\x36\x33\x6b\xbb\xb9\x13\x30\xe5\x1d\x33\xf7\x86\x45\x12\x06\xec\xc7\xcd\xb5\xe5\xab\x85\xc7\x94\xbb\x7f\x9c\x91\x3a\xa6\x33\x1c\xe8\x95\x1f\x7f\xf8\x40\x0a\xe1\xd3\x0c\xe0\x15\xc3\x51\x40\x33\x72\x0e\x3e\x45\xb1\x2a\x5b\xb1\x9c\x4f\x51\x8c\xcd\x9a\xe2\x2e\xbd\xa6\xf9\x40\xa8\x1a\x66\x59\x21\xca\xd0\x72\x8a\xf8\xf0\xb2\x82\x66\x9e\x85\x65\x14\x4a\x64\x66\xda\xe5\xd8\x0e\x96\x11\xaf\x11\x9c\xdc\x3f\x00\x95\x82\x7b\xba\xc2\xd8\x01\x0d\xff\xfa\x28\x3b\x82\xea\x2a\xc3\x2e\xfa\xfa\x8c\xc9\xed\x35\x1f\xfc\x37\xd5\xa4\xc4\x7a\x54\x6b\xc2\x1a\x71\x43\xd1\xe2\x4e\x61\x4e\x28\xe1\xe5\x60\x07\x2f\xed\x12\xfd\xa5\x21\xfb\xca\x9c\x9b\x88\xb3\x03\x74\x91\x98\x20\xbd\x82\x01\x8c\x4d\x14\x7e\x8e\xab\xa7\x06\x53\x1a\xd7\x99\xb5\x20\x4e\x47\x5a\x58\xeb\x09\xe3\x51\x87\x71\xf5\xbe\x72\xf3\x8e\x3c\x11\xa4\x13\xaa\x5e\xe7\x04\xaa\xa5\xfc\x41\x5c\xfb\x74\x12\x0d\xb5\x72\x8f\xf5\xf1\xb5\xd5\x54\x53\x97\x21\x21\xd2\x97\x25\x50\x48\xfe\xdd\xa0\xd0\xf9\x5f\x00\x14\xce\x0c\x9b\x0a\xd8\x87\xaa\xa7\x9d\x6f\x83\xc2\x0a\x07\xb3\x8e\xae\x21\x6d\xfc\x19\x2c\xd4\x33\x8a\xfe\x3c\xec\x80\x54\x97\x8e\x5a\x04\x8b\x46\x69\xc7\x17\xf6\xc4\x7d\xb7\xc9\x0b\x4d\xf2\xdc\xcb\x2f\x37\xb9\x18\x5e\x53\xad\x9c\x53\xdd\x96\x13\x3b\x8e\x32\x57\x7d\xab\xa1\x2a\x36\x54\xaf\x81\x25\x59\xae\xf6\xed\xab\x50\xf4\x6a\x7a\xcf\x10\x4a\x9a\xd4\x89\x5d\xe3\x40\xf0\x37\xc3\x10\x12\x8e\xf9\x80\x14\xd3\xa7\x87\x4c\x5f\x10\x15\xd5\x7d\x80\xfb\x0e\xfc\x7e\x24\x64\x78\x04\xdc\xa3\x3d\x68\xf0\xb9\xaf\x6b\x7f\xcb\x82\x41\xad\x86\x02\xd8\x57\x17\xa4\x8e\x15\x95\xae\xaa\x5f\xf3\xb1\x8f\x52\x07\x3d\x26\x5b\x35\x71\xe7\x79\xca\x1d\xf4\xac\xba\x7a\xd5\xed\xa4\xc1\x4b\x52\x45\xc8\x13\xeb\xdb\x12\x03\x7b\xc9\x38\xd5\x5d\x0a\x3c\x1e\x6a\xf6\x79\x93\x46\xe8\x8c\x6c\x56\x6e\x4f\x4c\x31\x84\x07\x56\x6a\x95\x74\xc0\x07\xf6\x98\xef\x45\x1a\x76\x37\xce\x8f\xe4\xb6\x19\x25\x5e\x9b\x90\x2d\x39\x6a\x5e\x9b\x3c\x8e\xfc\x0e\x24\x96\x9e\xe7\x7a\xd1\x10\xce\xfd\x5b\xbe\x07\xb6\x9a\x14\xfe\x06\x4f\x39\x53\xe7\xa5\x51\x6a\x2e\xf9\x83\xe6\xde\x3b\x21\x3c\xe5\x26\xf6\xb2\x81\x63\x61\x04\x47\x55\x6e\x38\xae\xf2\xa2\xce\xf1\xb4\xa0\xa5\x73\x06\x4b\xbf\xb0\xb4\xd4\x50\xcc\x47\x31\x3f\x2b\xe6\x29\x0f\x47\x7e\xb3\x50\x8c\x75\xa3\x24\xfa\xbc\xe2\x44\x01\x4c\xc2\xde\x69\x6e\xd0\x15\x53\xd4\x52\x67\xe6\x63\x96\xed\x51\x4c\x7c\x98\x4b\xbb\xa0\x88\x13\xd6\x5a\xc5\x13\x33\xac\x66\x49\x26\xb8\x6b\x5a\xb1\xe4\xfe\x03\x51\x33\x6b\x8d\x9c\x24\x3d\x1c\x7b\xf0\x17\xed\xbc\xf3\xf3\xcf\x3a\xe7\xf5\x91\xb2\x11\x6c\x04\xe3\x6a\x46\x88\x1b\xa7\xe5\x80\xf0\xa1\x3e\x6e\x40\x7f\x39\xfd\x0c\xd1\x40\xf4\x3a\x8b\xee\xbb\x41\xd5\x25\xfc\xa5\xfe\xc6\xe2\x88\x78\x4f\x10\x31\x33\xd1\xa3\xbb\xfc\x30\xdc\x57\xca\xf7\xac\xac\x7c\x5f\xba\x5f\x2a\xdf\xce\x5a\x9f\x51\x85\xb8\xe3\xc6\xbf\xd0\x49\xbb\x6a\xd6\x39\xd7\x2b\x76\xb7\xb6\xe1\x81\xff\x8e\x76\x09\x81\x6c\xa2\x25\x61\xd6\x8a\x0f\x6a\xbc\xa1\xe6\x7e\x7e\x5a\xce\x61\x0f\x4a\x33\xb3\xb6\x4f\xed\x37\x60\xe4\x1f\x2a\x98\x66\x5a\x3d\xf2\x31\x52\x1e\x45\xc8\x6c\x72\x6d\x98\x09\x05\x7c\x30\x69\xa9\x19\x7d\x63\xb0\xce\xa0\x83\x77\xf7\x56\x97\x4f\x29\xd1\x92\xb3\xa7\x44\x0c\x8d\xe7\x08\xfe\x7c\x69\x88\xf8\xe9\x2b\x37\x85\x7e\x98\xf8\x7f\xa2\x1f\xba\xca\xdd\x94\xc3\x7e\xff\xbb\xb5\x3a\x1a\x09\xa2\x7b\x21\xca\xbf\x4a\xd4\xac\xcf\xf9\xd9\x68\x48\x6f\xf9\x2a\x5c\x9f\xe8\x0a\xce\xa0\x72\x29\xff\x58\x03\x0f\x1a\xdb\x06\x17\xc1\x40\x78\xbd\xbb\x4c\xc9\x9c\x73\x2d\x3c\xc4\x23\xa5\x8d\xcd\xe2\x0f\x37\xd8\xb2\x3a\x0d\xf7\xa1\xe0\x81\x87\xb7\x19\xe5\x25\xdd\x1e\xec\x2f\xdc\xdc\x15\x63\x97\x43\x8a\x3e\xeb\x7e\x83\x57\xbd\xa1\xee\xfa\x47\x00\xcc\xc1\xa5\xe6\x03\x68\xfd\xa1\x3e\x20\x41\xe4\x29\x36\xf1\xed\xbf\xcd\x6e\x1d\x10\x6b\x71\x62\x36\x0c\x7a\x5b\xb6\x07\x84\x30\xd6\x42\x05\x61\x1f\xbf\xf3\x66\xb6\xb7\xd9\xe2\xf9\x63\xd1\xf0\xde\x6e\xff\xbf\xaa\x72\xae\xb2\x43\xdd\x3d\xa5\x7a\x30\x77\x77\x67\x9e\xd0\x45\x52\x39\xcd\x2f\x35\xce\x97\x4f\xaa\x4f\x4a\xd5\x9f\xbd\xff\x80\xc2\x39\xd6\x83\x7d\x8e\xc7\x23\x55\xdf\x53\x5b\xe1\xea\xad\x5f\x42\x29\x13\x21\x01\x50\xe2\x87\x39\x80\xba\x79\xfc\x0e\x44\x58\xd6\x5f\x39\x7c\x71\x29\xa7\xcb\x48\x73\x3d\xc6\xdc\x0e\x68\x3e\x2b\xe7\xb8\x64\x6f\x80\xd6\xe9\xfc\x87\x54\x51\xe7\x83\x2a\xba\x69\x74\xad\x40\xbd\x36\xb6\xfa\xb9\x38\x89\x4f\x3a\xa6\xfb\x5e\xc7\x3c\xe4\x92\x07\x0d\x76\x92\xb8\x1c\x4e\xfc\x1f\x52\x1e\x63\xe8\x8b\x73\x9d\x6b\xf1\x7c\xec\x0b\xad\x8e\xae\xb2\x98\x89\x3e\x12\xb9\x9a\xb1\x91\x48\x66\xcb\x55\xf5\x07\x82\x64\xef\x04\xb9\x01\xc1\xe5\x1c\x48\xe2\x1c\xaa\x0f\xbd\xa3\x11\x7e\xce\x45\x1b\x70\x85\xe4\xae\x72\x9c\x6d\x86\xdb\xb1\x30\x1f\xf8\xea\xa4\x96\xd8\x7c\x00\xe7\xad\xf6\xdb\x9a\x6d\x03\x71\x87\x8d\x6c\x58\x12\x95\x23\xea\xcc\xf4\xdf\xa7\xd9\xbe\x21\xb4\xf2\x5d\x5c\xc3\xc1\x6d\x09\x84\x65\x46\x0b\x87\x59\x0b\x35\x56\x9d\xe8\x2d\x4b\x11\x13\xdd\x14\x13\x98\x51\xde\x33\x22\xf9\x38\x4e\x7a\xe3\x25\xdc\xf9\x12\x07\x15\x17\xef\xe4\x13\x71\xca\xb2\xc7\xfc\xd5\xe3\x08\x1f\xa3\x54\xc0\x94\x0c\x5e\x36\x1c\xf8\xef\xbd\xea\x8f\x38\x7e\xe9\x66\x4b\xd1\x65\x4d\x84\x81\x05\xc9\x3a\x5b\xa7\xd7\x9f\x6a\xaf\x97\x99\x25\xe8\x12\xc7\x5d\x8e\x59\x96\x7e\x9e\x81\x23\x70\x0c\xf0\xc3\xe9\xed\x3b\x12\x17\x6b\xda\xe3\xb9\xbe\x2d\x69\x34\xde\x63\xdd\x6a\xa9\xa1\x7b\x15\x91\x84\x75\x5c\xfd\x7d\x05\xf5\xfb\x3b\xfa\x87\x0a\xea\x1f\xee\xa8\x49\x4b\x7b\xe9\xa9\xfa\xd4\x94\xb6\xd1\x3c\x21\xb4\x9a\x68\x95\xa7\x5c\xc1\xad\xdd\xbd\xb9\x64\xdf\x5a\x73\xf6\x7e\x73\x7a\x6c\xb2\x65\xc1\xb6\x01\x42\x2c\x15\x36\x8c\x6e\x01\xc7\xb8\x9a\x53\x53\xfb\xb0\xec\x24\x22\xce\x75\xbb\xb4\xec\x4b\x67\xb0\xbd\x79\xa7\x2c\x9e\xbf\x57\x16\xcf\xa0\x2c\x1e\xbe\x57\x16\x0f\xfe\x8f\xb2\xb8\xab\x2c\x32\x06\xc2\xdf\x71\x8e\xec\xa4\x17\x38\xce\x53\xf6\xcd\xaf\x1f\x90\x06\x0e\x2b\xb2\xc1\xd3\x16\x4f\x63\x2f\xab\xe5\xf2\x59\x21\x57\x35\x8e\x21\xd0\xba\x22\x71\xb6\x68\x89\x9f\x3e\x55\x21\xee\x4b\xf6\xda\xcc\x01\x05\x9f\xca\x52\x23\xd8\x38\x13\xfa\xcf\x35\x4c\x28\xaf\xfa\x0d\x52\xe0\x81\x63\x85\xb9\x2e\x70\x64\xa0\x0b\x30\xb8\xce\x0c\x73\x4a\xb1\x21\x39\xca\x9c\xc2\x49\xb5\xd4\x08\x7b\x68\x9c\x7c\xee\xd5\x72\xd8\xf5\x94\x7b\x9b\x16\x36\x12\x6f\xfe\xa1\x8b\xea\xdf\x24\x67\x83\xe7\x37\xc5\xbf\x3a\x22\x7e\x63\xc6\xe6\x1b\x4e\x94\x13\xfd\x4f\x7c\x41\x31\x12\x91\x41\x7b\xa8\x33\x9c\xf0\x61\x10\x17\x59\x84\xce\xef\x73\x57\xee\xda\x1e\x32\xd3\xeb\xc0\xc9\xc6\xde\x78\x9c\xde\xc5\xe1\x09\xf6\x5f\xce\x0c\x82\x99\xc3\x15\xdc\xce\x1b\xd6\x83\xc6\x48\x1d\x75\xff\x0a\xad\xc8\x66\x7b\x80\x1a\xda\x4b\xa8\x35\xc7\x5d\xde\xca\x17\x5a\x0a\xb7\x52\x43\x78\x79\x70\x4c\x23\xdb\x1a\x51\x1b\x5e\x3d\xab\x64\x8d\xe7\xa1\x1f\x20\xec\x9b\xa9\x5c\x7d\xc4\x43\x6f\xee\xb3\x05\xad\x89\x44\x9c\x2e\xaa\xf8\x1f\x16\x1a\x81\xec\x63\x47\x42\x59\xb3\x55\x45\x09\x17\x7e\xeb\xd4\xf9\x8a\x44\xd7\xbf\x20\xd1\x5f\x8a\xcf\xd7\x44\x72\xeb\x05\x67\x21\x61\x66\x82\x7c\x64\x17\x44\x6a\xfd\xf6\x21\x09\x3d\x17\xfa\x06\x5b\x62\x3e\xc8\x48\x58\x79\x81\x92\xd1\x67\x32\x12\x7c\xca\xcd\xe3\x3a\xc8\x93\x12\x43\xa2\xa3\xcc\xed\x51\x3d\xcf\xae\x61\xda\x63\xfb\xbd\x09\xfe\xb0\xfa\xbf\x9a\x09\xde\x20\xcf\xa7\xdd\x3b\x2f\x6d\xaa\xe1\x9c\xbb\x1b\x39\xd9\xd9\xbf\x6c\x95\xf7\xec\xbc\x9e\x05\x72\x3a\x0b\x83\x43\x9d\x3d\x88\x70\xad\x19\xc7\x87\xac\x25\x99\x37\x9c\xec\xd8\x76\xf3\xa1\x98\xea\x8e\x38\xf3\xfa\xa5\x1d\x21\x9e\xe4\xbc\x91\x19\xc0\x5d\xe5\xc6\xfa\xfd\xc6\x3e\xb7\xac\x86\x1a\x96\x98\xd7\xee\xce\xd2\xe2\xd7\x78\xed\x09\x4f\x56\xce\xd3\x61\xc3\x6a\xaa\xa9\xf3\xdf\x69\xe8\x1e\x71\x8a\x54\x73\x5d\x69\x94\xd7\xef\x30\x5f\x68\x5a\x0b\xb6\xe0\x99\xb1\x79\x3f\xdd\x1b\xe2\xd5\x8d\x32\xab\x3e\xb0\x3f\xb2\xea\xd8\xbc\x63\xd5\x33\xc3\xac\x7a\x64\xde\xb1\xea\xa1\xa9\x1d\xd8\x56\x3d\x8b\x18\x0a\xcf\xbd\x42\x22\x14\xdc\x3e\xff\x88\xd5\x46\x82\xad\x0f\x38\x62\x37\x28\xc0\x27\x2b\x5c\x20\x7a\x53\x9d\xe8\xc4\x3e\x69\x93\x38\xa0\x73\x71\xc0\x55\xfe\x93\xd5\x53\x57\xe1\xa7\x32\xc1\xd5\xe4\xbd\x1c\xe0\xa9\x17\x1d\x9b\x98\x16\x60\xfa\x9e\x6d\x4b\xd2\xfe\x5d\x7e\xed\xab\x99\x96\xf4\x62\xa4\x36\x5a\x67\xc6\xc4\xa7\xba\x5e\xb0\xcc\xf0\x02\xc7\x1d\x70\x28\x06\x22\x58\x2b\xee\xb2\x45\x41\xe2\x7f\x4e\x6e\xa0\x88\x89\xec\xd6\xa5\x95\xbb\x34\x00\x52\x29\xda\x79\xe9\x72\xa6\x86\x2a\x36\x0b\x51\x3b\x2e\x37\x42\xaf\x6a\x6b\x6d\xcd\x0c\x9f\xad\x83\xa8\xc8\x5d\x77\x12\x39\x49\xe7\x2b\x7f\xf7\x14\xdf\xe4\x8a\xdb\xd1\x71\xe9\xb8\x66\x73\xf8\x28\x91\x91\x8c\x42\xe3\xc7\xd2\xa7\xd9\x95\xd5\x54\x4b\x97\xa3\xb9\x26\x1a\x1a\x98\x7f\xda\x28\x1d\x14\x38\x93\x8b\x0a\xe0\x2e\x31\x45\x01\x98\x10\x52\xb7\x62\x10\x17\x29\x2d\x4e\x1e\x25\xff\x25\x4c\x75\x26\xde\xe9\xee\x11\x57\x86\xd0\xb7\xc6\x4e\xd8\xae\xfc\x6c\xc0\x62\xec\x1e\x73\x66\x50\x65\x1d\xb8\xca\xa8\x63\x2f\x3b\x26\xa2\xea\x96\xaf\x5a\x4f\x08\xcd\xf7\xa4\xe1\x7c\x44\x4d\xd6\x9f\x6f\x69\x58\xbe\xc7\x86\xa5\x6b\x95\x87\xcc\x9a\xf6\x29\x2f\x14\x23\xf4\xcd\x05\x92\xfd\x72\x12\x82\x37\x09\x0b\x73\x95\xb9\x7d\xbd\x83\x2c\x11\xdf\x96\xf4\xcb\x39\x8c\x46\x24\x09\xf1\xc9\x92\x11\x04\xe0\x3a\x2c\xbc\x31\xb2\x9b\x0f\x3b\x08\xf1\x35\x7c\x42\x38\x37\x30\x20\x2d\x0e\xa2\xdd\x60\xe3\xbe\xce\x5f\x0c\x80\x9a\x38\x64\x76\x7e\x63\xd5\xd9\x42\xe4\xaa\x2b\xf5\x86\x73\x57\xa0\x5f\xde\x21\x87\x49\xd6\xc5\x96\x28\xd6\x09\x39\x5a\x3c\x83\x8f\x07\x09\xe0\x53\x52\x8e\xdd\xe7\xd5\x03\x73\xb0\x63\x4e\xaf\xd0\x3c\x82\xb9\x8c\x44\x4f\x76\x35\xfa\x45\x76\x65\xd5\x40\x5a\xfc\x0d\xcb\xf5\x0f\x48\xc0\x23\xb9\x0b\x80\xc6\x6b\x64\xfe\x5c\x75\xf3\x57\x0f\xcc\xa2\x90\x3f\x05\xb3\x00\xc2\xb6\xf3\x17\x8f\xf0\x4d\xde\xe7\x2f\x9e\x41\x95\x1f\xb2\x17\xee\x73\x7a\xc7\x08\xbb\xc2\xad\x0c\xa7\xb7\x25\x0d\xef\x31\x57\xcf\x5d\x04\xe0\x4e\x5a\x10\xd5\x38\x76\x72\x74\x25\x47\xb3\xea\x4a\xdd\x1d\x79\x08\x07\x82\xa1\x86\x25\x0d\x93\xd8\x70\x7e\x48\x02\x55\x16\x77\x23\x0e\xf6\xe3\xc3\xe6\xe6\x5c\xf3\xec\x5e\xb3\xfc\xaa\xef\x3e\x57\x90\xb4\x19\x41\x9e\x38\xa2\x2f\x99\x69\x38\x3f\x7c\xe7\x36\x3f\xf3\xe6\xbc\xe9\x9d\xd1\xd3\xc6\xdf\x9f\xba\x79\xc2\x31\xd5\xe4\x13\x4f\x66\xb0\x62\xa1\xae\xa9\x70\x70\x89\xf9\xfa\xca\x93\x54\x61\xa4\xc4\x76\x4b\x5c\xc7\xb6\x8a\x74\x62\x76\x89\xdf\x97\xd9\xbd\x57\xdc\x6d\x83\x08\x90\x1e\x0e\x22\x20\x68\x1d\x91\xd3\xbe\x5c\xed\xa1\x82\x01\xe8\x6b\x4b\xf5\xa7\xae\xd5\x50\x6d\x39\x2d\x93\x1d\x6d\x3c\xef\x72\xde\xe3\x93\x6a\x19\xde\x8e\x71\x3a\x8a\x68\xb8\x37\xd6\x0c\x8b\x9f\xee\x95\x7b\xcb\x2f\xe7\x72\x56\x06\x09\x09\x0f\xf4\x5a\x4b\xec\x8f\xd0\x55\xa2\x72\x50\x20\xfd\xf8\x36\xf3\x1e\x28\x4c\xfb\x1c\x99\x75\xec\x2c\xa6\x50\x1c\x38\xce\xb6\x8b\x32\xae\x52\xee\x71\xbb\x90\x80\x4f\xda\x44\x5d\x66\xfa\x12\x52\xf1\x9b\x50\x6d\x08\x87\x7c\xdc\xc7\x67\x0d\xb6\x06\x20\x5f\x01\x58\xf9\x77\x72\x8f\x9c\xa3\x0c\x9d\x8d\xf8\x81\xc4\xd4\x54\x0b\x7a\x16\x07\x65\x57\x0f\xd9\xf7\xfc\x62\x96\x3b\x96\x7b\x07\xf2\x85\xb5\x2c\x33\xd2\x27\xa0\xc1\xa7\x3d\x1c\xf1\xe3\xf8\xd8\x07\x10\xb0\x46\x96\x7b\x89\x0a\xd3\x14\x5e\x7a\xf9\x35\x08\x75\xc4\x40\x6d\x88\x78\x7b\x89\xb8\xd7\x68\x29\x96\xc8\x4d\x3d\x23\xa6\x54\x67\xd8\x91\xf0\x50\x08\x49\xa0\x4f\xfb\xf8\xcd\x2e\x36\xe4\xc4\x1b\xbc\xd0\x6f\xbb\x53\xcd\xcf\x61\xd8\x6f\x77\x10\x86\x78\xc7\x8e\x74\xcb\x9a\x69\x52\x3e\xc7\x8f\x7f\x3f\x57\x39\x7a\x0f\x02\x36\x41\x8e\x3f\x49\xd9\xc1\x53\x71\x70\x00\x4f\x12\xfd\xdf\xa3\xc4\x83\x65\x68\xdf\x32\xd1\xc7\x56\xe7\xa8\xb8\xe5\x7f\x3e\xdc\x30\x31\x69\xce\xee\x1a\x86\x04\x3e\x08\x81\xcd\x63\x8a\x29\xa6\xf0\x13\xae\x50\x1f\x64\x7e\x50\x67\x80\x23\xed\x23\x16\x94\xee\xa6\x7c\xf4\xa1\x89\xc8\x85\xfa\xc8\xa7\x1d\x64\xff\xa1\x53\x4a\x3e\x7e\x7e\x8b\x10\x8d\x40\xa9\xf0\xec\x31\xeb\x9a\xb1\x62\xa6\x95\xb7\x40\xea\x41\x11\xc5\xdf\x78\x7b\x1e\x69\x08\x08\x1e\x96\x11\x10\x99\x47\x1a\x7b\x34\x7a\xd9\xfb\xb2\xd1\x89\x51\x6a\x6e\x5e\xf8\xc9\x17\x1f\xd9\xa3\x25\xb9\xb6\xdc\x4b\x57\x96\x8b\xcf\x9e\xf0\xaa\xd7\x39\xb1\x44\x1f\x31\x24\x3c\x98\x8b\x5e\x3e\x6d\x4e\xc4\x58\x9e\x4e\xe5\xeb\x9e\x5f\x30\x9d\x3c\xe6\x79\xd5\x7b\xbf\xbf\xa3\xa0\xe8\x90\x18\xb3\xec\xaf\xcb\x29\x21\xab\x08\x73\x87\x22\xd8\x38\x44\xdb\xc3\xc0\xf2\x49\x71\xb8\x2f\xc1\xb6\xbb\x7a\xe4\xc9\x5d\xc1\x3e\x51\x5a\x95\x47\x8c\x0d\xfc\xfe\xdd\xe8\x98\xcf\xcf\x30\xb3\x27\x40\xff\x9c\x6f\x45\x0a\x4b\x2b\x25\x7e\x12\x5f\xb9\x6b\x2f\x66\x72\xcf\xf2\xdc\xcd\x12\xc1\x29\x57\xd9\x46\x37\x60\x80\xa4\xa7\x37\xcd\xcc\xf8\x40\xb3\x01\xe6\xcd\xb6\x8c\x3a\x61\x8b\x65\x15\xe7\xe3\x3b\x92\x75\x82\xe0\xe2\xd4\x79\x6a\x5a\x1d\x75\xe2\xac\x48\x0c\x71\xd5\xa9\xb3\xd1\xaf\x1e\x48\x50\x0b\x49\x23\x32\x12\x54\x31\x7f\x46\x82\x8e\x9c\xae\x9f\x2d\x1c\x1f\xb8\x59\x3e\xfe\xc9\x92\x7d\xb2\x9d\x5f\x2e\x58\xdf\x92\x53\xb5\x6e\x5c\x8b\xdb\xef\x50\x80\x56\x26\x22\x4c\x48\xec\x44\x97\xbf\xbe\xda\xc8\xdf\x30\xa5\x77\x1d\x09\xd5\x86\x65\x20\xd5\x25\xf9\x0e\x90\x92\x11\xe6\x33\xcd\x86\x92\xa6\x6a\xc9\x61\x43\x44\x28\xc0\xcc\xbb\x28\xd5\xa8\x8f\x4b\x21\xd6\x11\xd5\xe8\x6c\x40\x93\x0f\xa0\x74\x49\x3e\x96\x47\x49\x25\xd0\x50\xb6\xc2\x12\xb9\xe9\x63\x61\xf3\xa9\xf1\xbb\x16\x96\x17\x92\xe2\xa6\x59\x48\xe5\xaa\x24\x85\x35\x90\x07\x5c\x88\xed\xab\x73\x8e\xee\x56\x62\xed\x84\x05\x64\x01\x19\x8f\x13\x80\x9a\x91\x39\x00\xb3\x3b\x25\x10\x33\x0f\x13\x2e\x33\x31\x53\x0f\xcb\xe4\x21\x85\xf0\xd4\xcb\x24\x8e\x4e\xbb\xa0\xba\x2b\x2a\x54\xbd\xc2\x69\x68\x8c\x83\x36\x9a\x33\x5a\x99\xb1\x66\x09\x78\x29\x57\x25\x61\xeb\x39\xb5\xe9\x60\x0b\x15\x9e\x1d\x35\x87\xff\x21\x8a\x6b\xda\x9c\x78\xa4\x85\x1c\x5d\x01\xac\x4e\xa5\xd0\x21\x39\x47\x85\xb3\x95\x70\x6c\x83\x5c\x9a\x53\x8d\xfc\xa3\x1d\xa8\x62\xba\x0c\x6d\x9e\x72\x52\x33\x65\x00\xf4\x5f\x91\x38\x7b\xc5\x8a\xf4\x8d\x12\xa2\x48\xf4\xe9\x1a\x4b\x41\xd5\x4f\x71\x12\xa9\x68\x31\xd8\x18\x76\xcc\xdc\x78\xa7\x9a\xf3\x2a\x49\x07\x4c\xd9\x6a\x39\x2d\x6f\x2a\xd7\x8c\xe4\xa8\x20\xe1\x5b\xd6\x80\x2f\x86\x99\xbc\xe5\x9d\xaf\x75\xe5\xc7\xe6\xb3\x0f\xbe\x6a\x48\x16\x0b\xe4\x67\xe2\x7e\x82\x29\xf6\x21\x93\xdd\x7d\xd2\xbc\xa0\x15\xce\x61\x0f\xac\xc7\x38\x58\x2c\x07\xf6\x93\x07\xe4\x9b\x7b\xe0\x74\xde\xc7\x24\x89\x3d\xfa\x15\xf6\x0e\xd6\x86\x2c\x49\xb7\xde\xd7\xce\x4f\x9d\x16\x4d\xf0\x51\x73\x21\xff\x34\x91\xb1\x1c\x3d\xea\x2a\xef\xb2\x1a\x11\xd9\xb5\x9d\x37\x56\x3b\xa8\x65\x4f\xb1\x3c\xd9\x81\xdc\x25\x97\x48\x70\xbd\xa9\xd4\xab\x2b\xf7\xd8\x46\x80\x75\x37\x33\x2b\x65\x69\x48\xe4\xf4\x72\xe3\x29\x13\x28\x3c\xa5\xba\x0c\xdb\xe1\xb9\x44\x66\x33\xeb\xed\x7f\x92\x1c\xb7\xc9\xe2\xd9\xad\xff\x87\x08\xe2\xb6\x51\x24\x43\x08\x57\x39\x63\x9d\x70\x24\xdc\x50\xbf\x90\xd8\x31\xbd\x4a\xd9\x50\xb1\xd5\xc9\x5d\xd6\x2b\x7c\xfe\x1c\x83\xcd\xf0\xdd\x3a\x65\xf2\xe5\x4f\x71\x5c\x7e\xeb\x62\x25\x03\x8e\xf1\xa5\xf5\x7c\x69\xe3\xe8\x55\xce\xda\x4e\x3f\x20\xd2\x89\x10\x8b\x47\xab\x74\x11\xa0\x5b\x86\x5d\x8e\xa3\x12\x81\xfc\x99\x95\xbe\x09\x24\x71\x9a\xea\x9d\x88\xe0\x3c\x6d\x28\xe2\x22\x80\x37\x33\xb5\x50\x2e\x45\x80\xf8\x9d\x17\x80\xf4\x6d\x35\x94\x8f\x24\x03\x92\xa7\x75\xd3\x2e\x26\x3b\xf4\x9e\x0f\x48\xa4\x50\xe1\x39\xbf\x3d\xd3\xfc\xda\x1d\xdb\x27\x90\x3a\x2a\x84\xbd\x9b\xda\x00\x27\xac\xd4\x87\xcd\x71\xd9\xe9\x2d\xb7\xe0\x6c\xef\x32\x7a\xe2\xd4\x2e\x3f\x2c\x03\x52\x6d\xc8\xa9\x68\x2c\x43\x45\x5f\x08\x63\xe1\x6c\x9f\x3e\xf2\x8b\x4b\x8a\x21\x24\x06\x85\x15\x01\x9d\xa9\xd6\x9a\xe6\xe4\x4f\x71\x4a\xfe\x80\xea\x56\xeb\x3b\xb0\x46\x00\x89\x53\x10\xf5\xc5\x75\xae\x8a\xe3\xac\x23\x7c\x48\x80\x3e\x27\x06\xe4\x0c\x6b\x63\x7d\xc2\x2b\xf0\x62\x2a\xdc\xfd\x85\x96\x2c\xce\xdc\x65\xe2\x26\x55\x81\x11\xf3\x61\xf2\x46\x7a\xbd\x80\x05\x1a\x9a\xf6\x08\xb0\xc4\x79\xa9\x55\x07\xf0\x88\xe2\x2b\xf7\xd8\x1c\xdd\x51\x5f\x4b\x33\xea\xbc\xef\x8b\xaf\x1d\xda\x04\x09\xa2\xa5\xae\xff\x77\xca\xa5\xa3\x9e\x2f\xd9\x74\x74\xa6\x8d\x0a\x79\xfa\x17\x0f\x58\x9e\x98\xa5\xc2\xff\x9f\x5d\xdc\xa9\x1e\xdb\x62\x28\x13\x9f\x6a\xc4\xb3\xec\x6d\x70\x99\x1b\xdf\x85\xf9\x31\xdf\xd5\x0c\x5a\xf0\x10\x37\x35\xb1\xdc\x8e\x84\x1c\xb6\x02\x12\x75\x2a\x04\x1a\xc6\x4d\x90\xa0\xe7\xa5\x27\x84\x9a\x7a\x85\xbb\x55\xa0\xa0\xe2\xe7\xe1\xbe\xe5\xcb\xfd\xa8\x93\x47\x2b\xcf\xfb\xdb\x40\xba\xc0\x2c\x23\xe4\x0a\xf2\xf9\x71\x40\x0b\xbd\xfe\x70\x33\x60\x66\x17\xc8\x8e\xe0\x8a\x55\x71\x76\xf5\x79\x1b\x79\x12\x0c\xe7\xf0\xd3\xa6\x70\x74\x77\xe7\xfa\x40\xb9\x37\x76\xf2\xeb\x16\x51\xdc\x53\x6e\xa5\x48\x63\x7b\x5d\xae\x58\xf1\x18\xf6\xf6\x21\x7c\x8d\x7a\x56\x9f\x36\x62\xac\x0f\x25\x01\xf5\xee\xc5\xb9\xf5\x52\xfa\xb7\x77\x97\xe8\xc2\xdb\x7e\xc2\x44\x2a\x71\xcb\x97\xe8\x16\x09\xc0\xf2\xd4\x8c\x0d\x79\x81\x14\x68\x81\xf5\xc5\xb5\xba\x43\x6d\xec\x37\xc4\x3b\x22\x47\x54\xf9\x9a\xb4\x58\xc3\xab\xd9\x3d\x2e\x72\x3f\x06\x47\x9c\x9d\x68\x64\xf6\x91\xcb\x09\x32\x25\x49\x53\xf4\x31\xb9\xb2\x0a\xd9\x4a\x4e\x62\x8e\xed\xf1\x87\x8b\xa3\x76\x52\xa9\x1d\xf0\x5a\xfa\x12\x66\x9f\x20\x5b\x5b\xca\xa1\x63\x75\xb9\x1b\x4d\x72\xf6\x61\x38\xbb\x79\xd1\xe4\xca\xd4\xd8\x94\xde\x1d\x21\x2c\xe0\xb8\x00\xef\x58\x7f\x72\x01\xeb\x09\x7f\xef\x9d\x3e\xe5\xaf\x16\xfa\x8c\x1f\xfa\xe7\x45\xd5\x54\x5f\xf0\x43\xa4\x2f\x8b\x82\x6f\x7a\x5f\x5e\x56\x8a\x92\x6f\x7a\x88\x3b\x4b\x47\x7d\xeb\x43\xfe\xbb\x1e\x01\x54\xc4\xa6\x5c\x4e\xaa\xe6\x6e\x02\xc4\xad\x36\xb3\x17\x8a\x39\x8d\xd9\xf2\x72\x04\xc5\x66\x1d\x92\xa4\xe3\xa4\x26\xfe\x70\x99\xde\x19\xa4\x46\x53\xfc\x0d\xa6\x10\xc0\x10\x40\x05\xa1\x0c\xc4\xec\xcd\xe1\x9d\xea\x41\x65\xc9\xb3\x0f\x66\x19\xa7\x43\x4f\x2e\xbd\x03\x4d\xf0\xb7\xf4\xef\x79\x20\x92\x56\xee\x02\x95\xb4\xfb\x6c\x19\x68\x75\x05\x8c\xf2\x14\xfc\xe0\xd6\xb6\x84\x81\x65\x86\x3d\x73\x63\x79\xea\x9e\x54\x03\x4e\x4a\x7f\x4f\x08\xd7\xa9\x67\xc8\x92\x11\x0c\x2b\xcf\x8d\xd7\x3b\x67\xa5\xaf\x3e\x7f\xe4\x64\x9c\x4e\x5e\xf2\xe5\x17\x25\x7d\xe5\xbc\xd9\x88\xe9\xaf\xe3\xf8\x27\xdf\xeb\xf5\x44\x68\x35\x20\xed\xa8\x5f\xbf\xe3\x00\x10\x64\x47\xe1\x9f\x38\xcf\xc0\xda\xbc\x9f\x70\x88\xd4\xd3\x04\x79\xa1\xc0\x58\xd9\x4f\x13\x50\xd9\x58\x8f\xb5\x15\xaa\x99\x5e\x19\x18\x39\xd1\x11\x14\x3f\x07\x16\x5c\x9c\xd4\x86\x4a\x74\x0d\x0d\x8b\x09\x62\x97\x69\x65\x97\xd7\xfd\x35\xcb\x10\xd5\x55\x2a\xe1\x80\x4e\x35\x31\x6c\x10\x32\x89\xb3\xcf\x05\xe1\xca\xba\x7b\xb6\x38\x2b\x12\xa2\x1a\x62\xc9\x5d\xb3\xa4\x11\xbf\xea\x4b\xea\x2a\xd1\x1e\x9f\xc1\xae\xb6\x41\x21\x70\x61\x1e\x74\x8a\xee\xb8\x0f\x1a\xc7\xb4\xfe\x09\x97\x39\x56\xf2\x4b\x91\x49\xe6\x3f\x61\x28\x9b\xe8\x35\x49\x36\xce\xa5\x8d\x9b\x7b\x42\x1e\xf1\x4c\x4f\x11\xd4\xce\x7e\x52\xc3\x04\x27\xb2\xf9\xe4\x6f\x45\xef\xcb\xc1\x34\x66\x40\x5b\x5d\x81\x19\x0b\x40\x3b\x83\x69\xa4\xe3\x90\xf8\xbe\x70\x59\x1f\xed\x13\x22\x8f\x0d\x69\x1a\x91\x64\xcf\x54\xcd\xe3\x80\x0f\x74\x98\x83\xa0\xd8\x0d\xb0\xc0\x12\x44\xc8\x25\x9c\x4f\xd9\x2d\x45\x4d\xe5\x56\xcc\x8c\x95\xb8\xee\x19\xfb\x91\x7b\x1c\x69\xdc\xe2\x03\x1d\x61\x35\xdf\x33\xf3\x66\xcb\xb0\x30\x4b\x28\x01\x9d\x48\x62\x89\x71\xa4\xae\xc3\xe8\x89\xab\x8b\xa7\xd9\xbb\x05\x98\x28\xe7\x9a\x34\x4f\x5e\x71\xac\x05\x9e\x25\x96\x9a\xcf\xef\x60\x31\xc2\x91\x40\x64\x73\xa3\xf2\x97\x86\x7d\x92\xfb\xe6\x76\xca\x43\xae\x5f\x70\xe7\xad\x4e\x5e\x62\x64\x27\xa4\xdf\x45\xf6\xf5\x98\xe3\xf5\x5b\xaf\x2c\xfe\xdf\xde\xe7\xd4\xd5\x5f\x73\xd5\xc6\xeb\x13\xbb\x01\xf5\x06\x8f\x27\x7c\x9e\xad\x09\x31\xb5\x25\x41\x25\x20\x5b\xfe\x2b\xe8\xcf\xe6\x89\xd4\xc8\x73\x49\x6f\xd7\x94\x65\x46\x54\x87\x5c\xe2\x8a\xcc\xc6\xaf\x50\xc0\x70\x08\x06\x3c\x89\xf7\x39\x2d\x52\x11\x0f\xb5\x89\x9d\xf6\x62\x50\x22\x37\xc2\x9d\x90\xc8\x32\xbb\x3d\x54\xd2\x09\x96\xf2\x7f\xce\xb9\x4e\x0f\x55\x85\xa2\xbe\xf0\x43\x98\x0c\xca\x4c\x0a\x41\xeb\x1c\x2f\xf5\xcb\x04\xc5\xce\xc6\x7c\x90\x4b\xb6\xe0\x50\xab\x47\xb1\xa4\x7b\xca\xf5\x12\xa2\x84\x72\x9f\xbe\x07\xb2\xd8\x49\xb8\xc0\x00\x59\x73\x59\x5b\xbb\x9a\xe5\x39\x78\x1c\x46\x6e\x7f\xc3\xc9\x2a\x1b\x70\x40\x33\x19\x6e\x0c\x91\xb8\xb2\x82\xec\xcf\x72\x1f\x32\x5b\xc9\x9b\x38\x74\xd1\x90\x5b\xd5\x46\x24\x62\x3b\x15\x1b\x91\x1d\x20\xc5\xa7\x8c\x64\x2d\x76\x9d\x20\xa3\x67\xd1\x02\x0b\xe9\xa2\xe7\xf7\xb1\x5b\x60\x22\xc1\x29\xbc\x44\x9b\xab\xcf\x7b\xf1\x94\x23\x79\x75\x5f\xaf\x38\x53\xf4\x33\x9c\x3f\x0b\x41\x19\x30\x8f\x96\x72\xa6\x7a\x54\xfb\x25\xab\x45\x26\xa4\x56\x5c\x95\x9c\xdb\xa4\xee\x9c\x5d\x95\x32\x44\xf1\x06\x57\x13\xb0\xdb\x63\xef\xc3\x06\xaf\x78\x17\xbb\xeb\x62\x83\xe3\xbf\xcd\x30\xfd\xca\x85\xfb\x8b\x41\x21\xce\x3b\x6f\x59\x32\xe3\x72\x3a\xe1\xa3\x27\x36\x98\x4d\xe0\xcc\xdf\x3c\x31\xf9\x41\x58\x98\x28\x74\xdc\x52\x6b\xc4\xf7\x78\xb5\x01\xd6\xd9\xfa\x1e\xd4\x41\x31\x0f\x91\xae\x8d\x1f\x4d\x8d\x89\xd6\x38\x7b\x79\xf2\x40\xca\xf8\x99\x3e\xe5\xff\xb8\x4b\x99\x5e\xf6\x94\x19\xd9\xf0\x80\xe2\x51\xf5\x12\xd2\x7b\xcd\x60\xad\xb9\x24\x07\x7b\xb6\x00\xdd\x7d\xce\x50\xfa\x50\x31\x53\x8e\xa3\xcd\x32\x94\x56\x33\x8f\xce\x4a\xb3\xa0\x2d\xe1\xca\x08\x75\xdb\x4d\xae\xbc\xe5\x76\x82\xb7\x02\x23\xe6\x7a\xbf\xe4\xec\x20\x65\xff\xd2\x7e\xab\x7e\x6c\x7e\x39\xc8\xee\x7a\xe3\x94\x2a\x31\x2f\x84\x70\xc8\xdd\x9c\xcb\x93\xc1\x6e\xce\x65\x09\x43\x2a\xf6\x6d\xf0\xf1\x8a\xe5\x44\x7f\x86\xbf\x38\x9e\x51\xcd\xdf\xa4\xfa\x13\xc4\x97\x34\x00\xb6\x55\xc8\x42\x27\xa0\x1f\x1b\x6c\xfb\x76\x60\x6d\x35\x41\xe8\x7a\x67\xd5\x6e\x4a\x4b\x20\x15\xd8\xdb\x6e\x40\x2e\x58\x10\x77\xf9\x2e\x54\xb9\xe0\x33\x43\xee\x73\xbe\xbf\x1c\xfd\xa2\x95\x1e\x03\x00\x87\x36\x3d\x67\x59\x64\xbc\xfc\x14\xf4\xd1\x00\x6c\xbe\x68\xd6\xf0\x8d\x10\x9c\xdd\xd1\xe0\xe0\xde\xeb\x0e\x40\x21\xf5\x20\x96\x1d\x4e\x44\xd8\xa4\x3d\xb4\xe1\xc0\xa9\xf1\x50\x2a\x8b\x73\x13\x22\x56\x0f\x36\x76\xbc\x93\x84\x17\xe2\xbd\xb5\xaa\x1a\xe7\x4d\xd8\xe0\x6b\x98\xdf\x3e\x99\x40\x9f\x84\x30\x4b\x7f\xab\xf6\x28\xcc\x16\xa7\x3e\xd6\x51\x08\x06\x6b\xef\x7c\xaa\x2b\x4f\x92\xc2\x0e\xf9\xcd\x4a\x57\xc0\xc1\x0a\x03\xb1\xd8\xb0\xcf\x6e\x98\xed\x9f\x03\x48\x58\x29\x88\x70\x54\x6d\xcc\x9e\xb2\x75\xf5\x18\x36\xc1\x93\x90\x87\x8b\x04\x39\x72\x6b\xcc\x03\xec\xef\x07\x0f\x96\xe4\x62\x6f\x92\xd8\x73\x1e\x96\xa6\x27\x8e\xe9\x16\x89\xeb\x4f\x9b\x2f\xe6\x97\xdf\xd3\x19\x66\xa4\xa2\x3e\xd6\xf3\xd0\x72\xd5\x15\xdc\x19\x2b\x0e\x3a\xf5\x62\x16\x93\x8a\x69\xfa\xaa\x9e\xe8\x17\x3c\x5c\xbf\x5b\x80\x7a\x8d\xa7\xbe\xb3\x26\xeb\x7f\xd7\x9a\x70\x33\x2f\x62\x44\xc7\xde\x4c\xe5\xe8\x0f\x71\xf8\x09\x1b\xf7\xe6\x1a\xef\x86\x25\x57\xc6\xe1\x13\xac\x62\x2f\x46\x39\x23\xc4\x88\x9f\x31\xd8\x1c\xe9\x53\x1e\x55\x7d\xa9\x33\x9f\xa4\xf2\x53\x9d\x0d\x5d\xaa\x9f\x85\xac\xd7\x59\x67\xb6\x52\x43\xa0\xf7\x9a\x9d\xd5\x5b\xc9\x3e\xc7\xd3\x78\x31\xec\x04\x41\x52\xa3\x0b\xb9\x53\xee\x16\x57\xc8\x4f\x91\x0c\x07\xb4\xb7\xf3\xe6\x5a\x59\x34\x8e\xea\x4b\x90\x00\x55\x7d\xc6\x85\x7f\xcc\x5c\x9e\x15\x56\xab\x18\xc5\xfa\x01\x93\x98\x90\x80\xe9\xac\x58\xe8\x0f\x7f\x1d\xca\x43\xed\x4b\x3a\xd0\x2e\x6c\x88\xb4\xaa\x08\xe3\x09\xf8\xf7\xfa\x81\xd1\x8e\x4d\xc9\xaa\x33\xe5\xab\x62\x99\x51\x36\x9c\xcc\x90\x48\x2a\x44\x1f\x59\xef\x55\x38\x61\x7b\x76\xef\x12\xde\xe3\x55\x08\x50\x5c\x87\xa5\xc7\xf0\xb0\x3c\x3d\x0c\x30\x8b\x12\x72\x55\x7f\x0c\x0b\xcf\x81\x0b\x0c\x1a\x85\x56\x71\x3b\x33\xd0\xaa\x5b\x90\x03\xc9\x7d\xe5\x4a\xe0\x27\x42\x88\x07\x72\x0e\xfa\x1e\xe9\x99\x48\xf4\x75\x46\x5a\xac\x60\x2d\x56\xa7\x38\x28\x16\x41\x77\x08\x53\x3a\xaf\x17\x29\x9a\xa2\x9b\x92\xed\x8e\x2d\x30\xf5\x2a\x5f\x58\xae\xa7\x61\xa6\x99\x23\x7f\x6d\x03\xf7\xa6\x2f\xc3\xa2\x6d\x93\xcf\xcd\x1c\xea\x0d\x80\x7c\xc5\x87\x7a\xee\xa0\x31\xbf\xb1\xab\x4e\x32\x2c\xb5\x4a\xdc\x1e\x48\x08\x64\x6b\xbc\x12\x5e\x6f\xbd\x4b\x7d\xf9\x5c\xe0\x79\xa5\xc6\x17\xe6\x9c\x68\x58\x6a\xfb\xd9\xe5\xec\x79\xe8\xd1\x8a\xa1\xde\x91\xd8\xc2\xbe\x75\xa4\x39\x27\x30\x61\x0f\xae\xbb\xac\xd7\x32\x17\x82\x33\x76\x0e\x1f\xb0\x9a\x34\x92\x09\x49\x5f\xae\x60\xe2\xf4\xb1\x38\x17\x38\x83\x71\x7a\xfc\xc4\x67\xdb\x60\xaa\x1e\xea\xcb\x80\x31\x6a\xc8\xf3\x4f\x4b\x16\xc1\xf3\x3c\x84\xfa\x63\xb2\xaa\xdf\xcd\x53\x75\xfc\xab\x3c\x55\xd4\x60\x78\x06\x59\x7d\x0c\x61\x1a\xe6\xad\x23\x3d\x82\x20\x3f\x81\x56\xbf\x81\x73\x56\x6e\x3d\x87\xaa\xdf\xe3\x30\xed\x29\xdb\x08\x77\x6e\x3d\xcf\x62\xc2\x26\xf0\x1f\xe1\x38\xed\x4c\x4f\x61\x3e\x02\xaa\x43\xe4\x1e\x0a\xe3\x3b\xd2\xb0\x60\xc7\x26\x22\xc9\x67\x6e\x8e\xaf\xad\x86\xaa\xf0\xf5\xdc\x8c\x2a\x8c\x25\x58\xd7\xfe\x42\x4f\xe1\x2d\x38\x04\xd6\xec\x0f\x32\xd1\x89\x0f\x68\xc2\xd1\xf5\x80\xdb\x91\x72\x50\x60\xcd\xb9\x75\xc2\x02\x63\x28\x2a\xe2\xbc\xcf\x04\xaf\x42\x2f\xdd\xd4\x86\xcd\x39\x6b\x75\x18\x5a\x07\xd8\x70\x4e\x5b\x23\xd1\x95\x8c\x1c\xeb\x7e\xf9\x46\xd9\x14\x99\xe1\x67\x0c\x5a\x9d\xb8\x40\x25\x81\xa5\xf9\x33\x56\xf0\x7d\xa5\x3a\x89\x13\x2b\xe0\x60\xaf\xa8\x6b\x12\xfd\x1a\x22\x10\xc0\x53\x63\xe7\x8e\x16\x6d\xe6\xb8\xb6\x55\x57\xb1\xa3\x1c\x7e\xea\x90\x86\x3c\x46\x9a\xcc\x9b\xbe\x25\x59\xd2\xe4\xe4\x24\x0b\x5d\x9e\x44\x22\xd9\x56\x96\x69\x50\xf9\x26\xff\x3d\x74\xa6\x5a\xe4\x39\x57\x39\xb8\x36\xe8\x02\x04\xf5\x0d\x32\xcf\x12\x01\x87\x2f\x9a\x69\x52\x87\x36\xe5\xd0\xd9\x38\xa4\xc8\x56\x1d\xcb\x57\xd5\x85\x16\x5e\xe0\x29\xf7\xe9\xf4\xa9\xb4\x9e\x30\xcf\x7a\x41\x79\x39\x5e\xa9\xdc\xa5\x83\xa0\x74\x9c\xf1\x85\xe0\x30\xaf\x8e\xf5\xe1\xce\x6e\x96\x2e\x9a\x12\x0a\x7b\xba\x73\x91\x73\xdd\xea\x28\xf7\x89\x45\xa8\x91\x4d\x8c\x2b\xb2\x9f\x8e\xa0\x27\x1d\xf6\xac\xae\x72\xda\xbc\xa4\xad\xa3\x47\x9e\xcf\x0b\x7c\xb0\xaf\x8c\x55\x07\x9a\xb1\x20\x84\xc6\xdb\xc3\xc1\xf1\x38\x80\x7a\xd0\xe7\x50\x2a\x16\xbc\x53\x5c\xb5\x77\xde\x2b\x50\xfa\xa8\x8c\xd2\xc7\x25\x94\x06\x12\xb3\x25\xc8\x79\x1c\x9b\x1d\x8c\x9e\x7c\xc0\x68\x60\x57\xb3\xd2\xff\x12\xa3\x8f\xa0\xef\x8a\x7c\x99\xa3\x74\x33\x2b\xe3\x11\x18\xc2\x44\xe7\x9f\x71\x59\xd2\x09\x18\x62\x89\x4b\xba\x58\xb4\xa1\x18\x5b\x00\xd2\x08\x35\xce\x71\x1a\x62\x64\x2f\x7e\x2e\xe3\xf4\x11\xbc\xa3\x8c\xd3\xe7\x1f\x71\x7a\x22\x86\xc5\xc6\x31\x62\x46\xf9\xca\xcb\xab\x11\x7b\xe8\x1a\x47\x0c\xe2\x0d\x97\xad\x4e\xd0\xc2\x12\x24\xa0\x06\x0b\x78\xc8\xc9\xb8\x43\xb4\xdf\x66\xdd\x2a\x15\xc2\xdb\xf0\xac\xbe\x32\x37\x6b\x91\x58\xe5\xe5\x02\x57\x05\x83\x6d\xbe\xeb\xa5\xaf\x9c\x8d\x86\x04\x7e\xa4\xe1\x03\x5d\x18\x5a\xea\x25\x5b\x9f\x37\xb6\x3a\x05\xd9\x18\x01\xaf\x78\xef\x5e\xf4\x42\x1f\x8b\x97\xf1\x97\x18\x4e\xdb\xc4\xf5\x42\x18\xfa\x7b\xa4\x92\x9c\x93\xbe\x41\xab\x35\x1b\xb0\x10\x32\x34\xeb\x01\x42\x77\x56\x2c\x9b\xec\x33\x7f\x43\x20\xcf\x61\xed\x94\x48\xd1\x51\x6d\xc1\xe1\x27\xee\xd5\x38\x28\x77\x7b\x56\x2d\x5d\xb4\x3d\x36\x72\xd1\xf6\x45\x1e\x07\xeb\x29\xf3\x2c\x04\xaa\x78\x09\x83\x05\xc9\xf8\x29\x70\xed\x80\x1a\x73\xe0\x8d\xf2\xb6\x18\xaf\x0c\x51\x10\x65\xfb\xc4\xba\xd4\x1f\x0c\x7c\xe1\xf1\xc0\x5f\xbc\xcf\x07\x7e\x51\x2d\x5d\xb6\xbd\x30\x8b\xdf\x1e\x38\x34\xf6\x4d\x3e\xf0\xae\xf2\xd6\x66\xa3\xcb\x6d\x9f\x84\x00\x97\x6e\x76\x66\xc9\x9b\x0e\x3e\xb4\x64\xee\x3e\x6d\xfe\x34\xb4\xea\xca\x39\x24\xb2\xe9\x2a\xef\xe1\xb8\x57\x6e\xf8\x3d\x39\x59\xd4\x02\x82\xbe\x79\xcd\x7b\x7f\x99\x7c\x4b\xc5\xb5\x37\xfd\x60\xed\x5e\x19\x99\x5f\xb1\xd8\xb2\xb2\xc4\xbc\xb3\xda\xb5\xd4\x95\x3b\xe1\x47\x2e\x37\xbc\x66\x62\x3b\xd3\x27\x44\x64\x56\xb5\x3b\x36\x47\xbd\x31\x8d\x3a\xb0\x9f\xb6\x25\x1a\xe5\xb7\xad\x86\xaa\xa9\x48\x6c\x5a\x01\x09\x72\x43\x0d\xa1\x22\xa3\x54\xe6\x2b\x4a\xd5\xdc\x3e\x71\xde\x0a\x97\xc5\xb5\xd1\x63\x29\x4a\xd4\xc9\x0f\x70\xfb\x83\xa4\x6c\x0d\xc9\x35\x94\x0b\x6d\xe2\xfa\x46\x5b\x3d\xb9\x76\x40\xec\x63\x75\x6b\xa5\x95\x73\x7f\xba\xa3\xb4\x75\xb3\x7c\xf9\x10\x2f\x30\xb0\x26\xf6\x2d\x7b\x82\xa9\xd4\xb7\xf6\x8d\xf1\x38\xba\xb9\xe5\x9d\x10\x9a\xb6\x87\xfa\x5c\xae\x00\xb4\x7c\x35\xb3\x77\xaf\xbf\x59\x8d\xb4\xe5\x92\xb6\x34\xb5\xc7\x3b\xc7\x98\x4d\x49\x82\x2b\x9c\x49\xb4\xe8\xad\x87\x42\x30\x1b\x6a\x82\x6c\xb9\xc3\xb3\x8f\x0b\x0d\x39\xc5\xe9\xa9\x28\xec\x8e\x44\x9e\xe1\x5e\x36\x1c\x9f\xc3\x19\xb2\xbe\x2b\xb2\xc2\x75\xf1\x69\x2a\x9f\x3c\xf9\x24\x46\x5e\x4e\xc1\x24\x9f\xfc\x92\x84\x71\x89\xe1\x9d\x0f\x08\xea\xda\x62\xe0\xa9\x4b\x48\x16\x6f\xc0\xad\x55\xdc\x06\xc5\x88\xd4\x3e\x1c\x95\x57\xf6\x80\xa7\xdf\x37\xb1\x19\xeb\xe3\x9d\x2f\x72\x65\xc7\xd2\x2d\x88\xe7\xbc\x2b\x2e\x85\x3a\xf3\x68\xc2\xe1\xb5\x89\x77\xfd\xc3\x2b\xb8\xb1\xc5\xb4\xf5\x32\xd4\x96\x4f\x3b\x6d\x6f\x8c\xb5\xb5\x55\x5d\xc4\x59\xa4\x11\x7d\xe6\x0c\x32\x67\x5a\xd1\xbf\x7d\x8d\xd4\xa2\x15\xb4\xb7\xcd\x2f\xaf\xe6\xb7\xcc\x72\xb6\x3a\x07\xff\x70\x83\x13\xd8\x10\x75\xfe\xf7\xd6\x26\x56\x9e\xe4\x2f\x48\x60\xdd\x38\x44\x4e\x67\xbe\xec\xe9\xbc\x36\xd5\x50\x2d\x10\xc0\xf9\xf7\xaa\xc5\x81\x56\xc7\x66\xa1\x8b\xa4\xa6\x18\x1d\xa3\xa5\xc1\x51\xfc\x15\xd0\x29\x5c\x0f\x81\x79\xef\x9f\x2d\xb9\x4f\x64\x6b\x1e\xb7\x9c\x08\x13\xf7\x36\x3b\x87\xf6\xf4\x49\xe8\x4a\xa1\x9a\x2c\xcc\x07\xd5\x84\x8f\x2b\x79\x24\x31\x4b\xbc\x64\x73\x28\x07\x8c\xfb\xd6\xc7\xdb\x43\xeb\xca\xac\x0d\xe4\xbd\x5f\xc8\xf7\x66\x83\x9b\x75\x6f\xdb\xac\xea\x86\x48\xf5\x82\x31\x74\xc4\x92\x0e\x1e\xdd\x12\xfb\x3e\x0b\x81\x73\xc3\xb1\x18\x53\xa3\x90\x84\xab\x31\xeb\x95\xf0\x6f\xad\xbf\x2d\xe1\x8b\x51\x6a\xde\xfb\xc8\xf8\x17\xce\x1f\x8b\xf6\x8e\xf7\xca\xd6\x17\xa8\xf0\xbf\x29\xe0\x37\xd5\xa5\xfd\xfc\x42\x0d\x46\x10\xea\xc7\x10\xea\x23\x08\xf5\x15\xfb\xdb\x42\xfd\x85\xfd\x0d\xa1\xfe\x14\x42\xfd\xfc\xdb\x42\xfd\xf9\x27\x42\xfd\xac\x3a\xd6\x1b\xd8\x35\x52\x63\x15\xd7\xc6\xfe\x52\x98\xaf\x98\x99\xb6\x8c\x1a\xda\x87\xfa\x99\xc8\x7b\xf5\xef\xc5\xf8\x09\x6e\x29\x3f\x1d\x7c\x10\xe0\x4f\x6b\x25\x01\x5e\x20\xff\xa8\x0c\xf9\x65\x09\x9e\x4d\x9b\x38\x57\xfd\x0c\xd0\xc7\xa9\x99\xde\xf1\x17\x90\xbf\x31\x60\xfc\x2c\x04\x3f\x7d\x94\x81\xdd\x91\xfe\xa5\x10\xec\x12\x31\xaf\x7e\x14\x82\x9d\xaf\x85\x60\x33\xf8\x28\x04\xfb\x2c\x6a\x2f\x74\x7b\xf1\xc4\xd8\xb5\xd2\x85\xb4\xbb\xd2\x82\x5e\xf2\x12\x34\x00\x42\xd1\x04\x31\x27\x23\xa3\x2e\x60\x0e\xb9\xd4\x1f\xf1\x21\x71\x3e\x15\x84\xcd\x9f\x08\xc2\x23\xc8\x93\x43\xef\xc4\x61\x36\xb8\x70\x21\xf1\x34\xc7\x41\x49\x04\x4e\xf5\x3f\x11\x81\xdd\xbf\x15\x81\xcd\x9f\x88\xc0\x6f\x18\xf2\xf6\xc3\x90\x47\x41\x49\xf8\x7d\xd3\xff\x50\xf8\x3d\x80\x1a\x08\x36\xc1\x52\xef\xf8\x1f\x4a\xbd\x2b\xc9\xf9\xda\xcf\xf1\xed\xf9\xbf\x41\xda\x3d\xb4\x19\x89\x8f\xec\x43\x3d\x26\x21\xcd\xad\xb2\x07\xeb\x37\x04\xdd\x1d\x5c\x86\x88\x6b\x92\x5f\x8a\xb8\x75\xf3\xe2\x58\x4d\x92\x3c\x2b\x3e\xee\x62\x40\xe6\xc6\xff\x99\xc7\x2f\xfb\xa6\xae\x40\x64\x58\x80\xbb\xb9\x45\xf4\x62\x04\x86\x31\x35\xe2\xa5\xfd\x60\x2f\x27\xed\xe7\x83\xbd\x7c\xc5\x51\x6a\x55\x49\xf8\x35\x01\x5b\xdd\xe6\x42\xb4\x23\xc9\xa1\x45\x54\x5e\x8b\x78\x7d\x64\xe7\xae\xe0\x2c\x26\xf6\x43\x5c\xe2\x09\x42\x5e\x36\xf6\xbb\xb8\x44\xf1\x75\x6e\xd1\x54\x70\x2e\x7e\x5c\x1b\x71\x69\xf2\x9a\x04\x80\xae\x52\x41\x11\xdf\x13\x20\x89\x80\x19\xdb\xf2\xae\xf2\xc4\x09\xcd\xe5\xa6\xf6\x8e\x52\xdd\x7d\x76\x31\xcb\xe5\xf4\x97\x4f\x30\x87\xbb\xca\x19\xdb\x08\x3c\x5a\xe9\x54\xc6\xff\x2a\xbd\x5c\x42\x8e\xf1\x2f\xf8\x7f\x27\xb6\x0f\x23\xfd\x6e\x61\x97\x7a\x1f\x46\x0a\xa4\x92\x60\x89\xd2\x3d\x37\x7c\xc5\x0e\xbc\x54\x55\xac\x0d\xdc\x87\xbd\x75\xc0\xfd\x4e\x90\x17\x3c\xb1\x19\xd2\x82\x5a\xb9\x4c\x70\x82\xab\x5d\xcc\x69\x15\xce\xff\x91\x6e\x8f\xca\xce\x7f\x4b\x5c\x57\xf0\xfd\x67\xa1\x00\xca\xe0\x82\xd0\x49\x24\xe4\x55\xa8\x04\xbd\x5c\x69\x8f\x83\x4e\xcc\xb3\xb5\xeb\x8e\x7e\xd5\x72\xe3\x27\x4e\xa6\x4e\x38\x99\x92\x19\xd9\xa5\x80\x8f\xf3\x11\x4e\x19\x77\xdf\x95\x63\x77\x66\x4d\xc2\x48\x47\x58\xb1\x52\xd8\x97\x93\x4a\x28\x98\xc4\x3e\xf0\x30\xe5\x86\x76\x44\x3e\xbc\xe5\x65\xd5\x4c\x67\xa7\xa8\x94\xe3\x03\x21\x77\x2f\xd1\xf4\xad\xbe\xa9\x8e\x6a\x1f\xaf\xd1\xcc\xdd\xe9\xb8\x85\x68\xa6\x95\xc2\x09\x80\x49\xf9\x8e\x67\x46\x2a\x9f\x25\x57\x09\x1d\x96\xb8\x8a\x2a\x48\xe1\x7c\x24\x89\x9c\x33\xb8\x96\xcb\x94\x5e\x73\x48\xef\x2c\xcc\xa8\xd4\xfb\x1d\x6f\xfe\x1c\xc1\xae\xf0\x1d\x91\x00\xd6\x60\xd9\x08\xb7\x1f\x75\x95\x9a\x6a\xc1\x98\xe6\x14\xc9\xa8\x96\x25\x0f\x91\x77\x6c\x66\xf8\xba\xd4\x6f\x1c\x0b\x53\x5b\xe8\xa5\xc6\xb8\x6e\x1e\xca\xe3\x9a\x15\x08\x77\x2c\x6e\xaf\xfc\x45\x5a\x52\x56\x5b\x6b\xa6\x91\x11\xa7\xd4\x3a\x6f\xe0\x04\x4d\x6a\x73\x9f\x8f\x0c\x8d\x4b\xdc\xc6\x21\x59\x46\x4e\x0c\x8e\x52\x27\x2d\x38\xe4\xfa\xec\x2d\x72\x33\xb6\x3b\xc1\x45\x1c\x25\x47\x9d\xb8\xa9\x1e\x97\x2d\x3c\xa5\x38\x36\x3c\xe1\x18\xc1\xa1\x9e\xb3\xc3\xa9\x9b\xb2\x8b\x48\x92\x7c\x37\xdf\x86\xb8\x1c\x5f\xc4\xe5\x59\x03\x24\x96\x6f\x9a\x89\xbb\x50\xde\x50\x32\xa6\x56\xbb\x24\xc8\xdd\xaf\x76\x3a\xda\xf2\x91\xd2\x8a\x5c\x9d\x53\x85\x2a\x3b\xde\x01\x86\x0b\x81\x7a\xe4\x39\xe0\x96\x24\xe6\x4d\x96\x81\xd6\x86\x53\x0c\x9d\x36\x7f\xaf\xda\x3f\x9f\x30\xf1\xd1\x03\x20\x06\x7a\xf7\x8e\x6b\xe5\xa9\xba\xe3\x8f\x83\x71\x69\xf7\x17\x7a\xac\x2b\xd1\x67\xde\xea\x0f\x28\xaf\x8a\x9f\x65\x6b\x46\x27\xc7\x9e\x03\x84\x23\x3b\x56\x60\x9d\x69\x63\x27\xc8\x93\x36\x43\xeb\xf5\xb7\x12\x91\x40\x5b\xaf\x1a\x41\xfd\xca\xda\x8d\x61\x3d\xd0\x07\x91\x84\xb1\x76\x32\xe4\x83\x96\x62\x8b\xd1\x76\xce\x31\x72\x7e\x55\x02\x61\x39\x47\x9f\x7c\x7a\x79\x16\xa3\x8c\x72\xda\x7c\x47\x4d\xee\x5c\xaf\xaa\x35\x86\xe0\x45\x76\xd1\x8a\x69\x9f\xf3\x6c\x9a\xeb\x5a\x51\xdf\x11\x79\xe4\x12\xd1\x8e\x48\x5f\xe8\xcc\xe0\x30\x62\xd2\x31\x20\x30\x69\xc8\xa5\x85\x47\xcf\x19\x3b\x33\x1b\x1b\xa4\x0c\xa7\xd9\x85\x30\xba\xaf\x1c\x05\xfd\x5c\x74\xe1\xe5\xb1\x9b\x0b\xdc\x66\x78\x2f\xad\x92\x90\x3b\xc9\xf7\x83\x5b\x6d\xd2\x56\x3c\x57\x4a\x49\x08\x7b\x42\x1f\x24\x4c\x23\x42\x8e\xa7\xe2\x0a\x63\xf7\x93\x2b\x8c\x8f\xc6\xe5\x68\x20\x84\xd9\xc0\x4f\xb6\xad\xc9\xb1\x37\x4f\xb9\xde\x22\x1b\x31\x75\x54\xab\x9d\x31\x15\xf7\x90\xf0\xf4\x0d\x36\x03\xce\xa3\x64\x62\x89\x97\xf7\x0e\x84\xa0\x71\x06\xae\x01\xc2\xdb\x11\x0e\xf1\xc6\x53\x73\x58\x81\x2f\xce\xfb\x43\xae\x52\xfe\x85\xd4\x43\xbe\x26\x1a\xa8\x7f\xce\x1b\x72\x6e\x70\x5b\xb9\xf7\x82\xb1\x38\xf1\x15\x9f\x38\x3c\xe4\x83\x64\x2c\xbb\x64\xc7\xec\x1b\xd9\x45\x9e\x38\x92\x7e\x01\xd2\x57\x87\x9f\xd3\xc3\xe0\x4b\xd5\xf3\x82\x5c\x71\x28\xd1\x61\xa4\xd2\x54\xa1\x58\xf4\x78\xf8\xce\x31\x3c\xce\x7c\x73\xbb\xf2\x39\x78\xf4\x50\x0b\x1c\x4b\x91\xb4\xc7\x9b\x83\x8b\xd2\x44\xce\x00\x35\xce\x9a\x6d\x90\xe2\xb9\x29\x1e\x38\x8e\xec\x45\x4b\x9c\xc4\x29\x14\x0c\xdc\x57\xde\x1a\x95\xaf\x76\xde\xc7\xc2\x04\x95\x51\xb1\xc9\xc9\xe7\x91\xc8\x07\x2c\x10\xcc\x25\xba\xf1\xf0\x7d\xec\xf1\x4c\x0a\xcc\x3e\x7e\x9a\x20\xba\xa9\x08\x35\xe6\x9b\xc4\x9c\xc3\xea\xc7\x50\x63\x91\x3a\xca\x71\xc3\xa7\x06\x4e\x1b\x91\x31\x7a\x13\x9c\x43\xc0\xa9\x29\x96\x81\x95\xb3\x66\x24\x93\xd3\x68\xcc\xd1\xdd\x53\x4e\x69\xb9\x71\x24\xe2\xb4\x51\xb4\xdb\xb0\x42\x82\xf2\x07\x11\xc9\xc6\xdc\xa5\x5f\xcb\xa7\xfa\x94\x5d\xaa\x57\xc4\x9e\xbd\x88\x73\x34\x29\x70\xc1\xd9\x85\xfb\x82\x32\xcd\x35\xa2\x79\x26\x63\x2d\xb6\x51\x8b\xef\x12\x12\xca\x27\x37\xf8\x4f\x5d\xc4\x6a\xf1\xc5\xfc\x3e\xb1\xeb\x2b\xbe\x35\x8d\x91\x2e\xb3\x57\x37\x4e\x64\x5b\x16\xf7\xc0\x69\x24\xab\xc0\x8d\xc6\x7c\x35\xca\x20\x3f\x3b\xef\xc0\xd5\x83\x98\x40\x17\xe6\x17\x17\x49\x55\xb3\xd3\x03\x0e\x32\x49\x62\xb6\xb4\x5e\x47\xb8\xea\x93\xef\x77\x33\x49\x26\x1d\x31\xa7\xbe\x87\x04\x31\xc4\x84\xeb\xeb\xb1\x2e\x09\x11\x1f\xaf\xe8\x67\x5a\x23\xc6\xcc\x17\x9c\xa1\x3b\xce\x2f\x85\x27\x7d\x96\x04\x09\x07\xf9\xf2\x68\x17\x1f\x56\x42\x1e\xd7\x48\x6d\x29\x11\xbb\xee\xf2\x26\x17\xd6\xeb\x53\x70\xe8\x5e\x16\x2d\x28\x39\x71\xe1\x51\xdb\x89\x1d\x7b\x1d\xcb\x09\xb0\x62\x94\x26\xd6\xdb\xb1\x64\x26\x78\x2b\xbd\xbe\xfc\x48\xad\xe6\x93\x0f\xd4\x2a\x0b\x1a\xe4\xc4\x1c\xb7\xb9\xe9\xd5\xf5\xf8\x8c\x59\x4d\x81\xe2\x4a\x8c\xd8\x8a\x83\xc1\x06\x63\x51\xbd\x84\xd6\xb4\x84\x91\x3b\x7c\x75\xae\x59\x68\x9c\x56\x68\x1e\x30\x69\x18\xea\x04\x49\x14\x0f\xf9\x3e\xb0\x35\x8c\xb7\x43\x2c\x46\x88\x43\x09\x4a\x62\x25\x89\x3a\x48\xdb\x2f\xb4\xbb\xee\x31\x8e\xa6\x49\x3a\x2e\x1e\x8b\xf3\xea\x13\xf9\x93\x14\x5d\x72\x31\x6b\x83\xc5\x28\x9f\x4f\x9f\x17\xe7\x25\xe4\xf2\x2e\xb8\x24\x38\x76\x3a\x3c\xe6\x20\x33\x62\x3d\x9e\x32\xa7\xb6\xca\x5a\xf4\x95\xea\x9e\xf5\x72\xaa\xd2\xa8\x66\xa5\x5d\x39\x95\xb7\x80\x9a\x73\xd4\x83\x40\x8b\x9d\x8a\xb5\xd8\x6b\xef\x3f\xe1\x1f\x33\xc4\x02\x6f\x4a\x69\xf2\xcc\xf3\xe5\xaf\x2f\xc1\x47\x66\x74\x1e\x06\x14\x47\xef\x0c\xf1\xef\x23\xb9\xe0\x31\x33\x71\x30\xe4\x5e\xbd\x01\x50\x86\x42\x43\x77\xfb\x9f\xa3\xff\xb7\x52\x62\x3e\xf3\x60\xff\xd6\x98\xb6\xc8\x34\x8d\x8b\x74\x47\xb8\x51\x4d\x36\x35\x82\xd1\x71\xcc\x5c\x03\x79\x4b\x5e\x60\x47\x4c\x10\x98\x99\x5c\xe5\x34\xd1\xdf\x22\x7c\x78\x51\xcf\x9a\x43\x04\xa5\x0c\x1b\xf9\xe3\x3e\x9e\x85\x31\x0b\x93\x36\x4a\x43\x7a\x69\x94\x4c\x08\x93\xae\x15\x71\x3c\xa8\x9d\x9a\xf3\x02\xda\x7b\xa4\x3a\xe1\x16\x54\x9c\x64\x68\x95\x69\xff\x6f\x1e\x55\xb9\x40\x7b\x43\x7d\x99\x35\x5c\x26\xec\xa1\x72\xa6\x66\x1f\x5f\x42\xeb\xf5\x49\x79\x9d\x37\x24\xf9\x60\x8b\xb8\x1e\x95\xae\x77\x07\xe7\xda\x62\x5f\x82\x24\x7a\x7f\x76\x4f\x72\xf6\x20\xa0\xbd\x71\xc4\xeb\x18\x40\x87\x30\x0b\x96\xd3\xe8\xc5\x5a\x02\xd3\x8f\xfa\x78\x0f\xc9\x13\xb7\xe7\x49\x50\xd8\x94\xf3\xbf\x9b\xb1\xd9\xe7\x13\x49\xf0\xc9\xd5\xa3\x1a\xa0\xf4\x1c\x08\x9a\x45\xed\x47\xc8\xc2\x87\x7b\xee\x2b\xb8\xb4\x53\xa2\xf6\xf1\xbb\xd2\xb5\x9a\xc4\x47\x47\x19\x5c\xcf\xc5\x29\x33\x9e\x14\x74\xe5\x58\x4f\xb2\x2c\x8c\xa5\xb7\x9f\x2e\xe8\x87\xe8\xd7\xfa\xe6\x0b\x56\x92\x89\xa8\x67\x48\x84\x56\xe4\x4b\xb8\x40\xbc\x5d\x85\x75\x86\x73\x67\xf1\x58\x96\x54\x37\xb8\x53\x69\x55\xc5\xfa\xbc\x93\x55\x1d\x65\xee\x13\xbc\x3a\x82\xf3\xc2\x67\x51\xb1\x90\x60\x15\xc2\xdc\xdf\x8b\xae\x23\xf8\x26\xa5\x2f\xd4\x35\x8f\x0b\x98\xd7\x0a\x69\xd3\xcf\x0c\x6c\x7e\x2a\xd8\xc9\x02\x69\x59\xb0\x6d\x12\x75\xbe\xd0\x59\xe3\x24\x8d\x6d\xf8\x74\x70\xed\x02\x6a\x05\xd1\x21\x27\x28\xd0\x7e\xc1\x89\xe7\xef\x52\xde\xa9\x7d\x7d\x7e\x87\x2c\x5a\xc4\x48\xee\x90\xe7\x31\x32\x18\xb3\x03\xe9\x77\xc3\x62\x01\x84\x7d\xb9\xbd\x11\x14\x92\xbe\x74\x94\x5b\x43\x92\xbf\xce\x2b\x9f\x40\xee\xe1\x3a\x4f\xda\xe8\x3a\x61\x36\xf6\x97\x13\x2a\x18\x49\x18\x22\x00\x95\x3f\xf4\xac\xbe\x19\x9b\xb1\x3e\x9d\xec\xa8\x33\x7d\xab\x6f\xd4\x58\xdb\x1f\x48\x87\xb0\xd1\x18\xc0\x5c\xc9\x2f\xc0\x94\x3c\x23\xe2\x56\x99\x09\x4a\x28\x90\x04\x7b\x6c\x0e\xc7\x7f\xaa\x2e\x7d\xfe\xf3\x73\xf8\x5a\xe9\xb9\x03\xd8\xae\x8e\xb0\xf3\x72\xdb\x69\x99\x4c\x7c\x12\x86\xfd\x82\x59\xf7\x93\x49\x41\x5a\xd3\xdf\x3e\x22\xb7\x94\x35\x4b\x0b\x44\x51\xdd\xd5\x84\xed\xf1\x87\xa2\x0c\x6f\x4a\x2d\x8f\xb5\x24\xd8\x8a\xcb\xc3\xfa\x54\x46\x45\x92\xff\x7a\x5c\x1c\x2e\x1c\x6c\x27\xa2\x12\x96\x5a\x1c\x9c\xc8\xad\x2c\xe5\x06\x0f\x50\xa0\x77\x38\x29\xf3\x8b\x23\x3c\x75\x8f\x27\x65\xd1\x62\x06\xfe\x13\x5f\xe7\xef\xa6\xfa\xa3\xd4\x88\xa4\x9c\xbb\x47\x1d\x3f\x3b\xd9\xf0\x7b\xe1\xf0\x9f\x05\xd2\x9f\x60\x54\x9d\xd3\xd2\x98\xa7\xfa\x4c\xde\x9e\x97\xc6\x3c\xd5\x17\xf2\x74\x59\x7a\x3b\xd2\xfb\xf2\x54\xd9\x79\x3b\x94\x74\x05\xa3\x69\x69\xd1\x90\x61\x21\x3f\x63\xe0\x71\x02\x26\x18\xf0\x26\xd0\xee\xb0\x6b\x12\x97\xe4\xcb\x30\x3c\x2c\xa8\x69\xcb\x52\x36\xc0\x0a\x41\xc6\xcd\x33\x72\x87\x74\x70\xbb\x6c\xe3\xc8\x41\x1e\x0d\x21\x04\xcd\x37\x0c\xa0\x11\x3d\x31\x39\xdd\x32\x2a\xb3\xe7\x5a\xd2\x6f\xd5\xd7\xbe\xd5\x51\xce\xa9\xc6\xa7\x96\x24\x38\xeb\x2a\xf3\x54\x72\xa8\xf0\x09\xd1\x18\x7e\x33\x36\x79\xb8\x24\xd0\xbe\x68\x65\x1e\x45\x76\x8c\x34\x8e\x98\x72\x86\x22\xb3\xd1\x08\x1c\x0e\x12\x79\xd9\xa5\x3d\x59\xe2\x68\x63\x2a\xef\xfa\xac\x19\x20\x41\x34\x4e\x9d\xd4\x89\x48\x2c\xf4\x12\x83\xde\x87\xdd\xee\xe1\x9c\x0f\x30\x1e\xe9\x49\xb7\x04\x88\x26\xb1\x5f\xa6\x62\xd1\x14\x17\xd4\x84\x49\xa3\x33\x86\x99\xbe\x63\x17\x66\xdd\x86\xd5\xcb\x13\xfa\x23\x05\x0b\xfb\x63\x46\x8e\xc4\x68\xc0\x4e\x18\xba\x30\x6b\x75\xc5\x66\xe7\xd0\x4c\xab\x70\x7e\x35\x05\xfc\x91\x7a\x20\xe7\xb8\x44\x44\x76\x8f\xec\xb2\x6c\xe2\xbe\x40\x9f\xb2\xf2\x93\xbd\xa7\x45\x6a\x1e\x9f\xdd\xad\x0b\x5b\xd1\x8e\x70\x82\x86\x0e\x14\x71\xd8\x50\x2f\x20\x4d\xa7\x65\x13\xc2\x82\xc7\xe0\x23\x15\xca\x9a\xf9\xf6\x25\x43\x5e\x87\x64\x08\x50\xdf\x1e\xde\x4f\x0d\x8e\x4e\x04\x1f\x9b\xbc\x83\x51\x79\x84\xa3\x26\x8d\x57\x9c\x2d\x93\xa3\x16\x38\xfe\x45\x8d\x53\x8d\x7d\x50\x93\x8d\x7d\xce\x6b\xec\xa8\x0b\x81\x23\xd8\x22\x1e\x24\x25\x10\x5b\xe4\x21\x10\xf2\xbc\xbb\xec\xbd\x56\x8d\x99\xe4\x88\xb8\xcf\x36\xdf\x39\x16\x71\x0f\xe0\x85\x14\x19\xfe\xe1\x3d\xa7\xc8\xd8\x52\x73\x2e\xce\xe5\x77\xf9\x88\xc7\x16\xd7\xf8\x2f\xf4\x39\x1a\x5a\x71\xea\x1f\x1c\xa7\xe9\x2c\xa6\x3c\x9b\x63\xe6\xe9\x73\xe8\x88\x37\x7c\x80\x35\x73\xbe\xf0\x4f\x08\xbe\x81\x52\x7d\xbe\x0a\xc6\x8d\xf5\x2b\x77\x8e\x63\x4b\xaf\x3a\x99\xea\x0f\x4b\xe4\xb3\x0e\x77\xe5\x55\x26\x3b\x4b\x74\x26\xb7\x56\xe3\x84\xa8\x90\xd6\x6c\x55\x37\xf6\x08\xf0\xd7\x02\x6f\x42\x52\x81\x3a\x4c\x14\xb8\x22\x1d\x3e\x0a\x09\x1b\x18\x22\x47\xf6\xb5\x88\x99\xde\x12\xff\x7b\x6b\x2c\xf9\x93\x90\x19\x67\x34\xd4\x56\x4f\x79\xf6\x39\x5c\x24\x32\xda\x39\x46\xd6\x5d\x08\x38\x42\xf7\x52\xcd\x78\x02\x45\xc5\xfe\xf0\xd6\x93\x4c\x08\x87\xb6\xb4\xec\x41\xb7\x6d\xce\x04\xa0\x8d\x74\xc6\x57\xf4\x62\x13\x70\x42\xa7\xa1\xae\x52\x83\x38\xab\x77\xdd\xb7\xc6\x78\x16\x28\x9b\x0b\xed\x4b\x21\x18\xc2\x7e\xc0\x84\xde\xbe\x34\x5f\x0d\xc8\x7b\x10\xfa\xd6\x17\x82\x5a\xda\x09\xe6\x45\xa7\x3b\x7d\x94\x3f\x3a\xb1\x66\xa2\x37\x17\xcb\x40\x2a\xa3\xbb\x83\xdd\xb1\x5d\xec\xc6\x47\xc3\x00\x0c\xab\x13\x2c\x7a\x2b\x96\xae\x4f\xa0\x89\x9e\xf6\x71\x49\x27\xc4\x37\x3e\x8a\x28\xda\xa8\x27\xc1\x4f\x6c\x35\x70\x6e\xc4\x8e\xe6\x5d\xb2\x63\x44\xb9\xc2\x05\x86\xbb\x50\x85\x34\x79\x62\x2b\xc0\x69\xa4\xd6\x8e\xa5\xc0\x55\xfe\xf5\x0a\x35\xe0\xf9\xbf\xe0\xb9\x30\x54\xc1\x25\x3e\x2d\x2f\x7f\x63\x81\x5d\xf6\x97\xf0\xd3\xad\x3f\x01\x35\x8f\x33\x11\x36\xa9\x2e\xe2\x19\x86\x7c\x76\x37\x4c\x9f\x3e\x40\x9b\x9f\xe7\x3b\xf4\x56\x99\x01\x80\xef\x76\x36\xe7\xf6\x0a\x44\xa2\x2e\x32\x86\xb7\xd4\x59\x8f\xa5\x5a\xbb\xa0\xab\x9a\xd1\x4e\xd9\x13\x18\xf8\xba\xa7\x23\x0c\xfa\x64\xb4\x03\xaa\x0d\x74\xe1\x54\xaa\x3c\x0b\x71\x2d\x98\xb7\x7c\x01\x5d\xe5\x72\xa4\x8b\x9c\x28\xf3\x61\xb8\xe8\x2c\x98\xcc\x3d\x7f\x8e\x65\x31\x02\x4e\x08\x71\xbd\xcf\x27\xed\x7d\x3e\x69\x57\xa9\xa9\x53\x5c\x66\x90\xa3\x0a\x08\xef\x69\x3f\x1f\x13\xac\xcd\xb6\x07\x48\x54\xfe\xe7\x68\xcc\xa7\x98\x7f\x1f\x6d\x1b\xbb\x48\x8f\x8b\x9e\x46\xd5\x21\xfb\x17\x9d\x6b\x46\xa8\xec\x30\xe1\x21\x03\x88\x9f\xda\xef\x21\x1b\x67\x56\x9b\x50\xfb\x7c\x64\xd8\xa7\xd5\xf2\xd8\x41\x9a\x9f\xa8\x35\xed\xb8\x64\xf3\x1a\x7e\x38\x0f\x6b\x9e\x7b\x1f\x26\xb4\x7b\x24\xb6\xc1\x69\x68\x98\xce\x63\x1a\x9d\x18\xff\x1b\x2f\xc8\x81\x58\x3f\x97\xc4\x46\xa5\x03\xb8\x66\x51\xcd\x8e\xc6\xba\xca\xb9\x9d\xf4\xe5\x98\x54\x8b\xf8\xfc\x31\xcf\xa9\x7e\x68\x67\xa9\xcb\x3c\x9e\xd3\x95\x3a\x12\xf9\xe9\xb4\xe0\x59\x24\xf3\x54\xcb\x33\x95\x63\xd3\xa0\x6a\xbd\xc4\x2b\xcd\xfb\xd8\xfc\xee\xbc\x59\x18\xfb\x8d\x89\x77\x96\x18\x49\xf3\x30\x43\x8c\xa7\x8c\x6f\x7a\x4a\xf5\x77\xcf\x04\xaf\xe0\x72\x16\xca\xbe\x71\x8b\x05\xf0\x6e\xa2\x27\xcb\x53\xbd\x5a\x85\x9e\x1e\xd4\x25\x6e\x4c\x23\xd1\x83\xd3\x74\x79\xc9\xb5\x64\xdd\x7f\xb9\xc6\x04\xea\x30\xe8\xb1\x8f\x65\x68\x94\x39\x17\x5d\x1f\x87\xe2\x90\xbd\xd8\xbb\x2f\x85\xea\xc3\x23\xb5\x8f\xa8\x4b\xd6\x11\x91\xed\xc0\x16\x5d\x8a\x59\xf9\xad\xe8\x63\x63\x30\xa5\xe7\x93\x32\xcd\x08\x60\x9c\xf1\x69\x77\x78\x3a\x22\xca\x9f\x83\xf1\x1d\x9b\xe5\xa7\xf8\x3e\x1d\x97\x5f\x67\x68\xdf\x42\x6a\xfd\xfa\xf8\x7a\x87\x18\x1c\x77\x73\x06\x95\x38\x90\x0e\xfa\xa4\xf7\x52\xd1\xe8\x1a\xdd\xfb\x05\x53\x99\x92\x5c\xe5\x72\x82\x7f\xdb\xdb\x02\xda\xc2\x15\x9a\x82\xc4\x9f\xf2\xfe\x07\x48\x2a\x0e\xd9\xeb\x0d\xa9\x4a\x78\xa1\x24\x81\xe4\x11\x5f\xb4\x5d\x71\x90\x7e\x80\x0d\x57\x0e\x07\x61\x07\x38\xe7\xd6\x55\x66\x0d\x77\x9f\x8c\xf7\x88\x4f\x0d\xba\x03\x88\xa0\x22\x02\x78\x33\xe6\xa1\xe6\xfe\xad\x2c\xa8\x2b\x6f\x9f\xa1\xd6\xdc\x25\x85\x83\x56\x4d\xe0\x6f\xf3\x64\x11\x45\x7c\x57\xde\x1c\x4d\x1c\x9a\xc3\x59\xae\x2a\xa8\x48\x0a\x47\xf8\x78\xae\x37\x3b\x3a\x98\xf7\xc2\xdb\xe5\xdc\xa4\x72\x53\x55\x52\x52\x3e\x0e\x45\x67\x6c\x9d\xc1\xdc\x63\xad\x34\x71\x97\x7d\xf6\x78\xf0\x52\xb9\x6b\xe7\x18\x22\x38\x0c\x62\xb8\x3a\x61\x5f\xae\xee\x40\xd4\x09\xf6\xd0\x47\xbf\xec\x68\xaa\x2b\x6f\x81\x58\x57\xf1\xdc\x37\x85\xe7\xd2\x6f\x76\x36\x79\x08\xd1\x82\x17\x3f\x12\x2c\xe2\x1d\x48\x11\xb3\xdb\xdc\xb2\x61\x22\x76\x8a\x00\x90\xa8\xc7\xe4\xc0\x8a\x6a\xca\xa8\x4d\x2f\x33\x7c\xa9\xfa\x52\x4e\xba\xf3\x21\x69\xfe\xdd\x5d\xe0\x8c\x70\x0b\x7b\xe8\x9e\x01\x9d\x91\x4f\xab\x3b\xad\x13\x63\x3e\x2e\xa5\x12\x9d\x71\xad\x99\x46\xd0\x4b\x5d\xd2\x3f\xaf\x87\x18\xca\xf0\xba\x68\xff\xec\xff\x65\xef\x5f\xd4\xda\x38\x92\xc6\x71\xf8\x56\x1a\xd6\x8b\x24\x33\x48\xc6\x8e\x73\x10\x51\x58\x49\xc8\x98\x18\x0c\xe6\xb0\x8e\x83\x78\xf1\x48\x6a\x49\x63\x46\x33\xca\xcc\x08\x50\x6c\x2e\xe8\xbb\x8d\xef\xca\xfe\x4f\x57\x55\x1f\x67\x24\xb0\xe3\x64\xf7\xfd\xbd\xc9\xf3\xec\x1a\x4d\x9f\xab\xbb\xab\xeb\x5c\xbf\xa0\x99\x40\x42\x03\xdc\x60\xf6\x83\x1b\x8c\x92\x81\x03\x04\xad\xef\x7e\x81\x10\x1c\xbb\xb5\x03\x6f\x99\xf9\x82\x5a\xb8\x8c\xff\x8a\x72\x77\xa4\x9c\x7f\xc7\xab\x83\xb6\xea\xf4\x44\xfc\x26\xe5\x83\x19\x61\x51\xa4\x41\x88\xcb\xe7\x19\x35\xb1\x7f\x83\x61\x10\x60\x46\x31\xd7\xdd\x69\x7b\x3d\x24\x2d\x2c\x44\x85\x1f\x68\x16\xe2\x15\x0a\x04\x80\xe5\xc3\xdc\x04\xd7\xe4\xa4\x47\xc4\xc5\x01\xf0\x71\x9b\x86\x55\xce\x07\xbc\xf0\x87\xa9\xa4\x6a\x3c\x19\x57\x1f\x87\x07\x12\x80\x82\xb1\xe1\x25\x01\xfc\xdd\xd9\xec\x08\xe2\xf6\x8c\xc2\x83\xf4\x31\xed\xec\x09\x72\x25\xa9\x51\x90\x51\xc1\x2b\x31\x71\xa9\x5c\xf8\x0c\x78\x6e\x8a\x9d\xa8\xbd\x78\x87\x6b\x25\x09\xe9\x31\xc6\x72\x81\xe7\xf3\x1b\x58\xcc\xeb\xe7\x64\x7f\x24\xe9\xd3\xe7\xf4\x3c\x11\x7f\x09\x81\xf2\x8d\xef\xaf\x8e\xbd\xbd\xe6\x68\x37\xeb\xbc\x44\x53\x93\x11\xdc\xbe\xce\xb8\x55\x43\x76\xe4\xaa\x35\xda\xc1\xb4\x6d\xbf\xef\x79\xf3\x96\xa0\x3c\x41\x61\xd6\xd9\x6c\xd5\xf6\xc8\xf4\x73\xf4\x33\x7a\x51\x0b\x9a\x36\x05\x23\xbc\x75\x00\xd8\x2b\xb2\x71\x04\xb9\x68\xda\x7a\xd6\x96\xac\x66\xb3\x7f\x68\x5e\x6d\xc1\xd4\x74\xae\x77\xbe\x5d\x0c\x13\x50\xe3\x5e\xc9\x78\x9a\x32\xd9\xea\x77\x3b\x62\x57\x53\x15\x74\x60\xbd\xf5\x2b\x12\xc3\xb0\x3f\x24\x5f\x56\x83\x04\x18\xa0\xe1\x5a\x3c\x69\xaf\x9e\x83\xe4\x55\x6c\x08\x69\xd8\x0a\x87\x15\xc4\x60\x80\x70\xea\x87\x2d\xc5\x28\x53\xa2\x45\xa2\x8e\xf7\x46\xa2\xe2\xde\x31\xa5\x65\x3d\x6b\x36\xa3\x56\x8a\x61\x77\x40\x9e\x48\x98\xfd\x29\x30\xc3\xb7\xad\x34\x68\xa9\xb2\x0e\xe1\xb0\xdd\x75\xa8\x32\x87\x2a\xbf\xab\x2a\x82\x23\x83\xf8\x04\xe0\xd4\x9e\x60\xa8\x40\xb1\xf0\x5f\xbe\xff\x05\x0f\x16\xe4\x00\x7c\x26\x56\xbd\xf7\xbc\x25\xa3\x67\x77\x08\xbf\x92\xaf\xfe\xbf\xc9\xae\x01\x24\x87\x18\x37\xae\x7d\x7c\xa0\xa9\x02\x2b\x28\x1e\x69\x02\x31\xde\xd2\xab\xdf\xd0\x8a\xf2\xf6\x85\x8c\x88\x77\xd0\xec\x80\x7e\x75\xa7\x89\xe8\x9e\x52\xd1\xbf\xbd\x25\x0d\x21\xd2\x5d\xa8\x32\xfe\x3e\x80\x4d\x89\x5b\x63\xa4\x03\x8f\xa6\x40\x47\xc7\xad\x09\x31\x85\x11\x12\x40\x60\xf5\xb6\x4f\xf1\x08\xdf\x04\x60\x4b\x49\x69\xbb\x60\xa7\x23\x5c\x0c\xbc\xe4\x9d\x31\x8c\x7e\x83\x42\x92\xde\x1c\x72\x3b\x35\xe7\xad\xdf\xe9\x1d\x99\xd3\xc2\x45\x9b\x1c\xcf\xf0\x6a\x1f\xe4\xcc\x1d\x42\x01\x27\xd7\x21\xb9\xb9\x4b\x5f\x85\x4e\x8d\x52\x60\xa2\x5a\xfd\x06\x16\xd5\x7e\x49\xfc\xe1\xef\x63\xb4\xa2\xba\x21\x8f\x90\x0c\x5e\xc7\x57\x51\x3b\x20\xf5\xd9\x59\xb3\xf9\xee\xe6\x2d\x3e\x65\x89\x94\x81\x19\xaa\x6e\x4c\xc8\x00\xf5\xfc\x1b\x38\x20\xfd\xdb\xb7\xba\x69\xd8\xf6\x4e\x9a\x9d\xe7\xbb\x98\x28\x8d\x7f\xa0\xcc\xde\x67\xcd\xce\x2d\x85\x31\xe1\x51\x1f\x25\x2c\x6f\xb0\xe7\xce\x77\xad\x09\xbc\xf0\x1c\xe5\xd8\x28\xf0\x92\xe5\xa0\xd7\x4a\x8e\xc8\xfe\xf6\x1b\x24\xd2\x94\xf8\xd4\x54\xc7\xbc\x11\x9c\x67\x91\xdc\xb1\x40\x8a\x9b\x22\xc9\x79\x96\x45\xfa\xe5\x1e\xc1\xcb\xdd\x0e\xdb\xe8\x0e\x00\xea\x82\xfd\xdf\x10\x4c\x3c\xa2\xd7\x75\x12\xb5\xd0\x4e\x48\x89\x9a\x30\x0c\x3a\xba\xa0\x9c\xdd\x46\xd6\xc4\x54\x60\x39\x4a\x37\x32\xa3\x88\xb9\xb2\xb7\xdf\x22\x0c\x36\x00\xb3\xef\x3c\x6b\x93\x21\x98\x38\x2f\x9b\x13\x92\x25\xa5\x74\x28\xb2\x89\xc5\xad\x60\x30\x85\xcd\x0f\x4a\x9c\xde\x26\xa9\x38\x90\xaa\x6f\xbe\x81\xb4\x01\xbf\xcc\xc7\x2d\xf9\x6d\xd4\x7e\x89\x4a\xaf\x6b\x8c\x60\x25\xe5\xea\x6d\x41\x77\x04\x48\x1a\xbf\xda\x81\x45\xcf\x54\xfa\xe2\xf6\x6b\x51\x6b\xdc\x46\x14\xfe\x03\x4d\x01\x32\xfa\x76\xd0\x23\xe7\xd5\x26\x92\xe9\xd9\x8e\x27\xa3\xc7\x6a\xc1\x4e\x07\x93\x6d\x60\x76\x31\xf3\x1b\x5a\x87\xa8\x30\xcc\xdf\x61\xac\xd5\x2b\x8b\xf1\x4a\x3f\x10\xae\x6a\x53\x2a\xa1\xe6\xab\x00\xe5\xc0\xd7\x13\x1d\xaa\x56\x3c\xb9\x1d\x54\x4e\xbd\x1a\x91\xe2\x50\x7e\x9e\xb6\xc8\x02\x1a\x81\xd9\x39\xd6\x2a\xd5\x5d\xea\xfd\x60\x0c\xff\xa6\xad\xb0\x35\x07\x19\xe4\xb4\x85\x6b\xad\x99\x6b\x25\xef\xa3\x57\x3f\xec\x7f\xe6\x04\x29\x5d\x96\x3b\x41\xf9\xf9\x21\x13\xfc\x4d\x00\xf6\x5d\xd8\x7a\xe5\x9d\x34\x4f\x7d\x98\xdb\x18\x62\x32\x53\x58\xeb\xbd\x1b\x1c\xec\x0c\xf9\x5d\x40\xbe\x6f\x5e\xab\x69\xbc\x6a\x36\xdf\xe4\xe1\x2a\xa8\x9a\x78\xc7\x18\xba\x3d\xee\x90\xe6\xe5\x59\x1b\xcd\x1f\xc8\x2a\xc8\xb4\xfb\x68\x87\xad\x80\x0e\xcf\x87\x58\x93\xad\x43\x8c\xfc\x62\x86\xbe\x09\xf3\xa6\x06\x4a\xad\x0d\x92\x47\x3c\x34\x94\xc3\x20\x41\xf1\xdb\x87\xd6\x15\xdd\x0f\xc4\xdb\xcf\xe0\x97\x8c\x52\xff\x0d\xfc\x7a\xf5\x42\xf3\xce\x1f\xe0\xcb\xcb\x26\xb5\xc2\xc8\xeb\x6f\xc3\x88\xc2\x8b\x13\x09\x74\xf2\x0c\x95\xd2\x20\x2c\x6d\xf7\x28\x2a\x0e\xbc\x19\xdf\xd2\xd5\xfa\x7d\x62\xbc\x1a\x87\xa3\x2b\x5b\x62\x03\xd8\x80\xa4\x42\x34\xd4\x9b\xef\x26\x66\x2c\x4c\x9b\x5b\x1e\x2b\x6e\x19\x70\xd7\xaf\x68\xf7\x49\x41\xf6\x0d\x63\x12\x07\x48\x79\xa7\xbc\xa0\xf5\x0d\xd8\xbe\x60\x7a\x0a\xb4\xa5\xf9\xf5\x86\x2c\x33\xda\x64\x1a\x82\x99\x8e\x9e\xa1\x99\x90\xa5\x46\x21\x32\xef\xf0\x43\xe8\xb2\x32\xed\x0f\xed\x75\x74\x7d\xf3\x54\x60\xab\x01\x99\x43\xad\xe3\x45\xfd\xf7\x66\x0c\x8a\xc7\xb4\xd5\x24\xc5\x19\x05\x47\x8a\x5b\xe2\xf5\xcd\x06\xc6\x6f\xf1\x38\x72\x19\x64\xf1\xec\x77\x0c\xab\x2a\x73\xff\x10\xb8\x41\xfe\x81\x09\x79\x11\x15\xc6\x18\x57\x3c\x6e\xc3\x1b\x98\xb4\xc8\x0a\xcb\x0c\x9c\x75\x8a\x5e\x9b\x28\x15\x86\xb0\xae\x6d\x0c\xd4\x12\x90\x18\xf7\x03\xd2\xd7\xe0\x2a\x0e\xc1\x59\x29\x81\xdd\x13\x12\x28\x5c\x0f\xbc\x93\xe6\xab\x27\xed\x9b\x01\x84\x43\x4e\x70\xc8\x03\xd9\x5c\xcb\x59\x0e\xbc\x51\xbb\xfd\xa1\x95\xec\x8e\xdd\x77\x05\xa2\xc1\x90\xd2\xb1\x99\x2f\xe3\x5e\xbf\xfd\xe6\x77\x63\x1f\xd1\x8a\x78\xd4\x3e\x40\x41\xbf\x80\x01\xe8\xe1\x4f\x31\xab\x5b\x61\xfc\x99\x5d\x0a\xa4\xfb\x1d\xc7\x13\xb3\x8f\x17\xf0\x09\x5e\x31\xc3\x34\xff\x03\x3e\x10\x0b\x8c\xf5\x47\xa0\x3c\xd9\x03\xac\xf0\xb2\x39\x9d\x9a\x58\xfe\x6a\x4a\x64\x33\x39\x5b\xd2\x3f\xe8\x47\x00\x36\x3c\xcf\x77\x35\xee\xe9\x24\x90\x22\xc5\xc7\x3c\xa9\xb3\xd6\x2e\x24\x29\x6c\xef\xe8\x51\x76\x7f\x6f\xe5\x07\x00\x43\xd7\x5f\x3e\xb4\x22\xab\xc4\x5b\xa4\xb8\x5d\xa4\x97\x45\x7b\x1b\x88\x54\x06\x8d\xd0\x05\x84\x42\x47\xd9\xda\x43\x02\xd1\x55\x6b\x53\xa3\xa3\xce\x0f\x2d\xd7\xd0\x75\xae\x5e\xd9\xb7\x32\xc5\xe0\x21\x6a\x12\x50\x93\x4f\x61\x68\xe9\xd8\x8c\x5a\xa8\xdb\x14\x34\xf6\x09\xec\x07\x11\x1f\x92\x2a\x33\x95\xbc\x28\x2d\x7b\xa7\xbe\x0c\x9f\xd2\x4c\x9e\xc5\x2d\xe3\x2e\xe6\xb0\xa1\xe4\xc1\xc6\x38\x03\xb2\xae\xc0\x88\xd8\x07\x09\x06\x7e\x1d\xb5\x64\x60\xfc\xe6\xde\x84\xe4\xb4\x11\x11\xd3\x13\xd2\x60\xb4\x7f\x43\xb5\xaf\xf8\xf1\x6f\x34\x32\x49\xc0\x84\xea\x90\xec\xf7\x5f\x51\x2e\x82\x16\xca\x99\x16\xf2\x25\x57\xf8\x8a\x1c\x00\x5f\x13\x62\xf6\x46\xf4\x3e\x83\x40\xc5\x7d\x44\x37\xc7\xcf\x3a\xcf\x0d\xcc\x7f\xcf\x1e\xce\xb8\xb3\x87\xb7\x7d\x17\x82\x45\x2e\x05\xbb\xda\x73\xe0\xfb\x1e\xf2\x73\xcf\x54\x98\xaa\xe6\xa8\x75\x35\xf4\x0e\xb1\x57\x34\xee\x7c\x0e\x6a\x06\x9b\xe6\xcb\x6b\xa4\xbf\x95\xf3\x16\x9d\x67\xf8\x63\x37\xed\xd3\x43\x2a\x98\x81\x1f\xd0\x54\x0c\xea\xff\xbc\x8e\x1e\x3d\xb3\x77\x68\xd7\x28\xd6\x83\xf0\xa5\x18\x54\x21\xc6\xd6\xb8\x22\x83\xcf\xef\x5b\xcd\x4e\xd8\xb9\x1d\x38\x94\xd5\xf0\x9b\x21\x12\x0e\x2a\x98\x12\x99\x45\xfa\xe2\xee\xa3\xff\x36\x50\x56\x68\x86\x15\x20\x6d\xfd\xfc\x67\xb2\x14\x7e\xd5\x6c\x77\x50\xd5\x1b\x0e\x9d\x33\x7d\xd5\xc2\x98\x57\x18\xfa\xfa\x20\x87\xe3\x9b\x9d\x17\x86\xef\xf6\x5b\xb0\x42\x8d\x07\x52\x50\xd0\x8e\x76\x13\x3a\x38\x7b\xcd\xf6\xbf\x03\xd0\x6e\x9e\x7d\x38\xc4\x48\xfa\x98\x21\x72\x13\x49\x4b\xcc\x30\xff\x2a\x8e\x89\xcd\xc0\x17\x59\x5f\xa1\x6b\x13\x94\x7b\x40\xe8\xbe\x6c\x8e\xd0\x8b\xc2\x02\x73\x7b\x1f\xed\xbb\x24\x01\xda\xf9\x16\x53\x1e\x40\xb0\xc9\xf6\xb4\x85\xe9\x04\xf6\x70\xab\x65\x93\x4c\xfc\xf3\xef\x5f\xbc\x76\xf3\x1d\x6e\x36\x78\xda\x7e\x4b\xb6\xe8\xf3\xb0\x45\x26\x24\x80\x38\xaf\x5b\x88\x39\x61\x65\x81\xc6\x08\xbf\xb7\xa6\xaf\xec\x4f\x41\xeb\xbb\x56\xa6\x3d\x67\x86\x47\xc8\x83\x3e\x45\x5b\x36\xe8\x1d\x52\x4c\x2d\x8c\xe2\xd5\xce\xda\xf9\x28\x5e\xe9\x4e\x73\x37\x23\x55\xb9\xf4\x05\x0b\x10\xa9\xf0\xef\xde\x78\x45\x91\xbb\xda\x99\x11\xba\xab\xfd\x8b\x19\xba\xab\x7d\x34\x3e\x31\x33\x03\x50\xbc\xae\xdd\xc1\x15\xa8\xf1\xdf\xcd\x31\x0d\xa0\x8a\xcc\xf5\x0a\x1d\x8b\x9e\xb5\x0d\x57\xb1\xaf\xea\x59\x34\xa2\x64\xbb\xbb\x33\x54\x74\x85\x88\x49\x51\xcb\xf9\x26\x44\x12\xe1\xf6\xb5\xaa\x82\xee\x44\xcf\x10\xb5\x3d\xff\xe0\x62\xcf\x42\x77\x22\xe3\xee\x4f\x20\x2c\xc3\x1b\x69\xb3\x0d\x57\xfe\x45\x0d\x51\xf1\x2c\xf7\x36\xd2\x4b\x78\x82\x57\x14\x98\xcf\x5d\x08\x7f\x07\xce\x78\xfb\xcd\xe7\xd6\xa3\xf4\x44\xbe\x87\xa7\xb4\xc9\xf0\x10\x76\x54\xab\xce\x35\xba\x14\x1e\xcb\xe7\x50\x6c\x25\x18\x4e\xb5\x8f\x8e\xc5\xfb\xf7\xe2\xd0\x1d\x68\xf7\x79\x2b\x3f\xc6\xae\x17\xec\xb4\x7f\xc1\x20\x77\xa4\x6e\xfa\x2b\x1c\x07\xbd\x78\xa7\x8d\x71\xc7\x4e\x9e\x1f\xfe\x5f\xca\x3a\xe0\x7d\xd3\x6a\x0f\x21\x9b\xe4\xff\xdb\xe9\x06\xbc\xd9\x4e\xfb\xf4\xd4\xdb\x6b\xef\x1c\x3c\x15\x08\x66\xa7\x8d\x02\xc5\xa6\x60\x4c\x76\x29\x68\x6c\x87\xce\x59\x1f\xf3\xfd\xee\x78\xa3\x56\x53\x3c\x27\xed\xfd\x49\x1b\xd4\x2b\x49\xdb\xbb\x6a\xb5\xdf\x1c\x88\x89\x1d\x51\x07\x1f\x3a\xf7\xb6\x6f\xee\x7e\xd3\x82\xf6\x3f\xb4\xbc\xb3\x36\x24\x8b\xeb\x78\xb3\x16\xa4\x9b\xf2\x9e\xb6\x04\x95\x7e\x46\xc6\x7d\x88\xd5\x28\x60\x09\x24\xd5\x6c\xf6\x9f\xb6\x3c\x71\xd5\xdf\x6c\xb6\x3c\x50\x09\x36\xbd\xb4\xd5\xec\xbc\xc2\x98\xa0\xfb\x1e\x90\x2d\xed\x0e\x22\x1c\x80\x65\x13\xf4\x69\x34\xbf\xa7\xd2\x8a\xb0\xd3\x6c\xfe\xec\xbd\x55\x75\xfb\x64\x51\xe8\xa3\xdc\xd7\x03\x17\xea\xdb\xd6\xce\x21\xbc\xb8\x47\xde\x3b\xef\xa0\xd9\xc6\x40\x4f\x20\x0e\x04\x89\x83\x0f\x67\xb7\x87\x58\x0f\xb0\x19\x26\x88\x9b\xb4\xdb\xc8\xfc\x50\x96\xc6\x3d\xb1\xac\x6f\x5b\xc9\xce\x81\xf7\x2d\xbe\xca\x5e\xbf\xd9\xd9\x43\x8f\xf2\x9f\xbd\x2b\xfa\xa6\xa6\xf1\x1b\xda\x06\x25\x68\x44\x3a\xdb\xf1\x00\x5d\xed\x45\x6d\x1f\x14\x80\x07\x53\x6a\x78\x86\x89\x4a\xc1\x1c\x7b\xc7\x13\x68\x7b\x77\xb3\xf5\x1d\xb0\x1c\x87\xcd\xce\x1e\x50\xad\xd2\xc2\x78\xc7\x3b\x6b\xb6\x3b\xd7\xb1\x16\xf8\xec\xc7\x10\x38\xe2\xe4\xd6\x08\x76\xb0\x73\xea\xbd\x69\x76\xf6\x9f\xb6\xcc\x09\x80\x4b\xf5\x8b\x7f\x7b\x27\xcd\xdd\xfd\x00\xdb\x67\xc8\x77\xdd\xb4\x6a\x2d\xd3\xeb\x5a\x20\xd1\x97\x89\xb8\xc4\x7b\xfb\xbb\xe0\x6d\x7b\xbb\x63\x7a\x74\x7f\x0f\x19\xc5\x77\x9f\x23\x41\xdd\x8e\x03\x63\x6a\xcf\x89\x5d\x73\x7d\xc0\xcf\x9a\x3b\x90\x5b\xa2\xd3\x79\x8e\xb6\xbc\xdf\x58\x15\x5e\x78\xef\xbc\xdd\xe6\xf5\xce\x11\x20\x8a\x83\x3d\xef\x6d\x5b\x80\x06\xff\x3e\x6b\x1f\x9f\xea\xbf\x9b\x48\x26\x1f\xa0\x5f\x0b\x08\xa1\x90\x2f\x17\x5c\xf8\xac\xd5\x94\x04\x11\x88\x2d\x50\x96\x06\x41\xcd\x31\xbd\xeb\x00\x4e\xe4\x99\xd8\x2a\xf4\xd0\xff\x15\x1e\xf5\x9b\xd6\x0f\x62\x37\x9b\x20\x17\x6e\x77\xbe\xc7\x53\x8f\x72\x6d\x94\xbb\xfe\xd6\xf6\xf6\x04\x00\xa1\xe7\x57\x1f\xda\xd0\xf5\x7e\xd0\xf6\x80\x6a\x12\xbd\xbe\x7a\xd6\xba\x81\x2c\xff\x02\xee\xf8\xf1\xb0\xf9\xea\x57\x71\xfb\xf7\xdf\xc9\x2f\x67\xcd\x57\x7b\xf0\xe5\x67\xef\xc4\x3b\x68\x1e\x22\x81\xb1\x1b\xbd\xc0\xb8\x00\x62\x35\x87\xc8\x2f\x82\x02\xbc\x37\x03\x91\x22\x20\x4e\xb4\x07\xf6\xc9\xdd\x84\x3c\xb1\xd5\x97\xef\xdb\x9e\x00\xec\xb8\x7d\xdb\xc2\xa6\x6f\x8c\xa8\xd5\xbf\x20\xa8\x80\x88\x85\x5e\x10\x87\xfd\x86\x4f\x46\x04\x5b\x77\x80\xb9\x4a\xa6\x70\x03\x62\x3c\x90\x99\x58\xb4\x00\x70\x4c\x10\xde\x55\xd9\x01\xa0\xe5\x11\xa0\x89\xce\xb0\xb6\xa7\xf6\xe2\x60\x44\x1a\xfb\x36\x38\xde\x1c\x36\x77\x5e\x40\x26\x21\x99\xfd\x87\xf2\xec\xa0\x6b\xfa\xbc\xd5\xf4\xde\x88\x53\x9e\xb4\xbe\x11\x28\xae\xf7\xda\x3b\x68\xf6\xc5\x2b\x73\xd8\x6c\x8b\xcd\x78\x85\xd9\xe3\x27\xad\xa7\x88\x6c\xde\x4d\x95\xdc\xb3\xfd\x7b\x3b\x10\x0c\xc5\xce\x1c\x43\x95\x00\xdb\xff\x02\x7e\xec\xfe\x0e\x77\xf3\x25\xd8\xef\xfc\x0c\x09\xef\xf7\x92\xd6\x07\x31\xb1\x9f\x61\xfa\x27\xb5\x56\x0c\x28\xf5\xcd\xb7\xb0\xdc\x01\xae\x03\xd6\xf4\x4e\x02\x78\xaf\xd9\xf9\x35\xda\x41\x0a\x41\xe0\xe2\x9e\x38\xa2\x7e\xd6\x5a\xc7\x43\x55\x6b\xe3\xb7\x93\x66\xbf\x86\x19\x3c\xcf\xe0\x90\x8e\x05\x22\x14\x17\x77\x0e\xcb\xfe\x19\x1f\x20\x71\xf4\xaf\x31\x3b\xda\xad\x58\xd6\x8e\x78\x5c\x3a\xfb\x6d\x12\xb8\xf6\x55\xe0\xdb\x31\x58\xc0\x40\xfe\xf7\xdd\xfd\x5d\xef\x4d\xf3\xa5\xa8\xb9\xb7\x8f\x8e\x26\xb5\x17\x88\x0b\xdf\xa0\xe3\xad\x00\x53\x48\x8e\x35\xaf\xbe\x83\x7f\xf6\x31\xce\x38\xc5\xc5\xfc\x00\xe1\x4b\xc0\x28\xe6\xc5\x81\x77\xd8\xcc\x5a\xbf\x7a\x07\xed\x23\x70\x49\x97\x17\x2a\x69\x6d\xa2\xaf\xf1\xf7\x2f\xf0\x35\x04\xec\x7f\x20\xb0\x7d\x13\xe8\xde\x11\xcc\x12\x14\x0f\xef\x90\x8a\x41\x33\xe3\x3e\x02\xe2\x3b\x7a\x2c\x10\x1d\x73\x79\x3a\x30\xdc\x12\xde\x24\x34\x79\xed\x79\xbb\x02\x30\x68\xa1\xb3\xd9\x01\x6d\xd7\xf7\xe2\x08\x82\x53\x15\xc4\x50\xea\x20\x67\x86\xc9\x4e\xe7\xd4\xfa\x77\x71\x39\xcf\x9a\x7b\x90\xab\xea\x64\x84\xd6\xfd\xe3\x17\x38\xc9\x33\xa8\xda\x23\x1f\x57\xa4\x6d\x82\x17\x82\x2c\x02\xed\xce\xee\x0b\x2d\x1b\xe9\xb7\x61\x02\xed\x01\x84\xfb\xca\x76\xc5\xa3\xb0\x87\x61\xa6\x66\x82\xf4\x78\x73\xd5\x7a\xbe\xab\xc0\xf2\x7b\xfb\x57\x8d\x74\x76\x9e\x21\x88\x48\xaf\xfe\x16\x34\x8e\x62\xd1\xbf\x22\x83\xdd\x17\xf4\x4b\x1f\x3d\xea\x29\x8a\x15\x86\xd1\x02\x31\x6b\xfb\x60\x4a\xae\x89\xe2\xf1\xfa\x96\x9a\x36\x49\xad\xf9\xb4\x8d\x56\x45\x3b\x21\x78\x91\xb7\x39\x5a\x97\xef\x0c\xc5\x33\x73\xd8\xdc\x1b\x22\x9a\xfd\x19\x91\x2c\x6f\xb6\x77\xf1\x91\x07\xaf\xe2\xc3\x66\x1b\x90\xf8\xab\x8e\xe0\x3e\x77\x3b\x57\x28\xd7\x7d\xf5\xc2\x3b\xf1\x0e\x9b\x6f\x3e\x80\x65\xc8\xa8\xd5\x6c\x37\x9b\xde\x6f\xad\xe6\xbb\xc3\x18\xf5\x4c\xfe\x14\x05\x19\x82\x3c\x6d\xdf\xb6\x83\x16\x6e\x72\xd4\xf2\xde\x79\x4f\x76\xda\x47\x4d\x6f\xfd\x65\xf3\xaa\x03\x73\xd9\x6b\x6e\xee\x0c\x31\xc8\x94\xb8\xb5\xb3\x1d\x8c\x6e\xb7\xd3\x54\xce\xc2\xbb\xc7\x1a\xca\xfc\x99\x65\x00\x2b\x88\xe7\x37\x82\xd6\x7c\xdd\xfc\xe6\x57\xd4\xb0\x50\xc4\xca\xdf\x60\x26\x9d\xac\x15\x11\xdf\xfa\x3d\x94\xab\xd0\x91\x23\x14\xa7\x8f\x5a\xbf\x51\x88\xa9\x67\xb1\xa5\x09\x7b\x02\x0f\xee\x0f\x1d\x7c\x42\x40\x99\xf8\x6b\xda\x41\x9e\xea\xa0\xd9\x79\x7d\x2b\x6e\xf8\x6f\xed\x53\xef\xb0\x39\xde\x69\x8e\xd0\x13\x06\x0d\xd7\x47\x2d\x71\x36\xfa\x9b\x2d\x60\x27\x7d\x49\x05\xb6\x9b\xcd\x36\xf8\xe1\xb4\x9e\xc7\x44\xb6\x8a\x0d\xd9\xdf\xc7\xd7\xf6\xad\x4c\x6d\x18\x60\xc0\x7e\xe0\x55\xd1\xe3\xf6\xf0\x5b\x8e\xd8\xb5\x8d\x66\xd0\x0a\x58\x6d\x48\xe2\x87\x22\x4b\x64\x71\x4e\x60\xf6\x18\x84\xe1\xe4\x87\x37\xe2\x0c\xd7\x54\xaa\xa4\xce\x4b\xe0\x38\xbe\x7f\x23\x4b\x5f\xa1\x92\xa0\x7d\xfa\x8d\xf2\xad\x14\xef\xe5\xb1\xb8\x32\x51\x5b\x36\x6b\xbf\xfc\x01\xcf\xe1\x21\x45\x16\x38\xd9\x45\x3b\x76\x94\x18\xbc\x4b\xe8\xf8\xbd\x11\xdf\x12\x14\xae\x3e\xdd\x51\x01\x7f\x7e\x5d\xdf\xa1\x5c\xd0\x90\x5d\x5c\x76\xba\x8f\x20\x38\x90\x51\xce\xd6\x31\x4c\xd2\x9e\x77\xd6\xdc\x4d\x50\xe2\xf0\x1d\x9a\x6c\xff\x5b\xf4\xb2\x73\xad\x62\xab\xe5\x41\x86\xa9\xdb\xf6\x76\x4d\x3a\x03\x36\x4b\x5a\xac\xa0\x1c\x76\x0f\x8f\xe1\x41\x1b\x18\x5d\x7c\xdf\x76\x77\x25\xa5\x40\xee\x94\x7b\xdf\xb5\xd1\x94\xfe\xc3\xce\xa9\xd7\x6e\x5e\xed\x74\x6e\x51\x30\x76\x10\x84\xad\x55\x6f\x75\x18\x84\x7c\xb5\xbe\x9a\x66\x7e\x16\xf4\x6b\x1f\xd2\xda\xf7\xd5\x3e\xef\x0f\x9e\xf5\x9f\xf4\xab\xfd\xf1\x2c\xba\xaa\x7e\x48\x57\xbd\xd5\x34\x9e\x25\x7d\x9e\xb6\xe3\x28\xe3\x51\xb6\x5a\x3f\x5f\xbd\xf6\x13\xd6\x8f\x13\xce\x1a\x6c\x12\x0f\x66\x21\xaf\xf2\xdb\x69\x9c\x64\x29\x6b\xb0\x8f\xec\x9a\x27\x69\x10\x47\x75\x56\x7a\x5a\xfd\xb6\xba\xb9\x59\x62\x77\x5b\xdd\x28\x18\xb2\x72\x36\x9f\xf2\x78\xc8\x2e\x2f\x39\x6b\x34\x58\x29\x9a\x4d\x7a\x3c\x29\x55\xf0\x03\xf4\xb8\xc5\x6a\x35\xc6\xd3\x30\x88\xb2\x8d\x41\x90\xfa\xbd\x90\x6f\x84\x41\xc4\x59\x14\x6f\xcc\xa2\x01\x1f\x76\xa3\x55\x6f\xb5\x56\x63\xe3\x2c\x9b\xa6\xf5\x5a\x6d\x14\x64\xe3\x59\xaf\xda\x8f\x27\xb5\xdf\xc3\x38\x48\xe2\xfe\x55\x4d\x74\xb4\xf1\x21\xad\x05\x69\x3a\xe3\x69\xed\xfb\x6f\xff\x01\x7f\xf5\xe3\xc9\x84\x47\xd9\xc6\xe6\xe6\xf3\xef\x9e\xff\xf0\xe4\xe9\xf7\xdd\x48\x2c\x64\x14\xc6\x3d\x3f\x2c\x5a\x0a\x4d\xf7\x26\x88\x06\xf1\x0d\x5b\x69\xb0\x12\x4c\x21\x88\xf8\xa0\xc4\xd6\xd6\xa8\xa0\x7a\xe0\x67\x63\xb1\x1e\xf1\x6f\x37\x62\x6c\x5b\xb6\xa8\xcb\x1e\x52\x1e\x0e\x0b\xda\x8b\xcf\x56\x6b\xb6\x0d\xdf\x44\x27\x79\x30\x44\xfc\x36\x53\xb0\x88\xf8\xcd\xc6\x70\x16\xf5\x45\xd5\x3a\x7b\x31\x8b\xfa\x59\x10\x47\xe5\x52\xc2\xb3\x59\x12\xb1\x6c\x1c\xa4\xa5\x4a\xb9\xe2\xc2\x7d\xe4\xc2\x7d\xc4\x1a\x04\x80\x87\x41\x5e\x00\xcc\x8f\x0e\x7b\x1f\x78\x3f\x63\x0d\x96\xf0\xdf\x66\x41\xc2\xcb\xa5\x6a\xed\xd2\x8f\x36\x62\xf8\x5e\x12\xc3\x8a\x8a\x7b\x9d\xef\x2f\x77\x0e\x0f\x2e\x77\x3a\x2f\xf6\x5e\x77\x9c\xea\x01\xff\x7e\x63\x10\x4f\x36\x10\x20\xaa\x4d\x16\x1f\x25\xc1\x24\xc8\x82\x6b\xee\x34\xc8\xe2\x8d\xa9\x2c\x52\xd5\x07\x47\xac\xc1\x70\x3a\x55\xec\xe9\x28\x89\xa7\x3c\xc9\xe6\x5b\xdd\xa8\x1b\xd1\x5e\x56\x87\x4e\x5f\x03\x9e\xf6\x93\x60\x9a\xc5\x49\x5a\xaa\xb0\xed\xe2\x1e\x58\x9d\x0d\x09\xb0\xcc\x2e\x29\x1f\x7a\xec\xc8\x63\xcd\x2c\x4b\x82\xde\x2c\xe3\x69\x85\x7d\x14\x3b\x21\x21\x53\x3e\x14\xf3\x63\x4c\x4c\xce\x58\x50\xf9\xc8\x63\x59\x32\xe3\x58\xa8\x2a\x1b\xdd\x40\x81\xd8\x31\x1b\x74\x15\x96\x25\x73\x1c\x82\x31\xda\xe2\xc1\x51\x7e\x16\xd0\xfc\x8e\xf5\xfd\xac\x3f\x66\x65\x5e\x61\x1f\x59\xed\x31\xe3\x93\x69\x36\x67\x8f\x6b\xec\x4e\xf6\x5e\x1a\xf1\xac\xc4\x82\xc8\x68\xcb\x3e\x7d\x62\xa5\x34\xf7\xb9\xc2\xb2\x71\x12\xdf\xb0\xd3\xf9\x94\x77\x92\x24\x4e\xca\xa5\x66\xbf\xcf\xd3\x34\x4e\x52\x16\xc5\x19\x4b\x67\x53\x01\x62\x3e\x58\x29\xe9\xd9\x97\xae\xfd\x70\xc6\x73\x5d\x1d\x9e\x1f\x5d\xb0\x86\xf1\xa9\x0a\xf5\xa0\x19\xad\xea\x70\xab\x1b\x09\x6c\x81\x97\xfc\x74\xec\x47\x57\xa5\x54\x1c\x24\x36\x8c\x13\x36\x0e\x52\xb1\x25\xd1\xdc\xd9\x8f\x6e\x94\xbb\xbb\x2b\xe6\x76\x0f\xfd\x20\x14\xf7\x41\x6d\x67\x99\x36\x4c\x8e\x5a\xb4\xfd\xe5\x8f\x77\x1e\x2b\xf9\x25\x8f\x7d\x64\x23\x9e\x19\x87\x41\xb4\x96\x4d\xbf\xdb\x62\x77\xec\xae\x52\xf5\xc5\xfd\xfe\x4e\xcc\xbe\xb2\xa5\x6e\xca\xd8\x4f\x0f\x6f\x22\x75\x9e\x1a\xec\xe3\x5d\xd5\xfe\xb6\x55\x30\x75\x3d\x4e\x90\x79\xec\x8a\xcf\xed\xc9\xda\x1d\x54\xfb\x7e\x18\xaa\x8a\x1a\x7a\xc1\x44\x74\xc7\xf0\x46\xbe\x0d\xb2\x71\x3c\xcb\xa8\x4d\xc0\xd3\xfd\x38\x4e\x39\x1b\x26\xf1\x84\x75\x57\xab\xb5\x65\xb5\xba\xab\x5b\xf2\x1e\x09\xa8\xfb\xb3\x30\xd3\x33\xbc\x5c\xd0\xb2\x8c\x6f\x86\xc7\xf8\x6d\x3f\x9c\x0d\xf8\x80\x96\x20\x0e\x07\x16\x09\x44\x14\xcd\xc2\xb0\x22\x97\xf5\xf1\x0e\xce\x01\xe0\x00\x3f\x19\x71\x81\x5e\x96\xcd\x2b\x3f\x84\x6a\x7f\xc5\xe7\x1e\x0b\x00\x01\xe0\x90\xb4\xbf\x23\x9e\x19\x90\x3b\x99\x4f\x7a\x71\x28\xaf\x2e\xb6\xc4\x3e\xb1\xe4\x15\x9f\xa7\x1a\xb9\x14\xb6\xa5\x39\x54\x68\x28\x06\x87\xb4\x1c\xb0\x06\x7b\xb2\xc5\x02\xf6\x63\xae\xbf\x6a\xc8\xa3\x51\x36\xde\x62\xc1\xfa\xba\x1a\x98\x89\x09\xb3\x46\xae\xf2\x79\x70\xb1\x25\x6b\x88\x55\xc8\x85\x56\x83\x68\xc0\x6f\x0f\x87\x65\x38\x1a\x3f\x35\xd8\x93\x0a\xeb\xc7\x51\x16\x44\x74\x97\x64\x83\x15\x9a\xfb\x34\x89\xb3\x58\xbc\x01\xe2\x2f\x98\xff\x5e\xda\x89\x66\x13\x9e\x08\x2c\x8f\x27\x48\x42\x53\xf4\x59\xd0\x1d\x6e\xc9\xf9\x15\x9f\x5f\xa8\x99\xc2\x2f\xaa\x01\xa8\xe5\x0e\xc1\x20\xdf\x20\x68\x22\x4e\xe4\xaa\xb7\xfa\xb9\x07\x68\xc1\x16\x7f\xd1\x29\x32\xbe\x61\x2b\x7b\x67\xaf\xf8\xdc\xdc\xc8\x82\x23\x54\xbc\xab\x0b\xf7\xd3\xdc\x4d\x7b\x1f\x3f\x73\x17\x97\x03\x7d\x09\xb4\x2d\xb2\xc6\x44\x84\xf8\x51\xbd\x9e\x44\xc3\x99\x35\xc4\x27\x5d\x9e\xdd\xba\xc5\xd9\xad\x2a\x1d\x07\x03\xb7\xb5\xf8\xa4\xcb\xfd\xd4\x2d\xf6\x53\x55\x7a\x74\x7c\x78\x7a\x78\xfa\xee\x48\xd0\x05\x25\x75\x42\x4b\x00\x72\x51\xfe\x88\x8e\x8c\x89\x0f\x45\x0d\x8f\x45\xfe\x84\x7b\x04\x0e\x02\x3a\x50\x1b\x27\x97\x2f\x0e\x8f\xdb\x9d\x1d\xa2\xdc\xd8\x9a\xec\xa3\xfa\x62\xcb\xa8\xb4\xbb\x7f\xd8\x6a\xee\xe7\x2b\xed\x9a\x95\x4e\x4e\x9b\xa7\x7b\xed\x7c\xa5\x13\xb3\x12\x2c\x21\x5f\xe7\xc8\xac\xd3\xda\x7b\x5d\x30\xa1\x96\x59\xe5\xed\x71\xf3\x28\x5f\xe5\xad\xaa\xa2\x5f\x06\x3d\xfb\x6d\xdc\xbb\x3a\xfc\x73\x2e\x20\x72\x21\x5e\xf0\xb2\xf1\x53\x1c\xfc\x8a\xd9\xc9\x91\x00\x32\x6b\xc8\xfe\xce\xd5\x0e\x5c\xe4\xef\x8c\x39\x12\x9d\xa4\xba\x01\x17\xf9\x91\x86\xaa\xb3\xb2\xf5\xfb\xd3\x27\x31\x76\xd1\x00\x70\xaf\xe2\x9b\xc8\x63\xf1\x2c\xd3\xd4\x8e\x1c\xad\xc2\xe4\xbd\x86\x5d\xde\x52\xb7\x4f\xdc\xa9\x20\xb2\x37\x1d\x88\x64\x71\x65\xfc\x20\x4a\x45\x69\xe4\x0b\x2a\x0b\x8b\xe2\x9b\x48\x50\x01\xfa\x50\xac\xad\xc9\xd5\xa9\xbf\xf0\x66\xad\x34\x1a\x4c\xd1\xe5\xc6\x45\x15\x3d\xac\xad\x89\x53\x5c\x26\x88\x2d\xc0\x8e\x82\x6e\xc6\xb3\x8a\x13\x60\x71\xc2\xa6\x7e\x9a\xf2\x01\x4d\x65\x06\x6f\xd9\x4d\xc4\xb6\xad\x81\xeb\x05\x78\xb4\x56\x63\xd3\x84\x5f\xf3\x28\x93\x60\x9f\xc6\x61\x38\x83\xe3\x2f\x00\x21\xa0\x92\x4e\xfd\x3e\x4f\xb1\xbe\xdc\x4b\xc2\x11\x7a\xdb\xc4\x22\x91\xea\xb7\xd7\xca\x4a\xf2\x3a\x95\x04\xb7\xa1\x27\xa0\xc6\xef\x05\xd1\x80\x65\xc1\x84\x27\x29\xcb\x62\x39\x0d\x31\xb8\x78\x28\x90\x68\xa0\xf5\x0a\x40\xf0\xdb\x0c\x9b\xd6\xd5\x71\x5f\x5b\xa3\xd5\xf6\xb3\xdb\x72\x3c\xcb\x3c\xea\xa4\xa2\xc6\xb8\x49\xfc\xa9\xec\xb9\x1f\x47\x69\x96\xcc\xfa\x82\x18\x87\x61\x24\x00\xfa\x63\x3f\x1a\x71\x96\x8d\xf9\x44\xec\x6e\x18\xf4\x12\x3f\x99\x1b\x83\xc1\xc5\x71\x76\xb3\xd1\x00\x78\x6f\x33\x83\xd8\x6b\x1b\x4f\xad\x38\x84\x2f\x2c\xa4\xe2\x7b\xac\xe7\xb1\xbe\x51\x07\xf7\x5f\xf0\x50\x2c\x88\xd2\xcc\x8f\xfa\x02\x8e\x6d\xab\x06\x63\xe9\x4d\x00\x64\xb6\x9f\x8c\x66\x82\xaf\x94\x8f\x81\x53\x8d\xb1\xbe\x9f\x72\xf6\xa4\x2e\x31\x75\xc4\x6f\x58\xbb\x5c\xd9\x2a\xa8\xb4\xe9\x54\xf2\x0b\x6b\x3d\x75\x6b\x79\xac\x67\x57\xbc\xcb\x57\x10\x2b\x34\xea\xa8\x1a\xed\xaa\x3f\x9d\x86\x73\x58\xad\xc7\xd4\x5a\x74\xdd\x3b\xf5\xd7\x0b\xe3\x42\xb3\x06\x6b\xbb\xf7\xdb\x60\x4e\x5e\xe8\xe3\x3c\xf1\xaf\x38\x43\x11\x83\x94\x0c\xc8\x6d\x26\x9c\xcf\x26\x3c\x1b\xc7\x03\x3a\xd1\x77\x15\x71\x64\x2a\xb8\xc3\x88\x61\xf5\x59\x86\xab\xe4\x9c\x61\x71\xc8\x24\x03\x0c\xb4\x0c\xe0\x16\xd1\x81\x44\x31\xe6\x15\x85\x51\xe5\x88\xe2\x7c\x0b\x8c\x59\xfd\x67\xfb\xf0\xf5\xc9\xe9\xf1\x59\xfb\xf4\xf0\xf8\x9f\x55\x2a\xad\xfe\xf3\x75\xf3\xa0\xf3\x4f\x8d\x11\xe4\x84\x8c\x1d\x96\xa8\xa1\x7a\x1d\x24\xd9\xcc\x0f\x01\x09\xbb\xdf\x00\x13\x57\xe4\x1d\xd5\xb3\xfa\xdc\x79\x69\x3a\xce\x9c\x19\x9d\x56\xfb\xf5\x38\x16\x40\x53\x38\x7f\x6d\x8d\xad\xc8\x1f\x30\x8d\x0a\x3c\xde\x65\xf9\xcd\x23\xbc\x3c\xcb\x2a\x0e\x3d\x27\x76\xbf\x56\xc3\xb7\xa9\x17\x64\x13\x7f\xda\x8d\xd4\xab\xca\x1a\x6c\x73\x0b\x57\x31\x8c\x93\xbe\xc0\x77\xea\x31\x65\x0d\xf6\x94\xca\xf0\x9e\xeb\xb2\x13\xd6\x60\xdf\x50\x19\x1e\x0c\x5d\x26\x1e\xc2\xef\xb7\x24\x22\x8c\xb3\x58\x17\xb5\xc4\x70\xdf\x6e\x29\x1c\xa5\x4b\xde\xb2\x06\x7b\xf6\x74\x4b\x61\x16\x5d\x72\xc6\x1a\xec\xdb\x6f\xb0\x24\xf5\x87\x5c\x97\x1c\x8b\xde\x9e\x7e\x0f\x52\x8f\x84\x0b\x3c\x6b\x6c\x00\x9c\xcf\xf7\x84\x70\xde\x17\xb0\x68\xd4\x8b\xe6\xf4\x40\x0e\x61\x92\x3a\x48\xd7\x6e\x0c\xa6\x9a\x98\x4a\xb8\x9f\xf1\x1d\x9e\xf6\x9d\xaa\x92\x28\xdf\x18\xf0\xb4\x0f\xd5\x73\xe3\x2d\x93\x5d\x68\x4c\x86\x63\xd2\x66\x02\x6b\x6d\x73\x8e\x83\xa3\xea\xd0\xae\xa4\xe7\x54\xde\x94\x4d\x80\x89\x34\x65\x1f\x8b\xfb\xc5\x02\x79\xb0\x73\xcc\x3c\x16\x6b\x9e\x74\x29\xa7\x6b\x4f\x95\xee\x7b\x20\xae\x7b\x83\x95\x48\xb0\xc4\xb6\xc5\x97\x15\x22\xfa\xb5\x7c\x4d\x56\x53\x68\xc1\x92\x22\x64\x31\x03\x5a\x9b\x0f\x98\x5c\x49\x16\x93\x08\xeb\x26\xc8\xc6\x6c\xe8\x87\x61\xcf\xef\x5f\xe1\x0b\x1b\x47\x1b\x7e\x92\xf8\xf3\x8d\x30\xb8\xe2\xac\x73\xf2\x8c\xa5\x59\x12\x44\xa3\x94\x84\x5a\x85\xc2\xaf\xc0\x11\x7d\x11\x39\x91\xdb\x3a\x14\xfe\x15\xee\xf1\x62\x60\xd0\x90\x65\x6a\x2e\xca\x0d\x4e\x1f\xf8\x9a\x2c\x4f\xc9\xa7\x63\x3f\x11\x63\x95\x4b\x37\x57\x9a\xec\x9e\x05\xee\xa4\x66\xc1\x40\x95\x22\xf3\xb9\x80\x69\xa8\x62\x29\x55\x3d\x3b\xe9\x5c\x9e\xbc\x3b\x68\x1d\xee\x6b\x49\xa9\x6c\xee\x6c\x85\x45\xd0\xa7\x45\x92\x56\xbd\x76\x41\xe0\xd8\xab\x87\xb5\x19\x24\xae\xf9\xbb\x81\xd8\xca\x98\xcb\xda\x1a\xcd\xc2\x68\x61\x14\x6f\xcb\x39\xd6\x05\x24\x2a\xe5\x12\xfe\xac\x96\xd8\x3a\xd0\x56\x0a\xb0\x0a\x53\xa4\x55\x09\x5c\xf8\x57\xc3\x3c\x48\x8b\x4f\x42\x6a\x8a\x41\x1f\xb2\xcb\xc0\xaa\xcb\xde\x60\x73\x73\x42\xb7\x20\x63\xeb\xac\xc4\x02\x94\xb9\xf9\xf2\x6a\x49\x99\x1b\x41\x2a\x78\xd8\x5d\xe3\xb7\x5c\x52\x3b\x79\xb1\xe2\xca\x8a\x28\x2e\x17\x88\x12\xad\x6a\x59\x42\x57\xfd\xce\x95\x38\x5d\x06\xd1\x98\x27\x41\x66\xca\x98\x4a\xff\xea\xf9\x3d\x1e\xd6\x92\x59\x24\x08\xcb\xda\x98\x87\x53\x9e\xa4\x35\x9e\x4e\x6a\x56\x75\x71\x5a\xa8\x9f\x63\xee\xf7\x33\x6a\x9e\x88\xbf\x8d\xb2\x8f\xec\x38\x9e\x65\x3c\xf1\xd8\xe5\x25\xfe\xd5\x46\x4a\xd4\xc3\x02\x76\x67\x36\xdc\x48\xa0\x4a\x49\xcb\xb1\x1e\x2f\x28\x56\xdd\x23\x5e\x6c\x25\xf1\x4d\xca\x93\x97\x81\xd8\x79\x85\x2d\x5f\xfa\xe9\xd8\xf9\xb4\x1f\xf7\x7d\x80\xad\x1c\x77\x8c\xe5\x46\x9f\x47\x49\x3c\x15\xfb\x99\x52\x0d\x81\xf4\x37\xc4\xb5\x49\x8d\x4a\x37\x7e\x12\x05\xd1\x88\xaa\x64\x41\x34\xdf\xa0\x4f\x46\xa5\x4b\x7e\x9b\xf1\x68\x90\xde\x0f\x5a\xaa\x68\xb6\xbd\x5f\x1e\xb8\xac\xc3\x65\xad\x8d\x51\x02\x71\xdf\x03\x3f\xca\xcc\x85\xa8\x8f\x88\x11\x6a\x8f\x1f\x77\x23\xf6\x98\x9d\x8e\x39\x9b\xce\x7a\x61\xd0\x67\xcd\xa3\x3d\xc0\xc0\x3e\xfb\x11\x37\xf5\x27\x96\x8d\xfd\x8c\xcd\x52\x9e\xb2\x97\xa7\x07\xfb\xcf\x19\xc1\xb5\x2a\x9a\xd6\x24\x62\xa1\x6d\xc2\x36\x02\x25\xd4\x1e\xff\xe3\xf2\xf2\xe8\xec\xb8\x73\x79\x29\x6a\xe9\x93\x7f\x09\x87\xea\x51\x3b\x9e\x4c\xe3\x88\x47\xf2\x02\xda\x47\xb6\x6c\xf5\xe7\xb1\x5c\x23\x29\x15\x92\xdd\x5a\xf5\xcb\x96\x3c\xf1\x52\x90\xd5\xb6\x74\x10\x3e\x87\x5c\x70\xa7\x2e\xe7\x00\xf4\xb7\xb8\xab\x82\x6c\x6f\x8a\x37\xa8\x2c\x6a\x56\x3c\x76\x89\x32\xa5\x27\x5b\xf8\xd7\x8f\xd0\x03\xfe\xb0\x04\x89\xa2\xfd\xf9\x25\xbd\xc7\xaa\x7b\xfc\xa2\x29\x3b\xfc\x03\xe6\xc6\x1a\xb9\xf5\x01\x0d\x4d\x5c\x81\x5b\xe6\xb1\x73\xd1\xea\xa2\xda\x8f\xa3\xbe\x9f\x09\xde\x27\xad\x54\x04\x92\xa5\x85\xaa\x8e\xab\xb4\x55\xac\x51\x78\x99\xca\x58\x49\xdc\x02\xc5\x6b\x10\x6a\xb9\x54\x5d\xd1\x54\x01\x62\x53\x12\x5e\x58\xc0\xd6\x14\x31\xc1\x18\xab\x55\x13\x1e\x0d\xc4\x51\xd0\x7b\x84\x5f\xca\x2e\x1a\x83\xe5\x55\x71\x82\x9d\x90\x0b\x68\x95\xe5\xbe\x2b\xa0\xd2\x4a\xea\xcc\x5c\x97\x27\x4b\xfb\xe3\x20\x1c\x24\x3c\xa2\x62\x58\x51\x55\x7e\x94\x2c\x0d\x2e\x67\xcb\x92\xd8\x59\x2b\x11\x88\xbb\x8c\xb3\x71\x0e\x9a\x78\x1d\xa6\x49\xdc\xe7\x69\x5a\xe5\xd1\x75\xf5\xf5\xe1\x4e\xe7\xb2\xf3\xfa\xdf\x40\x06\x75\x57\xa7\x49\x3c\x98\xc1\x1a\xbb\xab\xb4\xba\x1c\x88\x08\xf1\x34\xe4\x92\x7a\x7e\xca\xc5\x63\x57\xd7\x58\xa9\x8a\x34\x0e\xad\x4a\xaf\x49\x57\x88\xe2\x01\xf7\xd4\x39\xee\xf3\x63\x3e\x4c\x78\x3a\x36\xab\xf4\xe2\x38\xa4\x2a\x23\x9e\x9d\xa5\x80\x96\x87\x41\x32\x01\xe4\x68\xd6\x14\xfb\xe2\x29\x69\xe9\x3e\x9c\x7e\x6b\x30\xd0\x50\x9a\x40\x5b\xb0\xef\xd5\xbe\x84\xd6\x4e\x30\x38\x88\x67\x91\x2d\x30\x54\xfb\xfd\x40\x08\xb2\x6d\x89\x83\xcb\x2b\xc6\x76\xca\x3d\x67\xdd\xd5\x1f\xad\x89\xfc\xc4\x82\x51\x14\x27\x3c\x65\xd9\x98\xcb\x83\x22\x06\x9b\x56\xd9\x69\x2c\x30\x17\xf3\x59\x7f\x96\x66\xf1\x84\x19\x9d\xb0\x75\xd6\x5d\x15\x85\xef\x9d\x07\x8d\xdd\xbd\x07\x91\x03\xf7\x07\x2c\x1e\x1a\xc5\x36\x8e\xf3\x53\x5d\xbf\x2a\xf6\xbd\xce\xae\xe3\x60\xc0\x9e\xa8\x73\x76\xf7\x25\x38\x96\xf4\xd9\x21\xbd\x66\xd5\xb1\x9f\x8e\x6d\x54\x2b\xde\xbe\xaf\x86\x67\x75\x67\x0f\x40\xb2\xba\xf2\xdf\x18\x76\x01\x86\x35\x08\x93\x2f\x46\xaf\x1a\xcc\xff\xab\x71\xab\x5e\xc6\xd7\x44\xac\x36\x70\xbe\x36\x56\x7d\x38\xca\x14\xf7\x52\x7c\x34\x8b\xe3\x88\x1f\x0e\xcb\xe7\xdd\x55\x51\xd8\xf3\xa3\x51\x77\x55\x60\x9a\x28\x4e\x43\x3f\x1d\xe3\x0f\xfa\xf3\xa2\x62\x42\xac\x68\xc7\xff\x7a\xac\xaa\x67\xf1\x97\xa1\x54\x03\x97\x3d\x10\x9f\x2a\x08\x04\xe9\x41\x3c\x08\x86\x01\x1f\x74\xae\xc5\xb1\x06\x79\xb5\xcd\xb5\xae\xac\xe0\xd7\xea\x84\x67\xfe\x2b\x3e\x17\x37\x18\x3f\xf8\x61\x66\xfd\xee\x67\x49\x68\x7d\x48\xc7\xc1\x50\x54\xa9\xe0\xb8\x4b\xb0\x38\xde\x3c\xc1\x31\xf8\x12\x16\x1b\xfe\x8d\x9f\x70\xf6\xa3\xff\x93\xc6\xdc\x88\xbb\xf7\x83\xe8\xea\x2b\x60\x6d\xd1\xcd\x03\xf0\xb5\xa8\x96\x43\x09\x39\x44\x58\x2c\x7b\xb6\xb0\x5d\x11\x96\x12\x9d\x2f\xc2\x4f\x63\x3f\x1a\x84\xbc\x1d\x06\xfd\x2b\xf3\xd0\x1a\x9f\x71\x63\x3c\x09\x31\x35\x49\x29\xf4\xa7\xe3\x19\x47\x50\xbb\xc2\xf2\xdf\x68\xc3\xd5\xb3\x03\x1c\x3c\x6e\x1e\x69\xb8\x8f\x50\x87\xc1\x07\x6c\x6d\x8d\xd5\x6a\x8c\x1a\x4a\xdd\x06\x1f\x48\x55\x38\xa9\x71\xa0\x6d\x6f\x96\x65\x71\x04\xa2\xac\x27\xa2\x5d\x59\xb4\xc4\xdb\x20\x6a\x24\xf3\x6c\x2c\xf6\xba\x37\xcb\x58\xc8\x87\x19\xeb\x8b\x2e\x49\x6c\x6e\x5e\x2c\xd2\x73\x11\x14\xed\x8f\x0d\xb8\x9d\x97\x60\x66\xb6\x5a\xa1\xd9\x85\x3c\x63\x3d\xa4\x30\x08\x50\xac\xbb\x8a\x0d\x1a\x97\xbd\xd0\x8f\xae\xba\xab\x8c\x67\xfd\x2a\x8d\xb5\xe0\xfc\xeb\xd9\xe2\xcc\x50\xba\x36\xc1\xaa\xa0\xfb\xa3\xc9\x5a\x2a\x12\x5c\x3b\x01\x66\x07\xa1\x62\xa9\x47\xc4\xd6\x93\x5c\xb6\x61\xae\x28\xe1\xd3\xd0\xef\x73\xb6\xad\xd8\x42\xf9\xa5\xae\xbe\x4c\x67\xe9\xd8\xe8\x0a\xbb\x31\x77\x39\x8b\x0d\x55\x87\x89\x17\x1f\xfc\xdc\x29\x2a\x84\x66\xa7\x4e\x85\x2a\x78\x04\x43\x59\x93\xf7\x0c\x5d\x53\x14\xf1\xe4\x98\x0f\x05\xa1\xa0\x6b\x57\xe5\x67\xa3\xa6\x5c\x9e\x5d\x91\xbe\x1a\xf5\xe0\x8e\x98\x55\xb2\xd8\xea\x25\x15\xe8\x7c\xb9\xe5\x85\xd1\xda\x63\xe7\xdd\x55\x39\x1b\x7c\x48\x68\x48\xfc\x91\xc5\xe2\x49\x59\x6e\x3e\x38\x4b\xf9\x60\xe3\xda\x4f\x52\x44\x47\xf7\x50\x09\x8e\x50\xa7\xda\x8e\xa3\x74\x36\x11\x74\x43\x34\x0b\x43\xcf\x78\x89\x48\x01\x69\x9c\xa7\x15\xfa\xc4\xb6\x3f\xe3\x75\x52\xb2\x89\xf2\xd0\x0f\x53\x2e\x56\xf5\x2e\x9e\xb1\x74\x1c\xcf\xc2\x01\x88\xdc\xc4\xcb\xf2\xa3\x40\x3b\x3f\xb1\x78\x96\xa5\xc1\x80\x1b\x24\x34\xbe\x18\x4e\x27\xce\x23\x22\x0f\x84\x24\xae\xb5\xd0\x54\xec\x16\x4c\x0a\x89\x05\x98\x90\x2d\x56\x2a\x67\xb1\x5c\x3a\xfe\x3f\xad\x51\x51\xea\x62\xac\x2c\xb6\xc6\x19\x27\x70\xa2\xd4\x70\xdb\xaa\x91\xbc\x1a\x44\x34\x26\x7c\x58\x36\xfb\xe9\xae\x82\xc5\x97\xa5\xce\x2b\xda\xa4\xee\xaa\x2f\xf6\x5f\x4a\xa3\xc0\x5a\x4e\x1c\x2d\xcf\xbc\xdb\x84\xf6\x0c\x65\x82\x8d\x41\x6d\x55\xa9\x49\xa1\x56\x0b\x10\xb6\xb3\x02\x4b\x9f\x69\x1c\x70\xb1\xf4\x3a\xfc\xbf\x75\xea\x87\x75\x75\xd5\xd4\x85\xaf\x28\x7d\x57\x21\x19\x29\x36\xfc\x6b\x12\x90\x68\xe0\x2a\x08\x36\xd6\x70\x69\x37\xf1\x67\xf9\x3c\x47\x3a\x9a\xd5\xe0\xc2\x5e\x68\x9b\x0e\xb9\x9c\x2f\xed\x10\x48\x4a\x93\x5a\x1d\xfb\x53\x5e\xa6\x2d\xe9\xcf\x92\x84\x47\x99\x49\x63\xfa\x11\x68\xdf\xef\x2a\x34\x07\xf9\x0c\xbb\x94\xb0\x9c\x57\xdd\x9a\x21\x6d\x86\x3a\x12\x85\xa4\x2d\x61\x96\x05\x52\x05\x7c\x92\x16\x12\xd8\x59\x5c\x27\xf0\x56\x83\xf4\x18\x65\xf2\x83\x62\x0a\xee\x43\x1c\x44\xed\xd0\x4f\x53\x30\xa8\x90\xc8\xfc\x7e\xf6\xb1\xaf\xda\x7c\x39\x13\xa9\xfb\x58\xca\x48\xda\xf6\x5d\xba\x51\x75\x18\x84\x82\x0d\x36\x34\x09\x2e\x9d\x15\x60\x07\x95\xaa\x58\x66\xb9\xbb\xca\xba\xab\x0e\x31\xd9\x94\xd8\xec\x26\xf1\xa7\x53\x9e\xa0\x14\xe0\x2a\x8a\x6f\x52\x41\xcd\x04\x59\x29\x65\xdd\x55\xbf\x0f\x06\x35\xab\x0c\xf4\x62\x99\x49\x51\xaa\xd1\x5f\xfb\xd7\x40\xeb\x5d\x26\x7c\x68\x1c\x73\xf1\xf3\x91\xc0\x87\x6d\x3c\x47\xe2\xc5\x49\xf8\xf0\xbc\xbb\x2a\x3e\x6e\xd0\xe9\xea\xae\x5e\x78\x9a\xb3\x76\x2b\xdb\xed\x1b\x0d\xc2\xa7\x6c\x5b\xdc\x2e\x7f\x24\x26\x56\xcf\x55\x54\xfd\x61\x01\xac\x00\x76\xfa\xb5\x3f\xe1\xd4\x71\xd5\xf9\xac\xe7\x50\x58\x3d\xdf\x8b\x3d\x17\x05\xa6\x7a\x61\x75\xa7\xf7\x93\x6c\x1e\x3a\x13\x81\x4f\x9a\xeb\x95\x0d\xc5\x31\x97\x15\xfb\xb9\xde\xf8\xad\xdf\x97\x90\xaa\xc2\x0f\x55\x14\xa4\x4d\xe8\xd7\xec\x40\x7e\x53\x95\x8c\x97\x08\x2a\xc8\xdf\xaa\x82\xb8\x5b\x7a\x04\xfc\x65\x14\xce\x43\xab\xff\xd4\x5a\x03\x92\x20\xe2\xbb\x41\x7b\x3c\x8c\xf2\x10\x78\x9b\xe5\xce\x89\xa7\xe0\xac\xe0\x6a\x7e\x04\x08\xe2\x87\xbe\x5d\x0e\x90\xc1\x3f\x25\x08\xf0\x97\x5c\x2f\xf1\xc6\xb0\x3c\xf9\xb7\xea\x8c\x88\x1b\xcd\x83\x4c\xc1\x5d\x23\xf7\x76\xe3\x92\xe0\xed\xce\xe2\xaa\xa8\x24\xee\x2a\x3e\xcb\x82\x32\x3a\xe6\x23\x7e\xcb\x32\xff\x8a\x47\xa0\x14\xa9\x17\x39\xb0\x4c\x83\x30\xf4\x93\x0f\x69\x4d\xb4\xdf\xc8\xe2\x8d\x44\xb4\x9a\xd6\x7a\x61\xdc\xab\x4d\xfc\x34\xe3\x49\x0d\x34\xd9\xd5\x0f\xe9\x3f\xf6\x9f\x3e\x79\xaa\xa7\xc5\xd3\xbe\x3f\xe5\x83\x23\x9c\x1d\x4c\x72\x6d\x0d\xfe\x95\xf4\x61\xb9\x56\x3e\xaf\xae\x3f\xde\x6e\xfc\xcf\x4a\xfd\xd1\xc7\xbb\x72\xe5\xbc\xdb\xbd\xf8\x54\xeb\x76\xbb\xdd\x8b\x4a\x6d\x24\x16\x2b\xfe\x7e\xb4\x89\xb8\xe2\x7e\x31\x8e\x7a\xe8\xc5\x28\x75\x73\x06\xb4\xe1\x00\xf9\x3a\x33\x8f\x26\x42\xb9\xce\xac\xc3\x24\x37\xa2\xce\x9c\x23\xa8\x05\x26\x0a\xdb\xc8\x4f\x70\x4c\x9e\x3a\x76\x5d\xce\x89\x7e\x9a\x3f\xd2\xc0\x03\x80\x4a\x53\x56\x81\x5f\x16\xe5\x24\x4f\x09\x6b\x08\x26\xde\xba\x4a\xdb\xd6\xcd\x2a\x43\x5b\x8f\x99\xd4\x13\x7c\xaa\x58\xfd\xf5\x0d\x6c\xa2\xfa\xde\x76\x5f\x20\xeb\xd2\x7b\x2e\x22\x12\x5d\x5b\x35\xac\x11\x52\xc2\x28\x46\xef\x16\x59\xa6\xee\xaa\x67\xa2\x20\xd1\xa7\x2a\x79\x08\xc5\x47\x9c\xbf\xea\x59\x03\xd5\xbd\xac\x75\x3d\x95\xb5\x35\x0b\xb1\x7f\xfa\x84\x24\xac\x6e\xab\x96\x65\xac\xd0\x28\x86\x19\xd2\x44\x2d\x16\x47\x5c\x2d\x45\xc7\x21\xe9\x59\xb1\xad\x97\x2a\xf2\xd5\xff\x32\x42\xcd\x98\x76\x31\x81\x55\x3e\x97\xcf\x10\x22\x0d\x3e\x2d\x42\x2c\x03\x3f\x93\xb8\x24\x90\x38\x29\x4b\x66\x9c\xf0\x0a\x93\x0f\xa8\x45\x48\x59\xdb\x67\x97\xaa\x6b\x97\x07\xba\x33\x63\x02\x97\x73\x94\x16\x52\x4f\xc6\xd1\xa8\xe7\xa8\x4e\xcf\x20\x5d\x96\xf6\x42\x97\x1e\x30\x84\x9e\xb4\xf5\x3e\xc9\xb3\xb1\x80\x04\xd4\xe8\x60\xc1\x24\x24\x12\x71\xc7\xb0\x90\x4a\x5a\xbc\x0e\xfb\x60\x90\x39\x80\xa3\x5e\xf1\x98\xa9\x99\xc0\x53\x4f\x9b\xc4\xee\x4c\xfb\x8f\x23\x75\x70\x04\xce\x2d\x3a\x60\x60\x95\xa4\xcf\x57\x89\x6c\x67\xa6\x09\x1f\x06\xb7\xac\xc1\x4a\x7b\x5a\x55\xee\x07\x21\x1f\x88\x1a\x5a\xcc\xa8\x38\xca\x7e\x1c\x0d\x02\xc0\x64\x6c\xc2\xd3\xd4\x1f\x71\x4b\x6a\xa5\x8a\x2d\x86\x0a\xaf\xb2\x79\x25\xb0\xb6\x39\x71\xab\x01\x5a\x9d\x08\xaa\x16\xad\x4e\x70\x9a\x15\xbb\x87\xe2\x4a\x20\x7e\xad\xa3\x1c\xb6\x4c\x53\x04\x97\xb2\x52\xc5\x85\xb6\xf4\x01\x51\xab\xbb\xd7\x60\x05\x0d\x0f\x0b\x4d\xda\x68\xf6\x5c\x79\xb3\xd4\xd9\x0a\xd5\x67\x6b\x6c\xb3\x22\xcf\x6d\x1c\x0d\x83\xd1\x2c\x5f\xe3\xa9\xac\x71\x93\x04\x59\xae\xf4\x1b\x59\x0a\x23\xd7\xf1\x1f\xc5\x50\x2c\x98\x37\x99\xc6\xc8\x53\x32\x00\x86\x80\xf6\x5d\xec\xf9\x01\x3c\xca\x7e\x34\x88\x27\xe5\x7b\x4c\x84\x72\xbe\x5f\x64\xae\x54\x2e\x49\xf5\x10\x30\x1c\xa6\x01\x3b\xdb\x66\xa5\x12\xab\xa3\xad\x5e\xa9\x72\x59\xf2\x58\x79\x7d\x3d\x18\xb0\x75\x36\xbd\xad\x54\xb3\xf8\x04\x6e\x6b\xf9\xd9\xb7\x95\xbc\xb7\x18\xe2\x7b\x12\xbb\x90\xf1\x06\x7e\xdb\x40\x53\x19\xe2\xc0\x4d\x8b\x92\xbf\xc0\xdc\xe7\xeb\xd9\xce\x48\xcb\x9e\x03\x3e\x89\x93\xf9\x02\x2b\x1e\xfd\xa2\xa7\xcd\x84\x77\x7e\x9b\xf9\xa1\xac\x02\xf4\xd5\x62\x23\x9f\xfb\x0d\x5f\xa8\xa2\x20\x99\x4e\x63\x20\x0a\xa7\x72\x51\x16\xcd\xf7\x95\xec\x7d\x3e\xb2\x20\xfd\xb7\x1f\x06\x03\x7a\xc3\xe1\x21\xb3\x8d\xa3\x82\xbf\xde\x3e\x68\x1c\x07\x69\x76\x02\x96\xbf\x72\x55\xf0\x69\x23\x8a\x23\x3a\x68\x68\x17\x9c\x92\xad\x50\x8d\x9d\x1e\xee\x1c\xd6\xd9\x31\x09\x40\x41\xae\x6c\x92\x28\xf2\xc8\xc6\x91\x28\xe5\xac\xef\x47\xcc\x4f\xd3\xd9\x84\xd3\xc1\xda\xfc\x76\x5d\xea\x41\xb0\x85\x78\xc4\x06\xb2\x99\x71\xe7\xf2\xa5\xa6\x49\x22\x3a\x4d\xc9\x46\xd6\xd8\x24\xb2\x96\x32\xaa\xa3\x24\xbe\x0e\x06\x3c\xa9\x0e\x82\x74\x1a\xfa\x73\x22\x00\x81\x2b\x10\xb8\x52\x55\x20\x69\x5b\xdf\x91\x75\x2e\x6c\x27\x2b\x50\x3b\x29\x1e\xc0\xe6\xca\x78\xd1\x9a\x68\x4e\xe7\x53\xb0\xc8\x12\xbe\x77\xa5\xca\x7d\xd6\x59\xd3\x59\x96\x89\x7b\x26\x35\x73\xb1\x1a\xdc\x36\x15\xf8\x6a\x66\x02\xf7\x99\x08\x90\xf2\xb2\x1f\x4f\xa6\xb3\x8c\x1f\xc7\x71\x76\x40\x14\xbe\xde\x54\xa7\xac\x2c\x19\x34\x57\x70\xa2\x1e\x43\xe4\x69\xba\xab\xb5\xee\xaa\xa2\x3a\x67\x49\xe8\x7e\x9a\xfa\x89\x3f\x49\xeb\xec\xe3\x9d\xc1\x7b\x77\x90\x04\x52\x4c\x20\x72\x88\xb5\xee\x2a\xbd\xa3\x96\xa4\x51\xcd\x91\x8c\x1b\x50\x65\xbf\xd8\xc2\x61\xa9\x4d\x01\x69\xd2\xa8\x8f\x22\x9b\x01\x71\xaf\xb8\x96\xd4\x99\xd4\x96\xa5\x94\x55\xac\x93\x9c\x33\x03\x77\xec\x20\x65\x41\xca\x7c\xd6\x0b\x32\x16\x0f\x99\xcf\xc6\x7e\xff\xaa\xca\xde\x72\x36\xf6\xaf\xb9\x60\x87\xd3\xcc\x4f\x32\x16\x06\x69\xc6\x11\x1d\xc7\x9a\x2f\xc3\xbe\x6a\x35\xf2\xec\x49\xd9\x98\x27\x9c\x05\x11\x68\x7a\x0d\x37\x20\xf1\x09\x3c\x5d\x32\xa8\xe0\x8b\xff\x45\x73\xf6\xe3\x31\x1f\x04\x09\xef\x67\x3f\xa5\xaa\xa7\x18\x1b\x07\x51\x90\x05\x7e\x48\xba\x99\x2a\xdb\x1b\xea\xb6\x9e\xf8\x73\xce\x6e\x82\x30\x94\xe2\xc5\xda\x74\x96\x8e\xd9\xcd\x98\xeb\x29\x41\x9d\x09\xa8\xba\xfd\x68\xc0\xd2\x40\x60\x92\xfe\xce\x01\x1b\x06\x09\x07\xef\x32\xc9\x7a\xb2\x1e\x1f\xc6\x09\x17\x7b\xcf\xa3\x2c\xf5\x04\xbe\x99\xf8\x73\xd5\xd3\x88\x67\xcc\x07\x02\x49\xf1\xa3\xd4\x42\xcc\x54\x99\xdd\x04\x29\x0e\xc7\x07\x55\x6b\x6f\xab\x97\x41\x7a\x80\x05\xe2\x08\xfb\x61\xca\xad\x1d\xbc\x9c\xf2\x68\x10\x44\xa3\x7d\xcd\xec\x0a\x8e\xca\xd6\x45\xe2\x5e\x22\x12\x6d\xe7\x74\x24\xd8\xd1\x2c\xc2\x5d\x42\xda\xd5\xdc\x7a\xf8\x6c\xc8\x17\x35\x83\xeb\xb8\x48\xb9\x13\x76\xe4\xf9\x74\xe4\x38\xe0\x7a\x5e\x76\xdc\xa2\xf2\x6c\xbf\x59\x7e\x67\x7b\x2b\xf1\x30\xe5\x45\x9d\x17\x40\x43\xf6\x66\xb6\xd7\x02\x7f\xd7\x46\xe7\x41\x56\x31\xcb\x2d\x62\x96\x1a\x4b\xe4\x0a\xb5\xe2\x30\xbf\xdb\x44\x3a\x76\x6d\x75\xb4\xbb\x46\x03\xca\x0b\x01\xac\x81\x5b\xd8\x45\x11\x3c\x72\xaa\x4f\x35\xf5\xb7\x41\x18\x9e\x45\x93\x85\x4b\x33\xca\xcb\x79\x6d\xba\x3c\x67\xa4\x48\x97\x3f\xcb\xb6\xc6\xe5\x6b\x58\x17\xb9\x6f\xaf\xa1\x8a\x5a\x6a\x49\x94\x93\x4a\x10\xb9\x6f\xc0\xd3\xb6\x53\xb2\xed\x57\x16\x42\x1d\x90\x6d\x91\x10\x0a\xa4\x44\xf5\x45\x2f\x57\xb9\xa0\xb1\x12\x29\x56\x2c\xd9\x88\x71\xbf\xad\xa9\x59\x25\xdd\xc8\xba\x05\xc5\xaa\xae\xaf\x6f\x2d\xb5\xd8\x52\xea\x1e\x43\x28\x05\x6b\x97\x79\x37\xb4\x3a\x8a\xcb\xb7\x20\x50\xc8\xed\xdb\x64\x42\xb1\x8d\xd3\xd9\x74\x80\xef\xa2\x46\x7a\xd3\x84\x5f\x1f\x59\x8f\xf1\xe7\x5b\x3b\xa9\x3e\xb4\xad\x5e\xa3\x51\x74\x84\x48\xe1\xdc\xf7\xa3\x28\x56\x8e\xaf\xf4\x54\x48\x78\xfc\xf4\x55\x0c\x3d\xc1\x89\x25\xd5\x4f\x53\x10\xb1\x09\x30\x43\x36\xf5\x86\x0c\xd2\x57\xa3\xe1\xcc\xee\x1e\x60\x3c\x64\x56\xff\xdb\xdc\x73\x81\xb9\xa7\xc5\xc3\x7e\xb1\xc1\xa7\x09\xea\xff\xd5\x26\x9f\xe6\x42\xbe\x26\x1a\x73\x01\x94\x57\x76\x03\xe9\xd9\x89\xb2\x24\xe0\xa9\xa5\x2e\x17\x07\xce\xb3\x6a\xed\x45\x03\x7e\x9b\x37\x74\xff\x9a\x46\xf3\xf7\x18\x9b\x9a\x90\x2b\xde\xfb\xbf\xde\xf8\xd3\x9c\xc7\x5f\x66\xfe\x69\x61\xb8\x07\x1a\x80\xa2\x19\xe5\x90\xf7\xe7\xfd\x90\x7f\x15\x5b\x4a\xea\xeb\x41\x06\x95\x54\xf7\x4f\xb4\xaa\xa4\x11\xbe\x36\xa1\x9b\x33\xac\x84\x72\xc7\xb0\x12\xbe\x99\x5c\xac\xf8\xff\x42\x1a\x71\xf9\xc3\x9d\x2f\x2d\x78\xca\x73\x33\xc2\x9a\xce\x94\xf0\xa3\x3b\x27\x8f\xe9\xfe\x96\x4e\xef\x8f\x91\xcd\x6a\x12\x58\xc3\x9d\x1a\x7e\x7d\x10\xbc\x1e\x8c\xbe\x89\x8f\x2c\x30\x83\xa2\x83\xb1\x18\xaf\x2e\x13\x18\x25\xf1\x64\x0a\x22\x23\x71\xa3\x67\x29\x4f\x24\x3f\x1c\xf9\xd7\xc1\xc8\x87\x22\xff\xc6\x9f\xa3\x28\xd0\x67\x69\x3f\xe1\x3c\xd2\xf4\x88\x9a\xf6\x11\xf4\xe4\x5a\x9a\x48\x6d\x03\xd9\x1b\xd0\x4f\xdb\x0c\x44\xb0\xfa\xb2\x82\xf8\x5b\x95\x1a\x05\x54\xc9\x34\xed\x10\xfc\x98\x34\xea\x10\xa5\xf7\xe9\xc5\x5d\x21\xde\x42\x83\xc5\x47\x8f\x36\x15\xf0\x57\xf4\xb7\x3f\xc3\x68\x11\x81\xf6\xe5\x66\x8b\x20\x4f\x00\xd0\x7c\xfa\xc4\xf4\x54\x5d\xe1\x82\x7b\x84\x1c\xb3\x5d\xa3\xa1\x14\x33\xf4\xc2\xb8\x7f\xb5\x75\x2f\xfd\x60\xe0\x48\x45\x42\x10\xb6\xb0\xcc\x0a\x11\xe7\xa4\x3c\x1c\x5a\x52\x08\x88\xb1\x99\xf0\x90\xfb\x29\x84\x2b\x45\x03\x60\xa9\x44\xd3\xa6\xbf\x9e\xee\x1b\xaf\xbd\xd5\x39\x21\x12\xd1\x99\x79\xfd\x5d\x79\x88\xa6\xf7\xe5\xa1\x14\x3b\xe7\x6a\xec\xf2\x13\x73\xa2\xc1\x3c\x70\xce\xa6\x5c\xc3\x9c\x3e\xa2\x06\x7b\xfe\x84\x66\x96\x82\xa7\x5c\x04\x0e\x1a\xb5\x2e\xff\xb0\x49\xb0\x3f\xa8\x62\xa7\x3e\x1f\x66\xbf\x98\xb3\x56\x04\x45\x16\x29\xd1\xf1\x94\x17\xd1\x67\xe2\xe8\x2e\x30\x27\x74\xd7\xb6\xcc\x72\x10\x04\xea\x7e\x7f\xcc\x65\x40\x39\xf5\x61\x3f\x98\x04\x02\xc1\x6f\x3e\x79\xf2\xe4\x89\x59\xd0\x26\xcc\xff\x64\xcb\xc2\x62\x02\xff\x07\x21\xa8\x92\x40\x0e\x6d\x44\x01\x80\x66\xe7\xe2\xe3\x85\xba\x51\xc6\x37\x65\xf8\x39\xe2\x11\x4f\xfc\x2c\x4e\xc8\xd6\x47\xaa\x92\xaa\xd4\x37\xf6\x6b\x04\x40\x34\xe6\xf3\xa3\x31\x6b\x6d\x92\xa8\x07\x61\x0d\xdd\xfd\x96\x51\x0a\xad\xd7\xd7\x0b\x4c\x13\xcd\xea\x86\x89\xe1\x91\xfd\x0c\x50\x2d\x74\x56\x39\x3b\xde\xd7\xf2\x71\x42\xfb\x60\xb4\xe4\x47\x03\x14\xaa\xf3\x8c\x27\x69\xa1\xc1\x21\x75\xa4\x01\xe8\x91\x18\xde\x00\x24\x5a\x69\x29\x54\x5e\x31\x4d\x95\x18\x49\xe3\xcd\x95\x60\x1b\xd1\x49\x71\x2b\x2c\x91\x91\x04\xed\xe5\xab\xb1\xa0\x57\x81\xc2\xc5\x87\x7a\x7e\x9f\x69\x04\x6d\x37\x95\xf0\x2c\x13\x7c\x50\x42\x4a\xe5\xca\x03\xf8\x79\xe3\xcd\x9c\x26\xf1\x28\xf1\x27\x82\x51\x10\x64\xc0\x1c\xd5\x62\xbe\x26\x30\x0a\x9e\x50\x29\x42\x77\x1f\x51\x92\x41\x0d\x0e\x0c\xe3\xa8\xaa\xf5\x71\xb9\x69\x1f\x3c\x91\x20\x55\xa7\x32\xf1\xb7\x56\x93\xe8\x02\xaa\x64\xbe\xb2\xf0\xee\xc8\x67\x56\x39\x6c\xfc\x2f\x7b\x66\x95\x6e\xe2\x8b\x1f\x5a\x0c\xa9\xa8\x78\xfc\xdc\x83\xb9\x48\xf0\x67\x57\xb6\x8a\x8a\x5e\x62\x80\xff\xb6\xe5\x20\x63\xf8\xcb\x90\x82\xc4\x68\x68\x18\xd5\x39\x5e\x09\xf6\x99\xd9\x5e\xe6\xcf\x60\xdd\xd9\x2c\xf6\xec\xf3\x56\x95\xf7\xb7\x6e\x1b\x3e\x89\x8a\x96\x46\x0e\xdd\x2b\x9d\xce\x94\x68\x74\x41\xaf\xf2\xc5\x02\x63\x4c\xf4\x53\x79\x2b\xc8\x19\xed\x3c\x17\x44\x82\xea\xc4\x10\x65\x04\x4a\x02\x76\xad\xc6\x52\x9e\x01\xe1\x6a\x29\x74\x82\xc9\x84\x0f\x02\x3f\xe3\xe1\xbc\x6a\xca\xeb\x17\x69\x5c\xe8\x09\x57\x8a\x14\xd7\xdc\xce\x20\x9b\x5c\xcd\xc4\x1f\xa7\x89\xac\x07\x7f\xe1\x4c\xbe\x0e\x05\xb4\x92\x33\x9d\x30\x88\x22\xb1\x9f\x6a\x60\x87\x1c\x5a\x38\xaf\x42\x2a\xc7\x34\xff\xfb\x0a\xb4\x88\xbc\xbc\x45\xf4\x83\xb8\x20\x0b\xe8\x07\x34\xe4\x5d\xe2\x8c\xf0\xc5\x2e\x1e\xf7\x52\x21\x8f\x36\x8b\xe9\x10\xf8\x5e\x4c\x89\x40\xd1\x62\x5a\xe4\xd1\x26\x3d\xa6\xf1\x14\xf6\xcf\x7c\x1c\x44\x1f\xaf\x40\x60\xda\x5d\x05\x59\x0b\xd5\xa9\xf2\x68\x60\xfc\x22\x83\x71\xe3\x03\x8f\x52\x88\x7c\xae\x28\x17\x31\x44\x9b\xc8\x28\x5a\xc8\xb9\xec\x9e\x22\x98\xe6\xbe\xea\x40\xa6\xf2\x69\x6f\x17\xd0\x49\xce\x77\x33\xe2\xa8\xd8\xcd\x73\xfd\x05\x2d\x6c\x1c\xd2\x89\x16\x2f\x6a\x6b\x10\x18\x4d\xd2\x59\x98\xe9\x43\x81\x5d\xd4\xe9\x5f\x2d\x94\x4b\xeb\xca\xcb\xf1\xae\x90\xfc\x7a\xb4\x69\x11\x60\xc6\xfb\xe4\xcc\x1f\xa2\x4a\x89\x41\x73\x34\xd8\xa3\xcd\x42\x2a\x4c\xd5\x5e\x4c\x82\x81\xda\xa9\x80\x00\xcb\x62\x22\xbf\x0a\xe9\x2d\x68\xa5\xa8\x18\x44\xb4\xf6\x19\x81\x68\xa9\xf8\xa5\x88\x7c\x52\x45\x0e\xfd\x64\x64\x26\x30\x5b\xeb\x87\xa3\x62\x36\xd5\x50\xaa\xcb\xcf\x12\xcc\x24\xc7\xd2\x95\xe9\x2f\xcf\x7c\x3b\xc0\xf1\x80\xce\xe5\x54\x1b\xa9\x33\xf5\xf5\x91\x72\xa8\x50\xa7\xdb\x72\xaa\x70\x8b\x65\xfd\x42\x52\xc6\xaa\x93\x1f\x4a\xbb\x56\xd8\x77\xa7\xc0\xf7\xc2\x6d\xb2\x74\x38\xa7\x17\xfd\x5d\x5e\x44\x6b\x48\xf9\x51\x8f\x5a\x50\xcd\x6c\xbb\x7c\xec\xc2\xcb\x8e\x77\x4f\xaa\x37\x24\x5f\x62\x11\xcf\x69\x35\xe1\x83\x59\x9f\x1b\x16\x07\x70\xe6\xf8\xc0\x63\x06\x83\x84\x07\x86\x4a\xd4\xb5\xa7\xdf\xb6\xd3\xad\x81\xd6\x80\x3a\xca\x23\x39\xf5\xf6\xf0\x68\x60\xbb\x28\x2c\x70\x52\x30\x80\x53\xd7\x7f\xca\x17\xc8\x72\x34\x24\xec\x62\xce\xa2\x6a\x21\x0a\x89\x2c\xdc\x4a\xe2\x9b\xb5\x10\xe9\xaa\x80\xad\xab\x10\x99\x4d\x29\x82\x4d\xf9\x0c\xba\x1d\x2c\x10\xc2\xcc\x12\xc8\x6e\x22\xaa\x9c\x3f\xb9\x30\xe6\x00\x6a\xee\x54\x96\x55\xd3\x30\xe8\xf3\xf2\x66\xc5\x68\x4a\xc6\x4c\x84\x2b\x95\x35\xd3\x2c\x09\x8d\xd1\xf1\x1e\xac\xad\xb1\x15\xaa\x5e\x34\x91\x62\x03\x2b\xeb\x22\xa2\x15\x0e\x5e\xd6\x59\xca\x07\x02\x2f\xc1\xcc\x64\x05\x30\xc0\x72\xd8\xad\xb5\x35\x5c\x5f\x83\xde\xa6\x6d\xfa\x5e\x17\x9f\xdd\xae\xe9\xb0\xb0\x69\x9c\x20\x59\x03\x66\x42\x02\x19\xca\x8a\xca\x7a\x8b\xfe\x30\x7b\xb8\x19\xf3\x6c\xcc\x13\x72\x86\x43\xb3\x1f\xec\x0f\x20\x10\xce\xf5\xda\xd0\x2a\x4c\xec\x67\xc1\xd9\xe6\x13\x19\x70\x15\x9c\x79\x1c\xf2\x6c\x02\x11\x5a\xab\x32\x86\x37\xee\xd1\x39\xd4\xbc\xd8\x32\x8f\x19\x1e\x7f\x3e\x89\x0d\x12\x4e\xbc\x94\x74\x26\x11\xd3\x22\x6b\x54\x29\x88\x60\xd1\x99\x4c\xb3\x79\x5b\xba\xd3\x48\x75\x91\x6d\x6e\x4c\xa2\x5e\x2a\xab\xf6\x81\x9c\xd4\x55\x21\x50\xc1\xbd\x41\x2a\x8c\x57\x27\x0d\xa2\x51\xc8\x35\xa7\xaf\x48\x70\x37\x56\x05\x46\xf1\xfb\x4a\xb6\x83\x0f\x50\xae\x40\xbd\x3f\x4d\xb1\xa2\x1c\x15\xbe\x4c\xb9\xba\x30\xc0\xc0\xd7\x66\x91\xff\x7c\x26\x59\x00\xe2\x2b\x7a\xd0\x1b\x4a\x6f\x65\x29\xe3\x88\xa9\x73\xd6\x60\x26\x5e\x35\xdb\xbb\xdc\xec\xe2\xb2\x5a\x8d\xfd\x78\x02\xc1\xbf\x7f\x62\x7e\x98\x70\x7f\x30\x57\x9c\xa7\x46\x33\x70\xf6\x67\xa9\x1c\xb6\x6e\x75\x38\xc5\x64\x4f\x9a\xb4\xca\xd9\xf9\x78\x66\x7d\x70\xff\xd2\x6b\x92\x3e\x6b\xe6\x92\x64\x88\x09\x8b\x81\xd6\x6d\x2c\xaf\xfc\x85\x0e\x77\x4c\xdb\x26\x59\x88\xf7\xae\xe2\x8c\x66\x87\xb5\xb8\x2c\x8c\x6b\xa1\x75\xd0\x4e\x34\x0a\xf9\xd9\xae\x2b\x2f\x99\x5b\x59\x59\x4a\x98\xb5\xd5\xa5\xb1\x03\x61\x88\x8f\xc0\xe0\x1f\x81\x15\x39\x46\x35\xf3\x23\xca\x80\x04\xfa\x78\xe6\xa7\x86\x25\xe7\xdc\x40\xef\xe4\x97\xe2\xb1\x14\xd5\xcc\x10\x62\x38\x18\x82\xd9\x4c\x09\xd5\xd1\x7d\x3f\xe5\x55\x0d\x09\xf1\xf8\x81\x55\x49\x35\x48\xd1\xba\x44\xe3\xc6\xb5\x35\x35\x0c\x19\xa3\x20\xba\xb4\xb0\xbd\x01\x20\xe3\xa9\x34\x64\x00\x16\x91\xac\x6b\xc3\x15\x94\x57\x59\x71\xb1\xb9\x3e\x95\xb3\xa4\x32\x0b\xb1\x99\x75\xab\x43\xe5\x41\xe2\x30\xe6\x9f\xcf\x4d\xeb\xff\x0c\x87\x59\xf7\xf4\x3b\x81\xed\x3f\xdf\x98\xc0\x42\x34\x88\x09\xf9\x80\xbd\x57\xcb\x78\x8f\x72\x65\xb1\x6d\xef\xe5\x42\xdf\x1b\x12\x8d\x21\x39\x2b\x75\x57\x11\x09\xe1\x2f\xba\x98\xdd\x55\x98\x77\xa3\xdb\x25\x86\x17\xbe\xaf\xa3\x8f\xec\x2a\x90\x17\xe2\x9f\x0a\x7c\xfa\xc9\x83\x90\x3c\xf3\x78\xc6\xe4\x27\x42\x7c\x60\x14\xad\xe6\xe6\x93\x2f\x02\x47\x1c\x2d\xe8\x88\xf7\x62\xdb\xdf\xe7\x0c\x0e\xe4\x7f\x77\xdd\x68\xc1\x7d\xb2\x8e\x8b\x29\x22\xd1\x2d\xbe\xcc\x50\x52\x19\x3f\xc2\x56\x19\x94\x85\x1a\x9c\x08\xbd\x05\xe4\xc3\xb6\xae\x28\x4d\xca\x27\x84\x51\xf5\x15\xdf\x5e\x30\x2b\x65\x14\xa5\xb0\x1e\x5d\xf4\x6d\xf9\x28\xaa\x02\x0a\x00\x2e\xa9\x1b\xb6\xdc\xb0\xf1\xab\xdb\x35\x3e\xd4\xac\xf1\x41\x9a\xac\x28\x1e\xf0\x0b\xed\xaa\x46\xf3\xab\x17\x98\x0c\x94\x29\x22\x8f\xf8\xe7\xb5\xe9\xbf\xa0\xee\xe9\x34\x3d\x97\x85\x17\xb4\x55\xae\x03\x90\x5b\xad\x52\xe0\x35\x68\x38\xf8\x75\x57\xf7\xa2\x6b\xd1\x05\x8c\xca\x4a\x6a\x32\x25\x48\xfe\x16\x06\x48\xa9\xa3\x03\x49\xa9\x8e\x34\xbc\xa8\x29\xa3\x55\x33\x6c\x8d\x87\x5f\xb5\x96\x6e\xe6\xc6\xf1\xbd\xb3\x7d\x48\x0b\x65\x6e\xf7\x7a\x87\x22\x63\xf1\xd9\x92\x37\x78\x1c\x0e\x87\x65\xb7\x4e\x45\x6d\x0c\x9e\xc0\x05\x06\x59\x06\x73\x58\x38\x6d\xc9\x53\xda\x85\x5d\xd7\x3e\xf5\x2f\xb1\xc2\x2a\x17\x99\x40\x17\xdd\xea\x82\x7a\xf0\xb0\x39\x94\x11\xde\xa6\xa5\x34\x9f\xde\xf6\x9f\x80\xf0\x97\x5f\xa9\xd7\x9f\xa4\x13\x48\x2a\x38\x4c\x88\xc7\xbd\x55\xd0\x12\x5c\x38\x7a\x9c\x2c\xc4\x06\x05\x68\xf3\x3f\x0c\x0d\x3c\x22\xf7\x80\x02\x2b\x7d\x36\x1c\x64\xb3\x3f\x1f\x08\x0a\x4d\x7f\xc1\xe2\x8a\xf7\x59\xce\xfd\x8f\xaf\xee\x21\xb7\xe5\x4f\x32\xe6\xb6\x80\xa4\xb8\x0d\x71\x52\xb4\x86\x43\xa9\x2f\x3c\x56\x92\xdc\x0e\x3d\xf7\xa9\x09\x31\xb2\xf0\x06\x0a\x65\x16\x89\xe7\x38\x89\xc3\x10\x11\xa9\xf1\xab\x1c\x27\xec\x3a\xe8\x73\x48\x9c\xe3\x57\xaa\x4c\x00\x9e\x4c\x49\xc3\x39\x0a\x49\xa2\xd8\x0a\x39\x80\xa8\x57\xc0\x3e\x1b\xf3\x48\xfc\x12\x2f\xfc\x80\xc5\x11\x67\x31\xe8\xb9\x66\xbd\x94\xff\x36\x13\xfb\x4b\xde\x52\xa5\xaf\x72\x82\x56\x16\x40\xe7\x8f\x01\xc7\x06\x8d\x05\xaa\x42\xe0\xa8\xf5\xfa\x05\x50\xd1\x90\x13\xf4\x5a\x3c\x09\x32\xc1\xb1\x05\xd9\x43\x01\x93\x0f\x23\xe5\x0f\x06\xfb\xdc\x1f\x04\xd1\xe8\x24\xf4\x53\xcb\x9e\xc3\x10\x70\x56\xfb\x63\x3f\x69\x66\xe5\x27\x95\x22\x3b\x01\xfc\x89\x24\x66\xd1\x00\x2d\x8a\x2b\x5b\x96\x01\x66\xcd\x88\x23\x4a\xfe\xbe\x22\x4b\x95\xf0\xcd\xe2\x7c\xa5\x44\xc3\xe4\x0e\x15\xf3\x67\x0a\xd7\x51\xc5\xea\xae\x4b\x77\xbe\xce\x72\xac\x6a\xd7\xd2\xbe\xa9\xa9\x8b\x27\x6f\xfa\x55\x26\x2f\xd8\x88\x1e\xda\x42\x2d\x9c\x98\xd2\x0f\xe5\xa6\xa7\x12\x2d\x8a\xba\x15\x38\xc6\x4f\xbe\x0a\x90\xf2\x23\x89\x23\x94\x25\x30\x90\x4c\x06\xb6\x00\x38\x48\xf9\x9e\x1d\xef\xbb\xce\x75\x76\xfe\x1b\x2d\xeb\x70\x35\xea\xaa\xa4\x6e\xb8\xa6\x5b\xea\x53\x77\x37\xfc\x2c\xe8\xbf\x84\xa0\x7a\x49\x19\xb5\xad\xaf\x73\xb9\x56\xfe\x10\x81\xb1\x40\x08\x44\x4e\x2d\xff\xa4\x70\xa0\x3f\xa2\xe3\xb7\x12\xfc\x78\xcc\x9c\x4c\x5e\x08\xb4\xe0\xe6\x45\x71\x3c\x15\x93\x2c\x96\x3d\x66\xf1\x74\x23\xe4\xd7\x3c\x34\xfc\x60\xba\x94\xe8\xbc\xbb\xaa\xc4\x4e\x82\xd7\xdf\xe8\xfb\x80\x4e\x7a\xbc\xef\x8b\x87\x2c\xc8\xa0\xb3\xbe\x1f\x95\x32\xe6\xf7\xb3\x19\x20\x0c\x9d\x8b\x4e\x06\xc6\xd3\xdb\xcf\xf6\xd0\xbe\xdc\x13\xa8\xe4\xc3\x2c\x15\xf8\xa3\x1f\x27\x90\xd0\xec\xb1\xde\x28\xe9\xf4\x0a\xd6\x06\xd2\x37\x9b\x1c\x9b\xd8\x59\xca\x87\xb3\x90\x4d\xfc\x20\x0a\x21\xd3\x61\xc6\x53\xb4\x95\x8a\x06\xd0\x4d\xca\x93\x6b\x9e\x6c\x68\xa3\x85\xb4\xcf\x23\x3f\x09\xe2\xd4\x95\x9d\x9a\xf0\xfd\x0a\x22\x54\xb3\xbb\x07\x48\x52\xcd\xea\xff\xc7\x5d\x77\x8c\xae\x29\x9a\xe5\x11\xda\x41\x2d\xf5\xac\xb5\x82\x60\x92\xb5\x17\x3f\x8d\xcb\x1a\x11\x75\x57\x8f\xce\x4e\x5e\x6a\xfe\xe9\xae\x70\xac\x63\x15\x2c\xf6\x0f\x0f\x77\xdc\x39\xda\x6f\xb6\x3b\xf7\x8d\xb8\x2f\xdd\x89\x0b\xb0\x88\xe6\x2b\x63\x15\x6c\xaa\xb8\x97\x56\x18\xdb\x91\x9b\x1f\xda\xc9\x83\xdc\x9d\xcc\xe3\xb9\x48\x22\xaf\xa1\x60\x4e\xa3\x10\x36\xbe\x1d\x44\xe7\x81\x11\x7f\x8d\x2a\x8f\xe4\x03\xe6\xc8\x32\xd5\x73\xa9\x5b\x15\xd7\x34\x3a\xb0\x83\x12\x62\x38\xc2\x82\x8a\x66\xec\x2d\x65\x41\x66\x8b\x5c\x4d\xe3\x31\x29\x2b\xf2\x65\xa0\x23\xfc\xc3\x29\x35\x84\xf2\xc5\x24\x8b\x63\x3b\xa6\xcd\x80\x9c\x8e\x50\x59\xa9\x9f\xc7\x5c\xa8\xdb\x2f\xf3\x70\x70\x76\xe6\xe9\x03\xb6\xe6\xe9\x82\xbd\x79\xfa\xf0\xcd\x79\xfa\xe0\xdd\x79\x5a\xb4\x3d\x56\x79\xe1\x5e\x3d\xad\xda\xf6\x6a\x0b\x37\xd5\x68\x6f\x4e\xe4\xe3\x9d\x3b\x8d\x7c\x7f\x56\xb1\xab\x7c\x91\xd3\x28\x50\x24\x2c\xa8\xfa\xc8\xa2\x69\x0c\x90\xd4\xf2\x30\x29\xe8\xf5\x73\xa3\x57\x3f\x85\x58\x92\x12\xb8\x14\x21\x92\xfc\xa2\x9d\x68\x6d\x17\x15\x4b\xf9\xae\x6d\x31\xb5\x17\xb9\x0a\x99\x5c\x77\x23\xc6\x40\x1c\x65\xcb\x5a\xc1\xc0\x49\x8b\xa8\x56\xb6\x6e\x9c\x74\x68\x5c\x64\x8f\x87\x17\x4e\x30\x0a\x47\x87\x47\x46\xf0\x11\x2d\x0a\x5b\x44\x6a\x2f\xbc\x74\x96\x65\xae\xf4\xc4\x54\x4f\x94\x11\xb0\x93\xa2\xf1\xe6\xdf\x15\x55\x67\x14\xd7\x1d\xe2\xb2\xbb\x3a\x8a\xbb\xab\x15\xa3\x46\xcb\xef\x5f\x15\xd5\x12\xdf\xed\x9a\x2f\xe2\xe4\xc6\x4f\x06\x45\x95\xa9\xc8\xac\x8f\x91\x04\xac\xe9\xe1\x23\xa4\x6a\x80\x93\x89\x55\x01\xde\x97\xae\xa1\x23\x7f\x90\xf7\xea\xb2\x30\xd7\xca\xa1\xd5\x35\xd4\x75\xbc\xd3\xad\x6c\xc9\x32\xf4\xb4\x23\xad\x36\xdf\xa7\xaf\x29\xb4\x76\xdf\xbd\xcf\x4f\x5e\xb2\xc8\xc7\x7e\x99\x5c\xf6\xf3\x8c\x1e\x4d\x70\x14\xbf\xd3\x7f\xbd\x6b\xaa\xc5\xac\xfc\x55\xae\xa9\x16\x05\xff\xc7\x73\x3d\x69\x9e\x41\xcc\x7b\x18\x24\x69\xa6\x54\xf1\x10\x13\x00\xcd\x58\x52\x3b\x02\x00\x6a\xb8\xbf\x06\x03\x01\x1d\x3d\x84\x75\x80\x8a\x7f\x9a\x15\x06\x76\xff\xb7\x19\x86\x36\x5e\xf8\x8f\xdb\x61\x90\xf4\xcf\xc3\x13\x88\xa6\xf9\xe0\x22\xea\x5a\x1e\x0d\xe3\xa4\xe3\xf7\xc7\xe6\x75\x71\x6a\x64\x31\x32\x89\x95\xea\x30\x88\x06\xe5\x4a\x57\x2b\xf6\x21\x10\x94\x64\xef\xa9\x9e\x78\x92\x53\x34\xc2\xcb\x62\xe6\x87\x21\xca\xe0\xb5\x3c\xd2\x8f\x06\xec\x86\xb3\x41\x8c\xb6\x5e\x7e\x94\x19\x3d\x66\x31\xcb\x92\x60\x34\x12\xd7\x33\x62\x33\x74\xae\xab\x25\x1c\x7d\x7d\xc5\x9d\xcb\x6e\x62\x79\xc7\x52\xbc\x64\x74\xc0\xa4\xfc\xdb\xe8\x4d\x0b\xdc\xfd\x8c\x0d\x82\xe1\x90\x83\x7c\xe1\xec\x78\x3f\x35\x8c\x0d\x8a\x21\x52\xbe\x2c\x50\x4b\x58\xe7\x4b\x7c\xcb\x99\xe9\x93\x01\x0c\xe5\x51\x5e\x5b\xa3\xde\x6d\x5d\x21\xb5\x75\xb4\xfa\x52\x7b\x4d\xe6\x05\x96\xbe\xda\xd0\xf7\x43\xa1\x69\xed\x22\x8e\x83\xf1\x6d\x98\xc4\x13\xab\xad\xb4\xc9\x79\x90\x69\x8c\x65\xe4\xa2\x7b\xf5\x5c\x03\x04\x6d\x65\x68\x7e\xbf\xab\x2c\x30\xa8\x51\x15\xba\xa6\xe1\x8b\x45\xca\x49\x65\x36\xdd\xf6\x30\x8e\xd4\x65\x57\xa7\xf9\xa1\xa6\x36\x96\x59\x51\xce\xe4\x86\xb4\xdb\x4b\x95\xdb\x78\x93\xbf\x2a\xa1\xa0\xb0\xe4\x67\x46\xed\x59\xac\x98\xb5\xde\x75\x07\x09\xff\x57\x2a\x6e\x24\x7e\xfc\x5b\x73\xf3\x47\xa0\xf3\xdf\xa9\xba\xd1\x09\x30\x88\x4a\x1a\x07\xa3\x31\x4f\x36\xe2\x44\x60\x67\x8d\x8a\xc5\xab\xd0\x17\xa0\xc4\xf8\x82\x93\x29\x38\xaf\x5e\x73\x41\x55\xe5\xdd\x2a\x6f\x82\x4c\x66\xa7\x74\xa9\x21\x81\x13\xdb\xe6\x99\x6e\x17\xc4\x78\xc4\x2c\x1c\x03\xd5\x16\xd3\x41\xe1\x96\x14\x94\x59\xfc\xf0\xc4\x0f\xc4\x46\x1e\x49\x63\xbc\xa5\x9c\xb1\xce\xe8\x54\xd0\xad\xc5\x02\x3f\x38\xfc\xff\xf2\x38\xfd\xa0\xe6\x55\x83\xe4\x9d\xc6\x96\x0c\x63\x48\x5a\x1d\xf6\xcb\x5c\xb2\xc7\x0a\x86\x70\x1e\x02\x60\xd8\x8b\x16\x1c\x19\x4f\x42\xce\x1a\xc5\xc6\xb8\x6d\x27\x22\x6b\x77\xd5\xd8\x74\x34\x1e\xd3\x24\xaa\x59\xf5\xd3\x27\xa6\x0b\xa4\x12\xad\xbb\x5a\x21\x0f\xe4\x76\xf5\xad\x33\x31\xd6\xd0\x0d\x0c\x27\xa2\xcf\x35\xc2\x6b\x17\x21\x71\x56\x04\x06\xd7\xa6\xc5\xe4\x8e\x6d\x27\x23\x33\x72\x6f\xb9\xed\x31\xeb\xb9\xf9\x42\xe7\x3b\xc3\xc2\x11\x13\xd0\x52\x55\x65\xc9\x67\xac\x09\x9c\xdf\xc3\xb8\xe7\x87\xac\x41\xb5\x0d\x6f\x85\x2b\x72\x51\xbb\xbc\x04\xf3\xcf\x4b\x4c\xec\x7e\xd9\x9b\x05\xe1\xe0\xf2\x52\xa5\xb5\x02\x75\xa2\xf8\xf6\x9a\xf2\xf8\xe8\x83\xfc\x21\xad\xb3\xee\x6a\x3b\x9e\x4c\xe2\xe8\xe7\x13\x43\xd6\xc2\xd3\x89\x28\xe9\x9c\x30\x0c\xd7\x9d\x9a\x71\x61\x27\x03\x51\x76\x76\xb0\x63\x86\x78\xc5\xbf\xc4\xe2\x70\xc2\xe7\xa0\x89\x58\x5b\x63\xe6\x4f\x5c\x29\x4f\x27\x96\xf1\x24\xe6\x76\x02\x84\xd7\x92\xf3\x64\x0d\x63\xce\xe7\x46\x1f\x17\x76\x2a\x08\xde\x8f\xa3\x81\x9f\xcc\x17\x34\xa4\xc1\x2e\x30\x9e\x2b\x04\x55\x6e\x0e\x06\x2c\x0c\xa2\x2b\x40\x79\x49\x16\xf4\x43\x8e\x14\x2b\xbf\x9d\x86\x7e\x10\x81\xc6\x6a\xc0\x33\x3f\x08\xd9\x38\xbe\x81\x6a\x02\xb3\x1a\x14\x6c\x18\x83\x70\x8b\x3d\x35\xc8\x57\x18\xd4\x24\x60\xdd\xc0\xf1\xc8\x9b\xf8\x09\x57\xcd\x05\xa6\x85\x9b\x54\xb0\x0a\x71\x65\xb0\x4f\x45\xfc\x4b\xbe\x58\xda\x71\xc2\x53\x30\xf5\x47\x34\xfd\x20\x55\xd6\xd9\xc9\x2c\x8a\xac\x01\x72\xd0\x85\xee\xa5\xf5\x26\x0c\x03\x76\xc0\x90\x70\x31\x65\x37\x71\x54\xca\xd8\x4d\x9c\x5c\xb1\x24\x18\x8d\xb3\xaa\xa1\x0a\x91\x0b\x34\xb7\x55\x6d\xaa\xbc\x42\x76\xb6\x01\x3b\x1a\x1e\x86\xae\xf0\x94\x13\xaa\xc7\x08\xbf\xca\x0a\xb6\x06\x4e\xb2\xd3\xa6\x17\xb4\xa7\xc9\x65\xcf\x78\x8b\x94\x01\x38\xf3\x53\xe6\x24\xd5\x93\x99\x0c\x6a\x35\xf6\x5d\x75\xb3\xba\xc9\x4e\xe3\xa3\x24\x98\x80\x0d\x5b\x39\x88\xa6\xb3\x8c\x9d\x8b\xb9\xf1\x21\x4f\x12\x3e\x10\xc8\xe1\xa2\x82\x92\x81\x20\x3d\x84\x27\x06\x1c\x93\xc0\x49\xb5\x5c\xaa\xd6\x2e\x83\x74\x03\x9f\x1e\x88\x21\x5d\xab\x99\xcc\x9a\x00\x7c\xe7\xe4\x5b\x96\x4e\x79\x1f\x1e\x7d\xd0\x9e\x08\xfe\x2a\x18\x08\xd0\x06\x93\x29\xb1\x15\xff\xfa\x57\xa6\x27\x02\x06\xd7\xd0\x17\x91\x45\x74\x32\x14\xdb\xcf\x36\xd8\x30\xf4\x47\x6c\x03\x52\x2a\xc0\x4c\x41\x75\x8e\x51\x8a\x49\x5d\xbe\x2c\xc2\x7e\x90\x79\xec\xc4\xb4\x44\x90\x8b\x2b\x07\x59\x45\x59\x09\x04\x99\xb2\x43\x18\x46\x90\x87\x40\x99\x1b\x9c\x80\x95\x14\xa2\xaf\xf2\x50\x30\xc3\x41\xa6\xa2\xec\x57\x04\x8b\x55\x92\xa3\x95\xc8\xac\x8c\x06\xb8\x06\x24\x36\x8c\x30\x86\x93\x18\x4e\x8d\x67\x0e\xe0\xf6\x0d\xe6\xb9\x87\xc3\xaf\xd1\xf5\xca\x9f\x3a\x79\xbc\xef\xe2\xe0\xc8\xfb\xde\x06\x9d\x7a\x3f\x8e\xae\x79\x22\x55\xdf\x02\x9d\x4c\xd5\x7e\x63\x82\x85\x55\x23\x33\x01\x9d\xcf\x6f\xd8\x69\xbc\x17\x65\x7c\xc4\x13\xf2\x6b\xe6\x41\x28\x93\x29\x88\xbf\xc9\xdd\x79\x18\xc6\x10\x15\x05\xbe\xc3\x8f\xe5\x19\x16\x02\x27\x6d\x6f\x90\xbe\xf6\x5f\x97\x21\x9e\xcb\xba\x28\xdb\x66\x4f\x58\x5d\x54\x63\x3f\xa1\xd7\x23\xf4\x5f\x87\xe1\x2b\xa2\xb5\x33\xd3\xa7\xd5\x4d\x46\x9e\xdb\x08\xa9\x76\xcc\x93\x7e\xd0\x0b\x79\x59\x9e\xd9\xca\xc3\x26\x04\x99\x3a\x32\x66\x5b\xe6\x2f\x84\xa9\x1f\x86\x32\xc4\x43\x1c\x31\x42\x72\x99\xe5\x6a\x19\x64\x4b\x92\x56\x7c\xd4\x8b\xd8\xfc\xa1\xba\x59\x7d\x5a\x7d\xca\x6a\x6c\xf3\x79\xf5\x69\xf5\x59\xf5\x39\xc3\xb5\x10\x7d\x56\x3e\x44\xd4\x20\x29\x4b\x89\x17\xfc\xa8\x10\x2f\xf8\x91\x89\x17\x44\xc5\xc1\x51\xea\xd4\xc1\x0a\x1b\x83\x69\xaa\x2a\xf1\x68\x36\x69\xcd\x46\xaf\xd0\x4f\xd2\xac\x2c\x4a\x36\x7a\xb3\xd1\xc6\x15\x9f\xeb\xfa\x7b\x9d\xcb\xa3\xe3\xc3\xd3\x43\xa7\x72\x3a\xf6\x13\x3e\x10\x55\x4b\x95\x72\x49\x56\x52\xad\xc0\xc4\xd3\x15\x22\xb3\xda\x63\x72\x19\x79\x5c\x63\xd2\xc7\x1e\xda\x9d\xbe\x3b\xea\x30\x4c\xe9\x82\xfc\xab\x4a\x50\xd0\x06\xd0\xc8\x43\x0d\x96\x2e\x43\xff\x8a\x93\x85\x3f\x53\x0d\xea\x20\xde\x0a\x86\x89\x78\x75\x0e\x8d\xda\xfd\x90\x8b\x99\xea\x9a\x66\xb6\x82\x1d\x74\x06\xce\x89\xba\x21\x28\x7b\xe2\xa7\x02\xed\xfb\x69\xc6\x31\x76\x79\x3c\x88\x27\xf3\x3a\xdb\xeb\xb0\xdd\x36\xeb\xcd\x46\x12\x77\xd1\xa8\x36\x80\x06\xf1\x64\x03\x07\x11\x00\xc2\x2a\x25\x23\xc7\x24\x6b\x98\x5b\x41\xd6\x19\xaa\x18\x9c\xe2\x4b\x3f\x96\x74\x68\x22\xf8\xf0\x93\xfe\x80\x3d\xee\xc4\x7d\x38\xfc\x84\x7b\x12\xb0\x96\xca\xe6\x21\x97\xa4\xb2\x68\x15\xc5\x11\x2f\xd1\x91\xd5\x13\x1c\x67\x93\xb0\x54\xa9\x0a\xaa\x35\x1a\x80\xfc\xab\x8c\x1d\x54\xac\xce\x92\xbe\xe8\xe2\x83\x7f\xed\xa7\xfd\x24\x98\x66\xf5\xd2\xb2\x94\xb4\x58\x67\x63\x96\x84\x04\x46\x0b\xce\xd4\x27\xbc\x9e\x51\xf6\x16\xe8\xcc\x2a\x6e\xd6\x16\xd5\x17\xb3\xaa\x26\x7c\x12\x5f\xf3\x45\x73\x92\x6b\x5e\xd4\xe1\x20\x0f\x13\xd9\xa4\x1a\x4f\x55\x84\x6c\xa7\xe4\x26\x09\x32\x5e\x0e\x33\xb6\xce\x4a\xb8\x8a\x12\x5b\x17\x60\x5f\x67\x25\xd9\x63\xf5\x45\x03\x67\x2b\x8a\xb0\x6a\xcd\xac\x5b\xd8\x71\x3f\x8c\x55\x0c\xb0\x02\x68\xa8\x7a\x2f\xa0\xc6\xcd\x38\x08\x39\x2b\x07\x1b\x1b\x15\x36\xe0\x21\xcf\xb8\xd1\xe8\x5c\x5d\x96\x8b\x73\xe3\xf0\x9c\x07\x44\xad\xca\xd0\x56\xaa\x41\xb9\xa2\x32\x57\xe4\x50\x93\x85\x7b\x04\x37\xe5\x68\x5e\xcb\x87\x26\x32\x32\xb8\x6e\x23\x7e\x82\x40\xa6\x87\x40\x6d\x83\xc3\x88\x24\xb5\xe1\xf6\x1b\x93\x65\x0d\x85\xc4\xca\x87\x3a\x8c\x2e\xc5\x7e\x00\xd2\x55\xb4\x50\x81\xd2\x0a\xda\x1b\x22\x3b\x41\xb6\x0c\x06\xc0\x8f\xc0\xa5\x16\x2c\x08\x08\x87\x69\x45\x23\x2e\x98\x55\xbc\xec\x87\x43\x36\x8d\xc3\xf9\x30\x08\x43\x73\xd4\x73\x89\xb0\x44\xd7\x87\x48\x4d\x62\x2c\x7c\x35\x2b\x07\x88\x0a\xb8\x1a\x24\xb9\x04\x41\xd4\xb6\x2e\x10\x71\x19\x7f\x58\x20\xb4\xde\x34\x7a\x0e\x36\xbf\xd1\xef\xc1\xe6\x37\x72\x09\x02\x03\x97\x0f\x09\xff\x3f\xba\xca\xe3\x6a\x42\xec\xa2\x64\x23\x88\x32\x9e\x44\x7e\xf8\x45\x28\x7e\xf1\xc1\x80\x51\xcd\x63\x41\x93\xb2\xde\xf5\x47\xf8\xd1\x33\xc7\x34\xd6\x09\xac\x13\xbc\x14\x85\xcf\x87\xc0\x8c\xd6\x63\x33\x0b\xdc\x8a\xb3\x60\x50\xfa\xdc\x6c\x4e\xd8\x39\xb2\x0c\x9f\x3e\xb1\xb2\xf9\xbb\x21\xc6\x80\x26\xce\x34\xfb\x71\xe2\xa2\x70\xf1\x49\x4d\x4d\xb1\xc7\x66\x0d\xfc\xa8\xea\x9c\xbc\x6c\x1e\x77\x76\x04\xbe\xbc\x84\xc6\x1b\x1f\x52\x5a\xe9\xe5\xa5\xcc\x51\x06\x81\xc2\x59\x43\xf2\x35\xd8\x04\xe7\xe9\x7c\x92\xf1\x59\xba\x51\x79\xf9\xea\x0b\x33\x78\xc1\x38\x06\x0c\xf4\x4f\x72\x7e\x87\x6b\x6b\x1e\x5f\xfc\x5a\xa7\x51\xef\x2a\xe5\x12\x71\x14\x69\xc9\x63\xe7\x17\x15\x88\x69\x85\xc9\x10\xa8\xa0\x0e\x50\xab\x4a\xc6\x43\x94\x4c\xe2\x01\xaf\x5b\x30\x0a\x83\x5e\xe2\x27\xf3\x92\x20\xfa\x4a\xd3\x59\xc2\x4b\xac\xce\x4a\x04\x39\x68\xd3\x8f\xa7\x73\xe0\xff\xea\xac\xf4\xff\xff\xff\xb1\xa7\x4f\x36\x7f\x60\x3b\x3c\x0a\x52\x76\x34\x4b\xc7\x57\x7e\xc2\xaf\x59\xf9\xf7\x30\x0e\x92\xb8\x7f\x55\x4d\x66\x95\x92\x98\x9e\xba\x49\x7b\x1d\xf6\xfd\x06\x1b\x00\x2f\x29\x8e\xa1\x78\x9a\x29\x5c\x4c\x0e\x6e\x65\x31\x5e\xc9\xc8\x89\xe2\x8d\xfd\xf4\xf0\x26\xa2\x5b\x3a\xf7\x20\x89\x9b\xc4\x1d\xde\x94\x3e\xef\xa5\x1d\x95\x09\xcd\xcb\xe2\xfd\xb8\xef\x87\x1c\xc9\x79\x4f\xd2\xf5\x1e\x71\x10\xa5\x6e\x54\xa9\xa6\xd3\x30\xc8\xca\x25\xaf\x54\xd1\x27\x6c\x00\xc2\xc7\x42\xf2\xac\x54\xa9\x0e\xe9\x7c\x8c\x7d\xf7\xd2\x8e\x7d\x7d\x41\x4e\x9b\xbb\x4e\xe9\xcd\x55\x2a\xae\x91\x9c\xc5\xa9\x3f\x5a\x74\xaf\x6d\xee\x2c\xf3\x47\x1e\x58\x52\xd8\x74\xb1\xe0\x46\xc6\x7e\x8a\xa4\xba\x28\x66\xdb\x2c\x10\x38\x2d\xc8\xb4\x76\xc1\x13\xf3\xa8\x88\x07\x6a\x08\x7d\x9d\x36\x77\x3d\xf6\xd1\xc9\x06\x97\x25\x33\xee\x49\xaf\xc7\xcc\x1f\x91\xb9\xb6\xcd\x1e\x3f\x63\xa7\x31\x3d\x0c\x06\x1d\x4f\xd0\x82\x73\xe9\x50\x55\xf8\xf5\x3e\x94\xe0\xb2\x1f\x34\x04\xb5\x06\xbe\x4a\xcf\x85\x3a\xa8\xba\xbb\x03\x90\xd5\xdb\xf7\x10\x04\x70\x1f\x12\xd9\xdf\x6b\x1d\x37\x8f\xdf\x39\x55\xd4\x0d\xa1\x5a\x37\x57\x69\xe7\xd6\x25\xf7\x6f\xae\xd2\x0d\x7e\x6b\x10\xfb\xb0\x16\x79\x6e\xef\x39\x58\x4b\x40\xe5\x64\xe1\x7a\x84\x99\xf0\x20\xbc\x4b\xc2\xab\xf4\x0b\x02\x48\x19\xbf\x1b\x6a\x25\x64\xeb\x86\x70\x30\xaa\x9b\xa1\xa5\xc0\x86\x5f\xfb\x6a\xac\x08\xfc\x88\x7c\x2f\x14\xb1\x20\x92\xc3\xe2\x99\x32\xd6\x55\xa6\x02\x8f\xa1\x86\xf2\xa3\x3c\x50\x08\xa3\xea\x90\xe6\x7f\xb7\x60\x3f\x3f\xde\x55\x8b\xee\xb0\x59\x51\x25\x4e\x54\x30\x51\x52\x71\x69\x78\x21\x33\xc5\xa9\xb7\xd1\x4f\xd3\x60\x14\x59\xaf\x63\x19\x93\xa8\x2b\x1a\x48\x19\x62\x0b\x4a\x7f\x73\x8b\x05\xec\xc7\x9c\x31\xf6\x16\x0b\x2c\xd3\x6a\x78\x1f\xe2\x59\x02\xe6\xc5\xda\xb4\x3a\xb8\x30\x5c\xcc\x55\xbf\x57\x1c\x0c\xda\xb1\x7e\x4e\x13\x4d\x13\xd5\x0a\x41\x1b\xcf\xa1\x7c\x01\xdb\x42\xd0\x14\x57\x1d\x8d\xab\x91\x0f\x06\x56\x3c\x37\x4c\xbc\x99\xe3\x1d\xcd\x0a\x42\xec\x61\x1f\x45\xfa\x55\x09\xd1\x05\x36\x27\x62\x2f\x57\xbd\x55\x23\xaa\x4a\xb3\x97\xc6\xe1\x2c\xe3\x6e\x86\x31\xc3\x1b\xc8\x39\x65\x90\x22\xb4\x56\x52\xfa\xa9\x1a\x6b\xf6\xe2\x59\xc6\x36\xab\xcf\x6f\xd9\x10\x92\x3e\xb3\x6c\xec\xa3\xe7\x5c\x76\x13\x6f\xf8\xc9\x48\xbe\x6b\x2c\x1e\xa2\x6d\xfc\x3f\x04\x1e\xef\xf3\x72\xc5\xf4\xf8\x80\x4f\x87\x11\x2f\x87\x41\x9a\xd9\xc1\x66\xac\x4d\x87\x02\x8f\x5d\x89\x3f\xd9\x3a\xdb\xf4\x18\xa4\x51\x0a\xd2\x4c\x6d\xff\x15\xfb\x91\x45\xe2\x6c\xac\x37\x44\xf9\x15\xfc\xab\x76\x42\x54\x3d\x0f\x2e\xa8\xd1\xf9\x95\x95\xbf\x1e\xfa\x99\xc6\xd3\x72\xc5\x58\x22\x66\x12\x93\x42\x3f\x8a\xa9\x98\x82\x15\xda\x80\x8d\xb9\x7f\x1d\x84\x90\x59\x2e\x8a\x07\xbc\x94\xb2\x59\x12\x56\xa7\x7e\x92\x72\x63\x79\x09\x4f\xe3\xf0\x1a\xc4\x9f\x60\xf5\x98\xc5\x1e\xe8\x1d\x8d\x67\x02\xd4\x90\x4e\x6c\x03\xfc\xc6\x4a\x25\x23\xa7\x77\x16\x1f\xf9\xf4\xec\x66\x31\x88\xc4\x62\xf9\x30\xd6\x4a\x68\xd2\x6f\x84\x8f\x13\x3d\xa8\xfa\xd0\xdd\xda\x1a\x7c\x2c\x6c\xa3\xd8\xe0\xf4\x34\x6e\xf6\xc0\x76\x08\x86\x30\x8e\x4a\x16\x1b\xec\x76\xfa\x22\x89\x27\x58\x51\xf6\x6d\x54\x85\x05\xaa\xca\x93\x59\x9a\x75\xa2\x01\xd6\x96\x03\x7c\xfa\xa4\x3b\x31\xb4\x47\x45\xa3\xaa\x0d\x44\x93\x96\x20\x65\x3e\x95\x12\x6a\x30\x56\x4a\x30\x32\x59\x10\xec\x16\x3e\x4b\x6f\xa7\x5c\x87\x09\x0f\x41\x6d\xea\xb1\x41\x12\x4f\xc9\x00\x2d\xe4\x91\xb2\x80\x51\x63\xa8\x33\xe2\x8e\xac\x6b\x90\xa3\x05\x8d\x59\x71\x63\xc9\xad\xe8\x9a\x72\x3a\x32\x6d\x6a\xcd\xdc\xee\xb1\x9f\x9e\x26\x7e\x10\x4a\x73\xdc\x2d\xf3\xbc\x14\x2e\x07\x24\x1d\x3e\x18\x1e\xab\x3a\xe7\x6e\x6d\xb6\xc1\x36\x25\xd6\x71\x87\x10\x57\x03\xda\x8b\xcb\x5e\x2d\x89\x4d\x32\x7e\xbb\x1f\x4a\x26\x94\x3f\x2e\xec\x51\xe7\x86\x33\xcc\xdd\x66\x53\x8a\xf2\xe8\x5c\x72\x77\xb6\xe2\x32\xff\x04\x5e\x34\xc0\xc2\x1b\x0b\x9d\xfa\x89\xbd\x50\x03\xad\x53\x9c\x64\xb5\x10\x03\x19\x6b\x74\xa3\x5a\x7a\x2c\x50\x6a\x12\x7d\x64\x8c\xf6\x9f\xd1\x01\x63\xb3\x29\xc5\x3d\xb4\x7a\x9b\x4d\x3f\xab\x8b\x8d\x0d\xad\xb7\xb1\x0f\x8f\xbe\x4c\x15\x84\xdc\x16\x56\x67\x62\x04\x0d\xbd\x59\x94\x8e\x83\x61\x56\x86\xc9\x1b\xf7\x0b\x7b\x35\x6e\xe4\xda\x9a\x73\x94\xcf\x9f\xa0\xbe\xaf\x54\x52\x65\xc6\x91\x15\xa5\x9f\x3e\xb1\x15\xe7\xb2\xcb\xb2\x0a\x18\xb4\x55\xdc\x3b\xa3\x66\xa3\xe6\x62\x45\xab\xd4\x15\x3f\xc4\x41\x04\x98\xc9\x98\x72\xee\x48\xad\xad\x51\x53\xe9\xc8\xb8\xb1\x89\xfe\x92\xa2\xa1\xec\x75\xbd\x61\x5c\xa7\x82\xd8\x93\xb9\x3c\xcf\x0e\xa2\x46\x92\x46\xa1\x71\x62\x46\xca\x71\xef\x83\xfd\x54\xc6\xbd\x0f\x52\xd7\xc1\xb6\xcd\x5f\xe5\x0a\xab\xb3\x1c\xd9\x40\x85\x48\x2f\x88\xce\x72\x1e\x83\x50\x03\x43\xd2\xfa\x1e\xeb\x19\x12\x54\x9e\xa2\xd1\x1e\x85\x58\xe4\xa2\x4e\x90\xcd\xd1\x54\xb6\x2a\xc1\xe5\xc3\xa1\xed\x29\xa4\x62\x24\xeb\xab\xd5\xd8\x61\x36\xe6\xc9\x4d\x90\x72\x4f\x54\xe6\x01\x46\x8a\x03\xcd\xd7\x44\x19\xda\x41\x92\x49\x3f\xe1\x60\x2b\x03\xc3\x58\xbd\x63\xa5\x4f\x9f\x58\x8f\x29\x49\x95\x74\xcc\xa4\xbb\x2e\xab\xdb\x61\x87\xfc\x8a\x6b\x34\x5b\x96\x47\xde\xae\xd8\xab\xa8\xb3\xc7\x98\x6f\x06\x26\xea\xc9\x1f\x66\x39\xbf\xe6\xc9\x5c\x85\xae\x2b\x07\x19\x9f\x14\x05\xad\xd3\x8a\x1f\x09\x60\xac\xd9\xa3\xb0\x75\x86\x69\x05\x9d\xe0\x1c\xee\x26\x25\x14\xc2\xb8\x44\xfa\x02\x30\xe9\xc5\x82\x9e\x55\x60\xe1\x2b\xff\xdf\x20\x0f\x68\xa8\xa3\xe4\x9b\x11\x0c\x7b\x6e\x69\xaf\x62\x61\x33\x6a\x2d\x4e\xb9\x0f\xa0\xd7\xbf\x7b\x95\x82\x95\x61\x7d\x8f\xea\xe5\xcc\x65\x2c\xb9\x98\x49\x83\x83\xe5\x0a\x9c\xbb\x8a\x0b\x56\x2d\x17\x2a\x06\xa6\x0f\xf4\xac\x00\xa7\xf8\xd7\x8d\x76\x63\x5d\x44\x79\x4c\x8a\xee\xa1\xee\xd1\xca\xf9\xfd\x47\xd2\x4b\x3b\x57\x5b\xe5\x95\x86\xaf\x1b\x92\xd8\x35\x1a\xe8\x39\x50\x5d\xf8\xb0\x01\x57\xe1\x73\x73\x79\xdf\x9f\x6c\xfb\x8f\x3a\xea\x97\x6a\x25\xed\xa6\x2f\x7e\x98\x4e\xfa\xb6\x9f\xfb\x1f\xe9\x5c\x62\xdb\x4d\x81\xd8\x0a\x06\x18\xfb\xa9\xf2\xed\xa1\x7c\x07\x98\x98\x3f\x3f\x44\x16\xef\xc7\x37\x3c\x69\x43\x36\x0f\xe5\xf8\x8e\xd5\xed\x42\x8a\xde\x28\x70\x7e\xa9\xb6\xfd\x8f\x92\xae\x6c\x4c\x95\x1a\x12\x35\x84\x6f\xc1\xc6\x66\xd1\xfa\x1f\x30\xc1\xc5\xcb\xb0\xc1\x60\x0f\x5a\x0c\x12\x18\xd3\x7a\xbc\xee\x01\x3a\xfc\xad\xe9\xb4\xfc\x16\x00\xfb\xf4\xc4\x63\x1b\x8b\x76\x01\xf8\x0f\x37\x69\x87\x34\x78\x26\xd7\x3f\x69\xe8\x8c\x0f\xa4\xb4\xc8\xf1\x13\x30\x6c\x2e\xe9\x6f\x63\x24\xe0\x9c\x2f\x90\x1c\xce\x08\xb5\xaa\xb6\xa4\xf4\x0f\xf7\xdd\xa6\xba\xb8\x1f\x15\x83\x46\x1c\x9b\xed\x09\xa0\xaa\xbe\x44\x1d\xce\x8c\xcd\xba\x4f\x3c\xe6\x54\x37\x68\x4b\x5c\xca\xe2\x69\x6e\x5b\xd3\x34\x6b\x3b\x13\x55\x30\x71\x87\x37\xda\x3c\x6c\xb2\xb9\x06\x36\x3e\xcc\xc5\x6c\x50\x36\xe4\xe6\x44\xea\x6a\x42\xe2\x50\x6c\x8b\x43\x51\x2a\x31\xf9\xd5\xd3\xc0\xad\x13\x88\x45\xb5\x7f\xa8\x6a\xe2\x5b\x57\xdb\x98\x3a\xea\x29\x3b\x2e\x43\xe1\xb1\xc9\x5b\xb8\x2b\x82\x56\x02\x4a\x55\xb1\xe6\xa4\xb6\x5c\x15\x8f\x25\x3f\x63\x98\xe2\xab\x91\x8c\x93\xa9\x37\x48\x60\x00\xfa\x6b\x05\x97\x5f\xa1\x68\x77\x0d\xfa\xee\x22\x2e\x00\x10\x35\xa9\xb3\xee\xea\x36\xd9\x6c\x89\x0f\x5b\xe6\x21\x15\x5d\xc3\xbf\x2b\x08\x30\xdd\xb1\xf8\xea\x76\x0b\x00\x85\xea\xa2\xd3\x7f\x40\xa7\x6a\x39\xc6\x95\x5e\x10\x4b\x43\x79\x39\x22\x6e\x81\xf4\xb9\x14\x66\x97\x22\x36\xec\xe7\x37\xc1\xf0\x4a\x71\x28\x11\x15\x66\xb8\x84\x56\x44\x25\x93\xb7\x3d\x25\x31\xcc\x30\x4e\x26\x75\xf0\xa1\x34\x47\x25\x1a\xc7\xf0\x8f\x71\x70\xc7\x96\x5d\x41\x25\x65\x87\x7f\x0b\x78\x3f\x41\x5e\x46\xdc\x1d\x51\x9d\xa9\xdc\x70\x96\xb5\xac\x39\x62\x61\x7c\x14\x57\x42\x52\x50\x41\x8b\x4b\x9c\x3e\x70\xd3\x9d\x28\x74\x4e\xa9\x25\x51\xa5\x03\xe6\x54\x61\x78\xaa\xd6\xdd\xef\x36\xbb\xa7\x06\x29\x68\x5d\x72\xcd\xf1\xac\x89\x88\x63\xb4\x68\x92\xce\x51\x54\x47\xd5\xaa\xc0\xf0\x7c\xae\x17\x5c\xb4\x25\xd3\xb3\xd1\xbc\x33\x39\xdc\x74\x5b\xb7\xb5\xb6\x96\x3b\x14\x0b\xf6\xa6\xe0\xc8\x60\xe7\x59\x32\x57\x62\xb9\x82\x8d\x1c\xf0\x7e\x3c\xe0\x67\xc7\x7b\xf9\x73\x40\xf8\x93\xf5\xc1\xc3\xa5\xcc\xad\xb0\xeb\x1c\xac\xf9\xfc\xa8\x2f\xee\xc6\xd9\xf1\x1e\x98\x1f\x19\x20\xd5\xc6\x9d\xb2\xb0\x5c\x52\x64\x61\x77\xb5\x54\x14\x37\x88\xad\xb3\x52\x77\x95\xf5\x95\xf7\x40\x8f\xd3\xfc\x06\x55\x26\x5a\x94\x50\x4c\x98\xb2\x30\xb8\xe2\xe1\x9c\x81\x07\xd7\x80\xf5\xe6\xcc\x8f\x80\xfc\x83\xa0\x84\x3c\xe9\xf3\x28\xdb\xe0\x51\x3f\x16\x24\x58\xb5\x54\x59\xb0\x2f\x38\x47\xbe\x40\x00\x00\x54\xb8\x9a\x23\x9a\x12\x5f\xf1\xb9\x99\xc5\xa1\x10\x8d\xc0\xf5\x3c\x46\x92\x97\x05\x51\x3f\x9e\x4c\x43\x9e\xf1\x9a\x94\x7c\x69\xf4\xab\xbe\x64\x71\x3e\x88\x8c\x06\xf5\x4a\x7e\x67\x0a\xce\x96\xb1\xa7\xce\xbc\x54\x51\x5e\x58\x92\x8f\x58\xe4\x1c\xfc\x5a\xe9\x9e\xb1\x5c\xa9\x6b\x81\x73\xd6\xa2\xe9\x54\x2c\xc0\xbb\x08\x0e\x52\xf2\x64\xe0\xaa\x07\x71\x23\xd9\x34\x09\x62\xc3\xc9\x10\x13\x83\xd1\x3c\x82\x14\xed\xb3\x3c\xc8\xce\x13\x80\x11\x61\xed\x0f\x40\x50\xbe\x8a\xf6\xa9\xc8\x87\x88\x32\x5f\xf7\x7c\xa2\x1b\x43\xaa\x20\xfd\xfe\x6d\x24\xdb\xd3\x3f\xd7\xd6\x98\x5f\x35\xa8\x8e\x5e\x55\xbf\xc6\x7e\x55\x51\x19\xbd\xaa\x7c\x47\x7d\x3c\x92\xf0\x4d\xfc\xb5\xb6\x66\xb1\x88\x55\x7a\xef\x7a\xf8\xc7\xa2\x80\x53\xa7\x89\x0f\x71\x2a\xe3\xe8\xc0\x8f\xfc\x91\x76\x6f\xa5\x10\xd2\x93\x69\xa6\x6d\x58\xba\xa6\x73\x6e\x0a\xc6\x2a\x93\x69\x56\x8e\xf8\x2d\xfd\xf9\x07\x7c\xb2\xe4\x58\x0d\x72\x88\x2d\x35\x95\x43\x75\x3a\x9b\xa2\xf6\x2f\x8e\x40\x09\xc0\xe5\xc4\xfc\x8c\xf9\x4c\x70\xa5\x85\x6e\x4f\x34\x75\x35\x39\xdb\xb7\xbf\x30\x9a\x0c\xf9\x2a\xe0\x44\xcc\xb6\x95\x1c\x2c\x98\xeb\x10\x61\xc4\x66\x85\x6c\xcd\x1a\xb2\x05\x01\x62\xbc\xa2\xd4\xce\x1e\x58\x6d\xf6\xfc\xfe\x95\x45\x5a\x80\x4d\xfe\xde\x90\xf9\x51\x0c\x32\xa4\x4c\x75\x2c\x90\xbd\x80\x0b\x9a\x5e\xdd\xf0\x52\xc2\x59\x9a\x05\x61\x28\xe7\x00\xc6\xce\xcc\xc8\xa4\x90\xf0\xeb\x20\x9e\x09\x48\x72\x0f\xf3\x15\xcc\x19\x8f\x06\x6c\x36\xc5\x28\x54\x37\x3c\x48\x06\xf8\x86\x54\xd9\x8b\x60\x34\x4b\x38\x8b\x67\x90\xef\x4a\x75\xd4\xe3\xa9\x60\xc8\xe7\xe2\x8e\x61\x04\x05\x8c\xa6\xa0\xaf\x1b\xc1\x6a\xc5\x31\xae\x72\x64\x91\x92\xae\xd2\xf0\x36\x6c\x8b\xb7\xe9\x7b\x41\x68\x9d\x3a\x15\x6d\x15\xc6\xc4\x96\xdd\x17\x11\x6a\x4e\xd5\x82\x2d\x70\xa6\xe1\xa8\x16\x0b\x1a\x28\x6b\x29\xb5\x75\xa6\x9a\xd1\x79\x6f\xbe\xec\x66\x90\xe7\xb6\x71\x21\x22\xce\x07\x29\xf3\x0b\x17\xa0\x55\x8f\x11\x43\x17\xb6\x4c\x46\x22\x20\x48\x53\x6e\xcb\xfc\x9d\xc1\xff\xe4\x42\xca\x59\x32\x5b\x90\x5b\x34\xb7\x2c\x78\xf0\xb4\xbc\x49\x26\x70\x34\x4e\xea\x38\x8e\xc1\x9f\xa4\x2f\x28\x86\x10\x55\x97\xaa\xb4\xaa\x7b\x52\xa3\xd3\x3e\x0a\xc8\x18\x61\xdf\x8c\x79\xb8\xb3\x28\x9c\xf7\x9d\xc3\xb0\x62\x7c\x10\x9e\xa8\x04\x50\xd6\xcd\x45\x8b\xd2\x7d\xaa\x53\x1e\xda\x71\x9c\x82\xb4\xd9\xa7\x54\x38\x86\xa4\xd7\x68\x2e\x3b\x77\x31\x8a\x6c\x58\x61\xc3\x88\xf4\xc6\x08\x77\x47\x73\x6c\x51\x84\x6a\xa6\x68\xbc\x24\x7f\x56\x1e\x82\xc5\xf4\x44\xb5\x46\xc8\xea\x93\x14\xb3\xd8\xff\x30\x08\x33\xb1\x5a\xc3\x06\x85\x4f\x8a\xc4\xb9\xe2\x3b\x6c\x88\x6c\x6b\x48\x71\x97\x62\xc4\x28\xce\x82\xe1\x5c\xc2\x35\x2d\xe7\x4d\x0d\xfe\x2b\x62\xbe\x19\x20\x21\x5f\x7a\x23\x50\x9a\x84\x7f\x4e\x2e\x2b\x4b\xf2\x3b\x9b\x2e\x95\xcc\x2a\xc9\x07\x3d\x31\x75\xfd\xa7\x8e\xb0\xe2\x3e\x24\xf5\xa2\x8f\x54\xdd\x3e\xbd\x75\xe7\x37\x55\x72\xb6\xa2\xee\x7e\xe8\xe6\x93\xcb\x45\x67\x29\xdf\x39\x3c\x60\x0d\xb6\xb2\x52\xe0\x97\x57\x52\xdc\x08\x58\xc6\xdc\xd8\xa6\xcc\x05\x9f\x6c\xa7\x4e\x01\x1a\x23\x93\x6b\x66\x21\x57\x99\xba\xdb\x7d\x18\xd5\x5d\xa7\xae\x09\x28\x2a\x23\x72\x65\x99\xa5\xb7\x1f\xf2\x24\xb3\x72\xd4\x20\xee\x4a\x31\xbb\x77\x80\xce\x49\x2f\x4f\x0f\xf6\x9f\x2b\x8c\xdb\x3c\xda\x13\x34\x26\x51\x22\x82\x1d\x39\xf5\xaf\x78\x84\x88\xee\x20\x1e\xf0\x24\x0a\x7e\x4f\x20\x5e\x0a\xf4\x38\xce\xb2\x69\x5a\xaf\xd5\x46\x41\x36\x9e\xf5\xaa\xfd\x78\x52\x53\xb5\x8c\xbf\x7a\x61\xdc\xab\x4d\xc0\xa4\xa3\xb6\xbf\xd7\xee\xbc\x3e\xe9\x7c\x69\xf3\x21\xf7\xb3\x59\xc2\x37\x06\x3c\xe3\xfd\x2c\xad\xc9\xfc\x9d\x1f\x30\xe8\x24\xfa\x61\x0f\x94\xaf\x1e\x21\xea\x88\x8f\x80\x03\x49\xe1\x2a\xa2\x19\x7a\xca\x8e\xc6\x71\xc4\xd3\x7a\xd1\x34\xc0\x8f\xf2\x43\x8a\xff\x6e\xa0\x3f\x65\x2d\x48\xd3\x19\x4f\x6b\xcf\xbf\xff\x36\xef\x08\x2d\x89\xb7\x97\x38\x1f\x93\xbc\x9c\xf9\xca\x67\x53\x86\xd8\x8b\x93\xea\x2c\xe5\x49\x73\xa4\xad\xe0\x59\xb9\x3c\xf3\xb5\x48\xb1\x19\x0d\x12\x31\xff\xa7\xd5\x92\x14\x3f\xb3\x4f\x9f\x58\x51\x95\x6f\xaa\x4f\x54\x1d\x08\xcc\x6d\x56\x3a\x88\x7b\x82\x68\x3a\xf1\x87\x7e\x12\xe8\xae\x9c\x5a\xed\x71\x12\x03\x79\xd9\x28\x2c\xb6\x00\xa6\x6a\xe5\x74\x74\xea\xce\xd3\x62\xe5\xa9\x5a\x5b\x63\x25\x81\xdd\x4f\x04\xbd\x55\x12\x2f\xb6\x5d\x61\x6b\xe9\x29\xed\x25\xf1\x4d\xca\x13\x36\x0c\x12\x9e\xb2\x69\x3c\x45\x11\x00\xea\x07\xc6\xb4\xe3\x70\x24\xd9\x5e\x67\xf3\x09\x30\x4c\x7b\x9d\xcd\x4d\x0a\x61\x52\x90\x0b\x58\xee\xd5\x51\x3c\x85\x29\x1d\x46\x2f\xfd\x74\xdc\x86\x8e\xca\x36\x23\xb3\x78\xdb\x34\x74\x4e\x93\x60\xc0\xa3\x4c\xc1\xa5\x78\x39\x78\x10\x83\x21\x9b\xa5\x41\x34\x62\xa3\xb8\x1c\x55\xd0\x01\x06\x96\x21\x61\x05\xac\xbe\x20\x7a\x86\xb3\x30\x44\xa7\xce\x84\x87\xb1\x3f\x58\xb2\x8e\xdd\x98\x9c\xde\x8f\xa1\xe6\x99\x18\x40\xac\xe8\x0b\xd6\xf2\x22\x48\xf8\x30\xbe\xbd\x67\x2d\x72\x6b\x7c\x36\x0a\xae\x79\xa4\x37\x85\x5f\x0b\x5c\x18\x60\xee\x99\x5b\x41\xf9\x70\x41\x86\xbf\xe5\xbd\x57\x41\x86\xa5\xb8\x53\xcd\x3e\xe4\xd4\xc2\xfb\x08\xc6\x31\x7e\x3f\x43\xf7\x55\x3c\x8b\x62\x7f\x83\xc3\x13\xda\xf5\x84\xfb\xa1\x33\x0a\xdd\xf7\x38\xca\xd0\x27\xde\x90\x26\x61\xad\x1b\x0c\x26\xc1\xd3\x54\x7a\xc0\x0a\x54\xca\x7a\xb3\x2c\x43\x52\xcc\x81\x66\x90\x76\xd4\x8c\x8f\x68\xa8\xce\x35\xc4\x37\xb9\xd6\x51\x0d\x08\x96\xb8\x94\x02\x51\x95\x38\xec\x4b\x21\xdc\x4e\x82\xc3\x13\x07\xbe\xe4\x68\x45\xc7\x11\x06\x05\x67\x2b\x9a\x85\xb4\x4c\xd7\xa7\x54\x55\x11\x67\x07\x6f\x80\xa3\xf7\x1b\xf1\x8c\x50\x11\xf4\x29\x8f\x82\x21\x25\x2b\xbc\xab\xb4\x24\xb0\x0f\x5d\x24\x16\x43\x8b\xee\xcd\x4d\x96\xc6\x13\x2e\xd8\xd2\x14\x25\x4c\x29\x82\x1c\xa3\x47\x08\x98\x17\x75\xad\xba\x38\xe1\xbc\x08\xf1\x82\x83\xf3\x69\x82\x7b\x2a\xb1\x7b\x6d\x3a\x0b\xc3\xda\xd3\xef\x7f\xb0\x66\xae\x93\x6a\x1a\x47\x14\xdd\xd1\xc4\x05\x92\x37\x4a\xba\x5b\x8a\xb3\x05\x77\x6b\xc1\xb3\x17\xf5\xc3\xd9\x00\x39\xc9\xc7\x4c\xa1\x2b\x4f\xc6\x02\xa4\x5f\xd2\x1f\xd7\x3e\x8c\x85\xf9\x43\xf1\xfd\x6f\x21\xfa\x92\xef\x82\x19\x02\x43\x65\x2e\x29\xcc\xbd\x4e\x61\x2d\xec\xd4\xa1\x2b\x9a\x4e\xf9\x43\xf1\xb1\x4a\x34\xad\x1c\xaf\xb5\x73\x78\x50\xba\x3f\x14\x96\x36\xb7\x7e\xa9\x82\x45\xe6\x70\xba\xcc\xa1\x2b\x26\xac\xab\xe5\x1e\x4a\x55\x13\xa6\xa0\xcf\xb8\xa4\xd5\x04\x41\xb6\x1c\x63\xab\x1e\x2e\x25\xd0\xec\xe8\xa6\xf8\xf9\xd1\x30\x4e\xfa\xfc\x98\x0f\x13\x8e\x49\xd9\x29\x1e\x93\xf1\x55\xb5\x28\xac\xea\x74\x50\x98\x13\x34\x5f\xd1\x9d\x85\xcd\xcc\xea\x79\x14\x09\x4a\x64\xd3\x42\x0e\x7e\x51\x87\xe6\xbc\x1c\x42\x53\xcf\xd0\x6e\xe4\xce\xf1\x8a\xcf\xf7\xc9\x42\x46\x4e\x4f\x7d\x52\x75\xf3\x95\xcc\x76\xe6\x2c\xbe\xd5\xe3\xaa\x1a\x6a\xcf\x8c\x00\xb2\x76\x04\x60\xb6\x5d\xa4\xed\xce\xd9\x33\x58\x6d\x20\xbe\x95\xd2\xd9\x98\xc8\x70\xe7\xf0\x40\x29\xca\xc6\x06\x62\xb4\xa3\xdc\x25\xe0\x01\x62\x96\x23\x2a\xb4\xf3\x97\xca\x54\xff\x57\xdc\xcd\x4d\xcf\x65\x91\x54\x4f\x18\x7d\xe3\xfd\x30\x03\xc9\xd2\x8d\x29\x08\x90\x65\x88\x68\xdd\x76\x79\x5d\xa9\xa1\x2d\xcd\x55\x76\xb4\xa6\x4a\x6f\x9a\xab\x68\xa8\x75\x8a\x34\xa8\x52\xcd\x69\xaa\x26\xbf\x28\xe8\x92\xda\xdd\x4f\x9f\x0a\x0c\x23\xd4\x3e\x7a\xac\x24\x83\x64\xf8\x59\xc6\x27\x53\x88\x09\xaf\x44\x3c\xaa\x17\x1d\xfa\xe2\x66\x1c\xa7\x5c\xa5\x77\x66\x83\x98\xa7\xa4\x5b\x19\x05\x11\x6a\x55\x80\xda\x42\x42\x00\x9b\x57\x59\xe7\x76\xca\xfb\x19\x47\x11\x3b\xe9\x6b\x28\xe5\x59\xa9\xbb\x2a\x06\xc4\xf6\xd0\x14\x8b\x8d\x18\xb6\xa5\xee\x6a\x41\x28\x2a\x81\xd6\x75\x5e\x07\x82\x64\x91\xb1\x88\x9d\xc3\xc1\xf1\x0e\x5d\xa8\xd6\xad\x14\x4b\x63\xa1\xd1\x2b\x3e\xcf\x85\x91\x84\x88\x00\x89\x1f\x0d\xe2\x49\xb9\xa2\x82\x1c\x94\x9f\x7d\x5b\x91\xe6\x04\x4f\x3d\x7d\x99\x73\xb6\x0f\x99\x2b\x39\x57\xae\x97\x05\x32\xf5\x02\xe1\x39\x92\x1f\x11\xbf\xcd\xec\xfb\xa6\x74\xb5\x2a\x62\xa8\xae\xa3\x2e\x8e\x24\x1d\xa4\xbd\x9e\xfd\xe8\x98\x3e\xd9\x2c\x3f\xd1\xaa\x2b\x8f\x51\xbd\x29\x59\xab\xfc\x42\x32\xd7\x42\xc8\x52\x78\x60\x7a\x79\x2c\x62\x10\x69\x21\x88\x8d\x6a\x92\xbb\x0e\xa1\x2a\x18\x1e\xa4\x80\x0d\xd9\xf1\x7d\xd4\xa6\x64\xae\x94\x5d\x35\x4d\xa2\xec\xe0\x32\x83\x10\xad\x2c\x9b\x7f\x9e\xc3\x59\xd2\x69\x8e\x78\xac\xe4\x8e\x05\x3c\x71\xaf\xf9\x6d\x76\x14\x4f\x0d\x01\x5c\x31\xe4\xf2\xf1\xf7\xc1\xea\xdc\xe8\xc2\x90\x37\x2d\xe8\x59\x62\x3a\x3a\x50\x8b\x74\x9d\x60\x18\x29\x23\xb6\x97\x8e\x0e\x8f\x4a\xaa\x6d\xfe\x80\xfc\x01\x15\x86\x16\x99\xc5\x57\x39\xc1\xbb\xf3\xc9\x98\xb6\x13\xa6\x51\x46\xb8\xa6\xa1\xec\xc2\x7c\x08\x45\xb3\xfc\xee\x3e\x09\x7c\xc2\xaf\x79\x92\x59\xd0\x2f\x94\x72\x17\xc9\x90\x0d\x67\x13\xd9\xc9\x30\x89\x27\x39\x0d\x30\x3a\x91\xec\xeb\x27\xcd\xbd\x62\x46\xb8\xa5\xb7\x9c\x34\xde\xd3\x24\xee\xf9\xbd\x70\xce\x26\xfe\x15\xea\x54\xd8\x44\xdc\xa0\x84\x87\x81\xdf\x0b\xb9\xca\x4e\x5a\xab\xb1\x2b\xce\xa7\x98\x42\x39\x0c\xd2\x8c\xc5\x43\x0c\x5d\x7a\xc3\x4b\xd7\x9c\xa5\x9c\x83\xfc\x3f\x15\xfc\x46\x1c\x9d\x64\x71\xe2\xa3\x28\x80\x6e\xa6\x4c\x4f\x72\xc3\x31\x3d\x89\xb4\x08\xcd\x62\xf6\x04\x38\x4f\xea\x8c\x7c\x53\xaf\xa2\xf8\xa6\x6a\xbe\xd9\x59\x2c\x6d\xbe\xfc\x30\x84\x28\x10\x92\x8d\xd3\x8b\xae\x2a\x94\x2c\xfd\x4d\xa8\x0d\xc9\x48\x74\x1f\x4f\x8c\xf7\x55\x40\x73\x51\xdf\x26\xa4\xdd\xde\x8d\x76\xd4\xbf\xd9\x93\x39\xc2\x80\x87\x99\x0f\xfe\x2b\x58\xba\xa1\x6b\x5a\x26\x2d\x50\x6f\xf1\xf5\x23\x15\x00\x96\x8d\x62\xaa\xbe\x40\xed\x40\xd1\xa5\x8c\xf3\x70\x2f\x62\x51\x74\x20\x41\x81\x35\xd8\xb9\xd3\x4d\x15\x84\xd8\x90\xdd\x16\x23\x17\x82\x3f\xfd\xd0\xef\xf3\xc2\x37\x10\x02\xd2\xe7\x10\x0e\x3d\x86\xb9\x00\xf4\xb9\xec\x41\xf9\x3b\x90\x33\x73\xfa\x43\x11\x39\x5d\x2b\x2b\x69\xf2\xbd\xb6\x46\x06\x99\xc5\xe6\x31\x05\x9f\x25\x91\x44\x61\x28\x51\xde\x89\xc1\x24\xf1\xca\x3c\x8d\xa4\x2c\x44\x85\x8d\xca\x62\x58\x0e\x72\xea\x82\x14\xda\x4c\x33\x24\x8e\x54\x15\x88\x20\x25\x21\xb2\x11\x06\x57\xdc\x62\xa1\x65\x68\xb1\xb1\x9f\x92\x11\x0e\x0b\xa0\x11\x65\xae\xcb\xd3\x43\x0e\x4a\x3e\x3b\x79\x59\x32\x4a\x0c\x7a\x78\x19\xe1\x63\xd0\x37\x5e\x0e\xcb\x54\x16\x92\x00\x5f\x1f\xc3\x83\x9d\x85\xf8\x62\xbd\xcf\x64\xcc\x8a\xfc\x43\xd1\x39\xb4\xea\x21\x0f\x61\xda\xdc\x58\xa8\x5f\x72\x12\xb6\xd1\x93\xa3\x07\xb6\xf8\x6a\xeb\xb9\xb1\x69\x24\x25\xc9\xb0\xdf\x9e\x2b\x3e\x87\x3c\xfd\xf9\x81\x31\x05\x01\x37\x9e\x0a\x19\xbc\x5b\x2c\xaf\x92\x4b\xa6\x6c\x32\xbb\xce\xb3\xe7\x30\x38\x55\x82\x8f\xf8\xe7\x9e\xc7\x0b\xcd\x32\xf8\xf5\x22\x1c\xe9\x9e\x00\x13\x4f\xea\x1e\x04\x45\x49\x48\x45\x76\xa0\xec\x9d\x75\xef\xeb\x6c\xd3\x6e\x2a\x9b\x55\x2d\x73\xc3\xfc\x10\x1a\x65\xc9\x16\x5b\x7f\xe9\xa3\xdf\x5d\xa8\xa8\xfe\x7c\xcc\x54\x20\xca\x2c\x90\x12\x51\x4a\x33\x40\x21\xd8\x22\x88\xa4\x80\x9e\xc2\x7d\x53\xe0\x70\x92\xd8\xd8\x82\xb6\x62\x5d\xfc\x43\x4e\x89\x13\x9a\x34\x47\xa5\x80\x88\xee\xff\x21\x24\x4d\x2b\xfa\x0f\xe2\x69\xca\x7d\xf5\x37\xaa\xfe\xeb\x50\xb5\x29\x69\xfe\x2f\xc0\xd6\xf2\x56\xc9\x8e\xd4\x08\x7f\x0a\xbe\x46\x61\xb8\xec\x41\x6a\x33\xa9\x9f\x73\x55\x72\xe1\xec\xc6\xff\x11\x8c\x2b\xf1\xc1\x9f\x86\x74\x8b\x37\x7b\x39\xda\x45\x1d\x26\x01\xc1\x3e\xca\x50\xb4\xa0\x51\xcb\xef\x5f\x69\x21\xc4\x28\x2e\x6f\x6c\x2e\xaa\x4a\xa9\x8f\xac\xda\x9b\x39\x59\x84\x34\x4d\x69\x53\x62\x9c\x27\xae\x20\xa2\x3f\xe6\xfd\x2b\xc1\x87\x28\x51\x90\xcd\xf5\xd8\x1d\xac\x37\x90\x79\xb2\x2d\xff\xed\x31\x1a\x0d\x06\x5a\x72\xe2\xb2\x1a\x66\x54\x08\x05\x5c\x7f\x30\x00\x91\x8e\xb2\xb4\xb2\x34\x7c\x9e\x23\x59\xd2\x50\x87\x90\x2c\xc5\xca\x90\xca\xc2\xbe\x1d\xe5\xa0\x97\x93\xfb\x14\x78\xa4\xe7\x17\xf5\x24\xbf\x0a\x8c\xf5\xf7\xa7\x2d\xa4\xa8\xfb\x87\xaf\xc5\x65\x40\x53\xc8\x72\x05\x51\x89\x0a\x45\x52\x90\x16\x8b\x0c\x37\x2d\x61\x94\x61\x9e\xe9\x28\xe2\x0c\x23\x5b\x53\x16\x75\x67\x0a\x0a\x66\x51\x8f\xb2\x37\xe6\xdf\x35\x6d\x40\x4c\xc3\x5a\xe7\x6a\x45\x4d\xd9\x18\x30\x7f\x5e\x0d\x0a\xd5\x5c\xa3\xc1\x9d\xbb\xb1\x5d\x16\x1a\xfe\x16\x0d\xc8\x0a\x21\x27\xcb\xf2\xd3\xd9\xd8\xb4\x70\x84\xfc\x93\x86\x26\x68\x94\x97\x5b\xcb\xe1\xe1\xcb\x5b\x9c\x21\x3c\x43\x99\x53\x33\x0f\x50\xc7\x7c\xd1\x35\x19\x5c\x02\xbc\x65\xa0\x59\xbe\x48\x39\xa1\xe2\x35\x15\x66\xcd\x43\xe1\x74\xbd\x50\x64\x2d\x4d\xd9\xe8\x5d\x02\x39\x65\x2e\x9d\x88\x23\x06\x91\xd6\x72\x46\x2a\x3e\xfd\x37\x15\x62\x56\xbb\xa9\x4e\x65\xa7\x12\xd9\x25\x56\xf6\xba\x51\x5c\x67\xa3\x58\xfd\xc0\x34\x75\xf8\xaf\xfa\xa8\x32\xd2\xa9\x3f\xa9\x88\x52\xcb\xc1\x3f\x9e\x89\x40\xeb\xf4\x6f\x37\x92\xf0\x91\x1e\xb0\xa6\x9d\x4f\xa1\x2d\xc3\xa3\xcd\xbc\x35\x83\xac\x76\xe4\x67\xe3\x76\x3c\x40\x7b\x4e\x00\xae\xa8\xd7\xf3\xa3\x51\x5d\xc2\x1a\x7c\x60\x40\x96\x63\xa4\x62\xd0\x1f\xdd\xfc\x84\x4b\x9c\x93\x57\x4c\xcf\xe7\x15\x70\x7d\x5e\xe0\xe7\x2c\x0f\x02\x81\x00\x1d\x78\x9c\x29\xe8\x8f\x5f\x32\x85\x22\xff\x68\x8d\xf5\x60\xdc\x28\x4e\x43\xf0\xcf\x2c\x00\x44\x6e\xde\x05\x33\x75\xd4\xa9\xba\xe3\xc5\xdd\x3a\x4d\x1e\xd8\xa9\x8c\x72\x6a\x7b\x32\x83\x95\xd2\x2c\x09\x0d\x6b\x39\xd3\x21\x78\x96\x84\xae\x2f\xb0\xe9\x55\x3d\x36\x25\xa1\x6c\x5b\x54\x67\x75\x68\xa4\xb8\x7c\xcb\xa7\xf7\x2e\x67\x21\x43\xa7\xcb\x88\x2a\xfc\x96\x53\x06\xec\x59\xca\xf3\x9c\x29\x58\x6a\x99\x59\xb5\x82\xac\x04\x6a\x46\x6a\xdd\x8f\xa3\x14\xae\x40\xc6\xfc\x7e\x12\xa7\xa9\xa6\xd3\x36\x18\xd9\x56\xb1\x9b\x20\x0c\x05\xb1\xbc\x81\x30\x63\x41\xb6\xa2\x16\x8f\x5c\x49\x11\x47\x5c\xe8\x31\x2d\x0a\x3e\x07\x42\xe8\xb6\x0b\x0a\x6a\x38\x5a\x82\x0e\xd5\xd5\x48\x10\x62\x83\x49\x20\x13\x05\x27\xe3\x10\x17\xc2\xa6\x51\xec\xa8\x4a\xc8\xe7\x21\xdd\x48\x3a\x54\x1f\x8f\x22\x60\x54\x04\x27\xfc\x0f\xa9\xac\x5d\xe4\xf4\x23\x9a\xff\xb7\xd9\xdd\xbc\x34\x8d\xfd\xfe\x4c\xa3\x1b\xc7\x28\xd0\xb0\xbc\x59\x6c\x2e\xf8\x40\x43\x9a\xff\x0d\x26\x2c\xe2\x38\x9e\xce\xa7\x5c\xcf\x4e\x7e\xb1\x5c\xc8\xad\x2a\x46\x23\x73\x06\x25\xc0\x85\x25\x3d\xb2\xac\xf6\x67\xdb\xb0\xd0\x5e\xd8\x6f\x20\x8e\xce\x1a\xce\xd3\x78\x2e\x27\x75\xa1\x53\xb7\x28\xa4\x2d\x56\x58\xd4\x4b\x55\x57\x51\xad\x34\x22\x5f\xd8\x4a\x57\xb9\xc7\xd0\xc6\x09\xaf\x05\x5d\x1a\x4f\xa2\x85\x81\x2b\x7f\xdb\x94\xfc\xb5\x36\x25\x7f\x5b\x7a\xdc\x6f\xce\x40\x5c\x25\x48\x4c\xe9\x4a\x14\xf9\x88\xe6\x5c\x62\x1f\x3d\xda\x34\xbd\x62\xbf\xb6\x5f\xec\x67\xda\x79\x18\xb7\xcf\xba\x72\x86\x68\x17\x11\xc1\x80\xd6\xe8\x52\xce\x4e\x18\xbc\x0c\x03\x5b\x18\x6d\x0c\xc2\xb6\x56\x63\x9d\x28\x9d\x25\x9c\xdd\x70\xe6\x87\x37\xfe\x3c\x65\x63\xff\x9a\x1c\xf3\xa6\x3c\x09\xe7\x1b\xd4\x12\xa3\x61\x68\x8a\xd8\x26\x12\xcc\xee\x97\x18\x7b\x84\x0b\x95\xcd\xb6\x20\x77\x9a\xf0\xeb\x65\x86\x0a\x26\x8b\xbc\x62\x1d\x07\x23\x38\x81\xb5\xc1\x66\x8f\x1e\xd3\x39\xc6\xa5\xb8\x59\x80\xa2\xc9\x34\x4f\x03\xf8\x43\x90\x96\x04\x95\x86\x96\x64\x6a\x2f\x06\x8b\x53\x37\xce\x5d\xa3\x51\xa8\xb0\xb6\x06\x23\x4b\x24\xb0\xa8\xc0\x0e\xb7\x70\x13\x50\x13\x20\xaf\x28\x0b\x90\xaa\xab\x11\xc4\xcd\x51\x0b\x4e\xba\x7c\x2c\x73\xb6\x3c\xcb\xec\x46\xfe\x36\xfd\x91\xff\xfd\x6d\xfa\xf3\xd5\x4c\x7f\x04\xe6\xf9\x7a\xb6\x3f\xb2\xb7\x07\x19\xff\x88\x2b\x91\x56\x43\x3f\xcd\xf6\x88\xdb\x32\x6e\xa3\x06\x43\xe5\x0f\x5b\x02\x2d\x1d\xc8\xda\x88\xff\x76\xb3\x20\xe3\x25\x80\xb4\xf1\xe2\x09\x0b\x52\xf9\x6a\xa8\xc7\x80\xf5\xf8\x50\x1c\x81\x41\x0c\x9b\x1d\xcd\x21\xf5\x1c\x1c\xea\x2a\x3a\x54\xdc\xf3\x80\x3d\xe8\xf9\x5a\xf6\x74\xdd\xfb\xf0\x3c\xc8\xb4\xc9\xb2\x64\x82\x5d\x64\x0d\x76\x6e\x6c\x9e\xd3\x43\xe5\x0f\x9b\x34\x49\xce\xe3\xd4\x1f\x09\xba\x5a\xba\x9d\xfe\x36\xe3\xc9\xfc\x84\x87\xbc\x9f\xc5\x49\xb9\x24\x6a\x94\xcc\xa7\x9e\x64\x0c\x4e\x64\x23\xd9\xd1\xda\x9a\xec\x53\xb0\x73\xcd\x2c\x4b\x82\xde\x2c\xe3\xe5\x92\x68\x56\x32\x83\x90\x53\x3f\xf7\x30\xea\x0b\xa4\xd3\xd0\x58\xf2\xf0\xc6\x7e\xdd\x63\x9f\xf5\xa7\x1b\x68\x15\x2b\xe5\x5e\xda\x1e\x7a\x8e\x0d\xc4\x9f\x6c\x00\x65\x4c\xc4\xf8\xf3\xbf\x55\xaf\x2e\xb3\xa0\x2f\x32\xae\x63\xf7\x11\x9c\xc6\x09\x30\xc5\xac\x5a\xf6\xd5\x26\x17\x5f\x07\x17\xb8\xf7\xda\xd1\xc1\x1b\x2d\x2b\x4e\x48\x07\x14\xf9\x89\x3d\xcd\x78\x18\xa2\x5f\xa3\x41\xb5\xdd\xf8\xa9\x19\x80\x89\x89\xfd\x83\x1c\x99\x37\xbc\x34\xb0\x3a\x4a\x7c\x08\x5c\xa2\xe8\x2c\x90\x14\xfa\xd1\x80\x4e\x86\x42\x83\x44\xec\xb1\xd3\xb1\x18\xf9\x9a\xfb\x19\x54\xb5\xfa\x0a\x48\xb3\x8b\xb1\x50\x0c\x17\xd1\x80\x83\x41\x39\xf8\xa0\x01\x8f\x4a\x71\x50\xd2\x60\xc0\x13\x71\x12\x7d\x76\x74\x78\x64\x84\x9a\xb0\x68\x3a\x43\x8a\xcc\x48\x5f\xb0\x8c\xe0\x66\xc5\xaa\xfd\xa5\x8f\x54\xee\x64\xba\x9d\x41\xb8\x19\x42\x90\xaa\xb3\xfb\xed\xb2\x54\xb3\xaa\xba\xef\x66\xb1\x81\x75\x55\x4d\xa3\xb8\x98\x0c\x5b\x42\x84\x2d\x23\xc1\x0c\x02\xec\x6b\x58\x02\x14\xca\x06\xe9\x48\x8a\xd3\x86\x09\x40\xc5\x9d\x80\xed\x63\x3e\xc4\x89\xe0\x51\x96\xcc\x71\xfb\x29\x86\x98\x3f\x18\xa0\xeb\x3b\x1c\x34\x19\x55\x28\xf3\xfb\x57\xc5\x36\x00\x39\x8a\xfa\xaf\xb5\xb3\x7a\x38\xae\xb5\xac\x1f\xfe\x7c\x3b\xa6\xbf\x31\xee\x7f\x17\xc6\xa5\x2d\xfc\x7f\x05\xe9\x3e\x40\xd0\x61\x69\xd5\x17\x22\xe0\xe0\xb3\x90\xef\x42\x03\x2b\xe8\xcc\xb6\xb0\xb2\x66\x5c\x84\x3a\x17\x22\xce\xc5\x68\xf3\xae\x38\x4c\x4c\xb1\x35\xd1\xe7\x63\x93\xbc\xca\xc3\x45\x26\x38\xc0\xc2\x00\x0b\xb8\xc1\x81\x52\xd9\xe5\x11\xcb\xdf\x26\x4e\xf7\x9b\x38\xe5\xf4\xfa\x7f\xae\x21\xd2\xe7\x0c\xd7\xfd\xdb\x56\xe8\x6f\x5b\xa1\xbf\x6d\x85\xfe\x77\xd9\x0a\x69\x04\x17\xfa\x93\x69\x19\x04\xed\x37\x3c\x69\xc5\xb3\x48\x90\x67\xd3\x29\xfd\x6d\x87\x67\x01\x9f\xe7\x49\x10\x95\xf1\x0f\xff\xd6\x6e\x58\xb1\x5a\x6e\x7d\x46\x00\x11\xc8\xd2\x99\x6a\x7d\x80\x78\x34\x26\x7c\x22\x76\x6b\x71\x08\x90\x03\xa8\xf0\x95\x2c\x11\x96\xa8\xe7\x97\xe9\xd8\x97\x2a\xe7\x49\xaf\x4d\x87\xa8\x13\x65\x40\xf0\xa8\xa6\xf6\x77\xd5\x6a\x41\xf5\x5c\x37\xa6\x2e\xfd\xbc\x54\x2b\x5d\x68\x4d\xfa\x82\x9e\xed\x52\x49\xf7\xd8\xb3\x81\xaf\xee\x5c\xec\xaa\x4e\x07\xe6\x3c\x9e\xe4\xe6\x60\xf7\xf7\x1f\x08\x84\xf1\xdf\xa5\x7e\x95\x1f\x38\x6e\xcd\x5f\xe3\x6a\xff\xa7\x05\x31\x08\xe8\x5c\x20\x12\xb1\x76\x9c\x3d\xf1\x9c\x93\x6c\xa6\xcb\x30\x24\xcc\xf2\x94\x3b\x95\x27\xfe\xd4\x88\x9f\x08\x4c\xb9\x3b\x79\x72\x27\x42\x86\xdd\x8c\xd8\xca\xb6\x5d\x06\x14\xea\x58\x6c\xa7\x01\x13\x41\x90\xde\x5b\x1f\xbe\x40\xa4\xe4\x4f\x9f\xac\xc6\x08\x93\xca\x12\xa9\xf3\xb5\x4a\xbb\xff\xd2\xf4\x8e\x29\x32\xf4\xf8\xdb\x27\xf6\x6f\x9f\xd8\x07\x8a\x27\x0c\xce\x55\xce\x31\x20\x75\x93\xae\x25\x50\x92\xca\xaf\x62\x4a\x00\x73\xb5\xf4\x73\xe3\xa2\x28\x12\x21\x56\x1c\x39\x84\xd1\x48\xde\xec\x9f\xf4\x78\x16\x61\x6b\x56\xa5\xc4\xa2\xaa\xa2\xc7\x0a\x3a\xda\x60\x46\x79\x5e\xec\x92\x17\x0e\x9a\x7d\xd8\xc9\x2c\x8a\x68\xe4\x3f\xc8\x79\x1b\x85\x00\xf1\xba\x31\x5b\x5d\x44\xe0\xab\x9b\x73\x7b\x28\xcf\xfe\xb7\xe3\xe5\xdf\x8e\x97\x9f\x81\x0f\x9c\x1b\x7b\x6e\xe1\x03\xd3\xb3\xef\x3f\x2a\x7b\x72\xf1\x11\x12\x0d\xd6\x5c\xd9\x3a\x8b\x80\x72\x28\x26\x93\x34\xe9\xb0\xc4\x2a\xc5\xd9\x58\x17\x36\x6a\x06\x17\x7f\xf1\xc6\x39\x16\x2c\x5f\x41\x71\x62\x15\xbb\x98\xa8\xfb\x30\xad\x4a\xad\xc6\x0e\x82\x49\xd0\x47\x5b\x4b\x3e\xf6\xaf\x83\x18\xf2\x4c\xee\x1c\x1e\x18\x42\x5a\x69\x3f\x42\x4d\xfa\x3e\x46\x5b\xf5\x59\xc2\xa3\x01\x4f\x98\x3f\xcc\xc4\xff\x53\x7c\xf6\x90\x0f\x1c\xb9\xed\x67\xab\x44\xbe\xb2\xac\x4f\x93\xc2\x7e\xb4\xbb\xec\x50\xe6\x8e\xa3\x2d\xb6\xd0\x55\x7f\xa2\x64\x77\xfa\xcb\x8f\xcb\x88\x7b\x77\x1e\x7f\x82\x10\x4c\xa5\x11\x7d\x88\xf4\xeb\xe1\xb2\xa0\x85\xdd\x2e\x95\x01\x3d\x44\x2a\x63\x83\xe9\x41\xf2\x18\x79\x8b\x11\xb3\x51\x31\x1d\xfd\xc0\x78\x80\xd5\xe3\xcb\x2d\x16\xf8\x3f\x2f\xb8\x81\xf3\x57\xc7\x7f\xbe\x96\x2c\x87\xf2\x72\x7e\x2c\x8c\x8c\xea\xe5\x9d\x36\xbc\x22\xf9\x89\xe7\x3c\x81\x5e\xde\x38\xd3\xd3\x79\xc7\x3c\x83\x87\x81\xb9\xad\x7a\xab\x4e\x7a\x50\x75\xb0\x2e\x83\x68\xcc\x93\x20\x4b\xf7\xe3\x38\xe5\xe5\x74\xd6\x6b\x87\x7e\x9a\x7a\x2c\x9d\x4d\x79\x02\x7f\xd3\x61\x93\x45\x3a\x0d\x2f\x6b\xc8\x0c\xa8\x38\x5e\x59\xb7\xd1\x95\xf0\xc4\xe5\x1b\x0b\x44\x9e\x66\xc9\xac\x9f\xc5\x09\xf8\x69\x60\x05\xbb\xf6\xe5\x25\xd4\xbf\xbc\x44\x4f\x0e\xea\x9c\x12\xf1\xa3\x3c\xdb\x4f\x12\x7f\x0e\xb9\x8a\x7e\x9b\x05\x09\x2f\x97\xe8\x53\xa9\x22\xa0\x2f\x05\x5c\x9d\xdb\x69\x9c\x72\xf6\x5e\x90\x0e\xa7\xf1\x31\x1f\xf1\xdb\xe9\x7b\x29\xbd\x9a\xc4\x83\x59\xc8\xab\x08\xa2\x94\x34\x41\xb2\x96\x5b\x8c\xa9\xe9\x65\x9a\xb7\x5c\x69\x3f\x9e\x4c\x83\x10\x12\x35\xe1\x5f\xb9\x1a\x59\x7c\xc5\xa3\xf4\x34\x7e\x21\xb7\xa0\xc1\xdc\x4f\x0b\xdb\x1c\xf3\x51\xe7\x76\x6a\xb4\xc0\x0f\xe6\x4a\x4f\xc7\x9c\x4d\xfc\x00\xbd\xec\xd8\xc4\xcf\xfa\x60\x5a\x96\xc0\x62\xd8\x2c\x0b\xc2\x20\x9b\xeb\x60\xf6\xff\x82\x8d\xfc\x88\xfd\xdc\x11\x40\x20\x30\x73\xf3\xf4\xe5\xe5\x71\x67\xb7\xf3\xcb\x11\xe5\x68\xc0\x3a\xe5\xf3\x2e\xba\x7d\x1d\x40\x88\x64\x9e\xf6\xfd\x29\x1f\xb0\xfe\xd8\x4f\xfc\x7e\xa6\x9c\xf3\x6f\x80\x00\x8d\x65\x9e\x64\x48\x58\x00\x32\x09\x36\x9c\x65\xb3\x84\xe3\xcc\x38\x66\x96\xa9\xd5\x18\x24\xff\xf2\xc3\x30\xbe\xc1\x58\xc5\xb3\x14\xb3\x9b\x60\xff\x2c\x9d\xf2\x7e\xe0\x87\x05\xc3\x44\xa5\x0c\xd1\xdf\x30\x4e\x26\xd0\x5b\xa9\xdc\xa5\xff\xaa\x15\x44\x52\x6a\xb6\x9d\x5b\x88\x8d\xbd\x91\x66\xf3\x90\x8b\x1d\xf4\x27\x1c\x3a\xf3\xa3\x01\x9b\x45\x1b\x91\x3f\x01\x17\x06\xf5\x1d\xdc\x15\x7c\xca\x5d\x4a\x5d\x89\xba\xf1\x54\xec\x93\x1f\xb2\x74\x36\x1c\x06\xb7\x3c\xad\xe2\x08\x3c\x95\x2b\xf5\xd3\x3a\xd6\xa7\x56\xdd\xd5\x5a\x3d\xe3\x69\x06\x93\x1b\xac\x57\xb6\xbb\xab\xac\xf1\x13\x3b\xef\xae\xd6\xba\xab\x1e\xeb\xae\x8a\x42\xfc\x4b\x94\x8b\xbf\x0c\x01\x07\xe4\x5d\x34\xbe\x5c\xe8\x5e\x21\x4e\xbf\xec\xb5\xbb\xca\xa0\xd7\x62\x6d\xbe\xd5\x61\xc1\x28\x45\xdd\x3f\x16\x5d\xea\xff\x8c\x29\xdf\x3b\x86\x35\xdc\xe3\xee\xea\x05\xee\xce\xb9\x98\x6b\xad\x7a\x51\xd9\x2e\x6f\xd7\xcb\xdb\x75\xf1\xb3\x0e\x0b\xb8\x59\xaf\xd0\xef\x72\x99\xfe\x80\x6d\xfc\x74\xfe\x3f\xf2\xef\x72\xe5\xa2\xb2\x5e\x11\x7f\x55\x2a\xdb\x9f\x1e\x5c\xb5\x7c\xbe\xfe\x78\xfb\xa2\xb2\xfd\x09\xc6\x79\x5c\xa9\x94\xba\xd1\x05\xe5\x49\xff\x54\x12\x6c\xd3\xc8\x46\x18\x47\x70\xcb\x7d\x86\x42\x2b\x15\xb1\x3d\xf1\x6f\xe8\xee\x19\x57\x08\xce\x0b\x63\x1f\xb1\xee\x1d\x13\x8d\xec\x12\x44\x93\x8d\x3b\x3a\x37\x18\xc6\xfd\x5f\x32\xa4\xf7\x0a\x64\x3f\x91\x97\xcf\xce\x41\xcb\xca\x69\x96\x78\xb2\x9d\xe1\x32\x8a\xb3\x80\x54\x37\xf2\x13\xa5\x4d\x71\xe5\x7f\xea\x03\x19\x4d\x94\x4a\xf2\x03\xbd\x06\x3b\x3c\x0c\x26\x41\x06\xc2\x57\x1a\x48\x10\x4f\xf4\x67\x75\xa0\x8a\x31\xa5\x68\x57\x27\x9e\x47\x3a\x02\x53\x54\x95\xcb\x09\x48\x28\x0c\xc4\x51\xe5\xb7\xbc\x2f\x16\x00\xd9\x84\xed\x84\x51\xa2\x87\x09\xe6\x98\x3b\x7f\x72\xa1\xbf\x49\x84\x82\x25\x9b\x46\x49\x3c\x1c\xa6\x3c\xc3\x02\x24\x01\x89\x34\x90\xf9\x4b\xb3\x84\xc4\x21\x48\x6c\x50\x83\x8a\x41\x87\x88\x05\x62\x2f\xeb\x6c\x42\xa4\x8d\xa4\xd0\xb4\x2f\x81\x64\x66\xe5\x54\x52\xfe\xdb\x8c\x47\x7d\x6e\xa6\xc1\xa2\x32\x93\xfe\xa3\x69\x50\x89\x9a\x3a\xe4\x7a\xc9\x82\x68\xc6\xbb\x79\xbd\xa8\x20\x50\xd1\x9e\x94\xa8\x26\x5d\x84\x38\x87\xe0\xf0\xd4\x28\xd0\xc9\xf9\xce\x9f\x19\x9f\xfb\xfe\x14\x10\x2b\x96\x7c\x63\x94\x8c\x92\x78\x36\xa5\xef\xcf\x8d\xef\x93\x78\x10\x0c\x03\xd8\x76\x51\xf4\xad\x51\x04\x79\x47\x82\xf4\x8a\x8a\xbe\xbb\x30\xa0\x74\x34\x4b\xd1\xfb\x4b\xa6\x35\x84\x95\xc7\x11\xd9\x60\xe9\xeb\x61\xf8\xce\x98\xc9\x23\xb1\x5c\xdb\xb3\x59\x00\x94\xc7\xd3\x81\xd3\xd4\x4f\x32\x81\xff\x1b\x12\x2c\x74\x9c\x24\x91\x5f\xf0\xbb\x61\x60\x6d\x79\x60\xa7\xdc\x17\xe0\xd6\x0b\x6f\x34\x58\x69\x1d\x52\xcf\xdb\xdf\x1e\x97\x8c\x73\x27\x71\xbd\xdb\x70\xfb\x9e\x86\x03\xe3\x5e\xe1\x26\x8a\xfa\xee\xa5\x33\x17\x99\x65\x3c\x01\x81\x07\xed\xe5\xa7\x4f\xb8\x79\x12\x14\x26\xec\x14\x40\x31\xd7\xb1\xf4\x05\x84\x24\x49\x9e\x66\x4a\x04\x08\xea\x12\x6a\xe2\x02\x97\x0c\xaf\x47\x9a\x42\x5d\xff\xa9\x0a\xe5\xaa\xeb\xea\x2f\x55\x84\x70\xac\xd3\xbf\x7a\x2c\xdc\xa3\xba\xfc\x43\x15\xc8\xc3\x54\x67\x2b\x2b\xf2\x6f\xa3\x15\x2c\xba\xae\x56\xbf\x4d\x37\x68\x57\x2c\xbc\x4c\x5f\x2b\xac\xce\xca\xea\x50\x6e\xb3\x52\xf5\x71\x89\xd5\x59\xe9\xfc\x7f\xc0\x96\x1a\x1a\x90\x7a\x44\x2d\x05\xfc\xa5\x2f\xd6\xb7\x4b\x15\xc9\xcc\x1a\xbc\x8f\x22\x09\xfc\x68\x6e\x52\x15\x98\x62\x2f\xe1\x13\x4c\xc6\x00\xc7\x18\x8c\x02\x88\x8b\x14\x48\x46\x26\x2b\xff\x58\x80\x7f\x50\x2f\x03\xb5\x9d\xe1\xf6\x86\x64\x4a\x95\x8d\x19\xbf\x0d\xd2\x2c\xf5\x50\x04\x1f\x64\xfa\xf2\xf0\x68\xa0\x86\xb4\xee\x4d\xe1\xad\xb1\x93\x4e\x61\x15\x62\x3b\x94\x66\x97\xe8\x51\xf5\x92\x65\x31\xf3\x59\xc6\x27\xd3\xd0\xcf\xb8\xe6\x03\xe4\x03\x07\x02\xc7\x25\x4f\x9b\xf1\xdf\xe2\x57\xce\xf8\xaf\xf8\xc1\x93\xc3\x96\xa9\x89\x47\x8c\x44\xa3\x92\x7b\x05\x25\x41\x5d\xf4\x0e\x5a\x0b\xd7\xe4\x73\x19\x5e\x4e\xbb\x81\xfe\xcb\x01\xd0\x51\xc2\xb3\x4c\x5c\x5f\x99\x52\x96\x61\xce\x5b\xdc\xa8\x94\x8f\x30\x67\xd9\x42\x90\xd8\x2b\x33\x3e\x9a\x8b\x40\x6b\xb7\xb3\xe3\x3d\xb1\x1d\x71\xc4\xa3\x0c\x86\x9d\xc3\xaa\x9c\x24\x2b\xb2\x2a\x14\xa9\xd0\x00\xb5\xf3\x6e\xb7\xb6\xfd\x8f\x8b\xda\xc8\x94\x63\xf5\x5d\x41\x40\xe9\x9f\xe2\x3e\xf4\x21\xba\x46\x3b\x1e\x70\x88\xb0\xa1\x55\x87\x9b\xdf\x8a\x1f\x67\x53\xc1\x49\xf9\x29\x2f\xe3\x29\x72\x41\xd2\x81\x29\xc0\x71\x50\x57\x4e\xd1\xc4\x55\x76\x12\x4c\x82\x10\x28\x10\xf6\x7e\x0a\xcb\x78\xef\xb1\xde\x2c\x93\xe4\x3b\x78\x8e\xf3\xaf\x03\xb2\xa6\x1c\xff\x33\x00\xf5\x57\x41\x09\x59\x4a\x9f\x4d\x78\x36\x8e\x07\x78\x83\x24\x23\x82\x37\x0d\x28\xb4\x40\xde\x6d\x38\x50\x72\x56\x55\x77\xbd\x39\xb6\xb0\x8c\x5f\xdc\x33\x5f\xab\xe9\x3b\x1d\x86\xc6\x8b\x8b\x03\x21\x9f\x87\xcf\x2f\xbc\xf1\xc4\x95\x98\x69\xf6\x08\x97\x10\x1a\x53\x08\xca\xed\x96\x50\x6f\x2a\x9d\x95\xf0\x26\xfa\x72\xf6\x3a\xc1\x5f\x80\xc9\xfa\x02\xf6\x23\xb3\xba\xde\x62\x81\x91\xaf\xcf\x48\xce\x89\xb5\xce\x83\x0b\x4b\xdf\x61\xd0\x08\x34\x6b\xa8\x61\xf2\x9e\xa5\xff\x29\x6f\xd7\xc5\xde\xa9\x1e\xaa\xf2\xd9\x58\x67\xa5\xca\xa3\x92\xc7\x86\xa1\x3f\x4a\xcb\x12\x66\x15\x45\x4b\xb8\xd8\xd2\x10\x06\xf7\x3e\x00\x90\xd3\x22\xdf\xe1\x92\xf9\x9e\xfb\xe0\x45\x16\xf7\x3e\x60\x82\x0c\x97\x44\x48\x91\x7e\x4e\xdd\x52\x3c\xa9\x9a\xb8\xae\xe2\xad\x11\x2f\xdd\x22\xbc\x50\x2f\x28\x92\x44\xc0\x67\xc2\xdd\x60\x17\x94\xe0\xe0\x3c\xb8\xe8\x16\x25\x58\xa5\x5a\x8b\xf2\xab\xca\x97\x0e\xaa\x99\x41\x16\x6d\x0a\x37\x67\xc8\x0b\xb9\x8b\x59\x03\x00\x78\x0e\x8d\xab\x82\x5c\xb9\x30\xeb\x10\xa6\xb5\xa7\x45\x0d\x73\xb9\x66\xa5\xaf\xa1\xe8\x49\x92\x27\x8e\x0b\xaa\x20\x54\x05\x81\x02\x99\xa4\x91\x78\xa4\x21\x88\x18\x52\xe4\xbc\xdb\x21\x55\x77\xfa\x73\x56\x5f\x35\x89\xcb\xdc\xa2\x8b\x60\x52\xec\xb5\xaa\x53\xa9\x9f\xce\xa7\x9c\x72\xa9\xab\x60\x0a\x18\x28\x41\x43\xcc\x8c\xa6\xc0\x64\x66\xc6\x8a\x31\x42\xc1\x06\xa0\x49\x23\xc8\xc4\x10\x9e\x95\x1c\x20\x57\x70\x04\xa4\xe7\x2a\x5f\x67\x82\xe4\xc2\x20\x08\x44\x78\x1c\x12\xde\xe7\xc1\x35\x1f\xb0\xf7\xa2\xc5\xcf\x27\x87\xaf\xab\x78\xc4\x82\xa1\x9c\x97\x68\xfc\xde\x59\x8e\x3d\x51\xa8\xa7\xec\x75\x1c\x8b\xd9\x07\x1d\x8b\xa2\x7d\x29\xde\x99\x3f\xb6\xf4\x1e\xc7\xa4\xe5\xe6\x72\x8c\xfd\x71\xd6\xa6\xae\xf4\x07\xbc\xd2\x1f\xd8\x8f\xcc\x5c\xeb\x16\xfb\x60\xdd\x68\x06\x5a\x1b\x3c\xcd\xd2\x1d\x01\x81\x73\xfe\xe1\xa2\x62\x9f\x43\xd8\x60\x8d\x50\xab\x20\x84\xa2\xc6\x95\x1c\x74\x96\xaf\x59\x3c\x0d\x8b\xd7\x0d\x83\x58\xe5\x06\x72\xee\xae\x3e\xe0\x1c\xc8\x69\xe5\x4e\x42\xee\x76\xc9\xcb\x58\xfe\x80\xe7\x80\x6d\x5b\xf7\x92\xd5\xe9\xa7\xc5\x0d\x28\x1c\x53\xd8\xe9\x12\x24\xa6\x61\x8d\xbd\x1a\x9c\x88\x4d\xa7\xc8\x93\x5c\xb7\x36\xa5\x62\xdf\xc6\x87\xed\xc6\x97\x9e\xbe\xcf\xdb\x05\xac\x27\xd7\x07\x35\x34\xdc\x0d\x08\x14\x21\x3f\x17\xa2\xae\xb2\x4b\xb4\xe9\xaa\x64\x75\x06\xe5\x84\x32\x5d\x5f\x10\x2b\x33\x41\x49\x72\x14\xcb\xca\x08\x69\xc8\x76\x2d\xe0\x40\x14\xd7\x71\x1f\xfd\x68\xf0\x84\x05\xd4\xa3\x60\xd6\x14\xc9\x58\x3e\xaf\xae\x3f\xde\x6e\xfc\xcf\x4a\xfd\xd1\xc7\xbb\x72\xe5\xbc\xdb\xbd\xf8\xd4\xed\xd6\xba\xdd\x6e\xf7\xa2\x22\x68\xc9\x92\xf8\xf3\xd1\x66\x29\x47\x03\xe2\x4a\x40\x18\x02\x2c\x3b\x64\xb9\x04\x71\x4b\x8f\xe4\x47\xe2\x4b\x81\xf4\xda\x8f\x06\x6c\xc2\xfd\x68\xf9\x62\x89\xf9\x7f\xf0\x72\x81\x67\x66\x65\x68\x66\xaf\x17\x3e\x99\x2b\x6e\xac\xd4\x1f\x75\xbb\xb5\x72\x65\xf9\x0a\x9b\x59\xe6\xf7\x51\xdc\x03\x79\x43\xfc\x54\xc5\x34\xc9\xe6\x82\x55\x02\xa9\x28\x10\x9d\x05\xeb\x58\x21\xbd\x02\x03\x9f\x23\xa3\x00\x25\x9e\x68\x47\xea\x32\x87\xb6\x2e\x42\x27\xf0\x86\x99\x40\xec\xf9\x72\x82\x59\xa1\x34\x1f\x58\xbd\xc2\x98\xf4\xd4\x9d\x5c\xb5\x18\xd6\x5a\xce\x2e\xcf\x30\xf3\xa6\xa0\x12\x01\xed\xfa\x52\x35\x02\xe9\x7e\x45\x99\xa4\xd2\xf2\xcb\x41\x26\x75\x81\x14\x77\xc1\xc6\xe0\x48\xe5\x42\xc6\xb5\x40\xd8\x9a\x72\x50\xe4\x5e\x73\x19\xb8\xae\x14\x94\x5c\x8e\x75\x16\x86\x90\xb8\x1f\xd6\x4c\xe9\xd8\xef\xdf\x02\xba\x8d\x66\x91\xdc\x85\x87\x6f\x02\x0e\x23\x75\x63\x8c\x4c\x71\x8c\xad\xa8\xd5\xd8\x19\x70\x45\x32\xfb\x30\x0b\xe3\xf8\xca\x1f\x73\x7f\xa0\x91\x53\x1c\x85\x73\xf7\xc2\x68\x96\x05\x7f\x92\x1a\xae\x9a\xc6\xb3\xa4\xcf\xab\xd0\xb0\x5c\xeb\x76\xcb\xe5\xed\x95\x6e\x77\xbb\x52\x1b\x11\x56\x15\x18\x15\x9b\x28\xf4\x59\x44\x21\xd3\x20\xc5\x14\xf2\x95\x4a\x7c\x60\x9a\xad\x81\x5c\x2d\x30\x33\xd4\x91\x34\x0d\x62\x8d\xeb\xcf\x86\x1c\xcd\x29\xd1\x42\x34\x74\x77\xd5\x25\x52\x86\xe6\x7e\x57\x42\x34\xb7\x40\x0b\xd1\xf2\x4d\x48\x82\x26\x06\x57\xa8\x7b\x31\xe7\xa3\x2f\x92\xb9\x7d\xce\x21\x3b\x95\x9c\x2c\xf3\x23\x86\x3a\x56\xe0\x2f\x97\x9d\x34\x79\x9c\xf2\x27\xad\xe0\xba\xab\x56\x4b\x2f\xd5\x42\x64\x20\x3a\x2c\x3a\x86\x45\xaa\x12\x01\x53\xa9\x29\x59\xc4\xb8\xc2\x59\x2b\x3a\x1c\xd0\x58\xcb\xdd\xe4\x98\xf0\xe3\x3c\xb8\x70\x47\xa5\xf3\x6a\x8a\xe7\x50\xf4\x0c\x13\xb5\x99\x59\xe2\x65\x71\x04\xa5\x8b\x02\x4e\xb6\x88\x91\x2d\xde\x42\xec\xb9\x78\x13\xd1\xad\x03\x02\xbb\x65\x63\x0b\xcf\x91\x30\x30\x88\xa6\xb3\x6c\x99\xb8\xef\x41\x48\xe3\x8f\x6d\x25\x8e\xf5\x90\xbd\x74\xc4\x7d\x04\x46\x14\xf6\x61\x2b\x2d\xed\xb3\xdb\x2f\x12\xdd\xd8\xe2\x4f\xff\xca\x10\xdb\x88\x07\x1a\x07\x44\x5b\x2a\x1c\x6d\xd9\xb1\x57\x84\x1b\xc9\x61\xcd\x4a\x65\xa8\xf4\x09\x01\x54\x69\xdc\x15\x40\x2f\x27\x3d\xfd\x2c\x28\x3a\x16\x02\x4a\x78\x54\x04\x47\x72\xab\x43\x96\x10\xce\x8d\x3a\xed\x5a\x90\x51\x7b\xac\x8c\x03\xd4\xbe\x3e\xae\x31\xa8\xcf\x3e\x7d\x32\x40\x2b\x11\xa8\xd2\x45\xd2\xb9\xb7\x84\x22\xf0\x17\xc9\x45\xe4\xa5\x10\x3b\xdf\xcf\x0c\xb9\x08\x7e\xe8\x2a\xef\x83\x81\x51\x26\x7e\xad\x34\xc8\xba\x4a\x5d\xab\x78\x06\x99\x28\x4a\x25\x2d\x66\xcf\x78\x02\xa9\xd2\xaf\x79\x62\x4a\xc7\xc4\x7e\xa2\x99\x0a\x8b\x67\xea\x42\x6a\x72\xf3\x73\xc5\x2a\x4b\x85\x2a\x0f\x15\xa9\xe0\xfc\x95\xd2\x90\xe4\x8f\xd0\x44\xe2\xef\x82\x78\x5f\x4a\x33\x98\x6f\x45\x94\x79\xc5\xac\xae\x15\x83\x25\x53\x7a\x66\x49\xce\x4a\x9a\xd2\xd7\x6f\xa1\x9c\x87\x25\x28\x5a\x24\x29\x90\xa3\xac\xeb\x61\x14\x97\xa0\xca\x58\xa9\x22\x15\x64\x39\x19\xc5\x12\xb6\xdd\x90\x51\x14\x0b\x67\xf2\x4b\x54\x63\x97\xca\x25\x67\x06\x95\xed\xd2\x72\x99\x8c\xee\x6d\x49\x2f\x56\x27\x6a\x49\xb9\xde\x1e\xd4\x57\x11\x48\xd4\xd1\xa0\x8a\xf9\xe7\xdc\x55\x31\x5a\xa7\x61\x91\xf2\xbe\x62\xdc\xae\xf4\x6d\x90\x8d\x4d\xe5\x3f\x8c\x49\x3a\xf4\x0d\xd5\x52\xe9\xbb\xc4\x21\x1e\x68\xb5\xa5\xbc\x70\x11\x8b\xe2\x68\x83\x2e\xf3\x24\x1e\x50\x10\xc4\x30\xbe\x61\x3e\x2a\x03\x98\x9f\x49\xed\x96\x60\x19\x80\x96\xab\x5a\x0a\xb1\x2c\xa6\xde\x90\x40\x54\x1a\xf8\x68\xa0\x6c\x70\xa0\x27\x08\x6d\x86\x3e\xd1\x2c\xc8\xe0\xce\xaa\xf0\xd3\xfd\x39\x06\x3a\x48\x65\xfc\x6d\x0c\x6e\x70\xed\x87\xc1\xc0\x99\x81\x6f\x58\x47\x79\x20\xaf\xa1\x40\x07\x93\x60\x30\x08\x21\x60\x42\x90\x82\xf9\xfa\x64\x1a\x27\x99\x1f\xc9\x58\xd7\x01\x2e\x96\x47\xa0\x29\x12\x8b\xf5\xd8\x0d\x44\x5f\xe8\xae\xd6\x04\x2f\x5f\xeb\xae\x92\xf5\x7d\x54\xca\x14\x2f\x8e\x45\x68\xaa\xd3\x5d\x55\x1a\xbe\x15\x04\x9a\x56\x4f\x10\x3a\x2b\xe7\x37\x67\xdb\xda\x9c\x27\x1e\x2b\xd8\x9f\x3a\xd6\x01\x0a\x82\xae\x81\xde\x7e\xf8\xd6\x78\x24\x4f\xff\x9d\x26\x9e\x79\x34\x70\x66\x20\xee\xf0\x23\xac\x66\x1d\x68\xbd\xdb\x36\x00\x38\x04\x75\x2e\x62\x83\x53\x4d\xf4\xfb\x29\x9b\xcc\xe0\x5f\xd5\xd9\x34\x4e\xd3\x00\x23\xe0\x31\x69\xb3\x3c\x8d\x89\xff\xb1\xf8\x06\xb5\x77\x64\x32\x61\x2a\xe7\xaa\xce\xd4\xe9\x24\xae\xad\x15\x9c\x71\xc9\x54\x95\xb7\x1b\x39\xf0\x7c\x7a\x54\x29\x2d\xa5\x96\x2d\x45\x84\x68\x0e\x43\xe6\x28\xb5\x62\x5a\xec\x75\x9c\x4c\xfc\x30\xf8\x1d\xa5\x05\xa3\xe0\x9a\x93\x89\x1e\xbe\x0a\x9e\x45\x6c\xe4\x05\x23\x9a\xf0\x68\x46\x28\x59\x24\xaa\xbc\xef\x47\xac\x27\x6e\x51\x9a\x72\x08\xe7\x20\x35\xb9\xf8\xf2\xdf\x8c\x83\xfe\x18\x43\x77\x8c\xe3\x10\xf6\x08\x73\xfd\x87\x7e\x9f\x8b\x2f\x1c\xed\x86\x06\x3c\xed\x27\x01\x21\x0d\xf6\x22\x16\x63\xfb\x93\x69\xc8\x3d\xda\x99\xf7\xb5\x59\xca\x93\x5a\x3d\x18\xbc\xf7\xd8\x7b\xd1\xf9\x7b\xe8\x16\x7a\xeb\xc7\x51\xe6\x07\x11\x7b\x7f\xfe\x91\xd8\xa6\x52\x30\x28\x79\x26\x67\x54\xaa\x95\xbc\x1c\x3f\x64\xb3\x41\xec\xee\xe2\x7d\x01\x81\x55\x46\x08\x7d\x42\xd0\x7f\x02\x4a\xaa\x52\xc4\xcf\xe6\x88\x2c\xfd\xa0\xdd\xaf\xa8\xfe\x5c\x82\xcb\x64\x06\x96\x11\xad\xff\x0d\xc4\x96\x0a\x03\x18\x44\x69\xe6\x47\x7d\x41\x97\xe0\xb2\x5c\xcd\xa8\xcd\xdf\xd3\xb2\xcc\xd9\x11\xb1\x2b\x27\x57\xa9\x38\xc8\x44\xae\x14\x6c\x14\x72\x91\x80\x4d\xae\xad\xbc\xa0\x5b\x68\xb9\x7c\x50\xcf\x02\x88\x7d\x5f\x6d\x76\xc2\x1c\x44\x32\x35\x5f\x30\xc8\xdd\x72\x1b\x6a\xe9\x6c\x4c\xeb\x95\xbf\xb5\x7d\xb4\x9f\xa6\xc1\x28\x12\x5b\xa2\xd5\x8e\x99\x9f\x8c\x78\x56\x2c\xb3\xd8\x44\xf2\x53\x7a\x5f\x2d\x53\xec\x21\xbf\xc9\x1a\xba\xf2\x79\x70\x61\x78\x03\xaa\x7e\xc5\x2d\x0f\x22\xaa\x9f\x23\xaf\x68\xa2\xda\x3c\x7b\xec\xa7\x87\x37\xd1\x11\x49\xfa\xaa\x7d\x3f\x0c\xcb\xd8\x16\x13\xb2\xbb\x6a\x22\x58\xcd\xf9\x15\x9f\x5f\xb0\x06\x0d\x02\xbf\x0a\x63\xb0\x16\xcb\x8b\xb1\x0f\xf4\x50\xd8\xb2\x36\x55\x42\xb4\xea\x4f\xa7\xe1\xbc\x9c\x8d\x83\xd4\xd3\x0b\xae\x90\x41\xf8\xc2\xfd\x41\x05\x33\xc5\xc9\xa1\x25\x05\x5c\x9a\xbc\xd3\xa2\xf8\x6d\x3f\x9c\x0d\x94\x49\x9f\x00\x8a\x84\xad\xd4\x3f\x4a\x9c\x70\xa7\xfd\xd7\x61\xca\x3a\x5e\x81\xde\x11\x4a\x92\x49\x70\x15\x27\x8a\xba\xd3\xee\xd5\x57\x7c\xee\xb1\x60\xcb\x10\x4a\x18\xac\x87\xee\xa5\x70\xf3\xd1\xd6\x53\x57\xc2\x4d\x97\xbb\x29\xd7\xa2\xa2\x25\x89\x1d\x03\xaf\x98\x8a\x52\x73\x48\x0f\xab\xa5\x1b\xe7\x58\x18\xc9\x0d\x12\xd0\xae\xd5\xb4\x65\x5c\x8d\xa5\x81\x78\x2c\xa0\x73\xf1\x3e\xf7\x02\x20\x10\xd0\x94\xdc\x37\x4c\xdd\x95\x99\x7e\xb5\x76\xe9\x6f\xc8\x2d\x82\x58\x9d\x39\x33\x7c\x7d\x57\x86\x91\x07\xf6\xde\x1e\xb3\x6c\xaf\x54\xc7\xe5\x61\xa4\x03\x9e\x82\x61\xb8\x15\x61\x4d\xed\xdc\x10\x3d\x86\xd2\x9b\x40\x50\x24\x65\xc7\x90\xab\xef\xa7\x9c\x6d\xd6\xf3\x16\x02\x7e\x3e\x87\xcd\x30\xc2\x2b\x81\xb3\xf2\xed\xa8\x27\xd4\xd5\xd3\xa2\xae\xcc\x00\xe9\x8b\x7a\x13\x75\x8a\x3a\x7c\xb6\xa0\x43\x8f\xf5\x1f\xd2\xa7\xa8\xe6\x46\x67\x29\xb0\x87\xa8\x3d\x66\xd5\x6a\xd5\x4f\x46\x29\x7b\x5c\x73\x51\xf8\x30\x52\x77\x10\xba\x35\xef\x20\x76\x4b\x0e\x27\xb9\xdd\x5c\x31\xb7\x5e\x92\x1b\x71\x92\x96\x2a\x82\x54\xb3\x4a\x87\x7e\x10\xa6\xa5\x4a\x39\x17\x87\x86\x26\x41\x97\x0a\x77\x57\xa2\xa8\xb2\xd5\x7f\x3c\xd9\x40\x6e\xbf\x54\x29\x97\x06\xc1\x35\xd8\x78\xfb\x25\x8f\x7d\x64\x23\x9e\xd5\xed\x10\x37\xb2\xdf\xef\xb6\xd8\x1d\xbb\xab\x54\x7d\xb6\xd2\x60\xdf\x89\xb5\x54\x70\x31\xe8\x6a\x82\xc3\x3a\x87\x38\x48\x37\xa4\xfd\x0a\xa5\x6f\x92\x41\x69\x9d\x8a\x18\xe6\xa6\x54\xa9\xca\xf2\xad\x6e\x54\xab\xc9\x38\x09\x2a\x92\x2d\xce\xba\x13\x72\xe9\x76\xab\xdc\x81\x83\x88\x09\x0a\x6e\xaf\x83\xc3\x04\x10\x97\x81\x26\x55\x96\xed\x01\x98\xb9\xaf\x76\xaf\xf7\x5c\xb6\x20\xb3\xa1\x1d\xa4\x6c\x7b\xc1\xfc\xa0\x6e\x1d\x91\x1f\xed\x7b\x69\x96\x72\x22\xc1\x65\x3e\xab\xfd\xbd\xd6\x71\xf3\xf8\x9d\x03\x8f\x30\xe8\x25\x7e\x32\x57\x60\x7b\x44\xe8\xdb\xae\x85\x1f\x55\xa5\x84\xe3\xa6\x3b\xb5\xe4\x67\x55\x6f\x1c\x0c\xdc\x3a\xe2\x93\x2a\x47\x29\x51\x0c\xd9\xb5\xac\xdd\x94\xdf\xf5\xb4\xc4\x27\x12\xa4\xe6\xeb\xaa\x43\x46\xb5\x53\x9e\x9d\x92\x19\x19\x46\x28\x36\x1b\xa4\x3c\xdb\xc8\xe2\x0d\xa4\x43\x36\x32\x7f\xa4\x9a\x8d\xc0\x09\x10\x5f\xde\xc3\xa1\xd3\x0c\xf7\x7f\x63\x34\x8d\xf5\xf4\x4f\x3b\xc7\xcd\xd3\xc3\x63\xa7\xe6\xcd\x95\xb8\x35\x25\xb9\x08\x55\xbd\x75\xb6\xbb\x2b\xc0\xbf\x52\x3e\xbf\x40\x4d\xd9\xda\x1a\x2b\x09\x46\x0a\x4e\x15\x7d\x2c\x57\x30\x4e\xc6\x89\x3f\xf4\x93\x00\x5c\xb9\x7b\xb3\xd1\x68\xce\x14\x50\xd8\x4d\x2d\x66\xef\x45\xbb\xf7\xd8\xf1\x8b\x17\x97\xc6\x54\x4a\xff\xfa\x97\x1a\x9a\x46\x7e\xd5\x79\x77\x22\x4a\x44\xff\xf2\xdb\xbf\x9b\xfb\x67\x1d\xf8\x0a\xca\xf1\x14\x63\x32\xe3\xee\x8a\x03\x07\xbc\x77\xa3\xf8\x86\x8a\x97\x7f\x8b\xa8\x83\x25\x47\xb8\xe5\x0b\xe6\xe2\x75\xf3\xa0\xe3\xb1\xb6\xf6\x33\xc3\x70\x06\x1e\xdb\xe9\xbc\x68\x9e\xed\x9f\x7a\x6c\xef\xe4\xf2\xa4\x73\xea\xb1\x17\x87\xc7\xed\xce\x0e\x1d\x7b\x63\xc7\xcb\x56\x63\xec\x4f\x74\xa1\xdf\xf0\x11\xcf\x0e\xd0\xfe\xcf\x1c\xff\x2a\x30\x78\x6a\xe0\x00\x70\x0b\xd6\xd6\x98\x28\x82\x64\x04\x62\xbf\xd5\xc3\x04\xbf\xce\x45\x99\x7c\xc6\xe5\x1b\x65\x75\x45\xef\x80\x80\x6a\xfe\x29\xc0\x3d\xd4\xb0\x12\xec\xaa\x31\x7f\xa2\x9a\xa0\xbf\x2d\xf5\xae\x50\x8f\xb8\x27\xf9\x3e\x71\x87\x3e\xbb\xd7\xbb\x5c\x47\xe4\xea\xf9\x99\x3d\x69\xa2\xea\xb4\xb9\xcb\x1a\xb0\x03\x82\x55\x57\xf7\x57\x67\x0c\xda\xe9\xbc\xb8\x54\x27\x8b\x36\x58\x50\x6e\xf8\x4d\x55\xc3\x9f\x97\xad\xb3\xdd\x5c\xc6\x13\xd8\x03\xd6\x60\xe2\xf0\x68\x42\x58\x15\x3f\x8a\x50\x9f\xd9\xa0\xcd\x92\x07\x1f\x8c\xfa\xf1\x93\x71\x1d\xe0\xab\x9c\xc6\xda\x1a\x55\xa0\x0f\x17\xba\x53\x49\xac\x36\x54\xff\x9f\x3e\xe9\x43\x55\xa6\x06\xfa\xbc\x3d\xd2\x31\x79\x64\xef\xdb\x6c\xc5\x58\xfc\xb6\xee\xb3\x6e\x74\x54\xa2\x76\x10\x88\x41\x11\x46\xba\x5b\x3f\x9a\xbf\x96\xeb\x03\x28\x37\x1a\xac\x04\x2c\xd1\xff\xc7\xde\xdb\x70\xb5\x71\x24\x0b\xc3\x7f\xa5\xe1\x7a\x91\x26\x1e\x46\x80\x9d\xc4\x11\xc1\x5e\x2f\xe0\x2c\x37\xb6\xe1\x02\x49\xde\x7d\x10\x47\x1e\x34\x2d\x69\xc2\x68\x46\x77\x66\x64\xcc\x02\xef\x6f\x7f\x4e\x57\x55\x7f\x4e\x8f\x00\xc7\xc9\xcd\xde\x67\x73\xce\xae\xc5\x74\xf5\x57\x75\x77\x75\x7d\x75\x55\x07\x93\x7f\xd5\x85\x7c\x39\x2d\x46\x28\x07\xdb\x97\xbf\x54\x4b\xe8\x0d\x8b\x96\x87\x50\xad\xd3\x91\x85\xce\x5e\x8f\xbd\x49\x3f\x31\xac\x29\xd9\x36\x3d\x04\xb5\xdd\x1b\xb5\x31\x1a\xab\x41\x2a\x8d\x5a\xc8\xed\x88\x4d\xf5\x37\x70\xda\xb5\x72\x05\x34\x5b\x5a\xd9\x51\xcc\xb9\x7e\xd0\xba\xb6\xd6\xec\x33\x82\x03\xaf\x4f\xa0\xa0\x90\xbc\x66\x7f\xfd\x6b\x6d\x10\xfa\xba\xa0\xd9\x68\x62\x39\x50\xbe\x43\xe6\x95\xd0\x1c\x49\x28\xf6\x76\x08\x91\x0a\xf5\xfb\xfb\x5e\x8f\x8d\xd3\x4f\x20\x14\x54\xc5\x8c\xc3\xc5\xcf\xf3\x49\x9a\xeb\x30\x25\x40\x56\xe4\xd5\xba\xb6\x26\x19\x89\x46\xfb\xc6\x46\x5d\xd9\x61\x1d\xcd\x72\xc3\x25\xe9\x1b\x8f\xac\x10\x1a\x04\xd9\x0d\x28\xa9\x86\x08\x7b\xe4\x3f\x6e\x90\x50\x84\x4c\x5f\x01\x77\xe8\x97\x94\xe6\xec\xe7\x17\xac\xc7\xde\xbc\x91\x0b\x6d\x6c\xd6\xb5\x35\xb5\x93\xf4\x4f\xac\xb7\xa2\xce\xae\xc2\xbd\x75\x76\x8d\xc8\x8e\xc6\x21\x5a\x42\xb8\x64\xeb\xc4\x14\x8b\x29\x99\x6c\x70\xaf\xc7\xf6\x90\xb5\x90\x13\x90\xe3\xd5\x58\xbe\xbd\x55\x37\xc5\xda\x1a\xeb\x22\x4d\xbf\xbd\x35\x07\x76\x7b\xcb\x56\x1c\xfa\xa0\x45\x65\x40\x38\x94\x9a\x48\x96\xc3\x0f\xac\xc1\x1c\x65\x0b\x7c\x76\x48\x7c\x92\xf8\xac\xb8\x96\x33\x71\x44\x85\xbc\x26\xeb\x6e\xdb\xc5\xa7\xaf\x7f\x38\x07\xde\x40\x2e\xdf\xb6\x81\x7c\x20\x28\x72\x48\x74\x5c\xf5\xfb\x7f\x46\xa8\xeb\xb3\xfb\x89\x0a\xad\x8f\x19\x14\xae\xea\xd3\xa5\xda\x56\x47\xdc\x5d\x81\x91\xae\x8d\x42\x01\x48\xba\x66\x4b\x3d\x62\xc4\x12\xe3\x20\x20\x93\x12\x83\x46\xed\x46\x5f\x91\xc5\x78\xb7\x06\x8a\x5b\x94\x38\x07\x92\x44\x75\x41\xc6\x75\xa2\xb2\x12\x0b\xda\xa5\x7f\xa3\x23\xf6\x54\x7e\x8b\xde\xb0\xaf\xbc\x2b\x1e\x48\xbe\x40\x8e\xa9\x21\x59\x51\xc1\x12\xd1\xc8\xcb\xa6\x92\xd8\x21\xd8\x30\x07\x22\xd6\xdc\x69\x5d\x1c\x78\xa5\x92\xba\x58\x4f\x1d\xb1\x04\x94\x6f\x14\xba\xde\x15\xc4\x45\xd1\x7a\x9a\x83\xd2\x00\x04\x2f\xc8\xc4\x28\x99\xcd\xfd\xe1\xd1\xf1\xe1\xe9\xa1\xcb\xcd\x4e\xe3\x92\x27\xeb\x97\xfc\x5a\xf0\x9c\x12\xa8\x13\xdc\xc7\x9b\xe1\xb0\x42\xd0\x13\x9b\x5e\x1a\x87\x98\xa0\x85\x24\x17\x84\x32\x52\x91\xa8\x94\x2e\xf4\xf4\x14\xcf\xfb\xd9\xb9\xa9\x4d\xd9\x56\x8a\x14\xda\x08\x87\x01\x6c\x0c\xf1\xd7\xca\x8e\x9a\x48\x20\x90\xda\x3d\x44\x3d\x96\x38\xc9\xd8\x1c\x1a\x3d\x55\x8e\x7e\x41\x10\xe0\x75\x39\xcf\x17\x33\xc1\x09\xb3\x35\x71\x80\x13\x9e\x2b\x2f\x33\x7a\xf8\x0a\x33\xd1\x61\xb6\xd2\x40\x86\x02\xa7\x3e\xd8\x0e\x4e\xf6\x2c\x7d\xfa\xd4\xa0\x06\xff\xbf\xb9\x22\x5d\x1c\x03\x8d\xe9\xf6\xd6\x3f\x26\x73\x5b\x21\x80\xde\x55\xb8\x1d\xc8\xe1\x71\x87\xdd\xdc\xa9\x07\x2d\xf7\xad\x88\x2b\xf0\xc9\x7a\x48\x2a\xd3\x3a\x20\xab\xd3\x8b\x90\x61\x98\x17\xea\xb1\xd7\x63\x9b\xdf\x45\x9b\xd1\x56\xf4\x1d\xeb\xb1\xcd\xaf\xa3\xad\xe8\x59\xb4\x25\x6f\x55\xe7\xa2\x3e\x0c\x48\x32\xbb\x67\x3f\xb7\x6d\x67\x67\x37\x3f\x7e\x53\xc2\x1e\x83\x46\x8e\x88\xd1\x73\xaf\x7f\x3f\x9e\xbc\xd3\xb1\x55\xb9\x87\x84\x3f\xdc\xc2\xb4\x83\x0f\xb5\x46\x8a\xb6\x82\xda\x7f\x8a\xed\x3f\x3c\x93\xdf\xce\xb5\xfa\x0a\xef\xf1\x43\x3b\x40\x86\x79\x73\x8b\x2d\x7b\x68\xea\xf2\x2d\x58\x57\x63\x63\x15\x3a\x7c\xad\xe2\xd3\xed\xe6\x70\x09\x5e\x59\xe8\xea\xcb\xd4\x68\x56\x40\x91\x2a\x1a\x5b\x28\x32\x54\xc6\x27\xd7\xb3\x8b\x22\xab\xdc\xad\xf2\xad\xde\x2a\xcf\xfd\x15\xdf\x8b\xb3\xa2\xf6\xcb\x13\xb2\x76\x78\x24\x62\x51\xb2\x0e\xe1\x1c\xf3\x38\x33\x45\xff\x84\xe7\x3f\x36\x6b\x89\x73\xbc\x7e\xb1\x98\x40\xbd\x4e\x20\xd0\x32\x8a\xeb\x6e\x07\x0f\x6e\x27\x64\x1d\x85\x1c\xa2\x62\xf7\xce\x11\x86\x6a\xed\x05\xff\x54\xac\xe3\x05\x33\x12\xfb\x41\x8f\x34\xb0\x8f\xf1\xfc\x60\xdf\x3f\xe3\x79\xaa\x55\x0d\xa8\x79\xd8\xe3\xd5\xc8\x81\x95\xde\xb9\xeb\x09\xaf\x46\x9f\x73\x53\xd4\xc5\x51\x99\xce\x52\x92\x06\x1c\xe0\xb9\x2c\xd2\x08\x5f\x7a\xa2\x0f\xf6\x5f\x0c\xf7\x0e\xdf\x0d\xf7\xf6\xdf\x1c\xbc\x77\xa7\x95\xf2\x17\xeb\x49\x31\x5b\x77\xb4\x37\x93\xc3\xa3\xbd\x36\x94\xef\x29\xcd\x61\x63\x89\xda\x15\x8c\xaf\xb0\xc9\x7e\xdb\x3a\xe9\x46\xc5\xba\x1c\x59\xc7\xf9\xc0\x3e\xcf\x47\xf0\x51\x21\xa8\x7b\x64\xb2\xee\x20\x6a\x58\x13\x0e\x58\x5d\x5e\x3b\x27\x52\x8c\x05\xfb\xa1\x43\x38\x02\x03\x79\x57\x08\x3e\xac\xf7\x15\x99\x77\xbf\xea\x21\xb9\x37\x08\xc8\x91\xa6\x1c\x7a\xf5\xbb\x2b\xf3\x83\xfd\x68\x8c\xc4\x1a\x80\x42\x76\x78\x76\x74\x1e\x3c\x80\xe1\x18\xac\x8e\x8a\x92\xaf\xff\x5a\xf5\x88\xcb\xec\x8d\xf3\x1e\xee\x86\x5e\xc5\xeb\x75\x75\x20\xd6\x8b\xf1\x60\x35\xd8\x6e\xea\xf7\xf4\x0a\x0c\x87\xbc\x7a\x07\x1d\x69\xee\x1c\x97\x73\x58\xf2\xd8\xde\x77\xf0\x81\x0e\x99\x86\xd8\x62\x3b\x6c\x08\xe7\xb9\x98\x1f\x23\xe8\x1e\x72\x90\x5d\x04\x30\x2a\x80\xb9\x61\xc6\xf3\x3a\x6e\x1a\x16\xec\xb2\x4e\x6b\xad\x65\xfd\xd9\x90\x81\x9d\xc6\xbd\xa5\x52\x71\xf1\xab\x21\x6f\x14\x17\xbf\x82\x63\xf7\xc5\xaf\x26\x6a\x5e\xc1\xf7\x3e\xbb\x91\x66\xaa\x3e\x7c\xb8\xdb\x66\x77\x26\x32\xb5\x44\x43\xa8\x91\x5f\x48\xff\xba\x4b\x76\x96\xdb\xdb\xc6\xa4\x22\x2d\x12\x34\xd6\x9d\x7e\x9d\x75\x08\xa6\x73\xfe\x27\x5a\x52\x41\xb7\x4e\xaf\xe7\xdc\xa2\x26\xe2\xe3\xba\xd8\x81\x55\xc7\x07\xba\xac\x7d\x05\x64\x54\x9c\x2c\x12\xb3\xf5\xc9\x22\xe9\xd8\xa5\xcb\x1a\x9c\x2c\x12\x03\x98\x02\x78\x9a\xcd\x8d\x2f\xf0\x24\xf5\xa8\xac\xd3\x04\x5f\xd6\x3e\x81\xfc\x61\x9b\x4d\x77\x31\xca\xe2\xaa\xda\x8d\xb3\x6c\x77\xca\x47\x97\x5d\xc9\x0b\x58\xca\x53\xd1\x1b\x4a\x59\xb2\xd8\xe4\x19\x4c\x40\x01\xe9\x7b\xbd\x34\x58\xdd\xc5\x04\x38\x82\x54\xb1\x98\x41\xaf\xf8\xa2\x44\x0e\x45\x10\x19\x76\xe7\x0e\x4f\xfa\x09\x19\x9d\x1c\xc3\xbc\xbb\x15\xcf\xc6\x21\xb4\xa7\x86\x27\x3e\xd9\x23\x38\xe6\x63\x5e\xf2\x7c\xa4\x86\x01\x19\x4f\xa6\x31\xe4\xa5\xbd\xc0\x9c\x9a\x10\xde\x3a\xad\x78\xc2\xd6\x31\xd2\x58\x37\xb0\x20\x44\x17\x3c\xa1\xe1\x49\x1a\x1c\x63\xc0\x11\xc9\xb2\xc1\xdf\x3b\x10\xec\x15\x69\xe8\x60\x55\x1c\xd0\x66\xa9\x31\x5b\xf6\x0a\x0b\xfa\x4c\x8c\xbb\xb1\x30\x32\x3a\x5b\x5b\x60\x36\x93\x63\xd4\x05\x14\x71\x56\x77\x03\xe1\x62\xed\x62\x7a\x51\xdb\xb2\x50\x27\x02\xd8\x7c\x97\x35\x5b\x54\x35\xe3\x29\xe4\x08\xba\xe0\x18\x6b\x05\x5e\xcf\xc8\x4e\xd0\x8d\x6e\xb0\xca\x9e\xb2\xc6\x78\x00\x69\x8f\x8a\x1f\x67\x0f\x58\x57\x09\xd9\x0d\x33\xd8\x59\xb1\xb5\x41\x5d\xd1\x67\x1a\x41\x82\xcf\xe3\x65\x7c\x91\x71\xe5\x66\x74\x55\xa6\x35\x7e\x10\x54\x2c\x64\x10\x44\x74\xb2\x28\xf5\x37\x30\xfc\x6d\xa3\xd5\xdf\x40\x30\x8d\xaf\xb2\x99\xff\x57\xfe\xef\x2d\x8b\xd4\xbf\x37\x9e\x1d\xae\xba\x20\x13\xef\x5e\xff\x7f\xc3\x93\x83\x1f\xde\xef\xef\x0d\x9f\x6d\x0e\xff\x76\x70\x3a\x3c\x78\x7f\xca\x76\xd8\xe6\xc6\xb7\xcf\xbe\x7d\xbe\xf9\x62\xeb\x19\x10\x07\x70\xc4\xcb\x20\x10\x30\x8d\x24\xad\xd8\xbc\xc8\xae\xc7\x69\x96\x45\x50\x3e\xad\xeb\x79\xd5\xef\xf5\x12\xfe\x91\x67\x82\xcb\x89\x66\xc5\x3f\xd3\x2c\x8b\xa3\xa2\x9c\xf4\x78\xbe\xfe\xd3\x49\x2f\x29\x46\x55\xef\x17\x7e\xd1\xfb\xcf\xf8\x63\x7c\x02\x1c\x50\x4f\x1d\x96\xde\x0f\x60\xb0\x1c\x62\x07\x55\x0f\xff\xed\xa5\x95\xb1\x3f\x71\x9b\x1f\x54\xdd\x4f\x21\xbb\x36\x1c\x27\x30\xf1\x40\x23\x26\x3c\x66\x60\xda\x10\x87\x62\x93\xf5\xd8\x27\xca\xb7\xd3\x63\xd7\xc4\x08\x99\xce\x86\x56\x9d\x4f\x62\x43\x5c\xc3\xcf\x6b\x29\x09\xdf\x79\xb2\x4e\x40\x42\x9c\xfd\x59\x5a\xd7\xbc\x94\x6f\x31\x95\x86\x01\x93\xe4\x94\x95\xd6\x1b\x48\x87\x0e\xec\xb1\xc8\x0d\x06\xb1\xc8\xbb\x04\x6f\xa6\xff\xa4\x16\x50\x2c\x97\xe5\x52\x89\x44\x5a\xad\x62\x3c\x36\xdb\x19\x8f\x97\x34\xc4\x76\x74\x9b\xe3\x34\x13\xa3\xd6\x62\xe5\xd4\xf2\xb1\x91\xe1\x25\x01\x09\x54\x49\xc7\x6b\x75\x07\x61\x1b\xb9\x27\xbc\xee\x36\x3d\x04\x00\x3f\x4e\xbd\xca\xaa\x57\xf1\xba\x9b\xf3\xab\x9f\x05\x60\x48\xe9\xb5\x93\xbf\xa5\x75\x15\x38\xea\x42\x7c\xd9\xf2\xb3\xd1\xa0\x81\xac\x71\x51\xee\xc7\xa3\xa9\x39\xb3\x06\x42\xf4\xfc\xb0\x08\x17\xcf\xee\xd3\x33\x5b\xe5\x74\x60\xed\x85\x22\xcf\xae\x77\xa7\x69\x96\x74\x47\xe2\xff\x4b\x9e\xdb\x12\x18\xe8\xac\xa3\xb4\xc2\x70\x18\x1a\xe6\x15\x93\xbf\xcf\x36\xce\x59\x5f\xfd\xd5\xcc\xcb\x02\x9b\xed\x58\x30\x30\xc4\x89\x75\xe9\x86\x95\xa8\x8a\xb3\xd1\x22\x13\x8c\x5a\x03\x67\xc0\x0d\x1c\x41\x4c\x6e\x5e\x3e\x81\x2e\xb0\x8d\x90\x0d\xc5\x05\x27\x88\xd7\x13\xf2\xa3\x39\x95\x5a\x09\xf2\xe4\xc7\xaf\x42\x6a\x61\x3b\xac\x33\x1c\xe2\x38\xd6\x81\x93\x5a\xa7\xd2\xf5\x0e\x7b\xca\xba\x1b\x21\xb2\x33\x92\x1b\x0c\xba\xe0\x16\x3c\x1c\x76\x8c\xf6\xe4\x28\x2c\x6d\xd0\x50\x05\x9c\xd0\xd9\x34\xd4\x35\x24\x6b\xc0\x58\x25\x98\xf2\x36\x53\x8d\x48\xb0\xae\xe3\xac\x36\xac\xf9\x6c\x1e\xb2\x21\x9a\xfa\x86\x25\x38\x13\x49\x00\x97\x0b\x41\x20\xd9\x54\xe0\xf3\x69\x1b\x66\xf0\xfe\xc2\xf5\x93\x03\xbf\x14\x71\xb6\x70\x81\x05\x54\x10\xb2\x21\xc5\xc7\xdb\xc6\x5f\xdf\x43\x6d\xfc\xc3\x79\x5c\x2f\x6a\x9f\x0d\xc9\x25\x4a\xfb\xd5\x0d\x2d\x7f\xb6\x66\x5a\x27\x31\x1f\xb6\xc3\xba\x30\x4b\xfc\x81\xa6\xec\x25\x0c\x0c\x61\x42\x21\x13\xc4\x38\x72\xb1\xd1\x5f\x43\x76\x26\x00\xcf\xa5\xce\x42\x0c\x30\x08\x02\xc2\xa4\xfc\x37\xe2\x48\xf8\x54\xc4\x74\x8b\x1a\x22\x08\xe6\x73\x41\xca\x18\xe2\x7a\x88\x7f\xdb\x07\x68\xac\x55\xe0\x06\x35\x96\x6b\x63\xb8\x0d\x4e\x78\xbd\xab\xb7\xb4\x65\x92\x71\x8a\x1a\x7b\xa3\xe4\xe3\x6d\x1f\x4e\xc7\xa0\xcd\x84\x21\x8c\xcf\x8c\x23\x20\x16\xc7\x9c\x76\x28\x9b\x90\x16\x84\xd6\x41\x8e\x24\x5e\x7f\x49\xb3\xec\x18\x9f\xc2\x1f\x51\x76\x21\x2b\xf0\x94\x17\x08\xd2\x23\x1c\x19\x09\x8d\xa4\xfd\xc1\x45\x30\xf2\x59\x12\x38\x32\xaf\x23\x3d\xed\x22\x4b\x7e\x26\x0a\xea\xd6\xdf\xb6\x21\x25\x81\x65\x8d\x46\x1d\x40\x83\x66\xb2\x1d\x1d\x75\x7f\x60\x39\x7c\xaa\xab\x5b\x0e\x20\x54\x1d\xb8\xbe\x9d\x76\x7b\x1b\xe0\x24\xf2\xbe\xa0\xcf\x83\xe5\x4f\x69\xac\xaa\x9a\x13\x6e\x10\x47\x7c\x21\xa5\x55\x9c\xaf\xbc\x50\xbe\xc1\xb2\xbe\x9f\x6b\xda\x36\xc7\x41\xc1\xbb\xfd\xb9\x19\x3a\x3a\x35\x43\xa7\x11\x10\x03\x28\xa9\x14\xde\x34\x35\xed\x9a\x33\x5b\xf3\x8f\x00\x5f\xcc\x18\x80\x21\xeb\xf8\x66\xd5\x67\x2a\xac\x03\xbe\xa6\xd7\xb7\x33\x85\x7a\x89\x31\x1b\xc3\xb3\xcd\xf5\x8b\xb4\x86\x0c\x36\x13\x5e\x46\x32\xdf\xbf\x8a\xe6\xd0\x67\x7f\xa9\x3a\x2d\x77\x26\xf3\x44\xa8\x31\xa6\x70\xbb\xe3\xec\x11\xc4\x99\x09\xb2\xe2\x89\xb7\xc2\xac\x13\x18\x21\xbf\x60\xed\xcd\xe5\xc3\x69\xfc\xbc\x7b\xc0\xf1\xa5\xb0\xf6\x3b\x66\x4a\x8e\xdc\xb9\x6d\x0c\x7f\x21\x3a\x52\xc6\x65\x6e\xf7\x40\xa0\xb2\x23\x64\x2f\x49\x3d\x11\x35\x6e\x39\x35\x1e\xe3\xe6\xae\xa5\xda\xa2\xeb\xbd\xd8\x25\xfd\xf2\x95\xb9\x04\xcd\x50\x6d\x28\x95\x4f\x21\x59\x7c\x52\x01\x24\x2d\x6d\x05\xc6\xd5\x2e\x39\x89\x96\xab\x7d\xcb\x73\xb7\xcb\x2a\xe6\x75\xb4\xe5\xb9\xdc\x25\x9c\xf7\x72\xdf\xa2\xbb\x68\x0b\xaf\x8c\xad\x7b\xef\x77\xd9\x5a\xeb\xfd\xbe\xf5\xb0\x0b\x7e\x8b\x6e\xf8\x2d\x7d\xc5\x6f\xd1\x1d\xbf\x45\x7f\xb6\xdd\xf2\x5b\xcd\x6b\x7e\xeb\xbe\x7b\x7e\x4b\x5d\xf4\x5b\xea\xa6\xdf\x7a\xdc\x55\xbf\xe5\xbf\xeb\xb7\x96\x5f\xf6\x5b\xea\x07\xe5\x85\xd9\xb1\x6f\x14\x10\x86\x09\x60\xc2\x91\x1f\xed\xea\x88\x2e\xaa\x72\x91\xff\x34\x4f\xb0\xbe\xde\x20\xf7\xf1\xfa\x74\x65\x5d\x54\xbc\xfc\xa8\xa8\xba\x6c\xd0\xfc\x7a\x6b\xe5\xdc\x06\x2f\x0a\xab\x7c\xcd\xee\xc0\x47\x5a\xe4\x24\x55\x2a\x8e\xd6\xc9\x99\x49\x34\x4c\x52\x42\xfc\xcd\xd6\x03\x18\x1c\xb9\x5d\x1b\x2c\x8e\xdc\x9e\xbf\x2f\xf7\xe0\xc1\xaa\x26\xa3\x66\x81\x71\x48\x80\xb4\x39\x95\xec\x3f\xad\x84\x41\xb7\xb7\xcd\x52\xd0\xe2\xbc\x6a\x51\x3a\xf4\x7a\xec\x64\x71\x51\x8d\xca\xf4\x02\xae\xa1\x38\xcb\x68\xd1\x2a\x76\x71\x2d\x35\x8a\x72\x34\x7d\xe6\x0c\xd3\xa6\xb1\xcb\xd0\xb8\x97\x26\xef\x28\xc3\x6f\x13\x7d\xb2\xd0\x4d\xd2\x0a\xb3\x27\xda\x69\xd1\x50\x27\x86\x52\x0b\x54\x54\xe0\x79\x54\xc7\xa0\x91\xfa\xc4\xbb\x28\xc6\x75\xf2\xbf\x7d\x55\xc4\xbe\xfd\x29\x9f\xb5\x2e\x8c\x51\xfe\xc5\xd7\x66\x3c\xbe\x67\x71\x96\x4e\x41\x12\x06\x47\xf6\x90\xc4\xe2\x33\x86\x6a\x32\x13\xde\x11\x83\x7e\x65\x49\x22\x1f\x6a\xc0\xd4\x11\x3c\x6a\x4a\x8f\xe0\x78\xb4\xee\xc3\xc3\xfb\x04\xf8\x11\x2e\x0e\x92\x47\xda\xd8\x21\x39\x8a\x7b\xd8\x21\x35\xd8\x91\xcb\x09\xf9\x74\x19\x92\x13\xf2\x95\x3d\x9c\x13\x6a\x69\x00\x87\xd4\x54\xeb\x49\x56\xa9\xaf\x7e\x85\x36\xa2\xfb\xea\x97\xa5\x4e\x6a\xda\xe2\x9a\x6a\x9f\x87\x1b\xd9\x7a\x3d\xf6\xd7\x71\x56\x5c\x0d\xf2\x86\xb9\xed\xa3\x8a\xdd\xdf\x19\xd2\x33\x91\xe1\x22\x4f\xff\x7b\xc1\x87\x69\x22\x35\x36\xad\xfe\x3b\xce\xdb\x18\xac\x2f\xdf\x73\x75\xcd\x3f\x6f\x6f\xc5\x25\x8b\xf9\x05\xa5\x0b\x8f\x0a\x13\x3d\xbf\x2e\xd3\xc9\xb4\x86\x68\xb9\x5b\x1b\x9b\xcf\xd7\xe7\x25\xaf\x40\xf5\xf0\x26\x1e\xf1\x8b\xa2\xb8\x0c\xd9\x41\x3e\xd2\xef\x73\xc1\x4d\x9f\x5e\xc8\x41\x7c\xd3\xb4\x62\x59\x3a\xe2\x79\xc5\x13\xa0\x70\xf8\x0c\xf9\xdd\xc1\xa9\xfc\xcc\xc6\xc5\x22\xa7\x94\xf3\xf8\x0a\xf9\xed\xc1\xee\xfe\xfb\x93\x7d\x36\x4e\x33\x2e\x9f\xe0\x97\x45\x51\xb3\x24\x2d\xf9\x08\x13\x11\x8f\x31\x41\x3d\xf5\x54\x97\x9c\xab\x31\x40\xe6\x61\x2f\x3a\xc1\x84\xee\x7f\x76\x66\x15\x91\x85\x4e\xa2\xc1\x08\x6d\x9c\x8a\x76\xd2\x38\xaf\x21\x5e\x1e\x44\xac\xca\x8a\x49\xc5\x62\x99\xb9\x4f\xd0\x0f\x78\xf1\x5e\xe4\x09\xa4\x5e\x12\x08\xc8\x8b\x9a\xcd\x38\x86\xd4\x41\x0c\xd1\xfb\xec\x85\xc0\x4a\x5d\x88\x36\x58\x5a\x55\x0b\x0e\x59\x94\x49\x39\x0f\x4f\x7d\x78\xfe\x31\x2d\x8b\x1c\x78\x50\x51\x36\x2a\xd3\x3a\x1d\xc5\xf8\xc0\x7a\x1e\xd7\xd3\x2a\x62\xc7\x7c\x56\x7c\x84\x20\x35\x53\x2e\x9a\x9a\x88\xdf\x80\x7c\xc1\x32\x6b\x31\xd6\x6e\x0c\x5e\x7f\x5f\x72\x3e\x57\x78\xaf\xe2\x19\xd4\x4f\x47\x10\x17\x65\x5c\x40\xb4\x06\xd1\x28\x94\x40\x8b\xd8\xa5\x42\xb3\xc0\xaa\x36\x79\x5a\x48\x04\x14\x3e\x56\xc2\x46\x8f\xfb\x34\xaf\x7f\x51\x8d\xea\xb7\xd5\xc6\xf7\xee\xb8\x28\x67\xb1\xe7\x9d\xec\xc3\x75\x7f\xec\x25\xdb\x64\xaf\xb0\xc2\x3a\xdb\x64\x7d\xb6\xa1\xd5\x81\x9b\xf7\xa9\x03\x95\x98\x20\xea\xb6\x2b\x04\xad\x74\x05\x71\x39\x91\x39\xcb\xcc\x7c\x87\x33\x5e\x55\xf1\x04\xc2\x94\xd0\xec\xfa\x20\xd8\xe3\x14\x75\x74\xbe\xbf\x54\x76\x00\xeb\x26\x95\x87\x41\xc9\x5e\x9e\x3e\x3d\xb7\x33\xfd\x59\x8e\x64\xa3\x22\xaf\x8a\x0c\x95\x51\x1d\xc5\x79\x98\x8a\x0e\x82\x88\x38\x18\xff\x68\x90\x96\x8a\x9d\x99\x5e\x2c\xe0\x1a\xb9\xbe\xbe\xce\x7e\xe1\xd9\xa8\x98\x01\x1b\x92\xf0\x8b\x05\xee\x46\xa0\x8e\xa2\xd8\x00\x86\x83\x00\xad\xb3\xab\xb8\x42\x93\x63\x8e\x86\xdf\x51\x91\x7f\xe4\x79\xca\xf3\x11\x67\x55\x81\x49\x7d\xae\x8b\x05\x1c\x1b\x71\xb0\xf1\xec\xd7\xf1\xe8\xd2\x68\xaf\x2e\xd8\x38\xcd\x65\xc0\x89\x2c\xab\xd2\x9a\x63\xd5\x51\x8c\x07\x4d\xd4\x92\xbb\x15\xa0\x4b\x1e\x69\x16\x4d\x5a\x3c\xf7\xbd\x13\x96\xee\x38\x9f\x02\x8a\xe2\x2c\xef\xc6\xab\xe6\x4e\x95\x59\x3c\x15\x11\x08\x99\xb3\x5f\xc5\x4a\xe0\x27\xf7\x4d\xea\x4d\xdb\x80\x3a\x1f\x5a\x9b\x0d\xe5\xd3\xcc\xe0\x83\xa4\x69\x26\x49\x02\x2d\x91\xdc\x65\x72\x9f\x76\x1a\x42\x8d\x1e\x93\x7a\x20\xdc\x79\x13\xa7\x19\x4f\x20\x08\x78\x01\xf8\x94\xd7\x6f\x9f\x75\x82\x46\xac\x5d\xca\x71\x69\x24\x4d\x51\x15\x15\x8b\x00\x2d\x80\x9d\x77\x24\xe4\xfd\xc8\x33\x88\x15\x35\x41\xa3\xed\xcf\x92\xfe\xd9\x4b\xb6\x45\x67\x7c\x8b\xad\xb3\x2d\xe3\x90\x8b\x26\xb6\x1e\xa9\x11\x10\x4d\x3c\x54\x2b\x60\x52\x2b\x92\xe6\x8d\xcc\x47\x67\x88\x68\x47\x9a\xf7\xda\xaf\x1a\x57\x3c\x2d\xab\x60\x1f\x06\xab\xfa\x9a\x1b\xac\x5a\x97\x56\xe3\xee\x7e\xf6\xaf\x70\x77\x33\x75\xb3\xa8\xc3\x34\x8b\x2f\xf9\xbe\x79\xb1\x08\x64\xd9\xdc\x8d\x87\x26\x6a\x8a\xb8\x6d\x61\x53\x27\x44\x4b\x2b\x5d\x2f\x1e\x8d\xf8\xbc\xc6\x70\x60\x49\x5a\x8d\xe2\x32\xa9\x30\x0c\x5e\x05\x29\x6b\xa7\xb1\xb8\xc4\x59\x95\x26\x9c\xf1\xf1\x98\x8f\xea\x4a\x45\x03\xc2\x9b\xb8\x4c\x67\x71\x99\x66\xd7\x82\x3c\x8d\x17\x19\x4b\x93\xb4\x98\xc5\x70\x55\x67\xd7\xb0\x79\x8b\x8f\xbc\x2c\xd3\x24\xbe\xc8\xb8\xf9\x00\x2e\x99\x17\x29\x5c\xc7\xd3\x74\x84\x91\x4b\xe2\xec\x2a\xbe\xae\x28\x78\x0e\x28\x7a\x45\x23\xa2\x5e\xc8\xaa\x54\x90\xc4\xff\x3c\x61\x59\x3c\xba\x14\x67\x5c\x88\x85\xeb\xe0\x2b\x02\x3d\xb2\x38\x8b\xd9\x6e\x31\x2a\xe2\xc8\xc8\xda\xe6\xf2\x3d\xba\x7b\x0b\xaf\x01\x3e\xd9\x1d\xe4\xd6\xe7\x48\x90\x50\xd4\x8a\x88\xdd\xd7\x58\x8e\xed\x25\xf0\x6f\x20\x80\x8b\xa7\x92\x7e\x4b\xd0\x5a\xf7\xb4\x5c\xf8\xab\x4a\xc7\xca\xd6\x9a\xef\x85\xa8\xec\xab\x09\xde\x2d\x4b\xfb\xf4\x3c\x32\x35\xf6\x59\x8d\x6f\x66\xee\x96\x35\xf1\x5a\xe6\x46\x36\x9b\x69\xec\x58\xdc\x97\x2d\x2f\x56\x6d\x36\xca\xe7\xa9\x69\x99\xaa\x6d\xaf\xf3\xb8\x2c\xbd\xcf\xe2\xb5\xd8\x68\x3b\xf2\x03\xbc\x60\x02\xce\x28\x73\x33\xb4\x79\xde\xd1\xd2\x00\x46\xbb\xc2\x2b\x3c\x64\x37\x4c\x93\xf2\x3b\x0c\x1b\x49\x5e\x7e\xdb\x83\x9c\x40\xed\xf4\x91\x04\xf4\xd7\x8b\xf8\x82\x67\xbd\x72\x91\xd7\xe9\x8c\xf7\xa6\x3c\x9b\xf3\xb2\xea\xf1\x6a\xd6\xb3\xc0\x8d\x76\x8e\x94\xef\x1f\x36\x61\xb8\xfd\x69\x20\x79\xcb\x21\x48\x9d\xe6\xd7\xeb\xd2\xd1\x6e\xfb\x51\x0e\x34\x68\x4b\x9f\xcd\x8a\xfc\xd7\x0a\xbd\x5c\xb4\x71\x0a\x05\x26\xd8\x1e\x0e\xc7\xc4\x5e\x99\x85\x7d\x59\xe1\x2a\xcd\x93\xe2\xca\x03\x4c\x05\x7d\xbb\xe5\xd6\x56\xe5\x3b\x7a\x83\x20\x4e\x78\xfd\x13\xc8\x81\x07\x2a\x7d\xee\x03\x64\x45\xb5\x1f\xec\x29\x2a\x91\xd0\xf7\xd9\x12\x0d\x6d\x5f\x8a\x7f\xbb\xf8\xfc\xdb\xc5\xe7\xdf\x2e\x3e\x7f\x3e\x17\x1f\x9b\x38\x2c\xf3\xed\xe9\x7d\xf5\x1f\xc3\xe1\xd1\x4f\xc7\xfb\xc3\xe1\x57\xbd\x87\x39\xfa\x60\x68\xa4\xdf\xec\xed\x83\xb7\xa8\x32\x00\x4a\x77\x18\xed\xed\xe2\x8f\xe7\x04\x5e\xb3\xf2\xd5\xaa\xaa\xf9\x58\xf7\x96\x6d\xd7\x6c\x67\x34\x69\x49\xeb\x43\xf9\xf2\xbf\x69\x6b\x56\xa3\x47\x98\x3f\xa1\x7b\x0b\x0d\xec\xff\x1d\x97\x96\x2f\xe9\xc9\x62\x58\x0d\xff\x74\xce\x2b\x03\xc7\x15\xe3\xf3\xdc\x57\xa4\x26\xe1\x4f\xea\xaf\x02\x91\x70\xff\x37\xb9\xab\xd0\x71\xfc\x43\x5c\x54\xfe\x68\xdf\x14\xc5\xa4\xff\x56\x8f\x94\x7b\x2f\x24\x8f\x7b\x0a\xde\x48\xbf\xdd\x47\x65\x9a\x56\x5b\xee\x9d\xb4\x65\x5d\x4a\x5b\x8f\xba\x95\x3e\xcf\x0d\xa3\x31\x82\x3f\xc4\x1f\x63\xf0\x85\x3d\x32\xec\xa3\x75\xdf\xa4\x99\xc9\xd6\xd9\xa7\xc8\x73\x31\xca\x85\x62\xfe\xdb\x5a\x2c\x59\xd3\x50\xea\x1c\xc3\xad\xff\x69\x5f\x0d\x83\xe6\xfc\x8e\x3e\x01\xf7\x58\xf9\x1b\xb8\xf8\xf3\x39\x5c\x2c\xc1\x6d\xbb\xcb\xc5\x9f\x13\xb9\xff\x22\x7e\x13\x72\xdc\xff\xea\xce\x12\x72\x1e\xff\xf3\x1e\x12\x7f\xa0\x6b\x84\x7b\x11\x2f\x71\x88\xf8\x52\xce\x10\x10\x83\x85\x4c\x9a\x20\x14\x37\x1f\x22\x7b\xbd\x23\xa4\x1b\x85\x8a\xca\x0b\x8d\x6c\x2f\x8f\xa7\x6c\xdf\xf9\x2d\x4f\x1f\xc5\xf0\x1e\xf5\xa6\x50\x03\x21\x62\x9a\x95\xed\x90\x1b\x0a\xc0\x86\x6e\x79\xc3\x87\x41\x71\x1f\xfd\xa4\x56\xaa\xd3\x1e\xf4\xaa\x16\x57\xea\x37\x3c\xad\x35\xd5\x6a\x0d\x55\xb3\x33\xe4\x6d\x0a\x46\x41\x0f\x00\x9f\xd8\xd1\x56\xad\x20\x02\x51\xd4\x93\x71\x04\x28\x78\x00\x02\xaf\xcb\x50\x14\xd8\xb7\xf9\xb0\xd5\x6a\x2d\xe5\x15\x85\xc3\x0e\xc1\x68\x28\x97\xd7\x9b\xa8\x09\x8e\x6b\x5b\x46\x16\x1d\xf6\x01\xe3\xf4\xcd\x8d\xc0\xc8\xba\x2c\xd2\x4f\x44\xd9\x4e\xcb\xf7\xdb\x5b\x23\x3c\xa0\x55\xd9\x7c\x3c\x6a\x07\x22\x13\x0b\x39\x58\x05\xaa\x31\x58\x45\xff\x0e\x59\x2b\x30\x5b\x90\xcf\x51\xcd\x57\xf5\x40\xcc\xbc\xa8\x56\xa8\x31\x5a\x80\x48\x56\x46\xeb\x7e\x85\x29\x29\x8f\x60\x83\xda\xa1\x2c\x61\x0b\x03\xcb\x12\x32\x41\xeb\xd2\x91\xc9\xe6\x90\xb8\x49\x10\x81\x67\xb5\x76\x7d\x21\x65\xcc\x66\x75\x3c\x0c\xab\xf9\xa5\x2d\xd9\x43\x31\x89\x97\x01\xd4\x6a\x2c\x35\x27\xeb\x35\xa5\x3c\x24\xe8\x85\x67\xdf\xae\x86\xab\xda\x7b\x28\xea\x45\x51\x0f\x5b\xae\x7a\xbc\xfa\x46\x4a\x42\x4e\x3d\x1d\x3d\xd6\x13\x73\xc5\x6a\x63\x28\xc6\xd2\x09\x22\x84\x5b\x1a\x98\xd7\xd9\x15\x69\x4d\x01\xcd\xc4\x36\x70\x22\xcc\xf8\x03\x24\xdb\x35\xec\x90\x33\xf7\x46\xdf\xd5\x11\x7c\x9e\xeb\x08\x3e\xdf\xb4\x84\x62\x3e\x0c\xd9\x51\xc8\x5e\xd7\x75\x99\x5e\x2c\x6a\x5e\x05\x83\xdc\x8d\xad\x76\xe2\xc4\x56\x6b\x0f\x0f\x1d\xb2\x0e\xf6\x02\xd1\x9b\xed\x9e\xfa\xbe\x28\x39\xc9\xbc\x13\x44\x63\x26\x83\x37\x3f\x24\xf2\x95\xe1\x2f\x93\xd6\x6e\x9c\x44\x24\xb8\x9a\xd8\xa6\x90\x28\x55\xba\x7b\x69\x0a\xbb\xd2\xb1\x36\x6d\xea\x04\xe7\x1a\x52\x07\x0e\xe5\x94\xe6\x31\x2c\x95\x94\x12\xbc\x88\xaa\x8a\x97\xf5\xe9\x34\xad\x0e\x28\x3e\xc1\x3f\x79\x62\x57\xef\x79\x61\x9a\xe4\xf6\x81\x11\x14\x24\x2a\x54\x64\x03\x1a\x73\x17\xcb\x1f\x19\xdb\xc0\xb5\x0d\x09\x28\x49\xa8\x0c\x3c\x79\xa7\x00\xe3\x0a\xda\x0f\x7b\xeb\x84\xd4\xb5\x85\xf1\xa7\x9e\xc8\x68\x8e\x6d\x17\x56\x05\x60\x3d\x15\xf4\xd1\xc0\x3f\x35\xb1\xbc\x66\x13\xd7\x88\x93\x2d\x19\xa1\xc3\xd8\x5a\xaa\x41\x4f\x78\x06\x1b\xc4\x18\x36\xc0\xaa\xbe\xd8\x8d\xea\xc0\xdc\xc9\x6e\xa7\x92\x09\xc7\x46\x8b\x8b\x5f\xb7\x21\xea\x07\xf1\xda\x8f\x69\x82\x22\x8b\x3c\x60\x06\xc5\xc5\xaf\x4e\xcc\xb2\x1d\x05\x8f\xc5\xa0\x55\xa0\x4f\x06\xcb\xf6\xca\x98\xa0\x36\x97\xea\x41\x2b\x95\x80\x31\xc0\x46\xa4\x0c\xda\xa8\x38\x78\xe7\x48\x2f\x1b\xb5\x6a\xd5\xc5\x7c\xd0\x44\x3d\xee\xe6\xe6\x66\x54\x07\x7b\xc9\x70\x2c\xdd\x86\x39\x11\x2d\x5d\xb8\xc2\xd0\x6f\xee\xe8\x8f\x5f\xbb\x25\x53\xb3\xce\xbc\x39\xec\xf6\x43\x8e\x40\x8f\xbf\xcc\x3d\x67\x7a\xf9\x2d\x4e\x69\x00\xad\xc0\xe9\x2d\xe0\x57\xfc\x22\x4a\x8a\x19\xc2\x5e\x64\xdc\x9f\xba\xa2\xed\xb6\xbf\xba\xac\xd6\xf9\xa7\x5a\xdc\x4f\x4e\x9c\x76\x7f\xe8\xfc\x27\xb1\x7b\x25\x53\xf4\xf8\xb8\xee\x04\xca\x3f\x06\x6e\xe7\xad\xcd\x68\x33\x7a\x16\x6d\x7d\xcb\xc8\xe9\x43\x2d\xd2\x99\x0e\xca\x7b\xde\x0d\xcc\x99\x51\x10\x7b\x19\x7e\xad\x7b\x42\xb9\xa8\x3a\xf8\xa3\x13\x5a\x77\x25\x24\x56\x94\x8e\x8b\x20\x26\x0f\xc5\xe8\x28\xe3\x9c\x2a\x07\xaf\x40\xe4\x59\x35\x20\x71\xf0\xce\x7f\xbd\x1e\xa6\xf3\x02\xa1\x50\xcf\x42\x30\x17\x9b\xec\x2f\xd8\x70\x23\x40\xf1\x5f\x20\x22\xb3\x98\xc8\x9d\xc7\x49\x56\x85\x12\xc5\xf1\xe9\x00\xa2\x24\xbc\xd2\x70\x74\xd4\xef\x22\xcd\x6b\xc5\xac\x22\xd4\xcb\x1d\x76\xa8\xb2\xaa\x49\xf9\x59\xea\x37\x0d\xdf\xbe\xa4\xc8\x55\xf8\x18\x68\x02\x1a\x63\x3b\x62\xd9\x04\x0f\x04\xad\xe1\x31\x90\x58\x78\xba\x83\x40\x52\x82\x31\x25\x74\xd9\x03\x00\xc8\xd6\x29\x33\x96\x93\x8c\xa2\x2e\x0e\xd0\xa8\xe2\x89\xe6\x87\x05\x3a\x1d\x05\x69\xbe\xdc\xf8\x78\xe4\x06\x4c\x59\x28\xc4\x1c\xd8\xfa\x4b\x5a\xcc\xff\x88\x6b\xf8\x8c\x9d\xeb\xcf\xa3\x22\xe1\x47\x62\x74\xaf\xeb\xa5\x11\x45\x4f\x0f\x87\x27\xa7\xc7\x07\xef\x7f\x68\xf3\xde\xc3\xec\x21\xf3\xa2\xb2\xa4\xb7\x4a\xef\x26\x1a\x1f\x00\x2a\x77\x49\x29\x0a\xaa\xd9\x77\x45\x0b\x46\xa1\xb8\xab\x2b\x13\xb5\xe4\x8e\x1d\xb2\x0b\x43\x44\x13\x62\x24\x78\xa8\xa4\x62\xa5\x75\x5e\x1f\x35\x6a\x99\x26\xce\x8e\x93\xce\x58\x0c\xcd\x8f\xa6\x71\xb9\x5b\x24\xfc\x75\xdd\x4d\x65\xe7\x92\x95\x11\x2d\x7f\x4a\x5e\x6c\x40\xf3\x31\x7b\x29\xfe\xba\x18\x8f\xb1\xb3\xa7\x6c\x13\x08\x6b\x26\xfe\xec\x5e\x34\x1a\x13\x00\x41\x80\x4d\x8c\xb0\x89\x0b\x6c\x62\x3c\x1e\x4b\xd2\xfe\xca\x1a\x26\x36\x00\x23\x61\x7d\x16\x4b\xa0\xbe\x03\x84\xf1\x5b\xd3\x10\x06\xb1\x25\x40\xbb\x31\x5b\x97\x43\xfd\xfe\x7b\xb6\x09\xde\x3f\xdd\x0b\xfc\x38\xda\x80\x3f\x37\x3e\x6d\x6e\x6c\x6c\x6c\x68\xb7\xca\x56\x32\x35\xf2\xe5\xc7\x20\x6e\xdc\xc9\x90\x61\x49\xe8\xf7\x87\xad\xfc\xcc\x84\x1a\xbe\xc8\xf1\xe4\x5d\x25\x88\xcc\xd7\x20\xc8\x6c\x0a\x22\xd3\x24\x2f\xcb\xc8\x25\x46\x67\xf6\x05\x4d\x5f\x9a\x87\x23\x5c\x9a\xcd\xe2\xde\x90\xc9\x6d\x59\x28\xf0\xec\x78\x65\x71\xe5\x24\xe1\x1b\xeb\x0d\x54\xef\x1b\x6b\xd1\xdd\x94\x4d\x92\x85\xc6\x89\x5a\xdf\x18\x81\x9d\x85\xc1\x11\x26\x93\x23\xff\x56\x10\x82\x99\x8c\x46\x9d\x7b\xa3\x91\xc6\xb9\x1b\xe8\x77\xc2\x6b\x4f\x2c\x57\x23\x02\x6c\x5b\xc4\xe9\x65\xd1\x40\x7d\x52\x6b\xca\x2b\x33\x40\x68\x43\x51\x71\x08\xb1\x68\xe8\x2f\x99\x80\x2a\xb7\x83\x83\x92\x77\x5e\x85\x79\x0a\x20\x69\xa4\x51\x47\x81\x50\xa8\xe8\x1d\xcc\xb5\x6b\x90\xab\x66\xa4\xeb\x23\xf8\x45\x81\xa6\xcd\x10\xd3\xc9\x51\x34\x86\x31\x51\x33\x10\x5c\xda\x1c\x22\x85\x00\xd5\xde\xa1\x56\xe0\xe6\x71\x9c\x65\x17\xf1\xe8\x12\x74\x6c\x79\x91\xaf\x63\x0c\xf0\x2c\xbd\xe4\x6c\xff\xe4\x19\xf8\x47\x63\xa2\x4f\xa5\x11\x2b\xb2\x84\xfd\xfc\x82\x12\xec\x55\xd2\x8b\xd2\x0d\xbc\x3a\x2a\xc6\xf2\x52\xe1\x55\x96\xe6\xf5\x7a\x92\x56\xa2\xfe\xba\xd8\x5f\xeb\x59\x9a\x73\x96\x17\x46\x64\xd1\x8b\x45\x9a\xd5\x69\x5e\xb5\x86\x5e\xee\x76\xfe\xd9\x09\x22\x49\x1e\x0e\xaa\x7d\x35\xa4\xee\x86\x5e\x4c\x73\xed\x1a\x11\xad\x47\xc5\x18\xbe\xed\xec\x28\xd6\x86\xbd\x62\x69\x1d\x55\xf3\x2c\xad\xbb\x1d\xc8\x8a\x41\xbd\xa5\x75\xe0\x62\x0a\xef\x40\xcc\x74\x40\x0f\x26\xec\x5b\x53\x16\x61\x00\xf5\xcf\x08\xb8\xfb\x56\xee\x08\x07\x92\x62\x13\x6b\xc0\xd7\x17\x55\x91\x2d\x6a\x2e\x9f\x17\x39\xf0\x31\x15\xaf\xc3\x30\xef\x4b\xab\x76\x70\x32\x3c\x78\xbf\xfb\xf6\xa7\x3d\x95\x64\xa1\x71\x51\x3f\x41\x2b\x38\xcf\x42\x70\xbb\x85\x6e\xad\x3b\xdb\x0e\x92\xfb\xa4\x36\x72\x45\x58\x5b\x5d\xce\xb1\xab\x38\x2b\xf3\x52\x97\xcc\x99\x3d\xbf\xae\xea\x52\x25\x7e\x33\x2a\x99\x7e\x42\xbd\x9e\xb3\x06\x6c\x51\xf1\x8a\x9d\xc4\x33\x0e\x06\xa4\xff\xc3\xcb\x82\xf1\xff\x5e\xc4\x59\x5a\x5f\xb3\x38\x9b\x14\x65\x5a\x4f\x67\xaa\xf2\xb2\xad\x5a\xf1\x6c\xbc\x3e\x2a\x66\xf3\x58\x66\x61\x86\x30\xbf\x1a\x77\x90\x6a\x36\x63\x2b\x3b\x8c\x67\x41\xf3\xac\x5a\x28\xd3\xce\x94\x87\x67\xa9\xfd\x78\xeb\x33\x06\x82\x43\x91\x9e\x59\x8c\xdc\xb1\xe4\xed\x52\xfa\xd0\x83\xf1\xff\x53\x78\xb4\x53\xb1\x69\x91\xf1\x2a\x74\x71\xb7\xce\xf2\x82\xde\x90\x93\x44\x0a\x9a\xf8\x6d\x7b\x4e\xdb\x8c\x26\x10\x34\x10\x22\xd8\x1d\x58\x52\x8c\xc1\x6f\x59\x11\x69\xde\xe7\xc0\x0a\x71\xcd\x7d\x79\xeb\xdf\xea\x40\x12\x4a\x0f\xb0\xe2\xa0\x7e\x7d\xd3\xe5\x50\x7a\x3d\xf6\xad\xb8\xdd\xbf\x66\xa7\xb4\xeb\xd4\x91\x7c\x28\xd7\x3c\x4b\x73\xb6\xc3\xde\xc5\xf5\x34\x9a\xa5\xf9\x23\x13\xa6\xd5\x82\x6b\x63\xaf\x44\x23\x5d\xcd\xab\xa6\x75\x10\x0a\x9e\x6a\x6c\xfe\x27\x08\x0f\x46\x54\x9a\x17\x57\xdd\xad\x90\x7d\xfd\x2c\x80\x47\x8a\x3b\x3b\xec\xbb\x8d\x8d\x6f\x37\xbf\xfb\x6e\xeb\xeb\xe7\xdf\x3e\xdf\xf8\xee\xbb\x4d\x27\xd4\xff\xc3\xe7\x12\x7f\x52\x73\x89\x3f\x7d\xce\x04\xad\x23\x48\xea\x15\x75\x64\xd5\xfc\xb4\xb4\x23\x11\x01\x30\xdf\x23\x2e\xe2\x4f\x24\x5d\x3d\x65\xf2\x19\xd7\x86\x98\xbd\x40\x52\xea\x9e\x71\x93\x99\x78\x78\x3a\xbd\xc6\x14\x54\xdd\xb5\x35\x9d\xc1\x4e\xfe\xa0\x1c\x76\xd8\x93\xf9\x40\xb8\xfa\x26\x8a\xd1\x7d\xd8\x4d\xa4\x36\x91\x8f\x05\x7c\x23\xf9\xe2\xa9\xe7\x14\x0f\x3f\xc4\xec\x57\x1e\x16\xd3\xc8\x41\x64\x04\x1b\xde\x3b\x7c\x77\x40\xea\x09\x30\x38\x77\x76\x4f\x4e\x8e\x17\x19\x7f\x9b\x56\x75\xb8\x7b\x72\x72\x52\x5f\x67\x7c\x8f\x8f\xb2\xb8\x84\x98\xd1\xe2\x1b\x90\x49\x04\xc8\x52\x9e\xd7\xc7\x7c\x54\xc3\x9f\x7b\x87\xef\xcc\xdf\xd8\x1f\xfc\xd5\x61\x4f\xc5\x62\x77\xf6\x0e\xdf\x9d\x16\x97\x3c\x47\x90\xb8\x8e\x4f\xcb\x38\xaf\xc6\xbc\x3c\xa8\xf9\x0c\x3e\xbe\x49\xa9\xf3\xbf\x9f\xbe\x7b\xfb\x3a\xcb\x76\x8b\x2c\xe3\x18\x36\x56\x7c\x71\xfe\x7c\x53\x94\x33\x5a\x1c\xf8\xfb\x84\x8b\x52\xf9\x45\xf6\xfa\x8e\x27\x69\x0c\x8d\xbe\x4b\x67\xfc\xf4\x7a\xce\x81\x8a\x85\xef\xe3\x19\x4f\xde\x17\x09\x7f\x17\xcf\x43\xf1\x2f\xc0\x1c\xc5\xa9\x98\xd3\x7f\x2f\x78\x85\x53\x39\xca\x16\x93\x34\xa7\x7f\xb0\xe6\xc9\xcf\x3f\x20\xb5\x00\x80\x93\x9f\x7f\x78\xbf\x98\x5d\xf0\xd2\x9a\xeb\xc9\xcf\x3f\x1c\xc5\xf5\xf4\x84\x4f\x24\x10\xc8\xc3\xf2\x0f\x03\x3b\x27\x3f\xff\x80\x78\x28\x4a\x44\xc2\x09\xbc\x82\xfb\xdb\x62\x3c\xa6\x36\x61\x19\x4e\xa6\x9c\x63\xf5\x53\xfe\xa9\x3e\x2d\xe3\xd1\xe5\x2e\x2d\x84\xec\x53\x15\x20\x58\xb1\x18\xc1\x08\x3b\x81\x64\x5f\x42\x5a\x7b\x9f\xbd\xd4\xdc\x0b\x1e\xb3\xa9\x80\xc6\x7c\x5f\x16\xa4\xb4\x9a\xa2\xe3\x9e\x5c\x1d\xc1\xd6\xe2\xa3\x11\xc8\x3f\xa4\x75\x28\xe4\x3f\x6d\x40\xae\xad\x19\x7f\x39\x59\x27\x94\x79\x11\x12\x7f\x62\xb6\x24\x6b\xaf\x9f\x07\x56\xaa\x24\xab\x0c\xc5\x0f\x24\x33\xcd\x7c\x48\xea\x4b\x04\x4b\xba\x2d\x53\x37\x7b\x64\xd6\x38\x49\x4e\x8b\x9f\xf2\x6a\x54\xcc\xe5\x41\xb1\x24\x91\x24\x11\xb2\xe5\x42\x03\x68\x99\xb4\xe6\x73\x5f\x2e\x48\xf1\xfd\x33\x8e\xf9\x03\x19\x45\x94\x5c\xb7\x40\xc9\xf7\x9c\xde\x37\x68\xcf\x05\x95\x5f\xcf\x04\xdb\x7c\xd6\x80\xc3\x24\x81\x26\xd0\xd6\x77\x0d\x20\x99\x3c\xcb\x04\x7b\xb6\xe1\x82\xb9\x72\xf2\x52\x09\xcc\xd6\x33\xe2\x79\x93\x09\xe6\x7c\x5a\x46\x4a\x04\xe8\xea\x1a\x35\xa7\xf9\x39\xea\xc6\xa6\xc6\x51\xc2\x5f\x0a\x29\x2a\xcd\x13\x9f\x86\x52\x7c\xd7\x98\x20\xdd\x24\x8c\xfc\x0b\xa9\x26\x21\x25\xa4\xfc\x7c\xd9\xa6\xb1\x7c\xfa\x54\x1d\x9e\x95\x43\xcd\x21\x59\xba\x4a\xe5\x21\x22\xf1\xe5\x6a\xb0\x54\x92\x74\x3e\xef\x6e\x2a\xaf\x01\x6c\x15\x87\x21\x93\x75\x06\x16\xec\x86\xa5\xcc\xb4\xa0\x29\x89\x67\x03\x5e\xf2\x79\x16\x47\x20\x0b\xcf\xe8\xc6\x97\x40\x98\xad\x22\xd4\xad\xc9\x0d\xaf\xdc\x6f\x05\xc5\x33\x77\x1c\x4b\x2b\x5a\x05\xc0\xfe\x10\x2b\xfe\x85\x75\xbf\x8b\x9e\x47\xcf\xa3\x6f\x42\x86\x3f\xbe\x0d\x06\xb9\x49\x15\xa8\x39\x2f\xad\x18\xe4\x2e\x51\xe8\x76\x94\x8a\xa1\x59\x64\x8c\xb5\x59\xa8\xf2\x2d\xde\x6b\x84\x6e\x64\xfd\xb8\xb7\x46\x52\xe4\x3c\x64\xe6\xe3\x0b\x57\x85\x4c\xbe\xec\xa8\x42\x5e\x59\x11\xff\x2e\x4d\xce\xfc\x00\x73\xca\x03\xac\x28\x00\xb7\xcc\x78\x62\x78\x4c\x28\xbd\xdd\x72\xf8\x6f\xa9\xd5\x28\xae\xae\xf3\xd1\xfa\x43\x2c\x34\x46\x25\x74\xdd\x7c\xbc\x99\x86\x9c\x32\xd0\xda\xe5\xd5\x7a\xf6\x7a\x6c\x7f\xf7\xdd\x6b\x0c\x9a\xce\xbe\x61\xd8\x61\xc5\xaa\x69\x3a\x7b\x04\xaf\xb8\x34\x75\xce\xde\xfe\xc9\xee\xf1\xc1\xd1\xe9\xe1\xf1\xc9\x32\x7d\xd6\xef\x91\x3f\xf9\xdd\xfe\xe9\x6b\x07\x66\xc6\xeb\xb8\x13\x44\x3f\xee\xff\x43\x76\x08\x69\xba\x1d\x28\x4a\xdd\x2d\x6f\x4a\x48\xc7\xe5\xcd\xd1\xf5\x5b\x35\xbc\x8b\xd4\x6d\x77\x91\xea\x46\xaf\x2e\xdd\x81\x01\xc3\xac\x4b\xf7\x3f\xb9\x98\x52\xa6\x39\x0d\xb4\xe7\xc3\x95\x80\x73\xb0\xc5\xf3\xc5\xac\x2d\xe1\x94\xa2\x1f\x40\xd2\xe9\x1d\x77\x23\x85\x38\xc8\x1b\x8f\x57\x8e\x3e\x38\x27\xf9\x83\xf3\xaa\xfd\x7e\x69\xa2\x1e\x99\xaf\x6a\xf8\x08\x9b\xc2\xe4\xf0\xe8\x7d\x73\x41\x65\xde\xec\x62\x9e\x5b\x0b\xfb\xe4\x07\x4c\x2f\xe5\x87\x4d\x2c\x38\xf7\xe0\x69\x38\xe3\xe0\xed\xdd\xaf\xee\xbe\x27\x8b\x99\x9b\xf9\x0a\x86\x18\x8d\xa5\xc9\x44\xb4\xff\x64\xef\x48\x7d\x10\xf3\x15\xbc\x38\x4e\x5b\x7d\x7e\xa2\xfc\x55\x90\xcc\x68\xfa\x05\xa5\xff\x79\x72\xf8\x5e\x97\x89\xbf\x24\xaa\xf1\x78\xa5\x63\xb1\x31\x11\x6c\x6d\x0d\x7f\x44\xaa\x88\x60\x21\x59\xdd\xe9\x3f\x8e\x84\xc0\x60\xe4\x4b\xa3\xd2\xbf\x1f\xec\xed\xed\x8b\x4e\xae\x2e\xab\x6e\x67\x88\x09\xce\x4c\x79\xf6\xe8\xf8\xe0\xdd\xc1\xe9\xc1\xcf\xfb\x12\xc6\xd8\x44\xc6\xae\xde\xcf\x17\x33\xcc\x61\xe8\x53\xfb\x12\x18\xce\xee\x98\x4f\xd2\xaa\x2e\xc5\xd0\x91\xb0\x74\x3b\x48\x8b\xd7\x4b\x2a\x51\xed\xbe\xce\x32\x4a\x4a\xd7\x00\xd6\x2b\x70\x78\xd4\x84\x29\xe6\xeb\x0d\x30\x4f\x26\xc1\x33\x85\x9c\x73\x82\xfa\xe9\x64\x7f\xf8\xfe\x35\xcd\x97\xdc\x30\xd4\x2a\xb9\x29\xfd\x56\x56\x60\xc7\xa9\xe5\xfc\x2f\x75\x10\x69\xc9\xfe\x4b\x39\x09\xaa\xdc\x94\x70\x29\xf1\xba\xe6\x25\xc4\x0c\xfb\xaf\x9a\xe1\x8d\x14\xaa\xfc\x1f\x93\xb4\x9e\x2e\x2e\xa2\x51\x31\xeb\xfd\x33\x2b\xd2\xb2\x18\x5d\x2a\x0f\x26\x0c\x44\xd6\xdb\xfc\xf6\x99\x22\xc5\xf8\xbe\x76\x45\xf6\x7d\x7b\xab\x7e\x1b\xb3\x6b\xf9\x1c\x8d\xd3\x3c\x01\xcf\x7a\xc9\xbd\x59\x56\x86\x22\x4b\xd8\xeb\x3c\x29\x8b\x34\xd1\xc3\x1b\x15\x09\x8f\x26\x45\x31\xc9\x20\xf6\x64\x6f\xde\xfb\xf8\x42\x8e\x2b\xe1\x75\x9c\x66\xaf\xd2\x64\xe7\x9b\x17\xdf\xaa\x11\x22\xfa\x88\x8e\x98\x57\xa4\xd8\xb3\x70\xfd\x74\xdb\xa2\x7a\x10\x4d\xe9\x26\x47\xdd\x1b\xc1\x6c\xc6\x9d\x50\xb2\xcc\xf6\x63\x7a\xd3\x48\x97\x1c\xd1\x4b\x30\x04\x97\x1c\xd6\xb7\xec\x2e\x88\xe2\x6d\x7a\x9f\x1e\x04\x51\xcc\x56\x76\xd8\xb7\x60\xa7\x67\xaf\x2c\x89\x86\xbc\x2e\xf7\xac\xc8\x67\x45\x5d\xd0\x1c\x30\x1d\x9c\xde\x4f\x98\x03\xd4\x96\x94\xf7\xc0\xc7\x33\xe1\x19\xaf\xb9\xb9\xf7\xce\x54\x04\xb2\xe4\xc8\xec\xa9\x59\x5b\xa0\x07\x5c\x1b\x77\xcc\xfa\x81\xa8\xe7\xf6\x1d\xea\xe1\x01\x5b\xce\xfa\x2c\x39\x52\xca\xa5\xab\x32\x9e\x5b\xdc\x68\x1d\x4f\x8c\x99\x55\xd7\xe2\xe4\xea\xa3\x76\x56\xc7\x93\x73\xed\x9e\xdb\xa5\xed\x6f\x6c\x1b\x32\x38\x5e\xcf\x50\x0c\xab\xe3\x89\x25\x31\x5c\xcf\x54\xfc\x14\x24\x0e\x8a\xca\x19\xa7\x4b\x7b\x39\x51\xfb\x91\xe1\x40\xc7\xe8\x90\x77\x9c\x75\x71\x42\xbe\x28\xf7\x4f\xa3\x06\x4d\x7f\xa9\xae\xd7\xf0\xd7\x7f\xa2\x28\xae\x1e\x70\xd3\x71\xfe\x5e\x8f\xde\x3d\xc3\x85\x2d\xc5\xb8\x61\xd6\x9a\xb9\x0e\xe2\x8a\x66\xd9\xeb\xaf\xac\x93\x29\xa5\x6e\xc0\xc0\x21\x66\xf6\x42\x00\xd7\xf9\x0b\x55\x0d\x63\x07\x4d\xe3\xaa\xab\x97\x13\x37\xa7\x15\xdd\x6c\x65\xcf\xf0\x9b\x77\x94\xfd\x2b\xa2\xb6\x98\x17\xde\x0c\x41\x20\xf7\x29\xfe\x1d\x9a\x79\x0c\x37\x43\x76\x73\x17\xe8\x97\x41\x69\x7d\x86\x50\xe7\x32\x74\x89\x61\xd1\x70\x9f\x0d\xc9\x91\x1a\x7d\xe1\x8e\xb7\xda\x08\x3c\x8d\x9a\x5e\xfe\x8c\xed\x19\x5b\x75\x4f\x1c\x77\x33\x9b\x94\x31\xd8\x8d\x10\x2b\x1a\xc1\xa7\x95\x81\xc2\x22\x52\x8d\x53\x79\x67\x10\x16\xbb\xec\x6e\xdb\xb7\x63\x30\xd9\x7f\xbb\x5d\x5a\xb4\x71\xe4\xda\xa3\xd3\xba\x61\x90\x96\x4c\x6a\xf7\xc8\xd2\xa3\x1c\x05\x41\x8b\xe9\x39\x6b\x31\x50\xcb\x44\xcb\xd2\xd0\x85\xf6\x68\x77\x4f\xd2\xd4\x1c\xeb\xb4\x91\x75\xdb\xf5\x92\x86\x99\x2b\xa6\xcf\x89\xc3\x61\xcd\x52\xbe\x86\x76\x9e\xf6\xbd\x52\x0b\x27\x0e\x69\xbf\x89\xc6\xae\x51\x4e\xd9\x37\x55\xc7\x3e\x3e\xc3\x0e\x49\xe9\x31\x3f\x43\xae\x66\x45\xf9\xc4\x1d\x8f\xac\x8b\xce\x31\x1f\x2e\x3d\x73\xfa\x90\x61\x64\x0c\xfb\x9c\x8b\xfd\xeb\x3b\x7c\xc0\x2b\x40\x46\xd0\x23\xe7\x50\x4a\xeb\xad\xda\xd1\xf4\x61\x1f\x2e\x6c\x51\x45\x8d\x29\x50\x9f\x1a\xcd\xdf\xde\x32\x0d\x6a\x9c\x25\xf1\xc1\x3e\x3c\xaf\xd8\x3e\xeb\xcb\x53\xa9\x50\xd9\x96\x5a\xd5\x79\x62\xe8\x4f\xbf\x9a\xca\x14\xd8\x48\x00\x5d\x9d\xdf\x03\xe9\x98\x9f\x70\x7e\x2e\x42\xd5\xce\xdf\x93\xb7\xb5\x1c\xa5\xea\x6c\x6f\x69\xdb\x0f\xa1\x4c\x01\xdb\xb3\x9f\x25\x29\x62\x47\x8b\xb8\xd7\x8e\x63\x4c\x43\xdc\x8a\x5e\xcc\x42\xac\x6e\x2e\xd1\x40\x4e\x35\x84\x08\xd1\xb5\x10\xac\xa9\x81\x2f\xc9\xba\x4d\x21\x1c\x4a\xd0\xcc\x83\x6e\xde\x12\x1e\xec\xd8\x89\xd1\x05\x56\x28\x53\x3b\xc9\x11\xfa\xc3\xbb\xfd\xd3\xd7\x41\x4b\x4e\x74\x6f\x42\x74\x0f\x96\x34\x5f\xdf\x82\x27\x02\xb0\x31\x75\x70\x32\x3c\x14\x14\xb3\xb9\x9d\xb6\xbd\xc8\x44\xf8\x57\x86\x1c\xd1\x67\x7f\x08\x82\x1f\x84\x5f\x35\x3c\xd8\xee\x2e\xcf\x49\x87\x39\xb0\x31\x6d\xf0\x72\x9a\x7a\xfb\xb1\x2e\x9f\x09\x3d\x07\xdf\x3a\xac\xd5\x3d\x93\xda\xaa\xb4\xc8\xcf\x03\x8c\x14\xbc\xa2\x79\x37\x9a\x84\x16\x5e\xd5\xea\x50\x7d\x6b\x96\x40\x28\x9b\x1c\x57\xf3\x91\x4e\x87\xda\x53\xaf\x74\x0c\xf7\xf6\x95\x8e\xe9\x47\x52\x83\xd6\x69\x91\x26\x5d\x37\xd0\x28\x99\xf1\x75\x10\x50\x08\x19\xa5\x43\xb8\x1a\x8d\x3c\xa9\xb8\x1d\x08\xd0\x0d\x8d\xd3\x46\xe5\x03\xa8\x4a\xd9\x9b\x35\xfd\x71\x42\x18\xc9\x05\x6e\x10\x65\xf9\x51\x12\x93\x50\x4c\x27\x08\x6c\x62\x4d\x2c\xb8\xcd\xe9\xd8\x5c\x0a\x36\x5c\xc7\x13\x97\x25\xc3\x81\xd8\xbe\xfc\x44\xf3\x6c\xd9\x0b\x85\xc7\xc0\x69\xd7\xda\x63\xd0\xfc\x8d\x27\xfb\x66\x88\x41\xc9\x00\x89\x77\x8e\x4f\xad\x90\x37\x40\xc6\x50\x5e\x1e\x4c\xa9\x31\x3d\xd2\x44\xc8\x94\x51\xdc\x34\x2c\xc9\x6f\x8d\xb8\xa1\xa6\xd5\x85\x3c\x31\x99\xd4\xbf\xb0\x9d\xf6\xdb\x0c\x2a\x80\x52\x46\x40\xd9\xcc\x0f\x8d\xd1\xab\x8a\x82\xa7\x69\x86\xee\xa6\xd9\x07\x90\xeb\xb6\x26\x20\x03\x3c\xd6\x6a\x51\x8d\xe0\xe8\x4f\x7c\x2d\xeb\x94\xfc\xea\xde\xb2\xd7\xd0\x7a\x84\x47\x16\x80\x8e\xf9\x8e\x8b\xd0\x6e\xad\x6a\xc7\x37\x90\x4e\xe8\x1f\xa0\x79\x4b\xd3\x93\x10\xd4\xc6\x46\x63\x3b\xf2\x49\x3c\xe3\xee\x52\xc1\x4e\xb8\xba\xac\xb0\x50\xef\x07\x68\xc7\x7d\x5f\xf8\x83\xf1\xbe\xf0\x17\xf7\xad\xa1\xa6\x3e\x62\x3f\x22\x5a\xfa\x8a\x04\xdd\x39\xd6\x74\x5e\x7d\xa3\xef\x8e\xae\xe8\x55\x52\xb9\xad\x68\x2b\x94\xbf\x9e\xa9\x5f\xcf\xd5\xaf\x6f\xd4\xaf\x17\xea\xd7\x77\xea\xd7\xe6\x86\xfe\xb9\xa9\x7f\xea\x26\x37\x75\x9b\x9b\xcf\xc1\x15\x60\x1a\x57\x07\xf2\x25\x79\x5a\xed\x42\x48\xe1\x93\x79\xc9\x63\x88\x36\x1b\x4a\xa1\x37\x9c\xc5\xf5\x68\x1a\x52\x40\xf1\xb0\xe2\x71\x39\x9a\x86\xd5\x9c\x8f\x52\x5e\x85\xe0\x35\x10\x1a\xec\x53\x68\xb8\x91\x84\xa6\xc5\x7b\x90\x9b\x3e\x06\x21\xfb\x15\xcd\xaa\x1a\x21\x9a\x50\xfe\xba\x1d\x88\xa5\xd1\x45\x67\xbf\x8a\x4b\xc7\xc6\xe4\x15\xcf\xb2\x1f\xf3\xe2\x2a\xd7\xf8\x04\xcd\xa8\x58\xd5\xa8\xaa\x8b\x92\x07\x21\xbb\xc4\x4e\x5c\x58\xdd\xd5\xe5\x76\xa0\xb5\xf3\x5d\x17\xee\xec\x52\xf5\x7b\xef\x9b\x53\x73\x1f\xd0\x85\x21\x55\x42\x7a\x89\xe5\x45\x16\x8d\x8b\x12\xd8\x0e\x58\x89\x71\x51\x76\x4c\xc5\x80\x66\x5a\x8d\x38\x87\x55\xd7\x56\x52\xe2\xad\xfc\x74\x87\x75\x3a\x2a\x2c\xce\x2b\x47\x91\x09\x97\xec\x40\x39\xf2\x7b\x0a\x05\xd6\xe8\x6e\xd4\x5c\x50\x68\x0f\xfa\x6b\x39\xe8\x4b\x7e\xfd\xa6\x28\xbb\xd5\xf5\x2c\x20\xd6\xf9\x4d\x51\x1a\x03\x37\xca\x2d\x76\x4d\xea\x59\xa0\xa4\x79\xbd\x56\xd7\x33\xfb\x11\x2c\x2a\x4c\xf4\xcd\xaa\xd6\x5c\xcc\x38\xcd\x9d\x79\xa0\xcb\xa0\x77\x6e\x3b\x3b\x0c\x06\x43\x48\x94\x2c\x10\x4e\x70\x51\xf1\x13\xb8\x67\x5c\x65\x9d\x52\x5d\x02\xdb\x6c\x40\x43\x76\xfc\x56\x68\xbc\x12\xe1\xe5\xfc\xe7\x6c\x19\xfd\x2e\x59\x63\x7f\x53\x50\x05\x27\x08\xc5\x21\x3b\x33\x5d\xb3\xcf\x61\x29\xb0\xac\x2f\x85\xde\xd0\x6e\xe2\xf9\xc3\x9f\x56\xb3\xc6\xa3\x68\xe7\x3e\x72\x9a\x7e\xd6\xe6\xff\xee\xf8\xb8\x37\x5a\x4e\x79\xe5\x11\xab\x9d\xd6\xd5\x9b\xf0\x56\x19\x4f\xf4\x02\x8d\xb7\x41\xf4\xdb\xaf\x5d\xa7\xb3\x6f\xfd\x9d\xa1\xc4\x73\xe8\xe9\x04\x4a\x1a\xed\xc3\x57\xa7\xe9\x17\xfe\xa6\xa5\x90\xe0\x6b\x9c\xca\x1a\xcd\xd3\x77\xb5\xc9\x7a\x3d\xb6\x3b\x2d\x8b\x19\x67\xcf\x5e\x80\xa7\xfd\xb3\xef\xd8\x87\x65\xbd\x7d\x60\x68\x6b\xc5\xdc\x18\x48\xb4\x2b\x2b\xcd\xf7\xc5\x62\x52\x45\x23\xd1\x68\xba\x98\x41\x8a\x6f\xbf\x26\xfd\xd9\xf3\xe7\xa4\xec\x7f\xf3\xfa\xe0\xed\xc9\xf0\xf0\xbd\xb6\xc9\x9c\x08\xc2\xe2\xd1\xa0\x4b\x86\xa2\xbb\x19\xa8\xd7\x2a\xf7\x9d\x13\x4f\xeb\x8d\xf3\xd2\x82\xbc\x87\x4a\x67\x3a\xdc\x01\x0d\x4f\x1a\x39\xb5\x94\x75\x67\xa2\x7c\xeb\x79\xf4\x2c\xda\x62\xb6\x59\x8b\x9c\xa7\xcf\x42\x46\x97\x65\x29\x7e\x57\xf3\x78\xc4\xcf\xc5\x31\xd5\xe6\xb0\x7b\x26\x6c\x8a\x34\xec\xf6\xb6\xd5\x14\x01\x96\x2b\x83\x82\xe3\x40\x7b\x3d\xf6\xee\x84\xed\x27\x13\x8e\x19\x31\xca\xba\x22\x8a\x8a\x0c\x78\xc5\xea\x02\x46\xce\xe2\x8a\xb2\x52\xf4\x7a\xec\x17\x7e\xf1\x63\x5a\x3f\xa0\x46\xbe\xc8\x32\xaa\xf3\xf3\x0b\xa4\xe5\xb0\x99\x2e\x8a\x4f\x3c\x91\xbe\x0b\xa6\xa1\x44\xe3\xe7\xec\xe4\x3c\x80\x80\x08\x67\xa2\x91\xf3\x8e\x98\x9b\x51\x7c\xc3\xe2\x3e\x3b\x61\x77\x08\x73\x73\xe7\x96\xd3\x8a\x9c\x04\x0a\x00\x2c\x24\x41\xc8\x3a\x62\x70\x72\x2b\xa8\x0a\x66\x64\x62\xd5\x88\xb1\xe4\x1f\x31\xbb\x0a\x04\x78\x4e\xeb\x73\xe7\x61\xe0\xa6\xf1\xb7\x5c\xcf\x90\x3d\x91\x3f\xa9\x94\xa4\x69\x8f\xb4\x97\x06\xd0\x38\xca\xbd\x5a\xec\x4b\x89\xa3\x10\x95\x55\x63\x60\xcd\x55\x3f\x21\x75\xc4\xe6\xf9\xb6\x75\x83\xd2\xe4\x25\x18\xe9\x7d\x9a\x11\xc9\xd4\x5d\x2b\x36\xae\x95\x5b\x63\xff\x05\xfd\x59\x11\x3a\xc4\xaa\xa9\xba\x56\x67\x18\xe9\x58\xf5\x15\x98\xa3\xb3\xd8\x14\xdb\x73\x88\xd9\xd9\x62\x8c\xe9\xd9\x41\x30\xe4\xb3\x05\x05\xe0\x28\x39\xbd\x22\xab\xe6\x22\x48\x8c\xf4\xc6\xa5\x96\xaf\x2b\x11\x85\x06\x5e\x6d\x41\x50\xef\x2a\x0a\xd0\x08\x67\x13\x93\x81\x78\x8e\x3b\x30\x42\xcf\xa2\xe7\xcc\x7d\xb3\x7e\xf6\xd7\xbf\x1a\xbc\xef\x79\x77\x9a\xe6\xb5\x38\xe9\x0d\x51\xf2\xcc\x34\x58\x83\xd1\xd3\xf3\x14\xd0\x27\x81\x9a\xf5\x42\xd6\x84\x40\x07\xcb\xc3\x71\xb0\x6d\x8e\xf4\x6b\xff\x48\x15\x67\x7e\x3e\xc8\x9d\x57\x79\xd4\xb2\xe6\x5d\xa9\xc1\xad\x0d\x78\xdd\xf8\x1d\xb8\xf7\xdf\xd7\x88\x80\x09\x59\x47\xfc\xd3\xd1\xd2\x99\xa4\x97\xcf\x80\x86\xdc\xd7\x86\xe1\x53\xa0\x0f\xb6\x6c\x8a\xfc\xf8\x3d\x2e\x45\xe0\xb1\xd3\xed\xa0\x67\xd1\x63\x5d\x5a\x96\xfb\x4e\x55\xbc\xf6\xb8\x9a\x58\x01\x62\x64\x87\x09\xa9\xdc\xc8\xf5\xe0\x53\xcd\x73\x08\x2d\xa2\x43\x89\x59\x5f\xad\x1c\x0c\x8e\x09\xd1\xd6\x84\xbf\x39\xde\xdf\xff\x3f\xfb\x6c\xc7\x16\xab\xc9\x43\xaa\xd5\x48\x6d\x76\xd6\x55\x29\x1d\x38\xc4\xba\xc6\x82\x22\xaf\xba\x64\x29\xbb\x33\xe6\xfb\x8e\xd7\xb1\xff\x5d\x0a\x21\x03\x54\xd0\x62\x19\x0c\x33\xb6\x64\xf9\xfb\xac\x73\xd8\x61\x4f\xd9\xd3\xa7\x69\x12\x0a\xd2\x43\x39\x22\x0e\xf6\x88\x66\xf6\xd9\xcd\x9d\xe5\x16\x7b\xc5\xe3\x4b\x36\x52\x3e\xde\x15\x3b\xd8\xab\x50\x33\x78\x67\x5a\x56\xc6\x71\x55\xff\xc8\xaf\x9d\x81\x49\x2d\x53\xa0\x38\x67\x9a\xbd\x62\x6f\xd8\x55\x5a\x4f\xd9\xbc\xe4\xe3\xf4\x93\xd4\x56\x68\x92\x6a\x10\x4a\xbf\xe1\x16\x9e\xf7\xb1\xbe\x19\xd5\x07\x4a\xd5\xe3\xbf\xce\x49\x87\xf5\x59\xe7\xa8\x13\xb0\xa7\x68\x84\x72\x2c\x96\xa0\x72\x56\x44\xb2\xd7\x63\xa3\x38\xef\xd4\x02\x97\x4c\x6c\xd8\x24\xae\x63\x71\xc5\x2e\xf2\x51\xbc\x98\x4c\x6b\x36\x2e\x8b\x7f\x72\x99\x2f\xc1\xa2\xcc\xc6\x7a\x9a\xe3\xee\xbc\xe9\xe8\xe7\x59\x42\x88\xca\xf9\x88\x57\x55\x5c\x5e\x43\x62\xcf\x24\x51\xfd\x18\xad\x49\xb4\xc9\x36\xf6\x8d\x36\xa0\x4a\x5a\x55\xe2\x9a\xb0\xab\xd2\xee\x50\x06\x14\x8d\x6f\x6b\x99\xef\xb4\x51\xee\x4c\x4c\xff\x3c\x4a\x8d\x95\x9c\xf0\xfa\x17\xb1\xe6\x4b\x57\xf2\x8f\x45\xa1\xfd\xc4\xed\x33\x71\x68\xaa\x45\x3f\x13\x8b\xd3\xb8\x9a\x2e\x39\x10\x2e\x56\xaf\x08\xab\xb2\x37\x89\x8b\x22\x67\xe3\x92\xf3\x7f\xf2\xf5\x71\x3c\x4b\xb3\x6b\x51\x32\x2d\x92\x0a\x22\x27\xa5\xf9\x04\xd7\xa1\xc8\xdf\x00\x50\x7b\x24\x2b\x22\x3c\x6b\x6b\xd0\x74\xf4\x7e\x7f\x1f\xec\x53\x2e\x1a\x95\xdd\xcb\x58\x2b\x77\x8e\x3e\x2b\xed\x0c\x09\x4d\xc3\x9b\x16\xfa\xff\x71\xff\x1f\x7d\x24\x32\xe2\x2f\xd1\x35\xc5\xb0\x80\xbf\x89\x1a\xf4\xe5\x8f\x90\xe4\x00\xb1\xb1\xfa\xf2\x07\x7c\x94\xb3\xec\xab\x5f\xe6\xf3\xbe\x38\xcb\x98\xf9\x34\x19\x77\xf1\x25\xbf\xae\x42\xa6\x9e\x31\x2a\xbe\xf6\xe1\xef\xc8\xc9\xbb\xee\x21\x6e\x7f\xf3\x83\x7d\x3f\x14\xa8\x68\x1f\xf8\x62\xd0\x32\x03\xc9\x27\xe3\xa6\xf1\x7e\x22\xb5\xe9\x64\x60\x42\xf7\x30\x5c\x66\x5d\x66\x47\xd1\xd0\xf0\x0a\x40\xb5\x49\xbc\xb2\xf4\xb0\x9b\x1f\xec\x47\x63\x87\x89\x36\x33\x16\x4a\xed\x8b\x62\x9a\x2b\x57\x19\x97\xa2\x2a\xc7\x34\x7c\x6b\xd3\x3f\x41\x23\x03\xfd\x28\xfb\x9d\x7c\xc5\xb9\x15\x6d\xb1\x03\xe2\x6d\x25\x43\x1e\xdc\xf7\xf6\xfc\x11\x59\x94\x52\xdd\x76\xf3\xc9\x38\x7c\x14\xd7\x06\xbe\x53\x69\x7f\x40\x7f\xb0\xbf\xb9\xc9\x2e\x16\x93\xc9\xf5\x12\x7d\x04\xde\x68\xe9\xb8\x8c\x67\x1c\xa4\x7e\x4c\x10\xf4\x68\xbf\x5b\xf2\xfe\x5c\x62\x5f\x50\x0e\xba\xc8\xa1\xa1\x27\xa5\xfc\x4b\x3b\x72\x41\xf7\xd2\x76\x6c\x67\x33\x12\x93\xa6\x6e\x05\x95\xa0\xaf\x6b\x6b\x4b\xa6\x27\x70\xf7\x6a\x99\x3a\x06\x1b\x09\x58\x1f\xed\x9d\xfa\x52\xb1\xc6\xe1\x39\x24\x46\xee\x49\x99\xe4\xf6\xf0\xe8\xbd\xda\xd2\x2a\x61\x63\xd3\x60\xa0\x5b\xa6\x10\x28\x5a\x4e\xf0\x04\x8d\xb0\x4d\x10\x4b\x6d\xe8\xcd\x0e\xc0\x43\xc2\xca\xb7\x25\x03\x0e\xc8\x74\x5b\x38\xcf\x73\xc8\xf8\x64\xcd\x9a\xfc\x55\xfc\xb6\xf8\xbb\xc6\xfb\x54\xcb\x03\xbd\xdb\x81\x87\x11\x07\x4e\x28\xa9\x76\x70\xe7\x49\x84\x15\xb3\x76\x49\x24\x3e\x7d\xb9\x88\x3f\x41\x84\xfd\x58\xa4\x89\x11\x23\x5e\x87\xa5\x3d\xe6\x63\x5e\xf2\x7c\xa4\x62\xd3\x82\xdd\x73\x1a\x57\xe2\xf2\xbf\xe0\x3c\x67\x29\x35\x5f\xf1\x84\xad\x63\x14\xdd\x6e\x60\x41\x08\x0c\xca\x40\x86\x6e\xf0\x30\x31\x82\xf6\xa0\x61\xde\x49\xb8\xc1\x6c\x27\xbc\x56\x8f\xb6\x0e\x1b\x21\x19\x9d\x60\xb6\x13\x5e\x1b\xf1\x2a\xec\x18\x8d\xb2\xc1\xea\x31\x0d\x56\x2d\x0d\xea\x95\xb0\xc7\xd7\x2d\x08\xcb\xcd\xd9\x36\x26\xd2\x32\xa0\x57\x6d\x53\x37\x14\x2e\x6d\xbd\xea\x78\x72\x46\xf0\xe3\xdb\xdb\x96\x16\xbb\x85\x6d\xa9\x45\xd9\xdd\x07\xd3\xb2\x80\x36\xe8\x67\x87\x72\xf5\xad\xda\x83\x62\xb9\xba\x15\x3f\xeb\xe9\x90\xa6\x83\xe6\x5c\xe4\xe5\x41\x2a\xe6\xef\x98\x17\x0c\x74\xcb\x8f\x7a\xb5\xd1\xbe\x9f\xcd\xdb\x61\x5e\xd0\xbb\x3a\x4f\x61\x15\xcf\x05\x75\xb0\xdb\xe9\x78\x1e\x31\xba\x11\x42\x9c\xa1\x7b\xb4\xb3\x0e\x84\x47\x4b\x6b\x04\x37\xeb\xf5\xd8\xac\xa8\x6a\x19\xd4\x45\x32\xc0\x17\xd7\x6c\xff\xe4\x1b\x56\x4d\x8b\x45\x96\x50\x12\x4f\x4b\x15\xfe\xe0\x17\x50\x62\x7d\x1a\x6c\x43\xa9\x1f\x1f\x2c\x7f\xd4\xb4\x84\xa7\xfb\x71\xff\x1f\x21\xe3\x9f\xf8\xc8\x60\xed\xc6\x39\x26\xdc\x2b\x79\xa4\x1d\xea\x6f\xee\x82\xb3\x1f\xf7\xff\x01\x0a\x25\xf2\xa1\x17\x7f\x2a\x96\x8f\x7f\x9a\xcb\x68\x55\x4c\xfc\x81\xc0\x3b\xd0\x76\x77\x9c\x23\xce\xee\x53\x47\xfb\xd4\xf8\xe3\x9c\x34\xf8\xa6\x26\x9e\x7f\x9a\x7b\xaf\x99\xb6\xd3\xe1\xd2\xae\xdf\x72\x3a\xaa\x25\xa7\xe3\x59\xb4\xa9\x8e\x47\xe5\x1c\x0f\x72\x50\x0f\x1e\xb8\xec\x0d\x5c\xd9\x11\x85\xed\xd6\xfb\x8d\xf7\x67\xd0\x57\x27\x88\x94\x73\x0a\x8e\xf2\x97\xa2\xbc\x24\x9e\x4e\x53\xc5\x22\xcf\xae\x23\x76\x98\x25\xec\xe3\x0b\x92\x76\xaf\x8a\xf2\x12\xc1\x20\xcf\x04\x3e\x7c\x47\x64\x56\xd1\x20\xef\x7d\xe5\xc4\x7c\x51\xd1\x91\x54\x52\xd7\x07\xab\xc4\x1e\xfc\x6e\x0c\x12\x32\x5b\xbb\x57\xe1\xd4\x1f\xd8\xca\xd6\xbe\x10\xe4\xda\x1a\xcd\x66\x85\x92\x68\x34\xcd\xc4\x58\xfe\x94\x0d\x56\xfb\x86\xf0\x1f\x57\x4c\x6d\xa1\x15\xbc\xfc\xee\x7c\xbb\x48\x2a\xaf\xfa\xfe\x8d\x00\x61\xf4\x3a\x0a\xf9\x1d\x96\xe6\xec\xe6\x8e\xbd\xf2\xc4\xd1\xc9\xd2\x9c\x42\xe6\x18\xef\x16\x78\x55\x87\xc8\xb5\x83\xff\x91\x99\x91\xdb\xcc\x76\x0e\x43\x70\x49\x46\xfd\xa9\x13\x74\x55\x56\x58\xc1\xad\x84\xed\x0f\xca\xa2\x71\xd7\xcd\xcd\x1a\x32\x63\xe0\xb0\xb7\x42\xb6\xa5\x95\xe7\xd0\x27\x8d\xf0\xec\xdc\xfc\x8e\x52\xc6\x0e\x5b\x81\x52\xd3\x15\x0e\x84\x14\x0d\x6a\xb1\xc5\xaa\x1a\x99\xc7\x07\x76\xa0\x58\x33\x1b\xa4\xf7\xa4\x99\xd8\x80\xcd\xa3\x8b\x8c\xb1\x89\x5d\x02\x1d\x05\xec\xd0\xca\x93\x30\x57\xfe\x92\xf8\x1f\xf8\xee\x8b\x19\xfa\x5a\x31\xe2\x95\xd1\x4c\xa4\xa1\x00\x5e\xed\x90\xdb\xbd\xe9\x87\x07\x0a\x03\x18\x56\x1f\xff\xb1\xe3\x6e\x13\x9b\xd2\x78\x50\xe8\x63\xcd\x10\xc8\xe4\xf0\x96\x71\x76\x3d\xbb\xb0\xc9\xc7\xc9\x4c\x16\xcb\x92\x58\x18\xd6\x17\x5d\x06\x67\xca\x8d\xd2\xeb\x14\xe3\x91\x5b\x9a\x15\xe2\x44\xd4\x10\x34\xbe\xe4\x55\x05\x39\xb6\x17\x55\xcd\x78\x5a\x4f\x79\xc9\x2e\x38\x92\xa4\xa2\xf4\xa7\x89\x18\xb4\x65\xd8\xb0\x31\x6a\xa4\xd8\xb0\x07\x69\xee\x76\x1a\xa5\xe1\x84\xd9\x77\x42\x62\xf5\x55\x5f\xa1\xfc\x2e\xf3\x24\x90\x93\xa0\xfc\xdc\xf4\x1f\xa4\xfd\x31\xc8\x55\x86\x29\x90\x54\x0c\x4c\x3b\x1b\xdb\xbb\x1c\xed\x2c\xa9\x5c\xc6\xcf\x66\x46\xf5\xb6\x7a\xd0\x25\xeb\xbc\x6f\xfd\x92\x59\x04\x68\xcd\x8e\xf4\x2b\x23\x27\x69\x80\x09\xf0\xd9\x39\x02\xb6\x74\x8e\x80\xaf\xef\xf7\x85\xb9\xe7\x82\x96\x8e\x32\x4b\x1e\x02\x33\x33\x38\xee\xef\x24\x93\x39\x5b\xa8\x08\xd9\xbc\x55\x2c\x6b\x74\xdd\x32\x26\x53\x15\xb5\xa4\x03\x66\x89\x5e\x3b\x6c\x6e\x5b\x46\x0b\xc5\x46\x5b\x36\x7c\x4f\x73\xed\x5b\xbc\x6a\x48\x5d\xff\x0b\xd3\xf3\xb4\x4e\x89\x7f\xaa\x79\x9e\x54\x52\xc8\x91\x7f\xeb\xe1\xc6\x55\x95\x4e\x72\xdb\xf8\x87\x41\x67\xd4\x12\x59\xd1\x97\x36\x31\xfa\x92\xeb\x63\x60\x67\xac\x21\x7d\x2d\xc4\x85\x42\x1f\x02\xe9\x70\x70\x6e\x64\xc4\x73\x3d\xe9\x10\xde\xba\x92\x21\xae\x9e\xc3\x61\x44\xd3\xb8\x32\x14\x58\xa8\x93\xc2\xba\xce\x23\x3e\xe2\x79\x60\x36\xd2\xc1\x10\x01\xf5\xf3\x52\xba\x89\xd5\x95\xac\x28\xae\xb5\x11\xb1\x0d\xef\x6e\x24\x8c\xb6\xe4\x56\xbc\x6f\x7d\xf0\x90\xfe\x92\xd6\xd3\x62\x51\x6b\xe2\x41\x3b\x90\x26\xc5\x3f\x81\xe2\x3f\x31\x95\x55\x84\x5b\x79\x59\xca\x38\x29\x77\x4a\xda\xc2\x21\x6b\x81\x4b\xaf\x08\x99\x0b\x08\xaf\xe0\xa6\x4a\xa8\x37\xdf\x67\x84\x2c\xa5\x99\xc2\x3a\x19\x91\xb7\x74\x2b\xde\xc5\x27\x0d\xb9\x02\xd2\x89\x8a\xc4\xc0\xe5\x5c\x22\x8a\xd8\x88\xfe\xa5\x2f\x21\x29\xe3\xa8\xc8\xeb\x34\x57\x96\xaf\xe5\x0b\x67\xab\xce\xd4\x02\xdd\xa1\x10\x73\x7a\xb8\x77\xd8\x67\xc7\xe8\x6f\x81\x52\x8a\x2f\xbb\x57\x91\x8b\x52\x2e\x58\x78\x16\x57\xd5\x62\xc6\x11\x8c\x6d\x7e\xf3\x54\xa5\xe7\xb7\xab\x40\x92\xfe\xc1\xea\x2c\xcd\xd3\x75\x5f\x0e\xeb\xc1\x2a\xa0\x0d\x8e\x34\x55\x85\xc8\x6d\x3a\xb3\x72\x1e\xcf\x38\xdb\x79\x89\xf8\x22\x38\x55\x68\x75\x46\x6a\x5d\x2a\x8d\x92\xb4\x9a\x67\x31\xa8\x6c\xa9\x19\x7b\x2f\x8e\x54\x76\xb2\x3b\x5f\x86\xb2\xe6\x60\xf0\x6a\xb1\xa6\x69\x8d\x95\xe6\x1a\xf5\x74\xd9\xae\x67\x96\xd3\xb4\xaa\x8b\xf2\x5a\xcf\xd0\xca\x83\xea\x69\xb8\x3b\x58\x3d\x2e\x16\x35\x2f\xd7\xff\x8e\x55\xf1\x52\x72\xc6\x6b\x37\xab\xe4\xd3\x7f\x2f\xad\x1e\xc3\xe3\x31\xee\xc5\xf4\xc8\xb3\x1d\x10\x59\x84\x12\x40\x03\x4c\x9f\x4a\x55\xa6\x3e\x09\x31\x2f\x8b\xf9\xba\x20\xcf\x95\x09\x46\x59\x9a\x25\x50\x9d\xe6\xd7\xeb\xf4\x8d\x90\x49\x80\x7f\xb7\xb7\x90\xda\x78\xf6\xf7\xe8\x57\xab\x75\x9c\x51\xa3\x8e\xf5\x59\x56\x19\xe4\xbd\xaf\xbe\x1a\xe4\xec\x2b\x76\x3a\xe5\x6c\xbe\xb8\xc8\xd2\x11\x7b\x7d\x74\x00\xd4\x6d\xbe\xa8\x6b\x31\x4c\xda\x71\xac\x50\x08\x8f\x44\x95\xde\x20\xc7\xbc\x73\xd8\x32\x93\x97\x28\x6e\x3b\x95\x1f\x51\x7a\xfc\xc5\x75\x3a\x82\xbc\x98\x8b\x9a\x1f\x17\x45\xfd\x4e\x88\xab\xdd\x79\x5c\x4f\x7d\x8f\x3f\x6e\x98\x28\xe9\xb3\xc1\x6a\x6f\xb0\x1a\xb2\x45\x99\xa9\xdf\xf3\xb8\x8c\x67\x55\x1f\xf2\x27\xa6\xd5\xfe\xa7\x78\x54\xf7\x99\x6c\x87\xd2\x9d\xf4\x06\xab\x76\x22\x12\x83\x97\xe8\xce\xad\x14\xaf\x68\x8e\x98\xcb\x24\x64\x03\x1d\x52\xad\x91\xe9\x37\x2b\x46\x10\x40\xb3\x4f\x69\xe9\x08\x31\x91\xfc\x3e\x50\x0e\x6e\xca\xbd\xe0\x14\x1e\xb0\x55\x2c\x66\x17\x69\xcd\x8a\x31\x8b\xd9\x34\x1e\x5d\x46\xec\x17\xce\xa6\xf1\x47\xc8\xa0\x5d\xd5\x71\x59\xb3\x2c\xad\x6a\x8e\xdb\xa2\x28\x99\xdd\x64\xaf\x47\xe9\x7a\x2b\x36\xe5\x25\x17\x6c\x41\x3d\xe5\xe6\xa4\xc4\xa7\x51\x5c\x71\xf1\xbd\xe4\x2c\x16\xff\xcb\xaf\xd9\xf7\xc7\x3c\x49\x4b\x3e\xaa\x5f\x56\xaa\xa5\x02\x2b\x93\x51\x86\x12\x67\x46\xec\x60\xac\xeb\x86\xe2\xe7\x35\xbb\x4a\xb3\x4c\x7a\xe7\xf5\xe6\x8b\x6a\xca\xae\xa6\x5c\x0f\x09\x60\x30\xf5\x69\x9c\x27\xac\x4a\x05\x6d\x19\xed\xbd\x63\xe3\xb4\xe4\x10\xa0\x44\xa6\xd9\x64\x17\x7c\x5c\x94\x5c\x2c\x9d\xb8\xff\x43\x41\x81\x66\xf1\xb5\x6a\x49\x5c\xc9\x31\x48\xb3\x72\xde\xb2\x86\x18\xe9\xf7\xb8\xc1\x5e\x0a\x3c\x42\x77\x3c\x89\x8c\x65\x1a\xa6\xd5\x3b\xfc\xea\x3c\x7a\xc3\xd2\x39\xcf\x93\x34\x9f\xbc\x95\x0d\x23\x6f\xa0\xd6\x08\x54\x5d\xb8\x9c\xb8\x47\xe9\x84\x98\xea\x21\xd1\xce\x22\xc7\x05\x92\x89\x06\xf5\xe2\xc3\xe7\xae\x1a\xb8\xa4\x73\x9a\x55\x73\x46\xe9\x32\x62\xb0\xd5\x54\x92\x65\x8d\x01\x3b\x79\xb2\x27\x61\x7d\xdb\xfc\x64\x0b\x5e\x4e\x4e\x3d\xed\xb3\x0e\x47\x6b\x36\xe0\x26\x86\xad\x14\x86\x7a\x7a\xce\x30\x5c\xf4\x79\x26\xd8\x6f\x99\xc0\xf2\x21\x7a\x13\xea\xaa\x61\xc8\x55\x0a\xec\x45\xeb\x3a\x76\x45\x3b\x55\x2c\x91\x9c\xae\x1c\xf0\xf7\x36\xa9\x94\x99\x53\x35\x36\x41\x81\xb1\x73\x63\x2d\x06\x6d\x87\xbe\x99\xc1\x98\xbe\x85\x26\x9c\x33\x7b\xcc\x3c\x2b\x3f\x5a\x90\xf0\xa8\xab\x4f\xd4\x35\x6a\x50\x4e\x4f\xf5\x48\x51\x53\xab\x21\x6b\x5f\x5b\x03\xb4\x4a\x8c\xdd\xa2\xb6\xcb\x4b\xfd\xf1\x7b\xe7\xd2\x69\xa2\x85\xa9\xf3\xbe\x73\xe3\xc9\xb5\x2b\xa4\x29\x71\xf4\xee\xcc\x1a\x84\xca\x26\xd2\x0c\xa8\x9e\x1a\xc5\xf7\x3d\xff\xd2\x10\x80\x36\xf7\xc3\x1d\x3a\x66\xdd\xe1\x70\x6f\xff\xe7\xe1\x90\x96\x9a\x50\x39\x57\xb7\xb4\xa2\xed\x72\x8c\x7d\x23\xd9\x6e\x5e\x24\x52\x09\xa5\x16\x77\x59\x4e\x7c\xba\x4e\x6c\x64\xbb\x15\x4c\x59\x49\x0f\x47\x09\xbc\xfa\x1c\x36\xd2\xc3\x77\xe7\x25\xff\x68\x67\x27\x27\x9e\x41\x6d\x5c\x05\x21\x91\x08\xb7\xe1\x92\x0d\x39\x58\xfd\x47\xb1\x10\xbc\x20\xe4\x92\x85\x1b\x46\xee\x7e\x39\xe7\x97\x83\x55\x0b\xb9\x52\xa5\xe0\xf0\x4a\x58\xe9\xcb\xb3\x4a\x52\x1d\xf4\x8e\xcf\x8a\xf2\x9a\xb6\x20\x8b\x2b\xfa\x2c\x3f\xdc\xc9\x56\xa6\x92\x73\xfe\x0c\x6e\x8b\x26\xee\x70\x4c\x0f\x62\x95\x62\x7d\x49\xd5\xd3\xb8\x66\xf0\xb8\xb1\xd2\xb4\x3c\xcd\xd9\x0c\x66\x60\x73\x4e\x38\xab\x87\xf0\x4f\x6a\x41\xed\x89\x1b\x39\xad\x83\xed\xa5\xd4\xcd\x59\x56\x3a\x72\xf2\xb0\x2d\x3f\xb9\x77\xac\xf7\xf2\x9e\xa3\x65\xce\xc4\x77\xc0\x88\xdb\xd8\xc7\x30\xa9\xe6\xb9\x80\x58\x88\xa1\x05\x05\x39\x20\xac\xa3\x08\x91\xb9\x09\x68\xc2\xeb\x9f\x2a\xa0\x01\xe3\xb4\x9c\x11\x31\xd5\xb0\xe2\xbc\x84\x4a\xe6\xc6\x08\xdf\xad\x6d\xb5\x9d\x7b\xf3\x98\xba\x53\xf3\x1c\x56\x37\xbf\x7e\xb7\xf5\x88\xae\x2c\x3d\x8d\xdf\x9b\x7d\xbd\x54\x69\x1b\x04\x13\x24\x37\x80\xa8\x1a\xb1\xd3\x02\x62\xc1\xc5\x6c\xb4\xa8\xea\x62\x26\x4b\x43\x36\x58\xc5\x28\xe2\xb2\x45\x01\xf5\x41\x9d\x25\xda\x03\x77\x1f\xc0\x90\xc4\xe3\x44\x70\xa4\xba\xd8\xda\x8e\x71\xa5\xc1\xa3\x87\x11\x01\xb3\xfe\x43\x48\x81\x3c\x06\x6f\xd3\x31\x1f\x5d\x8f\x32\xbe\xfc\x0c\x2c\x61\x53\x14\x03\x80\x98\x2d\x72\x28\x0f\x58\xf3\x9b\xf9\x8e\x45\x67\x2f\xf1\x30\x42\x48\x80\x3d\x54\xb7\xd1\x17\x65\xdf\x67\x9e\x8f\x6e\x6f\xa1\xa6\xd1\xfe\x8e\x97\xb3\x37\xaa\x71\x84\x70\xbb\xc4\xaf\x4b\x67\xd8\x42\x1d\x88\x25\xd6\x27\xdc\x59\x59\xb5\x42\xd6\xb2\x0a\x76\xe3\xb4\x38\xe6\x13\xfe\x69\xae\xc8\x78\x5c\x4f\xd7\xeb\x62\xbd\x84\xaf\xb6\x6e\x20\x1e\x4d\x55\x66\x2e\xe3\xd3\xdb\x74\x06\x91\x7f\x64\xfa\xb1\x8c\x53\xc1\x2e\x1d\xab\x0d\x5b\x35\x2f\x90\x95\x66\xfc\x28\xae\x51\x7e\x0c\x59\x01\xd1\x46\xe4\x12\x19\x4d\xe3\x53\x84\x0f\x4f\x6e\x08\x22\xe2\x79\x72\xa7\xff\xc2\x00\xbf\xe6\x07\x9e\x57\xe0\x63\x72\xf7\x61\x5b\x37\x25\x3a\xd9\xa5\xc1\x43\xb3\x67\xb2\x71\xf0\xea\xe8\xba\xdf\xc4\x14\x03\x23\xec\x82\xaa\x7f\x26\x7e\x9d\x2b\xbd\xa4\xf3\x7d\xdb\x10\x55\x65\x18\x2f\x8a\x15\x83\xdf\x10\xa7\x42\x02\x31\x10\x4f\x28\x40\x67\x68\x89\x08\xab\x12\xf9\x1b\xdf\x50\x7d\x84\x55\xe4\x0d\x13\x00\x2b\x6c\x7f\x6f\xac\x89\xda\x25\xce\x40\xc1\xb6\x42\xde\xbb\x40\x45\x55\x75\x8a\x5a\x6e\x6b\x21\xb5\xa7\xaf\x79\x8b\x1e\xd9\x37\x28\x70\xbb\xe2\x9a\x8e\xd9\x4f\xc7\x6f\xb5\x3c\x5f\x17\x2c\x86\xbf\xe4\xcd\xa9\xb6\x01\xd4\x50\x9b\x40\x00\xab\xf9\xe3\x0a\x34\xec\xad\xaa\x14\x33\xbd\x82\xf3\x26\x26\x36\xb6\x3c\x86\xbb\x12\x8b\xda\x1c\xa3\x9b\x25\xbd\x84\xfc\xd2\x54\x32\x10\x48\xc8\xf8\xa7\x18\x8c\x78\xe8\x0e\x4f\xc1\xa4\x8d\xbf\xe5\x56\x93\x9f\xd8\x1d\xdb\x91\xed\x5a\x5b\x41\x34\x87\x7b\x21\x1a\x41\x08\x08\x98\x70\x60\xab\xc2\x00\x28\x2a\x79\xb2\x18\xf1\x6e\x17\x70\xc3\x93\x10\x3e\x07\x86\x4c\x8a\xe2\x6e\x5c\x4f\xc1\x9d\x43\xfc\x8b\x96\xe7\xc1\x6a\xd0\xa0\x05\x08\x4d\x4d\xa9\x62\xfa\x5b\x89\x80\x72\xd2\xf6\xe6\x12\x27\xa5\x71\x4c\x95\xc0\xc4\xf3\xa4\x8f\xf8\x51\x97\x1f\xa2\x47\xff\x29\xb1\x43\xa2\xa0\x94\x09\xb1\x37\x18\x03\xec\x42\xd1\x67\x04\xae\x52\x4a\xf6\xb1\x45\x7b\x00\x75\xe7\x66\xb6\x75\xb6\x28\xb3\x90\x45\x11\xa5\x41\x10\x9b\x1b\xea\x58\x1d\x92\x9e\x89\x8e\x9e\x52\x34\x2d\x4a\x5b\x91\x80\x4b\xbe\xb6\xc6\x56\xa8\x82\xbf\x63\xa9\xe3\x52\x7c\x3b\x60\x07\x35\x2a\xb8\x28\x8b\x8a\x27\x62\xeb\xc3\x48\x24\x18\x28\xc1\xa0\x58\x2b\xb9\xd6\xd6\xc4\x67\xfa\x30\x58\x85\x04\xbd\x3d\xc8\xcd\x0b\xd3\xa2\x36\x69\xcd\x98\xa0\xda\xe2\xe8\x14\xa0\xeb\x11\x07\x4d\xb6\x4d\xe3\x85\x1a\x57\x53\x0e\x0e\x03\x90\x2a\xae\x46\x5d\x0d\xd6\x87\xf9\x65\xd7\x7a\xdc\xa8\x89\x83\xb0\x81\x6a\xeb\xf1\x99\x8c\x2b\x4a\xb9\xb0\x6c\x8d\x88\x28\x3f\xbb\xe4\xd7\x91\xc0\xa2\xc0\x36\xe2\x9d\x32\x03\x34\x1d\x43\x04\xbc\xf6\x0d\x81\xa0\x91\x5a\xcf\x06\x5f\xc0\xd6\xd3\xc2\x92\x28\x22\xf1\x08\xd1\xe4\x86\xa5\xd5\xcf\x71\x96\x26\x94\x83\x46\xb0\x85\x5a\xc2\x40\xdd\x77\x5a\x7d\x86\x30\x93\xe6\x1f\xe3\x32\x8d\xf3\xda\x92\x45\xd4\xd7\xdf\x20\xb4\x3c\x4c\xdb\x4b\x55\x14\x4e\x34\xb8\xfa\xa4\xa5\x1d\xe3\xcd\xc4\xfe\x6c\x5e\x5f\xef\x12\xab\xdc\x95\x3c\xb3\xed\x4f\x40\x1c\x1b\x95\x45\x23\xe0\x60\x34\xa8\xd8\xa0\x1b\x72\x8d\x54\xd3\xfc\x63\x9c\xc9\x2a\x7b\xfc\xa3\x82\x0f\x51\xc7\x26\xc9\x97\x71\xab\xcb\x77\xc9\x12\xd2\x56\xdc\xda\xdc\xb6\x4c\x94\x66\x3c\xbf\x26\xfa\x82\x72\x2f\x8e\x9c\x27\xec\x83\x2a\xff\x80\x28\x11\x87\xe3\x83\xec\xe2\x83\x36\x4c\x16\x63\x8b\xc1\xfe\x80\x42\xd5\x93\x1b\x38\x94\xaf\xd8\x07\x18\xef\xce\x60\x15\xbf\xdc\x0d\x56\x3f\xb0\x3e\x9c\xcb\xbb\x97\x21\xbb\x58\xd4\xec\xba\x58\xb0\x0f\xba\x81\xc1\x2a\xb9\xb8\x82\x2a\x58\x8d\x27\xa6\x0d\xca\x71\xff\x89\x83\xf8\x41\x6c\xf2\x0f\xc8\x86\x3b\x94\x1f\xa7\x49\xca\x15\xf7\x96\xf5\xc8\xaa\xc6\x4d\x5b\xa5\xf9\x24\x23\x92\x13\xe7\x09\x71\x87\x69\x3e\xf1\x28\xf8\x97\xf3\xe6\x8f\xd4\xa9\xed\x16\x79\xb5\x98\x29\xc5\x8d\xf8\xef\x46\x99\x6d\x5e\xda\x6a\x4e\x75\x3e\xba\x04\x11\xd2\xfa\x11\xee\x04\x8d\x12\x62\x0e\x76\xf1\x92\x15\x8b\xba\x4a\x13\x6e\xc8\xe4\xd2\xb9\x43\xb7\x89\x9b\x49\xeb\x6c\x4d\x46\x5a\x7d\xbd\xbd\x55\xf6\x0e\x8f\x4a\xd5\xbd\x8b\x4c\xb9\x19\x75\x75\xc9\x3b\x93\x7a\xe3\x7f\xaf\x5a\xe1\x04\xe5\xfd\xfe\xe4\x2a\xad\x47\xd3\x97\x2c\xce\x4a\x1e\x27\xd7\xd2\x5e\x92\x68\x2a\x0e\x4b\xb8\xa8\xec\x56\x2d\xa5\x9e\x58\x4d\xb7\x53\xcd\x2b\x35\x74\x85\xa1\x51\x37\x70\x9b\x95\xf3\x97\x37\x62\x73\xfa\x50\x0f\x18\xa3\x28\x8a\xd4\x02\x29\x85\x26\x0d\xfa\xce\xa9\x2b\x58\xfc\x1b\xa6\x8f\xbb\x92\x7f\x42\xda\x49\xc0\x41\xe8\x81\x39\xd5\x7b\x3d\x76\x04\x74\x18\xf3\x3e\xc6\x39\xa5\x53\x01\x5d\x02\x68\x87\x94\xe1\xe1\xda\xa9\x47\x17\x43\xc8\x2a\x14\xa1\xc1\x25\x2e\x1d\x83\xda\xa6\x83\xa2\xf6\x28\xae\x78\x64\xed\xc0\x31\xeb\xda\x1c\xa2\x26\x6c\x6b\x6b\xaa\x33\xf9\x4a\x0e\x68\x9d\xa3\xe5\xd7\xaa\x06\x6d\x80\xd0\x65\x77\xf6\xf4\xdc\xc3\x83\xff\xb5\xa8\xa5\xa5\x0a\x15\xf0\x74\xf7\xd2\xae\xc3\x18\x7e\x8f\x66\xcd\xad\x88\x3b\x43\x0e\xab\x59\x06\x9b\x15\x19\x67\x3d\x76\xc7\x4d\xd1\x57\x4b\xd4\x23\xe5\x90\xbf\x58\x00\xdc\x4b\xf9\x9d\x0d\x1d\xb4\x35\xd5\x77\xaf\x02\x3f\x60\x7f\xe9\x44\xfb\x7a\x03\xfa\xf1\x60\x9a\xd2\x89\x2b\xe8\x1a\x7b\xb6\xbd\xe7\x3e\xed\x67\x7f\xb3\x44\x35\x97\x55\x97\xb1\x5c\xdc\xef\x8f\x5f\x99\xa5\xab\xf2\x85\x56\xe4\x01\xab\xd1\x6f\x1a\x01\xee\x55\xec\xe3\x7f\x96\x3d\x4c\x35\xe0\x56\x75\xae\x96\x07\xd9\x04\x1e\x6a\x12\x28\x72\x7e\x38\x16\x3f\xbb\x67\x8e\xc2\xd1\xd1\x1f\x9e\x4b\x0b\x8c\xda\x24\x7d\xd6\x95\x3c\x4d\x59\xcc\xdf\x83\xc9\xdb\xbc\xe9\x28\x7a\xff\xbc\x3a\x93\xe5\xe7\x24\x48\xb8\xac\xa8\x0b\x66\x7b\x76\x49\x79\x83\x5f\x31\xf2\x0a\x36\x30\xf8\xe1\x20\xff\x28\x5a\x83\x31\xb0\x8e\x1a\x5c\x87\x55\x8b\xf9\x3c\x4b\x51\xe8\xe8\x00\x4e\x3a\x7d\x14\x47\x04\xa4\x0a\xfb\x86\xb5\x91\x3b\x51\xb5\x3f\xe8\x2e\x0c\x7f\x74\x62\xd2\x09\x0f\x1c\xcd\xf4\x1a\x4b\x17\x45\x91\x51\x99\x36\x89\xb9\xd6\x92\x50\xab\x1f\x5a\x96\x41\x76\xa7\x0b\x51\xac\x0f\x9b\x05\x70\x39\x1c\x8e\xbb\x2e\x28\xed\x51\xb5\x64\x78\x28\x5b\x54\xca\x4a\x2e\x6d\x99\x0b\x8a\xb1\x6e\xe1\xc0\xb5\xfa\xfc\x76\x3d\xb2\xb1\xae\x3e\x5b\xdb\xda\x9a\x2e\x5f\x71\x39\x78\x4f\x85\xc0\xaa\xe1\xf0\x28\x16\x61\x0c\x1c\xeb\x91\x97\x0b\xd3\x9b\xe3\x25\x30\x96\xf2\x2b\xf5\xf6\x52\x7a\x30\x54\x42\x92\x2e\x45\xd9\xb6\xa7\x26\xf8\x1f\x5c\x70\xd2\x83\x27\xa6\x12\xfa\x7f\x18\x2b\x36\x51\x7f\x18\x4a\xb0\xce\xa3\xf1\x21\xab\x7d\x06\x32\x7c\xcb\x28\x43\xbb\x5b\x13\xf9\x2d\x6b\x2a\xc7\xf7\x9b\x66\xf0\xb0\xe3\xf1\x39\x36\x51\x0b\x0b\x8a\xb5\xc7\x4c\xa4\xd2\x5a\x2a\x3f\x6b\x34\x74\xa4\x30\x41\x22\x58\x65\xa2\x84\x0c\xa5\x20\x29\x2e\x72\xc1\xf3\x96\x45\x96\x21\xed\x34\xfe\xea\x16\x25\xfb\x98\x8e\x38\xfb\xc8\xcb\x2a\x0e\x22\x26\x30\x4b\x16\xae\xec\x1a\x55\x3c\x79\xc1\x06\xab\xca\xd7\x67\x15\xa9\xad\x40\x6e\x3d\xe5\x90\x85\x40\xdc\x82\x09\x2b\x72\xce\x8a\x5c\x08\x6c\x8b\x8b\x8a\xff\xf7\x42\xac\x23\xf9\xed\x74\xee\xdf\x06\x2b\x2d\x18\xf8\x22\x08\xb0\xa7\x6f\xa1\xc3\x8b\x00\x35\xa7\xd8\x33\x73\x8d\x1d\x21\x2c\x17\xb3\xb4\x16\xb2\x4f\x5a\x3f\x60\xf2\xf7\x98\xa6\x7f\x3f\xcb\xf4\x5b\x25\xea\xe0\xdf\xa0\x58\x59\x66\x8f\xfe\xfd\xb4\x40\xed\xa6\x6b\xa5\xc1\x88\x93\xe4\x2d\x8f\x93\x34\x9f\x9c\x64\x71\x85\x8a\x59\x5b\x91\x03\xba\xf6\xd1\x34\x2e\x5f\xd7\xdd\x8d\xc0\x50\x35\xbe\x42\x3d\x01\xf9\xe1\xb1\xa7\xf0\x67\x43\xa5\x13\x27\xc9\xdf\xe2\x8a\x0b\xc9\xb2\x7b\x41\x3f\xb4\x3c\x68\x86\x0d\x92\xa5\x4a\x47\x6a\x08\xd9\xc6\x78\xe8\x5c\x47\x91\xeb\x25\x23\x05\xd8\x7e\x63\x52\xba\xe5\xa7\xac\x21\xef\x5a\x5b\xc5\x8a\x3e\x38\xff\x42\x03\x47\xc1\x58\x40\xb1\x9d\xf6\xb1\x19\xe6\x97\xc6\x18\x95\x1b\xb8\x80\x0e\x40\x85\xb5\xf1\xdb\xd1\xd4\xec\x46\x9c\xa8\xba\x84\x5e\x64\x52\x59\x3f\x7a\x70\x6b\xff\x74\xfc\xb6\xeb\x20\xc4\x0e\xca\xa5\x15\x2a\xb6\x85\xe5\x95\x2e\xe9\x1b\xc7\x44\x37\xe6\x59\x8f\xb8\x4e\x47\x7f\x8f\xf3\x24\xe3\x65\x17\xdf\x85\xbf\xd7\x7e\xa2\x52\x42\xb6\x4c\x1b\x4a\x4f\x44\x16\x16\xcb\xbb\xe5\x2f\xf4\x78\xf7\xfb\x13\x68\x59\x69\x86\x42\x66\x34\xbe\xed\x9f\x7d\x5e\x14\x73\xc1\x8a\xb5\x69\xd6\xea\x62\xbe\x9e\xf1\x8f\x3c\x33\xfc\x41\xc4\xec\x45\x47\x83\x55\xa5\x86\x0a\x59\x55\xac\x63\xa4\x0b\x76\xc1\x47\xb1\xb8\x5a\xd3\x1a\x1a\xc3\xc7\xb2\xf1\xa8\x5e\x00\xf5\x23\x02\x0b\xca\x88\x45\x59\x0a\x8a\xa7\x16\x8f\x1d\xa0\xe9\x3e\x14\x74\xf1\xd7\x05\x58\xf8\x46\x45\x99\x54\xd0\x90\xc2\xb3\xf4\x17\x4d\x73\x4c\x86\x80\xde\xdf\xe8\xb4\xc4\x7e\xaa\xf8\x78\x91\xb1\x59\x9c\xe6\x19\x3c\x32\xa9\x79\x05\xae\xbe\x71\x9e\x40\x33\x15\x2f\x3f\xf2\x72\x5d\xe9\x03\x59\x35\xe2\x79\x5c\xa6\x45\x65\x6b\x06\x4d\x64\x2e\x57\x10\xe6\xf1\xc7\x74\x12\xd7\xfc\xb4\xe8\x6a\xe5\x50\x3c\xb2\x7c\x05\xa5\x29\x49\x9e\x11\x86\x46\x8d\xd0\xf0\xe8\xbe\xb9\x6b\x6a\x86\xa8\x2a\x48\x7f\xb1\xcc\x5c\x8e\x3f\x9c\x52\x43\xe1\xe7\xa7\x53\x36\x49\xd7\xfb\x33\x70\x1a\x02\x9b\x8b\x71\x2a\xdc\x0e\x2c\x9b\xfb\x14\x76\xf1\xd1\xa2\x9a\x1a\xce\x99\x62\xe3\xc2\x2c\xbc\x88\x19\xac\x1e\xfd\x74\xf2\x77\xf9\x38\x13\x1b\x90\xbe\xfd\x0f\x6f\xe3\x78\xff\xe8\xed\xeb\xdd\x7d\xbb\x99\xb7\xd2\x8d\x15\x0f\x8f\xd8\xdb\x46\xe9\xdf\xb2\x02\x9e\x8a\x5b\x85\x3e\x05\xef\x83\xd6\x2a\x34\x55\xac\xe4\xbe\x1d\x45\x51\xc9\xab\xba\x4d\xc1\x67\xbd\x9d\x30\x9d\xaf\xc9\xef\xa9\xe4\x63\x69\x04\x7b\xd9\x4a\x5c\xd9\x53\x63\x6d\xe0\x8a\xd3\x9c\x0d\x6e\x0c\x71\x8b\x1d\x1d\x1e\x0d\x56\xd5\x77\x2d\x85\xb6\xdd\x05\xad\x9b\x43\xb5\x31\x5f\x54\x53\xd2\xc5\xea\x45\x57\xa5\xe4\x49\x6d\x01\xd0\xa2\x2a\x98\x49\xd1\x77\x68\xdf\x60\x75\x52\x0c\x56\x03\x03\xe2\x6f\xf1\xe8\xd2\x07\x25\xbe\xdb\x90\x6f\x8a\xf2\x2a\x2e\x13\x1f\x30\x15\x99\xf0\xe8\x2b\x6b\x0d\x0f\x37\x8b\x82\xb8\x10\xbb\xc3\x02\x80\xfd\x32\x50\xf6\xb8\x81\xa9\xfc\x97\x2e\x67\x37\xb4\xe4\x77\xda\xf9\x4c\xf9\x9d\x59\xee\x92\x3b\xd2\x06\xf0\x00\x87\x33\x93\xf2\xf8\xd4\x37\x72\xd9\xfa\x6d\xaa\x81\x51\x9b\x8b\xe6\x32\xad\x84\x4f\xff\x43\xad\x36\xda\x39\x0f\x4c\xb9\xc6\x1d\xef\xef\xe9\x45\x66\x5d\x71\x7f\xb8\x17\x99\x75\x27\x7c\x86\x17\x99\x59\xff\xcb\xb3\xed\xff\x52\x36\xd8\x25\x56\x3c\x7d\x35\x8b\x75\x1d\xa7\x65\x55\x2b\x0b\x18\xb8\xa0\xa2\xcd\xde\xbd\xaf\xc1\xbe\xf4\xe7\x37\xe5\x49\x3b\xd8\xef\x6c\xcb\x1b\x38\x26\x29\x12\x76\x43\xe6\xb3\x77\x41\x04\x76\x18\x9e\x63\xeb\x1e\x17\xe5\x7e\x3c\x9a\x9a\xa7\xc1\x81\xa8\x0b\x34\x1b\x05\x90\x33\xb7\x1b\x38\xcd\xc2\xb3\x1b\xc9\x11\x12\xac\xb8\xdb\x2a\x74\xa6\xa9\x0b\x08\x80\x09\xca\x22\x2d\x8f\x43\x48\x41\xce\x92\x02\x9d\x34\x62\xdb\x74\xd1\xeb\x89\x6a\x75\x99\x4e\x26\xe2\x14\xe6\x6c\x81\xce\x81\xbd\x92\xe3\x8b\x1d\xb1\x87\xea\xab\x42\xee\x99\x0a\x37\x0d\x19\xdf\xa4\x22\xc7\x69\x51\x2b\x91\xe2\x9a\x25\xe9\x18\xe2\xbe\xd5\xec\xa7\xe3\xb7\x95\x65\x2f\xf3\xe3\xc7\xa7\x60\x0b\x69\x56\xee\x46\x31\x5c\x8f\xe4\x6b\x5e\xb6\xb6\x46\x0d\xdb\x2a\x71\x34\x54\xb8\xcf\x9b\x19\x84\x1d\x41\xf3\x39\x79\x0b\x38\xcb\xa9\xb7\x0e\x72\x13\x08\x64\x18\x38\x60\xcf\x18\xdf\xc4\x41\xf5\xb4\x21\xed\xbf\x4d\xb3\x2b\xbb\xdf\xf4\x8a\x56\x53\xdd\x09\x7a\x3c\xb0\x3b\xaf\xdd\xc4\x35\xc6\x9a\xa5\x96\x3d\xe5\xce\x3d\x22\xa6\xeb\x96\x5d\x4f\x99\xb6\xb2\x22\x57\x96\x2d\x75\x0c\x6e\x0c\x43\xae\x65\xac\xee\x4b\xbb\x6e\xc3\x62\xec\xd8\x36\xbf\x98\x9d\x06\x29\xc2\x67\xbc\xdd\x68\xb7\x2e\x58\xd7\xb3\x6a\xfe\x7f\x58\xef\x28\x29\xdf\xff\xbb\x8a\xc7\x87\x62\xe0\xcf\xaf\x79\xc4\x99\x7c\x79\x1e\x66\x5a\xa4\x55\x8d\x6c\x92\x82\x84\x6f\xeb\x79\x91\xd3\xe3\x6c\x64\xac\x1f\xcd\xfa\xfc\xc6\x57\xc4\xaf\x25\x9b\x32\x4d\x27\x53\x5e\xae\x17\xa5\xb8\x4e\xf4\xbd\x21\xae\xb2\xd1\x88\x57\xc8\x8d\xa6\xb3\x39\x2f\x63\xf0\x81\x7d\x7d\x74\xe0\xfa\xf7\x5e\xa5\xf5\x14\xbb\xeb\x2a\x0e\xc5\xf2\x05\xb3\x5f\x87\x7f\x30\xe0\x9f\xdc\xa8\x1a\xd6\x1b\xf2\xdb\x5b\xa6\x0b\x04\x05\xbe\x0b\x4c\x3f\xef\x5d\xf9\xb8\xd3\xb8\x8f\xa4\x9c\x7b\x55\xc6\xf3\x39\x4f\x54\xf5\x63\x3e\x26\x59\x76\x16\xa7\x62\xdf\xc3\x86\x06\xa9\xd6\x16\x68\x7f\x17\xf6\xc9\xa6\xba\x92\x99\xb2\xbf\x7e\xf0\x31\x56\x4f\x6e\x0c\x7c\x08\x31\xcb\xc3\x62\x7d\x18\xb4\x18\xdd\x5b\x3d\x53\x76\xdb\xbc\x27\x6e\x1a\x18\xba\xf3\x81\x48\xb1\xcf\x2d\x2b\xf9\x78\xe7\xc6\x83\x79\x07\xb0\xf7\xc5\xdc\x04\x68\xd5\x76\x9d\xc8\x03\xc6\x5f\xdb\x58\xfe\x8b\x33\x28\xb6\xa3\x77\x96\xa1\xd9\xb5\xef\x30\x51\xd1\x73\x81\x31\xdf\xe6\xba\xc7\xde\xbd\xc4\xe2\xcd\xfc\x96\x6b\xbb\xc0\x0c\xba\xcf\xd8\xb9\xed\x52\x6b\x29\x96\x4d\x62\xd3\xdd\x0d\xf5\x34\xdb\x5c\x6e\xf5\x39\x7c\x04\xe5\x7b\x14\x6d\x7a\x94\xa4\xf5\x59\x31\x14\x1e\x26\x9e\x21\x6d\x58\x54\x5c\x87\xba\x40\x6e\x4a\x7f\x32\x23\x8e\x28\xca\xb6\xa8\xd4\xfb\x3d\xc3\xae\xe0\xee\x95\xe6\x69\x27\x2d\xbb\xd9\xa1\xe3\xf5\xe3\xd8\x71\x21\xfc\x9b\x92\x58\xd8\xcb\x1d\xb6\xf9\x4d\xf4\x82\xa5\x39\x43\xc2\x5c\xa3\x02\xc0\x1c\x8f\x23\xa3\x5b\x5b\x41\x77\xdc\xb5\xb1\xe7\x6e\x05\x73\xa6\x4a\x5f\xf6\x67\x99\xaa\x1e\xd0\x03\xe7\x2a\x27\x69\x4a\x8e\x6d\xb3\x3d\x02\x97\xf8\x3f\xcd\x5c\xe5\x70\xbc\x33\xb5\xfd\x57\x7d\x13\xd6\x92\x86\x29\x41\x48\xa1\x26\x42\xff\x7f\xd6\xc7\x17\x5d\x6d\x28\x81\xc3\xa9\xa3\x7d\xfc\x59\x50\x63\x0c\x6b\x19\x7a\x0c\xbd\x82\xb5\x77\xb6\x1f\x87\xc1\x81\x6d\x60\xbd\x4f\x2e\x44\x44\xf5\x95\x1e\xe2\xce\xa4\xa4\xc3\x92\x4f\x78\x8e\x11\xe0\x8f\x17\x79\x9d\xce\xb8\x24\x53\x7f\xbd\x88\x2f\x78\xd6\x2b\xf1\x6b\xcf\x00\x34\xa9\xdb\x10\x94\x41\xbb\x71\x96\xed\x42\x64\x58\x7f\xe5\x29\xcf\xe6\xbc\xac\x7a\x36\xb0\xdd\x0e\xc6\xee\x01\xd5\xd2\x3d\x8d\x68\x48\xab\x85\x79\x51\x41\x82\x92\x5d\x1d\xca\xe4\x98\x82\x94\x2e\x6d\xaf\xb5\x9e\xd5\xba\x13\x27\x7b\x79\x93\x13\x27\xb8\xa7\xd1\x8e\x0c\x81\x77\x4f\x0b\x12\xcc\x8a\xc6\xa3\xaf\xbd\x0e\xdc\x7a\x1d\xdb\x20\x3f\x8b\x2f\xf9\xeb\xea\x3a\x1f\xa9\x7b\xb5\x8b\x35\x79\x69\x44\x96\xb6\x21\xd8\x8e\xf8\x6e\x05\x37\x12\x1f\x74\xa8\xba\x21\xf4\xfa\xe4\x68\x51\x72\x97\x75\x66\x46\x94\x52\xbb\xd5\x90\x79\xab\x29\x46\x56\x35\xef\x0c\xd7\x0e\xa7\x83\xe3\x1d\x0a\xc9\xcf\x50\x42\x38\x3b\x8e\x5e\xa7\xda\x0d\x99\x4a\x8b\x21\xe6\x4e\x5f\xb2\x3f\xa8\x09\x37\xd2\xbc\xd3\xa4\xf9\x16\x16\xc7\xa9\xb9\xc3\xa1\x3f\xc8\x8f\xe5\xb3\x69\x7a\xdf\xde\xa9\x9a\x32\xc8\x1d\x4d\x92\x99\x1e\xdc\xe6\x99\x68\x20\xf8\x4c\xf5\x72\xc9\xaf\xfb\x6c\xb0\xda\x50\xff\x1b\x04\x8d\xc2\xa4\x5a\xcf\x5e\x5b\x9e\x3f\x2b\xb4\x97\x42\x2a\x19\x39\x8c\xa8\x3d\xe8\x26\xf1\x88\x20\xa7\x44\xb7\xbd\xa3\x27\xdd\xe1\xa8\x11\x15\x87\xe9\x2c\x31\x9b\x0d\xe5\x5b\x85\x7a\x66\x55\x0f\x52\x9a\x89\xf5\x94\x7f\xe7\xcd\xc6\x00\xf5\x71\xc5\xd9\x46\xbf\xa9\xfd\xb2\x2a\xb2\x1d\xb6\xb5\xdd\x84\x59\x36\x43\x48\x26\x2e\x0f\x56\x37\x70\x15\x64\xaa\xef\x2d\x5f\xdf\x25\x1f\x9b\x63\xaf\x10\xb5\x2e\xd8\xc8\x90\x05\x44\x95\xb3\xc1\x2a\xb1\xc4\x83\xd5\x73\x0f\xbc\x13\x17\xa7\x09\x60\xed\xc4\x25\x0e\xea\x0d\x75\x9f\x9a\xcd\xd7\x8d\xd9\xc0\xe7\xc1\x2a\xcf\x93\xc1\xaa\x67\xaa\x12\x85\x6a\xaa\x75\x31\xef\x06\x4b\x75\x8d\x86\xb0\x85\x4f\xf1\xcc\x57\xe7\xcc\xf4\x04\x66\xee\xee\x27\x2f\xca\xf6\x2d\xef\x9a\x22\x18\xed\xf3\x5d\xa9\xe5\xc7\xf8\x37\xe6\x86\x77\x66\xb2\xdb\xe2\xbc\xbf\x6b\x3d\x7b\x71\xf5\x96\x72\xc8\xe7\x81\x2b\xc6\xdb\x27\x1a\xd9\x85\x2e\x76\xe0\x25\x9b\x6d\xd5\xfc\x6f\x15\xdd\xab\x60\x7b\xf5\x3c\x5c\xc5\x10\x8f\xc7\x45\x51\xaf\xf6\x57\x57\xef\xfe\x6f\x00\x00\x00\xff\xff\xbd\xd0\x44\xe6\xc5\x90\x03\x00") -// FileIdentifierStaticJs9A3e68deeChunkJs is "identifier/static/js/9.a3e68dee.chunk.js" -var FileIdentifierStaticJs9A3e68deeChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x6b\x77\xdb\xb6\xd3\x28\x8e\xbe\x3f\x9f\x42\xe2\xc9\xe2\x22\x1e\xc3\x8a\x64\xa7\xb9\x50\x41\xb5\x13\xc7\xfe\x35\x6d\x9c\xa4\x71\xd2\x26\x55\xb5\xbd\x68\x09\x92\x10\x53\x80\x0a\x42\xbe\x44\xd2\x77\x3f\x0b\x83\x0b\x41\x8a\x76\xd2\xe7\xd9\xfb\xac\xff\x8b\xff\x0b\x5b\x20\xae\x83\xc1\x00\x18\x0c\x66\x06\x0f\xff\xab\xdd\x3a\x11\xb2\x95\xb3\x31\xe5\x05\x6d\x31\x3e\x15\x72\x91\x29\x26\x78\x6b\x99\xd3\xac\xa0\xad\x82\xd2\xd6\xb3\x4e\x76\x48\x1f\x3f\x9d\x50\xda\x19\xcf\x57\xfc\xb2\xf3\xb5\xe8\xbc\x79\x7d\x74\xfc\xf6\xec\xb8\xa3\x6e\x54\xeb\xbf\x1e\xfe\x7f\x12\x35\x67\x45\xe7\x9a\x5e\x2c\xb3\xf1\xe5\xaf\x85\xe0\x4b\x36\xa1\x5c\xb1\x29\xa3\x92\xdc\x93\xb6\xd9\x0c\x47\xa8\xb3\x5c\x15\xf3\x64\x38\x7c\x36\xc2\xeb\x5e\xb7\x9b\x4e\x57\x7c\xac\x61\x48\x28\x56\x98\xa3\x75\xb4\xd2\x80\x28\xc9\xc6\x2a\xea\xd3\x0e\xbd\x59\x0a\xa9\x0a\x12\x66\x43\x6b\x36\x4d\x28\x21\x44\x21\x49\xd5\x4a\xf2\x76\xb7\xcf\xa6\x49\x9b\x6e\x36\x6d\x1f\xd5\xeb\x5f\x65\xb2\xc5\xc9\xbb\x8b\xaf\x74\xac\x3a\x97\xf4\xb6\x48\x28\xc2\xb2\x12\xa1\x10\x16\x84\x77\x72\xca\x67\x6a\xae\xeb\x90\x36\xdc\x26\x44\x94\x35\x4d\x85\x4c\x74\x6d\x8c\x74\xfb\xec\xb9\xe8\xb3\xbd\x3d\xb4\xd6\x11\x19\xe1\x43\x36\xd2\x05\xe9\x30\x1b\xb5\x09\x51\xc3\x6c\xb4\xd9\xb4\x6d\x1b\x4b\x29\x94\x50\xb7\x4b\xda\x99\x67\xc5\xbb\x6b\xfe\x5e\x8a\x25\x95\xea\xb6\x33\xce\xf2\x3c\x51\x38\x43\xbe\x8d\xad\xeb\xc9\x76\x8b\x7b\xdd\x5e\x5a\xed\xaf\xfb\x6a\x59\x34\x61\x69\xda\x17\x98\x11\xbe\xca\x73\x42\x12\x41\x24\xda\x6c\x22\xbe\x5a\x5c\x50\x19\x69\xe4\xdc\x2e\xa9\x98\xb6\xc4\x66\x13\x5d\x08\x91\xd3\x8c\x87\xb1\x03\x99\xf2\x44\x22\x9c\x11\xd5\x99\x51\x95\x30\xd4\x37\x10\x44\x2b\x3e\xa1\x53\xc6\xe9\x24\xc8\x9e\xc5\x71\x92\x11\x6a\xe1\x9e\xb3\x02\x4b\x84\x55\xa7\xd0\x05\x75\x2f\x70\xb6\xf5\x20\x4a\x37\x92\x1a\x40\x49\x5e\x48\x99\xdd\x06\x98\x28\x34\xfd\x99\x8a\x32\x39\x5b\x2d\x28\x57\x05\x3e\x84\x71\xd0\xf0\x30\x0b\x8f\xb8\x17\x1e\x16\xc7\x09\x23\xb4\x93\x2d\x97\xf9\x6d\x0d\x20\x81\x19\x42\x98\x95\x00\x09\x87\x33\x2c\xd0\xda\x54\xda\xe2\x9d\x0b\xc6\x27\x89\xc2\x14\xa2\xcb\xcc\xcc\x20\xdc\x66\x83\xa2\xba\xf6\x1e\x21\x84\x5a\xda\x18\xf0\x54\x62\xd5\x19\x67\xe3\x39\xed\x8c\x25\xcd\x14\x4d\x4c\xe3\x92\x65\x39\xfb\x46\x65\x50\x5f\x96\xf8\xca\x7e\x3d\x7b\xf7\xb6\xa3\x29\x9b\xcf\xd8\xf4\xb6\xec\x7d\x90\x7b\x95\xa0\x35\x4c\x20\xa8\xdc\x91\xaa\x6d\x43\x0f\x34\xda\xae\xaa\x54\x15\x4c\x0c\xdf\x90\x9e\xdb\xad\xb2\x9a\x2d\x0e\xcb\xcc\xa8\x6a\x2a\x53\x66\x1f\xd2\x51\xb5\x44\x51\x29\xa1\xb1\x53\xc9\x4c\xd4\x16\xa6\x5a\x4e\xd6\x06\xd0\x92\x76\x4b\x74\xd3\xeb\xd6\x6a\xbb\xbd\x73\x3e\x9b\xa9\xaa\xe2\xd8\xa2\x75\x60\x7f\xd3\x1c\x4b\x13\x5d\x22\x77\x10\x7e\xa4\x99\x25\x93\xc4\xe4\x52\x32\x53\x74\x76\x3b\x28\x83\x29\x43\x09\xc5\x6b\x53\x1d\xc7\x41\x51\xb9\x45\x5b\xec\x21\x72\x05\x18\x2d\x88\x86\x87\x65\x13\x36\xae\x4d\xc3\x3a\x55\x7c\x97\x0c\xf0\x42\xf0\x1f\xa8\x87\x7f\xaf\x1e\x58\x14\x0e\xee\x5f\x2b\x79\x47\xd3\x73\x74\x11\xe1\x64\x77\x00\xc4\x16\x21\x6c\x73\x64\x8d\x39\x58\x90\x63\xdc\x98\x23\xdb\x22\xd4\x37\x93\xba\xa9\x3b\x89\x5f\x5a\x0b\xaa\xde\x3b\xea\x79\x37\xdd\x6c\xd6\xe7\xe7\x40\x4d\xe7\xe7\xe9\x70\xb4\x65\xbc\x50\x19\x1f\xeb\x69\x0c\x6b\x43\x1c\x57\x6b\xa3\x1d\x9f\x9d\xa8\xed\x66\x53\x5b\x09\xed\x52\xcc\x81\xc6\xd1\x0f\x2e\xb4\x1c\xc5\x71\x42\x87\x7c\x44\xd4\x90\x8f\xd0\x16\x41\x65\xdb\x7e\x75\x8d\xa8\xac\xb3\x8e\xca\x05\x2f\x94\x5c\x8d\x95\x90\x84\x6e\x61\x6d\x43\x98\x96\x0d\xda\xe5\x97\xa8\x41\x75\xb2\x2a\x94\x26\x3c\xc8\x16\xc0\x88\xf5\x6c\xe0\x68\x6b\x76\x94\x1d\x3c\x27\xcc\xe1\x31\x2b\x0a\x36\xe3\x21\x06\xca\xfe\x2b\xcc\x49\x0f\x4b\xe2\x57\x11\xb7\x89\xf1\xe7\xb2\xcf\xf7\xf6\x90\xcb\x28\x00\x51\x65\x3e\xdd\xff\x1f\xc4\x9a\x30\x58\x13\x1a\x6b\x62\xe4\x16\xe4\x16\xdd\xa2\x70\xe1\x0d\xd6\xb1\x7e\x05\x07\xfd\xca\x22\xe8\xe0\xa1\xa4\x8b\x15\xe9\x62\xbe\x0b\xba\x7a\xce\xfb\x6a\x6f\x0f\xd1\xbd\x00\x5c\x35\x72\xc9\xc1\x7e\xa2\x77\x72\x41\xba\xb0\x31\x2b\xd2\xf5\x25\xcb\x8d\x3a\xac\x00\x67\xa4\x8b\x57\x84\xb9\x8a\xb2\xe7\xab\x7e\xb6\xb7\x87\xc5\xde\x1e\x92\xba\x7b\x6c\x98\x8d\x5c\xef\xe4\xb6\xd2\x09\x3d\xf1\x0e\xef\x9f\x78\x06\x2e\x9e\xfc\x64\x98\x09\xbd\x8d\x75\x32\x5b\xfc\x48\x70\x45\x6f\x94\x59\xbb\xfb\xaa\x93\x11\xa1\x6b\x7c\xf4\x23\x35\x46\x2e\x4f\xb0\xf1\x9d\xdd\x2e\x2e\x44\x1e\xc7\xe6\xb7\x33\x15\x12\x2a\x95\x83\x32\x22\x89\x16\x2b\xd6\xe1\xb4\x50\x74\x12\xa1\x34\x3a\x3f\xff\xf8\xcb\xf1\xe9\xf1\xf9\xdb\xe3\xb3\x8f\xc7\xaf\xce\xcf\xa3\x2d\xee\x3d\x7a\xf6\x63\x5d\x7a\xfc\x58\xf7\xe9\xc7\x00\xc1\x8c\x88\x0a\x18\x92\x66\x63\xd5\xa1\x39\xd5\xe3\x10\xa1\xf4\x71\xb7\xd7\x3d\xc4\x59\x63\x2e\xbd\x04\x67\xb9\xcd\xf4\x18\xaf\x1a\x33\x4d\x65\x36\x0b\xea\x7a\x82\xf3\xc6\x6c\xa6\x13\xe7\x0b\x31\xa1\x36\xe7\x53\x3c\x6e\x6e\x55\x8a\x29\xcb\xa9\x34\xd9\x7a\x8f\x70\x71\x57\xb6\x2b\x36\x71\xd9\xba\xcf\xf0\xb4\x31\xdb\xd8\x8c\xb5\xad\xac\x8b\x27\xcd\x9d\x10\xf2\x3a\x93\x93\x73\x49\xa7\x36\xe7\x01\x5e\x36\xf7\x63\x55\x2c\x35\xa7\x6e\xb3\x1d\xe2\x79\x63\xb6\x05\x5d\x08\x9b\xe5\x27\xbc\x68\xcc\x92\x67\xdf\x6e\x6d\x96\xc7\xf8\xf6\x47\xc6\x93\x29\x2a\x33\x25\x64\x39\x87\x67\x95\xd5\x87\x44\x73\xa5\x96\x45\xfa\xf0\x21\xb4\xf0\xb5\xe8\x08\x39\x7b\x38\x11\xe3\xe2\x21\x95\x52\xc8\xfd\x09\x1d\x8b\x09\x95\x9d\xb9\x5a\xe4\x03\xc6\x61\x43\xe5\x8a\x44\x7b\x54\x2f\x5c\x7d\xfe\x7c\x77\xe1\xda\xdb\x43\x6a\x8f\x44\x71\x26\x67\xc5\x70\xa4\xb3\x72\x5d\xc7\xa7\x0f\xaf\x8f\xc4\x62\x29\x38\xe5\x2a\xa9\x2c\x63\x8e\x43\x3c\x65\x5c\x9f\x2f\x26\xad\x0f\x1a\x96\x16\x00\xd0\xfa\xff\x46\x7b\x74\x2f\xea\xb7\xae\x58\xc1\x54\x2b\xda\x53\x7b\x51\x6b\x2a\x64\x4b\xcd\x69\x6b\xba\xca\xf3\xd6\x82\x16\x45\x36\xa3\x2d\x21\x5b\x9a\xf4\x75\x3c\x17\x7c\x7f\xe1\x2a\x9b\xd0\xab\x16\xe5\x57\x4c\x0a\xae\x5b\x84\xc2\x50\x10\xea\x2f\x5a\x19\x9f\xb4\xb2\xc9\x84\x69\xec\x64\x79\x6b\x4e\xf3\xe5\x74\x95\xb7\xae\x33\xc9\x19\x9f\x15\x9d\x08\x16\xf8\x2b\xb2\x66\xc5\xa9\x58\x71\x45\x27\xbb\x8c\x51\xbb\xb7\xc5\x94\xff\xb3\xa2\x2b\x7a\x22\xe4\x98\x7e\x5a\x4e\x6a\x0c\x94\x4f\xff\x40\x97\x79\x36\xa6\x67\xea\xae\x0c\x67\x54\xed\x26\x6e\xf1\x05\x59\x07\xfb\xdc\xb5\x9b\xee\xb0\xb9\x2d\xa5\x58\x16\xc4\x30\x21\x8e\x7c\x89\x32\x9f\x92\x4e\x0b\x72\x61\xc2\x2b\x00\x4b\x12\xbe\xd9\x5c\x95\xcc\xea\x8d\x6e\xc0\x7f\x1d\xff\xcf\x6b\xbe\x0e\x76\x24\x56\xc0\x60\xfa\x91\x27\xeb\x2d\xbe\xae\x32\xa5\xd0\xdb\xdd\x83\x61\x24\x60\xfd\x8e\xda\x9e\xb6\x69\x1c\x97\x24\x5f\x89\xd6\xcb\x72\x9b\x50\xa4\xe6\x52\x5c\xb7\x8e\xf5\xc0\x26\xb3\xe4\xe9\x4f\x08\xf5\x43\xf0\x3a\x35\x14\x9b\x8d\x4f\xf7\x37\x72\x70\x44\xa8\x0a\xdf\xb4\x1c\xce\x0a\xbb\xdd\x54\x6d\x30\xf4\xae\xe6\x28\x28\xaf\xab\xbe\x09\x58\x89\xa0\x19\x58\xa8\x2f\xc9\x71\xc8\x8f\xd0\xeb\xd6\x4d\xff\xb2\xc2\xb8\x1c\x63\x99\x5c\x86\xe0\x21\x7c\xd9\x61\xc5\xfb\x95\xa4\x35\x2c\xb7\xbb\x50\xe5\x19\x59\x8f\x57\x52\x52\xae\x52\x8d\xa2\x2d\xfe\x48\xbe\xc3\x33\xe0\x77\x64\x7d\x49\x6f\xd3\x76\x17\x4b\x3a\xd5\x3f\xe7\xe7\x05\xcd\x5d\x48\xac\xe4\x98\xa6\xed\x6e\x40\x8a\x47\x95\x73\x22\x16\x7a\x84\x33\x60\xa7\xf0\x0a\x7e\xf4\xb1\xda\x0c\x90\x82\x8d\x5d\x6a\x4e\xe6\x4a\xb0\x49\xab\xab\x07\x51\xd3\x51\x1c\x27\x2b\x13\x42\x38\x48\xb9\xa4\xb7\x70\x60\x8d\xa2\x3d\xf8\x40\x58\xa1\x8f\x8e\xab\x91\x28\x8e\xdb\xef\x6a\xe0\x27\x3a\x36\x11\x43\xa9\x79\x1d\x39\x42\xf6\x44\x53\x5f\xa4\xf6\x0f\x34\x50\xfa\x30\x98\x23\xd1\x19\xcf\x59\x3e\x91\x94\x13\xde\xa7\x79\x41\x5b\x3a\xe9\x79\x5e\xae\x92\x63\xcb\xac\xe4\x08\x17\xa4\xdb\x2f\x9e\xe7\xfd\x62\x6f\x0f\x8d\x87\xc5\x28\xe0\x4f\x8a\xbd\x83\x51\x3f\xa8\x6c\xbc\x65\xd3\x84\xc6\x31\xed\x4c\xe8\x34\x5b\xe5\x9a\x97\x5e\x16\x25\x06\x72\x52\x4b\x31\x1d\x27\x84\x68\xf0\x5d\x2f\x72\xe8\x85\x59\x65\xd6\x0f\x1e\x18\x92\x4f\x19\xd6\x81\x94\x62\x3d\x54\x19\x8c\xd4\x0a\xc3\x5c\x4d\x05\x3e\x17\xd7\x9c\xca\xf4\xac\x63\x87\x7e\x5b\x4e\xee\xf7\xe5\x49\xd1\x4d\x2f\xb2\x3b\x8f\x08\x40\xed\x1a\x23\x84\x30\x58\x02\xcf\xc9\xc3\xbf\x1f\xee\x3d\x9c\xe1\xaf\x64\x38\x2a\xc7\xff\x45\x29\xca\x60\xd3\xe4\xab\xc5\xb0\x95\x6b\x90\xaf\x9d\xa5\x58\x26\x9e\xe7\x14\x1d\x49\x8b\x55\xae\x08\xc5\x42\x8f\xe8\x7b\x49\xa7\xec\x86\x28\x2c\x3a\xba\x42\xc2\xb1\xf0\xcb\x8c\x84\xf0\x8a\x6b\x2e\x53\x58\xb9\xca\xda\x14\x37\x3d\x37\x85\x53\x85\x75\xd1\x94\x63\x5b\x30\x95\x18\x8a\xa5\xdd\xa0\xe7\x6f\x75\xcf\xa9\x6b\x1d\xa8\x93\x06\x00\xd8\x08\x03\x83\x09\x3b\x30\xfc\xa7\x81\xa4\xd7\xfd\xd9\xf5\x31\x8e\xbf\x1a\x29\x18\x0d\x8e\xfe\x1f\xdc\x74\x70\x47\x66\x38\x57\xd0\x41\x29\x21\x6b\xd1\xc4\x8b\x31\x34\x92\x56\x6e\x00\x54\x3f\x10\x92\xb4\x09\x59\xc5\xb1\x17\xf9\xe8\xcf\xcd\x26\x31\xe0\x38\xb2\x6e\xf7\xdc\xdc\x02\x21\x5a\xae\xa7\x3d\x50\x70\x71\xcd\xd4\x78\x9e\xac\xd0\x7a\x9c\x15\x34\x32\xc2\x8a\x28\x85\x0f\x2b\x59\x4a\x21\xf7\x85\xa4\xd9\x65\x1f\xe2\x2d\x3d\xa4\xb6\xac\xf2\x04\x60\x2a\x69\x31\x28\xde\xca\xa0\xe0\x56\x13\x77\x8e\x1c\xaf\x9d\x08\xbd\x86\x6a\x5a\xe2\x83\xa8\x13\xed\xbd\x4e\x14\xee\xa2\x94\x23\x0c\x10\xe6\x70\x4e\x28\xd3\x53\xbe\x17\xa5\x11\x36\x22\x25\x56\x98\xd9\xa5\x10\x2a\x27\x5c\xb7\x3f\x7e\xae\x1c\x47\x31\x76\x62\xba\x82\xf0\xbd\xd7\x7a\xa5\x18\x8e\x47\x78\x8c\xfa\xf9\x1e\xa1\xc9\x0a\x17\x46\xf6\xe3\xe6\xae\xc3\xc7\x66\xb3\xbb\x85\xa8\x41\x01\x18\x4c\x8b\x26\xee\x29\x29\xc8\x6d\x1c\xab\xe1\xed\x68\xb3\x51\xc3\xe8\x7f\xfd\x2f\xc7\x3e\x45\x23\x34\x28\x60\x09\xc5\x4d\x4c\x97\x99\xd5\x8a\x14\x76\x6d\x42\x58\xf7\xa0\x0d\x6b\x1a\xd7\xc7\x06\x84\x3a\x13\xc1\x69\x1f\x19\x88\xc9\xaa\x73\x95\xe5\x2b\x8a\x6d\x87\xb0\xee\x21\x74\xc2\x2f\x40\xc1\xf4\x5c\xd9\x6d\x4d\xc2\x3a\x88\xdd\xee\x76\xd8\xc3\xd1\xd0\xe4\x6a\x99\x45\x7d\xa4\x73\xcb\x81\x2d\xda\xba\x66\x6a\xde\xba\xa4\xb7\x45\x6b\x1d\xed\x55\xa5\xa5\x9d\xaf\x82\xf1\x24\xc2\xad\x08\xed\x45\xdb\x28\x95\x38\x8a\x90\x9f\xa4\xf9\x36\xa1\x38\x8a\x80\x8c\x4b\xc2\x7e\x1d\x0a\x09\xbe\xb3\x7a\xd8\xfd\x58\x37\x37\x08\x77\x4d\xc3\x73\xae\x23\x12\xa5\x11\xe9\x46\x38\x4a\x75\xe0\x20\xda\x3a\x16\xf0\x41\xb4\x97\x44\xd1\x1e\x45\x1d\x69\xf8\xa4\xe4\xe1\x90\xa4\xa3\x87\xb3\x40\x90\x11\x08\xbb\x86\x74\xb4\x45\x68\x9b\x40\x4b\x28\x55\x1d\x25\xce\x80\xd6\x93\xc3\xc7\x01\xe8\x27\x4e\x22\xa1\x63\xcc\x18\xf9\xf9\x8d\x95\x9b\xdc\x7b\x7b\x41\x91\xd3\xaa\xf4\xd3\xad\x1c\x58\x90\x60\xd9\xe8\x53\xf2\xfd\x3a\x6b\x64\x4e\xd1\xe0\x55\x42\xb1\xc4\xbc\xb1\x4b\x74\x8b\x50\x6a\xd1\x17\xc7\x89\x5e\xb0\xf5\xe1\xbd\x51\x52\xb3\xbb\x1f\x74\x40\x2e\xa1\x37\x05\x05\x9b\x82\x06\x7b\x6a\x37\x06\x6a\x98\x39\xb7\x3d\xd0\x8e\x09\x6c\xf5\x60\x8b\xbd\xa4\x0d\xfd\xda\x6c\x40\xfe\x76\x49\x6f\x41\x50\xaa\xc7\x2f\x8a\x52\x18\x12\x40\xb1\x1f\x96\x73\x1c\x3d\x88\x1f\x6a\xf2\xd1\xff\x38\x42\x58\xba\xb5\x30\xc0\xe2\xab\x50\x64\x6b\x0e\xf4\x51\xd4\x37\xdd\xe3\x20\xfb\xd5\x55\xf3\x3b\xaa\xc5\x7a\x2d\x3d\xc5\x8a\xbc\x48\x14\x66\x50\x09\xc2\x6f\x13\x65\x44\x2e\x6f\x6a\xbc\x4d\xb9\x23\x7d\x4b\x4c\x63\x94\xbc\x71\x7b\x60\xb0\x4e\xd6\xb9\xc4\xc3\x83\x1e\x0a\x64\x22\xba\xe0\x27\xb2\x36\xfc\x94\x29\xfc\x8a\x15\xcb\x4c\x8d\xe7\x54\xa6\x6f\x70\x98\xf0\x52\xc7\x1e\x09\x3e\x65\xb3\x74\xed\x8e\x79\x96\xd3\x0a\xf3\xbd\x33\x1b\x32\x7e\x5d\x9c\x89\x05\xfd\x40\xf9\x84\x4a\x2a\x5f\x8c\x15\xe3\xb3\xd4\xf7\x42\x1f\x22\x8c\xa8\x28\x95\xdb\xbe\xea\x1c\x39\x4e\x62\xbd\xc8\x96\x3b\xe7\x7c\xdf\x21\xea\x56\x61\x6a\x8f\xfb\x43\x2f\x03\xb1\x84\xa6\x97\x2d\x5d\x06\xcb\x2d\x9e\x0a\x79\x9c\x8d\xe7\x3f\x54\x9d\x46\xff\x09\xa0\x1f\xaa\xf0\xf5\xd8\x41\xb0\xbb\x6c\x03\x11\xeb\x82\x0d\x82\x47\x40\x0c\xc2\x46\xfe\x8d\x95\x80\x09\x91\xee\xae\x0f\xd5\x0e\x28\xd3\xf0\x5d\x93\x05\xab\x2d\x16\x3c\xaf\xd6\xc3\xa6\x49\x5b\x4f\x9d\xda\x50\xf7\x1e\x1d\x86\x43\xbd\xc5\xaa\x53\xb2\xcc\xd7\x58\x75\x4e\xac\x64\x82\xac\xb0\xea\xbc\xb7\x52\x05\x32\xd6\x1f\x2b\x49\xcb\xbc\xc7\x58\x75\xce\x40\x3c\x71\x2a\x26\x94\xe4\xfa\xd3\x0e\x3f\x59\x62\xd5\x39\x3f\x3f\x3b\x3e\xfa\x70\xfc\xf1\xfc\xf5\xdb\x8f\xc7\x1f\xde\xbe\x78\x73\x76\xfe\xea\xdd\xf9\xdb\x77\x1f\xcf\x3f\x9d\x1d\x9f\xbf\xfb\x70\xfe\xe5\xdd\xa7\xf3\x3f\x5f\xbf\x79\x73\xfe\xf2\xf8\xfc\xe4\xf5\x87\xe3\x57\xe4\x13\x56\x9d\x71\x2e\x38\x3d\x36\x82\x16\x72\xe7\x08\x11\xba\xd9\x78\x5e\xb1\x4e\xcd\x07\x8f\x9f\x60\x6a\xe5\xbb\x82\xc8\x44\x9f\x2b\xcd\xc4\x47\x38\x33\x33\x1a\xaf\x88\x59\x17\x34\x07\x6a\x16\x81\x90\x45\xd7\x0d\xdd\xc5\x9d\xe3\x9c\x78\xb6\xf2\x3b\x9c\xba\x59\x8b\x34\x23\x09\xa7\x8c\x2a\xa7\x0b\x7b\x7c\x43\x0a\x08\x02\x0b\x23\x12\xf6\x8c\x7e\xd1\xc8\xe8\x17\x86\xd1\x2f\x46\xc4\xe3\x42\x0d\x8b\x51\x1c\x7b\xa8\xc6\x03\xcd\xa1\xa7\x3a\xd6\xac\x18\xc5\x3d\xe7\x80\xe2\xae\x73\x40\x81\xd6\x8e\xff\x2f\x90\xbf\x41\x9c\x92\x6e\x7f\xfa\xbc\xe8\x4f\xe1\x1c\x30\x0d\xcf\x01\xd3\x9d\x73\xc0\xf7\x57\xeb\x3b\x58\xf8\x1c\x48\xb4\x22\x81\x6c\xdc\x08\x5a\x25\x0a\xe2\xd8\xf1\x88\x38\xa1\xa4\x6c\x73\x8a\xcf\xc7\x59\x3e\x5e\xe5\xba\xaa\x79\xc6\x67\x74\xf2\x92\xa9\x22\x55\xf8\xdc\x8e\xe7\x1f\x9a\x23\x49\x69\xf5\xfb\x40\x47\xa8\xb9\xa4\xd9\xe4\xc8\xf0\xd4\xf8\xbd\x95\xa2\x19\x76\xe8\x48\xf0\x62\xb5\xb0\x5f\x5b\xd4\x71\xa9\x41\xd3\x05\x3e\x77\x9c\x39\xd5\xd4\xe8\x8a\x10\x5a\xf6\xce\x11\xfd\x91\x8f\x39\xc9\xf4\x91\xf7\x96\xec\x2e\x0f\x47\xe6\xce\xcf\xf0\xe5\x7e\x3a\x2b\xc0\x26\xa1\x7a\x3d\x70\x75\x7c\xa0\xd3\x5d\xb9\x7c\x75\xd7\xd0\x99\xad\x28\xaf\x92\x9b\xee\x6e\xb2\x13\x2c\x61\xe5\x4e\xcd\xca\xc1\x8a\x3f\xb2\x9c\x4d\x1c\xe4\xef\xb1\x91\xcf\xdd\x5b\xc5\x02\x9f\xeb\x5e\x69\xa4\x16\x2a\x53\xab\x22\xdd\xef\xe1\x73\x7b\xa6\xf1\xf0\x2c\xe8\x42\x7c\x67\xc3\x9f\xbb\x03\xe0\x58\x2c\x96\x99\xa4\x69\x49\x01\x03\xe0\x6f\x15\xd4\xb4\x2a\xe8\x51\x96\xe7\x17\xd9\xf8\xb2\x99\x70\xbe\x25\x28\xcc\x64\xae\x53\x6c\xc1\xfb\x08\xce\x95\xb3\x62\xf1\xa0\xd8\x2b\x7a\xb1\x9a\x01\xed\x90\x8a\x74\x0b\x12\x8f\xa7\x53\x3a\xbe\xbf\x4a\x93\x25\xac\xf1\xf5\x62\xa9\xb9\x70\x76\x45\x7f\xc9\xf8\x24\xa7\x3b\x2b\x63\xb5\x82\x7a\x76\x9b\xcb\x56\xf6\x26\xbb\x15\x2b\xf5\x03\x70\x84\x19\x43\x68\x4e\xef\x1a\x1c\x57\x50\x67\x08\x0b\x7c\xa0\x93\xd5\x98\xca\xef\x40\x6d\x73\x55\x81\x6d\xa6\xc8\xb2\xc8\x54\x9f\x3c\x4d\xd6\xba\x10\xad\x9e\xd9\xc8\xbb\x4c\xf6\x2b\x2a\x0b\x26\x38\x89\x7a\x8f\x3b\xbd\xc3\x4e\x2f\xda\xe2\xde\x4f\xdf\xd1\xe0\xa8\x5e\x8e\xc0\x85\x02\x23\x3c\xe9\xfd\xd4\x43\xe1\xfd\xd0\xff\x2b\x5b\xfe\x97\xb2\x65\xcd\xa9\xc8\xca\x1e\x9e\x25\x07\x07\x4f\x50\x80\xd5\x55\xc9\x44\x63\x86\x33\xbc\xc2\xb9\x59\x0a\xc7\x3f\xaa\x94\xd1\x57\xf2\x76\xad\xec\x65\x1f\xc7\x63\xb4\x1d\x6b\xce\x35\x29\xac\x1c\x53\x70\xd3\x74\x81\xb6\x5b\x27\x59\xc0\x56\x10\x52\xe8\xf0\xd4\x84\x27\x64\x6d\xb3\x56\xb8\xad\x9c\xb4\xbb\x78\x4c\xe8\x36\xe0\xc1\x97\x35\xa0\x0b\x3c\x85\x8c\xbe\xde\x95\x05\x67\x12\x5e\x3c\xea\xc6\xe7\x26\x7d\x61\x7e\x6e\x8d\x08\x31\xbc\xbe\xa8\x9e\xcb\x74\xbf\x37\x9b\x68\xc5\x2f\xb9\xb8\xe6\xfb\xf4\x8a\x72\x50\x38\xb2\xab\xfc\xc7\x4c\xce\xa8\x22\xb7\x09\x47\xb8\x4a\xe0\x16\xb4\x15\x9e\xe0\x39\x30\x3d\xcb\xe6\xdb\x50\x8d\x6d\x3d\x4a\x79\x6d\x94\x7a\xcf\x9e\x5a\x3e\x6b\x41\xc6\xfd\x0a\xca\x36\x9b\xa4\xd0\x38\x99\x92\x05\xda\x6e\x13\x89\x95\xe5\x95\x30\xd5\x8c\x51\x15\x34\x58\xf6\xcd\x15\x03\x94\xae\x0b\xfa\x0d\x43\xe6\x65\x23\xa0\x14\x72\xe1\xf6\xc2\x8b\x21\x1d\x61\x4e\xae\x3a\x8c\x4f\xe8\xcd\x3b\xbd\x20\x80\x0a\x55\xb2\xdf\x7b\xce\x51\x0d\xe2\x67\x8f\x81\x35\xd4\xe9\xc7\x7a\x6e\x40\xb7\x54\x87\xde\x28\x99\x8d\xd5\xf1\x15\x74\xb7\x56\xc4\x70\x93\xae\x71\x10\x5c\x1e\xc3\xfd\x3b\xe6\x44\x75\x00\xdb\x1f\x6f\x97\xb4\x70\xf2\x3e\xdb\x4f\x46\xf8\x50\x8e\xf0\x8a\x28\x9c\x13\x60\x2f\x2f\xeb\x0c\x5c\xbe\x03\xde\x33\x9c\x23\xd4\xbf\x1c\xe6\x23\xc2\xfa\x86\xc0\x59\x67\x39\xcf\x0a\x3a\xf9\x40\x67\x0c\x14\x3b\x98\xe0\x6f\xb3\x05\x2d\x74\x95\x63\xb3\xd8\xc0\xcd\xf8\x18\x8d\xeb\x0d\x08\x14\xc7\x37\xc9\x78\x28\x46\x30\x65\xfa\x82\xb4\xbb\x56\x48\xd4\x91\xb5\xfa\x06\xc9\x4d\xb2\x1b\x0b\xe5\xb0\x2e\x87\x52\x61\xa5\x6d\x6d\x51\x07\xfb\x29\x96\x1a\x49\xdb\xed\x36\xbc\x53\x29\xb9\xf6\xb3\x21\x1d\xd5\x69\xa7\xdb\x05\xbc\x9e\x81\xde\x0d\xfe\x08\x3f\x01\x36\x87\x7c\xd4\x99\xd0\xa5\x66\x37\xf8\x98\xd1\x02\xe8\xe3\x98\x0c\x47\xf8\x92\xac\xb7\xf8\x4c\xff\xfb\x58\xa1\x93\x77\x9e\x3f\xc2\x9c\x58\x55\x37\xa5\x11\x43\x11\x9b\x26\x75\x29\x7f\xa2\x90\x9f\x41\x43\x05\x8a\x6f\xed\x8b\xdd\x3c\x9b\xcd\xc5\x50\x8d\xda\x84\x18\xd9\xae\xfe\xd8\xe9\xc8\x01\x56\x08\xf5\x75\x12\x91\xba\xe9\xee\x76\xcb\xe3\xf8\x3a\x31\x93\xf9\x88\xb4\x93\x46\xcd\xaf\x6b\xc6\x27\xe2\x1a\x26\xee\x5d\x89\x9d\x89\x18\xc3\x1c\xfc\xb1\x5c\x55\x4e\x12\xe1\xf7\x66\x3a\x9d\x9b\x9f\xaf\xb5\x75\xe4\x85\x3d\x26\x52\xb2\xd0\xe7\x44\xb8\x70\x6a\xb8\x5b\x7a\x5f\x5f\x9a\x9f\x76\xed\xa4\x57\x84\x76\x34\x0f\x47\xdf\x8a\x09\xed\x1b\xbe\x7b\x9e\xe8\x76\x93\x20\xc1\x1e\x83\x34\x8e\xea\xc2\xe8\xf3\xc1\xd7\x81\x97\x1f\xa7\x5f\xc9\x90\x8e\xd2\x73\x42\x43\x49\x32\x80\x75\xee\x84\x19\xe7\x58\x91\xaf\x7a\xa8\xbe\x12\xdb\x29\xdd\x09\x6c\x2e\x55\x28\xe9\xf6\x69\x29\x32\xa5\x7b\x7b\xe8\x45\xa2\x34\xe5\x6d\xef\x10\xe1\xb5\xa8\x3e\xc4\x57\x65\x64\x35\xed\xba\x52\x50\x1d\x0a\xc6\xd0\x1a\x86\xf6\x15\x79\x8d\xdf\xe8\x55\xef\x1b\xd0\x9b\x4b\xff\x94\xa0\xb5\x3d\xa7\x9e\x1b\x41\x20\x21\xe4\xeb\x66\x93\x9c\x26\x08\x7f\x48\x42\xe9\xd0\x9f\xc1\x24\xf9\x86\xc2\x36\x51\xff\x1b\x69\x77\x61\xdb\xaa\x4a\x02\xd0\x76\xca\x78\x96\xe7\xb7\x6b\xdd\x2a\xfe\x94\xd8\x1d\xeb\x01\x79\xf8\xbf\x87\xe9\x8b\xfd\xbf\xce\xb3\xfd\x6f\x7f\xaf\xba\xdd\xa3\xee\xbe\xfe\x79\xf5\x18\xfe\x3f\x85\x8f\x13\xf8\x38\x81\x8f\x83\x93\x93\xbf\x57\xdd\xc3\x27\x90\xed\xf0\xc9\x2b\xf8\x7f\xb2\xff\xf7\xaa\x77\xa2\x53\x0e\xba\xdd\xa3\x7d\xf8\x79\xa5\xff\x43\xb6\x83\xde\x53\x9d\x72\xd4\x85\x8f\x93\xe3\x93\xbf\x57\x87\xdd\x6e\x6f\xff\xef\xd5\xab\x27\xba\xcc\xc9\x33\x48\x39\x79\x75\xa4\x3f\x5e\x9d\xc0\xc7\xc9\xc9\xab\xd1\xff\x53\x01\xfb\x7b\xbf\xd3\xdd\x7f\xa6\x9b\x7e\xf9\x44\x37\xd3\x35\x6d\x3e\x86\x66\x0e\x4f\xa0\x99\x47\xdd\xd1\x7f\x3d\x78\x88\xff\xf8\xee\xbd\xe1\x4b\xbd\x26\xfd\x52\x59\x93\xfe\x09\x37\x5a\xcb\x6a\x64\xe3\x31\x5d\xaa\xe2\xa5\xb9\xd6\x28\xc8\x81\x91\xd4\x1f\x9a\x9f\x47\xfa\xc7\xdc\x28\x67\x4a\x49\x76\xb1\x52\x54\x2f\xc4\x44\x36\x44\x16\xcb\x6c\x4c\x89\x30\x29\x8b\x55\xa1\x3e\x15\xd4\x81\x43\x38\xf6\xf7\xd7\xfa\x1b\x2a\xb1\xd7\xd8\x46\x8f\xcb\x84\x8b\x8c\x33\xc5\xbe\xd1\x4f\x1f\xde\xd8\x5b\xae\xdf\x75\x17\x22\x77\x7a\x6f\x4d\xf4\x51\x59\x8a\x55\x91\xdf\x9e\x51\xf5\x9a\x73\x2a\x7f\xf9\x78\xfa\xa6\x65\xa5\x16\x70\xd0\x71\x1f\x47\x73\x3a\xbe\xa4\x93\x16\xf3\xb9\x8a\xd5\x72\x29\x69\x51\xc0\x39\x89\xab\xe3\x09\x53\xd9\x45\x4e\xff\x34\xfc\x9f\x4f\xfe\xe5\x76\x62\x36\x1d\x9f\xa0\x6e\x73\x1a\x75\x8a\x65\xce\x54\x12\xb5\x22\xd4\xb1\x72\xbb\xa4\x22\x06\xfb\x5d\xef\x1b\x9c\x5e\x03\xa6\xbb\xb8\xdd\xc3\xd4\x08\xcb\xda\x3d\xb4\x45\x08\x0f\x87\x91\xc1\xf7\xd1\x3c\x93\x05\x55\x11\xb6\xdf\xfb\x63\x1b\x31\xc2\xc3\x68\x9c\x67\x45\xa1\x11\x14\x61\x13\x86\x58\xcd\x94\x9f\x08\x19\xc1\x15\xb6\x8d\x51\xcb\xe3\x7f\x56\xec\x2a\xc2\x10\xde\xa7\xf0\x31\x1a\x35\x03\x67\x17\xc9\x61\x77\xd4\xff\x5d\xef\x0e\x06\x4e\x85\x7b\x00\xe7\xb0\x37\xaa\x82\x1a\x8d\xab\x38\x8a\x70\x34\x91\xd9\x6c\x66\xc3\xc5\x92\xe6\x39\x20\x38\xc2\x11\x5c\x9e\x44\x77\xb4\x5b\x41\xca\x01\x34\xd6\x51\xe2\x8d\xb8\xa6\xf2\x28\x2b\x68\x82\x6a\xed\x66\x2b\x25\x3e\x50\x7d\x26\xd2\xed\xd0\x1b\x45\x25\xcf\xf2\x0f\xd4\xdc\x75\x17\x1f\x74\x2f\x25\x9d\x00\x22\xc6\xab\xc2\xc2\xa3\xc7\x8d\xca\x2b\xfa\x22\x5f\xce\xb3\x7f\x01\x4a\xa5\xf1\x28\xcb\x73\x71\x7d\xb2\xca\xf3\xb3\xb1\xa4\x94\xb7\xb2\xe2\x96\x8f\x5b\x1a\xa2\x13\xdd\x16\x84\xde\xe7\xd9\x6d\x4b\x23\x47\x8a\xbc\x70\xa4\xa6\x7f\xa9\x6c\x4d\x18\xc0\x33\x71\x81\xf7\x6c\xac\x56\x92\xbe\xe6\x36\xa0\x0f\x24\x8b\xb7\x02\x04\x15\x99\xa2\xad\x39\x9b\x4c\x28\x6f\xe5\x42\x2c\x5b\x5c\x9c\x8a\xc9\x2a\xd7\x27\x1a\x9f\x2e\x96\x94\xb7\x96\x79\x76\x5b\xbc\xe6\x39\xe3\xb4\x25\x69\x36\x79\xc7\xf3\xdb\x96\xb4\x68\x68\x49\x83\xaa\x49\xab\x18\x8b\xa5\xfe\xa1\xd9\x22\xa7\x45\xd1\x62\x8a\x2e\xce\x74\xdc\xbf\xa4\xdb\xc3\xef\x0f\xd1\xd8\x4c\xac\x08\x47\x8b\x55\xae\xd8\x12\x46\x60\xb1\x52\x10\x55\xd0\x9c\x8e\x75\xf0\x47\x06\xe1\x10\xb7\xbb\xf5\x49\x12\x8d\xb3\xa5\x46\x96\xa6\x38\x71\xcd\x73\x91\xfd\x58\x5d\x8f\x1a\x26\x5c\x34\x16\x79\x11\xe1\x48\x8a\x6b\xfd\x53\xb0\x6f\x86\x78\x33\xfe\x43\x55\x3e\x6e\xaa\x52\x8a\xeb\x33\x5d\x01\x8e\x0a\x95\x49\xf5\x43\x15\xfd\xf4\x1d\xa4\x02\x0b\xf3\x1b\x79\x38\xfc\x7b\x3f\x1d\x25\xc3\x6c\xff\xdb\x08\x3d\x9c\x95\x4b\xf7\x7f\x42\x29\xfb\xb0\x37\xea\x28\xf1\x69\xb9\x74\x35\x6d\x61\x19\xe1\x6a\x7f\x4e\xd9\x6c\xae\x5a\x59\xce\x66\x70\x00\xde\xbf\xc8\x0a\x0a\x84\x93\xc9\xec\x82\x8d\xf7\x35\xfd\xb5\x5c\xe4\x7e\x31\x67\x53\xd5\x1a\x67\x4b\x57\x70\x9c\xb3\xe5\xfe\x32\x53\x73\x13\x92\x9a\x1c\xc7\x22\x17\x72\x9f\x71\x45\xe5\x52\xe4\xc6\xae\xa5\x21\x6e\x7f\xca\x72\x45\x65\x61\xd3\xac\x0a\xa0\xfd\x32\x82\x3a\xbd\x92\x4e\xc4\x82\xf1\x2c\x84\x8c\x72\x3d\x53\xf6\x2f\xb2\xf1\xe5\x4c\x8a\x15\x9f\xb4\xa6\x2c\xcf\xf7\xc5\x32\x1b\x33\x75\x6b\x3e\x00\x90\x69\x2e\xc4\x64\x1f\x2a\xb4\x61\x9f\x47\x70\xb5\x3f\xcd\x16\x2c\xb7\x61\x3d\xce\x65\x68\x3f\x9b\x7c\x5d\x15\xca\x46\x28\x49\xd5\x78\xee\x3e\x6e\x73\x9b\xd1\x4a\x3b\xcc\xc7\xb5\x41\xc7\x2c\xbf\x5d\xce\xf7\x79\xb6\xa0\x36\x28\x24\xa3\x5c\x99\xfe\xce\x85\x64\xdf\x04\x57\x59\xde\x90\x78\x45\xa5\x62\xe3\x2c\x6f\x41\xae\xfd\x6c\x72\xb5\x7f\x63\xc3\x42\xb2\x19\xe3\xfb\x37\x2d\xb6\xc8\x66\x34\x40\x4d\x4e\x95\xa2\x72\x5f\x6f\xa3\xf0\xa9\x41\x60\x7c\x66\x7b\xbc\xc8\xe4\x25\x95\xfb\x94\x4f\x5c\x70\xc1\x7c\x10\x08\xb1\x25\xae\xa8\x84\x71\x5d\x8a\x82\x19\xf5\x6b\x17\xa3\xe6\x6c\x7c\xc9\xf5\xb2\xb0\xcc\x18\x57\xfb\x42\x4e\xa8\x6c\x2d\x33\x2e\x0a\xba\xdf\x6b\x2d\x05\x8c\xa5\x39\xad\x17\x2d\x0f\x13\x0c\x31\x57\xad\x62\x9e\x2d\x43\x50\x0b\x25\x96\x16\x2e\x08\xba\x81\x28\x94\x64\x97\x54\xb3\xe8\xab\xd9\xbc\x04\xa3\x1a\x5d\xc2\x52\x28\x29\x2e\xe9\xfe\x24\x2b\xe6\x99\x94\xd9\x6d\x18\x21\xa6\xd3\x82\x2a\x17\xa3\x3b\x31\xce\x96\xe1\xe7\x57\xc1\xb8\xfb\x5e\x30\xa5\x3b\xba\x60\xbe\x40\x00\x91\xfe\xbc\x66\x13\x35\x6f\x29\x7a\xa3\xf6\x33\x3e\x9e\x0b\x69\xc2\x13\x3a\x16\x66\xa7\x37\xdf\x65\x0f\xf5\x01\xa7\x86\xcc\x32\xaa\xec\xc1\x8a\xb3\xb1\x98\xd0\xfd\x0b\x36\x61\xfe\x43\x6a\x1e\x45\x7f\xa9\x62\x7f\xa9\xb1\xba\x68\x5d\xed\x67\x7a\x63\xba\xa0\x8a\x8d\x5b\x57\xfb\xf3\x8c\xcf\x74\x2b\x57\xfb\x6c\x42\xc5\x4c\x66\xcb\x39\xc4\x2f\x32\x35\xa7\x8b\xcc\x90\xce\x15\x1d\x2b\x21\xf7\x29\x88\x3c\x5b\x9a\xa2\x80\x8e\x6e\x4d\xd0\x93\x51\xf8\x75\xdb\xba\x16\x72\xe2\x49\xe8\x5a\x32\xa0\xa0\x85\x98\xd0\xd6\xcd\x22\xe7\x45\x7a\x93\x33\x7e\xd9\xba\xb1\x13\xfe\xfb\x5b\x83\x3b\x5a\xb9\x0b\xe1\xdf\xf0\x7f\x50\x13\xff\x50\xdd\x47\xa1\x95\x34\x1b\xab\x95\xde\xc5\xec\x97\x1c\x4b\x91\xbb\xaf\x20\x58\xcc\xc5\xb5\x0d\x2a\xa6\x7c\xb4\x66\x0b\xff\x0f\xc2\x07\x2c\x52\xfa\xf0\xe1\xf5\xf5\x75\xe7\xfa\x10\x44\x9f\xbd\x67\xcf\x9e\x3d\x84\xc6\xa2\x72\x75\xbf\x59\xe4\xa9\x5e\x9b\x22\x0c\xc1\x3c\xe3\x33\x1b\x04\xfe\xf6\xae\xd5\xfe\x7f\x02\xc7\xe7\xd3\x37\x1a\x96\xa7\x0f\xb9\xe3\xa2\x03\x78\x54\x76\xf1\x9a\x4f\xe8\x8d\x66\x06\xa5\x28\x8a\x77\x30\xd2\x3f\xb4\xe9\xf4\xbe\xb7\x93\xff\xde\x81\xde\xff\x22\xe9\xd4\x16\x8a\x7c\x44\x64\x8a\xdb\xa1\x9c\x43\xcc\xf7\x70\xd8\xd5\x00\x17\x72\xac\x73\x9a\x02\x99\x39\xc0\x03\xd3\xba\x78\x61\x3e\xfe\x87\xa0\x77\xfd\x7e\xf9\x85\xc8\xff\xc6\xcd\x6e\xb9\xa9\xfe\x55\x33\xfa\x23\xbf\xef\x8a\x5c\x06\x7a\x0c\xe1\x2a\xa8\x6f\x6f\x64\x89\x18\x80\x52\x20\x9c\x5b\xd2\xb6\x8c\xe3\xe4\xc0\x1f\xf4\xe3\x38\x89\x04\xc8\x44\x86\xdd\xd1\x66\x13\xbd\x73\x61\xa4\x53\x8c\x8e\xd2\xb0\xa7\x53\xde\xba\x30\x42\x68\xb3\x49\xea\xb2\xd0\xf0\x7e\xf9\x2e\x81\x8b\xaa\x1a\xf1\x54\x8a\xb5\x09\xe1\x71\xac\x01\xe5\x00\x68\x69\x74\xe9\xf4\xc9\x6c\x1d\x56\x25\xcd\xcb\x5a\x8c\x52\x5a\x01\xea\xea\x51\xea\xed\x40\x21\xd6\x29\xbf\xb9\x68\xdd\x77\xd7\xd8\xa0\xcd\xeb\x87\xc9\x34\x9a\x64\x2a\xdb\x8f\xda\x84\x24\x94\xd4\x46\xd3\xc8\xc6\x93\x2e\xfe\x09\xa1\x38\x8e\xf4\xee\x0b\x39\x29\xea\x5b\x9e\x3a\xf5\xba\xdc\x5b\xdf\xbd\x8a\x61\xaa\x2c\x3b\x15\xf4\x1a\xd9\x0e\xda\x7e\x1b\x65\xb9\x43\x57\x99\x82\x9e\xb4\x1e\xf9\xca\x35\x3a\x4d\xdc\x4f\xa9\x33\xd9\x2a\xde\x66\x6f\x13\x85\x4c\xf4\xe3\x7a\xf4\x66\xd3\xfb\x59\x6d\x3d\x70\x20\x93\x11\xa0\xfe\x9a\x70\x7b\xd5\x2b\x37\x1b\x3b\x76\x62\xb0\x7b\x07\xd4\x6e\xff\x61\xee\x04\x7e\xc1\x14\x6d\x36\xee\xeb\x25\x06\xdd\xa2\x07\x1d\x45\x0b\x95\x50\x34\xf8\x45\xcf\x88\x76\x37\x4d\x5e\x9a\x80\x9e\xb6\x68\x9b\x28\x64\xd1\x0e\xea\x7b\x7a\xc9\x59\x88\x2b\xfa\xc2\x1d\xc5\x13\x85\x52\xd0\xe3\x0e\x62\x30\x68\xf5\xa0\x54\xd4\xcf\xe5\x03\x3a\x14\x95\x43\xf9\x88\xf8\x9a\x0f\xdb\x8e\xca\xe3\x38\x8a\x52\x9e\x26\x8a\x88\xea\x91\x1f\xcb\x7a\x0c\x2c\x5f\xf8\x7e\xe8\x12\x4e\x0e\x09\x98\xd6\x9a\xea\x91\x11\x34\x88\x38\x6e\x77\x8d\x4a\x62\x94\x6a\x80\xb1\x1c\x54\x3b\xf2\xf6\x0c\x64\xf7\xbc\xa1\x83\x1c\x21\x84\xb6\x5f\xea\x13\x38\x6a\xd6\x1b\x8a\xf4\x94\xfb\xd2\x69\x4e\xac\xe9\x31\x21\x7c\x7f\xad\x81\xd2\x51\x43\xb5\x41\x2a\xa9\xa9\x24\x99\x45\xec\x33\x79\xf8\xbf\x93\xce\x7f\xa1\xe1\xdf\x7f\xff\xfd\x70\xf4\x10\xff\xfa\xa3\x66\x41\x94\x92\x5f\x7f\xc0\x2e\x48\x35\x67\xab\x19\x06\xf1\xe6\x5c\x3b\x96\x41\xb2\x39\x5f\x93\x69\x90\xb8\xa3\xe1\xba\x6d\x10\xbb\x33\x5f\xd5\x38\x28\x6b\xce\x57\xb7\x0e\x5a\xdd\x99\xcd\x8e\x6a\x00\x65\xaf\x87\xf3\x3b\x3a\xde\x60\x4d\x34\xbe\xa3\xef\x75\x73\xa2\xe2\xfe\x7c\xe7\x39\x2b\x2c\xb8\x07\x5d\x3c\x6d\xce\x5c\x31\x3e\x9a\x34\xe7\xa9\x58\x1f\x2d\x9b\xf3\x5c\xe4\x62\x7c\x69\x1b\xeb\xe1\x39\xfd\xef\xd9\x28\x2d\x68\x70\xfc\x2c\x95\x9e\x1a\x2c\x42\x8c\xb2\x43\x93\x2a\x2f\x25\x73\x1a\xc7\x74\x38\xa7\xa3\xcd\x86\xd6\x95\x79\xed\x94\xf0\x2d\xde\x52\x7b\x1f\x50\x53\x82\x73\xf6\x0b\x4d\xdd\x28\x35\xe5\x3a\x13\x56\x2c\xf3\x0c\x16\xb4\xcd\x86\x76\x38\xfc\xfa\xb2\x56\xfd\xba\xa9\xa4\xdb\x1d\xdd\xbe\xc1\xa9\x5d\xfd\x23\xa7\x8a\x16\x99\x5d\x41\xf9\x84\xf7\x66\x26\x99\x68\x51\x46\x3b\x3a\x37\x09\xd2\x27\x94\x7a\x6a\x36\x69\x5c\x26\x39\x52\x32\x09\xc5\x4e\xc2\x1b\x4d\x3a\xdb\xaa\x3a\xb2\xef\x83\x03\xbd\xae\x28\x9e\xf9\x6a\xac\x7a\x88\xd7\xf8\xb1\xed\xb0\x9d\x0c\x4e\x6b\xc8\x66\xc8\x69\x5a\xf2\xb7\xfa\x14\xe4\x95\x7c\x88\xaa\xe2\x5a\x59\x5c\x47\x11\xae\x8d\x42\x12\x01\x9d\x0c\xa2\x13\xaf\xdd\x93\xc0\x0d\x3f\x8a\xd2\x20\x2e\xb2\xbb\xee\xd4\xc1\x04\xa4\x60\xb6\x09\x93\xb2\xac\xa6\x18\x80\x6c\xda\x84\xa6\x70\x87\x64\xdc\x0a\x58\x9d\x9e\x01\xed\x84\x2a\x3d\x28\x28\x8d\xb6\xa1\x2a\x64\x79\xa9\x4d\x4b\x96\x3e\x8a\xfa\x13\xb1\xa6\xa9\xc7\xae\xca\x66\x9e\xa9\xb0\xbc\x84\xe5\x13\xe0\xe7\x89\xf9\xe9\x75\xcd\xef\xb3\xd4\xd8\xe0\x47\x91\xd1\xed\x6f\x51\xcf\xde\xb8\x1b\xf3\xf3\x09\xbd\x58\xcd\x40\x27\x15\xd4\x99\xcd\xf7\x19\x88\x3b\x31\x23\x41\xff\x0d\x7b\x81\x81\xed\xd2\xf1\xd2\xc4\x23\x2c\x09\xc3\x8c\x44\x11\x16\x03\x46\xa2\x56\x92\xa9\x56\xb4\x27\x3a\x9a\x00\x35\xf6\xfd\xa9\xe4\x33\x8e\x22\xb4\x17\xa5\x3a\x51\x9f\x64\xdf\x82\xed\x01\x8c\x81\x51\xff\x8d\x5a\x89\xb9\xb6\x9b\xb4\x2e\x6e\x5b\xd1\x1e\xd7\x69\x08\x73\x12\xfd\xcd\x5b\xad\x56\x8b\xf1\x56\xb4\x97\xc8\xcd\x26\xfa\x64\x2e\xf8\x23\xb4\xc7\xb6\x6a\x8f\x70\x4c\x81\x3a\x34\x36\xb7\xd7\x73\x96\x6b\x14\x7a\x32\x29\x51\x7b\x05\xa8\xad\xf2\xa0\x76\xb2\x95\xec\x65\xc5\x2e\xa2\x62\x0c\xb1\x6b\x3e\x51\x32\xc6\xa9\x9f\xc4\x55\x06\x32\x8a\x82\x2b\xb7\x0b\x1a\x9e\xd6\xc0\xd6\xcb\x9a\x87\x6b\xf8\xb9\x98\x00\xc2\x34\x47\xca\xf8\x72\x05\x13\xac\xc6\xb8\x6a\x46\x1e\x04\xa0\x17\xe2\x26\xb2\xdc\xb9\xcc\x26\xcc\xb0\xfd\xc1\x75\xda\x35\x35\x36\x2e\xe7\x20\x1e\xff\x28\xb3\xf1\x25\x95\x9b\x4d\x52\x8b\x69\xd0\xa8\x03\x20\x07\x5e\xcc\x9a\x5a\x01\x3b\xf6\x5e\x57\x66\x54\x05\xfc\xc8\x2b\x5a\x8c\x25\x5b\x2a\x21\x8d\xca\xbb\xb3\x4f\x0b\x4c\xe3\x95\xa6\x91\x28\xda\xf3\xb7\xcb\x0d\x37\xd0\x71\x5c\x35\x77\xb1\xa3\xc3\x43\x2b\xbf\x72\xbd\xe1\x1a\x88\xbb\x92\x0a\xaa\xdc\x99\x0a\xf2\x61\x46\x20\xd2\x11\x84\xed\x86\x69\xcc\x83\xa0\x99\xfc\xf5\x18\x78\xa5\x95\xcc\x2e\x72\x9a\xb6\xbb\x78\x46\x55\x83\xe3\x0b\x51\xba\x4c\x41\x5b\x5c\xd0\x9a\xda\x33\x74\x15\xb3\xc0\xaf\x0a\x45\xdb\x2d\xc2\xf7\xb4\x4b\xb9\x5e\x11\xa1\x55\xde\x29\x3f\xb6\x08\xaf\x67\xd4\x2a\x63\xee\xc2\x21\xa1\xf1\x5a\xaa\x87\x60\x8b\x0b\x25\x96\x30\xce\x8c\xcf\xc2\xe2\x75\x1a\x30\xea\x3c\x34\xa7\x8a\xb6\xf4\x18\x6d\xb7\xfa\xd0\x13\x5e\xce\xde\xb8\x1d\xb1\x4d\xab\xae\x78\x34\x1d\x57\x2a\x83\xf1\x0d\x5c\xf8\x58\x27\x20\x1d\xd7\x8d\xc4\xd0\x82\xd7\xbb\x8e\xe3\x44\x5a\x92\xa3\x1d\x4b\x73\x83\x48\xc9\x15\x8d\xd2\x68\x9a\xe5\x05\x8d\x52\x6a\x0c\x64\x40\x89\x55\x22\x73\xb8\x4c\xc0\x23\x85\xa9\x92\x22\x38\x98\x97\x56\xab\xb4\xe2\x80\xc4\x55\xeb\xcd\xce\x92\xf5\x56\x23\xbd\x7a\x51\x67\x95\x26\x71\x78\x97\xe7\xe2\xae\xc2\x0f\x5b\x9b\xb5\xcb\xe0\x03\x9e\xd2\xce\xf9\xb5\xcc\x96\x4b\x2a\x41\xb1\xae\xc3\x38\x53\x2c\xcb\x6d\xc5\xdb\x00\xb2\xcb\x0a\x64\x86\xbd\x50\x9d\xb0\x49\x7d\xfc\xa8\xc6\x60\x33\x40\xed\xb2\x23\x03\x1f\x2a\xb3\xda\xc6\xfa\x9c\x5c\x51\xa7\xbd\x6d\xd0\x36\xb0\xbf\x29\x47\xb8\x06\x29\x59\x57\x41\x4d\x25\xb6\x11\xa6\xfb\xc6\x8a\x4e\x8a\x3c\xa7\x93\xb4\xba\xee\x38\x55\xab\x72\xf1\x81\x98\x41\x0d\xd4\xb4\x02\x4a\xb0\x14\x9e\x59\x4c\x98\xf4\x44\x95\x45\x50\x1c\xff\x95\x50\x5c\xde\xf3\x28\x90\x18\xf9\x92\x1f\x6d\x49\x5b\x83\xa5\xb0\x2b\x9a\x28\x47\x26\xd2\x02\x53\x1e\xcc\x39\x0a\x7c\x28\xc9\x41\x02\x27\x3d\x7d\xb0\x84\x15\x16\x8a\x69\x56\x0d\x02\x3a\x77\x1c\x27\xf6\x8b\xc0\xe1\x35\xf5\x69\xf0\x5d\x4f\x2e\x0d\xb5\x8a\xd5\xc5\x82\xc1\xc2\xad\xb7\x29\x49\x0b\x6a\x3e\x50\xa8\x9b\xbd\x7b\x2e\xb5\x6b\x2c\xea\xab\x9d\xd3\x9e\x4d\x19\x1c\x41\x77\x8d\x02\x09\x47\xe9\x6e\xc6\x90\x66\x22\x14\xc7\x61\x01\xc0\x4e\x98\x01\x21\xec\xa8\xcf\xe2\xd9\xd9\x69\xd5\x29\x0a\xfa\x5a\x8d\x22\xed\x76\x3d\x57\x30\x3e\xef\x68\xa0\xc9\x71\x67\x7f\x34\xb7\x76\x7f\x0f\x9c\x4e\x52\x39\x96\x6d\x8f\xdf\x36\x21\x32\x8e\x2d\x7e\xdb\x80\xec\xc0\xfe\x00\x9a\xf0\x16\x68\x8e\x2c\xec\x10\xf4\x15\xac\x8e\xcd\x53\xd6\x4c\x38\xbe\xd9\xa8\x90\x30\xfc\x60\x83\x97\x98\x10\x4a\xa2\xb6\xc0\x59\x26\x9c\x18\x46\xdf\x50\x8e\x0e\x91\x28\x0a\x72\x97\x98\xbb\x7f\xb1\xc0\x50\x1d\x2f\x6b\x09\x8d\xee\x8e\x3c\x66\x43\x8f\x60\x71\x4c\x3b\x60\x21\xf0\xca\xe9\x3e\x65\x63\xc5\xae\xbc\x16\x3d\x9c\x96\xec\x51\x86\x0f\x6a\xf0\x7f\x07\x15\x69\x35\x7b\x48\xfe\xf5\x6a\x78\xb8\x5f\xbc\xa7\x55\xe5\x22\x22\x92\xb5\xd3\xa2\xb0\xeb\xe8\x56\xb3\x05\x89\x6a\x60\x40\xca\xdd\x41\x7a\xb3\x27\x2f\xb5\xa5\x55\xdb\x9f\xd2\x38\x4e\xed\x11\x8a\x8c\x09\x50\xa2\xbc\xc1\x05\x32\x03\xe2\xed\x2f\xf4\x08\x96\x60\x9e\xd3\x8a\xe8\x52\x33\x61\x62\xa9\x53\x0a\x70\x88\x05\xfa\x2b\xce\xe3\x0e\xe9\xf6\xc5\x73\xef\x55\x4e\xec\xed\x21\x35\x8c\x1e\x44\x7b\x7c\x28\x46\x23\xd2\x36\x6e\x6b\x38\xe9\xf6\xf9\x73\x1a\x6a\x28\x0b\xb2\x4b\xe8\x0f\x34\x2f\xc4\x47\x6e\xbd\x82\xb0\xbb\xb9\x6e\x83\x2c\x2a\xa9\xc4\x11\x81\xb0\x88\x63\xe9\xe2\x2d\xee\xcf\x5c\xb2\xde\xfd\xf4\x12\xb4\x36\x30\x44\xd1\x9e\xde\x04\x10\xb6\xf6\xca\x06\x76\x1a\xc2\x0e\xdd\x1d\x0a\x0b\x82\x5e\x0d\xfd\x29\x54\xc7\x16\x65\xcd\xa0\xac\x9a\x48\xeb\x34\xa8\xa9\x69\xd4\x77\x33\x4d\x9f\xad\x75\x1e\xab\x88\x00\x26\xca\x3a\x06\x6d\x5d\x0e\xbb\x71\x07\x70\x97\xa3\xf1\x95\x7a\x77\x0f\x7e\x29\x6a\x56\xb8\xa9\x2b\x5d\x06\x36\x7b\x6e\x73\xaf\x6c\xd9\x4d\x7b\xba\x27\xc7\xef\x4c\x81\x70\xfb\x7e\x51\x63\x2c\xa0\x91\xd2\x9a\xd0\xda\x65\x91\x92\xfc\xb0\xaa\x6d\xef\xd8\xed\x47\x41\x2f\xeb\xbd\x39\x30\x6a\xb9\x55\x4b\x51\x6e\xd4\x12\xdb\x49\xef\x67\xef\xdb\x70\x47\x67\xf6\x10\xc1\x31\x6d\xd8\x1d\x6d\x15\xe1\x5b\xbb\xc2\x83\x36\x62\x04\x07\x29\xb5\xbd\x8b\x03\xb0\xb8\xd1\x64\x13\xea\x26\x56\x3a\x5c\xdd\x63\x77\xf7\x94\xc0\x96\xd3\x50\x21\xd7\xcc\x1a\x75\xeb\xb1\x5f\x46\x79\xb9\xf9\x84\xe5\x03\xef\x08\x6e\xb5\x69\x58\x6a\xb8\xdd\xba\xda\x44\x36\xae\x43\xa1\x9f\xbe\x0f\xd5\xf3\x16\xbd\x51\x56\xf7\xaa\x6f\xd6\xf7\xbb\x47\x5d\xf3\x06\x86\x5e\x03\xca\x2d\xb7\x01\x50\x0e\x7b\x4d\xc9\x9d\x77\x52\x73\xb5\xc8\x23\x7c\xd2\x98\xe3\xa0\xdb\xed\x3e\x2c\xae\x66\x51\x29\xe3\x3a\x0d\x0f\xa6\xee\x44\xaa\xb3\xb8\x53\xe4\x7d\xb5\x40\xe6\x45\xa6\xe6\xf7\xe4\x86\x1b\xbe\xd3\x4c\xcd\xe1\xdf\xe9\x9b\xa8\x7e\x4c\xbd\xb7\x23\x01\x45\xbc\xaa\xae\xec\x56\x42\xb6\xd9\xdc\x5f\x81\xc6\xf6\xe0\x14\xe4\xef\xf7\x75\x85\x80\xbd\x78\x34\x15\x92\xb2\x19\x7f\x57\x4a\x99\x06\xf7\x57\x9f\x1a\x4b\xdd\x37\x14\x7f\x6b\x32\x7b\x69\x3c\x59\x9e\x9e\xbd\x58\x2e\xe3\x18\x7e\x3a\xf4\x86\x8e\x3f\xf1\x22\x9b\xd2\x37\x62\x9c\xe5\x27\xb6\x8a\xf2\xfa\xc4\x2b\xc3\xde\x9b\x3f\x69\xb0\x73\x35\xf7\x03\x5b\x84\xb6\x29\xdd\x26\xc9\x8e\x67\x1b\xb3\xcf\xc3\xcd\xc5\xa7\x0f\xaf\xdb\x84\x9c\x68\x6c\x7a\xad\xc1\x08\xb4\xb6\x35\x71\xda\x08\xa2\xfa\x7e\xa9\x4f\xde\x50\xf2\x86\x6e\x36\xcd\x5a\xcf\x49\x34\x61\x57\x11\x42\x41\xd9\xe8\x79\x71\x35\xfb\x39\xda\xb3\xd3\xf8\xdd\x34\x41\xa5\x95\x3c\xda\x8b\x9e\x3f\x84\x74\xac\xc8\x1b\xda\x99\x32\x59\x28\xd8\x80\xfb\x95\x0f\xe4\xf8\x57\xf8\x4c\xc2\x34\x63\x1c\xd0\x57\xb5\xec\x7a\x92\xf1\x89\xc9\x1e\xa6\xe9\x63\x71\x60\xdb\xf2\xa9\xdc\x00\xfc\x9a\x53\x69\x59\xaf\x99\x71\xcc\x8d\xdb\xce\xcc\xc6\xc6\xf1\x21\x5c\x34\x72\x31\xa1\x1f\xcb\xcb\x46\x60\xb5\x13\x13\xfd\x87\x9b\xb6\x95\x45\x80\x04\x92\xa1\x3f\x2b\x0b\xdd\xda\xb9\x20\x68\xf1\x61\x4d\x00\x33\xd2\xfc\x68\xf5\x62\x78\x18\xfd\x49\x2f\x2e\x99\x8a\xf6\xe8\x88\x44\xd7\x36\xac\x74\xc2\xa9\xf8\x66\x62\x17\x3a\xa0\x30\x37\xfa\xc9\x94\xac\x33\xce\x8c\x9b\x5e\xca\x27\xe9\x9f\x34\x89\x5e\xb8\x88\x08\x97\xe1\x63\x3e\x89\x10\xf6\x79\x8d\xd0\x9a\x09\x7e\x77\x89\xd7\x2e\x4b\x58\x0e\x34\x74\xee\x2e\x73\x06\x9a\x64\x08\x2b\x99\x71\xa3\x6e\xe2\x80\xfa\xe8\x63\x22\x1c\x7c\x00\x58\x5b\xfc\x07\x25\xeb\x2d\x7e\x49\x2b\x7a\xbe\xbf\x38\x51\xc1\x1f\x74\x48\x47\x6e\x30\xe0\x03\x78\xf8\x07\x61\xb4\xb1\x52\x57\x98\x13\x88\x2e\x0d\x15\x38\xd2\x63\xdd\x24\x26\x82\xe4\x97\xb4\x52\x31\xe1\x43\x35\x2a\x4d\xb9\x8f\xe2\x38\x79\x49\xc9\xbd\xb3\xa2\x03\xda\x57\x21\xaa\xc1\x56\x88\x71\x6f\x8c\x90\x58\x89\xc8\x03\xda\x09\x07\xab\xfc\xc0\x0d\x19\xfc\x08\xdd\x9f\x0d\x06\xa4\xfc\x44\x15\xe4\xd6\x01\x29\xcb\x57\x06\x28\xf8\x32\x87\xe0\x7f\x28\xf9\x85\x26\x51\x08\x6c\x84\xf0\xef\xb5\x58\x16\x10\xc8\x6f\xb5\xb4\xc2\x12\xc2\x7f\x4c\x7c\xa5\xb9\x08\xe1\x2f\x94\x44\xd9\x85\x90\xaa\x35\xce\xf8\x12\x34\x51\xcd\xaf\x55\xae\x6a\x4d\x56\xa6\xea\x31\xd8\x14\xb7\xe8\x62\xa9\x18\x9d\xb4\x28\x1f\xcb\xdb\xa5\x82\xd0\x44\xff\x07\x7b\xbb\x5c\x64\x13\x3a\x99\x64\x2a\xb3\xc1\x05\x55\x99\xff\x34\x4a\x65\xcb\x6c\x55\x50\xd0\x41\x85\x7f\x8c\xcf\x5a\x4b\x29\x66\x92\x16\x45\x4b\x66\x8a\xda\x86\x0a\x4a\x2f\x41\xfb\x94\x5e\x1a\x05\xb1\x2c\xcf\xf5\x37\x5c\x5c\x4c\x5a\x8a\x2d\xa8\xf1\xce\xd5\xba\x12\xf9\x6a\xe1\x8a\x5d\x67\xa0\xa1\x14\xea\xf9\xe0\xbf\xc0\xd9\x56\xe3\x15\xcf\x9f\x34\xbb\x3c\xcd\x96\x03\xfb\x9b\x9e\x66\xcb\x60\xf1\xfa\x1c\xf0\x1a\x7f\x81\x47\xde\x40\x06\x5d\x37\xc9\xa6\xd7\xad\xd3\x6c\x89\xff\x82\x9b\x64\x58\x79\xf4\xb9\xc5\xd7\xf5\x6b\xc8\xb7\x60\x4e\x80\xc7\xa4\x9d\x2c\x07\x75\x64\x45\x91\x5d\x65\xed\x89\x16\x29\xe2\xc3\xb0\x37\x50\xa2\xfa\x13\xb1\xd6\xa7\xe1\xa4\xd7\x3d\x78\xac\xdb\xa4\xa8\x63\x94\xb9\x3e\x66\x33\xa3\x2d\xe0\xca\x20\x4c\x7d\xd8\x4b\xcf\xdd\xdd\xc4\xa1\x11\xed\x64\xb3\x01\xaf\xdd\x92\x41\x07\xf5\x44\xef\x1d\x1a\x39\x75\x36\x2b\x79\xad\x05\x5d\x08\xf6\x8d\x4e\x80\xb3\x0a\xfd\x12\x95\x4a\x1b\x70\xdc\x2a\xbb\x04\x88\xa9\x15\xf4\xac\x9e\x77\x0a\xde\xd2\x2c\xe3\x1c\x34\xe4\xe9\xa4\xf9\xfe\x44\x39\xb8\x00\x8b\xed\xba\x57\x84\x2c\xe9\x3d\x7d\x1a\x9e\x55\xb9\xcb\xdf\x4e\x68\xc3\x69\x34\x80\xd1\xca\x36\x03\xe5\x98\x44\x11\x68\xa5\xce\x89\x43\x13\xfe\x02\x42\xc3\x60\xee\x26\xe9\xd6\xbb\xba\x25\x14\x4b\xa2\xfa\xfd\x52\x54\x6d\x47\xb0\xac\x5d\x20\xe3\x91\xc9\xf8\x4a\x11\x55\x40\x6c\x1e\x16\x2a\xdd\x24\x92\x08\x37\xa8\x68\xcd\x89\xec\x8f\x05\x57\x8c\xaf\xe8\x16\x6a\xda\xb2\x69\x62\x9d\x11\xe8\xa2\x26\x64\xec\xe6\x74\xfd\x63\xb3\xc9\xf6\xa1\x4a\x16\x1e\x0a\x95\x4a\x04\xc2\xd0\x2e\x0b\xc5\x59\x26\x5e\xf5\x19\x61\x9d\x82\x5d\xe4\x8c\xcf\xb6\x4d\xc8\x86\xc5\xdc\xca\x84\x09\x91\x0e\x46\x4e\x04\x96\x84\x95\x0c\x8d\xf1\x80\xd5\xee\xe1\xdc\x83\x93\x1b\x70\x40\xa3\x03\xad\x57\xfa\x44\xea\x8a\xf9\x3e\xe5\x00\x93\x49\x94\x44\x60\xee\x13\x73\x92\x7b\xc0\xf4\xe8\xad\x4c\x6f\x73\xd7\xf9\xe6\xea\x99\xae\xe5\xae\xea\x99\x6e\xff\xce\xea\xeb\xbd\x7f\x86\xd0\xd6\x74\xdf\x8f\x1e\x98\xd0\xd5\xcd\x47\xbb\x06\x4b\x87\x6d\xd0\x99\xca\x66\xf7\x11\x14\x2f\x4d\xca\x9c\xf9\xa8\xd1\x77\x49\x15\xc8\xed\x2b\xf7\xd5\xa5\x05\x36\xed\x9b\xbe\xfe\xe4\xa6\xf4\x66\xf3\xd8\x05\xfd\x80\xf6\x41\x68\x67\x08\xc3\xfe\xda\xd1\x22\x0a\x2b\x77\xb4\x35\x23\xa6\xb3\x82\xd7\x11\x43\xa6\xb0\x28\xb5\x95\x43\x48\xdf\x99\x94\x9a\xe2\x9b\x8d\x0b\x91\xfa\x95\x7a\xb9\x7c\x6d\x7d\x69\xdf\xa8\x0d\x40\xdb\x0e\xd5\xcd\x13\x5f\xaa\x8a\xfc\x80\xec\x9c\xac\x0f\xbb\x01\x0e\xad\x27\x36\x95\xee\x78\x64\xaa\x7b\x22\x1b\x24\x14\x2c\xf3\xac\x45\xb0\x71\x16\x8d\x52\x1b\x9b\x98\xaf\x9d\x42\x43\x3a\x02\xbd\x8f\x4c\xe9\x53\xcf\x90\x62\x35\x0a\xbc\xd7\x2b\x27\xc9\xdb\x69\x9d\x7a\x51\x97\xd1\x35\x32\xee\xd3\xf3\x3c\xe1\x98\x5a\xf7\xd2\xaa\x66\xbe\x98\xb9\x15\x2c\x58\xb4\xce\x27\x56\xa5\xe8\x0d\x2b\x14\xe5\x54\x16\x7a\x1f\x29\xa3\x5f\x5b\x87\xdd\xc5\xae\xa8\x21\xf0\xbd\x26\x49\xb7\x2f\x03\xfd\xc2\x36\xed\xb0\x42\xb3\x63\xd9\xcc\x72\x8e\x62\xb9\xa4\x93\x04\xf5\xe5\xde\x1e\x02\x73\xec\xa1\x1c\x61\x0e\x7e\x0a\x41\x28\xae\xe2\xd8\x59\x69\xf7\x9b\xa0\x72\x1e\xf5\x76\x01\x73\x29\xac\x78\x4f\x65\x01\xf9\x55\x82\x36\x9b\xea\x2d\xa3\xa4\xf0\xca\x85\xde\xb1\x02\x8f\xfb\x2a\x50\xe0\x30\x4e\xc8\x12\xa6\x88\x54\x09\x53\x58\xef\x2a\x94\x30\x85\x99\x73\xe7\x07\x59\x61\x48\x32\x85\x30\xdb\x11\xc8\xfc\x64\x04\x32\xce\x1c\x9a\x92\x69\xc5\x10\x3e\xbc\xd6\xc8\x55\x79\xec\x34\x6a\x87\x60\xd7\xad\xa1\x2e\xe4\xd8\xb2\xa0\x9b\x8d\x61\xed\x50\x67\x2c\xa4\xa4\xc5\x52\xf0\x09\xe3\xb3\x4f\x85\xe3\x51\xc1\xc9\x17\xbd\x2b\x15\x61\xb3\xe1\xba\x03\xcf\x80\x76\x96\x99\x5e\x04\xf4\x82\x90\x06\xe2\xcd\xb1\xdf\xd9\x8e\xea\xb7\x76\x09\x25\x91\xe0\xd1\x1e\x45\x8c\xb7\x1c\xa3\xec\x37\xac\xcd\x26\x49\xd4\xfd\xfc\x33\xaa\xea\xc0\x51\x1c\xd9\xed\x4b\x9f\x23\x1a\x15\x7d\xc0\xfe\x14\x2b\xe3\x7c\x47\x55\xbc\x46\x4e\x95\xb9\xac\x56\x62\xf9\x86\x5e\xd1\xfc\xa3\xf3\xc1\x8e\xf5\xe9\x18\x84\xd9\x9a\x29\x76\x51\x06\xa7\x9a\x50\x5c\x0c\x10\x8c\x12\xd2\xf9\x86\x30\xae\x19\x8b\x92\x70\x0b\xb5\xeb\x9c\x71\xa2\x2a\xd2\x5f\x9f\xdb\xed\xc8\xba\x4c\xd5\x5d\x65\x05\x3e\x8a\x85\x31\xd2\x3e\xbb\x2d\x14\x5d\x9c\xe4\xd9\xac\x00\x37\x95\x21\xc4\x0a\x8b\x0a\xb8\xa5\xef\xca\xb0\xae\x94\xe2\x7a\x4d\xa9\xc4\x41\x3d\xa9\xc2\x65\x2d\x29\xc7\xbe\xbf\xe9\x70\x14\x50\xdf\x52\x55\xe4\x5d\xbe\x04\xe6\x86\x21\xd4\xa4\xc0\x35\xa2\x4b\x7c\x01\x56\x38\xb2\xfb\x99\x75\xec\xa1\xa9\x5d\xd3\x98\x34\x5b\x03\x91\xe1\x86\x23\xb8\xca\x18\xa7\xf2\x35\x9f\x8a\x72\xe7\xee\x4b\xcf\x8d\x4a\xbf\xc1\xf7\x25\x39\x6c\xdb\x6a\x0c\x03\x74\x67\x4d\xd6\xf7\x85\xd9\x49\x7e\x6a\x03\x6b\x65\x36\xc2\x38\x7e\x6c\x65\xcb\xbb\x60\x63\x4e\x8e\x78\x22\x91\x65\x5b\x39\xaa\x48\xe1\xeb\x54\x01\xf2\xf8\x35\xb0\x74\x2e\x65\xc8\x47\xd6\x3b\x96\x9e\xb9\xe1\xd0\xa1\x3e\x38\x94\x08\x46\xc9\xf2\x61\x95\x5c\xe0\x46\xab\x3e\x76\x7d\x7b\xbd\x98\x64\x1b\xf2\xf8\x51\xe9\x30\xc1\x78\xc0\xc5\x39\xe9\xf6\xf3\xe7\xc7\x0e\xa8\xdc\x39\xb4\x1c\x93\xe3\x61\x3e\xea\x8f\xe3\x38\x19\x93\x71\xd5\x13\x03\xa8\x9e\x32\x2c\x70\x06\x37\x1a\x2b\xbd\x96\xad\xf0\x18\xa1\xed\x4a\x25\xab\x70\xed\x9b\xab\xe0\xfa\xad\x0d\x47\x68\xb0\x69\xaf\x0b\x17\xc7\x52\xe4\x79\x94\xfe\xa6\x12\x85\xdd\x17\x6e\x77\x51\xe8\x05\x14\x6c\x1c\xad\xaa\xcb\x45\xbe\x92\x2e\xbb\x89\x07\x95\x7b\x13\x01\x89\xf0\x0d\x9a\x16\x89\x8d\x30\xfa\xc8\x36\xca\x16\x82\xb8\xb0\x91\xb1\x1e\x8c\xdc\xb6\x32\xce\x45\x41\xa3\x14\x56\xae\x38\x86\xca\x69\x1d\x2a\xc6\xaf\xb2\x9c\x4d\x9c\x3e\x8e\xb9\x11\x34\x1f\xe6\x42\x30\x35\x99\x9d\x84\x73\xbf\x47\x08\xf9\x42\x03\xaf\x18\x71\xfc\xbb\x75\xe3\xc3\xed\x01\xcc\xb8\xa1\x03\xfa\x5f\x28\x7c\xab\xf0\x4c\xe1\x2b\xa5\x17\xf9\x0b\xbd\x54\xe1\x6b\xbb\xd4\x38\x17\xb0\xc7\xf6\xf7\xb2\x3c\xcc\x9d\x95\xc1\x8f\x50\xe6\x9d\x22\xd1\x42\xac\x0a\x3a\x11\xd7\xbc\x05\xa1\xd5\xb2\xa5\xc4\x6a\x3c\x37\x7d\x36\x61\x38\xa1\xea\x80\x39\xf2\x66\xab\x9b\x71\xce\xc6\x97\xad\xc9\x45\x6e\x02\xd6\x3e\xca\x96\xb1\x5f\x50\xa7\x0d\xaf\x96\xad\x89\xcc\x66\xba\x22\xfd\x6b\xea\x99\x48\xb1\x6c\x8d\xc5\xc2\x59\x10\xe9\xd4\xe0\xd3\x64\xba\xa4\xb7\x50\xd1\x25\xbd\x05\xdb\x63\x1d\x58\x2d\x5b\xa0\x7d\x04\x46\x49\xaf\x21\x04\xa3\xd2\xb2\x00\x8c\xc5\xf2\xb6\x35\x5e\xe9\xc3\x79\xa1\x68\xcb\xc0\x68\x4f\xd4\x56\x1f\x76\x41\xf9\xaa\x05\x63\xd1\xb2\xc3\x13\x1e\xb1\x8f\xf4\xfe\x00\x16\xad\x9a\x4a\x2c\xe8\x8a\x9a\x50\x4e\xb3\x2b\x6a\x90\x25\xae\xa8\xb4\x21\xdd\x9a\xe9\x2b\x44\xba\xf0\x4a\xb5\x66\x42\x79\xfc\x80\xe1\x66\x2b\x17\x45\x2d\x2a\x6c\xbd\xdc\x74\xde\xab\x5d\x27\x07\x6b\x50\x59\xa5\x93\x77\x3c\xa5\xb8\xb2\x42\xab\xdd\x15\xfa\xf0\x60\xc3\x2b\x8b\xb4\xc0\x7e\x49\x4b\x65\x30\x25\xcf\x2d\x63\x5a\x9b\x82\xbb\xb3\xcb\x52\x59\x48\xec\x1e\x3b\x36\xa3\xc7\x51\x94\xde\xec\xe6\xf6\x78\xb3\xb9\x1d\xf6\xa2\xf4\x78\x37\x73\x80\x51\x9b\xbd\xc4\x6b\x94\x5e\xea\x93\x76\x4e\x15\x4d\xf4\x36\x08\xf1\xaf\x27\x95\x79\xb8\x83\x7a\x5b\x4b\xc3\x00\xa4\x67\x8d\xb5\x85\x97\x7f\xaa\xea\x1f\x60\x47\xdf\xb7\xb2\xec\xb6\x09\x61\x83\x84\x92\xf7\x2a\x29\xcb\xe0\xe0\xaa\xc6\x1d\x88\x15\x79\xcf\x35\x43\x1b\xc7\xb7\x9a\x0f\x77\x8c\x7b\x7d\x2c\x37\x44\xe2\x90\x35\x78\x11\x6c\xa4\x47\x3c\x71\x7b\x29\x0a\x4c\x3d\xbc\xb0\xf8\x57\x9a\x54\x12\x40\x74\x09\x32\x11\xbf\x85\x55\xce\xe8\x8a\x50\x95\xf0\xf2\x94\x46\x3b\x9e\xe8\x88\x75\x0d\xc4\x3a\x2b\x3d\x41\x2f\x72\x7a\x2e\x57\xfc\x4f\xa6\xe6\xef\x25\x13\x92\xa9\x5b\x7d\xe8\xb0\xc1\x8a\x53\xcd\x99\xae\x72\x8b\x4a\xbf\xc7\x87\x46\xd8\x12\x1e\x15\xad\xd8\xa4\x22\x1f\x0f\x1b\x37\x62\x74\xd8\xaa\xef\xda\xa5\x8d\x0e\xeb\x36\x2c\x55\x3d\x83\xbd\xad\x73\xde\x65\xce\x3a\x0b\xfa\x59\x6f\xb8\xe1\x1c\xc3\xbb\xe3\x82\x83\xf6\x71\x6d\x7b\x6e\x18\x0a\x18\xeb\xf0\x84\x67\xae\x10\x6f\x35\x72\x70\x15\xcf\xe1\xe3\x6c\xe5\x7d\xa1\xdf\x3b\xdf\x9a\x0d\x88\x7b\xaa\x0d\x7d\x1f\x2b\xf7\xf2\x8d\xde\x20\xfa\xdd\xe7\x17\xde\xd3\x8a\xf3\xce\x72\xa1\x86\xdd\x51\xbf\x19\x0d\xeb\x52\xfe\xf5\x9e\x87\x03\xa0\xa9\x74\x01\x52\xc3\x92\x19\xfb\x9f\xa3\xc9\xe1\x68\x50\xe9\x7f\x7a\xa1\x3a\x60\x80\x9d\xf8\xbb\xf9\x6b\x15\xc7\x6f\x55\x72\x0d\x16\x3e\xd7\xce\x6f\xa4\x4d\xbc\x31\x89\x37\x90\x78\x53\x4b\x3c\x36\x89\xc7\x90\x78\xec\x12\x2f\x95\x3f\xc9\x7e\x50\x08\x9f\x55\x3e\x03\x57\x33\xca\xf9\x63\x2e\xc1\x73\xd7\xad\x55\x2a\xc3\x57\xfa\x60\xa2\x91\xde\xc5\xc1\x0c\x29\xc6\x73\x3a\x59\xe5\xa5\xdb\xc2\x20\xed\xad\x90\x8b\x2c\x77\x93\x07\xbf\x56\x28\x94\xfc\x9d\x02\xb1\x96\x82\xc3\xa4\xbc\xd7\x3c\x01\xce\x03\x44\x32\xc1\xf8\xa2\xf5\x89\x4a\x60\x6c\x31\x2d\xd9\x3a\xe3\x9e\xae\x24\x02\xee\x18\x3a\xa9\xe9\x80\x8f\xfa\xb2\xd2\x35\x50\x79\xac\x75\x4d\xaf\x84\x9a\x71\x2d\x47\xe2\x44\x8f\x04\xa6\x95\x01\x38\xd1\x03\x10\xc4\x1d\x9b\xb8\x63\x88\x0b\xd0\x5d\xc5\xb6\xd2\x5c\xb2\x66\x88\x3f\x56\x20\x4c\x24\xf9\x08\xef\x66\x7d\x1f\x38\x23\xd9\xe9\x96\x15\x78\x57\x3e\x09\xd7\x95\x74\xc3\x4a\xfa\xe8\x05\x4c\x37\x67\x85\x55\xa6\xc4\xf1\xc7\x92\xe8\xc0\x69\x10\x3c\x00\xf2\xa6\xe4\x9b\xbe\x95\xc1\x4f\x8a\x0c\xcd\x65\x43\x84\xdd\xef\x3f\x14\x97\x77\x15\xc7\x7c\x12\xe1\xdf\xc3\x98\xf2\xea\x0b\xff\x16\xc6\x9b\xeb\x2d\x1c\xd9\xcb\x0a\x13\x7a\xef\x43\xc1\x05\x46\x99\xf4\xd1\x47\x54\xef\x34\x82\x88\x23\x17\x61\xaf\x39\xaa\x21\x77\xe5\xb1\x13\x9e\x54\x7f\xa5\x04\xb7\x2a\xee\x77\x77\x4f\x85\xb8\xf7\x26\xee\xc8\xc7\x81\x5f\x8a\xca\x8f\xb9\x4a\xf1\x1f\xaf\xc2\x0f\x77\xb3\xe2\x23\x4e\xab\x11\x85\xc5\x90\x0e\x9f\xf9\xf0\xce\x2e\x6e\x22\x77\x60\xb1\x37\x33\xd5\x90\xbd\xa5\xa9\x06\xed\x05\x4d\x35\x64\x2e\x6b\xaa\x21\x73\x71\x53\x09\x95\x97\x38\xf6\xc3\xbe\xa3\x82\xff\x43\x71\x70\x53\x05\x64\x11\xb9\x9b\x9d\x32\x14\x48\x1b\xfe\x54\xb5\x57\xe7\xea\x4a\x5b\xe4\xa0\xf4\x87\xc6\x47\x58\xe8\x9f\xbd\xde\x08\x33\x23\x33\x49\xc4\xb0\x5b\xf3\x81\xb1\x27\xac\x45\x69\x0f\xa1\x3e\x23\xeb\x3b\xfc\xd4\xa5\xeb\x8b\xd5\xc5\x45\x4e\x27\x29\xc3\x16\xa9\x93\x94\xed\x45\x0e\x97\x5b\x1c\xfa\x79\x4b\x87\x72\x64\xb8\x4e\xb7\x80\xa5\x6a\x8b\xbf\x99\x07\x31\x25\x56\x08\xbf\x71\x61\x86\xf0\x2b\x05\x8f\x9e\x6d\xb7\x7f\xda\xe3\x97\xe1\xae\x1d\xd3\x6e\x7f\x0c\xb3\x6e\xff\x03\x53\x6f\xfe\x07\x7c\xbb\x0d\x9f\x9a\xb0\xe6\xf5\x1d\xc3\xaf\xff\xfc\xf1\x24\x5b\xdd\x1c\x55\xcf\x29\x13\xb1\xba\xc8\xa9\x8d\x0c\xce\x23\xc7\xb5\x73\x49\x36\x3b\x2b\x4f\x28\xf0\xcf\x9c\x06\xcc\x7f\x73\xf6\x70\xff\xe1\xa4\xe7\x7f\x83\xe3\xca\xab\xfa\xb1\xe5\x7d\x70\x7e\xb9\xa4\xb7\x9f\x96\xad\xda\xd9\xeb\x55\x78\x0a\x83\xdf\x4f\x4b\x7b\x86\x71\xff\xe1\xb2\xb1\x7a\xe5\xd8\x7c\xfa\x3a\xba\xf3\x2c\xf6\xaa\x7a\x2e\xb3\xa1\x4f\xcb\xf0\xba\x52\x7a\xb7\xcb\xf6\x90\x64\x8f\x4a\xe5\x2d\x26\x5c\x5e\x5e\x80\x47\x09\xf3\xb3\x73\x6a\x3c\x6a\x3a\x41\x1e\x57\x8f\x92\x10\x34\xb8\xae\xdc\x7b\x9a\x0f\xbb\x7e\x85\x27\xb3\x2e\xc2\x9a\x7a\xf4\x10\xb5\xfc\xbf\xf2\x6c\x76\xec\x43\xf4\x86\x99\x91\x3c\x76\x01\x73\x6e\xd3\xa1\x37\x3e\x04\x67\x35\x1d\x78\xe7\x4f\x72\x0b\xe1\x4e\x77\xa7\x3e\xa4\x8f\x71\x10\x78\xe7\x02\xe5\xc9\xef\x5d\x70\xdc\x83\xb2\x36\x7c\x1a\x84\x83\xd3\xe1\xbb\xe6\x83\x22\xd4\x62\x64\x1c\xee\x47\x89\xd9\x2c\xa7\xe5\xcf\x6a\x3c\x87\xfa\x21\x04\xb5\x5f\xcf\x29\xcd\xcd\xff\x0a\x92\x7a\x80\xa4\x4f\x0a\x1f\x94\x2c\xc0\x03\x45\x22\x7f\x17\x9d\xd3\x71\x70\x09\x1e\x9c\xa2\xeb\xa7\xef\xbb\x4f\xe7\x76\xa1\x0b\x9b\xfd\x43\x91\x6e\xff\x0f\xf5\xfc\x81\xdf\xc5\xff\x50\x7b\x7b\xc8\x2e\x07\x0f\xd4\xf0\x0f\x35\xc2\x5d\xa3\x09\xf0\x52\x91\x80\x09\xfa\x54\x50\xf9\x52\x6f\xc2\x8c\xcf\x3c\x2b\xf4\x4b\x25\x4b\xed\x94\x81\xff\x81\x47\xa3\xfc\x8a\x69\xa5\x25\x6b\x27\x8f\x09\xd5\xf1\x7f\x53\x55\x27\xac\xdf\xcc\x53\xbf\x0a\x39\x6b\x46\x7f\xf7\x2d\x07\x07\xa9\xb4\xd6\x6b\xdd\x54\x92\xff\xa8\xc0\x77\xb7\xc2\x3d\x4c\xc3\xe3\x65\xab\x97\x4a\xf2\xe5\xce\x2c\x5e\x7d\x8d\xfc\xb5\x9b\x67\xcb\x07\xb4\x93\x4d\x26\xc0\x02\xbb\xab\x86\x44\x61\x89\xdb\x5d\x94\xde\x95\x14\xf6\xea\x3f\x81\x6c\xf8\xcd\x66\x73\x9a\x38\x27\xfa\x7f\x29\xcc\xc8\x9b\xfe\x1b\xe7\x91\xf0\x24\x11\xd8\xe5\xf4\xee\x08\x93\x37\x84\xa1\xcd\x06\x1c\x12\xfa\x2a\xbf\x04\x55\xfe\xa2\x92\x97\x0a\x57\x20\xf7\x4e\x06\xca\x12\x7f\x55\x05\xd4\xff\x28\x54\x65\x47\xe3\x78\xbf\xf7\xfc\x9d\x0a\x04\x5b\x08\x8e\xc4\x95\xfa\xf0\x85\x17\x7d\x1b\x69\xad\xe9\xc7\xe7\xb2\xee\xca\x8d\x33\xc8\x2a\x64\x69\xd1\xd0\xdc\x82\xb8\xb3\x7a\x5d\xa6\xbd\xeb\x5b\xb7\xb4\xba\xab\x0a\x3f\x2c\xbb\x7d\xad\xc8\x57\xc3\xf0\xfa\x02\xd8\xf9\x7d\x08\x24\x20\x36\xf7\x0d\xe4\xbe\x69\xcc\x1d\x48\x40\x6c\xee\x63\xc8\x7d\xdc\x98\xbb\x22\x02\x71\xd7\xec\x5e\x3e\xe1\x4e\x92\x97\xee\x51\xec\xaf\x2a\xb9\x74\x2f\x6b\x1b\x93\xde\xa0\xd2\xb2\xd6\x06\xc1\x88\xf3\xe2\x10\x56\xaf\x99\x74\x5f\xef\xd9\xbd\xf5\x06\x0e\x1f\x4a\xd4\xa3\xb5\x1d\x2c\x4c\x09\xdc\x65\xb8\xd7\x3d\x8c\x8b\xe7\x3f\x93\x25\x1c\x61\x1c\x51\xc2\x25\x4b\xc5\x2f\xed\x67\xd5\xe4\xb9\x23\x01\x99\x3a\x27\xb9\x4a\x24\x42\xc8\xdd\x86\xfc\x0a\xe2\xf5\x90\x54\xcc\xe9\xa0\x24\x2a\xdd\x39\x95\xcd\xfa\x4e\xfc\xc1\x6a\xb5\xc2\x03\xe0\xe5\xe5\xb4\x35\x28\xad\x48\x2c\x4c\x11\x71\xb7\xd0\xe2\xd0\x38\x3f\xc9\x66\x03\x71\xaf\x8c\xa2\x52\xb9\xb0\x9a\xc4\xfe\xac\x55\xe2\xeb\x7e\x64\x85\xd7\xcc\xba\x87\xbf\xaa\x40\x71\xcf\x1f\x37\xcc\x5b\x08\xed\x2e\xbe\x00\xc7\x56\xaf\x17\xd9\x4c\x6f\x65\x05\xad\x47\x9e\x69\x16\xb1\x16\xf7\x27\x9b\xa8\xb9\x89\xbb\x39\xc9\xe9\x4d\x10\xfc\x8f\x14\xab\xa5\xfd\x7e\x27\x27\x1a\x32\x1f\x35\xd6\x5b\x78\xd9\xb2\xf9\x2c\x74\x70\x6a\x2b\x99\x9a\x1a\xae\x5d\xf8\x3d\x6c\x2d\x57\xd4\x7d\x9f\xcd\x25\xe3\x97\xee\xeb\x2d\x9d\x65\x61\xea\x3b\x0d\x20\x58\x40\x4a\x36\x79\x21\x69\xe6\xc2\x1f\x4c\x8d\x36\x78\xcc\x27\xc1\xd7\xd9\x32\xe3\xe1\x27\x68\x1d\xda\xef\x23\x80\xb0\xfa\x15\x94\x36\x11\x61\x05\x36\xc6\xd5\x31\x15\x5c\xfd\x09\x6e\xa3\xf4\x57\xce\x38\x3d\xca\xb3\xc5\xd2\x7d\xfc\xe2\x93\xac\xef\x2d\x08\xba\x4e\x08\xb9\x9c\x67\x06\x3d\x2a\xbb\x38\x63\xdf\xa0\x9f\xd7\x6c\x22\xae\x21\xf2\x1b\x38\x39\x82\x90\x10\x0b\x68\x8e\xe5\xf9\xbb\xb2\x26\xf0\xf8\x16\x7c\x17\x4a\x2c\x2b\x9f\x52\x5c\xd2\x57\xce\x93\x58\x35\xca\xf8\x12\x2b\xe3\x4e\xbd\xbb\xb0\x32\x6e\xa7\x2e\x47\x16\x5b\x4c\x39\xf1\x0a\xa6\x38\x5a\xe8\x63\xd4\xa9\xf8\x16\xe1\xe8\x5d\x78\xa6\x51\xf5\x97\x04\xac\x06\xc4\x66\xe3\x0d\x9b\x2b\xae\x7b\x22\xab\x56\x1d\xa5\x7c\xb3\x71\xd6\x44\xed\x30\x47\xd7\x58\x17\xff\xba\x63\xbd\x42\x51\x1c\xff\xaa\x86\x74\x34\x48\xa2\x68\x4f\xa1\x8e\x92\x6c\x91\xa0\x54\xed\x45\xcb\x9b\x28\xd0\xab\x6a\x7a\xdc\x9b\x82\xa3\xe4\xdb\x5c\xa7\x34\x99\x87\x71\x6f\xf6\x65\xbc\x07\xb9\x8d\x27\xda\xdf\x8f\x10\x16\x44\xf1\x84\x63\xa5\x4f\x65\x12\xf5\xa3\x69\x2e\x32\x50\x10\x37\xb3\x3b\x1a\x17\xc5\x09\x44\x21\xe7\xbd\xa5\xac\x18\x0b\x94\xc2\x63\xe1\x62\xbb\x0d\xdf\x3f\xfb\x55\xdd\xe1\xdc\x2b\x30\x3a\x2a\xe3\xc1\x2c\x48\xed\xd1\xce\x78\x9e\xc9\x17\x2a\xe9\xa2\xda\x41\x90\x76\x8a\xd5\x85\xb1\x11\x4f\x7a\x08\xff\xaa\x86\x6a\x44\x7e\x75\x6f\x93\xb9\xb7\xd6\x39\x11\xc9\x5a\x9f\xb6\x98\xa2\x0b\x18\xe6\x75\x66\x27\xd9\x45\x56\x98\x35\x42\xda\x89\xad\x7f\xe8\xe2\x82\xc2\x5c\x99\x43\x2c\x5b\xcc\xe0\x47\xb3\x95\x3a\x70\x49\x6f\x67\x94\xdb\xb9\x00\x73\x5a\x9f\xf8\xf5\xef\x32\x93\x19\x10\xb4\x7f\xac\x13\x2b\x99\x8d\x21\xcf\x35\x34\xb1\x0d\xae\x44\x02\xb5\x74\xf3\x5f\xf2\x21\x1d\x79\x71\x7a\x69\xd7\x62\x36\xa9\xfb\x2c\x74\xea\xfa\x4b\x87\x4f\x30\x35\xef\xca\xfd\x80\x79\x4f\x68\x02\xe4\x2d\xb9\xaa\x15\x3e\xee\x9a\xaa\x1a\x5e\xf5\xbb\xab\xda\xcd\xa6\x9d\x44\xe7\xe7\x60\x31\xc0\xf8\xdd\xf9\xea\xb0\x3f\xee\x59\x0d\x36\x0b\x11\xd0\x6f\x1c\x37\xb5\x0c\x49\xf5\xe2\x07\xd0\xef\x60\xdf\xcd\x4a\x34\xef\x1b\x67\x11\x25\x99\x47\x6e\x83\xdc\x75\x14\xa2\x3a\xac\xa8\xb9\x08\x89\x32\xce\x85\xf5\xfa\x78\xb3\xf0\x97\xa8\xa1\x13\x4c\x1b\x67\xbd\x54\x8e\x77\xbe\xf7\x0b\x39\xde\x89\x5b\x49\xb6\x13\x37\x15\x72\x91\xa9\x9d\x68\x9e\x2d\x5c\x9d\x0b\x56\x14\x8c\xcf\xf6\xc1\x23\xa5\xf7\xd3\xd5\xab\xbb\xd4\xea\x9a\x7b\xd6\x15\x27\xaf\x83\xe7\xe4\x73\x1e\x6a\xe0\x7f\xa6\x09\x25\xcf\x2a\x6a\x2e\x9b\x4d\xaf\x57\xd3\x7b\x49\x6b\x96\x8f\xa8\xaf\xc8\xc7\xa1\x1a\xf5\x9b\xf5\x97\x40\x49\x69\xae\x12\xd0\x51\xa2\x95\xf7\x0c\xc7\xbc\xf2\xee\x71\xe1\x1e\x0e\x6b\x72\x7d\x96\x50\xb0\xa8\x6c\xb4\x2a\x71\x3a\x33\x03\x17\xb0\xe6\x66\x35\xa5\xbc\xc0\x97\x39\xad\x9a\x6b\x6e\x36\xb4\x73\x21\x26\xb7\xf6\x51\x8e\xc0\x86\xd2\x44\x97\x30\x4e\xb9\x7b\x60\xa5\x0f\xa6\x53\x15\x93\x8b\xaa\xdd\x84\xd7\x8c\x2f\x75\x5f\x42\x6c\x63\x49\xa0\xb2\xbe\xf3\x1d\x2f\x8d\xee\x9e\x51\x01\xf1\x76\x15\xc6\xb8\x8d\xee\xc9\xd0\x88\xc2\xa2\x16\xd3\xe7\x70\xdd\xf4\xb3\xd7\xd4\x5d\xeb\x72\xa9\xc4\x76\xfb\x53\xfb\x74\xdb\xa7\x84\x6f\x69\x6a\xf5\x45\x4c\x1b\x12\xde\xc4\x3c\x33\x8a\x7d\x68\x2d\x49\x25\xc2\xb9\x2d\xd9\xea\xf8\x52\xc9\x69\x2b\xed\xd3\x12\x5b\x80\x5c\x86\x93\x6b\xc9\x93\x72\xcf\xa1\xc4\x68\x5a\x61\x45\x0a\x9e\xa0\xbe\x6a\x31\xab\x5e\x26\xa6\x2d\xda\xd1\xb3\xfd\xf5\x89\xcc\x16\x0e\xfb\x7d\xb4\xd6\x43\x63\xbd\xa6\x34\xcc\x40\xeb\x97\xfa\x4f\xf3\xda\x40\x2e\xc6\x46\xd9\x7f\x2e\xe9\xd4\x8e\x98\x44\x6b\x4e\xda\xbd\xad\xd1\xb5\x31\x87\x55\x68\x3d\xa1\xa4\x56\x1e\xf9\xe7\x0a\x3c\xab\x19\x28\x81\xcf\x43\x25\x64\x3d\xc0\xce\x3f\x48\x18\xae\xda\xa2\x78\x05\xae\x38\x4e\x4a\x17\x22\xf0\x05\x6e\xaa\x8c\x9e\xb6\x31\xdc\x2f\x68\x26\xc7\xf3\x4a\x94\xa2\x79\xe5\x7b\x25\xab\xdf\xcb\xac\x28\xae\x85\x9c\x94\x91\x08\x4a\xdd\x28\xbd\x79\x39\x77\x24\xe0\xbb\x01\x72\xd4\x9c\x78\x1b\xa1\xff\xc2\x5e\xe6\xdc\xf2\xfa\x63\x2e\xbc\xf1\x96\xfc\x62\xa5\x94\xf7\x0c\x68\xfa\x64\x15\x3f\x40\xd0\x62\x3f\x3c\x10\x6e\x91\x69\xab\x8e\xf7\x9c\x5d\x9e\x9e\x4a\x4f\x30\x95\xd7\x9a\x2a\x7d\x00\xdf\x52\x4b\xa7\xbc\xa6\xbf\xb8\x30\x2e\x4e\xdc\x77\x13\x5d\xf8\x8d\x31\x34\xcd\x6e\x48\xdd\x71\x9d\x74\xe7\x36\x14\x18\xb0\x7f\x27\xc7\x9d\x19\x3a\x66\xb7\x03\xbc\x5f\xf0\x46\xad\xbc\x82\xaa\x8f\x6c\x41\xc5\x4a\x0d\xca\xa0\xb3\x91\xbd\x6e\x2e\x33\xce\x69\x26\x5d\xa9\xf0\xc3\x96\x2b\xc7\xf4\xa6\x5c\xa3\xac\xa5\x36\xbc\x92\x5a\x99\xf2\x4e\x5d\xcd\xad\x33\xee\x11\x3e\xf7\x10\x80\x99\x43\xdb\xdd\x35\xec\xd8\xb0\x69\x84\x76\x96\x92\x5e\x31\xb1\x2a\xdc\xaa\x51\xea\x3c\x77\xfb\xd4\xac\x33\x4f\x2b\x5b\x47\x69\x5d\x36\xc9\x54\x06\x7c\xc4\x03\xe0\x23\x37\x9b\xe8\x41\xdb\x87\x06\x11\x71\x56\xbd\xc0\x0e\x97\x66\x4b\x6a\x7f\x1f\xce\x96\xd1\xc3\x07\x96\xff\x54\x7b\x7b\xdb\x06\x58\x76\xce\x90\x97\x9c\x9c\x66\x6a\xde\x91\x19\x9f\x88\x45\x68\x7f\x77\xf8\xd8\xf9\xa5\x3c\x40\xf8\x8c\x93\xe8\xfc\x1c\xfc\xa8\xbd\xe6\xc6\x0b\xbd\xd3\x8c\x7d\x10\xed\x5d\x72\xfc\xb1\xcc\x00\xb2\x2c\xf3\xbe\x99\x2c\x4c\xea\xbb\x32\xf5\xc8\x1d\x8e\x4d\xc1\xe0\xad\xf6\x8a\x67\xfe\x33\x0e\x17\xd6\xa5\xa1\x45\x70\xbf\x19\x2a\x98\xf6\xb9\x41\xa8\x22\x7c\xf8\x8e\x8f\x36\x1b\xae\x8b\x7a\xcb\x67\xaf\xe5\xee\xb5\x31\x0c\xf5\x3b\x8e\x51\xa3\xca\x85\xac\x9a\xb9\xd9\x75\x60\x34\xdd\x6d\xb5\x1d\x34\x6e\xe0\x2a\x45\x06\x36\x5b\xb9\x5a\x72\x92\x50\xc2\x51\x65\x6f\x68\xd2\x0d\x7f\x1f\x7a\xc0\xd4\x1b\xb8\xae\x77\xb3\xa1\xba\x0b\x68\xb3\xf9\xa9\x6d\x2d\x58\x8c\xb2\xa1\x0d\xf6\x0e\xcb\xb0\x0f\x7a\x43\x0e\xaf\xdd\xe3\x78\x85\x9f\x9c\x19\x8c\xd1\xab\xa7\xa1\x5e\x7d\xe5\x79\x98\xaa\x52\xfa\x61\x28\xf2\xfb\x5a\x79\xd1\x74\xf8\x11\x10\x5c\xe9\xc9\x0b\xc8\x31\x11\xeb\x5d\x97\x57\x71\xec\xfb\x51\x3e\x6c\x5a\x2f\xff\xb6\xc2\x67\x85\x70\x99\x1d\x2b\x64\x53\x0c\x0b\x35\xb7\x82\x9f\xb6\xac\x24\x72\x22\x35\xab\xe5\x9d\x93\x39\xc9\x9e\xe0\x70\x05\xe4\x7c\x67\x99\xaf\xa3\x8a\x86\x90\xe0\xaf\xca\xbb\xa2\xa6\xb8\x7a\xf6\x53\x77\x81\xb3\x1b\xd3\x98\xf5\x54\x5c\x35\xc4\x34\x66\xfd\xb4\xac\x7f\x37\x66\x3b\x36\x12\xc8\x44\x92\xb6\xf4\x0e\x0e\xd0\x66\xa3\x23\x12\xb7\x49\x11\xe7\x6b\xd6\x6e\x8d\xa5\x17\x2f\xd8\x70\x73\xbb\xf2\xd3\xda\xae\x69\x34\xd2\xdb\x72\xc7\x49\x1b\xb5\x8c\xc4\x8e\x07\xc2\x8a\x5b\xac\xc0\x5b\x56\xfd\x81\xa2\xc3\x1e\x56\xd8\x27\x96\xaa\x31\x81\xca\x8b\x17\x1c\x24\x8a\x00\x6d\xf0\x8e\x53\xc5\x37\x9e\x43\xef\x7a\x74\x6b\xa8\x46\xa0\x8b\xca\x9b\xb4\xfa\xa5\x6a\x8c\xc7\x0a\x61\xde\xa4\xeb\x5f\xcd\xef\xe3\x71\xc5\x0b\xd5\x6b\x37\xd3\x8c\xab\x80\x1f\x82\x32\x7c\x82\x90\x76\xce\x2b\x3a\xd1\xc3\x51\x5f\xf5\x11\xf7\x66\x1c\x8a\xbc\x00\x05\x22\xf3\x7e\xbb\xf7\xf5\xd1\x7d\xae\xf6\xf7\xfb\xe8\x03\x4f\xf8\x50\x8d\xb0\x7b\x21\x62\x12\x39\x25\x10\xbd\xcd\xa8\xd2\x37\x88\xda\xdb\x2b\x33\xdb\x0b\xdf\x08\x57\x0c\x14\x4e\x3c\xd6\x69\x1c\x73\xd0\x33\xaa\xf6\xa6\xfe\xf8\x18\x58\xc7\x35\x0f\x4f\x3d\xeb\xff\x9f\x07\xe5\xd4\xec\xc2\x0d\x23\xb2\xdb\x07\xdd\xed\xea\x18\x18\xfb\x8b\xc0\xbd\x00\xd4\x06\xb6\x18\xaf\xb9\x7d\xda\xdb\x32\x8c\xdf\xec\xef\xa7\x3a\xe3\xf8\x27\x37\x6f\x63\x7d\xf2\x8b\xd7\x27\x0e\x4b\x17\xa0\x98\x7c\xd3\xe7\x1b\x37\x38\x58\x10\xeb\x81\x88\xf1\xd6\x1b\x3e\x78\xc3\xad\x73\xac\x37\x3c\x3c\xd5\x60\x46\x84\x1b\xce\xf2\x41\x2d\x19\xc7\x7c\x48\x47\x84\x10\x31\xa4\x23\x78\x56\x0b\xda\xc9\x88\xdc\xa7\x96\x12\x7a\x7d\xf5\x9c\x64\x3a\xa3\xdc\x57\x26\x2b\xdb\x57\x23\x20\x8a\xbe\x07\x8f\x38\x7d\x01\x8a\x7b\xcf\xd5\xa0\xb7\xef\xcf\x89\x25\x2a\x1e\x94\x4e\x04\x42\x1d\xb5\x3f\x82\xe8\x80\xa1\x7d\x19\x78\xe1\xf6\x3e\x6b\xe0\xed\xe4\x39\x2b\x6a\x23\xe3\xde\x3e\x0a\x46\xc2\x3d\x81\x54\xb1\xb6\xc0\x94\x40\x64\x68\x6f\x03\xcc\x88\x3e\xf8\xa3\x1d\x27\x7e\x42\x13\x9e\xf3\xf8\x32\xd0\x25\x87\x62\x44\x54\xc2\x51\x1a\x99\x96\x22\xf0\x49\x6d\xde\x5d\x32\xef\x1d\xca\xd4\xe5\xe3\xba\x94\x3f\xc0\xe8\x2c\xac\x78\xe5\x5e\x83\x06\x2d\x08\x3a\x21\xce\x9d\x57\xf9\x4e\xb4\x4d\x19\xec\x46\xa5\xe0\x5e\xdb\x99\x1d\x1a\x0f\x25\x83\x07\x3c\xfd\xc3\xbe\x06\xd5\x64\xc8\x44\x6c\x62\x89\xd7\x5f\xaa\xde\xcd\xa1\xa4\xd1\xc9\x10\x22\xaf\x19\x8c\xd4\x12\x2b\xc6\x23\x06\x91\x59\x9e\x87\x77\x67\xc2\x33\x2b\xf4\x1a\x72\x24\xe5\x55\xa2\x03\xe0\x1f\x5e\x9a\xa7\x86\xa7\x57\xf0\x3e\x58\x5f\xef\x9f\x3c\x43\xa8\x4f\x3b\x13\xea\xc6\x2b\x41\xb8\xd7\xfd\xb9\x11\xea\x38\xae\xc3\x5b\x37\x90\xf9\xdd\x4c\xed\x32\x0b\x19\x8e\x30\x98\x36\xeb\x0f\x3a\x21\xbf\x70\x4c\x9d\x05\x16\xf9\x87\x6f\x45\xf2\x92\x07\x7e\x1f\xd7\x4b\x33\x16\x76\x18\x43\x17\x84\x86\x2a\xeb\xc3\x6b\xfd\x05\x5a\xb2\x0b\x68\xb1\x6f\xdc\xc7\x54\xeb\x1b\xd4\x23\x12\x94\xba\xa7\x3f\x43\xb7\xc0\x21\x05\x40\x35\xc1\x37\x69\xf7\x10\xbe\x8b\xda\x1e\x70\x64\x9c\x28\x06\x84\x12\x76\xe2\x5e\x58\x6b\xe5\x06\x3b\x31\x77\x41\x6b\xb4\x3c\x5e\xc2\xbe\x61\x9c\x57\x05\x11\xa4\xdd\x45\xf7\x90\x2f\x40\xbc\x34\xe6\x72\x3b\xe8\x0e\x0d\xe9\xc8\x03\xbe\xc5\x61\x84\x9e\x16\x25\xd9\xec\xf4\x12\xab\x7b\x96\x02\xb3\x44\x9a\x87\xda\x61\x3a\x5b\x47\xee\xfd\x9d\x25\x65\x77\xd9\x69\x58\x9d\xcc\x25\xe6\x9d\x7d\xbc\x6b\xb4\xdc\xbc\x6e\xd8\xc8\xaa\xf1\x55\xdb\xc3\xed\x16\xe1\x97\xbc\xec\x0c\x59\xc3\xd3\x0a\x06\x08\x00\xd4\x84\x2b\xef\xb4\x36\x38\xe3\x84\xba\xac\xba\x96\x66\x45\x4c\x29\xb3\xfd\x17\xb6\x0a\x18\x48\xe3\xe5\x13\xaa\x67\x0b\x7a\xa6\xb2\xc5\x32\xdd\xf5\x59\xd3\xa2\x1d\x9f\xbc\xd9\xbc\xca\x94\x3e\xbc\x5e\x27\x68\x8b\x77\xd6\x39\xa8\x8b\x15\x1f\xe5\xaa\x70\x9f\x5b\xdd\x25\x7a\xa3\x28\x9f\x54\x4c\xda\x03\x5d\xd7\x50\xdc\x19\xfa\x14\x6d\x7e\xf7\xd6\x5a\x86\xe9\xd8\x7e\xf0\xee\x1f\x09\xdc\xbc\x5a\xf3\x28\x58\xca\x4a\x6f\x5c\x0c\x07\x2b\x02\x0a\x3f\x48\x25\x29\xa4\x2c\xc2\x71\x38\x20\xe0\xd2\x2b\x20\x37\xd0\x80\x75\xbd\x93\x36\x80\x7f\xe7\xa0\x75\xba\xd5\x81\x97\xd6\x23\xc6\x6f\x9c\x78\x3c\x24\x6b\x7d\xd4\x77\x5e\xf5\xff\x73\x67\xca\x17\x4e\x86\xcf\x70\xef\x10\x1f\x3c\xc1\x87\x07\x23\xfc\x17\x27\x47\x71\x1c\x1d\x95\xca\x39\x35\x07\x1d\xf8\xb3\x65\x48\x74\x36\x27\xd0\x03\x0f\xdb\x81\x69\x65\x1c\x27\x9f\x79\x69\x51\x19\x66\x33\xa0\xfe\x6a\x9a\xf9\x48\x6f\x54\xad\xfe\x38\x6e\x7f\xe6\x98\x4a\x9d\x9e\xb4\xff\xe2\x9b\xcd\x67\x1e\xc7\x4f\x9f\xeb\xff\xbd\xde\xcf\xe4\x33\x47\x58\x49\x62\x84\x08\x9d\xa9\x14\x8b\xa3\x79\x26\x8f\xc4\x84\x26\x87\x07\x08\x73\x49\xd6\x17\x74\x2a\x24\x05\x2d\xa4\xf4\xfb\xba\x89\x91\xe0\x2f\xcb\x02\x51\xa9\xa9\x58\x4d\xb8\x4b\x69\x31\xaa\xaa\x35\x45\x38\x72\x6a\x7a\x11\x8e\xbc\x36\x54\x84\x23\xd0\xba\x8b\x46\x5b\x1c\x14\x38\xe6\x93\x1f\x83\xf0\xa8\x52\xa6\x0a\x64\x35\xed\x0e\x38\x8d\x8e\x64\x4d\x05\xeb\x0e\x7b\x28\xaf\x49\x18\x6a\x64\x55\xe0\x36\xf7\xd4\xff\x16\x72\xab\x6b\x7b\x07\xec\x90\xfa\xa3\xd0\xdf\x6b\xcf\xf5\x7d\xf8\x8d\x32\xed\xbf\xee\x80\xd3\xc1\xbd\xa3\x07\x26\xf9\x47\xbb\x60\x5d\xb4\xfc\xab\x3e\x6c\xb1\x94\x95\x17\x67\x85\x6c\x94\x22\x43\x1d\x4e\x38\xbc\xdf\x6b\x13\xf2\xa5\xbc\x5c\x86\x9b\xe0\x23\x98\x8a\x2e\x33\x34\xe4\xb4\x76\x0e\x0e\x9e\x81\x20\xcb\xe6\xf2\x99\x0c\x51\x07\x96\x56\x93\x52\x42\x61\x0c\xba\xbc\x1b\xe4\xdd\x57\x65\x3c\xc4\x4c\x06\x9e\xca\xea\xe2\x61\x10\x27\x4c\xa8\xca\x58\x8e\xf4\xf2\x92\xa9\x0c\x3c\x82\x0d\x8c\xe4\x32\xf5\x62\xc5\x0c\xd0\x00\xf7\x6a\x92\xac\xcb\xc7\xa3\x53\x2e\x71\xc5\x92\x34\xad\x2b\x67\x59\xee\xb5\xcf\xa6\xc9\x5f\x1c\xd1\xb4\x8e\xba\x3a\x91\x39\x45\x29\x2e\x3b\xf5\x09\xe0\x05\x18\xf5\x82\x7a\x1d\x48\xeb\x45\x8e\xf9\xe4\xce\x02\x56\x01\x72\xa7\x8c\xa1\x28\x7f\x2d\xc4\xdc\x3d\x10\xe8\xf9\x64\x72\x00\xc3\x0f\xfe\x7b\x1b\x5a\x43\xa9\x1f\x5a\x63\xea\x70\x70\xf0\x0c\x8e\x08\x76\x60\x1b\x4a\x41\xb7\x3c\x13\xcf\x06\x09\x95\x71\x1c\x5d\x0a\xf0\xd2\x0a\xf7\x3f\xc0\xa4\x65\x72\xb3\x61\x3a\x6a\xb7\xf0\x00\x1c\xa9\xd4\x41\x89\xe3\x4c\xc6\x71\x22\x88\x3e\xbc\xa2\x34\xf9\xc6\xcb\x73\x69\xf2\x86\x13\x89\xee\x3c\x9a\xea\x91\xee\x22\x84\x19\xf9\x8d\x97\xbc\x78\xc2\xfc\xa1\x62\xc0\x80\x36\x88\x48\x9d\xee\x95\x20\x4c\x26\xc6\x17\xaa\x4b\x43\xf8\x15\x4f\x18\xc2\x82\x30\x94\x0a\xc3\x73\x25\x94\xfc\x1a\xf8\xbc\x6b\x9a\x47\xf5\x31\x75\x88\x91\xee\xc5\xa2\x60\x5e\x38\x95\xad\x03\x98\x3c\xd7\x73\x36\x9e\x1b\xe1\x69\xa2\xe7\x6c\x17\x2b\xfb\x70\x42\xb0\x29\xa4\xde\x73\x82\x02\x38\x91\x9e\x08\x32\x8e\xa5\xb4\x62\xd7\xda\x44\x32\x5c\xd7\x16\xc6\x3c\xdd\x71\xad\x97\x39\x81\x65\x1d\x6c\x23\x83\x6b\xff\xc5\xe3\xd8\xae\x17\x83\x84\xc2\x50\xe0\x4f\x9c\x7c\xe3\xc4\xc9\x1c\x60\x56\x61\x8a\x8c\x4e\x59\x0d\x17\x66\xff\x0a\x21\xa9\x63\x00\x4e\x6d\xaa\x33\x56\x32\xff\x8d\xde\x6e\x36\x20\x1e\xb7\xa1\x05\x55\xd9\x6f\xf4\x16\x1c\x21\xdb\x0c\x71\xec\x32\x58\xdf\xc9\xe3\xb9\xa6\x92\xde\x73\x13\x72\xa7\x4d\xef\x09\x49\x47\x1a\x7f\x2d\x80\x5c\x97\xd0\xc4\x09\xb8\x2c\xdb\x1d\x68\xef\x18\xd1\x80\xce\x95\xa5\x73\x33\x04\x66\x60\xee\x19\x07\x34\x48\x12\x45\xfe\x13\xd2\x26\x97\x9d\x80\x05\x71\xea\x8b\x86\x12\xa9\x26\x44\x85\x50\x6a\x2d\xaa\x9d\x7a\xe1\xc0\xf0\xdd\xa0\xa6\x24\xd2\xa1\xc0\x6a\xb4\xdd\xe2\x5c\x92\x35\xa8\x37\xa4\xed\x2e\x86\x2d\xcb\xfe\x6a\x66\x59\x87\x23\xf7\xb1\x0f\x40\x47\x46\x7b\x26\x63\xa0\x46\xb3\x10\xdc\x28\xdb\x99\x3b\x3a\xa3\x20\x63\xee\x34\x75\x18\x9e\x4e\x04\x65\x19\xb8\x1b\x05\x65\x19\x9a\x9b\x9f\x1b\x50\xb4\x71\xad\xac\x24\x44\x5f\x53\x7a\x99\xb6\xbb\x81\xf7\xbb\xb1\xfc\xef\x5e\xda\x06\xf7\xb5\x83\x76\x3b\x97\x43\x23\x46\x1e\xa5\xd5\x0b\x56\xe3\x3e\x43\x63\x01\xd4\xcb\x7f\x70\xc7\xb6\xa6\x4a\x95\x6d\x1a\xe2\xee\xdf\x9b\xad\x51\x37\x58\x74\x84\xd6\x19\xc1\x16\xbd\x5a\xd6\x35\xde\xab\xfb\x73\xe0\xe4\x43\x56\x55\xd4\x12\xaa\x59\xf0\x92\x48\x0a\xd9\x31\x15\x18\xf9\x08\x42\xe6\x6d\xee\xc8\x19\x5e\xbd\xd5\xfc\x3d\xc8\x07\xb1\x71\xf7\x39\xb1\x2f\x17\x2c\x65\x4d\x20\x38\x87\x41\x00\x27\x30\xe5\x36\xbb\x90\x56\x8e\x72\x43\x13\xb8\xb2\x29\x0d\x70\x83\x97\x7f\xa4\x5f\x3c\x5c\xbb\xa1\xb7\x22\x83\xfd\x59\x95\xe3\xb8\x92\x09\x5a\x4f\xf4\x6a\x3e\x91\xb0\x55\x8f\xe7\xb0\xd3\x26\x91\xe0\xee\x71\x33\xd7\x87\x0b\x89\x34\xb8\x16\xf2\x00\xba\x0b\x07\x9d\xdd\x05\xe0\xfe\x28\x7c\x1a\x2d\x8e\x17\x32\x59\x4a\x84\xc0\x4f\xf5\x54\x87\x31\xc5\xe0\x6e\x06\xe1\x37\x08\x3a\x6b\x54\x71\xbd\x6a\xfa\xeb\x64\x2e\x43\x9d\xd6\x37\xfe\x91\xfc\xe0\x99\x10\x3f\x28\x56\x23\x1b\x3c\xb5\x26\xba\x4f\x80\x57\x9c\x4c\x24\x51\xa8\x93\xa9\xef\xf5\x0b\x19\xa2\xb1\x3b\xab\xae\x20\x78\x3e\xc2\xf7\xae\x4e\x2b\xf6\x36\xc4\xb0\x67\xe5\x87\xdf\xa3\x1d\xe6\x4d\xe7\x83\xbb\xdf\x70\xa0\xe0\x16\xa9\x96\x3b\x34\x31\xbd\x0c\x32\x57\xae\x64\x1a\x86\xd8\x14\xd5\x47\xad\x99\x24\x63\xe5\x0a\xe8\xad\xb3\xdd\x78\x7c\xdb\x6c\x9e\x3d\x6f\x3e\xd7\x99\x83\xdd\x59\x95\x1d\x2b\x24\x3e\x67\x05\xac\x83\x80\xcd\xb3\xd5\x72\x29\xa4\x3e\xb7\xcf\x7e\x90\x51\x23\x6a\x70\xae\x57\xcc\xd4\x1e\x3f\x19\x11\xc1\x2a\x23\xee\x5a\x65\x4a\xec\xeb\xfe\xb2\xf0\x76\x8a\xc5\x71\x04\xaa\x62\xfe\x65\x49\x64\xc4\xda\xb7\xd2\xeb\xf4\x8f\x65\x22\x80\xf8\x66\x12\x65\xe4\xd2\x24\xac\x33\x72\x23\x0d\xd3\x49\xae\x25\x30\x61\x49\x08\x4e\xe5\x25\x1b\x76\xff\x4b\x36\x62\xe7\x45\x09\x0b\x8a\x66\xaf\xc8\xb1\x31\x53\xc8\xe0\x23\x33\x1e\x13\xdd\x90\x4d\x65\x92\x19\x43\x86\x55\x1c\xaf\x12\x8a\x05\x56\x08\x87\xd4\x98\x50\x22\xaa\xce\x9e\x91\x5e\x8f\xcb\xc7\x2d\xe2\x38\x50\xdb\x70\xcf\x0e\x1e\xd1\x44\x60\x17\x8f\x85\xf5\x7c\xbd\xdd\xe2\x8f\x32\x14\x1e\x5c\x31\x7a\x6d\x64\x30\x86\x4f\x77\x82\x84\x77\x92\xac\x5f\xe4\x2a\x8d\xcc\x96\x1e\xe1\x23\xd3\x5c\x1a\xd9\xed\x3e\xc2\xa7\x54\x65\x69\x64\x39\x81\x08\x9f\xcd\xd9\x54\xa5\x11\x98\xc8\xea\x88\x60\xf1\x3c\x0a\xf6\x95\x1d\x81\xa3\x67\x08\x66\x54\x53\x1e\x9b\x32\xdb\xcb\xc1\x6e\x54\x42\x51\xda\x6e\x27\x94\xbc\x93\x43\x3a\x42\x71\xdc\x6e\x83\x72\x6a\x79\x53\x2e\x4b\x61\xd0\x91\x84\x05\xef\x5c\x92\x2e\xfe\xaa\xff\xbd\x00\x7e\xe8\x2d\xfc\xff\x20\xc9\x47\xe9\xb1\x50\xc0\x9b\xf5\x9f\x0d\x22\xcc\xc7\x17\x2b\xf5\xca\x19\xe5\xea\x73\xf8\x61\x53\x96\xd9\x8c\x7e\x2e\x83\x2e\xbf\xc1\x8e\xad\xc9\xe2\xc2\x7c\x19\x4c\x9a\xb0\xc5\x9a\xf9\xa8\xf7\x32\x7d\x2f\xb1\xb9\x93\x75\x62\x38\x1d\xb6\x62\x38\x49\xf3\x4c\xd1\x49\x5d\x92\x17\x8a\xde\x2a\x59\xe0\x01\x08\xcd\x4d\x05\x2f\x2a\x04\xde\xbc\x06\x7a\xa6\xd9\x70\x5a\xc9\x88\xb6\x78\x21\xae\x20\xf8\xb9\xd2\x8e\x9e\x8b\x3e\xc5\x78\x78\xf6\x4d\xfb\x78\xeb\x26\xe1\xdc\xbf\x77\x76\x2e\x75\xbb\x06\xcf\xf8\x85\x1c\x44\xde\xa2\xae\x54\xc8\x1a\xf8\x1c\xfb\x2a\xed\xa6\xc9\x0b\xe0\xb4\xbb\x01\x24\x5f\xee\x84\xe4\xcb\x1d\x90\x7c\xb1\x90\x7c\xf5\x90\x7c\x2d\x21\xf9\x82\xdf\x7e\x07\x92\x2f\x06\x92\xb7\x0e\x92\x2d\xc2\xaf\x25\xf9\x50\x92\x8e\x37\x88\x31\xc3\x03\xaf\x65\x9b\xa0\x79\x27\xda\x52\x88\x66\xa9\x57\xd2\x4b\x66\xf9\x8c\x72\xc5\xb2\xfc\x7d\x35\x9e\xe5\x8e\xd4\x74\xd0\x92\x94\xba\x66\x85\xab\xc6\x34\xf6\xd1\xcb\x78\x59\xf1\x5e\xb2\x45\x26\x6f\xdd\xbc\x3d\x91\x64\xbd\xf0\x57\xfe\xe9\xba\x7e\x8d\x99\x56\x55\x02\xea\xd2\x2f\xef\x72\x05\x07\xb6\x48\x23\x8d\xff\x55\x41\xc1\x36\xf2\x9e\x2a\x21\xfd\x87\xab\xb4\x7d\xb9\x07\xce\xf7\x41\x8e\x9d\x6a\x03\x6f\x2f\xb8\x62\x09\x55\x56\x7d\x0f\xbc\xef\x83\x1c\xff\xa6\xea\x2d\x3e\xad\xee\x88\x27\xdf\xdb\xf7\xb0\x40\xd6\xbe\x28\xe8\xbe\xdd\xc1\xc3\xba\x75\x14\xce\x48\x89\xae\x5a\x1e\x1b\x03\x4e\x4c\xcd\xeb\xc4\xc9\xe1\x41\x2c\xcc\x75\x79\x6d\xc6\xf3\xca\x3c\xde\x6c\xda\x59\x1c\xb7\x59\x45\x0d\x23\x61\x44\x76\xcc\x1e\x0c\xc6\x8d\x32\x85\x98\xaa\x42\xb2\x3e\x8b\xdb\x07\x0a\x18\xbd\xde\x6c\x98\xd5\x54\x32\x0a\xa0\x6e\x0b\xcf\xd0\x20\xc9\x88\xc2\xa5\x8b\x18\xd0\x3f\xd8\x81\xc9\xaf\x33\x68\x70\x04\x2c\x00\x70\x91\x71\x9c\xa8\x36\x31\x7e\x68\x8c\x2a\x93\x2a\x55\x99\x94\xf5\xa1\x96\x58\xb7\x1c\x28\xcd\x88\xd3\x22\xc9\x42\x9d\x36\x17\xb9\x83\xbe\x2a\xce\x91\xd9\xed\x3f\x48\x9c\x93\x13\xd9\x29\xa9\x1a\x8f\xfd\x37\x90\x1b\x2e\xec\x48\x44\xc0\x2a\x84\xa3\x60\x3c\x32\x56\xc6\xae\x6d\x5e\xa9\x59\x91\xd7\xb6\xe2\x90\x00\x4d\xd5\x21\xb5\xeb\xca\xed\x77\x04\x8c\x01\xb5\x8f\x69\x65\x03\x96\x9e\xf3\x24\x43\x98\xb9\xe7\xb5\x4c\x8c\x42\x38\xc9\xc9\x2a\x38\x6f\xe4\x38\xb3\xe7\x50\x38\x67\x14\x7b\x91\xf1\xab\x84\x73\x77\x39\x4d\x71\x5e\x1d\x03\xc2\x70\xc2\x2b\x95\x8c\xfd\x61\xd6\x55\x62\x4c\x15\x31\x77\x95\x30\x5c\x1b\x48\x42\x71\x41\x14\x4e\x24\xc9\x50\x1c\x17\xc8\x2a\x44\x8f\x49\x81\x33\xd2\xc5\x94\xac\x88\xec\xd3\x3e\x25\xa0\xe9\x85\xb2\xbd\x3d\xa7\x82\x80\x15\x19\xf7\x55\xdf\xaa\xa9\x20\x6a\x53\xfa\xdd\xe7\xd9\x3e\xed\xa3\x95\x8e\x5f\x21\x9c\xed\xef\xbb\x78\xba\x9f\xf5\xd1\x58\xc7\x8f\x11\xa6\x2e\x5e\x67\x80\xa5\x7f\x45\x08\x19\x6f\x36\xf0\x13\xb8\x62\x76\x42\x39\x57\xa1\xad\x60\xbb\x0a\x6c\xea\x56\xf6\xcc\x05\x90\xaf\xf0\x8a\x0c\x47\x7d\x19\xc7\xb2\x4d\xc8\xb8\x7c\x21\x3a\xc9\x88\x0c\x2a\xde\x6c\x32\x9d\x8e\xfa\x68\x65\x6e\x9b\x25\xc2\x52\x57\x2e\x8d\x22\x8d\xd4\xb5\x14\x71\x5c\xec\xd4\x52\x34\xd6\x22\x4d\x2d\x05\xc2\x85\xae\xa5\x30\xb5\x14\xa4\xdb\x2f\x9e\xaf\x9c\xfe\x46\xb1\xb7\x87\x4e\x78\xb2\x1a\x16\xa1\x3a\x4e\xee\xf2\xca\x52\xcd\xa7\xd0\x78\x39\xe1\x89\x84\xac\xa5\x9a\x0f\xf7\x02\x40\x58\x34\x1e\x3f\x8a\x05\x1a\x0c\xf3\x51\x3a\xcc\x31\x1f\x6d\xb7\xb0\x3f\xbe\x92\x8d\xba\xb2\xd6\xd4\x88\x15\x03\x1f\xaa\x09\xaa\xdc\x7e\x6b\x35\xb5\xbb\x66\x2a\xf4\x1e\xea\x88\xde\x43\x3d\xa5\xa9\x99\x30\x7a\x92\xab\x2d\x7e\x23\xdd\x43\x8c\xe5\xe5\x59\x55\x13\xa3\x64\x1b\xbf\x95\x27\x9f\x57\x26\x58\x79\xc3\xbc\xe1\x0d\x5d\xff\x76\x78\xe3\x13\xbb\xca\x27\xab\xaa\x3b\x27\xff\x38\x24\xd8\x54\xc1\xfb\x30\x61\x84\x75\xd7\x64\x51\x0d\x2e\x21\x2b\xc2\x2c\x7d\x9e\x86\xf1\xef\xf6\x65\xa9\x48\x25\xf7\xf6\xf4\x89\xa3\xfd\x46\xda\xb7\x14\x8d\x63\xd9\xcd\xa6\xad\x3b\x33\xd4\x1f\x23\xac\xcc\x2f\x2a\x6b\xf2\x3a\x33\x1a\xb0\x4f\x70\x6f\x76\xcf\xbd\x5c\xaf\xf7\x73\xf3\xbd\x1c\xfe\x53\x92\xb5\x39\x31\xfd\x98\x94\xc5\xbc\x89\x54\x95\xb2\x98\xb8\xef\xdc\x80\x94\xbe\x37\x9c\xdb\x0c\x23\x6c\xa9\x8a\x59\x76\x5d\x09\xde\x2b\x78\xc1\x0f\xac\x78\xe4\x0f\xfb\xfb\xd2\xfe\xfe\x52\x15\x5f\xfc\x23\xab\x6f\x1a\xf9\x1d\x4d\x0d\x4a\x7c\xa4\xcf\xc0\x51\xb4\xb7\xbc\x51\xa9\xaa\x6e\x74\x6e\x82\xfc\xe2\x1f\x9f\x7f\x20\x37\x9b\x07\x7a\x39\x28\x78\xc2\x91\x15\xfc\x96\xe7\x7f\x73\xf5\xc5\x78\xc2\xc9\x03\x89\xe2\x78\x6e\x72\x91\xb5\x79\xab\x82\x77\xaa\x39\x31\xe5\x93\x30\xf2\x98\x4f\xb6\x29\x27\xeb\x8c\x8f\xe7\x42\x82\xe3\xdb\x84\x93\x84\x57\xa1\x8a\xe3\x5a\x44\x75\x33\x76\x5e\x78\x67\xd4\xbe\x67\x05\x17\xfa\xa8\x53\x56\x8a\x4d\xf0\x9d\xb1\x61\xe1\x9d\xf0\x13\xc3\x20\x41\xd3\xbc\xe3\xc3\x26\xd6\x17\x08\xbe\xb6\xf8\xa5\x8c\xe3\x6f\x32\x79\x29\xb1\x47\xc8\x4b\x90\xb1\xd4\x24\x61\x7f\x4a\xdb\x51\xfc\x87\xc4\x30\x69\xad\x28\xcc\x9e\xdf\xbd\x0b\x5c\xf2\x40\x3a\x89\x18\x32\x57\xf4\xbf\x57\x79\xab\x3f\xbf\xcf\x5b\x61\x66\xb5\x8b\x18\x69\x27\x82\xb0\xcd\x26\xa9\xb2\x35\x55\x22\x28\xed\x81\x06\x32\xad\x73\x3b\x08\xa1\x35\x4d\xd7\x82\x7c\xa6\x89\xd0\x5b\xf0\xc7\x8e\x9b\x02\x5e\x9b\x3c\x23\xdd\x7e\xf6\x9c\xb9\x39\x9e\xd9\x39\x2e\xc0\x51\x29\x1b\x66\x23\x84\xd6\x42\x53\xa8\xbb\xe3\x11\xa4\xdd\xdd\x32\xd2\x06\x17\xb1\x55\x16\xcc\x0a\xe4\x77\x44\x22\x35\x0f\x8b\x46\x78\x11\x98\xa6\x88\x1d\xd3\x94\x38\x4e\x1e\x48\x22\xf4\x64\x51\x6e\xa6\x54\x9c\x1d\x9a\xfb\xbc\x97\x92\xfc\x21\x89\x9d\x59\x3b\x8e\x17\xcd\xf5\x9f\x9e\x5f\xdd\x8a\x83\xd3\x72\x82\x87\x97\x85\xab\x65\xe0\xd2\x31\x14\xbd\xc3\x04\xc5\xff\xc8\x04\x64\x1a\x81\xad\x4b\x39\xd3\x53\x36\x4d\x3e\x39\x6f\xb9\xd5\x3b\xcb\xdd\xeb\xce\x96\xad\xaa\xa2\x19\xbf\xc5\xbf\x55\xa4\x18\xde\xac\x1d\xf8\x7b\xa3\x97\x99\x67\xcb\x82\x4e\x3e\x32\x17\xb1\x2c\xe8\x6a\xe2\x8f\xba\x4e\x93\xa2\x52\xcd\x38\x67\xcb\x0b\x91\x49\xf0\x3f\xd5\x70\xb6\x8e\x2a\x19\xdc\x55\x66\xb5\x94\x19\xc4\x6a\xa4\x3e\x35\x7e\xa9\x08\x1c\xaa\xa7\x78\x03\x4c\xb9\xaa\xfd\x15\xca\xe1\xfd\xc5\xad\x83\xc1\xde\x8a\x98\xe6\xbb\x4e\x6b\xdb\x45\xa3\x38\xee\x1d\x3a\x1f\x74\xa4\x77\x88\x52\x4a\x14\xee\x75\xbd\x2c\xa9\x77\x88\xf0\xe1\xc1\x73\xd8\xa6\xc1\x15\xf7\x80\xa6\x66\xb7\xf9\x2c\xc9\xfa\xb8\x18\xa7\xd1\x71\x31\xce\x96\x34\xc2\x67\xcb\x6c\x4c\x2f\x32\x99\x46\xad\x08\xbf\xa1\x53\x95\x46\x2f\xa4\x14\xd7\x3a\x18\xe1\x4f\x4b\xfb\xf9\x69\x19\xe1\x0f\x70\xd6\x35\xdf\x10\x8e\xf0\x2b\x71\xcd\x6d\x0c\x28\xbf\xe3\x57\x34\x4f\xa3\x57\xe0\x92\x30\xc2\x7f\x32\x9e\x46\xef\xce\x22\x7c\x4a\xf9\x2a\x75\xcf\xa7\xeb\x8f\x08\xbf\x58\x2e\x8b\x5a\xd4\x19\x38\xbe\x49\x23\xf3\xfb\x46\x8c\x2f\x23\x7c\x2a\xbe\xbd\x97\x8c\xc3\x1c\xf8\x8d\xde\xa6\xd1\x27\xce\x26\xfa\x5c\x3d\x65\x74\x12\x6d\xf1\xaf\x92\xac\x9f\xa6\xd1\xcb\x6c\x7c\x09\x2f\x54\x45\xf8\x59\x1a\x7d\xcc\x2e\x22\xdc\x3b\x48\xa3\xa3\x9c\x66\x32\xc2\xbd\xc3\x34\xb2\x27\xcc\xde\xe3\x34\x02\x29\x56\x84\x7b\x4f\x4c\xfb\x52\xe4\x11\xee\x3d\x4d\xa3\x17\xb9\x8e\x7d\x96\x46\xef\x33\x7d\x2a\xc0\x07\xdd\x34\x3a\xca\x96\x85\x81\xe4\xe0\x49\x89\xb4\xc3\x03\x40\xd7\xe1\xa1\xce\x3b\xa3\x1a\x39\x87\x8f\x4c\xd8\xa0\xe1\xf0\x27\xdd\xe2\x24\xc2\x87\x8f\xd3\xe8\x17\xb1\xd0\x65\x9e\x54\x30\x7b\xf8\x34\xc0\xec\xe1\xb3\x2a\x5a\x1f\x75\x2b\x48\x7d\xf4\x53\x1a\xbd\xe6\x05\x95\x3a\xe9\x71\x89\xdf\x9e\xee\xe3\x49\x4f\x07\x0e\xd3\xe8\xe4\x40\x07\x1e\xa5\xd1\xc9\xa1\x0e\xfc\x94\x46\x27\x8f\x74\xe0\x71\x1a\x9d\xfc\xa4\x03\x4f\xd2\xe8\xe4\xb1\x0e\x3c\x4d\xa3\x93\x27\x3a\xf0\x2c\x8d\x4e\x9e\x6a\x54\x75\xd3\xe8\xe4\x99\x0e\xf4\x74\x85\x5d\x1d\x82\xaa\x75\xdd\x07\xba\xee\x9e\xae\xfc\xd1\xa3\x34\x7a\xbb\x5a\x18\x7c\xf4\x34\x54\xe1\x50\x1d\x1c\x3c\x4a\xa3\x53\xaa\xb2\x68\x8b\xa9\x08\x67\xc2\x25\xbd\xad\xcb\x74\x80\xe4\x1d\xfd\x7f\x96\x43\xf8\x1e\x6d\x36\xf0\x0b\x9c\x5f\x65\xa0\x2b\x0f\xac\xd8\x65\xa2\xbc\xc6\x2c\x45\x3a\xc6\xab\x29\x25\x30\xbb\xd0\xc0\x8e\x7a\xda\x74\xe1\x48\x6b\x97\xed\x4e\xba\x5b\x4a\xfa\x4d\x95\xbf\x5a\xe0\x74\xa1\x11\xbc\xec\x1e\xc0\x95\x46\xd1\x16\x3b\x23\xcb\xff\xbe\x74\x50\xd2\x25\xcd\xac\xfc\xc7\x5c\x65\xde\x2d\x35\x74\x8b\x40\xd3\xda\xd5\x80\x11\xc0\x44\xda\xdd\x62\xdb\x85\x3b\x8a\x7d\x17\x0d\x1e\x07\xba\x2e\xb8\xaa\xfd\x57\x00\xfc\xeb\x36\xb6\x08\x2b\x11\x0a\xe1\x26\x99\xca\xe0\x0d\xaa\x29\x95\x6e\x69\xe7\x15\x32\x33\xae\xc6\x8a\x50\x33\xf2\x63\x18\x65\xb6\xa6\x49\x25\xee\xce\x21\xb9\x67\x18\x1b\x46\x65\x8b\xb0\x14\xe1\x36\x13\xde\x8c\xfd\x9b\xcd\x4a\x54\xfb\x4c\x73\x95\x7d\x6e\x42\xb4\x49\xf1\x9a\x36\x26\x5f\x04\xbe\xc0\x5e\x05\x49\xfb\xb4\x13\xc4\xe9\xa1\x83\xac\x5f\xee\xac\xf2\x4b\xa5\xca\x2f\x61\x95\x5f\x1a\xaa\xac\x64\x68\x48\xf7\x2d\xfe\xe5\x2e\x20\x72\x95\x9d\x02\x47\x6a\xfa\xcb\x44\x85\x1d\x7c\xa5\x7e\xf0\x8a\xe9\x8d\x72\x0f\x58\x01\x6f\xd6\xc4\x74\x05\x9a\x55\xa5\xb6\x83\xde\x23\xff\x02\x55\x93\x26\xad\x88\x5d\x06\x85\x12\x2a\x76\xb9\xac\x90\x77\xa3\xe4\x8b\xac\x30\x53\xc6\x64\x8c\x4d\x93\x03\xe3\x5d\x14\x24\xfb\xbb\xcd\x39\x3f\x85\x8e\xc7\xb2\x4e\x0a\xef\xd0\xd6\x2a\xe5\xd7\x4d\x0c\x5a\xe9\x45\xbb\xd1\xc9\x76\x85\xbf\xa3\xe4\x83\xac\xfb\xef\xae\xf3\x79\x77\x3a\xf6\xa6\x37\xde\x93\x7d\xe0\xe7\xdb\x7f\x07\x6d\x7a\x7f\x8a\xfe\x5b\x00\x3a\x55\x05\x9d\x81\xd7\x40\x67\x27\x6d\xfd\x05\x86\x9f\x41\xbf\x4b\xe7\x81\xba\x32\x1e\x56\xd6\xfa\x87\x42\x9e\xd6\xef\xf6\xf7\x37\x9a\x52\xf2\x5b\xd8\xd9\xd6\x7f\x74\x94\xac\x80\xe0\xde\x19\xa0\xe4\x63\x05\x2f\xc6\xaf\x5e\x4a\x89\x10\x55\x5e\x79\x79\xeb\xd0\xea\x11\x6e\x15\x6d\x28\xf9\x8f\xfc\xef\xfa\x1f\x0f\xbd\x7d\x55\x10\x12\xb8\x70\xac\xc6\x04\x58\x09\xdd\xa2\xdf\xef\x39\xdd\xd0\xf4\x6b\x59\x73\x52\xa7\xcf\x77\x8e\xfb\x7e\xc5\xe1\x9d\xb3\xf2\xb4\x27\x9c\x08\x11\xab\xed\x56\xcf\xb7\xab\xba\xef\x94\x6e\x0f\xa1\xfe\x15\x31\xaf\xf4\x94\x42\x1f\xb0\x20\x32\x92\x91\xe8\x83\x79\x27\x86\x4a\x98\xd8\xef\xf3\xd5\x8c\xf1\xd6\x19\x5b\x2c\x73\x1a\xc6\x1c\x7b\x99\x6a\x18\x6b\x54\x41\x2a\x25\xe1\xbc\x11\xc6\x04\x8a\xbf\x41\x74\x28\x72\x40\xf8\x3a\x41\x78\x4e\xbe\x72\xbc\x20\xef\x39\xbe\x25\xe7\x1c\xbf\x4b\xd6\x3b\x50\xa4\x4c\xe0\x46\x40\xd2\x53\x89\x77\x60\x49\xcf\x24\xde\x01\x27\xfd\x5d\xe2\x66\x88\xd2\x95\xdc\x5a\xab\x2c\x41\x86\x23\xbc\x12\x64\x3f\x90\x76\xe4\x42\x2f\x5c\xdd\x9f\x57\x02\x6e\xf5\xdc\xeb\x59\x99\x18\xae\xc4\x08\x9b\x1f\x23\x26\x59\x89\xfd\xfd\xd0\x41\x88\x30\x62\x92\x95\xd8\xdb\x73\xf9\x7c\x79\x5c\xd6\x64\x15\x74\x04\x59\x6f\xf1\x54\x90\xb5\x8d\x4f\x0b\xb1\xc5\xcb\xe0\xbb\xdd\xdb\xe2\xb9\x20\x85\x28\x61\x5b\x88\xaa\x65\xae\x53\x8b\xd7\x8b\x0b\xac\xdf\x55\x0b\xdd\x42\x58\xfb\xdc\x9a\x0d\xaf\x8c\x63\xd9\xa9\x99\x8e\x9f\xda\x57\xf5\x3e\xf1\x45\x56\x5c\x52\xf3\x14\xab\x3d\x1d\x84\x97\x00\x77\x16\x3c\xdd\x29\x66\xfc\x21\x62\xe6\x1e\x49\x17\xf6\xd9\x4e\xb0\xf9\x1a\x0a\xff\x1c\xa7\x8c\xe3\x24\xa1\x21\x90\xe8\x5f\x41\xa7\x91\xfb\xc3\x40\x11\x86\x30\x0b\xd4\x79\x44\x70\xab\xcb\x83\x67\x07\xc7\x41\x19\x40\x2d\x8a\x63\xa3\x49\xda\x26\x24\xd0\x07\x9a\x89\x04\xad\x73\x91\x2c\x05\xc2\xb9\x48\xa6\x22\xa0\x88\x2b\x11\x3c\xb4\x32\x15\x8e\x02\xda\x84\x14\xa2\x3e\x83\x1f\x3f\x45\xa8\x3f\xd6\x15\x60\x85\xf0\x58\x57\x58\x71\x3f\x73\x21\xaa\x4e\x34\x6b\x43\x4a\x9d\x15\x7d\x08\x32\x6e\xb2\x00\x96\x7a\x61\x09\x31\x52\xda\xce\x3b\x01\x0c\xd3\x03\x25\xc9\x4e\xce\x04\xd4\x3b\xda\x09\xa4\xd3\x1d\x07\x4e\xdd\xa7\xf8\xd6\xdc\x30\x45\x9f\xac\xd5\x12\x66\xb5\x77\xd7\x39\x5e\x6f\x2b\xc6\x6b\xd7\xe1\x00\x50\x52\xa3\x83\x38\xbe\x7b\x68\xa9\x9c\x55\x87\x76\xb3\x29\x84\x9e\x31\x25\xa6\xb1\x41\x28\x75\x08\x5d\xfa\x14\x70\x99\x58\x6a\x1f\xdd\x8f\xdc\xf6\xce\x63\x7c\x8f\x9f\x21\xd4\xe7\x83\x84\x12\x3b\x2e\x73\x81\xf0\xdd\x53\x63\x07\x54\x42\x71\x85\x66\x3c\xa0\x28\xb5\xf1\x9e\x02\x34\x44\xc7\xe2\x3e\x57\xac\x97\x95\xd4\xba\xb3\x7b\x7c\x56\x49\x36\x5b\x9b\x4f\xfc\x58\xad\x99\xfe\xb3\xa2\x85\x7a\x9f\x31\xae\xf0\xbb\x4a\x12\x17\xd7\xf8\xa8\x12\xa3\x89\xc3\x20\xd3\x41\x02\x0f\x10\xe0\xf7\x95\x5c\xaf\x17\x0b\x3a\x61\x99\xa2\x1e\xdc\x73\xf1\x5d\xd7\xb3\x5f\x2b\x59\x6a\x2e\xfa\x5f\x54\x12\xdf\x88\x6b\x9f\xf2\xb6\xda\xf2\x24\x2f\x1b\xfd\x00\xcb\xed\xeb\x2a\xa6\xe6\x62\x95\x4f\xbe\x30\x9a\x4f\xf0\x89\x20\x7e\x76\x7f\x14\x83\x8f\x22\xb4\xdf\xda\xe2\x53\xab\xff\xfc\xca\xfe\xbe\x11\xa4\xdd\xc3\xdf\x04\x79\x27\x12\x84\x3f\x09\xd2\xa3\x8f\x7e\xfe\x26\x06\xef\x44\x83\xdd\x97\xce\xb3\xff\x4d\x04\xba\x3a\x7f\xea\x45\xc3\x72\xc9\x47\x22\x41\xd6\xe5\xed\x7b\xe1\xe4\x71\xcf\x9e\x19\x76\xe9\xbc\x8c\x79\x6a\x62\xbe\x96\x31\x4f\x4c\xcc\x8b\x32\xe6\xb1\x89\x79\x5b\xc6\xfc\xe4\x39\x8c\xba\x4f\x89\x83\x8a\xc3\xb1\x07\x62\xf7\x79\xf9\xd6\xb3\x67\xae\x9e\xf7\xc2\xd4\xfc\xec\xa9\x8b\x39\x77\x31\x4f\x5c\xcc\x57\x17\xf3\xd8\xc5\xbc\x70\x31\x3f\xb9\x98\xb7\xe2\x07\xe1\xf9\x43\xd4\xae\xbe\x00\x40\x7c\x6c\xa2\x03\xa3\x66\x51\xf3\x6a\xe8\x72\x5e\xba\x84\xc0\x50\xb7\xbe\xd6\x13\x42\x4e\xc5\x20\x39\x15\x64\x48\x47\x7a\x6c\x2f\x45\xf2\x5e\xe0\xdf\x05\x42\xe9\xa9\x70\xd6\xae\xf8\x83\x08\x6c\x6d\x45\x12\xfa\x2c\x7d\x25\x9c\x8d\xe7\x2b\xd1\x77\xc4\x71\xa6\xdb\xd9\xfe\x2e\x42\xfd\xc6\xdf\x6d\xb9\xf6\x1b\xe1\xbd\x9b\x9c\x0a\xb4\xd6\x84\xe4\x4c\x5a\x8d\x4e\xa6\x91\xc8\x9c\x8a\xfe\x1f\x22\x79\xf6\xac\xf2\x84\x8b\xf1\xe4\x55\x3a\x2b\xa3\xee\x19\x09\x4e\xd4\x90\x8e\xfa\x13\xb1\xe6\x84\x27\xed\xae\x7f\xed\xcc\xbd\x37\xb3\xdd\x22\xe4\x88\xd8\x7a\xa1\xe2\x68\x6d\x86\xc0\x43\x13\xc7\x1a\x15\xa7\xde\xf0\x7c\xaf\x87\x00\x8f\xef\x05\xfe\x47\x20\xcc\x4b\x35\x51\x4d\xfd\xa1\x8e\xe8\x6f\xf5\x51\xe8\x75\x9f\x1c\x3e\x79\xd4\x7b\x7a\xd0\xdb\x4f\x7a\x7b\x49\x12\x7c\xd3\x3d\xf5\xb0\xd7\x45\x0f\x13\xfe\x90\xf4\xba\x68\xd3\x45\xe8\xbf\x02\x6f\x13\xff\x11\xe5\xbb\xf7\xe0\x31\xc0\xd9\x32\x8a\x65\x81\x2a\x8e\x22\x95\x31\xfb\x53\x08\x1b\x0b\x98\x20\x5f\xf9\x98\xf2\x90\x8f\xe2\x38\xd1\x3f\xe0\xa9\xbf\x34\xb6\x86\x75\xf5\x4b\xc0\x6e\x19\xa3\xc8\xbf\xec\x18\x7e\xb6\xbf\xbf\x8a\x9a\xe6\x30\x65\x09\x5a\xff\x2a\xc8\x67\x41\x6c\xde\xe0\x5d\x61\x56\x8a\x94\xbf\xf8\xad\xa6\x9f\x8b\xe4\x8b\x40\xd8\xb2\x6b\xe7\x96\x5f\xeb\x9c\xdb\x74\xfb\xf4\x7c\x60\x6b\xc9\x4a\xb7\x98\xa1\xbb\x1b\xc7\xf5\x55\x1e\xf9\xb5\x9c\xca\xf1\xcd\x92\x99\x5b\xc7\x8f\x6c\x41\x9f\x2b\xd4\x18\x5f\x2a\x90\x80\x47\x89\xc6\x92\xa0\xeb\xd2\x58\x16\xf9\x37\x5d\xdb\xc9\x77\xab\x41\xf6\xea\xe1\x8e\xba\xb6\x81\x6f\x9a\xe0\x7d\x56\xdb\xf3\xbf\x04\xa1\xd8\x20\xd9\x6b\xfc\x3b\xc6\x2c\xbc\x1f\x45\x7e\x2e\x39\x67\x76\x06\xb7\x60\x14\x4d\x2b\x4d\xfe\x0c\xc2\xfa\xaf\x19\x98\x47\x57\x73\xd7\x35\xad\x05\xf3\x24\xf8\xab\x30\x17\xeb\xed\x9e\x79\x35\xaa\x0b\x72\x50\x36\x4d\x1a\x7c\x78\xc5\xb1\xa7\xf2\x43\xf3\x1c\x61\xf2\xab\xee\x87\x22\x65\x3c\xc2\x8a\xac\x2d\x01\xa4\x14\x8b\x8b\x82\xca\x2b\x3a\x79\xc9\x54\x91\x2a\xcc\x75\xac\xa1\x43\xbb\x3c\x7d\x16\xe1\x5b\xd2\x7f\xd5\xb9\xc6\xc3\xae\xe6\x1a\x3f\x0b\xa2\xf0\x5f\xa2\x82\x19\xb2\xae\x76\x3f\xed\xe2\xb0\xcb\xa9\xc2\xd2\x9d\x07\x8d\x20\x6e\x6b\x94\x36\x3e\x6b\xa4\x83\xf7\x2d\xe2\x6f\x6c\x69\x95\x54\xcd\x0b\xb3\xac\x72\x45\x9c\x31\xe3\x07\xc0\x18\x65\xfd\xbe\xa2\x2b\x4a\xd6\x17\x59\x41\x8d\x7c\xae\xf6\x68\x37\x78\x30\x85\x4c\x4e\xba\x97\x49\x3a\x49\xd7\x1a\x7c\xc6\x67\x16\x05\xe6\x2d\x72\x07\x9d\x6f\x6a\x65\x47\x47\xd3\x42\xd0\x1c\x56\x95\xc6\xcd\x45\x8c\xba\x1b\x20\x1f\x0e\x80\x31\xb1\xa6\x3a\x0b\x13\xed\x98\x80\x87\x86\xda\x37\xd2\x8b\x6d\x40\x31\x39\x0b\x77\xab\x84\xee\x60\x9f\x62\xf3\x4c\x49\x41\x8d\x05\x3b\xbc\xd6\x39\x4b\xbb\x78\x99\xdd\xe6\x22\x9b\x38\xeb\x6f\xc3\x95\x99\xaf\x92\x1a\x90\x19\x90\xf0\xdd\x56\x56\x79\xc8\xd8\xcd\x8d\xa0\xb7\xc8\xad\x17\x86\xa3\x86\x4e\xa0\x8e\xc5\x70\xdf\x12\x14\x1f\x28\x3b\xd6\x69\x62\x43\x1c\x7e\x30\xb7\xf1\x7a\xae\xd8\x42\x44\x05\xa3\x50\xb0\xea\x49\xb4\x5c\x93\xca\x95\x61\xc5\xe0\x45\x62\x47\xcb\x09\xdf\x05\xb2\x44\x38\xbc\xa1\xec\xbf\x88\x83\x0b\xbb\x00\xba\x13\xc2\xc0\xdf\x25\xab\x4a\x29\x59\xb5\xb5\xbe\x21\x5a\x73\xc5\xcc\x82\xb1\x5e\x11\x66\x31\xe4\x11\x54\x22\x76\x15\x62\x39\x33\x15\xe7\x24\x83\xd6\xfb\xe6\x87\xac\x0c\x48\xe6\x87\xe4\xdb\x8c\xac\x70\xbd\xca\xea\x4a\x96\xd7\x5f\xb6\x2f\x13\xf2\x0a\x86\xe2\x38\xc9\x03\xbc\xac\x42\x47\xb3\x1a\x1c\x0f\x8a\x79\x1f\x94\x05\x84\x5d\x90\xae\x7b\x80\x78\x62\xed\x60\xbc\x62\x9f\xad\x20\xf7\x5b\xea\x9c\xe4\xf6\xf1\xef\x64\x45\xe6\xb5\xc5\x13\x3d\xb7\x18\x5d\xec\x50\x76\x3d\x6b\x9d\xd0\xe7\x9d\x6a\x04\xd0\xfd\xbc\xa3\xb2\x99\xa7\xfd\x79\xc7\x86\xca\x09\x30\xef\xb8\x60\x30\x0d\x1c\xd5\x2e\x07\xc9\x84\x2c\xc9\x02\x4f\xc9\x18\xa5\x4b\xb2\x34\x68\x5f\xe0\xd5\xcf\x45\x1c\x27\x05\x59\x99\x47\xee\xdc\x33\x6a\xcb\x38\x4e\x7c\xae\x3a\xfc\xe5\xda\xfc\x7f\x11\x72\x84\x59\x9e\xac\x70\xbd\x46\xd4\xa7\x29\xa0\xf5\x96\x50\x3c\x23\x73\x27\x38\x5f\x11\x85\x17\x84\xe3\x19\x68\x66\xae\xed\x5b\x17\x7a\xd7\xd9\x55\x1f\x4b\x6e\xc9\xcc\x41\xa1\xcf\x11\xe4\xd6\xc8\xfb\x16\x78\x8c\x57\xc8\xab\x48\x8c\xc9\x6d\xc5\x92\xb6\x75\x98\xde\xda\x95\xec\x63\x36\x23\xfb\x8f\xba\xcf\x9e\xc4\x41\xcc\xe6\xf1\xa3\xbe\x7d\x86\xa3\xdc\x7f\x92\x55\x93\x02\x5b\x05\x82\x41\xa5\xf9\xf4\x16\x6d\x36\x9e\x19\x5b\x79\xb5\xc1\xb1\x61\xdd\x42\x08\x4d\x6b\x07\xa9\x9e\xa3\xdd\xad\x7b\x71\xae\xc4\xa6\xd9\xd2\x3d\x78\xe4\xf0\x00\x97\x50\x31\xb7\x28\xa3\x81\x0f\x92\xe1\x7c\x94\x5a\x25\xc2\x79\x39\x6b\x74\x81\x39\x99\x03\x31\xa0\xcd\x66\x4e\xf4\x24\x58\x57\xfa\x58\x9f\xb9\x8e\x95\x99\x93\xe6\xe9\x8e\x83\xb5\x84\xdc\x39\xf5\x4d\x9f\x80\x7c\xa7\x64\x9c\x5a\x72\x9c\xe0\x60\xc6\x92\x69\xa5\xaa\x25\xce\xf2\xa4\xd0\x2b\x70\x95\x66\x49\x81\x6b\x1b\x2a\x19\x07\x4b\xf3\x84\x05\x52\x27\xbd\x92\x5a\x84\x60\x1f\xaa\x2c\x45\x14\x95\x0e\xca\x68\xe8\xa0\xcc\x3f\x70\xa5\x46\x58\x10\xe9\x47\x22\x58\x3e\x84\x75\xd0\xeb\x92\x4c\xc5\x92\x08\x2c\x08\x6f\x96\x3e\xd5\x25\x29\xcf\x7a\x58\x22\xd4\xb7\xfa\x7b\x02\x6d\x8d\xeb\xe7\x25\x23\x5f\x3a\x1f\xc0\x39\xa5\x61\x3d\x5e\x96\xee\x5f\xf0\x9c\x91\x84\xd3\xeb\x96\xec\x80\x27\x01\x4e\xb9\x42\x1d\x49\xa7\x45\x20\x29\x0d\xb6\x02\x4e\xca\x1d\x88\x27\x12\x2b\x52\x43\x1f\x0a\xa9\x94\x0f\x54\x6a\x0e\x16\x18\x9e\x84\xac\x22\x9a\x63\x50\xf2\xa8\x8d\x08\x10\x67\xb0\x6a\x07\x43\x6a\x25\x38\xb7\x8c\xac\x59\x71\x2a\x56\xe0\x8f\x65\xf7\xf2\x0f\x0c\x6e\x68\xa7\x2a\x3f\x3a\x61\x17\x54\xa2\x38\xfe\x95\x26\x14\xe9\x66\xb7\x98\xf2\x7f\x74\x03\x67\x54\x19\x46\xa6\x7a\x3d\x67\xb8\xa2\x86\x4a\xac\x1c\xf8\x9f\x55\x82\xb0\x20\x4b\xe6\x17\xa2\x7e\x22\x48\xce\x12\x49\x7e\x5f\x25\x12\x53\x2c\x10\x16\x08\xb9\xe9\xec\x5e\x1b\xed\x56\xbd\x72\xc6\x71\x22\x82\x31\x47\x18\xd8\x11\x81\xf0\x6f\x2b\x78\x6d\xc4\x83\xf9\x81\x2e\xf3\x6c\x4c\xff\xaf\x82\xaa\xb2\x19\xe9\x61\xf1\x7f\x0a\xe4\x13\x21\xc7\xf6\xe1\xb8\x9a\x16\xee\x7d\xf0\x72\x03\xaf\xac\xc2\x2b\x35\xbc\x5c\xc3\xcb\x31\xbc\xc2\x22\x2d\xbc\x07\x25\x8c\xaa\x74\xe2\x0b\x0f\x2b\x7a\x18\x95\x85\x51\x5a\x18\x79\xc5\x54\x76\xc6\x42\xfd\x3c\x9c\xf9\x4b\xe4\x86\xf5\xb9\x26\x5a\x37\x62\x2f\x3f\x73\x4c\x5f\x07\xb4\x39\x3e\x91\x50\x7b\xda\x0e\x74\x89\x37\x9b\xf0\xab\xc3\x8a\xf7\x2b\x49\xcd\x5c\x75\x85\x37\x9b\xa4\xfd\xcd\xe8\x94\x6d\x36\x3a\x24\x30\x0b\x5d\x02\x5e\xb1\xaa\xc0\xb5\xdd\xc3\x82\x14\x02\x33\xe7\x00\xdb\x48\xb0\xfb\x77\xf8\xbc\x68\x31\x8f\x35\x36\x60\x44\xb0\x84\xa1\x34\x11\xe4\x56\x24\x0a\x0d\xe6\x22\x0d\x44\xc0\x8c\x24\x46\x19\x4f\x73\x57\xb2\x5a\x7f\x45\xa8\x2f\xd1\x00\xee\x57\x04\x4a\x0b\xa1\x0f\x6a\xe0\xa7\x28\xe1\x98\x35\x2c\x03\xce\x73\x2d\xe0\x35\xa8\xc4\xc6\x0c\xec\xaf\x55\x85\xb0\x6b\x83\x24\xb7\x0c\x07\x63\x01\xec\x6d\x03\x49\x11\x8a\xff\xa7\x77\x22\xe2\xdf\xde\x89\x04\xf2\x87\x8b\x60\xed\xa4\xae\x47\xb8\x49\x75\x5d\x19\x9f\x15\x1c\xcc\x55\xf2\xfc\x03\x1d\x53\x76\x45\x41\x06\x13\xc7\xf7\x24\x02\x61\xdc\x51\xe3\xa7\xb7\x67\x2f\x4e\x8e\xcf\xef\xad\xf8\x7b\x79\x4c\xfd\x16\x72\x73\x82\xbf\x65\x9d\x86\x45\x29\x51\x2e\x17\xae\x09\x01\xae\x59\x5d\xe3\x21\xbc\x14\x10\x60\x79\x5d\x10\x8e\xed\x23\x43\xf5\x2d\x05\x0b\xd8\x90\xc8\x9c\x61\x38\x1b\x5b\xd7\x57\x55\xea\xbe\x9f\xae\x85\xcb\xeb\xe8\x9b\x35\xd2\x77\x99\x0d\xa8\x97\x21\x84\xe1\x1c\xc4\xb1\x00\x5f\x1f\x77\xc0\xd7\xb4\x50\x68\xf8\x66\x54\xbd\xa2\x92\x5d\xd9\x7c\x27\x52\x2c\x8c\x4c\x2d\x8e\x13\xbb\xa9\x32\xbd\x31\xde\x51\xef\x5d\xa3\x7a\x57\xb5\x9b\x4d\x53\x7e\x01\x0a\xd7\x3c\x5b\x16\x73\xa1\xcc\x2d\xae\x59\x8e\xc2\xec\xed\x20\x7b\x13\x41\xc0\x66\xdb\xec\x05\x57\x74\x76\x73\x6e\x36\x89\x22\xe2\x1e\x62\x6f\x2a\x14\xc7\x4d\xb1\x49\x33\x16\xee\x05\xf3\x9e\xc4\x04\x61\xa5\x99\x2d\xb7\xd8\xdc\x41\xca\xc2\x8d\x89\x21\xe5\x1f\xa1\x82\xbb\xe0\xf4\x30\xbc\x62\x13\x0b\x5f\x95\xfb\x7e\x64\xb8\x9a\x1b\x66\x55\x0e\x58\x01\xbf\xe5\xfe\x74\x1c\x32\xa1\xa5\x88\x82\xeb\x59\x81\x9a\x07\xa5\xf1\xc1\x14\xfb\xa6\x44\xe7\x1c\xd4\xc8\xad\xcb\xef\xca\x67\xaf\x6d\xdf\x24\xdf\x91\x8d\x3d\x73\x6f\xe9\x90\xe0\xb5\xf2\x6d\xe3\x7d\xde\xa3\x27\xd8\x59\xe3\x0b\x12\x45\x7b\xb4\xf6\x44\x78\xb0\x4b\xeb\x1e\x84\x1d\x08\xa9\x1c\x92\xe0\xa7\x73\x6e\x9e\x00\xf8\x40\xa7\xc6\x55\x89\x8e\x4c\x93\x44\x55\x9c\xed\x19\x51\xb1\x34\xbc\xab\x22\x84\xcc\x19\xd8\xe1\x99\x18\xb2\xde\x7a\xe1\x09\x1d\x98\x67\xc6\x5b\x6a\x28\x46\x29\x3c\xe4\x4a\xb7\x28\x6c\x45\x60\x05\x87\x1c\xf7\xf6\x40\x88\xc3\x9a\x0f\xd0\xa7\x8f\xcc\xcb\x38\x6d\x8f\xc8\x5a\x86\x67\x5d\x30\x17\xd8\xf5\x7e\x71\x59\xca\x9d\x4a\xa7\x23\x6d\xff\xd6\x43\x6d\x04\x7a\x38\x1a\x9a\x11\xb5\x46\x4e\x23\x8d\xad\x1d\xd3\x24\xe7\xde\xde\x9a\xf0\xa0\x81\x25\x83\xd6\x35\x53\xf3\xd6\x25\xbd\x2d\x5a\xeb\x68\xaf\x6a\x2c\xd4\xf9\x2a\x18\x4f\x22\xdc\x8a\xd0\x5e\xb4\x8d\x52\x65\x5e\xd0\xf1\x80\x9e\xb1\xfa\xc3\xdd\xee\x40\xe4\x58\x0e\xd5\xc9\xb3\x42\x1d\x03\x4d\x3b\xa1\x95\x1c\xd8\xd7\x46\x4c\x34\xe1\x38\xcc\x45\x38\x4a\x95\x91\x1c\xdb\x88\x6a\xaa\x15\x49\xb9\x4f\x38\x63\x05\x67\xec\xa7\xdb\xd0\x9d\xa2\x73\x17\xdb\xae\x7a\xee\x0e\x65\xfe\xb2\x8f\x94\xd9\xc9\x24\x91\x9d\xc2\xbe\x5c\xd0\xe8\xbc\x5e\x96\x37\x06\xd4\x3d\x90\xed\xdf\x75\xef\x23\x4f\xbb\x97\xf4\xd6\xbc\x7a\x65\x3c\x9a\x61\x85\x52\xf7\x09\xae\xce\x30\xf8\xb8\x56\xf5\xc6\x02\x0a\x10\x35\x49\xe7\xbb\xdc\x18\x8d\x99\xf2\xa4\xab\xf9\x1b\x53\xd8\x60\x20\x28\xca\x12\xbb\x9f\x7a\x6f\x04\xa6\x8c\xc4\xc6\x71\x90\x63\xd0\x4a\xb9\xd8\x20\xd1\x3d\x87\x5c\xe8\x39\x1f\x24\x2a\x40\xe7\x01\xe6\x28\x95\xe9\x6e\x5c\x70\x99\xb4\x0a\x5f\xc7\xf1\x4f\x92\x07\x2d\x80\x8c\x38\x28\x5f\xe1\x83\xf2\x92\x03\xa8\x5e\x1a\xaa\xcd\xc6\x1b\xce\x82\x2b\xa3\xf3\x5c\x73\xf8\x9d\x85\x98\x50\xe0\xf1\x4d\x76\xa2\x11\x03\x73\x5e\x24\xc6\x5d\x4d\x10\x1f\xc8\x72\x1b\x9b\x31\x8b\x8e\xea\x50\xa3\x9e\xaa\xf9\x05\xd0\x66\x04\x3d\xdd\x24\x91\xa6\x4e\xc3\x86\x40\xcd\x53\xe2\xd7\x5c\x2c\xcb\x96\xa4\x86\x40\x92\xa3\x3c\x31\x65\x31\xf8\x32\x73\x25\xad\x7b\xed\x10\xf2\x3b\xeb\x09\x84\xbf\xf7\x20\xe6\x91\x43\xcc\x66\xa3\xee\x7a\x7f\xd1\xbc\xec\x10\xc6\x54\x33\x83\x3a\x98\xee\x35\x1c\xb0\x21\x77\x35\x0a\x90\xfe\xf5\x47\x90\x1e\x3c\xac\x32\x1c\xdd\x35\x02\x53\x7f\x96\x62\x0d\x3d\x7a\x52\x19\xea\xf7\x61\xab\x9a\xdb\xfa\x77\x83\x3d\x09\xb6\xc5\x86\x57\x62\x1a\x1f\x87\xb1\x0b\x84\xa1\xb3\x28\xda\x53\xae\xfd\x6a\x2b\xa1\xb9\x66\xe5\x5a\xca\x91\x53\xf9\xc2\x6a\xe7\xc1\x03\x93\x6c\x85\x8b\x94\x3a\xb7\x6a\x5c\x53\x8a\x32\x94\x62\x97\x88\x06\x4a\xe1\x21\xa5\x98\x23\x0e\xc2\xbc\x84\x85\x1b\x69\x9e\xf2\xd5\xc2\x68\xdd\x01\xb7\xde\xb4\x6e\x18\xe8\x0d\x2d\x68\xe2\xed\x4f\x0d\xae\xcb\x32\x86\xab\xa9\x74\xd8\xee\x46\xcd\xef\x79\x2c\xeb\xfc\xbb\x43\xc3\x00\xfa\x95\x3a\x49\xf8\xee\x28\x34\x3e\xd1\x53\x51\x20\xd6\xdc\x98\x31\xcf\x33\x6b\x44\x14\xed\xb9\x67\x72\x77\x47\x20\x90\x42\xf8\x11\xe0\x77\x8e\x40\x0b\xe6\x27\xf0\x0c\x66\xc2\xea\x59\x4f\x07\x96\x44\xcd\x58\x78\xa2\x06\xcf\x07\x69\xb9\x80\xa4\x5e\xbb\xb9\xc4\x7d\x50\x61\x51\xcd\x68\x11\xcf\x0d\xe2\xab\x1a\xd9\x65\x0f\xcb\xc9\x01\x03\x60\x90\xce\xef\x40\xfa\x3c\xf4\xc8\xd0\x88\x5c\xd9\x84\x5c\xff\x6c\x08\x0c\xb8\xd1\x7d\x05\xb8\x80\xb6\xa2\x68\x4f\xd7\xd7\x8c\x5d\xe9\xb1\x2b\x3d\x76\xe5\xdd\xd8\xf5\x95\x9b\xe9\x2d\x61\x47\xe4\x29\xfc\xba\xf6\x64\x05\xef\x0a\x53\x2c\xeb\x78\x17\xd8\x94\x48\xc7\x26\x5d\x83\x57\x43\x7b\x11\x76\xe5\xbe\xd6\xb0\x40\x76\x24\xa4\x19\x09\x59\xfa\x2d\x6a\x42\x87\xc4\xa2\x1c\x0a\x55\xb7\xda\x2b\x25\xa0\x89\xc0\x19\x5e\xe1\xbc\xf4\xf6\x3f\x36\x5b\xb2\x95\xff\x4e\x49\x86\x17\x24\x23\x5d\x7c\x6b\xae\x85\x2c\x1e\xa7\x71\xbc\x28\x6d\xe3\x17\x7b\x7b\x68\x3d\x35\x7b\xf0\xcf\x8b\x41\x72\x4b\xa6\xf6\x52\x09\xa5\xb7\x64\xea\x39\x05\x70\x7b\x46\x96\x89\xc0\x53\xbc\x1a\x2e\x46\x38\x0f\x9f\x02\x9e\xa1\xb5\x0d\x4d\xe3\x38\x99\x92\x5b\x2b\xf7\xdf\xd2\x38\x9e\xfa\x8d\x79\x16\x6e\xcc\x4a\x57\x85\x70\x46\x58\x32\xc3\x19\x5e\x78\x56\xb8\x18\x8c\xc9\x2c\x2d\x3c\x9b\x31\xc3\x05\x99\xe1\x29\xb9\xd5\x58\x5c\x10\x42\x56\x35\x37\x88\xdc\xd4\x34\x0e\xe0\x99\x5a\xed\x8a\x5a\x47\x1d\x17\x32\x25\x93\x44\xb8\x6e\x18\xf7\x52\x2c\x99\xee\x40\x31\x0d\xa0\x98\xe2\x82\x4c\xbd\x7a\xc9\x78\xab\xab\x9f\x12\x09\x4d\xdf\xd5\xcc\x2d\x99\x27\x53\x2c\xf0\x22\x6c\x8a\x7a\x82\xbe\x0d\xd1\x31\xed\x98\x03\x80\xeb\xc1\x2d\xd0\xd2\x22\x85\x5f\x83\xa6\xdb\x1d\x00\x6f\x03\x00\x6f\x71\xa1\xd1\x5e\x72\x43\xd3\xe6\x47\x4d\x1d\x73\x96\x08\x4c\xd1\x16\x21\x3c\x0e\xb4\x65\x35\x56\x70\x8e\xc7\x66\x4d\x2d\xc8\x82\x26\x66\x9c\x9b\x0e\x74\x45\xfd\x94\xf5\x53\x17\x05\x44\x91\xe4\xc4\xbe\x77\x90\xa3\x1d\x5d\xd2\x9f\x7a\xe8\xff\xc7\xdd\x9b\x30\xb7\x8d\x63\x8d\xa2\x7f\x45\x52\xe5\xf1\x02\x9f\x11\x8d\xe4\x25\x89\xa9\x20\xaa\x74\xe2\x4c\xa7\x27\xdb\xc4\xee\xce\xcc\xf8\xba\xfc\xd1\x12\x64\x33\xa1\x40\x37\x09\x7a\x69\x4b\xff\xfd\x15\x0e\x76\x90\x72\x9c\x59\xbe\x7b\xdf\xab\x4a\xc5\x14\x08\x62\x3d\x38\x38\xfb\x71\xb9\xf3\x17\x54\x83\xec\x92\x36\xe4\x96\x36\x74\x44\x34\x75\x79\x45\x0b\xa0\xb9\x91\xcd\x0b\xb5\x4c\x92\xfe\xd5\x70\x5e\x72\x36\xb9\xdd\xda\xf2\x2a\xe0\xbb\xa5\x86\xe2\xdb\x29\x3a\xa7\x4b\xb2\xd4\x50\x7c\x4e\x97\x01\x14\x9f\x01\x14\x2f\xc9\x95\x0a\xe7\x45\x66\x3e\x20\x9f\x59\x40\x5e\x26\x09\x5a\xd2\x73\x0f\x90\x97\x16\x90\xcf\x62\x40\x5e\x62\xd2\xd0\x1c\x9d\x91\x86\xdc\xda\x1d\x5a\x4c\x6b\x7a\x96\xda\x23\x44\xcf\xc8\x82\x9e\x91\x25\x3d\x97\x80\xac\xe6\xe0\x83\xf0\x12\x93\xda\x1b\xc9\x52\x83\xf0\x86\xd9\x1a\x18\xbb\x02\x50\x76\x73\x91\x20\x26\x87\x72\xd5\x1a\xca\x95\x37\x94\x2b\xb2\xa0\x57\x16\x58\x6a\x80\xe6\x25\x40\xf3\x12\x7f\xbf\xc7\x0b\xb4\x24\x25\xb9\x8d\x7a\x75\x80\x7d\xe5\x2f\xcf\x32\x02\xec\x2b\x00\xec\xdb\xf4\x4a\x01\xf6\x8f\x8e\x15\x5a\x7c\x18\x60\x9b\xac\x7f\x3d\x4f\xce\x5f\x91\x5c\x62\x4c\x85\x2d\xef\x95\xcf\x25\x49\xee\xee\x09\xbb\xf3\x39\xb8\x4f\xce\x20\x4e\x70\x1e\xdd\x1a\x4a\xbe\x50\xdf\xdf\xac\xdc\xe1\x1a\xeb\x8b\x2c\xef\xb8\xc8\x74\x30\x98\x5a\x75\x45\x66\xb4\x32\xa0\x3f\x53\xfa\xfb\x99\xbe\xef\x6b\x7b\x1f\xce\x3c\x3d\xf2\xd3\x34\x5f\x20\x6f\xe4\xf8\x4e\x4e\x7b\x66\x56\x13\x13\x60\x2d\x66\xa4\x35\x78\x8f\xf2\x62\xd4\x26\xa2\x5a\x87\x6e\x2c\xd0\x7d\xc8\xb2\xa8\xbe\xbe\xd3\x8d\x4f\x4f\xce\x48\x1e\x70\x1e\x7e\x6f\x6b\x68\xc5\x9c\x39\x01\x3f\xc8\x8c\xda\x76\xd7\xde\xcc\x80\x4b\xfa\x54\xa0\x78\x26\x86\xa2\x2c\x08\xac\x60\x34\x31\x49\xc3\x17\x92\x08\x56\x2d\xa9\x3a\x66\x98\x01\x11\x5c\xf8\x83\x96\xac\x00\xc4\x02\xb2\x2d\x15\xf6\x5e\x6e\x10\x73\xd4\x81\x8d\xe5\xa3\x20\xc5\xb1\xfa\x4a\x93\xaa\xb6\x6e\x06\xbf\x76\x81\x64\x80\x38\x4d\xd5\x26\x56\x0a\x16\x38\x28\x09\x2b\x87\x7c\x13\xd4\x0e\x8b\xd4\xc6\x54\xd1\xc6\x54\x24\xdf\xc8\x39\xf9\xfb\x01\xdf\xfa\xdb\x11\x0a\x2b\xd6\xa8\x92\x84\x7f\x1e\x2e\x99\x6b\xc7\x5f\xa1\x75\x27\xb9\x98\x77\x91\x8b\x36\xc4\x43\x4e\x07\x83\xad\xdc\x68\xb2\xab\x24\x79\x62\x96\x6c\x8a\x36\x4c\xab\xbd\xdd\x6a\x0e\xb2\xc2\xe9\x3d\x43\xc5\xa4\xd1\xce\x8e\x37\x39\xca\x2d\x85\xb6\xb4\x38\x43\xbe\x5a\x32\xef\xd5\x6d\xf0\xaa\x4e\x12\xa0\x9c\x73\x4c\xba\x32\x06\x4b\x14\xd0\x9f\x99\x73\xcf\x02\xc3\x0f\x6d\x87\xa1\x6e\x48\x93\x3c\x8e\xb8\xab\x72\x9b\xa8\xc4\x5a\x45\x06\xde\xae\xab\x15\x1b\x72\xf8\x3b\xb0\xfa\xb8\x81\x93\xe6\xa9\xe9\x2a\x2d\xfb\x51\x4e\x0f\x73\xd4\x1f\x61\xf2\x51\x3d\x8d\x31\x79\x95\xd3\xbb\x35\xf9\x94\x3b\xcb\xd8\x57\xf9\x9a\x9c\x46\xbf\xbf\x86\xbf\x9d\xe0\xf7\x65\x6e\x1c\xcc\x29\xa5\xaf\xf2\xf8\x5e\x7f\xba\xeb\x1c\x42\x3c\xd1\xd0\x87\x3c\x88\x25\x3e\x2b\xd1\xd7\x5c\xfb\xc1\x9c\xe6\xda\x7f\xe3\x53\x4e\x5e\xe5\x98\x30\x2f\xca\x8c\xb1\x53\x57\x4b\x34\x1e\xa7\x10\x16\xcd\x05\xa5\xb1\xb1\xd0\x04\xac\x08\x04\x28\xf8\xf5\xf3\xdb\xf4\xb5\xba\x6d\xc8\x60\x80\x23\x3f\x3c\x41\x5f\x33\x24\x28\x62\x14\xd2\x81\x4e\x85\x97\x37\x32\x15\x38\x68\x46\xd3\xe3\x4c\xe5\x53\x84\x68\xa6\xeb\x42\x8e\xd3\x0c\xd7\x67\xfc\x3f\xe7\xca\x4f\x48\xbe\x2d\xe4\xac\xe0\xcf\xd7\xdc\x4f\x5e\x07\x4b\xf7\x32\x47\x5f\x73\xeb\xa6\xa2\x03\x2b\xbe\xcc\xd1\x27\x57\x48\x38\x8c\x52\x5b\x14\xe3\x89\xd0\x1a\xee\x68\xb5\xb8\x2f\x10\x7d\x03\x8d\x9f\xda\x46\xb4\x85\x64\x30\x22\x25\xd4\x7f\xef\x6d\xad\x1f\xb8\xfa\x75\x6e\x32\xb5\xea\xa0\x19\x9e\x80\x11\x04\xf1\x10\x11\x43\x41\xae\x09\x15\x14\x68\x1b\x3c\xc3\x11\xee\x85\xee\xe2\x90\xac\xeb\xe2\x76\x5e\x65\x02\x12\x26\x9a\xac\xaa\x10\xfd\xdb\xa5\x5b\x55\xe1\xde\x5d\x10\x02\x13\x77\x76\xbc\x4f\x6d\x3c\x3b\x4f\x0f\x6b\xba\x06\x35\xd3\xb0\x62\x57\x2c\x2b\x3e\x56\x73\xad\x35\x90\x75\xd0\x93\xdd\xc4\x93\xfe\x75\x34\xcd\x83\x04\xa5\xf8\x4e\x3f\x18\xc4\x20\x40\x56\x0a\x45\x13\x89\x83\x73\xde\x80\x7e\x01\x16\x57\x1b\x0d\x59\x81\x2e\x0c\xd2\xd0\x99\xbe\xc5\x91\xd0\xcd\xad\x56\xe6\xc9\x8f\x36\x0c\x9c\x99\xb0\x95\xd6\xb6\x0d\x3b\x08\xfd\xe0\xcb\x6d\xbb\x39\xc2\x77\x81\x95\xea\x9d\x35\x00\x4e\x19\x81\xdb\x2d\x15\x0a\x2b\xfc\x11\xdb\xde\xbc\xd6\x69\x91\x58\x45\x7e\xbd\xcf\x2e\xe7\x4b\x4e\x47\xe4\x51\xae\x83\x4a\xe9\xbf\x3f\xe9\xbf\x3f\x87\x16\xc3\xbf\xe7\xc8\x38\x20\x58\x7d\xc1\xf6\xd8\x87\xd8\xbf\x86\x36\xae\x61\x44\x31\x97\x79\x76\x34\xe1\xd6\x23\x22\x49\xb8\xb3\x61\xe2\x3a\x6e\x90\x8a\x04\x06\x61\xc0\x3a\x63\x80\x39\x2f\x86\xbc\x15\xf3\xe8\x4b\x4e\x73\x39\x23\x41\x44\x87\x05\x40\x64\x73\xac\x8b\x22\x63\xad\x11\xf9\xc3\x1d\x3a\x6e\x23\xa7\x99\xa7\xb0\xd9\xe9\x79\x96\x5e\x65\x84\x81\x9d\x52\x89\xdb\xad\x51\xfa\x45\x8e\x8c\x8e\x26\xf3\x52\x65\x00\x68\x75\xd7\x47\xdb\x7b\x2f\xf2\x98\xa3\xda\x01\x17\xe1\x7c\x8b\x8e\xe5\x8e\x98\xcd\xe9\x98\x80\x37\xda\x33\x37\x12\xed\x50\xd2\x3d\x1e\x09\xf3\xde\x67\xb7\x19\x11\x46\xda\xf6\x9b\x23\x6d\x7f\xcb\x95\xd9\x1c\x40\x89\x1a\xc3\x23\x1f\x36\x88\x68\x0d\x79\xd4\x79\x59\xfc\x39\xb7\x99\xd5\xee\x82\xd5\xd3\x91\x7c\xad\x95\xb7\xfd\xe9\xd9\x9a\xff\xee\x1e\x3d\xcb\xd2\x50\xe8\xfb\x53\x3e\x7d\x94\x47\xfb\xfd\x53\x4e\x59\xfa\x53\x4e\x7f\xca\xb5\x31\x36\xf9\xc9\x73\x23\xfd\x7b\x8e\x7c\x40\xfd\x2d\x37\x03\x7c\x94\x7b\xa6\xd1\xd6\x6e\x84\x4d\xa3\x7d\x57\xc3\x00\xb4\xc3\xcc\x42\x69\xd4\xbf\x79\x4c\xa9\x1e\x8b\x87\x57\x05\xfe\x49\x02\xeb\x6f\x39\x65\xd6\x59\xc3\x40\x5a\x4b\x3b\x27\x57\xb7\xb5\x84\x48\x7e\x8b\x3b\xec\xf5\xd5\xeb\xdf\xf2\x4e\xcb\xf9\xdf\x7c\x73\xea\xdf\x4d\x11\x3c\x74\x78\x35\x3c\x68\x7d\x0d\x0e\xf3\x97\xf9\x1f\x01\x06\xeb\xd4\xc1\x4e\x05\x62\x38\xf5\xb4\x38\x7f\xf3\x9d\x72\x72\x24\x2f\x4f\xa1\x46\xe6\x31\xd3\x71\x5a\xdc\x9d\xb1\x3c\x2d\x1c\xd4\x7b\x9f\x99\x44\x92\x6c\xfe\x99\xcd\x9b\x19\xab\x28\xd3\x4a\xe5\xdf\x72\x30\x8b\x74\xf3\xce\x29\xef\xb0\x1f\xcf\x7d\x15\xb8\x76\x17\x6b\xa8\xf2\xb1\x98\x68\x57\x0b\x7d\x32\xf4\xd4\x9b\xb5\xd7\x2a\x2d\x55\x16\x34\xdf\x92\x34\x68\xaf\xd4\x6d\x01\xdd\x6d\xf7\x66\xa2\xcc\xd4\x1b\xaa\x4f\xd8\x8c\x96\x12\x63\x28\x06\x74\x16\x9d\x62\xa0\x4f\x9f\x7f\xd1\x40\xbb\x68\xd9\x48\xc7\xf5\x63\x4b\xe9\x59\x6c\x29\x9d\xc1\xd2\xa7\xb3\xa1\x7a\x20\x2c\x3b\x67\x95\x5e\x3f\xd9\x9a\xf7\x53\xbd\x53\xc0\xa5\xdf\x28\xe0\x6a\xdb\x7d\x17\x53\xd4\xd0\x82\x2e\x48\x2e\xe9\xf6\x42\x4b\x1e\xe8\x82\xd4\x2f\x1e\xe5\x6d\x8b\xcc\x56\x19\xad\x95\x41\xad\xb2\x0e\x37\x62\xee\x42\x52\x41\xa6\xad\x87\x5b\x87\xff\x87\xe7\x0c\x16\xe3\x35\x89\x7b\x91\xdc\x55\xd8\x16\x50\xa9\x7e\x23\x29\x43\x15\x31\xa3\xc0\x13\xc9\x1c\xcb\x66\x43\x8f\xc0\x59\x92\xcc\x00\x7c\xdc\xda\xe6\xb4\x4a\xf5\x2a\x34\xe4\x75\x85\xaa\xf8\xca\xc3\xab\x95\xf1\x9f\x8a\x2f\x43\x59\xd7\x99\xbc\xe6\xfa\x97\x82\xdf\x82\x84\xc7\x48\x7f\xa1\x8f\xf7\x71\xd4\x94\x97\xbc\xd8\x8b\x38\xff\xcb\x7f\xea\x0c\xbb\xde\x48\xe9\x4e\x2f\x98\x21\x6e\x22\x5d\x4b\x7c\x17\x1e\x47\x9d\xdd\xc0\x9c\x43\xb8\x98\x29\x43\x39\x69\xcc\x26\x90\x46\x9b\x8c\xeb\x4d\x68\xd4\xd2\xbf\xae\x50\xfe\x03\x8b\x9c\x13\x4b\x30\xda\xd5\x05\xfd\xb5\xb7\xf2\xb8\x73\xb1\x73\xb3\xd8\x39\xa9\xbc\x55\x65\x99\x5b\x55\x79\xa7\x4e\x36\xa3\x55\x15\xd5\x8e\x21\xdc\x1e\x96\xdf\xbf\xe4\x94\xc1\xe4\xfc\x77\xe5\x70\xe5\x3b\x74\x11\xb3\xd2\x3a\xca\x56\x7b\x57\xd2\x7f\xe4\xa4\x35\xf8\x94\xad\xb1\xdd\x24\xba\xcc\x86\x67\x39\x9f\x2b\xee\xed\x11\xf0\x3a\x2d\x08\xf2\x53\x15\x88\xac\xa5\xaa\x66\xf4\x4e\x64\xe7\x29\x23\xb3\x8a\xc9\xf6\x85\x4a\x6a\x5a\xde\xa6\x9c\xcc\xd9\x65\x9d\x56\x1d\x37\x16\x12\xf2\x26\xf7\xfd\x72\xa6\x48\xd0\x3b\x67\xfd\xa1\xab\x87\x95\x80\x6c\xf4\x2c\x44\x98\xbe\xda\x70\xea\x78\x1f\xbf\x82\xe4\x53\x3b\xaa\xa7\xa8\x8a\x9c\x9e\x18\xd1\xef\xaa\xa8\x03\xec\xdb\x5b\xf0\xcc\xf9\xa0\xcb\x53\x13\xae\x93\x67\x3c\x92\xc5\xaa\x52\x80\x86\x47\xb9\x6f\xf1\xc5\x48\x19\x6f\x7c\x86\xc6\x2b\xf9\x99\x62\xba\x88\xb5\xa0\xd7\x99\xb8\x7c\x8b\x81\xb2\xd5\xc5\xdf\x01\xe0\x68\xeb\x23\x6d\x28\xa9\xca\xbd\x63\x67\x48\xaa\x4c\x92\x47\xad\xb3\x99\xd3\x6c\xa8\xb7\xd1\x93\x06\xfd\x35\x47\x15\x91\x2f\x2e\x6b\xcb\xdc\x41\xc3\x22\x03\x53\x94\x9c\x54\x78\xfd\xe0\x69\xe6\x81\x0d\x44\x9e\x05\x0e\xea\x55\x86\xf6\xc6\x4f\xc8\x2e\x09\xd5\xfd\x59\x58\xab\xec\xae\xd5\xb4\x6a\xed\x92\xed\xa8\x4e\x91\x7d\x9f\xf4\x51\x47\x94\x48\x0a\x88\x78\x6e\xe3\x4a\xff\x88\xd7\xd8\x64\x7b\x13\x3e\xa3\x6c\xbf\xb2\xf4\x3b\x0b\x3e\x0e\x78\x97\x35\xd6\x59\xc8\x3d\xf3\x95\x2c\xf2\xfd\xe6\xd4\x31\xf9\xce\x14\x7f\x0a\x16\x1f\xb3\x4c\xa0\x63\x76\xa2\x46\x42\xf4\x44\x0b\xff\x50\x0b\xf0\x18\xf4\x8d\x4d\xb2\x20\x11\xed\x22\x5c\xab\x3f\xb7\xe0\x9a\x1e\x33\x07\x8a\x42\x67\x24\x3b\xf1\xcf\xc5\x3c\xf3\x7d\x17\x01\x10\x05\x6d\x7d\x62\x6f\x88\x10\xd8\x42\x1d\x79\xe5\x5b\xef\xff\x15\xd4\xb1\xc7\xe3\x13\x3c\xad\x8e\x47\x27\x29\xe2\xed\x91\xc9\x91\x78\x93\xbb\xfc\x9f\x1a\x8a\xda\xe3\xef\x0f\xe8\x22\x0b\x0d\xf3\xbf\x94\x08\x43\x24\x82\x67\x2f\xaa\xe9\xfe\xb3\xb4\x0a\x02\x12\x30\x88\x35\x80\x31\x91\x35\x9e\x3e\xaf\xa6\xfb\x4f\xa3\x1a\xaa\x95\x5f\x3d\xaf\x08\xef\xb9\x63\xa6\xa2\xba\x95\xad\x8e\x31\xe1\xc8\xe5\xa5\xf2\xbf\xa9\xd6\x6b\x5f\x4a\xb0\x8c\x06\xdc\xe1\x37\x52\xb6\xc8\x3a\xdf\x87\x24\xa2\xeb\x4a\x43\xc8\x45\x14\x9c\x12\xf5\x39\x2a\x2b\xe6\x20\x8d\x7d\x77\xc4\x00\x50\x65\xc9\x0d\xc8\xba\x4c\x51\x27\xbd\x0f\x7c\xbe\xa1\x28\x4a\x92\xfb\xae\xa1\x44\xb2\xd8\x8f\x72\x25\x2f\xd0\x6a\x27\x28\xc1\x92\x67\x1e\x91\x32\xa6\x71\xbf\xe4\xa4\x4d\xf8\x7e\xc9\x2d\x37\xb8\xc1\x7d\xc9\x8c\x75\xb5\x1a\x81\x92\x20\xf2\xff\xb4\xb0\x05\x36\xe2\x1d\x77\x37\xc6\x26\x76\x45\x16\x55\x50\x97\x72\x43\x73\x94\x11\x0e\xa2\xf0\x32\x24\x60\x73\x52\x7a\xe4\xab\x22\x3e\x1b\x62\x25\x7d\x3a\x5c\x45\x81\xef\xd6\xc6\x57\x47\x79\x54\x65\xf4\xae\x62\x99\xf1\x61\x48\xcb\x9c\x34\xb5\x8d\x7a\x93\xfe\xae\x7e\xea\x97\xea\x97\xbe\xaa\xd5\x8f\xb7\xcb\x4b\x56\x41\x8a\xa4\x9f\x33\x3e\x2f\x98\x2e\x7e\x97\xdd\x96\x8d\x08\x6a\xbe\x67\xcb\x52\x3f\x1a\x68\x30\xbf\x16\xfa\x49\xc1\x84\x7a\x7e\xcd\xce\x9a\x73\xf0\x94\xb7\xd5\x8c\xa0\xcd\x54\x58\xb0\xaa\x62\x73\xbf\x0e\x04\xd6\x84\x14\x8b\xe9\xef\xf9\x9a\x9c\xdf\x3f\xb9\x45\xe6\x4f\xae\xf4\x27\x97\x67\x9d\x93\x8b\x9d\xaf\x7e\x18\x57\x57\xf7\xe0\xea\xd6\xba\x85\x8e\x53\xee\x8a\xb4\xd7\x9a\x5d\xd6\xb0\xa6\x42\x83\x1e\x2d\xda\xeb\xc0\x86\xe4\x5e\x5c\xb6\xf6\xb7\x29\x9e\xb5\x42\x11\x5d\xed\xab\x69\x23\x81\x53\x41\xaa\x98\xbb\xf1\x28\x5c\xa1\x28\xdc\xea\x9f\xa4\x70\x59\x07\x81\x2b\xbe\x47\xe0\x56\x6d\x02\xd7\x40\x5f\x87\x7e\x9b\x39\xe9\x3d\x5b\x93\x8e\xfb\x51\x2d\x91\x26\xae\xb3\x08\x62\xeb\x2c\x84\xd8\x77\x1d\x10\xdb\xb5\x67\xc0\x4b\x90\x8a\xf2\xe3\xd1\x89\x64\xa5\x8e\xc7\x36\xbc\x5b\x9e\xa1\xf8\x46\xe0\x3f\x78\x23\x40\x40\x9d\xae\xcb\x80\xaf\xd7\x98\xc0\xce\x63\x52\xad\xa3\x83\xd4\xb6\xb4\x67\x99\xba\x5a\xa8\x38\x1e\x9d\x38\x10\x10\xc7\xe3\x13\x72\xbc\xc8\xd0\x45\x0b\xba\x8f\x05\x61\x27\x18\x72\x78\x90\xab\xfb\x0f\xe5\x7c\xf3\xa1\xcc\xba\x0f\xe5\x2c\x6b\x9d\x9c\x26\xb3\x47\xe3\x32\xf3\x41\xf9\x6f\x16\xe3\xf0\xcc\xed\x5f\x3b\xd8\xd4\xdf\x72\xf4\x8f\x5c\x1d\xb0\x7f\xc3\xb6\xaa\xd6\xba\xf7\x35\xfb\xbf\x67\x5f\xf5\x30\xbb\xf7\x75\xfe\xbd\x7d\x3d\xfb\x3f\xb9\xaf\xbf\x3c\x70\x5f\x7f\xf9\xb7\xee\xeb\x2f\xff\xdf\xd8\xd7\x5f\xfe\xa5\x7d\xbd\x56\x79\xac\xc8\x8d\xfe\x7b\x90\x05\x1a\xa8\x6f\x01\xed\x7d\x58\xa0\x3d\x65\xde\x01\xff\x8d\xf0\x84\x07\x86\x2c\x83\xd7\x07\xef\x0e\x8e\x0e\x5e\x43\xde\xa6\xb8\xc0\xf7\xe8\xf4\xcd\xa0\x7d\xef\x0f\xeb\x6f\xef\x31\xec\x53\xe4\xff\x0a\x3d\x4f\x58\xe4\x79\xc2\x02\xcf\x93\xf0\xad\xe7\xf7\x92\x85\x49\xb9\x3d\x43\x82\xbd\xd4\x0f\x1b\x1a\x71\x0f\x48\x50\x08\x71\x64\x55\xeb\x2a\x99\x98\x97\x8d\xd3\xbe\x6d\x67\x0e\xd5\x5b\x0f\x46\x5e\xc1\x5a\xf4\x47\xda\xf0\xe5\x49\xda\xea\x6e\xa0\x33\xd8\xaa\x0b\x54\x3b\x03\xee\x04\x63\xf8\x7e\xbb\xe3\x9d\xf4\x9e\xbc\xf9\x47\x99\xb6\x45\x38\xc8\x0c\x44\xdd\x64\x90\x0e\xdb\x6a\xa8\xc1\x0d\x4a\x2f\x9a\xce\x72\x22\xe8\x0d\x47\x4a\xd0\x72\xa8\xad\x47\xf0\x6a\x65\x2b\xd9\xa0\x48\x5e\xf4\x8c\xf1\x68\x7b\x2f\xf1\x1d\xe4\xb6\x15\xb0\x01\x23\x8a\xae\x33\xca\xf0\xe4\x5b\x86\xae\x25\x05\xbc\x96\x3f\x25\x4c\xde\x70\xa4\xbd\x89\xc0\x17\x57\x4b\xa5\x1f\xd6\xae\x6c\xc3\x9b\xe8\xc7\xcc\xa8\xe6\x5d\x58\x2d\x1b\x39\x2c\x49\xf6\x94\x87\x56\x76\x9e\x24\x3b\xee\x71\x6c\x9f\x27\xd8\xfb\x0c\x9a\xb6\x2d\xbf\x32\x4b\xc8\xfa\x94\x5e\x67\x4e\x7d\x2a\x97\xea\xc0\xfc\x56\x03\x80\xb1\x8d\x88\x0e\xb1\x23\x0c\xa0\xe5\x0b\x64\x07\xb0\x5a\x0d\x2e\x58\xa6\xd2\x09\x24\xc9\xe0\xac\x9c\xdf\xea\xe7\xfe\x15\x57\xc6\xfe\xbe\xda\x1e\xeb\xd8\x14\x37\xd9\x44\x4c\xb0\x3e\xb0\x44\xa8\xa5\xf3\x37\x48\x76\xa2\xc6\xa0\xd2\x6d\x28\xb0\x87\xed\xb4\x4a\x37\xd4\x76\x7f\x84\x30\xeb\xc6\xf2\x40\xa5\xca\x6b\x09\x91\x9f\x62\x08\xd3\x62\x16\xd7\xeb\x95\x08\x3a\x9a\x30\xa5\xcb\x07\x6b\x11\xcf\x2e\xc5\x1c\x35\xc8\x84\x9e\x2f\xd0\xe0\x4f\x8f\xc0\x88\x01\x1b\x1e\x4c\xe0\x3b\x05\x03\x2c\x9c\x88\xb1\xac\x12\x8f\x1f\x03\x40\x0c\x1e\x0d\x14\x79\x3e\x78\xd4\xb7\x4f\x53\x78\x5a\xad\xc4\xd6\xd6\x3a\x1a\xd4\x5a\x63\x3b\x1d\xcf\xeb\x26\xa3\xd7\xd9\x14\xba\x71\x46\x61\x7e\x87\xca\x65\xa0\xad\x0c\xff\x94\x21\x18\xe1\xb5\x8f\x3c\x55\xae\xd7\x2c\x32\x01\xf8\x78\xcd\x59\x45\xbe\x86\xd8\xf5\xa5\x27\xf1\xd3\x36\x12\x56\xfb\x3d\xfd\x08\xae\x60\x80\x6c\x49\x85\xd3\xa3\x1c\xb6\x1e\x2a\x41\x89\x67\x18\x94\xf9\x1e\x05\x1c\x1c\x48\xe5\x4d\x67\xf9\xed\x8a\x2d\x6c\x1c\x61\xd9\x4c\x29\x6f\x35\x4f\x93\x9f\xcb\x12\xa7\x76\xff\x9a\x05\x5e\x64\x2b\x3a\x26\x7a\xa4\x5a\xdf\xae\x2c\x3d\xd2\x28\x74\x58\x1c\x6a\xcc\x36\x90\xd0\xc7\x7b\xe3\xa7\xad\x10\x2d\xcf\x69\xd9\x11\x83\x8e\x8e\x30\xf9\x8b\xea\xad\xf4\x65\x18\x9f\xb3\x96\xe1\x81\x55\xda\x6a\x9e\x9a\xfb\x48\xbb\xcb\xd8\x3a\x5b\xad\x8e\x0a\x94\xd9\x48\x26\x7d\x0a\x22\x51\x17\x14\xd1\x8a\x10\x38\xb8\xf7\x66\x15\xf3\xaa\xf2\xa0\xea\x14\x21\xe6\x7b\x8c\x29\xaf\x03\x6d\x30\x00\xd6\x71\xb9\xb6\x7d\x84\xf5\x27\xcc\x33\x88\xd1\x5b\xcd\x60\x09\x21\x36\xc7\x1e\x51\xfe\x44\x34\x23\x6f\xd5\x44\x33\x3d\x51\x6b\x93\x96\x99\x80\xcb\xa4\x7c\x9e\x27\x09\x2a\x69\x16\x22\x02\x82\x2c\xa7\x0a\xf6\x42\x7a\x06\x78\xca\xd3\x3f\x2a\x8c\x4a\x52\x41\xa8\xe0\x0a\xbc\x6d\x61\x50\x78\xaa\x57\x3a\xc7\x69\xbc\xe3\xca\x6d\x31\xb3\x0e\x6f\xf7\xcc\xc2\xb3\xce\x8a\x36\x29\xbc\xd0\x18\xe4\xed\x8a\xd0\x57\x7b\x54\x3a\x04\xe1\x58\xce\x13\x4f\xdb\xe6\x14\x31\xc4\x10\x3b\x09\x9c\xbe\xcf\x3c\x37\x35\xcf\xb0\x2b\x0b\xb3\xb3\xc9\x03\x61\xc1\xc7\xb9\x1e\xd9\xed\x67\x7a\x48\xe0\x8f\x14\xfa\x3f\xae\xe8\x78\xfb\x99\xd7\xf4\xfb\xac\x9d\x60\xf5\xb6\x44\x3c\x0a\x41\x60\x19\x3d\xba\x2c\x91\x00\xeb\x5d\x7d\x12\xf9\x3f\x75\x12\xf9\xff\xb9\x93\xf8\x3a\x8b\x1c\x98\x60\xba\x66\xee\xfd\xd1\xe4\xba\x44\x42\xdf\xd4\x60\xcf\x94\x2f\x90\x9d\xac\x35\xf2\xb2\x21\x3b\xdc\x92\x23\x4f\xa6\x67\x4c\x6f\x5a\x05\xde\x62\x6c\x63\x72\x65\xfc\x65\xc9\xb5\x7e\x52\xc8\xad\x3f\x9a\xf8\xf6\x69\x3e\x96\xf0\xfa\x26\x4d\x6c\x03\x37\xc9\x74\xd0\x8a\x66\x62\x62\xd8\xe9\xc8\x11\x64\xa6\xfd\x31\x37\x07\xa6\x98\x59\x48\x9a\x4d\x67\xb4\xcc\xd1\x0c\xa7\x33\xb5\xdf\xb3\x2e\x98\x30\xb6\xee\x7c\x63\xe4\x07\xb2\xe8\xcc\x86\xb9\x21\x22\x44\xb6\x29\x22\xc4\x64\xd1\x1d\x13\x22\x7b\x40\x20\x91\xee\xef\x36\x7e\xb0\x5a\x81\xe6\xb6\x5a\xad\x60\x1d\x70\x92\x9c\xc9\x8d\x91\xd8\x6c\x86\x89\x0b\x2e\x38\x6f\x69\x8f\x33\x1d\x7e\x61\x4e\x16\x20\x98\x27\x99\xdc\xca\x22\xae\x47\x74\xf3\xf3\x3e\xa5\xc5\x6a\xe5\xa2\x95\xaf\x56\x79\x3e\xed\x8a\xfe\xd6\xab\x55\x58\x0e\x09\x1e\x12\xdd\xb4\xdb\xc4\x04\x35\x34\xcf\x57\xab\x73\x55\xab\x21\x15\x99\x83\x0b\x0f\x9e\xa2\x1f\x5a\xbb\x7b\xe2\x69\x64\xdd\xf1\x34\xba\x37\xb2\xab\xd1\xae\xd2\x0d\x51\x34\xee\x1d\xdc\x3d\x2f\x11\xde\xd4\x5e\x57\xb4\x0b\x11\x46\xbb\xc0\xe9\xf7\x26\xb3\xf9\x5b\x12\x9d\x43\xda\xb2\xac\xa0\x05\x26\xe6\x70\x56\xc4\x00\x4b\x41\xec\x01\xa5\x33\x52\xd1\xe6\x5f\x1a\x44\x45\xfb\x63\x8d\xb8\x22\x3c\xa1\x6c\xaa\xda\xf8\xc2\x0e\x49\x18\x9f\x8a\xc0\x1b\x7d\xda\xa4\x7f\x2e\x8d\xab\x70\x23\x21\xcf\xe1\x93\x16\xfe\x40\x11\x86\xc1\x3f\x8a\x4e\x08\xea\x44\x17\xe8\x3e\x0c\x83\x7f\x10\x95\xe0\xff\x9b\x30\x49\x07\x76\x70\x80\xe1\x63\x91\x16\xb6\x21\x5e\xd3\xf3\x7f\x0e\x8b\xb4\xda\xc4\x04\xd5\x31\x16\x29\xc8\xfc\x9f\xc0\x22\x6a\xa9\x1f\xb4\x62\x26\xe4\xcf\x43\xf0\x88\x69\xb6\xb3\x18\x55\x30\xd4\x1f\x40\x27\xae\xb9\xcd\x6f\x75\xab\x0f\xc1\x2a\xa6\xb9\xd6\xa9\xfc\x21\xf8\x8c\xbf\xdf\xde\x7b\x12\x22\xa6\xce\x95\xb4\xdd\xab\x2c\xde\x11\x89\x9a\x24\x1d\x56\xc8\xab\xd5\x3d\x03\xed\x7f\x7f\xa0\xff\x7c\x4f\x72\x4a\x0f\xc0\x97\xf3\x2e\x7c\x39\x8f\xf0\x65\xfd\xff\xc7\xb5\x01\x34\x6e\x08\xee\x77\x59\x40\x5c\x7b\x96\xfe\x11\xaf\xa2\x79\x04\x1d\xfa\xb8\xcb\xf7\x41\xa5\x39\x49\x92\xbe\x15\xe9\x94\x49\x72\x03\xa1\x2c\x48\x7f\x8c\x1d\x1f\x32\xa9\x82\xdb\xe3\x34\x73\x79\x8d\xb4\x21\x5c\xd6\x7d\xb8\x3b\xf1\x34\x88\x59\xb4\xe5\x8f\xe6\xec\x3d\xdd\x5c\xc8\x1d\x38\x62\x1a\x38\x07\xc5\xa1\x85\xa2\x03\x49\x46\xe7\x96\x77\x50\x2f\xa1\xb0\x01\x0e\x4a\xf3\x17\x8d\xaa\x13\x2b\xf9\x54\xec\x2c\x6f\xda\x23\xdb\x92\x5b\xd9\x3f\x32\x3f\x6b\xac\x0b\x08\x67\x15\xf8\x5a\x4f\x30\xbd\x2a\xd1\x88\xc4\xa5\xad\x02\xe5\x5c\xa2\xf3\xf0\xa4\xf6\x31\x49\xf4\xe7\xe6\x42\x95\x5b\xa0\x7c\xa4\x42\x67\x3f\xe5\xb1\xf3\x6b\x46\xbe\x64\xe4\x51\x46\x7e\xcb\xe8\x5d\x24\xd0\x22\x15\x13\xd5\xad\x0a\x01\xef\x39\xf3\xfc\x14\x9a\x4d\x90\x92\x1a\xce\xde\xd9\x30\x68\x2a\x80\xbe\xb7\xa6\xfd\xa4\xd1\x3c\x0f\xaa\x3a\xa1\x08\xaf\x56\xe6\xcd\x76\x92\x61\x67\x57\xc0\x1c\xfb\x19\x87\x5e\x25\xd5\x14\x35\xb4\x3f\x8a\x78\xb9\x27\x7b\xd6\x5c\xc9\x79\xd7\xb6\x4e\x88\x55\x3f\xe4\xc3\x85\xd6\xd7\xac\x56\x7d\x55\x60\xf3\xbc\x64\xb2\xd6\xd1\x45\x5e\xbf\xb1\x55\x50\xb6\xa2\x63\xf0\x93\x7a\x9f\x93\x71\x92\x39\xc6\x14\xb8\x3e\x2b\x17\x71\xcd\x26\xc9\x51\x86\x24\x99\x04\x15\x1a\xef\x0d\x41\x39\x44\x85\x01\x8b\x26\x32\x8a\xe2\x94\x08\x08\x18\x8b\xb6\x13\xb5\xbe\x4a\xa2\xe9\x05\x90\x0c\xdd\x3f\x8c\x83\x11\xfc\x9f\xea\x5f\xc6\x17\xd3\x79\x5c\xb1\x09\xb6\xd2\x8a\x1c\x1c\xd0\xc2\x80\x4d\x88\xcb\x11\x35\xa4\x6c\x85\x4d\x11\x24\x77\xf1\x99\x5a\x87\xe0\xb7\xcc\x9e\x9d\x9c\xd8\x7c\x74\x25\x75\xce\xa0\x9b\xfc\x60\xd4\x47\x4e\xae\x07\xa9\x8b\x9c\xf5\x5e\xbc\xeb\x72\x0d\x4b\x2f\xd1\x16\x36\x83\xd2\xeb\x9b\x07\xeb\xcb\x55\x94\xa9\x50\x59\xb0\x79\x89\xc1\xc3\xfd\x47\x16\x18\xc3\x08\xd5\xa3\xdc\x1e\x1d\x35\x88\x36\x66\xbd\x9b\x09\x6e\x4c\x6f\x1c\xac\x79\xa3\xf5\x2e\xe5\x08\x4b\xdf\xbb\x54\x10\x6e\x17\xba\x24\xdd\x59\x30\x46\xf7\x6d\x00\x27\xa5\x75\xe3\x0a\xd1\x9c\xb7\x1b\xbc\x8d\xc8\x82\x0d\xe1\xeb\x7c\xe1\x56\xf9\x9f\x00\x5e\x0b\x7a\x24\x90\x65\x18\xd8\xc3\xff\x37\x43\x37\x0f\x6e\x4f\xd3\xcf\x8f\xec\x81\x77\x08\xee\x5d\x66\xb5\x3d\xe1\xc6\x78\x79\x87\xb4\x84\xae\x25\x9a\xea\xca\x53\x42\xf5\x35\xbd\x29\xa9\x02\xef\x6a\x24\x2e\xa4\x02\x13\x9e\xdb\x7d\x0a\x0c\x49\x7f\x8f\x68\x03\x45\x13\x44\x07\xd4\xb8\x05\x64\xb1\xa3\x12\xbd\xcb\xeb\x9f\xb2\xd9\xb7\xeb\xac\x9a\xd7\x90\x45\x44\xde\xd9\xd6\x02\xc6\xfe\x3c\x14\x59\x25\x74\xe2\x91\x22\xab\x45\x5a\x11\x91\xe5\x45\xca\xe1\x8f\xdb\x83\x74\x04\x05\x90\x91\xb6\x24\x9e\x3d\x75\xbe\x4e\x51\x36\xf4\x3a\xa3\x82\x64\x43\xdb\xbe\x5a\x7f\xaf\xc0\x76\x48\x47\x24\x03\xe5\x28\x90\x86\xb2\x71\xca\xf5\x83\xeb\x16\x2a\x99\x8e\x69\xa9\xbf\xd0\xea\x54\x5f\xba\xfa\xd7\xc8\xbc\x30\xba\x1c\x4b\x08\xd5\x68\x5d\x4b\x49\x0e\xde\xe7\x39\x04\x96\x32\x7a\x85\xe0\xb4\xea\xbb\x11\x55\xde\xad\x8a\x31\xae\xe8\x38\xa9\x56\xdb\xa1\x0c\xf0\xc9\x6e\xe0\xc3\xa5\x0e\x9f\xb9\x76\x99\x7f\xed\xb2\x54\x9d\x3b\xe3\x8c\xea\x0e\x92\x75\xcc\x55\x2a\xb1\x6e\x74\x9c\x24\x00\xa2\x1c\x4f\x02\x9f\x5a\xf5\x49\xfc\xca\x36\xa1\x7d\x62\x59\xe8\x13\xcb\x88\x45\x37\x81\x4f\x2c\xc8\x0f\x6c\x02\x00\xdf\x2b\x96\x75\x7a\xc5\x32\xeb\x15\xcb\x9c\x57\xac\x6b\xc0\x4b\x1f\xc4\x62\x8f\x58\x0b\xf6\x1e\xea\x58\x57\x09\x1d\xcb\x71\xa8\x2b\xbf\x6a\x21\xae\xae\xf3\xad\xe6\xac\x55\xe9\xa5\xce\x66\xbc\x28\x2b\x80\xc7\x01\xac\x39\x37\x6b\x4e\xca\x20\x88\x12\xb7\x41\x17\x21\xea\xa9\x9f\xea\x43\x4f\x10\xdc\xa9\x41\xd7\xc1\x31\xe1\xd4\xde\x16\x13\xe7\x1b\x50\xe2\x29\x2a\x6d\x07\xbe\x16\x0d\xa2\x5d\xdb\x4f\xbc\xab\x06\x5e\x92\xdf\x33\x24\x69\x46\xc0\x90\x79\xe0\x22\x80\x83\x5c\xca\xe6\x6c\x99\xb9\xa8\x6b\xa0\xb3\x47\x33\xb1\x72\x12\x85\x74\x2d\x37\x4e\xce\x29\xfe\x4a\x13\x24\x87\x96\x76\xcc\xa5\x8f\xa9\x21\x63\x00\x5b\xab\x71\x8f\x34\x5e\xbf\x6f\xe8\xa2\x3c\x67\xe2\x82\x55\x83\xd4\xcc\xd5\xd9\x6e\x68\x7f\x84\xae\x6f\xad\x9b\x7f\xc7\x6e\x3b\x4c\x1f\xd1\xfc\x7f\xb1\x38\xc0\xbb\x03\x45\x98\x6e\x29\xca\x4b\x35\x31\xd8\xa2\xed\x68\x37\x52\xb6\xda\x59\x81\x2a\xcb\x5f\x44\xc9\xb3\xc2\x64\xd5\xc1\xf1\xd7\x1f\x78\x07\x30\x0e\x9c\xb4\xe3\x62\x2c\xf9\xae\xeb\x6a\x83\x25\x1d\x65\xb7\x37\xa2\xa7\x3c\xca\xc3\xda\xb0\xd8\xc8\xa8\xde\x21\xf5\x4e\x15\xa8\xe5\xec\x3e\xde\x4f\xa4\x4d\x42\x20\xdd\xb8\xda\x7f\x6e\x5b\xb0\x28\x34\xad\xcf\xdf\x45\x3e\x9f\x33\x3e\x48\xc1\xbe\x40\xa2\x5a\xe7\x0a\xee\xc3\xa9\x1f\xf5\xd4\x0f\xf7\xc9\x69\x14\xe2\x94\x9b\x54\x48\x4c\x5f\x16\x92\x19\x0d\xc7\x1a\xa6\x9f\x2e\x54\x1e\xf9\x41\xca\xe3\x11\x54\x1b\x50\x00\x0f\x46\x50\x6d\x38\xf0\xd5\x54\x78\x6e\xe1\xb2\xe1\x60\x48\xea\x39\x18\x57\x5a\x85\x4b\xea\xf9\x23\xdf\x7b\x6d\x4d\x6c\x1c\x48\x67\x1d\xb4\xad\x63\x68\x3c\xd1\x7f\xf7\x4c\xd8\x11\x13\x5a\x43\x47\x0f\x82\x3f\xcf\x74\xa9\xfe\xc8\xc4\xdf\xd8\xf5\xad\x7c\xb4\x81\x8e\x29\xba\x35\xb2\x62\x9c\x24\xe7\x25\x52\x0c\x97\x49\x45\xa3\xeb\x7c\xce\x11\x8e\xf2\xa2\x02\x82\xf5\x62\xe0\x87\xec\xb3\xca\x55\x67\xb2\xb8\xc5\xcc\x76\x5c\xa0\x91\x63\xc8\x55\xba\x93\xb4\x5a\xf5\x5f\x65\x10\x86\xb2\x25\xe1\x71\x63\xdd\x4b\xdf\xe4\x08\x22\x70\x74\xc4\xe9\xc8\xb5\xa8\x3c\x3c\xb2\xea\xc9\x9f\xc5\x17\x2d\x4c\x21\x95\x4a\x31\xa2\xb4\xb1\x46\x41\xdc\x52\xc8\xba\xb4\x7b\x55\x18\x37\xc2\xb5\x18\xa7\xa7\x7d\xe2\x1c\xe7\xb9\xf6\x18\x66\x71\x10\x11\x98\x2c\xbe\x0b\xe5\x39\x76\x0a\x4a\x96\x13\xab\x10\x4d\x80\xc5\xe3\x43\x7e\x42\x05\xa9\x8e\x8f\xf8\x09\x6d\x24\x19\x09\x87\x23\x5f\x54\xd9\xd2\xe4\x44\xd7\x3a\x00\xf5\x83\x2d\xcf\xe4\x91\xf9\xab\x40\x83\xa2\xcc\xe6\x03\x1b\x35\x48\x9d\xaa\xab\x7c\xce\x4a\x5d\x35\x6b\xe6\x79\x39\xd0\x14\xcd\x68\xc2\x9e\xff\x9d\xf9\x09\x2f\xff\x2a\xd0\xdf\xd9\x31\x3b\x89\x5a\xa8\xcb\xa6\x9a\x31\xd5\x03\x93\xeb\x10\x77\x91\x2f\x4d\x96\xfd\x7c\x99\x9d\xdb\x4c\xf0\x39\xff\x16\x7d\x44\x36\x0d\x72\x51\x56\x4b\x55\xb7\x62\x35\x13\xb6\x6e\xdd\x9c\x2d\x73\x11\xd7\x9e\x33\x79\x5e\x6b\xf5\x81\x28\xcf\xcf\x0b\xd6\x1a\x12\xbf\x6c\xc4\x20\xfd\xc6\x50\x45\x1a\xd5\x56\xce\xaf\xb2\x22\x87\xae\x49\xc1\x11\x27\x83\x92\xab\x84\xe7\x83\x70\xba\x90\xef\x7c\x90\x56\xc3\xd3\xeb\x2a\xbb\xbc\x34\xde\x13\x77\xd7\x59\xfd\xbe\x29\x44\x7e\x59\xb0\xb4\xdf\x6f\x86\x4b\xfd\x63\xfd\x43\xcd\xdb\xd8\xde\xe9\xcb\x07\x0e\x6e\x6d\x90\x60\xd1\xcb\x79\xaf\xe4\x28\x97\x5f\x69\x3e\xa9\xc1\x92\xed\x1c\x5e\x64\xf5\xc7\x6b\x2e\x21\x89\x55\xe2\x16\x15\xd8\x04\x5a\x6b\x8e\x8b\x93\xc9\xc0\xd0\xc9\x03\xf0\x47\x6e\xc7\x82\x9a\x4d\xab\xa1\x1c\x18\x1c\x67\x48\xa3\x3d\x03\xb7\xd4\x63\xf7\x25\x99\x9d\xe0\xb4\x1d\x30\x6a\x96\x24\xf1\xa7\x83\xc1\x56\xfb\x6b\x59\x78\x82\xd3\xc3\xf6\x48\xcd\x31\x9e\x25\x09\xcc\xbc\xc0\x6b\x13\xa3\xcd\xc0\xbe\xda\xcc\x6b\x26\xef\xf5\x8f\xb0\x6a\x60\xa7\xd8\xb9\xaa\xaa\xd6\x67\xf9\x7f\xd7\xae\xaa\xf3\x73\x09\x12\xd4\x34\xa4\x5c\xba\x34\x06\xcd\xb0\xe4\xaf\x8a\x1c\x92\x64\x55\xc3\x92\xcf\xe4\x33\x9d\x71\xbc\x86\x38\xb9\x61\x8c\x0f\x2f\x03\x68\x8c\xe7\x54\xd6\x34\x3d\xaf\x82\xee\x43\xd4\x1d\x67\x8c\x99\xf2\x21\x44\x8b\x7f\xad\xa3\x2b\x81\x6f\x52\xc3\x61\x15\xdf\x43\xe4\x2b\x5d\x32\x1d\xd4\xb3\x2a\xbf\x04\xfd\x5f\x0e\xc6\x44\xc5\x50\x79\xdb\xea\x80\x4c\x68\x30\xcf\xaf\x06\x10\x34\x9c\xb3\xea\xe7\xa3\xf7\xef\xe8\xe0\xb9\xfa\xe6\xc5\xf3\xff\xfd\x27\xfd\x34\x20\x8a\xca\x5f\x96\x57\x0c\x4c\x24\x11\xf3\xed\x25\x71\xda\x11\x5d\x76\x98\xd7\xd3\x76\x77\x39\xb9\xcb\xeb\x54\xbe\x5c\xe3\xb4\x63\x38\x39\x26\x66\xed\x29\xf8\x58\xa1\x82\x32\x52\xd9\xc3\x33\x2d\xec\x23\xed\x8f\xe0\xda\xfd\x03\xa2\x27\xc1\x03\x55\xbf\x31\xc6\x69\xab\xe9\x0f\x87\x2a\xe6\x17\xd3\x18\x93\x01\xc6\xac\xc8\xaf\xc6\x96\xd1\xb3\x6b\x65\xa4\xa0\x99\x3c\x38\x15\xfe\x67\x30\x2a\xc3\x10\x0c\xf0\xfb\x58\x75\x46\x47\x93\x99\x87\x55\x67\x16\xab\xce\x4e\x08\xc3\x93\xa8\x95\x0e\xcc\xda\xee\xea\x81\xd8\x95\xf9\xd8\xb5\xdd\x4a\x0b\xc3\xb2\x10\xc3\xb6\xbf\xe8\xc4\xb2\x1d\xc3\xb3\x98\x16\x62\xbd\xcd\xe8\x81\x7e\x0a\xd0\x1a\xbb\x1f\x29\x9a\x03\x39\xa3\x9f\x98\x17\xf7\x2e\x3c\xba\xec\x7e\x84\x5c\x79\x08\x59\x67\xc1\xab\xc8\x1d\x84\xc9\x34\x9e\xb5\x3f\x36\xa8\x00\x53\xeb\xc9\x7d\xfd\xb1\xc9\x19\xd4\x32\xa3\xd5\x1a\x10\xf7\xcc\x58\xef\xcc\x80\xb4\x6d\x24\x46\xaf\x25\x0a\xaf\x63\xc4\xd8\x60\x13\x33\xa4\x3e\x6e\x4e\x26\x83\x5a\xdc\x16\x4c\x9e\xa1\x66\xca\x39\x62\x64\x81\xd3\xc1\x5c\x76\x56\x95\x4d\x5d\xdc\x1e\x32\xf1\xd6\x9c\x78\x5d\x0b\x90\x11\x5a\xd0\xc5\x74\x31\x3c\x3d\xbd\x10\xcb\x42\xaf\x03\x4e\x92\x3f\x98\x6e\xc2\xbf\x19\x9a\x8e\x9b\x61\x31\x0d\xd3\x51\xe4\xab\xd5\x40\xfe\x5d\xe0\x24\xf9\xd5\x34\xd2\xba\x15\x16\xfa\xe5\x60\xb0\x25\xdf\xd7\xcd\xe5\x65\xc5\xea\x5a\xdf\x11\x07\xf3\x1c\xd4\x07\x5f\xb2\x8a\xeb\x7c\x1a\x4d\x92\xd8\x5a\x3f\x83\x92\x25\x2f\x79\xf4\x3e\x6b\x44\xf9\xa6\x9c\x35\xb5\x2e\x40\xad\xcb\xa4\xc1\x7a\xd6\x0b\x7d\x97\x34\x46\xd3\xb1\x48\x92\x7f\x20\x46\x1a\xb2\x20\x05\xbe\xe7\x82\x61\x70\xc1\x30\x52\x91\xfe\x78\xf3\x05\xc3\xe0\x82\x61\x9d\x20\xac\xfa\xab\x54\x7c\xd6\x24\x81\x1c\x10\x2f\x85\xa8\xf2\xb3\x46\x30\x34\x80\x62\xb8\x0e\xaf\x18\xd2\xb5\xf0\x06\x70\x77\x88\xd1\x03\x6e\x7d\xc9\x20\x6e\xfa\xc0\xd3\x53\x39\xe2\xb0\x8e\x1c\xbe\x1d\x8a\x86\xc2\xdf\xd4\x88\xda\xb5\xc3\x1a\xde\xd5\x7a\xdf\xcd\x38\xf3\x6e\x46\x16\xdc\x8c\xe7\x0a\xd1\x76\x5c\x82\x3c\x48\xf4\xd2\x61\x1f\xd9\x62\x72\x9e\xa4\x2a\x5b\x79\x9b\xd2\x7f\x94\xa1\x11\x69\x99\xb5\x4b\xd4\x61\x68\xfa\x76\xba\x96\xca\x4b\x54\x71\x3f\x85\x1f\x33\x21\xa4\x8b\xc2\x9f\x86\x2c\x14\xa9\x5a\x76\x3e\x5c\xdf\x4d\xea\xae\x87\xe5\x55\x32\x8a\x0e\x2b\x28\xc4\x29\xfa\x1e\x5d\x80\xf5\x15\x78\xc4\x6e\x20\x6e\x22\xaa\x30\xd6\x5d\xf8\xd7\x1d\xef\x58\xc9\xb1\xe5\x05\x8b\x12\xbd\x07\x0f\xa5\xd8\xba\xa5\x4b\xef\xd8\x61\x49\xcb\x21\x1d\x83\xb5\x1a\xae\x40\x73\xee\xb2\xe9\x6c\x0c\x14\xe8\xf4\x7d\xb0\x7a\xa9\x97\x3c\x2e\x6f\xa7\x4f\xe2\x96\x63\x77\x2e\xda\x50\x4f\xc9\x44\x4d\xf4\x51\x2f\xbf\xaf\xe4\xa9\x3c\x47\x1e\x18\xba\xef\xd8\x93\x6b\xaf\x70\xfd\xb3\x01\x03\xd8\x8d\x39\x67\xa2\xda\x8a\xc1\xcd\x7d\xb7\x23\x8c\x09\x4f\x92\x7e\xa5\x25\xc7\xbe\x92\xcc\x19\x09\xf7\xbb\x56\xe2\x3e\xfd\x29\xb4\x35\x4e\x3c\x19\xf6\xf4\x55\x43\x29\xbd\x96\x18\xef\x55\x43\x6f\xe4\xb8\x5f\x35\x7d\x55\x02\x0f\x37\xcd\x6a\x25\x5f\x1d\x34\x4a\x0a\xfe\xa1\xb1\x0c\xf8\xa1\xfc\xea\x73\x81\x0e\x1b\xf2\xb1\xc1\xe4\x2d\x3c\x7d\x68\x30\xc6\x98\x20\xbe\x5a\x75\x1d\x53\x1d\x02\x1f\xa0\x66\x37\x10\x20\x78\xd0\x34\x32\x2f\x84\x62\xda\xdd\x9b\xa7\x0f\x90\x4b\x8c\xf7\xe5\xb9\xd6\x80\x68\xa4\xb2\x2d\x80\xc4\xb1\xb0\x2e\xef\x54\x8d\x7b\xd9\x6a\x2b\xa7\xb5\x50\x3e\x47\x39\xfe\x73\x86\x14\x32\x37\x52\x76\xbd\x76\xbe\xd5\x76\xa7\xe4\x1f\xee\xe7\x58\xee\xdf\xc4\x32\xda\xd7\xb9\xbc\xa9\x95\x10\x30\x52\x31\x10\xd3\x35\xf1\xc1\x37\xca\x40\x1d\xb2\x10\x39\xe9\xda\x0b\x88\xbc\xeb\x40\x13\xbe\xf2\xe1\x56\xc1\x66\x00\xbd\x7e\x7d\x38\xe9\xc1\x2c\xaa\x09\x6e\x28\x27\x28\xa7\x15\xf6\x4d\x03\xb6\xdb\x30\x4f\xf2\x56\x57\x24\x0f\x3c\xe4\x8c\x70\x98\xc2\x7a\xe4\x41\x8e\xa1\x4d\x8a\xc1\x56\x18\x85\xc6\xea\x2a\x75\x0f\xa1\x9d\x52\x54\xe8\xe9\x09\xf3\x76\x98\xc5\x3c\x94\x1f\x6b\xa1\x7e\xf7\x50\x58\x57\x69\x7b\x78\x2d\xe7\x01\xab\x59\xb5\x9a\xd6\x70\xc0\xf1\xb5\x14\x8f\x3d\xce\x19\x98\xdf\x63\x89\xdf\x44\x22\xf0\xae\x09\x5a\x8a\x2f\x8d\x03\x72\x34\xf1\xd0\x15\x9f\xa7\x7d\x6e\x9b\xa1\xff\x93\xd8\xc0\xa5\x75\xda\x0c\xdd\x8f\x75\x67\x9e\x2c\x63\xe2\xe1\x50\xd5\x6a\xdb\xd9\xf5\x78\xaa\x7c\xe5\x30\x05\x62\xb6\x1c\x77\x9e\x1e\x15\x6e\x33\x38\x3c\x10\x83\x83\x5b\xc7\x94\xef\x1c\x1c\xde\x3a\x38\xea\xf0\x8d\xbc\x13\x24\xd9\x99\x24\x31\x52\x6e\x5b\xf4\xbe\x9c\x4b\x3c\xdd\x78\x80\xdb\xf2\xa8\xdc\x78\xb6\xd4\x48\x5a\xf7\x04\xb7\x31\x27\xb7\xff\xeb\xd7\x12\xe1\xc7\x55\x87\x3a\xf5\x45\x15\xa9\x4e\x93\x64\xfc\xbc\x25\x3b\x30\x4b\x61\x91\x49\xeb\x3e\xee\xd4\x74\x50\xfe\x78\x8c\x27\x95\xaf\xe6\x9d\x22\xbb\x23\x2d\x3d\x94\xbc\x54\xdc\x62\xab\x19\xe2\xa9\x93\xd5\x37\xa9\xad\x49\xd4\x5b\xda\x04\x44\x46\xdf\x2c\xe7\x14\x7c\xf0\xda\x53\x43\x71\x11\x95\x0b\xb3\xb5\x37\x92\x5b\xa4\xeb\x93\xca\x57\x43\x93\x4a\xcb\xe8\xad\x4e\xc4\x5f\xf9\x60\x4f\x48\xd7\xfa\x42\x07\x91\x02\x8f\x08\xdf\xe6\x4a\x41\x70\x3e\x1d\x27\x62\xb5\x9d\x8e\x13\x79\x91\xe9\x04\x3e\xb1\xee\xe7\x09\x51\x22\x7d\x4f\x81\xfd\x0f\x30\x58\xeb\x8c\x2b\x7e\x5b\x22\xe6\x5f\x7d\xd6\x6d\xd3\x6e\xac\x39\x44\xbb\xa3\xfd\x27\x09\x78\x2b\xc7\x29\xe3\xc5\xea\xc9\x2e\x61\x7e\xe2\xa1\x1d\x79\x69\x76\x48\xf2\xcd\xf5\x85\x82\x1e\x5a\x99\x3f\xb6\x9f\xed\x79\x41\x5f\x37\xf4\x67\x64\xf1\xba\x1a\xc4\xb6\x26\xf7\x50\x91\x30\xfe\xa8\xe3\x87\xcd\x66\xbc\x1f\x35\xe5\x5e\x3d\x88\xea\x30\xe3\x0a\xbd\x94\x7b\x91\xba\xe6\x6f\x41\x50\x2b\x2d\x0e\x60\x44\x49\x5e\x52\x41\x6a\x91\xcd\xbe\xa5\xe7\x0c\x09\xbc\x5e\xff\x9a\xd1\xd0\xa5\xdf\x29\xc0\xa2\x1b\x94\x2b\x3a\x60\x8f\xea\x0c\x99\xab\xd5\x13\xf3\x88\xd9\x30\xbb\x94\xe8\x59\x09\xd6\x3c\x17\x76\x47\x83\xec\x9a\xcc\x9a\xce\x8b\xcc\x68\x13\x79\xa8\xf4\xe7\xa0\xcf\x6a\x2b\xfd\x3d\x9d\x7d\xa0\xf2\xe7\x9d\x2a\x7f\x6e\x55\xfe\xdc\x57\xf9\x1b\x77\x66\xfb\x7e\xcd\x63\x8d\xbf\x79\xe3\xab\xd5\xd6\x6b\xf2\x25\x5c\x29\x93\xe1\x2d\xb6\x78\x51\xaa\x8d\x7c\x81\x32\x95\x45\x0a\x54\x1f\xa4\x20\x33\x9f\x6f\x32\xaa\x8f\x88\xc5\xd2\xb7\x39\x0f\x79\xf4\x8c\x1e\x30\x34\x23\x99\xbc\x91\xe0\xa9\x92\x35\x8f\x4f\xba\x58\xf1\x8c\x7e\xb2\x75\x3f\x6d\xa8\x6b\xb8\xed\x4c\x49\x8c\xb2\x96\xc4\xa8\xda\x24\x4a\x8a\x5b\x72\x12\x82\x8c\x7e\xb5\xfd\x7e\x6d\xf7\xdb\xe6\xaa\x7d\xe3\x66\xcb\x55\x77\x31\xdd\x95\xc7\x74\xcf\x02\xa6\xdb\x4a\x93\x4a\x95\x00\x93\x68\x93\x83\x0c\x02\x75\x57\x6d\x49\x49\x92\x64\x5d\x85\x0a\x1c\xb3\xe3\xe6\x04\x2b\x16\xda\x48\x9d\x80\x1e\x06\x0d\xc4\x4c\xbd\x9e\x75\x89\xf2\x25\x4f\x81\xb8\x4a\xaf\x7a\x5c\x9c\xd0\xc1\x40\x01\xfd\x46\x51\x95\x96\xed\x58\x31\x54\x24\x0b\xfa\x1f\x90\x18\xb1\xd5\x0a\xc9\xdd\x01\xf1\x35\x83\x94\x1c\xc3\xcb\xa6\xbe\x40\x8d\x36\x81\x73\x92\xba\xca\x24\x67\xaa\x8e\x9b\x13\x09\xd6\x33\xcd\xc1\x66\x53\xb9\x24\x1a\x36\x48\xe7\x6a\xd7\x5a\xa9\xa2\x3e\xb0\x3e\xc3\x33\x1c\xaf\xb3\x6c\x56\x61\x1e\xb5\xda\xb8\xdf\xb1\xd2\xab\x55\x9d\x24\x2d\x99\xa1\x2c\xef\xda\x01\xdb\x58\x8d\x3b\xbe\x49\x92\xd9\x71\x71\xd2\xa7\xb4\x3e\x2e\x4e\xda\x5b\x28\x4b\x4d\x5c\x5f\xb9\x54\x66\xb9\x08\xb3\xcb\x24\x39\x61\x5a\xdf\xbf\xd1\x40\xa1\xa2\x9a\xd6\xd3\x3a\x94\x46\x92\x19\x9d\x4d\x67\x51\x99\x5e\x25\x15\x4b\xb7\x56\x21\x52\x83\xad\xa9\x71\x4b\x78\x39\xa3\x54\xae\x6b\x5b\xec\x53\x27\x89\x11\x51\xf6\x7d\x6f\xc8\x56\xa3\x83\xc1\x56\xfd\xef\x12\x57\x76\xc2\x1a\xb2\xf3\x2a\x8c\x1a\x6f\xb5\xd2\xe3\x56\xab\xda\x01\x85\x35\xc6\x6b\xde\x5a\x02\x0d\x32\x84\x63\x92\x53\x46\x62\x46\xb2\x4b\xfc\xb6\x26\x8f\xda\x68\x1b\xdf\xf1\x6e\x91\x94\x0a\xbc\xf7\x4b\xd6\xe9\x4b\xfa\x85\x65\xdf\x0e\x99\x98\xea\xbf\xe9\x21\x13\xce\x02\x9e\x35\xa1\xdf\xb4\xba\x6c\x89\x56\x87\xcf\xbe\x59\xb3\x0c\x77\xfb\x81\xf1\xc6\x39\xa4\x4a\xf4\xb4\x68\xb7\x4c\x3b\xca\x2b\xbb\x12\x95\xf2\xca\xb1\xed\x63\x6a\x23\x6e\xdc\x32\x64\x53\x76\x54\xb7\x77\xb3\x92\xd7\x65\xc1\x86\xa0\x1b\x91\x57\xbb\x8a\x74\x57\xe2\xbb\x9a\x01\x6d\x58\x36\x22\x08\xc5\xa3\x28\xa5\x72\x8d\xb1\x47\x3b\x88\xc6\xf7\x48\xa8\xd8\x22\x08\x07\x1f\xa4\x66\xf3\x73\x8a\xca\x01\x98\xc0\xa0\xaa\x5f\x8e\xef\xae\x0a\x95\xdb\x11\xce\x51\x14\xf9\xd3\x85\x95\x6d\x02\x03\x1d\xdf\x88\x24\xb2\x16\x31\x46\x24\xdb\xdb\x9a\xee\x31\x36\x21\xf9\x02\x6d\xef\x3d\xf1\xe5\x23\xce\x18\xc3\xc5\xce\x88\x64\xa6\x2d\x1b\x55\xa1\x62\x0d\x7b\xd6\x21\x1b\x7c\x6e\x50\x9c\x46\x57\x49\x7c\xa6\xdc\xf3\x60\xe4\x18\x2e\xc0\xe1\xe9\x69\xc5\xb2\x99\x78\xcb\x81\xcd\x2a\xba\x9a\xa3\x62\xed\x4f\x67\x27\xd5\xd4\xa8\x96\x05\x6b\xe2\x30\x94\x33\xc5\xa4\xfa\x93\x1d\x9f\x48\xaf\x9a\x20\xd5\x85\x62\xe7\x7c\xc6\x2e\x88\x3c\xec\xf3\x14\x3a\x68\x89\x81\x62\x2a\x5c\x0c\xea\x05\x42\x8a\x7a\x63\xd8\xf9\x88\x43\xc8\x6b\x15\x28\x77\x62\x9f\x68\x10\xc1\x57\x1d\xb4\x0a\xe1\x35\xd7\x61\x87\x4d\xec\x70\x80\x28\x0f\xf4\xca\xff\xd1\x61\x2b\xa1\xb2\x37\xea\x87\x0c\x31\x6f\x8c\x21\x94\xcd\xbc\xfa\x70\x70\x55\xc1\x82\xcb\x06\xed\x10\x8e\x3d\xd8\x65\x7e\x42\x79\xb2\x9b\x78\x86\xe6\xd8\xcf\x56\xc2\xda\x9e\xb9\x48\x4b\xfe\xcd\xa4\x3a\xd3\x3b\x47\x92\x58\x09\xa5\xdc\xa4\xe4\x0d\xe3\xe3\x4c\x58\x87\x33\x5b\x3b\x74\xfb\xc3\xe0\xda\xb2\xca\x10\xb5\xc8\xdb\xd1\x48\xaa\x31\xcf\x11\x87\x68\x5b\xd8\xe3\xf8\x36\x55\xd7\xb9\xa0\xac\x00\xce\xe3\x22\xec\x8e\x28\x5e\xc2\x8f\x54\xc5\x4c\x25\x8f\x00\x77\x54\x6c\x6f\xdc\x55\x61\x6d\xc7\x15\x1c\xcf\x3d\x97\xfa\xd5\xdf\x35\x3b\x47\x0a\xe1\x87\x82\x4d\x4c\x92\x73\xee\xd2\x65\x87\x2b\x9e\x24\x6c\xb8\x90\xd4\x1a\xc2\x36\xb6\x55\x70\xe2\x23\x5c\xb7\x93\xc6\x8b\x0a\xfb\x1c\xd9\x5f\x83\x1d\xa5\x0b\xfa\xea\x5d\x38\x3c\xae\x1c\xbf\x74\xfe\x5e\xde\x9b\xf7\x42\x5e\x52\xd8\x0c\x71\xbc\x6f\xd1\x91\x82\x70\x0d\xf9\xdb\xe3\x07\xa1\xa7\x2c\x3e\x44\x5d\x57\xca\x41\x91\x24\x07\x05\x02\x9b\x86\xcd\x47\x6c\xb7\x75\xd4\x02\x51\x9b\x88\x40\x8d\x7b\xa1\x9b\x3c\x79\x96\x41\x0a\x2a\x94\xd1\x44\x45\x1f\xe6\xd3\xfd\xa7\x29\x6f\x45\x1f\x66\xb4\x32\x99\x2f\x20\x20\x93\x46\x7e\xbe\x97\x17\x37\x41\xc9\x55\xf4\x3a\x8e\xcc\x95\x98\xc3\x95\x58\x92\x1c\xaf\x6d\x9c\x25\x8d\x69\x40\x45\x86\xe5\x55\x1c\xc0\xa5\x68\xe4\x0a\x74\x79\xaa\x47\x86\x8c\xa1\x43\x31\x5f\x2a\xb7\xfd\x90\xb1\x87\x3b\x5a\xfb\xb9\xc6\xd7\xa1\x6e\xac\x25\xa3\x15\x9d\x2d\xa3\x8e\x4b\x7e\x0d\x79\xca\xfd\x63\xb5\xa7\x86\xef\x17\xed\xa6\xb5\xd9\x7c\x0f\xab\x36\x01\xcd\xe1\x25\xb8\xb1\x0c\xb9\xca\x93\xe8\x09\xcb\x63\x3f\x12\x5d\xd8\x92\x8b\xb3\xb6\xd8\x98\xb4\x62\xa7\xb0\xb6\xb8\x9f\xb5\xc4\xfd\xa1\x25\x72\x3c\x8a\xa0\xd0\x53\x4a\x7a\x78\x4a\x24\x49\x23\xd7\xc3\x0b\xc2\xde\x78\x81\x56\xf7\xa8\x0d\x6a\xb6\xe3\x1e\x77\xcd\xa3\x17\x21\x1d\xbe\xd2\x31\xc4\x1c\xa1\xe6\x07\x69\xd3\x29\xd4\x8a\x06\x09\x77\x2b\xba\x58\x60\x5e\xfa\xaf\xe8\x9c\x8e\x9c\x9d\x80\x08\xf0\x1b\x6f\x45\xfe\xab\x68\x7f\xec\x6f\xed\x8e\xc1\x5b\x82\x46\x5e\xa5\x2a\xc8\x4c\x64\x31\x1f\x75\x3c\xc6\x78\x3d\x7e\x12\x62\x4d\xf4\x2b\x43\x82\x0c\x06\xd8\x77\xbd\x4a\xe8\xe3\xf1\x53\x3c\x61\xa9\xd0\x4e\x06\x6c\x32\xd1\xa9\x6b\x1f\x28\x0d\x2a\x1a\x64\x7e\x60\x88\x01\x66\x4d\xb2\x7b\x6c\xed\x89\x85\x94\xeb\xde\x03\x44\x43\x93\x3d\x27\xd9\x7a\xe2\x1e\xc7\xcf\xcc\xb3\x1a\xc8\x76\x70\xb1\x1b\xb9\x56\x4f\xf8\x39\x47\x8c\xe9\xf0\xae\x15\xac\x79\xf5\x36\x4b\xc9\xd6\x10\x9a\x2e\xec\x40\x85\x37\x8b\xee\xbb\x1e\x5b\xaf\xab\xa9\x63\x5a\x50\x90\x44\x01\x30\x2d\xc9\xa9\x04\xc5\x52\x49\xf7\x4a\x50\x41\x62\x41\xf3\xa9\x87\x6f\x52\xe1\xe7\x04\xe5\xb5\xc8\xf8\x8c\x11\x3e\x7d\x06\x52\x70\xab\xca\xaf\xbc\x6c\x87\xb2\x1a\xab\x34\x81\x00\xa8\x22\xad\x3a\xca\x50\xd4\x04\x08\xe6\x5d\x2b\x38\xfe\x04\x32\x6e\xd2\x0a\x07\xe2\x47\xe1\xb4\x8f\x15\xad\x86\x8a\x54\xf9\x5c\x96\xa0\xf2\x01\xb0\xc4\x5e\x7c\xea\xca\x0b\x65\xa6\xa5\x4b\xab\x15\xe2\xbe\xa4\x29\x14\x62\x96\xee\x22\xb1\x09\xfb\xb4\xab\xa2\x09\xb1\x14\x7b\x04\xa8\x33\xd9\xf5\x7a\x2d\xb1\x27\x11\x38\xfd\x8f\x6d\x4a\xd7\x32\x57\xd1\x7a\xfd\xe7\xe7\xe7\x65\x60\xb0\xd7\xbf\x75\x74\x20\x25\xc9\xa9\x76\x07\x57\x87\xa5\xdf\xe0\xbb\x86\xe6\x06\xaf\x29\x8f\xb4\x49\x70\xa2\x9b\x96\x11\xcb\x08\x63\x6b\x52\x4e\x1b\x3f\x28\x4d\x80\xbd\x4a\x8b\xb9\x7a\x2c\xc2\x5d\x12\x5c\x42\xdc\x55\x5a\xdc\xd5\x63\xa0\xdf\xd3\xd8\xa1\xa1\xfd\xd1\x5a\x4b\xc3\x73\x27\x0d\xcf\x55\x4f\x6a\xbc\x2a\x2e\x16\x23\x33\x9a\x93\x9a\x72\xb2\xa0\xb3\xc9\x44\x92\xf4\x59\x83\x0a\xb2\x20\xb5\x85\xd3\x85\x5a\xe5\x24\xd9\x85\x1f\xb2\x8d\x45\x78\xda\x17\x64\x61\x6a\x59\x63\x9f\x05\xe4\xf6\xed\x72\x82\x5b\x74\xe2\xc0\x85\xc5\x81\x0b\x27\x11\xf7\x1a\xb0\x15\xd6\x8b\x18\xef\x99\x37\x30\x0a\xb3\xb5\xe5\x14\x15\xb4\x92\xd3\xf3\xd6\x5a\x1e\xe0\xc2\x1d\xe0\xc2\xc7\x01\xbe\xf1\xed\x0c\xa7\x45\x54\x80\x21\x6a\x83\x2b\xf1\x9a\xc5\x36\x89\xe6\xae\x5b\x65\x2f\x2b\x9a\xd1\x24\x54\xfe\x58\x3a\xb6\xd2\x28\xb1\x9d\x43\x70\x6e\x3e\x76\xaa\x06\xdb\x17\x50\xaa\xb9\x64\xe6\xe3\x7e\x1e\xd2\x0c\x18\x6f\x74\x6b\x2c\xf2\xce\xfd\xc9\xed\xfe\xe4\x1d\x1a\x0b\x39\x71\xf0\x64\xd7\x77\x97\xba\x65\x50\x03\x91\x98\xf2\x78\xc3\x4c\x35\x18\x98\xd5\x61\xb8\xbc\x27\x0f\x97\xba\xb4\x69\x6c\x9f\x9d\xad\x24\x3b\x2b\x70\xe8\x9e\x33\x09\x22\x04\xfb\x6a\x0f\xbb\x65\x9e\x2f\x51\x48\x89\x96\x5d\x59\x0d\x15\xe3\x5a\x4d\x98\xef\x4f\x92\x87\xf4\x3d\x44\xe2\x6d\x53\x80\xdc\xe6\xcd\x83\x0b\x5d\x1b\x4c\x6b\xd5\x8a\xb2\x57\x1a\x54\xd9\x3c\x2f\xb5\x76\xfc\xf6\xd2\x9a\xde\x55\x90\x9f\x37\x49\x0e\x99\x52\x2f\x64\x92\x90\x2e\x25\x7a\xcb\x74\x96\xe7\x92\x8e\x26\xe5\xf3\xdc\x98\x3e\x97\x5b\x74\xdb\xa4\xe4\xcb\x8f\xcb\x13\x52\xc8\x3f\x5b\xe3\x96\x29\x2b\x27\xc5\xf7\x4c\x59\xff\x60\xba\x56\x28\xf0\xfd\x55\x17\xff\x03\x71\xd2\x90\x42\x62\x56\xa3\x8d\x0d\x95\x46\x47\x6a\xd0\xdd\xda\x9a\x0f\xed\x97\x46\x29\x24\xe9\xbe\xc0\xe6\x78\xe8\x99\x1c\x93\x7b\xde\x75\x5a\x6c\xb2\xc0\x62\x93\x87\x36\x98\x0c\x2c\x36\x45\x9f\x06\x9f\x5a\x7d\x41\x68\xa2\xd9\xf1\x7d\xdb\x86\x33\xed\xaa\x64\xcd\xee\x8f\x4f\xd2\xc1\x40\xf6\x89\xd7\xeb\x80\xa9\x7f\x92\x3e\xcc\x0f\x6a\xdb\xe9\x92\x81\xff\xf6\x6f\x5c\x6b\xec\x18\x43\x34\x8e\xdc\xd2\xe0\x4b\xb8\x59\x3d\xfe\x4d\x33\xdd\x20\x91\xd6\xcf\xb4\x3f\x26\xef\x05\x8a\x43\xb4\x58\x26\xbc\x25\x19\x00\x0d\xa9\x70\x81\x23\xc3\x68\x09\x92\x5e\x4f\x51\x05\x16\x26\xd6\x14\xe2\x6d\x03\x06\x03\x4e\xfe\x6c\x7d\xbf\xf9\xc4\x69\x7b\x95\x9e\x3f\xf7\x23\xd4\x90\x6a\xda\xc5\x95\x02\xb2\x91\x90\x8e\x87\x35\x13\x46\x0b\x30\xcd\xfd\x5f\x68\xa0\xb3\x8b\x0f\xc8\x80\x97\x9c\x0d\xc8\x20\x5f\x5e\x96\x95\xc8\xb8\x18\xe0\x34\x37\xc9\xc7\xa9\x7a\x9b\xa2\xb0\xe3\xd2\xa5\xd8\x40\x65\xcc\xc7\xea\xce\x2d\x01\x53\x26\x49\x19\xab\x24\x6c\xf7\x78\x5a\x9a\xbe\x52\x6d\x44\x05\x9f\xdb\x01\x08\xee\x8d\xb5\xf4\xa8\xc0\x27\x76\x51\x58\x27\x04\x54\xd3\x01\xd8\x32\x07\x1a\x61\x73\x6b\x3b\xff\x79\xcf\x65\x30\x12\xe0\xf0\xce\x00\x35\x7e\x5e\xeb\xbb\x0e\xbb\x50\xdf\x69\x3e\x0f\x35\xe7\xff\x84\x97\xbd\x71\xb3\xe7\x1d\xf7\xd7\x0f\x38\xd9\xf3\x7f\xc1\xc9\xde\xbb\x67\xe6\x20\x4a\x88\x8c\x28\x5a\x6f\x1e\x26\x1f\x9f\x07\xf2\x86\xe8\x0a\xb1\xba\x8e\xbb\xb6\x38\xc1\x86\xd2\x70\x17\x9a\xe1\xdc\x40\x7c\x16\xb0\xfe\xec\xba\xf7\x4b\x86\x89\x18\x2e\xca\xea\x20\x9b\x5d\x78\xba\x17\x61\x2e\xbf\xeb\xc2\xcb\x38\x00\x31\xb5\xb8\x04\x57\xe5\x36\xca\x87\xd9\x7c\xae\x25\x60\x17\x8c\xa3\x8a\x54\x18\x44\x44\x10\xa5\xe9\xb2\xd9\xa8\xa4\x7a\x9f\x5d\x4e\xf5\xdf\xf4\x7d\x76\xe9\x94\x54\x17\x96\xf4\x46\x9c\x16\x39\xb2\x01\x4f\x44\x76\x4e\x77\x08\x1f\x5e\x66\xb7\x45\x99\xcd\xe9\x9d\x16\x24\x7b\xd9\xa8\x2a\xa3\x8c\xb2\x9e\xa0\xc3\x99\x36\xe0\xa5\x9e\x8c\xec\x7d\xb3\x5a\xa1\xf7\x10\x81\xe9\x75\x43\x2b\x4c\xb4\x62\x6c\x4d\xbc\xb4\x02\xcb\x7b\xc7\x31\x31\xd2\x38\x39\xa5\x8d\x61\xbe\x26\x1b\x74\x51\x1e\xe3\xa4\x86\xeb\x66\xd5\x4e\x83\xa1\x07\x47\x2a\x54\xea\x65\x0d\x90\x4d\x94\xd5\x20\xef\x36\x50\xc8\x03\xa1\xf9\xab\x4c\xcc\x2e\x94\x27\x71\xc7\xf2\x74\xd9\x3f\x54\xce\x78\xfa\x5d\x33\x7d\xd7\x00\xe8\x1c\x32\x81\x8e\xc5\x45\x5e\x9f\xe0\xf4\x5d\xa3\x20\xe1\x22\xaf\xed\x7a\x9a\xb0\x2e\x46\xbd\x28\x5f\xb6\xc7\x81\x8c\x02\xf1\xce\xbe\x3a\x04\xe3\x1f\x83\xef\xa7\x3c\x1d\x0c\xd6\x78\x8d\x09\x57\x69\xb0\x1a\x72\xde\xd0\xf7\x99\xb8\x18\xce\x58\x5e\x90\xab\x66\x73\xf2\xf6\xb3\xf8\x9d\x8a\xdc\x7e\xdd\xd0\x11\xb9\x69\xe8\x0e\x39\x68\xe8\x2e\xf9\x26\x7f\x1e\xaa\x08\x4a\xe4\x48\xff\xfd\x28\x0b\x5f\x35\xf4\xba\x21\x9f\x74\xd1\x69\x43\xbd\xf4\xb8\x5f\x83\x5f\x2f\x75\x9d\x0f\xf2\xb3\xcf\x92\xe2\x95\x37\xd7\x88\xbc\xd1\xe5\xef\xa1\xe8\xb5\xfe\xf5\x4e\xff\xfd\x03\x4a\x7f\xd5\xbf\xbe\x34\x74\x7f\x44\x1e\xe9\x5f\xbf\xc9\xcf\x7f\xd2\x3f\x7e\x6e\xe8\xc8\x4b\x25\xdf\x38\xf8\x80\x5b\x66\xf7\x59\xf2\xad\xc1\x53\x3b\x9e\xf1\x63\x24\x2f\xcd\x3f\x8d\x47\xab\x11\x4e\x65\x95\x9f\x9b\xe9\xcf\x4d\xfa\xb3\x37\xe6\xa0\x8e\x17\xff\xc5\x02\xbe\x8e\xdb\x8f\xb6\x13\x20\x05\x54\xd4\x10\x63\x84\xe9\xa6\x3e\xf1\xf2\xe6\x99\x4f\x76\x13\x97\x37\x62\x7f\x1f\x5c\xfd\xdd\x07\x2e\xc7\xf0\xb6\x09\x0f\x81\xc6\x4f\xe4\x04\x6c\x72\x85\xc6\x43\x73\x1c\x33\xfa\x97\x12\x31\x32\x5a\xf1\xa1\x50\x4a\xe2\xf7\xf5\x6a\xb5\xc7\x76\xc8\xf6\xde\x08\x07\x31\x4b\x2a\xcd\x21\xec\xef\xa7\xcc\xdb\x1e\x5f\x0a\xb8\xff\x2c\xd5\x0d\x8e\xf7\x46\x64\x3c\x0a\x3c\x56\x7b\xfb\x5a\x61\xb0\xff\xc4\xd4\xb2\xfd\xf8\xb5\xf6\x52\x46\xb7\xef\x15\x18\xee\x6c\x3f\xc1\xb1\x29\xe6\x61\x93\x24\xf2\xbe\xfa\xd8\x24\xc9\xe3\xc7\xcc\x4f\xd1\xf8\x17\xa7\x59\xdc\x1b\x3d\xff\xcd\x48\x0e\x02\x20\xb0\x77\x05\x58\x0c\x06\x6a\x84\x3f\xeb\x23\x67\x44\xa9\xb0\x1b\x6e\xfe\x90\xae\x06\x16\x1a\x00\x25\x49\xd4\x2e\x29\xa8\xf9\x45\xde\x35\x29\xfa\x87\xfc\x03\x41\x62\xbe\x35\x49\xf2\xbb\xa4\xb9\x52\x57\x86\x76\x65\xdd\xd5\x6a\xff\x99\xd2\xb7\xec\xef\xab\x18\xeb\x06\x2d\x3c\x6a\xa6\x8f\x14\x5a\x78\x9f\x5d\xa2\x63\xc8\x78\x73\x82\x53\x64\xe3\xd5\x21\x4e\x1f\x35\x12\x55\x22\x86\xf1\x6a\xc5\x5f\x08\x9c\x24\x8f\x1a\x49\x76\xa9\xa1\x7b\xac\x9f\x9e\xcd\xff\x6c\xfc\x28\x8b\xd3\xf5\x35\xaf\xc3\xdb\x38\xda\xa1\x4a\x12\x17\x57\xa8\x0c\x90\x30\x80\xa0\xa5\x3e\x94\x29\x3f\x50\x1d\xb4\xf2\x94\x5c\x55\x67\xec\x13\x01\x46\xb8\x5d\xb6\xc2\xc2\x37\xba\xe8\x0c\xa8\xa6\xe7\x72\xcf\xc7\xc0\x31\xaa\x19\xa9\xe1\x57\x8a\x8f\x2e\x4d\xfc\x47\x27\x79\x5d\x57\xb6\x6a\x04\xb7\x65\x92\xa0\xc3\x86\xaa\x87\x0c\x54\x5e\xe0\xfc\x72\xd0\x24\xc9\xe7\x02\x95\xe4\x63\x83\xc1\x8b\xa5\x94\x1b\x49\x4a\x2f\x2c\x47\x40\xc7\x80\xc2\x42\x0e\x93\xcd\xfd\xe0\x30\x46\x7e\xa0\x04\xcd\xfd\x0f\x85\xdc\x7d\xaa\x55\x1e\x9f\x94\x4a\x03\x92\x32\xba\x7a\x66\xc3\x65\x8b\x9f\x72\x7e\xae\x1b\xd4\xef\xb7\x5f\x40\x10\xa2\x17\x36\x7f\xc9\x5f\x78\x79\xcd\x75\x4b\xef\xd8\x15\x2b\xf0\x94\xa7\x92\x08\x17\xc0\xc5\x8f\x52\xef\x24\x02\xcc\xdf\xe9\xa1\xb5\xc6\x8c\x99\xbd\x34\xa3\x05\xf7\x2e\x03\x57\xe7\x53\x95\x97\x55\x2e\x6e\xe9\xfe\xbe\x57\x0a\xd4\xd7\xcf\x25\xfa\xa5\xf1\x69\x2b\xec\x69\xca\x05\x85\x95\x23\x72\x8e\xfe\x57\x13\x9b\x4c\xc5\x53\x8a\x46\x0d\x1b\x55\x54\xf7\x30\x47\x9d\xa3\x1b\x05\x5a\x7a\x79\xbf\xc8\x9e\x22\x04\x52\xd1\xfd\xfd\x74\x2c\x1f\x57\xab\x6d\x53\xb2\x97\x56\x74\xf4\x82\xa2\x8a\x8e\x47\xff\x85\xbc\xdb\x45\xe0\xc7\x51\x49\x85\xf1\x74\x7f\x3f\xdd\xde\x1b\xbd\xa0\x90\x5b\x75\xcf\x3c\x3e\x4d\xf7\xf7\x1c\x83\xa7\xa9\xa3\xf6\x38\xe5\x98\x36\x4e\x0c\xd4\x57\xe5\x0b\x5a\x59\xfb\xd9\x3e\xa5\x9f\xcb\x24\x39\x2c\x11\xc7\xeb\x8d\xdf\x89\xae\x05\xa9\x88\xa0\xd1\xec\x3b\xf6\x2b\xfd\xa9\x44\x15\xf9\x5b\x58\x4a\xee\xf4\x25\x95\xb6\x17\x44\x5e\xb8\x6b\x1c\x43\x82\x58\xfb\x96\xd1\xee\x22\x90\x97\x3e\xb1\x87\xe3\x8d\x3a\x16\x72\x6f\x30\x51\x88\xd9\x23\xf8\x01\x5c\xcc\x81\x52\x97\xb7\x88\x60\x87\x78\xa4\x42\x9c\xf4\x67\xfb\xa9\xba\x51\x96\x05\x52\x31\x0d\xe4\x55\xc5\xe1\xaa\x5a\xad\xb8\xd2\x9f\x9a\x0d\x3a\x6a\x0c\x6f\xf0\xad\x99\x7c\x6b\x56\x74\xfc\xc4\x06\x04\x2a\x69\x59\x20\x3c\x99\x80\xb5\x55\x21\x1f\x15\x6a\xb1\x29\x4d\x2b\xd9\x56\x01\x91\x32\x59\x8e\xb0\xa4\xbd\x2a\x72\xd5\x58\xcb\xab\x92\x48\x00\x7b\x65\xee\x3f\x41\x3f\x35\xc4\xf4\xff\x59\xff\x55\x93\xf7\xb5\x52\x47\x8d\xb1\xad\x28\x01\x6f\xf0\xbc\xbe\x60\xf3\x2f\x65\xf5\x4d\xae\x81\x6a\xda\x4f\x31\x6b\xab\xc4\xde\x19\xa4\xa2\xaf\x1a\x4b\x0b\x1a\x6a\xe2\xba\x49\x8d\xb6\x3b\x5c\xb6\xdd\x3d\x23\xeb\xd8\x4e\x61\x7f\xb6\x9f\xf3\xe9\x76\x1a\x2a\x99\x6f\x1a\x70\x10\x30\x8b\xa8\x7c\xea\x14\x62\x39\x84\x34\x71\x73\x8d\x5a\xe0\x28\x77\xa2\x2b\xba\x28\x50\x89\x31\x09\x40\xf2\xb4\x49\x92\xf1\xe8\x39\x2a\xe9\xdb\x66\x6b\x6f\x34\x02\xe8\x52\xe6\x27\x9f\x1b\x93\xc1\xa3\x85\x22\x35\x02\xc9\x57\xab\xfc\x85\x04\x94\xb8\x02\xe5\x66\xbd\xf5\xd6\xad\x0d\x8d\x96\x2b\x20\xc3\x49\x92\xf7\x1d\xcf\xed\x02\x7c\x55\x0a\xf2\x5a\x0d\x56\x26\x16\x9a\xa1\xde\x54\xd2\x40\x7a\xc6\xd1\xbc\x08\x8f\x4e\x69\x3a\x9d\x17\xa1\x1f\x77\xef\xe0\xdf\xb7\x88\x9f\x9b\x24\x51\x64\x6a\xd9\x5a\x1e\xbc\x5a\x95\x72\x59\x1e\xb0\x2e\x66\x59\x4a\xbb\x2c\xe5\x3f\xb5\x2c\x01\x9e\xed\x53\xfa\xb5\x99\xb6\x70\xe9\xd7\x46\xe1\x8e\x34\x02\x80\x69\x45\x47\x69\x1b\xf5\x9e\x36\xf8\xb1\x24\x5b\x47\x2f\x50\x25\x07\x08\x80\xf1\x18\x9c\x4a\x2b\x3a\x82\x18\x53\xd1\x17\x1c\x3f\x2e\xf1\x73\x59\x7b\xbc\x3d\x7a\x51\x4d\xc7\xdb\xa3\x74\xf7\x99\x7c\xda\x7d\x36\x4a\xc7\x23\x78\x94\x7f\xd2\xf1\xbe\xaa\xb0\xbf\x3d\x4a\x77\xd8\xce\x8b\x6a\xba\xc3\x76\xd2\xdd\x1d\x28\x95\x7f\xd2\xf1\xfe\x93\xd1\x7f\x9d\x37\xa8\xfa\x93\x7c\x72\x1d\x73\x00\xe0\xe7\x95\x5c\x8b\xef\x42\x42\xb5\x11\x12\xf6\xd2\x78\xc5\x4e\x9d\x63\xed\xcb\x06\xdf\xe5\xf4\xb4\xd1\xd1\x9c\x5e\x02\x23\xa1\xae\xa7\xd1\xaa\x19\x9e\x35\xf5\xed\xfb\x9c\xbf\x6e\xd4\x99\x7f\x5f\x63\xb5\x82\xa5\x7d\xfb\x9a\x15\xd9\xed\xfb\x9a\x54\x12\xde\xc1\x47\x0c\x45\x4b\x95\xe3\xc7\x48\xd6\x0e\x59\x11\x8c\xf1\x73\x5a\x4e\x47\x69\xb9\x55\x3d\xce\xcd\x44\x0d\xbc\xfe\xc8\x84\x83\x19\x6f\xe2\x2d\xf6\x31\xa0\x50\x85\x09\xa3\xeb\xc4\x23\xa8\xa2\xab\x69\xed\xd3\x75\xee\xca\xf9\xe5\x7b\x44\x9a\xa0\x2a\x71\xbe\xf0\xe0\xef\x87\x6f\x13\xe1\xdf\x26\xa2\x75\x9b\xf0\x8e\xdb\xa4\xf2\x6f\x93\x26\xbe\x4d\x4a\x7d\x9b\x94\xc1\x6d\xc2\xfd\xdb\xa4\x0a\x6f\x13\x6e\x6f\x13\xa1\x6f\x13\x61\xaf\x52\x8f\x9f\x3a\x8a\xf5\xb6\xdb\x4f\xc6\x92\x38\xfb\x17\x2e\x16\x61\xef\x14\xd8\x5d\xd5\x69\xf7\x6e\xb0\xc2\x37\xd3\x36\x8b\x02\x76\x5a\x46\x24\x04\x26\x3a\x3a\xd9\x28\x20\x32\x39\x6f\xac\x98\x36\xdf\x50\xba\xdd\x52\x42\x1f\x6f\x13\xd9\xe0\xb3\x7f\xa6\x41\xbd\x74\x77\xd1\x4a\x58\x0b\xa5\xce\xa9\x8f\x2c\xb1\x1e\x9c\x01\xb9\xde\x8f\xc7\x96\x82\x0d\xcf\xc7\xe3\x31\xb9\xe6\xbe\xd5\xf9\x91\x72\x74\xe1\xf4\xa8\x89\x0c\x89\xf8\xc4\x1a\xcc\x5a\xcd\x7a\xe0\xf4\xe7\xdb\x59\x80\xb8\x0e\xb8\xa5\x57\x2e\x35\x4b\x1d\x98\x5a\x68\xcf\xc0\xc0\x6c\xa8\xed\xdc\x17\x22\xa4\x37\x79\x18\xd6\xaa\xb7\x0b\x9f\x04\x06\x9c\x5a\x81\x3f\xde\x4f\x95\x5f\x5d\xf0\x72\x94\x0a\xd9\x84\x6f\xdb\x73\xd8\x50\x46\x8e\x1a\x88\x31\x69\x3d\x23\x41\x06\x49\x3e\x36\x54\x44\xa2\xa9\xaf\x0d\x3d\xfd\x8e\x3c\xca\x33\xbe\x2e\x9c\x1b\xdd\x64\xa2\xac\xee\xcc\x09\xfa\xc3\xba\x7a\xd1\xdb\x8c\xfc\x9c\x63\xe7\x6b\xf7\x28\xef\x08\x99\x1c\xee\x80\x4a\x12\x6e\x99\x60\xe0\x6c\x4d\x9e\x7f\x35\x76\x6b\xbe\x9c\x2f\xd0\x97\x9c\x8e\xc8\x4f\x39\xfd\x2d\xa7\x8f\x72\x2d\xe7\xca\xbd\xa0\x15\x47\x8d\x0d\x36\x61\xb7\xdd\x60\xb6\x57\x0d\x1d\xcb\xd9\x0b\x23\xb0\x9b\xb0\xd4\xf0\x0d\x24\x77\xf5\x49\x46\x8f\x1a\xd2\xa8\xbc\xa7\x82\x7e\x6c\x48\x16\x04\xc9\x1e\xed\x3e\x23\x59\x60\x5c\x97\x75\xba\xd1\x6b\xef\x92\x56\x9a\xb0\xa6\x5b\xe0\xda\x80\x3c\x5c\xad\x4b\x41\x9b\x89\x93\xa5\x65\x5a\x90\xa6\x03\xc1\x65\x9e\xcc\x62\x36\x45\x59\x20\xd0\x9f\x05\x0e\xe7\x59\x64\x50\x38\x6b\x65\xcb\x89\x64\x1a\xb3\xa8\x00\xa7\x51\xfb\x5c\x85\x94\x6e\xdb\x29\xaa\x2c\x0b\x35\x6d\x47\xbd\x20\x0b\x9a\x1b\xeb\xd2\xb9\x9c\xd6\x9c\x82\xb6\x48\x59\x84\x40\xf1\x25\x5d\x44\x80\xe2\x50\xeb\x25\x9e\x1b\xe5\xf9\xa5\xa7\x2b\x72\xcc\xe7\x85\xf7\xb1\x52\x4a\xcd\x9d\x36\xed\xc2\x0b\x56\x82\xfa\xaa\xe4\xbe\xa0\x1d\xfd\x1a\x03\xf9\x3a\x57\x03\x5b\xd2\x45\x97\x2a\x85\x52\xba\x54\x15\x6e\x8d\x5c\x7b\x72\x0b\xe2\xec\x02\x93\xe0\x0b\x7a\xab\xec\x2e\x96\xfa\xad\xb7\xad\x0b\xb3\xad\xf9\x02\x2d\x22\x47\xf1\x2c\xb0\x0d\xdc\xde\x7f\x36\x86\x6b\x29\x53\x3a\x4b\x3b\x08\x0f\x14\x70\xa6\x32\x49\x3e\x75\x0b\x73\x4e\x8b\xdc\x23\x7b\x74\x34\x90\x73\xa8\xb7\x4d\x66\x39\xca\xc8\x39\x5e\xb7\x60\x20\x96\x81\x82\x89\x90\xf6\x7e\xc8\x74\x06\x93\x2b\x5a\x0e\x2f\x73\x7e\xfe\x2a\x9b\x5d\xf8\xab\x72\x35\x45\xc1\x2b\x58\x9d\x4b\x79\x9a\xf4\x32\x91\x2b\x10\xdf\x15\xa4\xc1\x38\x75\x92\xbe\x86\x5e\x81\xa0\xaf\xc0\x3a\x33\x41\xbb\x36\xe9\x43\x70\x44\x94\x61\x7c\xa7\x54\x07\x99\x12\xc0\x9d\xd1\x33\x9f\x30\x2a\x49\x41\x32\x3c\x29\x94\x7a\xe9\x8c\x9c\xe1\x75\xb0\xba\xbb\xa3\xfd\x27\x64\xd1\x12\xe6\xd9\xb9\x7a\x06\x43\xda\x5f\x42\x5b\x33\xe1\x49\x43\xd5\xf5\x8e\x6e\x19\xca\x94\x93\xd2\x6a\x35\x78\xd9\x03\x75\x41\xcf\x2a\x23\x06\x78\x6b\xd0\xab\x0d\x8b\xd1\x83\x56\x7a\xd6\xab\x9d\xf4\xce\x1a\xd1\xe3\x65\xcf\x00\x66\xef\xd7\xb7\xbd\xeb\xac\xee\xd5\x97\x6c\x96\x2f\x72\x36\x1f\xfe\x6f\xfe\xbf\xf9\xcb\xf9\xbc\x97\xf5\x9e\x1f\xea\xac\xe0\xb6\x36\x1d\x0e\x87\x2f\x5c\x5f\xbd\x8b\xfc\xfc\x82\x55\xbd\x9c\xf7\xc4\x05\xeb\x89\x8a\xb1\x9e\x28\x7b\x97\x55\x79\x95\xcf\x59\x2f\xeb\x15\x65\x26\x71\x69\x2f\xe7\xf3\x7c\x96\x89\xb2\xea\x95\x55\xef\xb2\xc8\x66\xec\xa2\x2c\xe6\xac\x92\xb5\xb5\x3a\x78\x38\xd8\x3a\x67\x72\x7d\xd7\x7b\x7d\x49\x02\xa9\x30\x35\xdb\x98\x34\xf4\x6f\x19\x6a\x48\x66\x8f\xb2\xbe\x35\x17\xde\xad\xb9\x93\x16\xb4\x21\x0f\x59\x69\x52\xe7\x68\x41\x2e\x1a\xb4\x00\x4b\x0f\x1c\x5a\xad\x8d\x65\x3b\xb0\xaf\xd7\x12\x43\xdc\x5e\x32\x72\x43\x17\xa1\xb1\x0d\x80\xcc\x93\xdd\xc4\xeb\x4d\x82\x4d\x17\x56\xbd\xde\xa8\x6a\xb3\x06\x92\x37\xdd\xf8\xf8\xa6\x5b\x01\x66\x54\x5a\xab\x55\xff\x9d\x02\xc8\x1b\x0c\x61\x63\x1e\x3c\xf3\x65\x6b\xe6\xeb\x7b\x80\x6e\x7d\xd4\xd0\xba\x40\x47\x8d\xb1\x4e\x3f\xc0\x77\x82\x1e\x38\x8d\xb6\x66\x01\x9c\xc3\x51\x61\x8d\xfa\x1d\x59\x6b\x0d\x3c\x1a\xff\xae\x36\x1a\xee\xe9\x6d\xe6\x8b\x33\x73\x43\xb3\x3d\x97\x6c\xd2\xf6\x73\x96\x24\xe8\xb4\xa1\x0c\x7b\x46\xdf\xec\xf9\x57\xfb\xee\xab\xa4\x3b\x5e\x36\xd4\xb7\x87\xcc\x0a\xb0\xe7\x7e\xf1\x41\x42\xd1\x87\x26\xc8\x12\x2b\xc9\xf2\x3b\x5f\xf4\x7d\xd4\x4c\xf0\x51\x43\x67\x6a\x9a\xce\x92\xbc\x5d\x2f\x49\xfa\x6f\x25\xad\xd5\x55\x7d\x56\x38\x9e\xe4\xb6\xf1\x93\x89\x12\x46\x3e\x36\x5e\xc0\x84\x38\xc2\x4b\x90\xae\x80\x5b\x7f\x17\x24\xe4\xca\x33\x8c\xc9\x59\x13\xf8\xf9\x11\xe1\x19\x7e\x42\xaf\x47\x0d\x65\xe6\x8e\x13\x92\x94\x70\x57\x34\x18\x1c\x38\xe2\x42\x21\xff\xd1\xee\xb3\xe4\xa8\x09\x0c\x9b\x81\xd8\xf8\x7b\x86\x24\x79\x02\x21\x9e\xc6\x9a\xfb\x19\xc3\xcc\xbb\x24\xf6\x7e\x58\x83\x11\xa9\x6c\x2d\x5f\xa5\xa0\x08\x9c\xaa\x15\xf6\x86\x76\x2a\x10\x26\xe5\x0b\xa5\xf4\x2f\x31\xc9\xf5\x63\x1e\xc4\x8c\x59\x77\x0f\x45\x65\x51\xb1\x66\x06\x56\xea\xce\x5d\x68\x26\x3b\x71\x16\x1e\x5b\x6b\x67\xe1\x91\x54\x40\xe0\xfb\x24\xd6\x51\x13\x44\x04\x73\x44\x7e\x18\x4e\xc9\x9a\x84\x04\xa5\xfe\x4f\x3f\xc4\x4b\xdc\x68\xe0\x1f\x11\x34\x8d\xc9\xf8\xb9\xbf\x5f\xdd\x5d\x4d\x37\x77\x94\xc6\xd3\x89\x3b\xc3\x78\x1d\x25\xb2\x40\x82\xfe\x23\x93\x20\xee\x94\x18\x41\x88\xa7\xd1\xee\x53\xe2\x2f\x70\xb4\x62\x5d\xce\x1e\x11\x19\xeb\x67\x1f\x42\x30\x63\x63\x74\xe3\x36\x50\x42\x76\x88\x93\x8e\xdc\x51\x0a\xe2\x99\xed\xe9\x68\x39\xce\x1c\xb3\xf0\x85\x04\x51\x94\x7f\xd3\xc1\x0b\xb4\x21\x76\x13\x9e\x0a\x1f\x29\xcd\xbd\xc6\x40\x55\xa9\x1b\xf8\xad\x44\xfb\xfb\xe4\x32\x36\x39\x89\xc7\x72\xa9\x71\xda\xbc\xbc\x5b\x16\x08\x87\x33\xfa\xb5\xb1\x72\xf0\xfb\xc4\x13\x86\x29\xf5\x39\x59\x70\xb9\xed\x66\x63\x7d\x17\x88\x38\xfe\xd9\x8f\xb1\xc3\x20\xbc\xb4\x2c\x5d\x6c\xc0\xf7\x14\xb2\xef\xff\x1b\x14\x3a\x64\x93\x14\x54\xf1\xe3\x25\x5d\x14\x88\x63\x33\xfc\x50\xd1\x46\x4b\x52\x3d\xef\x92\xae\x4e\x75\xdd\xa0\xb0\xab\xe2\x26\xbd\x1b\x1d\xa5\xd0\x72\xbb\x15\x07\xf2\x61\x43\xd5\xe3\x31\x76\xa3\x71\xf2\x53\x8b\x09\x3c\x91\xea\xc8\xab\xe9\x89\xb0\x1c\xd2\x70\x65\xb2\xae\x91\x4c\xa1\xa3\x86\x1e\x7a\x66\x1f\x12\x3f\x78\x7e\x2a\x53\xc3\xe7\xfa\xc8\x01\xf1\x0d\xd8\x01\x14\xc7\x01\x26\x4a\x4b\xca\xd3\xa8\xd0\xa0\x3c\x9b\x65\x5c\xcb\x79\x76\xb6\x5b\xd7\xd3\x92\xd3\xdf\x4d\xa6\xc1\x4b\xae\x14\x73\x17\x1c\x02\xd1\x42\x88\x0a\x30\x8a\xcd\x4b\x0e\x01\x96\x06\x39\xef\x35\x58\x71\x9d\x77\xb5\x2c\x49\x9b\x61\x58\x85\x30\x3e\xf7\x0b\x0f\xf8\x7c\xad\x14\xd8\x9a\x83\x9e\x51\x54\xc8\x7f\x4d\x14\xe4\x32\x49\x0a\x6b\xcd\x9a\xb3\xeb\xd5\xea\x3a\xe7\xf3\xf2\x5a\x39\xa1\x9b\xd6\x64\x25\xff\xb7\x1a\xef\x4c\x05\xf3\x9b\x0d\xab\x8c\x9f\xb3\x57\x65\xc3\x05\xbe\x2b\xe8\x6c\x98\xf1\xd9\x45\x59\x01\x29\xa8\x03\xf0\xea\xa2\x8f\x8b\x45\xcd\x04\x59\xd0\x99\x72\x3e\x85\x2a\x33\xf3\x4b\xbd\x05\x11\x96\x33\xe4\x27\x0b\xfb\xa8\xa9\xab\x8f\xb2\x13\xee\x3b\x4f\xa9\x6c\xd5\x23\x72\x49\x1f\x8f\xc9\x85\xfc\x6f\x49\x47\xe4\x96\x8e\xc8\x39\x6d\xc8\x95\xaa\x2c\xac\x2b\x87\xb9\x91\xcf\x26\xe7\x2a\x43\xf5\x48\xc5\xbd\xd8\xe9\x53\x7a\x6e\x7b\x5b\xad\xd0\x25\x9d\x6f\xd5\x98\xc8\x5a\x0b\x55\x6b\xd6\x51\xeb\x82\xce\xb7\x66\x98\x48\x7e\xd9\x95\x27\x09\x9a\x6f\xe9\xdf\x60\x9b\xa9\x4d\xb5\x9d\x87\xd0\x19\x3d\xf7\xc3\x80\x4f\xf0\x15\x3d\x27\xe7\xf4\x6c\xe2\x79\x9c\x9c\x83\xbb\x89\x9a\x26\xc8\x3a\xae\x28\xa5\x45\x92\x6c\x6d\x2d\xa9\x0a\xd5\x71\x49\xe7\x98\xc8\xd2\x85\x2c\xbd\xa5\x2a\xee\xc9\x85\x2c\xf5\x3b\x92\xa0\x7c\x68\x2e\x0e\x25\xa3\xba\xa2\xe8\x9c\x5e\x61\xcf\x4d\x62\x7d\x4e\xcf\xd6\x05\x7d\x2c\xa9\x9a\xcb\xd5\x0a\xfe\x5e\xe8\x40\x77\x0a\xea\x2e\x01\xcc\x2e\xb4\xa3\x82\xda\x85\x75\x21\x97\x50\x57\x18\x41\x85\x51\x50\x61\x72\xcb\xe9\x5d\x36\x13\xf9\x95\x89\x26\xfe\x9a\x09\xc9\x79\xea\xcc\x8e\xb0\xf7\x6c\x2e\xdf\xa5\x0d\xb1\x10\xfc\x59\x02\x55\x5a\xac\xc9\xef\x82\xf6\xc7\xe4\x4d\x43\x4b\x49\xbe\x49\xe8\xb8\x28\xac\x23\xe8\x47\xdf\x0e\xf4\x4d\x2c\xe2\xdd\xd9\x19\xc9\x4b\xa1\x40\x6f\x1a\xf2\x11\xcb\x36\xde\x34\xde\xb1\x5e\x87\x77\xcc\x9b\x06\x4f\xfc\x6e\x54\x50\x4a\x46\x0a\x97\x3f\xe6\x4d\xa3\xe9\xb5\x6b\xd9\x92\x0b\x30\x96\x2f\xd0\xf8\x49\x72\x0d\x91\x98\xdf\xf8\x1e\x40\x83\x01\x26\xe3\xed\x67\xc9\xb5\xfa\xec\x46\x7e\x16\x10\x9e\x86\xc3\x51\xef\x0f\xe8\x0d\xc4\xbe\xd0\xa5\x07\x1b\x58\xa6\x83\xe9\x81\x8a\x79\x91\x1e\x04\x68\x05\xaf\x8d\x51\xfe\x78\xb4\x03\x9d\x6a\x35\xe6\xac\x41\x6f\x1a\xb9\x00\x81\xd0\x22\xb0\xa0\x7a\xb2\xa9\x12\x59\xc8\x72\x8f\x54\x97\xeb\x14\xc8\x39\xb7\x77\xd3\xe8\xa3\xf1\x68\x7b\x2f\xaa\xf3\xac\xab\xce\xf7\xda\xde\x4d\xbf\x53\xe1\x59\x5a\x37\xa8\x21\x35\x7d\xd3\x90\x02\x93\xa6\x41\x35\x5e\xb7\xf7\xf9\x3f\x03\x2c\xf9\x02\x1d\xd0\x5b\x4e\x6e\x00\x85\x93\x6b\x7a\x30\xf4\x80\x99\x14\xf4\x60\x18\x82\x33\xb9\xe9\x53\x7a\x9d\x48\x40\xb9\x0e\xf1\xb0\xf3\x99\x56\x7e\x78\xc6\x12\xb0\x8f\xfa\x62\xb5\xea\x73\x08\x31\x43\x95\x71\x96\x2c\xd9\x81\x48\xb7\x06\xdb\x00\x8d\xae\x2c\x81\xbc\x88\xc6\xd0\x90\xef\xc4\x98\x0e\xb4\x49\x7f\x2d\x6f\x14\x31\xb5\x26\xfe\x35\xe2\x38\xed\xf7\x95\xd3\x75\x56\x31\x33\xaa\x4f\x65\x9d\x2b\xfc\xdf\xef\x4b\x00\xdf\x58\x41\xb9\xe9\xaf\x51\x34\xab\xe1\x5c\x3f\xe8\x83\x4f\xae\xb1\xcd\x3e\x55\x24\xc9\x05\x47\xd7\x72\xe8\x37\xb4\x18\x02\xfe\x20\x4e\xdc\x74\x40\x8b\x21\xe3\x73\xf9\xfa\x80\xde\xd8\xc4\x06\xfe\x95\x78\x3d\x45\xd7\xd1\x35\x48\x6f\xc8\x75\x70\x09\x2a\x93\xd2\x65\xce\xd1\x01\xb9\x56\x36\xa9\x06\x13\xe3\x14\x1d\x50\x74\x43\xa3\x31\xaf\x56\x73\x77\x37\xde\x3c\xe4\x6e\x44\x07\xf4\x20\xba\x1e\x49\x4d\xaf\xfd\x4c\x1d\xba\x4f\xd2\xb8\xf1\x98\x29\xd7\x98\x14\xd4\xce\x1b\x26\x3d\x6d\x52\xaf\x1a\xe3\x73\x59\xa9\x7f\x30\x64\x37\x82\xf1\x79\x92\x34\x2f\x8a\x24\x41\x35\x2d\x48\x41\x1b\xd2\xd0\x5a\xf6\x37\xe7\xe8\x9a\x34\x98\x2c\xd4\x53\x81\x49\x9d\x24\x8b\x24\x41\x92\x39\x3d\xf0\xee\xe8\xd5\xea\xc0\xbb\xa1\xe5\xd5\x07\x20\xe3\x8a\xd5\x3d\x0c\x2f\x4a\x78\x94\xaf\xec\x7d\x0d\x8e\x82\xe6\x03\xef\xde\x86\x72\x55\x5f\x6e\x1a\xba\xa1\x37\x3a\xd6\x09\x80\x3e\xc2\xe0\x9a\x01\xbb\x84\x54\x8f\xc4\xb4\x8f\xc9\x81\xf6\xbf\x7b\x59\x14\x50\xbb\x46\x98\x34\x2f\x8a\x29\x3a\x18\x66\xf3\xb9\x6a\xe0\x46\x56\x53\x4b\x80\xd4\x08\x88\xed\x10\xa7\xe8\x46\x36\x7f\xd0\xf1\x8e\x04\x6d\x40\x34\xe6\x1b\x7a\x7c\x02\xf7\xec\x01\xbd\x9e\xc8\xdd\x73\x87\x64\x82\xe5\xb5\x77\xe0\x5d\xe4\x37\x2a\x06\x94\x35\x4d\x3f\x20\x05\x5b\x88\xf4\x60\x58\xcf\xaa\xb2\x28\xde\xb1\x85\x20\xa2\xbc\xb4\x05\x47\xe5\xe5\x5a\x85\x01\xeb\x96\x76\xc1\x9a\x49\x04\xa0\xe3\x6f\x90\x6b\x3a\x9a\x5c\x3f\xbf\x31\xce\x5c\xd7\x5b\x5b\x58\xc2\xfc\xf1\xf5\x09\x36\x81\x55\xbc\xbe\xe8\xc1\x50\xf6\x2f\xd7\x22\x78\x77\x54\x5e\xd2\x83\xa1\x28\x2f\xd7\xf2\xc2\xec\x2f\x39\xb9\xe5\x74\xe9\x62\x18\x98\x6b\x82\xc4\x57\xdc\xb5\x4b\x59\x6a\xaf\xb7\x6f\xad\xeb\x6d\xe7\x49\xf2\x2d\x49\xf2\x06\x5d\x93\x18\x1f\xc3\x05\xf7\x0d\xdf\xdd\x68\x30\x06\xa2\xef\x50\xb6\x10\x86\x71\x3a\x54\x6d\x1f\x51\xff\x86\x34\xea\xbd\x37\xa1\xaf\xec\x0d\x3d\x8a\x94\xe5\x37\xf4\x68\xdd\xb5\xa0\x87\xd3\x43\x74\x83\xd3\x43\x3b\xc3\x9b\xf5\xff\xd8\x05\x60\xec\xc0\xdf\x94\x4a\x4d\x9d\x2b\xba\xc7\x5b\x6d\x39\xfd\x3f\x1a\x6c\x4d\xc2\x19\xf9\xd2\x50\xe1\x4c\x4b\x61\x33\xbc\xd5\x17\x61\x9f\x24\xf8\xa5\x3b\xd3\x7a\x2f\x40\x93\x9d\x16\x95\x49\x82\xb4\x2d\x7a\x64\x5c\x24\xa6\x92\x3b\xfa\xa9\x99\xfe\xd6\x6c\x6d\xa5\xc8\xd8\x21\x33\x9c\xc2\x63\xa7\x8c\xb5\x48\x92\x9b\xc2\x8f\xac\x49\x2a\xa3\x5e\x7f\x6f\x56\x50\xd9\xc1\x33\xfa\xba\xb1\xc6\xf0\x56\x7c\xe0\x0c\x94\x57\xab\xdf\x4d\x64\x72\xc7\xf5\x5f\xc4\x12\x44\x0b\x83\x2c\x84\x41\x15\xf7\x7d\xef\x49\xa2\xdc\xac\x5a\x54\x81\x12\xdb\xed\x8d\xb7\x13\x86\x57\xab\x3f\x9a\xd5\x0a\xfd\x01\xee\x20\x3f\x95\x68\xff\x69\x10\x4f\x45\x8f\x0c\x0c\x19\x60\x34\x12\x27\xb4\xb7\xdb\xb9\x8d\xc8\x31\xe6\x0b\xb4\x2f\xc7\xf0\xa5\x31\xc3\xdb\x7f\xfa\xfc\x4b\x33\xdd\x7f\x9a\x7e\x69\xcc\x64\x95\xb1\xff\x6f\x25\x62\xe4\xb6\xf0\x95\xec\xb7\xba\x09\x0d\x7b\xbf\x36\x5a\xdc\xd0\x1f\x4f\x54\x63\xbf\x82\x3a\xd1\x38\x0d\xdc\x23\xe7\xd8\x19\x63\x13\xe2\xf6\x5b\x03\x68\x46\xb3\x98\xcc\x33\x5e\xf0\x98\x52\x3f\x8b\xaa\x3c\xf2\x5a\x44\x62\xa5\x29\x72\xc5\x82\xf8\x0d\x3f\x16\x61\xaa\x41\x7b\x84\x63\x52\xaa\xbf\xe6\xa0\x05\x19\xde\x62\x7f\x46\x7b\xce\x24\x28\xad\xb9\x96\x2a\x68\x80\x67\x2d\x78\x67\xd4\x5a\x2e\x7f\x6b\xa8\x20\x00\x44\xfd\x91\x5b\xdb\xf3\xc2\x38\x37\xcc\x20\xb7\x3c\x55\xee\x46\xf4\x6f\x19\xe2\x44\xf8\x47\xc0\x99\x1e\x18\xeb\x7a\xff\x5d\x92\x28\x03\x0e\xdb\xf0\x55\x61\xad\x36\x9d\x8d\x38\xf4\x06\x2e\x53\xf6\x10\x1b\xa9\x53\xdb\x86\x41\x7f\xa9\xd7\xf2\xbc\x40\x5c\x7d\xea\x8c\xc4\xdc\x5b\xa3\x6d\x0f\xf4\x28\x5d\x47\x92\xdf\xef\xa0\xb4\x5a\x75\x47\x33\x7d\xa0\xae\xa4\xc2\x18\x16\x92\x13\x46\x97\x0d\xfc\xf9\x5b\x86\x04\x61\x1b\x16\x92\xcb\x85\xe4\xed\x85\x74\xa6\x86\x9e\xfd\x83\x5b\xdb\xb3\x22\x4c\xed\xc8\x3c\x65\xa5\xb3\x34\xa8\x86\x73\x56\x30\xc1\x90\xc0\x04\x6c\xd5\x59\x92\x7c\x6c\x20\xcf\xa5\xb6\x55\x5f\xad\xe0\xe1\x06\xcc\x26\x23\x3b\x4a\xb0\xf4\x7a\xdb\x3c\xdf\x1b\x8d\xa6\x60\xe5\xf2\xb1\xc1\xe9\x67\x89\x14\xd2\x0f\xca\x86\x2b\x49\xd4\x21\x10\x6d\x9b\xc1\x24\x11\xcf\x21\x06\x67\xdb\x64\x10\xc0\xc4\x77\xec\xbb\x0e\x6c\x72\x62\x37\x3d\x63\xea\xef\xa6\xa2\x51\xf7\x48\x51\xf5\x7f\x6d\x90\xb2\x00\x26\x4c\xfb\xa3\xc5\x50\x2a\x1c\x70\xde\x36\x51\x54\x49\xe7\xcf\xde\x4e\xd2\xca\x83\x60\x84\x65\x9c\x3f\x13\xc4\x84\x81\xa6\xa5\x0f\xb1\x3e\x2e\x4b\x2b\xc8\xfc\x9a\xd1\xfe\xc8\xba\x90\x56\xcf\x5d\xf0\x2c\xf9\x66\x1c\x04\xc9\xda\x49\xff\xc8\xe4\xec\x3e\x65\xa8\x6d\xdb\xf7\x16\x52\x57\xec\xea\xbc\x1d\x49\xa2\x8d\x84\xca\xa1\x0a\x11\xef\xc9\xcf\x1f\x12\x70\x5d\x59\x93\x84\xb1\xd4\xfc\x14\x18\xd7\x65\x2b\x00\xd4\x87\x1c\x05\x89\x5b\x22\xf7\xe6\xc8\x72\xa7\x15\x1f\x40\xfb\xb3\x95\x3a\x10\xc0\xf0\x54\xe7\xeb\x24\xb3\x12\xfd\xbd\x24\xe5\xf0\x54\x2f\x19\x48\x7b\x70\x5c\x10\xe4\xf1\x32\x4e\xd3\x26\x43\x4f\x98\x88\xc3\xbf\x37\x6d\x36\x89\x4e\xf1\x7b\x92\x54\x2f\x28\x9f\xfe\x64\xb2\xa4\xa6\xa8\x9d\x26\xc0\xc1\x92\xa0\x36\x03\x30\x9e\xda\x38\x29\x2a\x84\xe1\xa4\xe3\xc3\x60\xc0\x90\x43\xa4\xea\xde\x8d\x17\x94\x93\xce\xac\x1e\x00\x32\x66\x3e\x36\x05\xf9\x24\x0a\xb9\xef\x6b\x38\xca\xd6\x6a\x24\x09\x2a\xe3\x7c\xe9\xa5\xcb\x27\x8b\x75\x5c\x79\x7f\xc2\xfd\xca\x97\xe5\x9b\xbb\xc3\x4e\x7e\x0d\x90\xab\x45\x54\xf0\xec\x12\xc9\xb2\x76\x56\x7d\x3f\xb7\xac\x5e\x03\x15\x51\xcf\xd7\xea\x44\x81\xbd\x44\xbb\xc0\xd7\xeb\x60\xc2\xda\x19\xd8\x97\x25\x12\x64\xe1\x4e\x1e\xa9\x72\x10\x04\x90\x92\xfe\x25\x57\x5a\x13\x41\x2a\xc2\x48\x29\x0b\xc3\x74\x4e\xa4\x6d\xc2\x54\xfa\xbe\xe8\x5d\x17\x82\x59\x55\x63\x26\x47\x29\x2d\x87\x8f\x1e\xa9\xb7\x3a\x4b\x04\x98\xab\xc4\x51\x18\xcd\x8c\x5a\x36\x47\xb7\xa5\xbc\x3c\xb4\xe8\xbb\x3f\x9a\xc0\x21\xd4\x31\x4d\xe4\x2a\x77\xb5\x23\xc7\xa7\xce\xa4\x67\xae\xa7\x4b\xa6\xfa\xaf\x12\x13\x66\x12\x81\x68\x89\x79\xd5\x75\xf9\x29\x9c\xd6\x69\xb7\x95\x24\x4b\xb9\x98\x15\x69\xc0\x1e\x5d\x0f\xbd\xa2\xb7\x79\x90\xca\x09\x8e\x71\x10\x5f\xf2\x4d\x7e\xc6\x2a\x2a\xc8\xb5\xfa\x1c\xcc\x7e\x05\x7d\x97\xb9\xfd\xe8\x8f\x20\x50\x8b\x89\x35\x2b\x57\x6c\x44\x5e\xda\x0a\x6a\xb3\x6c\x44\x7b\xab\xb3\x9b\xe9\x2c\xc5\x2c\x95\x2b\x2d\xc1\xde\x0b\xa1\xf9\x6f\x86\x2d\x77\x5f\xc0\xb6\x3e\x56\xa1\x7c\x4f\xe5\xbc\x9b\x1a\xdf\xd9\x47\xad\x44\x92\x77\xe1\xe9\x4c\x94\xd5\x44\x50\x81\x20\x98\x6c\xc5\xea\xa6\x10\x90\xf8\x0a\x4c\x76\x02\x8f\xf2\x91\xdf\x5c\xa2\xdc\x4a\x35\xd3\x46\x5c\xdb\x63\xbf\x1d\xbc\xc6\xe4\xde\x36\xdc\x77\xdb\xd1\x77\x78\xbd\x46\x25\x26\x63\x00\x13\x33\x07\x1d\x51\xd8\x54\x9c\x58\xb7\x11\x5b\x44\xd4\xa9\xa5\xa5\x4a\x0d\x9c\x9d\xd3\x68\x55\xba\xe0\xc6\xe2\xe2\xa3\x02\x31\x3c\x1d\xa7\xa3\x20\xde\x22\xf3\xa3\xfd\xe6\x0b\x04\x6a\x52\x7b\x82\x28\xa5\x85\x6d\x60\x3c\x9e\xe8\xa8\x06\x0b\x57\xb6\x6b\x50\xd3\x36\x4c\x89\xd1\x3f\x97\xa8\x94\x00\x9a\x5b\xb2\x5b\xd0\xf7\x1e\x28\x39\x3f\x05\x67\x8a\x23\xe8\xeb\xfb\x6b\xc8\x2a\x1f\xee\xaf\xb2\x9b\x0a\xfa\xd9\xab\x22\xc7\xa1\x90\x1c\xc3\x90\xdc\xd9\x85\xf0\x0b\x09\xf9\xd1\x13\x52\x92\xc1\xc0\xb9\xc4\x6a\xc0\xb6\xa9\x23\x2c\xb6\x8c\x69\x0f\xf2\x5e\xa1\xe3\x8a\x44\xb0\x0f\x6e\xc5\x65\xfa\xe7\x12\x55\xa4\xc4\x5e\xc0\xda\xef\xb6\xf8\xfa\xc7\x5a\x84\x2b\x58\x11\x2c\x55\x18\xd0\xc7\x1a\xdd\x58\x43\xd5\xaa\x95\xdd\x63\x5b\xd9\xc2\xc7\x29\xc9\x5d\x14\xa1\x8e\xab\x6c\x5a\x0e\xfd\xf0\x06\xa4\xc9\x95\xad\xfa\x42\x21\x17\x65\x95\x8a\x49\x3b\x37\x97\xf9\x4c\xc2\x54\x89\x25\x79\x45\xbc\xcb\xdc\x52\x67\xd0\xa5\xa3\x6f\xb4\x19\x26\x08\x58\x33\x7a\xc3\xd1\x46\xe2\xc7\xd7\x43\x91\xeb\x8c\x0a\x52\xd2\x03\x49\xf8\x61\x52\x6a\x0b\xed\x8f\x70\x19\x81\xfb\x94\xba\x7e\x74\x4c\xcc\x09\x9f\x60\xee\x27\x20\xd9\xf1\x99\xc9\xd5\x78\xb4\xbd\x1b\x84\x2c\x04\x34\xf9\xd2\xec\x14\xd7\xc4\xa2\x45\x90\x11\x1c\xd9\xa0\xb7\x6f\x6d\xe2\x33\xc5\x03\x1c\xd9\x7d\xeb\x86\x85\x7c\x73\x30\x27\xb5\xf4\xb4\x1c\x9a\xf8\x46\xe4\x8a\x03\x64\x4c\x1b\x9d\x34\xdf\x06\x5d\x80\x17\xed\xe8\xee\xe3\x27\x98\xbc\xd1\x89\x6f\x37\x12\xb4\x1d\xb9\xfc\x36\x91\xb2\xc2\xa4\xcd\xd2\xeb\xd2\x04\x77\x06\x26\xc2\x28\x68\x3c\xaa\xc6\x5f\x06\xde\x91\x31\xc6\xd2\x84\x51\x92\x97\xef\x50\xc1\xa4\x05\xd0\xd6\x00\xcd\x6c\xf9\x51\x00\x09\xa9\xbf\x97\xe6\x96\x33\x88\xe7\xbb\x47\xf6\xc3\x8f\x1d\x59\x9b\xed\x4e\x77\x1a\x0f\x35\x1a\xc1\xb3\x28\x94\x71\xf7\x67\x0e\x0e\x5a\x33\x18\xc9\xeb\xb9\x6a\x51\xfc\xad\x69\xb4\x12\xcc\x93\x9c\x96\x3a\x0a\x88\xd2\xda\x47\x4d\x80\xf6\x1c\xf8\x86\x22\xe6\x1b\xa2\x02\x9a\x5b\x43\x75\x9c\x2f\x40\x7f\xaf\x18\x91\x91\x8a\xca\xf6\xba\x42\x05\xc9\xf1\x74\x94\x8e\x56\xdd\x61\x49\x86\xa7\xb3\xac\x98\x35\x45\x26\x98\x4a\x98\x3b\xff\x29\x17\xf5\x74\x43\x39\xb4\x96\xfa\xcc\x3c\x5c\x6d\x8d\x5d\x25\x20\x13\xcd\x8f\x24\xe9\x7b\xbc\xe2\x9d\x8f\x94\xac\xdd\xa4\x95\x92\x18\xc4\x58\x58\xc8\x86\xd4\xd3\x3a\x10\x8f\xc0\x86\x57\x2e\x26\xc6\x8c\xbe\x08\x82\xe8\x7a\x0c\xed\x0c\xdf\x35\xb4\xd0\x7b\x65\x24\x30\x35\x9d\x05\x09\xd6\x4c\x7b\xb5\x92\xc3\xd4\x43\xbd\xf8\xca\xe9\x1f\x18\x96\x7a\x58\x9e\xd5\xac\xba\x52\x73\x4f\x72\x8c\xef\xc6\xa0\x84\x51\x21\xee\x50\xdd\x0a\x12\x03\x46\xd9\x05\xa9\xb1\xdc\xa9\x28\x04\x01\x87\xf9\xc4\x09\x3c\x1d\x03\x56\xd3\xc2\x33\x06\x4f\x92\xba\xab\x81\xb8\x10\x1a\xc8\xed\x3a\x49\x20\x8d\x3d\x00\xe0\xbb\xb8\x90\x5a\xf9\x4b\x4d\x6b\xe5\x9c\xa1\xb6\xa2\xa1\xe3\x91\x9b\x63\xa1\xc8\x22\x97\x4b\x40\x62\x40\xb3\xb2\x6e\xc1\x1b\x6c\xac\x23\x69\xe1\xe4\x5e\x0d\x2d\xa2\x5c\x8d\x0d\xf8\xa9\xdd\x35\x9e\x7d\x86\xcf\xde\x15\xd4\xb3\x5f\xbb\xb3\x7b\x6f\x2d\x2f\x65\x83\xea\x23\x2f\xe2\x65\x41\x9b\xb5\x3e\xb9\x65\x78\x58\x37\xdc\x1a\x36\x4c\x93\x61\xd6\x95\xdf\x5f\x78\x68\xb1\x6b\xca\x30\x5a\x15\xad\x24\xc9\x98\xa3\x92\xe4\xce\x03\xc1\x87\x10\xdc\x62\xbc\x36\xa3\x3f\x8b\x72\x73\xa0\xeb\xcc\x50\xa2\x51\x90\xcf\x7a\x66\x44\x55\x53\x95\x72\x4d\x76\x19\x69\xab\xb9\x05\x0d\xfe\xea\x68\xc9\xff\xe0\xe9\xf7\x31\xef\x77\x10\xee\xbf\xc2\x7f\x18\xb6\x11\xd8\xc1\x29\x62\xb4\x3f\x22\xc0\x0a\xe2\x14\x62\xcb\x99\xe5\xbe\x52\x64\x4f\x89\x0d\x77\x05\xbc\x52\xc4\x5b\x31\x37\x2b\xbb\xad\x56\x92\x70\x4f\xe2\x38\xc0\xbb\x37\x85\x0e\xb1\xa2\x0d\x51\xac\xbc\xee\x5b\xe1\x32\xb2\x40\x00\x23\x39\x62\x46\xe0\xf1\x1b\xbb\xa5\x5c\x3d\xda\x04\x7e\x10\xe3\x08\x6e\x3f\x78\x34\x28\x0b\xea\x58\xee\x51\x35\x24\x17\x13\x9e\xfc\xd5\x55\x33\x92\xa5\x39\x9f\xb3\x1b\x3a\x22\xba\x9d\x85\xf7\x2a\x08\xf3\x2d\x54\x59\x10\x44\x1c\x4a\x42\x16\x1a\x8a\x7c\x46\x3c\xa8\xe3\x05\x07\x57\xe5\x72\x98\x95\x7a\x76\x24\x9b\x1e\x8c\x9f\xed\x4f\xfe\x0e\x92\xf5\xca\x82\x58\x2e\xef\x56\x25\x76\x8b\x84\xf6\x5b\x92\x14\x59\x1a\x82\x8e\x13\xa0\x1e\x7a\x1b\x62\xa8\x1c\x76\xed\xef\x93\xab\x0b\xcc\x98\x33\x8f\x00\xae\xeb\xb2\x2a\x45\xa9\xbd\x3d\xfa\x6c\x98\xd7\x2a\x3c\x94\x91\x78\x7b\x5f\x7f\x8c\x44\xb5\xce\x18\x27\xa4\xae\xf8\x14\x21\x4e\xe5\xb8\x20\x0e\xb2\x64\x65\xbf\xb1\x5b\xc2\xb4\x47\x50\xb0\xbd\x2c\x64\xde\x15\x10\x30\x93\x78\xc1\x41\x08\x0b\x02\x9b\xbb\xb5\x60\x61\x68\x78\x9c\x22\x1e\x43\x03\x0f\x36\x8c\xb7\x36\x83\xb7\x43\xc9\xf3\xd8\xba\x18\x93\xee\xa0\x32\xdd\x79\x59\x5b\xc1\x74\x5a\x79\x59\x79\x94\x97\x95\x7f\x27\x2f\x2b\xff\x4e\x5e\x56\x7e\x4f\x5e\x56\x11\xe7\x65\xe5\x9d\x79\x59\x45\x77\x5e\xd6\x98\x14\x0f\xf3\xb2\x8a\x8d\x79\x59\x85\x9f\x97\xd5\xcb\x6e\x69\x43\x05\x12\xae\x4f\x34\x53\x7f\x09\x87\x43\x0d\x09\x8c\xfc\xc0\x73\xaf\x2c\x20\x4b\x4c\x6f\x42\xb5\x6e\x2b\x16\x92\x75\x2a\x5e\x19\x06\x40\x07\x5f\x2b\x2f\xa3\xb2\xc9\xb8\xe5\x57\x6c\xe8\x9e\xb1\xf5\x0c\x63\xb2\xf6\x38\x33\x48\xf3\x53\x61\x42\x0a\xc9\x2b\xaf\x24\xb9\x0d\x9e\xdb\xb0\xb4\xa1\xcf\x48\xb9\xa2\x4f\x7d\x91\x6f\x65\x8b\x83\x70\xfb\xa5\x69\x11\x31\x79\x3a\xc6\xdb\x84\x13\x41\x9e\xad\xca\xe8\x4c\x94\x12\xa8\x85\x7d\x8a\x60\x29\x37\xc9\x2f\x67\x51\x73\x3b\xd0\x9c\x6c\x0c\xbe\x9d\xc1\xb7\x5e\xb3\xb3\xfb\x1a\xab\xa3\xc6\xf6\x6d\x63\x7e\x13\xf5\x86\x26\x8c\xa1\x81\x5c\xe4\x96\x38\xd5\x97\xf5\xd8\x2c\xa4\x4e\x5a\x0a\xdd\xe7\x72\xc5\xc6\xa3\x50\xb8\x92\xc9\xc2\xfd\xb0\xac\x80\x8a\x51\x2c\xf0\x05\x14\xee\x86\x85\x73\x28\x7c\x42\xaa\xc0\xe0\x55\xbd\xbb\x94\xef\xb6\xb7\x37\xc8\x66\xc6\x3b\x23\xcd\xbb\xb1\x29\x4b\xcd\x2c\x7c\x61\x0d\x12\x72\x91\x9a\xce\x35\x62\x46\x5e\x56\xb5\x53\xe0\xe6\xbe\x6f\xcd\xa7\x16\xe2\x56\x6b\xff\x94\x30\x52\x11\x21\x9b\x8d\x83\xb1\x78\x1e\x03\xa7\x56\x09\xe8\x7f\xfb\x44\xeb\xc1\xbe\xfb\xf9\xd7\xf8\x73\x98\xd1\xae\x25\x5f\x2c\xbc\x4f\xdd\x63\x7a\x7c\xa2\x51\x79\x67\xeb\xbe\x38\xf8\x2e\xe0\x8d\xd3\x38\xac\xb7\xc6\xd0\xaf\x4c\xc3\x30\xe4\x7c\x79\xa9\x96\x11\x1a\x4d\xd9\x30\x2c\x58\xfb\x6b\xf7\xd2\x0e\xdf\xd2\x20\xfa\xda\x0f\x3d\x99\x54\x84\x45\xaf\x6b\x43\xaa\x38\x1f\x4e\x9f\x80\x30\x03\xf2\xbe\xde\xe8\xb5\x10\xbc\x75\x7e\x0e\x6a\x3c\xb1\xf3\x7e\xd0\x89\xe6\xa5\xec\xe0\xe4\x0f\xf7\xad\x09\x25\xac\x09\xa9\xb6\xe3\x43\x50\xec\x3b\x38\x38\x5a\xc4\x33\xeb\xb7\x85\x9e\x1a\xd6\xd2\x24\x6d\x77\x04\x5b\x3d\x74\x3a\x70\x64\xcd\xa6\x72\xdf\x5b\xc2\x33\x30\xf8\x10\xd1\x0c\xed\x36\xac\xe3\x5a\x97\xdb\x04\x28\xc7\x78\x92\xf0\x17\xca\x2d\x8f\x7a\x30\xf0\xf9\xbb\x4d\x93\xce\x88\x38\x13\xfe\x5c\x6c\x72\xae\x10\x98\xa0\xea\x85\x58\xad\x46\xe0\xd7\x62\x1d\x25\x5a\xb5\xc4\x83\x1d\x30\xc4\xc3\x1d\x30\xdc\xdc\xde\xea\xb9\x89\x17\x6d\x1b\x25\x37\x76\x7f\xcd\x85\xef\xc1\xd3\x5a\x63\xbd\x8c\x48\xbc\xa0\xfc\xdf\xe1\xb3\x22\x5e\x74\x7d\xb0\x69\xb9\xb6\xc6\x98\xc8\x99\x74\xb6\x76\x4f\x7c\x22\xe1\x1b\x0a\xbc\x89\xb6\x3b\x0e\xcb\x02\x46\x5d\xdc\x04\x52\xec\x58\x5f\x9f\x94\x7d\xef\xe1\x5e\xa3\xdf\x37\x31\x25\x72\x65\x50\xd0\xd0\xcb\x7c\x58\x6b\x07\xe5\x49\x4e\xff\xda\xa0\x9c\x94\xa4\xc1\x13\x06\x1a\x68\x7c\x27\x40\x01\xf5\x0b\x83\x24\x5c\x1d\xca\x2f\xac\x22\x42\x8e\x4d\x4e\x99\x96\x6b\xd3\x48\x9b\x23\x15\x94\x7b\x7e\xc7\x45\xe4\x77\x5c\x44\x22\x47\x76\x63\xdc\xb9\x85\x97\x91\xee\xb6\x44\x4a\x20\x81\xf1\x5d\xf8\x4d\x94\xf7\xed\xbd\x26\x1c\xdf\xb3\xea\x9c\xa9\x6c\x22\xaf\xc2\x56\xd7\x6b\xd9\x40\x97\xc3\x6e\x81\x27\xf1\x1c\xc6\x2a\xf0\x4e\x64\x8c\x33\xd3\x89\xec\x26\x6a\x64\x33\x48\x6d\x73\x56\x22\x4e\x66\xa4\xf0\x24\x5c\x9c\xea\xfc\xf3\x9c\xd6\x65\xc4\x46\x08\x33\xdb\xa9\x70\x68\x32\x15\x31\x1a\xe5\x04\x09\x5a\xe4\x90\xa6\x14\xb7\xa3\x21\xb3\xb5\x97\x58\xc6\xaa\x6b\x2b\x45\xec\x56\x4a\x40\x6d\xa3\xfe\x56\x98\xcc\x72\x08\xda\x48\xfe\xd2\x40\xd6\x2f\x92\x3b\xa0\x79\x5d\x68\x85\x97\x62\x9c\x8c\xec\x4e\x4b\xe4\x7c\x1f\x38\x4b\xe6\xb4\xf3\xda\x45\x69\xc0\x59\x2b\x87\x9d\xeb\xef\x9d\x86\x78\xee\xa5\x40\x8b\x35\xfc\xf6\xbe\x76\xb1\x23\x92\x04\xcc\xa9\xaa\x5b\x2f\x42\xa8\xfd\x1d\x9c\x82\x3f\x74\x07\xba\x23\x02\x3d\xf8\x62\x36\xfd\xc2\x7d\xf1\x6b\x64\x7a\x24\x39\x4d\x73\x17\x6b\xbd\x01\x4f\x92\x3e\x1c\x45\xab\x45\x21\xa5\xa4\x2d\x76\xb4\x96\x46\xfe\xa7\x82\x25\x3e\x55\xb1\x13\xa7\x3b\xe9\x08\x4f\x2a\x2f\xe2\x5d\xe9\x51\x12\x15\xc9\x72\x50\xf1\x1d\x7f\xe4\x27\xb4\x72\x91\x5f\x94\x1c\xb2\x95\x31\x4d\xa1\x87\xbf\x31\x24\xf0\xe4\x63\x57\x20\x6f\x86\xef\x2e\x84\x91\x82\x60\x4c\x5e\x3d\xa0\xd2\x1a\x8d\xc8\x3e\xe8\x59\x9d\x87\x40\xca\x22\x77\x30\x75\xff\x9e\xe6\xfa\x9c\x7d\x2e\x4b\x41\x2b\xb7\x74\x5f\x42\xde\x9b\x29\xc4\xc0\x3c\x6b\xe9\xfd\xe8\xf7\x38\xae\x80\x9e\x05\x05\xab\xd5\xa0\x07\x47\xfb\x31\x64\x78\x7b\x7c\x59\xe6\x5c\x3c\x36\xd2\xb7\xde\xc0\x56\x56\xf2\x71\x6f\x1b\x1f\x79\x3c\x95\xb1\x3a\xe0\x5d\x49\x97\x54\xd6\x22\x9d\x2f\x3d\x0f\x27\xb7\xc9\xc6\xae\x34\x3c\x5a\x39\x29\x69\x2b\x15\xdf\xeb\x02\x65\x78\xd2\xc0\x99\x43\x0c\xaf\xd7\xef\x0b\x24\x48\x46\x20\x6c\x95\x51\xc7\x6d\x18\x4d\x94\xf5\x3e\x5f\x20\xb1\x5a\x21\x41\xfb\xa8\x8f\x04\x65\xd3\x78\x8b\x62\x1f\x0a\xe3\xa6\x0c\x48\x4f\x59\xef\xa8\x5d\x10\xde\x9a\xf6\xc5\xf0\x22\xab\x5f\x0a\x51\xe5\x67\x8d\x60\x68\x30\xcf\x44\xf6\x18\x06\x53\x95\xa5\x18\x60\x8c\x49\x5f\xb8\x30\x40\x13\x73\x19\x41\xab\x13\x1c\xa6\xcc\xe1\xd6\x95\x57\x1e\x15\x38\x3e\x23\x22\xa6\x77\xfa\x6c\xa4\xfd\xd1\x5a\x07\x0a\xc1\x6b\x9d\xb1\x24\x5e\xe7\x4e\x16\xb7\x34\xa1\x74\xee\x59\xe4\xc2\x2d\xb2\x28\x82\x34\xc2\xfe\x9a\x3b\x0d\x34\x7c\xe5\x80\xe4\xb7\xe8\xac\xef\x3c\xcf\xaa\x73\x58\xce\x5a\xdb\xdb\x7b\x76\x27\xf6\xd5\xf1\xce\xc9\xd4\xff\x01\xcb\xac\xd7\xe0\xce\x70\x7d\xa9\x60\xe4\x1b\x53\x29\x1c\x2c\x32\x1e\x0c\xb6\x2a\x62\x79\x0d\x46\x42\x16\x42\xc4\xfc\x81\x6f\x11\xf9\x53\x40\x1b\x6c\x3f\x6c\xa0\xdb\xfe\x40\xb7\xf5\x40\x25\x76\xff\x52\x20\x11\xdb\x0e\x6f\x8f\x46\x2e\x91\x88\x59\x19\xa5\x75\x5e\xff\x5a\x38\x21\x9a\xb6\x0c\x0a\x4c\x24\x14\xb1\xd1\x42\x0e\x0e\x1f\xe2\x35\x09\xda\x68\x54\xca\xc6\xf6\xbe\x76\x34\x02\x41\x4d\xfd\x95\x9a\xbc\x2f\x8c\xa3\x38\xfc\x09\xd2\x47\x03\x12\xd5\x76\xdb\x6b\xb2\x14\xb1\x29\x87\x4b\x74\x61\xbc\xd1\xff\x52\x22\x20\x87\x6c\x6c\x70\x1d\x98\x9b\xe8\xcb\x63\xbd\x26\xb7\x61\x33\x7e\xb2\x0c\x04\xb5\x77\x74\xed\x1d\xd9\xe9\xf9\x03\x3a\x85\x78\xbb\xaa\x23\x30\xf1\x74\xd6\x9d\xae\xd7\x4f\x2d\x63\x4e\x63\x8a\x16\x26\xd5\xc9\x17\xe8\x88\x21\x6d\x7e\xc4\x21\x3d\x10\x71\xd9\x83\x78\x90\x3d\x48\xc7\x00\xe3\x54\xa5\x20\x70\x8e\x2d\x92\xc2\xf3\x7e\xab\x4a\x10\xdd\xab\xba\x55\xbe\x4b\x65\xf5\xb2\x28\x90\xea\xf4\x58\x76\x42\x07\x5b\xbf\x1c\x7e\xfc\x30\x54\x42\xa7\x7c\x71\x8b\x06\x83\x2d\x81\xb7\xfe\xd7\xc9\x31\x88\x07\xf4\x18\x4e\xfe\x97\x1c\xd7\x68\x22\x9e\x73\xe3\xc5\x22\xb6\xb6\xec\xfd\x7a\x2c\x20\x81\x7f\xa5\x54\x0a\x95\xbc\xaa\x96\x2a\x9c\x44\x59\x2d\x0d\xed\xfa\x95\xa3\x0a\x6c\x2a\xfa\x65\x04\xb6\xfb\x12\x6a\x6f\x18\xaa\x30\x39\x62\xa0\xa0\x58\xaf\xd7\x9b\xd2\x0b\xb1\x30\x19\xa8\x4d\x2f\xa4\xd6\x06\xb2\x4b\xaa\xbc\x40\x49\x72\x2a\x6b\xf7\xfb\xdc\xe5\xec\x11\xa4\x3f\x96\xdb\xf2\x96\xb2\x82\xbc\x69\xa5\x6f\x27\xb1\x63\xf7\xae\x1f\x6f\xef\xb7\x12\xed\x3f\x23\xcc\x8b\x72\x60\x3e\x6a\x87\xe1\xcb\x6d\x18\x3e\xf2\xde\x3f\x21\x2a\x28\xfb\xbe\x0a\xe7\xee\x03\xbd\x53\xa2\x3d\xb2\xfe\x07\x8f\x9a\x89\x49\x2b\xc0\xba\xae\x7f\x89\x4c\xde\x14\xca\x74\xfb\x1f\x90\x01\x14\x63\xa2\x7a\x45\x98\x2c\x0b\x24\x21\xf9\x35\xed\x22\x3d\xf4\xfc\xb6\x7f\x20\x9e\x20\x30\x01\x3f\x17\xf4\xee\xe0\x4a\x22\xa3\xf4\xf8\x13\x27\xa7\x9c\x7c\xe5\xe4\x23\xf9\x46\x5e\xf3\xc0\x0c\xad\x94\x74\xc9\x7b\x8e\xd7\xe4\x03\xf9\x4c\xfe\x21\x48\x23\xc8\xb2\x20\x77\x9a\x30\x4a\xfb\xe3\xf5\xc9\x7a\xd2\xf7\x3f\x31\xa6\x69\x8b\x9c\xcf\x81\x33\xf9\xe9\xf6\xe7\xb2\x16\x6f\x75\xc2\xc1\x09\x8a\x0d\xba\x1a\x3e\x67\x8b\x9c\xb3\xb9\x77\xe3\x9c\x9e\x7e\x3e\x78\xf9\xea\xe8\xf4\xf5\xc1\x6f\x47\x1f\x3f\xbe\x3b\x3c\xfd\xf3\xbb\x8f\x3f\xbd\x7c\x77\xfa\xf3\xc7\x8f\x7f\x39\x3d\x0d\x7d\x32\x04\xbd\xbf\xb6\xca\xfb\x95\xd7\xaf\xf3\x5a\x92\x2a\x73\xb8\x75\xeb\xe6\xf2\xb2\xac\x44\xad\x78\x27\xdd\xde\x68\xe2\x1c\x2f\xc4\x30\xe7\x5f\xd9\x4c\x20\x86\x27\x37\x45\x80\x45\x54\x9e\xdc\x92\xbf\x2a\x97\xcb\x5c\x40\x0b\x12\x3b\x82\xcf\x80\x0e\xee\xf5\x64\x97\x1a\x3b\x5b\xe3\xea\xe1\xd9\xdb\x3a\xe7\x8b\xf5\x9a\x1c\x7c\xb7\x71\x93\x54\x97\x13\x16\x7c\xea\x3f\x63\x54\xa2\xbb\x35\x61\xe4\xae\xbc\x62\x55\x95\xcf\xd9\xcf\x65\xf9\xed\xd0\x99\x65\x9a\x62\xcf\xb8\xa6\x66\xc2\xc4\xc4\x52\xc2\xa3\x4a\x97\xcf\x2e\xd8\xbc\x29\x74\x9a\x6e\x55\x36\x8b\xb3\x7b\x7c\x66\x8b\x74\x63\xe6\x0f\xb9\xf7\xfe\xa6\xff\x74\x0b\x13\x49\xfd\x89\x86\xfc\x17\x62\x94\x43\x72\x02\x75\x3d\x7b\x1a\x98\x35\xd9\x00\x49\x5d\xad\x89\xa9\x6c\x44\x65\xa5\x69\x8d\xa2\x7e\x53\xca\x61\x57\xac\xbe\x08\x27\xda\x5d\x58\x96\xc2\xae\x93\xae\x11\x2c\xd3\x39\x33\x33\x57\x93\x33\x37\x1d\xba\xdb\x34\xe0\x57\x9c\x9c\x35\xb2\x05\x49\xfc\xa5\x23\x72\xc5\xaa\x5a\x52\x17\x83\xf1\x93\xe1\x78\x67\x38\x1e\x10\x75\xa1\xb3\xea\x53\x36\xfb\x96\x9d\xb3\x0f\xd9\x92\xa5\x03\x45\x76\xcf\xcb\xe5\x60\x8d\x89\x18\x9e\x9e\x1e\x1e\xbc\xfa\x7c\x70\x74\xfa\xf6\xc3\xd1\xc1\xe7\x0f\x2f\xdf\x1d\x9e\xbe\xfe\x78\xfa\xe1\xe3\xd1\xe9\xaf\x87\x07\xa7\x1f\x3f\x9f\xfe\xfd\xe3\xaf\xa7\x5f\xde\xbe\x7b\x77\xfa\xd3\xc1\xe9\x9b\xb7\x9f\x0f\x5e\xd3\x9f\x0b\x22\xb4\x93\xe7\xa7\xb2\x12\x59\x41\x7f\x92\x25\x72\x9c\xaf\x3f\xbe\x07\xd6\x27\x3a\x95\x5a\x24\x1d\x07\x5b\x19\x07\x44\xaf\x79\xcb\x9c\x3d\x6a\x5b\x30\xe1\x4c\x31\x95\xcd\xc1\x26\x1b\x4e\x4d\xcc\xc4\x72\x8b\x67\xcf\x70\x2c\x07\xd8\x7e\xf2\x8c\x7c\x04\xc1\xff\xf0\x1b\xbb\xad\x95\x8f\x87\x15\xec\x05\x00\x25\x3a\x01\x4a\x0c\x17\x45\x53\x5f\x1c\xde\xf2\x59\x9b\xca\xdf\xec\xd2\x35\x7e\xe6\x42\xd7\x74\x45\x86\x55\xf1\x73\x82\x8b\xc5\xbb\x52\x20\x3a\xae\xbe\x4b\x5c\x0e\xb7\x98\xac\x78\x10\x49\xf8\xc8\x12\x5d\x82\xf4\x47\x92\x2a\x24\xa2\x4d\x0b\xfe\xb3\x0d\x8e\x75\x83\x9a\x30\xb4\xca\xd9\x97\xa2\x0b\x50\xfa\xc0\x6a\x46\x8d\xef\xba\xb6\xfb\x7d\xd6\xc5\x5d\x25\x09\x8a\xd8\x04\x33\x06\x3d\x90\xfe\x38\x20\x26\x3b\x1b\xd1\x77\x6a\x40\x67\x4a\x86\x69\xa4\xc7\xaf\x2d\x43\xce\x00\x2b\xcd\x15\x3a\xab\x25\xc9\xe0\xbd\x0c\x4e\x45\x08\x0c\xc6\x44\x4f\x11\xe0\xff\x02\xa1\x1f\x0e\x47\x6d\xd4\x61\x73\x26\x2a\xc6\xde\x72\x51\x76\xb3\x9c\x4a\x5e\xa8\x57\x98\x77\x6f\x9f\x3b\xa8\xab\x95\x3d\x63\x9d\xa7\x30\x76\xed\x7b\x16\x6c\xbe\xea\xae\x3f\x26\x15\x0c\x55\xe3\x25\x6a\xf1\xd2\x9a\x8c\xf7\xc6\x69\x0c\x5a\x83\xa6\x66\x3d\x49\x71\xce\xc4\x60\x02\xaa\x3a\x79\xa3\x52\x8e\xc6\x7b\xdb\x58\x7e\xb2\x7d\xff\x27\x36\xb5\x2f\xc9\x08\x78\x55\x76\x92\x02\xca\x97\xdf\x77\x96\x73\x99\xb1\xde\xb3\xba\xce\xce\xc1\x2e\x8e\xb3\xc2\x70\xa9\xea\xc2\x52\x7f\x6a\xea\xc5\x6b\xf0\xc9\xb3\x02\xfb\x77\xbd\xdd\x1c\x5e\x5e\x23\x3c\x29\x10\x1c\x2b\xa2\x23\xa7\xd8\x7b\x56\x2d\x62\xcd\xc4\x91\xd2\xb9\x48\x06\x1b\x93\x6a\xbd\x26\x0b\xfa\x3a\x13\x12\x33\xca\xcf\xc3\xf6\x3a\xd2\x8a\xb9\xba\x8f\x17\x6b\x12\x32\x70\x66\x7c\x53\xaf\x9b\x8a\x8c\x08\xc3\x29\x2a\x28\x23\x5e\x71\x4d\x46\x92\x34\x2c\x23\xb8\x9d\xd1\x60\x84\x02\xaf\x49\xee\x0f\x62\x56\xb0\xac\x32\xef\x67\x78\x4d\xb2\xf6\x10\xfb\xe3\x35\x98\x4b\xda\x89\x2c\xca\x6a\xc6\xde\x54\xd9\x92\x7d\x0e\xf0\x96\x24\x3e\x6c\x98\xd4\x39\x55\xbb\x35\xbc\x64\x95\xe4\x19\x20\xc3\xf4\xa5\x29\x94\xb3\x26\x17\xe6\x97\x1b\x23\x59\x9a\x32\x7f\x64\x11\x40\xb8\x4d\x9f\x95\xbc\x2e\x0b\x66\x82\xc6\x9a\x4f\x65\x5f\xc5\x4b\x9e\x2f\x81\x63\x87\x91\x4e\xba\x60\x46\xd7\xaf\xd8\xef\x0d\xab\x45\xf8\x41\x92\xe8\xc6\x87\x0c\x0e\xca\xe0\xe8\x22\xaf\x7b\x67\x55\x79\x5d\xb3\xaa\x37\x2f\x59\xcd\xff\x97\xe8\x69\xda\xb1\xd7\xd9\xc4\xb0\xf7\x3e\xfb\xc6\x7a\x75\x53\xb1\x9e\xb8\xc8\x44\xef\xb6\x6c\x20\x72\x68\x2f\xeb\x5d\x96\xc5\xed\x22\x2f\x8a\x5e\xce\x7b\x2a\x62\xa8\x6e\xba\x1e\xf6\x2e\x84\xb8\xac\xd3\x3f\xfd\x69\x71\x36\x5c\xb2\x3f\xa9\x2b\xdf\xd4\xaf\x07\x98\x74\x4d\xe5\xf6\xc7\xc6\xdb\xb5\x44\xff\xa1\xe1\xae\x3b\x95\xf3\xf3\x6e\x0f\xa7\xb9\x3c\x0a\xf8\xbb\x87\x66\xae\x4e\xcc\xda\x8f\xca\x7b\xf9\xd0\x13\xa7\x2b\x3e\x3e\x57\x59\xfc\xae\x68\x7f\x4c\xce\x14\x8a\xb8\xa6\x8f\xc7\xe4\x86\xee\x91\x03\x3a\x9a\x74\x1c\x85\x5e\x8c\x1e\x5e\xd0\x03\x79\x38\xfc\x23\x40\x1e\x70\x52\x18\xbe\x1b\xbd\x60\xab\xd5\x78\x7b\xef\x39\x9b\x46\x1b\x17\x7e\xd4\x13\xd9\x37\x56\xc3\x16\xd4\xb9\xc8\xaf\x58\x2f\xe7\xa2\x77\xc6\xc4\x35\x63\xbc\x37\xea\x65\x7c\xde\x1b\x6f\xef\x91\x9e\xfc\x2c\xe7\xe7\xbd\x85\xfc\x52\x12\x14\xb5\x89\x62\x2b\x2e\x32\x2e\xeb\xf4\x16\x97\x75\x2f\xaf\x7b\xbc\x14\xbd\x86\x6b\x50\x60\xf3\x01\x4e\x6f\xe8\xe8\x39\x9b\x42\x00\x93\x45\x51\x96\x15\x1a\xb3\x9d\x3f\x31\x9c\xee\x29\x16\xf1\x9b\xca\x27\x16\x60\x58\x72\x48\xbf\x0d\x65\x03\xdb\x13\xf5\x77\x3c\x2c\xf9\x52\x55\xa1\x9d\x5c\xf0\x99\x95\x26\xc5\x38\xf6\x80\xb2\xad\x1b\x20\x9f\xce\x24\xb6\x65\x78\x7a\x38\xbc\x2c\x6b\xa1\x7b\xd4\x71\x93\x90\xb7\x53\x86\xf9\xe1\x06\x11\x77\x7c\x40\xb8\x36\x9f\x95\xdf\xc5\xa8\xf5\x8c\x32\x72\xb5\x5a\xc9\x36\x47\xa4\xe3\xe3\x18\x97\x72\x7c\x77\x4d\x2f\x02\x2a\x85\xa1\x78\x22\x90\x1b\x31\x46\xb1\x4b\x74\x8d\x01\xb0\x3c\xb9\xe1\x51\xa4\x52\x54\xf2\x17\xa6\xa2\x96\x08\xec\xe5\xb0\xd7\xe2\x98\xc7\xe3\x17\x2f\x5e\x8c\x49\x49\xd9\x71\x05\x82\x99\xbe\xf3\x69\x2a\x93\x64\xf4\xfc\x93\x4a\xf9\xe5\x12\xa8\x1e\x57\x27\x54\x10\x76\xcc\x4f\x68\x49\x38\xad\xbc\xde\x3f\x7a\x5c\x92\x8b\xde\xc3\x28\x3b\x1e\x9d\x18\x1a\xd9\xb3\x83\xf2\x38\xf9\xe3\xd1\x49\xe0\x4e\xe5\xcd\xe1\xb2\xbc\x54\x21\xe6\xb8\xce\x88\x7a\x3c\x3a\xa1\x26\x1b\xbf\x9a\xc5\x88\x94\x6e\xb2\xd5\xf3\x72\x62\x44\x33\xdb\xff\x85\xaa\xad\x31\x7e\x3c\x26\x19\x65\xc7\xf9\x09\x69\x68\xbe\x35\x26\x05\x65\xc7\x4d\xd8\x61\x96\x24\xa3\x17\x9f\x50\x46\x38\xc6\xb6\xb0\x50\x85\x05\xc9\xf0\x14\xc1\xc4\x25\x25\xd8\x9c\x40\x16\xa1\x06\xa7\xaa\x2c\x23\xb2\x69\x28\xcb\x9d\x03\x8e\xb7\x8e\xb6\x19\x1e\xaf\xa3\xdf\x9c\x4d\x07\xdd\x13\xdd\x69\x23\x3e\x45\x7e\xe5\x65\x25\xde\xf2\x39\xbb\x79\x2c\xdc\xb3\x1f\x68\x83\x4f\xc1\xe6\x64\xfe\x58\x0c\xf3\x39\x60\xa4\x53\x7a\x7c\x42\xbe\xca\xff\x5e\xd2\x31\xf9\xa0\x50\xd3\x67\xba\x43\xde\x42\x54\x35\x48\xf6\x4c\xfb\x63\x67\x1b\xfb\x1a\x79\x41\x6b\x05\xfd\x88\xbe\x5a\xcb\x7c\x11\x64\xdd\x75\x2a\x47\xfc\x4a\x56\x72\xab\x20\x54\x68\x23\x50\xdd\x51\x66\x02\xce\xc9\x4a\xc4\x1b\x77\xcb\x63\x9d\x1c\xa1\x53\x49\x55\xa8\x4e\x7d\x1d\xa2\xe6\x09\xde\x43\xb6\x4d\xc4\x30\xe9\xbf\xc1\x0e\x17\x7c\x44\xa7\x18\xbf\x91\x67\xaf\x42\x7f\x04\xe9\xd6\x82\xc1\x27\x49\x89\xde\x11\x6f\x6c\x8f\x99\xdf\xc9\x1f\xea\x60\xaa\x15\x49\x12\xd5\x59\x8e\x30\x96\x2b\x35\xd2\x79\x04\x3f\x4f\x4c\xd4\x9c\xd7\x88\x63\xf2\x01\xfa\x36\x3d\x7c\x48\x12\xd4\x47\x1f\xa2\x59\xbd\xe0\x78\xb5\x62\x49\xd2\xcf\x10\xc6\x13\xa3\x56\xfa\x60\x17\x2f\xb0\xb2\xbf\x73\xe5\x66\xa7\x3e\x0c\x2f\xb5\x79\x0c\xd8\x13\x68\x5d\x7b\xd3\xea\xe7\x39\xe5\x78\xd2\xa6\x39\x3b\x15\x2f\xc5\xd4\xeb\xa7\x48\x3f\x50\xb5\x88\x49\xf2\x0a\x9d\x62\xf2\x1a\x19\x7f\x56\xf9\x73\xa2\x26\xe9\x99\xf1\x7f\xc0\x4a\x3b\x6e\x02\x03\x28\xe7\x0b\x7f\xad\x6b\xb5\xd6\xb5\xb7\xd6\x1c\x93\x99\x44\x9d\x1a\x58\x67\x96\x7f\xb5\x20\x59\x01\x48\x7a\x3b\xf2\xab\xdc\xf6\xc8\xa0\xd1\x38\x15\x3d\x1e\x9b\x0c\x5d\xc6\x87\x72\x6f\x14\xf9\x8c\x79\x41\xf2\x43\x1f\xa8\x31\xdb\x9d\x44\x1a\xec\x3d\xb6\xa3\x2e\xf0\x2f\xb4\xf1\x2f\xfd\xb7\xf3\x82\x59\xeb\xa4\x3d\xff\x36\x7e\xbb\x5c\xb2\x79\x2e\x59\x3c\xf3\x7a\xec\xbf\x7e\x57\x5e\xdb\x17\xbb\xfe\x8b\x0f\x92\x7c\x2d\xec\xbb\x1d\xff\xdd\xa7\xaa\x5c\xe4\x85\x75\x73\xf7\xde\xfc\x5a\xb3\xea\xa7\xa2\x9c\x7d\x03\x93\x60\xfd\xed\x76\xc0\x6f\x02\x11\xf6\xaa\x95\xfa\x97\x41\xd2\x6d\x1f\xa6\x02\xa2\xc2\xc4\x28\x3f\xb8\x61\xb3\x46\x7e\xe0\xdf\x36\x6f\x56\xab\xb7\xab\x15\xb2\x47\x2b\xe4\x37\x9d\x9c\xea\x93\x0f\xa0\x1d\x84\xce\xe7\xf8\xbb\x37\xa0\xc0\xf4\x8d\xc2\xda\x1f\x01\xd0\xf9\xdf\x71\x76\x13\x6a\x5d\x34\x68\x7c\xb6\xa0\x61\x82\x1d\x2a\xa3\x13\x85\x02\x76\xe2\x9c\x4b\xf4\xf3\x5a\xa1\xd3\xcf\x93\xcf\x54\x84\x02\x6e\x27\x55\xf9\x4c\xf9\x3a\xe8\xfd\x32\x6b\xea\xee\x55\x8a\x98\x70\xa0\xdd\x3f\x65\x39\x17\xf4\x4b\xf0\xa6\xe1\x5f\x72\x71\x61\x77\x2f\xe4\xad\x5a\x60\x1e\xce\x45\x03\xb0\x06\xf0\x70\x46\x8c\xee\x78\x33\x62\xfe\x8c\xc4\x7d\x33\x32\x02\xc9\x0e\x98\x21\x9c\x64\x06\x53\xb5\x08\xac\x4e\x12\x3c\xb3\x56\x1c\x99\x61\x97\xb3\xe1\x9c\x15\xd9\xed\xa4\xa0\x03\xde\x2c\xcf\x58\xe5\x23\x20\x49\x66\x14\xd3\x66\xab\x48\x1b\x92\x75\x54\xc8\x8c\xf9\xe1\xd4\x3e\xa5\x12\x1f\x28\xbc\x94\x51\xf9\x4c\x0a\xda\x38\xc3\xbb\xbb\x7c\x9e\xbe\xdc\xda\x22\x06\xd6\x53\x4e\x02\xc4\x99\x32\x62\xb1\x51\x5a\x90\xc8\x42\x3c\xa3\xc5\x56\x46\xec\xdd\x94\x3e\x1e\xaf\x49\xf1\xa2\x99\x22\xef\xd2\xa5\x05\x39\x42\x5f\x09\xb3\x8e\xa8\x0a\x67\x42\xee\x5f\xf4\x15\xcb\x3b\x63\x9a\x23\x9c\xbe\x97\xe7\x45\xe2\xbf\xe2\x71\x83\xb1\x24\x19\xbc\x36\x32\xb8\xe5\x18\x26\xad\xc3\x85\x09\x0b\xf7\xe7\xa2\x6c\x8a\xf9\xdf\x73\x56\xcc\x3b\x94\xa8\xf1\xae\xc8\x6b\x51\xcb\x10\xe1\x4e\x32\xe4\x84\xba\x97\xdc\x0d\xc5\x5d\x40\x1a\x13\x00\x79\x66\xd3\xaf\xf0\xe0\xe2\xee\xc8\xb2\x1b\x5f\x3a\xab\x55\x86\xc2\x53\x7a\x5d\x65\x97\x9d\x58\x48\x1d\xc7\xcf\x66\x60\xd1\x8c\xba\x8e\xe3\x30\xbb\xbc\x2c\x6e\x21\xfd\x38\xb1\xb2\xaf\x08\xa0\xd7\x6b\x32\xde\xdb\x79\x80\x3c\xa8\x33\x69\xfd\xe1\xed\xf2\xac\x2c\x92\x64\x50\xc3\x43\xeb\xcd\x30\x17\x92\xfb\x29\xab\x69\x97\x4e\x40\x0b\x98\xd7\x5d\x0a\x03\xd6\xcd\x92\x9a\x0e\x41\xdd\x5d\x8b\xaa\x99\x89\xb2\xa2\x94\xda\xf2\xbe\x79\x76\x9a\xf4\xa9\x19\x9d\xb5\xe2\x5e\x3b\x6a\xad\xb4\xf2\xe5\x3e\x92\xdc\x9c\xd2\x08\x94\x8b\x9e\x15\xcc\x4a\x6e\xeb\xe8\xf6\x92\x29\x11\xdd\xe0\x55\xc6\x25\xcb\x26\xf7\xbc\x97\xf5\x66\x45\x56\xd7\xbd\x4c\xb2\x84\x76\xb4\x9e\xf5\x44\xee\x5a\x67\x5e\x73\x9f\xd9\x82\x55\x8c\xcf\x4c\x9b\x72\x87\x7a\x17\x19\x08\x05\xce\x24\x27\x99\xf3\x5c\xe4\x59\x91\xd7\x6c\xde\x7b\xdc\xab\x9b\x4b\x56\x21\x1c\xd4\x90\xfd\x4b\x6e\xd1\x48\x73\xc5\x6a\x65\x90\x8a\x93\x43\x08\x7f\x11\xbd\xe2\x29\x4b\x3d\x13\xda\xcc\x0e\xb2\xb3\xb2\x05\x74\xd1\xbd\x20\x87\x72\x74\x3d\x76\x73\x59\xb1\xba\x86\x68\x6f\x4d\x2d\x7a\x2c\x17\x92\xdb\x3d\x63\x40\x90\xf7\xca\xca\x5b\x21\x02\x4c\xef\x60\xcb\xf4\x80\x27\x9e\x03\x12\xd5\x1a\x04\x25\xff\x45\x22\x49\x84\x7b\x49\xee\xbc\x6d\x4f\xef\x40\x11\x9d\x32\xc2\x78\x23\xb9\xec\xb3\x82\xa5\xfd\x31\xb9\xae\x72\xa1\x9e\x47\x64\x56\xf2\x45\x7e\xde\xe8\x77\xa3\xf5\x1a\x13\x91\x24\x48\xf7\x51\x33\xf1\xc9\x34\xfd\x71\x31\xed\x2c\x85\xc5\x49\xd9\xf0\xf4\x14\x46\x71\x7a\x4a\x85\xca\x03\xd5\x50\x8e\xf6\x40\x14\x89\x9e\x48\xda\xec\xf8\x84\xd4\x10\x16\xd3\xac\xeb\xc2\xe3\xd5\x10\x26\x9c\xde\xe9\x44\x35\x72\x60\xf2\xd1\x04\x70\x06\x51\x83\x52\x53\x59\xb4\x23\xe7\xbc\xcc\x6b\x89\xa8\xa2\x88\x21\x9e\x8a\x6e\xa8\x1b\x84\xec\x60\x43\xd5\x24\x65\x84\xad\x31\x1e\x2a\x96\x3c\xf8\x4c\x6f\x5f\xf8\x15\x74\xae\x3f\xf2\x3d\x6e\xe6\x6e\xf4\x6e\xdc\x63\x33\xee\xbb\xb5\x3f\x6a\xc2\xe5\xc4\x25\xea\x09\xd5\x3f\x1d\x4a\x75\x6b\x6a\xbb\x00\x46\x10\x4f\x4a\x33\x9c\xa9\x70\x03\x1b\xa5\x48\xe8\xf9\x48\x96\xaf\xd4\xcf\x44\xe8\xe1\x96\xea\x2f\x26\x5c\x71\xe9\xa5\x59\x2e\x4c\xec\x63\xc7\xba\xf9\x6d\x6e\x5c\x24\xb3\x22\x4a\x69\xe1\xc9\x98\xf5\x8b\xca\xb2\x9c\x76\x8f\x3e\xe9\x1e\xb3\xa2\x40\x1c\x6f\xde\x30\xe1\x2f\xfd\xfd\xbb\xd4\xaa\xea\x3b\x3e\x5c\x06\x7a\x90\x46\x9f\x15\x6d\xdf\x86\x10\xa7\x60\x14\x3a\x3c\x3d\x65\xf5\xfb\x52\x92\x28\x53\x6e\x22\xca\xa4\x9c\x18\x23\x71\x2f\x86\xa4\xe3\x92\x17\x04\xdc\x96\xfb\xb6\x7f\xef\xd0\xeb\x03\xaf\x84\x8a\xf2\x35\x58\x18\x4a\x8a\x2d\xaf\x40\x2a\xf6\xdf\xfa\x9b\xff\xf6\x13\x45\x4d\x54\x02\x33\x0d\x19\x59\x5d\xe7\xe7\x1c\x01\x48\x19\x85\xad\x01\x2f\xf8\x01\x34\x4f\xba\x3d\x1a\x11\x43\xb6\x40\xb1\x52\xce\xa4\x97\xe4\x9a\x9d\x5d\x02\x75\x02\x59\x00\x60\x76\xb5\x86\x42\x81\xc9\x32\x72\x54\xbd\xf5\xa2\x55\xae\x56\x68\x49\x19\xba\x50\x40\x50\x61\x4c\x96\x66\x07\x2d\x57\xa5\xc0\xe9\xb6\x9b\xeb\xbb\x18\xea\xce\x93\xa4\x56\x15\x23\x0b\x13\x46\x6d\x15\x3f\xa2\x54\x85\xf8\x70\x29\x09\x1d\x84\x87\xec\x8a\x55\xb7\x5d\xc0\xd1\x29\x52\x97\xb7\x60\x57\x39\x1f\x2e\x8f\xd9\xc9\xda\xa5\x4d\xb9\x45\x6a\x9d\x01\x52\xe6\x74\xe1\x28\x07\x81\xef\xec\x6a\xc0\xf1\x2b\x15\x41\xc0\xd5\x07\x19\xcd\xd5\x6f\x25\x8d\x50\xcf\x95\x53\x42\x65\xca\x6a\xd8\x27\xa0\x32\x1d\x87\x58\x30\x74\xe7\x90\x00\xf1\x90\x9b\xdc\xb9\xf9\xc7\x06\xcc\x50\xe4\x9e\x78\x8b\x4e\xb2\xe1\xa9\x7c\x54\x70\x29\x69\x9f\x5b\x24\x0b\x41\x0b\x4c\x75\x7b\x4b\x75\xd4\xc8\x65\x56\x0b\x48\x3d\x2b\x31\x8f\xd7\xa8\xed\x6b\x69\xa0\xd4\xe0\xa5\xa5\x3e\xe1\x6b\x92\x99\x3d\xd5\x41\x2c\x25\x46\x65\x60\x15\xde\x66\x95\x6e\xe5\x38\xb8\x67\x7b\x67\xc1\xf7\x4b\x5e\x14\xef\x63\x33\x3c\x65\x80\x07\x4a\x58\x36\x97\xe4\xa7\x2a\x08\xa7\xe5\x37\xe7\xbd\xea\x36\xe7\x03\x53\x18\xcf\x13\x68\x68\x4e\x57\x92\xbc\xac\xaa\xec\x76\x98\xd7\xf0\x17\x5d\x0c\x35\xc8\xe3\x24\xb1\xcf\x1d\x68\x16\xd2\x91\xc6\x8d\x0d\x2b\x76\x59\x56\x42\x1b\x32\xd9\xb5\xc3\x77\x6d\xf6\xe1\x42\xf1\x1e\x3a\x25\xb4\xfe\x35\x55\x0e\xdb\x76\xf3\xbd\xed\x19\xad\x71\xaa\x56\x01\x6a\xfa\x8a\xae\x50\x5b\xbc\xe9\xeb\x35\x26\xba\x17\x8c\x49\xd7\x78\x34\x36\x48\x12\xb5\x50\xa7\xfa\xf7\x43\x7a\x72\x90\x63\x3a\xd2\x1f\xdb\x40\xb0\xa1\x42\x5b\xef\x2c\xd8\xcc\xc7\xa0\x6e\x40\x33\x82\xb7\x36\x44\x42\x42\xfb\x53\x5f\x71\x56\x23\x8c\xd7\x93\xe5\xa6\xfb\x09\xdf\x49\x6e\x73\xc3\x9d\x80\x54\xe4\xae\xcd\x40\xfa\x6b\xdb\x5a\x34\x02\x53\xed\x7f\x16\x0f\x29\x82\xd4\xe0\xed\x46\xe5\xa4\xb7\xd5\x98\x74\xbc\x31\xeb\x1b\x36\x1e\x5b\x42\xb8\x7b\xd1\x06\x02\x30\xab\xb7\x5a\x79\x65\xb0\xe2\xd3\xf8\x9a\xbb\xb0\x67\xff\x2e\xaf\xdf\xe9\xe5\x6f\xb7\xe4\x21\x11\xef\xa5\x2d\x74\x68\xc5\x7b\x6b\xca\x34\x8d\x13\x0f\x85\x00\x4a\x4c\x4d\x28\x83\xea\xd6\x00\xbf\xeb\x98\xcd\xa7\x17\x7a\xbe\xa8\xf5\x4a\x3b\x02\x42\xfc\x0a\x43\x40\xad\x51\x33\x74\xee\xf6\x64\x61\x0e\x2f\xa4\xe2\x55\x14\x18\xd0\xb0\xc5\xb0\xbe\xc8\x2e\x19\xba\x53\x67\x39\x2d\x86\x72\x39\xc1\x61\x1f\xae\xe1\xf9\x1a\xaf\xc9\xdc\x0b\xbd\xec\x91\x1f\x17\x68\x41\x18\x5e\x2f\x87\xef\xb3\xcb\xcd\xe1\xdb\xfa\x9b\x4c\x7f\x3c\x12\xe0\x9d\x1e\xce\xfb\xec\x32\xb8\xff\xf5\x8c\xf5\x34\x7b\x6a\x8a\xff\xed\xb1\x46\x13\x3b\x94\xb9\x1c\xca\x44\xa9\x8a\xfd\xb1\xd8\x91\x0b\x07\x1f\xfa\xca\x12\x98\xe8\xcb\x6a\x03\x6b\x8b\x1d\xce\x07\xa3\x4d\x8f\x73\x18\x9e\x33\xe1\xbb\x39\xb5\xa1\xd0\xad\xb1\x59\x5b\xb7\x4d\x1a\x73\xae\x41\x00\xf4\x00\x80\x6e\x86\xc6\x89\x74\x58\x72\x3d\x4e\xdd\x92\xb1\x6d\x97\x5c\x7f\xb8\xe9\x8e\x6a\x39\x0f\x55\x08\xc7\x27\x13\xab\xa9\x89\x75\x3c\x42\x11\x22\x1c\xb9\xc9\xfb\xd4\xa8\x68\x51\xa3\x8a\x50\x31\x39\x1c\xf4\x27\xb2\x43\x89\x60\x6e\x61\x90\x1a\xe6\x36\x42\x18\xb9\x6d\x67\x8b\xfe\x31\x10\x0d\x5a\x5b\x0e\x5f\x65\x97\xa2\xa9\x18\xbd\x05\x8a\x0c\x6e\xe9\x97\x45\x97\x20\x54\x82\xa0\x9e\x5e\x6c\xa8\x7b\x8e\x66\x7a\xae\x60\x59\x01\x96\xed\xa6\xb1\xcf\x2c\x9b\xdf\xfe\x68\x73\xb5\x6d\x4e\xad\x0d\x71\x96\x34\xcb\x35\x19\xef\xed\x3e\x44\x68\xc2\xd1\x78\x6f\x0f\xfb\xe2\x06\x7c\xe7\x8b\x07\xf0\xdd\x3a\x1f\x56\xac\x66\xe2\x4b\x56\x71\xeb\x8e\x5c\x7a\x9d\x79\xc3\xf6\x4c\x66\x94\x65\x10\xd8\xe8\xc0\x8e\x66\x7d\x4a\x2b\x23\x72\xf4\x4e\xea\xab\xac\x28\x72\x7e\x2e\xa7\xa9\xf6\xb5\x77\x95\x15\xf9\x3c\x13\x65\x55\xf7\xe6\x79\xc5\x66\xa2\xb8\x35\x7a\x68\xab\x85\xee\x9d\xdd\x42\xae\xd5\xff\x96\xe0\xf0\x58\xc2\x7a\xfd\xdf\xbd\x4b\x65\xfb\x38\xec\xfd\x5a\x33\xd7\xde\x70\x76\xc1\x66\xdf\xec\x4f\x84\x7b\xa2\x54\xd2\x11\x71\xc1\x96\xc3\x9e\x5c\xfb\xde\xb2\xac\x58\x2f\x13\x60\x9d\x60\x8d\x13\x9a\x9a\x3d\x86\x8f\x1f\xbb\x5e\x06\xc6\xa6\xb0\x19\x2a\xf3\xf9\xb7\xfc\x2a\xab\xf2\x8c\x8b\xde\x6f\x79\x59\x80\xdc\x6c\x40\x1a\x3f\x9d\xbb\xdb\x4e\xb6\x66\x1e\x60\x51\xa6\xc5\x79\x77\x99\x24\x9d\x52\x46\xce\xca\xb2\x48\x19\xd8\x51\xa7\x8c\x28\x1a\x23\x65\x44\x11\xea\x20\xde\xac\xe4\x1d\xc2\x88\x92\x17\xa5\x8c\x64\x5c\x7e\x07\xdf\x7f\x5c\xa4\x82\x58\x7f\x42\xe2\x39\xfb\xa7\x8c\x18\xb9\x11\x54\xe2\xe5\x9c\xd9\x66\xa1\xa4\xe4\xcc\xfd\x85\x4f\x04\x81\x33\x22\x9b\xbc\xc9\x66\x22\x15\x24\x5c\xc6\x34\x27\x2d\xa8\x48\x4b\x4f\x3c\x60\x6b\x52\x4e\x38\x08\xf1\xf6\x1e\x6a\x07\x36\xd0\x66\xaa\xda\x38\xf5\xd3\xcb\xc3\xc3\xd3\xa3\x9f\xdf\x1e\x76\x9a\xa8\x82\x89\xd9\x93\x7f\x55\x3e\xa8\x45\x72\x8b\xb2\x22\x25\xad\xa6\xee\xa7\xe6\x26\x4d\xec\x84\x01\x4e\x9f\x8c\xc6\xa3\x1d\x92\x77\xd6\xba\x04\x6b\x40\x5d\xe9\x09\xc9\x3a\x2b\x2d\xaa\xec\xdc\x6b\xeb\x29\x69\x3a\xab\xa9\xc1\x9f\x2e\xcb\x39\xd3\x35\x9f\x91\xa2\xbb\x57\xd0\x2a\xb1\x4a\x55\x1b\xef\x92\xd9\xa6\x6a\x57\xf9\xdc\x54\x1b\xed\x93\xba\xb3\x9a\xbe\xd7\x75\x63\x23\xb2\xe8\xac\x95\xd5\xb7\x7c\xe6\x0d\x6e\x3c\x26\xf3\x4d\xcd\x69\x13\xf0\xb0\xf6\x65\xf7\xda\x94\xd5\x75\x56\xcd\x4f\x2b\xb6\xd0\x35\xb7\xc9\x45\xf7\xf2\x68\x03\x74\x5d\x6d\x87\x2c\xef\xad\x76\x5a\xe4\xb5\x9e\xd3\xf6\x88\xdc\x76\xd6\x5d\xb2\x65\xa9\x9b\xdb\x23\xe7\x9d\x55\x8a\xec\x8f\x5b\x5d\xe5\x09\xb9\xea\xac\x72\x56\x94\xb3\x6f\xba\xa7\x31\x39\xeb\x9e\x66\xc3\xe7\x19\x38\x89\x69\x60\x19\x3f\x25\xd7\x9d\x35\x6d\x78\x1a\x5d\xef\x19\xb9\xe9\x9e\xe7\xac\xbc\x34\x6b\xb1\xef\xd0\xf9\x81\xa1\x9e\xee\x8d\x77\x62\x5d\x2f\x8c\xe7\xdb\x24\x74\x52\xea\x95\x36\xec\x8c\x8e\x7a\xa4\xcb\x17\x4a\x61\x35\x57\x7f\x32\xf5\xa7\x50\x7f\x1a\xf5\xe7\xc2\xfa\x10\x5b\x7d\x96\x6b\x2b\x49\x5a\x31\x56\x6a\xf5\xd9\xa5\xfa\x73\xae\xfe\xdc\xaa\x3f\xb3\x76\x5b\xd6\xba\x62\xad\x22\xb4\x78\x05\x0e\x05\x7f\xf3\x68\x4c\xb9\x22\x94\xd2\xf9\x5a\x0c\x5f\x4a\x18\x7e\x0f\xca\x49\x22\x86\xaf\x2c\xa0\x42\xd1\x5c\x15\xe9\x14\x4f\x75\xb3\x64\x15\xad\x5d\xd9\x27\x7d\x98\xe8\x8c\x88\xa1\xa6\xf8\x69\x49\xc4\xf0\x8d\x82\xe0\xcf\x6c\x41\x2f\xe5\x4f\x7d\xd8\x69\x46\xc4\xf0\x5d\xf6\xc7\x2d\x3d\x27\x62\xf8\x9e\x2d\x4b\x7a\x4b\xc4\x50\x9b\x0f\xe7\xf2\x51\x9f\x62\x5a\x10\x31\x3c\x84\xc3\x0f\x03\x69\xe4\x4f\x0d\xc5\xf4\x82\x08\xc9\x6a\xbb\x81\xb7\x65\x78\x72\xb2\xab\x95\x9e\xe6\x62\x0d\x1f\x44\x73\xfb\x66\x0a\x83\xd9\x75\xb4\xa5\x5b\xa9\xd7\xfe\x07\x76\xea\x9b\x3f\x98\xa9\x0f\xcc\xba\x74\x08\x93\xee\x83\x47\x1f\x2a\x28\xa5\xa5\x6a\xcc\x5b\xd8\xcd\x1d\x5f\xea\xba\x66\xd5\x37\xd7\xcc\x54\x4d\xd8\x92\xcd\xb5\xce\x55\x2d\xd8\xaf\xcd\xb5\x6e\x55\xad\x96\x2d\x78\x5c\x2f\xd7\xf5\xcc\x4e\x6f\xae\x59\xa8\x9a\x1e\x18\x6c\xae\xdb\xe8\xba\x06\x46\x36\xd7\xbc\x50\x35\x7f\x93\x04\xd6\x81\x17\x0c\xa8\x63\x7f\xda\x41\xa8\xba\xb3\x8e\xb0\xd5\x8a\xc9\xd5\x54\x7f\xe6\xea\x4f\xa1\xfe\x34\xea\xcf\x85\xfa\xb3\x74\x0a\xa0\x0d\xbb\x8e\x82\x6d\x3f\x5f\xad\x82\xdf\xb7\xd1\xef\x59\xf4\xbb\x8e\x7e\x5f\x46\xbf\xcf\xa2\xdf\xd7\xd1\xef\x9b\xe8\xf7\x15\xa8\x3d\x95\x8e\x85\x1e\x48\x2a\xe3\xe9\x43\x09\x98\x45\x64\x8d\x6f\x4c\xd5\x8d\xa2\x4d\xe9\xcf\x23\xff\x96\xc2\xa7\x8a\xdf\xe7\x3c\x5f\xe4\x6c\xde\x63\x37\x33\x76\xa9\x28\xf3\x19\x1c\xe1\xf9\xa4\x27\x3b\x95\xc4\x2f\x2f\xf9\xe3\xa5\xa9\x38\x67\x57\x3d\xc6\xaf\xf2\xaa\xe4\x72\x5f\x7b\x8b\xb2\x82\x4a\x8b\xa6\x28\x7a\x20\x15\xe8\x69\x7b\x4b\x30\x02\xcd\xe6\x73\xc8\xeb\x97\x15\xbd\x0b\x56\x5c\x2e\x9a\xa2\x77\xad\x48\xb9\x7a\x38\xf0\x4c\xac\x66\xf4\xd8\x9b\xc0\x09\xa9\xe9\x68\x82\xfc\xa1\xca\x2b\xea\xb2\xc8\x66\x0c\xfd\xe9\xff\xa9\xff\x74\xde\x95\x86\x69\x76\x5c\x6f\x6d\x81\x30\x18\xdf\x43\x34\xeb\xf0\x56\xc5\x10\x4c\x52\xeb\xa3\xf2\x53\x79\x49\xc7\xa4\x50\x1a\xe0\x67\xf7\xaf\xbd\xcf\x1c\x19\x0d\x0e\xc9\x25\x77\xf3\x64\x84\x27\x25\xed\x14\x52\xd7\xac\x58\x4c\xe5\x7f\x69\xe7\x6b\x65\xef\x3d\x55\x7f\xba\xab\xb0\x29\x4b\x2b\x2d\xa6\x56\xfa\x03\x94\x0f\x33\x8c\x4a\xc9\xf7\x66\x34\x5b\x63\x4f\x68\xcd\xd1\xce\x2e\x26\x92\xe1\xda\xc7\x88\x61\x70\x74\xd8\x4f\x43\xae\xae\x0b\x86\x34\xd4\x18\xc1\xfd\x27\x6d\x2c\x6d\x6e\xed\x50\x1d\xc9\x64\xcf\x86\x85\x5f\xad\x90\xfb\x41\x8f\x4f\xb0\xf1\x7e\x52\x33\x91\x24\x3a\xab\xc4\x2d\x12\x64\xa0\x24\x22\x03\x72\xe7\xab\x2a\x47\xe4\x9c\x89\xb4\xcb\xae\xb9\x58\xaf\xef\x69\x2c\x7f\x78\x43\xf9\xbd\x0d\xe9\xc5\x88\x5b\x03\x6f\xb6\x68\x39\xe8\xd8\x59\x5a\xae\xc9\xf8\x3b\x1c\x81\x25\x0d\x2a\xb3\xee\x1b\xf5\xbb\x5e\xe8\x49\xc2\x02\xe9\xa6\xd3\xef\x33\x12\xe8\x5f\xd7\x4a\x83\x08\xea\xd7\x9c\xf2\x21\x47\x25\x26\x99\xd2\xc3\x36\xf0\x3b\x03\xdb\x96\x61\x66\x24\x11\xa2\xba\x3d\x6c\xce\xea\x59\x95\x9f\xb1\x54\x96\x47\x12\x09\x22\xaa\xdb\x5f\x79\x7d\x6f\x15\x5e\x8a\x7c\x71\xfb\x81\xd5\x82\xcd\x65\x63\x9d\x95\xe4\x3d\xa1\x1b\x99\x77\x55\x58\x63\x32\xf3\x07\x76\x7f\x97\x73\xed\xb9\xd9\xf9\xf2\x5c\x4b\xa6\xbb\xbb\x99\xe4\xb2\xd4\xde\xe9\x3a\x8f\x74\xcb\x9e\x64\xe2\xbc\x93\xe4\x05\x41\x07\xb5\x28\x2b\x36\xb0\x61\xa4\xb6\x06\x7a\x3e\x97\x8a\xf3\xce\x03\xc5\x52\x85\x32\xa3\x4d\xcc\x69\xe6\x36\x6f\xe2\xd9\x16\xb8\xe8\x4a\x9a\x79\x85\x50\xbe\xde\xb1\x25\x15\x56\xd2\x5e\x7c\xcc\x4e\x20\x7d\x57\x59\x31\x52\x1a\x70\xcb\xef\x93\xdc\xa9\x39\xd8\xe0\x75\x77\x6b\x68\x43\x36\x76\xcc\x4e\x88\x38\xd6\xfe\x67\x44\xac\x49\xbe\x59\x5a\x57\x3e\x48\x5a\x97\xad\x51\xe9\x4b\xeb\xec\xf8\x3c\x91\x19\x8c\x3d\x0d\xb6\xc9\xc6\xb2\x90\xdb\x64\x32\x4e\xfa\xe2\xaf\xbc\x43\x98\x86\xdc\x64\x42\x30\x95\x33\x2a\x40\x10\xba\x46\x38\x32\x35\xf0\xef\xbb\xff\xac\xb5\x49\x8f\xf9\x76\x02\x36\x7a\xe0\x3c\x54\xf2\xae\x56\x81\x5c\xd7\x8a\x33\xc7\x13\xd1\x72\xd9\x73\xe1\x0e\xb8\xe7\xb3\x27\x4e\x6c\x70\xf2\xaa\x97\xf3\x1e\xc7\xba\x03\x87\x26\x2e\xb2\xfa\xe3\x35\x37\x48\x4d\xc1\x95\x04\x29\x09\xcd\xc7\xd5\x09\xe5\xc7\xd5\x89\x73\x42\x5d\xe3\x4d\x36\x51\x91\x6a\xbd\xe5\x69\x7b\xa7\x64\xd5\x70\x59\xd3\xbb\x35\xc9\x69\x68\xea\x00\x03\xad\xe8\x68\x52\x3d\xcf\xad\x55\xfd\xd6\x16\xe6\x34\x3f\xae\x4e\x24\x5d\xc8\xe7\xec\xe6\xe3\x02\x71\xfc\x82\x8e\x56\x2b\x54\xca\xad\x64\xc7\xfc\xc4\x2e\x6a\xb9\x56\x9a\x72\x8e\x76\x9f\x82\x26\x7b\xc8\xd1\x05\x26\xb7\x20\x44\x7c\x8a\xc9\x39\x94\xdc\x62\x72\x25\x51\xdf\x13\x4c\xce\xe8\x9d\x42\x4a\x3e\xea\xd7\x81\x04\xae\xef\x93\x1b\x6a\xdd\x10\x40\xab\x8d\x85\x08\x81\x2d\x0e\x9b\x33\x13\x43\x11\x32\x02\x9b\xd8\xf6\x26\x10\x61\xe3\x90\xa4\x17\x87\x50\x32\xff\x8c\xb3\xaa\xa6\x67\x6b\xc3\xeb\x3a\x64\x60\x2f\xa3\x6c\x3e\xb7\xe8\xb3\x8b\x8c\x56\x51\x13\x3d\x54\x8d\x70\xd4\xfe\xd0\xf6\x8e\x18\xd0\x8f\x31\x52\x6e\xe9\xbf\xdc\xa7\xaa\xaa\xb2\xb6\xf3\xd1\x74\x07\x42\xf8\xa9\x2c\x0b\x96\x71\x14\x4f\x59\x91\xac\xde\x00\x5b\xdd\x79\x95\x25\x75\x10\x2f\x59\xb8\xd2\xd3\xf0\x67\xb0\x3e\xa8\xbd\x07\x56\xc9\x54\x56\xcc\x5b\x88\x8e\x8a\xf1\xae\xb4\x74\xce\xc7\x27\x04\xd4\x0a\x1a\xb6\x41\x83\xe7\x03\x91\xcb\x1c\xa9\xb4\x53\x2d\x28\xf3\xb2\x36\x52\x41\x14\xdc\xf3\x00\xee\x8f\xab\x13\xb9\xd6\x1b\x08\x93\x35\x71\x37\x9f\x7d\x6d\x83\x0c\xf5\x47\x16\x68\xf4\xcd\x24\x21\xaa\x2e\xf2\x19\x43\x10\x42\x5e\xe9\x3c\x30\xf1\x5b\x0e\x58\x9d\x0a\xf4\x9d\xdd\x1f\xd7\x97\xf0\xec\x1f\x49\x32\xc6\x78\xbd\x5e\xaf\x11\x36\x5b\xec\x51\x03\xf7\x6d\xb2\x51\x47\x7b\x45\x06\x68\xbf\x73\x54\x94\x4f\x65\x0b\xc2\xe9\x19\x5e\x13\xb6\x46\x98\xdc\x74\x53\xd5\xe1\xbd\x4e\x0e\xe8\x88\x7c\xa3\x77\x9e\x45\xe3\x61\xa0\x62\xf0\x9d\x9b\x48\xee\xae\x7b\x50\xa4\xcb\x3b\x46\x93\xd7\x82\x34\x34\x83\xac\x60\x79\x7d\x59\x64\xb7\x1f\xb2\x25\x23\xb5\x8b\x95\xd7\x74\x58\x70\x0e\x5e\x95\x9c\xb3\x99\x78\x39\xbf\xca\xf8\x8c\xcd\xd1\x60\x8b\x6d\x0d\xf0\x60\x9d\x36\xe4\x82\x66\xc3\x25\x13\x17\xe5\x1c\x5a\xba\x75\x2d\x5d\x4c\x07\xb3\xf0\xbb\x41\x7a\x41\xce\x68\xa6\x2f\x68\xc8\xb1\x2d\x11\x3a\x39\x72\x1f\x9d\x4d\xd5\x63\x7a\x46\x3e\x52\x49\x3d\x95\x4d\x31\x57\x51\x1f\x3c\xc0\xaf\xc9\x2b\xf7\xc9\xc7\xd5\xea\x23\xf9\x24\x2b\xcb\x03\xf3\x17\x76\x4b\x4e\xdd\xcb\x4f\x53\x4d\xe9\xa4\x9f\xc8\x57\x9a\x0d\xaf\x73\x71\x21\x97\xf3\x25\xb5\x1e\x48\x5f\x93\xe4\x2b\xf9\x40\x2f\x51\x46\x8e\x07\xe1\xc2\x0c\xc8\xc0\xcd\x6d\x40\x06\xd1\xc0\x07\x64\xb0\x69\x80\xf2\x95\x1e\xce\x80\x0c\x74\xaf\x83\x13\x4c\x3e\xd3\xd3\x98\xd6\x7a\x4b\x0f\xb6\xb6\xc8\x1b\x8a\x10\x07\x62\xe0\xf4\x84\xce\x08\x3f\xfe\x2c\x29\x00\x8e\xc9\x7b\x8a\x50\x0e\x2f\xa0\x24\xc7\x2d\xcb\x60\x50\x63\x61\x6d\xec\x88\xae\x3a\x44\x13\x18\x09\x4c\x06\x7f\x2f\x1b\x65\xb4\x79\x09\xc6\xac\xce\x78\xab\x27\x4a\xcd\xe4\x1a\x72\x1e\x7a\x50\xfa\xa1\xc1\xd6\xed\xd6\x60\xd8\x7b\xcb\x6b\xc1\xb2\x79\xaf\x62\x33\x96\x5f\xb1\x79\xef\xff\x65\xef\x4d\xb8\x1c\xb7\xad\x06\xd1\xbf\xc2\x42\x12\x35\x61\xa1\xd8\xd4\x56\x0b\xd5\xb0\x52\xae\xae\x4e\xfa\xc5\xbd\x4c\x77\x39\x99\x3c\x59\xd3\xa6\x48\x50\xa2\x9b\x22\x15\x12\xaa\x25\x12\xff\xfb\x3b\x58\x09\x2e\xb5\xd8\x8e\xcf\x7c\xf3\xbd\x89\x73\xba\x44\xec\xb8\xb8\x00\xee\xbd\xb8\x4b\xcb\xe3\x11\xd5\xce\x19\xa8\x13\x56\x40\x3c\x1c\x28\x67\x57\x0f\x07\xa0\xa9\x2a\x46\x60\x16\x6c\x3f\xfa\x38\xb4\xf7\x25\x7a\x8f\xf6\x75\xc8\x7b\x05\xaa\x20\xef\xdd\xa3\x06\xe4\xbd\x6b\xf4\x10\xe4\xbd\x4b\xa4\x20\xef\x7d\x41\x12\xf2\xde\x05\x32\x46\xe4\xc5\xe8\x36\xf7\xb7\x5b\x12\xea\x01\xf1\xe4\x14\xfd\xa3\x91\xec\xd1\x12\x9a\x96\xa6\xa9\x71\xc7\xee\xaa\x1d\x97\x2b\xd2\x34\x97\x5a\xe2\xf2\xf5\x1a\x51\x45\xf2\x6a\x93\xfe\xb7\x28\x57\x3a\x50\x25\xca\xcd\xad\x80\x5d\x9e\xc5\xaf\xea\xf9\x97\xc5\xe1\x40\xe7\x5f\x16\x28\x17\x04\x2a\x97\x5d\xa9\xeb\x8a\x65\x43\x56\x98\x50\x39\x60\xe5\xe1\x04\x77\x25\x0a\x7f\x18\x91\x1d\xf1\x90\xb5\x88\xa1\x8a\xec\x08\xbd\xb8\x64\x40\xe4\x6f\x82\x51\x9c\x86\x16\x78\xd1\xff\xd2\x7f\x01\x18\x0d\x26\x15\x7b\x19\x5a\xc8\xa7\x0c\x2b\xcb\xc5\x4b\xbf\x95\x45\xac\x64\xdc\x7f\x01\x1c\xeb\x4a\x94\x63\x00\xe5\x85\xf3\x2c\xa3\x06\x66\xc5\xa9\xe5\x5b\xaf\x94\xac\xf3\x5b\xc4\x1a\x21\x77\xec\x64\x8e\x69\x72\x2f\x30\x51\xf5\xca\xd5\xab\x59\x0f\x0c\x1f\x55\x07\x2f\xd8\x4c\x19\xe5\xaa\x3c\x6f\xd9\x3a\xc1\xd8\x45\x2c\xb1\xcc\xed\x9d\x52\x77\x63\x5c\x61\x8b\x32\x49\x9e\x62\x31\x08\x92\x8e\x9a\x35\xcc\x85\x61\xa6\xb8\x8f\x8d\xee\xa6\xda\x0d\xb7\xdc\x97\x54\x2a\xb2\x48\x50\xcd\x3f\x2d\x10\x29\x51\x52\x8b\x25\xdc\xd2\x2f\xbb\x54\xb7\x8a\xd9\x74\x27\x61\x54\xc8\xb9\x3b\xf9\x2e\x35\xd8\x96\x66\xae\xd8\x13\x1a\x7b\x85\xc3\x8d\x5e\x4f\xf8\x6d\xce\xf2\x40\x7a\x14\xe2\xb7\x5f\x52\xd7\x2b\xfa\x24\xb6\xb5\x08\x48\x50\x57\x53\x6d\xf6\x4f\x78\xed\xce\xbe\x1e\xd4\xf9\x79\x74\x84\xad\xc1\x3c\xa4\xe4\x64\xc2\x49\x4e\xab\x09\xba\x1f\xda\x17\xb4\x59\xc4\xb8\xa1\x5b\x24\xe5\x67\x64\x50\xcb\x55\x39\x73\xee\xba\xcc\xa3\xf3\xe1\x96\xcf\x1c\xd9\x9a\xdb\xb3\x0d\x1e\xb6\x1b\x2f\x10\xb8\xce\x2c\x3f\x08\x48\x51\xf0\x3d\x24\x4f\x27\x6d\xa6\x80\xb8\x57\x80\x94\x90\x90\xed\x8c\x62\x4b\x82\x38\xba\xb7\xf6\x96\x3a\xdd\x2c\x9a\xef\x88\x55\xb2\xcd\xc6\xaa\x67\x7c\xaa\x85\xa5\xf8\x1e\xb6\x5f\x59\x3a\x3f\xc9\x6d\xc8\xb9\x3c\x07\x48\xe8\xdc\xd6\x87\xc8\x97\xf6\x91\x81\x2b\x8c\x68\x54\xc3\xbc\xa2\xb9\x4d\x5b\xec\x3b\x26\xb6\x41\xd7\x2a\x91\x07\xf2\xe1\xb4\x06\xd2\x4e\x37\x6b\xfb\x7c\x97\x7a\xa6\x6e\xb9\xf2\x1d\x92\xb1\x56\x1d\x25\x22\x61\xa7\x00\x9c\xda\x19\xb7\xd6\xe1\x3b\xe4\x70\x90\x9a\xef\x8c\x51\x4c\x1f\x5a\x2e\x17\xc9\xe2\x38\xd3\x9a\xf2\xa6\xc1\x7b\x0c\xf7\x8f\xd6\x15\x35\xe2\xb2\xac\x1e\xee\x4b\x9b\x1a\xe8\xf4\xc4\x36\xd6\xb0\x33\x31\xb5\xae\xc9\x73\xa9\x48\x7a\xbb\x71\x40\x55\x9f\x9e\x79\x02\xb1\x53\x69\xda\x81\xfe\xe4\xd6\xba\x35\xd6\x01\x91\x0e\x26\x50\x5c\x18\xfc\xde\x82\x0f\xec\x95\xf6\xde\x6b\x16\xa9\x1a\xa9\x95\x83\x25\x9b\x6c\x9d\xe7\x6c\x6d\xf3\xdf\x70\xda\xcd\x94\x7e\x6d\x75\xee\xca\x95\xea\x9c\xc8\x87\xf4\xb2\x55\x12\xd5\xd5\x5f\xbf\x42\xc9\x90\x35\xeb\xda\x7c\xdd\x9e\xd3\x62\x6b\x86\x1d\xc3\x93\x8e\xeb\x1e\xe9\xe9\x97\x30\xb3\x35\x90\x77\x1d\x95\x66\x63\xa2\x79\x3f\x0c\xaf\xee\x68\xee\xb7\xaf\x80\x38\xb2\x8f\x2e\x7a\xbd\xa3\xeb\x5e\xcf\x3e\xaa\xa3\xdf\xe1\x70\xd4\xee\xaf\xe9\x96\x8c\x93\x78\x44\xd3\xad\x17\xdc\x0d\x77\x4e\x22\xac\x00\xdd\x38\x6d\x20\x62\x3d\xd1\xf9\xf5\x42\x85\x91\xd2\x44\x52\xbf\x0f\x51\x7d\x04\x1d\x93\xe3\x95\x3f\x2d\xda\x48\x0a\x11\x65\x33\x6d\x0b\x08\x0d\x87\xab\x0a\xbd\x44\xd0\xf7\x87\xce\x77\x24\x55\x44\xa5\xf8\x4d\x7e\xa9\x19\x4a\x4a\x3c\xab\x6b\xb2\x42\x75\x24\xd4\x20\x6d\x13\x89\xdd\xb0\x44\xbb\x6e\xd1\xe3\x5d\xaf\x67\x1b\xe4\x8c\xf3\xc3\xfb\xcf\x17\x6f\xae\xbe\x3c\x7c\x7f\xef\x1e\xd2\x1e\x36\x4b\x21\x11\x66\xdf\x7a\x56\x61\x88\x76\x4e\x93\x38\x66\xbc\xa4\x49\xe8\xe3\x18\xed\x3a\x64\x9c\xef\x58\xaa\x99\xf0\x06\xed\x0c\x59\xea\x1b\xb4\xb1\xa1\xbd\xe3\x6e\x5e\xd9\x32\x7c\xc0\x4f\xc8\xfe\x2a\x0e\xf8\xb2\x66\x1e\xc3\x83\xf3\xcd\x78\xbc\xe1\xc3\x81\xfb\xc9\x38\x1c\x06\x2f\x59\xea\xe0\x25\xf5\x88\x10\x18\x50\x96\xde\x72\x1b\xc1\xce\x57\xfe\xab\x72\x44\x69\x28\x7b\x1c\x99\xaf\xb4\xa9\x0e\x79\xdb\x61\x86\xa7\xb3\x69\xdd\x43\x66\xda\x10\x22\xa2\xbc\x96\x40\x85\x0b\x0f\x29\x56\x39\xc2\x38\xaf\xab\x6d\x1e\x0d\xb4\x78\x34\xc3\xee\x34\xab\x24\x30\x59\xbf\x0f\xd9\xee\xfc\x20\xb9\x0e\x94\xce\xb3\x05\x3c\x1c\x8e\x2e\x6d\x32\x67\xbf\xb9\x70\x9c\xfd\x85\x55\x5b\x6a\x8e\xd2\xed\x45\x6a\x9f\x9d\x18\x22\xe6\x9f\x0d\x41\x5d\xc5\x61\x56\x8e\xa1\x09\xff\xa8\x6b\x3a\xca\xe2\xda\x62\x2a\x93\x31\xa7\x8a\x0f\xa9\x5c\xb8\x82\xed\x99\xcc\xd0\x25\xb9\x68\xb8\xa0\x94\x6e\xed\x1b\xb5\x0c\x0f\x6f\x1d\xb9\x33\xcd\x10\xb5\xf3\xa0\x27\xfc\xa9\x0b\x40\x19\x21\x4a\x6a\x38\x53\x9f\x60\x6a\x62\xb3\xd4\x76\xab\x53\x23\x6a\xa2\x1d\x63\xc9\x9d\x8d\xbf\xbd\xce\xe4\x9e\x46\x14\x7a\xf5\x14\xa8\x69\x83\x8e\xda\xdc\xb6\xd9\x28\x8e\xeb\x03\xab\x65\x11\xd4\xd5\xc0\x85\x32\x6b\xce\x70\x2e\x56\x48\xca\x6e\x3a\x94\x0d\xb2\x5e\xcf\xae\x35\x99\x3d\xd0\x64\x06\x91\x6a\x0e\xa2\xac\x44\xb9\xd8\xa2\x9f\xf0\xbc\x43\x48\xd4\xa5\xd5\x30\x7b\x6f\x13\x28\x5d\x9e\x97\xa8\x43\x14\x4c\x94\xbc\xe7\xe7\x2e\x5b\xa9\xbd\x7e\x18\x23\x25\x57\xcd\xed\x6a\xa1\xd7\xeb\xd0\x87\x98\xfd\x5c\x37\x92\xa9\x1f\xcc\x5f\x9c\x25\x54\xea\xc3\x6a\x74\x0b\x0e\xbd\xb7\xbf\xf3\xd4\xf4\xcc\xf8\x7c\x0c\x23\xd2\x37\xf5\x08\x4d\x16\xbf\x33\x53\x2e\x42\xe0\x30\x7f\xf7\xfc\x81\x75\x8c\xe5\x49\x3c\x47\x19\xa3\x98\x77\x39\xe1\x0f\xad\x7e\x4e\x44\xc0\x10\x8e\x08\x57\xff\xda\xf9\x09\xf2\xb1\x3e\x3a\x6a\xcd\xa1\x9d\xf2\x63\x40\xe4\xa7\x36\x29\x9b\x65\xbd\x5e\x6c\x27\xfc\xe1\xcf\xce\x71\x02\x3d\xdb\xe7\x98\x8e\x13\xee\xb4\xaf\x7c\x2e\x04\xdb\xc4\xce\x9b\xd2\x04\xde\xeb\x56\x50\x44\x5d\x83\x47\x91\x53\xe7\x8c\x4d\x44\x98\x0f\xca\xc3\x55\xa3\xb8\xe1\x3b\xa7\xe1\xbc\x1a\xf9\x68\x87\x12\x14\xa0\x02\x67\x0c\x24\x9c\x1c\x94\xd0\x88\x44\x92\xda\x2b\x22\x31\x34\xca\x19\xc9\xdb\x9a\xdb\xa0\xb5\x9d\xa1\xad\xe8\x61\x8d\x8f\x22\x7b\x8b\x7c\x88\x36\xf8\xa8\xe0\x43\xd3\xaf\x8d\x38\x43\x3e\xde\xa2\x75\xaf\xb7\x99\xd9\x3b\x4c\xec\x98\x95\xa3\x5d\x47\xa4\x9d\x60\x36\x21\x1f\x42\x14\xe0\xd4\x66\x63\xf6\x21\xf4\xd6\xb3\xae\x73\x91\x87\xc9\x13\xad\xfd\xb2\xe6\x36\xb3\x0e\x86\x8e\x0f\x2a\xc7\x47\xa1\x4d\x8d\x85\xdf\x61\x8a\xf2\x5e\xcf\x36\xaa\xa3\xa0\xb4\xa1\x17\x94\xed\xe5\x29\x2a\x17\x71\xb3\x35\xff\xf6\xc4\x08\x39\x04\x0a\x88\xd4\x70\x8c\xd1\x30\x90\xba\x28\x68\x7a\x25\xd2\xec\x22\xe5\xdc\xd4\x3b\x7f\xcb\x97\x42\x9e\x72\x3c\x64\xb7\x4c\x57\xae\x92\x55\x56\xa6\xb2\x18\xd6\xab\xc8\xd4\x5b\x9b\xa2\x39\xe8\x68\x09\x20\xd0\xdd\x8e\xca\xd0\xad\x80\x85\x50\x58\xe0\x91\x6a\x77\x38\x17\x3f\x12\x9c\xf1\x1f\x4a\x8a\x14\xf3\x9d\x37\xfb\xde\x7b\x0d\x6d\x81\x73\x2c\xb7\xe6\xdf\x47\x9c\x0d\x95\x57\x2f\x2a\x2f\xb6\xe3\xc1\x34\xff\x16\xbb\xd3\xfc\xf8\x58\xc7\x36\x9a\xe7\x0b\x76\x19\xc4\x91\x9d\x41\xfd\xe4\xd8\xde\xb9\xda\x9d\xa6\xa1\x2f\xf5\x36\xe5\x56\x03\x16\x37\xb8\xe7\x62\x83\xfb\x2d\xa9\x2c\xf8\x49\x1f\x70\x85\x28\xd0\x4f\xfb\xa0\x12\x2f\xdc\xae\x49\x6a\x49\x59\x7f\x9c\xae\x0c\xe9\x1f\xe8\xe7\x4e\x97\xa8\xb5\x0f\x1c\x60\xae\xde\x3f\xda\x94\x1c\x3f\xf5\xfe\xd8\xe1\x19\xa3\x7a\xfb\x9e\xed\x4b\x8f\xa0\x54\xc4\x0e\x62\x9d\xff\xf5\xc3\x25\x32\xe2\xfe\xa4\xb3\x6b\x2f\xe5\x6b\xbb\xa9\x2f\xe0\x1b\x9f\x51\xf8\x31\x61\xab\xac\x4b\x67\xb3\xb7\x1e\x43\x39\x5e\xba\xb1\xb0\x55\x85\x5d\x55\xc1\x9f\x7d\xf2\x7c\x86\x9e\xce\x46\x2f\x78\x55\x30\xa8\x0a\x26\xb3\x77\x5e\x82\x0a\x4c\x35\x73\x21\x8a\xdd\xa3\xa8\x2a\x54\xcc\xfe\xed\x15\xad\x03\x56\x9a\x7f\xc0\x7d\x35\xcc\x5e\xcf\xce\x8c\x07\x9d\x0c\x25\xd8\x17\x47\xb7\xf1\x8c\x93\x1c\x0e\x09\x7f\x9b\x69\x9c\x5b\x1b\xf3\x7d\xe6\x1f\xde\x1a\xdd\x8b\x32\xf5\x83\x6c\x55\x95\xba\x9f\x7d\xf4\xee\xd1\x8d\xd1\x92\x51\x6e\x59\x95\xbb\x99\x7d\xf4\x6e\xd0\xad\x28\xd7\xba\x3c\xee\xaa\x82\xb7\xb3\x8f\xde\x2d\xba\x92\xef\x2d\x6c\xdc\x00\x81\xfa\x28\x45\x42\x6d\x48\x46\x99\x66\x62\xb3\x33\xb6\xe7\xbe\x62\xb6\x67\x62\x04\x1a\x0b\x0f\x20\xfa\x8c\x7f\x60\x87\x15\xcf\x6a\x6e\x5f\x88\xae\xf1\x0f\x3c\x6c\x15\xa8\x96\xb4\xd2\x86\xc8\xed\x08\x85\xf6\xde\x78\x98\x50\x2f\x5c\x00\x35\x9e\x2f\x1e\x7e\x44\xd3\x8f\x67\x0f\xbf\x60\x68\xb2\x16\xa2\x8e\xd3\xc7\xfb\x8a\xba\x4f\x1f\xef\x33\xaa\x9f\x3e\xde\x35\x62\xf0\xf5\x0a\x54\x87\xaf\xb7\x41\x4d\xf8\x7a\x2b\xd4\x86\xaf\xb7\x44\x1d\xf0\xf5\xee\x4a\x74\x05\x79\x6c\x84\x69\xea\xb0\x93\x1f\xf8\xa0\x4b\x5f\xb1\xe0\x9e\x26\x44\x89\x65\x67\x89\x3f\x72\xa2\x6e\x70\xe2\x3e\x5f\xcb\x4c\x9e\x02\x28\xc5\xc4\x11\xea\xfb\x8f\x10\xba\xe9\x2c\x95\x81\xeb\xfd\x65\x42\x66\x14\x9b\x9f\x9e\x4d\x71\xca\x98\x3c\x95\x00\xd8\x68\xab\x4f\x4c\xa1\x47\x31\xf8\xf3\x9f\x8d\x12\x88\x96\x8f\x4e\x39\x97\x13\x7a\xc2\x57\xb3\xdd\x3c\xd5\x52\x5c\xd1\xb0\x95\x4a\x2f\xd7\xe0\x16\x24\x2b\xc6\x92\x63\xec\xf5\x08\xd7\x89\x4c\xdb\x3a\x91\xbc\xe7\x27\x5c\x3e\xd7\x41\xd9\xf1\x90\x68\x3e\xe0\x71\xf9\x2c\xbb\x6b\x94\x7c\xb5\xeb\xe5\xb1\x75\xa3\x3f\x46\x9c\x66\xb3\xcc\x66\x24\x16\x81\x1e\xb5\x79\x78\x92\x52\xf1\x2c\x70\x9a\xf1\xd7\x59\x2e\x19\xb9\x90\x57\x0b\x0f\xab\xea\xe3\x8c\xcd\xac\xed\xbc\xa8\x06\xc6\x23\x73\x50\xdd\x73\xd6\xca\xa1\x5c\xf5\xe9\x0b\xa6\xe8\x59\xfa\x8a\xff\x01\x67\x34\x65\x53\x51\xf2\x01\x55\x4d\xb6\x96\xe0\x6b\x9c\x86\x00\x75\xf6\xe3\x0a\xbf\x36\x54\x3b\x40\x7f\xac\x9d\xad\x4f\xd7\xba\x1d\xda\x6c\xa7\x34\x38\x78\x09\xcf\x4c\x02\xc6\x40\x2c\x70\x05\x10\x79\x50\xb3\x94\x97\x48\xd6\xc5\xc3\xbd\x3c\x5a\x33\x37\x6a\xa6\x0f\x8f\x4f\x39\x57\xea\x18\xdd\xfb\x27\x47\x97\x3f\x36\xba\x96\x6f\x24\xbf\xa3\x8f\xd7\xbf\x0d\x02\x65\xfd\xc1\x98\xc1\x79\xd7\xd1\xcb\xc5\x93\xbd\x70\x2d\x96\x5f\x09\xe9\x98\x92\xcd\x73\x40\xdd\x08\x02\xa6\xd4\x69\xec\xf4\x70\xa0\xb0\x3f\x38\x1c\xb4\x41\xb1\xd6\x10\x94\x09\x98\xbe\x72\x67\xea\xa3\x4f\x3d\xbe\xb7\x76\xc5\x5a\xea\xe1\x11\x94\x43\x33\x22\x71\x50\xd1\x73\x35\xa7\xf3\x9a\x89\x35\x52\xbd\xaf\xb6\x16\x1e\x9b\x42\xb7\x19\xf5\x18\xa5\xf8\xce\xa7\xeb\x19\xd8\x30\x64\xf7\x94\x74\x6e\x06\xd8\x2f\xe0\xd5\x9d\x6a\x10\x38\x03\xdc\xc6\x13\x78\x60\x2e\x1a\xe2\x9e\xe0\x17\x40\x1f\xaf\x86\xd4\x91\x66\x9f\xb9\x6a\x83\x8a\xab\x36\x03\xa1\x4f\x09\xf0\xcc\x73\x4d\x1b\xd0\xab\xc2\xbd\xde\xcb\xff\xf5\xe3\x4b\xe7\x9b\x1f\x5f\xbe\x74\x28\x29\xa8\x5d\x65\xd9\x10\xce\x40\x4e\x56\xe4\x6e\x0b\x3c\x35\x8f\x0a\x22\x85\xe6\x3f\x23\x14\x32\x0e\x71\x8b\xb7\x87\xc3\x7c\x21\xdd\xea\xd8\x11\x8e\xd8\x27\x94\x4b\xe2\xc2\x96\x7f\x76\xe5\xcd\x9b\xcb\x33\xf3\x56\xa0\x0f\x99\x9d\xf7\x7a\xb9\xbd\x46\xa1\x12\x08\x36\xdc\x14\xda\x5d\xcb\x91\x37\x96\x23\x87\x50\x74\xe2\x6c\x73\x12\xc5\x09\x25\xac\xd5\xea\xa3\xd9\x7e\xee\xa4\xdc\x9b\x67\xfc\x6f\xb9\xea\x1b\x6c\x24\xb1\xd2\x5c\xd0\x31\xdd\x70\xdd\xe4\xcd\xdc\x5d\x20\x8a\x37\xf3\xc1\x82\xdd\x10\x6b\xa1\x05\x16\xc2\x52\x41\x0f\x63\x1c\xf0\x88\xef\xb5\x04\x11\x08\x16\x9b\x00\x47\x14\x53\x13\xfe\xd2\x0d\xc1\xf3\x30\x0e\xad\x3a\x0b\xd2\x46\x41\x0a\xd1\x4d\x43\x83\xeb\xfe\x70\xd8\xf6\x7a\xdb\xf9\x56\x33\x69\x0b\x27\x59\x17\x1d\x49\x0d\xd1\xb6\x1d\x42\xb4\x6c\x34\xb6\xea\x68\x2c\x6f\x37\x96\x77\x35\xc6\x3d\x3c\xdd\xf4\x7a\x4b\x98\xda\x8c\xcb\x8b\xed\x35\xa2\xb0\x8a\x91\x7f\xb4\xec\xf5\x6e\x64\x9e\x6f\xaf\x11\x31\xf2\x18\x84\x8f\x04\x5c\x65\x89\x8c\x95\xa8\xd5\x17\x3b\x42\x2f\x07\x39\xa6\x47\x18\xbb\x0f\x17\xaf\xd0\xec\xde\xd4\xe2\xd3\x7e\xe7\xe2\xc8\xde\x3a\x12\x85\xba\xc4\x77\x94\xc1\x8c\xed\xef\x12\x42\x75\x10\x11\xe1\xb2\xb8\xab\xcf\x3d\x6f\x8f\x63\xcf\x3e\x59\x17\x1e\x41\xf9\xba\xe0\x2a\x3d\xcd\x73\x41\x60\xe5\x2d\x17\xb3\xab\x43\x0c\xdd\x62\x77\x7a\xfb\x4a\x7b\x64\xb8\xed\xf7\xe1\xed\xb7\x9a\xf3\x9e\x89\x1e\x77\xf6\x1a\xdd\x22\x01\x40\xf9\x84\x47\xe6\xb7\x0b\x08\xa1\x57\xd8\xec\x17\xa2\xec\x1f\xb6\xaf\x59\xc1\xad\x50\x20\x9e\xde\xbe\xa2\xda\xd3\x43\xb3\xa1\x58\x35\x44\xe7\xb7\xfd\x3e\x6b\xaa\x0a\xf0\x70\xd7\x7c\x49\xb8\x6a\xbe\x24\xdc\x75\x78\x09\xe2\x42\x30\xc1\x2e\x5e\x69\x6d\xc8\x0c\x4e\xfd\x6f\xb1\x3b\xb3\xd9\x38\x33\x36\xce\x4c\x8d\x33\x43\x5b\xd6\x72\x62\x5f\x71\xd1\x8f\x2c\x20\x47\x55\x15\x61\xf4\xfd\x55\x77\x3c\xd5\xa2\x9a\x03\x51\xad\x12\x51\xa5\x54\x68\x8b\x2b\xfc\x15\xde\x4a\xe5\x52\xda\x86\x5b\xa0\xfb\x5e\x2f\x2e\xde\xfb\xef\x39\x7e\x89\x5f\x14\x1e\x0e\x8d\xd5\x36\x6e\xb0\xa8\x25\x0a\xcc\x71\xce\x0e\x4e\x24\x0e\xd8\xda\x28\x79\x90\x3d\x8e\x1f\x44\x78\x91\x47\xea\xe5\x65\x96\x2b\xc1\xa4\xa1\x00\x5f\x45\xf4\x21\xbd\x1e\xc3\xb9\x5e\x2f\x75\x18\xb5\x66\x4a\x66\x08\xca\xf0\xf1\x80\x8b\x51\x19\x01\x36\x13\x7f\xf4\x4c\x3d\x77\xda\xef\x67\xaf\xe2\x29\xec\x3c\x68\xe7\xa2\xf8\x3c\x5b\x2c\x7a\x3d\xdb\xfc\x34\x7c\xbf\x6a\xe7\x60\x32\x6f\x36\x5f\x78\xfb\x12\xa2\x1c\x9b\x15\x94\xf1\xb1\x1a\x22\x8f\xf2\x77\x01\xbc\x23\x43\x4b\xbc\x0a\x72\x93\xf3\x7a\x1c\x1e\xd5\x70\x2b\x0b\x30\x3a\x4f\x17\xc8\xc7\x79\x7d\x32\x1c\x97\xc5\x93\x94\x2f\xde\xa2\x70\x3c\xcf\x5b\x23\xc8\x1b\x23\x20\xb6\x59\x8a\x6b\x73\x85\xe4\x8e\xfd\xa5\x64\x53\x0b\x4a\xf8\x1a\x78\xf2\x95\xb2\xd6\xae\x51\xe2\x0a\x70\x9b\x66\xf0\x1e\x78\x66\x11\x9c\xb3\x13\x51\x86\x22\x78\x70\x18\x7c\x56\x8f\x77\x4f\x71\x22\x9e\x53\xba\xfb\xe4\x86\x1a\xa2\x2f\xad\xf2\x6c\xcb\x95\x37\x17\xc3\xcb\x51\x2a\xfb\x49\x1f\x9b\x66\x6d\x01\xbb\xbb\xac\x21\x45\x2a\xa6\x59\xb3\x6b\xd0\x0c\x58\x90\x25\x59\xee\x59\xa0\xff\x61\x4e\x16\x0e\xff\xea\x83\xa9\x15\x65\x29\x3d\xbe\x25\xf1\x6a\x4d\x3d\x6b\x99\x25\x21\x68\x78\x08\x34\x23\xa5\x0b\xbf\x98\xc2\xdd\xec\x2c\x75\x56\x79\xb6\xdb\x5e\x66\x49\xe2\x6f\x0b\x12\xda\x20\x8c\xa3\x08\x40\x4f\x66\xa8\x6f\xa9\x36\x43\xe0\x3e\x75\x92\x6c\xa5\x93\xb3\x59\xd6\x7d\x5c\x28\x63\x02\xb6\x40\x8d\x98\x11\xb5\x2c\xee\x0f\xc7\xa7\x6b\x11\xeb\x7f\x5d\xf0\xd8\x06\xf9\xba\x40\x31\x26\x12\xbc\x3e\xfb\x45\xc9\xa6\x61\x7b\xcf\x20\x28\xc0\x32\x4f\x9d\x9f\xb3\x38\xb5\x81\x03\x20\xca\x11\xf8\x71\x37\x1c\x9c\x0f\x01\xca\x16\x53\x0d\xe2\x76\x41\x95\xfb\xba\x2b\x57\xe6\x5d\x74\xe5\xf5\xc1\x1c\xf4\xe3\x3e\x58\x00\xe4\x2f\x1a\xf6\xf6\xf3\x05\x7f\x03\x99\x72\x28\x49\x4a\x39\x45\x73\xf0\xa7\x80\x2f\x1a\x5d\x38\x94\xdc\x51\xb4\xb5\x29\x5c\x70\x0f\x10\x3e\xb5\x3f\x73\xea\xab\x84\x0c\xe8\x1c\xb6\x3f\xee\x86\xee\x60\x2c\xfe\xb5\xd2\xcc\x62\xb0\xb6\xcc\x44\x20\x96\x4f\xae\xd1\x55\x1a\xda\xed\x05\xaa\x35\xc2\x5b\x20\x69\x58\x6b\xc5\xaa\x09\x6c\x37\x15\x9e\x48\x38\x3f\x8f\xa8\x92\x8b\x21\x09\x01\xaf\x2d\x29\x50\x35\xe7\xf9\x62\xc6\xfe\xd1\xfc\xc3\x67\x3b\x85\xd0\xe3\x91\x38\x78\x13\xba\x8e\x76\x66\xc0\x6e\xbf\x66\xc0\x75\x63\xc8\xf7\xf5\x17\x82\x24\x5b\xad\x48\xce\xc5\x1b\x3e\x2f\x70\x9d\xfb\x69\x11\x65\xf9\x86\xe4\x5c\x66\x4c\x63\x9a\x90\x37\x8c\x48\xa5\x94\xe4\x75\x49\x71\x17\x82\xd2\x78\x43\x0a\xea\x6f\xb6\x1c\x4b\xc3\x9d\x70\xfe\xdc\x21\xd1\x35\xc2\xa3\xce\x81\xe8\x1b\x2c\x0c\x33\x33\x76\x1f\x81\x3f\x05\xa0\x2f\xe9\x56\xe9\x2a\x82\x73\xfe\x55\xf6\x9f\x2d\xd0\xcf\x21\x4a\xcd\x34\x3b\x4e\x2d\xd0\xcf\x1c\x9a\xbd\x89\xef\x48\x68\x0f\x61\x1f\x58\x9b\x02\x02\x88\x62\x89\x91\x7c\x19\x6d\x0a\xa5\xa8\x3b\x50\x5b\x99\x07\x9b\xe2\x47\x44\xc1\x45\xda\x09\xb9\x21\x09\x0a\xb8\x24\x28\x8a\x50\xd1\x4d\x0b\x37\x80\x34\xed\x0a\xaf\x9a\xa1\x08\xca\xe0\x54\x99\x70\x9b\x4d\x42\xb4\xad\x7e\xf3\x88\x16\xf7\x38\x93\xcb\x80\x56\x38\x63\x9c\xc4\x0d\x97\x38\xa1\x1b\xe5\x03\x16\x2d\x31\x9b\x58\xf6\x15\xdd\xe2\xcc\x49\xc9\x9d\x10\x49\xa1\x2b\x4c\xe6\x51\x7f\xb0\x98\x5e\xf5\x7a\xf6\x2d\xbe\x32\xea\x2e\xf1\x95\xea\xe4\x38\x84\x32\xa8\x4e\x6e\xdf\x43\xf4\x19\x77\xe0\x9c\x3f\xf3\x3b\x5e\x6a\xad\xdb\x12\xa2\x7b\x94\x41\xcf\x47\xd7\xf8\xce\xde\x42\xf4\x01\xef\xc4\xc4\x67\xd5\x11\x2b\x53\xec\xaf\xb0\x0f\xa6\xc0\x03\x00\x5d\xe2\xb9\xca\x5e\xe5\xfe\x7d\xe3\xdc\x4d\xd8\x1f\x92\x4f\xc1\x62\x7a\x29\xd6\xef\x03\x44\xb4\x42\xa2\x5e\x4f\x26\x3f\xa7\x0d\xfe\x92\x27\x11\xee\x97\x55\xe4\x40\xf9\x88\x63\xfb\x2b\xba\x46\x4b\x71\x50\x7c\x9e\xc9\xc9\xf4\x7a\x45\xeb\xc8\x6f\x9e\x52\x1f\xf5\xc1\x74\x09\xf5\x3d\x50\x5d\x10\x1f\xa1\xd7\x6e\xec\x59\x6d\xd8\x1f\x5b\xa7\xd4\x47\x28\x55\x56\x36\x76\x82\xbe\xa2\xf9\x6a\x81\x80\x5e\x6d\x00\xd1\xcf\x2a\xe3\xeb\x02\xa9\x8d\x05\xd1\x85\x4a\xbd\x41\xac\x02\x47\x26\x00\xd1\x7b\x95\x7c\xbb\x40\x40\xa3\x13\xe0\x3c\xd3\x17\xc6\x89\xec\x2a\x4c\x12\xf8\xfb\x09\x9b\xcb\xad\x33\xed\x15\xec\xbe\x55\xa7\xe9\xfc\xcb\x82\x6d\x4b\x8b\x95\xb5\xb8\xd6\x3f\x40\x9f\xd0\x4a\x3a\xe7\x17\xd9\x66\xde\x8a\xf7\xfe\xb3\xe8\x5d\x4c\x40\x74\xfd\xb6\xd6\xb5\xc8\x11\xa8\xd6\xdd\xef\xcf\xa2\x5f\x51\xd0\xb2\x2c\x0b\xa0\xb7\xe8\xab\xee\x97\x65\x9b\x79\x5f\x79\xbf\x37\xbd\xde\x85\xe8\x5a\xa8\xb6\xf1\x9e\xdf\xd4\x7a\x16\xc1\xb2\x6e\xd0\x03\x53\x9e\xb2\xbe\x2f\x44\xdf\xc2\x57\x82\x68\xff\x0d\xba\xd1\x7d\xb3\x6c\x33\xef\x86\xf7\xfd\x5e\x74\xac\xd7\x41\x74\xfe\xae\xd6\xb9\xce\xb4\x6f\x1f\x9e\xf9\x7b\xd1\x3b\x2b\xab\xa0\xfa\x0e\xdd\xea\xde\x59\xb6\x99\x77\x0b\xa7\x41\xaf\xb7\xb6\x57\x8c\xf7\x42\x9f\x7f\xe9\x4d\x99\x64\xab\xd6\x45\xc9\x0e\x58\x93\x23\x59\x69\xfd\xc2\xa6\x31\xec\xb7\x6e\x67\x04\x4b\xd7\x8c\x60\xe9\x32\xd2\x1e\xd1\xa6\x5b\xe5\x12\x5d\xf2\xf8\x0a\xf5\x8b\x8c\x4f\xaa\x79\x8f\x71\x60\x9b\x89\x31\xa6\x0c\x7b\xc3\x38\x60\x87\xa4\x2f\x9a\xe0\x0f\xc0\x05\xbf\x05\xd8\x81\xff\x51\xe5\xb7\xc2\x42\x2a\xe6\x03\x36\x2f\xb6\xf6\x53\x40\xf7\x0b\x83\x71\x5d\x97\x65\x29\xd4\x2c\xd5\x03\x43\xaf\x57\x69\x86\xab\x0e\x1a\x81\xda\xe6\x39\x09\x77\x77\xc7\x62\xd6\x0b\xcb\xfc\xe2\x76\x2c\x5c\x67\x3e\x49\x48\x58\x8b\xac\x97\x09\x4b\x13\x59\x4e\xe9\xd5\x5b\x7e\x61\x6d\xe2\x30\x4c\xc8\xad\x9f\x13\xef\xc7\xf4\xe5\x4b\xeb\x7b\x51\xe4\x36\xa6\x6b\x4b\x52\x13\x4a\xa1\xfe\xc7\x34\xde\xf0\x40\x7e\x7b\xd5\x50\x69\x45\x79\xb6\xb1\x5e\x98\xa3\x78\xf1\x63\xca\xdf\x0b\x2c\xae\x60\x6d\x61\x4b\xbc\x28\x7c\x66\x5f\xf6\x8f\xa9\xc5\x87\x1c\x90\x1c\xb1\xdf\xfc\x24\x7c\xa7\x87\x60\x8b\x26\xe0\x8f\x29\xe4\x83\xf9\x90\x73\xcd\xff\xc0\x4f\x65\x2b\xec\x33\xb7\xb2\xdb\x54\x8d\x80\x8f\x33\xd8\x15\x34\xdb\x68\xbd\x7f\xe9\x7d\x6f\x19\x53\x27\xb9\x7f\x69\x8e\xed\xb8\x39\x13\xd1\xaa\x9c\xf3\x23\x73\x91\xbd\xe1\x5a\x05\x7b\xcf\xa6\xf0\xf2\xa5\xe5\x38\x8e\x6e\xb8\x84\xd3\xff\x14\x00\x40\xdd\xf0\xf3\xd7\x60\x97\xd0\x4c\xd2\x16\xb0\x56\xfb\xe1\x8d\x3c\xfc\xba\xd5\xd1\x43\xf0\x90\x58\x35\xee\xf5\x8e\x62\x3b\x45\x41\xa5\xfd\x6c\x07\x50\xba\x63\xd8\x97\xd3\x44\x5c\xca\x05\x54\xc1\x9e\x48\x88\xaf\x44\x4c\xc4\x2a\x85\x91\x42\x5c\x45\x9f\x47\xea\x2c\xaa\x3b\x06\xe7\xdc\xf3\x27\x2a\xe4\xd9\x8f\x03\xde\xb2\x52\x1f\x60\x9b\xc8\xe7\xf1\x54\x23\xcc\xba\xad\x0e\xad\x42\x39\xd2\xd7\x21\x61\x44\x89\x69\xc1\x69\x29\x35\x84\x63\x3d\x04\x54\x54\xe7\xac\xec\x75\x2a\x88\x37\x71\x30\xd4\xc3\x75\xc8\xc9\xef\x66\x3b\x3e\x75\x4f\x94\x61\xc3\xb9\xb7\x13\xd4\x3a\xb3\x28\xda\xb3\x7c\x2f\x2c\x21\x44\x89\x12\x03\xb9\xa8\xa8\x29\x53\x17\x75\x65\xea\x48\xbd\x12\xde\xa0\x25\xba\xed\x56\xc8\xec\x4c\x64\x80\x14\x02\x3e\xda\x1f\x40\x41\xff\x12\x58\xda\xc0\x05\x88\x1e\x9b\x72\x62\x25\xee\xe8\x93\x12\xdd\x75\x59\xac\xdf\x8a\x33\xea\xaf\xd9\x2e\x2f\x6c\x88\x18\x5d\xed\x81\xbe\x4c\x7d\x17\xa7\x3b\x4a\xda\xe9\x9f\x49\x90\xa5\xa1\x4a\x77\x8c\xf2\x49\x12\x17\x3a\x73\x04\x4b\x74\x85\xbb\x24\xf9\x46\x10\x57\x2d\x24\xad\xa5\x75\x2c\x85\x91\xcf\x96\x76\x66\x7c\x7b\x1c\xab\xbe\x76\x91\xbe\xed\xf8\x2e\xbf\x4f\x78\x97\xff\x6c\x74\x17\xf4\xb9\x69\xa6\xd0\x96\xeb\x56\xee\x28\x5c\x94\x62\x99\xae\x1f\xb1\x68\x25\xde\xa5\xdc\x98\x9d\x2e\x30\x99\xd3\x45\x65\xc6\xa3\x6c\x16\x78\xc3\xec\x80\xe4\xe6\x6f\xd7\xec\x48\xb9\xc1\x4f\xbd\x9b\x74\xf0\xbf\xbd\x1e\x99\x11\xaf\x6b\xb5\xeb\x7e\x92\xf6\x25\xb2\x97\xf8\xc6\x79\x4d\xc8\xf6\x75\x1c\x45\xb0\xd7\xbb\x6e\xc7\x22\xe8\x6a\x67\xd9\xeb\x55\xd5\x30\xc6\x51\xaf\x67\x1b\x09\x4b\xad\xb5\xc3\xe5\xb7\x8c\x3f\x63\x6c\xa4\x1d\x8b\x3f\xbe\xf8\xb3\x63\x7f\xba\x5e\x14\x63\x52\xd8\x91\xdc\xc6\xf2\x3d\x31\x6a\xbc\x27\xa2\x4a\x61\xe2\xb5\x51\xac\x68\x16\xe3\x47\xbf\x59\xa2\xf9\xbe\x2f\xa4\xac\x4d\xb9\x6d\x0e\xf7\x69\xaf\x77\x24\x4a\xe5\xf0\x70\x08\xe5\x2f\xe1\xbc\xb7\xa3\x0f\xa1\x57\xa3\x7a\x09\x9b\x65\x72\x72\x43\x72\x5a\x2f\xd4\x1c\x4a\x97\xcc\xf7\x46\x85\xcf\xc6\x44\x0a\x42\x1b\xb2\x5e\xe9\x2f\x21\xe3\x8e\x12\xba\xf0\x23\x56\xa2\xbc\x9c\x8b\x7b\xcd\x4f\xbc\x2f\x21\x8a\xb1\x99\xf4\xdf\x44\xa0\xab\xa4\x71\x0d\x71\x6d\xb2\x2e\xcc\x82\xef\x3b\x25\xbf\xff\x01\x81\xae\xea\x5e\x4a\x6e\xdb\xdd\x2a\x89\xaf\x21\xd0\x35\x57\xe1\x09\x39\x6e\x35\x3b\x63\x2d\xd3\xc7\x66\x57\x95\x2b\xcb\x16\xfe\x72\x6f\x91\x51\x12\x07\xb4\x85\x99\x9d\x01\x45\xd4\x19\xd0\x6a\x28\xcd\x9e\x6c\xc8\xba\xee\xf5\xec\xeb\x6e\x01\x2d\xe1\x81\x09\xd0\xb5\x30\x8b\x44\x51\xb3\x7d\xa9\x8e\xf8\x01\xef\xaf\xbc\xbd\xe0\xd9\xc0\x1f\x86\x83\xf3\x93\x37\x23\x80\x28\xb9\xa3\x1e\xb8\xfc\xeb\xc5\xfb\xbf\x5c\xbd\xf6\x40\x89\xde\x57\x65\xc6\x97\x17\x6f\x26\xae\x2a\x73\xf1\xfa\xb5\x28\xf1\xba\x2a\xf1\x66\x3c\x1e\x8d\x4e\x54\x89\xd7\x57\xdf\x5f\x5d\x8b\x32\x17\x0f\xf5\x74\xf1\xe9\xd3\xc5\x3f\x3d\x50\x96\xe8\x12\xef\xb9\x20\xcb\x03\x49\xb6\x02\x48\x10\x97\x9e\xe4\x28\x90\x66\x7b\x84\xd2\x8e\x94\x59\xc8\x87\x1f\xa4\x59\x24\x95\xa0\x24\x2c\x2a\x48\x09\x97\xd3\xb0\xaa\x4d\xb6\xab\xf3\x22\x2c\x51\x4b\xcc\xf8\x40\xb9\x26\xc3\xf6\x40\x31\x21\xac\xf3\xf6\x5c\xba\xd2\x81\x16\x71\xba\x26\x79\x4c\x41\x89\x34\x19\xd9\x51\xea\x0f\xe7\x57\xec\x3f\xa0\x86\xd7\x55\xc4\x1d\x5d\x9c\xbf\x19\x83\x12\x69\xca\xb0\xab\x94\x5c\x49\x15\x30\xaa\xa3\xc4\x9b\xa1\x3b\x76\xc7\x6c\x5d\xf8\xf5\x71\x34\x40\x35\x56\x53\xc1\x99\x1a\x53\x57\xd6\x01\x1f\xdb\xd6\x7a\xbf\x85\x9b\x36\xec\x8f\x3b\x38\x80\x0e\x8a\x85\xd6\xdd\x76\x6a\xfd\xc2\x95\x0d\xed\xca\x4a\x85\x56\xce\xda\xd2\x52\x9a\x36\x34\xd8\xd7\x1f\xd3\x1a\x03\x6b\xdd\x8c\x16\xd6\x77\x9f\xae\x2e\xfe\xf6\xf6\xfd\x5f\x2c\xb1\x45\xba\x8a\x7c\x8e\x19\xbb\x3a\x72\x5c\xc7\xad\xb3\xbc\xd2\xb5\x9f\xb5\xbc\xd7\xdc\x6a\xd2\xc1\xc1\x16\x84\x52\xee\x94\xb2\xab\x71\x71\xf5\x75\xe5\x3c\x9b\x4b\x6c\x57\xa5\xd9\x23\x0d\xee\xeb\x4d\x3e\xc0\x46\x03\x58\x4e\xa9\x0a\x68\x55\xe0\x4b\xa4\xb4\xf3\x44\x35\xee\x02\x58\x14\xc6\x1f\x91\x2e\x88\x3f\x3e\xec\x08\xb1\x8a\x94\xa5\xb5\xa1\xb8\x02\x14\x0f\x95\xd3\xa9\x4f\xf9\x84\xf7\xff\x6e\x47\x93\x6a\x93\xa6\x41\x16\x92\x1f\x3e\xbd\xd5\xba\xef\x36\x81\x95\x9f\xcf\xf9\xd1\x0b\x1b\x7e\xb3\xa8\x39\xfb\xac\x1e\xef\xfe\x04\xfa\xc4\x09\xd6\x7e\x7e\x99\x85\xe4\x82\xda\x2e\xac\x18\x96\xc1\x09\xfb\xf8\x61\xbb\x25\xf9\xa5\x5f\x10\x15\x34\x66\x70\xf2\x84\x6f\x78\x19\xab\x80\xfb\x8a\x5b\x5d\xdd\x6d\x6d\xf0\xa7\xb9\x7f\x1c\xb9\xc7\xe7\x8b\xfd\xb0\x04\x08\xac\x62\x00\x51\x56\x2b\x61\x9b\x45\x60\x5f\x16\x9a\x36\xb5\xf3\x8c\x78\x94\x21\x69\x4f\x5b\xbe\x3e\x00\x1d\x68\x2d\x83\xfb\x32\x8e\xec\x01\xae\x8c\xf4\x2a\xb3\x61\xca\x6d\x37\x95\x6f\x42\xa5\xf1\x84\x28\x44\x95\x4e\x5a\x65\x1e\x2b\x68\xf3\x9a\x47\xc9\xc0\x97\xae\x07\xe7\x0b\x14\xdb\x29\x44\xb1\x9d\xc3\xba\xba\xdf\x93\x43\x36\x46\x5a\x31\x11\xc4\xd9\xc8\x38\x71\x28\xc5\x83\x69\x5a\xa9\x71\xa4\xfd\x3e\xa4\xd8\x26\x38\xe6\xd4\x43\x35\x61\x5d\xa3\x72\xaa\x57\x3e\xe8\x9f\x54\x39\x0c\x36\x6c\x4e\xbb\xa3\x31\x5e\xdd\x6d\x49\x40\x49\x68\xfd\x24\xb0\x2c\xfc\xe1\xd3\xdb\x9f\x2c\x9a\x59\xcb\xca\x6e\xe3\x27\xd1\xd8\x4f\xc8\x5a\x65\xd4\xfa\xc9\x34\xe3\xf8\x49\x3e\x0a\x6a\x8b\x0b\x52\xe1\xe5\x8f\xfd\x97\x2b\x04\x2c\x00\xd1\x63\x60\xe9\x62\xbe\x4d\x7f\x61\x7b\xf0\xa7\x37\x57\x7f\x7a\xf3\x06\x78\xe0\xc7\x5d\x14\x45\xa1\xf8\x17\x20\xf0\xa7\x37\x6f\xfe\xf4\xe6\xaa\x99\x5e\x22\x1e\xee\xef\x8e\x04\x5c\xdb\x6f\x2a\xd6\x27\x9d\xe7\x73\x77\xb1\xc0\x1d\x23\x61\x19\xc6\x60\xa4\x73\x4a\x91\x3c\x8d\x8f\x30\x66\xbf\x7a\x3d\x5b\x35\x11\xc3\xd2\xe8\xa1\x4c\xe7\xe0\x4f\x97\x43\xb0\xc0\x72\x18\x40\xdb\xd8\xee\x6a\x2a\x35\x29\x44\x09\x76\xa7\xc9\xab\x9d\x5a\xe9\x44\xb9\x30\x0c\xf0\x6e\x9e\x2c\xa6\x26\xf0\x8c\x9d\x13\x20\xb0\x02\x10\xa5\xf3\xc0\x74\x4c\xc8\xba\x66\x5b\xf5\x09\x27\xc8\x8f\x6a\x99\xc7\x86\x62\x7d\xd4\x59\xc2\x7f\x52\xf5\x7e\x67\x94\x08\x3b\x4b\x24\x46\x89\xa0\xb3\x44\x60\x94\x20\x0f\x9a\x00\x54\x06\x86\xf6\xc4\x85\xd3\xa3\x1a\x59\xe9\xbc\xf9\xf0\xe9\xdd\xc5\xf5\x97\xab\x4f\x9f\x3e\x7c\xc2\xc0\xfc\x02\x88\x5b\xba\xff\xf0\xf1\xe3\x87\x4f\xd7\x57\xaf\xbf\x88\xbc\xeb\xab\x4f\x18\x74\x26\xb3\xf2\x6f\xdf\xff\xfd\xe2\xfb\xb7\xaf\xbf\x5c\x7e\x78\xff\xe6\xed\x5f\x30\xa8\x7f\xb3\x12\xef\xde\x7e\xfe\xfc\xf6\xfd\x5f\xbe\xbc\xbe\xb8\xbe\xc0\xc0\xfc\x32\x73\xaf\x3f\x5d\xbc\xff\xfc\xfd\xc5\xf5\xdb\x0f\xef\xab\x42\x46\x22\x28\xed\x9c\xdb\x34\xee\xd5\x04\xe3\x87\x82\x1b\x99\x16\x85\x98\x98\x2a\xbf\xf3\x3f\x73\xc9\x0c\xfd\xb9\x78\x19\xa7\x34\x11\x36\x58\xc2\xb6\x6a\x61\x81\x7e\xde\x07\xd6\x8f\x29\xe8\xdb\xd9\x0c\xb0\xbf\x99\x23\x1d\x4f\xf7\xe5\x67\x41\xfd\xe0\xab\xc7\x8e\x18\xe1\x7c\xa8\x7a\x42\x66\x7b\x05\xa7\x9d\xb1\x0d\x79\x27\x4e\x20\x02\xf1\x7c\x66\x2d\x5c\xe7\x7e\x40\x7a\xbd\x07\x32\xec\x58\x78\x21\x6d\x7a\x36\x58\x42\x19\x7a\xa9\xb4\xaf\x44\x88\x4e\xff\x21\x08\x98\x66\xad\x35\x00\x3c\xb0\x8c\xac\xbc\x98\xd1\x63\xbd\xc6\x35\xc7\x5c\xcf\xec\xb1\x89\x0f\xcf\xee\x2a\xf9\xc5\x5d\xd5\x51\xeb\xd9\x1d\x05\x8f\x74\xf4\x20\x26\xd5\xb7\x0d\xe5\x88\xf3\x7d\x16\xf8\x09\xf1\x04\x3e\xfd\x98\xbe\x13\xb8\xf3\xf6\x35\x4b\x91\x3e\x4f\x71\x7e\x38\x68\xa5\x86\x5c\x19\xdb\xe6\x4e\x1c\x42\x56\xe5\xb5\xa4\x1d\x65\xd5\x67\x54\x94\x14\x98\xac\x20\x1b\xd1\xde\x37\x9e\xd5\x40\xe5\xab\x43\xa0\x3f\xca\x5a\xd8\xad\x0a\x65\x39\xce\x1f\xc7\xcc\x18\xa2\xe2\xd1\x85\x53\x6a\xee\x1d\xeb\x66\xee\x76\xf4\xe2\x5d\x5c\x14\x71\xba\x52\xbe\xdf\x3d\x0b\xbc\xe8\x53\x27\x0e\xfb\x2f\x84\x45\x64\xc2\xa1\xcd\x52\xd3\xfe\x0b\x80\xac\x1d\x2f\xfd\xa2\x6f\xd3\x06\x50\x66\x40\x91\xe4\xb2\x29\xe0\x81\x38\x04\x6c\xb6\x7e\x61\x45\x32\x20\xb8\x03\x1a\xb3\xce\xcd\x59\x53\x94\x3f\x3e\x6b\x76\xbf\x3c\x41\xb8\x3e\x7a\x39\x98\xd7\x47\xf7\x15\xb4\x6b\x1c\xec\xa7\x50\xb8\x89\x3f\x35\x83\x60\xf9\x4f\x58\xaa\xb7\x4c\x23\x50\x2e\xec\xad\x39\x29\x64\x92\x86\xca\xd0\xc5\xce\x1c\x02\x6d\xc2\xae\x78\x49\x2d\xce\xf7\xac\x35\xcf\x45\xd2\x5c\x66\xee\x2e\x1c\xfe\xb3\xac\x7c\x0a\x47\x78\xbe\x40\x21\x76\xd1\x16\x93\x69\xf8\x4a\xa9\x9d\x4e\x43\x75\x91\xaf\xf1\x76\x1e\x2e\xa6\x71\x64\x9b\xdd\xac\x21\x8c\xa4\xf6\x70\xad\x8f\xb5\xec\xa0\x52\x6c\xd6\xb5\x62\x5e\xab\x1d\xd6\x32\xe8\xf5\x3a\x9b\x4a\x19\xeb\xf9\x9e\x97\x16\x4a\x34\x36\xe5\xc1\x94\xd9\xaf\x00\x96\x46\x00\x81\x0d\x96\xdd\x72\x9d\xee\xe4\x70\x38\xb2\x37\x56\x9c\x5a\x89\x19\xbe\x3c\x76\x42\x7b\x83\x0a\xa5\xe7\x9e\xcc\x37\xf5\x49\x2d\xf9\xf0\xee\x7b\xbd\x36\x99\xc9\x12\xe5\xb0\x8d\xc4\xc3\xc1\xbe\xc7\xed\x20\x16\xf7\x87\x43\x7b\x8e\xf7\x33\xc9\x9d\xdc\x43\x76\x29\xa1\xda\x84\x3b\xda\x98\xb9\xde\x40\x82\xe1\xbe\x0b\x96\x01\x1f\x2c\x9f\xfc\xaa\x63\x0c\x6b\xa7\xa0\xf7\x09\x99\xe5\x4e\xe8\x53\x32\x97\x9f\x0b\x4f\xd7\x0f\xa1\x2d\x13\xe1\x4c\xfe\x70\xb6\x7e\x5e\x90\xf0\x83\x78\xab\x94\xc2\x85\xe9\xc3\x2b\xf3\xda\xa7\xe4\x3a\xde\x10\xb5\x36\x68\xa5\x57\xe7\x1e\x96\xf2\x41\xcd\x1c\x73\x22\xc6\xfc\xf8\x78\x69\xbc\xf9\xaf\x32\xde\xe8\x39\xe3\x15\x2b\xdd\x31\xe2\xd5\x6f\x1f\x71\x1d\xf7\xbb\xc6\xbb\x37\xc7\xfb\xb5\xc2\x89\x1b\xbc\xd6\x5e\xdb\xd1\x52\xed\x0e\x74\x8b\x93\xf9\x92\x63\xfd\x91\x6f\xdf\xd6\x37\x47\x60\x2f\x0d\x9a\x48\xed\x93\x3b\x7c\x6b\xef\xec\x9b\xea\xfc\x61\x1c\xdb\xb6\x33\xae\x37\x51\x3b\x1f\xc2\x69\xfd\xa9\xe9\x0e\x1e\x0e\xf6\x1d\x9e\xdf\x2d\x14\xe2\x4b\x25\xa7\x08\xdd\x3d\xd4\xdc\x43\x3b\x83\x18\x3b\x83\xfb\x3d\x81\xa5\x09\x83\x9f\x05\x0c\xd8\x0c\xed\x2b\xbc\x56\x2f\xef\xf3\xfb\xc5\xe1\xa0\xbf\x9c\x8c\xae\x49\x5e\x9f\xfe\xd2\x56\x40\xba\x47\x26\x87\xa3\x2b\x41\x06\x92\xc6\xe8\x77\xf6\x95\xac\x24\xe1\x03\x3b\xd0\x68\x5d\x2d\xcb\xd5\xb4\x35\x30\x80\x41\xff\x7e\x21\x87\xfc\x36\xa5\x89\xf3\x31\xd9\xe5\x7e\xf2\x89\xc7\x37\x36\x47\xe8\xdb\x2f\x9a\xf9\x2a\x64\xa1\x7f\xe3\xc7\x09\x8f\x43\x1e\x0b\x9f\x92\x66\x94\x16\xe7\xc7\xf4\x3a\xbf\xb7\xb6\x32\x86\x05\xbb\x7a\x63\x2a\xef\x60\x50\xa7\xb2\x8f\xb7\xbc\xed\x9c\xb5\x0d\x7e\x4c\x5f\x54\x17\xfe\xdb\xf7\xd7\xdf\x7f\xb9\xf8\xf8\x56\x23\xc6\x57\xcc\x51\xd4\x18\x8c\x4d\x91\x58\xb4\xb5\x23\x9a\x61\x0c\x79\x09\xa5\x59\xbf\x7d\x7f\xcc\x60\x19\x45\x05\xa1\x87\x83\x0b\xe1\xd4\x84\xc2\xd7\xf6\xf2\xb0\x65\x3d\xba\xfa\x1d\xd6\x08\x35\x47\x22\xd6\x6c\x5a\x96\x2d\x3f\x10\x26\x72\x8b\x6b\xf1\xd5\x70\x46\x3c\xc6\xd1\x86\xbb\xa0\x15\x2e\x53\x8a\x64\xe6\xa4\x32\x3d\xd2\x6f\xa5\xbd\x1e\x77\xba\xc0\xb5\x55\xc5\x6f\x11\xf7\x67\x96\x8a\xd1\xf5\x31\x75\x24\x56\x8b\xf3\x80\x42\x44\x4a\x88\xe6\x0b\x58\xda\x11\x2c\xeb\x9c\x21\xeb\x82\x3f\x3b\x27\xd8\x5d\x60\x20\x7f\x03\xc4\x32\xc4\xb3\x2b\x1e\x2c\xf4\x0b\xac\xc9\x8f\x31\xea\xe7\x09\x41\xd8\xb3\xd9\xeb\xa7\xe9\xa3\x6e\xd6\xf8\x79\xec\xb5\x41\x41\x0d\xdc\x61\x8b\x37\x56\x98\xf9\xf7\x8b\xef\x7f\xb8\xaa\xf8\x50\xfe\x69\x72\xbb\x32\xbf\xf6\x69\x72\xb3\x0a\xb3\x71\x1b\xd7\x9f\xcf\xc7\xd6\xac\x02\x4c\x8a\x99\x36\x48\xd5\x4c\xb1\x9f\x99\x93\xe5\xf1\x2a\x4e\xfd\x44\xd2\xbe\x38\xaf\xc2\x7d\xb4\x09\xd7\x0e\xd3\xcb\xb6\x97\x43\x30\x57\xbb\x59\x70\xb2\x8c\xa7\x90\x1e\x15\x43\x22\xf8\x66\xfe\x29\x89\xeb\xf2\x99\xfc\xa9\xe0\xac\x3a\xd8\xb8\x17\x35\x8f\x28\x85\xf0\x7e\xf2\xa2\x4f\xfb\x2f\x80\xa7\xa8\x7d\xc7\xfa\xa0\x1d\xae\x72\x16\xc0\xdc\xb8\xb9\x94\x04\x32\xa6\x00\xbc\x80\xfd\x17\xe0\x05\x6a\xae\x54\xf6\xdb\xd9\x5d\xc3\xde\xa9\x36\xfc\xbf\x73\x47\x2e\xc6\xa8\x85\x03\x70\x43\x48\xf8\xa2\x9f\xb6\x06\x94\xff\x4e\x4c\xf1\x8b\xeb\x35\x3b\xbf\x69\x62\x89\x4b\x4f\x7b\x96\xe6\x61\xac\x96\x82\x81\xe2\xa3\xbc\xf5\xc5\xb1\x2f\x83\x6d\x86\xca\x43\xb9\xac\x27\x21\x6f\x9c\xde\x72\xe4\xcf\xe3\xb2\xd9\x09\xf1\x44\x64\xa3\x5f\xfa\x84\x60\xbc\x3f\x48\xa2\x47\xf0\x96\xfb\x89\xeb\x81\x3f\x90\x80\x44\xd1\x00\xa0\x81\xcb\xbe\x82\x28\x3c\x0b\x03\x80\x86\xfc\x6b\xe9\x2e\x49\x30\x01\x68\xc4\xbf\xce\x5d\x7f\xec\x13\x80\xc6\xfc\xeb\xf4\xec\xdc\x3d\x0f\x00\x9a\xf0\xaf\x13\xf7\x34\x3c\x5b\x02\x74\xc2\xbf\x26\xe3\x13\x72\xea\x03\x74\xca\xbf\xc6\x93\x89\x7f\x32\x06\xe8\x8c\x7f\x8d\x4e\xc7\xa7\xe3\x08\xa0\x73\xfe\x35\x3c\x19\x0d\x47\x67\x00\x5d\xd4\xbb\xbf\xa8\xf7\x7f\x51\xef\xf2\xa2\xd6\xae\xf1\x10\x83\x73\x06\xbe\x27\xe4\x97\xff\x59\xf0\x45\x11\x59\x12\xa2\xc0\x17\x45\x41\x18\x0e\x15\xf8\x48\x74\xee\x9f\xfb\x0a\x7c\x64\x72\x3a\x3a\x1d\x29\xf0\x91\x68\x32\x9a\xb8\x0a\x7c\x91\x7c\x48\x3e\x91\x25\x47\xe7\xa3\x89\x02\x5f\x38\x1a\x46\xc3\x48\x81\x2f\x38\x19\x9e\x0d\xcf\x14\xf8\x96\xa7\x83\x60\x10\x68\xf0\x45\xd1\x99\x7f\xe6\x6a\xf0\x45\xd1\x64\x38\x19\x6a\xf0\x45\xd1\xe0\x74\x3c\xd6\xe0\x0b\x27\xae\xeb\xba\x6d\xf0\xb5\xe3\xb0\x35\xdc\x0d\xd6\xfc\x67\x77\x85\xfc\x2b\x48\x12\xf5\x7a\xec\xdf\xd2\x86\x87\xc3\x1b\x55\x11\x18\xf5\x00\xb4\xb9\x07\x3f\x27\x27\x2b\x92\x0a\x15\xae\x4f\xbb\x94\x31\x20\xda\x75\xc4\x8a\x50\xc3\x68\xf8\xbd\xbf\x21\xfc\xd0\x52\x56\xa2\xa0\x5d\x15\xc0\x6f\xb1\x8b\x62\x9c\xf5\x7a\x5d\x2d\x0b\x83\xef\x76\xba\xf2\x70\x5b\xbd\x7d\xa4\xf6\xe0\xf4\x1c\xa2\x0c\x76\x16\x8f\x05\x4b\x48\xf3\xfb\xbd\x32\x8e\xeb\x28\x26\x1f\x00\x7c\xb8\x7f\xa4\x4f\x2e\x70\x6f\xc6\x88\x7b\xd8\x61\x48\xcd\x65\x67\xe5\x06\x24\xc7\x69\xc3\xc4\x1a\x65\x8f\x44\x43\x96\xd1\x65\x3d\x1e\x44\x28\xd3\x2a\x74\x87\x03\xf8\xf3\x9f\xd5\x07\x40\x3e\xce\x44\x10\xe0\xb7\x66\x7e\x2d\x05\xa0\x1d\x37\x7d\x11\x77\xe2\xb5\xbf\xe2\x45\x8c\x6f\x80\x12\xdc\xe1\x03\x91\x5b\xef\x74\xaf\x4f\x00\x13\x1e\x27\x52\xad\x44\x20\x25\x0d\x76\x77\x15\x9c\xcc\x74\x59\x6f\x5f\x42\xee\xd3\x0b\x6f\xb4\x76\x2b\x8a\x78\x64\x92\x79\xbc\x78\x00\x81\x4b\xa9\x43\x5a\xe1\xdc\x47\x05\xd6\x0f\x11\xda\xe2\xb0\xd7\x0b\xed\xd0\xfe\x60\xcf\x17\x8c\xb7\xda\xf6\x7a\xdb\x23\x8c\x53\x86\x60\xfc\xf6\xd8\xa2\x18\xf6\x7a\x76\x84\xb7\x50\xfa\x43\x58\x1a\x9e\x5b\x56\x0f\x7a\x71\x89\xe0\xf4\xc6\xc8\x5c\xd7\xf4\x0d\x97\x68\x59\xfb\xbe\x41\xcb\xf9\x6e\x81\x6f\x6a\x3e\x6d\xc1\x5f\x14\x2c\xde\x68\xc6\x31\x70\xe2\xa2\x95\xdc\x61\xb4\xd8\x29\xf4\x6a\x68\x3d\x2a\x6f\xac\x47\x22\x50\x0b\xc6\x37\x87\x43\x47\x9f\x18\x63\xbb\x33\xaa\x06\x23\x77\x03\x67\xe3\xe7\x5f\xbb\x5e\xa0\x25\x34\x8a\x1a\xbc\x67\x9d\xa9\x36\x41\x4b\xe8\xd9\x66\x00\xbe\x25\xda\xf1\x48\x10\x87\x83\x4d\x18\x64\x3a\xc6\x05\xe1\x23\x3e\x74\xd6\x8c\xbe\x47\x81\xe3\x73\x74\xe9\x60\x80\xbf\x7c\xf1\x6f\xfd\x98\x32\x2e\x17\xdd\xda\x77\x66\x88\x40\xe3\x63\xee\x3f\x88\x56\x28\x10\xd1\x87\xd5\x56\xc1\x77\xac\x3b\x96\xd2\x0a\x1e\xaa\x48\x57\xc6\x67\xdd\xd9\x95\xfd\xa2\x7e\x96\xed\x5c\x55\x9b\xc2\x59\xe6\x09\x7b\x33\x1b\x3a\x74\x4d\xd2\x07\x24\x03\x61\x96\x92\x99\x14\x10\xe8\x0a\x9c\x1b\xb9\x65\x80\x58\xd7\x01\x08\xd0\xfa\x91\xdd\x82\xd6\x8f\x92\xc0\xd2\x75\x89\x6e\x6c\x01\x18\x20\x18\xb9\xd9\x81\x84\xf3\x4a\x0e\x9a\xf2\xd5\x84\x3a\xac\x52\x15\xb1\x8b\xab\x40\x16\xc4\xae\x14\xee\x2d\x15\xfd\x69\x5a\x39\x2a\xd8\x2b\xdf\x83\xdb\x6c\x6b\x73\xb3\x9d\x5c\xb4\xa8\x38\x40\x31\x7b\x9c\x33\xce\x27\x4b\xb9\x9f\x6c\xad\x41\xab\x92\x5c\x1e\xc6\x3e\x10\x45\x0b\xfc\x01\x5d\x1b\xf8\x53\xf3\xb4\x74\x2d\x42\xe3\x7b\x8d\x27\x72\xe9\xfe\x9b\xdc\x60\xe5\x2d\x9d\xdc\x51\xf5\xbb\xe0\x7e\xa9\xd9\xaf\x2f\xfc\xa7\xe9\x55\x5d\x0d\x49\x7c\x90\x84\xac\x7c\x6a\x06\x7a\x10\x7e\xdd\x30\xb7\x0f\x02\xd2\x53\x77\xbe\xaa\x35\x41\xf3\xfb\xab\x94\xe6\x31\x29\xb4\x9a\xdc\x67\x88\x8e\x08\xd4\x1a\x02\x4a\x3c\x01\x81\x38\x8b\xb9\x0a\x07\x57\xdf\xd0\x87\x99\xe4\x9a\x7a\xbd\x23\xe1\xd0\xa0\x4f\xa5\x4a\xc3\x00\x42\x19\x11\x64\x4e\x17\x5a\x49\x17\x15\x34\xdb\xd6\x82\x76\x55\x93\x11\x64\x92\xf4\x5c\x5e\x0d\x6e\xee\x2e\xb8\x2b\xef\x84\xb0\x2a\xdc\x84\x87\x0b\x19\x00\x17\xa9\xf3\x0d\xa6\xfc\x96\xfb\xf9\x6a\x6a\xa0\x9e\x93\xdf\xf8\x49\xa9\x03\x52\x5e\xa9\xb0\xb9\x9d\x8b\xc0\xc6\xa0\x1a\x92\xae\xde\x39\x23\x68\xe0\x90\xc9\x98\xf8\xbc\x67\x2c\x87\x82\x7c\x0e\x5d\x82\xa8\x58\xc0\x94\xbb\x0c\xa5\xcd\x55\x30\x96\x00\xa2\xa3\xa3\xbc\xac\x3c\x61\x37\x57\x44\x2b\xb1\x66\xdf\x62\x77\x7a\x7c\xac\xdf\xca\x9a\xd0\xc9\x16\xc8\xc7\x71\x13\x42\x79\x96\xf1\x25\x8b\x59\xd1\xef\xb3\x40\x63\xb5\x0d\x48\x1a\x0a\xc3\x40\x95\xf7\x0a\x6b\x2c\x14\x9d\xec\xb0\x5c\xdc\x18\x01\x4e\x91\x7c\x9f\x05\x80\x71\x48\x55\x72\xc4\x38\xe1\xe4\x9e\x67\xb0\xb6\x76\xbd\x5e\x52\x47\xe8\x57\xb1\xa3\xea\x56\x9d\x57\x69\xe8\x48\x38\xfd\x31\xcb\x57\x8d\x9a\x35\x8c\x54\x2d\xac\xdb\xfd\xe2\xbe\xb4\xf8\xf5\x28\x81\x2d\x4f\xa1\x34\xbf\x17\x36\x74\xc2\x03\x68\x4c\xd7\xd9\x8e\x5a\xbc\xba\x95\xe5\x96\x1c\x01\xf8\x15\x03\x2e\xcb\x12\xf9\xcb\x7c\xb7\xa5\x0d\x82\xad\xd2\x2d\x79\x70\xe5\x53\xb1\xf2\xa9\xf6\x85\xda\x58\xf9\x94\x4b\x86\xb3\xf6\x2a\xea\xcd\x99\xd5\x17\x4a\x46\x17\xe0\x83\xcf\xcc\x61\x4a\xd4\xca\x84\x56\x6f\x59\xc6\xbd\x9e\x0d\xf8\x6f\x20\xdd\xc3\x33\xde\x36\x4e\x77\xdc\x3f\x0e\xf7\x5e\x52\xf5\xda\xeb\xd1\x57\xd8\x9c\x75\xaf\x67\xc7\x42\xb5\x56\x7a\xf5\x8c\x67\x26\x7e\x7a\x7b\xed\x3c\x5c\x6e\x22\x22\xb7\x0f\x45\xb1\x8c\x78\xd1\x71\x7a\xf1\x7d\x65\x76\x83\x0a\xe8\xe9\xf8\x13\x8c\xa4\xb6\x7d\x46\x3e\xc8\x8f\x06\xb8\x9f\x77\x6a\x18\x73\xe6\x45\x9a\x13\x17\x12\xc0\x6a\x38\xbc\xae\x27\x99\x14\xa3\x84\xad\x4f\x1f\xac\x4f\x5e\x5e\xb6\x7e\x36\xcb\x7a\xc6\xfc\xc4\xe6\xf4\x80\x70\x27\x55\xb5\xc8\xb5\xf5\xed\xaa\x1c\x85\xa8\x28\x51\x14\xa7\x71\xb1\xf6\xba\x54\x96\xe8\xc3\x68\x45\x05\x5a\x55\xde\x03\x1a\x68\x45\x17\xc2\x81\x7f\x05\x69\x5c\x45\x14\xb5\xea\x10\x4f\x8d\x75\x45\xa9\xe3\x47\x94\xe4\x0c\xa1\xb8\x83\x03\x54\xb0\xbb\x91\xeb\x92\xfe\x4e\x43\x14\x38\xc8\x87\x27\xaf\xf3\xf4\xc1\xab\x22\x17\x8b\x2e\xf7\x52\xce\x57\x9d\x8d\x52\xbb\xf9\x2f\xcb\xd6\xb9\x10\x27\xec\x5e\x4d\xe4\x49\xe0\x53\x4a\x36\x5b\x0a\x60\x89\xd4\x85\xfb\xcf\x98\x24\x61\x8b\xfb\x35\x41\xa5\xaf\xe6\xbd\x62\x93\xbc\x0f\x3c\x68\x02\x29\x76\x89\x88\xd4\x46\xb9\x2a\xf2\xf7\x59\xe0\xa5\xa5\xb0\xde\xe6\x97\x6d\x85\x29\x6a\xe9\xcd\xdb\xa3\xe6\x27\x65\xd3\xa4\x0b\xb9\x5b\x45\x4d\x89\x68\x13\xd1\x2c\xb2\x56\x33\xea\xad\xaa\x40\xb0\x92\xb8\xcd\x4c\x6a\xd5\xe7\x64\xe5\xb5\xcd\x3d\x0d\x19\x21\x83\xbf\xc4\xe9\x4d\xf6\x95\xe0\x6e\x66\x1f\x14\xbb\x62\x4b\xd2\x90\x84\x9f\xa9\x9f\x53\xd0\x32\x40\xe4\x7e\x9b\xd8\x92\x90\x3b\x12\xec\xa8\x7c\x26\xca\xdb\xa7\xb1\x26\x05\xad\xb8\xb0\xfc\x24\x27\x7e\x78\x6f\xe5\xbb\x34\x65\x55\x84\xa7\x38\x85\x80\xa1\x68\xa2\xbe\xbd\x33\xd9\x64\xac\x86\x70\x69\x43\x7e\xd3\xa6\x6a\xe7\x65\x0c\x57\xf3\x15\x8e\xa7\x53\xe5\x4a\x2a\xd5\x2b\x25\xec\x0f\xe5\x45\x78\x65\xfb\x28\x15\x37\x1c\xef\x65\x87\x31\x2e\xa0\x3a\x14\xb4\x8f\xf0\xb2\x64\x23\x50\x4b\xa7\xfa\x81\xa9\x20\xe1\x52\x49\xbf\xf1\x4e\x2b\x07\x62\x7a\xc0\xba\xbc\x50\x9a\xac\xc3\xd1\x80\x51\x8e\x8d\x89\x8b\x29\x4c\x53\xa7\x45\xde\xd8\x3c\x47\xdc\x78\xc6\xd9\x94\x6a\x6c\x4a\x1d\x71\x25\xd9\xfa\x04\x12\x35\xa6\x39\x36\x16\x47\x9a\x9b\xde\xcb\x65\xe6\x70\xaf\xce\xa5\x44\x6e\x27\x46\x37\x63\x41\x0e\xcf\x8c\xd1\x79\xd5\x34\xf8\x1e\x01\x28\xe1\x10\xef\x80\x9e\x14\x9c\xf1\x7c\xc4\xda\xf1\x44\x73\x65\x59\x41\x28\x91\xa7\xa0\xdd\x04\x81\x3a\x4a\x25\x19\x26\x96\x35\x11\xf3\x2f\x4b\x9b\xa0\x14\xf9\x10\xc5\x0d\xc7\x29\x3c\x98\xb0\x56\x18\x95\x4f\x97\x72\x6e\x88\x1d\xe9\x44\x87\x20\x81\xa5\x14\xca\xe4\x8d\x97\x4e\x45\xf8\xe5\x2b\x2f\x37\xf7\xe2\xaa\x16\xc9\xf4\xa6\xf6\xb5\xac\x7d\xdd\xb2\xd3\x70\x2e\xef\x38\xd5\x9e\x5a\x92\x45\x87\xe9\x0a\x85\x7b\xc2\x88\xe9\x2e\xbb\x45\xce\x25\x88\x0d\xca\x65\xc3\x75\xb3\xfd\xbb\x2a\x76\xba\x59\xd2\x88\x05\x89\x32\x43\xe8\x1d\xdb\x35\xbb\xd3\x8f\x79\xb6\x89\x0b\xf3\xf9\x8c\xb2\xbd\x7c\x54\x53\x0c\xcc\x50\x8c\xf4\xb6\xb9\xb7\xc9\x3c\x5d\x20\x82\x32\x68\x9c\xc2\x47\x18\xef\x8c\x53\x98\x07\xbb\xcf\x57\x28\xc0\x89\xd4\x06\x51\xcc\x6b\x57\x14\x8c\x40\x53\x35\x01\x02\x92\xd7\x06\x70\x26\xc7\xe6\xe4\xa4\xc8\x92\x1b\x62\x07\x8e\xcc\xeb\xe2\x6f\xa9\xdc\xa3\x88\xf0\xc1\x96\x10\x35\xb3\xe5\x2a\xa8\x7c\xe8\xb5\xda\xef\x6a\x57\x8e\x1f\x13\x14\xdb\x49\xab\x59\xb5\x44\xed\xd6\x4b\xdf\xde\x09\x5c\xe5\x00\x64\x50\x65\xa9\xaa\x02\xa6\x33\x2a\x7a\x8b\x51\x0c\xbd\xd8\x36\x9d\x16\x5d\xd5\xde\x30\xb5\x44\x6e\xae\x98\x0e\x7e\x45\x56\xde\xe3\x05\xc1\xdc\xe0\x14\xab\x0d\x46\xcd\x23\xa8\x6a\xcd\x11\x43\xa9\xf1\x32\x9a\x6a\x31\x19\x4a\x31\x9a\xae\x06\x15\xe1\x50\x4c\x69\x73\xb7\x8a\x16\x1a\xba\xe0\xfc\x55\x45\x76\x6f\x85\x19\xa9\x3d\x9d\x58\xbe\xf5\x82\x57\x7e\x61\x89\xb6\x80\x86\x56\x51\x8a\x7b\xe8\xde\x4e\x51\x35\x01\xd1\x07\xec\x24\x05\xb4\xc0\xa0\x73\x58\xb9\xa0\xd7\x1a\x10\x2b\xa6\x26\xfd\xa0\x48\x87\x59\x26\x0e\x40\x9b\xce\x39\xa6\xc8\x9b\x7d\x81\x33\xf5\x94\xad\xe8\x45\x79\xd3\xeb\x6d\x7e\x54\x41\xea\x49\x86\xb1\x35\x16\xe8\x65\x9e\xfd\x3c\xa8\x6a\x88\x8a\xd1\x69\x45\x84\xd4\x92\x1b\xad\xab\xf9\x0a\xd9\xbe\x56\x22\x98\xbd\x20\xba\xb8\x72\x5a\x39\x1d\x70\x99\x09\x1f\xba\xe2\xb6\x30\x99\x0f\x16\x10\x0d\xab\x1c\x83\x92\x24\xf3\xe1\x82\x8d\x50\x12\x8a\x98\xcc\x47\x0b\xd8\x12\x47\xc8\x07\xf5\xaa\xff\xcf\xa6\x6f\xaa\x8a\xc2\x3b\x1c\xf6\xe5\x94\x4a\x4e\x5c\x9d\xdf\x52\xbe\xce\xc1\x80\xcc\xd2\x66\xac\xac\x6b\x1d\xfb\xb1\xea\x16\xcf\xd5\xdc\x04\xfb\x5c\x2e\x50\xe5\x02\xea\x2b\x1f\xa4\x1c\x2a\x17\xe5\xd8\x8c\xab\xd4\x0d\x7e\x90\xb2\x84\x6a\x9c\xf3\x98\x6f\x41\x5a\xe1\x99\xf4\xbd\x3b\x6d\x38\x5d\xa8\x1c\xef\xb2\x55\xaf\x0c\x47\x18\xb3\x2a\xfd\x45\x2a\xa3\x12\xb5\xdf\x8f\x07\x28\xc3\xc6\xf1\x2b\xa5\x5b\xfd\x7e\x5a\xd9\x80\x43\xfe\x74\x21\xfa\x44\x55\x1c\x3b\xaa\xce\x2a\x76\x40\xd3\x4a\x8e\x34\x6d\xe4\x2b\x49\x91\x96\x74\xd1\xb2\x7a\x14\xe7\xd8\x9c\x29\x05\x8c\x3d\xfb\xf4\x2e\x8d\xc3\xe9\xb2\x8a\x0d\x24\x6e\x77\x65\x75\xc8\xae\xf7\x23\x97\x5d\xcd\xff\xf9\xc7\x21\x58\xa2\xe1\x13\xbe\xea\x1f\x55\x84\x88\x9e\x54\x14\x0d\x9f\x54\x95\xd8\x6a\x45\x08\x9c\xda\xe3\x33\x28\x14\x4a\x85\x3e\xe9\xf8\x94\xd3\xd6\x4e\x2a\xde\xbf\x53\x7b\x7c\x0e\x79\xbc\x0b\x5f\x3d\xa7\x1d\x0e\xbe\xe3\x4f\x85\x35\x86\x8a\xb7\x27\xc3\xcf\xd9\xc2\x56\xb5\xc0\x81\x73\x99\xa5\xc5\x6e\x43\x72\x14\xe1\xc0\x51\xc1\x88\x51\x88\x83\x4a\x56\xb5\xad\x05\x50\xc7\x94\x6d\x14\x2e\x26\x8a\x53\x9a\x7c\xcc\xb3\x2d\x8f\x6f\x1e\x98\xe1\x3f\x00\xcb\x02\x9e\x8f\x22\xc6\x65\x57\xb1\xda\xc3\x2a\xb8\x78\xd4\xeb\x45\x68\x8b\x63\x87\xa4\x3c\x00\xaf\x1c\x1a\x5a\x57\xed\x6c\x0f\x87\x2d\xda\x60\x93\x64\xa9\x34\x29\xcc\xf8\x81\x76\x81\xf8\x29\x53\xc1\x50\x72\x12\xf1\xb4\x52\x90\xdd\x39\x01\xb4\x53\x25\x46\x50\x91\xc3\x83\x05\x4e\x8d\xe8\x42\xcd\x86\x89\xd4\x35\xb2\x73\xc7\x87\xc2\x51\x87\x8f\xf6\x39\x89\xbc\x70\x46\xd5\xcc\x08\x9b\x1b\xf7\xb0\x5d\x72\xff\x83\x1a\xb7\x37\xf5\x07\x93\x38\x65\x4d\xbd\x4d\x69\x62\x83\xbe\x6d\xdb\x29\x26\xb0\xfe\x72\x91\xb6\xe3\x81\xc3\x3e\x80\x00\xa2\x4d\x3b\xc8\x20\x41\x89\x1d\x0a\xbf\x91\x12\xbe\x4d\x9d\xa4\x07\x26\xb5\x69\x4e\x8a\xa0\x7d\x6d\x2a\x54\xcc\xc3\xdb\x70\xda\x0f\x0d\x9f\xd0\x19\x32\xcd\xec\x05\xdb\xd1\x15\xb6\xff\xcb\x97\x4f\x57\x17\x97\xd7\x5f\x5e\x5f\xfd\xfd\xfa\xc3\x87\xef\x3f\x7f\xf9\xcb\xf7\x1f\xbe\xbb\xf8\xfe\xcb\x5f\x3f\x7c\xf8\xdb\x97\x2f\x75\x6f\x18\xcf\xab\xe3\x04\x6b\x12\x7c\x7d\x7d\x79\x05\xf7\x2e\xb7\xd9\x7a\x66\xf1\x9a\xa9\x56\xdd\x0a\x95\xfb\xc6\xb1\x61\xfd\x29\x76\xe2\xb2\xd3\x60\xd2\x0e\xb3\xd0\x65\x42\x68\x9f\x9c\x8a\x8d\x7a\x26\x36\xea\xc8\x1d\x88\x48\x47\xa7\x6c\x9f\xce\xc1\x1d\x8f\x80\xbf\x01\x08\x6c\x42\x80\x40\xb2\x02\x08\xdc\x25\xc0\x88\xd9\x95\x98\xf7\x93\x78\x0c\x40\x69\xb5\x2b\xe8\x6c\x7f\x57\x78\x2e\x2a\x36\xde\x89\xeb\xa2\x4d\xe8\x9d\x9f\xb8\x28\x59\x79\x83\xe1\x99\x8b\xee\x12\x6f\x70\x3e\x74\x4b\x8f\x72\x8b\xc0\x5d\x1a\x53\xd3\x41\x63\x3e\x03\xdb\x3b\xe0\xe5\x28\xc1\xc4\x29\x28\xd9\xd6\xa3\xf1\x4c\x78\x34\x1e\xad\x1a\xe2\x43\x9b\xa0\x39\x10\x63\x00\x08\xb0\xd6\x78\xfc\x7e\xb2\x05\x0b\x43\x9d\xdd\xb8\xa9\xda\xda\xcf\xe9\x9c\x2c\x66\xec\x1f\x4f\x5b\x11\xff\x79\x43\xc2\xd8\xb7\xec\x4d\x9c\x1e\xdf\xc6\x21\x5d\x7b\x40\xf9\xb9\xa3\x50\xfd\x8a\x11\x43\xfc\x86\x97\x61\x25\x20\xd8\xe9\x67\xf8\xca\xda\x31\xc7\x8c\x25\x50\x72\x9f\x19\x1b\x94\xf7\x58\x57\x8f\x0e\xb5\x36\x0c\xcb\x4f\x43\x8b\xed\x44\x7b\xe3\xdf\x35\x9b\xb1\x8f\x07\x47\x18\xe7\x95\x96\xb8\xd9\xde\x6e\x9e\xf7\x07\x0b\xd6\xa8\xfc\xe5\x51\x78\x1c\xbc\x1c\xb8\x6e\x73\x9e\x75\xb5\x1c\x9f\xef\xcc\xaf\xe4\xbe\xf0\x76\x42\xe1\xb5\xf0\x52\xb4\xdb\x7a\x11\x0a\xb3\xdb\xfa\xa3\x83\x00\x7c\x05\x11\x02\xfb\x03\x94\x63\xd6\x25\x5d\x68\x25\x44\x6a\x40\x67\x16\xd9\x0c\x0f\x4d\xf0\x74\xcc\xab\x3d\x9f\xbc\xd7\xa3\xdf\xba\xb3\xdc\x23\x0f\x4c\x02\x2d\x09\xbd\x25\x24\xf5\x42\x94\xa5\xc9\x7d\x97\x7d\x3e\x5b\x46\x02\x4b\x24\x7a\xeb\x28\xc0\xe0\x5f\x96\x35\x8a\x31\x30\xa5\x43\xd9\xb4\x0b\x54\xab\x1d\xa5\x24\x2f\xcc\xd7\x20\x41\xdd\xfc\x6a\x63\xf8\xce\x6e\xb6\x7e\x18\xc6\xe9\xea\x7b\x12\x51\x8f\xda\x43\x88\x64\xc2\x27\xee\x6b\x8f\xa5\x94\x28\x6d\x1d\xaf\xce\x6e\x6b\xb3\x3d\xaf\x1c\xc7\x74\x36\x36\x6a\x35\x36\x62\x8d\xcd\xab\xda\xdc\xe1\x39\xa2\x59\x96\x2c\xfd\xdc\xb3\x33\xbc\xdf\xc4\xe9\x5f\x85\x9b\xbf\xc9\x49\x59\xeb\x36\x43\x40\xaf\xa4\x68\x81\x2d\x38\x02\x1c\x95\xed\x2c\x8f\x49\x4a\x85\xcf\x06\x2b\xf1\xd3\xb0\x08\xfc\x2d\x61\xf7\x8c\xd1\xe4\xf8\x4c\xc7\xce\x50\x6d\x1a\x33\x31\x0a\x9e\x8c\x4b\x88\x32\x36\x58\xe1\x86\x92\x1d\x9a\xc3\xb3\x31\x44\x11\xde\x2f\x13\x6e\x8a\xf7\x07\xd7\x75\x01\xba\x5d\xc7\x94\x70\x55\xa0\x08\x94\x28\x54\x3a\x4c\x3e\xfb\x4f\xeb\x30\x4d\xd8\x7f\x5a\x87\x89\xff\x4f\xeb\x30\xb9\xec\x3f\xa5\xc3\xb4\x0c\xd9\x7f\x4a\x87\xe9\x9c\xb0\xff\x94\x0e\xd3\xe9\x84\xfd\xa7\x74\x98\x4e\x06\xec\x3f\xa5\xc3\x34\x1e\xb2\xff\xb4\x0a\xd8\x80\xfd\xa7\x75\x98\xc2\x09\xfb\x4f\xeb\x30\xf9\xfc\x7f\x5a\x87\x69\xe4\xb2\xff\xb4\x0e\x93\x6c\xb7\x44\x5b\xa5\xcd\x76\x46\xfc\xe8\x44\x6b\xb3\x4d\x02\x9f\x9c\xab\xa9\x9c\x47\xfe\x59\xa8\xd5\xb1\x4e\xcf\xcf\x4e\x82\xa5\x9a\xca\x24\x38\x59\x06\x5a\x1d\x6b\x14\x4d\x06\xcb\x89\x9a\xca\xe8\x7c\x7c\xee\x2f\xd5\x54\x46\xee\x28\x3a\xd7\xea\x58\xc3\xb3\xd1\xe4\x7c\xa4\xa6\x32\xf0\x87\xa3\x53\xa2\xa7\x72\x16\x9c\x93\x28\xd2\x53\x99\x8c\x4e\xc2\x88\x54\x53\x09\x27\x3e\xff\x54\xed\x8e\xa3\x88\x80\x12\xad\xd5\xaa\x04\x64\x4c\x02\xbd\x2a\x67\xcb\x65\xe8\xaa\xa9\x44\xe3\xb3\x68\x39\x50\x53\x89\xdc\x93\xe1\xf9\x50\x6b\x96\x05\x63\xf7\xd4\x57\x53\x21\xe7\x03\x72\x32\x52\x53\x09\xcf\x06\xcb\x13\x57\x4d\x25\x18\x0e\xce\x26\x4b\x35\x15\x3f\x1c\x8c\x27\xa7\x6a\x2a\x67\x67\x2e\x19\x47\xa6\x66\x99\xcb\x60\xa0\x35\xcb\xc6\xee\xd9\xa0\xd2\x2c\x9b\xb8\x2e\xab\x2a\xa7\x12\x4c\x06\x83\x93\x21\x28\xd1\xe6\xbf\x8d\x92\x1c\xba\xd7\x53\x89\x46\x6c\x07\xa8\xb6\x88\xbb\xd4\x53\x89\xa2\x20\x60\x2d\xcb\x55\x89\x96\xa7\xe3\x50\x4d\x25\x8a\xfc\xd3\xe1\x89\x9e\x4a\x74\x7e\xc6\xf6\xa3\x98\x4a\xb4\x3c\x0b\x5c\xbd\x2a\xd1\xe4\x94\x7f\x9d\x49\x10\x9c\xf0\x2f\x31\x15\x72\x32\x19\xb0\x2f\x3d\x95\x70\x50\x9b\x8a\xbf\x1c\xbb\xc6\x54\xce\x45\x61\xd9\x6e\x74\x12\xf2\xa9\xac\xd4\x5e\x19\x45\xc3\x28\x54\x53\x59\x2e\x43\x12\x2d\xf5\x5e\x71\x03\x3f\x3a\x57\x53\x39\x19\x2f\x27\x6c\x57\x8d\xe5\xf6\xf5\xf9\x01\x31\x91\xdb\xf7\xfc\x24\xd2\x08\x36\x20\x67\x67\x44\xaf\xca\xe0\xfc\xf4\x84\xad\xb4\x98\xca\x60\x72\x32\x09\xf4\x54\xdc\x70\x7c\xea\x57\xdb\xfe\x6c\xb8\x1c\x18\x7b\x65\x3c\x3e\xf3\xf9\xa7\xe8\x72\x78\x7e\x7a\xce\x3f\x4f\xe5\xe7\xc9\x90\x9f\x60\x37\x7a\xdb\x47\x13\xb6\xd1\xe5\xb6\x3f\x23\x27\x81\xde\xf6\xfe\x24\x3c\xf1\x4f\xd5\x54\xce\x06\xc1\xe9\xd9\x58\x4d\xe5\xe4\x64\xb9\x3c\xd1\x7b\x65\x1c\xf8\xd1\x44\xaf\xca\x78\xe4\xbb\xe3\x53\xbd\xed\xcf\xce\xc8\x28\xd0\xdb\x9e\x9c\x86\x23\x7d\x82\x0d\x96\x13\x32\xac\x56\x65\x79\x1e\x9d\x04\xbe\x9e\xca\xc9\x79\xe4\xfa\xd5\xb6\x77\x5d\x72\x72\x7a\xa2\xa7\xe2\xba\xc1\xd9\x64\x04\x4a\xb4\x64\xa4\xea\x09\x44\xb7\x78\xcf\x5d\x05\xed\xb7\x79\xbc\xf1\xf3\x7b\x0f\xe4\xab\xa5\x6f\xbb\xc8\x92\xff\x77\xce\x4e\x21\x40\xc2\x49\x5f\x67\xfe\x64\x0c\x01\x0a\xe3\xc2\x5f\x26\x24\x6c\x67\x8f\xce\x20\x40\xeb\x38\xa5\xdd\x59\x25\x0a\x63\xce\x83\xb6\xb3\x07\x43\x08\xd0\xd2\x0f\xbe\xae\xf2\x6c\x97\x86\xde\x7e\xeb\x6f\x49\xee\x45\x0e\xbf\x56\x90\x72\x70\x1e\xce\x27\xee\x42\x3b\xed\xd9\xb3\xbf\x37\xe4\x81\x61\xae\xb3\x9b\xae\x9e\x5c\x9d\xf7\x61\xeb\x07\x31\xbd\xf7\x1c\x77\x8c\x84\x2d\x4b\xd7\x9c\xdc\x33\x0e\x12\x91\x5d\x55\x39\x7b\x04\x0c\xc3\x13\x03\x4a\xdf\x55\x93\xea\x9e\xb5\x2a\xa8\xdb\x1e\x9d\xa1\x28\x0b\x76\xc5\x03\xe5\x79\x9e\x2e\x3c\x18\x72\x68\xdc\xf8\xe6\xe8\x06\xc3\xb2\x44\x77\xcd\xd5\x56\xc0\x6c\xae\xef\x70\x32\x41\x56\xf5\x8f\xeb\x9c\xb6\x17\xb9\x55\x66\x52\x5f\xe9\xce\xfc\x38\xc8\xd2\x47\xf2\x9b\xe8\xd0\x2a\xf3\x00\x52\x84\xf3\x33\xd7\x5d\x68\x9c\xd0\x37\x77\x0b\x2f\xd4\x84\x4d\x4c\x68\x75\xc2\xd7\xb7\x81\x0f\x67\x4d\x7c\x68\x0f\xed\xa4\x0b\x2b\x06\x27\x4f\xc2\x6d\xf4\x18\x6a\x74\x43\xe0\x29\x04\xe9\xae\xf5\x0c\x34\x19\x8e\xcb\x72\x5a\x7f\x27\x30\xdf\x86\x73\x87\x7b\x4c\x3f\x1c\x72\x14\xe3\xdc\x09\xfd\xfc\xeb\xe1\x30\x70\x26\xdf\xe4\x53\x32\xa7\x8b\xc3\xc1\x26\xcd\xe0\x4b\x29\x9c\x11\xe1\x4d\x32\x5d\x78\x80\x57\xe7\x2c\xc6\x8c\x88\xb6\x14\xfb\xb9\x74\x42\x68\x13\x67\xe3\xc7\x29\xca\xa0\x07\x58\xdb\xbc\x20\xd7\xcf\x65\x5f\x55\x49\x5f\x97\x8c\x6b\x31\x6f\xbe\x9a\xac\xb4\xc4\xf1\x06\x2f\xcd\xfb\xf4\xb6\xf3\x11\xc3\x17\xd6\x84\xb7\x9d\x4f\x38\xee\xf8\xf9\x57\x6f\x3b\x3f\x75\xdd\x85\xe2\xa6\xf5\xae\x30\x83\xdd\xe6\xaa\x8d\xb5\xc3\x8e\x5c\xd1\xc6\xda\x61\xe7\xad\x68\x63\xed\xb0\xc3\xb6\x94\x4c\xb7\x70\xd9\x5f\xe3\xba\x65\xfd\x8d\x31\x86\x8d\x31\x86\x8d\x1c\x43\x82\xbe\x62\xe2\xdc\xfa\x79\x1a\xa7\x2b\xf4\xb9\x6a\xe1\xab\x6a\xe1\xde\x68\xe1\xde\x68\xe1\x5e\xb6\xf0\x15\x5d\xf3\x68\x20\x51\x86\x3e\x54\xd5\xaf\x55\xf5\x95\x51\x7d\x65\x54\x5f\xc9\xea\xd7\xe8\x92\x01\x61\x17\x04\xa4\x28\xd0\xc7\xaa\x85\x4b\xd5\xc2\x8d\xd1\xc2\x8d\xd1\xc2\x8d\x6c\xe1\x12\x7d\x91\x4a\x28\xe8\xe7\xaa\xfa\x97\x99\x44\x03\xef\x0b\xba\xe0\x32\xf9\x94\xe6\x7e\x41\xaf\xd7\x39\x29\xd6\x59\x12\xa2\xf7\x55\xe1\x8b\xd9\xc8\xbb\x40\x9f\x78\x34\xb3\xd4\x4f\x3e\x70\x53\x3e\xf4\xb6\x2a\xf0\x69\xe6\x0c\xbd\x4f\xe8\x4d\x4b\x8c\x21\xd7\x1f\x20\xa0\xd7\x11\x28\xaf\xf7\x08\x48\xb8\xf2\x40\xd5\x51\xc6\x0a\x89\x79\x02\x04\xd8\x78\x01\x02\xad\x61\xb1\xac\x6a\x0c\x35\x89\xc8\xbb\x96\xaa\xb1\xbd\x74\x02\x36\x8e\x3b\x1e\xb9\x44\x21\x23\xfc\x16\xbf\x9f\xd5\x93\xbc\xdb\xda\x27\xe7\xa8\x5e\x77\xa8\xaf\xb6\x18\xdb\x41\x27\x63\x3b\x30\x19\xdb\xc1\xc2\x9b\xb8\x2e\xea\xe0\x8a\x87\x9d\x95\x87\x66\xe5\xe1\xc2\x1b\xb9\x2e\xca\xdb\x95\x47\x9d\x95\x47\x66\xe5\xd1\xc2\x3b\x75\x5d\x61\x02\xab\xb4\xa1\x25\x1b\x5c\x22\xc2\x7d\x41\xc5\x69\xaf\xc7\x4e\x06\xbe\xbf\xd9\x27\x77\x38\x0b\xd1\x91\xf8\x6a\xe9\x76\xc8\x46\x0a\xd6\xc8\x98\x87\x36\xeb\x76\x13\xf5\x74\xed\x09\xfa\x7f\x3e\x7f\x78\xef\x88\xaa\x71\x74\x2f\xfb\x87\x95\x0a\x34\x3b\xf8\x24\x92\xa2\x14\xbd\x85\xfc\x8d\x52\x1c\x49\x28\x67\xdf\x06\xd6\x92\x3b\xca\xcf\x3d\x33\x01\xbf\xd3\x6d\x22\x52\xa2\xef\xf1\x9e\xef\x8b\x3b\x24\xf6\xcd\x6d\x53\xda\x10\xb3\x61\xd5\xa0\x14\x64\x9b\x4d\x96\x7a\x11\xe2\x1a\x03\x3f\x23\x85\x2d\xaf\xb9\x72\x94\xbe\xae\x5f\xdb\x3b\x04\xd8\xd9\x03\x10\x60\xc7\x11\xfb\x73\xea\xba\x00\x4a\xe7\x83\xaf\xed\x00\x22\x89\xeb\xde\x6b\xfb\x33\x44\x0c\xdd\xbd\xd7\xf6\x07\x88\x24\xc6\x7b\xaf\xed\x8f\x10\xad\x72\x72\xef\x85\xa8\x85\xf4\xde\x7b\xb4\x22\xf4\xd2\x98\x9b\xf7\x0e\xf9\xbb\x15\x5b\xe6\x4b\xee\x74\xf2\x35\x32\x76\x85\xf7\xb6\x44\xdf\xcf\x7f\x5e\x40\xf4\xa6\xf9\x04\x27\x67\xfc\xce\xa7\x6b\x87\xdf\x70\xf6\x80\x4c\xbe\x21\xf0\xe5\x80\x4c\x38\xd6\x5f\x0b\xea\x44\x3b\x7c\xf4\xc0\x6e\xbb\x25\x39\xf7\x13\x6a\x5c\x4a\x1f\xcc\xc7\xeb\x2e\x29\x32\x9d\x51\x9b\x40\x7e\x86\xa7\x4e\x94\xa5\xf4\x8d\xbf\x89\x93\xc6\x21\xfe\x02\x7c\xca\x96\x19\xcd\x00\xb2\xc0\x5f\x49\x72\x43\x68\xcc\xa8\x68\x0b\x5c\xe4\xb1\x9f\x00\x64\x15\x7e\x5a\x1c\x17\x24\x8f\xa3\x17\xfc\x28\x17\x4d\x7d\x8e\xff\x4d\xea\xa7\xf9\x60\xcc\x85\xa8\x22\xfb\x1f\x5c\x42\xf2\x3d\xfb\xa7\x1e\xd2\x9c\xb1\x03\x05\x0a\x6b\xc5\x3e\x91\xd5\x2e\xf1\x73\xb4\xad\x0a\x86\x33\x46\xb6\x87\x68\x5d\x2b\xf8\x8e\x84\xf1\x6e\x53\x0f\x59\xce\x78\x88\x35\xba\xaf\x95\xfb\x8e\x9d\x9d\xb5\x90\xe5\x8c\xea\xbf\x47\x37\x38\x75\xd6\x74\x93\xbc\x51\x13\xa8\x85\x2b\x1f\x9c\xf0\x78\xe5\xa9\xe3\x27\xc9\xdf\xfd\x3c\xf6\x53\x5a\xa0\x3b\x9c\x3a\xdb\xbb\xeb\xec\x13\xd9\xe8\xc8\x7a\xe2\x68\x4d\xd1\x1c\x54\x40\x05\x08\x28\xb0\xc8\x9f\x06\x08\x6a\x29\x72\xb6\xb5\x34\x31\xb1\x5a\xd2\x77\xe2\xa0\x35\x87\x0b\x10\x30\x86\x06\x10\x90\x03\x63\x27\xb0\x30\x4f\x0f\x5e\x0e\xc6\xe8\x03\xbe\x3b\x1c\xda\x02\x46\x43\x2e\xf6\x72\xf9\xcd\x57\x04\x72\xb2\x01\xb0\x44\x97\x2d\xc3\x08\xc3\xf2\xb5\xb6\x15\xab\xd9\x7a\x3b\x54\x8d\xd4\x23\x48\x4d\xdd\xfb\x60\x53\x88\x92\x38\x25\x52\x44\x96\x96\xe8\x97\x20\x18\xc6\x78\x37\xdb\x27\x84\x52\x92\x7f\x66\xa4\x58\xba\xf2\xaa\x71\x7f\xb6\xf3\x97\x14\x22\xc0\xc7\xed\xed\x4b\x94\xa1\x5b\x58\xa2\x8f\x78\xbf\x1e\x78\x97\x76\x84\xce\x4f\xd0\xc0\x19\x9c\x9c\xa2\xe3\x81\x33\x81\x68\x3d\xe4\xa9\x27\x2e\x1a\x38\x43\x74\xcc\x93\x46\xde\xa5\xbd\x45\xe3\x33\x59\xd0\x85\x68\x3d\xe6\x49\xa3\x31\x2b\x35\x9a\x20\x67\xc8\xca\x4d\x78\xe2\x90\x25\x8e\x46\x63\x5e\xee\xc4\xbb\xb4\x37\x68\xc8\x5a\x3b\x41\xce\x60\xc2\x0e\x8e\x25\xf7\xb5\x3a\xe0\x85\x07\xac\xf7\xd3\x49\x3d\x6b\xc8\x2b\x0d\x58\x3b\x93\x53\xe4\x0c\x20\x5a\x66\xe1\xbd\x51\x41\x96\x67\xa9\x43\x91\xca\xca\x8e\x47\x32\x79\x47\x69\x96\x56\x6d\xb0\xe6\xc7\xe8\x1a\xa2\xc0\x17\x5a\xf8\xbc\xc6\x90\x0d\xe9\x04\x39\x63\x88\x18\xb1\xce\xe0\xaf\x32\x86\x2c\x63\x80\xae\xe1\xd3\x27\xad\x89\x6a\xde\x12\x49\xe4\xf2\x3e\x20\x41\x86\x7f\x46\xad\xf5\xe7\x25\x03\xd4\xc0\x76\x2f\x42\x2d\x6c\xf7\xb6\xa8\x89\xed\xde\x06\xd5\xb1\xdd\x5b\x95\xe8\x23\x44\x57\x68\x1f\x24\xfc\x89\x7b\x60\x06\x22\xae\x5e\xc3\xe7\x15\x46\x34\x6f\xe4\x57\xd8\x55\xae\xa3\x4c\xa9\x36\xdb\x29\x16\x80\x0f\xd7\x1a\xb4\x6b\x0d\x9e\xae\x35\x6c\xd7\x1a\x3e\x5d\x6b\xd4\xae\x35\x12\xb5\x24\x4b\xcb\xfe\xab\x1a\x70\x86\xfc\x89\x01\x3d\x36\xe9\x71\xbb\xc9\xf1\xd3\x03\x99\xb4\x6b\x4d\x9e\xae\x75\xd2\xae\x75\xf2\x74\xad\xd3\x76\xad\xd3\xc7\x26\x3d\x18\x3f\x3d\xeb\xb3\x76\x9b\x67\x4f\x8f\xe4\xbc\x5d\xeb\xfc\x19\x08\xd2\x81\x57\x83\xe7\x20\x56\x17\x66\x0d\x1e\x9d\xb9\x58\xef\x85\x74\x17\x8a\x80\x78\x5b\xf8\x88\xe7\x20\xcd\x52\x02\xd0\xa5\xed\xa2\x21\x1a\xa0\xe3\x01\x72\xd1\x00\x0d\x78\x03\x03\x34\x62\x67\x14\xcb\x1b\xb1\xbc\x21\x62\x85\x86\x32\x6f\x52\xe5\x8d\x44\xde\x08\x8d\x65\xde\x99\xca\x1b\xa2\xb1\x68\x73\xcc\xca\x8b\xb6\xdd\xaa\xe2\x44\x64\x4e\x58\x05\x91\x39\x6e\x65\x9e\xf0\x1a\x22\x57\xb7\xcb\x9a\xe3\x7d\x9e\xb2\xdc\x01\x1f\x18\x3b\xf9\x44\xee\x84\xe5\x8e\x90\x8b\xce\x54\xee\x88\xb5\x3c\x54\xb9\x27\x22\xf7\x9c\x1f\x72\x22\xf7\x44\xe5\x9e\xa8\x5c\x56\x73\x8c\xc4\xd8\x07\x67\x68\xa4\xb2\x4f\xd1\x31\x9b\xe6\x60\x80\x06\x13\x99\x3d\x74\x55\xf6\x29\x3a\x93\xd9\x43\x34\x38\xe5\xb0\x9a\xa0\xe1\x10\x8d\x9b\xd9\x23\x34\x38\x57\xd9\xe3\x2a\xfb\x5c\x66\x8f\xd1\x70\xa0\xb2\x4f\x54\xf6\x19\xcb\x66\x60\x1c\xf0\x36\x87\x1c\x38\xc3\x33\x34\x51\xd9\x03\x57\xe6\x9f\xb0\x46\x45\xfe\xc8\x35\xf2\x07\x32\xff\x94\xb5\x2a\xf3\x87\x2a\xff\xbc\xca\x3f\x63\xcd\x0a\xf0\x8e\xc6\xe8\x44\xe7\x0f\xd1\xf1\x09\xcb\x3f\x47\xc3\x73\x95\x7f\xa2\xf2\x07\x7c\x5a\xbc\x00\x03\x08\xc7\x1e\x74\x86\x46\x67\xe8\xb4\x5d\x60\x80\x46\x23\x59\x60\xec\x9a\x05\xc6\xb2\xc0\x10\x8d\x26\xaa\xc0\x50\x17\xe0\x18\x72\x7c\xca\x0a\x8c\x58\xd7\x62\x19\xc7\x63\x74\x56\x15\x98\xc8\x02\x63\xd6\xb5\x2c\x70\x82\xce\xe0\x02\x7d\xc1\xfb\x65\x96\x87\x24\xff\xe4\x87\xf1\xae\xf0\xc6\x06\xe1\xfb\xb3\x20\x7c\xa5\xe7\x40\x7a\x38\xd0\x6f\xb5\x72\x17\xb7\x99\xad\xc2\x79\x54\x16\x42\x8c\x81\x33\xe2\xbf\xc0\x69\xfa\x8a\x72\x17\xbd\xf9\x3c\x15\x42\x19\xfd\x9e\x5e\x5d\x3a\x17\xda\xf0\xa5\xee\x8c\xd7\xd0\x37\x53\x2a\x61\x62\x50\x0f\x58\x8a\xb7\x42\xc7\x4b\xfb\xbe\x33\x74\x3c\xd0\x81\xec\x3f\x68\x9d\xad\xb4\x61\x12\xdc\xeb\xd9\x29\xae\xa5\x08\x4b\x5f\x04\xde\xf9\x3c\xd6\x79\x7a\x38\x80\xcf\x44\xd4\x9d\xd5\x22\x93\x78\xe0\x42\x1d\x3c\xb2\xe0\xcb\xff\x65\xcf\xbc\x1f\xe2\xc3\x5b\x98\x52\x7b\xe6\x9d\x1d\x06\x27\x87\xd1\x10\xda\x33\xef\x32\xf1\x37\x5b\x12\x42\xd1\xc2\x1f\x65\xbc\xfa\x14\xce\xc4\xdc\x94\xeb\xf5\x0a\x3c\xef\x1f\x08\xb9\xd3\x1d\x79\xc5\xf4\x78\x6b\x12\xa8\xca\xb4\xa8\x4b\x79\x46\xc5\x7f\x69\x44\x9d\xb1\x62\x4d\xc7\x10\xad\xcf\x37\x5f\xa0\x1c\x1f\xb9\x28\xc3\x47\x03\xad\xfb\xc1\xf5\x63\x14\x16\xf8\x68\x87\xc9\xbc\xd1\xd6\xc2\x86\xd3\x23\x3b\xc7\xb6\x8f\x77\xd2\x48\x17\x0a\x43\x46\x06\x76\xa1\x46\xe9\x0b\x7d\x14\x88\x8e\xe8\xe1\x90\x4a\xec\xe2\x01\xca\xa7\xac\x4b\x38\x95\x7a\x35\x09\xdc\x67\x6c\x08\x31\x4e\x4a\xa9\xb0\x29\x74\xe4\x0f\x07\x81\xac\x3b\xa9\x0c\x7c\x38\xa8\x5f\x36\xd4\x25\xe3\xc8\xd6\x66\x17\xda\x2f\x53\xca\x35\xf0\x29\x3c\x1c\x2e\xe4\xdf\x9a\xe1\x67\x87\x23\x68\xe5\xa0\x46\x9a\xda\x58\x34\xb3\x42\x22\x10\x67\x97\x13\x2b\xcd\xd2\x63\x3e\x77\xe1\x3a\x4b\x18\xb5\x38\x3f\xa6\x6f\x53\x8b\x6f\x38\xe9\x32\x5a\x15\x41\xbc\x82\xcf\x16\x51\xaa\xb9\x16\xc2\x63\xcc\xda\xbf\x21\x96\x6f\x75\x80\x53\xaa\x15\x3b\x00\x96\xb6\x41\xc1\x7d\xaa\x78\x11\xfb\xd3\x23\x6e\x12\xcc\xa0\x43\xbf\x53\xd4\xa1\xff\x70\xd8\x21\xc8\xdd\x47\xdb\x27\x62\xfb\xbf\xed\x8e\x48\x45\x67\x26\xe5\xcd\x58\x2d\x83\xce\xf5\x48\x89\xde\xe0\xe7\x28\x38\xa1\x77\x58\xe8\xc7\x3c\xac\x52\xc5\xf5\x65\xda\xfc\xdf\x23\x2a\x41\x6f\xe6\x84\xd3\x24\x10\x40\x19\x22\xed\x35\xde\x6f\x3c\xb0\xf1\xf3\x55\x9c\x02\xb4\xf5\x80\xd4\xd1\x00\x5c\x88\x43\x3d\x70\x9d\x6d\x01\xca\x3d\xf0\x49\x30\xb8\x4b\x0f\x7c\x97\x51\x9a\x6d\x00\x4a\x3c\xf0\x3d\x89\x28\x40\x77\xde\x5c\xfe\x92\xa5\x16\xe8\xde\x9b\x8b\x9a\xaa\xf4\xa2\x44\xff\xc6\x7b\xd1\xcf\xff\xf4\xc0\xe6\x0e\x20\xf1\xf1\x4f\x0f\x6c\xee\x81\x52\x0d\xf9\x9f\x1e\xd8\xde\xe9\xaf\x7f\x7a\x60\x7b\x0f\x4a\xf4\x43\x87\x78\xb0\x52\x60\x31\x95\x22\x65\x52\x25\x00\x9f\xa7\x0b\x76\x55\xf0\xb3\xdf\x4e\x21\x44\xec\x67\x59\xd6\x4d\x12\xb8\x1a\xbf\x12\x14\x0a\x6f\x75\xff\x9e\x93\x85\x72\x34\x4a\x16\x53\x82\x59\x42\x29\xba\x7e\x6f\x13\xa7\xd8\x26\x31\xb5\x01\x80\x8c\x48\x49\x31\x65\xdc\x47\x8e\x29\x63\x27\x32\xfc\x7a\x9e\x2e\x50\x8c\xbf\x9f\xe7\x8b\xc3\x01\x80\xba\xbb\x7a\x75\x52\xc6\x70\x16\x3f\xe8\x6f\x30\xeb\x93\x12\x42\x6f\x9e\xf5\xe3\x45\x09\x21\xfa\x07\x9e\x03\x8e\x00\x0c\xc8\x9b\x9c\xfd\xb3\x64\xff\x24\xec\x9f\x3b\xf6\xcf\x3d\x40\x80\xc1\x7b\xcb\x4a\x6c\x59\x89\x2d\x2b\xb1\x4d\xb8\xfc\x80\xfd\xc3\x4a\xa8\x85\x96\x3f\xc4\x12\x89\xdf\x72\x81\xe5\x97\x5a\x64\xf9\x29\x97\x57\xae\x9f\xfe\xf5\x4f\xd6\xae\x44\x18\xfd\x4b\x34\x6a\xea\xfa\x54\x9f\xba\x59\x43\x37\xa8\xfa\xfa\x9f\xd5\xcf\x7f\x9a\x1a\x83\x7f\x34\x9f\x39\x0a\x21\x2f\x38\x1c\xce\xd4\x85\xda\xd2\xe3\xa2\x9d\xe7\xc6\x37\xa4\xf4\xea\x4b\x40\x61\x67\x41\xb6\xd2\xde\x03\x82\x36\x53\x01\xcb\xb8\x21\xff\xde\x7d\x43\x9a\xce\xb0\x3a\xdc\xea\x19\xae\xbb\xe6\xf9\x02\xb7\xaf\xca\x16\x19\x52\x29\xc8\xab\x18\x09\x36\x97\x2f\xfa\xcb\xc2\xa6\x95\x38\x97\x7e\x8b\xdd\x59\xea\x75\x68\xec\xcd\x8e\x53\x0f\x1c\xeb\x03\x21\x85\x25\x37\xdc\xe2\xee\xf8\xf6\xa5\x69\x33\xf3\x5d\x05\xf4\x3f\xda\xc4\xa1\x6b\xb2\x21\xb0\x2e\x5c\x10\x8e\xce\x48\xd3\x6d\xa6\xb0\x9f\x39\x1e\x60\x8c\xff\xa1\xb5\xf6\x2a\xa5\x7a\x76\x43\x4a\x6d\xd2\xbf\xdb\x3f\xd8\x29\x44\x14\xa2\xac\x46\x9a\x35\x15\x51\x5b\x64\x06\x85\x95\x0b\x67\x3e\x32\x87\x5b\x23\x6f\xb3\x38\xa5\xc5\xe1\xf0\xce\x74\x70\xd1\x02\x3b\x37\xae\xac\x00\xef\xec\xb6\x76\xce\xa7\x32\x8f\x17\x70\x81\x53\x9b\xb2\x1f\x1a\x24\x6c\x21\x2a\x3d\xfb\x4f\xba\xef\xec\x89\xbe\x4d\x18\x51\xf8\xd4\xfa\x67\x7c\x18\xb2\xfb\xdc\xe8\x5e\x1b\xcb\x53\x58\xf2\xc1\xf3\x78\x67\xaa\xb9\xb7\xbc\xcc\x77\xec\xda\xda\x32\xda\x80\x3b\xe5\xf9\xce\x89\xe2\x84\x92\xfc\x63\x9e\x6d\x0b\xfc\x8f\x6a\x23\xfd\xf5\xb7\xc6\xd0\x39\x13\x51\x5b\x37\xbb\xb8\x32\xbd\x50\x38\xb2\x97\x3b\xd3\x63\x23\x4f\x4d\xf7\x25\x8a\x2e\x6b\x77\x8b\x52\x83\x58\x27\x50\xc6\x4d\x23\x3c\x6e\x5a\xca\xf6\x44\xd5\x7b\xae\xb1\x43\x38\x9b\x94\xaa\x9e\xd4\x1e\x40\x6f\x50\x4f\x49\xe7\xee\x02\x7a\x69\xfb\x74\x7d\x9c\xb4\x27\x72\x4f\x51\x5b\x23\x7a\xd7\x0e\xaa\x64\x15\x29\x3f\x5a\xa1\x97\xb2\x05\xa9\xa2\xac\x37\x10\xa0\xe1\x0a\x2d\x55\x7a\xc6\xfb\x15\xa1\x1d\xb1\xb8\x48\xc9\xc0\xc7\x40\x2c\x5c\xa6\xb0\x31\xfd\x0b\xef\x89\x5f\x90\xb7\xe9\x87\x1d\xf5\x40\xb0\x5b\xc6\xc1\xf1\x92\xfc\x3b\x26\xb9\xed\x3a\x63\xa5\x72\x81\xac\x01\x04\x88\x15\xec\x2a\xe6\xb6\x8b\xbd\x4d\x1f\x68\x6c\x20\xca\x14\x6b\x3f\xdf\x3e\xd8\xdf\x09\x2f\x54\xa2\xff\x81\xf7\xc5\x3a\xcb\x19\x13\xe1\x0d\x26\x2e\x12\x1f\xb9\x37\x74\xe5\x6f\x6f\x38\xe1\xa1\xb2\xd2\xd0\xcf\x43\xfe\xc6\x26\xec\x8c\xee\xbc\xd1\xe9\x04\x91\x94\x12\xb6\x22\x9f\x83\x9c\x90\xd4\x1b\x0e\x27\x28\x21\xfe\x4d\x95\x32\x38\x9f\x18\x4c\xe1\xdf\xba\x24\xdd\xc6\x1b\x0b\xe3\x96\x36\x85\x94\xa6\xfc\x85\xc3\x8d\xe1\xe4\xbf\xaa\x20\x5e\xff\x03\x09\x73\x81\xa6\x2e\xed\xaf\xde\x14\x73\xe0\x27\x8c\x1c\xfb\xd5\x6f\x96\xfb\x92\xc7\x73\x56\x23\x44\x79\xf5\x5c\x91\xce\xfe\x87\xa3\x41\xc7\xcd\x53\x1c\x31\x23\xe4\x57\x85\xe2\xd9\xbf\x9c\x0a\x3f\x62\x11\xcb\x99\x24\xfe\x3d\x4a\xaa\x42\xbb\x99\xeb\xed\xa6\xe6\xcb\x06\x45\x73\xa0\xfa\x04\x08\x88\x76\x01\x02\xbc\x2a\xd0\xd6\xec\x2d\x0e\x6f\x46\x3c\x46\x1d\x3d\x44\xbc\x18\x0f\x10\x3c\x98\x8c\xd6\x47\x6f\xed\xbc\x7c\x96\x7b\x7f\xb3\x73\x58\x2b\xe6\x3f\x51\x29\x99\x25\xde\xdf\xec\x84\x5b\x70\x18\xc2\x33\xb4\x22\xf4\x62\x47\x33\xf1\x20\xf1\x5a\x2d\x76\x63\xf7\x1f\xe9\xcd\xee\xca\x73\x8b\xbc\x1c\x9d\x4c\x3b\x9e\xea\xdc\x6f\xec\x71\x7f\x30\xf9\x86\xa7\x6d\xb3\x5b\x9b\xf2\x17\x83\x3e\x7d\x39\xe1\x21\x97\xfe\x89\xf7\x9b\x6c\x19\x27\xe4\x33\x25\xdb\x2d\xc9\xbd\x01\x19\xa1\x62\x4b\x48\xf8\x3a\xf6\x13\x6f\xe0\x4e\x5c\xe4\x6f\xb7\xdf\xf9\xb9\x37\x18\xb8\x2e\x0a\x73\xff\x96\x95\xe2\x2a\x14\x59\xc8\x8a\xb0\x9d\x50\xa4\x7e\xf0\x75\xc9\x0a\x8d\x5d\x97\xeb\x3e\xd3\x78\xcb\xb6\x91\x5b\x4e\xa9\xe3\x3f\xef\x14\xfd\x65\x01\xd0\x8c\xdb\xaa\xa1\x2b\xa2\xf4\x40\x36\xf1\x5d\x9c\x16\x26\x86\xe5\x2c\x33\x67\x6c\xb5\xb3\xf5\xf9\xbb\x0d\x2a\x4c\xd4\xda\x97\xde\x0e\x45\x15\x75\x86\x42\xa1\x07\x91\xad\x72\x7f\xbb\xbe\xaf\x3f\xf9\xed\x4b\xfe\xe2\xd7\xd4\x5f\x30\xc6\xc5\x08\x4c\x3e\x06\x4e\x10\xf2\xfe\x18\x0b\x24\xda\x16\x1a\x0b\xb2\x65\xb0\x80\x68\x83\xbf\xda\x05\x44\xf7\x38\x61\xc4\xc4\x0a\xff\xd5\x8e\x20\xba\xc1\x26\x1b\xb6\x37\x1a\xf7\xee\x51\x18\xe7\x44\xe8\x49\x81\x84\xe6\x00\x89\xce\xbc\xc0\xbe\x47\x2b\xe4\x8b\xd7\x95\x3c\x0e\x49\xc1\x60\x26\x07\xe0\x6d\x10\xbb\x64\x79\x52\xb1\xf6\xc3\xec\xb6\xf0\x3e\xa2\x6a\x24\xde\x07\x7b\x83\xb6\x10\xa9\x5b\x70\xc5\x4a\x6d\x89\xf7\x45\x84\xb5\x8b\x29\xf7\x8b\xfe\x17\xf4\xef\xb7\x8c\x22\xf2\xfe\x59\xa2\x35\x44\xcb\xf6\x8d\x78\x6b\xdc\x88\xcb\x6f\x07\xb3\xe5\xf1\xc0\x73\x21\xba\xc3\x83\xe9\xdd\xab\xe5\xf4\xae\xdf\x87\xb7\xf3\xbb\xe3\x81\x79\x37\xde\xe9\xbb\xf1\x06\xdf\x3e\xe0\xc0\xb9\xe3\x59\x88\xa5\x97\x10\xdd\x08\x23\xa8\x27\xe2\x46\x68\xfb\x1f\x61\xa8\xe7\xa4\x76\x0e\x9f\x76\xa7\x3c\xfd\x2e\xcb\x12\xe2\xa7\x36\xe0\x81\x32\xd6\x59\xc1\xa9\x28\x11\xeb\xd6\x61\x69\xac\x8e\xc3\xd2\xa5\x69\xd8\xdc\xf3\x06\x8b\xc7\xcb\x3c\x94\x23\x03\x6e\xbd\xfc\x5f\x83\xe1\xa9\x3d\xf3\x7e\x74\xec\x99\x37\x9c\xcc\xdd\xe3\xc9\xe2\x30\x9c\xbb\xc7\xe3\xc5\xdc\x3d\x3e\x5f\x1c\xe6\xee\x60\x31\xe3\x3f\xf9\x3f\x33\x08\xf7\xa3\xf2\x8f\x2f\x61\x2d\xb8\x99\x61\x5e\xe6\x0b\xcf\x72\xf5\xc3\x8e\x1b\x91\x4e\xa1\x8c\x48\x4a\x84\x63\x32\x69\x96\xca\x03\x93\x5a\xae\xc7\xd5\x41\x40\x41\xf2\x9b\x38\x20\xff\xc8\xf2\xaf\x24\x07\x71\x6a\xa5\xfe\x4d\xbc\xf2\x69\x96\x43\xb8\x17\x35\xf0\x50\xba\x13\xd2\xec\x42\xcb\xeb\x84\xaa\xe3\xd4\x9a\x73\xb8\xc7\x8f\x0e\x33\x7b\xe2\xec\xd2\x9c\xac\xe2\x82\x92\x9c\xbb\xa3\x83\x3c\x00\xa9\x35\x14\x81\x4a\x49\x1a\x02\x4f\x77\x56\xd0\x6c\x6b\x0b\x37\x08\x0c\x13\x9e\xf0\x90\xab\x30\x61\x38\x19\x09\x53\xb0\xc1\xe9\x09\x37\x06\x73\x52\x3b\x83\xc8\x57\x5a\xc3\x93\xe8\xb4\x52\x80\x0e\x82\xc8\x8d\xb4\xeb\xdb\xf3\x73\x32\x30\x14\xa0\x4f\xc2\x41\xa5\x00\x3d\x1a\x05\xc3\x68\xa4\xb4\x86\x5d\x77\x39\x8a\xb4\xd6\xf0\x60\xec\x9f\x13\xad\x35\x3c\x20\xe7\x67\xe1\xa9\x56\x80\x3e\x3b\x0b\x82\xb3\x4a\x01\xfa\x74\xbc\x3c\xd1\x5a\xc3\xe7\x27\xe4\xcc\x50\x80\x3e\x09\x43\x53\x01\x7a\x72\x12\x2c\x0d\x05\xe8\xf1\x99\x1f\x44\x2e\x28\xb9\xe1\xe9\xe0\xf4\x14\x72\x75\x88\xd4\xde\x41\x14\x60\x1f\x15\x38\x76\x7c\x14\xe1\xc4\xf1\x91\xf2\x6c\x29\x8d\x61\xd4\x59\xa1\x15\x4e\x03\x43\x77\xa5\x50\x01\x32\x3b\xb4\x4e\x86\xce\xb8\xa6\x56\xe2\x0c\x4b\xf3\x6c\xd9\xef\x0a\xf2\x9e\xdc\x51\xa5\x14\xe0\x1d\xb9\xea\xcd\xb8\xa9\x43\x22\x5e\x8f\xf4\xb3\x2d\x18\xe4\x64\x03\xca\xb2\x7c\x62\xb3\x6a\x63\xdc\x2d\x0e\x4b\x34\x7c\x5e\x94\xb2\xa7\xe3\x87\x75\x77\x16\x3c\x69\x1b\x5c\x3c\xe9\x8a\x7d\xfb\x64\x0c\xb2\xb5\x69\x5f\x3c\x71\x05\xae\x0e\xcf\x06\x32\x62\x8d\x34\x5c\xac\x4c\x8c\x07\xa7\xb0\x66\xa5\x58\x73\x50\x54\x51\x64\x5c\x4a\xbf\xe7\x9e\x8b\x5b\x27\x2d\x35\x78\x3a\xe1\x22\x71\xc6\xb8\x39\xcc\xf8\x7b\x8f\x27\x70\xff\x10\x2c\x29\xe5\x5c\x1e\x95\x5c\x9e\xb0\x63\xde\x0b\x1f\xe7\xfc\x8e\x91\x8e\xcc\xf9\x6f\x1a\x6f\xc8\xff\x9b\xa5\x95\x69\xb8\xd0\xfb\x95\x91\x9e\x00\x49\x81\x4a\x7a\x53\x35\x90\xa5\x57\xf5\x78\xac\x04\xee\x5d\x53\xdb\xb5\xa8\x0c\xcf\x43\x19\x3f\x84\x93\xa2\x9c\xe5\x31\x86\xc0\x7e\xe6\x24\xf1\x69\x7c\xa3\x0b\x6d\xab\xd8\x08\xec\x33\x89\x0b\xca\xfe\x1a\xd6\xbe\x2c\xdd\x10\x27\x44\x86\xf7\xcf\x36\xfd\x2d\x33\xd6\xbe\x61\xe1\x66\x88\x54\x39\x24\x39\x89\xd7\x95\x4d\xe6\x74\x51\xa2\x9a\xc3\x48\x11\x45\x7c\x4e\x17\x38\x2d\xd9\xff\x84\x13\x5a\xdf\xf1\x0f\x87\xb8\x66\xf9\x0d\xf7\x7a\x61\x49\xaf\x67\x13\xfc\xbb\x81\x02\x4a\x82\x93\xc7\xb9\xf8\x64\xb4\x21\x96\x0c\xa5\x22\xe7\xfb\xb8\x90\x8b\x88\x62\x91\xf2\xda\x68\x08\xf9\x38\xac\xc5\x81\xd7\x44\x21\xa2\x78\xbe\x40\x29\x76\xa7\xe9\xab\x26\x4d\x21\x42\x54\xce\x53\x93\x64\xa8\x84\x2d\x29\xb9\xb5\x6d\x22\xfb\xaa\xc5\x91\x81\xce\x32\x4e\x43\x19\x6d\xc2\x30\x15\x0f\xa0\x3d\x17\x60\x5b\x20\x0a\x19\x25\x8e\xf6\x81\x1f\xac\x89\x17\x71\xd5\x65\xd1\x06\x44\x05\xcd\x7d\x4a\x56\xf7\x5e\xe8\xc8\x9f\x31\x29\x1c\xee\xf2\x3d\x8c\x83\x92\xed\xba\xdf\x75\x36\x66\x8c\x99\x5f\x37\x17\x81\x00\xcf\x98\x49\xf2\xfb\xce\xc4\x8c\x9b\xf2\xab\x26\x62\x20\xe9\xd3\xb3\x51\xce\xa6\x5a\x81\x85\x3c\x1f\x35\x42\xf7\x78\x3b\x96\x22\xc3\x3c\xc8\xa4\xb0\x4e\x7a\xa2\xd4\x90\xb7\x31\xda\x36\x73\x7c\x99\x5e\xbb\x3b\xc5\xd9\xc7\xad\x5c\xf7\x9d\xbd\x74\x8d\xc5\x00\x8c\x97\x94\x25\x8a\x0f\x07\x1e\x09\xa4\x36\x79\xb9\x79\x9f\xb1\x8c\x2b\x42\xdb\x5b\xd3\x7b\x60\x69\x9f\x58\x58\xf2\xd8\xc2\x52\x73\x15\x69\xf7\x2a\x92\xd6\x2a\x9a\x47\xcf\xf3\x66\x53\x83\x0f\x4b\xa8\xce\x97\xc7\xa6\x45\xb1\x3b\xa5\xed\x69\x51\x3e\x2d\x6a\x4e\x8b\xd6\xa6\x95\x9a\xd3\x4a\x9f\x3b\x2d\x76\x64\x3e\x6f\x3a\xe6\x59\xf8\x7b\x8c\x3f\x36\xc7\x1f\x3f\x77\xfc\xe6\x51\xff\xf4\x3c\x8c\x4b\x71\xdd\xb0\x37\x41\x31\xbb\x85\x88\xf4\xd9\x18\xf7\x7a\x76\x86\xe3\x79\xba\xe0\xae\xf2\x25\x37\x32\xcd\x79\xac\xd9\x9d\x13\xd9\xe0\x7d\x66\x81\x3e\xed\xf3\x48\x84\x1b\x9f\x5a\x8c\x09\x0a\x79\xe4\x47\x41\xc9\x37\x5c\xdf\x3f\x48\xc9\x4f\x2a\x96\x8e\xd3\x46\x27\x0d\xca\xe8\xfc\x1c\x36\xfc\x37\x08\x7e\x87\xa4\x54\xc6\x8a\xb4\x21\x6a\x72\x65\x39\x49\x32\x3f\xb4\x15\x6d\xc3\xd8\xa8\xba\x9f\x8e\x9d\xe3\xa3\x7d\x1c\x7a\xe0\xeb\x36\xdb\x3a\xac\x30\xc9\x85\xfd\x88\xda\xb1\x9a\xac\x51\x91\x28\x01\x27\x69\x8e\x40\x09\x51\xd1\xd1\x22\x23\x37\xf7\xeb\x9c\x44\x1e\xf8\x03\x40\x59\x7a\x99\xc4\xc1\x57\x2f\x29\xd1\x33\x3b\xcf\x09\xcd\xef\xdb\x9d\x8a\x64\x46\x6f\x46\xcf\x9d\x46\x92\xa5\x2b\x46\xb5\x3d\x3c\x93\x6b\xff\x6b\x9c\xae\x2c\xdf\x62\x45\x2d\x5e\xd6\x71\xd8\xc4\xc2\xff\x1d\x13\xdb\x3e\x7f\x62\x7e\x18\xa7\xab\x87\xe7\xf5\xbd\x2c\x20\x26\xb3\xe6\xed\x3e\xe9\xc2\x45\xda\x0d\xcd\xec\x46\xd0\x7c\xd9\x98\x25\xad\x58\x64\x3a\xec\x98\x36\x08\xe3\x1b\x20\x86\x2b\x46\x0a\x50\xce\x5d\xbd\xa0\x00\x01\xeb\xc7\xdd\xd0\x1d\x8c\x2d\x80\x0a\x08\x3d\xc2\x03\xf1\x85\x1f\x76\x74\xf6\x4b\xda\x89\xcc\x76\x42\xd6\xcc\xd6\x2f\xe8\x6b\x92\xf8\xf7\xbf\xa8\x9d\x2d\x54\xbe\x74\xa6\x6b\xf3\xdd\x46\x30\x87\xbe\xe3\x3b\xcb\x2c\x4b\x90\x1a\x63\x95\xa2\xbb\xd3\x49\x25\xa2\x8e\x8f\xd7\x25\x1a\x9e\xb9\xbf\x21\xee\x55\x5e\x9a\xa2\x8f\xdc\x78\x75\x6b\x70\x3d\x32\xa0\xd2\x91\x19\x9a\x9c\x3f\x4c\xb1\x11\x3c\xcf\x9d\x54\xf7\x08\x22\x93\x55\x1b\xb8\x43\xe9\x62\xe6\xec\x61\x56\x6d\xdc\xe4\xd5\x5a\x0a\x18\xfa\x75\xb2\xc5\xa5\xa5\x3a\x9a\x2e\xf2\xf5\xe9\x3f\xcf\x16\xd8\x8e\x31\x99\x67\x0b\x64\xfb\x98\xce\xb3\x05\x9c\x99\x04\xca\x43\xbf\xf7\x8a\xea\x40\xbe\xf8\x63\x76\x1f\x77\x3e\xfc\xd5\x79\x17\xfc\x58\xcb\xdc\x44\xc8\xe7\xb6\x86\xac\x6d\xf9\x2a\x08\xbd\x18\xa2\xb4\xe1\xbf\x42\x58\x1a\x79\xa4\xe6\x58\xe4\x7f\x33\xd3\x55\x28\xa6\x4b\x84\x63\x35\xef\xeb\xca\xa9\x12\xbb\x02\xf9\xa3\xac\x50\xde\x8a\x84\x33\xf9\x36\xfa\x11\xa7\xc6\xf8\x4a\x07\x73\x9a\x6e\xbc\x64\x17\x32\xde\x57\x4c\x9b\xc9\xca\xd5\xb9\xb4\xd2\xac\xda\xa1\x5d\x12\xc9\xac\xeb\xec\xa3\x9f\xd3\x42\x3a\xa2\x1b\x70\x5f\x8d\x52\xe7\x50\x6b\x0b\xa8\xb8\xb3\xea\xf5\xf0\x89\x05\xd7\x81\x6d\xab\x38\x79\x55\x58\x56\xe3\x55\xd2\x8c\xb4\x37\xab\x7d\xb5\xc3\xe9\x29\xb5\x35\x19\x54\x4f\xe3\xb4\xa1\xf8\x9e\xce\x5d\xae\x8c\xe2\xa5\xb5\xb9\xcb\x09\x3e\x1c\x42\x84\xdd\x02\xd0\x8e\x1c\xbf\xa0\x28\x72\x44\xb4\xe3\x02\x45\x15\xd4\xab\x8f\x02\x11\x24\x05\x14\x91\xa6\xb9\x4b\xed\x05\x30\x4b\x6e\x74\x7c\xd0\x76\x70\x8b\xbd\x68\xda\x6b\x31\x6e\x4e\xb1\xdb\x6e\xb3\x9c\x92\x50\xac\x7a\xf1\x21\xb2\xf5\x40\xe0\xdc\x5d\xa8\xc5\x5c\x11\x7a\x51\xd0\x8e\xc8\x1a\x7c\xf0\x25\xea\xd2\xa6\xd0\x9e\xf1\xe5\x70\x31\x45\x47\x3c\x10\x8a\x9f\x17\xe6\x21\x57\x53\xbb\xa3\x49\x8d\xdf\x51\xc5\x75\x80\xb5\x82\x70\x65\xbc\x6d\x9e\x05\xa4\x28\xac\x9f\x64\xdb\x3f\xe9\xc8\x6b\x3f\x89\x91\xfc\x04\xa0\xf0\x30\xeb\x17\x14\xeb\x5e\x6d\x8a\xf6\xc2\x3d\x63\xfc\x6f\xf2\x57\xbf\x58\x53\x7f\xf5\x36\x15\x74\xbc\x77\x34\x40\xf1\x2a\xcd\x72\x72\xed\xaf\x3c\x19\x51\x3b\x36\x22\x6a\xc7\x4a\x0d\x3d\x76\x74\x39\x15\xfe\x55\x77\x45\xb9\x99\x62\x43\xa1\x42\x66\xc2\xee\x49\x5f\xa8\xa0\xd5\x7a\x92\x3a\x3e\x9b\x5f\x58\xbe\x25\xb4\x5e\xad\x2c\xb7\x2e\x3e\x5f\x3b\x6a\x5e\x12\x2d\x70\x62\x13\x8d\x22\x99\xdc\xb5\x72\x01\x71\xda\xd8\xc4\x05\x8e\x7b\xbd\xd8\xf8\x3e\x1c\xaa\x63\x80\x9d\xcb\xed\x2d\x0f\x7b\x3d\xdb\x7f\xe6\xbe\x87\xa8\xc5\x5b\x16\xff\x75\x45\x10\x81\xed\xb7\x45\x10\xc5\x23\xec\x51\x9d\x43\xfe\x5d\x67\xf6\x5b\x45\x45\x6c\x6e\x1d\xa2\xa2\x47\x66\x67\xf2\xb2\xbf\xeb\xd4\x7e\x93\xb4\x85\xcd\xab\x5b\xda\xf2\xc0\xd4\xca\x86\x73\xb4\xa6\xc2\x08\x41\xa0\x76\xed\x3d\xac\x39\xe2\x6c\xc8\x26\x8b\xff\x4d\xc2\xd7\x66\x79\x6e\xac\xdb\x99\x83\x39\x27\xd9\x81\xa7\x8d\xd3\xda\x86\x72\xbb\x42\xf4\x40\x4b\x25\x22\xe9\x6e\x23\x34\x89\xd9\x21\x15\x64\x69\x14\xaf\x76\xf2\xdb\x2d\x1f\xac\x28\xdc\xe7\xea\xc3\x8f\x71\x0b\x48\x1f\x16\xd5\x9e\x0e\x76\x79\x4e\xd2\xe0\xde\xdb\xf3\x60\xd3\x1e\x50\x09\xa0\x44\x5b\x92\x07\x24\xa5\x3a\x4b\x7e\x83\x52\x1c\x04\x9e\xd0\x4e\xf1\xf6\x9b\x2c\xa5\x6b\xae\x13\x47\xf2\x38\x00\x28\xf4\xef\x8d\xaf\x7b\xe2\xe7\x1e\x18\x1e\x87\xf1\x2a\xa6\xa0\x44\x1b\x61\xbc\xa6\x6a\xf1\x36\xba\xeb\xa8\xcf\x12\x31\x4e\x4e\xd7\x60\x1f\x4f\x55\x88\x76\x49\xe2\xed\x6f\x09\xf9\xca\xcb\x89\x2a\xcf\xaf\x2f\x1e\x06\xf4\x04\xd7\xd9\xce\xc8\x45\x9b\x38\xdd\x51\x62\x76\xa7\xe6\xf4\x44\x41\xf9\x64\xd5\x9e\xd9\x2f\xad\xa7\xdf\x2d\x78\xe8\x06\x09\x43\x35\xeb\xff\x4c\x63\x65\x89\x48\x69\x43\xc6\x7f\x0c\x9f\x27\xeb\x18\x4d\x4c\x47\xb3\xea\xc9\xd2\xe6\x42\x0f\xc6\x6a\x8c\xa0\x60\x31\x86\x67\x23\xfe\xee\x67\x0f\xdc\x31\xac\xeb\x62\x98\xfe\x95\x55\x20\xf2\x54\x69\x03\xa2\x0c\x9b\x94\x13\x44\x01\x8e\x1d\xdf\xd9\x15\xe4\x1d\xd9\x64\xb5\x63\x4b\x88\xab\xe4\x35\x9e\xcd\x52\xaf\x8b\x62\x7c\xc4\xe2\xfb\x11\xbe\x81\x11\xc7\xb0\xb4\x33\x54\x05\xfb\x62\xfd\x1c\x89\x57\x8e\x79\xe2\xf8\x0b\x2c\x12\x70\x26\xe9\xc6\x14\x65\x66\x04\x8b\x26\x43\xcb\x78\x4e\xed\x40\x57\x7a\x2a\x0e\x4a\x24\x99\xbf\x27\x9c\x87\x3e\xca\xfc\xf9\xb5\x77\xba\x86\x28\x8a\x2d\x48\xc5\xe9\xf9\xf5\x67\xf9\x5d\xa1\x5d\xfe\xc6\x8e\x2f\x46\xf2\x84\x1a\x83\xc9\xe6\x9a\xf1\x55\xc0\x9a\xd2\x6d\xe1\xbd\x7c\xb9\xf1\x29\xc9\x63\x3f\x39\xde\xf1\x40\x3c\x2f\xb7\x79\x16\xee\x78\x95\x63\xce\xa1\xbf\x9c\xf1\x28\xc7\xa0\x4f\x50\x8a\x07\xdd\xf7\x0c\x1e\x40\xda\xc7\xa0\xe7\xe7\xab\x62\xbe\x60\x65\x53\x56\xe9\x87\x4f\x6f\xb5\x7b\x5b\xdb\xbc\x84\xb4\xba\xe1\xbb\x38\x8d\xa3\x98\x84\xd6\x3b\x35\x8a\x1f\xde\x0a\xe1\x87\xf5\x07\xd0\x27\x7d\x30\xb5\x6e\xe2\x22\xa6\x95\xd8\x8f\x07\xc7\x65\x3b\x4a\x51\x68\x0e\x28\x9f\x64\xf6\x4b\x34\x72\x9f\x60\xd7\x0d\x38\x69\x6b\x8e\x5c\x19\x3c\xf9\x45\x11\xaf\xd2\xba\xf5\x79\x05\xca\xc1\x43\xa2\xd7\xa6\xcb\xca\x39\xad\x42\xd4\x89\xc7\x51\xd8\xb2\xa8\xaa\x7b\xd7\x11\x76\x55\x29\xca\x21\x47\x63\xf5\x8c\xaa\xd5\x26\x4a\xa8\x44\xea\xeb\xb8\x40\xba\x23\xc3\x3a\x25\x33\xac\x53\x1e\x0b\xe2\xf9\x7f\xa8\x75\x8a\xa1\xc0\x52\xef\xb7\xd2\x60\x66\x10\x68\x77\x26\x00\x5f\x1a\x3b\xcd\xf0\x3a\xf1\x2b\xdd\xa9\x28\xc3\x17\xb7\xe4\x7b\x9a\x7f\xcd\x72\x71\x3c\x69\x6f\xb9\x7c\xa4\xbd\x5e\x6c\x53\xa8\x43\xd3\x2a\x9d\xe9\x76\x58\x8f\x1c\xee\x81\x8e\x53\x09\x84\x63\x5a\x3b\x16\x2a\xd3\xbd\x9e\x7c\x72\xcf\xb8\xe6\x30\xc7\x0f\xc4\x72\x50\x0a\x3d\x9e\xc6\x8b\x95\x10\xa2\xec\xf1\x3d\xe2\x8b\x3d\x32\x6e\x1c\xc8\x1c\x18\xd3\xf4\xa1\xe0\x8d\x36\xe4\x56\x68\x29\x4e\x0f\x07\x46\x58\x3d\xe8\x7c\xbd\x8a\x92\xd2\x76\xe0\x2e\xa4\xe8\x5c\xdc\x21\x7e\xc2\xd2\x70\xd6\x5c\xa2\xd1\x13\xce\xaa\xff\x9b\xed\xdb\xe7\x1c\x65\x4f\xa8\x2b\x3d\x3b\x5c\x7f\xb7\x9e\x49\xf0\xa4\x36\x4b\xf1\x64\xc8\xff\x9a\x78\x73\x78\x66\xca\x2e\xb3\xdf\xec\xf1\xe8\x37\xf8\x3b\x1a\xd4\x34\x5f\x37\x71\x2a\x34\xa9\x37\xfe\x9d\x88\x99\x9e\x36\x0f\x14\xae\xfd\x6f\x06\x04\xe1\x91\x17\xc0\x1f\x44\xf4\x35\x1d\xf1\x12\xea\xad\x5d\x53\x49\xe3\xde\xb5\x96\x05\xcd\xed\x81\xd2\x86\x60\xfb\xe4\x13\x59\x5d\xdd\x6d\x6d\xe0\xec\x07\xc8\x70\xea\x2b\x67\x82\x4f\x66\x43\x6f\x80\x40\x09\x20\x02\x2b\x00\x39\xa5\xb5\x91\xee\xcd\x35\x6d\xd3\xeb\x71\x1b\x80\xb9\xbb\xd0\xf2\x35\x3b\xc5\x1d\x26\x00\x6a\xdc\xdc\xc0\x0a\xa2\x74\x06\xf2\xd5\x52\xf7\x3a\x36\x0d\x09\x80\x0f\x3c\x00\x10\xb0\x2b\x75\xe4\x56\x83\xa6\xdc\xf9\xd5\x68\xc6\x99\x98\xb7\xdc\xb1\xfe\xe0\x04\x7a\x86\x42\x71\x3d\xe7\xe5\x70\x32\xf9\x66\x40\x46\xf0\xe5\x80\x8c\x0c\x45\x66\x8b\x4d\x12\x02\xe8\x01\x50\xda\x04\x2a\x28\x91\x2a\x2a\xb7\x2d\x21\x20\x00\x19\xa7\x2b\xdb\x45\x94\x4b\x27\xb9\xc1\xcd\x9c\x4f\x07\x71\xaf\x78\x00\x81\x75\x91\x88\x7f\x7d\xb0\x30\x4d\x71\x1e\xf0\x16\xc5\xa9\xc7\x11\x52\x1d\x67\xb5\x7e\x68\x7f\x80\x2a\x29\x24\x54\x26\x70\x08\x68\x7d\x01\xee\xba\x29\x55\xfe\xbc\x33\x9c\x3d\x08\x7e\x0e\x8d\x37\x49\xc6\x16\x9a\x87\x14\xa8\x5d\x3c\x15\x79\xcd\x5d\xa9\xa5\xda\x4f\xbc\xec\x88\x7b\x24\xa7\x46\xa4\xf2\xd5\x12\xc0\x59\xc7\x72\x3f\xb2\x3a\x2e\xf4\xb8\x89\x5d\xb3\x2d\x06\x31\x6e\x11\x3c\x1f\x2c\xb0\x61\xea\xc1\x1d\x85\xfc\x89\x01\x7f\x3e\xac\x67\x0c\x45\x86\xe9\xc4\x82\x36\x90\xa6\xb1\xba\xd5\x64\x77\xe6\x2d\x9b\x08\x0b\x98\xa4\xc2\xeb\x6a\x3b\xb2\xa3\xb3\xef\xb8\x13\xf8\xd2\xd6\x7b\x55\xa7\x95\xf5\xb7\x59\x45\xd0\x16\x9c\x76\xb1\x09\x66\x5b\x17\x8a\x68\x8b\xf5\x1d\x29\x4a\xea\x12\xda\x19\xbf\x61\xce\xf8\x72\xe0\xba\x28\xc3\x74\x3e\x14\x3f\x77\x38\xff\x46\x8f\x20\x43\x83\xe3\x8c\x71\x49\xed\x46\x7f\xe5\x61\x66\x93\x7e\xfa\x72\xe4\xc2\x3f\x0d\x86\x3a\x66\xc5\xf1\xee\x1b\x0d\x07\xdd\x35\x3d\x1e\xa1\xf3\x63\x8a\x06\x10\x1d\x0f\x60\x89\x02\x2c\x30\xbf\xc0\x73\x63\xd7\xb1\x6d\x96\xb0\x03\x09\xb5\x12\xcf\xba\x12\xc7\x10\x2a\x89\x90\xd8\x35\x46\x54\x49\x3b\xe8\x63\x76\x03\xa8\x90\x3b\xf3\xd1\x02\x42\xe4\xdb\x02\xed\x03\x85\xf6\x45\x09\x4b\x03\x9a\x5e\x03\x77\x2d\x8a\xe9\x43\xdb\xc2\x26\x2f\xf1\x70\x32\x81\xaf\xb0\xe3\x8e\xce\x87\x67\x33\xf2\x72\x30\x74\xce\x87\x9e\x36\x42\xb0\x09\x5b\xf0\x09\x7c\x39\x60\x7f\xd0\xd0\x19\x73\x72\x46\x48\x6f\x6c\xdb\x19\x0e\x86\x27\xdf\xb0\xd5\xeb\x3b\xa7\x83\xc9\xf0\x1b\xb6\x82\x7d\xc7\x3d\x1d\xb2\x9f\xc3\x05\x74\x68\xf6\x26\xbe\x23\xa1\x3d\x82\x4d\xff\xf3\xd5\xd1\xc8\xb1\x01\x51\x9c\xd9\x14\xf2\x93\x84\xd1\x59\x0a\x0a\x1c\xad\x8e\xaa\xa0\x9f\xf2\x3e\xe0\xa0\x81\x48\x4d\x76\x3e\x5a\x60\x8a\xfc\x1a\x45\x5a\x54\x4e\x16\x6a\x3d\xf0\x1d\x28\x5a\x69\x6c\x43\xa8\x9b\x1b\x2e\xbe\xc1\x83\x63\xaa\xe3\x01\x76\xd6\xe1\xc7\x00\x34\x5c\x41\x4c\xd3\x57\x23\xc1\x8d\xe9\x86\x52\xd9\x90\x22\xf4\x6a\x23\x8c\x7e\xd3\x08\xfb\xd8\x1e\xb8\xee\xb1\x91\x02\xbf\xf9\x8f\x8c\xb8\x8f\x19\x76\x1e\x1b\x29\xac\x61\x73\x06\x25\x1a\x3f\xa1\xb0\xab\xd9\xeb\x13\xc6\x5f\xef\xb9\xd8\x42\xb2\xce\xfc\xf9\xd9\x3b\x72\xb9\x56\xb2\xfc\x6e\x7c\xf2\x6c\x29\x84\xe4\x46\x85\xfc\xbb\xd2\x7a\x61\x9f\x2b\xa2\x74\x41\x74\x09\x9e\x94\xc7\x37\x3c\x3c\x23\x25\x6f\xf2\x6c\x23\x54\x52\xbb\xf3\x74\x3d\x69\x8e\x71\xe4\x22\xfd\x3c\xce\x3e\xa8\x18\x58\x89\x62\xbc\x4f\x65\xaf\xe2\x70\x91\x45\x05\xe9\xc9\xc7\xee\x27\x09\xc9\xf5\x2f\x9e\xa6\xcf\x19\xf1\x11\xd3\x7b\xde\x98\x8f\xf7\x7f\xfc\xa3\x20\xbe\xc5\xac\x37\x5b\x3f\x27\xcf\x98\x70\xf7\xd8\x76\x78\x5f\x36\x74\x65\x14\xb5\xea\xc4\x05\x17\x01\x11\x38\xf3\xbd\xdd\x9c\x38\xaa\xdf\xc5\xe1\x90\x95\xbb\x79\xee\xbc\xd1\x7a\x12\x8b\xfa\xa8\x72\x92\x86\x62\x3e\xbf\x60\x50\x25\x62\x6d\xb2\x2e\x17\x58\x45\x4a\xea\x14\x31\xeb\x98\x28\xce\x8a\x50\x83\x6a\x17\x2a\xa7\x51\x77\xa6\xe0\x48\x0b\xad\x01\xdf\xc8\x7e\x4d\x8a\x20\x8f\xb7\x34\xcb\xd1\xd6\x28\xf1\x51\xad\xd2\x87\x48\x9b\x00\x55\x5c\xc3\xb4\x62\x75\x1a\xcf\xc3\x79\xcd\x78\xb3\x72\x1c\x22\xd4\x14\xd6\xca\x22\x77\x6b\xa7\x70\x9a\xf5\x7a\xd9\x11\xc6\xeb\x5e\x8f\xd5\xe5\x06\xb3\x22\x28\x52\xc1\x72\x23\xfe\x5a\xe4\xab\xcb\x99\x93\x43\x95\x03\x99\x1d\xbf\x7e\xd1\x46\xd8\x12\xdd\x63\x77\x7a\xff\xca\x57\xbc\x50\xbf\x7f\x2f\x3a\x5a\x61\x7f\x7e\xbf\x10\x41\xc7\xe6\xab\x45\xaf\x67\x1f\xe5\x87\xc3\x51\x3e\x5f\x31\x2e\xd4\x3e\xda\x1c\x0e\x47\x1b\xf5\xb1\x3b\x1c\x8e\x76\xec\x43\xd4\xbd\xc1\xa1\x9d\xa2\x95\xe0\x15\x03\x9b\xa2\x15\xba\x51\x1c\xe1\x12\xee\xcb\x52\xbb\x04\xa1\x6c\x5f\x9f\xfd\x86\x20\x5d\xd9\x93\xac\x4b\xfc\xa4\x22\xbe\xff\x24\x73\xb3\xab\x98\x9b\x2e\xca\xab\xe2\x3e\x8b\xda\xf2\x1f\x0e\x7b\xcd\xc8\x7b\xf3\x45\x69\xc4\xdd\xe5\x4f\x92\xbd\x5e\xbd\x35\xfe\x46\x20\x8a\x63\x5a\x36\x1d\xcb\xe8\x33\x94\x87\xe1\x7f\x1e\x3b\xca\xa0\xc9\xd9\xd1\x74\xc1\x1d\x45\xc0\x52\x9a\x44\xd5\xb8\x33\xde\xba\xfa\xd6\x51\xf8\x4d\xe1\x09\x29\x73\x11\xd1\x91\x54\x1d\x2a\xa9\xae\x56\x46\x91\xc1\x83\x29\xf4\xec\xd4\x28\x66\x8c\x11\x71\x6d\x1a\x81\xab\x71\x5b\xc6\x60\xc7\xcf\xe2\xe2\x51\x8a\x07\x1d\x3e\x6c\xa7\xe9\xab\x9c\x3f\x80\xe9\x28\xfa\x1c\x50\xb5\xa7\xb0\xe7\x42\x2d\x13\x50\xcb\x16\x42\x49\x66\xfa\x24\x13\x3f\xed\x96\x2a\xb1\x83\xd2\x94\x22\x90\xe7\x0d\x80\x70\x29\x42\x45\xb2\xe7\xf0\x95\xcb\x09\x76\x69\x67\xc1\x99\x21\x2d\xec\xee\x12\xb8\x3d\x76\x9e\xa9\x93\xc4\xe5\x63\xcb\x1f\x3d\xfb\x6c\x02\xa7\xd9\xab\x5c\x81\x38\xeb\xf7\xa1\x31\x2c\x06\x1b\x36\xb2\xd6\xa4\xb6\xb2\x95\xb7\xc5\x95\x7e\x34\xd3\x53\x63\xb5\xc4\x6c\xe6\xd9\x82\x4f\x88\xfd\xad\xdc\x00\x94\x35\x7c\x9a\x1a\x9c\x84\xa9\x02\xeb\x22\x8a\xbb\xe4\x02\x53\xfa\x2a\x15\x5a\xb0\xfd\x9a\x38\x47\x65\x8b\x6d\xac\xcd\xf1\x15\x18\x84\x3a\xad\xa8\xa9\x3a\x89\x6b\x0d\x20\x1f\x33\xde\x20\x56\x0d\xf9\xaf\x76\x53\xbf\xdf\x47\x19\xf7\xbc\x95\x2d\x70\x3c\xf7\x0d\xcf\x5b\xb5\x49\x94\x68\xfc\x84\x9e\xea\xb3\x45\x38\xdd\xa7\x5c\xf2\x2c\x21\xcf\x43\xa1\x08\x87\x67\xae\x88\x70\x36\x34\xed\x83\x76\x6c\xd7\xd5\x8d\x29\xc1\xfc\x13\xf1\x03\xca\x1f\x54\x17\xd6\x65\xb6\x4b\x42\x1e\x38\x34\x8a\xd3\xd0\xca\xc9\xbf\x76\x71\x4e\x42\xeb\xa7\x38\xa5\xc9\x4f\xd2\xc7\x92\x63\xbd\x7a\x2b\xa2\x0c\xf2\x77\x95\x6f\xad\x94\x90\xb0\xb0\x68\x66\x91\xbb\xb8\xe0\x2a\x58\x74\x4d\xac\x40\xbd\x1a\x58\xec\x84\x2c\x68\x7e\xef\x48\x0b\xf7\xe4\x31\xe5\x31\xdf\xf1\x21\xe2\xf6\x61\xfa\xd9\xc1\xcb\x9c\x37\xb9\xcf\xbd\x19\x97\xc6\x6c\x0c\x45\x31\xab\x4b\xd9\xcb\xce\x9c\x4b\xf9\xd2\xe5\xd0\x4c\xfb\xe0\x28\xcb\x12\x3d\x21\x8f\xac\x45\x9a\x1b\x9f\xc3\x12\x4d\x9e\xa7\xaa\xf8\xfb\x5e\x69\xff\xf7\xc2\xfa\xbf\x17\xd6\x23\x17\xd6\x03\x87\xac\xff\x7f\xf2\x21\xfb\x94\x59\x6f\x3d\x26\xe4\x09\xdb\xa9\xcf\x61\x2a\x51\x36\xed\x7e\x74\x12\xa1\x86\x31\x8f\xa1\x41\x49\xee\x27\x0d\x19\x5f\xbb\x9c\x9a\x6b\x59\x3f\x65\xdb\x05\x85\x5a\x48\xd9\xc9\x66\x19\xc5\x42\x36\xef\xce\x33\xce\x28\x44\xe3\x0d\xa9\x09\x29\xba\x0a\x89\x30\x27\x9d\xd6\x8c\x66\x31\xa1\xf7\x53\x8b\xe9\xd8\x59\x2c\xdb\xa5\x61\x55\x6a\xfb\xc0\xc0\xfc\x55\xcd\x52\x44\x95\x39\xb2\x8f\x48\x15\xfa\xd7\x08\x04\x70\x38\xb8\x5a\xc6\x60\x48\x35\x36\xcf\xaa\x3a\x30\xaa\x3e\xf9\xe8\xf2\xb8\xdd\x6d\xfc\xe4\x75\x6b\x32\x15\xd1\x93\x97\x7a\xf7\x29\x6e\x5e\xea\xc9\x93\x2f\x37\x3f\x3f\xf9\x72\xb3\x7e\x32\xce\x71\xfc\x64\x9c\xe3\xaf\x4f\x5a\x2a\xaf\x1e\xb4\x54\x7e\x9c\xc9\xda\x70\xeb\x13\xf3\x31\x65\x4e\xd4\xbe\xc2\xee\x02\x03\xf9\x1b\x20\x96\xa1\x36\x12\x1e\x2c\x30\x50\x1f\x22\x4b\x6c\x1d\x3c\x5c\xe8\x50\xa6\x3c\x99\x6d\x15\x3c\x5a\x60\xc0\x7e\x88\x24\xb6\x31\xf0\x78\x81\x01\xfb\x21\x92\xc4\x36\xc0\x93\x05\x06\xe2\xa7\x48\x16\x68\x8f\x4f\x16\x18\x88\x9f\x32\x99\xa1\x39\x3e\x65\xa9\xec\x97\x6c\xd5\x5f\xe1\x33\xd6\xa8\xbf\x02\xa5\x9d\x1f\x0e\x76\x8e\xf7\x5d\x93\x93\x03\x75\x3b\x06\x7a\xcd\x46\x36\x90\x83\x65\x1f\xa0\xb4\xb3\xc3\xc1\xce\x78\x4b\x25\x6a\x1f\x74\xf5\xb3\x6d\x0c\x6d\x56\xea\x59\x6e\x0e\x1e\x95\x7d\x64\x6d\x0f\xb0\xf5\x1b\x08\xc5\xed\x12\x5d\xe4\xff\xb4\x7e\x34\x4a\x06\x06\x63\x4c\x0c\xe5\xde\x07\x14\x92\x6b\x97\xac\x15\xf8\x29\xa3\x39\x97\xc4\xe2\x92\xaf\xd0\xba\x8d\xe9\x9a\xeb\xfe\x58\x59\x6e\x55\xbe\x57\x1b\xae\xdc\x6c\x62\xbe\x33\x1b\xf8\x47\x73\xee\xb0\xf4\xa8\xd6\x8b\x7c\xdf\x3b\x1a\x4c\xa5\x0a\x13\xb9\x95\x2a\xc0\x36\xf0\x97\x01\xe0\x2c\x18\x99\x33\x3c\x09\x09\x40\x60\x02\xb4\x86\x41\x97\x88\xc9\x26\x70\xee\x2e\xaa\x46\xab\x27\x69\xee\x19\xc9\x9d\xa6\xaf\x06\xae\x54\xdf\x04\x5f\x40\x5f\xfa\xd8\x8d\xf2\x6c\x73\xb9\xf6\xf3\xcb\x2c\x24\x76\x0a\x17\x38\xe5\x8f\x91\xee\x60\x38\x1a\x4f\x4e\x4e\xcf\xce\xd9\x09\xf7\x48\xaf\xf4\x41\x17\x46\xc2\x07\xa0\x7e\x96\x03\xb0\x3e\xe1\xbc\xf2\x3e\xc9\xa6\x1b\x92\x68\xb5\x8e\x7f\xfe\x9a\x6c\xd2\x6c\xfb\xaf\xbc\xa0\xa0\x72\x0f\xd9\xa1\xc2\xc0\x7a\x99\x93\x05\x26\x0c\xeb\xbb\xeb\x57\xd0\xe2\x9a\x10\x35\xd8\x33\xc2\x3e\x37\x86\x26\x45\x47\x3a\x96\xc3\xd1\xa0\x2c\x6d\x65\xb9\x22\xeb\x78\x0f\xd0\x9e\x68\x87\x12\xcc\x30\x0e\x05\x78\x30\x0d\xda\xaf\xff\x41\xbf\x5f\x15\x2f\xf8\x53\xbf\x0e\x6e\xa3\x09\x93\x60\x01\x61\xa6\x5e\xf8\x0b\x46\x6b\x25\xf3\x62\x81\xd3\x79\x21\x78\xf1\x1c\xee\x77\x38\xe7\xb2\x37\xd9\x52\xc4\x48\x9e\x57\x2a\x5c\xef\x34\xea\xf7\x61\xac\x1a\xd8\xcd\xa3\x85\x68\x83\xfd\x5a\xf0\x38\xbf\x11\xe3\x80\x4b\x7d\xf0\x97\xe8\xe4\x09\xca\xc4\xd4\xf2\xaa\xb9\x71\x10\x56\x2d\xb3\x87\x34\x6d\xa9\xd2\x6c\x4b\x6b\x0a\xad\x6e\x53\xa1\x15\xdd\xe6\x31\xd5\xca\xad\x9e\x30\x7a\x41\xe4\x39\xea\x0a\x27\x6d\x89\x5e\xed\x74\x3a\x3d\x83\x25\x7a\xfe\xf4\xfe\x7f\xa2\xe4\xf1\x84\x18\xb4\xbe\xde\xc6\x01\xaa\x14\x15\xf6\xc2\xdd\x2d\x8f\x7a\xd2\x76\xb4\xf9\x48\xd9\x7d\x59\x9d\xe1\xd2\xa0\x4c\x4a\x86\xdc\x69\xfe\x4a\x93\xe2\xdc\x61\x21\x8e\xb9\xc6\x91\xf1\xd0\xfe\x2d\x76\xd9\xbd\xa4\x5c\x8f\x57\x71\xf8\x85\xb3\x67\xb6\x3b\x9e\x16\x46\xc5\x4f\x0a\xa1\x7e\xe1\x80\x7e\x91\x44\x8a\xb3\x9c\xd5\x0c\x4a\x3d\x83\xe7\xac\xda\x33\x3d\x09\x0d\x4e\x06\x8c\x0f\xaa\xb4\xa1\x24\x5d\x5a\x90\x24\xea\xf5\xaa\x7f\x1d\x31\x72\x7d\x3c\x8a\x54\x14\x63\x3b\x77\xfc\xc3\x21\x3b\x1c\x1e\xd4\xb9\x82\x8e\x80\x17\xf2\x5b\x37\x32\xda\x61\xbf\x79\x6f\x27\xd8\xd7\xce\xdc\x51\x80\xe3\x59\xac\x3f\xaf\xfd\x95\xf4\xc3\x32\x15\x16\x6e\xed\xc7\xef\x9d\x02\x5e\xc0\x95\x35\xe6\xc1\x82\x4b\xfb\xd9\x0f\x6c\x54\xcd\xf1\x91\x2b\x8f\xef\x18\xee\x4b\x21\x78\x4c\x94\xef\x78\xcd\xc8\xf5\x7a\x36\x9d\xf1\xba\xa9\x17\x92\x84\x50\x62\xb1\x2f\x88\xb2\xb2\x7a\x9c\x69\xfb\xa0\x9f\x0a\xa7\x27\x1d\xb7\x5b\xa4\xba\x28\xd1\xf6\xb1\xa9\xad\xbb\x2a\xcb\xbd\x32\xab\xc8\x92\x19\x98\x8b\x85\xb3\x7e\x50\xe4\xc5\x02\x78\x3a\xf1\xfd\x2e\x49\x16\xc0\xdb\xf6\x7a\xdb\x9a\x3f\xf7\x19\x43\x5d\x8f\xb1\x48\x62\xbf\x6d\xba\xfd\x69\xeb\x44\xc3\x99\xae\x4d\x6d\x6e\xe1\x6e\x77\x3f\x2c\x89\x54\x21\xe3\xb9\x7f\x68\x0e\x42\x3a\xdc\xc4\x38\x52\xa2\x15\x56\x48\x64\xa0\xc8\x4d\x1b\x6b\x96\x78\x55\xa1\xc8\x2d\xbe\x69\xa2\xd0\x1d\x5e\x0a\x38\x9b\xc3\xb9\xaa\x0d\x87\x11\x56\xf7\xdc\x4d\xbe\x86\x96\x28\xbc\x00\x47\x78\x5d\x39\xd3\x97\x74\x07\xc5\x1b\x69\x89\xa8\x84\x35\x2a\xdf\x95\xc6\x87\xb7\x4a\xe4\x01\x0c\x79\x0f\xe0\xe2\x72\x23\x61\xda\xd6\x2c\x57\xcf\x69\xbd\x5e\x6a\x19\x82\xad\xb4\xd7\x93\x93\x48\x21\xc6\x77\x25\xfa\xca\x09\xe8\x33\x88\x3e\x63\xf0\xe7\x3f\xe7\x24\xdc\xdd\xbd\x7c\xfb\xfe\xed\xb5\x71\x04\x5f\x9b\xd1\xec\x73\x4e\x92\x75\xc8\xe0\x69\xaf\x67\x44\x02\xc0\xe6\x08\xec\x14\x53\x44\xe5\x46\x81\xa8\x33\x60\x80\x78\xf7\xab\x1a\x36\x73\x9a\xca\x4d\xe0\xea\x6e\xcb\x83\x94\x72\x59\x2a\x49\xd7\x6c\x72\xca\xff\xbd\xaf\x11\xcc\xa9\x68\xe2\xd4\xbe\x96\x92\xb5\x07\x3a\x21\x4f\x74\x22\x4c\x40\xbb\xfb\x90\x9a\x55\x28\xc6\x14\xf9\x78\xbe\x60\xc7\x0f\x4a\x30\xa3\x7b\x2b\x51\x05\x23\x99\x30\xf6\x7b\x3d\x9b\x1d\x4e\x22\x8a\x04\xac\x29\x53\x18\xec\x76\x5d\x2c\xf1\x2b\x86\x9c\xc4\x05\x25\xe9\x23\xe3\xa5\xf8\xc8\x55\xc0\x09\x6c\x88\x76\x42\x07\x86\x18\x6c\x9b\xb0\xa5\x84\x7b\x8a\x8f\x06\x28\xb0\x55\x88\x8c\x9d\xbe\x7c\x08\x9c\xee\x38\x61\x1c\x10\x3b\x45\x03\x68\x7a\x87\x0a\xd5\x6e\xb8\x62\x48\xdf\x1a\xe8\x05\x2f\x55\x54\xc6\x87\x89\x1f\xa7\x2a\x4c\x81\x63\xfd\x50\x10\x2b\xd8\x15\x34\xdb\x58\x9b\x38\x0c\x13\x72\xeb\xe7\x84\x2b\xc7\x73\xbf\x7d\x96\x88\x89\x5b\x38\x82\x2f\xe9\x44\x3b\x29\xfa\x68\xf6\xfc\x42\xf7\xec\xdf\x73\x59\xbe\x88\x86\x90\x56\x8c\x94\x25\xc2\x67\x5a\xea\x0a\x75\xac\xbf\xb2\x22\xf7\xd9\xce\xda\xc4\x45\xb1\x25\x9c\x09\xf3\x2d\xbe\xfd\xfc\x94\xce\x5e\xf0\x41\x24\xed\x49\x7e\x12\x38\x53\xf5\x15\xc6\xc5\x96\x5d\x0e\xe6\xf8\xd9\x35\x92\x88\xd0\x13\x99\x1d\x23\x52\x45\x95\x60\x18\x54\x56\x74\x9e\x8f\x77\x92\x75\xa2\xa6\xfd\xdb\xde\x76\xb9\x0b\x7c\xc6\x01\x6b\xba\x4c\x49\x32\xa4\x2a\xd3\xe7\x12\x22\xc6\x95\xab\xfe\xbd\x10\x15\xbb\x65\x11\xe4\xf1\x92\x78\x11\x5a\x11\xca\x55\x36\xbc\x02\xe5\x64\x9b\xf8\x01\x91\x23\x6f\x3a\x5b\xfd\x35\x1b\x27\x25\x77\xf4\xd3\x23\x9b\x87\x6d\x1c\x63\x9c\x65\x09\xe7\x5f\x1d\x7f\x61\x72\xac\xca\x10\x30\x52\x4a\x74\x04\xef\x8d\xf1\x37\xc6\xd8\x96\x85\x75\x73\xd9\xb5\x51\x66\xcb\x82\xe4\x37\xd5\x10\x15\x2e\xb2\x11\xd6\x44\xef\xc2\xbb\x63\xaf\x27\xfe\xda\x05\xdb\xc3\xfa\x8c\x81\x68\xbf\x4b\xab\x91\x71\x6f\xec\x5d\x13\x32\x75\xcc\x11\x29\x91\x21\xf8\xac\xc5\x86\xa4\xec\x98\xe7\x6a\x14\xf2\x7c\xff\x4b\x7c\x43\x52\x89\x3d\x16\xe8\xdb\x69\xaf\xf7\x02\xbc\xe8\xa7\xfa\xda\xb2\x61\xff\x05\x78\x71\x38\x00\x5f\x15\x03\xb0\xff\x02\xe9\xe3\x0b\xbc\xe8\x93\xfe\x0b\x60\x89\xf6\x48\x58\xa1\xbd\x63\x5d\x67\x96\x30\x31\xb6\x74\x65\x24\xd0\x9e\x6d\x52\x72\xc7\x36\x7a\x4c\x93\x7b\x4b\x0f\x9f\x58\xdb\x9c\xdc\xc4\xd9\xae\xb0\x0a\x86\x40\x8e\xf5\x36\xe2\x35\x6e\xfd\x94\xf2\xe9\x99\xe7\xe6\x3a\xe3\xcf\x67\x16\xe7\xc7\x44\xcb\x81\x9f\x5a\xc6\x0d\xce\x2f\x2a\xe2\x87\x56\x16\x19\x03\x7b\x61\xc6\x92\xab\xb1\x3e\x75\x2a\x1e\xa5\x8c\xb6\x17\x54\x33\x35\xa9\x66\xf9\x00\x4c\xe7\xf9\x62\xea\xa2\xae\xbb\x8b\xcc\xb3\x05\x7f\xa3\xcd\x16\xdc\x5f\x84\x7a\x02\x31\x3b\x48\xc5\x01\xe8\x9b\xf1\x69\x8e\x4c\xe4\x6b\x38\xa9\x68\xcb\x09\xf4\xba\x2a\x7f\x40\xdd\xf7\xa5\xb4\x8e\x46\x7a\x4f\xb4\x0f\xb1\x4f\xd5\x72\xd2\x3e\xf8\xb1\x6b\x3d\xad\x70\xc7\x2d\xb8\xe3\x34\xa6\xb1\x9f\xc4\xff\x16\x3e\x7c\xd8\x0a\xb1\x85\xe3\xeb\x65\x6d\xfd\xa2\x60\x3b\x20\xab\xdd\x71\x71\x51\x35\xf3\x24\x06\xc8\xf6\x15\x02\x5c\x37\x93\xf4\xe1\xb7\x24\x26\xb2\x49\x44\x09\xb3\xf4\x05\x95\xe8\x92\x71\x3b\x7b\x5f\xe0\x87\xb4\x84\xaa\x30\xa8\x42\x18\xc6\x6f\x3c\x8c\x2d\x8f\x5c\x09\x0d\xc8\x6a\x72\xe7\xe3\xa7\x0f\xdf\x5d\x7d\xf9\xe1\xfd\xdf\xde\x7f\xf8\xc7\xfb\x2f\x17\x97\xd7\x6f\x3f\xbc\xff\x02\xfa\x42\x97\xd4\x4f\xc3\x6c\x63\xc3\x6a\x87\x8d\x4e\xa0\xa1\x43\x7d\x0a\x0d\xd1\x90\x90\xe0\x38\x00\xfe\xda\x35\xbb\x5d\x93\x94\x5d\x3c\x4b\x25\xe6\xf3\x2d\x31\x00\x6e\x86\xe4\x58\xaf\x39\xb8\x68\x7e\xcf\xf7\x93\x9f\x86\x09\xb1\x40\xff\x73\xff\x85\x95\xe5\x56\x46\xd7\x24\x57\x57\x0b\x23\xcc\x81\x98\xde\x37\x80\xbb\x91\x2a\xb6\x7e\x20\x16\xe8\xde\x62\xb7\x29\xbb\xbf\xe2\x90\xe4\x24\xb4\xb6\x39\x0f\xa2\xee\x58\x6f\x05\x44\x8d\x45\x37\x56\x5a\x58\xe8\x52\xb9\xac\xfc\x32\x4e\xef\xad\x5d\xfa\x35\xcd\x6e\xd5\x81\x51\x20\x6b\x97\x26\xa4\x28\xac\x98\x36\xf0\x28\x4e\xad\xdb\x75\x1c\xac\x2d\xee\xb5\xb6\xab\x83\x1a\xde\xb0\x33\x6b\xe5\xe7\x21\x6f\x2c\x13\x48\x2b\x0f\x3e\x01\x8b\xe7\x61\x1a\xb2\x96\x3b\xca\xd1\x66\x29\xb0\xc6\x79\xc1\xd5\xd3\xd9\xd1\x2c\x18\xb5\x1d\xdc\xfb\x78\x57\x36\x99\x93\xdf\xe8\x42\x9e\xbb\xe6\x36\x15\xa1\x19\x56\xfa\x12\x2b\xfc\x4a\x0e\xc3\x68\x2b\x2e\x93\xd8\x61\x77\xba\xab\xb8\xfd\x9d\x3a\xb7\x12\x1c\xcf\x77\x0b\x14\xe0\x74\x9e\x2c\x50\x81\x09\xfb\x13\xe1\xc0\x2e\xa4\xb8\xa1\x13\xd5\x23\x51\x39\xc4\x1f\xec\x84\x95\x6b\x62\x63\x08\xcb\x6c\x9e\x2c\x70\x84\x72\x9c\x1f\x0e\xd1\x11\xc6\x85\x02\x41\x3e\xcb\x3c\x62\x90\x72\x1f\xbb\xb9\xb7\xea\x1a\xb3\x89\x14\x03\xc9\xed\x55\x09\x82\x4c\x33\x80\x2f\x55\x14\x94\xae\x13\x58\x59\x98\x7c\xd4\x72\x94\xce\x57\x2d\x25\x45\x6f\x53\x1d\xcb\x38\x0d\x05\x71\x77\x99\x13\x9f\x66\x79\xc1\x4e\x2c\x71\xc5\xeb\xfb\x9c\xed\x93\x8a\xfe\x40\xfa\x08\xc9\x49\x40\xe2\x1b\x46\xfc\xf5\xb5\xa0\x7e\x06\xd8\xaf\xca\x1e\x0f\xf6\x5f\x38\xd6\xeb\x38\x14\x37\x5c\x1e\x53\x62\x81\x78\xb3\xcd\x72\x6a\x35\xfa\x8d\xf2\x6c\x03\xcc\xe3\x49\x95\xfb\xc6\xf2\x8b\xce\xc2\x8c\x88\xac\xb4\x86\x1b\xf7\x5a\xce\xf0\x23\xc3\xee\x34\x7b\x95\x9a\xaa\x49\x52\x96\xc4\x6e\x2d\xe4\x63\x32\x8f\x17\xd3\x2e\xd0\x32\x9e\x23\x9f\xc7\x0b\xfc\xd1\xf6\x11\xad\xe8\x15\x83\xea\xf8\xf9\xf1\x98\x1e\xb4\x7a\xdb\x16\x14\x28\x79\xdc\xf5\x82\x6b\xb8\xd5\xe9\xb2\xa9\x24\xa5\x67\x7a\xde\x99\x51\xb6\x63\x9e\x70\xb3\xd3\xc6\x3b\x62\xd3\x47\xf0\x0e\x8a\x3b\xfc\xe2\xbf\xbe\x10\xb5\x22\x30\xdf\xff\x67\x97\xa1\x4b\x50\xa4\x65\x2f\x22\x5a\xb4\xf4\x99\x85\x89\x4c\xe0\x92\x33\xc5\x26\xa0\x04\xef\x35\x6f\xe0\x3b\xea\x27\xd2\x6c\x44\x47\x07\x3b\xae\xbd\xae\x2d\x41\x1f\x36\x8d\xb0\x88\x9d\x70\x53\x87\x1d\xfe\xb9\xbe\x8c\x31\xb4\xab\x31\x40\x74\xc1\x15\x9f\x50\xc5\xbc\xec\x18\x97\x50\x3e\xfa\x60\x7d\xfd\xe4\x63\xf3\xe5\x93\x4f\xda\x5f\x9e\x54\x4c\x7a\xff\xe4\x23\xef\xcf\x42\x68\xfa\x4c\x55\xfe\xa6\x9a\x9a\xf0\x91\x66\x8f\xcf\x85\xff\x82\x89\x2b\xdc\x17\x70\xf5\xb5\x40\x79\xbe\x16\x4f\x0c\x10\x45\xac\x84\xa9\xcf\x16\x76\x44\x09\x78\xcc\x83\x5a\xe5\xe7\x9a\x2b\x5e\x9a\x2e\x0f\xf6\xda\x5d\x35\x2d\x11\xd7\xc8\xe4\xae\xca\xf6\x66\x98\xe7\xed\x83\xdd\x99\x2d\xd5\x5a\x95\x4e\x0d\x7e\xe9\x68\x9a\x6d\xf0\xa0\x6c\xdc\x7d\xb7\xfe\xd5\x1a\xdd\x5a\x5f\x3e\x47\xb4\x19\x1d\x28\x10\xfe\x0c\x37\x3e\x2d\x1a\x4f\xa8\xad\xee\x1a\x5d\xa7\x90\xcd\x80\x3b\x98\xf6\xb6\x76\x68\xa7\xfc\x31\x1b\x51\x88\x42\xe9\x36\x99\x0d\x87\x4d\x51\xf8\xf5\x10\x65\xd8\x4f\x55\x86\xfd\x56\x65\xca\xba\x8a\x47\xcd\x8f\x28\x26\xd2\x61\x0b\x8a\x71\xe5\x7a\xc9\xc7\xda\x1d\x65\x81\x82\xa6\x37\x35\x1e\xb2\xa3\xee\x45\x1c\x6d\x31\x71\xa4\x1b\x71\xb4\xc1\xa2\x7f\xb6\xb0\xe8\xbe\x2a\xfb\x29\x0e\xd6\xd7\xe4\x8e\x4a\x3f\x11\xc5\xb4\xe9\x29\x3d\x0e\x3d\x00\xa4\xfb\xeb\x15\x4e\x9d\x38\xe4\x01\xfa\xeb\x7e\x23\x55\x60\x9a\x84\xc1\xea\xe8\x68\x85\xc0\xfc\xcf\x62\xdc\x3f\x17\x2f\x63\xae\x50\x79\x91\x5a\x3f\xc5\xe1\x4f\x6d\x0f\x54\x34\x53\xfe\x4f\xfd\xca\x09\x82\xe8\x6f\x89\x25\x19\xbe\x82\xe8\x16\xfb\x1d\xca\xb8\x5d\xa7\xaf\x8f\x96\xb0\xd7\xf3\xe7\x4b\x4e\x86\xd5\x1d\x65\xdd\x42\x61\x6a\x7a\xab\xed\x4c\x6f\xe7\xee\x42\x69\xed\x44\x8e\xaf\xb4\x32\x14\xde\xdc\x56\x0e\xe2\x18\x3e\xe5\xbd\xde\x6d\x97\xbf\xb7\xdb\x5e\xef\xbe\xd7\xab\xbb\xbf\x7c\xd1\x82\x01\x78\x00\xe8\xc0\xba\xf5\x0b\xab\xd8\x92\x40\xb8\x8f\x60\x54\x2c\x50\x2e\x3a\x79\x1e\xa3\x74\xb7\x39\x39\x0e\xb2\xcd\x36\x4e\x18\x4f\xf5\x63\xfa\x31\x21\x8c\xb8\x56\xa4\xbd\xb5\x2b\x18\x0b\x08\xaa\x4e\x83\x24\x06\xc2\x95\x99\xae\xc8\xc8\x99\x5c\x81\xb9\xe0\x74\xfd\x96\xe4\xbc\x86\x88\x2f\xfa\x26\xcb\xad\x4d\x96\x13\x2b\x24\xd4\x8f\x93\xc2\x2a\x08\xb1\x94\x73\x0d\xd5\xb2\x13\x67\x2f\xc3\x2c\x28\x5e\xae\x08\xa5\x71\xba\x3a\x2e\xa8\x9f\x53\x12\xbe\x94\x0d\x1f\x87\x31\x83\xd0\x72\xc7\xd0\xfb\x05\x44\x8f\x81\xed\xe8\x5e\x83\xda\x91\x02\x29\xfb\xe5\x8b\x1f\xf7\xb6\xf3\xcd\x0c\xfe\x58\xbe\x78\xb9\x8a\x11\xd8\xff\x71\x50\x0a\x5e\x2f\x7f\xec\x74\xb8\x87\x28\x17\x67\x42\x8c\xd7\x76\x8c\x36\x10\x85\x78\x6d\x87\xec\xc7\xd1\x2d\x3f\x11\xec\xa3\xff\x8f\xbb\x2f\xef\x6e\xdb\x56\x16\xff\xff\xf7\x29\x6c\x34\x47\x06\x2a\x68\xf3\x92\x85\x0a\xae\x9e\xb3\xb8\x49\x9b\xa5\xcd\xd2\x25\x92\x92\xc0\x12\x64\x33\xa1\x41\x95\x02\x6d\x29\x16\xdf\x67\xff\x1d\x6c\x24\xb8\x29\x4a\x9a\xdb\x77\x6f\x8f\xcf\xb1\x48\x00\x04\x06\x83\x99\xc1\x60\x00\xcc\x5c\xae\xd7\x61\xa3\x11\xb6\x45\xf8\x24\xbc\x62\xd1\x7d\xba\x60\x10\xed\x12\x32\xc9\xa7\xa0\x46\x63\xae\x1c\x2c\x2d\xda\x4c\xb9\x9c\x44\xf8\x12\xa9\x28\xb1\x46\x11\x6e\x17\x3d\x67\xc3\x4b\x3c\xc1\x53\x64\x18\x16\x46\x76\xcd\xb1\xcc\x8e\x12\x99\x0a\x27\x70\x4f\x71\xa5\x21\x7c\x89\xc2\x1d\x43\x1a\xa9\xa7\xb6\x59\x18\x79\x72\xf9\x78\xda\xdc\x03\x72\x79\xc4\xa7\x2a\xce\x56\xa9\xdc\x25\x8b\x4e\xa9\xf0\x2f\xf6\x70\x88\x39\x5e\x22\x54\xe1\x29\xef\x72\x70\xe9\x9d\x5a\x1d\xe4\x34\xd9\xdc\x8b\x2b\x1c\x62\x1f\xbb\xfe\xbc\x45\x52\xd9\xa9\x4d\xbd\xb1\x0e\xf7\xb3\x1e\x68\xea\xdc\x6b\xc2\xcb\x01\x28\xf4\x01\x78\xc0\x9f\x02\xd4\x04\x52\x61\x9e\xd1\x20\x38\xa5\x93\x8f\x6d\x60\x3b\x94\xf8\x33\xf8\xf5\xa8\xdf\x04\xa5\x5c\x66\x6e\x8b\xf7\x5a\x7c\x1b\xbc\x56\x10\xf7\xe0\xca\xab\x1b\x0b\xbd\xb7\xa5\x0e\xa5\xe3\x33\x32\xd4\xe1\x75\xd8\x53\x09\x34\x8b\x80\x1c\xc2\x55\xc0\x00\xce\x1c\x65\x65\x8f\xc6\x89\x36\xb0\x81\xe8\xd4\x8f\x93\xb8\x60\x3f\x44\x61\x3c\xd7\xa1\x96\x2e\x7c\xee\x5f\xc4\x17\x8f\xb9\x60\x67\x2c\x7a\xe0\x9f\xf9\x26\x3c\x93\x4a\x3e\x89\xf4\x22\x3b\x4b\xa7\xcb\xea\x74\x5d\xfe\xa5\x7f\xc6\xfd\x99\x3f\xa1\x5c\x14\x3f\xa9\xca\x52\x97\xf1\x26\x0e\x6c\xe5\x2e\xd8\x14\xf9\x39\xc0\x80\x87\xc2\xc6\x33\x93\x0a\xfc\xc6\xae\x3a\x11\x46\x2f\x73\x7b\x56\xd9\xf4\x19\x3a\xd3\xa7\x9f\x4d\x86\xa5\x39\x2e\xb1\xd6\x3e\x6e\x8a\x4b\xcd\xd8\xce\x36\x70\xd5\x66\x08\x86\x38\x3d\xc7\x46\xb1\x8f\xa4\x94\x49\xaf\x04\xc3\x08\xa7\x45\xa7\x08\x72\x7c\x86\x63\x77\xb7\xe7\xd4\x99\xdf\xd3\x90\x5c\x72\x9d\xa6\x5a\x76\x08\x5b\xf7\x23\x4a\xe9\x98\x3b\xc7\x83\x52\xe8\x0d\x3d\x53\x08\x4e\x9e\xbf\x78\x7a\xfc\xea\xdd\xc3\x17\x2f\x9e\xbf\x00\x18\x94\xc8\x5b\x03\x2c\x19\x29\x5b\x07\x9a\x09\xd5\x75\x0d\x71\xf5\x95\xe0\x59\xef\xaa\xdf\x1e\xca\xa1\x8e\xd5\xbb\x54\xda\xee\x11\xc2\x0f\xc9\x30\x73\x24\x66\x78\xc3\x19\xfe\x8f\xb6\x03\x6a\x91\x63\xbb\x10\x2a\xff\xeb\x72\x32\xd0\xc7\x14\x81\x76\x49\x06\x10\xae\x89\xe1\xb1\x5e\xe7\xa1\x5f\xb6\x29\xdc\xab\x29\xbb\xe3\xeb\x39\x99\x5e\x52\x3f\x30\x31\xba\xb5\x05\x93\xf1\x4b\x3f\x0a\xb9\x9c\xd7\xdb\x23\xfe\x2a\x5a\xed\xcc\xc3\x60\x35\xf3\x83\x40\x19\x68\x45\x79\x9a\x96\xba\x41\xcb\xc6\x06\x90\x3a\x9a\xce\x01\x23\xbe\x87\xc1\xd3\xc7\x2f\x5f\x3e\x7e\xf6\xc3\xbb\xc7\xcf\x5e\x3d\x79\x77\xfc\xf3\x63\x80\x72\x43\x52\x5c\x6a\x7c\x43\x06\xd8\xdd\x2d\xb3\x80\x85\x72\x1b\x26\x78\xa8\x98\x40\x01\x16\x66\x14\x8d\x53\xd9\xec\x97\xa9\x65\x02\xcb\xe4\x61\x9b\xd4\x3e\xd6\x01\xf6\xab\x68\x59\x02\xff\xb2\x42\x8c\xea\x7a\xb2\x77\xab\x01\x03\x0c\xce\xc3\x38\xea\xed\x03\x0c\x8c\xff\x3e\x80\x01\x8b\x28\xc0\x60\xc5\xa8\x8a\xd0\x1c\x72\x71\x0e\x30\xd0\x59\xb2\xb4\x96\x83\xb1\x0e\x66\xa7\x69\x29\xab\xf1\x19\xbd\xb0\xb5\xde\x5f\x4d\x94\xec\x96\x4b\x82\x97\x46\x8e\xcb\x62\xf6\x79\x66\xa4\x2b\x0d\x5e\xaa\x5a\x32\x79\x49\x03\xc6\xa7\xaa\x75\xcd\x14\x3e\x3f\x7b\xb9\x5a\x08\x76\xe1\x52\xfb\xab\xad\x57\x0b\x56\xf7\x0f\x1c\xdd\xbf\x5f\xc1\xe2\xfa\x6e\x71\x64\x87\x7e\xb1\x49\xc5\x0a\x1a\x8d\x6c\x81\x18\x24\x08\x4f\xf2\x44\xe2\x63\x81\x27\x98\x2a\x67\xfb\x2e\x3d\x44\xf8\x25\x5e\xa4\x8e\xd2\xd4\x99\xe4\x5d\x42\xc4\x7a\x3d\x6b\x4b\x9c\xc9\x5f\x8d\x5c\xf9\xa4\xb1\xbb\x5e\xc3\xd9\x26\x50\x66\x08\x7f\xd6\x69\xa2\x5c\xb3\xc3\x10\xcf\x50\x61\xd3\xad\x56\xdc\x69\x94\x96\xa7\x6d\x3e\x90\x24\xfa\x80\x0a\x06\xf9\x7a\xdd\x45\x1e\x77\xd9\xf0\x95\x72\xf3\xa9\xce\x5e\xbb\xf2\x3b\xdc\x40\xeb\x5b\x48\x46\x59\x61\x25\xc5\x87\x28\xb7\x4b\xf6\xef\xe9\x8e\x3e\x37\xfe\x0d\xbb\x53\xcb\xc0\x6e\x77\x7e\xfe\xdb\x46\xc7\x4e\x5f\xdf\x7a\x90\x86\xe3\x82\x19\xfc\x6f\x19\x9c\x6f\xd4\x9b\xd2\x18\x99\xa9\xf8\x43\x85\x70\x55\x27\x27\x1c\xc1\x74\xbc\x51\x30\x95\xa6\x9e\x14\x0f\xb8\xe8\xb5\x77\xbd\xf6\x0b\x13\xb0\x93\xf9\xcd\x67\x5e\x7d\xe7\x21\x92\x75\xd7\x4f\xb9\x7a\x76\xcc\x0b\xb4\x0f\xb9\x99\x58\xc0\x10\x53\x64\xee\x58\xe4\x36\x9c\xfc\x0d\xb3\x9b\x6e\xbc\x0d\xd4\x5c\x69\x84\xa3\xda\xda\x03\x0a\xed\xcf\xea\xd0\x9e\x6a\x41\xf8\x05\x91\x84\xd2\xe6\xe1\x15\x74\xec\x81\x8f\xff\xd2\x58\x64\x51\x86\xca\x43\x91\xe5\x7d\xf3\x91\x08\xfc\x85\xf8\x9c\xee\x53\x35\x10\xcf\xf4\x40\x68\x07\x10\x72\x8e\xaa\x76\x25\x95\x8f\x04\x9f\x6e\xf4\x18\xa3\x7f\x85\xd1\xfa\x45\x13\xbc\x53\x6e\x3b\xdf\x81\xe6\x8b\xc4\xf1\x57\x16\xab\xf3\xb4\x98\x17\xe4\x98\xf2\x85\x55\x15\x3f\x3e\x46\x59\x74\x73\x45\x25\x79\x9e\x0d\xea\xa2\x4c\x98\x83\x21\xc6\xfe\xe4\x34\x3e\x30\xa1\x03\xe4\x33\xaa\x58\x64\x6e\x0c\x3f\xc0\x6d\xe0\x01\x9e\x86\x1c\xf0\x72\x70\xc1\xc0\x52\xef\x24\xa3\xde\x2d\x84\x87\x1c\xbf\x36\xc0\x13\xe7\x94\x8c\xa2\xe2\x93\x0d\x0b\x5c\x43\xcd\x76\xd5\xef\xca\x93\xa7\x5b\xd1\x70\x29\xc8\x5e\x99\x64\xdd\xdc\x6f\x4e\xb4\xc6\x83\x8b\xda\x74\xff\x32\xb2\x3d\xa9\x92\x1f\xe1\xac\x52\x76\x6c\x33\x11\x69\x40\xd4\xf6\xbf\x11\x28\x0a\xfb\x0f\x94\x1b\xde\x2e\xc2\x4f\x94\x63\xde\x07\x08\x7f\x32\x21\x58\xf0\x6b\xf2\xa4\x4d\xd7\xeb\x07\x19\xce\x7f\x73\x42\x8e\x98\x90\x0e\x29\xd6\x53\xb5\xcf\xb1\x24\xdb\x88\x97\x99\xe2\x99\xbf\xaf\xce\xda\xb9\xf7\x2c\x2c\xa6\x63\xcb\xce\x87\xc3\x2c\xd9\xb5\xf3\x91\x31\x4b\x46\x6e\x1b\x27\x33\x53\x77\xaf\x22\x3a\xb7\x16\xd6\xfb\xe7\x31\xff\xb8\x78\xcc\xed\xad\x79\x8f\xb5\x37\x65\xe3\x1a\x03\xad\x57\x6b\x2f\x77\xf6\xbc\x6f\xb8\xfb\x5d\x9f\x8d\x62\xe3\x2e\xd7\x9c\x6d\x3c\xb5\xbf\x67\xe8\xe4\x53\xfb\x14\xc1\x28\x0d\x63\x43\xf5\xab\x17\xd9\xb0\xa3\x1e\x53\x03\xfc\x2b\xc9\xaf\x02\x2d\xc3\xf8\xc4\x6e\x2c\xdc\x80\x51\x26\x98\xf2\x06\x71\x1f\x0d\x2a\x9c\x03\xf8\xc8\xf3\x13\x7c\x8f\x54\x89\xa3\x5a\x54\x64\xae\xb3\x95\x83\x7d\x86\x87\xb5\xf6\xee\x31\xc2\x3e\xb9\x21\x05\x50\x50\xd9\x46\xca\x28\xa7\x08\x0a\x84\x37\x1b\x7d\xdb\x54\xed\xcc\x84\x24\xca\xe4\x43\x54\xa0\x22\x4a\xa2\x54\x62\xd8\x2b\x10\x83\xdd\xad\xa2\x95\x84\x28\xdd\x2b\xa0\x03\x6a\xf8\x71\x0a\xf7\x9e\xfa\x0b\x25\x10\x74\x9b\x52\x0f\xa4\xca\x9e\x6e\xd8\x66\x07\xec\x35\xc3\xe6\x1e\x90\xf2\xa5\xdc\xce\xce\xeb\x85\x6b\xcc\x75\xbe\xf1\xe5\x37\xae\x1d\x74\xe7\xe5\x26\x0b\x7c\xc4\xe8\x44\xb4\xa4\x24\xfa\x2e\x8a\xb9\xe4\xcb\x96\xf1\x55\xa1\x30\xad\x20\x72\xed\xf9\x7b\x08\x79\xbb\x15\x11\x20\x3e\xd7\xf3\x46\xe3\x2f\x74\xbd\xd0\xd4\xff\x69\xe7\xa1\xd3\x95\x53\xb8\x67\x26\xa6\x6c\x97\xc5\x5e\x15\x63\x53\x6b\xb3\xfe\x2b\x70\x75\xe8\xdc\xff\x4e\x3e\xa8\x68\xf2\x55\x00\x61\x4b\xb5\x45\x9a\x5d\xaf\x01\xe3\x20\x8d\x11\x55\x45\xfa\x11\xca\xd9\xe9\xb9\x11\xc7\x9a\xd2\xbc\x53\x15\xfc\x42\x9d\x70\xc1\x11\xe6\xed\x42\xe4\x14\x94\x2b\x6d\x74\x11\xef\x6a\xbb\x8f\x5c\x8b\x98\xf7\xb1\xfc\x4d\xd9\x62\x66\xbf\x94\xb4\xe0\x3d\x2f\x7f\x51\x08\x48\xe2\x94\xb6\xa0\xfd\xbc\xed\x47\x0a\xa8\xfb\x5f\x52\xda\x36\xf1\x6e\xdb\x8f\x4c\x40\x9f\xe3\x72\x79\x37\xfa\x88\x29\x6c\x83\xeb\x5d\xe4\x4b\xdb\x6c\xa9\x51\x7b\x8f\xcb\x35\x65\x9a\x76\x8a\x0d\xc7\x5b\xdc\xd3\x0a\x50\xdd\x40\x96\x09\x4a\x36\xc5\x3c\x53\xce\x65\x42\x84\x45\xf1\x26\x71\x55\xe1\x20\xa5\x33\xdb\x95\x5f\x9d\xd6\xad\xa2\x10\x94\x14\x85\xa0\xac\x28\x04\xa9\xa2\x90\x9f\xf6\x83\xcd\xd3\x7e\x50\x9c\xf6\x53\x45\x22\xc8\x14\x09\xab\x0a\x04\xa9\x2a\x50\x37\x9d\xfb\x09\x0e\x9c\x20\x45\x12\x59\xf8\x51\x6e\x09\x90\xce\xea\x02\xda\x6b\x61\x26\xe0\x02\x6b\x34\x58\xf5\x4d\xc8\xf5\x5a\x45\x3e\x4b\x77\xa9\x54\x44\x99\x6c\x2e\x9b\x20\x88\xb0\x68\xab\xe3\x8b\xc4\x84\x9b\x31\x85\xb0\x14\x11\xde\x3d\xf8\x1b\x54\x9b\xdb\xf3\x85\x2c\xa8\x72\x10\x9e\x47\xec\xf2\xbe\x12\x4a\x5e\x96\x9d\x60\x91\x14\xc7\x4d\xce\x95\xea\x90\x45\xbb\xce\x3b\x63\xe5\x5c\x2b\xda\x59\x0b\x38\x22\x16\xa2\x90\xfc\xe6\xdc\x62\x7b\xad\xb6\x40\x07\x5c\xc5\xfe\x30\xc0\x86\x52\xfe\x38\xd0\x85\x49\x82\xdd\xbd\x79\xbd\x77\x56\x71\x14\x3e\xd5\x67\x26\x48\x47\xae\xd2\xc7\x89\x65\xb5\x08\x87\x85\xc0\x15\x7e\xfb\xd4\xde\xea\x2d\x94\x35\x81\xc3\x14\x42\xd2\x48\x1e\x12\x33\x6e\x44\x57\x02\x5c\x0f\x4d\x00\x8b\xb6\xeb\x82\x91\xd0\x36\xc5\x22\x81\x61\xfb\xe7\x38\x62\xa9\x9a\xaa\x03\x86\x3c\x4a\xf0\xed\xcf\x5c\x5c\xfd\x67\xb9\x21\xd2\xab\xac\xd2\x78\xc1\xf0\x9f\xe2\x09\x28\xff\x66\x0e\x54\xc2\xa3\x5b\x08\x53\xd2\x81\x03\x6f\xf8\x90\x4d\xc6\xd7\x3d\x7c\x33\x59\xff\x70\xdd\xc3\x47\xc9\x7a\xf8\xcb\x9f\x63\xfd\x24\xb3\x57\x7f\xc4\xd1\xb8\xb9\x7e\xad\x52\xd0\x7a\xf8\xf4\x89\xc9\x9c\x5e\xf7\xf0\x7e\xb2\x7e\x70\xdd\xc3\x07\xc9\xfa\xe4\xba\x97\xac\x87\xf4\xf4\x9e\xc9\x1d\x9e\x7f\x7c\xf4\xd3\x58\x17\xb9\xd2\x3f\xbf\xc9\x22\x17\xfa\x79\xa1\x7f\x86\x9f\xde\x3c\xbf\xfc\x75\xf9\xbb\x2c\x78\x98\x20\x38\x20\x70\xf8\x76\x6f\xfc\xfd\x9e\xfe\x8f\xbe\x57\xbf\x37\x50\xe7\xac\xe0\xc6\xcc\xfa\x5a\x48\xd1\x91\x9e\xa3\xa0\xb8\xe4\x2f\x5a\xea\xef\x66\x60\x16\x57\xbe\x5c\x65\xb2\x61\x77\x8c\xae\x27\x74\xc1\xc0\x0f\xc0\x13\x6d\x16\x51\xa2\x1c\xa9\x0f\x74\x10\x23\xef\x48\xbf\x70\x1a\x45\xe1\x15\xb0\xb1\x7b\xfa\xa7\x11\xa3\x1f\xfb\xea\xbb\x95\xfc\x6e\xc5\x68\x44\xf6\x75\x59\x1b\x88\x29\xb3\xc4\xbb\xc5\xff\x00\x9e\xfa\x8d\xcd\xef\x6b\xf3\x1b\x01\x2f\x3b\xe8\xfb\x82\xf2\x33\x7b\x7b\xe7\xfd\x1f\x9d\xb8\xf3\xba\x13\xbd\xdf\x81\xb2\x15\xb4\x33\x57\x72\x9b\x2f\xd4\xd9\x76\xa9\xb5\xa5\xda\x2b\x56\x37\x06\xde\xaf\xde\xdb\x13\xb9\x00\xe9\x46\xff\x34\x8d\xfc\x52\xdb\xc8\x9f\x9d\x5f\xde\xef\xc0\x3f\x63\x1a\x09\xb6\xb1\x0d\x5b\xe5\x53\x53\xe5\x13\xd9\x7d\xb5\x5f\x94\xdb\xa7\xb4\x48\xc0\x36\xfc\x94\x09\x0a\x65\x31\x39\x1e\xf2\x56\x6f\xec\x22\xe6\xca\x54\xf8\x5b\x2d\x8c\x57\x9d\xdf\xde\xef\xc0\x2b\xc6\x3e\x6e\x03\xe0\x54\x02\x36\xa5\xab\x4a\xb0\xca\xcd\x3f\x30\xcd\x9f\x98\xdf\xb3\x5a\x30\x1e\x74\x4e\x3a\x67\xef\x77\xe0\x94\xae\xb6\x18\x8c\x69\x69\x30\x1e\x4a\xc0\xcc\xc6\x9b\x25\x36\x8d\xa4\x2d\xa8\x8d\x01\xcf\x9f\x41\x7e\xf7\x10\xd5\x40\xc7\xda\x6d\xc6\x98\xc1\xd3\x67\x40\x04\x52\xd6\x5b\x48\x86\x35\x23\x65\x47\x50\xa2\xec\x30\x87\xb2\xc9\xe7\x60\x99\xb4\xdb\x93\xc9\xe4\x6f\x81\x85\x4a\xa4\xea\x6d\x4d\xb2\xdb\x75\x73\x4e\xcd\x80\xde\xab\x1d\xd0\xd3\xce\xbd\xf7\x3b\x70\xce\x22\x3f\x9c\x6e\x31\xa2\xb4\x34\xa2\xe7\xb6\x71\xb5\xfb\x49\xc0\x79\x6f\x5f\x4e\xb6\x32\x65\x4b\xea\x7b\x54\xac\x61\xff\xe0\x0b\x6b\xf8\xa9\x04\x43\xef\x0b\x6b\xf8\x58\x82\xe1\xf0\x0b\x6b\xf8\x60\x50\xfd\xa3\xf9\xbd\x5f\x8b\xf2\x0f\x9d\x1f\x3b\xf7\xdf\xef\x40\x59\xf9\x16\x28\x3f\xef\x3c\xea\xfc\xd4\xf9\x58\x42\xfc\x85\x12\x3e\x6a\xdf\x73\x4b\x10\x17\xf2\x0b\xbd\xc5\xba\xe5\x17\x2f\x4d\x67\x8e\x6b\x3b\xf3\xb2\x73\xfc\x7e\x07\xea\x4a\xb7\xe8\xcc\xa2\xd4\x8d\x4f\x12\x28\x77\x33\x9d\xf0\xbb\x87\xa9\x50\xd0\x3c\xe0\x82\xf4\xc6\x80\xf4\xdc\xfc\x5e\x9a\xdf\x5f\xcd\xef\xef\xe6\x77\x59\x0b\xf2\x9b\xce\xf3\xce\x65\xe7\xd7\xce\xef\x9d\xe5\xfb\x1d\x68\x9b\xde\x02\xf8\x4f\x0e\xf0\x76\xcf\x46\xed\x34\x0b\xe3\xd3\xb3\xf3\x76\xd4\x86\x03\x0f\x76\x9b\x08\x8e\xbe\x47\x83\x35\xfc\xae\x89\xd6\xea\xf5\xbb\x26\x42\x37\x3a\x67\x78\x42\x3a\x6f\xe1\xff\x34\xd1\x00\x8e\x9a\xeb\xef\x9a\x68\x70\xc3\x9d\xd6\x17\x9b\xa7\xf5\x89\x3b\xad\x63\xe7\xf8\x74\xd9\xc1\x76\x34\x80\x8a\x3a\x2a\x8f\x68\xa5\xb1\x52\xb0\x68\xd7\x1d\xe3\x4a\xcb\x20\x0f\x34\x01\x21\x24\x1a\x6c\x51\xa1\xa7\x63\xca\xf0\x61\x77\x3c\xd8\xa2\x6e\xef\x5b\x01\xd9\x84\xe5\xbd\x90\x68\x60\x5d\xfc\x7a\x5d\x15\xe6\x43\x0f\x55\xfe\xd6\xbd\xd5\x85\x8c\x22\x24\xd5\xdc\x16\x8d\x45\x08\x3c\x63\x0c\x77\x8e\xa3\x79\x40\xe5\x24\x7d\xa7\xe8\x64\x12\xc6\x5c\xc8\x86\xed\x07\xee\xc9\x36\x0f\x38\x05\x72\xdf\x05\x57\x74\xb5\xa8\x69\x44\xe7\x55\x37\xb3\xcd\x97\x78\x2b\x10\xd8\x72\xc2\xe6\xa2\xf5\x89\x45\x35\x9d\xd5\x05\xde\xc8\xfc\x1a\x58\xbe\xa4\x8a\xed\x80\xe2\xec\x92\x45\xd5\x75\xe9\xac\x92\xf7\x01\xcd\x2d\x33\x67\xc9\x2a\xd6\xeb\xeb\xa4\xe0\xa6\xb1\xe8\x9a\x0c\x47\x84\xc9\x05\x4a\xee\x8e\xbd\x5e\x17\x44\x43\x3e\xb6\x2a\xb2\xdf\x5e\x08\x76\x61\x68\xc3\x06\x28\x95\x42\x54\xac\xe4\x2c\x61\x53\xfa\x93\x50\x76\x25\x66\x46\x37\xb0\x67\x37\xb3\x92\xd9\x71\x4e\xd1\xb6\xcf\xc4\x6f\x87\x3a\x50\xeb\xb0\x3b\x2e\x54\x71\x16\x85\xf1\xbc\x15\xce\x66\xb2\x0e\xe7\x64\x27\xd9\xed\x15\x4a\xce\x23\x36\xf1\x17\x7e\xc8\x5b\xbe\x3e\xeb\x69\xe4\x5f\x5b\x4d\x0f\x55\xc7\x3a\x49\xb7\x50\xc5\x05\xa3\x8b\x38\x62\x2d\x75\xd6\x32\x83\x59\x1f\xbd\x14\x6d\xf9\x9b\x83\x35\x3b\xae\xfd\x56\x1d\xd6\x6e\x75\x30\x90\xe2\x3c\x8f\x04\x7d\x06\xb4\x65\x04\xb9\x68\xdb\x23\x9e\xc4\x66\x29\x5c\xe4\x4e\x8a\x12\xab\xf4\x55\x57\xa5\x57\x25\x5b\xd6\xa4\x27\x8e\x7c\x45\x8b\x89\xcf\xb8\x90\x12\x04\x78\x82\x84\x50\xfe\xa9\x5b\x19\xf8\xda\xd6\xe9\xb9\x85\x12\x84\xd3\x7e\x6f\xbe\xb7\x66\x6a\x62\x08\x4f\x95\x83\x65\x1d\xed\xbf\xd0\x3c\xe3\x67\x3e\x67\xea\x74\xd7\x86\xf6\xdd\x52\xdf\x18\x00\xdb\x48\x6b\xe1\x5f\xcc\x03\x96\xc7\xe5\x42\x50\x3e\xa5\xd1\xb4\x88\x34\x39\xfc\xad\x2b\x7f\x2a\xce\x5b\x56\x37\xcf\x68\x38\x45\xb7\xce\xd2\xbe\x9a\x2c\xd1\x14\x32\x37\x54\x9c\x12\x49\xa9\xde\x49\x38\x65\xa5\xfa\x2a\xa9\xc4\xa9\x6e\x16\x07\x41\x8b\xd3\x0b\x56\x03\xea\x45\xb9\xca\x2a\x72\x71\x6a\xf4\x17\x61\x4b\x81\x52\x55\xa1\x09\xe9\x98\x7e\x9d\xf8\x33\x18\xb4\x05\x5b\x08\x2b\x40\xd4\x19\x84\x6c\x24\x6d\x68\xa5\x9a\xb5\x83\x65\xd7\x56\xca\xdb\x3b\xb2\x96\xc5\x4e\xc8\x83\xd5\x0e\x9d\x48\x99\xba\x43\x77\x16\x3e\x3f\x0b\xd8\x8e\xae\x94\x06\xe6\x01\xa0\xbe\x6e\x34\xe5\xd2\xa0\xa8\x35\xa8\x73\xfe\x34\xd5\x1d\xbe\x2f\xcc\xee\x05\x69\x91\xce\xd5\x61\xa3\xa1\x67\xf7\x30\x37\xbb\x17\x8a\x87\xb6\xb8\xdf\x68\x50\x47\x09\x29\x14\xf3\x4b\x93\x7b\x4d\x81\x26\x4d\xf5\x90\xda\xca\xca\x9a\x42\x4d\x01\xab\x05\x14\x87\xa2\xd1\x80\x9a\x1f\x35\x37\x2e\xa0\x2b\xee\x10\x32\x91\xf8\xfd\x19\x9c\xe4\x87\xb5\xf8\x91\x4e\x55\xc1\x83\xae\xf5\xce\xff\xcc\xa6\xf6\x69\xa1\x11\x8a\x90\x13\x32\xa4\xec\xb7\xcb\x31\x44\x9b\x31\x43\xa6\x4e\xe3\xe3\x4d\x9c\xfb\x45\xd3\x33\xb5\x36\x71\xc2\x31\x6d\xdb\x8b\xd1\x24\xc2\xb4\x3d\x53\x5e\x5d\x43\x4c\x95\xb1\x5e\xb1\xbc\x8f\x69\x9b\x2b\x53\xe9\xcb\x15\x17\x74\xa9\xc8\x0f\x54\xba\xce\x50\x59\xed\x09\x9d\x8b\x38\x62\x2f\x05\x9d\x7c\x7c\x15\xd1\x09\x6b\x34\x6a\x32\xd4\x1d\x64\x4c\x4b\xf7\xed\xff\x7e\x2f\xe7\xd6\x34\x7e\x1a\xfb\xc1\xd4\xec\x62\x90\x5a\x78\x5c\x8f\xce\x13\xe3\xa3\x54\x85\x46\xcc\x3c\x43\xf4\x6e\xca\x97\xd7\xf3\xb9\xbd\x30\x94\xb8\x5e\x0c\x9d\xef\xd3\x59\x72\x34\xea\x9c\x61\x30\x1a\x8d\x46\x00\x65\xa9\xa0\x73\x86\xf7\x46\x23\xb0\xe7\xa4\x8d\xba\xba\x64\xd7\x2d\x38\x12\x3a\x51\xe4\x12\xb9\x4e\xe4\xb9\xc4\x48\x27\x46\x6e\xe2\x70\xb4\xec\x76\x5b\xa3\x65\xf7\x64\xdc\x39\xc3\x15\x77\x74\xc1\x68\xb4\xec\x82\x26\xd7\xc7\x98\x72\x1f\xf6\xe4\x87\xbd\x93\xd1\xf2\xd6\x49\x6b\xb4\xbc\xb3\xa9\x86\xb4\x82\xca\x98\xbd\x9f\x47\xc7\x68\xac\x53\xc7\xb9\xc4\xb7\x3a\xf1\xad\x9b\xd8\xd2\x69\x2d\xf0\x8f\x45\x9c\xef\xae\x4c\xb4\x87\x2b\xad\x82\x5a\x6f\xd1\x46\x41\xde\x03\x7b\xcd\x08\xea\xa3\x36\xca\x25\x90\xd1\x97\x02\xba\x58\x00\xef\xd2\x04\x63\x9c\xd3\x48\x2c\x6a\x2f\x68\xe7\x4f\x85\x30\x34\x08\xb5\x61\xb8\x09\x5a\xa0\x29\x9f\x7b\x63\xe4\x85\xb9\x23\x6e\x60\x08\x9a\x90\xb5\x7d\x7e\xc9\xe4\xea\x78\x00\xde\x02\x0f\x00\xd4\x14\x4d\x30\x06\xc6\x24\xc5\x57\x16\x48\xf9\xbc\x23\x79\x89\x4e\x04\x8b\x80\x55\x85\xa6\x69\x3e\xe3\xca\x7b\x82\xcf\xe7\xb1\x30\xd9\xfa\x24\xa4\x97\xd2\xce\xd4\x44\xa5\xf2\x43\x6e\x65\x66\xe6\xd9\x09\x34\x4b\x9e\x1c\xe5\x2c\xa7\xc2\x8d\xce\xa1\xaf\x6f\x0f\xb6\x17\x61\x24\xa0\xda\x74\x37\x0e\x3e\xf4\xa2\x40\x90\x9e\x8a\x07\x2e\xb2\xb5\x80\x50\x6e\xf9\x45\xab\x37\xde\x25\x24\x1a\x8a\xb1\xf2\xac\xc0\xc7\xea\x19\xcb\x95\x42\xdf\x96\x25\x3c\x31\xc3\x64\x53\xf4\x40\xed\xf4\x2c\xec\x91\xd2\xed\x65\xd2\xbe\x9b\xd4\x04\x3b\x61\xb4\x03\x9a\xd1\xb0\x37\xee\x9b\x8d\xa9\x34\xdf\xf8\x8d\xeb\xe2\x56\xcf\x8d\x30\xda\x04\xd8\x7e\x14\x65\xc7\xfa\x92\x04\x32\xd4\x04\xfa\xea\x68\x13\x42\x48\x89\x40\x03\x4d\x19\x54\x11\x85\x97\xc7\x30\x52\x01\xc8\x63\x3e\xb5\x97\x6d\x69\x82\x45\x02\x95\x20\x47\x95\x1e\x1d\xad\x4f\xbf\x5d\x29\x80\x85\x97\xf9\x59\x95\x8b\x29\x4a\xae\xd5\x25\x50\xef\x19\x4b\x70\x40\x9e\x31\x3c\x21\xaf\x18\x04\x77\x01\xde\x55\x17\xd7\xab\x9c\x02\x64\x5e\x90\xf1\x4c\x95\xfe\x4e\x97\x9e\x92\xfb\x0c\x02\x41\xcf\xcc\x26\x20\x40\xf8\x42\xe5\x77\xfe\xa5\x0b\xac\xd4\x9b\x79\x39\xd3\x0d\x75\xf4\xdb\xa5\xfa\xd6\xee\x01\x65\x15\x9c\xaa\x52\xd7\xba\xd0\x95\x7a\x49\xf4\xcb\x52\x7d\xa1\x6f\x5c\xbc\xfc\xc8\x02\x26\x42\xfe\x78\x0a\x10\x7e\x48\x3a\x6f\x87\x7b\xa3\xce\x75\x32\xee\xe0\x8f\xe4\x39\x83\x43\xb0\x07\x30\xe8\x00\x2c\x2b\x02\x09\x18\xe3\xdd\x9e\xaa\xe3\x25\x31\x6e\x86\x24\xc5\x27\xf8\x55\x45\x95\xaf\xc2\x8f\x8c\x3f\x37\xca\x19\x7e\xae\xfb\xa3\x21\xb8\x5f\x57\x1c\x20\xfc\xb3\x2a\xe8\x79\xba\xe4\xbb\x2a\x3c\x86\xa2\x3d\x0f\xe7\x50\x4e\x95\x99\x28\x5b\x7c\x7f\x43\xad\xc7\x12\xfc\x41\xd5\x80\x75\x05\xc7\xea\xc5\x5e\x65\x93\x29\xcf\x48\x71\x8b\x33\x5d\x4b\x98\x3e\x99\xd2\x6a\xe2\xf5\xdb\xd4\xf8\x76\xf7\xf4\x91\xfa\x34\x55\x5d\x8c\x97\x0f\xea\xca\xbb\x5a\x3c\x7a\xbc\xd1\x50\x11\x56\xf5\xfe\x2d\x4b\x30\x15\x10\xa1\x04\xbf\x50\x50\xec\x69\x00\x1e\x4b\x34\xbf\xdd\x1b\x77\xf0\x89\xc5\xf1\x18\xef\x76\x55\xde\x53\x95\x47\x5b\x9f\x8e\x5b\x6f\xf6\xd4\x38\x3c\x50\x65\x86\x80\x02\x0c\x3e\x81\x31\x1e\x82\x63\x80\xc1\x1b\x30\xc6\x6a\x6c\xd2\x71\xd1\xdf\x3f\x91\xdf\xeb\xcf\xc7\x1d\xfc\xa9\xee\xdb\x74\x1c\x5f\x2b\xc0\xf4\x5d\x01\xf9\xfe\x9b\x7a\xd7\xa7\xed\xe5\xfb\x0d\xf5\x6e\xdd\xe4\xcb\x94\x5f\x55\x8a\x3e\xf6\x1d\x46\x53\x9f\xdb\x8c\x7b\x2a\x23\x9c\xcd\x16\x4c\x98\xd1\x7b\xe4\x94\xd5\x29\x7f\xaa\x14\xa2\x5f\x7e\x51\x64\x70\x75\xee\x0b\xed\xbf\x09\x20\xfc\x93\x84\x7f\x24\x5a\xa3\x68\x67\xb4\xbc\x7d\x34\x5a\x1e\x77\x47\x71\xef\xe6\xed\xee\x28\xde\xef\xca\x69\x49\xfe\x1c\xcb\xff\xfb\xb7\xd5\xff\x3b\xea\xff\x89\xfc\x7f\x74\x32\x8a\x0f\xba\xdd\xee\xb8\x83\x7f\x30\x1d\x1f\x09\x80\xc1\x28\x92\xc8\xda\x91\x4f\xcb\xdb\x47\xea\x87\x76\xe5\x8f\xaa\x18\xe0\x21\xd0\x95\xab\xa4\xfd\x6e\x97\xca\xe2\xba\x09\x93\xb4\x7f\xc7\x3e\xcc\xcc\xc3\x91\x7e\x90\xcd\x65\x4c\xf1\x87\xea\xcf\x42\x29\x95\xd6\xac\x0a\x10\x7e\x23\xfb\xb4\xdb\x1a\x75\xbc\xd6\xff\x0c\x5b\xa3\xb7\xef\xaf\x5b\xff\x3b\x5a\x1e\xf7\x5a\xa3\xe5\xf1\xad\xd1\xf2\xf8\xce\x68\x79\x7c\x6f\xb4\x3c\xbe\x3f\x5a\x1e\x3f\x1c\x2d\xef\x75\x47\xcb\x7b\xbd\xd1\xf2\xde\xcd\xd1\xf2\xde\xbd\xd1\xf2\xde\xc9\x68\xf9\xe0\xd6\x68\x79\x72\x4b\x36\xdc\xd3\x38\xd8\x57\x2f\x07\xfa\xe5\xe0\xa1\xfc\x7f\xd8\x53\x2f\x47\x07\xea\xff\x91\x7e\x91\x39\xbd\x3b\xaa\xd8\xa1\xc4\xcf\xfe\x91\x46\xe2\xad\x5b\x47\xf2\xff\x9d\x43\xf9\x72\xef\x44\xe6\x3c\xd4\x39\x0f\x6f\x69\x34\xca\xda\x0e\xba\xdd\x03\xf5\xff\xb6\x7a\xd9\xef\xca\xff\x07\xdd\x51\x7c\xf2\x40\xb6\x79\xf2\xe0\xe0\x64\x14\x9f\x3c\x3c\x3c\x52\xff\x6f\x8e\x3b\xf8\x77\x83\xf8\x5d\x25\x36\x24\xc5\x79\x00\x83\xff\x51\x4f\x43\x80\xc1\x5b\x89\xdb\xf7\x12\xe7\x92\x70\xff\x57\xa5\x8f\x96\xb4\xa7\x47\xe5\x96\xc2\xfc\x92\xde\xd1\xaf\xa7\xfa\x67\xa2\x7f\x98\xfa\x39\xed\xea\x1f\xfd\xc5\xe9\x4d\xfd\xa3\x4b\x9e\xaa\x41\x59\x4e\x6f\xa9\x9f\xd9\x2d\x3b\xb4\x3d\x3b\xb4\xfb\xb7\x74\x83\x0a\x75\x26\xed\x80\xa5\x69\x87\x3d\x3b\xba\x07\x69\xda\xd1\x91\x4d\x4b\xcb\xf5\xee\x98\x6f\x0f\x8f\x66\x36\xed\xc8\x92\xcf\xad\x5b\x47\x36\xed\xd6\x9d\x43\x9d\x76\x3a\x4b\xcb\x31\x5b\x8e\xdd\xb2\x69\x12\xd7\x96\x98\x0e\xb2\xb4\xdb\x26\x6d\xbf\xab\xc9\xf1\xc0\x82\x3c\x9b\x1e\x30\xfb\xa0\xa9\x70\xc6\x0e\x8f\xec\xc3\xcd\x8c\x1c\x7f\x54\xe4\x98\xae\x93\x73\x7c\xc6\x98\x23\x82\x01\xc2\x82\x29\xc6\x6c\x69\xc6\xe4\x8c\x40\x35\xab\xcc\xc3\x85\x88\xc2\xf9\xb9\xfc\x44\x26\x4c\xc3\xf8\x34\x60\x3b\x59\xfa\x02\x20\x84\x23\xfd\xf1\x9e\x91\x6f\x21\xab\x10\xda\xe0\x2e\xd0\x67\x89\xc0\xb5\x79\xd8\x85\xbe\x80\xc8\x2e\xae\x19\x92\x29\xa1\x70\xe2\x2f\x83\x44\x67\x24\xd8\xd7\x0d\x8c\xb8\x6e\x80\x32\x3b\xe7\x3d\xa3\x17\xec\x79\xf4\xcc\xf6\x22\xd6\x19\x97\x34\xf0\xa7\xaf\xe8\x19\x40\x38\xc8\x8a\xda\x42\x13\x5d\x59\xd7\x4c\xd4\x4c\x72\x67\xaf\x75\x67\xdc\xc1\x33\x66\xa8\x57\x8e\xc7\x1d\x47\x4a\x4e\x55\xa1\xae\x2a\x34\xb7\x85\xba\x85\x42\xe7\x39\xa8\xe4\x14\xce\xec\xb4\x6e\x12\x56\x8c\x74\xf1\x99\xfc\x77\xc9\xc8\xf0\x3a\xf0\x39\xf3\x7a\x78\x12\x06\xf1\x05\xf7\x7a\xc9\x18\x9f\xca\xbc\x2b\x46\x86\x63\xbc\x64\xa4\x2b\x35\xb8\x4c\x05\x69\x2b\x7d\xe3\x45\x1c\x18\xdf\xb3\xd0\x49\xd9\xf1\xf9\x0e\xad\xf0\x44\x7b\x9f\xf2\x3d\xe5\xd3\x2e\x12\x2a\x88\xb9\xcf\xcf\x94\x4b\xae\x9d\x48\x7e\x34\x02\xa0\xe9\x54\xd2\xdc\x03\xed\x3d\xd4\x0f\x08\x1d\x3a\xa9\xce\xed\xae\x87\xcc\xf1\x4f\xe5\xb8\x09\x3c\x63\x78\xe5\x86\xf0\xf9\xe8\x94\x7b\xc7\x4a\xd9\x2f\x99\xd1\xaf\x14\xb4\x95\x66\x3d\xd9\x85\x73\xc8\xf0\x70\x8c\x01\xc0\x42\x5f\xab\xcd\xab\x63\x69\xc5\x4e\xcd\xaf\x98\x5b\x8b\x99\xcd\xd3\x50\x33\x72\xb9\xe0\x31\xac\xdd\x80\xca\x35\xac\x27\x1c\x7b\xf9\x73\x96\x57\x07\xcc\xd7\x7a\x51\x81\xd5\x62\x42\x7e\x6c\x94\x7f\x4f\xb8\xf5\x70\xa7\x9e\xfb\xcc\xb9\x52\xa0\xeb\xd0\x6a\x3d\x76\xb4\xf9\xbc\x0b\x3a\x96\x3a\xcf\xc4\x11\xb9\xb4\xfe\x33\x23\xeb\x27\x24\x52\x3e\xb9\x38\x11\xad\x5e\x7f\xf7\x52\x1d\x9e\x47\xbc\xd5\x32\x6e\xf4\x35\x19\x41\xf5\x21\x1f\xa3\xb6\x7c\xb5\x34\x15\xb5\xf5\x43\xd2\xe7\x77\x45\x1f\xf5\x94\xff\x73\x77\x81\xcf\xd1\x40\xaa\xf0\x3e\x67\xcd\x26\xb6\xa5\x49\x0f\xa5\x5f\x36\x9b\x52\xf3\xb7\x76\x16\x05\x1b\x89\x5c\x97\xae\xef\x98\x7b\xb6\xee\x67\xa6\x5d\xba\xa9\x2e\xd9\x38\xfb\x5a\x4f\xbe\x36\x9a\x01\xc3\x0a\x60\x9e\x03\x94\x5b\x40\x31\xe3\xd3\xb4\xa8\xd0\x45\xa3\xea\x3e\x39\x18\xfc\xa0\x70\xbe\x62\x77\x4f\xd9\x7a\x0d\x57\xec\x5f\xa7\xac\xd1\x80\xa7\x8c\xac\x98\x66\x27\x84\xaf\x98\xf5\x01\xed\xd0\xcb\x71\x61\xcc\x0d\xdd\x9d\xe7\xac\x26\xc6\x2a\xa3\xca\x65\x9f\x3e\x73\x68\xfc\x45\xce\x1a\x22\xdf\xac\x57\x5f\x35\x46\x8a\x9f\x05\x79\xcc\x20\xea\x0b\xb9\xb6\xea\x23\x03\x8c\x40\x36\x3d\x3d\xd9\x95\xdd\x68\xb3\xd5\x08\xcc\xb3\x60\xec\x2b\x26\x05\xc8\x8a\x61\xb8\x1b\x0b\xe3\xd4\xde\x8b\xd0\xae\xbe\xd2\xc6\x2b\x1c\x0b\x63\x8e\x69\x7f\x29\xc7\x17\x32\xf2\x80\x41\x84\xcc\xfd\x37\x5d\x8d\x20\x4f\x64\x5a\x5a\xc1\x0b\xe7\x8d\x92\x4f\xf6\x6d\x00\xcf\x18\x61\x38\x20\x1c\xc3\x98\x08\x99\x06\x27\x84\xa2\x46\xe3\x25\x53\xe7\xe3\x2f\x94\xeb\x67\x41\xd5\xf1\xf1\xb8\xb9\x07\x76\x76\x09\x91\xcf\x13\xb9\x16\xc3\x52\x24\xe8\x00\xe5\x9a\x27\x94\xde\x4c\xcf\x8c\xa2\x1c\x63\x7b\x9c\xd1\x0b\x8c\xce\x8c\x19\x11\xc8\x83\x2b\xd9\x2a\x23\x91\xb9\x52\x14\xe3\x00\x4f\xfa\x4b\xd6\x6a\x61\x66\xba\x21\x48\x84\x25\x5d\x2f\x59\xa3\xf1\x81\xc1\x29\x72\x90\xe9\x02\x2f\xb0\x20\x5c\xd7\x28\x1f\x23\x09\x8d\xad\xa1\x8c\xb5\xbe\xc5\xce\x89\x83\x0f\x85\x02\xed\xed\xdd\xed\x87\x11\x30\xa6\x2f\xdc\x74\xc0\x78\x14\x4f\x81\x21\x22\xc9\x70\x5f\x6a\x52\x0d\x13\x8e\xf5\x40\xa9\x61\xee\xed\x1f\x14\xb9\x75\xc5\xd0\x00\x72\x22\x55\xa7\x15\x6b\x36\x91\x07\x79\xbe\xf3\xa7\x08\xf5\xb9\x06\xf6\x07\xed\xe4\x47\x0f\x23\x13\x69\x27\x6c\xfa\x00\xf6\xf6\x8f\x2a\x1b\x88\x89\x5c\x28\x9a\x06\xe2\x7c\x03\x57\x08\xe1\xd8\x41\x69\x40\x28\xe6\x39\x64\xd8\x85\xa8\xc1\x46\x3a\x9c\x05\xe4\xbb\xcf\x0a\x51\x81\x1e\x55\x3b\x26\x85\x8e\x5d\x66\xa3\xba\x19\x8d\xfd\x6a\xd4\xfa\x12\xb9\x92\x76\xf0\x02\xcf\xfa\xdf\x18\xbf\x7e\x35\x7e\x0f\x0f\x2b\xeb\xa7\x44\x2e\x4d\x4d\xfd\x34\x5f\xff\x07\x84\x30\x2d\xd6\xe3\x2c\x47\xed\xa4\x0b\x57\x0c\xdf\xd4\x43\x65\x57\xb6\x2b\xd6\x24\x37\xcb\x03\x76\x6c\x07\xcc\xad\x31\x90\xfd\xaf\x01\x6f\xe2\x82\x37\x29\x83\x37\x31\x9d\x5e\x90\x1f\x1c\xce\x98\x55\x22\x5d\x23\x5a\xae\xe5\x0b\xb0\xef\x6b\x3c\xcb\x45\xbe\x84\x7b\xbf\x8c\xe9\x9f\x33\x4c\x43\xbf\x52\xaa\xa9\x98\x5d\xb2\x7e\x21\xc5\x2b\xe4\xe4\x86\x85\x47\x9d\xbc\xd5\x5f\xf7\x91\x48\xaf\x7e\xea\x12\x6a\x93\x62\x47\x90\x48\x8b\x62\xcb\xd5\x19\x47\x77\xb1\x08\x3f\x32\xbe\xf0\x7c\x22\xe4\xb4\xbf\x60\x53\x6d\xc4\x58\x78\x81\x18\xcc\xa1\x8f\xbc\xeb\x24\xc7\xe3\x7e\x81\xc7\xf3\x22\x87\xf8\x39\x5a\xcf\x84\x4e\x2a\xca\x43\x03\xa3\x19\xcb\xe3\xe8\x4c\x7b\xce\x40\xb2\x57\x90\x93\xdd\x2e\x2a\x49\x7a\x3f\x13\x4c\xa6\x29\x4e\xde\x41\xbf\xcc\x67\x39\xb6\x51\xc5\x03\x32\x21\x43\xc5\x08\x63\x55\x30\xc0\x81\x94\x86\x81\x01\x2c\x50\x9b\x0e\x08\x07\xa6\xa5\x49\x36\xd0\xf5\x32\x63\xe1\xca\x8c\x45\x59\x66\x2c\x72\x80\x3e\x83\xbe\xe4\xc6\x8d\x42\x61\x9b\xe7\xed\x44\x82\x61\x7f\xc3\xfc\x78\xfa\xdf\xc6\xfe\xd6\xea\xe4\x32\xd0\x21\x92\x5c\x6c\xec\x36\x92\x85\x0e\x91\x07\x83\x7c\x6d\xaf\x51\x36\xa8\xda\xa2\x53\x5d\x89\x36\xf6\xd4\x54\xf2\x1b\x42\x29\x29\x64\x30\x4d\x36\x08\x90\x85\xdb\xc1\x45\xb9\x83\x8b\x54\x64\xb8\x02\x64\xfa\xb7\x0a\x10\x43\x13\xba\x7a\x2e\xff\xf9\x4a\x88\x50\xf2\xab\xa3\x20\x51\x72\x4f\xbe\x29\xdf\xd6\x99\x5c\xa1\x5a\xae\xf8\x9a\x67\x29\xaa\xfb\x4a\x6f\x9d\x92\xa8\xcf\x89\xaf\xb0\xe6\xae\x98\xb8\x5c\xb8\x78\x7e\x0a\xa1\x61\x0c\x2b\x83\x7a\xd8\x58\x8f\x3c\xa9\x70\x95\x84\x50\x0c\x83\x92\x10\x0a\x32\x1d\x91\xff\x25\x21\x24\x69\xea\x79\xf4\xca\xbf\x60\xff\x6e\x41\x34\x21\x0b\x32\x54\x2c\xa9\x05\xd1\x04\x4f\xa4\x20\x9a\x10\x2b\x78\xb4\x20\xaa\x98\x71\xea\x05\xd1\xcc\x15\x44\xb3\xb2\x20\x9a\x95\x04\x51\x80\x27\xdf\x56\x10\x6d\x2d\x95\x1c\x95\x04\x4f\xf1\x1c\x9f\xff\x35\xc9\xe4\xcf\xa0\x22\x27\xe4\xcf\xa0\x65\x55\xf9\xec\xea\x7f\xc5\xbc\x1a\x1e\x8e\x5d\x1e\x8e\xcb\x3c\x1c\x57\xd5\x65\xad\xc4\x15\x7a\x4a\x90\x45\x5a\xb5\x7a\x4a\x41\xce\xdc\x70\x85\x55\xde\xb8\x5c\xa8\xaf\x77\xa0\x2b\x2c\x58\xa0\x65\xbd\xbd\x83\x72\xc5\xbf\xa6\x02\x6c\xcb\xbe\x6f\xa5\x00\x15\xeb\x5a\x28\x39\x65\x6d\xdf\x05\x88\x6f\x69\xba\x4c\x2d\xe3\x12\xd4\x5b\x65\xf2\xbc\x67\xc9\x53\x89\x43\x57\x38\xce\xc9\x1f\x29\xe5\x2f\xc8\x8c\x0c\x15\xbd\x68\xa6\x59\xe0\x85\x64\x9a\x05\xb1\x4c\xa2\x99\x66\x91\x8e\xbe\x23\x67\x95\xdd\x68\xaa\x24\xdd\x9c\xfc\x99\x57\x97\xe6\x5a\xac\x4d\xb5\x14\x98\x23\xac\x4b\x68\x31\x36\x25\x51\x7f\x9a\x02\xb3\x05\x1b\x9e\xbb\x6c\x78\x5e\x66\xc3\xf3\x1c\x1b\x96\xaf\xf3\x17\x76\x64\xe4\xc2\x42\x13\x10\xd6\x3f\xaf\x94\x5d\x25\x23\x38\x31\x00\x13\x6a\x48\xc1\x03\x29\x51\x98\x6d\x18\x6c\x50\xcf\x07\x7c\xb8\x3f\xf6\xba\xd8\x1c\x72\xf1\xa2\xcf\xf8\x21\xf1\xa7\xea\x82\xa0\x8e\xe9\x12\x12\x91\x9e\x21\x49\x23\x6f\xa9\xf8\x9c\x7a\x11\xfc\x20\x9e\x07\xfe\x84\x0a\x7b\x34\x49\x2e\x7e\xb9\xb9\x15\xae\x21\xdd\x61\x7a\x77\x4e\x5d\xfd\x7e\xc8\x74\x38\x1b\xb3\x34\x56\xd7\xd3\xcc\xbd\xbf\x08\xdb\x76\xbc\x30\x51\x2e\x4b\xae\x13\x64\xf7\x92\xa0\x54\x65\x16\x78\xba\x51\x68\xe9\x83\x3b\xf6\xb5\xff\x9f\xfb\xf6\x55\xb2\xf2\xbf\x5c\x4e\x9a\xfd\xb0\x6a\x39\x69\x37\xcb\x6a\xe4\xe4\xa3\x7f\xbb\x34\xbb\x56\xe2\x4c\xca\x88\x19\x79\x94\x97\x11\x33\x2d\x23\x16\x5a\x46\xcc\x10\xd6\x25\xf4\x90\x2e\x48\xd4\xaf\xd0\xed\xea\x65\xc4\xd4\x95\x11\xd3\xb2\x8c\x98\xd6\xca\x88\x4a\xf9\xa0\x11\x97\xb1\xbc\x61\xf1\xba\xc0\x0b\xdf\x9c\xc5\x75\xfb\xdf\x8a\xc5\x17\xff\x3d\xec\xbd\x25\x0b\x6b\xa6\x3d\xa8\xa6\x05\x4e\xc0\x77\x75\x3c\x3b\x73\x34\xf9\x82\x9e\xac\xe6\x85\x30\xe6\xd3\x54\x15\xce\x2b\xc1\xee\xb5\x87\x13\xc7\x9e\x8a\x43\xec\x4b\x39\xe0\xda\x53\x95\x86\x1b\x8b\x82\x86\xab\xd8\x21\x54\xec\xe0\x93\x37\x8e\x9a\xef\x93\xdf\x73\x6f\x3f\x3a\x6f\x37\x4b\x76\x76\xd5\x49\x9f\x80\xbb\x69\x27\xfd\x7c\x27\x27\x52\x4d\xf1\x33\x56\xf3\x35\xab\x85\x9a\xd5\x7c\xf4\x37\x34\xaf\x87\x35\x24\x51\x3f\x2c\x2c\x1e\x16\x30\xdc\x44\x7e\x0a\x91\x16\x57\x66\x49\x25\x11\x16\xe6\x20\x0e\x73\x10\x87\x39\x88\x43\xf2\x54\x71\x48\x98\x21\x20\xd4\x08\xe0\x1a\x01\x21\xfa\x8a\xea\x74\x87\xb8\x5c\x82\xe5\xc9\x67\x01\xb9\xb6\x48\x66\xe7\x50\x33\x27\x5c\x39\x32\xc9\x19\xde\xd5\x42\x51\x5b\xd2\x43\x6d\x35\x4f\xdb\xfb\x94\x7b\x53\x56\x76\xac\xec\x99\xa1\x3a\x63\xcc\xcd\xd6\x95\xc2\x21\xc7\x5c\x6a\x6c\x5c\x23\xb9\x66\xb0\x42\x77\xb0\xc2\xd2\x60\xe1\xe2\x10\x81\xbb\xa0\x4e\x58\xb8\x4c\xf0\x80\x95\xe6\xd4\x05\x9e\x95\x7b\x59\x03\x15\x75\xa1\xa2\x65\xa8\x8c\xf1\x02\xc6\x44\x64\x26\x11\x18\xb8\xb3\x01\xe8\xfc\xab\x6a\x31\xbf\x20\xea\xac\x93\x5d\xcc\x17\xec\x06\x17\xa9\x09\x89\x13\x4a\x86\x06\xf0\xb1\x83\x4e\x54\x42\xad\x1d\xee\x99\x4a\xad\xb7\xd7\xcf\x9c\x43\x59\x5a\x88\x28\xca\x48\x51\xf6\xa4\x28\x37\x5c\x64\xd5\xe0\x89\xbb\x78\xe2\x65\x3c\x59\x00\xc3\x0c\x4f\x03\x78\x73\xbf\x8e\x6d\xff\x55\xc7\xb6\x2b\x2b\x34\x1c\x4a\x08\xb7\xa1\x83\x4f\x9b\x3a\x05\xee\x76\x6a\xec\x2d\x77\x3b\xb5\xf6\x96\xb3\xff\x84\x6e\xbd\x2e\x74\x0b\x53\x29\x9c\xb2\x3d\x15\x25\x97\x42\x6d\xef\x49\x79\x99\x92\x5f\x1c\xee\x7d\xa8\x4f\xba\x6b\x80\x35\xb0\x8a\xf0\xdd\x84\x1a\x0e\xf8\x88\x2c\xd7\x53\xc5\xf5\xbe\xcb\xf5\x3e\xf6\x25\xb0\xa6\x5b\xd6\x27\xc1\xbf\x56\x6c\xcb\xca\x5f\x5a\xf6\x1a\x84\xc4\x27\x43\x1f\x53\x4d\xfe\x21\x0e\x53\x84\xe8\xe7\x8d\x52\xf4\x9f\xde\xf9\x4c\xe6\x67\x9a\x40\xc9\xfa\x26\x94\xf5\x8d\xe3\x4d\x3b\x4e\xcb\xbc\xf6\xf0\x5b\xe5\xb4\x90\x51\xd6\xe1\xad\x3a\x41\xd0\xa9\x13\x04\xcf\x73\x1c\xf3\x9a\x95\x8d\x76\x39\x9a\xdf\x08\xed\xab\x3c\xb4\x37\x58\x6e\xff\x37\x4c\xb9\x40\xa9\x3a\xb9\x45\x8f\xc8\x5a\xd6\x27\x83\x0d\x8f\xc8\x0e\x57\x91\x8f\x4a\xe7\xce\x96\x70\xf1\x56\x41\xba\xe9\xcf\x2e\x5c\x35\x3c\x49\x94\x23\x16\x77\x4b\x37\x55\x23\xd4\x6b\x3f\xff\x96\x62\xd8\xd9\xea\xcd\x75\xf9\xbe\xd4\xa8\xb3\x2e\xff\x5a\xa7\xde\x1d\xdc\xa9\x1b\x99\xbd\xba\x91\x79\x61\x47\xa6\x56\xfb\x7b\x5c\xc9\x28\x7e\x25\x2d\x17\x84\xdb\xc9\x17\x6a\x7a\x7f\xb1\xa9\x92\x56\x57\x83\x0f\xdf\xc5\x87\x5f\xc6\x87\xe6\x5d\x49\x95\x43\x85\xdf\xf1\x76\x4b\x93\x54\x37\x54\x0f\x7a\xa3\xce\xed\xdd\xd3\xca\xde\xf1\xca\xde\x15\x46\xe9\x01\x4a\x87\xa9\x7a\xc3\xef\xdb\x36\x95\x6d\x1c\x96\x95\xc6\x7b\xee\x59\x0d\xdb\xd3\x27\x5f\xdf\xde\xa7\xcf\xf4\xec\xaf\x55\xbd\xa9\x27\x8f\x58\xd5\xae\x79\x4e\x3d\x70\xb6\xbe\x38\x89\xaa\x4f\x16\x54\x5b\x66\x7c\xd7\x32\xe3\x97\x2c\x33\xce\x9c\xef\x6e\x48\x18\x8b\x08\xc2\x70\xb7\x5b\xda\x7e\xa0\xd9\x81\x95\x6f\x75\xa2\x81\xe3\x09\xa1\x38\x3d\x63\xae\x76\x86\xfd\xa9\x67\xf5\xc5\x89\x55\x13\xbf\x70\x8f\xc0\x95\xcf\x7f\x7e\x21\x96\x2b\x0c\x62\x45\xa5\x4d\xab\xed\xbd\xba\xc5\x04\xa9\x5b\x4c\xfc\x69\x17\x13\x6a\x19\x99\xd9\x99\x39\x09\xc9\x30\xe5\x73\xa3\x58\xc3\x0d\xb3\x69\xb6\xf6\x8f\xf4\x81\x8f\xe4\xdf\x4e\x19\xc6\xfe\xfb\x4f\xa2\x8c\x5f\x52\xca\xc8\xe9\x18\x3f\x55\x32\xbc\xa8\x64\xf8\xc2\x81\xa8\x1f\x50\x41\x75\xc8\xe5\xfe\x92\x57\x1c\x7e\xaa\x6e\xfe\xcd\xd7\x37\xff\xfb\xc6\xe6\xff\xc8\x37\xff\x43\x5e\xcb\x92\xc2\xaf\xa4\xbc\xff\x52\xa3\x98\xfc\xe2\x1c\xa3\xfb\x5a\xa5\xef\xc7\x3c\x38\x7f\x94\x97\x13\x65\xc5\xaf\xd6\xa0\xd5\xaa\x53\x2f\x04\x93\xe2\x3d\x85\x40\x6f\xd8\x64\x9a\x20\x17\x79\x4d\xd0\x27\x5c\x69\x83\x90\x92\x10\x0d\xfc\x41\x8b\x7a\xd4\xeb\x6e\xad\x1a\x32\x96\xef\xd4\x9b\x8a\x73\x85\x59\x77\xc0\xde\x5e\xcd\xda\x6f\x6f\xaf\x76\xed\x17\x31\x54\x58\x74\x2b\xed\xca\xc0\x25\x85\x06\xaa\x86\x8d\x17\x60\xfb\xbd\x84\x70\x1c\x7f\x1b\x45\x4e\xaa\xba\x61\x9d\x1c\xcd\x04\x68\x6e\x69\x12\x56\xd2\x77\x58\x5a\x9a\x38\xf6\xb2\x15\x93\xea\x9b\x36\xb5\x11\xa2\x87\x6c\xbd\x06\xca\xe4\x41\xd7\x6b\x70\x6d\x1f\x12\xf3\xe0\x1e\x81\xa7\x05\xdb\x63\xa5\x0c\x76\x0d\x1d\xfa\x1a\x5b\x7f\x03\xb5\x97\x36\xdd\xb5\x8e\xaf\x16\x80\x54\xf2\x53\xcd\x78\xc7\xf9\xf1\x8e\x2b\xc6\x3b\xde\xa8\x9f\xc6\x95\xb8\x8b\x2b\xf4\xd3\x58\xb3\x32\x35\x0e\xfe\xd1\x7f\x00\x48\xd0\x27\xb4\x84\x51\x5f\x61\x94\xa2\x8d\x5a\x34\x75\x89\x91\x96\x89\x91\xa6\x87\x44\x34\xd7\xd3\xe2\x8a\xaf\xe9\xa7\x57\xda\x54\x77\x25\x1b\x7d\xd5\x2e\x40\x59\xb5\xfb\x71\x93\xcd\xe7\xeb\xa9\x1f\x57\x50\x7f\xc8\x60\x88\xbe\x94\x9a\x53\x91\x58\x3e\xa6\x6e\x19\x7d\xc4\xeb\x38\xdd\x67\xc6\x70\x57\xc7\x09\x19\x1e\x98\xd8\x24\x00\xa5\x40\x16\xd9\xa2\x81\x5b\x6d\xe6\x2b\x67\x14\x5a\x90\x70\xe2\xcb\x1a\xaf\x16\x58\xf6\x40\x77\x36\x2d\xd6\xcc\x42\xa1\x3b\x0b\x85\xe5\x59\xa8\x1f\xa6\x36\xeb\x4d\x66\x21\x4a\x7e\xca\x2c\xda\xff\xa7\xe6\x1d\xb5\x7b\xbb\xc9\xbe\xf5\x95\x88\xc0\xff\x7d\x88\x48\x0d\x5d\x9b\xc4\xff\x26\xd2\xbc\x60\x85\xb3\x4a\x5f\x4d\xe4\x71\x81\xc8\xb9\xd8\x6c\x86\x3d\xbc\x5d\xc7\xe0\xdd\x5a\xab\x79\x85\x8a\xd1\x45\x99\x6e\xe1\xee\x3d\xad\x18\x5e\xb0\xca\x29\x60\x2b\x99\x36\x63\xe9\x4e\x94\x99\x2c\x87\x63\x3c\xad\xae\x70\xab\x51\x9d\x4b\x44\x97\x8e\x0d\xfe\xe5\x1a\xfd\x5a\xa9\x9a\x4e\x0c\xea\xb5\xb8\xfb\xa5\x8e\x13\x3e\xe6\x02\xf2\x74\xe7\x03\xf7\xba\xf9\x0d\xb1\x4d\xa3\x1d\x14\x46\x3b\xfa\xcc\x68\x6f\x61\x74\xff\xcf\xe1\xab\xbf\x60\x3c\xff\xcf\xe9\xc4\x37\x33\x82\x9f\xb3\xd4\xcb\x63\x28\xc8\x10\x44\x61\x28\xdc\x88\x45\x52\x7b\xb5\xf7\x3b\xb3\xc3\x58\xa1\x18\xa6\xf7\x38\x5b\x3d\xe7\xfe\x20\xcd\x8a\xef\x88\x46\x43\x58\xff\x39\x4f\xcc\x51\x88\xc1\x75\x7a\x28\xe2\x23\x83\x28\xf1\xae\x75\x44\x9f\x58\x10\x55\x5c\xdf\xb8\x7b\x45\xcf\x70\x60\x52\x16\xe7\x61\x1c\x4c\x7f\x96\x14\x6d\xfd\x08\x48\xe2\x83\x9c\x04\xa9\xf5\x61\xc5\x94\xb4\x31\x7e\x2a\xec\xa9\x8e\xbe\xb9\x2b\x69\xcb\xdc\x65\xa9\x4f\xa4\x0f\xcc\x3a\x02\x60\x7c\x0a\x12\x84\x8f\x19\xbc\x62\xf8\x34\x2b\x33\x48\x87\xeb\x54\xe2\x30\x0e\x82\x5c\xee\x3b\x06\x4f\x65\xf9\x66\x0f\x79\xf6\x19\xa1\x04\xaf\x48\x07\xbe\x5d\x0f\xdf\x8e\x46\x63\xf4\x9d\xeb\xff\xf2\x0c\x32\x74\xad\x42\x0a\x3d\xa4\x93\xf3\xbc\xbf\x12\x1b\x9b\xc0\x6f\x9f\x23\xc8\xd0\x7a\x9d\xbe\x7f\x90\xef\x28\x0d\x12\xaf\x23\xef\x58\x07\x4e\xa8\xa2\x36\xd7\x81\xba\x72\x14\x62\x9d\x3d\x09\xc9\xa0\xad\x1e\xa6\x86\x5e\x71\x4c\xba\xfd\xf8\x6e\xa4\x8f\xc5\x58\x07\x21\xb1\x75\x16\x18\x10\x93\x33\x8c\xd5\x4d\xc5\x14\x22\x86\x60\x80\x1a\x8d\x95\x96\x6c\x81\x2e\x84\xd0\x75\x48\x62\x4c\x49\xa0\xfd\x99\x26\x89\x3f\x83\x54\xd7\x34\x21\xd4\xb4\x61\xb5\xde\x15\x06\x37\x7a\xd7\xa0\xc9\x74\x7a\x13\x60\x13\x30\x37\x01\x08\x2f\xc8\x05\x9c\xa0\xbe\x24\x53\x53\x77\x7b\x31\x0f\xfc\x89\x8d\x4f\xc0\xb1\xa3\x30\xd9\xae\x32\xd2\xc5\x82\x74\x31\x2f\xbb\x6a\x17\x77\xb9\x72\x7b\xc2\x9a\x8e\x7b\x76\x31\xb6\xd9\xda\xdb\xbd\xf5\x10\x83\x43\xd2\xed\x6b\xdf\x29\xdd\xf4\x4b\xdb\x88\x9f\xab\x00\x53\x22\x71\x68\x7d\x79\xf5\xe9\xdd\xb8\x4f\x9b\x4d\x1c\x2a\x17\x2b\xe1\x98\xf8\x43\x9a\x46\x40\x8a\x12\x38\x0c\x71\x6f\x8c\x17\x08\x25\x67\xd0\xf6\x2c\x41\x79\xe7\x38\x97\xd6\x29\x49\x08\xaf\x79\x18\x5d\xd0\xc0\xff\xc4\x1e\xd1\xc5\xb9\xa0\x67\x8f\xb9\x89\xcf\xb1\xdb\xc5\x15\x2c\xe1\xed\x76\x13\xac\xdc\x43\x9a\x4b\x69\x3a\x50\x52\x36\xfb\xb7\xeb\x2a\x6c\x34\xce\xd4\xd5\x99\x84\xb7\xa7\x50\x60\x40\x81\xe3\xce\x27\xe5\xe5\x4b\x09\x28\xbe\xb3\x55\xec\x00\x0e\x7b\x37\x0f\x25\x2e\x39\xbc\x79\x13\x61\x5f\x25\x1c\x39\x91\xfc\x68\xee\x84\x97\x68\x33\x3e\x09\xa7\x6c\x20\xda\xba\x9e\x41\x04\x19\xf2\x74\xe2\xeb\x17\x8f\xd3\x10\x06\x2a\x35\xa9\x72\x14\xcf\xda\x3e\x9f\xb2\xe5\xf3\x19\x04\x03\x60\xfb\xdc\xea\xe9\x53\xa3\xc0\x63\xc6\xed\x8c\x68\xf6\x1c\x6c\x07\xee\x29\xb1\x92\x9f\x9d\xd4\x95\x7c\x9b\x4a\xe2\x30\x41\x4b\xb4\xaf\x22\xd5\x58\xea\xc3\xa7\xe8\xb7\x56\x90\xce\x68\x08\x47\xd3\xef\xd1\x68\x7c\xa3\xd3\x66\x4b\x36\x91\xa4\xc5\x88\xeb\xca\x64\x38\x9a\x7e\x2f\xb3\xb1\x9c\x9a\xc5\x00\x66\x61\x0b\x87\x4c\x7b\xe5\x61\x63\x1d\xe8\x79\xc8\xc6\x43\x31\xec\x8d\xc7\x84\x23\x4f\x25\x73\xe3\x56\xf4\x34\xa2\x93\x8f\x4c\x6c\x02\x04\x8e\x86\xa3\x31\xda\x00\x45\x06\x42\x7a\xf3\x5a\xb6\x31\x50\x0d\x0d\xc7\xed\x49\xc8\x27\x54\x28\x70\xb0\x6d\x7f\xc8\xc7\x29\x20\x05\x07\x3f\x45\xea\x48\x2b\xe5\xb2\x52\x9e\xaf\x54\xbe\x62\x81\x3c\x95\x2c\x92\x24\x51\x4e\xe4\xae\x1d\x7c\x7b\x80\x87\x9c\x81\x04\x0b\x94\x45\xcc\xb2\x1e\xd2\xd4\xf2\xba\x5f\xe7\x25\x98\x0d\x22\x0f\xca\xde\x8a\xc8\xbf\x80\x8e\x0b\xab\xb7\xc3\xc1\x77\x8d\xb1\xea\x35\x92\x73\xb4\x94\x2e\x02\x82\x06\xa8\x12\xa7\x0e\x85\x65\x58\x6b\x76\xce\x30\xd8\x01\xc8\x7e\x4a\x00\x52\xc7\x0a\x17\xe7\xfe\x4c\x40\x84\x29\x49\x5d\x1c\x74\x07\xc2\x68\x60\x04\x20\x4f\x63\xa3\x6f\x45\x30\x21\x84\xea\xf0\x23\xbe\xd4\x16\x39\xf4\xa5\x06\x42\x71\x24\xa5\x02\x76\x45\x7e\x84\x8c\x93\xa7\x8d\x27\x1d\xa3\xa1\x48\x25\xce\xbd\x30\x0c\x18\xe5\x90\xa3\x46\xa3\x1c\x21\x92\x37\x1a\xbb\x79\xef\x58\x1c\x0d\xd4\xc5\xef\x6c\x09\x0d\x45\x8d\x23\x2d\x81\x24\xa7\x2a\x70\xbc\x72\xd5\x62\xc0\xa0\x0b\xba\x40\x06\xf6\x6a\xe7\x9e\xda\x65\x03\x64\xa8\x65\x9e\x84\x72\x38\x56\xe7\xd2\x4b\x0c\xd9\x38\x41\xc8\x13\x09\xe4\xc8\x53\x10\x73\x75\xb4\xb2\x82\x34\x10\xf2\xa2\x44\xb4\xd9\x52\x44\x74\x22\x48\x8c\x45\x5b\xe9\xc5\x24\xc0\x5a\xd2\xf0\x33\x7f\xb6\x2a\x6c\x6d\xef\x4a\xa1\xa1\xe9\x50\x0b\x20\x25\x6f\x95\x58\x92\x4f\x35\xb4\xa9\x7a\xd8\x68\x40\x8d\x17\x77\x49\x9f\x8a\x63\xb7\x33\x5f\x2e\x5a\xf2\x67\xe6\x8d\xcb\x40\x3e\x18\x52\xed\x03\x10\x0c\x01\x8e\x30\x18\x83\x71\xaa\xef\x7b\x6e\x1e\x85\x91\x7a\x1c\x13\xf9\xcc\x31\x43\x59\xc1\xcf\x09\x93\xdc\xdd\x79\xdb\xb0\xae\xdb\x69\xa3\xba\xe6\x3a\xe9\xb0\x55\x9d\x55\x35\x26\x6e\xc8\xd2\x52\x40\x42\x45\x67\x7a\x0c\x8a\x24\x94\x05\xdc\x1c\x46\xe3\xcc\xe9\x86\x54\x65\x91\xf5\x77\xae\x8e\x8d\x6b\x68\x6c\xe2\x8e\xc4\x9c\x50\x26\x89\x3c\x13\x84\xc8\x3a\x55\x1e\xa6\x3c\x17\x9a\x69\xa6\x4e\x90\x58\x59\xc8\x1a\x0d\xb3\x46\xe4\x72\x5c\xb0\xd5\x21\x94\x36\x80\x7d\xd3\xdb\x46\xea\x89\xdd\x00\xd1\x04\x04\x34\x29\x0c\xb1\x66\x91\x99\x1f\x08\x16\x55\x72\x49\xba\xf0\xe8\xca\x82\x69\x75\x1e\x00\x89\x65\x82\xd7\x51\x31\x4a\xa1\x39\xd4\x11\x47\x81\x97\x0a\xc5\x01\x40\xc3\xee\x78\xbd\x06\x00\xff\x19\xb3\x68\xe5\x05\x50\xce\xba\x12\x82\x24\xc1\x77\xee\x6c\xa7\x0d\x1c\xde\xd6\xca\xc0\x91\xd6\x05\xf6\x7b\x52\x44\x72\x78\x78\x07\xe1\xd8\x06\xf2\x0c\x54\x20\xcf\x18\xb5\xe9\x7a\x1d\xe3\x49\x7d\xdc\x2a\x87\x6a\xb6\x08\x5c\xb5\x21\xa0\x54\x16\x98\x47\xab\x53\xa9\x9a\xf1\x7a\x3e\xa5\x82\x95\x35\x02\x92\x85\x66\xc2\x69\x04\xdb\x62\x84\x48\x81\x87\x40\x67\xe8\x80\x90\xcc\x16\xa3\xa5\x40\x92\x69\x31\x43\x3f\xbb\x01\xf4\x31\x47\xeb\xf5\x6e\xa0\xe2\xa6\x7e\x2e\xf2\x94\x56\x7c\x5d\x1f\xa9\xe5\x38\x53\xb4\x7d\x3f\xe4\x8b\xf8\x82\x45\x58\x2d\x61\x72\x0b\x85\x5c\xcc\x2a\x2b\xa7\x44\x3b\x17\x15\x0d\xfb\x44\x14\xe2\x9d\xc6\xd9\xf4\xe5\x0f\xc2\x76\x1a\x86\xd4\x57\x41\xf9\x35\x7e\x26\x24\x68\xfb\x53\xbc\x20\x81\xeb\xe0\x10\xcf\x48\x1a\xf4\xcc\xd6\x3f\x25\x81\x45\xd1\x9c\x04\x69\xcc\x2b\x7c\x4e\x82\xb6\x71\xab\x83\x2f\xb2\x16\xcf\x07\xb1\x77\x8e\x57\x84\xab\x6d\xd9\x49\xce\xe1\x4a\x1a\x7f\xcd\x46\x74\x9b\x25\x78\x5a\x13\x23\x74\x85\xd6\x6b\xb8\x22\xc3\xd5\x18\x55\x7a\x85\x9d\x0f\xe6\x70\x85\xbc\x8b\x41\x01\xa7\x86\xd8\x42\x9c\x8e\xe6\x14\xc1\xe1\x85\xc2\xee\x18\xaf\x10\xf2\x56\x4a\x53\x2e\x04\xec\x3a\x31\x71\xd9\xac\xc3\x11\xa0\x23\x74\x15\xa2\x73\x4d\x92\x64\x8c\xfa\xff\xaf\xd3\xf9\x6e\x67\x11\xc6\xd1\x84\x3d\xa5\xf3\xb9\xcf\xcf\x5e\xbf\x78\x42\xee\xb4\xe9\x01\xbb\x79\x7b\xca\xe4\xba\x34\xe6\x1f\xdb\x1f\x94\xe3\xcb\xff\x1f\x00\x00\xff\xff\x51\x8e\xd7\x4e\x63\xcb\x03\x00") +// FileIdentifierStaticJs9F59f1e79ChunkJs is "identifier/static/js/9.f59f1e79.chunk.js" +var FileIdentifierStaticJs9F59f1e79ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x6b\x77\xdb\xb6\xd3\x28\x8e\xbe\x3f\x9f\x42\xe2\xc9\xe2\x22\x1e\xc3\x8a\x64\xa7\xb9\x50\x41\xb5\x13\xc7\xfe\x35\x6d\x9c\xa4\x71\xd2\x26\x55\xb5\xbd\x68\x09\x92\x10\x53\x80\x0a\x42\xbe\x44\xd2\x77\x3f\x0b\x83\x0b\x41\x8a\x76\xd2\xe7\xd9\xfb\xac\xff\x8b\xff\x0b\x5b\x20\xae\x83\xc1\x00\x18\x0c\x66\x06\x0f\xff\xab\xdd\x3a\x11\xb2\x95\xb3\x31\xe5\x05\x6d\x31\x3e\x15\x72\x91\x29\x26\x78\x6b\x99\xd3\xac\xa0\xad\x82\xd2\xd6\xb3\xce\xf4\xa7\x67\xd3\x1e\x7d\xf2\xac\x33\x9e\xaf\xf8\x65\xe7\x6b\xd1\x79\xf3\xfa\xe8\xf8\xed\xd9\x71\x47\xdd\xa8\xd6\x7f\x3d\xfc\xff\x24\x6a\xce\x8a\xce\x35\xbd\x58\x66\xe3\xcb\x5f\x0b\xc1\x97\x6c\x42\xb9\x62\x53\x46\x25\xb9\x27\x6d\xb3\x19\x8e\x50\x67\xb9\x2a\xe6\xc9\x70\xf8\x6c\x84\xd7\xbd\x6e\x37\x9d\xae\xf8\x58\xc3\x90\x50\xac\x30\x47\xeb\x68\xa5\x01\x51\x92\x8d\x55\xd4\xa7\x1d\x7a\xb3\x14\x52\x15\x24\xcc\x86\xd6\x6c\x9a\x50\x42\x88\x42\x92\xaa\x95\xe4\xed\x6e\x9f\x4d\x93\x36\xdd\x6c\xda\x3e\xaa\xd7\xbf\xca\x64\x8b\x93\x77\x17\x5f\xe9\x58\x75\x2e\xe9\x6d\x91\x50\x84\x65\x25\x42\x21\x2c\x08\xef\xe4\x94\xcf\xd4\x5c\xd7\x21\x6d\xb8\x4d\x88\x28\x6b\x9a\x0a\x99\xe8\xda\x18\xe9\xf6\xd9\x73\xd1\x67\x7b\x7b\x68\xad\x23\x32\xc2\x87\x6c\xa4\x0b\xd2\x61\x36\x6a\x13\xa2\x86\xd9\x68\xb3\x69\xdb\x36\x96\x52\x28\xa1\x6e\x97\xb4\x33\xcf\x8a\x77\xd7\xfc\xbd\x14\x4b\x2a\xd5\x6d\x67\x9c\xe5\x79\xa2\x70\x86\x7c\x1b\x5b\xd7\x93\xed\x16\xf7\xba\xbd\xb4\xda\x5f\xf7\xd5\xb2\x68\xc2\xd2\xb4\x2f\x30\x23\x7c\x95\xe7\x84\x24\x82\x48\xb4\xd9\x44\x7c\xb5\xb8\xa0\x32\xd2\xc8\xb9\x5d\x52\x31\x6d\x89\xcd\x26\xba\x10\x22\xa7\x19\x0f\x63\x07\x32\xe5\x89\x44\x38\x23\xaa\x33\xa3\x2a\x61\xa8\x6f\x20\x88\x56\x7c\x42\xa7\x8c\xd3\x49\x90\x3d\x8b\xe3\x24\x23\xd4\xc2\x3d\x67\x05\x96\x08\xab\x4e\xa1\x0b\xea\x5e\xe0\x6c\xeb\x41\x94\x6e\x24\x35\x80\x92\xbc\x90\x32\xbb\x0d\x30\x51\x68\xfa\x33\x15\x65\x72\xb6\x5a\x50\xae\x0a\x7c\x08\xe3\xa0\xe1\x61\x16\x1e\x71\x2f\x3c\x2c\x8e\x13\x46\x68\x27\x5b\x2e\xf3\xdb\x1a\x40\x02\x33\x84\x30\x2b\x01\x12\x0e\x67\x58\xa0\xb5\xa9\xb4\xc5\x3b\x17\x8c\x4f\x12\x85\x29\x44\x97\x99\x99\x41\xb8\xcd\x06\x45\x75\xed\x3d\x42\x08\xb5\xb4\x31\xe0\xa9\xc4\xaa\x33\xce\xc6\x73\xda\x19\x4b\x9a\x29\x9a\x98\xc6\x25\xcb\x72\xf6\x8d\xca\xa0\xbe\x2c\xf1\x95\xfd\x7a\xf6\xee\x6d\x47\x53\x36\x9f\xb1\xe9\x6d\xd9\xfb\x20\xf7\x2a\x41\x6b\x98\x40\x50\xb9\x23\x55\xdb\x86\x1e\x68\xb4\x5d\x55\xa9\x2a\x98\x18\xbe\x21\x3d\xb7\x5b\x65\x35\x5b\x1c\x96\x99\x51\xd5\x54\xa6\xcc\x3e\xa4\xa3\x6a\x89\xa2\x52\x42\x63\xa7\x92\x99\xa8\x2d\x4c\xb5\x9c\xac\x0d\xa0\x25\xed\x96\xe8\xa6\xd7\xad\xd5\x76\x7b\xe7\x7c\x36\x53\x55\xc5\xb1\x45\xeb\xc0\xfe\xa6\x39\x96\x26\xba\x44\xee\x20\xfc\x48\x33\x4b\x26\x89\xc9\xa5\x64\xa6\xe8\xec\x76\x50\x06\x53\x86\x12\x8a\xd7\xa6\x3a\x8e\x83\xa2\x72\x8b\xb6\xd8\x43\xe4\x0a\x30\x5a\x10\x0d\x0f\xcb\x26\x6c\x5c\x9b\x86\x75\xaa\xf8\x2e\x19\xe0\x85\xe0\x3f\x50\x0f\xff\x5e\x3d\xb0\x28\x1c\xdc\xbf\x56\xf2\x8e\xa6\xe7\xe8\x22\xc2\xc9\xee\x00\x88\x2d\x42\xd8\xe6\xc8\x1a\x73\xb0\x20\xc7\xb8\x31\x47\xb6\x45\xa8\x6f\x26\x75\x53\x77\x12\xbf\xb4\x16\x54\xbd\x77\xd4\xf3\x6e\xba\xd9\xac\xcf\xcf\x81\x9a\xce\xcf\xd3\xe1\x68\xcb\x78\xa1\x32\x3e\xd6\xd3\x18\xd6\x86\x38\xae\xd6\x46\x3b\x3e\x3b\x51\xdb\xcd\xa6\xb6\x12\xda\xa5\x98\x03\x8d\xa3\x1f\x5c\x68\x39\x8a\xe3\x84\x0e\xf9\x88\xa8\x21\x1f\xa1\x2d\x82\xca\xb6\xfd\xea\x1a\x51\x59\x67\x1d\x95\x0b\x5e\x28\xb9\x1a\x2b\x21\x09\xdd\xc2\xda\x86\x30\x2d\x1b\xb4\xcb\x2f\x51\x83\xea\x64\x55\x28\x4d\x78\x90\x2d\x80\x11\xeb\xd9\xc0\xd1\xd6\xec\x28\x3b\x78\x4e\x98\xc3\x63\x56\x14\x6c\xc6\x43\x0c\x94\xfd\x57\x98\x93\x1e\x96\xc4\xaf\x22\x6e\x13\xe3\xcf\x65\x9f\xef\xed\x21\x97\x51\x00\xa2\xca\x7c\xba\xff\x3f\x88\x35\x61\xb0\x26\x34\xd6\xc4\xc8\x2d\xc8\x2d\xba\x45\xe1\xc2\x1b\xac\x63\xfd\x0a\x0e\xfa\x95\x45\xd0\xc1\x43\x49\x17\x2b\xd2\xc5\x7c\x17\x74\xf5\x9c\xf7\xd5\xde\x1e\xa2\x7b\x01\xb8\x6a\xe4\x92\x83\xfd\x44\xef\xe4\x82\x74\x61\x63\x56\xa4\xeb\x4b\x96\x1b\x75\x58\x01\xce\x48\x17\xaf\x08\x73\x15\x65\xcf\x57\xfd\x6c\x6f\x0f\x8b\xbd\x3d\x24\x75\xf7\xd8\x30\x1b\xb9\xde\xc9\x6d\xa5\x13\x7a\xe2\x1d\xde\x3f\xf1\x0c\x5c\x3c\xf9\xc9\x30\x13\x7a\x1b\xeb\x64\xb6\xf8\x91\xe0\x8a\xde\x28\xb3\x76\xf7\x55\x27\x23\x42\xd7\xf8\xe8\x47\x6a\x8c\x5c\x9e\x60\xe3\x3b\xbb\x5d\x5c\x88\x3c\x8e\xcd\x6f\x67\x2a\x24\x54\x2a\x07\x65\x44\x12\x2d\x56\xac\xc3\x69\xa1\xe8\x24\x42\x69\x74\x7e\xfe\xf1\x97\xe3\xd3\xe3\xf3\xb7\xc7\x67\x1f\x8f\x5f\x9d\x9f\x47\x5b\xdc\x7b\xf4\xec\xc7\xba\xf4\xf8\xb1\xee\xd3\x8f\x01\x82\x19\x11\x15\x30\x24\xcd\xc6\xaa\x43\x73\xaa\xc7\x21\x42\xe9\xe3\x6e\xaf\x7b\x88\xb3\xc6\x5c\x7a\x09\xce\x72\x9b\xe9\x31\x5e\x35\x66\x9a\xca\x6c\x16\xd4\xf5\x04\xe7\x8d\xd9\x4c\x27\xce\x17\x62\x42\x6d\xce\xa7\x78\xdc\xdc\xaa\x14\x53\x96\x53\x69\xb2\xf5\x1e\xe1\xe2\xae\x6c\x57\x6c\xe2\xb2\x75\x9f\xe1\x69\x63\xb6\xb1\x19\x6b\x5b\x59\x17\x4f\x9a\x3b\x21\xe4\x75\x26\x27\xe7\x92\x4e\x6d\xce\x03\xbc\x6c\xee\xc7\xaa\x58\x6a\x4e\xdd\x66\x3b\xc4\xf3\xc6\x6c\x0b\xba\x10\x36\xcb\x4f\x78\xd1\x98\x25\xcf\xbe\xdd\xda\x2c\x8f\xf1\xed\x8f\x8c\x27\x53\x54\x66\x4a\xc8\x72\x0e\xcf\x2a\xab\x0f\x89\xe6\x4a\x2d\x8b\xf4\xe1\x43\x68\xe1\x6b\xd1\x11\x72\xf6\x70\x22\xc6\xc5\x43\x2a\xa5\x90\xfb\x13\x3a\x16\x13\x2a\x3b\x73\xb5\xc8\x07\x8c\xc3\x86\xca\x15\x89\xf6\xa8\x5e\xb8\xfa\xfc\xf9\xee\xc2\xb5\xb7\x87\xd4\x1e\x89\xe2\x4c\xce\x8a\xe1\x48\x67\xe5\xba\x8e\x4f\x1f\x5e\x1f\x89\xc5\x52\x70\xca\x55\x52\x59\xc6\x1c\x87\x78\xca\xb8\x3e\x5f\x4c\x5a\x1f\x34\x2c\x2d\x00\xa0\xf5\xff\x8d\xf6\xe8\x5e\xd4\x6f\x5d\xb1\x82\xa9\x56\xb4\xa7\xf6\xa2\xd6\x54\xc8\x96\x9a\xd3\xd6\x74\x95\xe7\xad\x05\x2d\x8a\x6c\x46\x5b\x42\xb6\x34\xe9\xeb\x78\x2e\xf8\xfe\xc2\x55\x36\xa1\x57\x2d\xca\xaf\x98\x14\x5c\xb7\x08\x85\xa1\x20\xd4\x5f\xb4\x32\x3e\x69\x65\x93\x09\xd3\xd8\xc9\xf2\xd6\x9c\xe6\xcb\xe9\x2a\x6f\x5d\x67\x92\x33\x3e\x2b\x3a\x11\x2c\xf0\x57\x64\xcd\x8a\x53\xb1\xe2\x8a\x4e\x76\x19\xa3\x76\x6f\x8b\x29\xff\x67\x45\x57\xf4\x44\xc8\x31\xfd\xb4\x9c\xd4\x18\x28\x9f\xfe\x81\x2e\xf3\x6c\x4c\xcf\xd4\x5d\x19\xce\xa8\xda\x4d\xdc\xe2\x0b\xb2\x0e\xf6\xb9\x6b\x37\xdd\x61\x73\x5b\x4a\xb1\x2c\x88\x61\x42\x1c\xf9\x12\x65\x3e\x25\x9d\x16\xe4\xc2\x84\x57\x00\x96\x24\x7c\xb3\xb9\x2a\x99\xd5\x1b\xdd\x80\xff\x3a\xfe\x9f\xd7\x7c\x1d\xec\x48\xac\x80\xc1\xf4\x23\x4f\xd6\x5b\x7c\x5d\x65\x4a\xa1\xb7\xbb\x07\xc3\x48\xc0\xfa\x1d\xb5\x3d\x6d\xd3\x38\x2e\x49\xbe\x12\xad\x97\xe5\x36\xa1\x48\xcd\xa5\xb8\x6e\x1d\xeb\x81\x4d\x66\xc9\xd3\x9f\x10\xea\x87\xe0\x75\x6a\x28\x36\x1b\x9f\xee\x6f\xe4\xe0\x88\x50\x15\xbe\x69\x39\x9c\x15\x76\xbb\xa9\xda\x60\xe8\x5d\xcd\x51\x50\x5e\x57\x7d\x13\xb0\x12\x41\x33\xb0\x50\x5f\x92\xe3\x90\x1f\xa1\xd7\xad\x9b\xfe\x65\x85\x71\x39\xc6\x32\xb9\x0c\xc1\x43\xf8\xb2\xc3\x8a\xf7\x2b\x49\x6b\x58\x6e\x77\xa1\xca\x33\xb2\x1e\xaf\xa4\xa4\x5c\xa5\x1a\x45\x5b\xfc\x91\x7c\x87\x67\xc0\xef\xc8\xfa\x92\xde\xa6\xed\x2e\x96\x74\xaa\x7f\xce\xcf\x0b\x9a\xbb\x90\x58\xc9\x31\x4d\xdb\xdd\x80\x14\x8f\x2a\xe7\x44\x2c\xf4\x08\x67\xc0\x4e\xe1\x15\xfc\xe8\x63\xb5\x19\x20\x05\x1b\xbb\xd4\x9c\xcc\x95\x60\x93\x56\x57\x0f\xa2\xa6\xa3\x38\x4e\x56\x26\x84\x70\x90\x72\x49\x6f\xe1\xc0\x1a\x45\x7b\xf0\x81\xb0\x42\x1f\x1d\x57\x23\x51\x1c\xb7\xdf\xd5\xc0\x4f\x74\x6c\x22\x86\x52\xf3\x3a\x72\x84\xec\x89\xa6\xbe\x48\xed\x1f\x68\xa0\xf4\x61\x30\x47\xa2\x33\x9e\xb3\x7c\x22\x29\x27\xbc\x4f\xf3\x82\xb6\x74\xd2\xf3\xbc\x5c\x25\xc7\x96\x59\xc9\x11\x2e\x48\xb7\x5f\x3c\xcf\xfb\xc5\xde\x1e\x1a\x0f\x8b\x51\xc0\x9f\x14\x7b\x07\xa3\x7e\x50\xd9\x78\xcb\xa6\x09\x8d\x63\xda\x99\xd0\x69\xb6\xca\x35\x2f\xbd\x2c\x4a\x0c\xe4\xa4\x96\x62\x3a\x4e\x08\xd1\xe0\xbb\x5e\xe4\xd0\x0b\xb3\xca\xac\x1f\x3c\x30\x24\x9f\x32\xac\x03\x29\xc5\x7a\xa8\x32\x18\xa9\x15\x86\xb9\x9a\x0a\x7c\x2e\xae\x39\x95\xe9\x59\xc7\x0e\xfd\xb6\x9c\xdc\xef\xcb\x93\xa2\x9b\x5e\x64\x77\x1e\x11\x80\xda\x35\x46\x08\x61\xb0\x04\x9e\x93\x87\x7f\x3f\xdc\x7b\x38\xc3\x5f\xc9\x70\x54\x8e\xff\x8b\x52\x94\xc1\xa6\xc9\x57\x8b\x61\x2b\xd7\x20\x5f\x3b\x4b\xb1\x4c\x3c\xcf\x29\x3a\x92\x16\xab\x5c\x11\x8a\x85\x1e\xd1\xf7\x92\x4e\xd9\x0d\x51\x58\x74\x74\x85\x84\x63\xe1\x97\x19\x09\xe1\x15\xd7\x5c\xa6\xb0\x72\x95\xb5\x29\x6e\x7a\x6e\x0a\xa7\x0a\xeb\xa2\x29\xc7\xb6\x60\x2a\x31\x14\x4b\xbb\x41\xcf\xdf\xea\x9e\x53\xd7\x3a\x50\x27\x0d\x00\xb0\x11\x06\x06\x13\x76\x60\xf8\x4f\x03\x49\xaf\xfb\xb3\xeb\x63\x1c\x7f\x35\x52\x30\x1a\x1c\xfd\x3f\xb8\xe9\xe0\x8e\xcc\x70\xae\xa0\x83\x52\x42\xd6\xa2\x89\x17\x63\x68\x24\xad\xdc\x00\xa8\x7e\x20\x24\x69\x13\xb2\x8a\x63\x2f\xf2\xd1\x9f\x9b\x4d\x62\xc0\x71\x64\xdd\xee\xb9\xb9\x05\x42\xb4\x5c\x4f\x7b\xa0\xe0\xe2\x9a\xa9\xf1\x3c\x59\xa1\xf5\x38\x2b\x68\x64\x84\x15\x51\x0a\x1f\x56\xb2\x94\x42\xee\x0b\x49\xb3\xcb\x3e\xc4\x5b\x7a\x48\x6d\x59\xe5\x09\xc0\x54\xd2\x62\x50\xbc\x95\x41\xc1\xad\x26\xee\x1c\x39\x5e\x3b\x11\x7a\x0d\xd5\xb4\xc4\x07\x51\x27\xda\x7b\x9d\x28\xdc\x45\x29\x47\x18\x20\xcc\xe1\x9c\x50\xa6\xa7\x7c\x2f\x4a\x23\x6c\x44\x4a\xac\x30\xb3\x4b\x21\x54\x4e\xb8\x6e\x7f\xfc\x5c\x39\x8e\x62\xec\xc4\x74\x05\xe1\x7b\xaf\xf5\x4a\x31\x1c\x8f\xf0\x18\xf5\xf3\x3d\x42\x93\x15\x2e\x8c\xec\xc7\xcd\x5d\x87\x8f\xcd\x66\x77\x0b\x51\x83\x02\x30\x98\x16\x4d\xdc\x53\x52\x90\xdb\x38\x56\xc3\xdb\xd1\x66\xa3\x86\xd1\xff\xfa\x5f\x8e\x7d\x8a\x46\x68\x50\xc0\x12\x8a\x9b\x98\x2e\x33\xab\x15\x29\xec\xda\x84\xb0\xee\x41\x1b\xd6\x34\xae\x8f\x0d\x08\x75\x26\x82\xd3\x3e\x32\x10\x93\x55\xe7\x2a\xcb\x57\x14\xdb\x0e\x61\xdd\x43\xe8\x84\x5f\x80\x82\xe9\xb9\xb2\xdb\x9a\x84\x75\x10\xbb\xdd\xed\xb0\x87\xa3\xa1\xc9\xd5\x32\x8b\xfa\x48\xe7\x96\x03\x5b\xb4\x75\xcd\xd4\xbc\x75\x49\x6f\x8b\xd6\x3a\xda\xab\x4a\x4b\x3b\x5f\x05\xe3\x49\x84\x5b\x11\xda\x8b\xb6\x51\x2a\x71\x14\x21\x3f\x49\xf3\x6d\x42\x71\x14\x01\x19\x97\x84\xfd\x3a\x14\x12\x7c\x67\xf5\xb0\xfb\xb1\x6e\x6e\x10\xee\x9a\x86\xe7\x5c\x47\x24\x4a\x23\xd2\x8d\x70\x94\xea\xc0\x41\xb4\x75\x2c\xe0\x83\x68\x2f\x89\xa2\x3d\x8a\x3a\xd2\xf0\x49\xc9\xc3\x21\x49\x47\x0f\x67\x81\x20\x23\x10\x76\x0d\xe9\x68\x8b\xd0\x36\x81\x96\x50\xaa\x3a\x4a\x9c\x01\xad\x27\x87\x8f\x03\xd0\x4f\x9c\x44\x42\xc7\x98\x31\xf2\xf3\x1b\x2b\x37\xb9\xf7\xf6\x82\x22\xa7\x55\xe9\xa7\x5b\x39\xb0\x20\xc1\xb2\xd1\xa7\xe4\xfb\x75\xd6\xc8\x9c\xa2\xc1\xab\x84\x62\x89\x79\x63\x97\xe8\x16\xa1\xd4\xa2\x2f\x8e\x13\xbd\x60\xeb\xc3\x7b\xa3\xa4\x66\x77\x3f\xe8\x80\x5c\x42\x6f\x0a\x0a\x36\x05\x0d\xf6\xd4\x6e\x0c\xd4\x30\x73\x6e\x7b\xa0\x1d\x13\xd8\xea\xc1\x16\x7b\x49\x1b\xfa\xb5\xd9\x80\xfc\xed\x92\xde\x82\xa0\x54\x8f\x5f\x14\xa5\x30\x24\x80\x62\x3f\x2c\xe7\x38\x7a\x10\x3f\xd4\xe4\xa3\xff\x71\x84\xb0\x74\x6b\x61\x80\xc5\x57\xa1\xc8\xd6\x1c\xe8\xa3\xa8\x6f\xba\xc7\x41\xf6\xab\xab\xe6\x77\x54\x8b\xf5\x5a\x7a\x8a\x15\x79\x91\x28\xcc\xa0\x12\x84\xdf\x26\xca\x88\x5c\xde\xd4\x78\x9b\x72\x47\xfa\x96\x98\xc6\x28\x79\xe3\xf6\xc0\x60\x9d\xac\x73\x89\x87\x07\x3d\x14\xc8\x44\x74\xc1\x4f\x64\x6d\xf8\x29\x53\xf8\x15\x2b\x96\x99\x1a\xcf\xa9\x4c\xdf\xe0\x30\xe1\xa5\x8e\x3d\x12\x7c\xca\x66\xe9\xda\x1d\xf3\x2c\xa7\x15\xe6\x7b\x67\x36\x64\xfc\xba\x38\x13\x0b\xfa\x81\xf2\x09\x95\x54\xbe\x18\x2b\xc6\x67\xa9\xef\x85\x3e\x44\x18\x51\x51\x2a\xb7\x7d\xd5\x39\x72\x9c\xc4\x7a\x91\x2d\x77\xce\xf9\xbe\x43\xd4\xad\xc2\xd4\x1e\xf7\x87\x5e\x06\x62\x09\x4d\x2f\x5b\xba\x0c\x96\x5b\x3c\x15\xf2\x38\x1b\xcf\x7f\xa8\x3a\x8d\xfe\x13\x40\x3f\x54\xe1\xeb\xb1\x83\x60\x77\xd9\x06\x22\xd6\x05\x1b\x04\x8f\x80\x18\x84\x8d\xfc\x1b\x2b\x01\x13\x22\xdd\x5d\x1f\xaa\x1d\x50\xa6\xe1\xbb\x26\x0b\x56\x5b\x2c\x78\x5e\xad\x87\x4d\x93\xb6\x9e\x3a\xb5\xa1\xee\x3d\x3a\x0c\x87\x7a\x8b\x55\xa7\x64\x99\xaf\xb1\xea\x9c\x58\xc9\x04\x59\x61\xd5\x79\x6f\xa5\x0a\x64\xac\x3f\x56\x92\x96\x79\x8f\xb1\xea\x9c\x81\x78\xe2\x54\x4c\x28\xc9\xf5\xa7\x1d\x7e\xb2\xc4\xaa\x73\x7e\x7e\x76\x7c\xf4\xe1\xf8\xe3\xf9\xeb\xb7\x1f\x8f\x3f\xbc\x7d\xf1\xe6\xec\xfc\xd5\xbb\xf3\xb7\xef\x3e\x9e\x7f\x3a\x3b\x3e\x7f\xf7\xe1\xfc\xcb\xbb\x4f\xe7\x7f\xbe\x7e\xf3\xe6\xfc\xe5\xf1\xf9\xc9\xeb\x0f\xc7\xaf\xc8\x27\xac\x3a\xe3\x5c\x70\x7a\x6c\x04\x2d\xe4\xce\x11\x22\x74\xb3\xf1\xbc\x62\x9d\x9a\x0f\x1e\x3f\xc1\xd4\xca\x77\x05\x91\x89\x3e\x57\x9a\x89\x8f\x70\x66\x66\x34\x5e\x11\xb3\x2e\x68\x0e\xd4\x2c\x02\x21\x8b\xae\x1b\xba\x8b\x3b\xc7\x39\xf1\x6c\xe5\x77\x38\x75\xb3\x16\x69\x46\x12\x4e\x19\x55\x4e\x17\xf6\xf8\x86\x14\x10\x04\x16\x46\x24\xec\x19\xfd\xa2\x91\xd1\x2f\x0c\xa3\x5f\x8c\x88\xc7\x85\x1a\x16\xa3\x38\xf6\x50\x8d\x07\x9a\x43\x4f\x75\xac\x59\x31\x8a\x7b\xce\x01\xc5\x5d\xe7\x80\x02\xad\x1d\xff\x5f\x20\x7f\x83\x38\x25\xdd\xfe\xf4\x79\xd1\x9f\xc2\x39\x60\x1a\x9e\x03\xa6\x3b\xe7\x80\xef\xaf\xd6\x77\xb0\xf0\x39\x90\x68\x45\x02\xd9\xb8\x11\xb4\x4a\x14\xc4\xb1\xe3\x11\x71\x42\x49\xd9\xe6\x14\x9f\x8f\xb3\x7c\xbc\xca\x75\x55\xf3\x8c\xcf\xe8\xe4\x25\x53\x45\xaa\xf0\xb9\x1d\xcf\x3f\x34\x47\x92\xd2\xea\xf7\x81\x8e\x50\x73\x49\xb3\xc9\x91\xe1\xa9\xf1\x7b\x2b\x45\x33\xec\xd0\x91\xe0\xc5\x6a\x61\xbf\xb6\xa8\xe3\x52\x83\xa6\x0b\x7c\xee\x38\x73\xaa\xa9\xd1\x15\x21\xb4\xec\x9d\x23\xfa\x23\x1f\x73\x92\xe9\x23\xef\x2d\xd9\x5d\x1e\x8e\xcc\x9d\x9f\xe1\xcb\xfd\x74\x56\x80\x4d\x42\xf5\x7a\xe0\xea\xf8\x40\xa7\xbb\x72\xf9\xea\xae\xa1\x33\x5b\x51\x5e\x25\x37\xdd\xdd\x64\x27\x58\xc2\xca\x9d\x9a\x95\x83\x15\x7f\x64\x39\x9b\x38\xc8\xdf\x63\x23\x9f\xbb\xb7\x8a\x05\x3e\xd7\xbd\xd2\x48\x2d\x54\xa6\x56\x45\xba\xdf\xc3\xe7\xf6\x4c\xe3\xe1\x59\xd0\x85\xf8\xce\x86\x3f\x77\x07\xc0\xb1\x58\x2c\x33\x49\xd3\x92\x02\x06\xc0\xdf\x2a\xa8\x69\x55\xd0\xa3\x2c\xcf\x2f\xb2\xf1\x65\x33\xe1\x7c\x4b\x50\x98\xc9\x5c\xa7\xd8\x82\xf7\x11\x9c\x2b\x67\xc5\xe2\x41\xb1\x57\xf4\x62\x35\x03\xda\x21\x15\xe9\x16\x24\x1e\x4f\xa7\x74\x7c\x7f\x95\x26\x4b\x58\xe3\xeb\xc5\x52\x73\xe1\xec\x8a\xfe\x92\xf1\x49\x4e\x77\x56\xc6\x6a\x05\xf5\xec\x36\x97\xad\xec\x4d\x76\x2b\x56\xea\x07\xe0\x08\x33\x86\xd0\x9c\xde\x35\x38\xae\xa0\xce\x10\x16\xf8\x40\x27\xab\x31\x95\xdf\x81\xda\xe6\xaa\x02\xdb\x4c\x91\x65\x91\xa9\x3e\x79\x9a\xac\x75\x21\x5a\x3d\xb3\x91\x77\x99\xec\x57\x54\x16\x4c\x70\x12\xf5\x1e\x77\x7a\x87\x9d\x5e\xb4\xc5\xbd\x9f\xbe\xa3\xc1\x51\xbd\x1c\x81\x0b\x05\x46\x78\xd2\xfb\xa9\x87\xc2\xfb\xa1\xff\x57\xb6\xfc\x2f\x65\xcb\x9a\x53\x91\x95\x3d\x3c\x4b\x0e\x0e\x9e\xa0\x00\xab\xab\x92\x89\xc6\x0c\x67\x78\x85\x73\xb3\x14\x8e\x7f\x54\x29\xa3\xaf\xe4\xed\x5a\xd9\xcb\x3e\x8e\xc7\x68\x3b\xd6\x9c\x6b\x52\x58\x39\xa6\xe0\xa6\xe9\x02\x6d\xb7\x4e\xb2\x80\xad\x20\xa4\xd0\xe1\xa9\x09\x4f\xc8\xda\x66\xad\x70\x5b\x39\x69\x77\xf1\x98\xd0\x6d\xc0\x83\x2f\x6b\x40\x17\x78\x0a\x19\x7d\xbd\x2b\x0b\xce\x24\xbc\x78\xd4\x8d\xcf\x4d\xfa\xc2\xfc\xdc\x1a\x11\x62\x78\x7d\x51\x3d\x97\xe9\x7e\x6f\x36\xd1\x8a\x5f\x72\x71\xcd\xf7\xe9\x15\xe5\xa0\x70\x64\x57\xf9\x8f\x99\x9c\x51\x45\x6e\x13\x8e\x70\x95\xc0\x2d\x68\x2b\x3c\xc1\x73\x60\x7a\x96\xcd\xb7\xa1\x1a\xdb\x7a\x94\xf2\xda\x28\xf5\x9e\x3d\xb5\x7c\xd6\x82\x8c\xfb\x15\x94\x6d\x36\x49\xa1\x71\x32\x25\x0b\xb4\xdd\x26\x12\x2b\xcb\x2b\x61\xaa\x19\xa3\x2a\x68\xb0\xec\x9b\x2b\x06\x28\x5d\x17\xf4\x1b\x86\xcc\xcb\x46\x40\x29\xe4\xc2\xed\x85\x17\x43\x3a\xc2\x9c\x5c\x75\x18\x9f\xd0\x9b\x77\x7a\x41\x00\x15\xaa\x64\xbf\xf7\x9c\xa3\x1a\xc4\xcf\x1e\x03\x6b\xa8\xd3\x8f\xf5\xdc\x80\x6e\xa9\x0e\xbd\x51\x32\x1b\xab\xe3\x2b\xe8\x6e\xad\x88\xe1\x26\x5d\xe3\x20\xb8\x3c\x86\xfb\x77\xcc\x89\xea\x00\xb6\x3f\xde\x2e\x69\xe1\xe4\x7d\xb6\x9f\x8c\xf0\xa1\x1c\xe1\x15\x51\x38\x27\xc0\x5e\x5e\xd6\x19\xb8\x7c\x07\xbc\x67\x38\x47\xa8\x7f\x39\xcc\x47\x84\xf5\x0d\x81\xb3\xce\x72\x9e\x15\x74\xf2\x81\xce\x18\x28\x76\x30\xc1\xdf\x66\x0b\x5a\xe8\x2a\xc7\x66\xb1\x81\x9b\xf1\x31\x1a\xd7\x1b\x10\x28\x8e\x6f\x92\xf1\x50\x8c\x60\xca\xf4\x05\x69\x77\xad\x90\xa8\x23\x6b\xf5\x0d\x92\x9b\x64\x37\x16\xca\x61\x5d\x0e\xa5\xc2\x4a\xdb\xda\xa2\x0e\xf6\x53\x2c\x35\x92\xb6\xdb\x6d\x78\xa7\x52\x72\xed\x67\x43\x3a\xaa\xd3\x4e\xb7\x0b\x78\x3d\x03\xbd\x1b\xfc\x11\x7e\x02\x6c\x0e\xf9\xa8\x33\xa1\x4b\xcd\x6e\xf0\x31\xa3\x05\xd0\xc7\x31\x19\x8e\xf0\x25\x59\x6f\xf1\x99\xfe\xf7\xb1\x42\x27\xef\x3c\x7f\x84\x39\xb1\xaa\x6e\x4a\x23\x86\x22\x36\x4d\xea\x52\xfe\x44\x21\x3f\x83\x86\x0a\x14\xdf\xda\x17\xbb\x79\x36\x9b\x8b\xa1\x1a\xb5\x09\x31\xb2\x5d\xfd\xb1\xd3\x91\x03\xac\x10\xea\xeb\x24\x22\x75\xd3\xdd\xed\x96\xc7\xf1\x75\x62\x26\xf3\x11\x69\x27\x8d\x9a\x5f\xd7\x8c\x4f\xc4\x35\x4c\xdc\xbb\x12\x3b\x13\x31\x86\x39\xf8\x63\xb9\xaa\x9c\x24\xc2\xef\xcd\x74\x3a\x37\x3f\x5f\x6b\xeb\xc8\x0b\x7b\x4c\xa4\x64\xa1\xcf\x89\x70\xe1\xd4\x70\xb7\xf4\xbe\xbe\x34\x3f\xed\xda\x49\xaf\x08\xed\x68\x1e\x8e\xbe\x15\x13\xda\x37\x7c\xf7\x3c\xd1\xed\x26\x41\x82\x3d\x06\x69\x1c\xd5\x85\xd1\xe7\x83\xaf\x03\x2f\x3f\x4e\xbf\x92\x21\x1d\xa5\xe7\x84\x86\x92\x64\x00\xeb\xdc\x09\x33\xce\xb1\x22\x5f\xf5\x50\x7d\x25\xb6\x53\xba\x13\xd8\x5c\xaa\x50\xd2\xed\xd3\x52\x64\x4a\xf7\xf6\xd0\x8b\x44\x69\xca\xdb\xde\x21\xc2\x6b\x51\x7d\x88\xaf\xca\xc8\x6a\xda\x75\xa5\xa0\x3a\x14\x8c\xa1\x35\x0c\xed\x2b\xf2\x1a\xbf\xd1\xab\xde\x37\xa0\x37\x97\xfe\x29\x41\x6b\x7b\x4e\x3d\x37\x82\x40\x42\xc8\xd7\xcd\x26\x39\x4d\x10\xfe\x90\x84\xd2\xa1\x3f\x83\x49\xf2\x0d\x85\x6d\xa2\xfe\x37\xd2\xee\xc2\xb6\x55\x95\x04\xa0\xed\x94\xf1\x2c\xcf\x6f\xd7\xba\x55\xfc\x29\xb1\x3b\xd6\x03\xf2\xf0\x7f\x0f\xd3\x17\xfb\x7f\x9d\x67\xfb\xdf\xfe\x5e\x75\xbb\x47\xdd\x7d\xfd\xf3\xea\x31\xfc\x7f\x0a\x1f\x27\xf0\x71\x02\x1f\x07\x27\x27\x7f\xaf\xba\x87\x4f\x20\xdb\xe1\x93\x57\xf0\xff\x64\xff\xef\x55\xef\x44\xa7\x1c\x74\xbb\x47\xfb\xf0\xf3\x4a\xff\x87\x6c\x07\xbd\xa7\x3a\xe5\xa8\x0b\x1f\x27\xc7\x27\x7f\xaf\x0e\xbb\xdd\xde\xfe\xdf\xab\x57\x4f\x74\x99\x93\x67\x90\x72\xf2\xea\x48\x7f\xbc\x3a\x81\x8f\x93\x93\x57\xa3\xff\xa7\x02\xf6\xf7\x7e\xa7\xbb\xff\x4c\x37\xfd\xf2\x89\x6e\xa6\x6b\xda\x7c\x0c\xcd\x1c\x9e\x40\x33\x8f\xba\xa3\xff\x7a\xf0\x10\xff\xf1\xdd\x7b\xc3\x97\x7a\x4d\xfa\xa5\xb2\x26\xfd\x13\x6e\xb4\x96\xd5\xc8\xc6\x63\xba\x54\xc5\x4b\x73\xad\x51\x90\x03\x23\xa9\x3f\x34\x3f\x8f\xf4\x8f\xb9\x51\xce\x94\x92\xec\x62\xa5\xa8\x5e\x88\x89\x6c\x88\x2c\x96\xd9\x98\x12\x61\x52\x16\xab\x42\x7d\x2a\xa8\x03\x87\x70\xec\xef\xaf\xf5\x37\x54\x62\xaf\xb1\x8d\x1e\x97\x09\x17\x19\x67\x8a\x7d\xa3\x9f\x3e\xbc\xb1\xb7\x5c\xbf\xeb\x2e\x44\xee\xf4\xde\x9a\xe8\xa3\xb2\x14\xab\x22\xbf\x3d\xa3\xea\x35\xe7\x54\xfe\xf2\xf1\xf4\x4d\xcb\x4a\x2d\xe0\xa0\xe3\x3e\x8e\xe6\x74\x7c\x49\x27\x2d\xe6\x73\x15\xab\xe5\x52\xd2\xa2\x80\x73\x12\x57\xc7\x13\xa6\xb2\x8b\x9c\xfe\x69\xf8\x3f\x9f\xfc\xcb\xed\xc4\x6c\x3a\x3e\x41\xdd\xe6\x34\xea\x14\xcb\x9c\xa9\x24\x6a\x45\xa8\x63\xe5\x76\x49\x45\x0c\xf6\xbb\xde\x37\x38\xbd\x06\x4c\x77\x71\xbb\x87\xa9\x11\x96\xb5\x7b\x68\x8b\x10\x1e\x0e\x23\x83\xef\xa3\x79\x26\x0b\xaa\x22\x6c\xbf\xf7\xc7\x36\x62\x84\x87\xd1\x38\xcf\x8a\x42\x23\x28\xc2\x26\x0c\xb1\x9a\x29\x3f\x11\x32\x82\x2b\x6c\x1b\xa3\x96\xc7\xff\xac\xd8\x55\x84\x21\xbc\x4f\xe1\x63\x34\x6a\x06\xce\x2e\x92\xc3\xee\xa8\xff\xbb\xde\x1d\x0c\x9c\x0a\xf7\x00\xce\x61\x6f\x54\x05\x35\x1a\x57\x71\x14\xe1\x68\x22\xb3\xd9\xcc\x86\x8b\x25\xcd\x73\x40\x70\x84\x23\xb8\x3c\x89\xee\x68\xb7\x82\x94\x03\x68\xac\xa3\xc4\x1b\x71\x4d\xe5\x51\x56\xd0\x04\xd5\xda\xcd\x56\x4a\x7c\xa0\xfa\x4c\xa4\xdb\xa1\x37\x8a\x4a\x9e\xe5\x1f\xa8\xb9\xeb\x2e\x3e\xe8\x5e\x4a\x3a\x01\x44\x8c\x57\x85\x85\x47\x8f\x1b\x95\x57\xf4\x45\xbe\x9c\x67\xff\x02\x94\x4a\xe3\x51\x96\xe7\xe2\xfa\x64\x95\xe7\x67\x63\x49\x29\x6f\x65\xc5\x2d\x1f\xb7\x34\x44\x27\xba\x2d\x08\xbd\xcf\xb3\xdb\x96\x46\x8e\x14\x79\xe1\x48\x4d\xff\x52\xd9\x9a\x30\x80\x67\xe2\x02\xef\xd9\x58\xad\x24\x7d\xcd\x6d\x40\x1f\x48\x16\x6f\x05\x08\x2a\x32\x45\x5b\x73\x36\x99\x50\xde\xca\x85\x58\xb6\xb8\x38\x15\x93\x55\xae\x4f\x34\x3e\x5d\x2c\x29\x6f\x2d\xf3\xec\xb6\x78\xcd\x73\xc6\x69\x4b\xd2\x6c\xf2\x8e\xe7\xb7\x2d\x69\xd1\xd0\x92\x06\x55\x93\x56\x31\x16\x4b\xfd\x43\xb3\x45\x4e\x8b\xa2\xc5\x14\x5d\x9c\xe9\xb8\x7f\x49\xb7\x87\xdf\x1f\xa2\xb1\x99\x58\x11\x8e\x16\xab\x5c\xb1\x25\x8c\xc0\x62\xa5\x20\xaa\xa0\x39\x1d\xeb\xe0\x8f\x0c\xc2\x21\x6e\x77\xeb\x93\x24\x1a\x67\x4b\x8d\x2c\x4d\x71\xe2\x9a\xe7\x22\xfb\xb1\xba\x1e\x35\x4c\xb8\x68\x2c\xf2\x22\xc2\x91\x14\xd7\xfa\xa7\x60\xdf\x0c\xf1\x66\xfc\x87\xaa\x7c\xdc\x54\xa5\x14\xd7\x67\xba\x02\x1c\x15\x2a\x93\xea\x87\x2a\xfa\xe9\x3b\x48\x05\x16\xe6\x37\xf2\x70\xf8\xf7\x7e\x3a\x4a\x86\xd9\xfe\xb7\x11\x7a\x38\x2b\x97\xee\xff\x84\x52\xf6\x61\x6f\xd4\x51\xe2\xd3\x72\xe9\x6a\xda\xc2\x32\xc2\xd5\xfe\x9c\xb2\xd9\x5c\xb5\xb2\x9c\xcd\xe0\x00\xbc\x7f\x91\x15\x14\x08\x27\x93\xd9\x05\x1b\xef\x6b\xfa\x6b\xb9\xc8\xfd\x62\xce\xa6\xaa\x35\xce\x96\xae\xe0\x38\x67\xcb\xfd\x65\xa6\xe6\x26\x24\x35\x39\x8e\x45\x2e\xe4\x3e\xe3\x8a\xca\xa5\xc8\x8d\x5d\x4b\x43\xdc\xfe\x94\xe5\x8a\xca\xc2\xa6\x59\x15\x40\xfb\x65\x04\x75\x7a\x25\x9d\x88\x05\xe3\x59\x08\x19\xe5\x7a\xa6\xec\x5f\x64\xe3\xcb\x99\x14\x2b\x3e\x69\x4d\x59\x9e\xef\x8b\x65\x36\x66\xea\xd6\x7c\x00\x20\xd3\x5c\x88\xc9\x3e\x54\x68\xc3\x3e\x8f\xe0\x6a\x7f\x9a\x2d\x58\x6e\xc3\x7a\x9c\xcb\xd0\x7e\x36\xf9\xba\x2a\x94\x8d\x50\x92\xaa\xf1\xdc\x7d\xdc\xe6\x36\xa3\x95\x76\x98\x8f\x6b\x83\x8e\x59\x7e\xbb\x9c\xef\xf3\x6c\x41\x6d\x50\x48\x46\xb9\x32\xfd\x9d\x0b\xc9\xbe\x09\xae\xb2\xbc\x21\xf1\x8a\x4a\xc5\xc6\x59\xde\x82\x5c\xfb\xd9\xe4\x6a\xff\xc6\x86\x85\x64\x33\xc6\xf7\x6f\x5a\x6c\x91\xcd\x68\x80\x9a\x9c\x2a\x45\xe5\xbe\xde\x46\xe1\x53\x83\xc0\xf8\xcc\xf6\x78\x91\xc9\x4b\x2a\xf7\x29\x9f\xb8\xe0\x82\xf9\x20\x10\x62\x4b\x5c\x51\x09\xe3\xba\x14\x05\x33\xea\xd7\x2e\x46\xcd\xd9\xf8\x92\xeb\x65\x61\x99\x31\xae\xf6\x85\x9c\x50\xd9\x5a\x66\x5c\x14\x74\xbf\xd7\x5a\x0a\x18\x4b\x73\x5a\x2f\x5a\x1e\x26\x18\x62\xae\x5a\xc5\x3c\x5b\x86\xa0\x16\x4a\x2c\x2d\x5c\x10\x74\x03\x51\x28\xc9\x2e\xa9\x66\xd1\x57\xb3\x79\x09\x46\x35\xba\x84\xa5\x50\x52\x5c\xd2\xfd\x49\x56\xcc\x33\x29\xb3\xdb\x30\x42\x4c\xa7\x05\x55\x2e\x46\x77\x62\x9c\x2d\xc3\xcf\xaf\x82\x71\xf7\xbd\x60\x4a\x77\x74\xc1\x7c\x81\x00\x22\xfd\x79\xcd\x26\x6a\xde\x52\xf4\x46\xed\x67\x7c\x3c\x17\xd2\x84\x27\x74\x2c\xcc\x4e\x6f\xbe\xcb\x1e\xea\x03\x4e\x0d\x99\x65\x54\xd9\x83\x15\x67\x63\x31\xa1\xfb\x17\x6c\xc2\xfc\x87\xd4\x3c\x8a\xfe\x52\xc5\xfe\x52\x63\x75\xd1\xba\xda\xcf\xf4\xc6\x74\x41\x15\x1b\xb7\xae\xf6\xe7\x19\x9f\xe9\x56\xae\xf6\xd9\x84\x8a\x99\xcc\x96\x73\x88\x5f\x64\x6a\x4e\x17\x99\x21\x9d\x2b\x3a\x56\x42\xee\x53\x10\x79\xb6\x34\x45\x01\x1d\xdd\x9a\xa0\x27\xa3\xf0\xeb\xb6\x75\x2d\xe4\xc4\x93\xd0\xb5\x64\x40\x41\x0b\x31\xa1\xad\x9b\x45\xce\x8b\xf4\x26\x67\xfc\xb2\x75\x63\x27\xfc\xf7\xb7\x06\x77\xb4\x72\x17\xc2\xbf\xe1\xff\xa0\x26\xfe\xa1\xba\x8f\x42\x2b\x69\x36\x56\x2b\xbd\x8b\xd9\x2f\x39\x96\x22\x77\x5f\x41\xb0\x98\x8b\x6b\x1b\x54\x4c\xf9\x68\xcd\x16\xfe\x1f\x84\x0f\x58\xa4\xf4\xe1\xc3\xeb\xeb\xeb\xce\xf5\x21\x88\x3e\x7b\xcf\x9e\x3d\x7b\x08\x8d\x45\xe5\xea\x7e\xb3\xc8\x53\xbd\x36\x45\x18\x82\x79\xc6\x67\x36\x08\xfc\xed\x5d\xab\xfd\xff\x04\x8e\xcf\xa7\x6f\x34\x2c\x4f\x1f\x72\xc7\x45\x07\xf0\xa8\xec\xe2\x35\x9f\xd0\x1b\xcd\x0c\x4a\x51\x14\xef\x60\xa4\x7f\x68\xd3\xe9\x7d\x6f\x27\xff\xbd\x03\xbd\xff\x45\xd2\xa9\x2d\x14\xf9\x88\xc8\x14\xb7\x43\x39\x87\x98\xef\xe1\xb0\xab\x01\x2e\xe4\x58\xe7\x34\x05\x32\x73\x80\x07\xa6\x75\xf1\xc2\x7c\xfc\x0f\x41\xef\xfa\xfd\xf2\x0b\x91\xff\x8d\x9b\xdd\x72\x53\xfd\xab\x66\xf4\x47\x7e\xdf\x15\xb9\x0c\xf4\x18\xc2\x55\x50\xdf\xde\xc8\x12\x31\x00\xa5\x40\x38\xb7\xa4\x6d\x19\xc7\xc9\x81\x3f\xe8\xc7\x71\x12\x09\x90\x89\x0c\xbb\xa3\xcd\x26\x7a\xe7\xc2\x48\xa7\x18\x1d\xa5\x61\x4f\xa7\xbc\x75\x61\x84\xd0\x66\x93\xd4\x65\xa1\xe1\xfd\xf2\x5d\x02\x17\x55\x35\xe2\xa9\x14\x6b\x13\xc2\xe3\x58\x03\xca\x01\xd0\xd2\xe8\xd2\xe9\x93\xd9\x3a\xac\x4a\x9a\x97\xb5\x18\xa5\xb4\x02\xd4\xd5\xa3\xd4\xdb\x81\x42\xac\x53\x7e\x73\xd1\xba\xef\xae\xb1\x41\x9b\xd7\x0f\x93\x69\x34\xc9\x54\xb6\x1f\xb5\x09\x49\x28\xa9\x8d\xa6\x91\x8d\x27\x5d\xfc\x13\x42\x71\x1c\xe9\xdd\x17\x72\x52\xd4\xb7\x3c\x75\xea\x75\xb9\xb7\xbe\x7b\x15\xc3\x54\x59\x76\x2a\xe8\x35\xb2\x1d\xb4\xfd\x36\xca\x72\x87\xae\x32\x05\x3d\x69\x3d\xf2\x95\x6b\x74\x9a\xb8\x9f\x52\x67\xb2\x55\xbc\xcd\xde\x26\x0a\x99\xe8\xc7\xf5\xe8\xcd\xa6\xf7\xb3\xda\x7a\xe0\x40\x26\x23\x40\xfd\x35\xe1\xf6\xaa\x57\x6e\x36\x76\xec\xc4\x60\xf7\x0e\xa8\xdd\xfe\xc3\xdc\x09\xfc\x82\x29\xda\x6c\xdc\xd7\x4b\x0c\xba\x45\x0f\x3a\x8a\x16\x2a\xa1\x68\xf0\x8b\x9e\x11\xed\x6e\x9a\xbc\x34\x01\x3d\x6d\xd1\x36\x51\xc8\xa2\x1d\xd4\xf7\xf4\x92\xb3\x10\x57\xf4\x85\x3b\x8a\x27\x0a\xa5\xa0\xc7\x1d\xc4\x60\xd0\xea\x41\xa9\xa8\x9f\xcb\x07\x74\x28\x2a\x87\xf2\x11\xf1\x35\x1f\xb6\x1d\x95\xc7\x71\x14\xa5\x3c\x4d\x14\x11\xd5\x23\x3f\x96\xf5\x18\x58\xbe\xf0\xfd\xd0\x25\x9c\x1c\x12\x30\xad\x35\xd5\x23\x23\x68\x10\x71\xdc\xee\x1a\x95\xc4\x28\xd5\x00\x63\x39\xa8\x76\xe4\xed\x19\xc8\xee\x79\x43\x07\x39\x42\x08\x6d\xbf\xd4\x27\x70\xd4\xac\x37\x14\xe9\x29\xf7\xa5\xd3\x9c\x58\xd3\x63\x42\xf8\xfe\x5a\x03\xa5\xa3\x86\x6a\x83\x54\x52\x53\x49\x32\x8b\xd8\x67\xf2\xf0\x7f\x27\x9d\xff\x42\xc3\xbf\xff\xfe\xfb\xe1\xe8\x21\xfe\xf5\x47\xcd\x82\x28\x25\xbf\xfe\x80\x5d\x90\x6a\xce\x56\x33\x0c\xe2\xcd\xb9\x76\x2c\x83\x64\x73\xbe\x26\xd3\x20\x71\x47\xc3\x75\xdb\x20\x76\x67\xbe\xaa\x71\x50\xd6\x9c\xaf\x6e\x1d\xb4\xba\x33\x9b\x1d\xd5\x00\xca\x5e\x0f\xe7\x77\x74\xbc\xc1\x9a\x68\x7c\x47\xdf\xeb\xe6\x44\xc5\xfd\xf9\xce\x73\x56\x58\x70\x0f\xba\x78\xda\x9c\xb9\x62\x7c\x34\x69\xce\x53\xb1\x3e\x5a\x36\xe7\xb9\xc8\xc5\xf8\xd2\x36\xd6\xc3\x73\xfa\xdf\xb3\x51\x5a\xd0\xe0\xf8\x59\x2a\x3d\x35\x58\x84\x18\x65\x87\x26\x55\x5e\x4a\xe6\x34\x8e\xe9\x70\x4e\x47\x9b\x0d\xad\x2b\xf3\xda\x29\xe1\x5b\xbc\xa5\xf6\x3e\xa0\xa6\x04\xe7\xec\x17\x9a\xba\x51\x6a\xca\x75\x26\xac\x58\xe6\x19\x2c\x68\x9b\x0d\xed\x70\xf8\xf5\x65\xad\xfa\x75\x53\x49\xb7\x3b\xba\x7d\x83\x53\xbb\xfa\x47\x4e\x15\x2d\x32\xbb\x82\xf2\x09\xef\xcd\x4c\x32\xd1\xa2\x8c\x76\x74\x6e\x12\xa4\x4f\x28\xf5\xd4\x6c\xd2\xb8\x4c\x72\xa4\x64\x12\x8a\x9d\x84\x37\x9a\x74\xb6\x55\x75\x64\xdf\x07\x07\x7a\x5d\x51\x3c\xf3\xd5\x58\xf5\x10\xaf\xf1\x63\xdb\x61\x3b\x19\x9c\xd6\x90\xcd\x90\xd3\xb4\xe4\x6f\xf5\x29\xc8\x2b\xf9\x10\x55\xc5\xb5\xb2\xb8\x8e\x22\x5c\x1b\x85\x24\x02\x3a\x19\x44\x27\x5e\xbb\x27\x81\x1b\x7e\x14\xa5\x41\x5c\x64\x77\xdd\xa9\x83\x09\x48\xc1\x6c\x13\x26\x65\x59\x4d\x31\x00\xd9\xb4\x09\x4d\xe1\x0e\xc9\xb8\x15\xb0\x3a\x3d\x03\xda\x09\x55\x7a\x50\x50\x1a\x6d\x43\x55\xc8\xf2\x52\x9b\x96\x2c\x7d\x14\xf5\x27\x62\x4d\x53\x8f\x5d\x95\xcd\x3c\x53\x61\x79\x09\xcb\x27\xc0\xcf\x13\xf3\xd3\xeb\x9a\xdf\x67\xa9\xb1\xc1\x8f\x22\xa3\xdb\xdf\xa2\x9e\xbd\x71\x37\xe6\xe7\x13\x7a\xb1\x9a\x81\x4e\x2a\xa8\x33\x9b\xef\x33\x10\x77\x62\x46\x82\xfe\x1b\xf6\x02\x03\xdb\xa5\xe3\xa5\x89\x47\x58\x12\x86\x19\x89\x22\x2c\x06\x8c\x44\xad\x24\x53\xad\x68\x4f\x74\x34\x01\x6a\xec\xfb\x53\xc9\x67\x1c\x45\x68\x2f\x4a\x75\xa2\x3e\xc9\xbe\x05\xdb\x03\x18\x03\xa3\xfe\x1b\xb5\x12\x73\x6d\x37\x69\x5d\xdc\xb6\xa2\x3d\xae\xd3\x10\xe6\x24\xfa\x9b\xb7\x5a\xad\x16\xe3\xad\x68\x2f\x91\x9b\x4d\xf4\xc9\x5c\xf0\x47\x68\x8f\x6d\xd5\x1e\xe1\x98\x02\x75\x68\x6c\x6e\xaf\xe7\x2c\xd7\x28\xf4\x64\x52\xa2\xf6\x0a\x50\x5b\xe5\x41\xed\x64\x2b\xd9\xcb\x8a\x5d\x44\xc5\x18\x62\xd7\x7c\xa2\x64\x8c\x53\x3f\x89\xab\x0c\x64\x14\x05\x57\x6e\x17\x34\x3c\xad\x81\xad\x97\x35\x0f\xd7\xf0\x73\x31\x01\x84\x69\x8e\x94\xf1\xe5\x0a\x26\x58\x8d\x71\xd5\x8c\x3c\x08\x40\x2f\xc4\x4d\x64\xb9\x73\x99\x4d\x98\x61\xfb\x83\xeb\xb4\x6b\x6a\x6c\x5c\xce\x41\x3c\xfe\x51\x66\xe3\x4b\x2a\x37\x9b\xa4\x16\xd3\xa0\x51\x07\x40\x0e\xbc\x98\x35\xb5\x02\x76\xec\xbd\xae\xcc\xa8\x0a\xf8\x91\x57\xb4\x18\x4b\xb6\x54\x42\x1a\x95\x77\x67\x9f\x16\x98\xc6\x2b\x4d\x23\x51\xb4\xe7\x6f\x97\x1b\x6e\xa0\xe3\xb8\x6a\xee\x62\x47\x87\x87\x56\x7e\xe5\x7a\xc3\x35\x10\x77\x25\x15\x54\xb9\x33\x15\xe4\xc3\x8c\x40\xa4\x23\x08\xdb\x0d\xd3\x98\x07\x41\x33\xf9\xeb\x31\xf0\x4a\x2b\x99\x5d\xe4\x34\x6d\x77\xf1\x8c\xaa\x06\xc7\x17\xa2\x74\x99\x82\xb6\xb8\xa0\x35\xb5\x67\xe8\x2a\x66\x81\x5f\x15\x8a\xb6\x5b\x84\xef\x69\x97\x72\xbd\x22\x42\xab\xbc\x53\x7e\x6c\x11\x5e\xcf\xa8\x55\xc6\xdc\x85\x43\x42\xe3\xb5\x54\x0f\xc1\x16\x17\x4a\x2c\x61\x9c\x19\x9f\x85\xc5\xeb\x34\x60\xd4\x79\x68\x4e\x15\x6d\xe9\x31\xda\x6e\xf5\xa1\x27\xbc\x9c\xbd\x71\x3b\x62\x9b\x56\x5d\xf1\x68\x3a\xae\x54\x06\xe3\x1b\xb8\xf0\xb1\x4e\x40\x3a\xae\x1b\x89\xa1\x05\xaf\x77\x1d\xc7\x89\xb4\x24\x47\x3b\x96\xe6\x06\x91\x92\x2b\x1a\xa5\xd1\x34\xcb\x0b\x1a\xa5\xd4\x18\xc8\x80\x12\xab\x44\xe6\x70\x99\x80\x47\x0a\x53\x25\x45\x70\x30\x2f\xad\x56\x69\xc5\x01\x89\xab\xd6\x9b\x9d\x25\xeb\xad\x46\x7a\xf5\xa2\xce\x2a\x4d\xe2\xf0\x2e\xcf\xc5\x5d\x85\x1f\xb6\x36\x6b\x97\xc1\x07\x3c\xa5\x9d\xf3\x6b\x99\x2d\x97\x54\x82\x62\x5d\x87\x71\xa6\x58\x96\xdb\x8a\xb7\x01\x64\x97\x15\xc8\x0c\x7b\xa1\x3a\x61\x93\xfa\xf8\x51\x8d\xc1\x66\x80\xda\x65\x47\x06\x3e\x54\x66\xb5\x8d\xf5\x39\xb9\xa2\x4e\x7b\xdb\xa0\x6d\x60\x7f\x53\x8e\x70\x0d\x52\xb2\xae\x82\x9a\x4a\x6c\x23\x4c\xf7\x8d\x15\x9d\x14\x79\x4e\x27\x69\x75\xdd\x71\xaa\x56\xe5\xe2\x03\x31\x83\x1a\xa8\x69\x05\x94\x60\x29\x3c\xb3\x98\x30\xe9\x89\x2a\x8b\xa0\x38\xfe\x2b\xa1\xb8\xbc\xe7\x51\x20\x31\xf2\x25\x3f\xda\x92\xb6\x06\x4b\x61\x57\x34\x51\x8e\x4c\xa4\x05\xa6\x3c\x98\x73\x14\xf8\x50\x92\x83\x04\x4e\x7a\xfa\x60\x09\x2b\x2c\x14\xd3\xac\x1a\x04\x74\xee\x38\x4e\xec\x17\x81\xc3\x6b\xea\xd3\xe0\xbb\x9e\x5c\x1a\x6a\x15\xab\x8b\x05\x83\x85\x5b\x6f\x53\x92\x16\xd4\x7c\xa0\x50\x37\x7b\xf7\x5c\x6a\xd7\x58\xd4\x57\x3b\xa7\x3d\x9b\x32\x38\x82\xee\x1a\x05\x12\x8e\xd2\xdd\x8c\x21\xcd\x44\x28\x8e\xc3\x02\x80\x9d\x30\x03\x42\xd8\x51\x9f\xc5\xb3\xb3\xd3\xaa\x53\x14\xf4\xb5\x1a\x45\xda\xed\x7a\xae\x60\x7c\xde\xd1\x40\x93\xe3\xce\xfe\x68\x6e\xed\xfe\x1e\x38\x9d\xa4\x72\x2c\xdb\x1e\xbf\x6d\x42\x64\x1c\x5b\xfc\xb6\x01\xd9\x81\xfd\x01\x34\xe1\x2d\xd0\x1c\x59\xd8\x21\xe8\x2b\x58\x1d\x9b\xa7\xac\x99\x70\x7c\xb3\x51\x21\x61\xf8\xc1\x06\x2f\x31\x21\x94\x44\x6d\x81\xb3\x4c\x38\x31\x8c\xbe\xa1\x1c\x1d\x22\x51\x14\xe4\x2e\x31\x77\xff\x62\x81\xa1\x3a\x5e\xd6\x12\x1a\xdd\x1d\x79\xcc\x86\x1e\xc1\xe2\x98\x76\xc0\x42\xe0\x95\xd3\x7d\xca\xc6\x8a\x5d\x79\x2d\x7a\x38\x2d\xd9\xa3\x0c\x1f\xd4\xe0\xff\x0e\x2a\xd2\x6a\xf6\x90\xfc\xeb\xd5\xf0\x70\xbf\x78\x4f\xab\xca\x45\x44\x24\x6b\xa7\x45\x61\xd7\xd1\xad\x66\x0b\x12\xd5\xc0\x80\x94\xbb\x83\xf4\x66\x4f\x5e\x6a\x4b\xab\xb6\x3f\xa5\x71\x9c\xda\x23\x14\x19\x13\xa0\x44\x79\x83\x0b\x64\x06\xc4\xdb\x5f\xe8\x11\x2c\xc1\x3c\xa7\x15\xd1\xa5\x66\xc2\xc4\x52\xa7\x14\xe0\x10\x0b\xf4\x57\x9c\xc7\x1d\xd2\xed\x8b\xe7\xde\xab\x9c\xd8\xdb\x43\x6a\x18\x3d\x88\xf6\xf8\x50\x8c\x46\xa4\x6d\xdc\xd6\x70\xd2\xed\xf3\xe7\x34\xd4\x50\x16\x64\x97\xd0\x1f\x68\x5e\x88\x8f\xdc\x7a\x05\x61\x77\x73\xdd\x06\x59\x54\x52\x89\x23\x02\x61\x11\xc7\xd2\xc5\x5b\xdc\x9f\xb9\x64\xbd\xfb\xe9\x25\x68\x6d\x60\x88\xa2\x3d\xbd\x09\x20\x6c\xed\x95\x0d\xec\x34\x84\x1d\xba\x3b\x14\x16\x04\xbd\x1a\xfa\x53\xa8\x8e\x2d\xca\x9a\x41\x59\x35\x91\xd6\x69\x50\x53\xd3\xa8\xef\x66\x9a\x3e\x5b\xeb\x3c\x56\x11\x01\x4c\x94\x75\x0c\xda\xba\x1c\x76\xe3\x0e\xe0\x2e\x47\xe3\x2b\xf5\xee\x1e\xfc\x52\xd4\xac\x70\x53\x57\xba\x0c\x6c\xf6\xdc\xe6\x5e\xd9\xb2\x9b\xf6\x74\x4f\x8e\xdf\x99\x02\xe1\xf6\xfd\xa2\xc6\x58\x40\x23\xa5\x35\xa1\xb5\xcb\x22\x25\xf9\x61\x55\xdb\xde\xb1\xdb\x8f\x82\x5e\xd6\x7b\x73\x60\xd4\x72\xab\x96\xa2\xdc\xa8\x25\xb6\x93\xde\xcf\xde\xb7\xe1\x8e\xce\xec\x21\x82\x63\xda\xb0\x3b\xda\x2a\xc2\xb7\x76\x85\x07\x6d\xc4\x08\x0e\x52\x6a\x7b\x17\x07\x60\x71\xa3\xc9\x26\xd4\x4d\xac\x74\xb8\xba\xc7\xee\xee\x29\x81\x2d\xa7\xa1\x42\xae\x99\x35\xea\xd6\x63\xbf\x8c\xf2\x72\xf3\x09\xcb\x07\xde\x11\xdc\x6a\xd3\xb0\xd4\x70\xbb\x75\xb5\x89\x6c\x5c\x87\x42\x3f\x7d\x1f\xaa\xe7\x2d\x7a\xa3\xac\xee\x55\xdf\xac\xef\x77\x8f\xba\xe6\x0d\x0c\xbd\x06\x94\x5b\x6e\x03\xa0\x1c\xf6\x9a\x92\x3b\xef\xa4\xe6\x6a\x91\x47\xf8\xa4\x31\xc7\x41\xb7\xdb\x7d\x58\x5c\xcd\xa2\x52\xc6\x75\x1a\x1e\x4c\xdd\x89\x54\x67\x71\xa7\xc8\xfb\x6a\x81\xcc\x8b\x4c\xcd\xef\xc9\x0d\x37\x7c\xa7\x99\x9a\xc3\xbf\xd3\x37\x51\xfd\x98\x7a\x6f\x47\x02\x8a\x78\x55\x5d\xd9\xad\x84\x6c\xb3\xb9\xbf\x02\x8d\xed\xc1\x29\xc8\xdf\xef\xeb\x0a\x01\x7b\xf1\x68\x2a\x24\x65\x33\xfe\xae\x94\x32\x0d\xee\xaf\x3e\x35\x96\xba\x6f\x28\xfe\xd6\x64\xf6\xd2\x78\xb2\x3c\x3d\x7b\xb1\x5c\xc6\x31\xfc\x74\xe8\x0d\x1d\x7f\xe2\x45\x36\xa5\x6f\xc4\x38\xcb\x4f\x6c\x15\xe5\xf5\x89\x57\x86\xbd\x37\x7f\xd2\x60\xe7\x6a\xee\x07\xb6\x08\x6d\x53\xba\x4d\x92\x1d\xcf\x36\x66\x9f\x87\x9b\x8b\x4f\x1f\x5e\xb7\x09\x39\xd1\xd8\xf4\x5a\x83\x11\x68\x6d\x6b\xe2\xb4\x11\x44\xf5\xfd\x52\x9f\xbc\xa1\xe4\x0d\xdd\x6c\x9a\xb5\x9e\x93\x68\xc2\xae\x22\x84\x82\xb2\xd1\xf3\xe2\x6a\xf6\x73\xb4\x67\xa7\xf1\xbb\x69\x82\x4a\x2b\x79\xb4\x17\x3d\x7f\x08\xe9\x58\x91\x37\xb4\x33\x65\xb2\x50\xb0\x01\xf7\x2b\x1f\xc8\xf1\xaf\xf0\x99\x84\x69\xc6\x38\xa0\xaf\x6a\xd9\xf5\x24\xe3\x13\x93\x3d\x4c\xd3\xc7\xe2\xc0\xb6\xe5\x53\xb9\x01\xf8\x35\xa7\xd2\xb2\x5e\x33\xe3\x98\x1b\xb7\x9d\x99\x8d\x8d\xe3\x43\xb8\x68\xe4\x62\x42\x3f\x96\x97\x8d\xc0\x6a\x27\x26\xfa\x0f\x37\x6d\x2b\x8b\x00\x09\x24\x43\x7f\x56\x16\xba\xb5\x73\x41\xd0\xe2\xc3\x9a\x00\x66\xa4\xf9\xd1\xea\xc5\xf0\x30\xfa\x93\x5e\x5c\x32\x15\xed\xd1\x11\x89\xae\x6d\x58\xe9\x84\x53\xf1\xcd\xc4\x2e\x74\x40\x61\x6e\xf4\x93\x29\x59\x67\x9c\x19\x37\xbd\x94\x4f\xd2\x3f\x69\x12\xbd\x70\x11\x11\x2e\xc3\xc7\x7c\x12\x21\xec\xf3\x1a\xa1\x35\x13\xfc\xee\x12\xaf\x5d\x96\xb0\x1c\x68\xe8\xdc\x5d\xe6\x0c\x34\xc9\x10\x56\x32\xe3\x46\xdd\xc4\x01\xf5\xd1\xc7\x44\x38\xf8\x00\xb0\xb6\xf8\x0f\x4a\xd6\x5b\xfc\x92\x56\xf4\x7c\x7f\x71\xa2\x82\x3f\xe8\x90\x8e\xdc\x60\xc0\x07\xf0\xf0\x0f\xc2\x68\x63\xa5\xae\x30\x27\x10\x5d\x1a\x2a\x70\xa4\xc7\xba\x49\x4c\x04\xc9\x2f\x69\xa5\x62\xc2\x87\x6a\x54\x9a\x72\x1f\xc5\x71\xf2\x92\x92\x7b\x67\x45\x07\xb4\xaf\x42\x54\x83\xad\x10\xe3\xde\x18\x21\xb1\x12\x91\x07\xb4\x13\x0e\x56\xf9\x81\x1b\x32\xf8\x11\xba\x3f\x1b\x0c\x48\xf9\x89\x2a\xc8\xad\x03\x52\x96\xaf\x0c\x50\xf0\x65\x0e\xc1\xff\x50\xf2\x0b\x4d\xa2\x10\xd8\x08\xe1\xdf\x6b\xb1\x2c\x20\x90\xdf\x6a\x69\x85\x25\x84\xff\x98\xf8\x4a\x73\x11\xc2\x5f\x28\x89\xb2\x0b\x21\x55\x6b\x9c\xf1\x25\x68\xa2\x9a\x5f\xab\x5c\xd5\x9a\xac\x4c\xd5\x63\xb0\x29\x6e\xd1\xc5\x52\x31\x3a\x69\x51\x3e\x96\xb7\x4b\x05\xa1\x89\xfe\x0f\xf6\x76\xb9\xc8\x26\x74\x32\xc9\x54\x66\x83\x0b\xaa\x32\xff\x69\x94\xca\x96\xd9\xaa\xa0\xa0\x83\x0a\xff\x18\x9f\xb5\x96\x52\xcc\x24\x2d\x8a\x96\xcc\x14\xb5\x0d\x15\x94\x5e\x82\xf6\x29\xbd\x34\x0a\x62\x59\x9e\xeb\x6f\xb8\xb8\x98\xb4\x14\x5b\x50\xe3\x9d\xab\x75\x25\xf2\xd5\xc2\x15\xbb\xce\x40\x43\x29\xd4\xf3\xc1\x7f\x81\xb3\xad\xc6\x2b\x9e\x3f\x69\x76\x79\x9a\x2d\x07\xf6\x37\x3d\xcd\x96\xc1\xe2\xf5\x39\xe0\x35\xfe\x02\x8f\xbc\x81\x0c\xba\x6e\x92\x4d\xaf\x5b\xa7\xd9\x12\xff\x05\x37\xc9\xb0\xf2\xe8\x73\x8b\xaf\xeb\xd7\x90\x6f\xc1\x9c\x00\x8f\x49\x3b\x59\x0e\xea\xc8\x8a\x22\xbb\xca\xda\x13\x2d\x52\xc4\x87\x61\x6f\xa0\x44\xf5\x27\x62\xad\x4f\xc3\x49\xaf\x7b\xf0\x58\xb7\x49\x51\xc7\x28\x73\x7d\xcc\x66\x46\x5b\xc0\x95\x41\x98\xfa\xb0\x97\x9e\xbb\xbb\x89\x43\x23\xda\xc9\x66\x03\x5e\xbb\x25\x83\x0e\xea\x89\xde\x3b\x34\x72\xea\x6c\x56\xf2\x5a\x0b\xba\x10\xec\x1b\x9d\x00\x67\x15\xfa\x25\x2a\x95\x36\xe0\xb8\x55\x76\x09\x10\x53\x2b\xe8\x59\x3d\xef\x14\xbc\xa5\x59\xc6\x39\x68\xc8\xd3\x49\xf3\xfd\x89\x72\x70\x01\x16\xdb\x75\xaf\x08\x59\xd2\x7b\xfa\x34\x3c\xab\x72\x97\xbf\x9d\xd0\x86\xd3\x68\x00\xa3\x95\x6d\x06\xca\x31\x89\x22\xd0\x4a\x9d\x13\x87\x26\xfc\x05\x84\x86\xc1\xdc\x4d\xd2\xad\x77\x75\x4b\x28\x96\x44\xf5\xfb\xa5\xa8\xda\x8e\x60\x59\xbb\x40\xc6\x23\x93\xf1\x95\x22\xaa\x80\xd8\x3c\x2c\x54\xba\x49\x24\x11\x6e\x50\xd1\x9a\x13\xd9\x1f\x0b\xae\x18\x5f\xd1\x2d\xd4\xb4\x65\xd3\xc4\x3a\x23\xd0\x45\x4d\xc8\xd8\xcd\xe9\xfa\xc7\x66\x93\xed\x43\x95\x2c\x3c\x14\x2a\x95\x08\x84\xa1\x5d\x16\x8a\xb3\x4c\xbc\xea\x33\xc2\x3a\x05\xbb\xc8\x19\x9f\x6d\x9b\x90\x0d\x8b\xb9\x95\x09\x13\x22\x1d\x8c\x9c\x08\x2c\x09\x2b\x19\x1a\xe3\x01\xab\xdd\xc3\xb9\x07\x27\x37\xe0\x80\x46\x07\x5a\xaf\xf4\x89\xd4\x15\xf3\x7d\xca\x01\x26\x93\x28\x89\xc0\xdc\x27\xe6\x24\xf7\x80\xe9\xd1\x5b\x99\xde\xe6\xae\xf3\xcd\xd5\x33\x5d\xcb\x5d\xd5\x33\xdd\xfe\x9d\xd5\xd7\x7b\xff\x0c\xa1\xad\xe9\xbe\x1f\x3d\x30\xa1\xab\x9b\x8f\x76\x0d\x96\x0e\xdb\xa0\x33\x95\xcd\xee\x23\x28\x5e\x9a\x94\x39\xf3\x51\xa3\xef\x92\x2a\x90\xdb\x57\xee\xab\x4b\x0b\x6c\xda\x37\x7d\xfd\xc9\x4d\xe9\xcd\xe6\xb1\x0b\xfa\x01\xed\x83\xd0\xce\x10\x86\xfd\xb5\xa3\x45\x14\x56\xee\x68\x6b\x46\x4c\x67\x05\xaf\x23\x86\x4c\x61\x51\x6a\x2b\x87\x90\xbe\x33\x29\x35\xc5\x37\x1b\x17\x22\xf5\x2b\xf5\x72\xf9\xda\xfa\xd2\xbe\x51\x1b\x80\xb6\x1d\xaa\x9b\x27\xbe\x54\x15\xf9\x01\xd9\x39\x59\x1f\x76\x03\x1c\x5a\x4f\x6c\x2a\xdd\xf1\xc8\x54\xf7\x44\x36\x48\x28\x58\xe6\x59\x8b\x60\xe3\x2c\x1a\xa5\x36\x36\x31\x5f\x3b\x85\x86\x74\x04\x7a\x1f\x99\xd2\xa7\x9e\x21\xc5\x6a\x14\x78\xaf\x57\x4e\x92\xb7\xd3\x3a\xf5\xa2\x2e\xa3\x6b\x64\xdc\xa7\xe7\x79\xc2\x31\xb5\xee\xa5\x55\xcd\x7c\x31\x73\x2b\x58\xb0\x68\x9d\x4f\xac\x4a\xd1\x1b\x56\x28\xca\xa9\x2c\xf4\x3e\x52\x46\xbf\xb6\x0e\xbb\x8b\x5d\x51\x43\xe0\x7b\x4d\x92\x6e\x5f\x06\xfa\x85\x6d\xda\x61\x85\x66\xc7\xb2\x99\xe5\x1c\xc5\x72\x49\x27\x09\xea\xcb\xbd\x3d\x04\xe6\xd8\x43\x39\xc2\x1c\xfc\x14\x82\x50\x5c\xc5\xb1\xb3\xd2\xee\x37\x41\xe5\x3c\xea\xed\x02\xe6\x52\x58\xf1\x9e\xca\x02\xf2\xab\x04\x6d\x36\xd5\x5b\x46\x49\xe1\x95\x0b\xbd\x63\x05\x1e\xf7\x55\xa0\xc0\x61\x9c\x90\x25\x4c\x11\xa9\x12\xa6\xb0\xde\x55\x28\x61\x0a\x33\xe7\xce\x0f\xb2\xc2\x90\x64\x0a\x61\xb6\x23\x90\xf9\xc9\x08\x64\x9c\x39\x34\x25\xd3\x8a\x21\x7c\x78\xad\x91\xab\xf2\xd8\x69\xd4\x0e\xc1\xae\x5b\x43\x5d\xc8\xb1\x65\x41\x37\x1b\xc3\xda\xa1\xce\x58\x48\x49\x8b\xa5\xe0\x13\xc6\x67\x9f\x0a\xc7\xa3\x82\x93\x2f\x7a\x57\x2a\xc2\x66\xc3\x75\x07\x9e\x01\xed\x2c\x33\xbd\x08\xe8\x05\x21\x0d\xc4\x9b\x63\xbf\xb3\x1d\xd5\x6f\xed\x12\x4a\x22\xc1\xa3\x3d\x8a\x18\x6f\x39\x46\xd9\x6f\x58\x9b\x4d\x92\xa8\xfb\xf9\x67\x54\xd5\x81\xa3\x38\xb2\xdb\x97\x3e\x47\x34\x2a\xfa\x80\xfd\x29\x56\xc6\xf9\x8e\xaa\x78\x8d\x9c\x2a\x73\x59\xad\xc4\xf2\x0d\xbd\xa2\xf9\x47\xe7\x83\x1d\xeb\xd3\x31\x08\xb3\x35\x53\xec\xa2\x0c\x4e\x35\xa1\xb8\x18\x20\x18\x25\xa4\xf3\x0d\x61\x5c\x33\x16\x25\xe1\x16\x6a\xd7\x39\xe3\x44\x55\xa4\xbf\x3e\xb7\xdb\x91\x75\x99\xaa\xbb\xca\x0a\x7c\x14\x0b\x63\xa4\x7d\x76\x5b\x28\xba\x38\xc9\xb3\x59\x01\x6e\x2a\x43\x88\x15\x16\x15\x70\x4b\xdf\x95\x61\x5d\x29\xc5\xf5\x9a\x52\x89\x83\x7a\x52\x85\xcb\x5a\x52\x8e\x7d\x7f\xd3\xe1\x28\xa0\xbe\xa5\xaa\xc8\xbb\x7c\x09\xcc\x0d\x43\xa8\x49\x81\x6b\x44\x97\xf8\x02\xac\x70\x64\xf7\x33\xeb\xd8\x43\x53\xbb\xa6\x31\x69\xb6\x06\x22\xc3\x0d\x47\x70\x95\x31\x4e\xe5\x6b\x3e\x15\xe5\xce\xdd\x97\x9e\x1b\x95\x7e\x83\xef\x4b\x72\xd8\xb6\xd5\x18\x06\xe8\xce\x9a\xac\xef\x0b\xb3\x93\xfc\xd4\x06\xd6\xca\x6c\x84\x71\xfc\xd8\xca\x96\x77\xc1\xc6\x9c\x1c\xf1\x44\x22\xcb\xb6\x72\x54\x91\xc2\xd7\xa9\x02\xe4\xf1\x6b\x60\xe9\x5c\xca\x90\x8f\xac\x77\x2c\x3d\x73\xc3\xa1\x43\x7d\x70\x28\x11\x8c\x92\xe5\xc3\x2a\xb9\xc0\x8d\x56\x7d\xec\xfa\xf6\x7a\x31\xc9\x36\xe4\xf1\xa3\xd2\x61\x82\xf1\x80\x8b\x73\xd2\xed\xe7\xcf\x8f\x1d\x50\xb9\x73\x68\x39\x26\xc7\xc3\x7c\xd4\x1f\xc7\x71\x32\x26\xe3\xaa\x27\x06\x50\x3d\x65\x58\xe0\x0c\x6e\x34\x56\x7a\x2d\x5b\xe1\x31\x42\xdb\x95\x4a\x56\xe1\xda\x37\x57\xc1\xf5\x5b\x1b\x8e\xd0\x60\xd3\x5e\x17\x2e\x8e\xa5\xc8\xf3\x28\xfd\x4d\x25\x0a\xbb\x2f\xdc\xee\xa2\xd0\x0b\x28\xd8\x38\x5a\x55\x97\x8b\x7c\x25\x5d\x76\x13\x0f\x2a\xf7\x26\x02\x12\xe1\x1b\x34\x2d\x12\x1b\x61\xf4\x91\x6d\x94\x2d\x04\x71\x61\x23\x63\x3d\x18\xb9\x6d\x65\x9c\x8b\x82\x46\x29\xac\x5c\x71\x0c\x95\xd3\x3a\x54\x8c\x5f\x65\x39\x9b\x38\x7d\x1c\x73\x23\x68\x3e\xcc\x85\x60\x6a\x32\x3b\x09\xe7\x7e\x8f\x10\xf2\x85\x06\x5e\x31\xe2\xf8\x77\xeb\xc6\x87\xdb\x03\x98\x71\x43\x07\xf4\xbf\x50\xf8\x56\xe1\x99\xc2\x57\x4a\x2f\xf2\x17\x7a\xa9\xc2\xd7\x76\xa9\x71\x2e\x60\x8f\xed\xef\x65\x79\x98\x3b\x2b\x83\x1f\xa1\xcc\x3b\x45\xa2\x85\x58\x15\x74\x22\xae\x79\x0b\x42\xab\x65\x4b\x89\xd5\x78\x6e\xfa\x6c\xc2\x70\x42\xd5\x01\x73\xe4\xcd\x56\x37\xe3\x9c\x8d\x2f\x5b\x93\x8b\xdc\x04\xac\x7d\x94\x2d\x63\xbf\xa0\x4e\x1b\x5e\x2d\x5b\x13\x99\xcd\x74\x45\xfa\xd7\xd4\x33\x91\x62\xd9\x1a\x8b\x85\xb3\x20\xd2\xa9\xc1\xa7\xc9\x74\x49\x6f\xa1\xa2\x4b\x7a\x0b\xb6\xc7\x3a\xb0\x5a\xb6\x40\xfb\x08\x8c\x92\x5e\x43\x08\x46\xa5\x65\x01\x18\x8b\xe5\x6d\x6b\xbc\xd2\x87\xf3\x42\xd1\x96\x81\xd1\x9e\xa8\xad\x3e\xec\x82\xf2\x55\x0b\xc6\xa2\x65\x87\x27\x3c\x62\x1f\xe9\xfd\x01\x2c\x5a\x35\x95\x58\xd0\x15\x35\xa1\x9c\x66\x57\xd4\x20\x4b\x5c\x51\x69\x43\xba\x35\xd3\x57\x88\x74\xe1\x95\x6a\xcd\x84\xf2\xf8\x01\xc3\xcd\x56\x2e\x8a\x5a\x54\xd8\x7a\xb9\xe9\xbc\x57\xbb\x4e\x0e\xd6\xa0\xb2\x4a\x27\xef\x78\x4a\x71\x65\x85\x56\xbb\x2b\xf4\xe1\xc1\x86\x57\x16\x69\x81\xfd\x92\x96\xca\x60\x4a\x9e\x5b\xc6\xb4\x36\x05\x77\x67\x97\xa5\xb2\x90\xd8\x3d\x76\x6c\x46\x8f\xa3\x28\xbd\xd9\xcd\xed\xf1\x66\x73\x3b\xec\x45\xe9\xf1\x6e\xe6\x00\xa3\x36\x7b\x89\xd7\x28\xbd\xd4\x27\xed\x9c\x2a\x9a\xe8\x6d\x10\xe2\x5f\x4f\x2a\xf3\x70\x07\xf5\xb6\x96\x86\x01\x48\xcf\x1a\x6b\x0b\x2f\xff\x54\xd5\x3f\xc0\x8e\xbe\x6f\x65\xd9\x6d\x13\xc2\x06\x09\x25\xef\x55\x52\x96\xc1\xc1\x55\x8d\x3b\x10\x2b\xf2\x9e\x6b\x86\x36\x8e\x6f\x35\x1f\xee\x18\xf7\xfa\x58\x6e\x88\xc4\x21\x6b\xf0\x22\xd8\x48\x8f\x78\xe2\xf6\x52\x14\x98\x7a\x78\x61\xf1\xaf\x34\xa9\x24\x80\xe8\x12\x64\x22\x7e\x0b\xab\x9c\xd1\x15\xa1\x2a\xe1\xe5\x29\x8d\x76\x3c\xd1\x11\xeb\x1a\x88\x75\x56\x7a\x82\x5e\xe4\xf4\x5c\xae\xf8\x9f\x4c\xcd\xdf\x4b\x26\x24\x53\xb7\xfa\xd0\x61\x83\x15\xa7\x9a\x33\x5d\xe5\x16\x95\x7e\x8f\x0f\x8d\xb0\x25\x3c\x2a\x5a\xb1\x49\x45\x3e\x1e\x36\x6e\xc4\xe8\xb0\x55\xdf\xb5\x4b\x1b\x1d\xd6\x6d\x58\xaa\x7a\x06\x7b\x5b\xe7\xbc\xcb\x9c\x75\x16\xf4\xb3\xde\x70\xc3\x39\x86\x77\xc7\x05\x07\xed\xe3\xda\xf6\xdc\x30\x14\x30\xd6\xe1\x09\xcf\x5c\x21\xde\x6a\xe4\xe0\x2a\x9e\xc3\xc7\xd9\xca\xfb\x42\xbf\x77\xbe\x35\x1b\x10\xf7\x54\x1b\xfa\x3e\x56\xee\xe5\x1b\xbd\x41\xf4\xbb\xcf\x2f\xbc\xa7\x15\xe7\x9d\xe5\x42\x0d\xbb\xa3\x7e\x33\x1a\xd6\xa5\xfc\xeb\x3d\x0f\x07\x40\x53\xe9\x02\xa4\x86\x25\x33\xf6\x3f\x47\x93\xc3\xd1\xa0\xd2\xff\xf4\x42\x75\xc0\x00\x3b\xf1\x77\xf3\xd7\x2a\x8e\xdf\xaa\xe4\x1a\x2c\x7c\xae\x9d\xdf\x48\x9b\x78\x63\x12\x6f\x20\xf1\xa6\x96\x78\x6c\x12\x8f\x21\xf1\xd8\x25\x5e\x2a\x7f\x92\xfd\xa0\x10\x3e\xab\x7c\x06\xae\x66\x94\xf3\xc7\x5c\x82\xe7\xae\x5b\xab\x54\x86\xaf\xf4\xc1\x44\x23\xbd\x8b\x83\x19\x52\x8c\xe7\x74\xb2\xca\x4b\xb7\x85\x41\xda\x5b\x21\x17\x59\xee\x26\x0f\x7e\xad\x50\x28\xf9\x3b\x05\x62\x2d\x05\x87\x49\x79\xaf\x79\x02\x9c\x07\x88\x64\x82\xf1\x45\xeb\x13\x95\xc0\xd8\x62\x5a\xb2\x75\xc6\x3d\x5d\x49\x04\xdc\x31\x74\x52\xd3\x01\x1f\xf5\x65\xa5\x6b\xa0\xf2\x58\xeb\x9a\x5e\x09\x35\xe3\x5a\x8e\xc4\x89\x1e\x09\x4c\x2b\x03\x70\xa2\x07\x20\x88\x3b\x36\x71\xc7\x10\x17\xa0\xbb\x8a\x6d\xa5\xb9\x64\xcd\x10\x7f\xac\x40\x98\x48\xf2\x11\xde\xcd\xfa\x3e\x70\x46\xb2\xd3\x2d\x2b\xf0\xae\x7c\x12\xae\x2b\xe9\x86\x95\xf4\xd1\x0b\x98\x6e\xce\x0a\xab\x4c\x89\xe3\x8f\x25\xd1\x81\xd3\x20\x78\x00\xe4\x4d\xc9\x37\x7d\x2b\x83\x9f\x14\x19\x9a\xcb\x86\x08\xbb\xdf\x7f\x28\x2e\xef\x2a\x8e\xf9\x24\xc2\xbf\x87\x31\xe5\xd5\x17\xfe\x2d\x8c\x37\xd7\x5b\x38\xb2\x97\x15\x26\xf4\xde\x87\x82\x0b\x8c\x32\xe9\xa3\x8f\xa8\xde\x69\x04\x11\x47\x2e\xc2\x5e\x73\x54\x43\xee\xca\x63\x27\x3c\xa9\xfe\x4a\x09\x6e\x55\xdc\xef\xee\x9e\x0a\x71\xef\x4d\xdc\x91\x8f\x03\xbf\x14\x95\x1f\x73\x95\xe2\x3f\x5e\x85\x1f\xee\x66\xc5\x47\x9c\x56\x23\x0a\x8b\x21\x1d\x3e\xf3\xe1\x9d\x5d\xdc\x44\xee\xc0\x62\x6f\x66\xaa\x21\x7b\x4b\x53\x0d\xda\x0b\x9a\x6a\xc8\x5c\xd6\x54\x43\xe6\xe2\xa6\x12\x2a\x2f\x71\xec\x87\x7d\x47\x05\xff\x87\xe2\xe0\xa6\x0a\xc8\x22\x72\x37\x3b\x65\x28\x90\x36\xfc\xa9\x6a\xaf\xce\xd5\x95\xb6\xc8\x41\xe9\x0f\x8d\x8f\xb0\xd0\x3f\x7b\xbd\x11\x66\x46\x66\x92\x88\x61\xb7\xe6\x03\x63\x4f\x58\x8b\xd2\x1e\x42\x7d\x46\xd6\x77\xf8\xa9\x4b\xd7\x17\xab\x8b\x8b\x9c\x4e\x52\x86\x2d\x52\x27\x29\xdb\x8b\x1c\x2e\xb7\x38\xf4\xf3\x96\x0e\xe5\xc8\x70\x9d\x6e\x01\x4b\xd5\x16\x7f\x33\x0f\x62\x4a\xac\x10\x7e\xe3\xc2\x0c\xe1\x57\x0a\x1e\x3d\xdb\x6e\xff\xb4\xc7\x2f\xc3\x5d\x3b\xa6\xdd\xfe\x18\x66\xdd\xfe\x07\xa6\xde\xfc\x0f\xf8\x76\x1b\x3e\x35\x61\xcd\xeb\x3b\x86\x5f\xff\xf9\xe3\x49\xb6\xba\x39\xaa\x9e\x53\x26\x62\x75\x91\x53\x1b\x19\x9c\x47\x8e\x6b\xe7\x92\x6c\x76\x56\x9e\x50\xe0\x9f\x39\x0d\x98\xff\xe6\xec\xe1\xfe\xc3\x49\xcf\xff\x06\xc7\x95\x57\xf5\x63\xcb\xfb\xe0\xfc\x72\x49\x6f\x3f\x2d\x5b\xb5\xb3\xd7\xab\xf0\x14\x06\xbf\x9f\x96\xf6\x0c\xe3\xfe\xc3\x65\x63\xf5\xca\xb1\xf9\xf4\x75\x74\xe7\x59\xec\x55\xf5\x5c\x66\x43\x9f\x96\xe1\x75\xa5\xf4\x6e\x97\xed\x21\xc9\x1e\x95\xca\x5b\x4c\xb8\xbc\xbc\x00\x8f\x12\xe6\x67\xe7\xd4\x78\xd4\x74\x82\x3c\xae\x1e\x25\x21\x68\x70\x5d\xb9\xf7\x34\x1f\x76\xfd\x0a\x4f\x66\x5d\x84\x35\xf5\xe8\x21\x6a\xf9\x7f\xe5\xd9\xec\xd8\x87\xe8\x0d\x33\x23\x79\xec\x02\xe6\xdc\xa6\x43\x6f\x7c\x08\xce\x6a\x3a\xf0\xce\x9f\xe4\x16\xc2\x9d\xee\x4e\x7d\x48\x1f\xe3\x20\xf0\xce\x05\xca\x93\xdf\xbb\xe0\xb8\x07\x65\x6d\xf8\x34\x08\x07\xa7\xc3\x77\xcd\x07\x45\xa8\xc5\xc8\x38\xdc\x8f\x12\xb3\x59\x4e\xcb\x9f\xd5\x78\x0e\xf5\x43\x08\x6a\xbf\x9e\x53\x9a\x9b\xff\x15\x24\xf5\x00\x49\x9f\x14\x3e\x28\x59\x80\x07\x8a\x44\xfe\x2e\x3a\xa7\xe3\xe0\x12\x3c\x38\x45\xd7\x4f\xdf\x77\x9f\xce\xed\x42\x17\x36\xfb\x87\x22\xdd\xfe\x1f\xea\xf9\x03\xbf\x8b\xff\xa1\xf6\xf6\x90\x5d\x0e\x1e\xa8\xe1\x1f\x6a\x84\xbb\x46\x13\xe0\xa5\x22\x01\x13\xf4\xa9\xa0\xf2\xa5\xde\x84\x19\x9f\x79\x56\xe8\x97\x4a\x96\xda\x29\x03\xff\x03\x8f\x46\xf9\x15\xd3\x4a\x4b\xd6\x4e\x1e\x13\xaa\xe3\xff\xa6\xaa\x4e\x58\xbf\x99\xa7\x7e\x15\x72\xd6\x8c\xfe\xee\x5b\x0e\x0e\x52\x69\xad\xd7\xba\xa9\x24\xff\x51\x81\xef\x6e\x85\x7b\x98\x86\xc7\xcb\x56\x2f\x95\xe4\xcb\x9d\x59\xbc\xfa\x1a\xf9\x6b\x37\xcf\x96\x0f\x68\x27\x9b\x4c\x80\x05\x76\x57\x0d\x89\xc2\x12\xb7\xbb\x28\xbd\x2b\x29\xec\xd5\x7f\x02\xd9\xf0\x9b\xcd\xe6\x34\x71\x4e\xf4\xff\x52\x98\x91\x37\xfd\x37\xce\x23\xe1\x49\x22\xb0\xcb\xe9\xdd\x11\x26\x6f\x08\x43\x9b\x0d\x38\x24\xf4\x55\x7e\x09\xaa\xfc\x45\x25\x2f\x15\xae\x40\xee\x9d\x0c\x94\x25\xfe\xaa\x0a\xa8\xff\x51\xa8\xca\x8e\xc6\xf1\x7e\xef\xf9\x3b\x15\x08\xb6\x10\x1c\x89\x2b\xf5\xe1\x0b\x2f\xfa\x36\xd2\x5a\xd3\x8f\xcf\x65\xdd\x95\x1b\x67\x90\x55\xc8\xd2\xa2\xa1\xb9\x05\x71\x67\xf5\xba\x4c\x7b\xd7\xb7\x6e\x69\x75\x57\x15\x7e\x58\x76\xfb\x5a\x91\xaf\x86\xe1\xf5\x05\xb0\xf3\xfb\x10\x48\x40\x6c\xee\x1b\xc8\x7d\xd3\x98\x3b\x90\x80\xd8\xdc\xc7\x90\xfb\xb8\x31\x77\x45\x04\xe2\xae\xd9\xbd\x7c\xc2\x9d\x24\x2f\xdd\xa3\xd8\x5f\x55\x72\xe9\x5e\xd6\x36\x26\xbd\x41\xa5\x65\xad\x0d\x82\x11\xe7\xc5\x21\xac\x5e\x33\xe9\xbe\xde\xb3\x7b\xeb\x0d\x1c\x3e\x94\xa8\x47\x6b\x3b\x58\x98\x12\xb8\xcb\x70\xaf\x7b\x18\x17\xcf\x7f\x26\x4b\x38\xc2\x38\xa2\x84\x4b\x96\x8a\x5f\xda\xcf\xaa\xc9\x73\x47\x02\x32\x75\x4e\x72\x95\x48\x84\x90\xbb\x0d\xf9\x15\xc4\xeb\x21\xa9\x98\xd3\x41\x49\x54\xba\x73\x2a\x9b\xf5\x9d\xf8\x83\xd5\x6a\x85\x07\xc0\xcb\xcb\x69\x6b\x50\x5a\x91\x58\x98\x22\xe2\x6e\xa1\xc5\xa1\x71\x7e\x92\xcd\x06\xe2\x5e\x19\x45\xa5\x72\x61\x35\x89\xfd\x59\xab\xc4\xd7\xfd\xc8\x0a\xaf\x99\x75\x0f\x7f\x55\x81\xe2\x9e\x3f\x6e\x98\xb7\x10\xda\x5d\x7c\x01\x8e\xad\x5e\x2f\xb2\x99\xde\xca\x0a\x5a\x8f\x3c\xd3\x2c\x62\x2d\xee\x4f\x36\x51\x73\x13\x77\x73\x92\xd3\x9b\x20\xf8\x1f\x29\x56\x4b\xfb\xfd\x4e\x4e\x34\x64\x3e\x6a\xac\xb7\xf0\xb2\x65\xf3\x59\xe8\xe0\xd4\x56\x32\x35\x35\x5c\xbb\xf0\x7b\xd8\x5a\xae\xa8\xfb\x3e\x9b\x4b\xc6\x2f\xdd\xd7\x5b\x3a\xcb\xc2\xd4\x77\x1a\x40\xb0\x80\x94\x6c\xf2\x42\xd2\xcc\x85\x3f\x98\x1a\x6d\xf0\x98\x4f\x82\xaf\xb3\x65\xc6\xc3\x4f\xd0\x3a\xb4\xdf\x47\x00\x61\xf5\x2b\x28\x6d\x22\xc2\x0a\x6c\x8c\xab\x63\x2a\xb8\xfa\x13\xdc\x46\xe9\xaf\x9c\x71\x7a\x94\x67\x8b\xa5\xfb\xf8\xc5\x27\x59\xdf\x5b\x10\x74\x9d\x10\x72\x39\xcf\x0c\x7a\x54\x76\x71\xc6\xbe\x41\x3f\xaf\xd9\x44\x5c\x43\xe4\x37\x70\x72\x04\x21\x21\x16\xd0\x1c\xcb\xf3\x77\x65\x4d\xe0\xf1\x2d\xf8\x2e\x94\x58\x56\x3e\xa5\xb8\xa4\xaf\x9c\x27\xb1\x6a\x94\xf1\x25\x56\xc6\x9d\x7a\x77\x61\x65\xdc\x4e\x5d\x8e\x2c\xb6\x98\x72\xe2\x15\x4c\x71\xb4\xd0\xc7\xa8\x53\xf1\x2d\xc2\xd1\xbb\xf0\x4c\xa3\xea\x2f\x09\x58\x0d\x88\xcd\xc6\x1b\x36\x57\x5c\xf7\x44\x56\xad\x3a\x4a\xf9\x66\xe3\xac\x89\xda\x61\x8e\xae\xb1\x2e\xfe\x75\xc7\x7a\x85\xa2\x38\xfe\x55\x0d\xe9\x68\x90\x44\xd1\x9e\x42\x1d\x25\xd9\x22\x41\xa9\xda\x8b\x96\x37\x51\xa0\x57\xd5\xf4\xb8\x37\x05\x47\xc9\xb7\xb9\x4e\x69\x32\x0f\xe3\xde\xec\xcb\x78\x0f\x72\x1b\x4f\xb4\xbf\x1f\x21\x2c\x88\xe2\x09\xc7\x4a\x9f\xca\x24\xea\x47\xd3\x5c\x64\xa0\x20\x6e\x66\x77\x34\x2e\x8a\x13\x88\x42\xce\x7b\x4b\x59\x31\x16\x28\x85\xc7\xc2\xc5\x76\x1b\xbe\x7f\xf6\xab\xba\xc3\xb9\x57\x60\x74\x54\xc6\x83\x59\x90\xda\xa3\x9d\xf1\x3c\x93\x2f\x54\xd2\x45\xb5\x83\x20\xed\x14\xab\x0b\x63\x23\x9e\xf4\x10\xfe\x55\x0d\xd5\x88\xfc\xea\xde\x26\x73\x6f\xad\x73\x22\x92\xb5\x3e\x6d\x31\x45\x17\x30\xcc\xeb\xcc\x4e\xb2\x8b\xac\x30\x6b\x84\xb4\x13\x5b\xff\xd0\xc5\x05\x85\xb9\x32\x87\x58\xb6\x98\xc1\x8f\x66\x2b\x75\xe0\x92\xde\xce\x28\xb7\x73\x01\xe6\xb4\x3e\xf1\xeb\xdf\x65\x26\x33\x20\x68\xff\x58\x27\x56\x32\x1b\x43\x9e\x6b\x68\x62\x1b\x5c\x89\x04\x6a\xe9\xe6\xbf\xe4\x43\x3a\xf2\xe2\xf4\xd2\xae\xc5\x6c\x52\xf7\x59\xe8\xd4\xf5\x97\x0e\x9f\x60\x6a\xde\x95\xfb\x01\xf3\x9e\xd0\x04\xc8\x5b\x72\x55\x2b\x7c\xdc\x35\x55\x35\xbc\xea\x77\x57\xb5\x9b\x4d\x3b\x89\xce\xcf\xc1\x62\x80\xf1\xbb\xf3\xd5\x61\x7f\xdc\xb3\x1a\x6c\x16\x22\xa0\xdf\x38\x6e\x6a\x19\x92\xea\xc5\x0f\xa0\xdf\xc1\xbe\x9b\x95\x68\xde\x37\xce\x22\x4a\x32\x8f\xdc\x06\xb9\xeb\x28\x44\x75\x58\x51\x73\x11\x12\x65\x9c\x0b\xeb\xf5\xf1\x66\xe1\x2f\x51\x43\x27\x98\x36\xce\x7a\xa9\x1c\xef\x7c\xef\x17\x72\xbc\x13\xb7\x92\x6c\x27\x6e\x2a\xe4\x22\x53\x3b\xd1\x3c\x5b\xb8\x3a\x17\xac\x28\x18\x9f\xed\x83\x47\x4a\xef\xa7\xab\x57\x77\xa9\xd5\x35\xf7\xac\x2b\x4e\x5e\x07\xcf\xc9\xe7\x3c\xd4\xc0\xff\x4c\x13\x4a\x9e\x55\xd4\x5c\x36\x9b\x5e\xaf\xa6\xf7\x92\xd6\x2c\x1f\x51\x5f\x91\x8f\x43\x35\xea\x37\xeb\x2f\x81\x92\xd2\x5c\x25\xa0\xa3\x44\x2b\xef\x19\x8e\x79\xe5\xdd\xe3\xc2\x3d\x1c\xd6\xe4\xfa\x2c\xa1\x60\x51\xd9\x68\x55\xe2\x74\x66\x06\x2e\x60\xcd\xcd\x6a\x4a\x79\x81\x2f\x73\x5a\x35\xd7\xdc\x6c\x68\xe7\x42\x4c\x6e\xed\xa3\x1c\x81\x0d\xa5\x89\x2e\x61\x9c\x72\xf7\xc0\x4a\x1f\x4c\xa7\x2a\x26\x17\x55\xbb\x09\xaf\x19\x5f\xea\xbe\x84\xd8\xc6\x92\x40\x65\x7d\xe7\x3b\x5e\x1a\xdd\x3d\xa3\x02\xe2\xed\x2a\x8c\x71\x1b\xdd\x93\xa1\x11\x85\x45\x2d\xa6\xcf\xe1\xba\xe9\x67\xaf\xa9\xbb\xd6\xe5\x52\x89\xed\xf6\xa7\xf6\xe9\xb6\x4f\x09\xdf\xd2\xd4\xea\x8b\x98\x36\x24\xbc\x89\x79\x66\x14\xfb\xd0\x5a\x92\x4a\x84\x73\x5b\xb2\xd5\xf1\xa5\x92\xd3\x56\xda\xa7\x25\xb6\x00\xb9\x0c\x27\xd7\x92\x27\xe5\x9e\x43\x89\xd1\xb4\xc2\x8a\x14\x3c\x41\x7d\xd5\x62\x56\xbd\x4c\x4c\x5b\xb4\xa3\x67\xfb\xeb\x13\x99\x2d\x1c\xf6\xfb\x68\xad\x87\xc6\x7a\x4d\x69\x98\x81\xd6\x2f\xf5\x9f\xe6\xb5\x81\x5c\x8c\x8d\xb2\xff\x5c\xd2\xa9\x1d\x31\x89\xd6\x9c\xb4\x7b\x5b\xa3\x6b\x63\x0e\xab\xd0\x7a\x42\x49\xad\x3c\xf2\xcf\x15\x78\x56\x33\x50\x02\x9f\x87\x4a\xc8\x7a\x80\x9d\x7f\x90\x30\x5c\xb5\x45\xf1\x0a\x5c\x71\x9c\x94\x2e\x44\xe0\x0b\xdc\x54\x19\x3d\x6d\x63\xb8\x5f\xd0\x4c\x8e\xe7\x95\x28\x45\xf3\xca\xf7\x4a\x56\xbf\x97\x59\x51\x5c\x0b\x39\x29\x23\x11\x94\xba\x51\x7a\xf3\x72\xee\x48\xc0\x77\x03\xe4\xa8\x39\xf1\x36\x42\xff\x85\xbd\xcc\xb9\xe5\xf5\xc7\x5c\x78\xe3\x2d\xf9\xc5\x4a\x29\xef\x19\xd0\xf4\xc9\x2a\x7e\x80\xa0\xc5\x7e\x78\x20\xdc\x22\xd3\x56\x1d\xef\x39\xbb\x3c\x3d\x95\x9e\x60\x2a\xaf\x35\x55\xfa\x00\xbe\xa5\x96\x4e\x79\x4d\x7f\x71\x61\x5c\x9c\xb8\xef\x26\xba\xf0\x1b\x63\x68\x9a\xdd\x90\xba\xe3\x3a\xe9\xce\x6d\x28\x30\x60\xff\x4e\x8e\x3b\x33\x74\xcc\x6e\x07\x78\xbf\xe0\x8d\x5a\x79\x05\x55\x1f\xd9\x82\x8a\x95\x1a\x94\x41\x67\x23\x7b\xdd\x5c\x66\x9c\xd3\x4c\xba\x52\xe1\x87\x2d\x57\x8e\xe9\x4d\xb9\x46\x59\x4b\x6d\x78\x25\xb5\x32\xe5\x9d\xba\x9a\x5b\x67\xdc\x23\x7c\xee\x21\x00\x33\x87\xb6\xbb\x6b\xd8\xb1\x61\xd3\x08\xed\x2c\x25\xbd\x62\x62\x55\xb8\x55\xa3\xd4\x79\xee\xf6\xa9\x59\x67\x9e\x56\xb6\x8e\xd2\xba\x6c\x92\xa9\x0c\xf8\x88\x07\xc0\x47\x6e\x36\xd1\x83\xb6\x0f\x0d\x22\xe2\xac\x7a\x81\x1d\x2e\xcd\x96\xd4\xfe\x3e\x9c\x2d\xa3\x87\x0f\x2c\xff\xa9\xf6\xf6\xb6\x0d\xb0\xec\x9c\x21\x2f\x39\x39\xcd\xd4\xbc\x23\x33\x3e\x11\x8b\xd0\xfe\xee\xf0\xb1\xf3\x4b\x79\x80\xf0\x19\x27\xd1\xf9\x39\xf8\x51\x7b\xcd\x8d\x17\x7a\xa7\x19\xfb\x20\xda\xbb\xe4\xf8\x63\x99\x01\x64\x59\xe6\x7d\x33\x59\x98\xd4\x77\x65\xea\x91\x3b\x1c\x9b\x82\xc1\x5b\xed\x15\xcf\xfc\x67\x1c\x2e\xac\x4b\x43\x8b\xe0\x7e\x33\x54\x30\xed\x73\x83\x50\x45\xf8\xf0\x1d\x1f\x6d\x36\x5c\x17\xf5\x96\xcf\x5e\xcb\xdd\x6b\x63\x18\xea\x77\x1c\xa3\x46\x95\x0b\x59\x35\x73\xb3\xeb\xc0\x68\xba\xdb\x6a\x3b\x68\xdc\xc0\x55\x8a\x0c\x6c\xb6\x72\xb5\xe4\x24\xa1\x84\xa3\xca\xde\xd0\xa4\x1b\xfe\x3e\xf4\x80\xa9\x37\x70\x5d\xef\x66\x43\x75\x17\xd0\x66\xf3\x53\xdb\x5a\xb0\x18\x65\x43\x1b\xec\x1d\x96\x61\x1f\xf4\x86\x1c\x5e\xbb\xc7\xf1\x0a\x3f\x39\x33\x18\xa3\x57\x4f\x43\xbd\xfa\xca\xf3\x30\x55\xa5\xf4\xc3\x50\xe4\xf7\xb5\xf2\xa2\xe9\xf0\x23\x20\xb8\xd2\x93\x17\x90\x63\x22\xd6\xbb\x2e\xaf\xe2\xd8\xf7\xa3\x7c\xd8\xb4\x5e\xfe\x6d\x85\xcf\x0a\xe1\x32\x3b\x56\xc8\xa6\x18\x16\x6a\x6e\x05\x3f\x6d\x59\x49\xe4\x44\x6a\x56\xcb\x3b\x27\x73\x92\x3d\xc1\xe1\x0a\xc8\xf9\xce\x32\x5f\x47\x15\x0d\x21\xc1\x5f\x95\x77\x45\x4d\x71\xf5\xec\xa7\xee\x02\x67\x37\xa6\x31\xeb\xa9\xb8\x6a\x88\x69\xcc\xfa\x69\x59\xff\x6e\xcc\x76\x6c\x24\x90\x89\x24\x6d\xe9\x1d\x1c\xa0\xcd\x46\x47\x24\x6e\x93\x22\xce\xd7\xac\xdd\x1a\x4b\x2f\x5e\xb0\xe1\xe6\x76\xe5\xa7\xb5\x5d\xd3\x68\xa4\xb7\xe5\x8e\x93\x36\x6a\x19\x89\x1d\x0f\x84\x15\xb7\x58\x81\xb7\xac\xfa\x03\x45\x87\x3d\xac\xb0\x4f\x2c\x55\x63\x02\x95\x17\x2f\x38\x48\x14\x01\xda\xe0\x1d\xa7\x8a\x6f\x3c\x87\xde\xf5\xe8\xd6\x50\x8d\x40\x17\x95\x37\x69\xf5\x4b\xd5\x18\x8f\x15\xc2\xbc\x49\xd7\xbf\x9a\xdf\xc7\xe3\x8a\x17\xaa\xd7\x6e\xa6\x19\x57\x01\x3f\x04\x65\xf8\x04\x21\xed\x9c\x57\x74\xa2\x87\xa3\xbe\xea\x23\xee\xcd\x38\x14\x79\x01\x0a\x44\xe6\xfd\x76\xef\xeb\xa3\xfb\x5c\xed\xef\xf7\xd1\x07\x9e\xf0\xa1\x1a\x61\xf7\x42\xc4\x24\x72\x4a\x20\x7a\x9b\x51\xa5\x6f\x10\xb5\xb7\x57\x66\xb6\x17\xbe\x11\xae\x18\x28\x9c\x78\xac\xd3\x38\xe6\xa0\x67\x54\xed\x4d\xfd\xf1\x31\xb0\x8e\x6b\x1e\x9e\x7a\xd6\xff\x3f\x0f\xca\xa9\xd9\x85\x1b\x46\x64\xb7\x0f\xba\xdb\xd5\x31\x30\xf6\x17\x81\x7b\x01\xa8\x0d\x6c\x31\x5e\x73\xfb\xb4\xb7\x65\x18\xbf\xd9\xdf\x4f\x75\xc6\xf1\x4f\x6e\xde\xc6\xfa\xe4\x17\xaf\x4f\x1c\x96\x2e\x40\x31\xf9\xa6\xcf\x37\x6e\x70\xb0\x20\xd6\x03\x11\xe3\xad\x37\x7c\xf0\x86\x5b\xe7\x58\x6f\x78\x78\xaa\xc1\x8c\x08\x37\x9c\xe5\x83\x5a\x32\x8e\xf9\x90\x8e\x08\x21\x62\x48\x47\xf0\xac\x16\xb4\x93\x11\xb9\x4f\x2d\x25\xf4\xfa\xea\x39\xc9\x74\x46\xb9\xaf\x4c\x56\xb6\xaf\x46\x40\x14\x7d\x0f\x1e\x71\xfa\x02\x14\xf7\x9e\xab\x41\x6f\xdf\x9f\x13\x4b\x54\x3c\x28\x9d\x08\x84\x3a\x6a\x7f\x04\xd1\x01\x43\xfb\x32\xf0\xc2\xed\x7d\xd6\xc0\xdb\xc9\x73\x56\xd4\x46\xc6\xbd\x7d\x14\x8c\x84\x7b\x02\xa9\x62\x6d\x81\x29\x81\xc8\xd0\xde\x06\x98\x11\x7d\xf0\x47\x3b\x4e\xfc\x84\x26\x3c\xe7\xf1\x65\xa0\x4b\x0e\xc5\x88\xa8\x84\xa3\x34\x32\x2d\x45\xe0\x93\xda\xbc\xbb\x64\xde\x3b\x94\xa9\xcb\xc7\x75\x29\x7f\x80\xd1\x59\x58\xf1\xca\xbd\x06\x0d\x5a\x10\x74\x42\x9c\x3b\xaf\xf2\x9d\x68\x9b\x32\xd8\x8d\x4a\xc1\xbd\xb6\x33\x3b\x34\x1e\x4a\x06\x0f\x78\xfa\x87\x7d\x0d\xaa\xc9\x90\x89\xd8\xc4\x12\xaf\xbf\x54\xbd\x9b\x43\x49\xa3\x93\x21\x44\x5e\x33\x18\xa9\x25\x56\x8c\x47\x0c\x22\xb3\x3c\x0f\xef\xce\x84\x67\x56\xe8\x35\xe4\x48\xca\xab\x44\x07\xc0\x3f\xbc\x34\x4f\x0d\x4f\xaf\xe0\x7d\xb0\xbe\xde\x3f\x79\x86\x50\x9f\x76\x26\xd4\x8d\x57\x82\x70\xaf\xfb\x73\x23\xd4\x71\x5c\x87\xb7\x6e\x20\xf3\xbb\x99\xda\x65\x16\x32\x1c\x61\x30\x6d\xd6\x1f\x74\x42\x7e\xe1\x98\x3a\x0b\x2c\xf2\x0f\xdf\x8a\xe4\x25\x0f\xfc\x3e\xae\x97\x66\x2c\xec\x30\x86\x2e\x08\x0d\x55\xd6\x87\xd7\xfa\x0b\xb4\x64\x17\xd0\x62\xdf\xb8\x8f\xa9\xd6\x37\xa8\x47\x24\x28\x75\x4f\x7f\x86\x6e\x81\x43\x0a\x80\x6a\x82\x6f\xd2\xee\x21\x7c\x17\xb5\x3d\xe0\xc8\x38\x51\x0c\x08\x25\xec\xc4\xbd\xb0\xd6\xca\x0d\x76\x62\xee\x82\xd6\x68\x79\xbc\x84\x7d\xc3\x38\xaf\x0a\x22\x48\xbb\x8b\xee\x21\x5f\x80\x78\x69\xcc\xe5\x76\xd0\x1d\x1a\xd2\x91\x07\x7c\x8b\xc3\x08\x3d\x2d\x4a\xb2\xd9\xe9\x25\x56\xf7\x2c\x05\x66\x89\x34\x0f\xb5\xc3\x74\xb6\x8e\xdc\xfb\x3b\x4b\xca\xee\xb2\xd3\xb0\x3a\x99\x4b\xcc\x3b\xfb\x78\xd7\x68\xb9\x79\xdd\xb0\x91\x55\xe3\xab\xb6\x87\xdb\x2d\xc2\x2f\x79\xd9\x19\xb2\x86\xa7\x15\x0c\x10\x00\xa8\x09\x57\xde\x69\x6d\x70\xc6\x09\x75\x59\x75\x2d\xcd\x8a\x98\x52\x66\xfb\x2f\x6c\x15\x30\x90\xc6\xcb\x27\x54\xcf\x16\xf4\x4c\x65\x8b\x65\xba\xeb\xb3\xa6\x45\x3b\x3e\x79\xb3\x79\x95\x29\x7d\x78\xbd\x4e\xd0\x16\xef\xac\x73\x50\x17\x2b\x3e\xca\x55\xe1\x3e\xb7\xba\x4b\xf4\x46\x51\x3e\xa9\x98\xb4\x07\xba\xae\xa1\xb8\x33\xf4\x29\xda\xfc\xee\xad\xb5\x0c\xd3\xb1\xfd\xe0\xdd\x3f\x12\xb8\x79\xb5\xe6\x51\xb0\x94\x95\xde\xb8\x18\x0e\x56\x04\x14\x7e\x90\x4a\x52\x48\x59\x84\xe3\x70\x40\xc0\xa5\x57\x40\x6e\xa0\x01\xeb\x7a\x27\x6d\x00\xff\xce\x41\xeb\x74\xab\x03\x2f\xad\x47\x8c\xdf\x38\xf1\x78\x48\xd6\xfa\xa8\xef\xbc\xea\xff\xe7\xce\x94\x2f\x9c\x0c\x9f\xe1\xde\x21\x3e\x78\x82\x0f\x0f\x46\xf8\x2f\x4e\x8e\xe2\x38\x3a\x2a\x95\x73\x6a\x0e\x3a\xf0\x67\xcb\x90\xe8\x6c\x4e\xa0\x07\x1e\xb6\x03\xd3\xca\x38\x4e\x3e\xf3\xd2\xa2\x32\xcc\x66\x40\xfd\xd5\x34\xf3\x91\xde\xa8\x5a\xfd\x71\xdc\xfe\xcc\x31\x95\x3a\x3d\x69\xff\xc5\x37\x9b\xcf\x3c\x8e\x9f\x3e\xd7\xff\x7b\xbd\x9f\xc9\x67\x8e\xb0\x92\xc4\x08\x11\x3a\x53\x29\x16\x47\xf3\x4c\x1e\x89\x09\x4d\x0e\x0f\x10\xe6\x92\xac\x2f\xe8\x54\x48\x0a\x5a\x48\xe9\xf7\x75\x13\x23\xc1\x5f\x96\x05\xa2\x52\x53\xb1\x9a\x70\x97\xd2\x62\x54\x55\x6b\x8a\x70\xe4\xd4\xf4\x22\x1c\x79\x6d\xa8\x08\x47\xa0\x75\x17\x8d\xb6\x38\x28\x70\xcc\x27\x3f\x06\xe1\x51\xa5\x4c\x15\xc8\x6a\xda\x1d\x70\x1a\x1d\xc9\x9a\x0a\xd6\x1d\xf6\x50\x5e\x93\x30\xd4\xc8\xaa\xc0\x6d\xee\xa9\xff\x2d\xe4\x56\xd7\xf6\x0e\xd8\x21\xf5\x47\xa1\xbf\xd7\x9e\xeb\xfb\xf0\x1b\x65\xda\x7f\xdd\x01\xa7\x83\x7b\x47\x0f\x4c\xf2\x8f\x76\xc1\xba\x68\xf9\x57\x7d\xd8\x62\x29\x2b\x2f\xce\x0a\xd9\x28\x45\x86\x3a\x9c\x70\x78\xbf\xd7\x26\xe4\x4b\x79\xb9\x0c\x37\xc1\x47\x30\x15\x5d\x66\x68\xc8\x69\xed\x1c\x1c\x3c\x03\x41\x96\xcd\xe5\x33\x19\xa2\x0e\x2c\xad\x26\xa5\x84\xc2\x18\x74\x79\x37\xc8\xbb\xaf\xca\x78\x88\x99\x0c\x3c\x95\xd5\xc5\xc3\x20\x4e\x98\x50\x95\xb1\x1c\xe9\xe5\x25\x53\x19\x78\x04\x1b\x18\xc9\x65\xea\xc5\x8a\x19\xa0\x01\xee\xd5\x24\x59\x97\x8f\x47\xa7\x5c\xe2\x8a\x25\x69\x5a\x57\xce\xb2\xdc\x6b\x9f\x4d\x93\xbf\x38\xa2\x69\x1d\x75\x75\x22\x73\x8a\x52\x5c\x76\xea\x13\xc0\x0b\x30\xea\x05\xf5\x3a\x90\xd6\x8b\x1c\xf3\xc9\x9d\x05\xac\x02\xe4\x4e\x19\x43\x51\xfe\x5a\x88\xb9\x7b\x20\xd0\xf3\xc9\xe4\x00\x86\x1f\xfc\xf7\x36\xb4\x86\x52\x3f\xb4\xc6\xd4\xe1\xe0\xe0\x19\x1c\x11\xec\xc0\x36\x94\x82\x6e\x79\x26\x9e\x0d\x12\x2a\xe3\x38\xba\x14\xe0\xa5\x15\xee\x7f\x80\x49\xcb\xe4\x66\xc3\x74\xd4\x6e\xe1\x01\x38\x52\xa9\x83\x12\xc7\x99\x8c\xe3\x44\x10\x7d\x78\x45\x69\xf2\x8d\x97\xe7\xd2\xe4\x0d\x27\x12\xdd\x79\x34\xd5\x23\xdd\x45\x08\x33\xf2\x1b\x2f\x79\xf1\x84\xf9\x43\xc5\x80\x01\x6d\x10\x91\x3a\xdd\x2b\x41\x98\x4c\x8c\x2f\x54\x97\x86\xf0\x2b\x9e\x30\x84\x05\x61\x28\x15\x86\xe7\x4a\x28\xf9\x35\xf0\x79\xd7\x34\x8f\xea\x63\xea\x10\x23\xdd\x8b\x45\xc1\xbc\x70\x2a\x5b\x07\x30\x79\xae\xe7\x6c\x3c\x37\xc2\xd3\x44\xcf\xd9\x2e\x56\xf6\xe1\x84\x60\x53\x48\xbd\xe7\x04\x05\x70\x22\x3d\x11\x64\x1c\x4b\x69\xc5\xae\xb5\x89\x64\xb8\xae\x2d\x8c\x79\xba\xe3\x5a\x2f\x73\x02\xcb\x3a\xd8\x46\x06\xd7\xfe\x8b\xc7\xb1\x5d\x2f\x06\x09\x85\xa1\xc0\x9f\x38\xf9\xc6\x89\x93\x39\xc0\xac\xc2\x14\x19\x9d\xb2\x1a\x2e\xcc\xfe\x15\x42\x52\xc7\x00\x9c\xda\x54\x67\xac\x64\xfe\x1b\xbd\xdd\x6c\x40\x3c\x6e\x43\x0b\xaa\xb2\xdf\xe8\x2d\x38\x42\xb6\x19\xe2\xd8\x65\xb0\xbe\x93\xc7\x73\x4d\x25\xbd\xe7\x26\xe4\x4e\x9b\xde\x13\x92\x8e\x34\xfe\x5a\x00\xb9\x2e\xa1\x89\x13\x70\x59\xb6\x3b\xd0\xde\x31\xa2\x01\x9d\x2b\x4b\xe7\x66\x08\xcc\xc0\xdc\x33\x0e\x68\x90\x24\x8a\xfc\x27\xa4\x4d\x2e\x3b\x01\x0b\xe2\xd4\x17\x0d\x25\x52\x4d\x88\x0a\xa1\xd4\x5a\x54\x3b\xf5\xc2\x81\xe1\xbb\x41\x4d\x49\xa4\x43\x81\xd5\x68\xbb\xc5\xb9\x24\x6b\x50\x6f\x48\xdb\x5d\x0c\x5b\x96\xfd\xd5\xcc\xb2\x0e\x47\xee\x63\x1f\x80\x8e\x8c\xf6\x4c\xc6\x40\x8d\x66\x21\xb8\x51\xb6\x33\x77\x74\x46\x41\xc6\xdc\x69\xea\x30\x3c\x9d\x08\xca\x32\x70\x37\x0a\xca\x32\x34\x37\x3f\x37\xa0\x68\xe3\x5a\x59\x49\x88\xbe\xa6\xf4\x32\x6d\x77\x03\xef\x77\x63\xf9\xdf\xbd\xb4\x0d\xee\x6b\x07\xed\x76\x2e\x87\x46\x8c\x3c\x4a\xab\x17\xac\xc6\x7d\x86\xc6\x02\xa8\x97\xff\xe0\x8e\x6d\x4d\x95\x2a\xdb\x34\xc4\xdd\xbf\x37\x5b\xa3\x6e\xb0\xe8\x08\xad\x33\x82\x2d\x7a\xb5\xac\x6b\xbc\x57\xf7\xe7\xc0\xc9\x87\xac\xaa\xa8\x25\x54\xb3\xe0\x25\x91\x14\xb2\x63\x2a\x30\xf2\x11\x84\xcc\xdb\xdc\x91\x33\xbc\x7a\xab\xf9\x7b\x90\x0f\x62\xe3\xee\x73\x62\x5f\x2e\x58\xca\x9a\x40\x70\x0e\x83\x00\x4e\x60\xca\x6d\x76\x21\xad\x1c\xe5\x86\x26\x70\x65\x53\x1a\xe0\x06\x2f\xff\x48\xbf\x78\xb8\x76\x43\x6f\x45\x06\xfb\xb3\x2a\xc7\x71\x25\x13\xb4\x9e\xe8\xd5\x7c\x22\x61\xab\x1e\xcf\x61\xa7\x4d\x22\xc1\xdd\xe3\x66\xae\x0f\x17\x12\x69\x70\x2d\xe4\x01\x74\x17\x0e\x3a\xbb\x0b\xc0\xfd\x51\xf8\x34\x5a\x1c\x2f\x64\xb2\x94\x08\x81\x9f\xea\xa9\x0e\x63\x8a\xc1\xdd\x0c\xc2\x6f\x10\x74\xd6\xa8\xe2\x7a\xd5\xf4\xd7\xc9\x5c\x86\x3a\xad\x6f\xfc\x23\xf9\xc1\x33\x21\x7e\x50\xac\x46\x36\x78\x6a\x4d\x74\x9f\x00\xaf\x38\x99\x48\xa2\x50\x27\x53\xdf\xeb\x17\x32\x44\x63\x77\x56\x5d\x41\xf0\x7c\x84\xef\x5d\x9d\x56\xec\x6d\x88\x61\xcf\xca\x0f\xbf\x47\x3b\xcc\x9b\xce\x07\x77\xbf\xe1\x40\xc1\x2d\x52\x2d\x77\x68\x62\x7a\x19\x64\xae\x5c\xc9\x34\x0c\xb1\x29\xaa\x8f\x5a\x33\x49\xc6\xca\x15\xd0\x5b\x67\xbb\xf1\xf8\xb6\xd9\x3c\x7b\xde\x7c\xae\x33\x07\xbb\xb3\x2a\x3b\x56\x48\x7c\xce\x0a\x58\x07\x01\x9b\x67\xab\xe5\x52\x48\x7d\x6e\x9f\xfd\x20\xa3\x46\xd4\xe0\x5c\xaf\x98\xa9\x3d\x7e\x32\x22\x82\x55\x46\xdc\xb5\xca\x94\xd8\xd7\xfd\x65\xe1\xed\x14\x8b\xe3\x08\x54\xc5\xfc\xcb\x92\xc8\x88\xb5\x6f\xa5\xd7\xe9\x1f\xcb\x44\x00\xf1\xcd\x24\xca\xc8\xa5\x49\x58\x67\xe4\x46\x1a\xa6\x93\x5c\x4b\x60\xc2\x92\x10\x9c\xca\x4b\x36\xec\xfe\x97\x6c\xc4\xce\x8b\x12\x16\x14\xcd\x5e\x91\x63\x63\xa6\x90\xc1\x47\x66\x3c\x26\xba\x21\x9b\xca\x24\x33\x86\x0c\xab\x38\x5e\x25\x14\x0b\xac\x10\x0e\xa9\x31\xa1\x44\x54\x9d\x3d\x23\xbd\x1e\x97\x8f\x5b\xc4\x71\xa0\xb6\xe1\x9e\x1d\x3c\xa2\x89\xc0\x2e\x1e\x0b\xeb\xf9\x7a\xbb\xc5\x1f\x65\x28\x3c\xb8\x62\xf4\xda\xc8\x60\x0c\x9f\xee\x04\x09\xef\x24\x59\xbf\xc8\x55\x1a\x99\x2d\x3d\xc2\x47\xa6\xb9\x34\xb2\xdb\x7d\x84\x4f\xa9\xca\xd2\xc8\x72\x02\x11\x3e\x9b\xb3\xa9\x4a\x23\x30\x91\xd5\x11\xc1\xe2\x79\x14\xec\x2b\x3b\x02\x47\xcf\x10\xcc\xa8\xa6\x3c\x36\x65\xb6\x97\x83\xdd\xa8\x84\xa2\xb4\xdd\x4e\x28\x79\x27\x87\x74\x84\xe2\xb8\xdd\x06\xe5\xd4\xf2\xa6\x5c\x96\xc2\xa0\x23\x09\x0b\xde\xb9\x24\x5d\xfc\x55\xff\x7b\x01\xfc\xd0\x5b\xf8\xff\x41\x92\x8f\xd2\x63\xa1\x80\x37\xeb\x3f\x1b\x44\x98\x8f\x2f\x56\xea\x95\x33\xca\xd5\xe7\xf0\xc3\xa6\x2c\xb3\x19\xfd\x5c\x06\x5d\x7e\x83\x1d\x5b\x93\xc5\x85\xf9\x32\x98\x34\x61\x8b\x35\xf3\x51\xef\x65\xfa\x5e\x62\x73\x27\xeb\xc4\x70\x3a\x6c\xc5\x70\x92\xe6\x99\xa2\x93\xba\x24\x2f\x14\xbd\x55\xb2\xc0\x03\x10\x9a\x9b\x0a\x5e\x54\x08\xbc\x79\x0d\xf4\x4c\xb3\xe1\xb4\x92\x11\x6d\xf1\x42\x5c\x41\xf0\x73\xa5\x1d\x3d\x17\x7d\x8a\xf1\xf0\xec\x9b\xf6\xf1\xd6\x4d\xc2\xb9\x7f\xef\xec\x5c\xea\x76\x0d\x9e\xf1\x0b\x39\x88\xbc\x45\x5d\xa9\x90\x35\xf0\x39\xf6\x55\xda\x4d\x93\x17\xc0\x69\x77\x03\x48\xbe\xdc\x09\xc9\x97\x3b\x20\xf9\x62\x21\xf9\xea\x21\xf9\x5a\x42\xf2\x05\xbf\xfd\x0e\x24\x5f\x0c\x24\x6f\x1d\x24\x5b\x84\x5f\x4b\xf2\xa1\x24\x1d\x6f\x10\x63\x86\x07\x5e\xcb\x36\x41\xf3\x4e\xb4\xa5\x10\xcd\x52\xaf\xa4\x97\xcc\xf2\x19\xe5\x8a\x65\xf9\xfb\x6a\x3c\xcb\x1d\xa9\xe9\xa0\x25\x29\x75\xcd\x0a\x57\x8d\x69\xec\xa3\x97\xf1\xb2\xe2\xbd\x64\x8b\x4c\xde\xba\x79\x7b\x22\xc9\x7a\xe1\xaf\xfc\xd3\x75\xfd\x1a\x33\xad\xaa\x04\xd4\xa5\x5f\xde\xe5\x0a\x0e\x6c\x91\x46\x1a\xff\xab\x82\x82\x6d\xe4\x3d\x55\x42\xfa\x0f\x57\x69\xfb\x72\x0f\x9c\xef\x83\x1c\x3b\xd5\x06\xde\x5e\x70\xc5\x12\xaa\xac\xfa\x1e\x78\xdf\x07\x39\xfe\x4d\xd5\x5b\x7c\x5a\xdd\x11\x4f\xbe\xb7\xef\x61\x81\xac\x7d\x51\xd0\x7d\xbb\x83\x87\x75\xeb\x28\x9c\x91\x12\x5d\xb5\x3c\x36\x06\x9c\x98\x9a\xd7\x89\x93\xc3\x83\x58\x98\xeb\xf2\xda\x8c\xe7\x95\x79\xbc\xd9\xb4\xb3\x38\x6e\xb3\x8a\x1a\x46\xc2\x88\xec\x98\x3d\x18\x8c\x1b\x65\x0a\x31\x55\x85\x64\x7d\x16\xb7\x0f\x14\x30\x7a\xbd\xd9\x30\xab\xa9\x64\x14\x40\xdd\x16\x9e\xa1\x41\x92\x11\x85\x4b\x17\x31\xa0\x7f\xb0\x03\x93\x5f\x67\xd0\xe0\x08\x58\x00\xe0\x22\xe3\x38\x51\x6d\x62\xfc\xd0\x18\x55\x26\x55\xaa\x32\x29\xeb\x43\x2d\xb1\x6e\x39\x50\x9a\x11\xa7\x45\x92\x85\x3a\x6d\x2e\x72\x07\x7d\x55\x9c\x23\xb3\xdb\x7f\x90\x38\x27\x27\xb2\x53\x52\x35\x1e\xfb\x6f\x20\x37\x5c\xd8\x91\x88\x80\x55\x08\x47\xc1\x78\x64\xac\x8c\x5d\xdb\xbc\x52\xb3\x22\xaf\x6d\xc5\x21\x01\x9a\xaa\x43\x6a\xd7\x95\xdb\xef\x08\x18\x03\x6a\x1f\xd3\xca\x06\x2c\x3d\xe7\x49\x86\x30\x73\xcf\x6b\x99\x18\x85\x70\x92\x93\x55\x70\xde\xc8\x71\x66\xcf\xa1\x70\xce\x28\xf6\x22\xe3\x57\x09\xe7\xee\x72\x9a\xe2\xbc\x3a\x06\x84\xe1\x84\x57\x2a\x19\xfb\xc3\xac\xab\xc4\x98\x2a\x62\xee\x2a\x61\xb8\x36\x90\x84\xe2\x82\x28\x9c\x48\x92\xa1\x38\x2e\x90\x55\x88\x1e\x93\x02\x67\xa4\x8b\x29\x59\x11\xd9\xa7\x7d\x4a\x40\xd3\x0b\x65\x7b\x7b\x4e\x05\x01\x2b\x32\xee\xab\xbe\x55\x53\x41\xd4\xa6\xf4\xbb\xcf\xb3\x7d\xda\x47\x2b\x1d\xbf\x42\x38\xdb\xdf\x77\xf1\x74\x3f\xeb\xa3\xb1\x8e\x1f\x23\x4c\x5d\xbc\xce\x00\x4b\xff\x8a\x10\x32\xde\x6c\xe0\x27\x70\xc5\xec\x84\x72\xae\x42\x5b\xc1\x76\x15\xd8\xd4\xad\xec\x99\x0b\x20\x5f\xe1\x15\x19\x8e\xfa\x32\x8e\x65\x9b\x90\x71\xf9\x42\x74\x92\x11\x19\x54\xbc\xd9\x64\x3a\x1d\xf5\xd1\xca\xdc\x36\x4b\x84\xa5\xae\x5c\x1a\x45\x1a\xa9\x6b\x29\xe2\xb8\xd8\xa9\xa5\x68\xac\x45\x9a\x5a\x0a\x84\x0b\x5d\x4b\x61\x6a\x29\x48\xb7\x5f\x3c\x5f\x39\xfd\x8d\x62\x6f\x0f\x9d\xf0\x64\x35\x2c\x42\x75\x9c\xdc\xe5\x95\xa5\x9a\x4f\xa1\xf1\x72\xc2\x13\x09\x59\x4b\x35\x1f\xee\x05\x80\xb0\x68\x3c\x7e\x14\x0b\x34\x18\xe6\xa3\x74\x98\x63\x3e\xda\x6e\x61\x7f\x7c\x25\x1b\x75\x65\xad\xa9\x11\x2b\x06\x3e\x54\x13\x54\xb9\xfd\xd6\x6a\x6a\x77\xcd\x54\xe8\x3d\xd4\x11\xbd\x87\x7a\x4a\x53\x33\x61\xf4\x24\x57\x5b\xfc\x46\xba\x87\x18\xcb\xcb\xb3\xaa\x26\x46\xc9\x36\x7e\x2b\x4f\x3e\xaf\x4c\xb0\xf2\x86\x79\xc3\x1b\xba\xfe\xed\xf0\xc6\x27\x76\x95\x4f\x56\x55\x77\x4e\xfe\x71\x48\xb0\xa9\x82\xf7\x61\xc2\x08\xeb\xae\xc9\xa2\x1a\x5c\x42\x56\x84\x59\xfa\x3c\x0d\xe3\xdf\xed\xcb\x52\x91\x4a\xee\xed\xe9\x13\x47\xfb\x8d\xb4\x6f\x29\x1a\xc7\xb2\x9b\x4d\x5b\x77\x66\xa8\x3f\x46\x58\x99\x5f\x54\xd6\xe4\x75\x66\x34\x60\x9f\xe0\xde\xec\x9e\x7b\xb9\x5e\xef\xe7\xe6\x7b\x39\xfc\xa7\x24\x6b\x73\x62\xfa\x31\x29\x8b\x79\x13\xa9\x2a\x65\x31\x71\xdf\xb9\x01\x29\x7d\x6f\x38\xb7\x19\x46\xd8\x52\x15\xb3\xec\xba\x12\xbc\x57\xf0\x82\x1f\x58\xf1\xc8\x1f\xf6\xf7\xa5\xfd\xfd\xa5\x2a\xbe\xf8\x47\x56\xdf\x34\xf2\x3b\x9a\x1a\x94\xf8\x48\x9f\x81\xa3\x68\x6f\x79\xa3\x52\x55\xdd\xe8\xdc\x04\xf9\xc5\x3f\x3e\xff\x40\x6e\x36\x0f\xf4\x72\x50\xf0\x84\x23\x2b\xf8\x2d\xcf\xff\xe6\xea\x8b\xf1\x84\x93\x07\x12\xc5\xf1\xdc\xe4\x22\x6b\xf3\x56\x05\xef\x54\x73\x62\xca\x27\x61\xe4\x31\x9f\x6c\x53\x4e\xd6\x19\x1f\xcf\x85\x04\xc7\xb7\x09\x27\x09\xaf\x42\x15\xc7\xb5\x88\xea\x66\xec\xbc\xf0\xce\xa8\x7d\xcf\x0a\x2e\xf4\x51\xa7\xac\x14\x9b\xe0\x3b\x63\xc3\xc2\x3b\xe1\x27\x86\x41\x82\xa6\x79\xc7\x87\x4d\xac\x2f\x10\x7c\x6d\xf1\x4b\x19\xc7\xdf\x64\xf2\x52\x62\x8f\x90\x97\x20\x63\xa9\x49\xc2\xfe\x94\xb6\xa3\xf8\x0f\x89\x61\xd2\x5a\x51\x98\x3d\xbf\x7b\x17\xb8\xe4\x81\x74\x12\x31\x64\xae\xe8\x7f\xaf\xf2\x56\x7f\x7e\x9f\xb7\xc2\xcc\x6a\x17\x31\xd2\x4e\x04\x61\x9b\x4d\x52\x65\x6b\xaa\x44\x50\xda\x03\x0d\x64\x5a\xe7\x76\x10\x42\x6b\x9a\xae\x05\xf9\x4c\x13\xa1\xb7\xe0\x8f\x1d\x37\x05\xbc\x36\x79\x46\xba\xfd\xec\x39\x73\x73\x3c\xb3\x73\x5c\x80\xa3\x52\x36\xcc\x46\x08\xad\x85\xa6\x50\x77\xc7\x23\x48\xbb\xbb\x65\xa4\x0d\x2e\x62\xab\x2c\x98\x15\xc8\xef\x88\x44\x6a\x1e\x16\x8d\xf0\x22\x30\x4d\x11\x3b\xa6\x29\x71\x9c\x3c\x90\x44\xe8\xc9\xa2\xdc\x4c\xa9\x38\x3b\x34\xf7\x79\x2f\x25\xf9\x43\x12\x3b\xb3\x76\x1c\x2f\x9a\xeb\x3f\x3d\xbf\xba\x15\x07\xa7\xe5\x04\x0f\x2f\x0b\x57\xcb\xc0\xa5\x63\x28\x7a\x87\x09\x8a\xff\x91\x09\xc8\x34\x02\x5b\x97\x72\xa6\xa7\x6c\x9a\x7c\x72\xde\x72\xab\x77\x96\xbb\xd7\x9d\x2d\x5b\x55\x45\x33\x7e\x8b\x7f\xab\x48\x31\xbc\x59\x3b\xf0\xf7\x46\x2f\x33\xcf\x96\x05\x9d\x7c\x64\x2e\x62\x59\xd0\xd5\xc4\x1f\x75\x9d\x26\x45\xa5\x9a\x71\xce\x96\x17\x22\x93\xe0\x7f\xaa\xe1\x6c\x1d\x55\x32\xb8\xab\xcc\x6a\x29\x33\x88\xd5\x48\x7d\x6a\xfc\x52\x11\x38\x54\x4f\xf1\x06\x98\x72\x55\xfb\x2b\x94\xc3\xfb\x8b\x5b\x07\x83\xbd\x15\x31\xcd\x77\x9d\xd6\xb6\x8b\x46\x71\xdc\x3b\x74\x3e\xe8\x48\xef\x10\xa5\x94\x28\xdc\xeb\x7a\x59\x52\xef\x10\xe1\xc3\x83\xe7\xb0\x4d\x83\x2b\xee\x01\x4d\xcd\x6e\xf3\x59\x92\xf5\x71\x31\x4e\xa3\xe3\x62\x9c\x2d\x69\x84\xcf\x96\xd9\x98\x5e\x64\x32\x8d\x5a\x11\x7e\x43\xa7\x2a\x8d\x5e\x48\x29\xae\x75\x30\xc2\x9f\x96\xf6\xf3\xd3\x32\xc2\x1f\xe0\xac\x6b\xbe\x21\x1c\xe1\x57\xe2\x9a\xdb\x18\x50\x7e\xc7\xaf\x68\x9e\x46\xaf\xc0\x25\x61\x84\xff\x64\x3c\x8d\xde\x9d\x45\xf8\x94\xf2\x55\xea\x9e\x4f\xd7\x1f\x11\x7e\xb1\x5c\x16\xb5\xa8\x33\x70\x7c\x93\x46\xe6\xf7\x8d\x18\x5f\x46\xf8\x54\x7c\x7b\x2f\x19\x87\x39\xf0\x1b\xbd\x4d\xa3\x4f\x9c\x4d\xf4\xb9\x7a\xca\xe8\x24\xda\xe2\x5f\x25\x59\x3f\x4d\xa3\x97\xd9\xf8\x12\x5e\xa8\x8a\xf0\xb3\x34\xfa\x98\x5d\x44\xb8\x77\x90\x46\x47\x39\xcd\x64\x84\x7b\x87\x69\x64\x4f\x98\xbd\xc7\x69\x04\x52\xac\x08\xf7\x9e\x98\xf6\xa5\xc8\x23\xdc\x7b\x9a\x46\x2f\x72\x1d\xfb\x2c\x8d\xde\x67\xfa\x54\x80\x0f\xba\x69\x74\x94\x2d\x0b\x03\xc9\xc1\x93\x12\x69\x87\x07\x80\xae\xc3\x43\x9d\x77\x46\x35\x72\x0e\x1f\x99\xb0\x41\xc3\xe1\x4f\xba\xc5\x49\x84\x0f\x1f\xa7\xd1\x2f\x62\xa1\xcb\x3c\xa9\x60\xf6\xf0\x69\x80\xd9\xc3\x67\x55\xb4\x3e\xea\x56\x90\xfa\xe8\xa7\x34\x7a\xcd\x0b\x2a\x75\xd2\xe3\x12\xbf\x3d\xdd\xc7\x93\x9e\x0e\x1c\xa6\xd1\xc9\x81\x0e\x3c\x4a\xa3\x93\x43\x1d\xf8\x29\x8d\x4e\x1e\xe9\xc0\xe3\x34\x3a\xf9\x49\x07\x9e\xa4\xd1\xc9\x63\x1d\x78\x9a\x46\x27\x4f\x74\xe0\x59\x1a\x9d\x3c\xd5\xa8\xea\xa6\xd1\xc9\x33\x1d\xe8\xe9\x0a\xbb\x3a\x04\x55\xeb\xba\x0f\x74\xdd\x3d\x5d\xf9\xa3\x47\x69\xf4\x76\xb5\x30\xf8\xe8\x69\xa8\xc2\xa1\x3a\x38\x78\x94\x46\xa7\x54\x65\xd1\x16\x53\x11\xce\x84\x4b\x7a\x5b\x97\xe9\x00\xc9\x3b\xfa\xff\x2c\x87\xf0\x3d\xda\x6c\xe0\x17\x38\xbf\xca\x40\x57\x1e\x58\xb1\xcb\x44\x79\x8d\x59\x8a\x74\x8c\x57\x53\x4a\x60\x76\xa1\x81\x1d\xf5\xb4\xe9\xc2\x91\xd6\x2e\xdb\x9d\x74\xb7\x94\xf4\x9b\x2a\x7f\xb5\xc0\xe9\x42\x23\x78\xd9\x3d\x80\x2b\x8d\xa2\x2d\x76\x46\x96\xff\x7d\xe9\xa0\xa4\x4b\x9a\x59\xf9\x8f\xb9\xca\xbc\x5b\x6a\xe8\x16\x81\xa6\xb5\xab\x01\x23\x80\x89\xb4\xbb\xc5\xb6\x0b\x77\x14\xfb\x2e\x1a\x3c\x0e\x74\x5d\x70\x55\xfb\xaf\x00\xf8\xd7\x6d\x6c\x11\x56\x22\x14\xc2\x4d\x32\x95\xc1\x1b\x54\x53\x2a\xdd\xd2\xce\x2b\x64\x66\x5c\x8d\x15\xa1\x66\xe4\xc7\x30\xca\x6c\x4d\x93\x4a\xdc\x9d\x43\x72\xcf\x30\x36\x8c\xca\x16\x61\x29\xc2\x6d\x26\xbc\x19\xfb\x37\x9b\x95\xa8\xf6\x99\xe6\x2a\xfb\xdc\x84\x68\x93\xe2\x35\x6d\x4c\xbe\x08\x7c\x81\xbd\x0a\x92\xf6\x69\x27\x88\xd3\x43\x07\x59\xbf\xdc\x59\xe5\x97\x4a\x95\x5f\xc2\x2a\xbf\x34\x54\x59\xc9\xd0\x90\xee\x5b\xfc\xcb\x5d\x40\xe4\x2a\x3b\x05\x8e\xd4\xf4\x97\x89\x0a\x3b\xf8\x4a\xfd\xe0\x15\xd3\x1b\xe5\x1e\xb0\x02\xde\xac\x89\xe9\x0a\x34\xab\x4a\x6d\x07\xbd\x47\xfe\x05\xaa\x26\x4d\x5a\x11\xbb\x0c\x0a\x25\x54\xec\x72\x59\x21\xef\x46\xc9\x17\x59\x61\xa6\x8c\xc9\x18\x9b\x26\x07\xc6\xbb\x28\x48\xf6\x77\x9b\x73\x7e\x0a\x1d\x8f\x65\x9d\x14\xde\xa1\xad\x55\xca\xaf\x9b\x18\xb4\xd2\x8b\x76\xa3\x93\xed\x0a\x7f\x47\xc9\x07\x59\xf7\xdf\x5d\xe7\xf3\xee\x74\xec\x4d\x6f\xbc\x27\xfb\xc0\xcf\xb7\xff\x0e\xda\xf4\xfe\x14\xfd\xb7\x00\x74\xaa\x0a\x3a\x03\xaf\x81\xce\x4e\xda\xfa\x0b\x0c\x3f\x83\x7e\x97\xce\x03\x75\x65\x3c\xac\xac\xf5\x0f\x85\x3c\xad\xdf\xed\xef\x6f\x34\xa5\xe4\xb7\xb0\xb3\xad\xff\xe8\x28\x59\x01\xc1\xbd\x33\x40\xc9\xc7\x0a\x5e\x8c\x5f\xbd\x94\x12\x21\xaa\xbc\xf2\xf2\xd6\xa1\xd5\x23\xdc\x2a\xda\x50\xf2\x1f\xf9\xdf\xf5\x3f\x1e\x7a\xfb\xaa\x20\x24\x70\xe1\x58\x8d\x09\xb0\x12\xba\x45\xbf\xdf\x73\xba\xa1\xe9\xd7\xb2\xe6\xa4\x4e\x9f\xef\x1c\xf7\xfd\x8a\xc3\x3b\x67\xe5\x69\x4f\x38\x11\x22\x56\xdb\xad\x9e\x6f\x57\x75\xdf\x29\xdd\x1e\x42\xfd\x2b\x62\x5e\xe9\x29\x85\x3e\x60\x41\x64\x24\x23\xd1\x07\xf3\x4e\x0c\x95\x30\xb1\xdf\xe7\xab\x19\xe3\xad\x33\xb6\x58\xe6\x34\x8c\x39\xf6\x32\xd5\x30\xd6\xa8\x82\x54\x4a\xc2\x79\x23\x8c\x09\x14\x7f\x83\xe8\x50\xe4\x80\xf0\x75\x82\xf0\x9c\x7c\xe5\x78\x41\xde\x73\x7c\x4b\xce\x39\x7e\x97\xac\x77\xa0\x48\x99\xc0\x8d\x80\xa4\xa7\x12\xef\xc0\x92\x9e\x49\xbc\x03\x4e\xfa\xbb\xc4\xcd\x10\xa5\x2b\xb9\xb5\x56\x59\x82\x0c\x47\x78\x25\xc8\x7e\x20\xed\xc8\x85\x5e\xb8\xba\x3f\xaf\x04\xdc\xea\xb9\xd7\xb3\x32\x31\x5c\x89\x11\x36\x3f\x46\x4c\xb2\x12\xfb\xfb\xa1\x83\x10\x61\xc4\x24\x2b\xb1\xb7\xe7\xf2\xf9\xf2\xb8\xac\xc9\x2a\xe8\x08\xb2\xde\xe2\xa9\x20\x6b\x1b\x9f\x16\x62\x8b\x97\xc1\x77\xbb\xb7\xc5\x73\x41\x0a\x51\xc2\xb6\x10\x55\xcb\x5c\xa7\x16\xaf\x17\x17\x58\xbf\xab\x16\xba\x85\xb0\xf6\xb9\x35\x1b\x5e\x19\xc7\xb2\x53\x33\x1d\x3f\xb5\xaf\xea\x7d\xe2\x8b\xac\xb8\xa4\xe6\x29\x56\x7b\x3a\x08\x2f\x01\xee\x2c\x78\xba\x53\xcc\xf8\x43\xc4\xcc\x3d\x92\x2e\xec\xb3\x9d\x60\xf3\x35\x14\xfe\x39\x4e\x19\xc7\x49\x42\x43\x20\xd1\xbf\x82\x4e\x23\xf7\x87\x81\x22\x0c\x61\x16\xa8\xf3\x88\xe0\x56\x97\x07\xcf\x0e\x8e\x83\x32\x80\x5a\x14\xc7\x46\x93\xb4\x4d\x48\xa0\x0f\x34\x13\x09\x5a\xe7\x22\x59\x0a\x84\x73\x91\x4c\x45\x40\x11\x57\x22\x78\x68\x65\x2a\x1c\x05\xb4\x09\x29\x44\x7d\x06\x3f\x7e\x8a\x50\x7f\xac\x2b\xc0\x0a\xe1\xb1\xae\xb0\xe2\x7e\xe6\x42\x54\x9d\x68\xd6\x86\x94\x3a\x2b\xfa\x10\x64\xdc\x64\x01\x2c\xf5\xc2\x12\x62\xa4\xb4\x9d\x77\x02\x18\xa6\x07\x4a\x92\x9d\x9c\x09\xa8\x77\xb4\x13\x48\xa7\x3b\x0e\x9c\xba\x4f\xf1\xad\xb9\x61\x8a\x3e\x59\xab\x25\xcc\x6a\xef\xae\x73\xbc\xde\x56\x8c\xd7\xae\xc3\x01\xa0\xa4\x46\x07\x71\x7c\xf7\xd0\x52\x39\xab\x0e\xed\x66\x53\x08\x3d\x63\x4a\x4c\x63\x83\x50\xea\x10\xba\xf4\x29\xe0\x32\xb1\xd4\x3e\xba\x1f\xb9\xed\x9d\xc7\xf8\x1e\x3f\x43\xa8\xcf\x07\x09\x25\x76\x5c\xe6\x02\xe1\xbb\xa7\xc6\x0e\xa8\x84\xe2\x0a\xcd\x78\x40\x51\x6a\xe3\x3d\x05\x68\x88\x8e\xc5\x7d\xae\x58\x2f\x2b\xa9\x75\x67\xf7\xf8\xac\x92\x6c\xb6\x36\x9f\xf8\xb1\x5a\x33\xfd\x67\x45\x0b\xf5\x3e\x63\x5c\xe1\x77\x95\x24\x2e\xae\xf1\x51\x25\x46\x13\x87\x41\xa6\x83\x04\x1e\x20\xc0\xef\x2b\xb9\x5e\x2f\x16\x74\xc2\x32\x45\x3d\xb8\xe7\xe2\xbb\xae\x67\xbf\x56\xb2\xd4\x5c\xf4\xbf\xa8\x24\xbe\x11\xd7\x3e\xe5\x6d\xb5\xe5\x49\x5e\x36\xfa\x01\x96\xdb\xd7\x55\x4c\xcd\xc5\x2a\x9f\x7c\x61\x34\x9f\xe0\x13\x41\xfc\xec\xfe\x28\x06\x1f\x45\x68\xbf\xb5\xc5\xa7\x56\xff\xf9\x95\xfd\x7d\x23\x48\xbb\x87\xbf\x09\xf2\x4e\x24\x08\x7f\x12\xa4\x47\x1f\xfd\xfc\x4d\x0c\xde\x89\x06\xbb\x2f\x9d\x67\xff\x9b\x08\x74\x75\xfe\xd4\x8b\x86\xe5\x92\x8f\x44\x82\xac\xcb\xdb\xf7\xc2\xc9\xe3\x9e\x3d\x33\xec\xd2\x79\x19\xf3\xd4\xc4\x7c\x2d\x63\x9e\x98\x98\x17\x65\xcc\x63\x13\xf3\xb6\x8c\xf9\xc9\x73\x18\x75\x9f\x12\x07\x15\x87\x63\x0f\xc4\xee\xf3\xf2\xad\x67\xcf\x5c\x3d\xef\x85\xa9\xf9\xd9\x53\x17\x73\xee\x62\x9e\xb8\x98\xaf\x2e\xe6\xb1\x8b\x79\xe1\x62\x7e\x72\x31\x6f\xc5\x0f\xc2\xf3\x87\xa8\x5d\x7d\x01\x80\xf8\xd8\x44\x07\x46\xcd\xa2\xe6\xd5\xd0\xe5\xbc\x74\x09\x81\xa1\x6e\x7d\xad\x27\x84\x9c\x8a\x41\x72\x2a\xc8\x90\x8e\xf4\xd8\x5e\x8a\xe4\xbd\xc0\xbf\x0b\x84\xd2\x53\xe1\xac\x5d\xf1\x07\x11\xd8\xda\x8a\x24\xf4\x59\xfa\x4a\x38\x1b\xcf\x57\xa2\xef\x88\xe3\x4c\xb7\xb3\xfd\x5d\x84\xfa\x8d\xbf\xdb\x72\xed\x37\xc2\x7b\x37\x39\x15\x68\xad\x09\xc9\x99\xb4\x1a\x9d\x4c\x23\x91\x39\x15\xfd\x3f\x44\xf2\xec\x59\xe5\x09\x17\xe3\xc9\xab\x74\x56\x46\xdd\x33\x12\x9c\xa8\x21\x1d\xf5\x27\x62\xcd\x09\x4f\xda\x5d\xff\xda\x99\x7b\x6f\x66\xbb\x45\xc8\x11\xb1\xf5\x42\xc5\xd1\xda\x0c\x81\x87\x26\x8e\x35\x2a\x4e\xbd\xe1\xf9\x5e\x0f\x01\x1e\xdf\x0b\xfc\x8f\x40\x98\x97\x6a\xa2\x9a\xfa\x43\x1d\xd1\xdf\xea\xa3\xd0\xeb\x3e\x39\x7c\xf2\xa8\xf7\xf4\xa0\xb7\x9f\xf4\xf6\x92\x24\xf8\xa6\x7b\xea\x61\xaf\x8b\x1e\x26\xfc\x21\xe9\x75\xd1\xa6\x8b\xd0\x7f\x05\xde\x26\xfe\x23\xca\x77\xef\xc1\x63\x80\xb3\x65\x14\xcb\x02\x55\x1c\x45\x2a\x63\xf6\xa7\x10\x36\x16\x30\x41\xbe\xf2\x31\xe5\x21\x1f\xc5\x71\xa2\x7f\xc0\x53\x7f\x69\x6c\x0d\xeb\xea\x97\x80\xdd\x32\x46\x91\x7f\xd9\x31\xfc\x6c\x7f\x7f\x15\x35\xcd\x61\xca\x12\xb4\xfe\x55\x90\xcf\x82\xd8\xbc\xc1\xbb\xc2\xac\x14\x29\x7f\xf1\x5b\x4d\x3f\x17\xc9\x17\x81\xb0\x65\xd7\xce\x2d\xbf\xd6\x39\xb7\xe9\xf6\xe9\xf9\xc0\xd6\x92\x95\x6e\x31\x43\x77\x37\x8e\xeb\xab\x3c\xf2\x6b\x39\x95\xe3\x9b\x25\x33\xb7\x8e\x1f\xd9\x82\x3e\x57\xa8\x31\xbe\x54\x20\x01\x8f\x12\x8d\x25\x41\xd7\xa5\xb1\x2c\xf2\x6f\xba\xb6\x93\xef\x56\x83\xec\xd5\xc3\x1d\x75\x6d\x03\xdf\x34\xc1\xfb\xac\xb6\xe7\x7f\x09\x42\xb1\x41\xb2\xd7\xf8\x77\x8c\x59\x78\x3f\x8a\xfc\x5c\x72\xce\xec\x0c\x6e\xc1\x28\x9a\x56\x9a\xfc\x19\x84\xf5\x5f\x33\x30\x8f\xae\xe6\xae\x6b\x5a\x0b\xe6\x49\xf0\x57\x61\x2e\xd6\xdb\x3d\xf3\x6a\x54\x17\xe4\xa0\x6c\x9a\x34\xf8\xf0\x8a\x63\x4f\xe5\x87\xe6\x39\xc2\xe4\x57\xdd\x0f\x45\xca\x78\x84\x15\x59\x5b\x02\x48\x29\x16\x17\x05\x95\x57\x74\xf2\x92\xa9\x22\x55\x98\xeb\x58\x43\x87\x76\x79\xfa\x2c\xc2\xb7\xa4\xff\xaa\x73\x8d\x87\x5d\xcd\x35\x7e\x16\x44\xe1\xbf\x44\x05\x33\x64\x5d\xed\x7e\xda\xc5\x61\x97\x53\x85\xa5\x3b\x0f\x1a\x41\xdc\xd6\x28\x6d\x7c\xd6\x48\x07\xef\x5b\xc4\xdf\xd8\xd2\x2a\xa9\x9a\x17\x66\x59\xe5\x8a\x38\x63\xc6\x0f\x80\x31\xca\xfa\x7d\x45\x57\x94\xac\x2f\xb2\x82\x1a\xf9\x5c\xed\xd1\x6e\xf0\x60\x0a\x99\x9c\x74\x2f\x93\x74\x92\xae\x35\xf8\x8c\xcf\x2c\x0a\xcc\x5b\xe4\x0e\x3a\xdf\xd4\xca\x8e\x8e\xa6\x85\xa0\x39\xac\x2a\x8d\x9b\x8b\x18\x75\x37\x40\x3e\x1c\x00\x63\x62\x4d\x75\x16\x26\xda\x31\x01\x0f\x0d\xb5\x6f\xa4\x17\xdb\x80\x62\x72\x16\xee\x56\x09\xdd\xc1\x3e\xc5\xe6\x99\x92\x82\x1a\x0b\x76\x78\xad\x73\x96\x76\xf1\x32\xbb\xcd\x45\x36\x71\xd6\xdf\x86\x2b\x33\x5f\x25\x35\x20\x33\x20\xe1\xbb\xad\xac\xf2\x90\xb1\x9b\x1b\x41\x6f\x91\x5b\x2f\x0c\x47\x0d\x9d\x40\x1d\x8b\xe1\xbe\x25\x28\x3e\x50\x76\xac\xd3\xc4\x86\x38\xfc\x60\x6e\xe3\xf5\x5c\xb1\x85\x88\x0a\x46\xa1\x60\xd5\x93\x68\xb9\x26\x95\x2b\xc3\x8a\xc1\x8b\xc4\x8e\x96\x13\xbe\x0b\x64\x89\x70\x78\x43\xd9\x7f\x11\x07\x17\x76\x01\x74\x27\x84\x81\xbf\x4b\x56\x95\x52\xb2\x6a\x6b\x7d\x43\xb4\xe6\x8a\x99\x05\x63\xbd\x22\xcc\x62\xc8\x23\xa8\x44\xec\x2a\xc4\x72\x66\x2a\xce\x49\x06\xad\xf7\xcd\x0f\x59\x19\x90\xcc\x0f\xc9\xb7\x19\x59\xe1\x7a\x95\xd5\x95\x2c\xaf\xbf\x6c\x5f\x26\xe4\x15\x0c\xc5\x71\x92\x07\x78\x59\x85\x8e\x66\x35\x38\x1e\x14\xf3\x3e\x28\x0b\x08\xbb\x20\x5d\xf7\x00\xf1\xc4\xda\xc1\x78\xc5\x3e\x5b\x41\xee\xb7\xd4\x39\xc9\xed\xe3\xdf\xc9\x8a\xcc\x6b\x8b\x27\x7a\x6e\x31\xba\xd8\xa1\xec\x7a\xd6\x3a\xa1\xcf\x3b\xd5\x08\xa0\xfb\x79\x47\x65\x33\x4f\xfb\xf3\x8e\x0d\x95\x13\x60\xde\x71\xc1\x60\x1a\x38\xaa\x5d\x0e\x92\x09\x59\x92\x05\x9e\x92\x31\x4a\x97\x64\x69\xd0\xbe\xc0\xab\x9f\x8b\x38\x4e\x0a\xb2\x32\x8f\xdc\xb9\x67\xd4\x96\x71\x9c\xf8\x5c\x75\xf8\xcb\xb5\xf9\xff\x22\xe4\x08\xb3\x3c\x59\xe1\x7a\x8d\xa8\x4f\x53\x40\xeb\x2d\xa1\x78\x46\xe6\x4e\x70\xbe\x22\x0a\x2f\x08\xc7\x33\xd0\xcc\x5c\xdb\xb7\x2e\xf4\xae\xb3\xab\x3e\x96\xdc\x92\x99\x83\x42\x9f\x23\xc8\xad\x91\xf7\x2d\xf0\x18\xaf\x90\x57\x91\x18\x93\xdb\x8a\x25\x6d\xeb\x30\xbd\xb5\x2b\xd9\xc7\x6c\x46\xf6\x1f\x75\x9f\x3d\x89\x83\x98\xcd\xe3\x47\x7d\xfb\x0c\x47\xb9\xff\x24\xab\x26\x05\xb6\x0a\x04\x83\x4a\xf3\xe9\x2d\xda\x6c\x3c\x33\xb6\xf2\x6a\x83\x63\xc3\xba\x85\x10\x9a\xd6\x0e\x52\x3d\x47\xbb\x5b\xf7\xe2\x5c\x89\x4d\xb3\xa5\x7b\xf0\xc8\xe1\x01\x2e\xa1\x62\x6e\x51\x46\x03\x1f\x24\xc3\xf9\x28\xb5\x4a\x84\xf3\x72\xd6\xe8\x02\x73\x32\x07\x62\x40\x9b\xcd\x9c\xe8\x49\xb0\xae\xf4\xb1\x3e\x73\x1d\x2b\x33\x27\xcd\xd3\x1d\x07\x6b\x09\xb9\x73\xea\x9b\x3e\x01\xf9\x4e\xc9\x38\xb5\xe4\x38\xc1\xc1\x8c\x25\xd3\x4a\x55\x4b\x9c\xe5\x49\xa1\x57\xe0\x2a\xcd\x92\x02\xd7\x36\x54\x32\x0e\x96\xe6\x09\x0b\xa4\x4e\x7a\x25\xb5\x08\xc1\x3e\x54\x59\x8a\x28\x2a\x1d\x94\xd1\xd0\x41\x99\x7f\xe0\x4a\x8d\xb0\x20\xd2\x8f\x44\xb0\x7c\x08\xeb\xa0\xd7\x25\x99\x8a\x25\x11\x58\x10\xde\x2c\x7d\xaa\x4b\x52\x9e\xf5\xb0\x44\xa8\x6f\xf5\xf7\x04\xda\x1a\xd7\xcf\x4b\x46\xbe\x74\x3e\x80\x73\x4a\xc3\x7a\xbc\x2c\xdd\xbf\xe0\x39\x23\x09\xa7\xd7\x2d\xd9\x01\x4f\x02\x9c\x72\x85\x3a\x92\x4e\x8b\x40\x52\x1a\x6c\x05\x9c\x94\x3b\x10\x4f\x24\x56\xa4\x86\x3e\x14\x52\x29\x1f\xa8\xd4\x1c\x2c\x30\x3c\x09\x59\x45\x34\xc7\xa0\xe4\x51\x1b\x11\x20\xce\x60\xd5\x0e\x86\xd4\x4a\x70\x6e\x19\x59\xb3\xe2\x54\xac\xc0\x1f\xcb\xee\xe5\x1f\x18\xdc\xd0\x4e\x55\x7e\x74\xc2\x2e\xa8\x44\x71\xfc\x2b\x4d\x28\xd2\xcd\x6e\x31\xe5\xff\xe8\x06\xce\xa8\x32\x8c\x4c\xf5\x7a\xce\x70\x45\x0d\x95\x58\x39\xf0\x3f\xab\x04\x61\x41\x96\xcc\x2f\x44\xfd\x44\x90\x9c\x25\x92\xfc\xbe\x4a\x24\xa6\x58\x20\x2c\x10\x72\xd3\xd9\xbd\x36\xda\xad\x7a\xe5\x8c\xe3\x44\x04\x63\x8e\x30\xb0\x23\x02\xe1\xdf\x56\xf0\xda\x88\x07\xf3\x03\x5d\xe6\xd9\x98\xfe\x5f\x05\x55\x65\x33\xd2\xc3\xe2\xff\x14\xc8\x27\x42\x8e\xed\xc3\x71\x35\x2d\xdc\xfb\xe0\xe5\x06\x5e\x59\x85\x57\x6a\x78\xb9\x86\x97\x63\x78\x85\x45\x5a\x78\x0f\x4a\x18\x55\xe9\xc4\x17\x1e\x56\xf4\x30\x2a\x0b\xa3\xb4\x30\xf2\x8a\xa9\xec\x8c\x85\xfa\x79\x38\xf3\x97\xc8\x0d\xeb\x73\x4d\xb4\x6e\xc4\x5e\x7e\xe6\x98\xbe\x0e\x68\x73\x7c\x22\xa1\xf6\xb4\x1d\xe8\x12\x6f\x36\xe1\x57\x87\x15\xef\x57\x92\x9a\xb9\xea\x0a\x6f\x36\x49\xfb\x9b\xd1\x29\xdb\x6c\x74\x48\x60\x16\xba\x04\xbc\x62\x55\x81\x6b\xbb\x87\x05\x29\x04\x66\xce\x01\xb6\x91\x60\xf7\xef\xf0\x79\xd1\x62\x1e\x6b\x6c\xc0\x88\x60\x09\x43\x69\x22\xc8\xad\x48\x14\x1a\xcc\x45\x1a\x88\x80\x19\x49\x8c\x32\x9e\xe6\xae\x64\xb5\xfe\x8a\x50\x5f\xa2\x01\xdc\xaf\x08\x94\x16\x42\x1f\xd4\xc0\x4f\x51\xc2\x31\x6b\x58\x06\x9c\xe7\x5a\xc0\x6b\x50\x89\x8d\x19\xd8\x5f\xab\x0a\x61\xd7\x06\x49\x6e\x19\x0e\xc6\x02\xd8\xdb\x06\x92\x22\x14\xff\x4f\xef\x44\xc4\xbf\xbd\x13\x09\xe4\x0f\x17\xc1\xda\x49\x5d\x8f\x70\x93\xea\xba\x32\x3e\x2b\x38\x98\xab\xe4\xf9\x07\x3a\xa6\xec\x8a\x82\x0c\x26\x8e\xef\x49\x04\xc2\xb8\xa3\xc6\x4f\x6f\xcf\x5e\x9c\x1c\x9f\xdf\x5b\xf1\xf7\xf2\x98\xfa\x2d\xe4\xe6\x04\x7f\xcb\x3a\x0d\x8b\x52\xa2\x5c\x2e\x5c\x13\x02\x5c\xb3\xba\xc6\x43\x78\x29\x20\xc0\xf2\xba\x20\x1c\xdb\x47\x86\xea\x5b\x0a\x16\xb0\x21\x91\x39\xc3\x70\x36\xb6\xae\xaf\xaa\xd4\x7d\x3f\x5d\x0b\x97\xd7\xd1\x37\x6b\xa4\xef\x32\x1b\x50\x2f\x43\x08\xc3\x39\x88\x63\x01\xbe\x3e\xee\x80\xaf\x69\xa1\xd0\xf0\xcd\xa8\x7a\x45\x25\xbb\xb2\xf9\x4e\xa4\x58\x18\x99\x5a\x1c\x27\x76\x53\x65\x7a\x63\xbc\xa3\xde\xbb\x46\xf5\xae\x6a\x37\x9b\xa6\xfc\x02\x14\xae\x79\xb6\x2c\xe6\x42\x99\x5b\x5c\xb3\x1c\x85\xd9\xdb\x41\xf6\x26\x82\x80\xcd\xb6\xd9\x0b\xae\xe8\xec\xe6\xdc\x6c\x12\x45\xc4\x3d\xc4\xde\x54\x28\x8e\x9b\x62\x93\x66\x2c\xdc\x0b\xe6\x3d\x89\x09\xc2\x4a\x33\x5b\x6e\xb1\xb9\x83\x94\x85\x1b\x13\x43\xca\x3f\x42\x05\x77\xc1\xe9\x61\x78\xc5\x26\x16\xbe\x2a\xf7\xfd\xc8\x70\x35\x37\xcc\xaa\x1c\xb0\x02\x7e\xcb\xfd\xe9\x38\x64\x42\x4b\x11\x05\xd7\xb3\x02\x35\x0f\x4a\xe3\x83\x29\xf6\x4d\x89\xce\x39\xa8\x91\x5b\x97\xdf\x95\xcf\x5e\xdb\xbe\x49\xbe\x23\x1b\x7b\xe6\xde\xd2\x21\xc1\x6b\xe5\xdb\xc6\xfb\xbc\x47\x4f\xb0\xb3\xc6\x17\x24\x8a\xf6\x68\xed\x89\xf0\x60\x97\xd6\x3d\x08\x3b\x10\x52\x39\x24\xc1\x4f\xe7\xdc\x3c\x01\xf0\x81\x4e\x8d\xab\x12\x1d\x99\x26\x89\xaa\x38\xdb\x33\xa2\x62\x69\x78\x57\x45\x08\x99\x33\xb0\xc3\x33\x31\x64\xbd\xf5\xc2\x13\x3a\x30\xcf\x8c\xb7\xd4\x50\x8c\x52\x78\xc8\x95\x6e\x51\xd8\x8a\xc0\x0a\x0e\x39\xee\xed\x81\x10\x87\x35\x1f\xa0\x4f\x1f\x99\x97\x71\xda\x1e\x91\xb5\x0c\xcf\xba\x60\x2e\xb0\xeb\xfd\xe2\xb2\x94\x3b\x95\x4e\x47\xda\xfe\xad\x87\xda\x08\xf4\x70\x34\x34\x23\x6a\x8d\x9c\x46\x1a\x5b\x3b\xa6\x49\xce\xbd\xbd\x35\xe1\x41\x03\x4b\x06\xad\x6b\xa6\xe6\xad\x4b\x7a\x5b\xb4\xd6\xd1\x5e\xd5\x58\xa8\xf3\x55\x30\x9e\x44\xb8\x15\xa1\xbd\x68\x1b\xa5\xca\xbc\xa0\xe3\x01\x3d\x63\xf5\x87\xbb\xdd\x81\xc8\xb1\x1c\xaa\x93\x67\x85\x3a\x06\x9a\x76\x42\x2b\x39\xb0\xaf\x8d\x98\x68\xc2\x71\x98\x8b\x70\x94\x2a\x23\x39\xb6\x11\xd5\x54\x2b\x92\x72\x9f\x70\xc6\x0a\xce\xd8\x4f\xb7\xa1\x3b\x45\xe7\x2e\xb6\x5d\xf5\xdc\x1d\xca\xfc\x65\x1f\x29\xb3\x93\x49\x22\x3b\x85\x7d\xb9\xa0\xd1\x79\xbd\x2c\x6f\x0c\xa8\x7b\x20\xdb\xbf\xeb\xde\x47\x9e\x76\x2f\xe9\xad\x79\xf5\xca\x78\x34\xc3\x0a\xa5\xee\x13\x5c\x9d\x61\xf0\x71\xad\xea\x8d\x05\x14\x20\x6a\x92\xce\x77\xb9\x31\x1a\x33\xe5\x49\x57\xf3\x37\xa6\xb0\xc1\x40\x50\x94\x25\x76\x3f\xf5\xde\x08\x4c\x19\x89\x8d\xe3\x20\xc7\xa0\x95\x72\xb1\x41\xa2\x7b\x0e\xb9\xd0\x73\x3e\x48\x54\x80\xce\x03\xcc\x51\x2a\xd3\xdd\xb8\xe0\x32\x69\x15\xbe\x8e\xe3\x9f\x24\x0f\x5a\x00\x19\x71\x50\xbe\xc2\x07\xe5\x25\x07\x50\xbd\x34\x54\x9b\x8d\x37\x9c\x05\x57\x46\xe7\xb9\xe6\xf0\x3b\x0b\x31\xa1\xc0\xe3\x9b\xec\x44\x23\x06\xe6\xbc\x48\x8c\xbb\x9a\x20\x3e\x90\xe5\x36\x36\x63\x16\x1d\xd5\xa1\x46\x3d\x55\xf3\x0b\xa0\xcd\x08\x7a\xba\x49\x22\x4d\x9d\x86\x0d\x81\x9a\xa7\xc4\xaf\xb9\x58\x96\x2d\x49\x0d\x81\x24\x47\x79\x62\xca\x62\xf0\x65\xe6\x4a\x5a\xf7\xda\x21\xe4\x77\xd6\x13\x08\x7f\xef\x41\xcc\x23\x87\x98\xcd\x46\xdd\xf5\xfe\xa2\x79\xd9\x21\x8c\xa9\x66\x06\x75\x30\xdd\x6b\x38\x60\x43\xee\x6a\x14\x20\xfd\xeb\x8f\x20\x3d\x78\x58\x65\x38\xba\x6b\x04\xa6\xfe\x2c\xc5\x1a\x7a\xf4\xa4\x32\xd4\xef\xc3\x56\x35\xb7\xf5\xef\x06\x7b\x12\x6c\x8b\x0d\xaf\xc4\x34\x3e\x0e\x63\x17\x08\x43\x67\x51\xb4\xa7\x5c\xfb\xd5\x56\x42\x73\xcd\xca\xb5\x94\x23\xa7\xf2\x85\xd5\xce\x83\x07\x26\xd9\x0a\x17\x29\x75\x6e\xd5\xb8\xa6\x14\x65\x28\xc5\x2e\x11\x0d\x94\xc2\x43\x4a\x31\x47\x1c\x84\x79\x09\x0b\x37\xd2\x3c\xe5\xab\x85\xd1\xba\x03\x6e\xbd\x69\xdd\x30\xd0\x1b\x5a\xd0\xc4\xdb\x9f\x1a\x5c\x97\x65\x0c\x57\x53\xe9\xb0\xdd\x8d\x9a\xdf\xf3\x58\xd6\xf9\x77\x87\x86\x01\xf4\x2b\x75\x92\xf0\xdd\x51\x68\x7c\xa2\xa7\xa2\x40\xac\xb9\x31\x63\x9e\x67\xd6\x88\x28\xda\x73\xcf\xe4\xee\x8e\x40\x20\x85\xf0\x23\xc0\xef\x1c\x81\x16\xcc\x4f\xe0\x19\xcc\x84\xd5\xb3\x9e\x0e\x2c\x89\x9a\xb1\xf0\x44\x0d\x9e\x0f\xd2\x72\x01\x49\xbd\x76\x73\x89\xfb\xa0\xc2\xa2\x9a\xd1\x22\x9e\x1b\xc4\x57\x35\xb2\xcb\x1e\x96\x93\x03\x06\xc0\x20\x9d\xdf\x81\xf4\x79\xe8\x91\xa1\x11\xb9\xb2\x09\xb9\xfe\xd9\x10\x18\x70\xa3\xfb\x0a\x70\x01\x6d\x45\xd1\x9e\xae\xaf\x19\xbb\xd2\x63\x57\x7a\xec\xca\xbb\xb1\xeb\x2b\x37\xd3\x5b\xc2\x8e\xc8\x53\xf8\x75\xed\xc9\x0a\xde\x15\xa6\x58\xd6\xf1\x2e\xb0\x29\x91\x8e\x4d\xba\x06\xaf\x86\xf6\x22\xec\xca\x7d\xad\x61\x81\xec\x48\x48\x33\x12\xb2\xf4\x5b\xd4\x84\x0e\x89\x45\x39\x14\xaa\x6e\xb5\x57\x4a\x40\x13\x81\x33\xbc\xc2\x79\xe9\xed\x7f\x6c\xb6\x64\x2b\xff\x9d\x92\x0c\x2f\x48\x46\xba\xf8\xd6\x5c\x0b\x59\x3c\x4e\xe3\x78\x51\xda\xc6\x2f\xf6\xf6\xd0\x7a\x6a\xf6\xe0\x9f\x17\x83\xe4\x96\x4c\xed\xa5\x12\x4a\x6f\xc9\xd4\x73\x0a\xe0\xf6\x8c\x2c\x13\x81\xa7\x78\x35\x5c\x8c\x70\x1e\x3e\x05\x3c\x43\x6b\x1b\x9a\xc6\x71\x32\x25\xb7\x56\xee\xbf\xa5\x71\x3c\xf5\x1b\xf3\x2c\xdc\x98\x95\xae\x0a\xe1\x8c\xb0\x64\x86\x33\xbc\xf0\xac\x70\x31\x18\x93\x59\x5a\x78\x36\x63\x86\x0b\x32\xc3\x53\x72\xab\xb1\xb8\x20\x84\xac\x6a\x6e\x10\xb9\xa9\x69\x1c\xc0\x33\xb5\xda\x15\xb5\x8e\x3a\x2e\x64\x4a\x26\x89\x70\xdd\x30\xee\xa5\x58\x32\xdd\x81\x62\x1a\x40\x31\xc5\x05\x99\x7a\xf5\x92\xf1\x56\x57\x3f\x25\x12\x9a\xbe\xab\x99\x5b\x32\x4f\xa6\x58\xe0\x45\xd8\x14\xf5\x04\x7d\x1b\xa2\x63\xda\x31\x07\x00\xd7\x83\x5b\xa0\xa5\x45\x0a\xbf\x06\x4d\xb7\x3b\x00\xde\x06\x00\xde\xe2\x42\xa3\xbd\xe4\x86\xa6\xcd\x8f\x9a\x3a\xe6\x2c\x11\x98\xa2\x2d\x42\x78\x1c\x68\xcb\x6a\xac\xe0\x1c\x8f\xcd\x9a\x5a\x90\x05\x4d\xcc\x38\x37\x1d\xe8\x8a\xfa\x29\xeb\xa7\x2e\x0a\x88\x22\xc9\x89\x7d\xef\x20\x47\x3b\xba\xa4\x3f\xf5\xd0\xff\x8f\xbb\x37\x61\x6e\x1b\xc7\x1a\x45\xff\x8a\xa4\xca\xe3\x05\x3e\x23\x1a\xc9\x4b\x12\x53\x41\x54\xe9\xc4\x99\x4e\x4f\xb6\x89\xdd\x9d\x99\xf1\x75\xf9\xa3\x25\xc8\x66\x42\x81\x6e\x12\xf4\xd2\x96\xfe\xfb\x2b\x1c\xec\x20\xe5\x38\xb3\x7c\xf7\xbe\x57\x95\x8a\x29\x10\xc4\x7a\x70\x70\xf6\xe3\x72\xe7\x2f\xa8\x06\xd9\x25\x6d\xc8\x2d\x6d\xe8\x88\x68\xea\xf2\x8a\x16\x40\x73\x23\x9b\x17\x6a\x99\x24\xfd\xab\xe1\xbc\xe4\x6c\x72\xbb\xb5\xe5\x55\xc0\x77\x4b\x0d\xc5\xb7\x53\x74\x4e\x97\x64\xa9\xa1\xf8\x9c\x2e\x03\x28\x3e\x03\x28\x5e\x92\x2b\x15\xce\x8b\xcc\x7c\x40\x3e\xb3\x80\xbc\x4c\x12\xb4\xa4\xe7\x1e\x20\x2f\x2d\x20\x9f\xc5\x80\xbc\xc4\xa4\xa1\x39\x3a\x23\x0d\xb9\xb5\x3b\xb4\x98\xd6\xf4\x2c\xb5\x47\x88\x9e\x91\x05\x3d\x23\x4b\x7a\x2e\x01\x59\xcd\xc1\x07\xe1\x25\x26\xb5\x37\x92\xa5\x06\xe1\x0d\xb3\x35\x30\x76\x05\xa0\xec\xe6\x22\x41\x4c\x0e\xe5\xaa\x35\x94\x2b\x6f\x28\x57\x64\x41\xaf\x2c\xb0\xd4\x00\xcd\x4b\x80\xe6\x25\xfe\x7e\x8f\x17\x68\x49\x4a\x72\x1b\xf5\xea\x00\xfb\xca\x5f\x9e\x65\x04\xd8\x57\x00\xd8\xb7\xe9\x95\x02\xec\x1f\x1d\x2b\xb4\xf8\x30\xc0\x36\x59\xff\x7a\x9e\x9c\xbf\x22\xb9\xc4\x98\x0a\x5b\xde\x2b\x9f\x4b\x92\xdc\xdd\x13\x76\xe7\x73\x70\x9f\x9c\x41\x9c\xe0\x3c\xba\x35\x94\x7c\xa1\xbe\xbf\x59\xb9\xc3\x35\xd6\x17\x59\xde\x71\x91\xe9\x60\x30\xb5\xea\x8a\xcc\x68\x65\x40\x7f\xa6\xf4\xf7\x33\x7d\xdf\xd7\xf6\x3e\x9c\x79\x7a\xe4\xa7\x69\xbe\x40\xde\xc8\xf1\x9d\x9c\xf6\xcc\xac\x26\x26\xc0\x5a\xcc\x48\x6b\xf0\x1e\xe5\xc5\xa8\x4d\x44\xb5\x0e\xdd\x58\xa0\xfb\x90\x65\x51\x7d\x7d\xa7\x1b\x9f\x9e\x9c\x91\x3c\xe0\x3c\xfc\xde\xd6\xd0\x8a\x39\x73\x02\x7e\x90\x19\xb5\xed\xae\xbd\x99\x01\x97\xf4\xa9\x40\xf1\x4c\x0c\x45\x59\x10\x58\xc1\x68\x62\x92\x86\x2f\x24\x11\xac\x5a\x52\x75\xcc\x30\x03\x22\xb8\xf0\x07\x2d\x59\x01\x88\x05\x64\x5b\x2a\xec\xbd\xdc\x20\xe6\xa8\x03\x1b\xcb\x47\x41\x8a\x63\xf5\x95\x26\x55\x6d\xdd\x0c\x7e\xed\x02\xc9\x00\x71\x9a\xaa\x4d\xac\x14\x2c\x70\x50\x12\x56\x0e\xf9\x26\xa8\x1d\x16\xa9\x8d\xa9\xa2\x8d\xa9\x48\xbe\x91\x73\xf2\xf7\x03\xbe\xf5\xb7\x23\x14\x56\xac\x51\x25\x09\xff\x3c\x5c\x32\xd7\x8e\xbf\x42\xeb\x4e\x72\x31\xef\x22\x17\x6d\x88\x87\x9c\x0e\x06\x5b\xb9\xd1\x64\x57\x49\xf2\xc4\x2c\xd9\x14\x6d\x98\x56\x7b\xbb\xd5\x1c\x64\x85\xd3\x7b\x86\x8a\x49\xa3\x9d\x1d\x6f\x72\x94\x5b\x0a\x6d\x69\x71\x86\x7c\xb5\x64\xde\xab\xdb\xe0\x55\x9d\x24\x40\x39\xe7\x98\x74\x65\x0c\x96\x28\xa0\x3f\x33\xe7\x9e\x05\x86\x1f\xda\x0e\x43\xdd\x90\x26\x79\x1c\x71\x57\xe5\x36\x51\x89\xb5\x8a\x0c\xbc\x5d\x57\x2b\x36\xe4\xf0\x77\x60\xf5\x71\x03\x27\xcd\x53\xd3\x55\x5a\xf6\xa3\x9c\x1e\xe6\xa8\x3f\xc2\xe4\xa3\x7a\x1a\x63\xf2\x2a\xa7\x77\x6b\xf2\x29\x77\x96\xb1\xaf\xf2\x35\x39\x8d\x7e\x7f\x0d\x7f\x3b\xc1\xef\xcb\xdc\x38\x98\x53\x4a\x5f\xe5\xf1\xbd\xfe\x74\xd7\x39\x84\x78\xa2\xa1\x0f\x79\x10\x4b\x7c\x56\xa2\xaf\xb9\xf6\x83\x39\xcd\xb5\xff\xc6\xa7\x9c\xbc\xca\x31\x61\x5e\x94\x19\x63\xa7\xae\x96\x68\x3c\x4e\x21\x2c\x9a\x0b\x4a\x63\x63\xa1\x09\x58\x11\x08\x50\xf0\xeb\xe7\xb7\xe9\x6b\x75\xdb\x90\xc1\x00\x47\x7e\x78\x82\xbe\x66\x48\x50\xc4\x28\xa4\x03\x9d\x0a\x2f\x6f\x64\x2a\x70\xd0\x8c\xa6\xc7\x99\xca\xa7\x08\xd1\x4c\xd7\x85\x1c\xa7\x19\xae\xcf\xf8\x7f\xce\x95\x9f\x90\x7c\x5b\xc8\x59\xc1\x9f\xaf\xb9\x9f\xbc\x0e\x96\xee\x65\x8e\xbe\xe6\xd6\x4d\x45\x07\x56\x7c\x99\xa3\x4f\xae\x90\x70\x18\xa5\xb6\x28\xc6\x13\xa1\x35\xdc\xd1\x6a\x71\x5f\x20\xfa\x06\x1a\x3f\xb5\x8d\x68\x0b\xc9\x60\x44\x4a\xa8\xff\xde\xdb\x5a\x3f\x70\xf5\xeb\xdc\x64\x6a\xd5\x41\x33\x3c\x01\x23\x08\xe2\x21\x22\x86\x82\x5c\x13\x2a\x28\xd0\x36\x78\x86\x23\xdc\x0b\xdd\xc5\x21\x59\xd7\xc5\xed\xbc\xca\x04\x24\x4c\x34\x59\x55\x21\xfa\xb7\x4b\xb7\xaa\xc2\xbd\xbb\x20\x04\x26\xee\xec\x78\x9f\xda\x78\x76\x9e\x1e\xd6\x74\x0d\x6a\xa6\x61\xc5\xae\x58\x56\x7c\xac\xe6\x5a\x6b\x20\xeb\xa0\x27\xbb\x89\x27\xfd\xeb\x68\x9a\x07\x09\x4a\xf1\x9d\x7e\x30\x88\x41\x80\xac\x14\x8a\x26\x12\x07\xe7\xbc\x01\xfd\x02\x2c\xae\x36\x1a\xb2\x02\x5d\x18\xa4\xa1\x33\x7d\x8b\x23\xa1\x9b\x5b\xad\xcc\x93\x1f\x6d\x18\x38\x33\x61\x2b\xad\x6d\x1b\x76\x10\xfa\xc1\x97\xdb\x76\x73\x84\xef\x02\x2b\xd5\x3b\x6b\x00\x9c\x32\x02\xb7\x5b\x2a\x14\x56\xf8\x23\xb6\xbd\x79\xad\xd3\x22\xb1\x8a\xfc\x7a\x9f\x5d\xce\x97\x9c\x8e\xc8\xa3\x5c\x07\x95\xd2\x7f\x7f\xd2\x7f\x7f\x0e\x2d\x86\x7f\xcf\x91\x71\x40\xb0\xfa\x82\xed\xb1\x0f\xb1\x7f\x0d\x6d\x5c\xc3\x88\x62\x2e\xf3\xec\x68\xc2\xad\x47\x44\x92\x70\x67\xc3\xc4\x75\xdc\x20\x15\x09\x0c\xc2\x80\x75\xc6\x00\x73\x5e\x0c\x79\x2b\xe6\xd1\x97\x9c\xe6\x72\x46\x82\x88\x0e\x0b\x80\xc8\xe6\x58\x17\x45\xc6\x5a\x23\xf2\x87\x3b\x74\xdc\x46\x4e\x33\x4f\x61\xb3\xd3\xf3\x2c\xbd\xca\x08\x03\x3b\xa5\x12\xb7\x5b\xa3\xf4\x8b\x1c\x19\x1d\x4d\xe6\xa5\xca\x00\xd0\xea\xae\x8f\xb6\xf7\x5e\xe4\x31\x47\xb5\x03\x2e\xc2\xf9\x16\x1d\xcb\x1d\x31\x9b\xd3\x31\x01\x6f\xb4\x67\x6e\x24\xda\xa1\xa4\x7b\x3c\x12\xe6\xbd\xcf\x6e\x33\x22\x8c\xb4\xed\x37\x47\xda\xfe\x96\x2b\xb3\x39\x80\x12\x35\x86\x47\x3e\x6c\x10\xd1\x1a\xf2\xa8\xf3\xb2\xf8\x73\x6e\x33\xab\xdd\x05\xab\xa7\x23\xf9\x5a\x2b\x6f\xfb\xd3\xb3\x35\xff\xdd\x3d\x7a\x96\xa5\xa1\xd0\xf7\xa7\x7c\xfa\x28\x8f\xf6\xfb\xa7\x9c\xb2\xf4\xa7\x9c\xfe\x94\x6b\x63\x6c\xf2\x93\xe7\x46\xfa\xf7\x1c\xf9\x80\xfa\x5b\x6e\x06\xf8\x28\xf7\x4c\xa3\xad\xdd\x08\x9b\x46\xfb\xae\x86\x01\x68\x87\x99\x85\xd2\xa8\x7f\xf3\x98\x52\x3d\x16\x0f\xaf\x0a\xfc\x93\x04\xd6\xdf\x72\xca\xac\xb3\x86\x81\xb4\x96\x76\x4e\xae\x6e\x6b\x09\x91\xfc\x16\x77\xd8\xeb\xab\xd7\xbf\xe5\x9d\x96\xf3\xbf\xf9\xe6\xd4\xbf\x9b\x22\x78\xe8\xf0\x6a\x78\xd0\xfa\x1a\x1c\xe6\x2f\xf3\x3f\x02\x0c\xd6\xa9\x83\x9d\x0a\xc4\x70\xea\x69\x71\xfe\xe6\x3b\xe5\xe4\x48\x5e\x9e\x42\x8d\xcc\x63\xa6\xe3\xb4\xb8\x3b\x63\x79\x5a\x38\xa8\xf7\x3e\x33\x89\x24\xd9\xfc\x33\x9b\x37\x33\x56\x51\xa6\x95\xca\xbf\xe5\x60\x16\xe9\xe6\x9d\x53\xde\x61\x3f\x9e\xfb\x2a\x70\xed\x2e\xd6\x50\xe5\x63\x31\xd1\xae\x16\xfa\x64\xe8\xa9\x37\x6b\xaf\x55\x5a\xaa\x2c\x68\xbe\x25\x69\xd0\x5e\xa9\xdb\x02\xba\xdb\xee\xcd\x44\x99\xa9\x37\x54\x9f\xb0\x19\x2d\x25\xc6\x50\x0c\xe8\x2c\x3a\xc5\x40\x9f\x3e\xff\xa2\x81\x76\xd1\xb2\x91\x8e\xeb\xc7\x96\xd2\xb3\xd8\x52\x3a\x83\xa5\x4f\x67\x43\xf5\x40\x58\x76\xce\x2a\xbd\x7e\xb2\x35\xef\xa7\x7a\xa7\x80\x4b\xbf\x51\xc0\xd5\xb6\xfb\x2e\xa6\xa8\xa1\x05\x5d\x90\x5c\xd2\xed\x85\x96\x3c\xd0\x05\xa9\x5f\x3c\xca\xdb\x16\x99\xad\x32\x5a\x2b\x83\x5a\x65\x1d\x6e\xc4\xdc\x85\xa4\x82\x4c\x5b\x0f\xb7\x0e\xff\x0f\xcf\x19\x2c\xc6\x6b\x12\xf7\x22\xb9\xab\xb0\x2d\xa0\x52\xfd\x46\x52\x86\x2a\x62\x46\x81\x27\x92\x39\x96\xcd\x86\x1e\x81\xb3\x24\x99\x01\xf8\xb8\xb5\xcd\x69\x95\xea\x55\x68\xc8\xeb\x0a\x55\xf1\x95\x87\x57\x2b\xe3\x3f\x15\x5f\x86\xb2\xae\x33\x79\xcd\xf5\x2f\x05\xbf\x05\x09\x8f\x91\xfe\x42\x1f\xef\xe3\xa8\x29\x2f\x79\xb1\x17\x71\xfe\x97\xff\xd4\x19\x76\xbd\x91\xd2\x9d\x5e\x30\x43\xdc\x44\xba\x96\xf8\x2e\x3c\x8e\x3a\xbb\x81\x39\x87\x70\x31\x53\x86\x72\xd2\x98\x4d\x20\x8d\x36\x19\xd7\x9b\xd0\xa8\xa5\x7f\x5d\xa1\xfc\x07\x16\x39\x27\x96\x60\xb4\xab\x0b\xfa\x6b\x6f\xe5\x71\xe7\x62\xe7\x66\xb1\x73\x52\x79\xab\xca\x32\xb7\xaa\xf2\x4e\x9d\x6c\x46\xab\x2a\xaa\x1d\x43\xb8\x3d\x2c\xbf\x7f\xc9\x29\x83\xc9\xf9\xef\xca\xe1\xca\x77\xe8\x22\x66\xa5\x75\x94\xad\xf6\xae\xa4\xff\xc8\x49\x6b\xf0\x29\x5b\x63\xbb\x49\x74\x99\x0d\xcf\x72\x3e\x57\xdc\xdb\x23\xe0\x75\x5a\x10\xe4\xa7\x2a\x10\x59\x4b\x55\xcd\xe8\x9d\xc8\xce\x53\x46\x66\x15\x93\xed\x0b\x95\xd4\xb4\xbc\x4d\x39\x99\xb3\xcb\x3a\xad\x3a\x6e\x2c\x24\xe4\x4d\xee\xfb\xe5\x4c\x91\xa0\x77\xce\xfa\x43\x57\x0f\x2b\x01\xd9\xe8\x59\x88\x30\x7d\xb5\xe1\xd4\xf1\x3e\x7e\x05\xc9\xa7\x76\x54\x4f\x51\x15\x39\x3d\x31\xa2\xdf\x55\x51\x07\xd8\xb7\xb7\xe0\x99\xf3\x41\x97\xa7\x26\x5c\x27\xcf\x78\x24\x8b\x55\xa5\x00\x0d\x8f\x72\xdf\xe2\x8b\x91\x32\xde\xf8\x0c\x8d\x57\xf2\x33\xc5\x74\x11\x6b\x41\xaf\x33\x71\xf9\x16\x03\x65\xab\x8b\xbf\x03\xc0\xd1\xd6\x47\xda\x50\x52\x95\x7b\xc7\xce\x90\x54\x99\x24\x8f\x5a\x67\x33\xa7\xd9\x50\x6f\xa3\x27\x0d\xfa\x6b\x8e\x2a\x22\x5f\x5c\xd6\x96\xb9\x83\x86\x45\x06\xa6\x28\x39\xa9\xf0\xfa\xc1\xd3\xcc\x03\x1b\x88\x3c\x0b\x1c\xd4\xab\x0c\xed\x8d\x9f\x90\x5d\x12\xaa\xfb\xb3\xb0\x56\xd9\x5d\xab\x69\xd5\xda\x25\xdb\x51\x9d\x22\xfb\x3e\xe9\xa3\x8e\x28\x91\x14\x10\xf1\xdc\xc6\x95\xfe\x11\xaf\xb1\xc9\xf6\x26\x7c\x46\xd9\x7e\x65\xe9\x77\x16\x7c\x1c\xf0\x2e\x6b\xac\xb3\x90\x7b\xe6\x2b\x59\xe4\xfb\xcd\xa9\x63\xf2\x9d\x29\xfe\x14\x2c\x3e\x66\x99\x40\xc7\xec\x44\x8d\x84\xe8\x89\x16\xfe\xa1\x16\xe0\x31\xe8\x1b\x9b\x64\x41\x22\xda\x45\xb8\x56\x7f\x6e\xc1\x35\x3d\x66\x0e\x14\x85\xce\x48\x76\xe2\x9f\x8b\x79\xe6\xfb\x2e\x02\x20\x0a\xda\xfa\xc4\xde\x10\x21\xb0\x85\x3a\xf2\xca\xb7\xde\xff\x2b\xa8\x63\x8f\xc7\x27\x78\x5a\x1d\x8f\x4e\x52\xc4\xdb\x23\x93\x23\xf1\x26\x77\xf9\x3f\x35\x14\xb5\xc7\xdf\x1f\xd0\x45\x16\x1a\xe6\x7f\x29\x11\x86\x48\x04\xcf\x5e\x54\xd3\xfd\x67\x69\x15\x04\x24\x60\x10\x6b\x00\x63\x22\x6b\x3c\x7d\x5e\x4d\xf7\x9f\x46\x35\x54\x2b\xbf\x7a\x5e\x11\xde\x73\xc7\x4c\x45\x75\x2b\x5b\x1d\x63\xc2\x91\xcb\x4b\xe5\x7f\x53\xad\xd7\xbe\x94\x60\x19\x0d\xb8\xc3\x6f\xa4\x6c\x91\x75\xbe\x0f\x49\x44\xd7\x95\x86\x90\x8b\x28\x38\x25\xea\x73\x54\x56\xcc\x41\x1a\xfb\xee\x88\x01\xa0\xca\x92\x1b\x90\x75\x99\xa2\x4e\x7a\x1f\xf8\x7c\x43\x51\x94\x24\xf7\x5d\x43\x89\x64\xb1\x1f\xe5\x4a\x5e\xa0\xd5\x4e\x50\x82\x25\xcf\x3c\x22\x65\x4c\xe3\x7e\xc9\x49\x9b\xf0\xfd\x92\x5b\x6e\x70\x83\xfb\x92\x19\xeb\x6a\x35\x02\x25\x41\xe4\xff\x69\x61\x0b\x6c\xc4\x3b\xee\x6e\x8c\x4d\xec\x8a\x2c\xaa\xa0\x2e\xe5\x86\xe6\x28\x23\x1c\x44\xe1\x65\x48\xc0\xe6\xa4\xf4\xc8\x57\x45\x7c\x36\xc4\x4a\xfa\x74\xb8\x8a\x02\xdf\xad\x8d\xaf\x8e\xf2\xa8\xca\xe8\x5d\xc5\x32\xe3\xc3\x90\x96\x39\x69\x6a\x1b\xf5\x26\xfd\x5d\xfd\xd4\x2f\xd5\x2f\x7d\x55\xab\x1f\x6f\x97\x97\xac\x82\x14\x49\x3f\x67\x7c\x5e\x30\x5d\xfc\x2e\xbb\x2d\x1b\x11\xd4\x7c\xcf\x96\xa5\x7e\x34\xd0\x60\x7e\x2d\xf4\x93\x82\x09\xf5\xfc\x9a\x9d\x35\xe7\xe0\x29\x6f\xab\x19\x41\x9b\xa9\xb0\x60\x55\xc5\xe6\x7e\x1d\x08\xac\x09\x29\x16\xd3\xdf\xf3\x35\x39\xbf\x7f\x72\x8b\xcc\x9f\x5c\xe9\x4f\x2e\xcf\x3a\x27\x17\x3b\x5f\xfd\x30\xae\xae\xee\xc1\xd5\xad\x75\x0b\x1d\xa7\xdc\x15\x69\xaf\x35\xbb\xac\x61\x4d\x85\x06\x3d\x5a\xb4\xd7\x81\x0d\xc9\xbd\xb8\x6c\xed\x6f\x53\x3c\x6b\x85\x22\xba\xda\x57\xd3\x46\x02\xa7\x82\x54\x31\x77\xe3\x51\xb8\x42\x51\xb8\xd5\x3f\x49\xe1\xb2\x0e\x02\x57\x7c\x8f\xc0\xad\xda\x04\xae\x81\xbe\x0e\xfd\x36\x73\xd2\x7b\xb6\x26\x1d\xf7\xa3\x5a\x22\x4d\x5c\x67\x11\xc4\xd6\x59\x08\xb1\xef\x3a\x20\xb6\x6b\xcf\x80\x97\x20\x15\xe5\xc7\xa3\x13\xc9\x4a\x1d\x8f\x6d\x78\xb7\x3c\x43\xf1\x8d\xc0\x7f\xf0\x46\x80\x80\x3a\x5d\x97\x01\x5f\xaf\x31\x81\x9d\xc7\xa4\x5a\x47\x07\xa9\x6d\x69\xcf\x32\x75\xb5\x50\x71\x3c\x3a\x71\x20\x20\x8e\xc7\x27\xe4\x78\x91\xa1\x8b\x16\x74\x1f\x0b\xc2\x4e\x30\xe4\xf0\x20\x57\xf7\x1f\xca\xf9\xe6\x43\x99\x75\x1f\xca\x59\xd6\x3a\x39\x4d\x66\x8f\xc6\x65\xe6\x83\xf2\xdf\x2c\xc6\xe1\x99\xdb\xbf\x76\xb0\xa9\xbf\xe5\xe8\x1f\xb9\x3a\x60\xff\x86\x6d\x55\xad\x75\xef\x6b\xf6\x7f\xcf\xbe\xea\x61\x76\xef\xeb\xfc\x7b\xfb\x7a\xf6\x7f\x72\x5f\x7f\x79\xe0\xbe\xfe\xf2\x6f\xdd\xd7\x5f\xfe\xbf\xb1\xaf\xbf\xfc\x4b\xfb\x7a\xad\xf2\x58\x91\x1b\xfd\xf7\x20\x0b\x34\x50\xdf\x02\xda\xfb\xb0\x40\x7b\xca\xbc\x03\xfe\x1b\xe1\x09\x0f\x0c\x59\x06\xaf\x0f\xde\x1d\x1c\x1d\xbc\x86\xbc\x4d\x71\x81\xef\xd1\xe9\x9b\x41\xfb\xde\x1f\xd6\xdf\xde\x63\xd8\xa7\xc8\xff\x15\x7a\x9e\xb0\xc8\xf3\x84\x05\x9e\x27\xe1\x5b\xcf\xef\x25\x0b\x93\x72\x7b\x86\x04\x7b\xa9\x1f\x36\x34\xe2\x1e\x90\xa0\x10\xe2\xc8\xaa\xd6\x55\x32\x31\x2f\x1b\xa7\x7d\xdb\xce\x1c\xaa\xb7\x1e\x8c\xbc\x82\xb5\xe8\x8f\xb4\xe1\xcb\x93\xb4\xd5\xdd\x40\x67\xb0\x55\x17\xa8\x76\x06\xdc\x09\xc6\xf0\xfd\x76\xc7\x3b\xe9\x3d\x79\xf3\x8f\x32\x6d\x8b\x70\x90\x19\x88\xba\xc9\x20\x1d\xb6\xd5\x50\x83\x1b\x94\x5e\x34\x9d\xe5\x44\xd0\x1b\x8e\x94\xa0\xe5\x50\x5b\x8f\xe0\xd5\xca\x56\xb2\x41\x91\xbc\xe8\x19\xe3\xd1\xf6\x5e\xe2\x3b\xc8\x6d\x2b\x60\x03\x46\x14\x5d\x67\x94\xe1\xc9\xb7\x0c\x5d\x4b\x0a\x78\x2d\x7f\x4a\x98\xbc\xe1\x48\x7b\x13\x81\x2f\xae\x96\x4a\x3f\xac\x5d\xd9\x86\x37\xd1\x8f\x99\x51\xcd\xbb\xb0\x5a\x36\x72\x58\x92\xec\x29\x0f\xad\xec\x3c\x49\x76\xdc\xe3\xd8\x3e\x4f\xb0\xf7\x19\x34\x6d\x5b\x7e\x65\x96\x90\xf5\x29\xbd\xce\x9c\xfa\x54\x2e\xd5\x81\xf9\xad\x06\x00\x63\x1b\x11\x1d\x62\x47\x18\x40\xcb\x17\xc8\x0e\x60\xb5\x1a\x5c\xb0\x4c\xa5\x13\x48\x92\xc1\x59\x39\xbf\xd5\xcf\xfd\x2b\xae\x8c\xfd\x7d\xb5\x3d\xd6\xb1\x29\x6e\xb2\x89\x98\x60\x7d\x60\x89\x50\x4b\xe7\x6f\x90\xec\x44\x8d\x41\xa5\xdb\x50\x60\x0f\xdb\x69\x95\x6e\xa8\xed\xfe\x08\x61\xd6\x8d\xe5\x81\x4a\x95\xd7\x12\x22\x3f\xc5\x10\xa6\xc5\x2c\xae\xd7\x2b\x11\x74\x34\x61\x4a\x97\x0f\xd6\x22\x9e\x5d\x8a\x39\x6a\x90\x09\x3d\x5f\xa0\xc1\x9f\x1e\x81\x11\x03\x36\x3c\x98\xc0\x77\x0a\x06\x58\x38\x11\x63\x59\x25\x1e\x3f\x06\x80\x18\x3c\x1a\x28\xf2\x7c\xf0\xa8\x6f\x9f\xa6\xf0\xb4\x5a\x89\xad\xad\x75\x34\xa8\xb5\xc6\x76\x3a\x9e\xd7\x4d\x46\xaf\xb3\x29\x74\xe3\x8c\xc2\xfc\x0e\x95\xcb\x40\x5b\x19\xfe\x29\x43\x30\xc2\x6b\x1f\x79\xaa\x5c\xaf\x59\x64\x02\xf0\xf1\x9a\xb3\x8a\x7c\x0d\xb1\xeb\x4b\x4f\xe2\xa7\x6d\x24\xac\xf6\x7b\xfa\x11\x5c\xc1\x00\xd9\x92\x0a\xa7\x47\x39\x6c\x3d\x54\x82\x12\xcf\x30\x28\xf3\x3d\x0a\x38\x38\x90\xca\x9b\xce\xf2\xdb\x15\x5b\xd8\x38\xc2\xb2\x99\x52\xde\x6a\x9e\x26\x3f\x97\x25\x4e\xed\xfe\x35\x0b\xbc\xc8\x56\x74\x4c\xf4\x48\xb5\xbe\x5d\x59\x7a\xa4\x51\xe8\xb0\x38\xd4\x98\x6d\x20\xa1\x8f\xf7\xc6\x4f\x5b\x21\x5a\x9e\xd3\xb2\x23\x06\x1d\x1d\x61\xf2\x17\xd5\x5b\xe9\xcb\x30\x3e\x67\x2d\xc3\x03\xab\xb4\xd5\x3c\x35\xf7\x91\x76\x97\xb1\x75\xb6\x5a\x1d\x15\x28\xb3\x91\x4c\xfa\x14\x44\xa2\x2e\x28\xa2\x15\x21\x70\x70\xef\xcd\x2a\xe6\x55\xe5\x41\xd5\x29\x42\xcc\xf7\x18\x53\x5e\x07\xda\x60\x00\xac\xe3\x72\x6d\xfb\x08\xeb\x4f\x98\x67\x10\xa3\xb7\x9a\xc1\x12\x42\x6c\x8e\x3d\xa2\xfc\x89\x68\x46\xde\xaa\x89\x66\x7a\xa2\xd6\x26\x2d\x33\x01\x97\x49\xf9\x3c\x4f\x12\x54\xd2\x2c\x44\x04\x04\x59\x4e\x15\xec\x85\xf4\x0c\xf0\x94\xa7\x7f\x54\x18\x95\xa4\x82\x50\xc1\x15\x78\xdb\xc2\xa0\xf0\x54\xaf\x74\x8e\xd3\x78\xc7\x95\xdb\x62\x66\x1d\xde\xee\x99\x85\x67\x9d\x15\x6d\x52\x78\xa1\x31\xc8\xdb\x15\xa1\xaf\xf6\xa8\x74\x08\xc2\xb1\x9c\x27\x9e\xb6\xcd\x29\x62\x88\x21\x76\x12\x38\x7d\x9f\x79\x6e\x6a\x9e\x61\x57\x16\x66\x67\x93\x07\xc2\x82\x8f\x73\x3d\xb2\xdb\xcf\xf4\x90\xc0\x1f\x29\xf4\x7f\x5c\xd1\xf1\xf6\x33\xaf\xe9\xf7\x59\x3b\xc1\xea\x6d\x89\x78\x14\x82\xc0\x32\x7a\x74\x59\x22\x01\xd6\xbb\xfa\x24\xf2\x7f\xea\x24\xf2\xff\x73\x27\xf1\x75\x16\x39\x30\xc1\x74\xcd\xdc\xfb\xa3\xc9\x75\x89\x84\xbe\xa9\xc1\x9e\x29\x5f\x20\x3b\x59\x6b\xe4\x65\x43\x76\xb8\x25\x47\x9e\x4c\xcf\x98\xde\xb4\x0a\xbc\xc5\xd8\xc6\xe4\xca\xf8\xcb\x92\x6b\xfd\xa4\x90\x5b\x7f\x34\xf1\xed\xd3\x7c\x2c\xe1\xf5\x4d\x9a\xd8\x06\x6e\x92\xe9\xa0\x15\xcd\xc4\xc4\xb0\xd3\x91\x23\xc8\x4c\xfb\x63\x6e\x0e\x4c\x31\xb3\x90\x34\x9b\xce\x68\x99\xa3\x19\x4e\x67\x6a\xbf\x67\x5d\x30\x61\x6c\xdd\xf9\xc6\xc8\x0f\x64\xd1\x99\x0d\x73\x43\x44\x88\x6c\x53\x44\x88\xc9\xa2\x3b\x26\x44\xf6\x80\x40\x22\xdd\xdf\x6d\xfc\x60\xb5\x02\xcd\x6d\xb5\x5a\xc1\x3a\xe0\x24\x39\x93\x1b\x23\xb1\xd9\x0c\x13\x17\x5c\x70\xde\xd2\x1e\x67\x3a\xfc\xc2\x9c\x2c\x40\x30\x4f\x32\xb9\x95\x45\x5c\x8f\xe8\xe6\xe7\x7d\x4a\x8b\xd5\xca\x45\x2b\x5f\xad\xf2\x7c\xda\x15\xfd\xad\x57\xab\xb0\x1c\x12\x3c\x24\xba\x69\xb7\x89\x09\x6a\x68\x9e\xaf\x56\xe7\xaa\x56\x43\x2a\x32\x07\x17\x1e\x3c\x45\x3f\xb4\x76\xf7\xc4\xd3\xc8\xba\xe3\x69\x74\x6f\x64\x57\xa3\x5d\xa5\x1b\xa2\x68\xdc\x3b\xb8\x7b\x5e\x22\xbc\xa9\xbd\xae\x68\x17\x22\x8c\x76\x81\xd3\xef\x4d\x66\xf3\xb7\x24\x3a\x87\xb4\x65\x59\x41\x0b\x4c\xcc\xe1\xac\x88\x01\x96\x82\xd8\x03\x4a\x67\xa4\xa2\xcd\xbf\x34\x88\x8a\xf6\xc7\x1a\x71\x45\x78\x42\xd9\x54\xb5\xf1\x85\x1d\x92\x30\x3e\x15\x81\x37\xfa\xb4\x49\xff\x5c\x1a\x57\xe1\x46\x42\x9e\xc3\x27\x2d\xfc\x81\x22\x0c\x83\x7f\x14\x9d\x10\xd4\x89\x2e\xd0\x7d\x18\x06\xff\x20\x2a\xc1\xff\x37\x61\x92\x0e\xec\xe0\x00\xc3\xc7\x22\x2d\x6c\x43\xbc\xa6\xe7\xff\x1c\x16\x69\xb5\x89\x09\xaa\x63\x2c\x52\x90\xf9\x3f\x81\x45\xd4\x52\x3f\x68\xc5\x4c\xc8\x9f\x87\xe0\x11\xd3\x6c\x67\x31\xaa\x60\xa8\x3f\x80\x4e\x5c\x73\x9b\xdf\xea\x56\x1f\x82\x55\x4c\x73\xad\x53\xf9\x43\xf0\x19\x7f\xbf\xbd\xf7\x24\x44\x4c\x9d\x2b\x69\xbb\x57\x59\xbc\x23\x12\x35\x49\x3a\xac\x90\x57\xab\x7b\x06\xda\xff\xfe\x40\xff\xf9\x9e\xe4\x94\x1e\x80\x2f\xe7\x5d\xf8\x72\x1e\xe1\xcb\xfa\xff\x8f\x6b\x03\x68\xdc\x10\xdc\xef\xb2\x80\xb8\xf6\x2c\xfd\x23\x5e\x45\xf3\x08\x3a\xf4\x71\x97\xef\x83\x4a\x73\x92\x24\x7d\x2b\xd2\x29\x93\xe4\x06\x42\x59\x90\xfe\x18\x3b\x3e\x64\x52\x05\xb7\xc7\x69\xe6\xf2\x1a\x69\x43\xb8\xac\xfb\x70\x77\xe2\x69\x10\xb3\x68\xcb\x1f\xcd\xd9\x7b\xba\xb9\x90\x3b\x70\xc4\x34\x70\x0e\x8a\x43\x0b\x45\x07\x92\x8c\xce\x2d\xef\xa0\x5e\x42\x61\x03\x1c\x94\xe6\x2f\x1a\x55\x27\x56\xf2\xa9\xd8\x59\xde\xb4\x47\xb6\x25\xb7\xb2\x7f\x64\x7e\xd6\x58\x17\x10\xce\x2a\xf0\xb5\x9e\x60\x7a\x55\xa2\x11\x89\x4b\x5b\x05\xca\xb9\x44\xe7\xe1\x49\xed\x63\x92\xe8\xcf\xcd\x85\x2a\xb7\x40\xf9\x48\x85\xce\x7e\xca\x63\xe7\xd7\x8c\x7c\xc9\xc8\xa3\x8c\xfc\x96\xd1\xbb\x48\xa0\x45\x2a\x26\xaa\x5b\x15\x02\xde\x73\xe6\xf9\x29\x34\x9b\x20\x25\x35\x9c\xbd\xb3\x61\xd0\x54\x00\x7d\x6f\x4d\xfb\x49\xa3\x79\x1e\x54\x75\x42\x11\x5e\xad\xcc\x9b\xed\x24\xc3\xce\xae\x80\x39\xf6\x33\x0e\xbd\x4a\xaa\x29\x6a\x68\x7f\x14\xf1\x72\x4f\xf6\xac\xb9\x92\xf3\xae\x6d\x9d\x10\xab\x7e\xc8\x87\x0b\xad\xaf\x59\xad\xfa\xaa\xc0\xe6\x79\xc9\x64\xad\xa3\x8b\xbc\x7e\x63\xab\xa0\x6c\x45\xc7\xe0\x27\xf5\x3e\x27\xe3\x24\x73\x8c\x29\x70\x7d\x56\x2e\xe2\x9a\x4d\x92\xa3\x0c\x49\x32\x09\x2a\x34\xde\x1b\x82\x72\x88\x0a\x03\x16\x4d\x64\x14\xc5\x29\x11\x10\x30\x16\x6d\x27\x6a\x7d\x95\x44\xd3\x0b\x20\x19\xba\x7f\x18\x07\x23\xf8\x3f\xd5\xbf\x8c\x2f\xa6\xf3\xb8\x62\x13\x6c\xa5\x15\x39\x38\xa0\x85\x01\x9b\x10\x97\x23\x6a\x48\xd9\x0a\x9b\x22\x48\xee\xe2\x33\xb5\x0e\xc1\x6f\x99\x3d\x3b\x39\xb1\xf9\xe8\x4a\xea\x9c\x41\x37\xf9\xc1\xa8\x8f\x9c\x5c\x0f\x52\x17\x39\xeb\xbd\x78\xd7\xe5\x1a\x96\x5e\xa2\x2d\x6c\x06\xa5\xd7\x37\x0f\xd6\x97\xab\x28\x53\xa1\xb2\x60\xf3\x12\x83\x87\xfb\x8f\x2c\x30\x86\x11\xaa\x47\xb9\x3d\x3a\x6a\x10\x6d\xcc\x7a\x37\x13\xdc\x98\xde\x38\x58\xf3\x46\xeb\x5d\xca\x11\x96\xbe\x77\xa9\x20\xdc\x2e\x74\x49\xba\xb3\x60\x8c\xee\xdb\x00\x4e\x4a\xeb\xc6\x15\xa2\x39\x6f\x37\x78\x1b\x91\x05\x1b\xc2\xd7\xf9\xc2\xad\xf2\x3f\x01\xbc\x16\xf4\x48\x20\xcb\x30\xb0\x87\xff\x6f\x86\x6e\x1e\xdc\x9e\xa6\x9f\x1f\xd9\x03\xef\x10\xdc\xbb\xcc\x6a\x7b\xc2\x8d\xf1\xf2\x0e\x69\x09\x5d\x4b\x34\xd5\x95\xa7\x84\xea\x6b\x7a\x53\x52\x05\xde\xd5\x48\x5c\x48\x05\x26\x3c\xb7\xfb\x14\x18\x92\xfe\x1e\xd1\x06\x8a\x26\x88\x0e\xa8\x71\x0b\xc8\x62\x47\x25\x7a\x97\xd7\x3f\x65\xb3\x6f\xd7\x59\x35\xaf\x21\x8b\x88\xbc\xb3\xad\x05\x8c\xfd\x79\x28\xb2\x4a\xe8\xc4\x23\x45\x56\x8b\xb4\x22\x22\xcb\x8b\x94\xc3\x1f\xb7\x07\xe9\x08\x0a\x20\x23\x6d\x49\x3c\x7b\xea\x7c\x9d\xa2\x6c\xe8\x75\x46\x05\xc9\x86\xb6\x7d\xb5\xfe\x5e\x81\xed\x90\x8e\x48\x06\xca\x51\x20\x0d\x65\xe3\x94\xeb\x07\xd7\x2d\x54\x32\x1d\xd3\x52\x7f\xa1\xd5\xa9\xbe\x74\xf5\xaf\x91\x79\x61\x74\x39\x96\x10\xaa\xd1\xba\x96\x92\x1c\xbc\xcf\x73\x08\x2c\x65\xf4\x0a\xc1\x69\xd5\x77\x23\xaa\xbc\x5b\x15\x63\x5c\xd1\x71\x52\xad\xb6\x43\x19\xe0\x93\xdd\xc0\x87\x4b\x1d\x3e\x73\xed\x32\xff\xda\x65\xa9\x3a\x77\xc6\x19\xd5\x1d\x24\xeb\x98\xab\x54\x62\xdd\xe8\x38\x49\x00\x44\x39\x9e\x04\x3e\xb5\xea\x93\xf8\x95\x6d\x42\xfb\xc4\xb2\xd0\x27\x96\x11\x8b\x6e\x02\x9f\x58\x90\x1f\xd8\x04\x00\xbe\x57\x2c\xeb\xf4\x8a\x65\xd6\x2b\x96\x39\xaf\x58\xd7\x80\x97\x3e\x88\xc5\x1e\xb1\x16\xec\x3d\xd4\xb1\xae\x12\x3a\x96\xe3\x50\x57\x7e\xd5\x42\x5c\x5d\xe7\x5b\xcd\x59\xab\xd2\x4b\x9d\xcd\x78\x51\x56\x00\x8f\x03\x58\x73\x6e\xd6\x9c\x94\x41\x10\x25\x6e\x83\x2e\x42\xd4\x53\x3f\xd5\x87\x9e\x20\xb8\x53\x83\xae\x83\x63\xc2\xa9\xbd\x2d\x26\xce\x37\xa0\xc4\x53\x54\xda\x0e\x7c\x2d\x1a\x44\xbb\xb6\x9f\x78\x57\x0d\xbc\x24\xbf\x67\x48\xd2\x8c\x80\x21\xf3\xc0\x45\x00\x07\xb9\x94\xcd\xd9\x32\x73\x51\xd7\x40\x67\x8f\x66\x62\xe5\x24\x0a\xe9\x5a\x6e\x9c\x9c\x53\xfc\x95\x26\x48\x0e\x2d\xed\x98\x4b\x1f\x53\x43\xc6\x00\xb6\x56\xe3\x1e\x69\xbc\x7e\xdf\xd0\x45\x79\xce\xc4\x05\xab\x06\xa9\x99\xab\xb3\xdd\xd0\xfe\x08\x5d\xdf\x5a\x37\xff\x8e\xdd\x76\x98\x3e\xa2\xf9\xff\x62\x71\x80\x77\x07\x8a\x30\xdd\x52\x94\x97\x6a\x62\xb0\x45\xdb\xd1\x6e\xa4\x6c\xb5\xb3\x02\x55\x96\xbf\x88\x92\x67\x85\xc9\xaa\x83\xe3\xaf\x3f\xf0\x0e\x60\x1c\x38\x69\xc7\xc5\x58\xf2\x5d\xd7\xd5\x06\x4b\x3a\xca\x6e\x6f\x44\x4f\x79\x94\x87\xb5\x61\xb1\x91\x51\xbd\x43\xea\x9d\x2a\x50\xcb\xd9\x7d\xbc\x9f\x48\x9b\x84\x40\xba\x71\xb5\xff\xdc\xb6\x60\x51\x68\x5a\x9f\xbf\x8b\x7c\x3e\x67\x7c\x90\x82\x7d\x81\x44\xb5\xce\x15\xdc\x87\x53\x3f\xea\xa9\x1f\xee\x93\xd3\x28\xc4\x29\x37\xa9\x90\x98\xbe\x2c\x24\x33\x1a\x8e\x35\x4c\x3f\x5d\xa8\x3c\xf2\x83\x94\xc7\x23\xa8\x36\xa0\x00\x1e\x8c\xa0\xda\x70\xe0\xab\xa9\xf0\xdc\xc2\x65\xc3\xc1\x90\xd4\x73\x30\xae\xb4\x0a\x97\xd4\xf3\x47\xbe\xf7\xda\x9a\xd8\x38\x90\xce\x3a\x68\x5b\xc7\xd0\x78\xa2\xff\xee\x99\xb0\x23\x26\xb4\x86\x8e\x1e\x04\x7f\x9e\xe9\x52\xfd\x91\x89\xbf\xb1\xeb\x5b\xf9\x68\x03\x1d\x53\x74\x6b\x64\xc5\x38\x49\xce\x4b\xa4\x18\x2e\x93\x8a\x46\xd7\xf9\x9c\x23\x1c\xe5\x45\x05\x04\xeb\xc5\xc0\x0f\xd9\x67\x95\xab\xce\x64\x71\x8b\x99\xed\xb8\x40\x23\xc7\x90\xab\x74\x27\x69\xb5\xea\xbf\xca\x20\x0c\x65\x4b\xc2\xe3\xc6\xba\x97\xbe\xc9\x11\x44\xe0\xe8\x88\xd3\x91\x6b\x51\x79\x78\x64\xd5\x93\x3f\x8b\x2f\x5a\x98\x42\x2a\x95\x62\x44\x69\x63\x8d\x82\xb8\xa5\x90\x75\x69\xf7\xaa\x30\x6e\x84\x6b\x31\x4e\x4f\xfb\xc4\x39\xce\x73\xed\x31\xcc\xe2\x20\x22\x30\x59\x7c\x17\xca\x73\xec\x14\x94\x2c\x27\x56\x21\x9a\x00\x8b\xc7\x87\xfc\x84\x0a\x52\x1d\x1f\xf1\x13\xda\x48\x32\x12\x0e\x47\xbe\xa8\xb2\xa5\xc9\x89\xae\x75\x00\xea\x07\x5b\x9e\xc9\x23\xf3\x57\x81\x06\x45\x99\xcd\x07\x36\x6a\x90\x3a\x55\x57\xf9\x9c\x95\xba\x6a\xd6\xcc\xf3\x72\xa0\x29\x9a\xd1\x84\x3d\xff\x3b\xf3\x13\x5e\xfe\x55\xa0\xbf\xb3\x63\x76\x12\xb5\x50\x97\x4d\x35\x63\xaa\x07\x26\xd7\x21\xee\x22\x5f\x9a\x2c\xfb\xf9\x32\x3b\xb7\x99\xe0\x73\xfe\x2d\xfa\x88\x6c\x1a\xe4\xa2\xac\x96\xaa\x6e\xc5\x6a\x26\x6c\xdd\xba\x39\x5b\xe6\x22\xae\x3d\x67\xf2\xbc\xd6\xea\x03\x51\x9e\x9f\x17\xac\x35\x24\x7e\xd9\x88\x41\xfa\x8d\xa1\x8a\x34\xaa\xad\x9c\x5f\x65\x45\x0e\x5d\x93\x82\x23\x4e\x06\x25\x57\x09\xcf\x07\xe1\x74\x21\xdf\xf9\x20\xad\x86\xa7\xd7\x55\x76\x79\x69\xbc\x27\xee\xae\xb3\xfa\x7d\x53\x88\xfc\xb2\x60\x69\xbf\xdf\x0c\x97\xfa\xc7\xfa\x87\x9a\xb7\xb1\xbd\xd3\x97\x0f\x1c\xdc\xda\x20\xc1\xa2\x97\xf3\x5e\xc9\x51\x2e\xbf\xd2\x7c\x52\x83\x25\xdb\x39\xbc\xc8\xea\x8f\xd7\x5c\x42\x12\xab\xc4\x2d\x2a\xb0\x09\xb4\xd6\x1c\x17\x27\x93\x81\xa1\x93\x07\xe0\x8f\xdc\x8e\x05\x35\x9b\x56\x43\x39\x30\x38\xce\x90\x46\x7b\x06\x6e\xa9\xc7\xee\x4b\x32\x3b\xc1\x69\x3b\x60\xd4\x2c\x49\xe2\x4f\x07\x83\xad\xf6\xd7\xb2\xf0\x04\xa7\x87\xed\x91\x9a\x63\x3c\x4b\x12\x98\x79\x81\xd7\x26\x46\x9b\x81\x7d\xb5\x99\xd7\x4c\xde\xeb\x1f\x61\xd5\xc0\x4e\xb1\x73\x55\x55\xad\xcf\xf2\xff\xae\x5d\x55\xe7\xe7\x12\x24\xa8\x69\x48\xb9\x74\x69\x0c\x9a\x61\xc9\x5f\x15\x39\x24\xc9\xaa\x86\x25\x9f\xc9\x67\x3a\xe3\x78\x0d\x71\x72\xc3\x18\x1f\x5e\x06\xd0\x18\xcf\xa9\xac\x69\x7a\x5e\x05\xdd\x87\xa8\x3b\xce\x18\x33\xe5\x43\x88\x16\xff\x5a\x47\x57\x02\xdf\xa4\x86\xc3\x2a\xbe\x87\xc8\x57\xba\x64\x3a\xa8\x67\x55\x7e\x09\xfa\xbf\x1c\x8c\x89\x8a\xa1\xf2\xb6\xd5\x01\x99\xd0\x60\x9e\x5f\x0d\x20\x68\x38\x67\xd5\xcf\x47\xef\xdf\xd1\xc1\x73\xf5\xcd\x8b\xe7\xff\xfb\x4f\xfa\x69\x40\x14\x95\xbf\x2c\xaf\x18\x98\x48\x22\xe6\xdb\x4b\xe2\xb4\x23\xba\xec\x30\xaf\xa7\xed\xee\x72\x72\x97\xd7\xa9\x7c\xb9\xc6\x69\xc7\x70\x72\x4c\xcc\xda\x53\xf0\xb1\x42\x05\x65\xa4\xb2\x87\x67\x5a\xd8\x47\xda\x1f\xc1\xb5\xfb\x07\x44\x4f\x82\x07\xaa\x7e\x63\x8c\xd3\x56\xd3\x1f\x0e\x55\xcc\x2f\xa6\x31\x26\x03\x8c\x59\x91\x5f\x8d\x2d\xa3\x67\xd7\xca\x48\x41\x33\x79\x70\x2a\xfc\xcf\x60\x54\x86\x21\x18\xe0\xf7\xb1\xea\x8c\x8e\x26\x33\x0f\xab\xce\x2c\x56\x9d\x9d\x10\x86\x27\x51\x2b\x1d\x98\xb5\xdd\xd5\x03\xb1\x2b\xf3\xb1\x6b\xbb\x95\x16\x86\x65\x21\x86\x6d\x7f\xd1\x89\x65\x3b\x86\x67\x31\x2d\xc4\x7a\x9b\xd1\x03\xfd\x14\xa0\x35\x76\x3f\x52\x34\x07\x72\x46\x3f\x31\x2f\xee\x5d\x78\x74\xd9\xfd\x08\xb9\xf2\x10\xb2\xce\x82\x57\x91\x3b\x08\x93\x69\x3c\x6b\x7f\x6c\x50\x01\xa6\xd6\x93\xfb\xfa\x63\x93\x33\xa8\x65\x46\xab\x35\x20\xee\x99\xb1\xde\x99\x01\x69\xdb\x48\x8c\x5e\x4b\x14\x5e\xc7\x88\xb1\xc1\x26\x66\x48\x7d\xdc\x9c\x4c\x06\xb5\xb8\x2d\x98\x3c\x43\xcd\x94\x73\xc4\xc8\x02\xa7\x83\xb9\xec\xac\x2a\x9b\xba\xb8\x3d\x64\xe2\xad\x39\xf1\xba\x16\x20\x23\xb4\xa0\x8b\xe9\x62\x78\x7a\x7a\x21\x96\x85\x5e\x07\x9c\x24\x7f\x30\xdd\x84\x7f\x33\x34\x1d\x37\xc3\x62\x1a\xa6\xa3\xc8\x57\xab\x81\xfc\xbb\xc0\x49\xf2\xab\x69\xa4\x75\x2b\x2c\xf4\xcb\xc1\x60\x4b\xbe\xaf\x9b\xcb\xcb\x8a\xd5\xb5\xbe\x23\x0e\xe6\x39\xa8\x0f\xbe\x64\x15\xd7\xf9\x34\x9a\x24\xb1\xb5\x7e\x06\x25\x4b\x5e\xf2\xe8\x7d\xd6\x88\xf2\x4d\x39\x6b\x6a\x5d\x80\x5a\x97\x49\x83\xf5\xac\x17\xfa\x2e\x69\x8c\xa6\x63\x91\x24\xff\x40\x8c\x34\x64\x41\x0a\x7c\xcf\x05\xc3\xe0\x82\x61\xa4\x22\xfd\xf1\xe6\x0b\x86\xc1\x05\xc3\x3a\x41\x58\xf5\x57\xa9\xf8\xac\x49\x02\x39\x20\x5e\x0a\x51\xe5\x67\x8d\x60\x68\x00\xc5\x70\x1d\x5e\x31\xa4\x6b\xe1\x0d\xe0\xee\x10\xa3\x07\xdc\xfa\x92\x41\xdc\xf4\x81\xa7\xa7\x72\xc4\x61\x1d\x39\x7c\x3b\x14\x0d\x85\xbf\xa9\x11\xb5\x6b\x87\x35\xbc\xab\xf5\xbe\x9b\x71\xe6\xdd\x8c\x2c\xb8\x19\xcf\x15\xa2\xed\xb8\x04\x79\x90\xe8\xa5\xc3\x3e\xb2\xc5\xe4\x3c\x49\x55\xb6\xf2\x36\xa5\xff\x28\x43\x23\xd2\x32\x6b\x97\xa8\xc3\xd0\xf4\xed\x74\x2d\x95\x97\xa8\xe2\x7e\x0a\x3f\x66\x42\x48\x17\x85\x3f\x0d\x59\x28\x52\xb5\xec\x7c\xb8\xbe\x9b\xd4\x5d\x0f\xcb\xab\x64\x14\x1d\x56\x50\x88\x53\xf4\x3d\xba\x00\xeb\x2b\xf0\x88\xdd\x40\xdc\x44\x54\x61\xac\xbb\xf0\xaf\x3b\xde\xb1\x92\x63\xcb\x0b\x16\x25\x7a\x0f\x1e\x4a\xb1\x75\x4b\x97\xde\xb1\xc3\x92\x96\x43\x3a\x06\x6b\x35\x5c\x81\xe6\xdc\x65\xd3\xd9\x18\x28\xd0\xe9\xfb\x60\xf5\x52\x2f\x79\x5c\xde\x4e\x9f\xc4\x2d\xc7\xee\x5c\xb4\xa1\x9e\x92\x89\x9a\xe8\xa3\x5e\x7e\x5f\xc9\x53\x79\x8e\x3c\x30\x74\xdf\xb1\x27\xd7\x5e\xe1\xfa\x67\x03\x06\xb0\x1b\x73\xce\x44\xb5\x15\x83\x9b\xfb\x6e\x47\x18\x13\x9e\x24\xfd\x4a\x4b\x8e\x7d\x25\x99\x33\x12\xee\x77\xad\xc4\x7d\xfa\x53\x68\x6b\x9c\x78\x32\xec\xe9\xab\x86\x52\x7a\x2d\x31\xde\xab\x86\xde\xc8\x71\xbf\x6a\xfa\xaa\x04\x1e\x6e\x9a\xd5\x4a\xbe\x3a\x68\x94\x14\xfc\x43\x63\x19\xf0\x43\xf9\xd5\xe7\x02\x1d\x36\xe4\x63\x83\xc9\x5b\x78\xfa\xd0\x60\x8c\x31\x41\x7c\xb5\xea\x3a\xa6\x3a\x04\x3e\x40\xcd\x6e\x20\x40\xf0\xa0\x69\x64\x5e\x08\xc5\xb4\xbb\x37\x4f\x1f\x20\x97\x18\xef\xcb\x73\xad\x01\xd1\x48\x65\x5b\x00\x89\x63\x61\x5d\xde\xa9\x1a\xf7\xb2\xd5\x56\x4e\x6b\xa1\x7c\x8e\x72\xfc\xe7\x0c\x29\x64\x6e\xa4\xec\x7a\xed\x7c\xab\xed\x4e\xc9\x3f\xdc\xcf\xb1\xdc\xbf\x89\x65\xb4\xaf\x73\x79\x53\x2b\x21\x60\xa4\x62\x20\xa6\x6b\xe2\x83\x6f\x94\x81\x3a\x64\x21\x72\xd2\xb5\x17\x10\x79\xd7\x81\x26\x7c\xe5\xc3\xad\x82\xcd\x00\x7a\xfd\xfa\x70\xd2\x83\x59\x54\x13\xdc\x50\x4e\x50\x4e\x2b\xec\x9b\x06\x6c\xb7\x61\x9e\xe4\xad\xae\x48\x1e\x78\xc8\x19\xe1\x30\x85\xf5\xc8\x83\x1c\x43\x9b\x14\x83\xad\x30\x0a\x8d\xd5\x55\xea\x1e\x42\x3b\xa5\xa8\xd0\xd3\x13\xe6\xed\x30\x8b\x79\x28\x3f\xd6\x42\xfd\xee\xa1\xb0\xae\xd2\xf6\xf0\x5a\xce\x03\x56\xb3\x6a\x35\xad\xe1\x80\xe3\x6b\x29\x1e\x7b\x9c\x33\x30\xbf\xc7\x12\xbf\x89\x44\xe0\x5d\x13\xb4\x14\x5f\x1a\x07\xe4\x68\xe2\xa1\x2b\x3e\x4f\xfb\xdc\x36\x43\xff\x27\xb1\x81\x4b\xeb\xb4\x19\xba\x1f\xeb\xce\x3c\x59\xc6\xc4\xc3\xa1\xaa\xd5\xb6\xb3\xeb\xf1\x54\xf9\xca\x61\x0a\xc4\x6c\x39\xee\x3c\x3d\x2a\xdc\x66\x70\x78\x20\x06\x07\xb7\x8e\x29\xdf\x39\x38\xbc\x75\x70\xd4\xe1\x1b\x79\x27\x48\xb2\x33\x49\x62\xa4\xdc\xb6\xe8\x7d\x39\x97\x78\xba\xf1\x00\xb7\xe5\x51\xb9\xf1\x6c\xa9\x91\xb4\xee\x09\x6e\x63\x4e\x6e\xff\xd7\xaf\x25\xc2\x8f\xab\x0e\x75\xea\x8b\x2a\x52\x9d\x26\xc9\xf8\x79\x4b\x76\x60\x96\xc2\x22\x93\xd6\x7d\xdc\xa9\xe9\xa0\xfc\xf1\x18\x4f\x2a\x5f\xcd\x3b\x45\x76\x47\x5a\x7a\x28\x79\xa9\xb8\xc5\x56\x33\xc4\x53\x27\xab\x6f\x52\x5b\x93\xa8\xb7\xb4\x09\x88\x8c\xbe\x59\xce\x29\xf8\xe0\xb5\xa7\x86\xe2\x22\x2a\x17\x66\x6b\x6f\x24\xb7\x48\xd7\x27\x95\xaf\x86\x26\x95\x96\xd1\x5b\x9d\x88\xbf\xf2\xc1\x9e\x90\xae\xf5\x85\x0e\x22\x05\x1e\x11\xbe\xcd\x95\x82\xe0\x7c\x3a\x4e\xc4\x6a\x3b\x1d\x27\xf2\x22\xd3\x09\x7c\x62\xdd\xcf\x13\xa2\x44\xfa\x9e\x02\xfb\x1f\x60\xb0\xd6\x19\x57\xfc\xb6\x44\xcc\xbf\xfa\xac\xdb\xa6\xdd\x58\x73\x88\x76\x47\xfb\x4f\x12\xf0\x56\x8e\x53\xc6\x8b\xd5\x93\x5d\xc2\xfc\xc4\x43\x3b\xf2\xd2\xec\x90\xe4\x9b\xeb\x0b\x05\x3d\xb4\x32\x7f\x6c\x3f\xdb\xf3\x82\xbe\x6e\xe8\xcf\xc8\xe2\x75\x35\x88\x6d\x4d\xee\xa1\x22\x61\xfc\x51\xc7\x0f\x9b\xcd\x78\x3f\x6a\xca\xbd\x7a\x10\xd5\x61\xc6\x15\x7a\x29\xf7\x22\x75\xcd\xdf\x82\xa0\x56\x5a\x1c\xc0\x88\x92\xbc\xa4\x82\xd4\x22\x9b\x7d\x4b\xcf\x19\x12\x78\xbd\xfe\x35\xa3\xa1\x4b\xbf\x53\x80\x45\x37\x28\x57\x74\xc0\x1e\xd5\x19\x32\x57\xab\x27\xe6\x11\xb3\x61\x76\x29\xd1\xb3\x12\xac\x79\x2e\xec\x8e\x06\xd9\x35\x99\x35\x9d\x17\x99\xd1\x26\xf2\x50\xe9\xcf\x41\x9f\xd5\x56\xfa\x7b\x3a\xfb\x40\xe5\xcf\x3b\x55\xfe\xdc\xaa\xfc\xb9\xaf\xf2\x37\xee\xcc\xf6\xfd\x9a\xc7\x1a\x7f\xf3\xc6\x57\xab\xad\xd7\xe4\x4b\xb8\x52\x26\xc3\x5b\x6c\xf1\xa2\x54\x1b\xf9\x02\x65\x2a\x8b\x14\xa8\x3e\x48\x41\x66\x3e\xdf\x64\x54\x1f\x11\x8b\xa5\x6f\x73\x1e\xf2\xe8\x19\x3d\x60\x68\x46\x32\x79\x23\xc1\x53\x25\x6b\x1e\x9f\x74\xb1\xe2\x19\xfd\x64\xeb\x7e\xda\x50\xd7\x70\xdb\x99\x92\x18\x65\x2d\x89\x51\xb5\x49\x94\x14\xb7\xe4\x24\x04\x19\xfd\x6a\xfb\xfd\xda\xee\xb7\xcd\x55\xfb\xc6\xcd\x96\xab\xee\x62\xba\x2b\x8f\xe9\x9e\x05\x4c\xb7\x95\x26\x95\x2a\x01\x26\xd1\x26\x07\x19\x04\xea\xae\xda\x92\x92\x24\xc9\xba\x0a\x15\x38\x66\xc7\xcd\x09\x56\x2c\xb4\x91\x3a\x01\x3d\x0c\x1a\x88\x99\x7a\x3d\xeb\x12\xe5\x4b\x9e\x02\x71\x95\x5e\xf5\xb8\x38\xa1\x83\x81\x02\xfa\x8d\xa2\x2a\x2d\xdb\xb1\x62\xa8\x48\x16\xf4\x3f\x20\x31\x62\xab\x15\x92\xbb\x03\xe2\x6b\x06\x29\x39\x86\x97\x4d\x7d\x81\x1a\x6d\x02\xe7\x24\x75\x95\x49\xce\x54\x1d\x37\x27\x12\xac\x67\x9a\x83\xcd\xa6\x72\x49\x34\x6c\x90\xce\xd5\xae\xb5\x52\x45\x7d\x60\x7d\x86\x67\x38\x5e\x67\xd9\xac\xc2\x3c\x6a\xb5\x71\xbf\x63\xa5\x57\xab\x3a\x49\x5a\x32\x43\x59\xde\xb5\x03\xb6\xb1\x1a\x77\x7c\x93\x24\xb3\xe3\xe2\xa4\x4f\x69\x7d\x5c\x9c\xb4\xb7\x50\x96\x9a\xb8\xbe\x72\xa9\xcc\x72\x11\x66\x97\x49\x72\xc2\xb4\xbe\x7f\xa3\x81\x42\x45\x35\xad\xa7\x75\x28\x8d\x24\x33\x3a\x9b\xce\xa2\x32\xbd\x4a\x2a\x96\x6e\xad\x42\xa4\x06\x5b\x53\xe3\x96\xf0\x72\x46\xa9\x5c\xd7\xb6\xd8\xa7\x4e\x12\x23\xa2\xec\xfb\xde\x90\xad\x46\x07\x83\xad\xfa\xdf\x25\xae\xec\x84\x35\x64\xe7\x55\x18\x35\xde\x6a\xa5\xc7\xad\x56\xb5\x03\x0a\x6b\x8c\xd7\xbc\xb5\x04\x1a\x64\x08\xc7\x24\xa7\x8c\xc4\x8c\x64\x97\xf8\x6d\x4d\x1e\xb5\xd1\x36\xbe\xe3\xdd\x22\x29\x15\x78\xef\x97\xac\xd3\x97\xf4\x0b\xcb\xbe\x1d\x32\x31\xd5\x7f\xd3\x43\x26\x9c\x05\x3c\x6b\x42\xbf\x69\x75\xd9\x12\xad\x0e\x9f\x7d\xb3\x66\x19\xee\xf6\x03\xe3\x8d\x73\x48\x95\xe8\x69\xd1\x6e\x99\x76\x94\x57\x76\x25\x2a\xe5\x95\x63\xdb\xc7\xd4\x46\xdc\xb8\x65\xc8\xa6\xec\xa8\x6e\xef\x66\x25\xaf\xcb\x82\x0d\x41\x37\x22\xaf\x76\x15\xe9\xae\xc4\x77\x35\x03\xda\xb0\x6c\x44\x10\x8a\x47\x51\x4a\xe5\x1a\x63\x8f\x76\x10\x8d\xef\x91\x50\xb1\x45\x10\x0e\x3e\x48\xcd\xe6\xe7\x14\x95\x03\x30\x81\x41\x55\xbf\x1c\xdf\x5d\x15\x2a\xb7\x23\x9c\xa3\x28\xf2\xa7\x0b\x2b\xdb\x04\x06\x3a\xbe\x11\x49\x64\x2d\x62\x8c\x48\xb6\xb7\x35\xdd\x63\x6c\x42\xf2\x05\xda\xde\x7b\xe2\xcb\x47\x9c\x31\x86\x8b\x9d\x11\xc9\x4c\x5b\x36\xaa\x42\xc5\x1a\xf6\xac\x43\x36\xf8\xdc\xa0\x38\x8d\xae\x92\xf8\x4c\xb9\xe7\xc1\xc8\x31\x5c\x80\xc3\xd3\xd3\x8a\x65\x33\xf1\x96\x03\x9b\x55\x74\x35\x47\xc5\xda\x9f\xce\x4e\xaa\xa9\x51\x2d\x0b\xd6\xc4\x61\x28\x67\x8a\x49\xf5\x27\x3b\x3e\x91\x5e\x35\x41\xaa\x0b\xc5\xce\xf9\x8c\x5d\x10\x79\xd8\xe7\x29\x74\xd0\x12\x03\xc5\x54\xb8\x18\xd4\x0b\x84\x14\xf5\xc6\xb0\xf3\x11\x87\x90\xd7\x2a\x50\xee\xc4\x3e\xd1\x20\x82\xaf\x3a\x68\x15\xc2\x6b\xae\xc3\x0e\x9b\xd8\xe1\x00\x51\x1e\xe8\x95\xff\xa3\xc3\x56\x42\x65\x6f\xd4\x0f\x19\x62\xde\x18\x43\x28\x9b\x79\xf5\xe1\xe0\xaa\x82\x05\x97\x0d\xda\x21\x1c\x7b\xb0\xcb\xfc\x84\xf2\x64\x37\xf1\x0c\xcd\xb1\x9f\xad\x84\xb5\x3d\x73\x91\x96\xfc\x9b\x49\x75\xa6\x77\x8e\x24\xb1\x12\x4a\xb9\x49\xc9\x1b\xc6\xc7\x99\xb0\x0e\x67\xb6\x76\xe8\xf6\x87\xc1\xb5\x65\x95\x21\x6a\x91\xb7\xa3\x91\x54\x63\x9e\x23\x0e\xd1\xb6\xb0\xc7\xf1\x6d\xaa\xae\x73\x41\x59\x01\x9c\xc7\x45\xd8\x1d\x51\xbc\x84\x1f\xa9\x8a\x99\x4a\x1e\x01\xee\xa8\xd8\xde\xb8\xab\xc2\xda\x8e\x2b\x38\x9e\x7b\x2e\xf5\xab\xbf\x6b\x76\x8e\x14\xc2\x0f\x05\x9b\x98\x24\xe7\xdc\xa5\xcb\x0e\x57\x3c\x49\xd8\x70\x21\xa9\x35\x84\x6d\x6c\xab\xe0\xc4\x47\xb8\x6e\x27\x8d\x17\x15\xf6\x39\xb2\xbf\x06\x3b\x4a\x17\xf4\xd5\xbb\x70\x78\x5c\x39\x7e\xe9\xfc\xbd\xbc\x37\xef\x85\xbc\xa4\xb0\x19\xe2\x78\xdf\xa2\x23\x05\xe1\x1a\xf2\xb7\xc7\x0f\x42\x4f\x59\x7c\x88\xba\xae\x94\x83\x22\x49\x0e\x0a\x04\x36\x0d\x9b\x8f\xd8\x6e\xeb\xa8\x05\xa2\x36\x11\x81\x1a\xf7\x42\x37\x79\xf2\x2c\x83\x14\x54\x28\xa3\x89\x8a\x3e\xcc\xa7\xfb\x4f\x53\xde\x8a\x3e\xcc\x68\x65\x32\x5f\x40\x40\x26\x8d\xfc\x7c\x2f\x2f\x6e\x82\x92\xab\xe8\x75\x1c\x99\x2b\x31\x87\x2b\xb1\x24\x39\x5e\xdb\x38\x4b\x1a\xd3\x80\x8a\x0c\xcb\xab\x38\x80\x4b\xd1\xc8\x15\xe8\xf2\x54\x8f\x0c\x19\x43\x87\x62\xbe\x54\x6e\xfb\x21\x63\x0f\x77\xb4\xf6\x73\x8d\xaf\x43\xdd\x58\x4b\x46\x2b\x3a\x5b\x46\x1d\x97\xfc\x1a\xf2\x94\xfb\xc7\x6a\x4f\x0d\xdf\x2f\xda\x4d\x6b\xb3\xf9\x1e\x56\x6d\x02\x9a\xc3\x4b\x70\x63\x19\x72\x95\x27\xd1\x13\x96\xc7\x7e\x24\xba\xb0\x25\x17\x67\x6d\xb1\x31\x69\xc5\x4e\x61\x6d\x71\x3f\x6b\x89\xfb\x43\x4b\xe4\x78\x14\x41\xa1\xa7\x94\xf4\xf0\x94\x48\x92\x46\xae\x87\x17\x84\xbd\xf1\x02\xad\xee\x51\x1b\xd4\x6c\xc7\x3d\xee\x9a\x47\x2f\x42\x3a\x7c\xa5\x63\x88\x39\x42\xcd\x0f\xd2\xa6\x53\xa8\x15\x0d\x12\xee\x56\x74\xb1\xc0\xbc\xf4\x5f\xd1\x39\x1d\x39\x3b\x01\x11\xe0\x37\xde\x8a\xfc\x57\xd1\xfe\xd8\xdf\xda\x1d\x83\xb7\x04\x8d\xbc\x4a\x55\x90\x99\xc8\x62\x3e\xea\x78\x8c\xf1\x7a\xfc\x24\xc4\x9a\xe8\x57\x86\x04\x19\x0c\xb0\xef\x7a\x95\xd0\xc7\xe3\xa7\x78\xc2\x52\xa1\x9d\x0c\xd8\x64\xa2\x53\xd7\x3e\x50\x1a\x54\x34\xc8\xfc\xc0\x10\x03\xcc\x9a\x64\xf7\xd8\xda\x13\x0b\x29\xd7\xbd\x07\x88\x86\x26\x7b\x4e\xb2\xf5\xc4\x3d\x8e\x9f\x99\x67\x35\x90\xed\xe0\x62\x37\x72\xad\x9e\xf0\x73\x8e\x18\xd3\xe1\x5d\x2b\x58\xf3\xea\x6d\x96\x92\xad\x21\x34\x5d\xd8\x81\x0a\x6f\x16\xdd\x77\x3d\xb6\x5e\x57\x53\xc7\xb4\xa0\x20\x89\x02\x60\x5a\x92\x53\x09\x8a\xa5\x92\xee\x95\xa0\x82\xc4\x82\xe6\x53\x0f\xdf\xa4\xc2\xcf\x09\xca\x6b\x91\xf1\x19\x23\x7c\xfa\x0c\xa4\xe0\x56\x95\x5f\x79\xd9\x0e\x65\x35\x56\x69\x02\x01\x50\x45\x5a\x75\x94\xa1\xa8\x09\x10\xcc\xbb\x56\x70\xfc\x09\x64\xdc\xa4\x15\x0e\xc4\x8f\xc2\x69\x1f\x2b\x5a\x0d\x15\xa9\xf2\xb9\x2c\x41\xe5\x03\x60\x89\xbd\xf8\xd4\x95\x17\xca\x4c\x4b\x97\x56\x2b\xc4\x7d\x49\x53\x28\xc4\x2c\xdd\x45\x62\x13\xf6\x69\x57\x45\x13\x62\x29\xf6\x08\x50\x67\xb2\xeb\xf5\x5a\x62\x4f\x22\x70\xfa\x1f\xdb\x94\xae\x65\xae\xa2\xf5\xfa\xcf\xcf\xcf\xcb\xc0\x60\xaf\x7f\xeb\xe8\x40\x4a\x92\x53\xed\x0e\xae\x0e\x4b\xbf\xc1\x77\x0d\xcd\x0d\x5e\x53\x1e\x69\x93\xe0\x44\x37\x2d\x23\x96\x11\xc6\xd6\xa4\x9c\x36\x7e\x50\x9a\x00\x7b\x95\x16\x73\xf5\x58\x84\xbb\x24\xb8\x84\xb8\xab\xb4\xb8\xab\xc7\x40\xbf\xa7\xb1\x43\x43\xfb\xa3\xb5\x96\x86\xe7\x4e\x1a\x9e\xab\x9e\xd4\x78\x55\x5c\x2c\x46\x66\x34\x27\x35\xe5\x64\x41\x67\x93\x89\x24\xe9\xb3\x06\x15\x64\x41\x6a\x0b\xa7\x0b\xb5\xca\x49\xb2\x0b\x3f\x64\x1b\x8b\xf0\xb4\x2f\xc8\xc2\xd4\xb2\xc6\x3e\x0b\xc8\xed\xdb\xe5\x04\xb7\xe8\xc4\x81\x0b\x8b\x03\x17\x4e\x22\xee\x35\x60\x2b\xac\x17\x31\xde\x33\x6f\x60\x14\x66\x6b\xcb\x29\x2a\x68\x25\xa7\xe7\xad\xb5\x3c\xc0\x85\x3b\xc0\x85\x8f\x03\x7c\xe3\xdb\x19\x4e\x8b\xa8\x00\x43\xd4\x06\x57\xe2\x35\x8b\x6d\x12\xcd\x5d\xb7\xca\x5e\x56\x34\xa3\x49\xa8\xfc\xb1\x74\x6c\xa5\x51\x62\x3b\x87\xe0\xdc\x7c\xec\x54\x0d\xb6\x2f\xa0\x54\x73\xc9\xcc\xc7\xfd\x3c\xa4\x19\x30\xde\xe8\xd6\x58\xe4\x9d\xfb\x93\xdb\xfd\xc9\x3b\x34\x16\x72\xe2\xe0\xc9\xae\xef\x2e\x75\xcb\xa0\x06\x22\x31\xe5\xf1\x86\x99\x6a\x30\x30\xab\xc3\x70\x79\x4f\x1e\x2e\x75\x69\xd3\xd8\x3e\x3b\x5b\x49\x76\x56\xe0\xd0\x3d\x67\x12\x44\x08\xf6\xd5\x1e\x76\xcb\x3c\x5f\xa2\x90\x12\x2d\xbb\xb2\x1a\x2a\xc6\xb5\x9a\x30\xdf\x9f\x24\x0f\xe9\x7b\x88\xc4\xdb\xa6\x00\xb9\xcd\x9b\x07\x17\xba\x36\x98\xd6\xaa\x15\x65\xaf\x34\xa8\xb2\x79\x5e\x6a\xed\xf8\xed\xa5\x35\xbd\xab\x20\x3f\x6f\x92\x1c\x32\xa5\x5e\xc8\x24\x21\x5d\x4a\xf4\x96\xe9\x2c\xcf\x25\x1d\x4d\xca\xe7\xb9\x31\x7d\x2e\xb7\xe8\xb6\x49\xc9\x97\x1f\x97\x27\xa4\x90\x7f\xb6\xc6\x2d\x53\x56\x4e\x8a\xef\x99\xb2\xfe\xc1\x74\xad\x50\xe0\xfb\xab\x2e\xfe\x07\xe2\xa4\x21\x85\xc4\xac\x46\x1b\x1b\x2a\x8d\x8e\xd4\xa0\xbb\xb5\x35\x1f\xda\x2f\x8d\x52\x48\xd2\x7d\x81\xcd\xf1\xd0\x33\x39\x26\xf7\xbc\xeb\xb4\xd8\x64\x81\xc5\x26\x0f\x6d\x30\x19\x58\x6c\x8a\x3e\x0d\x3e\xb5\xfa\x82\xd0\x44\xb3\xe3\xfb\xb6\x0d\x67\xda\x55\xc9\x9a\xdd\x1f\x9f\xa4\x83\x81\xec\x13\xaf\xd7\x01\x53\xff\x24\x7d\x98\x1f\xd4\xb6\xd3\x25\x03\xff\xed\xdf\xb8\xd6\xd8\x31\x86\x68\x1c\xb9\xa5\xc1\x97\x70\xb3\x7a\xfc\x9b\x66\xba\x41\x22\xad\x9f\x69\x7f\x4c\xde\x0b\x14\x87\x68\xb1\x4c\x78\x4b\x32\x00\x1a\x52\xe1\x02\x47\x86\xd1\x12\x24\xbd\x9e\xa2\x0a\x2c\x4c\xac\x29\xc4\xdb\x06\x0c\x06\x9c\xfc\xd9\xfa\x7e\xf3\x89\xd3\xf6\x2a\x3d\x7f\xee\x47\xa8\x21\xd5\xb4\x8b\x2b\x05\x64\x23\x21\x1d\x0f\x6b\x26\x8c\x16\x60\x9a\xfb\xbf\xd0\x40\x67\x17\x1f\x90\x01\x2f\x39\x1b\x90\x41\xbe\xbc\x2c\x2b\x91\x71\x31\xc0\x69\x6e\x92\x8f\x53\xf5\x36\x45\x61\xc7\xa5\x4b\xb1\x81\xca\x98\x8f\xd5\x9d\x5b\x02\xa6\x4c\x92\x32\x56\x49\xd8\xee\xf1\xb4\x34\x7d\xa5\xda\x88\x0a\x3e\xb7\x03\x10\xdc\x1b\x6b\xe9\x51\x81\x4f\xec\xa2\xb0\x4e\x08\xa8\xa6\x03\xb0\x65\x0e\x34\xc2\xe6\xd6\x76\xfe\xf3\x9e\xcb\x60\x24\xc0\xe1\x9d\x01\x6a\xfc\xbc\xd6\x77\x1d\x76\xa1\xbe\xd3\x7c\x1e\x6a\xce\xff\x09\x2f\x7b\xe3\x66\xcf\x3b\xee\xaf\x1f\x70\xb2\xe7\xff\x82\x93\xbd\x77\xcf\xcc\x41\x94\x10\x19\x51\xb4\xde\x3c\x4c\x3e\x3e\x0f\xe4\x0d\xd1\x15\x62\x75\x1d\x77\x6d\x71\x82\x0d\xa5\xe1\x2e\x34\xc3\xb9\x81\xf8\x2c\x60\xfd\xd9\x75\xef\x97\x0c\x13\x31\x5c\x94\xd5\x41\x36\xbb\xf0\x74\x2f\xc2\x5c\x7e\xd7\x85\x97\x71\x00\x62\x6a\x71\x09\xae\xca\x6d\x94\x0f\xb3\xf9\x5c\x4b\xc0\x2e\x18\x47\x15\xa9\x30\x88\x88\x20\x4a\xd3\x65\xb3\x51\x49\xf5\x3e\xbb\x9c\xea\xbf\xe9\xfb\xec\xd2\x29\xa9\x2e\x2c\xe9\x8d\x38\x2d\x72\x64\x03\x9e\x88\xec\x9c\xee\x10\x3e\xbc\xcc\x6e\x8b\x32\x9b\xd3\x3b\x2d\x48\xf6\xb2\x51\x55\x46\x19\x65\x3d\x41\x87\x33\x6d\xc0\x4b\x3d\x19\xd9\xfb\x66\xb5\x42\xef\x21\x02\xd3\xeb\x86\x56\x98\x68\xc5\xd8\x9a\x78\x69\x05\x96\xf7\x8e\x63\x62\xa4\x71\x72\x4a\x1b\xc3\x7c\x4d\x36\xe8\xa2\x3c\xc6\x49\x0d\xd7\xcd\xaa\x9d\x06\x43\x0f\x8e\x54\xa8\xd4\xcb\x1a\x20\x9b\x28\xab\x41\xde\x6d\xa0\x90\x07\x42\xf3\x57\x99\x98\x5d\x28\x4f\xe2\x8e\xe5\xe9\xb2\x7f\xa8\x9c\xf1\xf4\xbb\x66\xfa\xae\x01\xd0\x39\x64\x02\x1d\x8b\x8b\xbc\x3e\xc1\xe9\xbb\x46\x41\xc2\x45\x5e\xdb\xf5\x34\x61\x5d\x8c\x7a\x51\xbe\x6c\x8f\x03\x19\x05\xe2\x9d\x7d\x75\x08\xc6\x3f\x06\xdf\x4f\x79\x3a\x18\xac\xf1\x1a\x13\xae\xd2\x60\x35\xe4\xbc\xa1\xef\x33\x71\x31\x9c\xb1\xbc\x20\x57\xcd\xe6\xe4\xed\x67\xf1\x3b\x15\xb9\xfd\xba\xa1\x23\x72\xd3\xd0\x1d\x72\xd0\xd0\x5d\xf2\x4d\xfe\x3c\x54\x11\x94\xc8\x91\xfe\xfb\x51\x16\xbe\x6a\xe8\x75\x43\x3e\xe9\xa2\xd3\x86\x7a\xe9\x71\xbf\x06\xbf\x5e\xea\x3a\x1f\xe4\x67\x9f\x25\xc5\x2b\x6f\xae\x11\x79\xa3\xcb\xdf\x43\xd1\x6b\xfd\xeb\x9d\xfe\xfb\x07\x94\xfe\xaa\x7f\x7d\x69\xe8\xfe\x88\x3c\xd2\xbf\x7e\x93\x9f\xff\xa4\x7f\xfc\xdc\xd0\x91\x97\x4a\xbe\x71\xf0\x01\xb7\xcc\xee\xb3\xe4\x5b\x83\xa7\x76\x3c\xe3\xc7\x48\x5e\x9a\x7f\x1a\x8f\x56\x23\x9c\xca\x2a\x3f\x37\xd3\x9f\x9b\xf4\x67\x6f\xcc\x41\x1d\x2f\xfe\x8b\x05\x7c\x1d\xb7\x1f\x6d\x27\x40\x0a\xa8\xa8\x21\xc6\x08\xd3\x4d\x7d\xe2\xe5\xcd\x33\x9f\xec\x26\x2e\x6f\xc4\xfe\x3e\xb8\xfa\xbb\x0f\x5c\x8e\xe1\x6d\x13\x1e\x02\x8d\x9f\xc8\x09\xd8\xe4\x0a\x8d\x87\xe6\x38\x66\xf4\x2f\x25\x62\x64\xb4\xe2\x43\xa1\x94\xc4\xef\xeb\xd5\x6a\x8f\xed\x90\xed\xbd\x11\x0e\x62\x96\x54\x9a\x43\xd8\xdf\x4f\x99\xb7\x3d\xbe\x14\x70\xff\x59\xaa\x1b\x1c\xef\x8d\xc8\x78\x14\x78\xac\xf6\xf6\xb5\xc2\x60\xff\x89\xa9\x65\xfb\xf1\x6b\xed\xa5\x8c\x6e\xdf\x2b\x30\xdc\xd9\x7e\x82\x63\x53\xcc\xc3\x26\x49\xe4\x7d\xf5\xb1\x49\x92\xc7\x8f\x99\x9f\xa2\xf1\x2f\x4e\xb3\xb8\x37\x7a\xfe\x9b\x91\x1c\x04\x40\x60\xef\x0a\xb0\x18\x0c\xd4\x08\x7f\xd6\x47\xce\x88\x52\x61\x37\xdc\xfc\x21\x5d\x0d\x2c\x34\x00\x4a\x92\xa8\x5d\x52\x50\xf3\x8b\xbc\x6b\x52\xf4\x0f\xf9\x07\x82\xc4\x7c\x6b\x92\xe4\x77\x49\x73\xa5\xae\x0c\xed\xca\xba\xab\xd5\xfe\x33\xa5\x6f\xd9\xdf\x57\x31\xd6\x0d\x5a\x78\xd4\x4c\x1f\x29\xb4\xf0\x3e\xbb\x44\xc7\x90\xf1\xe6\x04\xa7\xc8\xc6\xab\x43\x9c\x3e\x6a\x24\xaa\x44\x0c\xe3\xd5\x8a\xbf\x10\x38\x49\x1e\x35\x92\xec\x52\x43\xf7\x58\x3f\x3d\x9b\xff\xd9\xf8\x51\x16\xa7\xeb\x6b\x5e\x87\xb7\x71\xb4\x43\x95\x24\x2e\xae\x50\x19\x20\x61\x00\x41\x4b\x7d\x28\x53\x7e\xa0\x3a\x68\xe5\x29\xb9\xaa\xce\xd8\x27\x02\x8c\x70\xbb\x6c\x85\x85\x6f\x74\xd1\x19\x50\x4d\xcf\xe5\x9e\x8f\x81\x63\x54\x33\x52\xc3\xaf\x14\x1f\x5d\x9a\xf8\x8f\x4e\xf2\xba\xae\x6c\xd5\x08\x6e\xcb\x24\x41\x87\x0d\x55\x0f\x19\xa8\xbc\xc0\xf9\xe5\xa0\x49\x92\xcf\x05\x2a\xc9\xc7\x06\x83\x17\x4b\x29\x37\x92\x94\x5e\x58\x8e\x80\x8e\x01\x85\x85\x1c\x26\x9b\xfb\xc1\x61\x8c\xfc\x40\x09\x9a\xfb\x1f\x0a\xb9\xfb\x54\xab\x3c\x3e\x29\x95\x06\x24\x65\x74\xf5\xcc\x86\xcb\x16\x3f\xe5\xfc\x5c\x37\xa8\xdf\x6f\xbf\x80\x20\x44\x2f\x6c\xfe\x92\xbf\xf0\xf2\x9a\xeb\x96\xde\xb1\x2b\x56\xe0\x29\x4f\x25\x11\x2e\x80\x8b\x1f\xa5\xde\x49\x04\x98\xbf\xd3\x43\x6b\x8d\x19\x33\x7b\x69\x46\x0b\xee\x5d\x06\xae\xce\xa7\x2a\x2f\xab\x5c\xdc\xd2\xfd\x7d\xaf\x14\xa8\xaf\x9f\x4b\xf4\x4b\xe3\xd3\x56\xd8\xd3\x94\x0b\x0a\x2b\x47\xe4\x1c\xfd\xaf\x26\x36\x99\x8a\xa7\x14\x8d\x1a\x36\xaa\xa8\xee\x61\x8e\x3a\x47\x37\x0a\xb4\xf4\xf2\x7e\x91\x3d\x45\x08\xa4\xa2\xfb\xfb\xe9\x58\x3e\xae\x56\xdb\xa6\x64\x2f\xad\xe8\xe8\x05\x45\x15\x1d\x8f\xfe\x0b\x79\xb7\x8b\xc0\x8f\xa3\x92\x0a\xe3\xe9\xfe\x7e\xba\xbd\x37\x7a\x41\x21\xb7\xea\x9e\x79\x7c\x9a\xee\xef\x39\x06\x4f\x53\x47\xed\x71\xca\x31\x6d\x9c\x18\xa8\xaf\xca\x17\xb4\xb2\xf6\xb3\x7d\x4a\x3f\x97\x49\x72\x58\x22\x8e\xd7\x1b\xbf\x13\x5d\x0b\x52\x11\x41\xa3\xd9\x77\xec\x57\xfa\x53\x89\x2a\xf2\xb7\xb0\x94\xdc\xe9\x4b\x2a\x6d\x2f\x88\xbc\x70\xd7\x38\x86\x04\xb1\xf6\x2d\xa3\xdd\x45\x20\x2f\x7d\x62\x0f\xc7\x1b\x75\x2c\xe4\xde\x60\xa2\x10\xb3\x47\xf0\x03\xb8\x98\x03\xa5\x2e\x6f\x11\xc1\x0e\xf1\x48\x85\x38\xe9\xcf\xf6\x53\x75\xa3\x2c\x0b\xa4\x62\x1a\xc8\xab\x8a\xc3\x55\xb5\x5a\x71\xa5\x3f\x35\x1b\x74\xd4\x18\xde\xe0\x5b\x33\xf9\xd6\xac\xe8\xf8\x89\x0d\x08\x54\xd2\xb2\x40\x78\x32\x01\x6b\xab\x42\x3e\x2a\xd4\x62\x53\x9a\x56\xb2\xad\x02\x22\x65\xb2\x1c\x61\x49\x7b\x55\xe4\xaa\xb1\x96\x57\x25\x91\x00\xf6\xca\xdc\x7f\x82\x7e\x6a\x88\xe9\xff\xb3\xfe\xab\x26\xef\x6b\xa5\x8e\x1a\x63\x5b\x51\x02\xde\xe0\x79\x7d\xc1\xe6\x5f\xca\xea\x9b\x5c\x03\xd5\xb4\x9f\x62\xd6\x56\x89\xbd\x33\x48\x45\x5f\x35\x96\x16\x34\xd4\xc4\x75\x93\x1a\x6d\x77\xb8\x6c\xbb\x7b\x46\xd6\xb1\x9d\xc2\xfe\x6c\x3f\xe7\xd3\xed\x34\x54\x32\xdf\x34\xe0\x20\x60\x16\x51\xf9\xd4\x29\xc4\x72\x08\x69\xe2\xe6\x1a\xb5\xc0\x51\xee\x44\x57\x74\x51\xa0\x12\x63\x12\x80\xe4\x69\x93\x24\xe3\xd1\x73\x54\xd2\xb7\xcd\xd6\xde\x68\x04\xd0\xa5\xcc\x4f\x3e\x37\x26\x83\x47\x0b\x45\x6a\x04\x92\xaf\x56\xf9\x0b\x09\x28\x71\x05\xca\xcd\x7a\xeb\xad\x5b\x1b\x1a\x2d\x57\x40\x86\x93\x24\xef\x3b\x9e\xdb\x05\xf8\xaa\x14\xe4\xb5\x1a\xac\x4c\x2c\x34\x43\xbd\xa9\xa4\x81\xf4\x8c\xa3\x79\x11\x1e\x9d\xd2\x74\x3a\x2f\x42\x3f\xee\xde\xc1\xbf\x6f\x11\x3f\x37\x49\xa2\xc8\xd4\xb2\xb5\x3c\x78\xb5\x2a\xe5\xb2\x3c\x60\x5d\xcc\xb2\x94\x76\x59\xca\x7f\x6a\x59\x02\x3c\xdb\xa7\xf4\x6b\x33\x6d\xe1\xd2\xaf\x8d\xc2\x1d\x69\x04\x00\xd3\x8a\x8e\xd2\x36\xea\x3d\x6d\xf0\x63\x49\xb6\x8e\x5e\xa0\x4a\x0e\x10\x00\xe3\x31\x38\x95\x56\x74\x04\x31\xa6\xa2\x2f\x38\x7e\x5c\xe2\xe7\xb2\xf6\x78\x7b\xf4\xa2\x9a\x8e\xb7\x47\xe9\xee\x33\xf9\xb4\xfb\x6c\x94\x8e\x47\xf0\x28\xff\xa4\xe3\x7d\x55\x61\x7f\x7b\x94\xee\xb0\x9d\x17\xd5\x74\x87\xed\xa4\xbb\x3b\x50\x2a\xff\xa4\xe3\xfd\x27\xa3\xff\x3a\x6f\x50\xf5\x27\xf9\xe4\x3a\xe6\x00\xc0\xcf\x2b\xb9\x16\xdf\x85\x84\x6a\x23\x24\xec\xa5\xf1\x8a\x9d\x3a\xc7\xda\x97\x0d\xbe\xcb\xe9\x69\xa3\xa3\x39\xbd\x04\x46\x42\x5d\x4f\xa3\x55\x33\x3c\x6b\xea\xdb\xf7\x39\x7f\xdd\xa8\x33\xff\xbe\xc6\x6a\x05\x4b\xfb\xf6\x35\x2b\xb2\xdb\xf7\x35\xa9\x24\xbc\x83\x8f\x18\x8a\x96\x2a\xc7\x8f\x91\xac\x1d\xb2\x22\x18\xe3\xe7\xb4\x9c\x8e\xd2\x72\xab\x7a\x9c\x9b\x89\x1a\x78\xfd\x91\x09\x07\x33\xde\xc4\x5b\xec\x63\x40\xa1\x0a\x13\x46\xd7\x89\x47\x50\x45\x57\xd3\xda\xa7\xeb\xdc\x95\xf3\xcb\xf7\x88\x34\x41\x55\xe2\x7c\xe1\xc1\xdf\x0f\xdf\x26\xc2\xbf\x4d\x44\xeb\x36\xe1\x1d\xb7\x49\xe5\xdf\x26\x4d\x7c\x9b\x94\xfa\x36\x29\x83\xdb\x84\xfb\xb7\x49\x15\xde\x26\xdc\xde\x26\x42\xdf\x26\xc2\x5e\xa5\x1e\x3f\x75\x14\xeb\x6d\xb7\x9f\x8c\x25\x71\xf6\x2f\x5c\x2c\xc2\xde\x29\xb0\xbb\xaa\xd3\xee\xdd\x60\x85\x6f\xa6\x6d\x16\x05\xec\xb4\x8c\x48\x08\x4c\x74\x74\xb2\x51\x40\x64\x72\xde\x58\x31\x6d\xbe\xa1\x74\xbb\xa5\x84\x3e\xde\x26\xb2\xc1\x67\xff\x4c\x83\x7a\xe9\xee\xa2\x95\xb0\x16\x4a\x9d\x53\x1f\x59\x62\x3d\x38\x03\x72\xbd\x1f\x8f\x2d\x05\x1b\x9e\x8f\xc7\x63\x72\xcd\x7d\xab\xf3\x23\xe5\xe8\xc2\xe9\x51\x13\x19\x12\xf1\x89\x35\x98\xb5\x9a\xf5\xc0\xe9\xcf\xb7\xb3\x00\x71\x1d\x70\x4b\xaf\x5c\x6a\x96\x3a\x30\xb5\xd0\x9e\x81\x81\xd9\x50\xdb\xb9\x2f\x44\x48\x6f\xf2\x30\xac\x55\x6f\x17\x3e\x09\x0c\x38\xb5\x02\x7f\xbc\x9f\x2a\xbf\xba\xe0\xe5\x28\x15\xb2\x09\xdf\xb6\xe7\xb0\xa1\x8c\x1c\x35\x10\x63\xd2\x7a\x46\x82\x0c\x92\x7c\x6c\xa8\x88\x44\x53\x5f\x1b\x7a\xfa\x1d\x79\x94\x67\x7c\x5d\x38\x37\xba\xc9\x44\x59\xdd\x99\x13\xf4\x87\x75\xf5\xa2\xb7\x19\xf9\x39\xc7\xce\xd7\xee\x51\xde\x11\x32\x39\xdc\x01\x95\x24\xdc\x32\xc1\xc0\xd9\x9a\x3c\xff\x6a\xec\xd6\x7c\x39\x5f\xa0\x2f\x39\x1d\x91\x9f\x72\xfa\x5b\x4e\x1f\xe5\x5a\xce\x95\x7b\x41\x2b\x8e\x1a\x1b\x6c\xc2\x6e\xbb\xc1\x6c\xaf\x1a\x3a\x96\xb3\x17\x46\x60\x37\x61\xa9\xe1\x1b\x48\xee\xea\x93\x8c\x1e\x35\xa4\x51\x79\x4f\x05\xfd\xd8\x90\x2c\x08\x92\x3d\xda\x7d\x46\xb2\xc0\xb8\x2e\xeb\x74\xa3\xd7\xde\x25\xad\x34\x61\x4d\xb7\xc0\xb5\x01\x79\xb8\x5a\x97\x82\x36\x13\x27\x4b\xcb\xb4\x20\x4d\x07\x82\xcb\x3c\x99\xc5\x6c\x8a\xb2\x40\xa0\x3f\x0b\x1c\xce\xb3\xc8\xa0\x70\xd6\xca\x96\x13\xc9\x34\x66\x51\x01\x4e\xa3\xf6\xb9\x0a\x29\xdd\xb6\x53\x54\x59\x16\x6a\xda\x8e\x7a\x41\x16\x34\x37\xd6\xa5\x73\x39\xad\x39\x05\x6d\x91\xb2\x08\x81\xe2\x4b\xba\x88\x00\xc5\xa1\xd6\x4b\x3c\x37\xca\xf3\x4b\x4f\x57\xe4\x98\xcf\x0b\xef\x63\xa5\x94\x9a\x3b\x6d\xda\x85\x17\xac\x04\xf5\x55\xc9\x7d\x41\x3b\xfa\x35\x06\xf2\x75\xae\x06\xb6\xa4\x8b\x2e\x55\x0a\xa5\x74\xa9\x2a\xdc\x1a\xb9\xf6\xe4\x16\xc4\xd9\x05\x26\xc1\x17\xf4\x56\xd9\x5d\x2c\xf5\x5b\x6f\x5b\x17\x66\x5b\xf3\x05\x5a\x44\x8e\xe2\x59\x60\x1b\xb8\xbd\xff\x6c\x0c\xd7\x52\xa6\x74\x96\x76\x10\x1e\x28\xe0\x4c\x65\x92\x7c\xea\x16\xe6\x9c\x16\xb9\x47\xf6\xe8\x68\x20\xe7\x50\x6f\x9b\xcc\x72\x94\x91\x73\xbc\x6e\xc1\x40\x2c\x03\x05\x13\x21\xed\xfd\x90\xe9\x0c\x26\x57\xb4\x1c\x5e\xe6\xfc\xfc\x55\x36\xbb\xf0\x57\xe5\x6a\x8a\x82\x57\xb0\x3a\x97\xf2\x34\xe9\x65\x22\x57\x20\xbe\x2b\x48\x83\x71\xea\x24\x7d\x0d\xbd\x02\x41\x5f\x81\x75\x66\x82\x76\x6d\xd2\x87\xe0\x88\x28\xc3\xf8\x4e\xa9\x0e\x32\x25\x80\x3b\xa3\x67\x3e\x61\x54\x92\x82\x64\x78\x52\x28\xf5\xd2\x19\x39\xc3\xeb\x60\x75\x77\x47\xfb\x4f\xc8\xa2\x25\xcc\xb3\x73\xf5\x0c\x86\xb4\xbf\x84\xb6\x66\xc2\x93\x86\xaa\xeb\x1d\xdd\x32\x94\x29\x27\xa5\xd5\x6a\xf0\xb2\x07\xea\x82\x9e\x55\x46\x0c\xf0\xd6\xa0\x57\x1b\x16\xa3\x07\xad\xf4\xac\x57\x3b\xe9\x9d\x35\xa2\xc7\xcb\x9e\x01\xcc\xde\xaf\x6f\x7b\xd7\x59\xdd\xab\x2f\xd9\x2c\x5f\xe4\x6c\x3e\xfc\xdf\xfc\x7f\xf3\x97\xf3\x79\x2f\xeb\x3d\x3f\xd4\x59\xc1\x6d\x6d\x3a\x1c\x0e\x5f\xb8\xbe\x7a\x17\xf9\xf9\x05\xab\x7a\x39\xef\x89\x0b\xd6\x13\x15\x63\x3d\x51\xf6\x2e\xab\xf2\x2a\x9f\xb3\x5e\xd6\x2b\xca\x4c\xe2\xd2\x5e\xce\xe7\xf9\x2c\x13\x65\xd5\x2b\xab\xde\x65\x91\xcd\xd8\x45\x59\xcc\x59\x25\x6b\x6b\x75\xf0\x70\xb0\x75\xce\xe4\xfa\xae\xf7\xfa\x92\x04\x52\x61\x6a\xb6\x31\x69\xe8\xdf\x32\xd4\x90\xcc\x1e\x65\x7d\x6b\x2e\xbc\x5b\x73\x27\x2d\x68\x43\x1e\xb2\xd2\xa4\xce\xd1\x82\x5c\x34\x68\x01\x96\x1e\x38\xb4\x5a\x1b\xcb\x76\x60\x5f\xaf\x25\x86\xb8\xbd\x64\xe4\x86\x2e\x42\x63\x1b\x00\x99\x27\xbb\x89\xd7\x9b\x04\x9b\x2e\xac\x7a\xbd\x51\xd5\x66\x0d\x24\x6f\xba\xf1\xf1\x4d\xb7\x02\xcc\xa8\xb4\x56\xab\xfe\x3b\x05\x90\x37\x18\xc2\xc6\x3c\x78\xe6\xcb\xd6\xcc\xd7\xf7\x00\xdd\xfa\xa8\xa1\x75\x81\x8e\x1a\x63\x9d\x7e\x80\xef\x04\x3d\x70\x1a\x6d\xcd\x02\x38\x87\xa3\xc2\x1a\xf5\x3b\xb2\xd6\x1a\x78\x34\xfe\x5d\x6d\x34\xdc\xd3\xdb\xcc\x17\x67\xe6\x86\x66\x7b\x2e\xd9\xa4\xed\xe7\x2c\x49\xd0\x69\x43\x19\xf6\x8c\xbe\xd9\xf3\xaf\xf6\xdd\x57\x49\x77\xbc\x6c\xa8\x6f\x0f\x99\x15\x60\xcf\xfd\xe2\x83\x84\xa2\x0f\x4d\x90\x25\x56\x92\xe5\x77\xbe\xe8\xfb\xa8\x99\xe0\xa3\x86\xce\xd4\x34\x9d\x25\x79\xbb\x5e\x92\xf4\xdf\x4a\x5a\xab\xab\xfa\xac\x70\x3c\xc9\x6d\xe3\x27\x13\x25\x8c\x7c\x6c\xbc\x80\x09\x71\x84\x97\x20\x5d\x01\xb7\xfe\x2e\x48\xc8\x95\x67\x18\x93\xb3\x26\xf0\xf3\x23\xc2\x33\xfc\x84\x5e\x8f\x1a\xca\xcc\x1d\x27\x24\x29\xe1\xae\x68\x30\x38\x70\xc4\x85\x42\xfe\xa3\xdd\x67\xc9\x51\x13\x18\x36\x03\xb1\xf1\xf7\x0c\x49\xf2\x04\x42\x3c\x8d\x35\xf7\x33\x86\x99\x77\x49\xec\xfd\xb0\x06\x23\x52\xd9\x5a\xbe\x4a\x41\x11\x38\x55\x2b\xec\x0d\xed\x54\x20\x4c\xca\x17\x4a\xe9\x5f\x62\x92\xeb\xc7\x3c\x88\x19\xb3\xee\x1e\x8a\xca\xa2\x62\xcd\x0c\xac\xd4\x9d\xbb\xd0\x4c\x76\xe2\x2c\x3c\xb6\xd6\xce\xc2\x23\xa9\x80\xc0\xf7\x49\xac\xa3\x26\x88\x08\xe6\x88\xfc\x30\x9c\x92\x35\x09\x09\x4a\xfd\x9f\x7e\x88\x97\xb8\xd1\xc0\x3f\x22\x68\x1a\x93\xf1\x73\x7f\xbf\xba\xbb\x9a\x6e\xee\x28\x8d\xa7\x13\x77\x86\xf1\x3a\x4a\x64\x81\x04\xfd\x47\x26\x41\xdc\x29\x31\x82\x10\x4f\xa3\xdd\xa7\xc4\x5f\xe0\x68\xc5\xba\x9c\x3d\x22\x32\xd6\xcf\x3e\x84\x60\xc6\xc6\xe8\xc6\x6d\xa0\x84\xec\x10\x27\x1d\xb9\xa3\x14\xc4\x33\xdb\xd3\xd1\x72\x9c\x39\x66\xe1\x0b\x09\xa2\x28\xff\xa6\x83\x17\x68\x43\xec\x26\x3c\x15\x3e\x52\x9a\x7b\x8d\x81\xaa\x52\x37\xf0\x5b\x89\xf6\xf7\xc9\x65\x6c\x72\x12\x8f\xe5\x52\xe3\xb4\x79\x79\xb7\x2c\x10\x0e\x67\xf4\x6b\x63\xe5\xe0\xf7\x89\x27\x0c\x53\xea\x73\xb2\xe0\x72\xdb\xcd\xc6\xfa\x2e\x10\x71\xfc\xb3\x1f\x63\x87\x41\x78\x69\x59\xba\xd8\x80\xef\x29\x64\xdf\xff\x37\x28\x74\xc8\x26\x29\xa8\xe2\xc7\x4b\xba\x28\x10\xc7\x66\xf8\xa1\xa2\x8d\x96\xa4\x7a\xde\x25\x5d\x9d\xea\xba\x41\x61\x57\xc5\x4d\x7a\x37\x3a\x4a\xa1\xe5\x76\x2b\x0e\xe4\xc3\x86\xaa\xc7\x63\xec\x46\xe3\xe4\xa7\x16\x13\x78\x22\xd5\x91\x57\xd3\x13\x61\x39\xa4\xe1\xca\x64\x5d\x23\x99\x42\x47\x0d\x3d\xf4\xcc\x3e\x24\x7e\xf0\xfc\x54\xa6\x86\xcf\xf5\x91\x03\xe2\x1b\xb0\x03\x28\x8e\x03\x4c\x94\x96\x94\xa7\x51\xa1\x41\x79\x36\xcb\xb8\x96\xf3\xec\x6c\xb7\xae\xa7\x25\xa7\xbf\x9b\x4c\x83\x97\x5c\x29\xe6\x2e\x38\x04\xa2\x85\x10\x15\x60\x14\x9b\x97\x1c\x02\x2c\x0d\x72\xde\x6b\xb0\xe2\x3a\xef\x6a\x59\x92\x36\xc3\xb0\x0a\x61\x7c\xee\x17\x1e\xf0\xf9\x5a\x29\xb0\x35\x07\x3d\xa3\xa8\x90\xff\x9a\x28\xc8\x65\x92\x14\xd6\x9a\x35\x67\xd7\xab\xd5\x75\xce\xe7\xe5\xb5\x72\x42\x37\xad\xc9\x4a\xfe\x6f\x35\xde\x99\x0a\xe6\x37\x1b\x56\x19\x3f\x67\xaf\xca\x86\x0b\x7c\x57\xd0\xd9\x30\xe3\xb3\x8b\xb2\x02\x52\x50\x07\xe0\xd5\x45\x1f\x17\x8b\x9a\x09\xb2\xa0\x33\xe5\x7c\x0a\x55\x66\xe6\x97\x7a\x0b\x22\x2c\x67\xc8\x4f\x16\xf6\x51\x53\x57\x1f\x65\x27\xdc\x77\x9e\x52\xd9\xaa\x47\xe4\x92\x3e\x1e\x93\x0b\xf9\xdf\x92\x8e\xc8\x2d\x1d\x91\x73\xda\x90\x2b\x55\x59\x58\x57\x0e\x73\x23\x9f\x4d\xce\x55\x86\xea\x91\x8a\x7b\xb1\xd3\xa7\xf4\xdc\xf6\xb6\x5a\xa1\x4b\x3a\xdf\xaa\x31\x91\xb5\x16\xaa\xd6\xac\xa3\xd6\x05\x9d\x6f\xcd\x30\x91\xfc\xb2\x2b\x4f\x12\x34\xdf\xd2\xbf\xc1\x36\x53\x9b\x6a\x3b\x0f\xa1\x33\x7a\xee\x87\x01\x9f\xe0\x2b\x7a\x4e\xce\xe9\xd9\xc4\xf3\x38\x39\x07\x77\x13\x35\x4d\x90\x75\x5c\x51\x4a\x8b\x24\xd9\xda\x5a\x52\x15\xaa\xe3\x92\xce\x31\x91\xa5\x0b\x59\x7a\x4b\x55\xdc\x93\x0b\x59\xea\x77\x24\x41\xf9\xd0\x5c\x1c\x4a\x46\x75\x45\xd1\x39\xbd\xc2\x9e\x9b\xc4\xfa\x9c\x9e\xad\x0b\xfa\x58\x52\x35\x97\xab\x15\xfc\xbd\xd0\x81\xee\x14\xd4\x5d\x02\x98\x5d\x68\x47\x05\xb5\x0b\xeb\x42\x2e\xa1\xae\x30\x82\x0a\xa3\xa0\xc2\xe4\x96\xd3\xbb\x6c\x26\xf2\x2b\x13\x4d\xfc\x35\x13\x92\xf3\xd4\x99\x1d\x61\xef\xd9\x5c\xbe\x4b\x1b\x62\x21\xf8\xb3\x04\xaa\xb4\x58\x93\xdf\x05\xed\x8f\xc9\x9b\x86\x96\x92\x7c\x93\xd0\x71\x51\x58\x47\xd0\x8f\xbe\x1d\xe8\x9b\x58\xc4\xbb\xb3\x33\x92\x97\x42\x81\xde\x34\xe4\x23\x96\x6d\xbc\x69\xbc\x63\xbd\x0e\xef\x98\x37\x0d\x9e\xf8\xdd\xa8\xa0\x94\x8c\x14\x2e\x7f\xcc\x9b\x46\xd3\x6b\xd7\xb2\x25\x17\x60\x2c\x5f\xa0\xf1\x93\xe4\x1a\x22\x31\xbf\xf1\x3d\x80\x06\x03\x4c\xc6\xdb\xcf\x92\x6b\xf5\xd9\x8d\xfc\x2c\x20\x3c\x0d\x87\xa3\xde\x1f\xd0\x1b\x88\x7d\xa1\x4b\x0f\x36\xb0\x4c\x07\xd3\x03\x15\xf3\x22\x3d\x08\xd0\x0a\x5e\x1b\xa3\xfc\xf1\x68\x07\x3a\xd5\x6a\xcc\x59\x83\xde\x34\x72\x01\x02\xa1\x45\x60\x41\xf5\x64\x53\x25\xb2\x90\xe5\x1e\xa9\x2e\xd7\x29\x90\x73\x6e\xef\xa6\xd1\x47\xe3\xd1\xf6\x5e\x54\xe7\x59\x57\x9d\xef\xb5\xbd\x9b\x7e\xa7\xc2\xb3\xb4\x6e\x50\x43\x6a\xfa\xa6\x21\x05\x26\x4d\x83\x6a\xbc\x6e\xef\xf3\x7f\x06\x58\xf2\x05\x3a\xa0\xb7\x9c\xdc\x00\x0a\x27\xd7\xf4\x60\xe8\x01\x33\x29\xe8\xc1\x30\x04\x67\x72\xd3\xa7\xf4\x3a\x91\x80\x72\x1d\xe2\x61\xe7\x33\xad\xfc\xf0\x8c\x25\x60\x1f\xf5\xc5\x6a\xd5\xe7\x10\x62\x86\x2a\xe3\x2c\x59\xb2\x03\x91\x6e\x0d\xb6\x01\x1a\x5d\x59\x02\x79\x11\x8d\xa1\x21\xdf\x89\x31\x1d\x68\x93\xfe\x5a\xde\x28\x62\x6a\x4d\xfc\x6b\xc4\x71\xda\xef\x2b\xa7\xeb\xac\x62\x66\x54\x9f\xca\x3a\x57\xf8\xbf\xdf\x97\x00\xbe\xb1\x82\x72\xd3\x5f\xa3\x68\x56\xc3\xb9\x7e\xd0\x07\x9f\x5c\x63\x9b\x7d\xaa\x48\x92\x0b\x8e\xae\xe5\xd0\x6f\x68\x31\x04\xfc\x41\x9c\xb8\xe9\x80\x16\x43\xc6\xe7\xf2\xf5\x01\xbd\xb1\x89\x0d\xfc\x2b\xf1\x7a\x8a\xae\xa3\x6b\x90\xde\x90\xeb\xe0\x12\x54\x26\xa5\xcb\x9c\xa3\x03\x72\xad\x6c\x52\x0d\x26\xc6\x29\x3a\xa0\xe8\x86\x46\x63\x5e\xad\xe6\xee\x6e\xbc\x79\xc8\xdd\x88\x0e\xe8\x41\x74\x3d\x92\x9a\x5e\xfb\x99\x3a\x74\x9f\xa4\x71\xe3\x31\x53\xae\x31\x29\xa8\x9d\x37\x4c\x7a\xda\xa4\x5e\x35\xc6\xe7\xb2\x52\xff\x60\xc8\x6e\x04\xe3\xf3\x24\x69\x5e\x14\x49\x82\x6a\x5a\x90\x82\x36\xa4\xa1\xb5\xec\x6f\xce\xd1\x35\x69\x30\x59\xa8\xa7\x02\x93\x3a\x49\x16\x49\x82\x24\x73\x7a\xe0\xdd\xd1\xab\xd5\x81\x77\x43\xcb\xab\x0f\x40\xc6\x15\xab\x7b\x18\x5e\x94\xf0\x28\x5f\xd9\xfb\x1a\x1c\x05\xcd\x07\xde\xbd\x0d\xe5\xaa\xbe\xdc\x34\x74\x43\x6f\x74\xac\x13\x00\x7d\x84\xc1\x35\x03\x76\x09\xa9\x1e\x89\x69\x1f\x93\x03\xed\x7f\xf7\xb2\x28\xa0\x76\x8d\x30\x69\x5e\x14\x53\x74\x30\xcc\xe6\x73\xd5\xc0\x8d\xac\xa6\x96\x00\xa9\x11\x10\xdb\x21\x4e\xd1\x8d\x6c\xfe\xa0\xe3\x1d\x09\xda\x80\x68\xcc\x37\xf4\xf8\x04\xee\xd9\x03\x7a\x3d\x91\xbb\xe7\x0e\xc9\x04\xcb\x6b\xef\xc0\xbb\xc8\x6f\x54\x0c\x28\x6b\x9a\x7e\x40\x0a\xb6\x10\xe9\xc1\xb0\x9e\x55\x65\x51\xbc\x63\x0b\x41\x44\x79\x69\x0b\x8e\xca\xcb\xb5\x0a\x03\xd6\x2d\xed\x82\x35\x93\x08\x40\xc7\xdf\x20\xd7\x74\x34\xb9\x7e\x7e\x63\x9c\xb9\xae\xb7\xb6\xb0\x84\xf9\xe3\xeb\x13\x6c\x02\xab\x78\x7d\xd1\x83\xa1\xec\x5f\xae\x45\xf0\xee\xa8\xbc\xa4\x07\x43\x51\x5e\xae\xe5\x85\xd9\x5f\x72\x72\xcb\xe9\xd2\xc5\x30\x30\xd7\x04\x89\xaf\xb8\x6b\x97\xb2\xd4\x5e\x6f\xdf\x5a\xd7\xdb\xce\x93\xe4\x5b\x92\xe4\x0d\xba\x26\x31\x3e\x86\x0b\xee\x1b\xbe\xbb\xd1\x60\x0c\x44\xdf\xa1\x6c\x21\x0c\xe3\x74\xa8\xda\x3e\xa2\xfe\x0d\x69\xd4\x7b\x6f\x42\x5f\xd9\x1b\x7a\x14\x29\xcb\x6f\xe8\xd1\xba\x6b\x41\x0f\xa7\x87\xe8\x06\xa7\x87\x76\x86\x37\xeb\xff\xb1\x0b\xc0\xd8\x81\xbf\x29\x95\x9a\x3a\x57\x74\x8f\xb7\xda\x72\xfa\x7f\x34\xd8\x9a\x84\x33\xf2\xa5\xa1\xc2\x99\x96\xc2\x66\x78\xab\x2f\xc2\x3e\x49\xf0\x4b\x77\xa6\xf5\x5e\x80\x26\x3b\x2d\x2a\x93\x04\x69\x5b\xf4\xc8\xb8\x48\x4c\x25\x77\xf4\x53\x33\xfd\xad\xd9\xda\x4a\x91\xb1\x43\x66\x38\x85\xc7\x4e\x19\x6b\x91\x24\x37\x85\x1f\x59\x93\x54\x46\xbd\xfe\xde\xac\xa0\xb2\x83\x67\xf4\x75\x63\x8d\xe1\xad\xf8\xc0\x19\x28\xaf\x56\xbf\x9b\xc8\xe4\x8e\xeb\xbf\x88\x25\x88\x16\x06\x59\x08\x83\x2a\xee\xfb\xde\x93\x44\xb9\x59\xb5\xa8\x02\x25\xb6\xdb\x1b\x6f\x27\x0c\xaf\x56\x7f\x34\xab\x15\xfa\x03\xdc\x41\x7e\x2a\xd1\xfe\xd3\x20\x9e\x8a\x1e\x19\x18\x32\xc0\x68\x24\x4e\x68\x6f\xb7\x73\x1b\x91\x63\xcc\x17\x68\x5f\x8e\xe1\x4b\x63\x86\xb7\xff\xf4\xf9\x97\x66\xba\xff\x34\xfd\xd2\x98\xc9\x2a\x63\xff\xdf\x4a\xc4\xc8\x6d\xe1\x2b\xd9\x6f\x75\x13\x1a\xf6\x7e\x6d\xb4\xb8\xa1\x3f\x9e\xa8\xc6\x7e\x05\x75\xa2\x71\x1a\xb8\x47\xce\xb1\x33\xc6\x26\xc4\xed\xb7\x06\xd0\x8c\x66\x31\x99\x67\xbc\xe0\x31\xa5\x7e\x16\x55\x79\xe4\xb5\x88\xc4\x4a\x53\xe4\x8a\x05\xf1\x1b\x7e\x2c\xc2\x54\x83\xf6\x08\xc7\xa4\x54\x7f\xcd\x41\x0b\x32\xbc\xc5\xfe\x8c\xf6\x9c\x49\x50\x5a\x73\x2d\x55\xd0\x00\xcf\x5a\xf0\xce\xa8\xb5\x5c\xfe\xd6\x50\x41\x00\x88\xfa\x23\xb7\xb6\xe7\x85\x71\x6e\x98\x41\x6e\x79\xaa\xdc\x8d\xe8\xdf\x32\xc4\x89\xf0\x8f\x80\x33\x3d\x30\xd6\xf5\xfe\xbb\x24\x51\x06\x1c\xb6\xe1\xab\xc2\x5a\x6d\x3a\x1b\x71\xe8\x0d\x5c\xa6\xec\x21\x36\x52\xa7\xb6\x0d\x83\xfe\x52\xaf\xe5\x79\x81\xb8\xfa\xd4\x19\x89\xb9\xb7\x46\xdb\x1e\xe8\x51\xba\x8e\x24\xbf\xdf\x41\x69\xb5\xea\x8e\x66\xfa\x40\x5d\x49\x85\x31\x2c\x24\x27\x8c\x2e\x1b\xf8\xf3\xb7\x0c\x09\xc2\x36\x2c\x24\x97\x0b\xc9\xdb\x0b\xe9\x4c\x0d\x3d\xfb\x07\xb7\xb6\x67\x45\x98\xda\x91\x79\xca\x4a\x67\x69\x50\x0d\xe7\xac\x60\x82\x21\x81\x09\xd8\xaa\xb3\x24\xf9\xd8\x40\x9e\x4b\x6d\xab\xbe\x5a\xc1\xc3\x0d\x98\x4d\x46\x76\x94\x60\xe9\xf5\xb6\x79\xbe\x37\x1a\x4d\xc1\xca\xe5\x63\x83\xd3\xcf\x12\x29\xa4\x1f\x94\x0d\x57\x92\xa8\x43\x20\xda\x36\x83\x49\x22\x9e\x43\x0c\xce\xb6\xc9\x20\x80\x89\xef\xd8\x77\x1d\xd8\xe4\xc4\x6e\x7a\xc6\xd4\xdf\x4d\x45\xa3\xee\x91\xa2\xea\xff\xda\x20\x65\x01\x4c\x98\xf6\x47\x8b\xa1\x54\x38\xe0\xbc\x6d\xa2\xa8\x92\xce\x9f\xbd\x9d\xa4\x95\x07\xc1\x08\xcb\x38\x7f\x26\x88\x09\x03\x4d\x4b\x1f\x62\x7d\x5c\x96\x56\x90\xf9\x35\xa3\xfd\x91\x75\x21\xad\x9e\xbb\xe0\x59\xf2\xcd\x38\x08\x92\xb5\x93\xfe\x91\xc9\xd9\x7d\xca\x50\xdb\xb6\xef\x2d\xa4\xae\xd8\xd5\x79\x3b\x92\x44\x1b\x09\x95\x43\x15\x22\xde\x93\x9f\x3f\x24\xe0\xba\xb2\x26\x09\x63\xa9\xf9\x29\x30\xae\xcb\x56\x00\xa8\x0f\x39\x0a\x12\xb7\x44\xee\xcd\x91\xe5\x4e\x2b\x3e\x80\xf6\x67\x2b\x75\x20\x80\xe1\xa9\xce\xd7\x49\x66\x25\xfa\x7b\x49\xca\xe1\xa9\x5e\x32\x90\xf6\xe0\xb8\x20\xc8\xe3\x65\x9c\xa6\x4d\x86\x9e\x30\x11\x87\x7f\x6f\xda\x6c\x12\x9d\xe2\xf7\x24\xa9\x5e\x50\x3e\xfd\xc9\x64\x49\x4d\x51\x3b\x4d\x80\x83\x25\x41\x6d\x06\x60\x3c\xb5\x71\x52\x54\x08\xc3\x49\xc7\x87\xc1\x80\x21\x87\x48\xd5\xbd\x1b\x2f\x28\x27\x9d\x59\x3d\x00\x64\xcc\x7c\x6c\x0a\xf2\x49\x14\x72\xdf\xd7\x70\x94\xad\xd5\x48\x12\x54\xc6\xf9\xd2\x4b\x97\x4f\x16\xeb\xb8\xf2\xfe\x84\xfb\x95\x2f\xcb\x37\x77\x87\x9d\xfc\x1a\x20\x57\x8b\xa8\xe0\xd9\x25\x92\x65\xed\xac\xfa\x7e\x6e\x59\xbd\x06\x2a\xa2\x9e\xaf\xd5\x89\x02\x7b\x89\x76\x81\xaf\xd7\xc1\x84\xb5\x33\xb0\x2f\x4b\x24\xc8\xc2\x9d\x3c\x52\xe5\x20\x08\x20\x25\xfd\x4b\xae\xb4\x26\x82\x54\x84\x91\x52\x16\x86\xe9\x9c\x48\xdb\x84\xa9\xf4\x7d\xd1\xbb\x2e\x04\xb3\xaa\xc6\x4c\x8e\x52\x5a\x0e\x1f\x3d\x52\x6f\x75\x96\x08\x30\x57\x89\xa3\x30\x9a\x19\xb5\x6c\x8e\x6e\x4b\x79\x79\x68\xd1\x77\x7f\x34\x81\x43\xa8\x63\x9a\xc8\x55\xee\x6a\x47\x8e\x4f\x9d\x49\xcf\x5c\x4f\x97\x4c\xf5\x5f\x25\x26\xcc\x24\x02\xd1\x12\xf3\xaa\xeb\xf2\x53\x38\xad\xd3\x6e\x2b\x49\x96\x72\x31\x2b\xd2\x80\x3d\xba\x1e\x7a\x45\x6f\xf3\x20\x95\x13\x1c\xe3\x20\xbe\xe4\x9b\xfc\x8c\x55\x54\x90\x6b\xf5\x39\x98\xfd\x0a\xfa\x2e\x73\xfb\xd1\x1f\x41\xa0\x16\x13\x6b\x56\xae\xd8\x88\xbc\xb4\x15\xd4\x66\xd9\x88\xf6\x56\x67\x37\xd3\x59\x8a\x59\x2a\x57\x5a\x82\xbd\x17\x42\xf3\xdf\x0c\x5b\xee\xbe\x80\x6d\x7d\xac\x42\xf9\x9e\xca\x79\x37\x35\xbe\xb3\x8f\x5a\x89\x24\xef\xc2\xd3\x99\x28\xab\x89\xa0\x02\x41\x30\xd9\x8a\xd5\x4d\x21\x20\xf1\x15\x98\xec\x04\x1e\xe5\x23\xbf\xb9\x44\xb9\x95\x6a\xa6\x8d\xb8\xb6\xc7\x7e\x3b\x78\x8d\xc9\xbd\x6d\xb8\xef\xb6\xa3\xef\xf0\x7a\x8d\x4a\x4c\xc6\x00\x26\x66\x0e\x3a\xa2\xb0\xa9\x38\xb1\x6e\x23\xb6\x88\xa8\x53\x4b\x4b\x95\x1a\x38\x3b\xa7\xd1\xaa\x74\xc1\x8d\xc5\xc5\x47\x05\x62\x78\x3a\x4e\x47\x41\xbc\x45\xe6\x47\xfb\xcd\x17\x08\xd4\xa4\xf6\x04\x51\x4a\x0b\xdb\xc0\x78\x3c\xd1\x51\x0d\x16\xae\x6c\xd7\xa0\xa6\x6d\x98\x12\xa3\x7f\x2e\x51\x29\x01\x34\xb7\x64\xb7\xa0\xef\x3d\x50\x72\x7e\x0a\xce\x14\x47\xd0\xd7\xf7\xd7\x90\x55\x3e\xdc\x5f\x65\x37\x15\xf4\xb3\x57\x45\x8e\x43\x21\x39\x86\x21\xb9\xb3\x0b\xe1\x17\x12\xf2\xa3\x27\xa4\x24\x83\x81\x73\x89\xd5\x80\x6d\x53\x47\x58\x6c\x19\xd3\x1e\xe4\xbd\x42\xc7\x15\x89\x60\x1f\xdc\x8a\xcb\xf4\xcf\x25\xaa\x48\x89\xbd\x80\xb5\xdf\x6d\xf1\xf5\x8f\xb5\x08\x57\xb0\x22\x58\xaa\x30\xa0\x8f\x35\xba\xb1\x86\xaa\x55\x2b\xbb\xc7\xb6\xb2\x85\x8f\x53\x92\xbb\x28\x42\x1d\x57\xd9\xb4\x1c\xfa\xe1\x0d\x48\x93\x2b\x5b\xf5\x85\x42\x2e\xca\x2a\x15\x93\x76\x6e\x2e\xf3\x99\x84\xa9\x12\x4b\xf2\x8a\x78\x97\xb9\xa5\xce\xa0\x4b\x47\xdf\x68\x33\x4c\x10\xb0\x66\xf4\x86\xa3\x8d\xc4\x8f\xaf\x87\x22\xd7\x19\x15\xa4\xa4\x07\x92\xf0\xc3\xa4\xd4\x16\xda\x1f\xe1\x32\x02\xf7\x29\x75\xfd\xe8\x98\x98\x13\x3e\xc1\xdc\x4f\x40\xb2\xe3\x33\x93\xab\xf1\x68\x7b\x37\x08\x59\x08\x68\xf2\xa5\xd9\x29\xae\x89\x45\x8b\x20\x23\x38\xb2\x41\x6f\xdf\xda\xc4\x67\x8a\x07\x38\xb2\xfb\xd6\x0d\x0b\xf9\xe6\x60\x4e\x6a\xe9\x69\x39\x34\xf1\x8d\xc8\x15\x07\xc8\x98\x36\x3a\x69\xbe\x0d\xba\x00\x2f\xda\xd1\xdd\xc7\x4f\x30\x79\xa3\x13\xdf\x6e\x24\x68\x3b\x72\xf9\x6d\x22\x65\x85\x49\x9b\xa5\xd7\xa5\x09\xee\x0c\x4c\x84\x51\xd0\x78\x54\x8d\xbf\x0c\xbc\x23\x63\x8c\xa5\x09\xa3\x24\x2f\xdf\xa1\x82\x49\x0b\xa0\xad\x01\x9a\xd9\xf2\xa3\x00\x12\x52\x7f\x2f\xcd\x2d\x67\x10\xcf\x77\x8f\xec\x87\x1f\x3b\xb2\x36\xdb\x9d\xee\x34\x1e\x6a\x34\x82\x67\x51\x28\xe3\xee\xcf\x1c\x1c\xb4\x66\x30\x92\xd7\x73\xd5\xa2\xf8\x5b\xd3\x68\x25\x98\x27\x39\x2d\x75\x14\x10\xa5\xb5\x8f\x9a\x00\xed\x39\xf0\x0d\x45\xcc\x37\x44\x05\x34\xb7\x86\xea\x38\x5f\x80\xfe\x5e\x31\x22\x23\x15\x95\xed\x75\x85\x0a\x92\xe3\xe9\x28\x1d\xad\xba\xc3\x92\x0c\x4f\x67\x59\x31\x6b\x8a\x4c\x30\x95\x30\x77\xfe\x53\x2e\xea\xe9\x86\x72\x68\x2d\xf5\x99\x79\xb8\xda\x1a\xbb\x4a\x40\x26\x9a\x1f\x49\xd2\xf7\x78\xc5\x3b\x1f\x29\x59\xbb\x49\x2b\x25\x31\x88\xb1\xb0\x90\x0d\xa9\xa7\x75\x20\x1e\x81\x0d\xaf\x5c\x4c\x8c\x19\x7d\x11\x04\xd1\xf5\x18\xda\x19\xbe\x6b\x68\xa1\xf7\xca\x48\x60\x6a\x3a\x0b\x12\xac\x99\xf6\x6a\x25\x87\xa9\x87\x7a\xf1\x95\xd3\x3f\x30\x2c\xf5\xb0\x3c\xab\x59\x75\xa5\xe6\x9e\xe4\x18\xdf\x8d\x41\x09\xa3\x42\xdc\xa1\xba\x15\x24\x06\x8c\xb2\x0b\x52\x63\xb9\x53\x51\x08\x02\x0e\xf3\x89\x13\x78\x3a\x06\xac\xa6\x85\x67\x0c\x9e\x24\x75\x57\x03\x71\x21\x34\x90\xdb\x75\x92\x40\x1a\x7b\x00\xc0\x77\x71\x21\xb5\xf2\x97\x9a\xd6\xca\x39\x43\x6d\x45\x43\xc7\x23\x37\xc7\x42\x91\x45\x2e\x97\x80\xc4\x80\x66\x65\xdd\x82\x37\xd8\x58\x47\xd2\xc2\xc9\xbd\x1a\x5a\x44\xb9\x1a\x1b\xf0\x53\xbb\x6b\x3c\xfb\x0c\x9f\xbd\x2b\xa8\x67\xbf\x76\x67\xf7\xde\x5a\x5e\xca\x06\xd5\x47\x5e\xc4\xcb\x82\x36\x6b\x7d\x72\xcb\xf0\xb0\x6e\xb8\x35\x6c\x98\x26\xc3\xac\x2b\xbf\xbf\xf0\xd0\x62\xd7\x94\x61\xb4\x2a\x5a\x49\x92\x31\x47\x25\xc9\x9d\x07\x82\x0f\x21\xb8\xc5\x78\x6d\x46\x7f\x16\xe5\xe6\x40\xd7\x99\xa1\x44\xa3\x20\x9f\xf5\xcc\x88\xaa\xa6\x2a\xe5\x9a\xec\x32\xd2\x56\x73\x0b\x1a\xfc\xd5\xd1\x92\xff\xc1\xd3\xef\x63\xde\xef\x20\xdc\x7f\x85\xff\x30\x6c\x23\xb0\x83\x53\xc4\x68\x7f\x44\x80\x15\xc4\x29\xc4\x96\x33\xcb\x7d\xa5\xc8\x9e\x12\x1b\xee\x0a\x78\xa5\x88\xb7\x62\x6e\x56\x76\x5b\xad\x24\xe1\x9e\xc4\x71\x80\x77\x6f\x0a\x1d\x62\x45\x1b\xa2\x58\x79\xdd\xb7\xc2\x65\x64\x81\x00\x46\x72\xc4\x8c\xc0\xe3\x37\x76\x4b\xb9\x7a\xb4\x09\xfc\x20\xc6\x11\xdc\x7e\xf0\x68\x50\x16\xd4\xb1\xdc\xa3\x6a\x48\x2e\x26\x3c\xf9\xab\xab\x66\x24\x4b\x73\x3e\x67\x37\x74\x44\x74\x3b\x0b\xef\x55\x10\xe6\x5b\xa8\xb2\x20\x88\x38\x94\x84\x2c\x34\x14\xf9\x8c\x78\x50\xc7\x0b\x0e\xae\xca\xe5\x30\x2b\xf5\xec\x48\x36\x3d\x18\x3f\xdb\x9f\xfc\x1d\x24\xeb\x95\x05\xb1\x5c\xde\xad\x4a\xec\x16\x09\xed\xb7\x24\x29\xb2\x34\x04\x1d\x27\x40\x3d\xf4\x36\xc4\x50\x39\xec\xda\xdf\x27\x57\x17\x98\x31\x67\x1e\x01\x5c\xd7\x65\x55\x8a\x52\x7b\x7b\xf4\xd9\x30\xaf\x55\x78\x28\x23\xf1\xf6\xbe\xfe\x18\x89\x6a\x9d\x31\x4e\x48\x5d\xf1\x29\x42\x9c\xca\x71\x41\x1c\x64\xc9\xca\x7e\x63\xb7\x84\x69\x8f\xa0\x60\x7b\x59\xc8\xbc\x2b\x20\x60\x26\xf1\x82\x83\x10\x16\x04\x36\x77\x6b\xc1\xc2\xd0\xf0\x38\x45\x3c\x86\x06\x1e\x6c\x18\x6f\x6d\x06\x6f\x87\x92\xe7\xb1\x75\x31\x26\xdd\x41\x65\xba\xf3\xb2\xb6\x82\xe9\xb4\xf2\xb2\xf2\x28\x2f\x2b\xff\x4e\x5e\x56\xfe\x9d\xbc\xac\xfc\x9e\xbc\xac\x22\xce\xcb\xca\x3b\xf3\xb2\x8a\xee\xbc\xac\x31\x29\x1e\xe6\x65\x15\x1b\xf3\xb2\x0a\x3f\x2f\xab\x97\xdd\xd2\x86\x0a\x24\x5c\x9f\x68\xa6\xfe\x12\x0e\x87\x1a\x12\x18\xf9\x81\xe7\x5e\x59\x40\x96\x98\xde\x84\x6a\xdd\x56\x2c\x24\xeb\x54\xbc\x32\x0c\x80\x0e\xbe\x56\x5e\x46\x65\x93\x71\xcb\xaf\xd8\xd0\x3d\x63\xeb\x19\xc6\x64\xed\x71\x66\x90\xe6\xa7\xc2\x84\x14\x92\x57\x5e\x49\x72\x1b\x3c\xb7\x61\x69\x43\x9f\x91\x72\x45\x9f\xfa\x22\xdf\xca\x16\x07\xe1\xf6\x4b\xd3\x22\x62\xf2\x74\x8c\xb7\x09\x27\x82\x3c\x5b\x95\xd1\x99\x28\x25\x50\x0b\xfb\x14\xc1\x52\x6e\x92\x5f\xce\xa2\xe6\x76\xa0\x39\xd9\x18\x7c\x3b\x83\x6f\xbd\x66\x67\xf7\x35\x56\x47\x8d\xed\xdb\xc6\xfc\x26\xea\x0d\x4d\x18\x43\x03\xb9\xc8\x2d\x71\xaa\x2f\xeb\xb1\x59\x48\x9d\xb4\x14\xba\xcf\xe5\x8a\x8d\x47\xa1\x70\x25\x93\x85\xfb\x61\x59\x01\x15\xa3\x58\xe0\x0b\x28\xdc\x0d\x0b\xe7\x50\xf8\x84\x54\x81\xc1\xab\x7a\x77\x29\xdf\x6d\x6f\x6f\x90\xcd\x8c\x77\x46\x9a\x77\x63\x53\x96\x9a\x59\xf8\xc2\x1a\x24\xe4\x22\x35\x9d\x6b\xc4\x8c\xbc\xac\x6a\xa7\xc0\xcd\x7d\xdf\x9a\x4f\x2d\xc4\xad\xd6\xfe\x29\x61\xa4\x22\x42\x36\x1b\x07\x63\xf1\x3c\x06\x4e\xad\x12\xd0\xff\xf6\x89\xd6\x83\x7d\xf7\xf3\xaf\xf1\xe7\x30\xa3\x5d\x4b\xbe\x58\x78\x9f\xba\xc7\xf4\xf8\x44\xa3\xf2\xce\xd6\x7d\x71\xf0\x5d\xc0\x1b\xa7\x71\x58\x6f\x8d\xa1\x5f\x99\x86\x61\xc8\xf9\xf2\x52\x2d\x23\x34\x9a\xb2\x61\x58\xb0\xf6\xd7\xee\xa5\x1d\xbe\xa5\x41\xf4\xb5\x1f\x7a\x32\xa9\x08\x8b\x5e\xd7\x86\x54\x71\x3e\x9c\x3e\x01\x61\x06\xe4\x7d\xbd\xd1\x6b\x21\x78\xeb\xfc\x1c\xd4\x78\x62\xe7\xfd\xa0\x13\xcd\x4b\xd9\xc1\xc9\x1f\xee\x5b\x13\x4a\x58\x13\x52\x6d\xc7\x87\xa0\xd8\x77\x70\x70\xb4\x88\x67\xd6\x6f\x0b\x3d\x35\xac\xa5\x49\xda\xee\x08\xb6\x7a\xe8\x74\xe0\xc8\x9a\x4d\xe5\xbe\xb7\x84\x67\x60\xf0\x21\xa2\x19\xda\x6d\x58\xc7\xb5\x2e\xb7\x09\x50\x8e\xf1\x24\xe1\x2f\x94\x5b\x1e\xf5\x60\xe0\xf3\x77\x9b\x26\x9d\x11\x71\x26\xfc\xb9\xd8\xe4\x5c\x21\x30\x41\xd5\x0b\xb1\x5a\x8d\xc0\xaf\xc5\x3a\x4a\xb4\x6a\x89\x07\x3b\x60\x88\x87\x3b\x60\xb8\xb9\xbd\xd5\x73\x13\x2f\xda\x36\x4a\x6e\xec\xfe\x9a\x0b\xdf\x83\xa7\xb5\xc6\x7a\x19\x91\x78\x41\xf9\xbf\xc3\x67\x45\xbc\xe8\xfa\x60\xd3\x72\x6d\x8d\x31\x91\x33\xe9\x6c\xed\x9e\xf8\x44\xc2\x37\x14\x78\x13\x6d\x77\x1c\x96\x05\x8c\xba\xb8\x09\xa4\xd8\xb1\xbe\x3e\x29\xfb\xde\xc3\xbd\x46\xbf\x6f\x62\x4a\xe4\xca\xa0\xa0\xa1\x97\xf9\xb0\xd6\x0e\xca\x93\x9c\xfe\xb5\x41\x39\x29\x49\x83\x27\x0c\x34\xd0\xf8\x4e\x80\x02\xea\x17\x06\x49\xb8\x3a\x94\x5f\x58\x45\x84\x1c\x9b\x9c\x32\x2d\xd7\xa6\x91\x36\x47\x2a\x28\xf7\xfc\x8e\x8b\xc8\xef\xb8\x88\x44\x8e\xec\xc6\xb8\x73\x0b\x2f\x23\xdd\x6d\x89\x94\x40\x02\xe3\xbb\xf0\x9b\x28\xef\xdb\x7b\x4d\x38\xbe\x67\xd5\x39\x53\xd9\x44\x5e\x85\xad\xae\xd7\xb2\x81\x2e\x87\xdd\x02\x4f\xe2\x39\x8c\x55\xe0\x9d\xc8\x18\x67\xa6\x13\xd9\x4d\xd4\xc8\x66\x90\xda\xe6\xac\x44\x9c\xcc\x48\xe1\x49\xb8\x38\xd5\xf9\xe7\x39\xad\xcb\x88\x8d\x10\x66\xb6\x53\xe1\xd0\x64\x2a\x62\x34\xca\x09\x12\xb4\xc8\x21\x4d\x29\x6e\x47\x43\x66\x6b\x2f\xb1\x8c\x55\xd7\x56\x8a\xd8\xad\x94\x80\xda\x46\xfd\xad\x30\x99\xe5\x10\xb4\x91\xfc\xa5\x81\xac\x5f\x24\x77\x40\xf3\xba\xd0\x0a\x2f\xc5\x38\x19\xd9\x9d\x96\xc8\xf9\x3e\x70\x96\xcc\x69\xe7\xb5\x8b\xd2\x80\xb3\x56\x0e\x3b\xd7\xdf\x3b\x0d\xf1\xdc\x4b\x81\x16\x6b\xf8\xed\x7d\xed\x62\x47\x24\x09\x98\x53\x55\xb7\x5e\x84\x50\xfb\x3b\x38\x05\x7f\xe8\x0e\x74\x47\x04\x7a\xf0\xc5\x6c\xfa\x85\xfb\xe2\xd7\xc8\xf4\x48\x72\x9a\xe6\x2e\xd6\x7a\x03\x9e\x24\x7d\x38\x8a\x56\x8b\x42\x4a\x49\x5b\xec\x68\x2d\x8d\xfc\x4f\x05\x4b\x7c\xaa\x62\x27\x4e\x77\xd2\x11\x9e\x54\x5e\xc4\xbb\xd2\xa3\x24\x2a\x92\xe5\xa0\xe2\x3b\xfe\xc8\x4f\x68\xe5\x22\xbf\x28\x39\x64\x2b\x63\x9a\x42\x0f\x7f\x63\x48\xe0\xc9\xc7\xae\x40\xde\x0c\xdf\x5d\x08\x23\x05\xc1\x98\xbc\x7a\x40\xa5\x35\x1a\x91\x7d\xd0\xb3\x3a\x0f\x81\x94\x45\xee\x60\xea\xfe\x3d\xcd\xf5\x39\xfb\x5c\x96\x82\x56\x6e\xe9\xbe\x84\xbc\x37\x53\x88\x81\x79\xd6\xd2\xfb\xd1\xef\x71\x5c\x01\x3d\x0b\x0a\x56\xab\x41\x0f\x8e\xf6\x63\xc8\xf0\xf6\xf8\xb2\xcc\xb9\x78\x6c\xa4\x6f\xbd\x81\xad\xac\xe4\xe3\xde\x36\x3e\xf2\x78\x2a\x63\x75\xc0\xbb\x92\x2e\xa9\xac\x45\x3a\x5f\x7a\x1e\x4e\x6e\x93\x8d\x5d\x69\x78\xb4\x72\x52\xd2\x56\x2a\xbe\xd7\x05\xca\xf0\xa4\x81\x33\x87\x18\x5e\xaf\xdf\x17\x48\x90\x8c\x40\xd8\x2a\xa3\x8e\xdb\x30\x9a\x28\xeb\x7d\xbe\x40\x62\xb5\x42\x82\xf6\x51\x1f\x09\xca\xa6\xf1\x16\xc5\x3e\x14\xc6\x4d\x19\x90\x9e\xb2\xde\x51\xbb\x20\xbc\x35\xed\x8b\xe1\x45\x56\xbf\x14\xa2\xca\xcf\x1a\xc1\xd0\x60\x9e\x89\xec\x31\x0c\xa6\x2a\x4b\x31\xc0\x18\x93\xbe\x70\x61\x80\x26\xe6\x32\x82\x56\x27\x38\x4c\x99\xc3\xad\x2b\xaf\x3c\x2a\x70\x7c\x46\x44\x4c\xef\xf4\xd9\x48\xfb\xa3\xb5\x0e\x14\x82\xd7\x3a\x63\x49\xbc\xce\x9d\x2c\x6e\x69\x42\xe9\xdc\xb3\xc8\x85\x5b\x64\x51\x04\x69\x84\xfd\x35\x77\x1a\x68\xf8\xca\x01\xc9\x6f\xd1\x59\xdf\x79\x9e\x55\xe7\xb0\x9c\xb5\xb6\xb7\xf7\xec\x4e\xec\xab\xe3\x9d\x93\xa9\xff\x03\x96\x59\xaf\xc1\x9d\xe1\xfa\x52\xc1\xc8\x37\xa6\x52\x38\x58\x64\x3c\x18\x6c\x55\xc4\xf2\x1a\x8c\x84\x2c\x84\x88\xf9\x03\xdf\x22\xf2\xa7\x80\x36\xd8\x7e\xd8\x40\xb7\xfd\x81\x6e\xeb\x81\x4a\xec\xfe\xa5\x40\x22\xb6\x1d\xde\x1e\x8d\x5c\x22\x11\xb3\x32\x4a\xeb\xbc\xfe\xb5\x70\x42\x34\x6d\x19\x14\x98\x48\x28\x62\xa3\x85\x1c\x1c\x3e\xc4\x6b\x12\xb4\xd1\xa8\x94\x8d\xed\x7d\xed\x68\x04\x82\x9a\xfa\x2b\x35\x79\x5f\x18\x47\x71\xf8\x13\xa4\x8f\x06\x24\xaa\xed\xb6\xd7\x64\x29\x62\x53\x0e\x97\xe8\xc2\x78\xa3\xff\xa5\x44\x40\x0e\xd9\xd8\xe0\x3a\x30\x37\xd1\x97\xc7\x7a\x4d\x6e\xc3\x66\xfc\x64\x19\x08\x6a\xef\xe8\xda\x3b\xb2\xd3\xf3\x07\x74\x0a\xf1\x76\x55\x47\x60\xe2\xe9\xac\x3b\x5d\xaf\x9f\x5a\xc6\x9c\xc6\x14\x2d\x4c\xaa\x93\x2f\xd0\x11\x43\xda\xfc\x88\x43\x7a\x20\xe2\xb2\x07\xf1\x20\x7b\x90\x8e\x01\xc6\xa9\x4a\x41\xe0\x1c\x5b\x24\x85\xe7\xfd\x56\x95\x20\xba\x57\x75\xab\x7c\x97\xca\xea\x65\x51\x20\xd5\xe9\xb1\xec\x84\x0e\xb6\x7e\x39\xfc\xf8\x61\xa8\x84\x4e\xf9\xe2\x16\x0d\x06\x5b\x02\x6f\xfd\xaf\x93\x63\x10\x0f\xe8\x31\x9c\xfc\x2f\x39\xae\xd1\x44\x3c\xe7\xc6\x8b\x45\x6c\x6d\xd9\xfb\xf5\x58\x40\x02\xff\x4a\xa9\x14\x2a\x79\x55\x2d\x55\x38\x89\xb2\x5a\x1a\xda\xf5\x2b\x47\x15\xd8\x54\xf4\xcb\x08\x6c\xf7\x25\xd4\xde\x30\x54\x61\x72\xc4\x40\x41\xb1\x5e\xaf\x37\xa5\x17\x62\x61\x32\x50\x9b\x5e\x48\xad\x0d\x64\x97\x54\x79\x81\x92\xe4\x54\xd6\xee\xf7\xb9\xcb\xd9\x23\x48\x7f\x2c\xb7\xe5\x2d\x65\x05\x79\xd3\x4a\xdf\x4e\x62\xc7\xee\x5d\x3f\xde\xde\x6f\x25\xda\x7f\x46\x98\x17\xe5\xc0\x7c\xd4\x0e\xc3\x97\xdb\x30\x7c\xe4\xbd\x7f\x42\x54\x50\xf6\x7d\x15\xce\xdd\x07\x7a\xa7\x44\x7b\x64\xfd\x0f\x1e\x35\x13\x93\x56\x80\x75\x5d\xff\x12\x99\xbc\x29\x94\xe9\xf6\x3f\x20\x03\x28\xc6\x44\xf5\x8a\x30\x59\x16\x48\x42\xf2\x6b\xda\x45\x7a\xe8\xf9\x6d\xff\x40\x3c\x41\x60\x02\x7e\x2e\xe8\xdd\xc1\x95\x44\x46\xe9\xf1\x27\x4e\x4e\x39\xf9\xca\xc9\x47\xf2\x8d\xbc\xe6\x81\x19\x5a\x29\xe9\x92\xf7\x1c\xaf\xc9\x07\xf2\x99\xfc\x43\x90\x46\x90\x65\x41\xee\x34\x61\x94\xf6\xc7\xeb\x93\xf5\xa4\xef\x7f\x62\x4c\xd3\x16\x39\x9f\x03\x67\xf2\xd3\xed\xcf\x65\x2d\xde\xea\x84\x83\x13\x14\x1b\x74\x35\x7c\xce\x16\x39\x67\x73\xef\xc6\x39\x3d\xfd\x7c\xf0\xf2\xd5\xd1\xe9\xeb\x83\xdf\x8e\x3e\x7e\x7c\x77\x78\xfa\xe7\x77\x1f\x7f\x7a\xf9\xee\xf4\xe7\x8f\x1f\xff\x72\x7a\x1a\xfa\x64\x08\x7a\x7f\x6d\x95\xf7\x2b\xaf\x5f\xe7\xb5\x24\x55\xe6\x70\xeb\xd6\xcd\xe5\x65\x59\x89\x5a\xf1\x4e\xba\xbd\xd1\xc4\x39\x5e\x88\x61\xce\xbf\xb2\x99\x40\x0c\x4f\x6e\x8a\x00\x8b\xa8\x3c\xb9\x25\x7f\x55\x2e\x97\xb9\x80\x16\x24\x76\x04\x9f\x01\x1d\xdc\xeb\xc9\x2e\x35\x76\xb6\xc6\xd5\xc3\xb3\xb7\x75\xce\x17\xeb\x35\x39\xf8\x6e\xe3\x26\xa9\x2e\x27\x2c\xf8\xd4\x7f\xc6\xa8\x44\x77\x6b\xc2\xc8\x5d\x79\xc5\xaa\x2a\x9f\xb3\x9f\xcb\xf2\xdb\xa1\x33\xcb\x34\xc5\x9e\x71\x4d\xcd\x84\x89\x89\xa5\x84\x47\x95\x2e\x9f\x5d\xb0\x79\x53\xe8\x34\xdd\xaa\x6c\x16\x67\xf7\xf8\xcc\x16\xe9\xc6\xcc\x1f\x72\xef\xfd\x4d\xff\xe9\x16\x26\x92\xfa\x13\x0d\xf9\x2f\xc4\x28\x87\xe4\x04\xea\x7a\xf6\x34\x30\x6b\xb2\x01\x92\xba\x5a\x13\x53\xd9\x88\xca\x4a\xd3\x1a\x45\xfd\xa6\x94\xc3\xae\x58\x7d\x11\x4e\xb4\xbb\xb0\x2c\x85\x5d\x27\x5d\x23\x58\xa6\x73\x66\x66\xae\x26\x67\x6e\x3a\x74\xb7\x69\xc0\xaf\x38\x39\x6b\x64\x0b\x92\xf8\x4b\x47\xe4\x8a\x55\xb5\xa4\x2e\x06\xe3\x27\xc3\xf1\xce\x70\x3c\x20\xea\x42\x67\xd5\xa7\x6c\xf6\x2d\x3b\x67\x1f\xb2\x25\x4b\x07\x8a\xec\x9e\x97\xcb\xc1\x1a\x13\x31\x3c\x3d\x3d\x3c\x78\xf5\xf9\xe0\xe8\xf4\xed\x87\xa3\x83\xcf\x1f\x5e\xbe\x3b\x3c\x7d\xfd\xf1\xf4\xc3\xc7\xa3\xd3\x5f\x0f\x0f\x4e\x3f\x7e\x3e\xfd\xfb\xc7\x5f\x4f\xbf\xbc\x7d\xf7\xee\xf4\xa7\x83\xd3\x37\x6f\x3f\x1f\xbc\xa6\x3f\x17\x44\x68\x27\xcf\x4f\x65\x25\xb2\x82\xfe\x24\x4b\xe4\x38\x5f\x7f\x7c\x0f\xac\x4f\x74\x2a\xb5\x48\x3a\x0e\xb6\x32\x0e\x88\x5e\xf3\x96\x39\x7b\xd4\xb6\x60\xc2\x99\x62\x2a\x9b\x83\x4d\x36\x9c\x9a\x98\x89\xe5\x16\xcf\x9e\xe1\x58\x0e\xb0\xfd\xe4\x19\xf9\x08\x82\xff\xe1\x37\x76\x5b\x2b\x1f\x0f\x2b\xd8\x0b\x00\x4a\x74\x02\x94\x18\x2e\x8a\xa6\xbe\x38\xbc\xe5\xb3\x36\x95\xbf\xd9\xa5\x6b\xfc\xcc\x85\xae\xe9\x8a\x0c\xab\xe2\xe7\x04\x17\x8b\x77\xa5\x40\x74\x5c\x7d\x97\xb8\x1c\x6e\x31\x59\xf1\x20\x92\xf0\x91\x25\xba\x04\xe9\x8f\x24\x55\x48\x44\x9b\x16\xfc\x67\x1b\x1c\xeb\x06\x35\x61\x68\x95\xb3\x2f\x45\x17\xa0\xf4\x81\xd5\x8c\x1a\xdf\x75\x6d\xf7\xfb\xac\x8b\xbb\x4a\x12\x14\xb1\x09\x66\x0c\x7a\x20\xfd\x71\x40\x4c\x76\x36\xa2\xef\xd4\x80\xce\x94\x0c\xd3\x48\x8f\x5f\x5b\x86\x9c\x01\x56\x9a\x2b\x74\x56\x4b\x92\xc1\x7b\x19\x9c\x8a\x10\x18\x8c\x89\x9e\x22\xc0\xff\x05\x42\x3f\x1c\x8e\xda\xa8\xc3\xe6\x4c\x54\x8c\xbd\xe5\xa2\xec\x66\x39\x95\xbc\x50\xaf\x30\xef\xde\x3e\x77\x50\x57\x2b\x7b\xc6\x3a\x4f\x61\xec\xda\xf7\x2c\xd8\x7c\xd5\x5d\x7f\x4c\x2a\x18\xaa\xc6\x4b\xd4\xe2\xa5\x35\x19\xef\x8d\xd3\x18\xb4\x06\x4d\xcd\x7a\x92\xe2\x9c\x89\xc1\x04\x54\x75\xf2\x46\xa5\x1c\x8d\xf7\xb6\xb1\xfc\x64\xfb\xfe\x4f\x6c\x6a\x5f\x92\x11\xf0\xaa\xec\x24\x05\x94\x2f\xbf\xef\x2c\xe7\x32\x63\xbd\x67\x75\x9d\x9d\x83\x5d\x1c\x67\x85\xe1\x52\xd5\x85\xa5\xfe\xd4\xd4\x8b\xd7\xe0\x93\x67\x05\xf6\xef\x7a\xbb\x39\xbc\xbc\x46\x78\x52\x20\x38\x56\x44\x47\x4e\xb1\xf7\xac\x5a\xc4\x9a\x89\x23\xa5\x73\x91\x0c\x36\x26\xd5\x7a\x4d\x16\xf4\x75\x26\x24\x66\x94\x9f\x87\xed\x75\xa4\x15\x73\x75\x1f\x2f\xd6\x24\x64\xe0\xcc\xf8\xa6\x5e\x37\x15\x19\x11\x86\x53\x54\x50\x46\xbc\xe2\x9a\x8c\x24\x69\x58\x46\x70\x3b\xa3\xc1\x08\x05\x5e\x93\xdc\x1f\xc4\xac\x60\x59\x65\xde\xcf\xf0\x9a\x64\xed\x21\xf6\xc7\x6b\x30\x97\xb4\x13\x59\x94\xd5\x8c\xbd\xa9\xb2\x25\xfb\x1c\xe0\x2d\x49\x7c\xd8\x30\xa9\x73\xaa\x76\x6b\x78\xc9\x2a\xc9\x33\x40\x86\xe9\x4b\x53\x28\x67\x4d\x2e\xcc\x2f\x37\x46\xb2\x34\x65\xfe\xc8\x22\x80\x70\x9b\x3e\x2b\x79\x5d\x16\xcc\x04\x8d\x35\x9f\xca\xbe\x8a\x97\x3c\x5f\x02\xc7\x0e\x23\x9d\x74\xc1\x8c\xae\x5f\xb1\xdf\x1b\x56\x8b\xf0\x83\x24\xd1\x8d\x0f\x19\x1c\x94\xc1\xd1\x45\x5e\xf7\xce\xaa\xf2\xba\x66\x55\x6f\x5e\xb2\x9a\xff\x2f\xd1\xd3\xb4\x63\xaf\xb3\x89\x61\xef\x7d\xf6\x8d\xf5\xea\xa6\x62\x3d\x71\x91\x89\xde\x6d\xd9\x40\xe4\xd0\x5e\xd6\xbb\x2c\x8b\xdb\x45\x5e\x14\xbd\x9c\xf7\x54\xc4\x50\xdd\x74\x3d\xec\x5d\x08\x71\x59\xa7\x7f\xfa\xd3\xe2\x6c\xb8\x64\x7f\x52\x57\xbe\xa9\x5f\x0f\x30\xe9\x9a\xca\xed\x8f\x8d\xb7\x6b\x89\xfe\x43\xc3\x5d\x77\x2a\xe7\xe7\xdd\x1e\x4e\x73\x79\x14\xf0\x77\x0f\xcd\x5c\x9d\x98\xb5\x1f\x95\xf7\xf2\xa1\x27\x4e\x57\x7c\x7c\xae\xb2\xf8\x5d\xd1\xfe\x98\x9c\x29\x14\x71\x4d\x1f\x8f\xc9\x0d\xdd\x23\x07\x74\x34\xe9\x38\x0a\xbd\x18\x3d\xbc\xa0\x07\xf2\x70\xf8\x47\x80\x3c\xe0\xa4\x30\x7c\x37\x7a\xc1\x56\xab\xf1\xf6\xde\x73\x36\x8d\x36\x2e\xfc\xa8\x27\xb2\x6f\xac\x86\x2d\xa8\x73\x91\x5f\xb1\x5e\xce\x45\xef\x8c\x89\x6b\xc6\x78\x6f\xd4\xcb\xf8\xbc\x37\xde\xde\x23\x3d\xf9\x59\xce\xcf\x7b\x0b\xf9\xa5\x24\x28\x6a\x13\xc5\x56\x5c\x64\x5c\xd6\xe9\x2d\x2e\xeb\x5e\x5e\xf7\x78\x29\x7a\x0d\xd7\xa0\xc0\xe6\x03\x9c\xde\xd0\xd1\x73\x36\x85\x00\x26\x8b\xa2\x2c\x2b\x34\x66\x3b\x7f\x62\x38\xdd\x53\x2c\xe2\x37\x95\x4f\x2c\xc0\xb0\xe4\x90\x7e\x1b\xca\x06\xb6\x27\xea\xef\x78\x58\xf2\xa5\xaa\x42\x3b\xb9\xe0\x33\x2b\x4d\x8a\x71\xec\x01\x65\x5b\x37\x40\x3e\x9d\x49\x6c\xcb\xf0\xf4\x70\x78\x59\xd6\x42\xf7\xa8\xe3\x26\x21\x6f\xa7\x0c\xf3\xc3\x0d\x22\xee\xf8\x80\x70\x6d\x3e\x2b\xbf\x8b\x51\xeb\x19\x65\xe4\x6a\xb5\x92\x6d\x8e\x48\xc7\xc7\x31\x2e\xe5\xf8\xee\x9a\x5e\x04\x54\x0a\x43\xf1\x44\x20\x37\x62\x8c\x62\x97\xe8\x1a\x03\x60\x79\x72\xc3\xa3\x48\xa5\xa8\xe4\x2f\x4c\x45\x2d\x11\xd8\xcb\x61\xaf\xc5\x31\x8f\xc7\x2f\x5e\xbc\x18\x93\x92\xb2\xe3\x0a\x04\x33\x7d\xe7\xd3\x54\x26\xc9\xe8\xf9\x27\x95\xf2\xcb\x25\x50\x3d\xae\x4e\xa8\x20\xec\x98\x9f\xd0\x92\x70\x5a\x79\xbd\x7f\xf4\xb8\x24\x17\xbd\x87\x51\x76\x3c\x3a\x31\x34\xb2\x67\x07\xe5\x71\xf2\xc7\xa3\x93\xc0\x9d\xca\x9b\xc3\x65\x79\xa9\x42\xcc\x71\x9d\x11\xf5\x78\x74\x42\x4d\x36\x7e\x35\x8b\x11\x29\xdd\x64\xab\xe7\xe5\xc4\x88\x66\xb6\xff\x0b\x55\x5b\x63\xfc\x78\x4c\x32\xca\x8e\xf3\x13\xd2\xd0\x7c\x6b\x4c\x0a\xca\x8e\x9b\xb0\xc3\x2c\x49\x46\x2f\x3e\xa1\x8c\x70\x8c\x6d\x61\xa1\x0a\x0b\x92\xe1\x29\x82\x89\x4b\x4a\xb0\x39\x81\x2c\x42\x0d\x4e\x55\x59\x46\x64\xd3\x50\x96\x3b\x07\x1c\x6f\x1d\x6d\x33\x3c\x5e\x47\xbf\x39\x9b\x0e\xba\x27\xba\xd3\x46\x7c\x8a\xfc\xca\xcb\x4a\xbc\xe5\x73\x76\xf3\x58\xb8\x67\x3f\xd0\x06\x9f\x82\xcd\xc9\xfc\xb1\x18\xe6\x73\xc0\x48\xa7\xf4\xf8\x84\x7c\x95\xff\xbd\xa4\x63\xf2\x41\xa1\xa6\xcf\x74\x87\xbc\x85\xa8\x6a\x90\xec\x99\xf6\xc7\xce\x36\xf6\x35\xf2\x82\xd6\x0a\xfa\x11\x7d\xb5\x96\xf9\x22\xc8\xba\xeb\x54\x8e\xf8\x95\xac\xe4\x56\x41\xa8\xd0\x46\xa0\xba\xa3\xcc\x04\x9c\x93\x95\x88\x37\xee\x96\xc7\x3a\x39\x42\xa7\x92\xaa\x50\x9d\xfa\x3a\x44\xcd\x13\xbc\x87\x6c\x9b\x88\x61\xd2\x7f\x83\x1d\x2e\xf8\x88\x4e\x31\x7e\x23\xcf\x5e\x85\xfe\x08\xd2\xad\x05\x83\x4f\x92\x12\xbd\x23\xde\xd8\x1e\x33\xbf\x93\x3f\xd4\xc1\x54\x2b\x92\x24\xaa\xb3\x1c\x61\x2c\x57\x6a\xa4\xf3\x08\x7e\x9e\x98\xa8\x39\xaf\x11\xc7\xe4\x03\xf4\x6d\x7a\xf8\x90\x24\xa8\x8f\x3e\x44\xb3\x7a\xc1\xf1\x6a\xc5\x92\xa4\x9f\x21\x8c\x27\x46\xad\xf4\xc1\x2e\x5e\x60\x65\x7f\xe7\xca\xcd\x4e\x7d\x18\x5e\x6a\xf3\x18\xb0\x27\xd0\xba\xf6\xa6\xd5\xcf\x73\xca\xf1\xa4\x4d\x73\x76\x2a\x5e\x8a\xa9\xd7\x4f\x91\x7e\xa0\x6a\x11\x93\xe4\x15\x3a\xc5\xe4\x35\x32\xfe\xac\xf2\xe7\x44\x4d\xd2\x33\xe3\xff\x80\x95\x76\xdc\x04\x06\x50\xce\x17\xfe\x5a\xd7\x6a\xad\x6b\x6f\xad\x39\x26\x33\x89\x3a\x35\xb0\xce\x2c\xff\x6a\x41\xb2\x02\x90\xf4\x76\xe4\x57\xb9\xed\x91\x41\xa3\x71\x2a\x7a\x3c\x36\x19\xba\x8c\x0f\xe5\xde\x28\xf2\x19\xf3\x82\xe4\x87\x3e\x50\x63\xb6\x3b\x89\x34\xd8\x7b\x6c\x47\x5d\xe0\x5f\x68\xe3\x5f\xfa\x6f\xe7\x05\xb3\xd6\x49\x7b\xfe\x6d\xfc\x76\xb9\x64\xf3\x5c\xb2\x78\xe6\xf5\xd8\x7f\xfd\xae\xbc\xb6\x2f\x76\xfd\x17\x1f\x24\xf9\x5a\xd8\x77\x3b\xfe\xbb\x4f\x55\xb9\xc8\x0b\xeb\xe6\xee\xbd\xf9\xb5\x66\xd5\x4f\x45\x39\xfb\x06\x26\xc1\xfa\xdb\xed\x80\xdf\x04\x22\xec\x55\x2b\xf5\x2f\x83\xa4\xdb\x3e\x4c\x05\x44\x85\x89\x51\x7e\x70\xc3\x66\x8d\xfc\xc0\xbf\x6d\xde\xac\x56\x6f\x57\x2b\x64\x8f\x56\xc8\x6f\x3a\x39\xd5\x27\x1f\x40\x3b\x08\x9d\xcf\xf1\x77\x6f\x40\x81\xe9\x1b\x85\xb5\x3f\x02\xa0\xf3\xbf\xe3\xec\x26\xd4\xba\x68\xd0\xf8\x6c\x41\xc3\x04\x3b\x54\x46\x27\x0a\x05\xec\xc4\x39\x97\xe8\xe7\xb5\x42\xa7\x9f\x27\x9f\xa9\x08\x05\xdc\x4e\xaa\xf2\x99\xf2\x75\xd0\xfb\x65\xd6\xd4\xdd\xab\x14\x31\xe1\x40\xbb\x7f\xca\x72\x2e\xe8\x97\xe0\x4d\xc3\xbf\xe4\xe2\xc2\xee\x5e\xc8\x5b\xb5\xc0\x3c\x9c\x8b\x06\x60\x0d\xe0\xe1\x8c\x18\xdd\xf1\x66\xc4\xfc\x19\x89\xfb\x66\x64\x04\x92\x1d\x30\x43\x38\xc9\x0c\xa6\x6a\x11\x58\x9d\x24\x78\x66\xad\x38\x32\xc3\x2e\x67\xc3\x39\x2b\xb2\xdb\x49\x41\x07\xbc\x59\x9e\xb1\xca\x47\x40\x92\xcc\x28\xa6\xcd\x56\x91\x36\x24\xeb\xa8\x90\x19\xf3\xc3\xa9\x7d\x4a\x25\x3e\x50\x78\x29\xa3\xf2\x99\x14\xb4\x71\x86\x77\x77\xf9\x3c\x7d\xb9\xb5\x45\x0c\xac\xa7\x9c\x04\x88\x33\x65\xc4\x62\xa3\xb4\x20\x91\x85\x78\x46\x8b\xad\x8c\xd8\xbb\x29\x7d\x3c\x5e\x93\xe2\x45\x33\x45\xde\xa5\x4b\x0b\x72\x84\xbe\x12\x66\x1d\x51\x15\xce\x84\xdc\xbf\xe8\x2b\x96\x77\xc6\x34\x47\x38\x7d\x2f\xcf\x8b\xc4\x7f\xc5\xe3\x06\x63\x49\x32\x78\x6d\x64\x70\xcb\x31\x4c\x5a\x87\x0b\x13\x16\xee\xcf\x45\xd9\x14\xf3\xbf\xe7\xac\x98\x77\x28\x51\xe3\x5d\x91\xd7\xa2\x96\x21\xc2\x9d\x64\xc8\x09\x75\x2f\xb9\x1b\x8a\xbb\x80\x34\x26\x00\xf2\xcc\xa6\x5f\xe1\xc1\xc5\xdd\x91\x65\x37\xbe\x74\x56\xab\x0c\x85\xa7\xf4\xba\xca\x2e\x3b\xb1\x90\x3a\x8e\x9f\xcd\xc0\xa2\x19\x75\x1d\xc7\x61\x76\x79\x59\xdc\x42\xfa\x71\x62\x65\x5f\x11\x40\xaf\xd7\x64\xbc\xb7\xf3\x00\x79\x50\x67\xd2\xfa\xc3\xdb\xe5\x59\x59\x24\xc9\xa0\x86\x87\xd6\x9b\x61\x2e\x24\xf7\x53\x56\xd3\x2e\x9d\x80\x16\x30\xaf\xbb\x14\x06\xac\x9b\x25\x35\x1d\x82\xba\xbb\x16\x55\x33\x13\x65\x45\x29\xb5\xe5\x7d\xf3\xec\x34\xe9\x53\x33\x3a\x6b\xc5\xbd\x76\xd4\x5a\x69\xe5\xcb\x7d\x24\xb9\x39\xa5\x11\x28\x17\x3d\x2b\x98\x95\xdc\xd6\xd1\xed\x25\x53\x22\xba\xc1\xab\x8c\x4b\x96\x4d\xee\x79\x2f\xeb\xcd\x8a\xac\xae\x7b\x99\x64\x09\xed\x68\x3d\xeb\x89\xdc\xb5\xce\xbc\xe6\x3e\xb3\x05\xab\x18\x9f\x99\x36\xe5\x0e\xf5\x2e\x32\x10\x0a\x9c\x49\x4e\x32\xe7\xb9\xc8\xb3\x22\xaf\xd9\xbc\xf7\xb8\x57\x37\x97\xac\x42\x38\xa8\x21\xfb\x97\xdc\xa2\x91\xe6\x8a\xd5\xca\x20\x15\x27\x87\x10\xfe\x22\x7a\xc5\x53\x96\x7a\x26\xb4\x99\x1d\x64\x67\x65\x0b\xe8\xa2\x7b\x41\x0e\xe5\xe8\x7a\xec\xe6\xb2\x62\x75\x0d\xd1\xde\x9a\x5a\xf4\x58\x2e\x24\xb7\x7b\xc6\x80\x20\xef\x95\x95\xb7\x42\x04\x98\xde\xc1\x96\xe9\x01\x4f\x3c\x07\x24\xaa\x35\x08\x4a\xfe\x8b\x44\x92\x08\xf7\x92\xdc\x79\xdb\x9e\xde\x81\x22\x3a\x65\x84\xf1\x46\x72\xd9\x67\x05\x4b\xfb\x63\x72\x5d\xe5\x42\x3d\x8f\xc8\xac\xe4\x8b\xfc\xbc\xd1\xef\x46\xeb\x35\x26\x22\x49\x90\xee\xa3\x66\xe2\x93\x69\xfa\xe3\x62\xda\x59\x0a\x8b\x93\xb2\xe1\xe9\x29\x8c\xe2\xf4\x94\x0a\x95\x07\xaa\xa1\x1c\xed\x81\x28\x12\x3d\x91\xb4\xd9\xf1\x09\xa9\x21\x2c\xa6\x59\xd7\x85\xc7\xab\x21\x4c\x38\xbd\xd3\x89\x6a\xe4\xc0\xe4\xa3\x09\xe0\x0c\xa2\x06\xa5\xa6\xb2\x68\x47\xce\x79\x99\xd7\x12\x51\x45\x11\x43\x3c\x15\xdd\x50\x37\x08\xd9\xc1\x86\xaa\x49\xca\x08\x5b\x63\x3c\x54\x2c\x79\xf0\x99\xde\xbe\xf0\x2b\xe8\x5c\x7f\xe4\x7b\xdc\xcc\xdd\xe8\xdd\xb8\xc7\x66\xdc\x77\x6b\x7f\xd4\x84\xcb\x89\x4b\xd4\x13\xaa\x7f\x3a\x94\xea\xd6\xd4\x76\x01\x8c\x20\x9e\x94\x66\x38\x53\xe1\x06\x36\x4a\x91\xd0\xf3\x91\x2c\x5f\xa9\x9f\x89\xd0\xc3\x2d\xd5\x5f\x4c\xb8\xe2\xd2\x4b\xb3\x5c\x98\xd8\xc7\x8e\x75\xf3\xdb\xdc\xb8\x48\x66\x45\x94\xd2\xc2\x93\x31\xeb\x17\x95\x65\x39\xed\x1e\x7d\xd2\x3d\x66\x45\x81\x38\xde\xbc\x61\xc2\x5f\xfa\xfb\x77\xa9\x55\xd5\x77\x7c\xb8\x0c\xf4\x20\x8d\x3e\x2b\xda\xbe\x0d\x21\x4e\xc1\x28\x74\x78\x7a\xca\xea\xf7\xa5\x24\x51\xa6\xdc\x44\x94\x49\x39\x31\x46\xe2\x5e\x0c\x49\xc7\x25\x2f\x08\xb8\x2d\xf7\x6d\xff\xde\xa1\xd7\x07\x5e\x09\x15\xe5\x6b\xb0\x30\x94\x14\x5b\x5e\x81\x54\xec\xbf\xf5\x37\xff\xed\x27\x8a\x9a\xa8\x04\x66\x1a\x32\xb2\xba\xce\xcf\x39\x02\x90\x32\x0a\x5b\x03\x5e\xf0\x03\x68\x9e\x74\x7b\x34\x22\x86\x6c\x81\x62\xa5\x9c\x49\x2f\xc9\x35\x3b\xbb\x04\xea\x04\xb2\x00\xc0\xec\x6a\x0d\x85\x02\x93\x65\xe4\xa8\x7a\xeb\x45\xab\x5c\xad\xd0\x92\x32\x74\xa1\x80\xa0\xc2\x98\x2c\xcd\x0e\x5a\xae\x4a\x81\xd3\x6d\x37\xd7\x77\x31\xd4\x9d\x27\x49\xad\x2a\x46\x16\x26\x8c\xda\x2a\x7e\x44\xa9\x0a\xf1\xe1\x52\x12\x3a\x08\x0f\xd9\x15\xab\x6e\xbb\x80\xa3\x53\xa4\x2e\x6f\xc1\xae\x72\x3e\x5c\x1e\xb3\x93\xb5\x4b\x9b\x72\x8b\xd4\x3a\x03\xa4\xcc\xe9\xc2\x51\x0e\x02\xdf\xd9\xd5\x80\xe3\x57\x2a\x82\x80\xab\x0f\x32\x9a\xab\xdf\x4a\x1a\xa1\x9e\x2b\xa7\x84\xca\x94\xd5\xb0\x4f\x40\x65\x3a\x0e\xb1\x60\xe8\xce\x21\x01\xe2\x21\x37\xb9\x73\xf3\x8f\x0d\x98\xa1\xc8\x3d\xf1\x16\x9d\x64\xc3\x53\xf9\xa8\xe0\x52\xd2\x3e\xb7\x48\x16\x82\x16\x98\xea\xf6\x96\xea\xa8\x91\xcb\xac\x16\x90\x7a\x56\x62\x1e\xaf\x51\xdb\xd7\xd2\x40\xa9\xc1\x4b\x4b\x7d\xc2\xd7\x24\x33\x7b\xaa\x83\x58\x4a\x8c\xca\xc0\x2a\xbc\xcd\x2a\xdd\xca\x71\x70\xcf\xf6\xce\x82\xef\x97\xbc\x28\xde\xc7\x66\x78\xca\x00\x0f\x94\xb0\x6c\x2e\xc9\x4f\x55\x10\x4e\xcb\x6f\xce\x7b\xd5\x6d\xce\x07\xa6\x30\x9e\x27\xd0\xd0\x9c\xae\x24\x79\x59\x55\xd9\xed\x30\xaf\xe1\x2f\xba\x18\x6a\x90\xc7\x49\x62\x9f\x3b\xd0\x2c\xa4\x23\x8d\x1b\x1b\x56\xec\xb2\xac\x84\x36\x64\xb2\x6b\x87\xef\xda\xec\xc3\x85\xe2\x3d\x74\x4a\x68\xfd\x6b\xaa\x1c\xb6\xed\xe6\x7b\xdb\x33\x5a\xe3\x54\xad\x02\xd4\xf4\x15\x5d\xa1\xb6\x78\xd3\xd7\x6b\x4c\x74\x2f\x18\x93\xae\xf1\x68\x6c\x90\x24\x6a\xa1\x4e\xf5\xef\x87\xf4\xe4\x20\xc7\x74\xa4\x3f\xb6\x81\x60\x43\x85\xb6\xde\x59\xb0\x99\x8f\x41\xdd\x80\x66\x04\x6f\x6d\x88\x84\x84\xf6\xa7\xbe\xe2\xac\x46\x18\xaf\x27\xcb\x4d\xf7\x13\xbe\x93\xdc\xe6\x86\x3b\x01\xa9\xc8\x5d\x9b\x81\xf4\xd7\xb6\xb5\x68\x04\xa6\xda\xff\x2c\x1e\x52\x04\xa9\xc1\xdb\x8d\xca\x49\x6f\xab\x31\xe9\x78\x63\xd6\x37\x6c\x3c\xb6\x84\x70\xf7\xa2\x0d\x04\x60\x56\x6f\xb5\xf2\xca\x60\xc5\xa7\xf1\x35\x77\x61\xcf\xfe\x5d\x5e\xbf\xd3\xcb\xdf\x6e\xc9\x43\x22\xde\x4b\x5b\xe8\xd0\x8a\xf7\xd6\x94\x69\x1a\x27\x1e\x0a\x01\x94\x98\x9a\x50\x06\xd5\xad\x01\x7e\xd7\x31\x9b\x4f\x2f\xf4\x7c\x51\xeb\x95\x76\x04\x84\xf8\x15\x86\x80\x5a\xa3\x66\xe8\xdc\xed\xc9\xc2\x1c\x5e\x48\xc5\xab\x28\x30\xa0\x61\x8b\x61\x7d\x91\x5d\x32\x74\xa7\xce\x72\x5a\x0c\xe5\x72\x82\xc3\x3e\x5c\xc3\xf3\x35\x5e\x93\xb9\x17\x7a\xd9\x23\x3f\x2e\xd0\x82\x30\xbc\x5e\x0e\xdf\x67\x97\x9b\xc3\xb7\xf5\x37\x99\xfe\x78\x24\xc0\x3b\x3d\x9c\xf7\xd9\x65\x70\xff\xeb\x19\xeb\x69\xf6\xd4\x14\xff\xdb\x63\x8d\x26\x76\x28\x73\x39\x94\x89\x52\x15\xfb\x63\xb1\x23\x17\x0e\x3e\xf4\x95\x25\x30\xd1\x97\xd5\x06\xd6\x16\x3b\x9c\x0f\x46\x9b\x1e\xe7\x30\x3c\x67\xc2\x77\x73\x6a\x43\xa1\x5b\x63\xb3\xb6\x6e\x9b\x34\xe6\x5c\x83\x00\xe8\x01\x00\xdd\x0c\x8d\x13\xe9\xb0\xe4\x7a\x9c\xba\x25\x63\xdb\x2e\xb9\xfe\x70\xd3\x1d\xd5\x72\x1e\xaa\x10\x8e\x4f\x26\x56\x53\x13\xeb\x78\x84\x22\x44\x38\x72\x93\xf7\xa9\x51\xd1\xa2\x46\x15\xa1\x62\x72\x38\xe8\x4f\x64\x87\x12\xc1\xdc\xc2\x20\x35\xcc\x6d\x84\x30\x72\xdb\xce\x16\xfd\x63\x20\x1a\xb4\xb6\x1c\xbe\xca\x2e\x45\x53\x31\x7a\x0b\x14\x19\xdc\xd2\x2f\x8b\x2e\x41\xa8\x04\x41\x3d\xbd\xd8\x50\xf7\x1c\xcd\xf4\x5c\xc1\xb2\x02\x2c\xdb\x4d\x63\x9f\x59\x36\xbf\xfd\xd1\xe6\x6a\xdb\x9c\x5a\x1b\xe2\x2c\x69\x96\x6b\x32\xde\xdb\x7d\x88\xd0\x84\xa3\xf1\xde\x1e\xf6\xc5\x0d\xf8\xce\x17\x0f\xe0\xbb\x75\x3e\xac\x58\xcd\xc4\x97\xac\xe2\xd6\x1d\xb9\xf4\x3a\xf3\x86\xed\x99\xcc\x28\xcb\x20\xb0\xd1\x81\x1d\xcd\xfa\x94\x56\x46\xe4\xe8\x9d\xd4\x57\x59\x51\xe4\xfc\x5c\x4e\x53\xed\x6b\xef\x2a\x2b\xf2\x79\x26\xca\xaa\xee\xcd\xf3\x8a\xcd\x44\x71\x6b\xf4\xd0\x56\x0b\xdd\x3b\xbb\x85\x5c\xab\xff\x2d\xc1\xe1\xb1\x84\xf5\xfa\xbf\x7b\x97\xca\xf6\x71\xd8\xfb\xb5\x66\xae\xbd\xe1\xec\x82\xcd\xbe\xd9\x9f\x08\xf7\x44\xa9\xa4\x23\xe2\x82\x2d\x87\x3d\xb9\xf6\xbd\x65\x59\xb1\x5e\x26\xc0\x3a\xc1\x1a\x27\x34\x35\x7b\x0c\x1f\x3f\x76\xbd\x0c\x8c\x4d\x61\x33\x54\xe6\xf3\x6f\xf9\x55\x56\xe5\x19\x17\xbd\xdf\xf2\xb2\x00\xb9\xd9\x80\x34\x7e\x3a\x77\xb7\x9d\x6c\xcd\x3c\xc0\xa2\x4c\x8b\xf3\xee\x32\x49\x3a\xa5\x8c\x9c\x95\x65\x91\x32\xb0\xa3\x4e\x19\x51\x34\x46\xca\x88\x22\xd4\x41\xbc\x59\xc9\x3b\x84\x11\x25\x2f\x4a\x19\xc9\xb8\xfc\x0e\xbe\xff\xb8\x48\x05\xb1\xfe\x84\xc4\x73\xf6\x4f\x19\x31\x72\x23\xa8\xc4\xcb\x39\xb3\xcd\x42\x49\xc9\x99\xfb\x0b\x9f\x08\x02\x67\x44\x36\x79\x93\xcd\x44\x2a\x48\xb8\x8c\x69\x4e\x5a\x50\x91\x96\x9e\x78\xc0\xd6\xa4\x9c\x70\x10\xe2\xed\x3d\xd4\x0e\x6c\xa0\xcd\x54\xb5\x71\xea\xa7\x97\x87\x87\xa7\x47\x3f\xbf\x3d\xec\x34\x51\x05\x13\xb3\x27\xff\xaa\x7c\x50\x8b\xe4\x16\x65\x45\x4a\x5a\x4d\xdd\x4f\xcd\x4d\x9a\xd8\x09\x03\x9c\x3e\x19\x8d\x47\x3b\x24\xef\xac\x75\x09\xd6\x80\xba\xd2\x13\x92\x75\x56\x5a\x54\xd9\xb9\xd7\xd6\x53\xd2\x74\x56\x53\x83\x3f\x5d\x96\x73\xa6\x6b\x3e\x23\x45\x77\xaf\xa0\x55\x62\x95\xaa\x36\xde\x25\xb3\x4d\xd5\xae\xf2\xb9\xa9\x36\xda\x27\x75\x67\x35\x7d\xaf\xeb\xc6\x46\x64\xd1\x59\x2b\xab\x6f\xf9\xcc\x1b\xdc\x78\x4c\xe6\x9b\x9a\xd3\x26\xe0\x61\xed\xcb\xee\xb5\x29\xab\xeb\xac\x9a\x9f\x56\x6c\xa1\x6b\x6e\x93\x8b\xee\xe5\xd1\x06\xe8\xba\xda\x0e\x59\xde\x5b\xed\xb4\xc8\x6b\x3d\xa7\xed\x11\xb9\xed\xac\xbb\x64\xcb\x52\x37\xb7\x47\xce\x3b\xab\x14\xd9\x1f\xb7\xba\xca\x13\x72\xd5\x59\xe5\xac\x28\x67\xdf\x74\x4f\x63\x72\xd6\x3d\xcd\x86\xcf\x33\x70\x12\xd3\xc0\x32\x7e\x4a\xae\x3b\x6b\xda\xf0\x34\xba\xde\x33\x72\xd3\x3d\xcf\x59\x79\x69\xd6\x62\xdf\xa1\xf3\x03\x43\x3d\xdd\x1b\xef\xc4\xba\x5e\x18\xcf\xb7\x49\xe8\xa4\xd4\x2b\x6d\xd8\x19\x1d\xf5\x48\x97\x2f\x94\xc2\x6a\xae\xfe\x64\xea\x4f\xa1\xfe\x34\xea\xcf\x85\xf5\x21\xb6\xfa\x2c\xd7\x56\x92\xb4\x62\xac\xd4\xea\xb3\x4b\xf5\xe7\x5c\xfd\xb9\x55\x7f\x66\xed\xb6\xac\x75\xc5\x5a\x45\x68\xf1\x0a\x1c\x0a\xfe\xe6\xd1\x98\x72\x45\x28\xa5\xf3\xb5\x18\xbe\x94\x30\xfc\x1e\x94\x93\x44\x0c\x5f\x59\x40\x85\xa2\xb9\x2a\xd2\x29\x9e\xea\x66\xc9\x2a\x5a\xbb\xb2\x4f\xfa\x30\xd1\x19\x11\x43\x4d\xf1\xd3\x92\x88\xe1\x1b\x05\xc1\x9f\xd9\x82\x5e\xca\x9f\xfa\xb0\xd3\x8c\x88\xe1\xbb\xec\x8f\x5b\x7a\x4e\xc4\xf0\x3d\x5b\x96\xf4\x96\x88\xa1\x36\x1f\xce\xe5\xa3\x3e\xc5\xb4\x20\x62\x78\x08\x87\x1f\x06\xd2\xc8\x9f\x1a\x8a\xe9\x05\x11\x92\xd5\x76\x03\x6f\xcb\xf0\xe4\x64\x57\x2b\x3d\xcd\xc5\x1a\x3e\x88\xe6\xf6\xcd\x14\x06\xb3\xeb\x68\x4b\xb7\x52\xaf\xfd\x0f\xec\xd4\x37\x7f\x30\x53\x1f\x98\x75\xe9\x10\x26\xdd\x07\x8f\x3e\x54\x50\x4a\x4b\xd5\x98\xb7\xb0\x9b\x3b\xbe\xd4\x75\xcd\xaa\x6f\xae\x99\xa9\x9a\xb0\x25\x9b\x6b\x9d\xab\x5a\xb0\x5f\x9b\x6b\xdd\xaa\x5a\x2d\x5b\xf0\xb8\x5e\xae\xeb\x99\x9d\xde\x5c\xb3\x50\x35\x3d\x30\xd8\x5c\xb7\xd1\x75\x0d\x8c\x6c\xae\x79\xa1\x6a\xfe\x26\x09\xac\x03\x2f\x18\x50\xc7\xfe\xb4\x83\x50\x75\x67\x1d\x61\xab\x15\x93\xab\xa9\xfe\xcc\xd5\x9f\x42\xfd\x69\xd4\x9f\x0b\xf5\x67\xe9\x14\x40\x1b\x76\x1d\x05\xdb\x7e\xbe\x5a\x05\xbf\x6f\xa3\xdf\xb3\xe8\x77\x1d\xfd\xbe\x8c\x7e\x9f\x45\xbf\xaf\xa3\xdf\x37\xd1\xef\x2b\x50\x7b\x2a\x1d\x0b\x3d\x90\x54\xc6\xd3\x87\x12\x30\x8b\xc8\x1a\xdf\x98\xaa\x1b\x45\x9b\xd2\x9f\x47\xfe\x2d\x85\x4f\x15\xbf\xcf\x79\xbe\xc8\xd9\xbc\xc7\x6e\x66\xec\x52\x51\xe6\x33\x38\xc2\xf3\x49\x4f\x76\x2a\x89\x5f\x5e\xf2\xc7\x4b\x53\x71\xce\xae\x7a\x8c\x5f\xe5\x55\xc9\xe5\xbe\xf6\x16\x65\x05\x95\x16\x4d\x51\xf4\x40\x2a\xd0\xd3\xf6\x96\x60\x04\x9a\xcd\xe7\x90\xd7\x2f\x2b\x7a\x17\xac\xb8\x5c\x34\x45\xef\x5a\x91\x72\xf5\x70\xe0\x99\x58\xcd\xe8\xb1\x37\x81\x13\x52\xd3\xd1\x04\xf9\x43\x95\x57\xd4\x65\x91\xcd\x18\xfa\xd3\xff\x53\xff\xe9\xbc\x2b\x0d\xd3\xec\xb8\xde\xda\x02\x61\x30\xbe\x87\x68\xd6\xe1\xad\x8a\x21\x98\xa4\xd6\x47\xe5\xa7\xf2\x92\x8e\x49\xa1\x34\xc0\xcf\xee\x5f\x7b\x9f\x39\x32\x1a\x1c\x92\x4b\xee\xe6\xc9\x08\x4f\x4a\xda\x29\xa4\xae\x59\xb1\x98\xca\xff\xd2\xce\xd7\xca\xde\x7b\xaa\xfe\x74\x57\x61\x53\x96\x56\x5a\x4c\xad\xf4\x07\x28\x1f\x66\x18\x95\x92\xef\xcd\x68\xb6\xc6\x9e\xd0\x9a\xa3\x9d\x5d\x4c\x24\xc3\xb5\x8f\x11\xc3\xe0\xe8\xb0\x9f\x86\x5c\x5d\x17\x0c\x69\xa8\x31\x82\xfb\x4f\xda\x58\xda\xdc\xda\xa1\x3a\x92\xc9\x9e\x0d\x0b\xbf\x5a\x21\xf7\x83\x1e\x9f\x60\xe3\xfd\xa4\x66\x22\x49\x74\x56\x89\x5b\x24\xc8\x40\x49\x44\x06\xe4\xce\x57\x55\x8e\xc8\x39\x13\x69\x97\x5d\x73\xb1\x5e\xdf\xd3\x58\xfe\xf0\x86\xf2\x7b\x1b\xd2\x8b\x11\xb7\x06\xde\x6c\xd1\x72\xd0\xb1\xb3\xb4\x5c\x93\xf1\x77\x38\x02\x4b\x1a\x54\x66\xdd\x37\xea\x77\xbd\xd0\x93\x84\x05\xd2\x4d\xa7\xdf\x67\x24\xd0\xbf\xae\x95\x06\x11\xd4\xaf\x39\xe5\x43\x8e\x4a\x4c\x32\xa5\x87\x6d\xe0\x77\x06\xb6\x2d\xc3\xcc\x48\x22\x44\x75\x7b\xd8\x9c\xd5\xb3\x2a\x3f\x63\xa9\x2c\x8f\x24\x12\x44\x54\xb7\xbf\xf2\xfa\xde\x2a\xbc\x14\xf9\xe2\xf6\x03\xab\x05\x9b\xcb\xc6\x3a\x2b\xc9\x7b\x42\x37\x32\xef\xaa\xb0\xc6\x64\xe6\x0f\xec\xfe\x2e\xe7\xda\x73\xb3\xf3\xe5\xb9\x96\x4c\x77\x77\x33\xc9\x65\xa9\xbd\xd3\x75\x1e\xe9\x96\x3d\xc9\xc4\x79\x27\xc9\x0b\x82\x0e\x6a\x51\x56\x6c\x60\xc3\x48\x6d\x0d\xf4\x7c\x2e\x15\xe7\x9d\x07\x8a\xa5\x0a\x65\x46\x9b\x98\xd3\xcc\x6d\xde\xc4\xb3\x2d\x70\xd1\x95\x34\xf3\x0a\xa1\x7c\xbd\x63\x4b\x2a\xac\xa4\xbd\xf8\x98\x9d\x40\xfa\xae\xb2\x62\xa4\x34\xe0\x96\xdf\x27\xb9\x53\x73\xb0\xc1\xeb\xee\xd6\xd0\x86\x6c\xec\x98\x9d\x10\x71\xac\xfd\xcf\x88\x58\x93\x7c\xb3\xb4\xae\x7c\x90\xb4\x2e\x5b\xa3\xd2\x97\xd6\xd9\xf1\x79\x22\x33\x18\x7b\x1a\x6c\x93\x8d\x65\x21\xb7\xc9\x64\x9c\xf4\xc5\x5f\x79\x87\x30\x0d\xb9\xc9\x84\x60\x2a\x67\x54\x80\x20\x74\x8d\x70\x64\x6a\xe0\xdf\x77\xff\x59\x6b\x93\x1e\xf3\xed\x04\x6c\xf4\xc0\x79\xa8\xe4\x5d\xad\x02\xb9\xae\x15\x67\x8e\x27\xa2\xe5\xb2\xe7\xc2\x1d\x70\xcf\x67\x4f\x9c\xd8\xe0\xe4\x55\x2f\xe7\x3d\x8e\x75\x07\x0e\x4d\x5c\x64\xf5\xc7\x6b\x6e\x90\x9a\x82\x2b\x09\x52\x12\x9a\x8f\xab\x13\xca\x8f\xab\x13\xe7\x84\xba\xc6\x9b\x6c\xa2\x22\xd5\x7a\xcb\xd3\xf6\x4e\xc9\xaa\xe1\xb2\xa6\x77\x6b\x92\xd3\xd0\xd4\x01\x06\x5a\xd1\xd1\xa4\x7a\x9e\x5b\xab\xfa\xad\x2d\xcc\x69\x7e\x5c\x9d\x48\xba\x90\xcf\xd9\xcd\xc7\x05\xe2\xf8\x05\x1d\xad\x56\xa8\x94\x5b\xc9\x8e\xf9\x89\x5d\xd4\x72\xad\x34\xe5\x1c\xed\x3e\x05\x4d\xf6\x90\xa3\x0b\x4c\x6e\x41\x88\xf8\x14\x93\x73\x28\xb9\xc5\xe4\x4a\xa2\xbe\x27\x98\x9c\xd1\x3b\x85\x94\x7c\xd4\xaf\x03\x09\x5c\xdf\x27\x37\xd4\xba\x21\x80\x56\x1b\x0b\x11\x02\x5b\x1c\x36\x67\x26\x86\x22\x64\x04\x36\xb1\xed\x4d\x20\xc2\xc6\x21\x49\x2f\x0e\xa1\x64\xfe\x19\x67\x55\x4d\xcf\xd6\x86\xd7\x75\xc8\xc0\x5e\x46\xd9\x7c\x6e\xd1\x67\x17\x19\xad\xa2\x26\x7a\xa8\x1a\xe1\xa8\xfd\xa1\xed\x1d\x31\xa0\x1f\x63\xa4\xdc\xd2\x7f\xb9\x4f\x55\x55\x65\x6d\xe7\xa3\xe9\x0e\x84\xf0\x53\x59\x16\x2c\xe3\x28\x9e\xb2\x22\x59\xbd\x01\xb6\xba\xf3\x2a\x4b\xea\x20\x5e\xb2\x70\xa5\xa7\xe1\xcf\x60\x7d\x50\x7b\x0f\xac\x92\xa9\xac\x98\xb7\x10\x1d\x15\xe3\x5d\x69\xe9\x9c\x8f\x4f\x08\xa8\x15\x34\x6c\x83\x06\xcf\x07\x22\x97\x39\x52\x69\xa7\x5a\x50\xe6\x65\x6d\xa4\x82\x28\xb8\xe7\x01\xdc\x1f\x57\x27\x72\xad\x37\x10\x26\x6b\xe2\x6e\x3e\xfb\xda\x06\x19\xea\x8f\x2c\xd0\xe8\x9b\x49\x42\x54\x5d\xe4\x33\x86\x20\x84\xbc\xd2\x79\x60\xe2\xb7\x1c\xb0\x3a\x15\xe8\x3b\xbb\x3f\xae\x2f\xe1\xd9\x3f\x92\x64\x8c\xf1\x7a\xbd\x5e\x23\x6c\xb6\xd8\xa3\x06\xee\xdb\x64\xa3\x8e\xf6\x8a\x0c\xd0\x7e\xe7\xa8\x28\x9f\xca\x16\x84\xd3\x33\xbc\x26\x6c\x8d\x30\xb9\xe9\xa6\xaa\xc3\x7b\x9d\x1c\xd0\x11\xf9\x46\xef\x3c\x8b\xc6\xc3\x40\xc5\xe0\x3b\x37\x91\xdc\x5d\xf7\xa0\x48\x97\x77\x8c\x26\xaf\x05\x69\x68\x06\x59\xc1\xf2\xfa\xb2\xc8\x6e\x3f\x64\x4b\x46\x6a\x17\x2b\xaf\xe9\xb0\xe0\x1c\xbc\x2a\x39\x67\x33\xf1\x72\x7e\x95\xf1\x19\x9b\xa3\xc1\x16\xdb\x1a\xe0\xc1\x3a\x6d\xc8\x05\xcd\x86\x4b\x26\x2e\xca\x39\xb4\x74\xeb\x5a\xba\x98\x0e\x66\xe1\x77\x83\xf4\x82\x9c\xd1\x4c\x5f\xd0\x90\x63\x5b\x22\x74\x72\xe4\x3e\x3a\x9b\xaa\xc7\xf4\x8c\x7c\xa4\x92\x7a\x2a\x9b\x62\xae\xa2\x3e\x78\x80\x5f\x93\x57\xee\x93\x8f\xab\xd5\x47\xf2\x49\x56\x96\x07\xe6\x2f\xec\x96\x9c\xba\x97\x9f\xa6\x9a\xd2\x49\x3f\x91\xaf\x34\x1b\x5e\xe7\xe2\x42\x2e\xe7\x4b\x6a\x3d\x90\xbe\x26\xc9\x57\xf2\x81\x5e\xa2\x8c\x1c\x0f\xc2\x85\x19\x90\x81\x9b\xdb\x80\x0c\xa2\x81\x0f\xc8\x60\xd3\x00\xe5\x2b\x3d\x9c\x01\x19\xe8\x5e\x07\x27\x98\x7c\xa6\xa7\x31\xad\xf5\x96\x1e\x6c\x6d\x91\x37\x14\x21\x0e\xc4\xc0\xe9\x09\x9d\x11\x7e\xfc\x59\x52\x00\x1c\x93\xf7\x14\xa1\x1c\x5e\x40\x49\x8e\x5b\x96\xc1\xa0\xc6\xc2\xda\xd8\x11\x5d\x75\x88\x26\x30\x12\x98\x0c\xfe\x5e\x36\xca\x68\xf3\x12\x8c\x59\x9d\xf1\x56\x4f\x94\x9a\xc9\x35\xe4\x3c\xf4\xa0\xf4\x43\x83\xad\xdb\xad\xc1\xb0\xf7\x96\xd7\x82\x65\xf3\x5e\xc5\x66\x2c\xbf\x62\xf3\xde\xff\xcb\xde\x9b\x70\x39\x6e\x5b\x0d\xa2\x7f\x85\x85\x24\x6a\xc2\x42\xb1\xa9\xad\x16\xaa\x61\xa5\x5c\x5d\x9d\xf4\x8b\x7b\x99\xee\x72\x32\x79\xb2\xa6\x4d\x91\xa0\x44\x37\x45\x2a\x24\x54\x4b\x24\xfe\xf7\x77\xb0\x12\x5c\x6a\xb1\x1d\x9f\xf9\xe6\x7b\x13\xe7\x74\x89\xd8\x71\x71\x01\xdc\x7b\x71\x97\x96\xc7\x23\xaa\x9d\x33\x50\x27\xac\x80\x78\x38\x50\xce\xae\x1e\x0e\x40\x53\x55\x8c\xc0\x2c\xd8\x7e\xf4\x71\x68\xef\x4b\xf4\x1e\xed\xeb\x90\xf7\x0a\x54\x41\xde\xbb\x47\x0d\xc8\x7b\xd7\xe8\x21\xc8\x7b\x97\x48\x41\xde\xfb\x82\x24\xe4\xbd\x0b\x64\x8c\xc8\x8b\xd1\x6d\xee\x6f\xb7\x24\xd4\x03\xe2\xc9\x29\xfa\x47\x23\xd9\xa3\x25\x34\x2d\x4d\x53\xe3\x8e\xdd\x55\x3b\x2e\x57\xa4\x69\x2e\xb5\xc4\xe5\xeb\x35\xa2\x8a\xe4\xd5\x26\xfd\x6f\x51\xae\x74\xa0\x4a\x94\x9b\x5b\x01\xbb\x3c\x8b\x5f\xd5\xf3\x2f\x8b\xc3\x81\xce\xbf\x2c\x50\x2e\x08\x54\x2e\xbb\x52\xd7\x15\xcb\x86\xac\x30\xa1\x72\xc0\xca\xc3\x09\xee\x4a\x14\xfe\x30\x22\x3b\xe2\x21\x6b\x11\x43\x15\xd9\x11\x7a\x71\xc9\x80\xc8\xdf\x04\xa3\x38\x0d\x2d\xf0\xa2\xff\xa5\xff\x02\x30\x1a\x4c\x2a\xf6\x32\xb4\x90\x4f\x19\x56\x96\x8b\x97\x7e\x2b\x8b\x58\xc9\xb8\xff\x02\x38\xd6\x95\x28\xc7\x00\xca\x0b\xe7\x59\x46\x0d\xcc\x8a\x53\xcb\xb7\x5e\x29\x59\xe7\xb7\x88\x35\x42\xee\xd8\xc9\x1c\xd3\xe4\x5e\x60\xa2\xea\x95\xab\x57\xb3\x1e\x18\x3e\xaa\x0e\x5e\xb0\x99\x32\xca\x55\x79\xde\xb2\x75\x82\xb1\x8b\x58\x62\x99\xdb\x3b\xa5\xee\xc6\xb8\xc2\x16\x65\x92\x3c\xc5\x62\x10\x24\x1d\x35\x6b\x98\x0b\xc3\x4c\x71\x1f\x1b\xdd\x4d\xb5\x1b\x6e\xb9\x2f\xa9\x54\x64\x91\xa0\x9a\x7f\x5a\x20\x52\xa2\xa4\x16\x4b\xb8\xa5\x5f\x76\xa9\x6e\x15\xb3\xe9\x4e\xc2\xa8\x90\x73\x77\xf2\x5d\x6a\xb0\x2d\xcd\x5c\xb1\x27\x34\xf6\x0a\x87\x1b\xbd\x9e\xf0\xdb\x9c\xe5\x81\xf4\x28\xc4\x6f\xbf\xa4\xae\x57\xf4\x49\x6c\x6b\x11\x90\xa0\xae\xa6\xda\xec\x9f\xf0\xda\x9d\x7d\x3d\xa8\xf3\xf3\xe8\x08\x5b\x83\x79\x48\xc9\xc9\x84\x93\x9c\x56\x13\x74\x3f\xb4\x2f\x68\xb3\x88\x71\x43\xb7\x48\xca\xcf\xc8\xa0\x96\xab\x72\xe6\xdc\x75\x99\x47\xe7\xc3\x2d\x9f\x39\xb2\x35\xb7\x67\x1b\x3c\x6c\x37\x5e\x20\x70\x9d\x59\x7e\x10\x90\xa2\xe0\x7b\x48\x9e\x4e\xda\x4c\x01\x71\xaf\x00\x29\x21\x21\xdb\x19\xc5\x96\x04\x71\x74\x6f\xed\x2d\x75\xba\x59\x34\xdf\x11\xab\x64\x9b\x8d\x55\xcf\xf8\x54\x0b\x4b\xf1\x3d\x6c\xbf\xb2\x74\x7e\x92\xdb\x90\x73\x79\x0e\x90\xd0\xb9\xad\x0f\x91\x2f\xed\x23\x03\x57\x18\xd1\xa8\x86\x79\x45\x73\x9b\xb6\xd8\x77\x4c\x6c\x83\xae\x55\x22\x0f\xe4\xc3\x69\x0d\xa4\x9d\x6e\xd6\xf6\xf9\x2e\xf5\x4c\xdd\x72\xe5\x3b\x24\x63\xad\x3a\x4a\x44\xc2\x4e\x01\x38\xb5\x33\x6e\xad\xc3\x77\xc8\xe1\x20\x35\xdf\x19\xa3\x98\x3e\xb4\x5c\x2e\x92\xc5\x71\xa6\x35\xe5\x4d\x83\xf7\x18\xee\x1f\xad\x2b\x6a\xc4\x65\x59\x3d\xdc\x97\x36\x35\xd0\xe9\x89\x6d\xac\x61\x67\x62\x6a\x5d\x93\xe7\x52\x91\xf4\x76\xe3\x80\xaa\x3e\x3d\xf3\x04\x62\xa7\xd2\xb4\x03\xfd\xc9\xad\x75\x6b\xac\x03\x22\x1d\x4c\xa0\xb8\x30\xf8\xbd\x05\x1f\xd8\x2b\xed\xbd\xd7\x2c\x52\x35\x52\x2b\x07\x4b\x36\xd9\x3a\xcf\xd9\xda\xe6\xbf\xe1\xb4\x9b\x29\xfd\xda\xea\xdc\x95\x2b\xd5\x39\x91\x0f\xe9\x65\xab\x24\xaa\xab\xbf\x7e\x85\x92\x21\x6b\xd6\xb5\xf9\xba\x3d\xa7\xc5\xd6\x0c\x3b\x86\x27\x1d\xd7\x3d\xd2\xd3\x2f\x61\x66\x6b\x20\xef\x3a\x2a\xcd\xc6\x44\xf3\x7e\x18\x5e\xdd\xd1\xdc\x6f\x5f\x01\x71\x64\x1f\x5d\xf4\x7a\x47\xd7\xbd\x9e\x7d\x54\x47\xbf\xc3\xe1\xa8\xdd\x5f\xd3\x2d\x19\x27\xf1\x88\xa6\x5b\x2f\xb8\x1b\xee\x9c\x44\x58\x01\xba\x71\xda\x40\xc4\x7a\xa2\xf3\xeb\x85\x0a\x23\xa5\x89\xa4\x7e\x1f\xa2\xfa\x08\x3a\x26\xc7\x2b\x7f\x5a\xb4\x91\x14\x22\xca\x66\xda\x16\x10\x1a\x0e\x57\x15\x7a\x89\xa0\xef\x0f\x9d\xef\x48\xaa\x88\x4a\xf1\x9b\xfc\x52\x33\x94\x94\x78\x56\xd7\x64\x85\xea\x48\xa8\x41\xda\x26\x12\xbb\x61\x89\x76\xdd\xa2\xc7\xbb\x5e\xcf\x36\xc8\x19\xe7\x87\xf7\x9f\x2f\xde\x5c\x7d\x79\xf8\xfe\xde\x3d\xa4\x3d\x6c\x96\x42\x22\xcc\xbe\xf5\xac\xc2\x10\xed\x9c\x26\x71\xcc\x78\x49\x93\xd0\xc7\x31\xda\x75\xc8\x38\xdf\xb1\x54\x33\xe1\x0d\xda\x19\xb2\xd4\x37\x68\x63\x43\x7b\xc7\xdd\xbc\xb2\x65\xf8\x80\x9f\x90\xfd\x55\x1c\xf0\x65\xcd\x3c\x86\x07\xe7\x9b\xf1\x78\xc3\x87\x03\xf7\x93\x71\x38\x0c\x5e\xb2\xd4\xc1\x4b\xea\x11\x21\x30\xa0\x2c\xbd\xe5\x36\x82\x9d\xaf\xfc\x57\xe5\x88\xd2\x50\xf6\x38\x32\x5f\x69\x53\x1d\xf2\xb6\xc3\x0c\x4f\x67\xd3\xba\x87\xcc\xb4\x21\x44\x44\x79\x2d\x81\x0a\x17\x1e\x52\xac\x72\x84\x71\x5e\x57\xdb\x3c\x1a\x68\xf1\x68\x86\xdd\x69\x56\x49\x60\xb2\x7e\x1f\xb2\xdd\xf9\x41\x72\x1d\x28\x9d\x67\x0b\x78\x38\x1c\x5d\xda\x64\xce\x7e\x73\xe1\x38\xfb\x0b\xab\xb6\xd4\x1c\xa5\xdb\x8b\xd4\x3e\x3b\x31\x44\xcc\x3f\x1b\x82\xba\x8a\xc3\xac\x1c\x43\x13\xfe\x51\xd7\x74\x94\xc5\xb5\xc5\x54\x26\x63\x4e\x15\x1f\x52\xb9\x70\x05\xdb\x33\x99\xa1\x4b\x72\xd1\x70\x41\x29\xdd\xda\x37\x6a\x19\x1e\xde\x3a\x72\x67\x9a\x21\x6a\xe7\x41\x4f\xf8\x53\x17\x80\x32\x42\x94\xd4\x70\xa6\x3e\xc1\xd4\xc4\x66\xa9\xed\x56\xa7\x46\xd4\x44\x3b\xc6\x92\x3b\x1b\x7f\x7b\x9d\xc9\x3d\x8d\x28\xf4\xea\x29\x50\xd3\x06\x1d\xb5\xb9\x6d\xb3\x51\x1c\xd7\x07\x56\xcb\x22\xa8\xab\x81\x0b\x65\xd6\x9c\xe1\x5c\xac\x90\x94\xdd\x74\x28\x1b\x64\xbd\x9e\x5d\x6b\x32\x7b\xa0\xc9\x0c\x22\xd5\x1c\x44\x59\x89\x72\xb1\x45\x3f\xe1\x79\x87\x90\xa8\x4b\xab\x61\xf6\xde\x26\x50\xba\x3c\x2f\x51\x87\x28\x98\x28\x79\xcf\xcf\x5d\xb6\x52\x7b\xfd\x30\x46\x4a\xae\x9a\xdb\xd5\x42\xaf\xd7\xa1\x0f\x31\xfb\xb9\x6e\x24\x53\x3f\x98\xbf\x38\x4b\xa8\xd4\x87\xd5\xe8\x16\x1c\x7a\x6f\x7f\xe7\xa9\xe9\x99\xf1\xf9\x18\x46\xa4\x6f\xea\x11\x9a\x2c\x7e\x67\xa6\x5c\x84\xc0\x61\xfe\xee\xf9\x03\xeb\x18\xcb\x93\x78\x8e\x32\x46\x31\xef\x72\xc2\x1f\x5a\xfd\x9c\x88\x80\x21\x1c\x11\xae\xfe\xb5\xf3\x13\xe4\x63\x7d\x74\xd4\x9a\x43\x3b\xe5\xc7\x80\xc8\x4f\x6d\x52\x36\xcb\x7a\xbd\xd8\x4e\xf8\xc3\x9f\x9d\xe3\x04\x7a\xb6\xcf\x31\x1d\x27\xdc\x69\x5f\xf9\x5c\x08\xb6\x89\x9d\x37\xa5\x09\xbc\xd7\xad\xa0\x88\xba\x06\x8f\x22\xa7\xce\x19\x9b\x88\x30\x1f\x94\x87\xab\x46\x71\xc3\x77\x4e\xc3\x79\x35\xf2\xd1\x0e\x25\x28\x40\x05\xce\x18\x48\x38\x39\x28\xa1\x11\x89\x24\xb5\x57\x44\x62\x68\x94\x33\x92\xb7\x35\xb7\x41\x6b\x3b\x43\x5b\xd1\xc3\x1a\x1f\x45\xf6\x16\xf9\x10\x6d\xf0\x51\xc1\x87\xa6\x5f\x1b\x71\x86\x7c\xbc\x45\xeb\x5e\x6f\x33\xb3\x77\x98\xd8\x31\x2b\x47\xbb\x8e\x48\x3b\xc1\x6c\x42\x3e\x84\x28\xc0\xa9\xcd\xc6\xec\x43\xe8\xad\x67\x5d\xe7\x22\x0f\x93\x27\x5a\xfb\x65\xcd\x6d\x66\x1d\x0c\x1d\x1f\x54\x8e\x8f\x42\x9b\x1a\x0b\xbf\xc3\x14\xe5\xbd\x9e\x6d\x54\x47\x41\x69\x43\x2f\x28\xdb\xcb\x53\x54\x2e\xe2\x66\x6b\xfe\xed\x89\x11\x72\x08\x14\x10\xa9\xe1\x18\xa3\x61\x20\x75\x51\xd0\xf4\x4a\xa4\xd9\x45\xca\xb9\xa9\x77\xfe\x96\x2f\x85\x3c\xe5\x78\xc8\x6e\x99\xae\x5c\x25\xab\xac\x4c\x65\x31\xac\x57\x91\xa9\xb7\x36\x45\x73\xd0\xd1\x12\x40\xa0\xbb\x1d\x95\xa1\x5b\x01\x0b\xa1\xb0\xc0\x23\xd5\xee\x70\x2e\x7e\x24\x38\xe3\x3f\x94\x14\x29\xe6\x3b\x6f\xf6\xbd\xf7\x1a\xda\x02\xe7\x58\x6e\xcd\xbf\x8f\x38\x1b\x2a\xaf\x5e\x54\x5e\x6c\xc7\x83\x69\xfe\x2d\x76\xa7\xf9\xf1\xb1\x8e\x6d\x34\xcf\x17\xec\x32\x88\x23\x3b\x83\xfa\xc9\xb1\xbd\x73\xb5\x3b\x4d\x43\x5f\xea\x6d\xca\xad\x06\x2c\x6e\x70\xcf\xc5\x06\xf7\x5b\x52\x59\xf0\x93\x3e\xe0\x0a\x51\xa0\x9f\xf6\x41\x25\x5e\xb8\x5d\x93\xd4\x92\xb2\xfe\x38\x5d\x19\xd2\x3f\xd0\xcf\x9d\x2e\x51\x6b\x1f\x38\xc0\x5c\xbd\x7f\xb4\x29\x39\x7e\xea\xfd\xb1\xc3\x33\x46\xf5\xf6\x3d\xdb\x97\x1e\x41\xa9\x88\x1d\xc4\x3a\xff\xeb\x87\x4b\x64\xc4\xfd\x49\x67\xd7\x5e\xca\xd7\x76\x53\x5f\xc0\x37\x3e\xa3\xf0\x63\xc2\x56\x59\x97\xce\x66\x6f\x3d\x86\x72\xbc\x74\x63\x61\xab\x0a\xbb\xaa\x82\x3f\xfb\xe4\xf9\x0c\x3d\x9d\x8d\x5e\xf0\xaa\x60\x50\x15\x4c\x66\xef\xbc\x04\x15\x98\x6a\xe6\x42\x14\xbb\x47\x51\x55\xa8\x98\xfd\xdb\x2b\x5a\x07\xac\x34\xff\x80\xfb\x6a\x98\xbd\x9e\x9d\x19\x0f\x3a\x19\x4a\xb0\x2f\x8e\x6e\xe3\x19\x27\x39\x1c\x12\xfe\x36\xd3\x38\xb7\x36\xe6\xfb\xcc\x3f\xbc\x35\xba\x17\x65\xea\x07\xd9\xaa\x2a\x75\x3f\xfb\xe8\xdd\xa3\x1b\xa3\x25\xa3\xdc\xb2\x2a\x77\x33\xfb\xe8\xdd\xa0\x5b\x51\xae\x75\x79\xdc\x55\x05\x6f\x67\x1f\xbd\x5b\x74\x25\xdf\x5b\xd8\xb8\x01\x02\xf5\x51\x8a\x84\xda\x90\x8c\x32\xcd\xc4\x66\x67\x6c\xcf\x7d\xc5\x6c\xcf\xc4\x08\x34\x16\x1e\x40\xf4\x19\xff\xc0\x0e\x2b\x9e\xd5\xdc\xbe\x10\x5d\xe3\x1f\x78\xd8\x2a\x50\x2d\x69\xa5\x0d\x91\xdb\x11\x0a\xed\xbd\xf1\x30\xa1\x5e\xb8\x00\x6a\x3c\x5f\x3c\xfc\x88\xa6\x1f\xcf\x1e\x7e\xc1\xd0\x64\x2d\x44\x1d\xa7\x8f\xf7\x15\x75\x9f\x3e\xde\x67\x54\x3f\x7d\xbc\x6b\xc4\xe0\xeb\x15\xa8\x0e\x5f\x6f\x83\x9a\xf0\xf5\x56\xa8\x0d\x5f\x6f\x89\x3a\xe0\xeb\xdd\x95\xe8\x0a\xf2\xd8\x08\xd3\xd4\x61\x27\x3f\xf0\x41\x97\xbe\x62\xc1\x3d\x4d\x88\x12\xcb\xce\x12\x7f\xe4\x44\xdd\xe0\xc4\x7d\xbe\x96\x99\x3c\x05\x50\x8a\x89\x23\xd4\xf7\x1f\x21\x74\xd3\x59\x2a\x03\xd7\xfb\xcb\x84\xcc\x28\x36\x3f\x3d\x9b\xe2\x94\x31\x79\x2a\x01\xb0\xd1\x56\x9f\x98\x42\x8f\x62\xf0\xe7\x3f\x1b\x25\x10\x2d\x1f\x9d\x72\x2e\x27\xf4\x84\xaf\x66\xbb\x79\xaa\xa5\xb8\xa2\x61\x2b\x95\x5e\xae\xc1\x2d\x48\x56\x8c\x25\xc7\xd8\xeb\x11\xae\x13\x99\xb6\x75\x22\x79\xcf\x4f\xb8\x7c\xae\x83\xb2\xe3\x21\xd1\x7c\xc0\xe3\xf2\x59\x76\xd7\x28\xf9\x6a\xd7\xcb\x63\xeb\x46\x7f\x8c\x38\xcd\x66\x99\xcd\x48\x2c\x02\x3d\x6a\xf3\xf0\x24\xa5\xe2\x59\xe0\x34\xe3\xaf\xb3\x5c\x32\x72\x21\xaf\x16\x1e\x56\xd5\xc7\x19\x9b\x59\xdb\x79\x51\x0d\x8c\x47\xe6\xa0\xba\xe7\xac\x95\x43\xb9\xea\xd3\x17\x4c\xd1\xb3\xf4\x15\xff\x03\xce\x68\xca\xa6\xa2\xe4\x03\xaa\x9a\x6c\x2d\xc1\xd7\x38\x0d\x01\xea\xec\xc7\x15\x7e\x6d\xa8\x76\x80\xfe\x58\x3b\x5b\x9f\xae\x75\x3b\xb4\xd9\x4e\x69\x70\xf0\x12\x9e\x99\x04\x8c\x81\x58\xe0\x0a\x20\xf2\xa0\x66\x29\x2f\x91\xac\x8b\x87\x7b\x79\xb4\x66\x6e\xd4\x4c\x1f\x1e\x9f\x72\xae\xd4\x31\xba\xf7\x4f\x8e\x2e\x7f\x6c\x74\x2d\xdf\x48\x7e\x47\x1f\xaf\x7f\x1b\x04\xca\xfa\x83\x31\x83\xf3\xae\xa3\x97\x8b\x27\x7b\xe1\x5a\x2c\xbf\x12\xd2\x31\x25\x9b\xe7\x80\xba\x11\x04\x4c\xa9\xd3\xd8\xe9\xe1\x40\x61\x7f\x70\x38\x68\x83\x62\xad\x21\x28\x13\x30\x7d\xe5\xce\xd4\x47\x9f\x7a\x7c\x6f\xed\x8a\xb5\xd4\xc3\x23\x28\x87\x66\x44\xe2\xa0\xa2\xe7\x6a\x4e\xe7\x35\x13\x6b\xa4\x7a\x5f\x6d\x2d\x3c\x36\x85\x6e\x33\xea\x31\x4a\xf1\x9d\x4f\xd7\x33\xb0\x61\xc8\xee\x29\xe9\xdc\x0c\xb0\x5f\xc0\xab\x3b\xd5\x20\x70\x06\xb8\x8d\x27\xf0\xc0\x5c\x34\xc4\x3d\xc1\x2f\x80\x3e\x5e\x0d\xa9\x23\xcd\x3e\x73\xd5\x06\x15\x57\x6d\x06\x42\x9f\x12\xe0\x99\xe7\x9a\x36\xa0\x57\x85\x7b\xbd\x97\xff\xeb\xc7\x97\xce\x37\x3f\xbe\x7c\xe9\x50\x52\x50\xbb\xca\xb2\x21\x9c\x81\x9c\xac\xc8\xdd\x16\x78\x6a\x1e\x15\x44\x0a\xcd\x7f\x46\x28\x64\x1c\xe2\x16\x6f\x0f\x87\xf9\x42\xba\xd5\xb1\x23\x1c\xb1\x4f\x28\x97\xc4\x85\x2d\xff\xec\xca\x9b\x37\x97\x67\xe6\xad\x40\x1f\x32\x3b\xef\xf5\x72\x7b\x8d\x42\x25\x10\x6c\xb8\x29\xb4\xbb\x96\x23\x6f\x2c\x47\x0e\xa1\xe8\xc4\xd9\xe6\x24\x8a\x13\x4a\x58\xab\xd5\x47\xb3\xfd\xdc\x49\xb9\x37\xcf\xf8\xdf\x72\xd5\x37\xd8\x48\x62\xa5\xb9\xa0\x63\xba\xe1\xba\xc9\x9b\xb9\xbb\x40\x14\x6f\xe6\x83\x05\xbb\x21\xd6\x42\x0b\x2c\x84\xa5\x82\x1e\xc6\x38\xe0\x11\xdf\x6b\x09\x22\x10\x2c\x36\x01\x8e\x28\xa6\x26\xfc\xa5\x1b\x82\xe7\x61\x1c\x5a\x75\x16\xa4\x8d\x82\x14\xa2\x9b\x86\x06\xd7\xfd\xe1\xb0\xed\xf5\xb6\xf3\xad\x66\xd2\x16\x4e\xb2\x2e\x3a\x92\x1a\xa2\x6d\x3b\x84\x68\xd9\x68\x6c\xd5\xd1\x58\xde\x6e\x2c\xef\x6a\x8c\x7b\x78\xba\xe9\xf5\x96\x30\xb5\x19\x97\x17\xdb\x6b\x44\x61\x15\x23\xff\x68\xd9\xeb\xdd\xc8\x3c\xdf\x5e\x23\x62\xe4\x31\x08\x1f\x09\xb8\xca\x12\x19\x2b\x51\xab\x2f\x76\x84\x5e\x0e\x72\x4c\x8f\x30\x76\x1f\x2e\x5e\xa1\xd9\xbd\xa9\xc5\xa7\xfd\xce\xc5\x91\xbd\x75\x24\x0a\x75\x89\xef\x28\x83\x19\xdb\xdf\x25\x84\xea\x20\x22\xc2\x65\x71\x57\x9f\x7b\xde\x1e\xc7\x9e\x7d\xb2\x2e\x3c\x82\xf2\x75\xc1\x55\x7a\x9a\xe7\x82\xc0\xca\x5b\x2e\x66\x57\x87\x18\xba\xc5\xee\xf4\xf6\x95\xf6\xc8\x70\xdb\xef\xc3\xdb\x6f\x35\xe7\x3d\x13\x3d\xee\xec\x35\xba\x45\x02\x80\xf2\x09\x8f\xcc\x6f\x17\x10\x42\xaf\xb0\xd9\x2f\x44\xd9\x3f\x6c\x5f\xb3\x82\x5b\xa1\x40\x3c\xbd\x7d\x45\xb5\xa7\x87\x66\x43\xb1\x6a\x88\xce\x6f\xfb\x7d\xd6\x54\x15\xe0\xe1\xae\xf9\x92\x70\xd5\x7c\x49\xb8\xeb\xf0\x12\xc4\x85\x60\x82\x5d\xbc\xd2\xda\x90\x19\x9c\xfa\xdf\x62\x77\x66\xb3\x71\x66\x6c\x9c\x99\x1a\x67\x86\xb6\xac\xe5\xc4\xbe\xe2\xa2\x1f\x59\x40\x8e\xaa\x2a\xc2\xe8\xfb\xab\xee\x78\xaa\x45\x35\x07\xa2\x5a\x25\xa2\x4a\xa9\xd0\x16\x57\xf8\x2b\xbc\x95\xca\xa5\xb4\x0d\xb7\x40\xf7\xbd\x5e\x5c\xbc\xf7\xdf\x73\xfc\x12\xbf\x28\x3c\x1c\x1a\xab\x6d\xdc\x60\x51\x4b\x14\x98\xe3\x9c\x1d\x9c\x48\x1c\xb0\xb5\x51\xf2\x20\x7b\x1c\x3f\x88\xf0\x22\x8f\xd4\xcb\xcb\x2c\x57\x82\x49\x43\x01\xbe\x8a\xe8\x43\x7a\x3d\x86\x73\xbd\x5e\xea\x30\x6a\xcd\x94\xcc\x10\x94\xe1\xe3\x01\x17\xa3\x32\x02\x6c\x26\xfe\xe8\x99\x7a\xee\xb4\xdf\xcf\x5e\xc5\x53\xd8\x79\xd0\xce\x45\xf1\x79\xb6\x58\xf4\x7a\xb6\xf9\x69\xf8\x7e\xd5\xce\xc1\x64\xde\x6c\xbe\xf0\xf6\x25\x44\x39\x36\x2b\x28\xe3\x63\x35\x44\x1e\xe5\xef\x02\x78\x47\x86\x96\x78\x15\xe4\x26\xe7\xf5\x38\x3c\xaa\xe1\x56\x16\x60\x74\x9e\x2e\x90\x8f\xf3\xfa\x64\x38\x2e\x8b\x27\x29\x5f\xbc\x45\xe1\x78\x9e\xb7\x46\x90\x37\x46\x40\x6c\xb3\x14\xd7\xe6\x0a\xc9\x1d\xfb\x4b\xc9\xa6\x16\x94\xf0\x35\xf0\xe4\x2b\x65\xad\x5d\xa3\xc4\x15\xe0\x36\xcd\xe0\x3d\xf0\xcc\x22\x38\x67\x27\xa2\x0c\x45\xf0\xe0\x30\xf8\xac\x1e\xef\x9e\xe2\x44\x3c\xa7\x74\xf7\xc9\x0d\x35\x44\x5f\x5a\xe5\xd9\x96\x2b\x6f\x2e\x86\x97\xa3\x54\xf6\x93\x3e\x36\xcd\xda\x02\x76\x77\x59\x43\x8a\x54\x4c\xb3\x66\xd7\xa0\x19\xb0\x20\x4b\xb2\xdc\xb3\x40\xff\xc3\x9c\x2c\x1c\xfe\xd5\x07\x53\x2b\xca\x52\x7a\x7c\x4b\xe2\xd5\x9a\x7a\xd6\x32\x4b\x42\xd0\xf0\x10\x68\x46\x4a\x17\x7e\x31\x85\xbb\xd9\x59\xea\xac\xf2\x6c\xb7\xbd\xcc\x92\xc4\xdf\x16\x24\xb4\x41\x18\x47\x11\x80\x9e\xcc\x50\xdf\x52\x6d\x86\xc0\x7d\xea\x24\xd9\x4a\x27\x67\xb3\xac\xfb\xb8\x50\xc6\x04\x6c\x81\x1a\x31\x23\x6a\x59\xdc\x1f\x8e\x4f\xd7\x22\xd6\xff\xba\xe0\xb1\x0d\xf2\x75\x81\x62\x4c\x24\x78\x7d\xf6\x8b\x92\x4d\xc3\xf6\x9e\x41\x50\x80\x65\x9e\x3a\x3f\x67\x71\x6a\x03\x07\x40\x94\x23\xf0\xe3\x6e\x38\x38\x1f\x02\x94\x2d\xa6\x1a\xc4\xed\x82\x2a\xf7\x75\x57\xae\xcc\xbb\xe8\xca\xeb\x83\x39\xe8\xc7\x7d\xb0\x00\xc8\x5f\x34\xec\xed\xe7\x0b\xfe\x06\x32\xe5\x50\x92\x94\x72\x8a\xe6\xe0\x4f\x01\x5f\x34\xba\x70\x28\xb9\xa3\x68\x6b\x53\xb8\xe0\x1e\x20\x7c\x6a\x7f\xe6\xd4\x57\x09\x19\xd0\x39\x6c\x7f\xdc\x0d\xdd\xc1\x58\xfc\x6b\xa5\x99\xc5\x60\x6d\x99\x89\x40\x2c\x9f\x5c\xa3\xab\x34\xb4\xdb\x0b\x54\x6b\x84\xb7\x40\xd2\xb0\xd6\x8a\x55\x13\xd8\x6e\x2a\x3c\x91\x70\x7e\x1e\x51\x25\x17\x43\x12\x02\x5e\x5b\x52\xa0\x6a\xce\xf3\xc5\x8c\xfd\xa3\xf9\x87\xcf\x76\x0a\xa1\xc7\x23\x71\xf0\x26\x74\x1d\xed\xcc\x80\xdd\x7e\xcd\x80\xeb\xc6\x90\xef\xeb\x2f\x04\x49\xb6\x5a\x91\x9c\x8b\x37\x7c\x5e\xe0\x3a\xf7\xd3\x22\xca\xf2\x0d\xc9\xb9\xcc\x98\xc6\x34\x21\x6f\x18\x91\x4a\x29\xc9\xeb\x92\xe2\x2e\x04\xa5\xf1\x86\x14\xd4\xdf\x6c\x39\x96\x86\x3b\xe1\xfc\xb9\x43\xa2\x6b\x84\x47\x9d\x03\xd1\x37\x58\x18\x66\x66\xec\x3e\x02\x7f\x0a\x40\x5f\xd2\xad\xd2\x55\x04\xe7\xfc\xab\xec\x3f\x5b\xa0\x9f\x43\x94\x9a\x69\x76\x9c\x5a\xa0\x9f\x39\x34\x7b\x13\xdf\x91\xd0\x1e\xc2\x3e\xb0\x36\x05\x04\x10\xc5\x12\x23\xf9\x32\xda\x14\x4a\x51\x77\xa0\xb6\x32\x0f\x36\xc5\x8f\x88\x82\x8b\xb4\x13\x72\x43\x12\x14\x70\x49\x50\x14\xa1\xa2\x9b\x16\x6e\x00\x69\xda\x15\x5e\x35\x43\x11\x94\xc1\xa9\x32\xe1\x36\x9b\x84\x68\x5b\xfd\xe6\x11\x2d\xee\x71\x26\x97\x01\xad\x70\xc6\x38\x89\x1b\x2e\x71\x42\x37\xca\x07\x2c\x5a\x62\x36\xb1\xec\x2b\xba\xc5\x99\x93\x92\x3b\x21\x92\x42\x57\x98\xcc\xa3\xfe\x60\x31\xbd\xea\xf5\xec\x5b\x7c\x65\xd4\x5d\xe2\x2b\xd5\xc9\x71\x08\x65\x50\x9d\xdc\xbe\x87\xe8\x33\xee\xc0\x39\x7f\xe6\x77\xbc\xd4\x5a\xb7\x25\x44\xf7\x28\x83\x9e\x8f\xae\xf1\x9d\xbd\x85\xe8\x03\xde\x89\x89\xcf\xaa\x23\x56\xa6\xd8\x5f\x61\x1f\x4c\x81\x07\x00\xba\xc4\x73\x95\xbd\xca\xfd\xfb\xc6\xb9\x9b\xb0\x3f\x24\x9f\x82\xc5\xf4\x52\xac\xdf\x07\x88\x68\x85\x44\xbd\x9e\x4c\x7e\x4e\x1b\xfc\x25\x4f\x22\xdc\x2f\xab\xc8\x81\xf2\x11\xc7\xf6\x57\x74\x8d\x96\xe2\xa0\xf8\x3c\x93\x93\xe9\xf5\x8a\xd6\x91\xdf\x3c\xa5\x3e\xea\x83\xe9\x12\xea\x7b\xa0\xba\x20\x3e\x42\xaf\xdd\xd8\xb3\xda\xb0\x3f\xb6\x4e\xa9\x8f\x50\xaa\xac\x6c\xec\x04\x7d\x45\xf3\xd5\x02\x01\xbd\xda\x00\xa2\x9f\x55\xc6\xd7\x05\x52\x1b\x0b\xa2\x0b\x95\x7a\x83\x58\x05\x8e\x4c\x00\xa2\xf7\x2a\xf9\x76\x81\x80\x46\x27\xc0\x79\xa6\x2f\x8c\x13\xd9\x55\x98\x24\xf0\xf7\x13\x36\x97\x5b\x67\xda\x2b\xd8\x7d\xab\x4e\xd3\xf9\x97\x05\xdb\x96\x16\x2b\x6b\x71\xad\x7f\x80\x3e\xa1\x95\x74\xce\x2f\xb2\xcd\xbc\x15\xef\xfd\x67\xd1\xbb\x98\x80\xe8\xfa\x6d\xad\x6b\x91\x23\x50\xad\xbb\xdf\x9f\x45\xbf\xa2\xa0\x65\x59\x16\x40\x6f\xd1\x57\xdd\x2f\xcb\x36\xf3\xbe\xf2\x7e\x6f\x7a\xbd\x0b\xd1\xb5\x50\x6d\xe3\x3d\xbf\xa9\xf5\x2c\x82\x65\xdd\xa0\x07\xa6\x3c\x65\x7d\x5f\x88\xbe\x85\xaf\x04\xd1\xfe\x1b\x74\xa3\xfb\x66\xd9\x66\xde\x0d\xef\xfb\xbd\xe8\x58\xaf\x83\xe8\xfc\x5d\xad\x73\x9d\x69\xdf\x3e\x3c\xf3\xf7\xa2\x77\x56\x56\x41\xf5\x1d\xba\xd5\xbd\xb3\x6c\x33\xef\x16\x4e\x83\x5e\x6f\x6d\xaf\x18\xef\x85\x3e\xff\xd2\x9b\x32\xc9\x56\xad\x8b\x92\x1d\xb0\x26\x47\xb2\xd2\xfa\x85\x4d\x63\xd8\x6f\xdd\xce\x08\x96\xae\x19\xc1\xd2\x65\xa4\x3d\xa2\x4d\xb7\xca\x25\xba\xe4\xf1\x15\xea\x17\x19\x9f\x54\xf3\x1e\xe3\xc0\x36\x13\x63\x4c\x19\xf6\x86\x71\xc0\x0e\x49\x5f\x34\xc1\x1f\x80\x0b\x7e\x0b\xb0\x03\xff\xa3\xca\x6f\x85\x85\x54\xcc\x07\x6c\x5e\x6c\xed\xa7\x80\xee\x17\x06\xe3\xba\x2e\xcb\x52\xa8\x59\xaa\x07\x86\x5e\xaf\xd2\x0c\x57\x1d\x34\x02\xb5\xcd\x73\x12\xee\xee\x8e\xc5\xac\x17\x96\xf9\xc5\xed\x58\xb8\xce\x7c\x92\x90\xb0\x16\x59\x2f\x13\x96\x26\xb2\x9c\xd2\xab\xb7\xfc\xc2\xda\xc4\x61\x98\x90\x5b\x3f\x27\xde\x8f\xe9\xcb\x97\xd6\xf7\xa2\xc8\x6d\x4c\xd7\x96\xa4\x26\x94\x42\xfd\x8f\x69\xbc\xe1\x81\xfc\xf6\xaa\xa1\xd2\x8a\xf2\x6c\x63\xbd\x30\x47\xf1\xe2\xc7\x94\xbf\x17\x58\x5c\xc1\xda\xc2\x96\x78\x51\xf8\xcc\xbe\xec\x1f\x53\x8b\x0f\x39\x20\x39\x62\xbf\xf9\x49\xf8\x4e\x0f\xc1\x16\x4d\xc0\x1f\x53\xc8\x07\xf3\x21\xe7\x9a\xff\x81\x9f\xca\x56\xd8\x67\x6e\x65\xb7\xa9\x1a\x01\x1f\x67\xb0\x2b\x68\xb6\xd1\x7a\xff\xd2\xfb\xde\x32\xa6\x4e\x72\xff\xd2\x1c\xdb\x71\x73\x26\xa2\x55\x39\xe7\x47\xe6\x22\x7b\xc3\xb5\x0a\xf6\x9e\x4d\xe1\xe5\x4b\xcb\x71\x1c\xdd\x70\x09\xa7\xff\x29\x00\x80\xba\xe1\xe7\xaf\xc1\x2e\xa1\x99\xa4\x2d\x60\xad\xf6\xc3\x1b\x79\xf8\x75\xab\xa3\x87\xe0\x21\xb1\x6a\xdc\xeb\x1d\xc5\x76\x8a\x82\x4a\xfb\xd9\x0e\xa0\x74\xc7\xb0\x2f\xa7\x89\xb8\x94\x0b\xa8\x82\x3d\x91\x10\x5f\x89\x98\x88\x55\x0a\x23\x85\xb8\x8a\x3e\x8f\xd4\x59\x54\x77\x0c\xce\xb9\xe7\x4f\x54\xc8\xb3\x1f\x07\xbc\x65\xa5\x3e\xc0\x36\x91\xcf\xe3\xa9\x46\x98\x75\x5b\x1d\x5a\x85\x72\xa4\xaf\x43\xc2\x88\x12\xd3\x82\xd3\x52\x6a\x08\xc7\x7a\x08\xa8\xa8\xce\x59\xd9\xeb\x54\x10\x6f\xe2\x60\xa8\x87\xeb\x90\x93\xdf\xcd\x76\x7c\xea\x9e\x28\xc3\x86\x73\x6f\x27\xa8\x75\x66\x51\xb4\x67\xf9\x5e\x58\x42\x88\x12\x25\x06\x72\x51\x51\x53\xa6\x2e\xea\xca\xd4\x91\x7a\x25\xbc\x41\x4b\x74\xdb\xad\x90\xd9\x99\xc8\x00\x29\x04\x7c\xb4\x3f\x80\x82\xfe\x25\xb0\xb4\x81\x0b\x10\x3d\x36\xe5\xc4\x4a\xdc\xd1\x27\x25\xba\xeb\xb2\x58\xbf\x15\x67\xd4\x5f\xb3\x5d\x5e\xd8\x10\x31\xba\xda\x03\x7d\x99\xfa\x2e\x4e\x77\x94\xb4\xd3\x3f\x93\x20\x4b\x43\x95\xee\x18\xe5\x93\x24\x2e\x74\xe6\x08\x96\xe8\x0a\x77\x49\xf2\x8d\x20\xae\x5a\x48\x5a\x4b\xeb\x58\x0a\x23\x9f\x2d\xed\xcc\xf8\xf6\x38\x56\x7d\xed\x22\x7d\xdb\xf1\x5d\x7e\x9f\xf0\x2e\xff\xd9\xe8\x2e\xe8\x73\xd3\x4c\xa1\x2d\xd7\xad\xdc\x51\xb8\x28\xc5\x32\x5d\x3f\x62\xd1\x4a\xbc\x4b\xb9\x31\x3b\x5d\x60\x32\xa7\x8b\xca\x8c\x47\xd9\x2c\xf0\x86\xd9\x01\xc9\xcd\xdf\xae\xd9\x91\x72\x83\x9f\x7a\x37\xe9\xe0\x7f\x7b\x3d\x32\x23\x5e\xd7\x6a\xd7\xfd\x24\xed\x4b\x64\x2f\xf1\x8d\xf3\x9a\x90\xed\xeb\x38\x8a\x60\xaf\x77\xdd\x8e\x45\xd0\xd5\xce\xb2\xd7\xab\xaa\x61\x8c\xa3\x5e\xcf\x36\x12\x96\x5a\x6b\x87\xcb\x6f\x19\x7f\xc6\xd8\x48\x3b\x16\x7f\x7c\xf1\x67\xc7\xfe\x74\xbd\x28\xc6\xa4\xb0\x23\xb9\x8d\xe5\x7b\x62\xd4\x78\x4f\x44\x95\xc2\xc4\x6b\xa3\x58\xd1\x2c\xc6\x8f\x7e\xb3\x44\xf3\x7d\x5f\x48\x59\x9b\x72\xdb\x1c\xee\xd3\x5e\xef\x48\x94\xca\xe1\xe1\x10\xca\x5f\xc2\x79\x6f\x47\x1f\x42\xaf\x46\xf5\x12\x36\xcb\xe4\xe4\x86\xe4\xb4\x5e\xa8\x39\x94\x2e\x99\xef\x8d\x0a\x9f\x8d\x89\x14\x84\x36\x64\xbd\xd2\x5f\x42\xc6\x1d\x25\x74\xe1\x47\xac\x44\x79\x39\x17\xf7\x9a\x9f\x78\x5f\x42\x14\x63\x33\xe9\xbf\x89\x40\x57\x49\xe3\x1a\xe2\xda\x64\x5d\x98\x05\xdf\x77\x4a\x7e\xff\x03\x02\x5d\xd5\xbd\x94\xdc\xb6\xbb\x55\x12\x5f\x43\xa0\x6b\xae\xc2\x13\x72\xdc\x6a\x76\xc6\x5a\xa6\x8f\xcd\xae\x2a\x57\x96\x2d\xfc\xe5\xde\x22\xa3\x24\x0e\x68\x0b\x33\x3b\x03\x8a\xa8\x33\xa0\xd5\x50\x9a\x3d\xd9\x90\x75\xdd\xeb\xd9\xd7\xdd\x02\x5a\xc2\x03\x13\xa0\x6b\x61\x16\x89\xa2\x66\xfb\x52\x1d\xf1\x03\xde\x5f\x79\x7b\xc1\xb3\x81\x3f\x0c\x07\xe7\x27\x6f\x46\x00\x51\x72\x47\x3d\x70\xf9\xd7\x8b\xf7\x7f\xb9\x7a\xed\x81\x12\xbd\xaf\xca\x8c\x2f\x2f\xde\x4c\x5c\x55\xe6\xe2\xf5\x6b\x51\xe2\x75\x55\xe2\xcd\x78\x3c\x1a\x9d\xa8\x12\xaf\xaf\xbe\xbf\xba\x16\x65\x2e\x1e\xea\xe9\xe2\xd3\xa7\x8b\x7f\x7a\xa0\x2c\xd1\x25\xde\x73\x41\x96\x07\x92\x6c\x05\x90\x20\x2e\x3d\xc9\x51\x20\xcd\xf6\x08\xa5\x1d\x29\xb3\x90\x0f\x3f\x48\xb3\x48\x2a\x41\x49\x58\x54\x90\x12\x2e\xa7\x61\x55\x9b\x6c\x57\xe7\x45\x58\xa2\x96\x98\xf1\x81\x72\x4d\x86\xed\x81\x62\x42\x58\xe7\xed\xb9\x74\xa5\x03\x2d\xe2\x74\x4d\xf2\x98\x82\x12\x69\x32\xb2\xa3\xd4\x1f\xce\xaf\xd8\x7f\x40\x0d\xaf\xab\x88\x3b\xba\x38\x7f\x33\x06\x25\xd2\x94\x61\x57\x29\xb9\x92\x2a\x60\x54\x47\x89\x37\x43\x77\xec\x8e\xd9\xba\xf0\xeb\xe3\x68\x80\x6a\xac\xa6\x82\x33\x35\xa6\xae\xac\x03\x3e\xb6\xad\xf5\x7e\x0b\x37\x6d\xd8\x1f\x77\x70\x00\x1d\x14\x0b\xad\xbb\xed\xd4\xfa\x85\x2b\x1b\xda\x95\x95\x0a\xad\x9c\xb5\xa5\xa5\x34\x6d\x68\xb0\xaf\x3f\xa6\x35\x06\xd6\xba\x19\x2d\xac\xef\x3e\x5d\x5d\xfc\xed\xed\xfb\xbf\x58\x62\x8b\x74\x15\xf9\x1c\x33\x76\x75\xe4\xb8\x8e\x5b\x67\x79\xa5\x6b\x3f\x6b\x79\xaf\xb9\xd5\xa4\x83\x83\x2d\x08\xa5\xdc\x29\x65\x57\xe3\xe2\xea\xeb\xca\x79\x36\x97\xd8\xae\x4a\xb3\x47\x1a\xdc\xd7\x9b\x7c\x80\x8d\x06\xb0\x9c\x52\x15\xd0\xaa\xc0\x97\x48\x69\xe7\x89\x6a\xdc\x05\xb0\x28\x8c\x3f\x22\x5d\x10\x7f\x7c\xd8\x11\x62\x15\x29\x4b\x6b\x43\x71\x05\x28\x1e\x2a\xa7\x53\x9f\xf2\x09\xef\xff\xdd\x8e\x26\xd5\x26\x4d\x83\x2c\x24\x3f\x7c\x7a\xab\x75\xdf\x6d\x02\x2b\x3f\x9f\xf3\xa3\x17\x36\xfc\x66\x51\x73\xf6\x59\x3d\xde\xfd\x09\xf4\x89\x13\xac\xfd\xfc\x32\x0b\xc9\x05\xb5\x5d\x58\x31\x2c\x83\x13\xf6\xf1\xc3\x76\x4b\xf2\x4b\xbf\x20\x2a\x68\xcc\xe0\xe4\x09\xdf\xf0\x32\x56\x01\xf7\x15\xb7\xba\xba\xdb\xda\xe0\x4f\x73\xff\x38\x72\x8f\xcf\x17\xfb\x61\x09\x10\x58\xc5\x00\xa2\xac\x56\xc2\x36\x8b\xc0\xbe\x2c\x34\x6d\x6a\xe7\x19\xf1\x28\x43\xd2\x9e\xb6\x7c\x7d\x00\x3a\xd0\x5a\x06\xf7\x65\x1c\xd9\x03\x5c\x19\xe9\x55\x66\xc3\x94\xdb\x6e\x2a\xdf\x84\x4a\xe3\x09\x51\x88\x2a\x9d\xb4\xca\x3c\x56\xd0\xe6\x35\x8f\x92\x81\x2f\x5d\x0f\xce\x17\x28\xb6\x53\x88\x62\x3b\x87\x75\x75\xbf\x27\x87\x6c\x8c\xb4\x62\x22\x88\xb3\x91\x71\xe2\x50\x8a\x07\xd3\xb4\x52\xe3\x48\xfb\x7d\x48\xb1\x4d\x70\xcc\xa9\x87\x6a\xc2\xba\x46\xe5\x54\xaf\x7c\xd0\x3f\xa9\x72\x18\x6c\xd8\x9c\x76\x47\x63\xbc\xba\xdb\x92\x80\x92\xd0\xfa\x49\x60\x59\xf8\xc3\xa7\xb7\x3f\x59\x34\xb3\x96\x95\xdd\xc6\x4f\xa2\xb1\x9f\x90\xb5\xca\xa8\xf5\x93\x69\xc6\xf1\x93\x7c\x14\xd4\x16\x17\xa4\xc2\xcb\x1f\xfb\x2f\x57\x08\x58\x00\xa2\xc7\xc0\xd2\xc5\x7c\x9b\xfe\xc2\xf6\xe0\x4f\x6f\xae\xfe\xf4\xe6\x0d\xf0\xc0\x8f\xbb\x28\x8a\x42\xf1\x2f\x40\xe0\x4f\x6f\xde\xfc\xe9\xcd\x55\x33\xbd\x44\x3c\xdc\xdf\x1d\x09\xb8\xb6\xdf\x54\xac\x4f\x3a\xcf\xe7\xee\x62\x81\x3b\x46\xc2\x32\x8c\xc1\x48\xe7\x94\x22\x79\x1a\x1f\x61\xcc\x7e\xf5\x7a\xb6\x6a\x22\x86\xa5\xd1\x43\x99\xce\xc1\x9f\x2e\x87\x60\x81\xe5\x30\x80\xb6\xb1\xdd\xd5\x54\x6a\x52\x88\x12\xec\x4e\x93\x57\x3b\xb5\xd2\x89\x72\x61\x18\xe0\xdd\x3c\x59\x4c\x4d\xe0\x19\x3b\x27\x40\x60\x05\x20\x4a\xe7\x81\xe9\x98\x90\x75\xcd\xb6\xea\x13\x4e\x90\x1f\xd5\x32\x8f\x0d\xc5\xfa\xa8\xb3\x84\xff\xa4\xea\xfd\xce\x28\x11\x76\x96\x48\x8c\x12\x41\x67\x89\xc0\x28\x41\x1e\x34\x01\xa8\x0c\x0c\xed\x89\x0b\xa7\x47\x35\xb2\xd2\x79\xf3\xe1\xd3\xbb\x8b\xeb\x2f\x57\x9f\x3e\x7d\xf8\x84\x81\xf9\x05\x10\xb7\x74\xff\xe1\xe3\xc7\x0f\x9f\xae\xaf\x5e\x7f\x11\x79\xd7\x57\x9f\x30\xe8\x4c\x66\xe5\xdf\xbe\xff\xfb\xc5\xf7\x6f\x5f\x7f\xb9\xfc\xf0\xfe\xcd\xdb\xbf\x60\x50\xff\x66\x25\xde\xbd\xfd\xfc\xf9\xed\xfb\xbf\x7c\x79\x7d\x71\x7d\x81\x81\xf9\x65\xe6\x5e\x7f\xba\x78\xff\xf9\xfb\x8b\xeb\xb7\x1f\xde\x57\x85\x8c\x44\x50\xda\x39\xb7\x69\xdc\xab\x09\xc6\x0f\x05\x37\x32\x2d\x0a\x31\x31\x55\x7e\xe7\x7f\xe6\x92\x19\xfa\x73\xf1\x32\x4e\x69\x22\x6c\xb0\x84\x6d\xd5\xc2\x02\xfd\xbc\x0f\xac\x1f\x53\xd0\xb7\xb3\x19\x60\x7f\x33\x47\x3a\x9e\xee\xcb\xcf\x82\xfa\xc1\x57\x8f\x1d\x31\xc2\xf9\x50\xf5\x84\xcc\xf6\x0a\x4e\x3b\x63\x1b\xf2\x4e\x9c\x40\x04\xe2\xf9\xcc\x5a\xb8\xce\xfd\x80\xf4\x7a\x0f\x64\xd8\xb1\xf0\x42\xda\xf4\x6c\xb0\x84\x32\xf4\x52\x69\x5f\x89\x10\x9d\xfe\x43\x10\x30\xcd\x5a\x6b\x00\x78\x60\x19\x59\x79\x31\xa3\xc7\x7a\x8d\x6b\x8e\xb9\x9e\xd9\x63\x13\x1f\x9e\xdd\x55\xf2\x8b\xbb\xaa\xa3\xd6\xb3\x3b\x0a\x1e\xe9\xe8\x41\x4c\xaa\x6f\x1b\xca\x11\xe7\xfb\x2c\xf0\x13\xe2\x09\x7c\xfa\x31\x7d\x27\x70\xe7\xed\x6b\x96\x22\x7d\x9e\xe2\xfc\x70\xd0\x4a\x0d\xb9\x32\xb6\xcd\x9d\x38\x84\xac\xca\x6b\x49\x3b\xca\xaa\xcf\xa8\x28\x29\x30\x59\x41\x36\xa2\xbd\x6f\x3c\xab\x81\xca\x57\x87\x40\x7f\x94\xb5\xb0\x5b\x15\xca\x72\x9c\x3f\x8e\x99\x31\x44\xc5\xa3\x0b\xa7\xd4\xdc\x3b\xd6\xcd\xdc\xed\xe8\xc5\xbb\xb8\x28\xe2\x74\xa5\x7c\xbf\x7b\x16\x78\xd1\xa7\x4e\x1c\xf6\x5f\x08\x8b\xc8\x84\x43\x9b\xa5\xa6\xfd\x17\x00\x59\x3b\x5e\xfa\x45\xdf\xa6\x0d\xa0\xcc\x80\x22\xc9\x65\x53\xc0\x03\x71\x08\xd8\x6c\xfd\xc2\x8a\x64\x40\x70\x07\x34\x66\x9d\x9b\xb3\xa6\x28\x7f\x7c\xd6\xec\x7e\x79\x82\x70\x7d\xf4\x72\x30\xaf\x8f\xee\x2b\x68\xd7\x38\xd8\x4f\xa1\x70\x13\x7f\x6a\x06\xc1\xf2\x9f\xb0\x54\x6f\x99\x46\xa0\x5c\xd8\x5b\x73\x52\xc8\x24\x0d\x95\xa1\x8b\x9d\x39\x04\xda\x84\x5d\xf1\x92\x5a\x9c\xef\x59\x6b\x9e\x8b\xa4\xb9\xcc\xdc\x5d\x38\xfc\x67\x59\xf9\x14\x8e\xf0\x7c\x81\x42\xec\xa2\x2d\x26\xd3\xf0\x95\x52\x3b\x9d\x86\xea\x22\x5f\xe3\xed\x3c\x5c\x4c\xe3\xc8\x36\xbb\x59\x43\x18\x49\xed\xe1\x5a\x1f\x6b\xd9\x41\xa5\xd8\xac\x6b\xc5\xbc\x56\x3b\xac\x65\xd0\xeb\x75\x36\x95\x32\xd6\xf3\x3d\x2f\x2d\x94\x68\x6c\xca\x83\x29\xb3\x5f\x01\x2c\x8d\x00\x02\x1b\x2c\xbb\xe5\x3a\xdd\xc9\xe1\x70\x64\x6f\xac\x38\xb5\x12\x33\x7c\x79\xec\x84\xf6\x06\x15\x4a\xcf\x3d\x99\x6f\xea\x93\x5a\xf2\xe1\xdd\xf7\x7a\x6d\x32\x93\x25\xca\x61\x1b\x89\x87\x83\x7d\x8f\xdb\x41\x2c\xee\x0f\x87\xf6\x1c\xef\x67\x92\x3b\xb9\x87\xec\x52\x42\xb5\x09\x77\xb4\x31\x73\xbd\x81\x04\xc3\x7d\x17\x2c\x03\x3e\x58\x3e\xf9\x55\xc7\x18\xd6\x4e\x41\xef\x13\x32\xcb\x9d\xd0\xa7\x64\x2e\x3f\x17\x9e\xae\x1f\x42\x5b\x26\xc2\x99\xfc\xe1\x6c\xfd\xbc\x20\xe1\x07\xf1\x56\x29\x85\x0b\xd3\x87\x57\xe6\xb5\x4f\xc9\x75\xbc\x21\x6a\x6d\xd0\x4a\xaf\xce\x3d\x2c\xe5\x83\x9a\x39\xe6\x44\x8c\xf9\xf1\xf1\xd2\x78\xf3\x5f\x65\xbc\xd1\x73\xc6\x2b\x56\xba\x63\xc4\xab\xdf\x3e\xe2\x3a\xee\x77\x8d\x77\x6f\x8e\xf7\x6b\x85\x13\x37\x78\xad\xbd\xb6\xa3\xa5\xda\x1d\xe8\x16\x27\xf3\x25\xc7\xfa\x23\xdf\xbe\xad\x6f\x8e\xc0\x5e\x1a\x34\x91\xda\x27\x77\xf8\xd6\xde\xd9\x37\xd5\xf9\xc3\x38\xb6\x6d\x67\x5c\x6f\xa2\x76\x3e\x84\xd3\xfa\x53\xd3\x1d\x3c\x1c\xec\x3b\x3c\xbf\x5b\x28\xc4\x97\x4a\x4e\x11\xba\x7b\xa8\xb9\x87\x76\x06\x31\x76\x06\xf7\x7b\x02\x4b\x13\x06\x3f\x0b\x18\xb0\x19\xda\x57\x78\xad\x5e\xde\xe7\xf7\x8b\xc3\x41\x7f\x39\x19\x5d\x93\xbc\x3e\xfd\xa5\xad\x80\x74\x8f\x4c\x0e\x47\x57\x82\x0c\x24\x8d\xd1\xef\xec\x2b\x59\x49\xc2\x07\x76\xa0\xd1\xba\x5a\x96\xab\x69\x6b\x60\x00\x83\xfe\xfd\x42\x0e\xf9\x6d\x4a\x13\xe7\x63\xb2\xcb\xfd\xe4\x13\x8f\x6f\x6c\x8e\xd0\xb7\x5f\x34\xf3\x55\xc8\x42\xff\xc6\x8f\x13\x1e\x87\x3c\x16\x3e\x25\xcd\x28\x2d\xce\x8f\xe9\x75\x7e\x6f\x6d\x65\x0c\x0b\x76\xf5\xc6\x54\xde\xc1\xa0\x4e\x65\x1f\x6f\x79\xdb\x39\x6b\x1b\xfc\x98\xbe\xa8\x2e\xfc\xb7\xef\xaf\xbf\xff\x72\xf1\xf1\xad\x46\x8c\xaf\x98\xa3\xa8\x31\x18\x9b\x22\xb1\x68\x6b\x47\x34\xc3\x18\xf2\x12\x4a\xb3\x7e\xfb\xfe\x98\xc1\x32\x8a\x0a\x42\x0f\x07\x17\xc2\xa9\x09\x85\xaf\xed\xe5\x61\xcb\x7a\x74\xf5\x3b\xac\x11\x6a\x8e\x44\xac\xd9\xb4\x2c\x5b\x7e\x20\x4c\xe4\x16\xd7\xe2\xab\xe1\x8c\x78\x8c\xa3\x0d\x77\x41\x2b\x5c\xa6\x14\xc9\xcc\x49\x65\x7a\xa4\xdf\x4a\x7b\x3d\xee\x74\x81\x6b\xab\x8a\xdf\x22\xee\xcf\x2c\x15\xa3\xeb\x63\xea\x48\xac\x16\xe7\x01\x85\x88\x94\x10\xcd\x17\xb0\xb4\x23\x58\xd6\x39\x43\xd6\x05\x7f\x76\x4e\xb0\xbb\xc0\x40\xfe\x06\x88\x65\x88\x67\x57\x3c\x58\xe8\x17\x58\x93\x1f\x63\xd4\xcf\x13\x82\xb0\x67\xb3\xd7\x4f\xd3\x47\xdd\xac\xf1\xf3\xd8\x6b\x83\x82\x1a\xb8\xc3\x16\x6f\xac\x30\xf3\xef\x17\xdf\xff\x70\x55\xf1\xa1\xfc\xd3\xe4\x76\x65\x7e\xed\xd3\xe4\x66\x15\x66\xe3\x36\xae\x3f\x9f\x8f\xad\x59\x05\x98\x14\x33\x6d\x90\xaa\x99\x62\x3f\x33\x27\xcb\xe3\x55\x9c\xfa\x89\xa4\x7d\x71\x5e\x85\xfb\x68\x13\xae\x1d\xa6\x97\x6d\x2f\x87\x60\xae\x76\xb3\xe0\x64\x19\x4f\x21\x3d\x2a\x86\x44\xf0\xcd\xfc\x53\x12\xd7\xe5\x33\xf9\x53\xc1\x59\x75\xb0\x71\x2f\x6a\x1e\x51\x0a\xe1\xfd\xe4\x45\x9f\xf6\x5f\x00\x4f\x51\xfb\x8e\xf5\x41\x3b\x5c\xe5\x2c\x80\xb9\x71\x73\x29\x09\x64\x4c\x01\x78\x01\xfb\x2f\xc0\x0b\xd4\x5c\xa9\xec\xb7\xb3\xbb\x86\xbd\x53\x6d\xf8\x7f\xe7\x8e\x5c\x8c\x51\x0b\x07\xe0\x86\x90\xf0\x45\x3f\x6d\x0d\x28\xff\x9d\x98\xe2\x17\xd7\x6b\x76\x7e\xd3\xc4\x12\x97\x9e\xf6\x2c\xcd\xc3\x58\x2d\x05\x03\xc5\x47\x79\xeb\x8b\x63\x5f\x06\xdb\x0c\x95\x87\x72\x59\x4f\x42\xde\x38\xbd\xe5\xc8\x9f\xc7\x65\xb3\x13\xe2\x89\xc8\x46\xbf\xf4\x09\xc1\x78\x7f\x90\x44\x8f\xe0\x2d\xf7\x13\xd7\x03\x7f\x20\x01\x89\xa2\x01\x40\x03\x97\x7d\x05\x51\x78\x16\x06\x00\x0d\xf9\xd7\xd2\x5d\x92\x60\x02\xd0\x88\x7f\x9d\xbb\xfe\xd8\x27\x00\x8d\xf9\xd7\xe9\xd9\xb9\x7b\x1e\x00\x34\xe1\x5f\x27\xee\x69\x78\xb6\x04\xe8\x84\x7f\x4d\xc6\x27\xe4\xd4\x07\xe8\x94\x7f\x8d\x27\x13\xff\x64\x0c\xd0\x19\xff\x1a\x9d\x8e\x4f\xc7\x11\x40\xe7\xfc\x6b\x78\x32\x1a\x8e\xce\x00\xba\xa8\x77\x7f\x51\xef\xff\xa2\xde\xe5\x45\xad\x5d\xe3\x21\x06\xe7\x0c\x7c\x4f\xc8\x2f\xff\xb3\xe0\x8b\x22\xb2\x24\x44\x81\x2f\x8a\x82\x30\x1c\x2a\xf0\x91\xe8\xdc\x3f\xf7\x15\xf8\xc8\xe4\x74\x74\x3a\x52\xe0\x23\xd1\x64\x34\x71\x15\xf8\x22\xf9\x90\x7c\x22\x4b\x8e\xce\x47\x13\x05\xbe\x70\x34\x8c\x86\x91\x02\x5f\x70\x32\x3c\x1b\x9e\x29\xf0\x2d\x4f\x07\xc1\x20\xd0\xe0\x8b\xa2\x33\xff\xcc\xd5\xe0\x8b\xa2\xc9\x70\x32\xd4\xe0\x8b\xa2\xc1\xe9\x78\xac\xc1\x17\x4e\x5c\xd7\x75\xdb\xe0\x6b\xc7\x61\x6b\xb8\x1b\xac\xf9\xcf\xee\x0a\xf9\x57\x90\x24\xea\xf5\xd8\xbf\xa5\x0d\x0f\x87\x37\xaa\x22\x30\xea\x01\x68\x73\x0f\x7e\x4e\x4e\x56\x24\x15\x2a\x5c\x9f\x76\x29\x63\x40\xb4\xeb\x88\x15\xa1\x86\xd1\xf0\x7b\x7f\x43\xf8\xa1\xa5\xac\x44\x41\xbb\x2a\x80\xdf\x62\x17\xc5\x38\xeb\xf5\xba\x5a\x16\x06\xdf\xed\x74\xe5\xe1\xb6\x7a\xfb\x48\xed\xc1\xe9\x39\x44\x19\xec\x2c\x1e\x0b\x96\x90\xe6\xf7\x7b\x65\x1c\xd7\x51\x4c\x3e\x00\xf8\x70\xff\x48\x9f\x5c\xe0\xde\x8c\x11\xf7\xb0\xc3\x90\x9a\xcb\xce\xca\x0d\x48\x8e\xd3\x86\x89\x35\xca\x1e\x89\x86\x2c\xa3\xcb\x7a\x3c\x88\x50\xa6\x55\xe8\x0e\x07\xf0\xe7\x3f\xab\x0f\x80\x7c\x9c\x89\x20\xc0\x6f\xcd\xfc\x5a\x0a\x40\x3b\x6e\xfa\x22\xee\xc4\x6b\x7f\xc5\x8b\x18\xdf\x00\x25\xb8\xc3\x07\x22\xb7\xde\xe9\x5e\x9f\x00\x26\x3c\x4e\xa4\x5a\x89\x40\x4a\x1a\xec\xee\x2a\x38\x99\xe9\xb2\xde\xbe\x84\xdc\xa7\x17\xde\x68\xed\x56\x14\xf1\xc8\x24\xf3\x78\xf1\x00\x02\x97\x52\x87\xb4\xc2\xb9\x8f\x0a\xac\x1f\x22\xb4\xc5\x61\xaf\x17\xda\xa1\xfd\xc1\x9e\x2f\x18\x6f\xb5\xed\xf5\xb6\x47\x18\xa7\x0c\xc1\xf8\xed\xb1\x45\x31\xec\xf5\xec\x08\x6f\xa1\xf4\x87\xb0\x34\x3c\xb7\xac\x1e\xf4\xe2\x12\xc1\xe9\x8d\x91\xb9\xae\xe9\x1b\x2e\xd1\xb2\xf6\x7d\x83\x96\xf3\xdd\x02\xdf\xd4\x7c\xda\x82\xbf\x28\x58\xbc\xd1\x8c\x63\xe0\xc4\x45\x2b\xb9\xc3\x68\xb1\x53\xe8\xd5\xd0\x7a\x54\xde\x58\x8f\x44\xa0\x16\x8c\x6f\x0e\x87\x8e\x3e\x31\xc6\x76\x67\x54\x0d\x46\xee\x06\xce\xc6\xcf\xbf\x76\xbd\x40\x4b\x68\x14\x35\x78\xcf\x3a\x53\x6d\x82\x96\xd0\xb3\xcd\x00\x7c\x4b\xb4\xe3\x91\x20\x0e\x07\x9b\x30\xc8\x74\x8c\x0b\xc2\x47\x7c\xe8\xac\x19\x7d\x8f\x02\xc7\xe7\xe8\xd2\xc1\x00\x7f\xf9\xe2\xdf\xfa\x31\x65\x5c\x2e\xba\xb5\xef\xcc\x10\x81\xc6\xc7\xdc\x7f\x10\xad\x50\x20\xa2\x0f\xab\xad\x82\xef\x58\x77\x2c\xa5\x15\x3c\x54\x91\xae\x8c\xcf\xba\xb3\x2b\xfb\x45\xfd\x2c\xdb\xb9\xaa\x36\x85\xb3\xcc\x13\xf6\x66\x36\x74\xe8\x9a\xa4\x0f\x48\x06\xc2\x2c\x25\x33\x29\x20\xd0\x15\x38\x37\x72\xcb\x00\xb1\xae\x03\x10\xa0\xf5\x23\xbb\x05\xad\x1f\x25\x81\xa5\xeb\x12\xdd\xd8\x02\x30\x40\x30\x72\xb3\x03\x09\xe7\x95\x1c\x34\xe5\xab\x09\x75\x58\xa5\x2a\x62\x17\x57\x81\x2c\x88\x5d\x29\xdc\x5b\x2a\xfa\xd3\xb4\x72\x54\xb0\x57\xbe\x07\xb7\xd9\xd6\xe6\x66\x3b\xb9\x68\x51\x71\x80\x62\xf6\x38\x67\x9c\x4f\x96\x72\x3f\xd9\x5a\x83\x56\x25\xb9\x3c\x8c\x7d\x20\x8a\x16\xf8\x03\xba\x36\xf0\xa7\xe6\x69\xe9\x5a\x84\xc6\xf7\x1a\x4f\xe4\xd2\xfd\x37\xb9\xc1\xca\x5b\x3a\xb9\xa3\xea\x77\xc1\xfd\x52\xb3\x5f\x5f\xf8\x4f\xd3\xab\xba\x1a\x92\xf8\x20\x09\x59\xf9\xd4\x0c\xf4\x20\xfc\xba\x61\x6e\x1f\x04\xa4\xa7\xee\x7c\x55\x6b\x82\xe6\xf7\x57\x29\xcd\x63\x52\x68\x35\xb9\xcf\x10\x1d\x11\xa8\x35\x04\x94\x78\x02\x02\x71\x16\x73\x15\x0e\xae\xbe\xa1\x0f\x33\xc9\x35\xf5\x7a\x47\xc2\xa1\x41\x9f\x4a\x95\x86\x01\x84\x32\x22\xc8\x9c\x2e\xb4\x92\x2e\x2a\x68\xb6\xad\x05\xed\xaa\x26\x23\xc8\x24\xe9\xb9\xbc\x1a\xdc\xdc\x5d\x70\x57\xde\x09\x61\x55\xb8\x09\x0f\x17\x32\x00\x2e\x52\xe7\x1b\x4c\xf9\x2d\xf7\xf3\xd5\xd4\x40\x3d\x27\xbf\xf1\x93\x52\x07\xa4\xbc\x52\x61\x73\x3b\x17\x81\x8d\x41\x35\x24\x5d\xbd\x73\x46\xd0\xc0\x21\x93\x31\xf1\x79\xcf\x58\x0e\x05\xf9\x1c\xba\x04\x51\xb1\x80\x29\x77\x19\x4a\x9b\xab\x60\x2c\x01\x44\x47\x47\x79\x59\x79\xc2\x6e\xae\x88\x56\x62\xcd\xbe\xc5\xee\xf4\xf8\x58\xbf\x95\x35\xa1\x93\x2d\x90\x8f\xe3\x26\x84\xf2\x2c\xe3\x4b\x16\xb3\xa2\xdf\x67\x81\xc6\x6a\x1b\x90\x34\x14\x86\x81\x2a\xef\x15\xd6\x58\x28\x3a\xd9\x61\xb9\xb8\x31\x02\x9c\x22\xf9\x3e\x0b\x00\xe3\x90\xaa\xe4\x88\x71\xc2\xc9\x3d\xcf\x60\x6d\xed\x7a\xbd\xa4\x8e\xd0\xaf\x62\x47\xd5\xad\x3a\xaf\xd2\xd0\x91\x70\xfa\x63\x96\xaf\x1a\x35\x6b\x18\xa9\x5a\x58\xb7\xfb\xc5\x7d\x69\xf1\xeb\x51\x02\x5b\x9e\x42\x69\x7e\x2f\x6c\xe8\x84\x07\xd0\x98\xae\xb3\x1d\xb5\x78\x75\x2b\xcb\x2d\x39\x02\xf0\x2b\x06\x5c\x96\x25\xf2\x97\xf9\x6e\x4b\x1b\x04\x5b\xa5\x5b\xf2\xe0\xca\xa7\x62\xe5\x53\xed\x0b\xb5\xb1\xf2\x29\x97\x0c\x67\xed\x55\xd4\x9b\x33\xab\x2f\x94\x8c\x2e\xc0\x07\x9f\x99\xc3\x94\xa8\x95\x09\xad\xde\xb2\x8c\x7b\x3d\x1b\xf0\xdf\x40\xba\x87\x67\xbc\x6d\x9c\xee\xb8\x7f\x1c\xee\xbd\xa4\xea\xb5\xd7\xa3\xaf\xb0\x39\xeb\x5e\xcf\x8e\x85\x6a\xad\xf4\xea\x19\xcf\x4c\xfc\xf4\xf6\xda\x79\xb8\xdc\x44\x44\x6e\x1f\x8a\x62\x19\xf1\xa2\xe3\xf4\xe2\xfb\xca\xec\x06\x15\xd0\xd3\xf1\x27\x18\x49\x6d\xfb\x8c\x7c\x90\x1f\x0d\x70\x3f\xef\xd4\x30\xe6\xcc\x8b\x34\x27\x2e\x24\x80\xd5\x70\x78\x5d\x4f\x32\x29\x46\x09\x5b\x9f\x3e\x58\x9f\xbc\xbc\x6c\xfd\x6c\x96\xf5\x8c\xf9\x89\xcd\xe9\x01\xe1\x4e\xaa\x6a\x91\x6b\xeb\xdb\x55\x39\x0a\x51\x51\xa2\x28\x4e\xe3\x62\xed\x75\xa9\x2c\xd1\x87\xd1\x8a\x0a\xb4\xaa\xbc\x07\x34\xd0\x8a\x2e\x84\x03\xff\x0a\xd2\xb8\x8a\x28\x6a\xd5\x21\x9e\x1a\xeb\x8a\x52\xc7\x8f\x28\xc9\x19\x42\x71\x07\x07\xa8\x60\x77\x23\xd7\x25\xfd\x9d\x86\x28\x70\x90\x0f\x4f\x5e\xe7\xe9\x83\x57\x45\x2e\x16\x5d\xee\xa5\x9c\xaf\x3a\x1b\xa5\x76\xf3\x5f\x96\xad\x73\x21\x4e\xd8\xbd\x9a\xc8\x93\xc0\xa7\x94\x6c\xb6\x14\xc0\x12\xa9\x0b\xf7\x9f\x31\x49\xc2\x16\xf7\x6b\x82\x4a\x5f\xcd\x7b\xc5\x26\x79\x1f\x78\xd0\x04\x52\xec\x12\x11\xa9\x8d\x72\x55\xe4\xef\xb3\xc0\x4b\x4b\x61\xbd\xcd\x2f\xdb\x0a\x53\xd4\xd2\x9b\xb7\x47\xcd\x4f\xca\xa6\x49\x17\x72\xb7\x8a\x9a\x12\xd1\x26\xa2\x59\x64\xad\x66\xd4\x5b\x55\x81\x60\x25\x71\x9b\x99\xd4\xaa\xcf\xc9\xca\x6b\x9b\x7b\x1a\x32\x42\x06\x7f\x89\xd3\x9b\xec\x2b\xc1\xdd\xcc\x3e\x28\x76\xc5\x96\xa4\x21\x09\x3f\x53\x3f\xa7\xa0\x65\x80\xc8\xfd\x36\xb1\x25\x21\x77\x24\xd8\x51\xf9\x4c\x94\xb7\x4f\x63\x4d\x0a\x5a\x71\x61\xf9\x49\x4e\xfc\xf0\xde\xca\x77\x69\xca\xaa\x08\x4f\x71\x0a\x01\x43\xd1\x44\x7d\x7b\x67\xb2\xc9\x58\x0d\xe1\xd2\x86\xfc\xa6\x4d\xd5\xce\xcb\x18\xae\xe6\x2b\x1c\x4f\xa7\xca\x95\x54\xaa\x57\x4a\xd8\x1f\xca\x8b\xf0\xca\xf6\x51\x2a\x6e\x38\xde\xcb\x0e\x63\x5c\x40\x75\x28\x68\x1f\xe1\x65\xc9\x46\xa0\x96\x4e\xf5\x03\x53\x41\xc2\xa5\x92\x7e\xe3\x9d\x56\x0e\xc4\xf4\x80\x75\x79\xa1\x34\x59\x87\xa3\x01\xa3\x1c\x1b\x13\x17\x53\x98\xa6\x4e\x8b\xbc\xb1\x79\x8e\xb8\xf1\x8c\xb3\x29\xd5\xd8\x94\x3a\xe2\x4a\xb2\xf5\x09\x24\x6a\x4c\x73\x6c\x2c\x8e\x34\x37\xbd\x97\xcb\xcc\xe1\x5e\x9d\x4b\x89\xdc\x4e\x8c\x6e\xc6\x82\x1c\x9e\x19\xa3\xf3\xaa\x69\xf0\x3d\x02\x50\xc2\x21\xde\x01\x3d\x29\x38\xe3\xf9\x88\xb5\xe3\x89\xe6\xca\xb2\x82\x50\x22\x4f\x41\xbb\x09\x02\x75\x94\x4a\x32\x4c\x2c\x6b\x22\xe6\x5f\x96\x36\x41\x29\xf2\x21\x8a\x1b\x8e\x53\x78\x30\x61\xad\x30\x2a\x9f\x2e\xe5\xdc\x10\x3b\xd2\x89\x0e\x41\x02\x4b\x29\x94\xc9\x1b\x2f\x9d\x8a\xf0\xcb\x57\x5e\x6e\xee\xc5\x55\x2d\x92\xe9\x4d\xed\x6b\x59\xfb\xba\x65\xa7\xe1\x5c\xde\x71\xaa\x3d\xb5\x24\x8b\x0e\xd3\x15\x0a\xf7\x84\x11\xd3\x5d\x76\x8b\x9c\x4b\x10\x1b\x94\xcb\x86\xeb\x66\xfb\x77\x55\xec\x74\xb3\xa4\x11\x0b\x12\x65\x86\xd0\x3b\xb6\x6b\x76\xa7\x1f\xf3\x6c\x13\x17\xe6\xf3\x19\x65\x7b\xf9\xa8\xa6\x18\x98\xa1\x18\xe9\x6d\x73\x6f\x93\x79\xba\x40\x04\x65\xd0\x38\x85\x8f\x30\xde\x19\xa7\x30\x0f\x76\x9f\xaf\x50\x80\x13\xa9\x0d\xa2\x98\xd7\xae\x28\x18\x81\xa6\x6a\x02\x04\x24\xaf\x0d\xe0\x4c\x8e\xcd\xc9\x49\x91\x25\x37\xc4\x0e\x1c\x99\xd7\xc5\xdf\x52\xb9\x47\x11\xe1\x83\x2d\x21\x6a\x66\xcb\x55\x50\xf9\xd0\x6b\xb5\xdf\xd5\xae\x1c\x3f\x26\x28\xb6\x93\x56\xb3\x6a\x89\xda\xad\x97\xbe\xbd\x13\xb8\xca\x01\xc8\xa0\xca\x52\x55\x05\x4c\x67\x54\xf4\x16\xa3\x18\x7a\xb1\x6d\x3a\x2d\xba\xaa\xbd\x61\x6a\x89\xdc\x5c\x31\x1d\xfc\x8a\xac\xbc\xc7\x0b\x82\xb9\xc1\x29\x56\x1b\x8c\x9a\x47\x50\xd5\x9a\x23\x86\x52\xe3\x65\x34\xd5\x62\x32\x94\x62\x34\x5d\x0d\x2a\xc2\xa1\x98\xd2\xe6\x6e\x15\x2d\x34\x74\xc1\xf9\xab\x8a\xec\xde\x0a\x33\x52\x7b\x3a\xb1\x7c\xeb\x05\xaf\xfc\xc2\x12\x6d\x01\x0d\xad\xa2\x14\xf7\xd0\xbd\x9d\xa2\x6a\x02\xa2\x0f\xd8\x49\x0a\x68\x81\x41\xe7\xb0\x72\x41\xaf\x35\x20\x56\x4c\x4d\xfa\x41\x91\x0e\xb3\x4c\x1c\x80\x36\x9d\x73\x4c\x91\x37\xfb\x02\x67\xea\x29\x5b\xd1\x8b\xf2\xa6\xd7\xdb\xfc\xa8\x82\xd4\x93\x0c\x63\x6b\x2c\xd0\xcb\x3c\xfb\x79\x50\xd5\x10\x15\xa3\xd3\x8a\x08\xa9\x25\x37\x5a\x57\xf3\x15\xb2\x7d\xad\x44\x30\x7b\x41\x74\x71\xe5\xb4\x72\x3a\xe0\x32\x13\x3e\x74\xc5\x6d\x61\x32\x1f\x2c\x20\x1a\x56\x39\x06\x25\x49\xe6\xc3\x05\x1b\xa1\x24\x14\x31\x99\x8f\x16\xb0\x25\x8e\x90\x0f\xea\x55\xff\x9f\x4d\xdf\x54\x15\x85\x77\x38\xec\xcb\x29\x95\x9c\xb8\x3a\xbf\xa5\x7c\x9d\x83\x01\x99\xa5\xcd\x58\x59\xd7\x3a\xf6\x63\xd5\x2d\x9e\xab\xb9\x09\xf6\xb9\x5c\xa0\xca\x05\xd4\x57\x3e\x48\x39\x54\x2e\xca\xb1\x19\x57\xa9\x1b\xfc\x20\x65\x09\xd5\x38\xe7\x31\xdf\x82\xb4\xc2\x33\xe9\x7b\x77\xda\x70\xba\x50\x39\xde\x65\xab\x5e\x19\x8e\x30\x66\x55\xfa\x8b\x54\x46\x25\x6a\xbf\x1f\x0f\x50\x86\x8d\xe3\x57\x4a\xb7\xfa\xfd\xb4\xb2\x01\x87\xfc\xe9\x42\xf4\x89\xaa\x38\x76\x54\x9d\x55\xec\x80\xa6\x95\x1c\x69\xda\xc8\x57\x92\x22\x2d\xe9\xa2\x65\xf5\x28\xce\xb1\x39\x53\x0a\x18\x7b\xf6\xe9\x5d\x1a\x87\xd3\x65\x15\x1b\x48\xdc\xee\xca\xea\x90\x5d\xef\x47\x2e\xbb\x9a\xff\xf3\x8f\x43\xb0\x44\xc3\x27\x7c\xd5\x3f\xaa\x08\x11\x3d\xa9\x28\x1a\x3e\xa9\x2a\xb1\xd5\x8a\x10\x38\xb5\xc7\x67\x50\x28\x94\x0a\x7d\xd2\xf1\x29\xa7\xad\x9d\x54\xbc\x7f\xa7\xf6\xf8\x1c\xf2\x78\x17\xbe\x7a\x4e\x3b\x1c\x7c\xc7\x9f\x0a\x6b\x0c\x15\x6f\x4f\x86\x9f\xb3\x85\xad\x6a\x81\x03\xe7\x32\x4b\x8b\xdd\x86\xe4\x28\xc2\x81\xa3\x82\x11\xa3\x10\x07\x95\xac\x6a\x5b\x0b\xa0\x8e\x29\xdb\x28\x5c\x4c\x14\xa7\x34\xf9\x98\x67\x5b\x1e\xdf\x3c\x30\xc3\x7f\x00\x96\x05\x3c\x1f\x45\x8c\xcb\xae\x62\xb5\x87\x55\x70\xf1\xa8\xd7\x8b\xd0\x16\xc7\x0e\x49\x79\x00\x5e\x39\x34\xb4\xae\xda\xd9\x1e\x0e\x5b\xb4\xc1\x26\xc9\x52\x69\x52\x98\xf1\x03\xed\x02\xf1\x53\xa6\x82\xa1\xe4\x24\xe2\x69\xa5\x20\xbb\x73\x02\x68\xa7\x4a\x8c\xa0\x22\x87\x07\x0b\x9c\x1a\xd1\x85\x9a\x0d\x13\xa9\x6b\x64\xe7\x8e\x0f\x85\xa3\x0e\x1f\xed\x73\x12\x79\xe1\x8c\xaa\x99\x11\x36\x37\xee\x61\xbb\xe4\xfe\x07\x35\x6e\x6f\xea\x0f\x26\x71\xca\x9a\x7a\x9b\xd2\xc4\x06\x7d\xdb\xb6\x53\x4c\x60\xfd\xe5\x22\x6d\xc7\x03\x87\x7d\x00\x01\x44\x9b\x76\x90\x41\x82\x12\x3b\x14\x7e\x23\x25\x7c\x9b\x3a\x49\x0f\x4c\x6a\xd3\x9c\x14\x41\xfb\xda\x54\xa8\x98\x87\xb7\xe1\xb4\x1f\x1a\x3e\xa1\x33\x64\x9a\xd9\x0b\xb6\xa3\x2b\x6c\xff\x97\x2f\x9f\xae\x2e\x2e\xaf\xbf\xbc\xbe\xfa\xfb\xf5\x87\x0f\xdf\x7f\xfe\xf2\x97\xef\x3f\x7c\x77\xf1\xfd\x97\xbf\x7e\xf8\xf0\xb7\x2f\x5f\xea\xde\x30\x9e\x57\xc7\x09\xd6\x24\xf8\xfa\xfa\xf2\x0a\xee\x5d\x6e\xb3\xf5\xcc\xe2\x35\x53\xad\xba\x15\x2a\xf7\x8d\x63\xc3\xfa\x53\xec\xc4\x65\xa7\xc1\xa4\x1d\x66\xa1\xcb\x84\xd0\x3e\x39\x15\x1b\xf5\x4c\x6c\xd4\x91\x3b\x14\x91\x8e\x4e\xd9\x3e\x9d\x83\x3b\x1e\x01\x7f\x03\x10\xd8\x84\x00\x81\x64\x05\x10\xb8\x4b\x80\x11\xb3\x2b\x31\xef\x27\xf1\x18\x80\xd2\x6a\x57\xd0\xd9\xfe\xae\xf0\x5c\x54\x6c\xbc\x13\xd7\x45\x9b\xd0\x3b\x3f\x71\x51\xb2\xf2\x06\xc3\x33\x17\xdd\x25\xde\xe0\x7c\xe8\x96\x1e\xe5\x16\x81\xbb\x34\xa6\xa6\x83\xc6\x7c\x06\xb6\x77\xc0\xcb\x51\x82\x89\x53\x50\xb2\xad\x47\xe3\x99\xf0\x68\x3c\x5a\x35\xc4\x87\x36\x41\x73\x20\xc6\x00\x10\x60\xad\xf1\xf8\xfd\x64\x0b\x16\x86\x3a\xbb\x71\x53\xb5\xb5\x9f\xd3\x39\x59\xcc\xd8\x3f\x9e\xb6\x22\xfe\xf3\x86\x84\xb1\x6f\xd9\x9b\x38\x3d\xbe\x8d\x43\xba\xf6\x80\xf2\x73\x47\xa1\xfa\x15\x23\x86\xf8\x0d\x2f\xc3\x4a\x40\xb0\xd3\xcf\xf0\x95\xb5\x63\x8e\x19\x4b\xa0\xe4\x3e\x33\x36\x28\xef\xb1\xae\x1e\x1d\x6a\x6d\x18\x96\x9f\x86\x16\xdb\x89\xf6\xc6\xbf\x6b\x36\x63\x1f\x0f\x8e\x30\xce\x2b\x2d\x71\xb3\xbd\xdd\x3c\xef\x0f\x16\xac\x51\xf9\xcb\xa3\xf0\x38\x78\x39\x70\xdd\xe6\x3c\xeb\x6a\x39\x3e\xdf\x99\x5f\xc9\x7d\xe1\xed\x84\xc2\x6b\xe1\xa5\x68\xb7\xf5\x22\x14\x66\xb7\xf5\x47\x07\x01\xf8\x0a\x22\x04\xf6\x07\x28\xc7\xac\x4b\xba\xd0\x4a\x88\xd4\x80\xce\x2c\xb2\x19\x1e\x9a\xe0\xe9\x98\x57\x7b\x3e\x79\xaf\x47\xbf\x75\x67\xb9\x47\x1e\x98\x04\x5a\x12\x7a\x4b\x48\xea\x85\x28\x4b\x93\xfb\x2e\xfb\x7c\xb6\x8c\x04\x96\x48\xf4\xd6\x51\x80\xc1\xbf\x2c\x6b\x14\x63\x60\x4a\x87\xb2\x69\x17\xa8\x56\x3b\x4a\x49\x5e\x98\xaf\x41\x82\xba\xf9\xd5\xc6\xf0\x9d\xdd\x6c\xfd\x30\x8c\xd3\xd5\xf7\x24\xa2\x1e\xb5\x87\x10\xc9\x84\x4f\xdc\xd7\x1e\x4b\x29\x51\xda\x3a\x5e\x9d\xdd\xd6\x66\x7b\x5e\x39\x8e\xe9\x6c\x6c\xd4\x6a\x6c\xc4\x1a\x9b\x57\xb5\xb9\xc3\x73\x44\xb3\x2c\x59\xfa\xb9\x67\x67\x78\xbf\x89\xd3\xbf\x0a\x37\x7f\x93\x93\xb2\xd6\x6d\x86\x80\x5e\x49\xd1\x02\x5b\x70\x04\x38\x2a\xdb\x59\x1e\x93\x94\x0a\x9f\x0d\x56\xe2\xa7\x61\x11\xf8\x5b\xc2\xee\x19\xa3\xc9\xf1\x99\x8e\x9d\xa1\xda\x34\x66\x62\x14\x3c\x19\x97\x10\x65\x6c\xb0\xc2\x0d\x25\x3b\x34\x87\x67\x63\x88\x22\xbc\x5f\x26\xdc\x14\xef\x0f\xae\xeb\x02\x74\xbb\x8e\x29\xe1\xaa\x40\x11\x28\x51\xa8\x74\x98\x7c\xf6\x9f\xd6\x61\x9a\xb0\xff\xb4\x0e\x13\xff\x9f\xd6\x61\x72\xd9\x7f\x4a\x87\x69\x19\xb2\xff\x94\x0e\xd3\x39\x61\xff\x29\x1d\xa6\xd3\x09\xfb\x4f\xe9\x30\x9d\x0c\xd8\x7f\x4a\x87\x69\x3c\x64\xff\x69\x15\xb0\x01\xfb\x4f\xeb\x30\x85\x13\xf6\x9f\xd6\x61\xf2\xf9\xff\xb4\x0e\xd3\xc8\x65\xff\x69\x1d\x26\xd9\x6e\x89\xb6\x4a\x9b\xed\x8c\xf8\xd1\x89\xd6\x66\x9b\x04\x3e\x39\x57\x53\x39\x8f\xfc\xb3\x50\xab\x63\x9d\x9e\x9f\x9d\x04\x4b\x35\x95\x49\x70\xb2\x0c\xb4\x3a\xd6\x28\x9a\x0c\x96\x13\x35\x95\xd1\xf9\xf8\xdc\x5f\xaa\xa9\x8c\xdc\x51\x74\xae\xd5\xb1\x86\x67\xa3\xc9\xf9\x48\x4d\x65\xe0\x0f\x47\xa7\x44\x4f\xe5\x2c\x38\x27\x51\xa4\xa7\x32\x19\x9d\x84\x11\xa9\xa6\x12\x4e\x7c\xfe\xa9\xda\x1d\x47\x11\x01\x25\x5a\xab\x55\x09\xc8\x98\x04\x7a\x55\xce\x96\xcb\xd0\x55\x53\x89\xc6\x67\xd1\x72\xa0\xa6\x12\xb9\x27\xc3\xf3\xa1\xd6\x2c\x0b\xc6\xee\xa9\xaf\xa6\x42\xce\x07\xe4\x64\xa4\xa6\x12\x9e\x0d\x96\x27\xae\x9a\x4a\x30\x1c\x9c\x4d\x96\x6a\x2a\x7e\x38\x18\x4f\x4e\xd5\x54\xce\xce\x5c\x32\x8e\x4c\xcd\x32\x97\xc1\x40\x6b\x96\x8d\xdd\xb3\x41\xa5\x59\x36\x71\x5d\x56\x55\x4e\x25\x98\x0c\x06\x27\x43\x50\xa2\xcd\x7f\x1b\x25\x39\x74\xaf\xa7\x12\x8d\xd8\x0e\x50\x6d\x11\x77\xa9\xa7\x12\x45\x41\xc0\x5a\x96\xab\x12\x2d\x4f\xc7\xa1\x9a\x4a\x14\xf9\xa7\xc3\x13\x3d\x95\xe8\xfc\x8c\xed\x47\x31\x95\x68\x79\x16\xb8\x7a\x55\xa2\xc9\x29\xff\x3a\x93\x20\x38\xe1\x5f\x62\x2a\xe4\x64\x32\x60\x5f\x7a\x2a\xe1\xa0\x36\x15\x7f\x39\x76\x8d\xa9\x9c\x8b\xc2\xb2\xdd\xe8\x24\xe4\x53\x59\xa9\xbd\x32\x8a\x86\x51\xa8\xa6\xb2\x5c\x86\x24\x5a\xea\xbd\xe2\x06\x7e\x74\xae\xa6\x72\x32\x5e\x4e\xd8\xae\x1a\xcb\xed\xeb\xf3\x03\x62\x22\xb7\xef\xf9\x49\xa4\x11\x6c\x40\xce\xce\x88\x5e\x95\xc1\xf9\xe9\x09\x5b\x69\x31\x95\xc1\xe4\x64\x12\xe8\xa9\xb8\xe1\xf8\xd4\xaf\xb6\xfd\xd9\x70\x39\x30\xf6\xca\x78\x7c\xe6\xf3\x4f\xd1\xe5\xf0\xfc\xf4\x9c\x7f\x9e\xca\xcf\x93\x21\x3f\xc1\x6e\xf4\xb6\x8f\x26\x6c\xa3\xcb\x6d\x7f\x46\x4e\x02\xbd\xed\xfd\x49\x78\xe2\x9f\xaa\xa9\x9c\x0d\x82\xd3\xb3\xb1\x9a\xca\xc9\xc9\x72\x79\xa2\xf7\xca\x38\xf0\xa3\x89\x5e\x95\xf1\xc8\x77\xc7\xa7\x7a\xdb\x9f\x9d\x91\x51\xa0\xb7\x3d\x39\x0d\x47\xfa\x04\x1b\x2c\x27\x64\x58\xad\xca\xf2\x3c\x3a\x09\x7c\x3d\x95\x93\xf3\xc8\xf5\xab\x6d\xef\xba\xe4\xe4\xf4\x44\x4f\xc5\x75\x83\xb3\xc9\x08\x94\x68\xc9\x48\xd5\x13\x88\x6e\xf1\x9e\xbb\x0a\xda\x6f\xf3\x78\xe3\xe7\xf7\x1e\xc8\x57\x4b\xdf\x76\x91\x25\xff\xef\x9c\x9d\x42\x80\x84\x93\xbe\xce\xfc\xc9\x18\x02\x14\xc6\x85\xbf\x4c\x48\xd8\xce\x1e\x9d\x41\x80\xd6\x71\x4a\xbb\xb3\x4a\x14\xc6\x9c\x07\x6d\x67\x0f\x86\x10\xa0\xa5\x1f\x7c\x5d\xe5\xd9\x2e\x0d\xbd\xfd\xd6\xdf\x92\xdc\x8b\x1c\x7e\xad\x20\xe5\xe0\x3c\x9c\x4f\xdc\x85\x76\xda\xb3\x67\x7f\x6f\xc8\x03\xc3\x5c\x67\x37\x5d\x3d\xb9\x3a\xef\xc3\xd6\x0f\x62\x7a\xef\x39\xee\x18\x09\x5b\x96\xae\x39\xb9\x67\x1c\x24\x22\xbb\xaa\x72\xf6\x08\x18\x86\x27\x06\x94\xbe\xab\x26\xd5\x3d\x6b\x55\x50\xb7\x3d\x3a\x43\x51\x16\xec\x8a\x07\xca\xf3\x3c\x5d\x78\x30\xe4\xd0\xb8\xf1\xcd\xd1\x0d\x86\x65\x89\xee\x9a\xab\xad\x80\xd9\x5c\xdf\xe1\x64\x82\xac\xea\x1f\xd7\x39\x6d\x2f\x72\xab\xcc\xa4\xbe\xd2\x9d\xf9\x71\x90\xa5\x8f\xe4\x37\xd1\xa1\x55\xe6\x01\xa4\x08\xe7\x67\xae\xbb\xd0\x38\xa1\x6f\xee\x16\x5e\xa8\x09\x9b\x98\xd0\xea\x84\xaf\x6f\x03\x1f\xce\x9a\xf8\xd0\x1e\xda\x49\x17\x56\x0c\x4e\x9e\x84\xdb\xe8\x31\xd4\xe8\x86\xc0\x53\x08\xd2\x5d\xeb\x19\x68\x32\x1c\x97\xe5\xb4\xfe\x4e\x60\xbe\x0d\xe7\x0e\xf7\x98\x7e\x38\xe4\x28\xc6\xb9\x13\xfa\xf9\xd7\xc3\x61\xe0\x4c\xbe\xc9\xa7\x64\x4e\x17\x87\x83\x4d\x9a\xc1\x97\x52\x38\x23\xc2\x9b\x64\xba\xf0\x00\xaf\xce\x59\x8c\x19\x11\x6d\x29\xf6\x73\xe9\x84\xd0\x26\xce\xc6\x8f\x53\x94\x41\x0f\xb0\xb6\x79\x41\xae\x9f\xcb\xbe\xaa\x92\xbe\x2e\x19\xd7\x62\xde\x7c\x35\x59\x69\x89\xe3\x0d\x5e\x9a\xf7\xe9\x6d\xe7\x23\x86\x2f\xac\x09\x6f\x3b\x9f\x70\xdc\xf1\xf3\xaf\xde\x76\x7e\xea\xba\x0b\xc5\x4d\xeb\x5d\x61\x06\xbb\xcd\x55\x1b\x6b\x87\x1d\xb9\xa2\x8d\xb5\xc3\xce\x5b\xd1\xc6\xda\x61\x87\x6d\x29\x99\x6e\xe1\xb2\xbf\xc6\x75\xcb\xfa\x1b\x63\x0c\x1b\x63\x0c\x1b\x39\x86\x04\x7d\xc5\xc4\xb9\xf5\xf3\x34\x4e\x57\xe8\x73\xd5\xc2\x57\xd5\xc2\xbd\xd1\xc2\xbd\xd1\xc2\xbd\x6c\xe1\x2b\xba\xe6\xd1\x40\xa2\x0c\x7d\xa8\xaa\x5f\xab\xea\x2b\xa3\xfa\xca\xa8\xbe\x92\xd5\xaf\xd1\x25\x03\xc2\x2e\x08\x48\x51\xa0\x8f\x55\x0b\x97\xaa\x85\x1b\xa3\x85\x1b\xa3\x85\x1b\xd9\xc2\x25\xfa\x22\x95\x50\xd0\xcf\x55\xf5\x2f\x33\x89\x06\xde\x17\x74\xc1\x65\xf2\x29\xcd\xfd\x82\x5e\xaf\x73\x52\xac\xb3\x24\x44\xef\xab\xc2\x17\xb3\x91\x77\x81\x3e\xf1\x68\x66\xa9\x9f\x7c\xe0\xa6\x7c\xe8\x6d\x55\xe0\xd3\xcc\x19\x7a\x9f\xd0\x9b\x96\x18\x43\xae\x3f\x40\x40\xaf\x23\x50\x5e\xef\x11\x90\x70\xe5\x81\xaa\xa3\x8c\x15\x12\xf3\x04\x08\xb0\xf1\x02\x04\x5a\xc3\x62\x59\xd5\x18\x6a\x12\x91\x77\x2d\x55\x63\x7b\xe9\x04\x6c\x1c\x77\x3c\x72\x89\x42\x46\xf8\x2d\x7e\x3f\xab\x27\x79\xb7\xb5\x4f\xce\x51\xbd\xee\x50\x5f\x6d\x31\xb6\x83\x4e\xc6\x76\x60\x32\xb6\x83\x85\x37\x71\x5d\xd4\xc1\x15\x0f\x3b\x2b\x0f\xcd\xca\xc3\x85\x37\x72\x5d\x94\xb7\x2b\x8f\x3a\x2b\x8f\xcc\xca\xa3\x85\x77\xea\xba\xc2\x04\x56\x69\x43\x4b\x36\xb8\x44\x84\xfb\x82\x8a\xd3\x5e\x8f\x9d\x0c\x7c\x7f\xb3\x4f\xee\x70\x16\xa2\x23\xf1\xd5\xd2\xed\x90\x8d\x14\xac\x91\x31\x0f\x6d\xd6\xed\x26\xea\xe9\xda\x13\xf4\xff\x7c\xfe\xf0\xde\x11\x55\xe3\xe8\x5e\xf6\x0f\x2b\x15\x68\x76\xf0\x49\x24\x45\x29\x7a\x0b\xf9\x1b\xa5\x38\x92\x50\xce\xbe\x0d\xac\x25\x77\x94\x9f\x7b\x66\x02\x7e\xa7\xdb\x44\xa4\x44\xdf\xe3\x3d\xdf\x17\x77\x48\xec\x9b\xdb\xa6\xb4\x21\x66\xc3\xaa\x41\x29\xc8\x36\x9b\x2c\xf5\x22\xc4\x35\x06\x7e\x46\x0a\x5b\x5e\x73\xe5\x28\x7d\x5d\xbf\xb6\x77\x08\xb0\xb3\x07\x20\xc0\x8e\x23\xf6\xe7\xd4\x75\x01\x94\xce\x07\x5f\xdb\x01\x44\x12\xd7\xbd\xd7\xf6\x67\x88\x18\xba\x7b\xaf\xed\x0f\x10\x49\x8c\xf7\x5e\xdb\x1f\x21\x5a\xe5\xe4\xde\x0b\x51\x0b\xe9\xbd\xf7\x68\x45\xe8\xa5\x31\x37\xef\x1d\xf2\x77\x2b\xb6\xcc\x97\xdc\xe9\xe4\x6b\x64\xec\x0a\xef\x6d\x89\xbe\x9f\xff\xbc\x80\xe8\x4d\xf3\x09\x4e\xce\xf8\x9d\x4f\xd7\x0e\xbf\xe1\xec\x01\x99\x7c\x43\xe0\xcb\x01\x99\x70\xac\xbf\x16\xd4\x89\x76\xf8\xe8\x81\xdd\x76\x4b\x72\xee\x27\xd4\xb8\x94\x3e\x98\x8f\xd7\x5d\x52\x64\x3a\xa3\x36\x81\xfc\x0c\x4f\x9d\x28\x4b\xe9\x1b\x7f\x13\x27\x8d\x43\xfc\x05\xf8\x94\x2d\x33\x9a\x01\x64\x81\xbf\x92\xe4\x86\xd0\x98\x51\xd1\x16\xb8\xc8\x63\x3f\x01\xc8\x2a\xfc\xb4\x38\x2e\x48\x1e\x47\x2f\xf8\x51\x2e\x9a\xfa\x1c\xff\x9b\xd4\x4f\xf3\xc1\x98\x0b\x51\x45\xf6\x3f\xb8\x84\xe4\x7b\xf6\x4f\x3d\xa4\x39\x63\x07\x0a\x14\xd6\x8a\x7d\x22\xab\x5d\xe2\xe7\x68\x5b\x15\x0c\x67\x8c\x6c\x0f\xd1\xba\x56\xf0\x1d\x09\xe3\xdd\xa6\x1e\xb2\x9c\xf1\x10\x6b\x74\x5f\x2b\xf7\x1d\x3b\x3b\x6b\x21\xcb\x19\xd5\x7f\x8f\x6e\x70\xea\xac\xe9\x26\x79\xa3\x26\x50\x0b\x57\x3e\x38\xe1\xf1\xca\x53\xc7\x4f\x92\xbf\xfb\x79\xec\xa7\xb4\x40\x77\x38\x75\xb6\x77\xd7\xd9\x27\xb2\xd1\x91\xf5\xc4\xd1\x9a\xa2\x39\xa8\x80\x0a\x10\x50\x60\x91\x3f\x0d\x10\xd4\x52\xe4\x6c\x6b\x69\x62\x62\xb5\xa4\xef\xc4\x41\x6b\x0e\x17\x20\x60\x0c\x0d\x20\x20\x07\xc6\x4e\x60\x61\x9e\x1e\xbc\x1c\x8c\xd1\x07\x7c\x77\x38\xb4\x05\x8c\x86\x5c\xec\xe5\xf2\x9b\xaf\x08\xe4\x64\x03\x60\x89\x2e\x5b\x86\x11\x86\xe5\x6b\x6d\x2b\x56\xb3\xf5\x76\xa8\x1a\xa9\x47\x90\x9a\xba\xf7\xc1\xa6\x10\x25\x71\x4a\xa4\x88\x2c\x2d\xd1\x2f\x41\x30\x8c\xf1\x6e\xb6\x4f\x08\xa5\x24\xff\xcc\x48\xb1\x74\xe5\x55\xe3\xfe\x6c\xe7\x2f\x29\x44\x80\x8f\xdb\xdb\x97\x28\x43\xb7\xb0\x44\x1f\xf1\x7e\x3d\xf0\x2e\xed\x08\x9d\x9f\xa0\x81\x33\x38\x39\x45\xc7\x03\x67\x02\xd1\x7a\xc8\x53\x4f\x5c\x34\x70\x86\xe8\x98\x27\x8d\xbc\x4b\x7b\x8b\xc6\x67\xb2\xa0\x0b\xd1\x7a\xcc\x93\x46\x63\x56\x6a\x34\x41\xce\x90\x95\x9b\xf0\xc4\x21\x4b\x1c\x8d\xc6\xbc\xdc\x89\x77\x69\x6f\xd0\x90\xb5\x76\x82\x9c\xc1\x84\x1d\x1c\x4b\xee\x6b\x75\xc0\x0b\x0f\x58\xef\xa7\x93\x7a\xd6\x90\x57\x1a\xb0\x76\x26\xa7\xc8\x19\x40\xb4\xcc\xc2\x7b\xa3\x82\x2c\xcf\x52\x87\x22\x95\x95\x1d\x8f\x64\xf2\x8e\xd2\x2c\xad\xda\x60\xcd\x8f\xd1\x35\x44\x81\x2f\xb4\xf0\x79\x8d\x21\x1b\xd2\x09\x72\xc6\x10\x31\x62\x9d\xc1\x5f\x65\x0c\x59\xc6\x00\x5d\xc3\xa7\x4f\x5a\x13\xd5\xbc\x25\x92\xc8\xe5\x7d\x40\x82\x0c\xff\x8c\x5a\xeb\xcf\x4b\x06\xa8\x81\xed\x5e\x84\x5a\xd8\xee\x6d\x51\x13\xdb\xbd\x0d\xaa\x63\xbb\xb7\x2a\xd1\x47\x88\xae\xd0\x3e\x48\xf8\x13\xf7\xc0\x0c\x44\x5c\xbd\x86\xcf\x2b\x8c\x68\xde\xc8\xaf\xb0\xab\x5c\x47\x99\x52\x6d\xb6\x53\x2c\x00\x1f\xae\x35\x68\xd7\x1a\x3c\x5d\x6b\xd8\xae\x35\x7c\xba\xd6\xa8\x5d\x6b\x24\x6a\x49\x96\x96\xfd\x57\x35\xe0\x0c\xf9\x13\x03\x7a\x6c\xd2\xe3\x76\x93\xe3\xa7\x07\x32\x69\xd7\x9a\x3c\x5d\xeb\xa4\x5d\xeb\xe4\xe9\x5a\xa7\xed\x5a\xa7\x8f\x4d\x7a\x30\x7e\x7a\xd6\x67\xed\x36\xcf\x9e\x1e\xc9\x79\xbb\xd6\xf9\x33\x10\xa4\x03\xaf\x06\xcf\x41\xac\x2e\xcc\x1a\x3c\x3a\x73\xb1\xde\x0b\xe9\x2e\x14\x01\xf1\xb6\xf0\x11\xcf\x41\x9a\xa5\x04\xa0\x4b\xdb\x45\x43\x34\x40\xc7\x03\xe4\xa2\x01\x1a\xf0\x06\x06\x68\xc4\xce\x28\x96\x37\x62\x79\x43\xc4\x0a\x0d\x65\xde\xa4\xca\x1b\x89\xbc\x11\x1a\xcb\xbc\x33\x95\x37\x44\x63\xd1\xe6\x98\x95\x17\x6d\xbb\x55\xc5\x89\xc8\x9c\xb0\x0a\x22\x73\xdc\xca\x3c\xe1\x35\x44\xae\x6e\x97\x35\xc7\xfb\x3c\x65\xb9\x03\x3e\x30\x76\xf2\x89\xdc\x09\xcb\x1d\x21\x17\x9d\xa9\xdc\x11\x6b\x79\xa8\x72\x4f\x44\xee\x39\x3f\xe4\x44\xee\x89\xca\x3d\x51\xb9\xac\xe6\x18\x89\xb1\x0f\xce\xd0\x48\x65\x9f\xa2\x63\x36\xcd\xc1\x00\x0d\x26\x32\x7b\xe8\xaa\xec\x53\x74\x26\xb3\x87\x68\x70\xca\x61\x35\x41\xc3\x21\x1a\x37\xb3\x47\x68\x70\xae\xb2\xc7\x55\xf6\xb9\xcc\x1e\xa3\xe1\x40\x65\x9f\xa8\xec\x33\x96\xcd\xc0\x38\xe0\x6d\x0e\x39\x70\x86\x67\x68\xa2\xb2\x07\xae\xcc\x3f\x61\x8d\x8a\xfc\x91\x6b\xe4\x0f\x64\xfe\x29\x6b\x55\xe6\x0f\x55\xfe\x79\x95\x7f\xc6\x9a\x15\xe0\x1d\x8d\xd1\x89\xce\x1f\xa2\xe3\x13\x96\x7f\x8e\x86\xe7\x2a\xff\x44\xe5\x0f\xf8\xb4\x78\x01\x06\x10\x8e\x3d\xe8\x0c\x8d\xce\xd0\x69\xbb\xc0\x00\x8d\x46\xb2\xc0\xd8\x35\x0b\x8c\x65\x81\x21\x1a\x4d\x54\x81\xa1\x2e\xc0\x31\xe4\xf8\x94\x15\x18\xb1\xae\xc5\x32\x8e\xc7\xe8\xac\x2a\x30\x91\x05\xc6\xac\x6b\x59\xe0\x04\x9d\xc1\x05\xfa\x82\xf7\xcb\x2c\x0f\x49\xfe\xc9\x0f\xe3\x5d\xe1\x8d\x0d\xc2\xf7\x67\x41\xf8\x4a\xcf\x81\xf4\x70\xa0\xdf\x6a\xe5\x2e\x6e\x33\x5b\x85\xf3\xa8\x2c\x84\x18\x03\x67\xc4\x7f\x81\xd3\xf4\x15\xe5\x2e\x7a\xf3\x79\x2a\x84\x32\xfa\x3d\xbd\xba\x74\x2e\xb4\xe1\x4b\xdd\x19\xaf\xa1\x6f\xa6\x54\xc2\xc4\xa0\x1e\xb0\x14\x6f\x85\x8e\x97\xf6\x7d\x67\xe8\x78\xa0\x03\xd9\x7f\xd0\x3a\x5b\x69\xc3\x24\xb8\xd7\xb3\x53\x5c\x4b\x11\x96\xbe\x08\xbc\xf3\x79\xac\xf3\xf4\x70\x00\x9f\x89\xa8\x3b\xab\x45\x26\xf1\xc0\x85\x3a\x78\x64\xc1\x97\xff\xcb\x9e\x79\x3f\xc4\x87\xb7\x30\xa5\xf6\xcc\x3b\x3b\x0c\x4e\x0e\xa3\x21\xb4\x67\xde\x65\xe2\x6f\xb6\x24\x84\xa2\x85\x3f\xca\x78\xf5\x29\x9c\x89\xb9\x29\xd7\xeb\x15\x78\xde\x3f\x10\x72\xa7\x3b\xf2\x8a\xe9\xf1\xd6\x24\x50\x95\x69\x51\x97\xf2\x8c\x8a\xff\xd2\x88\x3a\x63\xc5\x9a\x8e\x21\x5a\x9f\x6f\xbe\x40\x39\x3e\x72\x51\x86\x8f\x06\x5a\xf7\x83\xeb\xc7\x28\x2c\xf0\xd1\x0e\x93\x79\xa3\xad\x85\x0d\xa7\x47\x76\x8e\x6d\x1f\xef\xa4\x91\x2e\x14\x86\x8c\x0c\xec\x42\x8d\xd2\x17\xfa\x28\x10\x1d\xd1\xc3\x21\x95\xd8\xc5\x03\x94\x4f\x59\x97\x70\x2a\xf5\x6a\x12\xb8\xcf\xd8\x10\x62\x9c\x94\x52\x61\x53\xe8\xc8\x1f\x0e\x02\x59\x77\x52\x19\xf8\x70\x50\xbf\x6c\xa8\x4b\xc6\x91\xad\xcd\x2e\xb4\x5f\xa6\x94\x6b\xe0\x53\x78\x38\x5c\xc8\xbf\x35\xc3\xcf\x0e\x47\xd0\xca\x41\x8d\x34\xb5\xb1\x68\x66\x85\x44\x20\xce\x2e\x27\x56\x9a\xa5\xc7\x7c\xee\xc2\x75\x96\x30\x6a\x71\x7e\x4c\xdf\xa6\x16\xdf\x70\xd2\x65\xb4\x2a\x82\x78\x05\x9f\x2d\xa2\x54\x73\x2d\x84\xc7\x98\xb5\x7f\x43\x2c\xdf\xea\x00\xa7\x54\x2b\x76\x00\x2c\x6d\x83\x82\xfb\x54\xf1\x22\xf6\xa7\x47\xdc\x24\x98\x41\x87\x7e\xa7\xa8\x43\xff\xe1\xb0\x43\x90\xbb\x8f\xb6\x4f\xc4\xf6\x7f\xdb\x1d\x91\x8a\xce\x4c\xca\x9b\xb1\x5a\x06\x9d\xeb\x91\x12\xbd\xc1\xcf\x51\x70\x42\xef\xb0\xd0\x8f\x79\x58\xa5\x8a\xeb\xcb\xb4\xf9\xbf\x47\x54\x82\xde\xcc\x09\xa7\x49\x20\x80\x32\x44\xda\x6b\xbc\xdf\x78\x60\xe3\xe7\xab\x38\x05\x68\xeb\x01\xa9\xa3\x01\xb8\x10\x87\x7a\xe0\x3a\xdb\x02\x94\x7b\xe0\x93\x60\x70\x97\x1e\xf8\x2e\xa3\x34\xdb\x00\x94\x78\xe0\x7b\x12\x51\x80\xee\xbc\xb9\xfc\x25\x4b\x2d\xd0\xbd\x37\x17\x35\x55\xe9\x45\x89\xfe\x8d\xf7\xa2\x9f\xff\xe9\x81\xcd\x1d\x40\xe2\xe3\x9f\x1e\xd8\xdc\x03\xa5\x1a\xf2\x3f\x3d\xb0\xbd\xd3\x5f\xff\xf4\xc0\xf6\x1e\x94\xe8\x87\x0e\xf1\x60\xa5\xc0\x62\x2a\x45\xca\xa4\x4a\x00\x3e\x4f\x17\xec\xaa\xe0\x67\xbf\x9d\x42\x88\xd8\xcf\xb2\xac\x9b\x24\x70\x35\x7e\x25\x28\x14\xde\xea\xfe\x3d\x27\x0b\xe5\x68\x94\x2c\xa6\x04\xb3\x84\x52\x74\xfd\xde\x26\x4e\xb1\x4d\x62\x6a\x03\x00\x19\x91\x92\x62\xca\xb8\x8f\x1c\x53\xc6\x4e\x64\xf8\xf5\x3c\x5d\xa0\x18\x7f\x3f\xcf\x17\x87\x03\x00\x75\x77\xf5\xea\xa4\x8c\xe1\x2c\x7e\xd0\xdf\x60\xd6\x27\x25\x84\xde\x3c\xeb\xc7\x8b\x12\x42\xf4\x0f\x3c\x07\x1c\x01\x18\x90\x37\x39\xfb\x67\xc9\xfe\x49\xd8\x3f\x77\xec\x9f\x7b\x80\x00\x83\xf7\x96\x95\xd8\xb2\x12\x5b\x56\x62\x9b\x70\xf9\x01\xfb\x87\x95\x50\x0b\x2d\x7f\x88\x25\x12\xbf\xe5\x02\xcb\x2f\xb5\xc8\xf2\x53\x2e\xaf\x5c\x3f\xfd\xeb\x9f\xac\x5d\x89\x30\xfa\x97\x68\xd4\xd4\xf5\xa9\x3e\x75\xb3\x86\x6e\x50\xf5\xf5\x3f\xab\x9f\xff\x34\x35\x06\xff\x68\x3e\x73\x14\x42\x5e\x70\x38\x9c\xa9\x0b\xb5\xa5\xc7\x45\x3b\xcf\x8d\x6f\x48\xe9\xd5\x97\x80\xc2\xce\x82\x6c\xa5\xbd\x07\x04\x6d\xa6\x02\x96\x71\x43\xfe\xbd\xfb\x86\x34\x9d\x61\x75\xb8\xd5\x33\x5c\x77\xcd\xf3\x05\x6e\x5f\x95\x2d\x32\xa4\x52\x90\x57\x31\x12\x6c\x2e\x5f\xf4\x97\x85\x4d\x2b\x71\x2e\xfd\x16\xbb\xb3\xd4\xeb\xd0\xd8\x9b\x1d\xa7\x1e\x38\xd6\x07\x42\x0a\x4b\x6e\xb8\xc5\xdd\xf1\xed\x4b\xd3\x66\xe6\xbb\x0a\xe8\x7f\xb4\x89\x43\xd7\x64\x43\x60\x5d\xb8\x20\x1c\x9d\x91\xa6\xdb\x4c\x61\x3f\x73\x3c\xc0\x18\xff\x43\x6b\xed\x55\x4a\xf5\xec\x86\x94\xda\xa4\x7f\xb7\x7f\xb0\x53\x88\x28\x44\x59\x8d\x34\x6b\x2a\xa2\xb6\xc8\x0c\x0a\x2b\x17\xce\x7c\x64\x0e\xb7\x46\xde\x66\x71\x4a\x8b\xc3\xe1\x9d\xe9\xe0\xa2\x05\x76\x6e\x5c\x59\x01\xde\xd9\x6d\xed\x9c\x4f\x65\x1e\x2f\xe0\x02\xa7\x36\x65\x3f\x34\x48\xd8\x42\x54\x7a\xf6\x9f\x74\xdf\xd9\x13\x7d\x9b\x30\xa2\xf0\xa9\xf5\xcf\xf8\x30\x64\xf7\xb9\xd1\xbd\x36\x96\xa7\xb0\xe4\x83\xe7\xf1\xce\x54\x73\x6f\x79\x99\xef\xd8\xb5\xb5\x65\xb4\x01\x77\xca\xf3\x9d\x13\xc5\x09\x25\xf9\xc7\x3c\xdb\x16\xf8\x1f\xd5\x46\xfa\xeb\x6f\x8d\xa1\x73\x26\xa2\xb6\x6e\x76\x71\x65\x7a\xa1\x70\x64\x2f\x77\xa6\xc7\x46\x9e\x9a\xee\x4b\x14\x5d\xd6\xee\x16\xa5\x06\xb1\x4e\xa0\x8c\x9b\x46\x78\xdc\xb4\x94\xed\x89\xaa\xf7\x5c\x63\x87\x70\x36\x29\x55\x3d\xa9\x3d\x80\xde\xa0\x9e\x92\xce\xdd\x05\xf4\xd2\xf6\xe9\xfa\x38\x69\x4f\xe4\x9e\xa2\xb6\x46\xf4\xae\x1d\x54\xc9\x2a\x52\x7e\xb4\x42\x2f\x65\x0b\x52\x45\x59\x6f\x20\x40\xc3\x15\x5a\xaa\xf4\x8c\xf7\x2b\x42\x3b\x62\x71\x91\x92\x81\x8f\x81\x58\xb8\x4c\x61\x63\xfa\x17\xde\x13\xbf\x20\x6f\xd3\x0f\x3b\xea\x81\x60\xb7\x8c\x83\xe3\x25\xf9\x77\x4c\x72\xdb\x75\xc6\x4a\xe5\x02\x59\x03\x08\x10\x2b\xd8\x55\xcc\x6d\x17\x7b\x9b\x3e\xd0\xd8\x40\x94\x29\xd6\x7e\xbe\x7d\xb0\xbf\x13\x5e\xa8\x44\xff\x03\xef\x8b\x75\x96\x33\x26\xc2\x1b\x4c\x5c\x24\x3e\x72\x6f\xe8\xca\xdf\xde\x70\xc2\x43\x65\xa5\xa1\x9f\x87\xfc\x8d\x4d\xd8\x19\xdd\x79\xa3\xd3\x09\x22\x29\x25\x6c\x45\x3e\x07\x39\x21\xa9\x37\x1c\x4e\x50\x42\xfc\x9b\x2a\x65\x70\x3e\x31\x98\xc2\xbf\x75\x49\xba\x8d\x37\x16\xc6\x2d\x6d\x0a\x29\x4d\xf9\x0b\x87\x1b\xc3\xc9\x7f\x55\x41\xbc\xfe\x07\x12\xe6\x02\x4d\x5d\xda\x5f\xbd\x29\xe6\xc0\x4f\x18\x39\xf6\xab\xdf\x2c\xf7\x25\x8f\xe7\xac\x46\x88\xf2\xea\xb9\x22\x9d\xfd\x0f\x47\x83\x8e\x9b\xa7\x38\x62\x46\xc8\xaf\x0a\xc5\xb3\x7f\x39\x15\x7e\xc4\x22\x96\x33\x49\xfc\x7b\x94\x54\x85\x76\x33\xd7\xdb\x4d\xcd\x97\x0d\x8a\xe6\x40\xf5\x09\x10\x10\xed\x02\x04\x78\x55\xa0\xad\xd9\x5b\x1c\xde\x8c\x78\x8c\x3a\x7a\x88\x78\x31\x1e\x20\x78\x30\x19\xad\x8f\xde\xda\x79\xf9\x2c\xf7\xfe\x66\xe7\xb0\x56\xcc\x7f\xa2\x52\x32\x4b\xbc\xbf\xd9\x09\xb7\xe0\x30\x84\x67\x68\x45\xe8\xc5\x8e\x66\xe2\x41\xe2\xb5\x5a\xec\xc6\xee\x3f\xd2\x9b\xdd\x95\xe7\x16\x79\x39\x3a\x99\x76\x3c\xd5\xb9\xdf\xd8\xe3\xfe\x60\xf2\x0d\x4f\xdb\x66\xb7\x36\xe5\x2f\x06\x7d\xfa\x72\xc2\x43\x2e\xfd\x13\xef\x37\xd9\x32\x4e\xc8\x67\x4a\xb6\x5b\x92\x7b\x03\x32\x42\xc5\x96\x90\xf0\x75\xec\x27\xde\xc0\x9d\xb8\xc8\xdf\x6e\xbf\xf3\x73\x6f\x30\x70\x5d\x14\xe6\xfe\x2d\x2b\xc5\x55\x28\xb2\x90\x15\x61\x3b\xa1\x48\xfd\xe0\xeb\x92\x15\x1a\xbb\x2e\xd7\x7d\xa6\xf1\x96\x6d\x23\xb7\x9c\x52\xc7\x7f\xde\x29\xfa\xcb\x02\xa0\x19\xb7\x55\x43\x57\x44\xe9\x81\x6c\xe2\xbb\x38\x2d\x4c\x0c\xcb\x59\x66\xce\xd8\x6a\x67\xeb\xf3\x77\x1b\x54\x98\xa8\xb5\x2f\xbd\x1d\x8a\x2a\xea\x0c\x85\x42\x0f\x22\x5b\xe5\xfe\x76\x7d\x5f\x7f\xf2\xdb\x97\xfc\xc5\xaf\xa9\xbf\x60\x8c\x8b\x11\x98\x7c\x0c\x9c\x20\xe4\xfd\x31\x16\x48\xb4\x2d\x34\x16\x64\xcb\x60\x01\xd1\x06\x7f\xb5\x0b\x88\xee\x71\xc2\x88\x89\x15\xfe\xab\x1d\x41\x74\x83\x4d\x36\x6c\x6f\x34\xee\xdd\xa3\x30\xce\x89\xd0\x93\x02\x09\xcd\x01\x12\x9d\x79\x81\x7d\x8f\x56\xc8\x17\xaf\x2b\x79\x1c\x92\x82\xc1\x4c\x0e\xc0\xdb\x20\x76\xc9\xf2\xa4\x62\xed\x87\xd9\x6d\xe1\x7d\x44\xd5\x48\xbc\x0f\xf6\x06\x6d\x21\x52\xb7\xe0\x8a\x95\xda\x12\xef\x8b\x08\x6b\x17\x53\xee\x17\xfd\x2f\xe8\xdf\x6f\x19\x45\xe4\xfd\xb3\x44\x6b\x88\x96\xed\x1b\xf1\xd6\xb8\x11\x97\xdf\x0e\x66\xcb\xe3\x81\xe7\x42\x74\x87\x07\xd3\xbb\x57\xcb\xe9\x5d\xbf\x0f\x6f\xe7\x77\xc7\x03\xf3\x6e\xbc\xd3\x77\xe3\x0d\xbe\x7d\xc0\x81\x73\xc7\xb3\x10\x4b\x2f\x21\xba\x11\x46\x50\x4f\xc4\x8d\xd0\xf6\x3f\xc2\x50\xcf\x49\xed\x1c\x3e\xed\x4e\x79\xfa\x5d\x96\x25\xc4\x4f\x6d\xc0\x03\x65\xac\xb3\x82\x53\x51\x22\xd6\xad\xc3\xd2\x58\x1d\x87\xa5\x4b\xd3\xb0\xb9\xe7\x0d\x16\x8f\x97\x79\x28\x47\x06\xdc\x7a\xf9\xbf\x06\xc3\x53\x7b\xe6\xfd\xe8\xd8\x33\x6f\x38\x99\xbb\xc7\x93\xc5\x61\x38\x77\x8f\xc7\x8b\xb9\x7b\x7c\xbe\x38\xcc\xdd\xc1\x62\xc6\x7f\xf2\x7f\x66\x10\xee\x47\xe5\x1f\x5f\xc2\x5a\x70\x33\xc3\xbc\xcc\x17\x9e\xe5\xea\x87\x1d\x37\x22\x9d\x42\x19\x91\x94\x08\xc7\x64\xd2\x2c\x95\x07\x26\xb5\x5c\x8f\xab\x83\x80\x82\xe4\x37\x71\x40\xfe\x91\xe5\x5f\x49\x0e\xe2\xd4\x4a\xfd\x9b\x78\xe5\xd3\x2c\x87\x70\x2f\x6a\xe0\xa1\x74\x27\xa4\xd9\x85\x96\xd7\x09\x55\xc7\xa9\x35\xe7\x70\x8f\x1f\x1d\x66\xf6\xc4\xd9\xa5\x39\x59\xc5\x05\x25\x39\x77\x47\x07\x79\x00\x52\x6b\x28\x02\x95\x92\x34\x04\x9e\xee\xac\xa0\xd9\xd6\x16\x6e\x10\x18\x26\x3c\xe1\x21\x57\x61\xc2\x70\x32\x12\xa6\x60\x83\xd3\x13\x6e\x0c\xe6\xa4\x76\x06\x91\xaf\xb4\x86\x27\xd1\x69\xa5\x00\x1d\x04\x91\x1b\x69\xd7\xb7\xe7\xe7\x64\x60\x28\x40\x9f\x84\x83\x4a\x01\x7a\x34\x0a\x86\xd1\x48\x69\x0d\xbb\xee\x72\x14\x69\xad\xe1\xc1\xd8\x3f\x27\x5a\x6b\x78\x40\xce\xcf\xc2\x53\xad\x00\x7d\x76\x16\x04\x67\x95\x02\xf4\xe9\x78\x79\xa2\xb5\x86\xcf\x4f\xc8\x99\xa1\x00\x7d\x12\x86\xa6\x02\xf4\xe4\x24\x58\x1a\x0a\xd0\xe3\x33\x3f\x88\x5c\x50\x72\xc3\xd3\xc1\xe9\x29\xe4\xea\x10\xa9\xbd\x83\x28\xc0\x3e\x2a\x70\xec\xf8\x28\xc2\x89\xe3\x23\xe5\xd9\x52\x1a\xc3\xa8\xb3\x42\x2b\x9c\x06\x86\xee\x4a\xa1\x02\x64\x76\x68\x9d\x0c\x9d\x71\x4d\xad\xc4\x19\x96\xe6\xd9\xb2\xdf\x15\xe4\x3d\xb9\xa3\x4a\x29\xc0\x3b\x72\xd5\x9b\x71\x53\x87\x44\xbc\x1e\xe9\x67\x5b\x30\xc8\xc9\x06\x94\x65\xf9\xc4\x66\xd5\xc6\xb8\x5b\x1c\x96\x68\xf8\xbc\x28\x65\x4f\xc7\x0f\xeb\xee\x2c\x78\xd2\x36\xb8\x78\xd2\x15\xfb\xf6\xc9\x18\x64\x6b\xd3\xbe\x78\xe2\x0a\x5c\x1d\x9e\x0d\x64\xc4\x1a\x77\xd0\x30\x31\x1e\x9c\xc2\x9a\x95\x62\xcd\x41\x51\x45\x91\x71\x29\xfd\x9e\x7b\x2e\x6e\x9d\xb4\xd4\xe0\xe9\x84\x8b\xc4\x19\xe3\xe6\x30\xe3\xef\x3d\x9e\xc0\xfd\x43\xb0\xa4\x94\x73\x79\x54\x72\x79\xc2\x8e\x79\x2f\x7c\x9c\xf3\x3b\x46\x3a\x32\xe7\xbf\x69\xbc\x21\xff\x6f\x96\x56\xa6\xe1\x42\xef\x57\x46\x7a\x02\x24\x05\x2a\xe9\x4d\xd5\x40\x96\x5e\xd5\xe3\xb1\x12\xb8\x77\x4d\x6d\xd7\xa2\x32\x3c\x0f\x65\xfc\x10\x4e\x8a\x72\x96\xc7\x18\x02\xfb\x99\x93\xc4\xa7\xf1\x8d\x2e\xb4\xad\x62\x23\xb0\xcf\x24\x2e\x28\xfb\x6b\x58\xfb\xb2\x74\x43\x9c\x10\x19\xde\x3f\xdb\xf4\xb7\xcc\x58\xfb\x86\x85\x9b\x21\x52\xe5\x90\xe4\x24\x5e\x57\x36\x99\xd3\x45\x89\x6a\x0e\x23\x45\x14\xf1\x39\x5d\xe0\xb4\x64\xff\x13\x4e\x68\x7d\xc7\x3f\x1c\xe2\x9a\xe5\x37\xdc\xeb\x85\x25\xbd\x9e\x4d\xf0\xef\x06\x0a\x28\x09\x4e\x1e\xe7\xe2\x93\xd1\x86\x58\x32\x94\x8a\x9c\xef\xe3\x42\x2e\x22\x8a\x45\xca\x6b\xa3\x21\xe4\xe3\xb0\x16\x07\x5e\x13\x85\x88\xe2\xf9\x02\xa5\xd8\x9d\xa6\xaf\x9a\x34\x85\x08\x51\x39\x4f\x4d\x92\xa1\x12\xb6\xa4\xe4\xd6\xb6\x89\xec\xab\x16\x47\x06\x3a\xcb\x38\x0d\x65\xb4\x09\xc3\x54\x3c\x80\xf6\x5c\x80\x6d\x81\x28\x64\x94\x38\xda\x07\x7e\xb0\x26\x5e\xc4\x55\x97\x45\x1b\x10\x15\x34\xf7\x29\x59\xdd\x7b\xa1\x23\x7f\xc6\xa4\x70\xb8\xcb\xf7\x30\x0e\x4a\xb6\xeb\x7e\xd7\xd9\x98\x31\x66\x7e\xdd\x5c\x04\x02\x3c\x63\x26\xc9\xef\x3b\x13\x33\x6e\xca\xaf\x9a\x88\x81\xa4\x4f\xcf\x46\x39\x9b\x6a\x05\x16\xf2\x7c\xd4\x08\xdd\xe3\xed\x58\x8a\x0c\xf3\x20\x93\xc2\x3a\xe9\x89\x52\x43\xde\xc6\x68\xdb\xcc\xf1\x65\x7a\xed\xee\x14\x67\x1f\xb7\x72\xdd\x77\xf6\xd2\x35\x16\x03\x30\x5e\x52\x96\x28\x3e\x1c\x78\x24\x90\xda\xe4\xe5\xe6\x7d\xc6\x32\xae\x08\x6d\x6f\x4d\xef\x81\xa5\x7d\x62\x61\xc9\x63\x0b\x4b\xcd\x55\xa4\xdd\xab\x48\x5a\xab\x68\x1e\x3d\xcf\x9b\x4d\x0d\x3e\x2c\xa1\x3a\x5f\x1e\x9b\x16\xc5\xee\x94\xb6\xa7\x45\xf9\xb4\xa8\x39\x2d\x5a\x9b\x56\x6a\x4e\x2b\x7d\xee\xb4\xd8\x91\xf9\xbc\xe9\x98\x67\xe1\xef\x31\xfe\xd8\x1c\x7f\xfc\xdc\xf1\x9b\x47\xfd\xd3\xf3\x30\x2e\xc5\x75\xc3\xde\x04\xc5\xec\x16\x22\xd2\x67\x63\xdc\xeb\xd9\x19\x8e\xe7\xe9\x82\xbb\xca\x97\xdc\xc8\x34\xe7\xb1\x66\x77\x4e\x64\x83\xf7\x99\x05\xfa\xb4\xcf\x23\x11\x6e\x7c\x6a\x31\x26\x28\xe4\x91\x1f\x05\x25\xdf\x70\x7d\xff\x20\x25\x3f\xa9\x58\x3a\x4e\x1b\x9d\x34\x28\xa3\xf3\x73\xd8\xf0\xdf\x20\xf8\x1d\x92\x52\x19\x2b\xd2\x86\xa8\xc9\x95\xe5\x24\xc9\xfc\xd0\x56\xb4\x0d\x63\xa3\xea\x7e\x3a\x76\x8e\x8f\xf6\x71\xe8\x81\xaf\xdb\x6c\xeb\xb0\xc2\x24\x17\xf6\x23\x6a\xc7\x6a\xb2\x46\x45\xa2\x04\x9c\xa4\x39\x02\x25\x44\x45\x47\x8b\x8c\xdc\xdc\xaf\x73\x12\x79\xe0\x0f\x00\x65\xe9\x65\x12\x07\x5f\xbd\xa4\x44\xcf\xec\x3c\x27\x34\xbf\x6f\x77\x2a\x92\x19\xbd\x19\x3d\x77\x1a\x49\x96\xae\x18\xd5\xf6\xf0\x4c\xae\xfd\xaf\x71\xba\xb2\x7c\x8b\x15\xb5\x78\x59\xc7\x61\x13\x0b\xff\x77\x4c\x6c\xfb\xfc\x89\xf9\x61\x9c\xae\x1e\x9e\xd7\xf7\xb2\x80\x98\xcc\x9a\xb7\xfb\xa4\x0b\x17\x69\x37\x34\xb3\x1b\x41\xf3\x65\x63\x96\xb4\x62\x91\xe9\xb0\x63\xda\x20\x8c\x6f\x80\x18\xae\x18\x29\x40\x39\x77\xf5\x82\x02\x04\xac\x1f\x77\x43\x77\x30\xb6\x00\x2a\x20\xf4\x08\x0f\xc4\x17\x7e\xd8\xd1\xd9\x2f\x69\x27\x32\xdb\x09\x59\x33\x5b\xbf\xa0\xaf\x49\xe2\xdf\xff\xa2\x76\xb6\x50\xf9\xd2\x99\xae\xcd\x77\x1b\xc1\x1c\xfa\x8e\xef\x2c\xb3\x2c\x41\x6a\x8c\x55\x8a\xee\x4e\x27\x95\x88\x3a\x3e\x5e\x97\x68\x78\xe6\xfe\x86\xb8\x57\x79\x69\x8a\x3e\x72\xe3\xd5\xad\xc1\xf5\xc8\x80\x4a\x47\x66\x68\x72\xfe\x30\xc5\x46\xf0\x3c\x77\x52\xdd\x23\x88\x4c\x56\x6d\xe0\x0e\xa5\x8b\x99\xb3\x87\x59\xb5\x71\x93\x57\x6b\x29\x60\xe8\xd7\xc9\x16\x97\x96\xea\x68\xba\xc8\xd7\xa7\xff\x3c\x5b\x60\x3b\xc6\x64\x9e\x2d\x90\xed\x63\x3a\xcf\x16\x70\x66\x12\x28\x0f\xfd\xde\x2b\xaa\x03\xf9\xe2\x8f\xd9\x7d\xdc\xf9\xf0\x57\xe7\x5d\xf0\x63\x2d\x73\x13\x21\x9f\xdb\x1a\xb2\xb6\xe5\xab\x20\xf4\x62\x88\xd2\x86\xff\x0a\x61\x69\xe4\x91\x9a\x63\x91\xff\xcd\x4c\x57\xa1\x98\x2e\x11\x8e\xd5\xbc\xaf\x2b\xa7\x4a\xec\x0a\xe4\x8f\xb2\x42\x79\x2b\x12\xce\xe4\xdb\xe8\x47\x9c\x1a\xe3\x2b\x1d\xcc\x69\xba\xf1\x92\x5d\xc8\x78\x5f\x31\x6d\x26\x2b\x57\xe7\xd2\x4a\xb3\x6a\x87\x76\x49\x24\xb3\xae\xb3\x8f\x7e\x4e\x0b\xe9\x88\x6e\xc0\x7d\x35\x4a\x9d\x43\xad\x2d\xa0\xe2\xce\xaa\xd7\xc3\x27\x16\x5c\x07\xb6\xad\xe2\xe4\x55\x61\x59\x8d\x57\x49\x33\xd2\xde\xac\xf6\xd5\x0e\xa7\xa7\xd4\xd6\x64\x50\x3d\x8d\xd3\x86\xe2\x7b\x3a\x77\xb9\x32\x8a\x97\xd6\xe6\x2e\x27\xf8\x70\x08\x11\x76\x0b\x40\x3b\x72\xfc\x82\xa2\xc8\x11\xd1\x8e\x0b\x14\x55\x50\xaf\x3e\x0a\x44\x90\x14\x50\x44\x9a\xe6\x2e\xb5\x17\xc0\x2c\xb9\xd1\xf1\x41\xdb\xc1\x2d\xf6\xa2\x69\xaf\xc5\xb8\x39\xc5\x6e\xbb\xcd\x72\x4a\x42\xb1\xea\xc5\x87\xc8\xd6\x03\x81\x73\x77\xa1\x16\x73\x45\xe8\x45\x41\x3b\x22\x6b\xf0\xc1\x97\xa8\x4b\x9b\x42\x7b\xc6\x97\xc3\xc5\x14\x1d\xf1\x40\x28\x7e\x5e\x98\x87\x5c\x4d\xed\x8e\x26\x35\x7e\x47\x15\xd7\x01\xd6\x0a\xc2\x95\xf1\xb6\x79\x16\x90\xa2\xb0\x7e\x92\x6d\xff\xa4\x23\xaf\xfd\x24\x46\xf2\x13\x80\xc2\xc3\xac\x5f\x50\xac\x7b\xb5\x29\xda\x0b\xf7\x8c\xf1\xbf\xc9\x5f\xfd\x62\x4d\xfd\xd5\xdb\x54\xd0\xf1\xde\xd1\x00\xc5\xab\x34\xcb\xc9\xb5\xbf\xf2\x64\x44\xed\xd8\x88\xa8\x1d\x2b\x35\xf4\xd8\xd1\xe5\x54\xf8\x57\xdd\x15\xe5\x66\x8a\x0d\x85\x0a\x99\x09\xbb\x27\x7d\xa1\x82\x56\xeb\x49\xea\xf8\x6c\x7e\x61\xf9\x96\xd0\x7a\xb5\xb2\xdc\xba\xf8\x7c\xed\xa8\x79\x49\xb4\xc0\x89\x4d\x34\x8a\x64\x72\xd7\xca\x05\xc4\x69\x63\x13\x17\x38\xee\xf5\x62\xe3\xfb\x70\xa8\x8e\x01\x76\x2e\xb7\xb7\x3c\xec\xf5\x6c\xff\x99\xfb\x1e\xa2\x16\x6f\x59\xfc\xd7\x15\x41\x04\xb6\xdf\x16\x41\x14\x8f\xb0\x47\x75\x0e\xf9\x77\x9d\xd9\x6f\x15\x15\xb1\xb9\x75\x88\x8a\x1e\x99\x9d\xc9\xcb\xfe\xae\x53\xfb\x4d\xd2\x16\x36\xaf\x6e\x69\xcb\x03\x53\x2b\x1b\xce\xd1\x9a\x0a\x23\x04\x81\xda\xb5\xf7\xb0\xe6\x88\xb3\x21\x9b\x2c\xfe\x37\x09\x5f\x9b\xe5\xb9\xb1\x6e\x67\x0e\xe6\x9c\x64\x07\x9e\x36\x4e\x6b\x1b\xca\xed\x0a\xd1\x03\x2d\x95\x88\xa4\xbb\x8d\xd0\x24\x66\x87\x54\x90\xa5\x51\xbc\xda\xc9\x6f\xb7\x7c\xb0\xa2\x70\x9f\xab\x0f\x3f\xc6\x2d\x20\x7d\x58\x54\x7b\x3a\xd8\xe5\x39\x49\x83\x7b\x6f\xcf\x83\x4d\x7b\x40\x25\x80\x12\x6d\x49\x1e\x90\x94\xea\x2c\xf9\x0d\x4a\x71\x10\x78\x42\x3b\xc5\xdb\x6f\xb2\x94\xae\xb9\x4e\x1c\xc9\xe3\x00\xa0\xd0\xbf\x37\xbe\xee\x89\x9f\x7b\x60\x78\x1c\xc6\xab\x98\x82\x12\x6d\x84\xf1\x9a\xaa\xc5\xdb\xe8\xae\xa3\x3e\x4b\xc4\x38\x39\x5d\x83\x7d\x3c\x55\x21\xda\x25\x89\xb7\xbf\x25\xe4\x2b\x2f\x27\xaa\x3c\xbf\xbe\x78\x18\xd0\x13\x5c\x67\x3b\x23\x17\x6d\xe2\x74\x47\x89\xd9\x9d\x9a\xd3\x13\x05\xe5\x93\x55\x7b\x66\xbf\xb4\x9e\x7e\xb7\xe0\xa1\x1b\x24\x0c\xd5\xac\xff\x33\x8d\x95\x25\x22\xa5\x0d\x19\xff\x31\x7c\x9e\xac\x63\x34\x31\x1d\xcd\xaa\x27\x4b\x9b\x0b\x3d\x18\xab\x31\x82\x82\xc5\x18\x9e\x8d\xf8\xbb\x9f\x3d\x70\xc7\xb0\xae\x8b\x61\xfa\x57\x56\x81\xc8\x53\xa5\x0d\x88\x32\x6c\x52\x4e\x10\x05\x38\x76\x7c\x67\x57\x90\x77\x64\x93\xd5\x8e\x2d\x21\xae\x92\xd7\x78\x36\x4b\xbd\x2e\x8a\xf1\x11\x8b\xef\x47\xf8\x06\x46\x1c\xc3\xd2\xce\x50\x15\xec\x8b\xf5\x73\x24\x5e\x39\xe6\x89\xe3\x2f\xb0\x48\xc0\x99\xa4\x1b\x53\x94\x99\x11\x2c\x9a\x0c\x2d\xe3\x39\xb5\x03\x5d\xe9\xa9\x38\x28\x91\x64\xfe\x9e\x70\x1e\xfa\x28\xf3\xe7\xd7\xde\xe9\x1a\xa2\x28\xb6\x20\x15\xa7\xe7\xd7\x9f\xe5\x77\x85\x76\xf9\x1b\x3b\xbe\x18\xc9\x13\x6a\x0c\x26\x9b\x6b\xc6\x57\x01\x6b\x4a\xb7\x85\xf7\xf2\xe5\xc6\xa7\x24\x8f\xfd\xe4\x78\xc7\x03\xf1\xbc\xdc\xe6\x59\xb8\xe3\x55\x8e\x39\x87\xfe\x72\xc6\xa3\x1c\x83\x3e\x41\x29\x1e\x74\xdf\x33\x78\x00\x69\x1f\x83\x9e\x9f\xaf\x8a\xf9\x82\x95\x4d\x59\xa5\x1f\x3e\xbd\xd5\xee\x6d\x6d\xf3\x12\xd2\xea\x86\xef\xe2\x34\x8e\x62\x12\x5a\xef\xd4\x28\x7e\x78\x2b\x84\x1f\xd6\x1f\x40\x9f\xf4\xc1\xd4\xba\x89\x8b\x98\x56\x62\x3f\x1e\x1c\x97\xed\x28\x45\xa1\x39\xa0\x7c\x92\xd9\x2f\xd1\xc8\x7d\x62\xbb\x18\x70\xd2\xd6\x1c\xb9\x32\x78\xf2\x8b\x22\x5e\xa5\x75\xeb\xf3\x0a\x94\x83\x87\x44\xaf\x4d\x97\x95\x73\x5a\x85\xa8\x13\x8f\xa3\xb0\x65\x51\x55\xf7\xae\x23\xec\xaa\x52\x94\x43\x8e\xc6\xea\x19\x55\xab\x4d\x94\x50\x89\xd4\xd7\x71\x81\x74\x47\x86\x75\x4a\x66\x58\xa7\x3c\x16\xc4\xf3\xff\x50\xeb\x14\x43\x81\xa5\xde\x6f\xa5\xc1\xcc\x20\xd0\xee\x4c\x00\xbe\x34\x76\x9a\xe1\x75\xe2\x57\xba\x53\x51\x86\x2f\x6e\xc9\xf7\x34\xff\x9a\xe5\xe2\x78\xd2\xde\x72\xf9\x48\x7b\xbd\xd8\xa6\x50\x87\xa6\x55\x3a\xd3\xed\xb0\x1e\x39\xdc\x03\x1d\xa7\x12\x08\xc7\xb4\x76\x2c\x54\xa6\x7b\x3d\xf9\xe4\x9e\x71\xcd\x61\x8e\x1f\x88\xe5\xa0\x14\x7a\x3c\x8d\x17\x2b\x21\x44\xd9\xe3\x7b\xc4\x17\x7b\x64\xdc\x38\x90\x39\x30\xa6\xe9\x43\xc1\x1b\x6d\xc8\xad\xd0\x52\x9c\x1e\x0e\x8c\xb0\x7a\xd0\xf9\x7a\x15\x25\xa5\xed\xc0\x5d\x48\xd1\xb9\xb8\x43\xfc\x84\xa5\xe1\xac\xb9\x44\xa3\x27\x9c\x55\xff\x37\xdb\xb7\xcf\x39\xca\x9e\x50\x57\x7a\x76\xb8\xfe\x6e\x3d\x93\xe0\x49\x6d\x96\xe2\xc9\x90\xff\x35\xf1\xe6\xf0\xcc\x94\x5d\x66\xbf\xd9\xe3\xd1\x6f\xf0\x77\x34\xa8\x69\xbe\x6e\xe2\x54\x68\x52\x6f\xfc\x3b\x11\x33\x3d\x6d\x1e\x28\x5c\xfb\xdf\x0c\x08\xc2\x23\x2f\x80\x3f\x88\xe8\x6b\x3a\xe2\x25\xd4\x5b\xbb\xa6\x92\xc6\xbd\x6b\x2d\x0b\x9a\xdb\x03\xa5\x0d\xc1\xf6\xc9\x27\xb2\xba\xba\xdb\xda\xc0\xd9\x0f\x90\xe1\xd4\x57\xce\x04\x9f\xcc\x86\xde\x00\x81\x12\x40\x04\x56\x00\x72\x4a\x6b\x23\xdd\x9b\x6b\xda\xa6\xd7\xe3\x36\x00\x73\x77\xa1\xe5\x6b\x76\x8a\x3b\x4c\x00\xd4\xb8\xb9\x81\x15\x44\xe9\x0c\xe4\xab\xa5\xee\x75\x6c\x1a\x12\x00\x1f\x78\x00\x20\x60\x57\xea\xc8\xad\x06\x4d\xb9\xf3\xab\xd1\x8c\x33\x31\x6f\xb9\x63\xfd\xc1\x09\xf4\x0c\x85\xe2\x7a\xce\xcb\xe1\x64\xf2\xcd\x80\x8c\xe0\xcb\x01\x19\x19\x8a\xcc\x16\x9b\x24\x04\xd0\x03\xa0\xb4\x09\x54\x50\x22\x55\x54\x6e\x5b\x42\x40\x00\x32\x4e\x57\xb6\x8b\x28\x97\x4e\x72\x83\x9b\x39\x9f\x0e\xe2\x5e\xf1\x00\x02\xeb\x22\x11\xff\xfa\x60\x61\x9a\xe2\x3c\xe0\x2d\x8a\x53\x8f\x23\xa4\x3a\xce\x6a\xfd\xd0\xfe\x00\x55\x52\x48\xa8\x4c\xe0\x10\xd0\xfa\x02\xdc\x75\x53\xaa\xfc\x79\x67\x38\x7b\x10\xfc\x1c\x1a\x6f\x92\x8c\x2d\x34\x0f\x29\x50\xbb\x78\x2a\xf2\x9a\xbb\x52\x4b\xb5\x9f\x78\xd9\x11\xf7\x48\x4e\x8d\x48\xe5\xab\x25\x80\xb3\x8e\xe5\x7e\x64\x75\x5c\xe8\x71\x13\xbb\x66\x5b\x0c\x62\xdc\x22\x78\x3e\x58\x60\xc3\xd4\x83\x3b\x0a\xf9\x13\x03\xfe\x7c\x58\xcf\x18\x8a\x0c\xd3\x89\x05\x6d\x20\x4d\x63\x75\xab\xc9\xee\xcc\x5b\x36\x11\x16\x30\x49\x85\xd7\xd5\x76\x64\x47\x67\xdf\x71\x27\xf0\xa5\xad\xf7\xaa\x4e\x2b\xeb\x6f\xb3\x8a\xa0\x2d\x38\xed\x62\x13\xcc\xb6\x2e\x14\xd1\x16\xeb\x3b\x52\x94\xd4\x25\xb4\x33\x7e\xc3\x9c\xf1\xe5\xc0\x75\x51\x86\xe9\x7c\x28\x7e\xee\x70\xfe\x8d\x1e\x41\x86\x06\xc7\x19\xe3\x92\xda\x8d\xfe\xca\xc3\xcc\x26\xfd\xf4\xe5\xc8\x85\x7f\x1a\x0c\x75\xcc\x8a\xe3\xdd\x37\x1a\x0e\xba\x6b\x7a\x3c\x42\xe7\xc7\x14\x0d\x20\x3a\x1e\xc0\x12\x05\x58\x60\x7e\x81\xe7\xc6\xae\x63\xdb\x2c\x61\x07\x12\x6a\x25\x9e\x75\x25\x8e\x21\x54\x12\x21\xb1\x6b\x8c\xa8\x92\x76\xd0\xc7\xec\x06\x50\x21\x77\xe6\xa3\x05\x84\xc8\xb7\x05\xda\x07\x0a\xed\x8b\x12\x96\x06\x34\xbd\x06\xee\x5a\x14\xd3\x87\xb6\x85\x4d\x5e\xe2\xe1\x64\x02\x5f\x61\xc7\x1d\x9d\x0f\xcf\x66\xe4\xe5\x60\xe8\x9c\x0f\x3d\x6d\x84\x60\x13\xb6\xe0\x13\xf8\x72\xc0\xfe\xa0\xa1\x33\xe6\xe4\x8c\x90\xde\xd8\xb6\x33\x1c\x0c\x4f\xbe\x61\xab\xd7\x77\x4e\x07\x93\xe1\x37\x6c\x05\xfb\x8e\x7b\x3a\x64\x3f\x87\x0b\xe8\xd0\xec\x4d\x7c\x47\x42\x7b\x04\x9b\xfe\xe7\xab\xa3\x91\x63\x03\xa2\x38\xb3\x29\xe4\x27\x09\xa3\xb3\x14\x14\x38\x5a\x1d\x55\x41\x3f\xe5\x7d\xc0\x41\x03\x91\x9a\xec\x7c\xb4\xc0\x14\xf9\x35\x8a\xb4\xa8\x9c\x2c\xd4\x7a\xe0\x3b\x50\xb4\xd2\xd8\x86\x50\x37\x37\x5c\x7c\x83\x07\xc7\x54\xc7\x03\xec\xac\xc3\x8f\x01\x68\xb8\x82\x98\xa6\xaf\x46\x82\x1b\xd3\x0d\xa5\xb2\x21\x45\xe8\xd5\x46\x18\xfd\xa6\x11\xf6\xb1\x3d\x70\xdd\x63\x23\x05\x7e\xf3\x1f\x19\x71\x1f\x33\xec\x3c\x36\x52\x58\xc3\xe6\x0c\x4a\x34\x7e\x42\x61\x57\xb3\xd7\x27\x8c\xbf\xde\x73\xb1\x85\x64\x9d\xf9\xf3\xb3\x77\xe4\x72\xad\x64\xf9\xdd\xf8\xe4\xd9\x52\x08\xc9\x8d\x0a\xf9\x77\xa5\xf5\xc2\x3e\x57\x44\xe9\x82\xe8\x12\x3c\x29\x8f\x6f\x78\x78\x46\x4a\xde\xe4\xd9\x46\xa8\xa4\x76\xe7\xe9\x7a\xd2\x1c\xe3\xc8\x45\xfa\x79\x9c\x7d\x50\x31\xb0\x12\xc5\x78\x9f\xca\x5e\xc5\xe1\x22\x8b\x0a\xd2\x93\x8f\xdd\x4f\x12\x92\xeb\x5f\x3c\x4d\x9f\x33\xe2\x23\xa6\xf7\xbc\x31\x1f\xef\xff\xf8\x47\x41\x7c\x8b\x59\x6f\xb6\x7e\x4e\x9e\x31\xe1\xee\xb1\xed\xf0\xbe\x6c\xe8\xca\x28\x6a\xd5\x89\x0b\x2e\x02\x22\x70\xe6\x7b\xbb\x39\x71\x54\xbf\x8b\xc3\x21\x2b\x77\xf3\xdc\x79\xa3\xf5\x24\x16\xf5\x51\xe5\x24\x0d\xc5\x7c\x7e\xc1\xa0\x4a\xc4\xda\x64\x5d\x2e\xb0\x8a\x94\xd4\x29\x62\xd6\x31\x51\x9c\x15\xa1\x06\xd5\x2e\x54\x4e\xa3\xee\x4c\xc1\x91\x16\x5a\x03\xbe\x91\xfd\x9a\x14\x41\x1e\x6f\x69\x96\xa3\xad\x51\xe2\xa3\x5a\xa5\x0f\x91\x36\x01\xaa\xb8\x86\x69\xc5\xea\x34\x9e\x87\xf3\x9a\xf1\x66\xe5\x38\x44\xa8\x29\xac\x95\x45\xee\xd6\x4e\xe1\x34\xeb\xf5\xb2\x23\x8c\xd7\xbd\x1e\xab\xcb\x0d\x66\x45\x50\xa4\x82\xe5\x46\xfc\xb5\xc8\x57\x97\x33\x27\x87\x2a\x07\x32\x3b\x7e\xfd\xa2\x8d\xb0\x25\xba\xc7\xee\xf4\xfe\x95\xaf\x78\xa1\x7e\xff\x5e\x74\xb4\xc2\xfe\xfc\x7e\x21\x82\x8e\xcd\x57\x8b\x5e\xcf\x3e\xca\x0f\x87\xa3\x7c\xbe\x62\x5c\xa8\x7d\xb4\x39\x1c\x8e\x36\xea\x63\x77\x38\x1c\xed\xd8\x87\xa8\x7b\x83\x43\x3b\x45\x2b\xc1\x2b\x06\x36\x45\x2b\x74\xa3\x38\xc2\x25\xdc\x97\xa5\x76\x09\x42\xd9\xbe\x3e\xfb\x0d\x41\xba\xb2\x27\x59\x97\xf8\x49\x45\x7c\xff\x49\xe6\x66\x57\x31\x37\x5d\x94\x57\xc5\x7d\x16\xb5\xe5\x3f\x1c\xf6\x9a\x91\xf7\xe6\x8b\xd2\x88\xbb\xcb\x9f\x24\x7b\xbd\x7a\x6b\xfc\x8d\x40\x14\xc7\xb4\x6c\x3a\x96\xd1\x67\x28\x0f\xc3\xff\x3c\x76\x94\x41\x93\xb3\xa3\xe9\x82\x3b\x8a\x80\xa5\x34\x89\xaa\x71\x67\xbc\x75\xf5\xad\xa3\xf0\x9b\xc2\x13\x52\xe6\x22\xa2\x23\xa9\x3a\x54\x52\x5d\xad\x8c\x22\x83\x07\x53\xe8\xd9\xa9\x51\xcc\x18\x23\xe2\xda\x34\x02\x57\xe3\xb6\x8c\xc1\x8e\x9f\xc5\xc5\xa3\x14\x0f\x3a\x7c\xd8\x4e\xd3\x57\x39\x7f\x00\xd3\x51\xf4\x39\xa0\x6a\x4f\x61\xcf\x85\x5a\x26\xa0\x96\x2d\x84\x92\xcc\xf4\x49\x26\x7e\xda\x2d\x55\x62\x07\xa5\x29\x45\x20\xcf\x1b\x00\xe1\x52\x84\x8a\x64\xcf\xe1\x2b\x97\x13\xec\xd2\xce\x82\x33\x43\x5a\xd8\xdd\x25\x70\x7b\xec\x3c\x53\x27\x89\xcb\xc7\x96\x3f\x7a\xf6\xd9\x04\x4e\xb3\x57\xb9\x02\x71\xd6\xef\x43\x63\x58\x0c\x36\x6c\x64\xad\x49\x6d\x65\x2b\x6f\x8b\x2b\xfd\x68\xa6\xa7\xc6\x6a\x89\xd9\xcc\xb3\x05\x9f\x10\xfb\x5b\xb9\x01\x28\x6b\xf8\x34\x35\x38\x09\x53\x05\xd6\x45\x14\x77\xc9\x05\xa6\xf4\x55\x2a\xb4\x60\xfb\x35\x71\x8e\xca\x16\xdb\x58\x9b\xe3\x2b\x30\x08\x75\x5a\x51\x53\x75\x12\xd7\x1a\x40\x3e\x66\xbc\x41\xac\x1a\xf2\x5f\xed\xa6\x7e\xbf\x8f\x32\xee\x79\x2b\x5b\xe0\x78\xee\x1b\x9e\xb7\x6a\x93\x28\xd1\xf8\x09\x3d\xd5\x67\x8b\x70\xba\x4f\xb9\xe4\x59\x42\x9e\x87\x42\x11\x0e\xcf\x5c\x11\xe1\x6c\x68\xda\x07\xed\xd8\xae\xab\x1b\x53\x82\xf9\x27\xe2\x07\x94\x3f\xa8\x2e\xac\xcb\x6c\x97\x84\x3c\x70\x68\x14\xa7\xa1\x95\x93\x7f\xed\xe2\x9c\x84\xd6\x4f\x71\x4a\x93\x9f\xa4\x8f\x25\xc7\x7a\xf5\x56\x44\x19\xe4\xef\x2a\xdf\x5a\x29\x21\x61\x61\xd1\xcc\x22\x77\x71\xc1\x55\xb0\xe8\x9a\x58\x81\x7a\x35\xb0\xd8\x09\x59\xd0\xfc\xde\x91\x16\xee\xc9\x63\xca\x63\xbe\xe3\x43\xc4\xed\xc3\xf4\xb3\x83\x97\x39\x6f\x72\x9f\x7b\x33\x2e\x8d\xd9\x18\x8a\x62\x56\x97\xb2\x97\x9d\x39\x97\xf2\xa5\xcb\xa1\x99\xf6\xc1\x51\x96\x25\x7a\x42\x1e\x59\x8b\x34\x37\x3e\x87\x25\x9a\x3c\x4f\x55\xf1\xf7\xbd\xd2\xfe\xef\x85\xf5\x7f\x2f\xac\x47\x2e\xac\x07\x0e\x59\xff\xff\xe4\x43\xf6\x29\xb3\xde\x7a\x4c\xc8\x13\xb6\x53\x9f\xc3\x54\xa2\x6c\xda\xfd\xe8\x24\x42\x0d\x63\x1e\x43\x83\x92\xdc\x4f\x1a\x32\xbe\x76\x39\x35\xd7\xb2\x7e\xca\xb6\x0b\x0a\xb5\x90\xb2\x93\xcd\x32\x8a\x85\x6c\xde\x9d\x67\x9c\x51\x88\xc6\x1b\x52\x13\x52\x74\x15\x12\x61\x4e\x3a\xad\x19\xcd\x62\x42\xef\xa7\x16\xd3\xb1\xb3\x58\xb6\x4b\xc3\xaa\xd4\xf6\x81\x81\xf9\xab\x9a\xa5\x88\x2a\x73\x64\x1f\x91\x2a\xf4\xaf\x11\x08\xe0\x70\x70\xb5\x8c\xc1\x90\x6a\x6c\x9e\x55\x75\x60\x54\x7d\xf2\xd1\xe5\x71\xbb\xdb\xf8\xc9\xeb\xd6\x64\x2a\xa2\x27\x2f\xf5\xee\x53\xdc\xbc\xd4\x93\x27\x5f\x6e\x7e\x7e\xf2\xe5\x66\xfd\x64\x9c\xe3\xf8\xc9\x38\xc7\x5f\x9f\xb4\x54\x5e\x3d\x68\xa9\xfc\x38\x93\xb5\xe1\xd6\x27\xe6\x63\xca\x9c\xa8\x7d\x85\xdd\x05\x06\xf2\x37\x40\x2c\x43\x6d\x24\x3c\x58\x60\xa0\x3e\x44\x96\xd8\x3a\x78\xb8\xd0\xa1\x4c\x79\x32\xdb\x2a\x78\xb4\xc0\x80\xfd\x10\x49\x6c\x63\xe0\xf1\x02\x03\xf6\x43\x24\x89\x6d\x80\x27\x0b\x0c\xc4\x4f\x91\x2c\xd0\x1e\x9f\x2c\x30\x10\x3f\x65\x32\x43\x73\x7c\xca\x52\xd9\x2f\xd9\xaa\xbf\xc2\x67\xac\x51\x7f\x05\x4a\x3b\x3f\x1c\xec\x1c\xef\xbb\x26\x27\x07\xea\x76\x0c\xf4\x9a\x8d\x6c\x20\x07\xcb\x3e\x40\x69\x67\x87\x83\x9d\xf1\x96\x4a\xd4\x3e\xe8\xea\x67\xdb\x18\xda\xac\xd4\xb3\xdc\x1c\x3c\x2a\xfb\xc8\xda\x1e\x60\xeb\x37\x10\x8a\xdb\x25\xba\xc8\xff\x69\xfd\x68\x94\x0c\x0c\xc6\x98\x18\xca\xbd\x0f\x28\x24\xd7\x2e\x59\x2b\xf0\x53\x46\x73\x2e\x89\xc5\x25\x5f\xa1\x75\x1b\xd3\x35\xd7\xfd\xb1\xb2\xdc\xaa\x7c\xaf\x36\x5c\xb9\xd9\xc4\x7c\x67\x36\xf0\x8f\xe6\xdc\x61\xe9\x51\xad\x17\xf9\xbe\x77\x34\x98\x4a\x15\x26\x72\x2b\x55\x80\x6d\xe0\x2f\x03\xc0\x59\x30\x32\x67\x78\x12\x12\x80\xc0\x04\x68\x0d\x83\x2e\x11\x93\x4d\xe0\xdc\x5d\x54\x8d\x56\x4f\xd2\xdc\x33\x92\x3b\x4d\x5f\x0d\x5c\xa9\xbe\x09\xbe\x80\xbe\xf4\xb1\x1b\xe5\xd9\xe6\x72\xed\xe7\x97\x59\x48\xec\x14\x2e\x70\xca\x1f\x23\xdd\xc1\x70\x34\x9e\x9c\x9c\x9e\x9d\xb3\x13\xee\x91\x5e\xe9\x83\x2e\x8c\x84\x0f\x40\xfd\x2c\x07\x60\x7d\xc2\x79\xe5\x7d\x92\x4d\x37\x24\xd1\x6a\x1d\xff\xfc\x35\xd9\xa4\xd9\xf6\x5f\x79\x41\x41\xe5\x1e\xb2\x43\x85\x81\xf5\x32\x27\x0b\x4c\x18\xd6\x77\xd7\xaf\xa0\xc5\x35\x21\x6a\xb0\x67\x84\x7d\x6e\x0c\x4d\x8a\x8e\x74\x2c\x87\xa3\x41\x59\xda\xca\x72\x45\xd6\xf1\x1e\xa0\x3d\xd1\x0e\x25\x98\x61\x1c\x0a\xf0\x60\x1a\xb4\x5f\xff\x83\x7e\xbf\x2a\x5e\xf0\xa7\x7e\x1d\xdc\x46\x13\x26\xc1\x02\xc2\x4c\xbd\xf0\x17\x8c\xd6\x4a\xe6\xc5\x02\xa7\xf3\x42\xf0\xe2\x39\xdc\xef\x70\xce\x65\x6f\xb2\xa5\x88\x91\x3c\xaf\x54\xb8\xde\x69\xd4\xef\xc3\x58\x35\xb0\x9b\x47\x0b\xd1\x06\xfb\xb5\xe0\x71\x7e\x23\xc6\x01\x97\xfa\xe0\x2f\xd1\xc9\x13\x94\x89\xa9\xe5\x55\x73\xe3\x20\xac\x5a\x66\x0f\x69\xda\x52\xa5\xd9\x96\xd6\x14\x5a\xdd\xa6\x42\x2b\xba\xcd\x63\xaa\x95\x5b\x3d\x61\xf4\x82\xc8\x73\xd4\x15\x4e\xda\x12\xbd\xda\xe9\x74\x7a\x06\x4b\xf4\xfc\xe9\xfd\xff\x44\xc9\xe3\x09\x31\x68\x7d\xbd\x8d\x03\x54\x29\x2a\xec\x85\xbb\x5b\x1e\xf5\xa4\xed\x68\xf3\x91\xb2\xfb\xb2\x3a\xc3\xa5\x41\x99\x94\x0c\xb9\xd3\xfc\x95\x26\xc5\xb9\xc3\x42\x1c\x73\x8d\x23\xe3\xa1\xfd\x5b\xec\xb2\x7b\x49\xb9\x1e\xaf\xe2\xf0\x0b\x67\xcf\x6c\x77\x3c\x2d\x8c\x8a\x9f\x14\x42\xfd\xc2\x01\xfd\x22\x89\x14\x67\x39\xab\x19\x94\x7a\x06\xcf\x59\xb5\x67\x7a\x12\x1a\x9c\x0c\x18\x1f\x54\x69\x43\x49\xba\xb4\x20\x49\xd4\xeb\x55\xff\x3a\x62\xe4\xfa\x78\x14\xa9\x28\xc6\x76\xee\xf8\x87\x43\x76\x38\x3c\xa8\x73\x05\x1d\x01\x2f\xe4\xb7\x6e\x64\xb4\xc3\x7e\xf3\xde\x4e\xb0\xaf\x9d\xb9\xa3\x00\xc7\xb3\x58\x7f\x5e\xfb\x2b\xe9\x87\x65\x2a\x2c\xdc\xda\x8f\xdf\x3b\x05\xbc\x80\x2b\x6b\xcc\x83\x05\x97\xf6\xb3\x1f\xd8\xa8\x9a\xe3\x23\x57\x1e\xdf\x31\xdc\x97\x42\xf0\x98\x28\xdf\xf1\x9a\x91\xeb\xf5\x6c\x3a\xe3\x75\x53\x2f\x24\x09\xa1\xc4\x62\x5f\x10\x65\x65\xf5\x38\xd3\xf6\x41\x3f\x15\x4e\x4f\x3a\x6e\xb7\x48\x75\x51\xa2\xed\x63\x53\x5b\x77\x55\x96\x7b\x65\x56\x91\x25\x33\x30\x17\x0b\x67\xfd\xa0\xc8\x8b\x05\xf0\x74\xe2\xfb\x5d\x92\x2c\x80\xb7\xed\xf5\xb6\x35\x7f\xee\x33\x86\xba\x1e\x63\x91\xc4\x7e\xdb\x74\xfb\xd3\xd6\x89\x86\x33\x5d\x9b\xda\xdc\xc2\xdd\xee\x7e\x58\x12\xa9\x42\xc6\x73\xff\xd0\x1c\x84\x74\xb8\x89\x71\xa4\x44\x2b\xac\x90\xc8\x40\x91\x9b\x36\xd6\x2c\xf1\xaa\x42\x91\x5b\x7c\xd3\x44\xa1\x3b\xbc\x14\x70\x36\x87\x73\x55\x1b\x0e\x23\xac\xee\xb9\x9b\x7c\x0d\x2d\x51\x78\x01\x8e\xf0\xba\x72\xa6\x2f\xe9\x0e\x8a\x37\xd2\x12\x51\x09\x6b\x54\xbe\x2b\x8d\x0f\x6f\x95\xc8\x03\x18\xf2\x1e\xc0\xc5\xe5\x46\xc2\xb4\xad\x59\xae\x9e\xd3\x7a\xbd\xd4\x32\x04\x5b\x69\xaf\x27\x27\x91\x42\x8c\xef\x4a\xf4\x95\x13\xd0\x67\x10\x7d\xc6\xe0\xcf\x7f\xce\x49\xb8\xbb\x7b\xf9\xf6\xfd\xdb\x6b\xe3\x08\xbe\x36\xa3\xd9\xe7\x9c\x24\xeb\x90\xc1\xd3\x5e\xcf\x88\x04\x80\xcd\x11\xd8\x29\xa6\x88\xca\x8d\x02\x51\x67\xc0\x00\xf1\xee\x57\x35\x6c\xe6\x34\x95\x9b\xc0\xd5\xdd\x96\x07\x29\xe5\xb2\x54\x92\xae\xd9\xe4\x94\xff\x7b\x5f\x23\x98\x53\xd1\xc4\xa9\x7d\x2d\x25\x6b\x0f\x74\x42\x9e\xe8\x44\x98\x80\x76\xf7\x21\x35\xab\x50\x8c\x29\xf2\xf1\x7c\xc1\x8e\x1f\x94\x60\x46\xf7\x56\xa2\x0a\x46\x32\x61\xec\xf7\x7a\x36\x3b\x9c\x44\x14\x09\x58\x53\xa6\x30\xd8\xed\xba\x58\xe2\x57\x0c\x39\x89\x0b\x4a\xd2\x47\xc6\x4b\xf1\x91\xab\x80\x13\xd8\x10\xed\x84\x0e\x0c\x31\xd8\x36\x61\x4b\x09\xf7\x14\x1f\x0d\x50\x60\xab\x10\x19\x3b\x7d\xf9\x10\x38\xdd\x71\xc2\x38\x20\x76\x8a\x06\xd0\xf4\x0e\x15\xaa\xdd\x70\xc5\x90\xbe\x35\xd0\x0b\x5e\xaa\xa8\x8c\x0f\x13\x3f\x4e\x55\x98\x02\xc7\xfa\xa1\x20\x56\xb0\x2b\x68\xb6\xb1\x36\x71\x18\x26\xe4\xd6\xcf\x09\x57\x8e\xe7\x7e\xfb\x2c\x11\x13\xb7\x70\x04\x5f\xd2\x89\x76\x52\xf4\xd1\xec\xf9\x85\xee\xd9\xbf\xe7\xb2\x7c\x11\x0d\x21\xad\x18\x29\x4b\x84\xcf\xb4\xd4\x15\xea\x58\x7f\x65\x45\xee\xb3\x9d\xb5\x89\x8b\x62\x4b\x38\x13\xe6\x5b\x7c\xfb\xf9\x29\x9d\xbd\xe0\x83\x48\xda\x93\xfc\x24\x70\xa6\xea\x2b\x8c\x8b\x2d\xbb\x1c\xcc\xf1\xb3\x6b\x24\x11\xa1\x27\x32\x3b\x46\xa4\x8a\x2a\xc1\x30\xa8\xac\xe8\x3c\x1f\xef\x24\xeb\x44\x4d\xfb\xb7\xbd\xed\x72\x17\xf8\x8c\x03\xd6\x74\x99\x92\x64\x48\x55\xa6\xcf\x25\x44\x8c\x2b\x57\xfd\x7b\x21\x2a\x76\xcb\x22\xc8\xe3\x25\xf1\x22\xb4\x22\x94\xab\x6c\x78\x05\xca\xc9\x36\xf1\x03\x22\x47\xde\x74\xb6\xfa\x6b\x36\x4e\x4a\xee\xe8\xa7\x47\x36\x0f\xdb\x38\xc6\x38\xcb\x12\xce\xbf\x3a\xfe\xc2\xe4\x58\x95\x21\x60\xa4\x94\xe8\x08\xde\x1b\xe3\x6f\x8c\xb1\x2d\x0b\xeb\xe6\xb2\x6b\xa3\xcc\x96\x05\xc9\x6f\xaa\x21\x2a\x5c\x64\x23\xac\x89\xde\x85\x77\xc7\x5e\x4f\xfc\xb5\x0b\xb6\x87\xf5\x19\x03\xd1\x7e\x97\x56\x23\xe3\xde\xd8\xbb\x26\x64\xea\x98\x23\x52\x22\x43\xf0\x59\x8b\x0d\x49\xd9\x31\xcf\xd5\x28\xe4\xf9\xfe\x97\xf8\x86\xa4\x12\x7b\x2c\xd0\xb7\xd3\x5e\xef\x05\x78\xd1\x4f\xf5\xb5\x65\xc3\xfe\x0b\xf0\xe2\x70\x00\xbe\x2a\x06\x60\xff\x05\xd2\xc7\x17\x78\xd1\x27\xfd\x17\xc0\x12\xed\x91\xb0\x42\x7b\xc7\xba\xce\x2c\x61\x62\x6c\xe9\xca\x48\xa0\x3d\xdb\xa4\xe4\x8e\x6d\xf4\x98\x26\xf7\x96\x1e\x3e\xb1\xb6\x39\xb9\x89\xb3\x5d\x61\x15\x0c\x81\x1c\xeb\x6d\xc4\x6b\xdc\xfa\x29\xe5\xd3\x33\xcf\xcd\x75\xc6\x9f\xcf\x2c\xce\x8f\x89\x96\x03\x3f\xb5\x8c\x1b\x9c\x5f\x54\xc4\x0f\xad\x2c\x32\x06\xf6\xc2\x8c\x25\x57\x63\x7d\xea\x54\x3c\x4a\x19\x6d\x2f\xa8\x66\x6a\x52\xcd\xf2\x01\x98\xce\xf3\xc5\xd4\x45\x5d\x77\x17\x99\x67\x0b\xfe\x46\x9b\x2d\xb8\xbf\x08\xf5\x04\x62\x76\x90\x8a\x03\xd0\x37\xe3\xd3\x1c\x99\xc8\xd7\x70\x52\xd1\x96\x13\xe8\x75\x55\xfe\x80\xba\xef\x4b\x69\x1d\x8d\xf4\x9e\x68\x1f\x62\x9f\xaa\xe5\xa4\x7d\xf0\x63\xd7\x7a\x5a\xe1\x8e\x5b\x70\xc7\x69\x4c\x63\x3f\x89\xff\x2d\x7c\xf8\xb0\x15\x62\x0b\xc7\xd7\xcb\xda\xfa\x45\xc1\x76\x40\x56\xbb\xe3\xe2\xa2\x6a\xe6\x49\x0c\x90\xed\x2b\x04\xb8\x6e\x26\xe9\xc3\x6f\x49\x4c\x64\x93\x88\x12\x66\xe9\x0b\x2a\xd1\x25\xe3\x76\xf6\xbe\xc0\x0f\x69\x09\x55\x61\x50\x85\x30\x8c\xdf\x78\x18\x5b\x1e\xb9\x12\x1a\x90\xd5\xe4\xce\xc7\x4f\x1f\xbe\xbb\xfa\xf2\xc3\xfb\xbf\xbd\xff\xf0\x8f\xf7\x5f\x2e\x2e\xaf\xdf\x7e\x78\xff\x05\xf4\x85\x2e\xa9\x9f\x86\xd9\xc6\x86\xd5\x0e\x1b\x9d\x40\x43\x87\xfa\x14\x1a\xa2\x21\x21\xc1\x71\x00\xfc\xb5\x6b\x76\xbb\x26\x29\xbb\x78\x96\x4a\xcc\xe7\x5b\x62\x00\xdc\x0c\xc9\xb1\x5e\x73\x70\xd1\xfc\x9e\xef\x27\x3f\x0d\x13\x62\x81\xfe\xe7\xfe\x0b\x2b\xcb\xad\x8c\xae\x49\xae\xae\x16\x46\x98\x03\x31\xbd\x6f\x00\x77\x23\x55\x6c\xfd\x40\x2c\xd0\xbd\xc5\x6e\x53\x76\x7f\xc5\x21\xc9\x49\x68\x6d\x73\x1e\x44\xdd\xb1\xde\x0a\x88\x1a\x8b\x6e\xac\xb4\xb0\xd0\xa5\x72\x59\xf9\x65\x9c\xde\x5b\xbb\xf4\x6b\x9a\xdd\xaa\x03\xa3\x40\xd6\x2e\x4d\x48\x51\x58\x31\x6d\xe0\x51\x9c\x5a\xb7\xeb\x38\x58\x5b\xdc\x6b\x6d\x57\x07\x35\xbc\x61\x67\xd6\xca\xcf\x43\xde\x58\x26\x90\x56\x1e\x7c\x02\x16\xcf\xc3\x34\x64\x2d\x77\x94\xa3\xcd\x52\x60\x8d\xf3\x82\xab\xa7\xb3\xa3\x59\x30\x6a\x3b\xb8\xf7\xf1\xae\x6c\x32\x27\xbf\xd1\x85\x3c\x77\xcd\x6d\x2a\x42\x33\xac\xf4\x25\x56\xf8\x95\x1c\x86\xd1\x56\x5c\x26\xb1\xc3\xee\x74\x57\x71\xfb\x3b\x75\x6e\x25\x38\x9e\xef\x16\x28\xc0\xe9\x3c\x59\xa0\x02\x13\xf6\x27\xc2\x81\x5d\x48\x71\x43\x27\xaa\x47\xa2\x72\x88\x3f\xd8\x09\x2b\xd7\xc4\xc6\x10\x96\xd9\x3c\x59\xe0\x08\xe5\x38\x3f\x1c\xa2\x23\x8c\x0b\x05\x82\x7c\x96\x79\xc4\x20\xe5\x3e\x76\x73\x6f\xd5\x35\x66\x13\x29\x06\x92\xdb\xab\x12\x04\x99\x66\x00\x5f\xaa\x28\x28\x5d\x27\xb0\xb2\x30\xf9\xa8\xe5\x28\x9d\xaf\x5a\x4a\x8a\xde\xa6\x3a\x96\x71\x1a\x0a\xe2\xee\x32\x27\x3e\xcd\xf2\x82\x9d\x58\xe2\x8a\xd7\xf7\x39\xdb\x27\x15\xfd\x81\xf4\x11\x92\x93\x80\xc4\x37\x8c\xf8\xeb\x6b\x41\xfd\x0c\xb0\x5f\x95\x3d\x1e\xec\xbf\x70\xac\xd7\x71\x28\x6e\xb8\x3c\xa6\xc4\x02\xf1\x66\x9b\xe5\xd4\x6a\xf4\x1b\xe5\xd9\x06\x98\xc7\x93\x2a\xf7\x8d\xe5\x17\x9d\x85\x19\x11\x59\x69\x0d\x37\xee\xb5\x9c\xe1\x47\x86\xdd\x69\xf6\x2a\x35\x55\x93\xa4\x2c\x89\xdd\x5a\xc8\xc7\x64\x1e\x2f\xa6\x5d\xa0\x65\x3c\x47\x3e\x8f\x17\xf8\xa3\xed\x23\x5a\xd1\x2b\x06\xd5\xf1\xf3\xe3\x31\x3d\x68\xf5\xb6\x2d\x28\x50\xf2\xb8\xeb\x05\xd7\x70\xab\xd3\x65\x53\x49\x4a\xcf\xf4\xbc\x33\xa3\x6c\xc7\x3c\xe1\x66\xa7\x8d\x77\xc4\xa6\x8f\xe0\x1d\x14\x77\xf8\xc5\x7f\x7d\x21\x6a\x45\x60\xbe\xff\xcf\x2e\x43\x97\xa0\x48\xcb\x5e\x44\xb4\x68\xe9\x33\x0b\x13\x99\xc0\x25\x67\x8a\x4d\x40\x09\xde\x6b\xde\xc0\x77\xd4\x4f\xa4\xd9\x88\x8e\x0e\x76\x5c\x7b\x5d\x5b\x82\x3e\x6c\x1a\x61\x11\x3b\xe1\xa6\x0e\x3b\xfc\x73\x7d\x19\x63\x68\x57\x63\x80\xe8\x82\x2b\x3e\xa1\x8a\x79\xd9\x31\x2e\xa1\x7c\xf4\xc1\xfa\xfa\xc9\xc7\xe6\xcb\x27\x9f\xb4\xbf\x3c\xa9\x98\xf4\xfe\xc9\x47\xde\x9f\x85\xd0\xf4\x99\xaa\xfc\x4d\x35\x35\xe1\x23\xcd\x1e\x9f\x0b\xff\x05\x13\x57\xb8\x2f\xe0\xea\x6b\x81\xf2\x7c\x2d\x9e\x18\x20\x8a\x58\x09\x53\x9f\x2d\xec\x88\x12\xf0\x98\x07\xb5\xca\xcf\x35\x57\xbc\x34\x5d\x1e\xec\xb5\xbb\x6a\x5a\x22\xae\x91\xc9\x5d\x95\xed\xcd\x30\xcf\xdb\x07\xbb\x33\x5b\xaa\xb5\x2a\x9d\x1a\xfc\xd2\xd1\x34\xdb\xe0\x41\xd9\xb8\xfb\x6e\xfd\xab\x35\xba\xb5\xbe\x7c\x8e\x68\x33\x3a\x50\x20\xfc\x19\x6e\x7c\x5a\x34\x9e\x50\x5b\xdd\x35\xba\x4e\x21\x9b\x01\x77\x30\xed\x6d\xed\xd0\x4e\xf9\x63\x36\xa2\x10\x85\xd2\x6d\x32\x1b\x0e\x9b\xa2\xf0\xeb\x21\xca\xb0\x9f\xaa\x0c\xfb\xad\xca\x94\x75\x15\x8f\x9a\x1f\x51\x4c\xa4\xc3\x16\x14\xe3\xca\xf5\x92\x8f\xb5\x3b\xca\x02\x05\x4d\x6f\x6a\x3c\x64\x47\xdd\x8b\x38\xda\x62\xe2\x48\x37\xe2\x68\x83\x45\xff\x6c\x61\xd1\x7d\x55\xf6\x53\x1c\xac\xaf\xc9\x1d\x95\x7e\x22\x8a\x69\xd3\x53\x7a\x1c\x7a\x00\x48\xf7\xd7\x2b\x9c\x3a\x71\xc8\x03\xf4\xd7\xfd\x46\xaa\xc0\x34\x09\x83\xd5\xd1\xd1\x0a\x81\xf9\x9f\xc5\xb8\x7f\x2e\x5e\xc6\x5c\xa1\xf2\x22\xb5\x7e\x8a\xc3\x9f\xda\x1e\xa8\x68\xa6\xfc\x9f\xfa\x95\x13\x04\xd1\xdf\x12\x4b\x32\x7c\x05\xd1\x2d\xf6\x3b\x94\x71\xbb\x4e\x5f\x1f\x2d\x61\xaf\xe7\xcf\x97\x9c\x0c\xab\x3b\xca\xba\x85\xc2\xd4\xf4\x56\xdb\x99\xde\xce\xdd\x85\xd2\xda\x89\x1c\x5f\x69\x65\x28\xbc\xb9\xad\x1c\xc4\x31\x7c\xca\x7b\xbd\xdb\x2e\x7f\x6f\xb7\xbd\xde\x7d\xaf\x57\x77\x7f\xf9\xa2\x05\x03\xf0\x00\xd0\x81\x75\xeb\x17\x56\xb1\x25\x81\x70\x1f\xc1\xa8\x58\xa0\x5c\x74\xf2\x3c\x46\xe9\x6e\x73\x72\x1c\x64\x9b\x6d\x9c\x30\x9e\xea\xc7\xf4\x63\x42\x18\x71\xad\x48\x7b\x6b\x57\x30\x16\x10\x54\x9d\x06\x49\x0c\x84\x2b\x33\x5d\x91\x91\x33\xb9\x02\x73\xc1\xe9\xfa\x2d\xc9\x79\x0d\x11\x5f\xf4\x4d\x96\x5b\x9b\x2c\x27\x56\x48\xa8\x1f\x27\x85\x55\x10\x62\x29\xe7\x1a\xaa\x65\x27\xce\x5e\x86\x59\x50\xbc\x5c\x11\x4a\xe3\x74\x75\x5c\x50\x3f\xa7\x24\x7c\x29\x1b\x3e\x0e\x63\x06\xa1\xe5\x8e\xa1\xf7\x0b\x88\x1e\x03\xdb\xd1\xbd\x06\xb5\x23\x05\x52\xf6\xcb\x17\x3f\xee\x6d\xe7\x9b\x19\xfc\xb1\x7c\xf1\x72\x15\x23\xb0\xff\xe3\xa0\x14\xbc\x5e\xfe\xd8\xe9\x70\x0f\x51\x2e\xce\x84\x18\xaf\xed\x18\x6d\x20\x0a\xf1\xda\x0e\xd9\x8f\xa3\x5b\x7e\x22\xd8\xff\x1f\x77\x5f\xde\xdd\xb6\xad\x2c\xfe\xff\xef\x53\xd8\x68\x8e\x0c\x54\xd0\xe6\x25\x6e\xa8\xe0\xea\x39\x8b\xdb\xb4\x59\xda\x2c\x5d\x22\x29\x09\x2c\x41\x36\x13\x1a\x54\x29\xd0\x96\x62\xf1\x7d\xf6\xdf\xc1\x46\x82\x9b\xa2\xa4\xb9\x7d\xf7\xf6\xf8\x1c\x8b\x04\x40\x60\x30\x98\x19\x0c\x06\xc0\xcc\xee\xd5\x7a\x1d\x36\x1a\x61\x5b\x84\x8f\xc3\x6b\x16\xdd\xa7\x0b\x06\xd1\x2e\x21\x93\x7c\x0a\x6a\x34\xe6\xca\xc1\xd2\xa2\xcd\x94\xcb\x49\x84\xaf\x90\x8a\x12\x6b\x14\xe1\x76\xd1\x73\x36\xbc\xc2\x13\x3c\x45\x86\x61\x61\x64\xd7\x1c\xcb\xec\x28\x91\xa9\x70\x02\xf7\x14\x57\x1a\xc2\x97\x28\xdc\x31\xa4\x91\x7a\x6a\x9b\x85\x91\x27\x97\x8f\x67\xcd\x3d\x20\x97\x47\x7c\xaa\xe2\x6c\x95\xca\x5d\xb1\xe8\x8c\x0a\xff\x72\x0f\x87\x98\xe3\x25\x42\x15\x9e\xf2\xae\x06\x57\xde\x99\xd5\x41\xce\x92\xcd\xbd\xb8\xc6\x21\xf6\xb1\xeb\xcf\x5b\x24\x95\x9d\xda\xd4\x1b\xeb\x70\x3f\xeb\x81\xa6\xce\xbd\x26\xbc\x1a\x80\x42\x1f\x80\x07\xfc\x29\x40\x4d\x20\x15\xe6\x19\x0d\x82\x33\x3a\xf9\xd0\x06\xb6\x43\x89\x3f\x83\x5f\x8e\xfa\x4d\x50\xca\x65\xe6\xb6\x78\xaf\xc5\xb7\xc1\x6b\x05\x71\x0f\xae\xbd\xba\xb1\xd0\x7b\x5b\xea\x50\x3a\x3e\x27\x43\x1d\x5e\x87\x3d\x91\x40\xb3\x08\xc8\x21\x5c\x05\x0c\xe0\xcc\x51\x56\xf6\x68\x9c\x68\x03\x1b\x88\x4e\xfd\x38\x89\x0b\xf6\x7d\x14\xc6\x73\x1d\x6a\xe9\xd2\xe7\xfe\x65\x7c\xf9\x88\x0b\x76\xce\xa2\x07\xfe\xb9\x6f\xc2\x33\xa9\xe4\xd3\x48\x2f\xb2\xb3\x74\xba\xac\x4e\xd7\xe5\x5f\xf8\xe7\xdc\x9f\xf9\x13\xca\x45\xf1\x93\xaa\x2c\x75\x19\x6f\xe2\xc0\x56\xee\x82\x4d\x91\x9f\x03\x0c\x78\x28\x6c\x3c\x33\xa9\xc0\x6f\xec\xaa\x13\x61\xf4\x2a\xb7\x67\x95\x4d\x9f\xa1\x33\x7d\xfa\xd9\x64\x58\x9a\xe3\x12\x6b\xed\xe3\xa6\xb8\xd4\x8c\xed\x6c\x03\x57\x6d\x86\x60\x88\xd3\x73\x6c\x14\xfb\x48\x4a\x99\xf4\x4a\x30\x8c\x70\x5a\x74\x8a\x20\xc7\xe7\x38\x76\x77\x7b\xce\x9c\xf9\x3d\x0d\xc9\x25\xd7\x69\xaa\x65\x87\xb0\x75\x3f\xa2\x94\x8e\xb9\x73\x3c\x28\x85\xde\xd0\x33\x85\xe0\xf4\xd9\xf3\x27\x27\x2f\xdf\x3e\x7c\xfe\xfc\xd9\x73\x80\x41\x89\xbc\x35\xc0\x92\x91\xb2\x75\xa0\x99\x50\x5d\xd7\x10\xd7\x5f\x08\x9e\xf5\xae\xfa\xf5\xa1\x1c\xea\x58\xbd\x4b\xa5\xed\x1e\x21\xfc\x90\x0c\x33\x47\x62\x86\x37\x9c\xe1\xff\x60\x3b\xa0\x16\x39\xb6\x0b\xa1\xf2\xbf\x2e\x27\x03\x7d\x4c\x11\x68\x97\x64\x00\xe1\x9a\x18\x1e\xeb\x75\x1e\xfa\x65\x9b\xc2\xbd\x9a\xb2\x3b\xbe\x9e\x93\xe9\x15\xf5\x03\x13\xa3\x5b\x5b\x30\x19\xbf\xf2\xa3\x90\xcb\x79\xbd\x3d\xe2\x2f\xa3\xd5\xce\x3c\x0c\x56\x33\x3f\x08\x94\x81\x56\x94\xa7\x69\xa9\x1b\xb4\x6c\x6c\x00\xa9\xa3\xe9\x1c\x30\xe2\x7b\x18\x3c\x79\xf4\xe2\xc5\xa3\xa7\xdf\xbf\x7d\xf4\xf4\xe5\xe3\xb7\x27\x3f\x3f\x02\x28\x37\x24\xc5\xa5\xc6\x57\x64\x80\xdd\xdd\x32\x0b\x58\x28\xb7\x61\x82\x87\x8a\x09\x14\x60\x61\x46\xd1\x38\x95\xcd\x7e\x99\x5a\x26\xb0\x4c\x1e\xb6\x49\xed\x63\x1d\x60\xbf\x8a\x96\x25\xf0\x2f\x2a\xc4\xa8\xae\x27\x7b\xb7\x1a\x30\xc0\xe0\x22\x8c\xa3\xde\x3e\xc0\xc0\xf8\xef\x03\x18\xb0\x88\x02\x0c\x56\x8c\xaa\x08\xcd\x21\x17\x17\x00\x03\x9d\x25\x4b\x6b\x39\x18\xeb\x60\x76\x9a\x96\xb2\x1a\x9f\xd2\x4b\x5b\xeb\xfd\xd5\x44\xc9\x6e\xb9\x24\x78\x61\xe4\xb8\x2c\x66\x9f\x67\x46\xba\xd2\xe0\x85\xaa\x25\x93\x97\x34\x60\x7c\xaa\x5a\xd7\x4c\xe1\xf3\xf3\x17\xab\x85\x60\x97\x2e\xb5\xbf\xdc\x7a\xb5\x60\x75\xff\xc0\xd1\xfd\xfb\x15\x2c\xae\xef\x16\x47\x76\xe8\x17\x9b\x54\xac\xa0\xd1\xc8\x16\x88\x41\x82\xf0\x24\x4f\x24\x3e\x16\x78\x82\xa9\x72\xb6\xef\xd2\x43\x84\x5f\xe0\x45\xea\x28\x4d\x9d\x49\xde\x25\x44\xac\xd7\xb3\xb6\xc4\x99\xfc\xd5\xc8\x95\x4f\x1a\xbb\xeb\x35\x9c\x6d\x02\x65\x86\xf0\x27\x9d\x26\xca\x35\x3b\x0c\xf1\x0c\x15\x36\xdd\x6a\xc5\x9d\x46\x69\x79\xda\xe6\x03\x49\xa2\x0f\xa8\x60\x90\xaf\xd7\x5d\xe4\x71\x97\x0d\x5f\x2a\x37\x9f\xea\xec\xb5\x2b\xbf\xc3\x0d\xb4\xbe\x85\x64\x94\x15\x56\x52\x7c\x88\x72\xbb\x64\xff\x9e\xee\xe8\x73\xe3\x5f\xb1\x3b\xb5\x0c\xec\x76\xe7\xe7\xbf\x6d\x74\xec\xf4\xf5\xb5\x07\x69\x38\x2e\x98\xc1\xff\x96\xc1\xf9\x4a\xbd\x29\x8d\x91\x99\x8a\xdf\x57\x08\x57\x75\x72\xc2\x11\x4c\x27\x1b\x05\x53\x69\xea\x49\xf1\x80\x8b\x5e\x7b\xd7\x6b\xbf\x30\x01\x3b\x99\x5f\x7d\xe6\xd5\x77\x1e\x22\x59\x77\xfd\x94\xab\x67\xc7\xbc\x40\x7b\x9f\x9b\x89\x05\x0c\x31\x45\xe6\x8e\x45\x6e\xc3\xc9\xdf\x30\xbb\xe9\xc6\xdb\x40\xcd\x95\x46\x38\xaa\xad\x3d\xa0\xd0\xfe\xb4\x0e\xed\xa9\x16\x84\x9f\x13\x49\x28\x6d\x1e\x5e\x43\xc7\x1e\xf8\xe8\x2f\x8d\x45\x16\x65\xa8\x3c\x14\x59\xde\x57\x1f\x89\xc0\x5f\x88\x4f\xe9\x3e\x55\x03\xf1\x54\x0f\x84\x76\x00\x21\xe7\xa8\x6a\x57\x52\xf9\x48\xf0\xe9\x46\x8f\x31\xfa\x57\x18\xad\x9f\x37\xc1\x5b\xe5\xb6\xf3\x2d\x68\x3e\x4f\x1c\x7f\x65\xb1\x3a\x4f\x8b\x79\x41\x8e\x29\x5f\x58\x55\xf1\xe3\x63\x94\x45\x37\x57\x54\x92\xe7\xd9\xa0\x2e\xca\x84\x39\x18\x62\xec\x4f\x4e\xe3\x03\x13\x3a\x40\x3e\xa3\x8a\x45\xe6\xc6\xf0\x03\xdc\x06\x1e\xe0\x69\xc8\x01\x2f\x07\x17\x0c\x2c\xf5\x4e\x32\xea\xdd\x42\x78\xc8\xf1\x6b\x03\x3c\x71\x4e\xc9\x28\x2a\x3e\xdd\xb0\xc0\x35\xd4\x6c\x57\xfd\xae\x3c\x79\xb2\x15\x0d\x97\x82\xec\x95\x49\xd6\xcd\xfd\xea\x44\x6b\x3c\xb8\xa8\x4d\xf7\xcf\x23\xdb\xd3\x2a\xf9\x11\xce\x2a\x65\xc7\x36\x13\x91\x06\x44\x6d\xff\x1b\x81\xa2\xb0\xff\x40\xb9\xe1\xed\x22\xfc\x58\x39\xe6\x7d\x80\xf0\x47\x13\x82\x05\xbf\x22\x8f\xdb\x74\xbd\x7e\x90\xe1\xfc\x37\x27\xe4\x88\x09\xe9\x90\x62\x3d\x55\xfb\x1c\x4b\xb2\x8d\x78\x99\x29\x9e\xf9\xfb\xea\xac\x9d\x7b\xcf\xc2\x62\x3a\xb6\xec\x7c\x38\xcc\x92\x5d\x3b\x1f\x19\xb3\x64\xe4\xb6\x71\x32\x33\x75\xf7\x3a\xa2\x73\x6b\x61\xbd\x7f\x11\xf3\x0f\x8b\x47\xdc\xde\x9a\xf7\x58\x7b\x53\x36\xae\x31\xd0\x7a\xb5\xf6\x72\x67\xcf\xfb\x96\xbb\xdf\xf5\xc9\x28\x36\xee\x72\xcd\xd9\xc6\x53\xfb\x7b\x86\x4e\x3e\xb6\xcf\x10\x8c\xd2\x30\x36\x54\xbf\x7a\x91\x0d\x3b\xea\x31\x35\xc0\xbf\x92\xfc\x2a\xd0\x32\x8c\x4f\xec\xc6\xc2\x2d\x18\x65\x82\x29\x6f\x10\xf7\xd1\xa0\xc2\x39\x80\x8f\x3c\x3f\xc1\xf7\x48\x95\x38\xaa\x45\x45\xe6\x3a\x5b\x39\xd8\x67\x78\x58\x6b\xef\x1e\x23\xec\x93\x5b\x52\x00\x05\x95\x6d\xa4\x8c\x72\x86\xa0\x40\x78\xb3\xd1\xb7\x4d\xd5\xce\x4c\x48\xa2\x4c\x3e\x44\x05\x2a\xa2\x24\x4a\x25\x86\xbd\x02\x31\xd8\xdd\x2a\x5a\x49\x88\xd2\xbd\x02\x3a\xa0\x86\x1f\xa7\x70\xef\x89\xbf\x50\x02\x41\xb7\x29\xf5\x40\xaa\xec\xe9\x86\x6d\x76\xc0\x5e\x33\x6c\xee\x01\x29\x5f\xca\xed\xec\xbc\x5a\xb8\xc6\x5c\xe7\x1b\x5f\x7e\xe3\xda\x41\x77\x5e\x6c\xb2\xc0\x47\x8c\x4e\x44\x4b\x4a\xa2\x6f\xa2\x98\x4b\xbe\x6c\x19\x5f\x15\x0a\xd3\x0a\x22\xd7\x9e\xbf\x87\x90\xb7\x5b\x11\x01\xe2\x53\x3d\x6f\x34\xfe\x42\xd7\x0b\x4d\xfd\x9f\x76\x1e\x3a\x5d\x39\x83\x7b\x66\x62\xca\x76\x59\xec\x55\x31\x36\xb5\x36\xeb\xbf\x02\x57\x87\xce\xfd\x6f\xe4\x83\x8a\x26\x5f\x05\x10\xb6\x54\x5b\xa4\xd9\xf5\x1a\x30\x0e\xd2\x18\x51\x55\xa4\x1f\xa1\x9c\x9d\x9e\x1b\x71\xac\x29\xcd\x3b\x53\xc1\x2f\xd4\x09\x17\x1c\x61\xde\x2e\x44\x4e\x41\xb9\xd2\x46\x17\xf1\xae\xb7\xfb\xc8\xb5\x88\x79\x1f\xca\xdf\x94\x2d\x66\xf6\x4b\x49\x0b\xde\xb3\xf2\x17\x85\x80\x24\x4e\x69\x0b\xda\xcf\xdb\x7e\xa4\x80\xba\xff\x39\xa5\x6d\x13\x6f\xb7\xfd\xc8\x04\xf4\x39\x29\x97\x77\xa3\x8f\x98\xc2\x36\xb8\xde\x65\xbe\xb4\xcd\x96\x1a\xb5\xf7\xa8\x5c\x53\xa6\x69\xa7\xd8\x70\xbc\xc5\x3d\xa9\x00\xd5\x0d\x64\x99\xa0\x64\x53\xcc\x33\xe5\x5c\x26\x44\x58\x14\x6f\x12\x57\x15\x0e\x52\x3a\xb3\x5d\xf9\xd5\x69\xdd\x2a\x0a\x41\x49\x51\x08\xca\x8a\x42\x90\x2a\x0a\xf9\x69\x3f\xd8\x3c\xed\x07\xc5\x69\x3f\x55\x24\x82\x4c\x91\xb0\xaa\x40\x90\xaa\x02\x75\xd3\xb9\x9f\xe0\xc0\x09\x52\x24\x91\x85\x7f\xc8\x2d\x01\xd2\x59\x5d\x40\x7b\x2d\xcc\x04\x5c\x60\x8d\x06\xab\xbe\x09\xb9\x5e\xab\xc8\x67\xe9\x2e\x95\x8a\x28\x93\xcd\x65\x13\x04\x11\x16\x6d\x75\x7c\x91\x98\x70\x33\xa6\x10\x96\x22\xc2\xbb\x07\x7f\x83\x6a\x73\x7b\xbe\x90\x05\x55\x0e\xc2\xf3\x88\x5d\xdd\x57\x42\xc9\xcb\xb2\x13\x2c\x92\xe2\xb8\xc9\xb9\x52\x1d\xb2\x68\xd7\x79\x67\xac\x9c\x6b\x45\x3b\x6b\x01\x47\xc4\x42\x14\x92\xdf\x9c\x5b\x6c\xaf\xd4\x16\xe8\x80\xab\xd8\x1f\x06\xd8\x50\xca\x1f\x07\xba\x30\x49\xb0\xbb\x37\xaf\xf7\xce\x2a\x8e\xc2\xa7\xfa\xcc\x04\xe9\xc8\x55\xfa\x38\xb1\xac\x16\xe1\xb0\x10\xb8\xc2\x6f\x9f\xd9\x5b\xbd\x85\xb2\x26\x70\x98\x42\x48\x1a\xc9\x43\x62\xc6\x8d\xe8\x4a\x80\xeb\xa1\x09\x60\xd1\x76\x5d\x30\x12\xda\xa6\x58\x24\x30\x6c\xff\x1c\x47\x2c\x55\x53\x75\xc0\x90\x1f\x12\xfc\xdd\x27\x2e\xae\xfe\xb3\xdc\x10\xe9\x55\x56\x69\xbc\x60\xf8\x4f\xf1\x04\x94\x7f\x33\x07\x2a\xe1\xd1\x31\xc2\x94\x74\xe0\xc0\x1b\x3e\x64\x93\xf1\x4d\x0f\xdf\x4e\xd6\xdf\xdf\xf4\xf0\x51\xb2\x1e\xfe\xf2\xe7\x58\x3f\xc9\xec\xd5\x1f\x71\x34\x6e\xae\x5f\xa9\x14\xb4\x1e\x3e\x79\x6c\x32\xa7\x37\x3d\xbc\x9f\xac\x1f\xdc\xf4\xf0\x41\xb2\x3e\xbd\xe9\x25\xeb\x21\x3d\xbb\x67\x72\x87\x17\x1f\x7e\xf8\x69\xac\x8b\x5c\xeb\x9f\xdf\x64\x91\x4b\xfd\xbc\xd0\x3f\xc3\x8f\xaf\x9f\x5d\xfd\xba\xfc\x5d\x16\x3c\x4c\x10\x1c\x10\x38\x7c\xb3\x37\xfe\x76\x4f\xff\x47\xdf\xaa\xdf\x5b\xa8\x73\x5e\x70\x63\x66\x7d\x2d\xa4\xe8\x48\xcf\x51\x50\x5c\xf2\x17\x2d\xf5\x77\x33\x30\x8b\x6b\x5f\xae\x32\xd9\xb0\x3b\x46\x37\x13\xba\x60\xe0\x7b\xe0\x89\x36\x8b\x28\x51\x8e\xd4\x07\x3a\x88\x91\x77\xa4\x5f\x38\x8d\xa2\xf0\x1a\xd8\xd8\x3d\xfd\xb3\x88\xd1\x0f\x7d\xf5\xdd\x4a\x7e\xb7\x62\x34\x22\xfb\xba\xac\x0d\xc4\x94\x59\xe2\xdd\xe2\x7f\x00\x4f\xfd\xc6\xe6\xf7\x95\xf9\x8d\x80\x97\x1d\xf4\x7d\x4e\xf9\xb9\xbd\xbd\xf3\xee\x8f\x4e\xdc\x79\xd5\x89\xde\xed\x40\xd9\x0a\xda\x99\x2b\xb9\xcd\x17\xea\x6c\xbb\xd4\xda\x52\xed\x15\xab\x1b\x03\xef\x56\xef\xec\x89\x5c\x80\x74\xa3\x7f\x9a\x46\x7e\xa9\x6d\xe4\xcf\xce\x2f\xef\x76\xe0\x9f\x31\x8d\x04\xdb\xd8\x86\xad\xf2\x89\xa9\xf2\xb1\xec\xbe\xda\x2f\xca\xed\x53\x5a\x24\x60\x1b\x7e\xca\x04\x85\xb2\x98\x1c\x0f\x79\xab\x37\x76\x11\x73\x6d\x2a\xfc\xad\x16\xc6\xeb\xce\x6f\xef\x76\xe0\x35\x63\x1f\xb6\x01\x70\x2a\x01\x9b\xd2\x55\x25\x58\xe5\xe6\x1f\x98\xe6\x4f\xcd\xef\x79\x2d\x18\x0f\x3a\xa7\x9d\xf3\x77\x3b\x70\x4a\x57\x5b\x0c\xc6\xb4\x34\x18\x0f\x25\x60\x66\xe3\xcd\x12\x9b\x46\xd2\x16\xd4\xc6\x80\xe7\xcf\x20\xbf\x7b\x88\x6a\xa0\x63\xed\x36\x63\xcc\xe0\xe9\x13\x20\x02\x29\xeb\x2d\x24\xc3\x9a\x91\xb2\x23\x28\x51\x76\x98\x43\xd9\xe4\x53\xb0\x4c\xda\xed\xc9\x64\xf2\xb7\xc0\x42\x25\x52\xf5\xb6\x26\xd9\xed\xba\x39\x67\x66\x40\xef\xd5\x0e\xe8\x59\xe7\xde\xbb\x1d\x38\x67\x91\x1f\x4e\xb7\x18\x51\x5a\x1a\xd1\x0b\xdb\xb8\xda\xfd\x24\xe0\xa2\xb7\x2f\x27\x5b\x99\xb2\x25\xf5\xfd\x50\xac\x61\xff\xe0\x33\x6b\xf8\xa9\x04\x43\xef\x33\x6b\xf8\x50\x82\xe1\xf0\x33\x6b\x78\x6f\x50\xfd\xa3\xf9\xbd\x5f\x8b\xf2\xf7\x9d\x1f\x3b\xf7\xdf\xed\x40\x59\xf9\x16\x28\xbf\xe8\xfc\xd0\xf9\xa9\xf3\xa1\x84\xf8\x4b\x25\x7c\xd4\xbe\xe7\x96\x20\x2e\xe4\x17\x7a\x8b\x75\xcb\x2f\x5e\x98\xce\x9c\xd4\x76\xe6\x45\xe7\xe4\xdd\x0e\xd4\x95\x6e\xd1\x99\x45\xa9\x1b\x1f\x25\x50\xee\x66\x3a\xe1\x77\x0f\x53\xa1\xa0\x79\xc0\x05\xe9\xb5\x01\xe9\x99\xf9\xbd\x32\xbf\xbf\x9a\xdf\xdf\xcd\xef\xb2\x16\xe4\xd7\x9d\x67\x9d\xab\xce\xaf\x9d\xdf\x3b\xcb\x77\x3b\xd0\x36\xbd\x05\xf0\x1f\x1d\xe0\xed\x9e\x8d\xda\x69\x16\xc6\xa7\x67\xe7\xcd\xa8\x0d\x07\x1e\xec\x36\x11\x1c\x7d\x8b\x06\x6b\xf8\x4d\x13\xad\xd5\xeb\x37\x4d\x84\x6e\x75\xce\xf1\x84\x74\xde\xc0\xff\x69\xa2\x01\x1c\x35\xd7\xdf\x34\xd1\xe0\x96\x3b\xad\x2f\x36\x4f\xeb\x13\x77\x5a\xc7\xce\xf1\xe9\xb2\x83\xed\x68\x00\x15\x75\x54\x1e\xd1\x4a\x63\xa5\x60\xd1\xae\x3b\xc6\x95\x96\x41\x1e\x68\x02\x42\x48\x34\xd8\xa2\x42\x4f\xc7\x94\xe1\xc3\xee\x78\xb0\x45\xdd\xde\xd7\x02\xb2\x09\xcb\x7b\x21\xd1\xc0\xba\xf8\xf5\xba\x2a\xcc\x87\x1e\xaa\xfc\xad\x7b\xab\x0b\x19\x45\x48\xaa\xb9\x2d\x1a\x8b\x10\x78\xc6\x18\xee\x1c\x47\xf3\x80\xca\x49\xfa\x4e\xd1\xc9\x24\x8c\xb9\x90\x0d\xdb\x0f\xdc\x93\x6d\x1e\x70\x0a\xe4\xbe\x0b\xae\xe9\x6a\x51\xd3\x88\xce\xab\x6e\x66\x9b\x2f\xf1\x56\x20\xb0\xe5\x84\xcd\x45\xeb\x23\x8b\x6a\x3a\xab\x0b\xbc\x96\xf9\x35\xb0\x7c\x4e\x15\xdb\x01\xc5\xd9\x15\x8b\xaa\xeb\xd2\x59\x25\xef\x03\x9a\x5b\x66\xce\x92\x55\xac\xd7\x37\x49\xc1\x4d\x63\xd1\x35\x19\x8e\x08\x93\x0b\x94\xdc\x1d\x7b\xbd\x2e\x88\x86\x7c\x6c\x55\x64\xbf\xbd\x10\xec\xd2\xd0\x86\x0d\x50\x2a\x85\xa8\x58\xc9\x59\xc2\xa6\xf4\x27\xa1\xec\x4a\xcc\x8c\x6e\x60\xcf\x6e\x66\x25\xb3\xe3\x9c\xa2\x6d\x9f\x89\xdf\x0e\x75\xa0\xd6\x61\x77\x5c\xa8\xe2\x3c\x0a\xe3\x79\x2b\x9c\xcd\x64\x1d\xce\xc9\x4e\xb2\xdb\x2b\x94\x9c\x47\x6c\xe2\x2f\xfc\x90\xb7\x7c\x7d\xd6\xd3\xc8\xbf\xb6\x9a\x1e\xaa\x8e\x75\x92\x6e\xa1\x8a\x4b\x46\x17\x71\xc4\x5a\xea\xac\x65\x06\xb3\x3e\x7a\x29\xda\xf2\x37\x07\x6b\x76\x5c\xfb\x8d\x3a\xac\xdd\xea\x60\x20\xc5\x79\x1e\x09\xfa\x0c\x68\xcb\x08\x72\xd1\xb6\x47\x3c\x89\xcd\x52\xb8\xc8\x9d\x14\x25\x56\xe9\xab\xae\x4a\xaf\x4a\xb6\xac\x49\x4f\x1c\xf9\x8a\x16\x13\x9f\x71\x21\x25\x08\xf0\x04\x09\xa1\xfc\x53\xb7\x32\xf0\x8d\xad\xd3\x73\x0b\x25\x08\xa7\xfd\xde\x7c\x6f\xcd\xd4\xc4\x10\x9e\x2a\x07\xcb\x3a\xda\x7f\xa1\x79\xc6\xcf\x7d\xce\xd4\xe9\xae\x0d\xed\xbb\xa5\xbe\x32\x00\xb6\x91\xd6\xc2\xbf\x9c\x07\x2c\x8f\xcb\x85\xa0\x7c\x4a\xa3\x69\x11\x69\x72\xf8\x5b\xd7\xfe\x54\x5c\xb4\xac\x6e\x9e\xd1\x70\x8a\x6e\x9d\xa5\x7d\x35\x59\xa2\x29\x64\x6e\xa8\x38\x25\x92\x52\xbd\x93\x70\xca\x4a\xf5\x55\x52\x89\x53\xdd\x2c\x0e\x82\x16\xa7\x97\xac\x06\xd4\xcb\x72\x95\x55\xe4\xe2\xd4\xe8\x2f\xc2\x96\x02\xa5\xaa\x42\x13\xd2\x31\xfd\x3a\xf1\x67\x30\x68\x0b\xb6\x10\x56\x80\xa8\x33\x08\xd9\x48\xda\xd0\x4a\x35\x6b\x07\xcb\xae\xad\x94\xb7\x77\x64\x2d\x8b\x9d\x90\x07\xab\x1d\x3a\x91\x32\x75\x87\xee\x2c\x7c\x7e\x1e\xb0\x1d\x5d\x29\x0d\xcc\x03\x40\x7d\xdd\x68\xca\xa5\x41\x51\x6b\x50\xe7\xfc\x69\xaa\x3b\x7c\x5b\x98\xdd\x0b\xd2\x22\x9d\xab\xc3\x46\x43\xcf\xee\x61\x6e\x76\x2f\x14\x0f\x6d\x71\xbf\xd1\xa0\x8e\x12\x52\x28\xe6\x97\x26\xf7\x9a\x02\x4d\x9a\xea\x21\xb5\x95\x95\x35\x85\x9a\x02\x56\x0b\x28\x0e\x45\xa3\x01\x35\x3f\x6a\x6e\x5c\x40\x57\xdc\x21\x64\x22\xf1\xfb\x33\x38\xc9\x0f\x6b\xf1\x23\x9d\xaa\x82\x07\xdd\xe8\x9d\xff\x99\x4d\xed\xd3\x42\x23\x14\x21\x27\x64\x48\xd9\x6f\x97\x63\x88\x36\x63\x86\x4c\x9d\xc6\xc7\x9b\xb8\xf0\x8b\xa6\x67\x6a\x6d\xe2\x84\x63\xda\xb6\x17\xa3\x49\x84\x69\x7b\xa6\xbc\xba\x86\x98\x2a\x63\xbd\x62\x79\x1f\xd3\x36\x57\xa6\xd2\x17\x2b\x2e\xe8\x52\x91\x1f\xa8\x74\x9d\xa1\xb2\xda\x13\x3a\x17\x71\xc4\x5e\x08\x3a\xf9\xf0\x32\xa2\x13\xd6\x68\xd4\x64\xa8\x3b\xc8\x98\x96\xee\xdb\xff\xfd\x5e\xce\xad\x69\xfc\x2c\xf6\x83\xa9\xd9\xc5\x20\xb5\xf0\xb8\x1e\x9d\x27\xc6\x47\xa9\x0a\x8d\x98\x79\x86\xe8\xdd\x96\x2f\xaf\xe6\x73\x7b\x61\x28\x71\xbd\x18\x3a\xdf\xa7\xb3\xe4\x68\xd4\x39\xc7\x60\x34\x1a\x8d\x00\xca\x52\x41\xe7\x1c\xef\x8d\x46\x60\xcf\x49\x1b\x75\x75\xc9\xae\x5b\x70\x24\x74\xa2\xc8\x25\x72\x9d\xc8\x73\x89\x91\x4e\x8c\xdc\xc4\xe1\x68\xd9\xed\xb6\x46\xcb\xee\xe9\xb8\x73\x8e\x2b\xee\xe8\x82\xd1\x68\xd9\x05\x4d\xae\x8f\x31\xe5\x3e\xec\xc9\x0f\x7b\xa7\xa3\xe5\xf1\x69\x6b\xb4\xbc\xb3\xa9\x86\xb4\x82\xca\x98\xbd\x9f\x46\xc7\x68\xac\x53\xc7\xb9\xc4\x37\x3a\xf1\x8d\x9b\xd8\xd2\x69\x2d\xf0\x8f\x45\x9c\xef\xae\x4c\xb4\x87\x2b\xad\x82\x5a\x6f\xd1\x46\x41\xde\x03\x7b\xcd\x08\xea\xa3\x36\xca\x25\x90\xd1\x97\x02\xba\x58\x00\xef\xca\x04\x63\x9c\xd3\x48\x2c\x6a\x2f\x68\xe7\x4f\x85\x30\x34\x08\xb5\x61\xb8\x09\x5a\xa0\x29\x9f\x7b\x63\xe4\x85\xb9\x23\x6e\x60\x08\x9a\x90\xb5\x7d\x7e\xc5\xe4\xea\x78\x00\xde\x00\x0f\x00\xd4\x14\x4d\x30\x06\xc6\x24\xc5\x57\x16\x48\xf9\xbc\x23\x79\x89\x4e\x04\x8b\x80\x55\x85\xa6\x69\x3e\xe3\xca\x7b\x82\xcf\xe7\xb1\x30\xd9\xfa\x24\xa4\x97\xd2\xce\xd4\x44\xa5\xf2\x43\x6e\x65\x66\xe6\xd9\x09\x34\x4b\x9e\x1c\xe5\x2c\xa7\xc2\x8d\xce\xa1\xaf\x6f\x0f\xb6\x17\x61\x24\xa0\xda\x74\x37\x0e\x3e\xf4\xa2\x40\x90\x9e\x8a\x07\x2e\xb2\xb5\x80\x50\x6e\xf9\x45\xab\x37\xde\x25\x24\x1a\x8a\xb1\xf2\xac\xc0\xc7\xea\x19\xcb\x95\x42\xdf\x96\x25\x3c\x31\xc3\x64\x53\xf4\x40\xed\xf4\x2c\xec\x91\xd2\xed\x65\xd2\xbe\x9b\xd4\x04\x3b\x61\xb4\x03\x9a\xd1\xb0\x37\xee\x9b\x8d\xa9\x34\xdf\xf8\x8d\xeb\xe2\x56\xcf\x8d\x30\xda\x04\xd8\x7e\x14\x65\xc7\xfa\x92\x04\x32\xd4\x04\xfa\xea\x68\x13\x42\x48\x89\x40\x03\x4d\x19\x54\x11\x85\x97\xc7\x30\x52\x01\xc8\x63\x3e\xb5\x97\x6d\x69\x82\x45\x02\x95\x20\x47\x95\x1e\x1d\xad\x4f\xbf\x5d\x29\x80\x85\x97\xf9\x59\x95\x8b\x29\x4a\x6e\xd4\x25\x50\xef\x29\x4b\x70\x40\x9e\x32\x3c\x21\x2f\x19\x04\x77\x01\xde\x55\x17\xd7\xab\x9c\x02\x64\x5e\x90\xf1\x4c\x95\xfe\x46\x97\x9e\x92\xfb\x0c\x02\x41\xcf\xcd\x26\x20\x40\xf8\x52\xe5\x77\xfe\xa5\x0b\xac\xd4\x9b\x79\x39\xd7\x0d\x75\xf4\xdb\x95\xfa\xd6\xee\x01\x65\x15\x9c\xa9\x52\x37\xba\xd0\xb5\x7a\x49\xf4\xcb\x52\x7d\xa1\x6f\x5c\xbc\xf8\xc0\x02\x26\x42\xfe\x68\x0a\x10\x7e\x48\x3a\x6f\x86\x7b\xa3\xce\x4d\x32\xee\xe0\x0f\xe4\x19\x83\x43\xb0\x07\x30\xe8\x00\x2c\x2b\x02\x09\x18\xe3\xdd\x9e\xaa\xe3\x05\x31\x6e\x86\x24\xc5\x27\xf8\x65\x45\x95\x2f\xc3\x0f\x8c\x3f\x33\xca\x19\x7e\xa6\xfb\xa3\x21\xb8\x5f\x57\x1c\x20\xfc\xb3\x2a\xe8\x79\xba\xe4\xdb\x2a\x3c\x86\xa2\x3d\x0f\xe7\x50\x4e\x95\x99\x28\x5b\x7c\x7b\x4b\xad\xc7\x12\xfc\x5e\xd5\x80\x75\x05\x27\xea\xc5\x5e\x65\x93\x29\x4f\x49\x71\x8b\x33\x5d\x4b\x98\x3e\x99\xd2\x6a\xe2\xf5\xdb\xd4\xf8\x76\xf7\xf4\x91\xfa\x34\x55\x5d\x8c\x97\x0f\xea\xca\xbb\x5a\x3c\x7a\xbc\xd1\x50\x11\x56\xf5\xfe\x2d\x4b\x30\x15\x10\xa1\x04\x3f\x57\x50\xec\x69\x00\x1e\x49\x34\xbf\xd9\x1b\x77\xf0\xa9\xc5\xf1\x18\xef\x76\x55\xde\x13\x95\x47\x5b\x1f\x4f\x5a\xaf\xf7\xd4\x38\x3c\x50\x65\x86\x80\x02\x0c\x3e\x82\x31\x1e\x82\x13\x80\xc1\x6b\x30\xc6\x6a\x6c\xd2\x71\xd1\xdf\x3f\x96\xdf\xeb\xcf\xc7\x1d\xfc\xb1\xee\xdb\x74\x1c\x5f\x29\xc0\xf4\x5d\x01\xf9\xfe\x9b\x7a\xd7\xa7\xed\xe5\xfb\x2d\xf5\x6e\xdd\xe4\xcb\x94\x5f\x55\x8a\x3e\xf6\x1d\x46\x53\x9f\xdb\x8c\x7b\x2a\x23\x9c\xcd\x16\x4c\x98\xd1\xfb\xc1\x29\xab\x53\xfe\x54\x29\x44\xbf\xfc\xa2\xc8\xe0\xfa\xc2\x17\xda\x7f\x13\x40\xf8\x27\x09\xff\x48\xb4\x46\xd1\xce\x68\xf9\xdd\xd1\x68\x79\xd2\x1d\xc5\xbd\xdb\xdf\x75\x47\xf1\x7e\x57\x4e\x4b\xf2\xe7\x44\xfe\xdf\xff\x4e\xfd\xbf\xa3\xfe\x9f\xca\xff\x47\xa7\xa3\xf8\xa0\xdb\xed\x8e\x3b\xf8\x7b\xd3\xf1\x91\x00\x18\x8c\x22\x89\xac\x1d\xf9\xb4\xfc\xee\x48\xfd\xd0\xae\xfc\x51\x15\x03\x3c\x04\xba\x72\x95\xb4\xdf\xed\x52\x59\x5c\x37\x61\x92\xf6\xef\xd8\x87\x99\x79\x38\xd2\x0f\xb2\xb9\x8c\x29\xfe\x50\xfd\x59\x28\xa5\xd2\x9a\x55\x01\xc2\xaf\x65\x9f\x76\x5b\xa3\x8e\xd7\xfa\x9f\x61\x6b\xf4\xe6\xdd\x4d\xeb\x7f\x47\xcb\x93\x5e\x6b\xb4\x3c\x39\x1e\x2d\x4f\xee\x8c\x96\x27\xf7\x46\xcb\x93\xfb\xa3\xe5\xc9\xc3\xd1\xf2\x5e\x77\xb4\xbc\xd7\x1b\x2d\xef\xdd\x1e\x2d\xef\xdd\x1b\x2d\xef\x9d\x8e\x96\x0f\x8e\x47\xcb\xd3\x63\xd9\x70\x4f\xe3\x60\x5f\xbd\x1c\xe8\x97\x83\x87\xf2\xff\x61\x4f\xbd\x1c\x1d\xa8\xff\x47\xfa\x45\xe6\xf4\xee\xa8\x62\x87\x12\x3f\xfb\x47\x1a\x89\xc7\xc7\x47\xf2\xff\x9d\x43\xf9\x72\xef\x54\xe6\x3c\xd4\x39\x0f\x8f\x35\x1a\x65\x6d\x07\xdd\xee\x81\xfa\xff\x9d\x7a\xd9\xef\xca\xff\x07\xdd\x51\x7c\xfa\x40\xb6\x79\xfa\xe0\xe0\x74\x14\x9f\x3e\x3c\x3c\x52\xff\x6f\x8f\x3b\xf8\x77\x83\xf8\x5d\x25\x36\x24\xc5\x79\x00\x83\xff\x51\x4f\x43\x80\xc1\x1b\x89\xdb\x77\x12\xe7\x92\x70\xff\x57\xa5\x8f\x96\xb4\xa7\x47\xe5\x58\x61\x7e\x49\xef\xe8\xd7\x33\xfd\x33\xd1\x3f\x4c\xfd\x9c\x75\xf5\x8f\xfe\xe2\xec\xb6\xfe\xd1\x25\xcf\xd4\xa0\x2c\xa7\xc7\xea\x67\x76\x6c\x87\xb6\x67\x87\x76\xff\x58\x37\xa8\x50\x67\xd2\x0e\x58\x9a\x76\xd8\xb3\xa3\x7b\x90\xa6\x1d\x1d\xd9\xb4\xb4\x5c\xef\x8e\xf9\xf6\xf0\x68\x66\xd3\x8e\x2c\xf9\x1c\x1f\x1f\xd9\xb4\xe3\x3b\x87\x3a\xed\x6c\x96\x96\x63\xb6\x1c\x3b\xb6\x69\x12\xd7\x96\x98\x0e\xb2\xb4\xef\x4c\xda\x7e\x57\x93\xe3\x81\x05\x79\x36\x3d\x60\xf6\x41\x53\xe1\x8c\x1d\x1e\xd9\x87\xdb\x19\x39\xfe\xa8\xc8\x31\x5d\x27\xe7\xf8\x8c\x31\x47\x04\x03\x84\x05\x53\x8c\xd9\xd2\x8c\xc9\x19\x81\x6a\x56\x99\x87\x0b\x11\x85\xf3\x0b\xf9\x89\x4c\x98\x86\xf1\x59\xc0\x76\xb2\xf4\x05\x40\x08\x47\xfa\xe3\x3d\x23\xdf\x42\x56\x21\xb4\xc1\x5d\xa0\xcf\x12\x81\x1b\xf3\xb0\x0b\x7d\x01\x91\x5d\x5c\x33\x24\x53\x42\xe1\xc4\x5f\x06\x89\xce\x48\xb0\xaf\x1b\x18\x71\xdd\x00\x65\x76\xce\x7b\x4a\x2f\xd9\xb3\xe8\xa9\xed\x45\xac\x33\xae\x68\xe0\x4f\x5f\xd2\x73\x80\x70\x90\x15\xb5\x85\x26\xba\xb2\xae\x99\xa8\x99\xe4\xce\x5e\xeb\xce\xb8\x83\x67\xcc\x50\xaf\x1c\x8f\x3b\x8e\x94\x9c\xaa\x42\x5d\x55\x68\x6e\x0b\x75\x0b\x85\x2e\x72\x50\xc9\x29\x9c\xd9\x69\xdd\x24\xac\x18\xe9\xe2\x73\xf9\xef\x8a\x91\xe1\x4d\xe0\x73\xe6\xf5\xf0\x24\x0c\xe2\x4b\xee\xf5\x92\x31\x3e\x93\x79\xd7\x8c\x0c\xc7\x78\xc9\x48\x57\x6a\x70\x99\x0a\xd2\x56\xfa\xc6\xf3\x38\x30\xbe\x67\xa1\x93\xb2\xe3\xf3\x1d\x5a\xe1\x89\xf6\x3e\xe5\x7b\xca\xa7\x5d\x24\x54\x10\x73\x9f\x9f\x2b\x97\x5c\x3b\x91\xfc\x68\x04\x40\xd3\xa9\xa4\xb9\x07\xda\x7b\xa8\x1f\x10\x3a\x74\x52\x9d\xdb\x5d\x0f\x99\xe3\x9f\xca\x71\x13\x78\xce\xf0\xca\x0d\xe1\xf3\xc1\x29\xf7\x96\x95\xb2\x5f\x30\xa3\x5f\x29\x68\x2b\xcd\x7a\xb2\x0b\x17\x90\xe1\xe1\x18\x03\x80\x85\xbe\x56\x9b\x57\xc7\xd2\x8a\x9d\x9a\x5f\x32\xb7\x16\x33\x9b\xa7\xa1\x66\xe4\x72\xc1\x63\x58\xbb\x01\x95\x6b\x58\x4f\x38\xf6\xf2\x67\x2c\xaf\x0e\x98\xaf\xf5\xa2\x02\xab\xc5\x84\xfc\xd8\x28\xff\x9e\x70\xeb\xe1\x4e\x3d\xf7\x99\x73\xa5\x40\xd7\xa1\xd5\x7a\xec\x68\xf3\x79\x17\x74\x2c\x75\x9e\x89\x23\x72\x65\xfd\x67\x46\xd6\x4f\x48\xa4\x7c\x72\x71\x22\x5a\xbd\xfe\xee\x95\x3a\x3c\x8f\x78\xab\x65\xdc\xe8\x6b\x32\x82\xea\x43\x3e\x46\x6d\xf9\x6a\x69\x2a\x6a\xeb\x87\xa4\xcf\xef\x8a\x3e\xea\x29\xff\xe7\xee\x02\x9f\xa3\x81\x54\xe1\x7d\xce\x9a\x4d\x6c\x4b\x93\x1e\x4a\xbf\x6c\x36\xa5\xe6\x6f\xed\x2c\x0a\x36\x12\xb9\x2e\x5d\xdf\x32\xf7\x6c\xdd\xcf\x4c\xbb\x74\x53\x5d\xb2\x71\xf6\xb5\x9e\x7c\x63\x34\x03\x86\x15\xc0\x3c\x07\x28\xb7\x80\x62\xc6\xa7\x69\x51\xa1\x8b\x46\xd5\x7d\x72\x30\xf8\x5e\xe1\x7c\xc5\xee\x9e\xb1\xf5\x1a\xae\xd8\xbf\xce\x58\xa3\x01\xcf\x18\x59\x31\xcd\x4e\x08\x5f\x33\xeb\x03\xda\xa1\x97\x93\xc2\x98\x1b\xba\xbb\xc8\x59\x4d\x8c\x55\x46\x95\xcb\x3e\x7d\xea\xd0\xf8\xf3\x9c\x35\x44\xbe\x59\xaf\xbe\x6a\x8c\x14\x3f\x0b\xf2\x88\x41\xd4\x17\x72\x6d\xd5\x47\x06\x18\x81\x6c\x7a\x7a\xb2\x2b\xbb\xd1\x66\xab\x11\x98\x67\xc1\xd8\x57\x4c\x0a\x90\x15\xc3\x70\x37\x16\xc6\xa9\xbd\x17\xa1\x5d\x7d\xa5\x8d\x57\x38\x16\xc6\x1c\xd3\xfe\x52\x8e\x2f\x64\xe4\x01\x83\x08\x99\xfb\x6f\xba\x1a\x41\x1e\xcb\xb4\xb4\x82\xe7\xce\x1b\x25\x1f\xed\xdb\x00\x9e\x33\xc2\x70\x40\x38\x86\x31\x11\x32\x0d\x4e\x08\x45\x8d\xc6\x0b\xa6\xce\xc7\x5f\x2a\xd7\xcf\x82\xaa\xe3\xe3\x71\x73\x0f\xec\xec\x12\x22\x9f\x27\x72\x2d\x86\xa5\x48\xd0\x01\xca\x35\x4f\x28\xbd\x99\x9e\x1b\x45\x39\xc6\xf6\x38\xa3\x17\x18\x9d\x19\x33\x22\x90\x07\x57\xb2\x55\x46\x22\x73\xa5\x28\xc6\x01\x9e\xf4\x97\xac\xd5\xc2\xcc\x74\x43\x90\x08\x4b\xba\x5e\xb2\x46\xe3\x3d\x83\x53\xe4\x20\xd3\x05\x5e\x60\x41\xb8\xae\x51\x3e\x46\x12\x1a\x5b\x43\x19\x6b\x7d\x8b\x9d\x53\x07\x1f\x0a\x05\xda\xdb\xbb\xdb\x0f\x23\x60\x4c\x5f\xb8\xe9\x80\xf1\x28\x9e\x02\x43\x44\x92\xe1\xbe\xd4\xa4\x1a\x26\x1c\xeb\x81\x52\xc3\xdc\xdb\x3f\x28\x72\xeb\x8a\xa1\x01\xe4\x44\xaa\x4e\x2b\xd6\x6c\x22\x0f\xf2\x7c\xe7\xcf\x10\xea\x73\x0d\xec\xf7\xda\xc9\x8f\x1e\x46\x26\xd2\x4e\xd8\xf4\x01\xec\xed\x1f\x55\x36\x10\x13\xb9\x50\x34\x0d\xc4\xf9\x06\xae\x11\xc2\xb1\x83\xd2\x80\x50\xcc\x73\xc8\xb0\x0b\x51\x83\x8d\x74\x38\x0b\xc8\x77\x9f\x15\xa2\x02\x3d\xaa\x76\x4c\x0a\x1d\xbb\xca\x46\x75\x33\x1a\xfb\xd5\xa8\xf5\x25\x72\x25\xed\xe0\x05\x9e\xf5\xbf\x32\x7e\xfd\x6a\xfc\x1e\x1e\x56\xd6\x4f\x89\x5c\x9a\x9a\xfa\x69\xbe\xfe\xf7\x08\x61\x5a\xac\xc7\x59\x8e\xda\x49\x17\xae\x18\xbe\xad\x87\xca\xae\x6c\x57\xac\x49\x6e\x97\x07\xec\xc4\x0e\x98\x5b\x63\x20\xfb\x5f\x03\xde\xc4\x05\x6f\x52\x06\x6f\x62\x3a\xbd\x20\xdf\x3b\x9c\x31\xab\x44\xba\x46\xb4\x5c\xcb\x17\x60\xdf\xd7\x78\x96\x8b\x7c\x09\xf7\x7e\x19\xd3\x3f\x67\x98\x86\x7e\xa5\x54\x53\x31\xbb\x64\xfd\x42\x8a\x57\xc8\xc9\x2d\x0b\x8f\x3a\x79\xab\xbf\xee\x23\x91\x5e\xfd\xd4\x25\xd4\x26\xc5\x8e\x20\x91\x16\xc5\x96\xab\x33\x8e\xee\x62\x11\x7e\x60\x7c\xe1\xf9\x44\xc8\x69\x7f\xc1\xa6\xda\x88\xb1\xf0\x02\x31\x98\x43\x1f\x79\x37\x49\x8e\xc7\xfd\x02\x8f\xe7\x45\x0e\xf1\x73\xb4\x9e\x09\x9d\x54\x94\x87\x06\x46\x33\x96\x27\xd1\xb9\xf6\x9c\x81\x64\xaf\x20\x27\xbb\x5d\x54\x92\xf4\x7e\x26\x98\x4c\x53\x9c\xbc\x85\x7e\x99\xcf\x72\x6c\xa3\x8a\x07\x64\x42\x86\x8a\x11\xc6\xaa\x60\x80\x03\x29\x0d\x03\x03\x58\xa0\x36\x1d\x10\x0e\x4c\x4b\x93\x6c\xa0\xeb\x65\xc6\xc2\x95\x19\x8b\xb2\xcc\x58\xe4\x00\x7d\x0a\x7d\xc9\x8d\x1b\x85\xc2\x36\xcf\xdb\x89\x04\xc3\xfe\x86\xf9\xf1\xf4\xbf\x8d\xfd\xad\xd5\xc9\x65\xa0\x43\x24\xb9\xd8\xd8\x6d\x24\x0b\x1d\x22\x0f\x06\xf9\xda\x5e\xa1\x6c\x50\xb5\x45\xa7\xba\x12\x6d\xec\xa9\xa9\xe4\x37\x84\x52\x52\xc8\x60\x9a\x6c\x10\x20\x0b\xb7\x83\x8b\x72\x07\x17\xa9\xc8\x70\x05\xc8\xf4\x6f\x15\x20\x86\x26\x74\xf5\x5c\xfe\xf3\x95\x10\xa1\xe4\x57\x47\x41\xa2\xe4\x9e\x7c\x53\xbe\xad\x33\xb9\x42\xb5\x5c\xf1\x35\xcf\x52\x54\xf7\x95\xde\x3a\x25\x51\x9f\x13\x5f\x61\xcd\x5d\x31\x71\xb9\x70\xf1\xfc\x14\x42\xc3\x18\x56\x06\xf5\xb0\xb1\x1e\x79\x52\xe1\x2a\x09\xa1\x18\x06\x25\x21\x14\x64\x3a\x22\xff\x4b\x42\x48\xd2\xd4\xb3\xe8\xa5\x7f\xc9\xfe\xdd\x82\x68\x42\x16\x64\xa8\x58\x52\x0b\xa2\x09\x9e\x48\x41\x34\x21\x56\xf0\x68\x41\x54\x31\xe3\xd4\x0b\xa2\x99\x2b\x88\x66\x65\x41\x34\x2b\x09\xa2\x00\x4f\xbe\xae\x20\xda\x5a\x2a\x39\x2a\x09\x9e\xe2\x39\xbe\xf8\x6b\x92\xc9\x9f\x41\x45\x4e\xc8\x9f\x41\xcb\xaa\xf2\xd9\xd5\xff\x8a\x79\x35\x3c\x1c\xbb\x3c\x1c\x97\x79\x38\xae\xaa\xcb\x5a\x89\x2b\xf4\x94\x20\x8b\xb4\x6a\xf5\x94\x82\x9c\xb9\xe5\x0a\xab\xbc\x71\xb9\x50\x5f\xef\x40\x57\x58\xb0\x40\xcb\x7a\x7b\x07\xe5\x8a\x7f\x4d\x05\xd8\x96\x7d\xdf\x4a\x01\x2a\xd6\xb5\x50\x72\xca\xda\xbe\x0b\x10\x1f\x6b\xba\x4c\x2d\xe3\x12\xd4\xe3\x32\x79\xde\xb3\xe4\xa9\xc4\xa1\x2b\x1c\xe7\xe4\x8f\x94\xf2\x17\x64\x46\x86\x8a\x5e\x34\xd3\x2c\xf0\x42\x32\xcd\x82\x58\x26\xd1\x4c\xb3\x48\x47\xdf\x91\xb3\xca\x6e\x34\x55\x92\x6e\x4e\xfe\xcc\xab\x4b\x73\x2d\xd6\xa6\x5a\x0a\xcc\x11\xd6\x25\xb4\x18\x9b\x92\xa8\x3f\x4d\x81\xd9\x82\x0d\x2f\x5c\x36\xbc\x28\xb3\xe1\x45\x8e\x0d\xcb\xd7\xf9\x0b\x3b\x32\x72\x61\xa1\x09\x08\xeb\x9f\x97\xca\xae\x92\x11\x9c\x18\x80\x09\x35\xa4\xe0\x81\x94\x28\xcc\x36\x0c\x36\xa8\xe7\x03\x3e\xdc\x1f\x7b\x5d\x6c\x0e\xb9\x78\xd1\x27\xfc\x90\xf8\x53\x75\x41\x50\xc7\x74\x09\x89\x48\xcf\x90\xa4\x91\xb7\x54\x7c\x4e\xbd\x08\x7e\x10\xcf\x03\x7f\x42\x85\x3d\x9a\x24\x17\xbf\xdc\xdc\x0a\xd7\x90\xee\x30\xbd\x3b\xa7\xae\x7e\x3f\x64\x3a\x9c\x8d\x59\x1a\xab\xeb\x69\xe6\xde\x5f\x84\x6d\x3b\x5e\x98\x28\x97\x25\x37\x09\xb2\x7b\x49\x50\xaa\x32\x0b\x3c\xdd\x28\xb4\xf4\xc1\x1d\xfb\xda\xff\xcf\x7d\xfb\x22\x59\xf9\x5f\x2e\x27\xcd\x7e\x58\xb5\x9c\xb4\x9b\x65\x35\x72\xf2\x87\x7f\xbb\x34\xbb\x51\xe2\x4c\xca\x88\x19\xf9\x21\x2f\x23\x66\x5a\x46\x2c\xb4\x8c\x98\x21\xac\x4b\xe8\x21\x5d\x90\xa8\x5f\xa1\xdb\xd5\xcb\x88\xa9\x2b\x23\xa6\x65\x19\x31\xad\x95\x11\x95\xf2\x41\x23\x2e\x63\x79\xc3\xe2\x75\x81\x17\xbe\x3a\x8b\xeb\xf6\xbf\x16\x8b\x2f\xfe\x7b\xd8\x7b\x4b\x16\xd6\x4c\x7b\x50\x4d\x0b\x9c\x80\x6f\xea\x78\x76\xe6\x68\xf2\x05\x3d\x59\xcd\x0b\x61\xcc\xa7\xa9\x2a\x9c\x57\x82\xdd\x6b\x0f\xa7\x8e\x3d\x15\x87\xd8\x97\x72\xc0\xb5\xa7\x2a\x0d\x37\x16\x05\x0d\x57\xb1\x43\xa8\xd8\xc1\x27\xaf\x1d\x35\xdf\x27\xbf\xe7\xde\x7e\x74\xde\x6e\x97\xec\xec\xaa\x93\x3e\x01\x77\xd3\x4e\xfa\xf9\x4e\x4e\xa4\x9a\xe2\x67\xac\xe6\x6b\x56\x0b\x35\xab\xf9\xe8\x6f\x68\x5e\x0f\x6b\x48\xa2\x7e\x58\x58\x3c\x2c\x60\xb8\x89\xfc\x14\x22\x2d\xae\xcc\x92\x4a\x22\x2c\xcc\x41\x1c\xe6\x20\x0e\x73\x10\x87\xe4\x89\xe2\x90\x30\x43\x40\xa8\x11\xc0\x35\x02\x42\xf4\x05\xd5\xe9\x0e\x71\xb9\x04\xcb\x93\xcf\x02\x72\x6d\x91\xcc\xce\xa1\x66\x4e\xb8\x72\x64\x92\x33\xbc\xab\x85\xa2\xb6\xa4\x87\xda\x6a\x9e\xb6\xf7\x31\xf7\xa6\xac\xec\x58\xd9\x33\x43\x75\xc6\x98\x9b\xad\x2b\x85\x43\x8e\xb9\xd4\xd8\xb8\x46\x72\xcd\x60\x85\xee\x60\x85\xa5\xc1\xc2\xc5\x21\x02\x77\x41\x9d\xb0\x70\x99\xe0\x01\x2b\xcd\xa9\x0b\x3c\x2b\xf7\xb2\x06\x2a\xea\x42\x45\xcb\x50\x19\xe3\x05\x8c\x89\xc8\x4c\x22\x30\x70\x67\x03\xd0\xf9\x57\xd5\x62\x7e\x41\xd4\x59\x27\xbb\x98\x2f\xd8\x0d\x2e\x53\x13\x12\x27\x94\x0c\x0d\xe0\x63\x07\x9d\xa8\x84\x5a\x3b\xdc\x33\x95\x5a\x6f\xaf\x9f\x39\x87\xb2\xb4\x10\x51\x94\x91\xa2\xec\x71\x51\x6e\xb8\xc8\xaa\xc1\x13\x77\xf1\xc4\xcb\x78\xb2\x00\x86\x19\x9e\x06\xf0\xf6\x7e\x1d\xdb\xfe\xab\x8e\x6d\x57\x56\x68\x38\x94\x10\x6e\x43\x07\x1f\x37\x75\x0a\xdc\xed\xd4\xd8\x5b\xee\x76\x6a\xed\x2d\xe7\xff\x09\xdd\x7a\x55\xe8\x16\xa6\x52\x38\x65\x7b\x2a\x4a\x2e\x85\xda\xde\x93\xf2\x32\x25\xbf\x38\xdc\xfb\x50\x9f\x74\xd7\x00\x6b\x60\x15\xe1\xbb\x09\x35\x1c\xf0\x01\x59\xae\xa7\x8a\xeb\x7d\x97\xeb\x7d\xec\x4b\x60\x4d\xb7\xac\x4f\x82\x7f\xad\xd8\x96\x95\xbf\xb0\xec\x35\x08\x89\x4f\x86\x3e\xa6\x9a\xfc\x43\x1c\xa6\x08\xd1\xcf\x1b\xa5\xe8\x3f\xbd\xf3\x99\xcc\xcf\x34\x81\x92\xf5\x4d\x28\xeb\x1b\xc7\x9b\x76\x9c\x96\x79\xed\xe1\xb7\xca\x69\x21\xa3\xac\xc3\xe3\x3a\x41\xd0\xa9\x13\x04\xcf\x72\x1c\xf3\x8a\x95\x8d\x76\x39\x9a\xdf\x08\xed\xcb\x3c\xb4\xb7\x58\x6e\xff\x37\x4c\xb9\x40\xa9\x3a\xb9\x45\x8f\xc8\x5a\xd6\x27\x83\x0d\x8f\xc8\x0e\x57\x91\x8f\x4a\xe7\xce\x96\x70\xf1\x56\x41\xba\xe9\xcf\x2e\x5d\x35\x3c\x49\x94\x23\x16\x77\x4b\x37\x55\x23\xd4\x6b\x3f\xff\x96\x62\xd8\xd9\xea\xcd\x75\xf9\xbe\xd4\xa8\xb3\x2e\xff\x5a\xa7\xde\x1d\xdc\xa9\x1b\x99\xbd\xba\x91\x79\x6e\x47\xa6\x56\xfb\x7b\x54\xc9\x28\x7e\x25\x2d\x17\x84\xdb\xe9\x67\x6a\x7a\x7f\xb1\xa9\x92\x56\x57\x83\x0f\xdf\xc5\x87\x5f\xc6\x87\xe6\x5d\x49\x95\x43\x85\xdf\xf1\x76\x4b\x93\x54\x37\x54\x0f\x7a\xa3\xce\xed\xdd\x93\xca\xde\xf1\xca\xde\x15\x46\xe9\x01\x4a\x87\xa9\x7a\xc3\xef\xeb\x36\x95\x6d\x1c\x96\x95\xc6\x7b\xee\x59\x0d\xdb\xd3\xc7\x5f\xde\xde\xc7\x4f\xf4\xec\xaf\x55\xbd\xa9\x27\x3f\xb0\xaa\x5d\xf3\x9c\x7a\xe0\x6c\x7d\x71\x12\x55\x9f\x2c\xa8\xb6\xcc\xf8\xae\x65\xc6\x2f\x59\x66\x9c\x39\xdf\xdd\x90\x30\x16\x11\x84\xe1\x6e\xb7\xb4\xfd\x40\xb3\x03\x2b\x5f\xeb\x44\x03\xc7\x13\x42\x71\x7a\xc6\x5c\xed\x0c\xfb\x53\xcf\xea\x8b\x13\xab\x26\x7e\xe6\x1e\x81\x2b\x9f\xff\xfc\x4c\x2c\x57\x18\xc4\x8a\x4a\x9b\x56\xdb\x7b\x75\x8b\x09\x52\xb7\x98\xf8\xd3\x2e\x26\xd4\x32\x32\xb3\x33\x73\x12\x92\x61\xca\xe7\x46\xb1\x86\x1b\x66\xd3\x6c\xed\x1f\xe9\x03\x1f\xc9\xbf\x9d\x32\x8c\xfd\xf7\x9f\x44\x19\xbf\xa4\x94\x91\xd3\x31\x7e\xaa\x64\x78\x51\xc9\xf0\x85\x03\x51\xdf\xa3\x82\xea\x90\xcb\xfd\x25\xaf\x38\xfc\x54\xdd\xfc\xeb\x2f\x6f\xfe\xf7\x8d\xcd\xff\x91\x6f\xfe\xfb\xbc\x96\x25\x85\x5f\x49\x79\xff\xa5\x46\x31\xf9\xc5\x39\x46\xf7\xa5\x4a\xdf\x8f\x79\x70\xfe\x28\x2f\x27\xca\x8a\x5f\xad\x41\xab\x55\xa7\x5e\x08\x26\xc5\x7b\x0a\x81\xde\xb0\xc9\x34\x41\x2e\xf2\x9a\xa0\x4f\xb8\xd2\x06\x21\x25\x21\x1a\xf8\x83\x16\xf5\xa8\xd7\xdd\x5a\x35\x64\x2c\xdf\xa9\xd7\x15\xe7\x0a\xb3\xee\x80\xbd\xbd\x9a\xb5\xdf\xde\x5e\xed\xda\x2f\x62\xa8\xb0\xe8\x56\xda\x95\x81\x4b\x0a\x0d\x54\x0d\x1b\x2f\xc0\xf6\x7b\x09\xe1\x38\xfe\x3a\x8a\x9c\x54\x75\xc3\x3a\x39\x9a\x09\xd0\xdc\xd2\x24\xac\xa4\xef\xb0\xb4\x34\x71\xec\x65\x2b\x26\xd5\x37\x6d\x6a\x23\x44\x0f\xd9\x7a\x0d\x94\xc9\x83\xae\xd7\xe0\xc6\x3e\x24\xe6\xc1\x3d\x02\x4f\x0b\xb6\xc7\x4a\x19\xec\x1a\x3a\xf4\x35\xb6\xfe\x06\x6a\x2f\x6d\xba\x6b\x1d\x5f\x2d\x00\xa9\xe4\xa7\x9a\xf1\x8e\xf3\xe3\x1d\x57\x8c\x77\xbc\x51\x3f\x8d\x2b\x71\x17\x57\xe8\xa7\xb1\x66\x65\x6a\x1c\xfc\xa3\xff\x00\x90\xa0\x4f\x68\x09\xa3\xbe\xc2\x28\x45\x1b\xb5\x68\xea\x12\x23\x2d\x13\x23\x4d\x0f\x89\x68\xae\xa7\xc5\x15\x5f\xd3\x4f\xaf\xb4\xa9\xee\x4a\x36\xfa\xa2\x5d\x80\xb2\x6a\xf7\xe3\x26\x9b\xcf\x97\x53\x3f\xae\xa0\xfe\x90\xc1\x10\x7d\x2e\x35\xa7\x22\xb1\x7c\x4c\xdd\x32\xfa\x88\xd7\x71\xba\xcf\x8c\xe1\xae\x8e\x13\x32\x3c\x30\xb1\x49\x00\x4a\x81\x2c\xb2\x45\x03\xb7\xda\xcc\x17\xce\x28\xb4\x20\xe1\xc4\xe7\x35\x5e\x2d\xb0\xec\x81\xee\x6c\x5a\xac\x99\x85\x42\x77\x16\x0a\xcb\xb3\x50\x3f\x4c\x6d\xd6\x9b\xcc\x42\x94\xfc\x94\x59\xb4\xff\x4f\xcd\x3b\x6a\xf7\x76\x93\x7d\xeb\x0b\x11\x81\xff\xfb\x10\x91\x1a\xba\x36\x89\xff\x4d\xa4\x79\xc9\x0a\x67\x95\xbe\x98\xc8\xe3\x02\x91\x73\xb1\xd9\x0c\x7b\xf8\x5d\x1d\x83\x77\x6b\xad\xe6\x15\x2a\x46\x17\x65\xba\x85\xbb\xf7\xb4\x62\x78\xc1\x2a\xa7\x80\xad\x64\xda\x8c\xa5\x3b\x51\x66\xb2\x1c\x8e\xf1\xb4\xba\xc2\xad\x46\x75\x2e\x11\x5d\x3a\x36\xf8\x97\x6b\xf4\x6b\xa5\x6a\x3a\x31\xa8\xd7\xe2\xee\x97\x3a\x4e\xf8\x88\x0b\xc8\xd3\x9d\x0f\xdc\xeb\xe6\x37\xc4\x36\x8d\x76\x50\x18\xed\xe8\x13\xa3\xbd\x85\xd1\xfd\x3f\x87\xaf\xfe\x82\xf1\xfc\x3f\xa7\x13\x5f\xcd\x08\x7e\xc1\x52\x2f\x8f\xa1\x20\x43\x10\x85\xa1\x70\x23\x16\x49\xed\xd5\xde\xef\xcc\x0e\x63\x85\x62\x98\xde\xe3\x6c\xf5\x9c\xfb\x83\x34\x2b\xbe\x23\x1a\x0d\x61\xfd\xe7\x3c\x36\x47\x21\x06\x37\xe9\xa1\x88\x0f\x0c\xa2\xc4\xbb\xd1\x11\x7d\x62\x41\x54\x71\x7d\xe3\xee\x25\x3d\xc7\x81\x49\x59\x5c\x84\x71\x30\xfd\x59\x52\xb4\xf5\x23\x20\x89\x0f\x72\x12\xa4\xd6\x87\x15\x53\xd2\xc6\xf8\xa9\xb0\xa7\x3a\xfa\xe6\xae\xa4\x2d\x73\x97\xa5\x3e\x91\xde\x33\xeb\x08\x80\xf1\x29\x48\x10\x3e\x61\xf0\x9a\xe1\xb3\xac\xcc\x20\x1d\xae\x33\x89\xc3\x38\x08\x72\xb9\x6f\x19\x3c\x93\xe5\x9b\x3d\xe4\xd9\x67\x84\x12\xbc\x22\x1d\xf8\x66\x3d\x7c\x33\x1a\x8d\xd1\x37\xae\xff\xcb\x73\xc8\xd0\x8d\x0a\x29\xf4\x90\x4e\x2e\xf2\xfe\x4a\x6c\x6c\x02\xbf\x7d\x81\x20\x43\xeb\x75\xfa\xfe\x5e\xbe\xa3\x34\x48\xbc\x8e\xbc\x63\x1d\x38\xa1\x8a\xda\x5c\x07\xea\xca\x51\x88\x75\xf6\x24\x24\x83\xb6\x7a\x98\x1a\x7a\xc5\x31\xe9\xf6\xe3\xbb\x91\x3e\x16\x63\x1d\x84\xc4\xd6\x59\x60\x40\x4c\xce\x30\x56\x37\x15\x53\x88\x18\x82\x01\x6a\x34\x56\x5a\xb2\x05\xba\x10\x42\x37\x21\x89\x31\x25\x81\xf6\x67\x9a\x24\xfe\x0c\x52\x5d\xd3\x84\x50\xd3\x86\xd5\x7a\x57\x18\xdc\xea\xdd\x80\x26\xd3\xe9\x4d\x80\x4d\xc0\xdc\x04\x20\xbc\x20\x97\x70\x82\xfa\x92\x4c\x4d\xdd\xed\xc5\x3c\xf0\x27\x36\x3e\x01\xc7\x8e\xc2\x64\xbb\xca\x48\x17\x0b\xd2\xc5\xbc\xec\xaa\x5d\xdc\xe5\xca\xed\x09\x6b\x3a\xee\xd9\xc5\xd8\x66\x6b\x6f\xf7\xd6\x43\x0c\x0e\x49\xb7\xaf\x7d\xa7\x74\xd3\x2f\x6d\x23\x7e\xae\x02\x4c\x89\xc4\xa1\xf5\xe5\xd5\xa7\x77\xe3\x3e\x6d\x36\x71\xa8\x5c\xac\x84\x63\xe2\x0f\x69\x1a\x01\x29\x4a\xe0\x30\xc4\xbd\x31\x5e\x20\x94\x9c\x43\xdb\xb3\x04\xe5\x9d\xe3\x5c\x59\xa7\x24\x21\xbc\xe1\x61\x74\x49\x03\xff\x23\xfb\x81\x2e\x2e\x04\x3d\x7f\xc4\x4d\x7c\x8e\xdd\x2e\xae\x60\x09\x6f\xb7\x9b\x60\xe5\x1e\xd2\x5c\x4a\xd3\x81\x92\xb2\xd9\xbf\x5d\x57\x61\xa3\x71\xae\xae\xce\x24\xbc\x3d\x85\x02\x03\x0a\x1c\x77\x3e\x29\x2f\x5f\x49\x40\xf1\x9d\xad\x62\x07\x70\xd8\xbb\x7d\x28\x71\xc9\xe1\xed\xdb\x08\xfb\x2a\xe1\xc8\x89\xe4\x47\x73\x27\xbc\x44\x9b\xf1\x49\x38\x65\x03\xd1\xd6\xf5\x0c\x22\xc8\x90\xa7\x13\x5f\x3d\x7f\x94\x86\x30\x50\xa9\x49\x95\xa3\x78\xd6\xf6\xf9\x94\x2d\x9f\xcd\x20\x18\x00\xdb\xe7\x56\x4f\x9f\x1a\x05\x1e\x33\x6e\x67\x44\xb3\xe7\x60\x3b\x70\x4f\x89\x95\xfc\xec\xa4\xae\xe4\xdb\x54\x12\x87\x09\x5a\xa2\x7d\x15\xa9\xc6\x52\x1f\x3e\x45\xbf\xb5\x82\x74\x46\x43\x38\x9a\x7e\x8b\x46\xe3\x5b\x9d\x36\x5b\xb2\x89\x24\x2d\x46\x5c\x57\x26\xc3\xd1\xf4\x5b\x99\x8d\xe5\xd4\x2c\x06\x30\x0b\x5b\x38\x64\xda\x2b\x0f\x1b\xeb\x40\xcf\x43\x36\x1e\x8a\x61\x6f\x3c\x26\x1c\x79\x2a\x99\x1b\xb7\xa2\x67\x11\x9d\x7c\x60\x62\x13\x20\x70\x34\x1c\x8d\xd1\x06\x28\x32\x10\xd2\x9b\xd7\xb2\x8d\x81\x6a\x68\x38\x6e\x4f\x42\x3e\xa1\x42\x81\x83\x6d\xfb\x43\x3e\x4e\x01\x29\x38\xf8\x29\x52\x47\x5a\x29\x97\x95\xf2\x7c\xa5\xf2\x15\x0b\xe4\xa9\x64\x91\x24\x89\x72\x22\x77\xe3\xe0\xdb\x03\x3c\xe4\x0c\x24\x58\xa0\x2c\x62\x96\xf5\x90\xa6\x96\xd7\xfd\x3a\x2f\xc1\x6c\x10\x79\x50\xf6\x56\x44\xfe\x25\x74\x5c\x58\xbd\x19\x0e\xbe\x69\x8c\x55\xaf\x91\x9c\xa3\xa5\x74\x11\x10\x34\x40\x95\x38\x75\x28\x2c\xc3\x5a\xb3\x73\x8e\xc1\x0e\x40\xf6\x53\x02\x90\x3a\x56\xb8\xb8\xf0\x67\x02\x22\x4c\x49\xea\xe2\xa0\x3b\x10\x46\x03\x23\x00\x79\x1a\x1b\x7d\x2b\x82\x09\x21\x54\x87\x1f\xf1\xa5\xb6\xc8\xa1\x2f\x35\x10\x8a\x23\x29\x15\xb0\x2b\xf2\x23\x64\x9c\x3c\x6d\x3c\xe9\x18\x0d\x45\x2a\x71\xee\x85\x61\xc0\x28\x87\x1c\x35\x1a\xe5\x08\x91\xbc\xd1\xd8\xcd\x7b\xc7\xe2\x68\xa0\x2e\x7e\x67\x4b\x68\x28\x6a\x1c\x69\x09\x24\x39\x55\x81\xe3\x95\xab\x16\x03\x06\x5d\xd0\x05\x32\xb0\x57\x3b\xf7\xd4\x2e\x1b\x20\x43\x2d\xf3\x24\x94\xc3\xb1\x3a\x97\x5e\x62\xc8\xc6\x09\x42\x9e\x48\x20\x47\x9e\x82\x98\xab\xa3\x95\x15\xa4\x81\x90\x17\x25\xa2\xcd\x96\x22\xa2\x13\x41\x62\x2c\xda\x4a\x2f\x26\x01\xd6\x92\x86\x9f\xfb\xb3\x55\x61\x6b\x7b\x57\x0a\x0d\x4d\x87\x5a\x00\x29\x79\xab\xc4\x92\x7c\xaa\xa1\x4d\xd5\xc3\x46\x03\x6a\xbc\xb8\x4b\xfa\x54\x1c\xbb\x9d\xf9\x7c\xd1\x92\x3f\x33\x6f\x5c\x06\xf2\xc1\x90\x6a\x1f\x80\x60\x08\x70\x84\xc1\x18\x8c\x53\x7d\xdf\x73\xf3\x28\x8c\xd4\xe3\x98\xc8\x67\x8e\x19\xca\x0a\x7e\x4a\x98\xe4\xee\xce\xdb\x86\x75\xdd\x4e\x1b\xd5\x35\xd7\x49\x87\xad\xea\xac\xaa\x31\x71\x43\x96\x96\x02\x12\x2a\x3a\xd3\x63\x50\x24\xa1\x2c\xe0\xe6\x30\x1a\x67\x4e\x37\xa4\x2a\x8b\xac\xbf\x73\x75\x6c\x5c\x43\x63\x13\x77\x24\xe6\x84\x32\x49\xe4\x99\x20\x44\xd6\xa9\xf2\x30\xe5\xb9\xd0\x4c\x33\x75\x82\xc4\xca\x42\xd6\x68\x98\x35\x22\x97\xe3\x82\xad\x0e\xa1\xb4\x01\xec\x9b\xde\x36\x52\x4f\xec\x06\x88\x26\x20\xa0\x49\x61\x88\x35\x8b\xcc\xfc\x40\xb0\xa8\x92\x4b\xd2\x85\x47\x57\x16\x4c\xab\xf3\x00\x48\x2c\x13\xbc\x8a\x8a\x51\x0a\xcd\xa1\x8e\x38\x0a\xbc\x54\x28\x0e\x00\x1a\x76\xc7\xeb\x35\x00\xf8\xcf\x98\x45\x2b\x2f\x80\x72\xd6\x95\x10\x24\x09\xbe\x73\x67\x3b\x6d\xe0\xf0\x3b\xad\x0c\x1c\x69\x5d\x60\xbf\x27\x45\x24\x87\x87\x77\x10\x8e\x6d\x20\xcf\x40\x05\xf2\x8c\x51\x9b\xae\xd7\x31\x9e\xd4\xc7\xad\x72\xa8\x66\x8b\xc0\x55\x1b\x02\x4a\x65\x81\x79\xb4\x3a\x95\xaa\x19\xaf\xe6\x53\x2a\x58\x59\x23\x20\x59\x68\x26\x9c\x46\xb0\x2d\x46\x88\x14\x78\x08\x74\x86\x0e\x08\xc9\x6c\x31\x5a\x0a\x24\x99\x16\x33\xf4\xb3\x1b\x40\x1f\x73\xb4\x5e\xef\x06\x2a\x6e\xea\xa7\x22\x4f\x69\xc5\xd7\xf5\x91\x5a\x8e\x33\x45\xdb\xf7\x43\xbe\x88\x2f\x59\x84\xd5\x12\x26\xb7\x50\xc8\xc5\xac\xb2\x72\x4a\xb4\x73\x51\xd1\xb0\x4f\x44\x21\xde\x69\x9c\x4d\x5f\xfe\x20\x6c\xa7\x61\x48\x7d\x15\x94\x5f\xe3\x67\x42\x82\xb6\x3f\xc5\x0b\x12\xb8\x0e\x0e\xf1\x8c\xa4\x41\xcf\x6c\xfd\x53\x12\x58\x14\xcd\x49\x90\xc6\xbc\xc2\x17\x24\x68\x1b\xb7\x3a\xf8\x32\x6b\xf1\x62\x10\x7b\x17\x78\x45\xb8\xda\x96\x9d\xe4\x1c\xae\xa4\xf1\xd7\x6c\x44\xb7\x59\x82\xa7\x35\x31\x42\x57\x68\xbd\x86\x2b\x32\x5c\x8d\x51\xa5\x57\xd8\xf9\x60\x0e\x57\xc8\xbb\x1c\x14\x70\x6a\x88\x2d\xc4\xe9\x68\x4e\x11\x1c\x5e\x2a\xec\x8e\xf1\x0a\x21\x6f\xa5\x34\xe5\x42\xc0\xae\x53\x13\x97\xcd\x3a\x1c\x01\x3a\x42\x57\x21\x3a\xd7\x24\x49\xc6\xa8\xff\xff\x3a\x9d\x6f\x76\x16\x61\x1c\x4d\xd8\x13\x3a\x9f\xfb\xfc\xfc\xd5\xf3\xc7\xe4\x4e\x7b\x76\x74\x67\xd6\x63\xc7\x77\xda\x93\x8b\x98\x7f\x68\xbf\x57\x8e\x2f\xff\x7f\x00\x00\x00\xff\xff\x4a\xb6\xc2\x3b\x63\xcb\x03\x00") -// FileIdentifierStaticJs9A3e68deeChunkJsLICENSETxt is "identifier/static/js/9.a3e68dee.chunk.js.LICENSE.txt" -var FileIdentifierStaticJs9A3e68deeChunkJsLICENSETxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x53\xc1\x6e\xe3\x36\x14\xbc\xf3\x2b\xa6\x7b\x6a\x0d\xad\xd2\xa0\x40\x81\xde\xca\x48\x94\x45\x40\x26\x5d\x92\x8e\xb1\x47\x45\xa2\x62\x6e\x13\xd1\x20\xa9\x2e\xfc\xf7\x05\x65\xa7\xc8\x1e\x7a\xdb\xd3\xae\x2f\x96\x9e\xde\xcc\x9b\xf7\x30\x73\xb7\x21\xfe\xe9\xb3\x1d\xd2\xc7\x3e\x46\xf7\x3c\x93\x9f\x87\x5f\xa0\xdd\x3c\x06\x0b\xed\xc3\x69\x89\xe4\xcf\x17\x37\xd8\x39\x5a\xec\xb8\x21\x9b\x3b\x42\xee\x36\x3f\x61\xf3\x2d\x7f\xa4\xf2\xe7\x4b\x70\xcf\xa7\x84\x3c\x7e\xe7\x86\xe0\xa3\x9f\x12\x2a\x1f\xce\x3e\xf4\xc9\xf9\xb9\x24\x64\x6f\xc3\xab\x8b\xd1\xf9\x19\xc9\x63\x89\xb6\xc0\xe0\xcf\x97\x02\xaf\x7e\x74\xd3\xa5\x40\x3f\x8f\x77\x3e\x60\x74\x31\x05\xf7\xb4\x24\x8b\x74\x72\x11\x99\xea\x4b\x1f\x2c\x26\x1f\xd0\xcf\x17\x72\x5e\xc2\xd9\x47\x8b\x2f\x2e\x9d\xe0\xc3\xfa\xef\x97\x84\xc9\x5a\xb8\x88\x93\x0d\xf6\xe9\x82\xe7\xd0\xcf\xc9\x8e\x25\x21\xa6\x65\xd0\xb2\x31\x47\xaa\x18\xb8\xc6\x5e\xc9\x47\x5e\xb3\x1a\x1f\xa8\x06\xd7\x1f\x40\x45\x8d\xdc\x44\x0f\xa6\x95\x0a\x35\xd7\x55\x47\xf9\x4e\x83\x76\x1d\x8e\x54\x29\x2a\x0c\x67\x1a\x47\x6e\x5a\xa2\xd8\x96\xaa\x1a\x46\xc2\xb4\x5c\xbf\x23\x16\x55\x77\xa8\xb9\xd8\xae\x28\xbe\xdb\x77\x9c\xd5\xef\xd1\xb2\xc1\x8e\xa9\xaa\xa5\xc2\xd0\x07\xde\x71\xf3\x89\xe4\xc1\x0d\x37\x82\x69\x5d\x82\x0b\x08\x09\xf6\xc8\x84\x81\x6e\x33\xc9\x3b\x4d\x0f\x0c\x1d\xa7\x0f\x1d\x43\x23\x15\xa8\xf8\x04\xbd\x67\x15\xa7\x5d\x81\x9a\x2b\x56\x99\x82\x70\x71\x7b\x82\x54\xa8\xa4\xd0\xec\xaf\x03\x13\x86\xd3\x0e\x35\xdd\xd1\x6d\x96\x70\x85\xbe\xbd\x1e\x5b\x6a\xb4\x64\x8f\x4c\x41\x31\x7d\xe8\x4c\x56\xdf\x28\xb9\x23\x9d\xd4\xab\xe0\x83\x66\x05\x6a\x6a\x68\x86\xee\x95\x6c\xb8\xd1\x05\x8e\x2d\x33\x2d\x53\x59\x31\x15\xa0\x95\xe1\x52\xe4\xee\x4a\x0a\xa3\x68\x56\x20\xd8\xb6\xe3\x5b\x26\x2a\x06\xa9\x88\x5c\xbb\x8d\x54\x86\xcb\x83\xbe\x01\x0a\x50\xc5\x75\x9e\x28\x0f\x26\xa3\xe5\x4a\x58\x49\x21\xd8\x95\x31\x9f\x7b\xbd\xc1\x41\xaf\x34\x7b\xa6\x1a\xa9\x76\x74\x65\x6d\xbe\x3e\x7f\x49\xbe\xa9\xa5\x71\x0d\xca\x06\xff\xa5\x47\xd9\x7e\x48\xf8\xe7\xd7\xf2\xfe\x8f\xf2\x9e\x60\x83\x38\x9c\xec\xb8\xbc\xd8\x50\x9e\x83\x1f\x97\x61\x75\xf9\xab\x9b\xcb\xcf\x91\x60\x93\x3b\xbe\x8e\x45\xd3\x0f\xf6\xc9\xfb\xbf\x0b\xf0\x79\x28\xb3\xd9\xe1\x52\x44\x3f\x4d\xee\xc5\xf5\xc9\xc6\xf2\x06\x33\x57\xd3\x2f\x61\xb0\x18\xfc\xb8\x7a\xfa\xa6\x62\xc4\x32\x8f\x36\x20\x9d\xd6\x38\xbf\x95\x31\xf9\x25\xd3\xcd\xf9\x43\xa6\xe8\x78\xc5\x84\x66\x98\xdc\x8b\xbd\x95\x11\xbc\x4f\x18\x5d\xb0\x43\xf2\xe1\x02\x3f\xbd\xa5\x6b\x1d\x94\x82\xb5\x59\xc0\xff\xac\x7d\xff\x7b\x79\xff\xdb\x75\xef\x90\x2b\x1f\x47\xff\xfa\x43\xee\xed\xe2\x8f\xb8\xf6\x77\xb6\xf3\xbf\x01\x00\x00\xff\xff\x05\xba\xba\x11\x36\x07\x00\x00") +// FileIdentifierStaticJs9F59f1e79ChunkJsLICENSETxt is "identifier/static/js/9.f59f1e79.chunk.js.LICENSE.txt" +var FileIdentifierStaticJs9F59f1e79ChunkJsLICENSETxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x53\xc1\x6e\xe3\x36\x14\xbc\xf3\x2b\xa6\x7b\x6a\x0d\xad\xd2\xa0\x40\x81\xde\xca\x48\x94\x45\x40\x26\x5d\x92\x8e\xb1\x47\x45\xa2\x62\x6e\x13\xd1\x20\xa9\x2e\xfc\xf7\x05\x65\xa7\xc8\x1e\x7a\xdb\xd3\xae\x2f\x96\x9e\xde\xcc\x9b\xf7\x30\x73\xb7\x21\xfe\xe9\xb3\x1d\xd2\xc7\x3e\x46\xf7\x3c\x93\x9f\x87\x5f\xa0\xdd\x3c\x06\x0b\xed\xc3\x69\x89\xe4\xcf\x17\x37\xd8\x39\x5a\xec\xb8\x21\x9b\x3b\x42\xee\x36\x3f\x61\xf3\x2d\x7f\xa4\xf2\xe7\x4b\x70\xcf\xa7\x84\x3c\x7e\xe7\x86\xe0\xa3\x9f\x12\x2a\x1f\xce\x3e\xf4\xc9\xf9\xb9\x24\x64\x6f\xc3\xab\x8b\xd1\xf9\x19\xc9\x63\x89\xb6\xc0\xe0\xcf\x97\x02\xaf\x7e\x74\xd3\xa5\x40\x3f\x8f\x77\x3e\x60\x74\x31\x05\xf7\xb4\x24\x8b\x74\x72\x11\x99\xea\x4b\x1f\x2c\x26\x1f\xd0\xcf\x17\x72\x5e\xc2\xd9\x47\x8b\x2f\x2e\x9d\xe0\xc3\xfa\xef\x97\x84\xc9\x5a\xb8\x88\x93\x0d\xf6\xe9\x82\xe7\xd0\xcf\xc9\x8e\x25\x21\xa6\x65\xd0\xb2\x31\x47\xaa\x18\xb8\xc6\x5e\xc9\x47\x5e\xb3\x1a\x1f\xa8\x06\xd7\x1f\x40\x45\x8d\xdc\x44\x0f\xa6\x95\x0a\x35\xd7\x55\x47\xf9\x4e\x83\x76\x1d\x8e\x54\x29\x2a\x0c\x67\x1a\x47\x6e\x5a\xa2\xd8\x96\xaa\x1a\x46\xc2\xb4\x5c\xbf\x23\x16\x55\x77\xa8\xb9\xd8\xae\x28\xbe\xdb\x77\x9c\xd5\xef\xd1\xb2\xc1\x8e\xa9\xaa\xa5\xc2\xd0\x07\xde\x71\xf3\x89\xe4\xc1\x0d\x37\x82\x69\x5d\x82\x0b\x08\x09\xf6\xc8\x84\x81\x6e\x33\xc9\x3b\x4d\x0f\x0c\x1d\xa7\x0f\x1d\x43\x23\x15\xa8\xf8\x04\xbd\x67\x15\xa7\x5d\x81\x9a\x2b\x56\x99\x82\x70\x71\x7b\x82\x54\xa8\xa4\xd0\xec\xaf\x03\x13\x86\xd3\x0e\x35\xdd\xd1\x6d\x96\x70\x85\xbe\xbd\x1e\x5b\x6a\xb4\x64\x8f\x4c\x41\x31\x7d\xe8\x4c\x56\xdf\x28\xb9\x23\x9d\xd4\xab\xe0\x83\x66\x05\x6a\x6a\x68\x86\xee\x95\x6c\xb8\xd1\x05\x8e\x2d\x33\x2d\x53\x59\x31\x15\xa0\x95\xe1\x52\xe4\xee\x4a\x0a\xa3\x68\x56\x20\xd8\xb6\xe3\x5b\x26\x2a\x06\xa9\x88\x5c\xbb\x8d\x54\x86\xcb\x83\xbe\x01\x0a\x50\xc5\x75\x9e\x28\x0f\x26\xa3\xe5\x4a\x58\x49\x21\xd8\x95\x31\x9f\x7b\xbd\xc1\x41\xaf\x34\x7b\xa6\x1a\xa9\x76\x74\x65\x6d\xbe\x3e\x7f\x49\xbe\xa9\xa5\x71\x0d\xca\x06\xff\xa5\x47\xd9\x7e\x48\xf8\xe7\xd7\xf2\xfe\x8f\xf2\x9e\x60\x83\x38\x9c\xec\xb8\xbc\xd8\x50\x9e\x83\x1f\x97\x61\x75\xf9\xab\x9b\xcb\xcf\x91\x60\x93\x3b\xbe\x8e\x45\xd3\x0f\xf6\xc9\xfb\xbf\x0b\xf0\x79\x28\xb3\xd9\xe1\x52\x44\x3f\x4d\xee\xc5\xf5\xc9\xc6\xf2\x06\x33\x57\xd3\x2f\x61\xb0\x18\xfc\xb8\x7a\xfa\xa6\x62\xc4\x32\x8f\x36\x20\x9d\xd6\x38\xbf\x95\x31\xf9\x25\xd3\xcd\xf9\x43\xa6\xe8\x78\xc5\x84\x66\x98\xdc\x8b\xbd\x95\x11\xbc\x4f\x18\x5d\xb0\x43\xf2\xe1\x02\x3f\xbd\xa5\x6b\x1d\x94\x82\xb5\x59\xc0\xff\xac\x7d\xff\x7b\x79\xff\xdb\x75\xef\x90\x2b\x1f\x47\xff\xfa\x43\xee\xed\xe2\x8f\xb8\xf6\x77\xb6\xf3\xbf\x01\x00\x00\xff\xff\x05\xba\xba\x11\x36\x07\x00\x00") -// FileIdentifierStaticJs9A3e68deeChunkJsMap is "identifier/static/js/9.a3e68dee.chunk.js.map" -var FileIdentifierStaticJs9A3e68deeChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\x69\x77\xe2\xbe\xd2\x38\xf8\x5d\x72\xfa\x5d\xf3\xbb\xd9\xb7\x67\xde\xfc\x8d\x31\x84\x00\x81\x00\xd9\x7a\xce\x9c\x1c\x07\x04\x38\x18\xdb\xf1\x42\x20\xf3\xe5\xe7\xd4\x22\xa9\x0c\x24\xe9\xee\x7b\xef\x73\xe6\x45\x14\x5b\xd6\x52\x2a\x95\x6a\x53\x49\xfc\xbf\x7b\x4b\x95\x66\x41\x1c\xed\xfd\xcf\x71\x65\x2f\x8b\x8b\x74\xa4\xb2\xbd\xff\xf9\xbf\xf7\xfe\xf5\xaf\xfd\x7f\xfd\x6b\x3f\x8a\xc7\xea\x79\x11\x8f\x8b\x50\x65\xfb\xd9\xcc\x0f\xc3\xf8\xfd\x1f\xf5\x56\xf8\xe1\x7e\xfc\xf2\xaa\x46\x79\xb6\x1f\x44\x63\xb5\xfa\xd7\x6b\xb6\x57\xd9\x55\x67\xe2\x67\xf9\x3f\x0b\xb5\x88\x83\x0f\xb5\x9f\xa5\xa3\x6f\x8a\x07\x51\x1e\xfe\xb3\x50\x59\xe6\x4f\xd5\x24\x4e\x17\x7e\x5e\xfe\x9e\x67\x61\xf0\x42\xe9\xbf\x54\x76\xf6\x69\x3b\xff\x67\xe1\xe7\x2a\x0d\xfc\xf0\x9f\x22\xd8\xcf\xf2\x35\xe4\xa9\x6c\xb1\x5f\x64\x6a\x38\x53\x0b\xb5\x8f\xa9\x1b\x47\xb9\x5a\xe5\x7f\xdc\x0a\x56\xee\xa5\xf1\x32\x18\xab\x74\x3f\x52\x59\xae\xc6\x9f\x36\x92\x2a\x7f\x94\xef\x8f\x5e\xf9\xe9\x5f\x49\x1a\x8f\x8b\x51\x1e\xc4\xd1\xbf\x16\x41\xf4\x75\xb5\x7f\xc6\xf1\xc2\x56\x85\xb7\xdf\xad\x9e\x8d\x66\x0a\x9e\xd2\x6f\x10\x6e\xcb\x41\x37\xe6\xed\xcf\xa0\x0c\x63\x7f\xec\xbf\x84\x6a\x1f\x26\xe7\xeb\xfe\x92\x34\x4e\xfe\xc9\xd7\x09\x92\xc6\x28\x8f\xd3\xf5\x43\x90\xcf\x86\xb3\x34\x7e\x0f\xa2\xe9\x60\x16\x2c\xb2\xdf\xa9\x0b\x1d\xf5\xa1\xef\x5e\x1a\x27\x43\xc8\x1a\xa8\x51\xaa\x3e\x9f\x4a\x02\x34\xc8\x04\x36\x83\xec\x77\x47\x19\x44\x4b\x3f\x0d\xfc\x28\xdf\x7f\x49\xe3\xf7\x4c\xa5\x9f\xa3\x73\xbd\x78\x89\xc3\x7f\xe2\x97\x4c\xa5\x4b\x44\x89\xfa\x6e\x85\xbc\xab\x97\xc4\x1f\xcd\xf7\x5f\x8a\x20\x1c\x07\xd1\xfe\xcc\x4f\x17\x71\xb4\xfe\x87\xbe\x7f\x33\xa0\x54\x8d\x8b\xd5\x06\xd1\xbe\xf8\x2f\x2a\xdc\x4f\x8b\x28\x0f\x16\x6a\x7f\xa6\xc2\x44\xa5\x44\xb7\x41\x34\x53\x69\x90\x67\xed\x38\xce\x7e\xaf\x65\x95\xed\x17\x79\x10\x66\xfb\x06\xcf\xbf\x5b\x6d\x14\x2f\x92\x38\x52\x51\x8e\x75\x71\xa5\xfc\x47\xc7\xe2\x67\x99\x4a\xf3\xe1\x2c\xc8\x9a\x51\x90\x07\x7e\x18\x7c\x7c\xb7\x08\xff\xb0\x07\xb5\xca\x55\x34\xfe\xbd\x01\xff\x6e\x9b\xc4\x34\x81\xe4\xe3\x02\x69\x57\xa5\x79\xa0\xfe\x66\x42\x06\xc5\x4b\x36\x4a\x83\x04\x89\xf7\xcf\xe7\x64\x14\x47\x91\x1a\xe5\xce\x78\xe9\x47\xa3\xdf\x44\x9c\xe9\x9b\x05\x81\x07\x72\xe0\xf7\xfb\xc6\x0e\xf7\xdf\x53\x3f\xe9\xf8\xc9\x30\x86\xd1\xff\x01\x35\x51\xed\x85\x9f\xd4\x82\x2c\xf1\xf3\xd1\xec\xef\x5b\x18\xe4\x7e\xae\xfe\xb6\xba\x4a\xa7\xea\xaf\x6a\x66\x2a\x54\xc0\xf0\xea\xc4\xf6\xfe\xb4\x3a\xff\xff\xdd\x6a\xdf\x70\xfd\x5d\x6c\x2a\x89\xa3\xf5\x24\x08\x3f\x9f\xd1\x30\x1e\xfb\xd9\xec\x1f\x95\xed\x3f\x4f\x52\xa5\x1a\x61\xfc\xf2\xe5\xfc\x8f\x8b\xd5\x3f\xf9\xac\x88\xe6\xdf\x03\x44\x85\xc3\x78\x3a\x55\xe9\xfe\x38\xc8\xf2\x52\xce\xe7\xe3\xc8\xd3\x60\x94\xff\x53\xa4\xc1\x3f\x2a\x1a\xc5\x63\xf5\x4d\x37\x63\x05\x85\xb0\xbc\x59\x0b\xdf\x54\xf9\x3f\xa4\x86\xbc\x92\x6e\x82\x82\x07\xd4\x18\x95\xa6\xf1\xe7\x70\xed\x50\x63\x74\x45\x7a\xcd\x55\xfa\x39\x01\x7d\x51\xfb\xeb\x6e\x4b\xfa\xca\x28\x4e\xd5\xfe\x28\x0e\xe3\x34\xdb\x7f\x09\x0b\xd5\x48\xd5\xe7\x44\xf7\x69\xcd\xf4\x0b\xde\xb0\xc1\xe7\x36\x26\x74\xaa\x22\x95\xfa\x79\x9c\xfe\xa3\x0b\xf0\xff\xef\x24\xdb\x5f\x36\xfb\x9d\xe8\x97\xb3\x27\x18\x61\x10\x01\x47\x6e\x46\xf9\x77\x9c\x0c\x54\xb1\x6f\x48\x65\x0b\x89\xc0\xf2\x59\x6f\x1c\xa5\xca\xcf\x55\x35\x55\xfe\x3c\x89\x83\x28\xff\x7c\xfa\x7f\xa3\x99\x4e\xb0\x0a\xa2\x3f\x6d\x81\x67\x74\x14\x2f\x16\x5f\x88\x8c\x2f\xeb\x4e\xff\x8c\x86\x44\xcd\x20\x1a\x07\xd3\xf8\xef\xea\x26\x41\x34\xff\xbb\x9a\x5f\x52\xef\x57\x15\xe3\xd4\x8f\xa6\x5f\x90\xe8\x57\x75\x61\xb1\xfd\x35\x7a\xd5\x9f\xce\x4c\x89\x2e\x7a\x7e\xa8\xf2\xfc\x4f\x7b\x2f\x35\x31\x5c\x27\xf1\x34\xf5\x93\xd9\x9f\x4e\x34\xb7\x92\xcd\xfc\x71\xfc\xfe\x97\xd4\x9d\xcd\xfc\xe4\x37\xa1\xcf\xd6\x59\xae\x16\xbf\xaf\x2e\xa6\xa9\xbf\x6e\x07\x73\x35\x8c\x1d\x78\xfc\xaf\x74\x52\x44\x59\x91\x24\x71\x9a\xab\x71\x33\x57\x29\x08\xd6\xff\x66\x77\x59\x18\x8c\xd4\xf8\xbf\xd9\x03\x62\x0d\xb4\xd5\xab\x38\xfc\x42\xf5\xff\x77\xba\x08\xca\x88\x6a\x07\x8b\xe0\x77\x0d\xf2\x3f\xeb\x28\x8a\x23\x3d\x29\x7d\x95\xfd\x77\xfa\x00\xe3\x34\x9e\xfc\x51\xd3\x50\x0d\x95\xca\x3f\xae\xf5\xf2\xa7\xb2\x44\xd4\xcd\x12\x7f\x14\x44\xd3\xbf\x80\x14\x3d\x39\xff\x0e\x83\x19\xfc\x49\xd7\x9b\x4d\xe4\xa9\x1f\x65\x01\xd8\x3c\x7f\xc9\x61\x3e\x9a\xff\xae\x08\xef\x14\x01\xfa\x7f\x3e\x6d\x63\x9e\xc4\x09\x68\xbc\xa0\x5b\x07\x23\xf5\x10\xa7\xf3\x6f\xdd\x30\xba\x0e\x0b\x82\x79\x9c\xf8\x51\x5c\xfd\x4a\x90\xe8\x1a\x39\xba\xb3\xa8\x42\x3b\x98\xce\x3e\x27\xec\x72\x8d\xbf\xd2\x7a\xd1\xfc\xfb\xb6\x83\x76\xec\x8f\x83\x68\xaa\xff\xff\x46\x27\x6a\xb4\xf0\x4f\x0e\x8e\xfe\xf1\x5f\xb2\x3c\xf5\x47\xf9\x6f\x76\xf8\x85\xa2\x0c\x73\xf7\x6f\xfa\xf5\x4a\x6f\x7f\xef\x69\xd4\x0f\xbf\xd7\x02\x19\xd8\xd0\x00\x0d\xa8\x53\x04\x1e\xe8\xfc\x1d\x1a\xe5\x9f\x34\xf2\x9f\xf2\x73\xfc\x1b\x4d\xff\x09\x3f\xb4\x23\x1f\x2b\x95\x7c\xcd\x12\x37\x7d\x66\xd3\xaf\x4d\xd1\x5d\x73\xf4\x5f\xc1\xce\x16\xc7\x80\xe5\xdc\xf1\xa3\x20\x29\x42\xb0\x59\x3e\x6d\x65\x16\x07\x59\xfe\x4f\x14\x47\xff\x90\xb1\x91\xe5\x7e\x1e\x8c\x32\x32\x85\x3f\xf9\xf8\xaf\xd1\xeb\x77\x4e\x08\x5c\xbc\x7f\xe5\x40\xdf\x61\x34\x7d\xbd\x16\xc9\xcd\xfd\x47\x5c\xe5\xdf\x01\xec\x3b\x87\xc2\x36\x6b\xf8\x27\xf1\xd3\x4c\xa5\x66\x38\xf9\x97\xde\x4c\xe1\x6b\xfe\xba\x23\xf2\xe8\xfd\xe3\x67\x59\x30\x8d\xfe\xd8\x40\xfc\x5d\x2a\x1c\xab\x49\x10\x29\x76\x18\x7e\xa1\xeb\x95\x5b\x10\xd6\xf2\x7f\x0d\xb2\x3f\x5f\x1f\xff\xa6\xaf\xf4\x7f\xaf\xa7\xaf\xbd\xb2\xc2\x1b\x96\xc6\xf1\xe7\x62\x57\x94\x1b\xa0\xdb\xed\x77\x4a\x4e\x55\xde\xf7\xdf\x87\xfe\xe7\xc2\x53\x14\x26\xf0\x87\xf1\x20\x4f\xbf\x12\xb7\xa2\xc6\x8b\x9f\xa9\x86\xca\x7f\xb7\xfd\xa5\x4a\x9d\xf4\xb7\x8a\x4e\x15\xe0\x2f\x8f\x61\xe5\xfc\x46\xf9\x20\xeb\x22\xec\x60\x98\xfd\x56\xf1\x5e\xe8\x07\x11\xd5\xf9\xda\x97\xb8\x6f\xf5\xcd\xfc\x2b\x55\x40\xfa\xc6\x5f\x82\x48\xf5\xd5\xb8\x18\x7d\xe5\x9c\x33\x15\x5e\x82\x68\xec\xe0\xde\x91\x0b\xfd\xc4\xbf\x53\x07\xfd\x4e\x5f\x7a\xfa\xb9\xa0\x9f\x24\xe1\xba\x13\x8c\xc7\xa1\x7a\xf7\x7f\x07\xfc\xbf\x52\xe7\x16\xdf\x29\x15\xbb\xab\x45\xc5\xe2\xe5\x2b\x8d\x68\x77\xad\x54\x85\x7e\x1e\x2c\xd5\xf0\x2b\x5f\xdd\x27\x75\xc7\x7e\xfe\x57\xf5\x92\xb0\x48\xbf\xd2\x0b\x76\xd7\x0a\x83\xaf\xcc\xc3\x4f\x20\x0c\xb2\x24\xf4\xd7\x37\xfe\x5f\x3b\x22\x93\x6f\x35\xcd\xdd\x3d\x13\x95\x63\xb3\x7f\x21\x0d\xff\x4a\x06\x7f\x2f\x5c\xb3\xb9\x0a\x55\xfe\x85\x9b\xf1\xfb\x26\xe8\xf5\xdf\x68\x20\x82\xdc\xf0\x2b\x6b\xf5\xeb\x36\xbe\x5e\x52\x6f\x85\x4a\xd7\xff\x64\xc8\x72\xbf\xdd\xdc\xf8\x6a\xde\xc5\x22\xfc\x7f\x2a\x7b\x91\xbf\xa0\xf8\x0b\xaa\xbc\x57\xd9\x53\xab\x24\x4e\x73\x68\x3a\x7e\x79\x75\xe8\x5f\x75\xaf\xb2\xe7\xb7\xd4\x1a\x72\x89\x1b\xee\x55\xf6\xe6\xf4\xfe\xc2\xf9\xa1\x8a\x28\x9d\xe6\xb3\xbd\xca\x5e\x40\x25\xf6\x2a\x7b\x89\x66\xd0\x7b\x95\xbd\x99\x9f\x75\xdf\x23\xad\x57\xec\x55\xf6\x46\x7e\x18\xee\x55\xf6\x16\x71\xe4\x8f\x83\xd1\x5e\x65\x6f\x12\x61\xee\x68\x06\xc5\x33\x94\xaf\xc1\x87\x4a\x01\x80\x74\xba\x57\xd9\x5b\xfa\x61\xa1\x74\x91\x16\x76\x00\x83\x2b\x72\x35\xbe\xe7\x4f\x53\x05\xe0\xe5\xb3\x20\xc3\x26\x72\xac\x95\x06\xdc\x81\x9f\x4e\x21\x1f\xbd\x3f\xf0\x3d\x0c\x46\x8a\xb2\x8b\x05\x20\x08\x9e\x81\x1b\xc2\xff\x2c\x53\x8b\x17\xc4\xca\x88\x42\x37\xa0\x42\x9e\xfa\xb9\x9a\xae\x25\x78\x80\x86\x20\x1a\x8b\xaf\x35\x35\xf1\x8b\x10\xca\xc7\xb8\x65\x0a\xcd\xd2\xca\x29\x0d\xcb\x16\xbb\x1e\x74\x6f\xa8\x7e\x10\x4d\x83\xc9\xda\x60\xda\xaa\x09\x84\x45\x97\x71\x33\xf3\x33\x8d\x06\xdb\x0a\x77\x1f\xa8\x0c\x67\x12\x54\xa5\x01\x69\xef\x7b\x95\x3d\x80\xef\x85\x50\x62\x5a\xeb\x4e\xf6\x2a\x7b\xcf\xcf\x38\x47\xcf\xcf\x30\x5b\xf8\xce\x5a\x16\x3e\xd3\xe8\xb3\x3c\x2d\x46\x79\x9c\x62\x16\x69\x9f\x84\x21\x7a\xc0\xce\xf7\x2a\x7b\x11\x7e\xcf\x92\x54\xf9\x63\x44\x31\x64\x06\x30\xc5\x50\x73\x0e\x55\xf6\x2a\x7b\xaf\xf0\x07\x99\x32\x2c\x66\xaf\xb2\x87\x21\x16\x06\x53\x36\x7f\xe6\x67\xa4\xcb\xec\x55\xf6\xcc\xc3\x04\x81\xc1\xa6\xd5\x5b\x11\xa4\x80\x94\xb7\xbd\xca\x5e\x01\xf3\xbd\x57\xd9\x7b\xdf\xab\xec\xad\xf6\x2a\x7b\x80\xca\x0f\x98\xf1\xbd\xca\x1e\x10\x32\x7a\x00\x69\x24\x2e\xf4\x05\x98\xc2\xcd\xbc\xbb\x7e\xd3\xd5\xeb\x64\xaf\xb2\x57\x83\xb2\x59\x27\x2e\xa2\x5c\x8d\xb1\xd0\x5b\xa1\x0a\x55\x8f\xd3\x91\xba\x4b\xc6\x34\x95\x9c\xd9\x57\x49\xe8\x8f\x14\xee\xf4\xda\xdc\x81\xca\x75\x8e\xb7\x57\xd9\xab\xd3\x62\x48\x32\x04\x79\x02\xff\x0a\x6c\x07\x40\x69\xec\x55\xf6\xae\xb0\x47\x44\x82\x04\x24\x13\xcd\x80\x6d\x4e\x63\x17\x40\x34\xb1\x5e\xaf\x48\xd5\x56\xdd\x6b\x18\x61\x91\xa6\xf4\xd6\xda\xab\xec\xb5\xa9\x77\x9a\x27\x15\xf2\x03\x06\x62\xed\x55\xf6\x3a\x00\x3d\xac\x21\xe8\x04\xea\xce\x82\x70\x9c\xe2\xd2\x86\x55\xbd\x00\x32\x22\x6a\xeb\xf1\x48\x7e\xfc\x20\xab\x1b\x88\x80\x16\xf9\x73\xfc\x1e\xe1\x98\xba\x7b\x95\xbd\xde\x5e\x65\xef\x16\xa6\x16\x06\x1f\x27\xd8\x79\x46\xc4\x3a\x57\xeb\x5e\xaa\x26\x01\x4c\xd2\xa4\x88\x46\x48\x68\x05\x02\x3a\x80\xd2\x45\x06\x5d\xde\x03\x99\xec\x55\xf6\xee\x70\x90\x7a\xd9\x46\x44\x18\xe3\x38\x82\x1e\x5f\xe3\x20\xc2\x96\x71\x16\x60\x08\xd9\xc8\x47\x58\x72\xd6\x52\xf7\x2a\x7b\x0f\x40\x7c\x40\x7d\x8f\x7b\x95\x3d\x58\x6b\x4f\x7b\x95\xbd\x5f\xb0\x26\x7c\x4d\x7a\x2e\x61\x4a\x6f\xf9\xe3\x20\xe4\x87\x2a\xe4\xba\x71\x34\x09\xa0\xc1\xac\xc8\x12\x15\x65\x6a\xa3\x50\x97\x47\xdf\xcc\x06\xf1\x42\xf5\x55\x34\x56\xa9\x4a\x41\x75\x43\x30\x5c\x8b\xd1\x85\x9f\xd0\x5c\x7a\xfe\x68\x86\xc0\xea\xe1\xc5\x11\x32\x20\x39\x93\xf5\xd4\x9f\x2e\xe8\xb1\x97\xc6\x93\x20\xc4\x4e\x60\xd2\x65\xa9\x01\xee\x50\x77\xe2\x31\x40\x35\xb0\x00\x3e\x3f\x0f\x3c\xb7\xef\x0d\x9f\x9b\x37\x43\xaf\x7f\xe3\xb4\x07\xcf\xb5\xee\xf3\x4d\x77\xf8\x7c\x37\xf0\x9e\xbb\xfd\xe7\xa7\xee\xdd\xf3\x43\xb3\xdd\x7e\xae\x7a\xcf\xf5\x66\xdf\x03\xea\x1f\x85\x71\xa4\xbc\x50\x71\xb7\xcf\x23\x3f\x1c\x15\x21\xac\xcc\x99\x1f\x4d\xd5\xb8\x1a\x20\xbb\x7c\x66\x02\xd3\xfc\xb7\xf4\x7e\x04\x19\xf9\x0c\xf8\x81\xcb\x93\xab\x7d\x5c\x38\xc0\x28\x2b\x16\xf8\xf8\x6c\x59\x2c\x2d\x7f\xdb\x31\xbd\x73\x20\x83\x79\xef\x23\x11\x4f\xe2\xf4\xdd\x4f\xc7\xf4\x92\x22\xb2\x91\x50\xee\xfd\x30\x18\xdb\x26\x42\xff\x63\x8d\x9d\x30\x0b\xcb\x72\x3f\x2f\x10\x78\x43\x8e\x0b\xb5\x88\x59\x9a\xf8\xc8\x4c\x8a\x4c\xb9\x7e\x18\xbe\xf8\xa3\x39\xbf\x19\x08\x8b\x4c\xd5\xd4\x4b\x31\xd5\x43\x2e\x32\xe5\x4d\x26\x24\x17\x8b\x4c\x35\x17\x09\xf0\x98\x60\xa9\xae\xfc\x68\x1c\x72\x89\xb6\xbf\x8e\x8b\x5c\x96\xeb\x50\x97\x45\xa6\xed\x00\xfd\x32\xa1\x07\xbd\xec\x75\xcc\x24\x10\x86\x66\x01\x63\xa0\x5a\x05\xc9\xc4\x47\x16\x09\xc3\x46\xe6\xea\xe3\x78\x91\xbe\x60\xa5\x40\x12\xfb\x96\x0f\x0c\xfd\x94\x24\xe4\x1c\x32\x13\x48\xde\x20\x49\xb1\x05\xd0\x2c\x50\x28\x64\x3e\x89\x90\xd4\x1f\xe5\xde\x92\x25\xa3\x82\x07\x8c\xcb\x02\x72\xc5\xfa\x33\x3f\x53\xe3\xbe\x9a\x06\x28\x7b\x82\x38\xba\x41\x95\xa2\xb2\x57\x60\xa3\x1b\x1f\x50\x16\x03\x73\xf6\x91\x93\x24\x30\x61\xd1\x88\xe4\xd5\x0a\xf2\xd6\xf8\x35\x88\xc6\xf1\x3b\xae\xef\x51\xc1\x33\xf8\x01\x1f\x1c\x48\xaa\x90\xb8\x3e\x8a\x3b\x3f\x57\x37\x44\xec\x35\xc8\xf0\x20\xa9\x43\xd2\x80\xe4\x0a\x92\x26\x24\xd7\x90\xb4\x20\x69\x43\xd2\x81\xe4\x06\x92\x2e\x24\x3d\x48\x6e\x21\xf1\x47\x23\x95\xe4\x59\x35\x8e\x43\xe5\xa3\xd4\xf6\xf3\x3c\x0d\x5e\x8a\x5c\x31\xf8\xa5\xf7\x2c\x21\x7e\xb3\x28\xb2\xfc\x2e\x53\x42\xb1\x49\xf8\x91\x6b\x65\x7e\x14\xe4\xc1\x87\xba\xeb\x03\xff\xcd\x92\x30\x40\x1d\x25\x6e\xc7\xef\x2a\x75\x7d\x5c\xa3\x77\x00\xc0\xbd\x8f\xf9\x77\x49\x62\xf2\x57\x61\x10\xcd\xaf\x88\x67\x3f\x20\x03\x83\x64\x80\xd3\x95\xdd\xf8\xc0\xca\x86\x58\x4b\x65\x28\x44\x09\xef\x8b\x78\xa9\x1c\x0d\x2b\x49\x91\xcf\x5e\x6f\x80\xdd\x3e\x41\xb5\x5f\x90\xfc\x40\x44\x80\xa6\xf0\x02\xc9\x08\x92\x31\x24\x0a\x92\x09\x24\x53\x48\x66\x90\x04\x90\xbc\x42\x32\x87\x24\x84\x64\x01\x49\x04\x49\x82\x75\xad\xad\xb2\x47\x1a\x27\x90\xdc\x0b\x52\x10\x70\xc4\xe7\x31\x2c\x25\xcd\x36\xe9\x6d\xa0\x05\x12\x30\x3a\xae\x19\x06\x91\xba\x41\x5b\x10\x07\x98\x17\x29\x32\x7d\x54\x69\xb0\xc7\x78\xac\x8b\xae\xe0\xfd\x19\x75\xc5\x61\xea\x8f\xe6\x58\x65\xaa\x72\xa1\x7c\xd6\x14\xc5\xb3\xd1\x62\x2a\xf9\xbb\x48\xe3\x99\x04\xd3\x02\xb7\xef\x50\xa0\x03\x97\xe2\x97\xa9\x32\xac\x2e\x13\x8f\x79\x9c\x60\x5f\xc4\xe6\x73\x80\x60\x8d\xf8\x9b\xa9\xd1\x1c\x35\x88\x8f\x17\x2b\x3e\x5d\x93\xcb\x19\x86\x7b\xbe\xa7\x3e\x4c\xbe\x5e\xfb\x01\x85\x1b\xda\xf2\xce\x8b\xcd\xd5\x95\x80\x77\xa6\x71\x18\x62\x81\x2a\x14\x70\x21\xa9\x41\xe2\x41\x82\x22\xb9\x66\x57\x93\x3f\x02\xee\x64\xf9\x63\x03\x0a\xd5\x21\xb9\x22\x15\x31\x54\xa3\x5c\x82\x37\x10\x39\x41\x06\x98\x80\xc7\x26\x8e\x08\x84\x41\x1a\x17\x59\xb8\x1e\xa8\xbc\x19\x45\x2a\xbd\x1a\x76\x80\xce\xaf\xe1\x73\x0b\x92\x36\x4e\xb7\x5a\xe5\xc8\x43\xb1\xcb\x0e\x64\xdd\xbc\xa0\xa2\x0b\x6b\x10\x92\x5b\x48\x3a\x03\x27\x49\x90\xf9\xa8\xd1\x5d\x94\xf9\x13\xd5\x8e\x47\x7e\x58\x2f\x22\x74\x7f\x30\x0d\xe1\xd2\xbb\xeb\xa3\xee\x23\xba\xc4\x39\x47\x06\x36\x09\xd2\x2c\x47\x69\x6b\xd6\x83\x7e\x03\x04\x47\x63\xfd\xd6\x47\xc2\xf5\x6d\x61\x20\xa4\x21\xe9\x32\xf0\xa8\x91\x3c\x80\x72\x43\x48\xfc\x28\x58\x20\x4b\x53\xa8\xf4\x9b\x57\x52\x2d\x09\x46\x93\x99\xe5\x7e\x8a\x8b\xdd\xec\x25\x52\xad\x3b\x68\xe9\x1e\x92\x07\x44\x79\xbe\x46\xea\x32\xf5\x4a\x55\x60\xd5\x43\xa9\x27\x48\x7e\x41\xf2\x03\x01\x01\xa5\xe9\x05\x92\x07\xe5\xcf\x3b\xa8\x4f\x50\x3a\x82\xcc\x31\x1a\x3c\x61\xae\xd2\x88\x15\x53\x14\x3e\x43\x5c\x76\x6a\xc4\x42\x2f\xf8\x50\x63\x4d\x6d\x63\x35\x5b\x8f\xc1\x86\x00\x08\x27\x50\x62\x36\xd2\x6a\x20\x00\x19\xbc\x84\x44\xdf\x53\xc8\x0e\x48\x67\x8b\x46\x3e\x0c\xf0\x15\xde\xe6\x90\x84\x23\x5c\xc8\xac\x46\xb5\x83\x2c\x57\x91\x4a\x33\x99\xd9\x04\xbc\x44\x23\x64\xfc\x41\x06\x2b\xcf\x9f\xe2\xb0\x07\x79\x9c\x24\xd8\x7d\x90\xf5\x40\xee\x65\x4c\x2f\xa9\x0a\x15\x31\xc4\x05\x34\x8f\xfa\x62\xae\x65\x59\x96\x8e\x84\xbe\x10\xa7\xa9\xca\x92\x38\x1a\x07\xd1\xf4\x2e\x13\x64\x0e\x92\x3d\xca\x59\x62\xc4\xd0\x42\x02\xc9\x1b\xb6\x15\x27\x6d\xb5\x54\xa1\x9e\x79\x94\xdf\x28\xf9\x4c\x47\x00\x34\x4e\xd1\x48\x65\x79\x8c\x03\x4a\x47\x5a\x2c\x0e\x70\xdb\xba\x1e\xfa\x68\x5f\x66\x8c\x9a\xdc\x0f\x22\x95\x36\xa3\x09\x08\xfa\x1c\x32\x0b\x48\x96\x90\xbc\x43\xb2\x82\x64\x0d\xc9\x07\x24\x0e\x24\x55\x48\x5c\x48\x6a\x90\x78\x90\xd4\x21\x69\x40\x72\x05\x49\x13\x92\x16\x4e\x7f\x18\x03\x67\xe8\x46\xb2\x43\x58\x72\x48\x01\x2a\x54\x38\xb1\xb8\x71\xaf\xd2\x26\x20\xb6\x03\x5f\x6e\x20\xe9\x21\x40\x30\x15\x2f\xa1\x7a\x4e\x8b\x08\xac\xcd\x5e\x1a\xc4\x69\xc0\x52\xcc\x3c\x32\x5d\xc0\x22\x85\x4a\x7d\x48\x06\x90\x0c\x21\xc9\x66\xc1\x04\x50\x73\x57\x6a\x50\xc7\xf7\x4b\x35\x4a\x7f\xbb\x41\x77\x89\xe8\xeb\x1e\xc9\x18\x92\x27\x48\x7e\x41\xf2\x03\x09\x18\x0d\xd7\xe2\x85\x79\xce\xc8\x4f\xf2\x22\x25\x93\x0c\xf0\x2e\x9a\x78\xc1\xef\xc8\xa3\xc6\xb2\xaf\xbb\x4c\xa5\x55\x40\x53\x10\x4d\x45\x71\x22\x72\x48\xa6\x90\xcc\x90\xe8\x70\x41\x8f\xc7\x38\xf1\x9a\x72\x81\x47\x01\x24\xaf\xa5\xd5\xde\xd4\xab\x5d\x2b\xb6\x2f\x71\x3a\x56\x69\x73\xe1\x4f\x55\xb7\xc8\xc9\xf3\x20\xf2\x06\xec\x6a\x10\x59\x0f\xc1\x18\xbd\x25\x2f\xf1\xaa\x1e\xaa\x95\x7d\x6a\xa4\x71\x91\xd0\x6b\x37\x1d\x07\x91\x1f\xea\x9c\x51\x1c\x16\x0b\xd3\x25\xbd\x01\xc1\x4d\xa8\xfe\x84\x2a\xbf\xf3\x63\x2f\x06\xfe\xb1\x54\xfc\x3a\x98\xa5\x41\x34\xe7\x97\x1b\x35\xf5\xc5\xb7\x6e\x4a\xba\xf3\x34\x0d\xc6\x4e\x8a\x9a\x25\x3c\xf6\xb1\x2d\x7e\xf2\x90\x73\xf1\xcb\x20\xf1\x23\xf1\xc6\x6c\x0e\x5e\x5d\x84\xaa\xf4\x62\x6b\xd2\xbb\xa8\xcc\x19\x5c\x7f\x12\x47\xf9\x83\x0a\xa6\xb3\x9c\x45\xbe\x1b\xfa\x8b\x84\x9f\xaf\xf4\x87\x38\xf1\x47\x34\x89\x31\x83\x1d\xa7\xc9\x8c\x34\xb6\xdc\x7f\x19\x90\x53\xe6\x3d\x18\xc7\xef\x90\x45\x61\x18\xf0\x10\xc7\x0b\xd2\x2a\xc2\xae\x69\x62\x12\xc6\xf1\xd8\xbe\x82\x24\x97\x6f\x69\x3c\x57\x35\x3f\x9b\xf9\xda\x65\x64\x72\xe2\xc9\x84\x66\x99\xb2\x3a\xc0\xff\xc3\x60\x11\xd8\xac\xcd\x76\xf4\x84\xcf\x01\x1b\xc8\x52\xf3\x34\x00\x88\x16\x63\xe3\x99\x31\x3a\xc8\xcc\x4f\x1d\x6c\xaa\x78\xc9\xb4\x15\x8b\x68\x5c\xa8\xa8\x08\x72\xb5\x40\xbf\x15\xce\xd4\x0b\x71\xc6\x97\x94\x68\x02\x88\x7b\xf1\x82\xf4\x3d\x43\x7b\x68\x31\x45\x39\x99\x14\x6c\x78\x4f\xc9\x5b\x47\xc4\xb0\x50\xa4\xca\xfb\xa9\x0f\x4d\x1a\x67\x00\xe8\xfe\xf0\xfd\x1d\x9b\x8d\xa1\xb5\x84\x18\x33\xf0\x4c\x14\xab\x08\x35\x0e\x03\x17\x69\x3c\x06\xc0\x0b\x78\x5e\x6a\x49\x0a\x55\x35\x9e\xc0\x6c\x1f\x18\x19\xb2\x82\x22\x20\xb7\x9b\xf5\xd4\x5f\x48\x83\x8f\x94\x84\x07\x6d\x06\x84\xf1\x48\x8b\xc4\x19\xe9\xc1\xeb\xb1\x2d\xe6\x8d\x83\x9c\x55\xb3\x1a\x64\x7b\x90\xd4\x71\xa9\x16\x79\x5c\x8f\x47\x68\xe8\x35\xc6\x68\x06\xcf\xf2\x05\x60\xe7\x8a\xd1\x3d\x0c\x16\x2a\x46\xa4\x20\x67\x1c\x85\xca\x4f\x6d\xde\x35\xe4\xb5\x70\xdc\xa9\x5a\x06\x71\x91\x59\xe0\xc7\x3e\x22\xad\x8d\x0c\xd5\xc7\x49\x4d\xfd\x68\x8c\xe4\xd5\x81\xcc\x1b\x48\xba\x90\xf4\x20\xb9\x45\x55\x03\x92\x01\x24\x43\xd6\xa4\x92\x92\x4b\xe1\x0e\x81\x2c\x09\x9b\x7b\xc8\x7a\x80\xe4\x11\x92\x27\x48\x7e\x41\xf2\x03\x47\x88\xb3\x8e\x2a\x20\x7a\x82\x80\xc7\x4f\xc8\x26\x09\xb2\x9a\xf6\xd4\x20\x9f\x94\xda\x9c\xcc\x22\x4d\x5a\x2b\x39\x4a\x19\xbe\x1a\x93\x9b\x8d\xd4\x02\xe1\xff\x1b\xb3\x12\x0c\x05\x94\x46\x8e\x8a\x72\xe9\x86\x8c\x13\x21\xd2\x91\x69\x47\x23\x15\x56\x91\x89\x43\x0d\x12\xec\xa6\xab\x19\x93\x2f\x7e\xcf\x4c\x79\x9e\xd5\x3c\x58\x80\x29\x8c\x5c\xa0\x46\x32\x28\x42\xba\x08\xb2\x61\x5a\x64\xec\x9e\x43\x97\x25\x42\x06\x64\x82\x18\x40\xdf\x90\x42\x8a\x17\xc6\x24\x7b\x47\xb0\x69\x32\x49\x14\x7b\x4e\x70\x62\x27\x69\xbc\x70\x67\x7e\xea\x32\xed\x12\x86\x27\x71\xaa\x9a\xbc\x7e\x68\x5b\x0d\xf5\x32\x62\x6b\x22\x43\xb3\x31\x91\x65\xfc\x74\xa8\x57\xbc\x11\x3c\x6b\x6e\x3e\x25\xf4\xe6\x3e\x3a\x49\x33\xb2\xf6\x99\xe4\x11\xc2\xf7\x59\x40\xce\x21\x9c\xe4\x3c\x0d\xc9\xe9\xed\x87\x39\x3d\xc0\xe2\x65\x3f\xf8\xcc\x47\x07\x02\xd6\x22\xab\x20\x64\x57\x01\xe9\x76\x7e\xae\x00\x95\xc8\x1c\xa8\xbf\x45\x1c\x21\xe5\x46\xda\xac\x4a\xfc\x2c\x7b\x8f\x71\x59\x63\x48\x32\xc2\xe4\xa7\x0c\x41\xc8\x4a\x3c\xcf\x09\x74\x96\x86\xd8\x9b\x02\x3e\xb1\x82\x9c\xb5\x22\x50\xa8\x32\xb2\x61\x07\x92\x2a\x24\x2e\x2e\x52\xf4\x64\x42\x52\x87\xa4\xa1\x31\x30\x9a\x69\x6d\xeb\x0a\x69\x99\xad\x6d\x91\x7f\x0d\x59\x2d\x48\xda\xe8\xac\x44\x7b\x29\xc8\x70\x5e\xb0\xcc\x40\xc7\xc3\xc2\xfa\x43\x5c\x06\x0a\x08\xa5\x8b\x60\x20\x6d\xba\x64\x2a\x61\x75\x5c\xc1\x03\x56\x5d\x7a\x4c\xd6\x9d\x78\x1c\x4c\x02\x6b\x80\xdd\x92\x83\x0f\x4a\x42\x32\x44\x53\x1d\x92\x7b\xc4\xce\x28\x55\x2a\x7a\x34\x4f\x4f\xc8\x45\x02\x15\xe5\x8f\xe6\xe9\x09\x11\x3b\x55\x8f\xfc\xff\x49\x2b\x4c\x34\x6f\x2f\x45\x9e\xe3\x22\xa1\x07\x72\x0f\x87\xa0\x83\x1b\x57\x0d\xd0\xa4\x65\x8f\x79\x6c\x9f\xc1\xac\x59\x70\x6f\xfa\xf9\x09\xed\x01\x92\x7f\x38\xbd\x33\x2d\x36\x93\x54\x65\x59\x81\x34\x97\xc3\x0c\x45\x60\x44\xf6\x44\x66\x10\x62\x4b\xf0\x1f\x5a\xc9\xdf\x69\x95\xb2\xf6\xc8\xaa\x31\xe8\xeb\xc1\xc2\x47\x5f\xdc\x23\xae\xa2\xb8\xc8\x94\x17\x91\x27\x1b\x5f\xda\xca\x5f\x0a\xb5\x53\x7f\xe3\x57\xfd\xf5\x49\x09\xfb\x97\x66\x8a\x34\x74\xc3\xf9\x7f\x20\x11\x00\xc7\x7f\x41\x77\x34\x24\xe3\x89\xb1\x50\xd1\xa4\x01\xfc\x40\x32\x85\x64\x06\xc9\xeb\x84\x9c\x43\x69\x6e\x4a\x8a\xa5\x49\x6c\xc2\x64\x7b\x6c\xc3\x8d\x66\x71\xca\x96\xc1\x54\xb1\xbd\xab\x4d\x39\xf8\xd6\xd5\x42\x6c\x02\x12\x85\x4b\xe2\xb3\xf9\x32\x9f\xa0\x8b\x6e\xa0\x61\x43\xef\xba\xd1\x17\xd9\x37\xa1\x42\x3f\xc9\xd4\x78\x48\x0b\x28\xc9\x54\x31\x96\xf3\x39\x21\xb2\x49\x5e\x62\x3f\x1d\xd7\x48\xc8\x44\xd8\xee\x84\xd7\x38\x73\x8e\x04\xde\x3d\xb4\x33\x06\x60\x0b\xbf\xe0\xea\x6f\x2b\xd2\xc3\x81\x57\xf6\x79\xd6\x6b\xf1\x7b\x84\xeb\x0e\xa8\xfe\x01\x5d\xe5\x1d\x15\x15\xb0\x24\x12\xf4\xe1\x0f\x46\x69\x8c\xfb\x70\x9d\xf8\xa3\x97\x06\x11\x8a\x53\x22\xce\x37\xe8\xe5\x62\xaf\xb2\x77\xb9\x57\xd9\x3b\x3c\x82\xe4\x18\x92\x33\x48\xce\x21\x81\x8f\x87\xf0\xf5\xe8\x00\x12\xc8\x3b\x86\x72\xc7\x50\xee\xf8\x04\x92\x53\x48\xa0\xc6\x31\x7e\x85\x1a\xc7\x50\xe3\x04\x6a\x9c\xc0\xd7\x13\x6c\x8f\xda\xa7\x0e\x0e\x4f\x30\x3d\xc5\x94\xbe\x62\x77\xd4\xdf\x21\x81\x73\x80\xe9\x21\xa6\x58\xf7\x08\xeb\x9e\x60\x5d\x6c\xf8\xe8\x08\x9e\x53\xf2\x0e\x27\x0a\x0d\xd5\x6c\xc2\xf2\x7b\x08\xf6\xf5\x04\x29\x33\xc7\x0d\x8c\xb8\x18\xcd\xd8\xb7\x09\x2b\x6f\x68\xde\x89\xa1\x8d\x6d\x46\x01\xe5\x97\x13\x32\xb1\x72\xff\x11\x39\xb5\x52\x61\x4d\xbf\x61\xf6\x53\x29\xbb\xfc\xa6\xcb\xfc\xd2\x0f\x2c\x97\xde\xa1\xd1\x41\xb0\x48\x42\xb2\x3e\x7b\x61\x31\xc5\x39\xf3\xcc\xd2\x29\xe7\x93\x37\xbe\x9c\x47\x24\x58\xce\xab\x5a\x21\x56\xfe\xb0\x86\x1e\x3f\x20\x71\x20\xa9\x42\xe2\x4e\xec\xae\xa7\x76\xf8\x3e\x3f\xe3\xd6\x32\x2a\x19\x91\x1f\x76\xd8\x77\x70\x17\x2d\xfc\x6c\xae\xc8\x9f\x62\x7d\xe4\x9f\x94\xee\xec\x2a\x3b\x12\xaf\xba\xb7\x1a\xd2\x37\x24\xf5\x09\xad\xc9\x8d\x4a\x8d\xc9\x17\xbd\xa8\x74\xba\xd5\xcb\x15\x54\x68\x42\x72\x0d\x49\x6b\x22\x6d\x44\xd2\x38\x84\xa5\xda\x2e\x7d\x4e\xd5\x5b\xa1\xb2\xbc\xe7\x07\xe4\xbc\x2a\x7d\x24\x6d\xe4\xa6\x94\x07\xf0\x92\xc3\x5d\x5b\x9c\xe8\x5d\x00\x61\x54\x2a\xd7\x5c\x2c\xd4\x38\xf0\x73\x25\x0c\xd3\x1e\x94\xb8\x85\xa4\x5f\x2a\xdb\x8e\xdf\x45\xa9\x41\xb9\x9d\x71\x28\x9b\x18\xc2\xc7\xbb\x52\x89\x6c\x16\x17\xe1\xf8\x29\x50\x68\x77\xdc\xa3\x3b\x19\x92\x47\x48\x9e\x20\xf9\x05\xc9\x0f\x64\x5a\xa0\x09\xbd\x40\x32\x42\x65\x17\x1d\x46\xa8\x1d\xa1\xf3\x07\x92\x19\x9a\x14\x90\xbc\x42\x32\x87\x24\x84\x04\x6d\x0d\x54\xa5\x62\x48\x92\xa9\x9e\x60\x6f\x95\x04\x64\x31\x33\xf3\x7b\x9b\x1a\x3f\x9d\x99\x24\xb5\x59\x08\xb7\xfd\x33\x6c\x0e\xcf\x8f\x9a\x7d\x27\xf6\xf1\x90\x63\x29\x87\x02\xc5\xd4\xec\xa9\xde\x16\x0a\x15\x21\x30\x8c\xb4\x24\x87\x67\x9d\x0f\xe6\x1c\x29\xaf\x0a\xdd\x44\xc6\x39\x06\x8d\x2d\xe1\xf5\x5d\xee\xf1\x19\x0d\x3d\xf1\xd7\x61\xec\x8f\x39\x74\x81\x49\x65\x05\x5f\xd6\x90\x7c\xe0\x60\x71\xab\x02\x9e\xaa\xb8\xe3\x07\x49\x0d\x12\x0f\x92\x3a\x24\xd7\x53\xda\x7b\x12\xa4\x5b\x0f\x48\x05\x6b\xc0\xa7\x2b\x48\x9a\x90\xb4\x10\x0c\x9c\x3a\xb3\xd1\x67\x34\xca\xf6\xb4\xbc\x4a\xf5\x9e\x08\x50\xe8\x54\x6b\xa1\x11\x0a\xd4\x30\xec\xab\x91\x0a\x96\x4a\x6f\xdc\xde\xdd\x0c\x9c\xba\xf7\xfc\x55\x91\x9b\x29\x2d\xbc\x9a\x4a\x83\x25\x3b\x09\xeb\x69\xbc\xd0\xdf\x41\x4e\x46\x7e\x92\xcd\xe2\x9c\x98\x8b\x01\x6c\x57\xe3\x1d\xe3\xb3\xf8\x2a\xb3\x16\x8c\x75\x5e\x17\xba\xef\x4d\x69\xbf\x0e\xb4\x73\xda\x18\xbb\x85\x9c\xfe\x94\x9d\xb6\x66\x3f\x0d\x6c\x4b\xf3\x82\x44\x65\xde\x02\xb6\xfe\x07\x50\x69\x88\x34\x4a\xbc\x56\x91\xdc\x65\xd4\xdd\x21\x45\x03\xe3\x85\x4c\x6d\xba\xdc\xe3\xe6\x31\x24\x8f\x90\x3c\x41\xf2\x0b\x92\x1f\x90\xf8\xe8\xbe\x99\x21\x89\xc3\x42\x99\x09\x43\x43\x68\x6c\xfe\x54\x4b\x7f\x28\x30\x81\x64\x8a\x9a\xd9\x4c\x38\x61\x7b\x26\x38\x60\xa9\xfc\x50\xfb\x63\x82\x99\xa4\x75\x58\x6e\xe8\x40\x80\x24\xc4\xda\xa8\xc0\x43\x12\xcf\x70\x43\x0e\x16\x16\xd6\x99\x21\xe5\x60\x2c\x0c\xe4\x31\xe5\x17\xf0\xb2\x9c\xa1\x2c\x62\x1c\xf2\x26\xf5\xd8\xee\x42\xfa\x5a\xf7\x51\xfe\x54\xa5\x36\x1f\x5f\xf5\x7a\x92\x55\x8d\x03\x99\x4d\x5a\x58\x15\x90\xac\x21\xf9\x80\xc4\x99\x69\x43\x32\x5e\xd3\xe6\x1f\x8c\xb5\x3a\x43\x09\x06\x2b\x04\x12\x0f\x92\x3a\x24\x0d\x48\xae\x20\x69\x42\x72\x0d\x49\x0b\x92\x36\x24\x1d\x48\x6e\x08\x33\xfe\xb8\xb4\x31\xdb\x17\xa8\xc2\x7d\xda\x89\x4a\x53\x1b\x1d\x54\x64\x6a\x28\xdd\xea\x5d\x68\xa4\x07\xc9\x2d\x24\xfd\x19\x9a\x04\x18\x9b\x62\xb9\x83\x59\x33\x18\x91\x00\xc9\x03\x24\x8f\x90\x3c\x41\xf2\x0b\x92\x1f\x90\xf8\x01\x46\x03\x01\x41\x04\x88\x0f\xc0\x5a\x80\x24\xf9\xc9\xba\x30\x8b\xe6\x9b\xdc\x5a\x30\x36\x99\xd3\x60\xf7\xca\xd4\xbb\xc3\xb3\xc0\x02\x6f\xb1\x13\x61\x2e\x24\x6f\x90\x04\x01\x99\xff\xe9\x9a\x59\xed\x2b\xc2\xb9\xc3\x59\xeb\x2f\xe3\x60\x3c\x9c\x05\x59\xdd\x7e\x9c\x07\xe8\x41\x42\x7b\xa0\xea\x8f\xe6\xef\x7e\x3a\xce\xcc\x26\x3c\xb1\x54\xf3\x8c\xba\x37\xf7\x02\x64\x83\x6b\x02\x4d\x50\xf8\x67\x05\x03\x67\xb0\x2a\xb4\x40\x00\x03\xdc\x78\xc0\x4d\xe3\xac\x53\x84\x79\x90\x90\xe9\x6e\x1f\xe3\xc8\x0d\x03\x04\x2a\x8e\x46\xfc\x94\x91\x0b\xb0\x14\x4b\x80\x1b\x9d\x7c\xee\x54\xad\xf4\x3e\x40\x0e\x6d\x17\x01\x5a\x8b\x68\x34\x01\xed\x42\xb2\x86\xe4\x03\x12\x27\x20\xce\x8a\x2d\x57\x03\xde\x6f\x19\xa0\xd2\x4f\xa9\x1b\x70\x9c\x54\x4c\x1b\x86\x3c\x0f\x75\xc8\xf6\x20\x69\x04\xdb\xda\xca\x27\xcc\xf3\x0a\x8a\x36\x21\xb9\x0e\xb4\x8d\x01\xd4\x0f\x2f\xed\x60\x8b\x50\xa2\x05\xf3\xcb\x1a\x7c\xeb\x40\x72\x03\x49\x17\x92\x1e\x24\xb7\x38\x4b\xbc\xe3\x42\x8f\x2a\xe5\x5e\x8d\x1c\xea\xc7\x31\x8a\x61\xbd\x7f\xd0\x0f\x50\x0f\x85\x95\x10\xd8\x5d\x5c\xa0\x61\x78\xbd\x0f\xc8\x4f\x8e\xdc\x05\x9d\x89\x0f\x90\xf3\x18\x58\xae\x0a\x6b\x03\x5e\x7f\x41\xf2\x23\xd8\x20\x65\x97\xb9\x84\xff\x2a\x3f\x0c\x18\xc7\x7d\xc8\x7d\xc1\x4f\x0a\xc9\x64\x04\xcf\x63\x48\xe6\x90\x84\x90\x2c\x20\x89\x20\x89\x21\x79\x83\x24\x85\x24\x83\x24\x87\xa4\x80\x64\x09\xc9\xfb\x2b\x7b\x2d\xe2\x22\xef\x60\xb8\x01\x64\xac\x21\xf9\x78\xd5\xb2\x04\xe8\xd0\x98\x66\xce\xab\x16\x24\x3d\x5a\x48\x82\x7e\x7b\x01\x9a\x03\x01\xfb\x8f\x56\x79\x2b\x8a\xdf\x23\x2e\xa7\x15\x3d\xad\x21\x6c\xe9\x3d\xfa\x83\xd0\xd7\x74\x16\xd3\x64\x55\x40\x0b\xd4\x05\xaf\x35\x48\x3c\x48\xea\x90\x34\x20\xb9\x22\x18\xa3\x20\x9b\xa9\xf1\x43\x9c\xce\xc5\xeb\x56\xb7\x00\x38\xc5\x04\x8d\x0d\xec\x4d\xd1\x91\x09\x56\xb9\x46\xec\x17\xd9\xba\x13\x44\xb5\x82\xda\x40\x9c\x41\x5e\x4d\x85\xfe\x1a\xdf\x5a\x50\xac\x03\xc9\xcd\x2b\x32\x96\x68\xaa\xa3\x13\xbb\x88\x7c\xdc\xd7\x85\xa7\x47\xb0\x52\x6f\xe1\x69\x60\x90\xba\x09\x09\xfa\x9b\xf4\xbe\xc6\xfb\xcb\xe6\x26\x75\x0d\x3d\x44\xb4\x65\x03\x0b\x42\x61\x74\x8f\x34\xe4\xfb\xec\x73\x1a\xe2\x74\x8f\xed\x76\x58\x66\xc3\x7a\xf4\x16\x78\x2f\x36\x02\x60\x81\x36\x10\xc7\x14\x19\x9f\x57\xae\xbd\x05\x1c\x49\x11\x86\xf8\x2d\x23\xaa\x17\xe5\xc8\x7d\x10\x92\xd9\x9d\xa1\x21\xcd\x36\x78\x8e\xe1\x6e\x94\x35\xc4\xe7\x25\x8c\xea\x0e\xc0\xbb\x87\xe4\xe1\x15\x39\xf5\x78\x8c\xeb\x67\x6c\x43\x46\xa1\xd8\xe3\xab\x64\xc0\x1b\xaa\xef\xaf\x57\xc1\xde\x6d\x40\x99\x0f\xd3\xff\x02\x09\x2e\xa2\x31\x24\xe8\x99\x9b\x40\x72\x8d\xbb\xb2\x01\xf3\x1e\x58\xee\x20\x43\xe0\x4b\x30\xa7\x20\x4b\x19\x20\x32\x83\xbc\x57\x64\xf4\x24\x0a\x34\x97\xc1\x48\xe4\x01\xdf\x2e\xe3\x84\x1c\x8a\x09\x33\xd1\xc6\x75\x04\xa5\x4d\xc0\xd0\x24\x88\xc6\xa8\xd8\x56\xd7\x57\x71\x96\x37\x2d\x0f\x7a\x7e\xee\x7b\x8e\x3b\x7c\xae\x79\xf7\xc3\x6e\xb7\x3d\x78\x6e\xb4\xbb\x55\xa7\xfd\x7c\xd5\xed\xb6\x30\xe8\x34\xc8\x6a\x36\xd0\x80\x0f\xba\x67\x5a\x49\xa6\x6b\x34\x88\xf5\xc7\x8b\x45\x90\xe3\x07\x1e\x53\x29\xcf\xb2\xc7\x27\xe4\x14\x4b\x95\xa6\xc1\x58\x5d\xc5\xf1\x5c\xeb\x2c\x3a\x4f\x4b\x79\x98\x7d\xd6\xfb\x69\x49\xa4\x38\x8f\xb4\x97\x69\xe5\xf2\x66\xb0\x20\x07\xa4\x05\xd1\x58\x0e\xb5\xba\xd6\x30\x6f\x7e\xc9\xea\x31\xd4\x49\x15\xea\x68\xba\xfd\x1d\x39\x34\xaa\x4c\xe5\xfc\xcd\x02\x65\x8d\x4c\xdd\xc9\x4b\x01\xdf\x58\xa1\x4d\x39\xf8\xb0\xe7\x8f\xe6\xfe\x54\x07\xc7\xf0\xdd\x0d\x71\x9a\xfb\x21\x83\x55\xeb\x76\xb4\x43\x2b\x2c\xb2\xd9\x60\x1d\x8d\xec\x9c\x1b\xb3\xc3\xd1\x12\xd3\x90\xe5\x0b\x8e\x9c\xd5\x92\xac\x64\x4e\x97\x3b\x11\x76\x34\x80\x34\x28\x5e\xf2\x54\xa9\x66\x94\xc7\x52\xe4\xf0\xa9\x53\x77\xe6\x47\x91\x2a\x55\xc3\x80\x57\xdc\x25\xea\x6b\x5f\x7a\x8a\x21\xf4\x44\x4c\x64\xbc\x3b\xda\xd3\x86\x05\x39\x30\x58\x65\xf9\x56\xfe\x24\x8c\x63\x72\x47\xa6\xf9\x11\xff\x3f\x44\xc2\xe1\xe8\x78\xcc\xcb\xf2\x8e\x79\xcb\xe2\x34\xd7\x7b\x88\x99\xd0\x65\x92\x0d\xdb\xde\x00\x4c\x31\x9a\xa4\x05\x59\xa4\xc4\x51\x1e\x44\x85\xf2\x56\x6a\x54\x30\xfb\x91\x0e\x83\x3a\x9a\xc2\x65\x49\x60\x9d\x0c\xac\xe1\xea\xf7\xc4\x2f\xb2\x52\x4b\x63\x45\xf2\xd9\x94\x78\x4f\xfd\x44\x38\x34\x9e\x4d\xa0\x6e\x8c\x92\xf5\x79\x14\xfa\x59\x06\x05\x30\xb8\x88\xc3\x31\xed\x3e\x0f\x10\x91\xd6\x27\x9f\x93\x38\xcb\x82\x97\x50\x89\x22\x7d\x1d\x82\xc5\x61\xc4\x7d\xd0\xb4\x55\x34\xb2\x95\xf4\x05\x70\xb4\x87\xe9\x42\x77\xb4\x96\x55\xaa\x5f\xde\x53\xb3\x79\x67\xee\x7c\x03\xd9\xdb\x6e\x3f\x37\x6f\x9a\xc3\xa6\xd3\x6e\xfe\xf2\xfa\xa0\xb7\xf5\x3d\xa7\xf6\xb4\x99\xc9\xb6\x38\xfc\x23\x07\x73\x1a\x2f\x82\x4c\x71\x16\xa1\x1f\x3f\x92\xc5\x4e\x2a\x87\x4a\x53\xce\xa6\x58\x19\xae\xc4\x3e\x05\x82\x84\x5b\xa1\xe3\x09\xcf\xcf\x2a\xeb\xe8\x03\x12\x44\xd9\x6d\xbe\x83\x50\x06\xdf\x42\x8b\xf5\xc8\x60\x16\x51\xae\x70\xd7\x2a\x4e\x10\x09\x7c\x8e\x98\xec\xcf\x82\x76\xba\x82\x08\xb7\x8b\x69\xe3\xa1\x08\x55\x93\xc3\xee\xb9\xac\x3e\xd5\x81\x2c\x51\x2d\x15\x3a\xdd\x17\x5c\x12\x0a\x62\xe8\xf1\x0f\x09\xc6\x2e\xd0\x9e\xf9\x38\x04\x6a\xfb\x2c\xf1\xc7\x5d\xd4\x2d\x9e\x11\x11\x7a\x74\x89\x9f\xe5\x35\x26\xa4\x24\x55\x8c\xdf\xe7\x85\x09\x83\xc7\x96\x8e\x78\xb4\x3c\x73\x04\xcf\x8d\x5e\x74\xb0\x9c\x28\x92\x8f\xda\x79\xb6\x8a\x4c\xa1\xb9\xe7\xb3\xdc\x6a\xa5\x20\xa0\xb6\x99\x31\xbc\x97\x85\x83\xe1\x31\xb4\x7f\x2c\x86\x85\xc1\x9f\x18\x02\xb2\x63\xf8\x47\x9a\x85\xd9\x5b\xfa\xd2\xcc\xc6\xcb\xe9\xd7\x44\x90\x1a\x8f\x92\x24\x59\xaa\xb2\x38\x5c\xd2\x30\x58\xc2\xf0\xf7\xbe\xf2\x71\x73\x7b\xd7\x35\x90\xb8\xa3\x96\xe4\x6b\x11\xa2\x56\x7a\x7f\x08\xf2\x59\x5f\xd1\x1e\x41\x0a\xff\x1f\xfc\x34\x12\xda\x52\x36\xc3\x18\x00\x80\x4a\xf3\x68\x3d\x20\x7e\x87\x4f\xf5\x22\x0c\x75\x38\xa9\xee\x76\xaa\xf2\x01\x55\x2e\xc3\x85\x91\x01\x14\xae\xf0\x42\xfb\xb8\xb1\x3e\xb7\x63\x42\x09\x32\x7d\x92\xc2\x8f\xd6\xba\x3c\xfa\x26\xb5\xa5\xd0\x9d\x98\x7a\xf4\x18\x29\xfb\x9f\x45\x8c\x5a\xf1\x91\x0d\x60\x21\xa5\x15\x9c\xad\xa3\x11\xdb\x71\x6e\x1c\xb1\xb4\xb4\x19\x1c\x0c\xa8\xc3\xbf\x39\x47\xc4\x86\x5b\xef\x49\x5d\xc6\x78\xb7\x29\x92\x9b\x43\xa7\x8d\x80\x09\x32\xd9\x61\x90\x6d\x75\x89\x59\x1b\x9d\x9a\x3c\xd1\x6d\x90\xd9\x8e\x83\xac\xd4\x75\x90\x89\x20\xfc\x20\x63\x48\x82\x8c\x61\x09\x32\x01\x8d\x88\xd1\x0f\xb2\x52\x54\x7e\x90\x89\xb8\xfc\x72\xa0\x3a\xe3\xd4\x1c\xcc\x19\xc5\xd1\x58\xab\xa9\x74\x60\x0c\xd9\x3b\x45\xab\x8e\xe9\xd4\x92\x96\x4a\x13\x90\x6d\xd9\x30\xee\xd1\x21\x0b\xd6\xee\xf0\xa2\x02\x94\x66\x74\xd9\x1e\x06\xca\x04\xd3\x20\xf2\x43\xb3\xe4\x99\xd3\xf4\xe2\x50\x17\x79\x2e\xdd\xdc\xc9\x11\x28\xfa\xf6\xc7\x01\x2f\xce\x3c\x5d\xf3\xa5\x90\x2f\xfc\x7a\x17\x65\x22\x23\x8a\xf3\x60\xb2\xbe\xc1\xdb\x6a\xa1\x20\x0f\x9d\x0b\xd0\x61\xa9\x38\x55\xba\x39\x59\x75\x6a\x4f\xbc\xb0\x1e\x61\xe7\x07\x2b\xd1\xde\xd4\xb3\xce\xfe\x21\xf6\x0f\x36\xa0\xe5\x92\x25\x5e\x88\xa7\x9d\x74\x53\x64\xff\xe2\x56\xc2\xce\x3b\x3e\xe1\x83\x38\x0e\xf5\xd5\xd9\x6d\x5c\x0e\xa3\xb0\x20\x69\x43\x61\x34\x7c\x3a\x2e\x2a\xc2\x50\xc6\x41\x12\x72\xf0\x8c\x86\x85\xd5\x6c\x7f\x0e\xd0\x72\xc2\x1d\x4b\x7d\xd8\x82\xe4\xba\xc0\x51\x28\x5a\xf3\xc7\x63\x83\x67\xf1\x09\xec\x48\x0a\x64\xd7\xa1\x2d\x1c\x7b\x3e\x12\x72\x8c\xcb\xba\x71\x68\x37\x3c\x13\x3c\x96\xc3\xb1\xb7\xc1\x44\x8d\xd6\xa3\x50\x75\x54\x3e\x8b\x11\x09\xb3\x38\xef\x2b\x96\xaf\xf7\xe6\x68\xc2\xb8\x58\x2c\xd6\x7a\xda\xa2\x38\xa6\x60\xb5\xd2\xb5\x9f\xc6\x5a\x33\xd7\x52\x8a\x83\x1f\x66\x97\x69\xd7\x66\x10\x4c\xd1\x91\xfe\xff\x63\xaa\x50\xed\xb6\x41\xe5\x5b\x19\x54\x6e\x81\x20\x73\x56\xe9\x85\xbe\x93\x32\x8a\x36\x27\x4c\xa5\xd1\x98\x65\x0e\x95\x24\x07\x3c\x29\xde\x03\xdc\xbb\xdb\xc8\xd1\xf3\x94\xd9\x2a\x82\x50\x31\xe3\x1d\xa5\xc0\x04\x5d\x4c\xfa\x89\x11\xd4\x35\x87\x04\x1f\x30\xfa\x7b\x2c\xe9\xd5\x5c\x07\x8c\xea\x52\xf9\xb3\x91\x07\x25\xac\xda\xe6\x5c\x6a\xbf\x3c\x32\x7d\x0e\x8d\x19\x12\xc8\x23\x6a\xb6\x29\x5d\x44\x41\xae\x8d\x3c\xfd\x5a\x26\x55\x18\xd4\xf1\xc6\x6a\x13\xa0\x40\x97\x45\xc4\xde\x11\xb1\x61\xb0\xdd\xd5\xfb\x56\x0e\x2d\x1d\xd1\xfd\xc2\x9f\x9b\x57\x44\xf6\xa4\x08\x77\xb0\x98\x6e\xe4\xee\x72\x96\xfa\xe3\xb1\xb7\xca\x53\x5f\x43\x01\xe8\xc7\x0c\x22\xe6\x20\xcb\xed\x21\x49\x3a\xa1\x4a\x3a\x88\xb9\x74\x96\x4f\xbb\x3a\xfc\xbf\xca\x40\xdb\x7b\x65\x51\x2b\xa6\x19\x02\x93\xcc\xbe\x8d\xb6\x1f\xc5\xb0\xe8\x00\x4c\xd6\x8d\xf8\x5c\x42\xa6\x9d\xba\xdb\xd9\x0b\xd3\xd7\x56\xe7\x75\x3a\x3b\x97\xa4\xf1\x6a\xad\x37\x80\xba\x69\xcd\x3a\xe2\xe3\x52\x33\x1b\x17\xda\xf2\xd9\xd5\xf2\xd5\x02\x54\x52\x5e\x5c\x6b\x1d\x14\x1d\x73\x25\xad\xee\xcc\x14\xe0\x96\x4d\x67\xb2\x24\xbe\x98\x2d\x8e\x84\xd4\x37\x3f\x55\x1d\x9b\xaf\x71\x3d\xf3\xb3\x7e\x11\x75\x89\x16\x80\x7c\x3a\xa5\xba\x38\x7a\xd3\x34\x8f\x3e\x58\x40\x93\x75\x10\x6c\x98\x3d\xd8\xe2\x33\xdf\x7d\xf7\x53\x5a\xc7\x06\x0c\x3f\x55\x7a\x02\x44\xd6\xc0\x8c\xb8\x0c\xae\x93\xb7\x95\x9f\xe5\x0c\xf5\x8c\xf8\x42\xf1\x92\x81\x09\x1a\xa1\x51\x97\xe9\x00\x48\xcd\x23\xd5\x2a\x17\x33\x8c\x4b\x92\x4f\xd6\x69\xcc\xda\x57\x53\x71\x1b\xf3\xb6\x10\xf5\x7a\xa3\xde\x75\x17\x93\x2f\xc6\x0b\x4b\xba\xb3\x35\xc9\x9c\xbb\x4d\x24\xf8\xa1\x34\xa1\x4c\x5d\x74\xaf\x3a\x1d\xe1\xa2\x0b\x72\x35\x62\xcc\x31\x5e\x66\x41\xc0\x31\x7e\x30\xc7\xbb\xea\xba\x96\xfd\xd1\x0b\x7e\xde\x20\xbb\xfa\x36\x25\xd6\x45\x7f\x9a\x24\x3f\x2f\xa1\x1b\x2d\x0d\x68\xe7\x42\xd8\xdd\xee\x17\x85\xa8\x69\x4b\x88\xbe\x66\x56\x1b\x59\xe5\x26\x77\x7e\xc4\xa6\xb6\x45\x63\xe9\xec\x4d\x49\x66\x02\xef\xfd\xc1\x8b\x88\x5e\xb6\xc8\xd7\x64\x4b\x22\xde\x2a\xce\x5f\x64\xbe\x5c\x91\xfa\x0c\xa0\x95\x28\x64\x35\x74\xcd\x55\xce\x3d\xa1\x59\x9a\x4c\xd4\x47\xf5\x95\xcd\x76\xcf\x65\x56\x44\x73\x7b\xcb\x88\x6e\xdb\xe1\xa3\xf7\xb8\x95\x50\x60\x44\xb2\xe1\xd0\xe2\x1b\xba\x0d\xc0\x0a\x8e\xb5\x86\x12\x52\x50\x99\xb9\x78\x01\x77\x44\xd1\xca\x9d\x91\xef\x91\x0b\xcc\xe9\x6c\x7e\x42\x51\xba\x1c\x38\x3d\x4d\xe3\x22\x01\xad\x07\xa3\xb1\x74\x06\xda\xb5\x53\xfd\xc6\xbe\x5d\xbc\x14\xda\x6c\x8a\x52\xd0\x50\x9c\x92\x09\x91\x07\x79\xa8\xea\xfa\x92\x65\xb6\xac\x33\x0e\x56\x1d\x17\x76\x57\x2b\xae\x07\x2b\xf2\x42\x88\x3e\xe9\xfe\x3d\xf4\x1f\x93\xff\x68\x1c\x4c\x4c\xec\x9a\x66\x03\xf0\x64\xdc\x4d\x6a\xa9\xd7\x76\x1e\xc7\x73\x0d\x00\x4c\x9f\xe6\x09\x65\xf8\x70\x23\xaa\x9c\x95\xa4\x6a\x1c\x8c\x78\x0b\x37\x9e\xa2\xb7\x26\xe3\xbe\x7b\xe2\xdb\x54\xe5\x57\x71\x91\xb2\x50\xea\x04\x51\x41\x3e\x3e\x8c\x8e\x03\xd3\xc4\x7c\x09\xc3\x20\x33\x39\x93\x14\x63\xa0\x6b\x4a\x25\x35\x1a\x4d\xe9\x74\x1d\x11\xbc\x25\x15\x2e\x83\x77\x2e\xc8\x67\xa3\xf6\xa6\x6a\xa9\xd2\xdc\xbc\xa2\xcd\x36\x09\x03\xda\xf3\x8f\xc5\x4b\x5e\x1a\x25\xaf\x9d\x4c\x78\x6c\x78\x1a\xb3\x3c\x15\x91\x74\x14\x61\x1f\x44\xd3\x50\x75\xc4\xa1\xef\xa9\xb7\x4a\xf4\x26\xa3\xcd\xa7\x0b\xbd\x8d\x92\x91\x49\x4b\x3d\x33\xdf\x37\x2e\x12\x48\x39\x0c\x8f\x3e\xe2\xcc\xcd\x15\xae\x25\xba\x77\x60\x4c\xa7\xd8\xf8\xf4\x3a\xb9\xa4\xd4\x4a\xd1\xc5\x04\x39\x73\x88\x51\x91\xe5\xf1\xa2\xb6\xab\xfd\x66\x94\x87\x38\x89\x1c\x18\x68\xde\x31\x70\x02\x56\x0d\x82\x49\x3b\xaa\xc6\xa3\xa9\x56\x23\x95\x98\xe8\x6c\xf4\xa7\xe0\xe6\xdb\x30\xa5\xf0\xf1\x3b\x7b\xb9\xac\x21\x6f\xdd\x6a\x33\x5a\x82\xd5\x4a\x41\x31\x3a\xb3\x13\x64\x80\xc6\x9a\x9f\xfb\x26\x8b\x7a\xa3\xfa\xe6\xe0\xf2\xc6\xc1\x4b\xe2\x8a\x1a\x2c\xfd\x95\x00\xe3\x36\x91\x7e\x43\x5c\x4a\xba\x95\x9e\xd3\x1f\x3e\x0f\x9f\x7a\x9e\x36\xd3\x17\x7e\xfe\xd8\x69\xb3\x21\x8d\x5e\x38\x15\x1a\xb3\x79\x18\xf7\x7c\xba\xd4\x44\xa1\x18\xa6\xe8\xea\xcc\x7c\xcf\xc9\x8e\xa2\x97\x4c\x1f\x23\xcc\xac\x97\xbf\x87\x37\xfb\xe8\x18\x02\x63\x42\x1b\xb0\x83\xac\x8d\x87\xff\x42\x71\x5c\x9e\xb6\x42\xb3\xe7\x43\xf6\x0d\x14\x91\x38\x90\x3e\x55\x39\x9d\x65\xad\x6b\xbb\x7e\xe9\xa7\xac\xcd\xf3\xa8\xb1\x37\x3d\xde\x20\xd3\xac\x50\xba\x27\x6a\xa5\x73\xf2\xf4\x0e\xac\x62\xc0\xf7\xe1\x90\x45\x99\xa9\xb1\xe5\xdf\xa0\x5f\x72\x29\xd3\x75\x90\xc1\xab\x6c\x88\x60\xdb\xce\x11\x0d\x07\xd9\xd0\x9f\xda\x12\x88\x31\x1c\x2b\x61\x11\xa7\x80\x09\x05\x47\x22\xdd\xc9\x23\xe0\xf3\xec\x11\xa0\x48\x45\xd3\x4e\x9c\x60\x9a\xd3\x82\x93\x0d\x58\x54\xd0\x6c\xd8\x3a\x40\xf1\x40\x13\x98\xdd\x67\xc7\x6a\x99\xea\xd2\x42\x9f\xdd\x2d\x97\xa2\x2b\x9b\xd8\xf1\x92\x30\x91\xa4\x18\xef\xc2\x19\x7a\xc7\x97\x1e\x51\xb8\xf3\x5c\xeb\x0b\x39\x78\xdd\x2d\xb2\xa9\xbe\x6a\xe6\x45\x7b\x67\xed\xa6\xde\x29\xc6\xaa\x1e\x60\x8c\x2c\xa6\xc7\x98\x9e\x60\x7a\x8a\xe9\x19\xa6\xe7\x98\x5e\x60\x7a\x89\xa9\x43\xd5\x1c\xaa\xe7\x50\x15\x87\xca\x09\x97\xe3\xcc\x1f\xf7\xe9\xb6\x39\x3a\x78\xaf\xef\xe2\xb3\x99\xe5\x13\xd0\xfa\xa0\x7e\x1c\x8a\x7a\x5d\xe0\x3e\x3f\xcc\x25\x2b\xfa\xb2\x14\x93\xe1\x67\xeb\x68\xd4\xfc\x32\x57\x5c\xbb\x31\xf4\xa7\xa6\x8c\xc8\x43\x75\xd2\xf8\x9f\x52\xd3\x39\x68\xf6\xec\x0b\x0c\xa2\x42\x0d\x14\xfc\xc7\x65\xac\xdb\xee\x89\xcb\x84\xf4\xe5\x6f\xe2\xd1\x78\xce\x6e\xf0\x64\xdb\xae\x5a\x8d\x04\xcf\x1c\x30\x6e\x34\xfa\x4a\x25\xf4\xc7\x5d\x05\x91\xfe\x76\xe5\x4e\x55\x54\x47\x7b\xd7\x98\xac\xb8\x19\xef\xf3\x98\x9e\x9f\xfd\x77\x3f\xc8\x8d\x34\xd4\xa0\x59\xaf\x8a\xb3\x81\x43\xc4\xa9\x3e\xdd\x8c\xab\x29\x2e\x72\x7e\xca\xd3\x75\x3b\x1e\x65\x6d\x8a\xce\x0f\x72\x3e\x12\xbf\x54\x69\x26\xdc\xab\xda\xdb\x0c\x02\x6e\x1e\x24\x43\xb5\x48\xb4\x17\x1a\x14\x09\x34\xd6\x89\x55\xf1\xff\xb1\x0a\xd5\x94\x84\x3f\x79\x4b\xa8\x2b\xcf\x48\x21\x6c\x6e\x48\x39\xfa\xa8\x1c\x7b\x1b\xfb\x6a\x44\xe7\x46\x40\x20\x86\x8a\xb1\x92\x2e\xfd\x50\x58\x86\x9e\x10\x3a\x33\x1d\x6d\x10\xe2\x41\xdc\x91\x5f\x90\x98\x4c\x75\x43\x8a\x3b\xa1\xc1\x92\xa1\xa5\xa3\x46\x66\x7e\x86\xb6\x5c\xb8\xd6\xfb\x3a\x54\x64\x42\x99\xf4\xe2\xbf\xa4\x45\x92\xdb\x5c\x0d\x35\x43\x88\x06\xe8\x24\x57\xa9\xa9\x1a\x70\xb4\x5c\x4a\x01\xf3\x1a\x1d\x3a\x64\x56\xdf\x1d\x6e\x2e\xb1\xd1\x57\x1a\xa8\x55\x4e\x6d\xa0\x67\x51\xd2\xcf\x54\x3c\x3f\x07\xd1\x32\xe6\x93\x48\x91\xea\xeb\x7b\x47\x74\x2f\x26\x63\xe1\xaf\x5f\x54\x13\xcb\xd6\xec\x84\xe4\xe9\x5a\x0f\x7e\xe1\xcf\xf9\x7b\x47\xcf\x92\x3e\x9f\x66\x77\xae\x46\x7e\x18\x52\xa1\x87\x20\x9f\x51\x41\x27\x1a\x3b\x29\xad\x3e\x86\xa4\x88\xd8\xfb\x82\x99\x78\x48\x39\x29\xb2\x99\x98\xe2\x30\x46\xbf\x48\x50\xa2\x57\xed\x37\xb9\x89\x23\xdc\x77\x10\xfe\x93\x1d\xd9\xcf\xcc\xa2\x2d\x59\xf2\x9b\xf1\xc3\x9b\x1f\xc5\x40\x37\x2c\x24\x74\xc9\x41\x8e\xc6\xab\xf6\xd9\xd1\xa9\x72\xa4\x0c\xdc\x0f\xb6\xed\xc1\x10\xb9\x7a\xa0\xff\xb1\xd3\xac\xdc\xb1\x6e\xd2\xde\x1c\xa3\xd8\xb9\x8f\x1b\x18\x35\xd7\xa3\x59\x1c\xa9\xcc\x6a\x8e\xe2\x57\x34\xf0\x8c\xa5\x7c\x7b\x16\xaf\x3f\x8c\xd6\xb0\x42\x4b\x69\x81\x97\x77\x6c\x16\x2a\x68\xc3\x8f\xff\x95\x3e\x65\xb9\xc2\x90\x11\xfa\xf7\x99\xaf\x19\xb7\xd1\xf0\x50\x5a\xfe\xae\x30\xee\x43\x45\x63\xbd\x0d\x30\x26\xd2\x2d\x92\x44\xa5\x2f\xa0\x72\x98\x51\xd0\x8f\x78\xa0\x07\x18\x6f\x44\xc7\xd0\x17\xce\x7a\xce\xe3\x38\xa4\x03\x24\xd3\x42\x6b\x43\x74\xa9\x30\x4a\xc1\x31\x85\x35\x61\x58\x0b\xbf\xe9\xc3\x25\xcf\x5b\x77\x67\xd8\xb6\x16\x41\x64\x4e\xec\xd2\xef\x80\xe0\x79\x75\x3e\x55\x3a\x0b\xc8\xcc\x48\x15\xb9\x23\xc6\xc1\x34\xa6\x30\xa2\x39\xc9\x60\xd4\xb4\x58\xed\x7f\xe1\xbb\xdd\x52\xc5\x27\x57\xf5\x81\x26\x7d\x10\x89\x0c\x10\x7a\x9e\x51\x90\xfe\x38\xd0\x9b\x06\x2f\xfe\x68\x0e\x16\x1d\xdb\x81\x89\x31\xe7\x70\xab\x6f\x16\x2f\x31\x03\xff\x8b\x13\xbb\x7c\xe5\x85\xcd\xd1\x37\x5f\x54\x65\x73\x3a\x53\x9c\x27\xc6\x43\x41\xe6\x15\xfb\xf1\xcb\x0d\x91\x70\x08\x46\x74\xbe\x68\x3c\xc6\xab\xd4\xbb\x69\x8d\xf3\xf5\x1d\x19\xe3\x20\x35\x4e\xf9\x6c\xe6\xb3\xf5\x10\xf9\xa1\x39\x72\x24\xde\xda\x8c\x13\x91\xc5\xed\x21\xb6\xf8\xca\x29\x8c\x76\x82\xfe\x95\x0d\x7b\xe2\xdf\xf1\x40\xdc\xe8\xa7\x67\x7e\xfc\x61\x51\x6c\xb2\x24\xae\x4d\xa6\x32\xa1\x02\x9c\xf1\x4e\x9b\x9c\x18\xb8\xa9\x9f\xcc\x47\x66\x36\xb6\xc9\x62\xc4\x6b\xce\x3e\x99\x8f\xfa\x62\x31\xfd\x8e\xd7\x9d\xf8\x59\x3e\x9c\xa5\x4a\xdf\x7e\xc2\xaf\xd9\x2c\x46\x5e\x6d\xeb\x96\xd0\x45\xde\x59\x2a\x4d\x1c\x41\xe4\xf4\xc1\xc2\xc0\x63\xc3\xb8\xc9\xe7\xf2\xf1\x49\xc0\xd9\x80\x91\x8f\x98\xd4\x2f\x80\x45\xfd\xfc\xbc\xf3\xfe\x74\x09\x1c\x9f\x9b\xe4\x0d\x0d\x73\xe9\x38\x8a\x4f\x5e\xa7\x7e\xa6\x9c\x30\x74\x7d\xf4\xaf\xe1\xf6\x87\x36\x69\xad\x0f\xc5\xfc\x5e\x0a\x35\x66\x5f\xd0\x87\x34\x89\xa3\xbc\xee\x2f\x82\x70\xcd\x47\xe9\xcd\x8b\xf9\xcc\x67\xe3\xc5\xa3\xf9\x44\xe7\xee\x35\x1d\x6d\xe7\x6c\x14\xec\xab\x69\x81\x17\x4d\x6d\x66\xa5\xdb\x65\x3b\x6a\x1c\x14\x8b\x52\x59\x93\xb5\x51\xb4\x4a\x33\xb8\x95\x81\xc5\x66\xf9\x22\xac\x5b\xd0\x37\x5e\xfd\x30\xbc\x27\xb6\x8f\x7c\x6b\x35\x8c\xfb\x6a\x71\x64\x1f\x71\x3e\x90\xdd\xe3\x55\xee\xf7\x66\x5f\x05\x69\x25\x1d\x18\xce\x38\xf2\x33\x7a\x58\xda\xe6\x66\x60\xdc\xcc\xa0\xb5\xd9\x31\x24\x27\x90\x9c\x42\x72\x46\xdb\x20\xe8\x8a\x39\x14\xcf\x47\x7c\x26\xfe\x90\xff\x1f\xb1\xad\xcd\x77\x79\x2d\x55\x1a\x06\x78\xf8\x18\x6f\x5a\x33\x73\x3c\xc0\xdf\xb4\xe1\x25\x4f\x17\x18\xd0\x9d\x11\x7d\x7f\x1c\xd0\xad\x65\x9b\xbf\x2f\x43\xfb\xf7\x94\xe2\x3e\xd9\xe7\xbf\x0d\x43\x7c\xb9\x8d\xcb\xff\xb9\xf4\x9b\x2e\xdc\x30\xfc\xc3\x8f\x48\x1b\xc6\x77\x4f\xb7\x63\x59\x9b\xbd\x2c\x15\x13\x29\x9e\x0c\xdb\xc2\xcd\xc9\x30\xf0\x29\xb8\x66\xe1\xa7\xd3\x00\xcf\xca\xd2\xd3\x93\x95\x26\x8f\xf6\xf1\x89\x17\x65\x96\x95\x44\x1e\x1f\x92\xe0\xae\x78\x1b\x37\xf9\x81\x57\x69\x1d\x89\x0b\xb7\xa8\x7b\x2b\xe6\x78\x03\x96\x30\x7b\x17\xf9\xe9\xda\xce\x32\xfe\x34\x85\xfe\x6f\xb3\xfd\x17\xed\xe6\x02\x09\xa8\x0f\xbc\x98\xbb\x96\x36\x00\x4b\x76\x7e\x5b\x97\x1c\x52\x63\x2d\x4e\x37\x1b\xc3\x9e\xcb\x98\x7c\xde\x91\x67\x95\x04\xa3\x38\x97\x0b\x90\xaf\x53\xbb\xe6\x4b\xbf\x7c\x62\x51\xa1\xcf\xaf\x2f\x30\xd8\x3d\x17\xbc\xe5\x99\x6e\x6f\x7d\xa6\x1b\x5b\x7d\xeb\x74\x8d\x8b\x9c\xea\x28\xbd\x20\x94\x9f\xa9\x66\xd4\xd5\x99\xca\x3e\x35\x59\x4a\xa5\x09\x6d\x8f\xa6\x7c\x21\x19\x3d\xa6\xfa\x89\xfc\x94\x20\x3e\xac\xb5\xb0\x22\x75\x9f\x8e\x0a\x8c\xb4\x8c\x57\xfe\x52\xbe\x33\x87\x45\x62\x28\xbb\x1c\x9f\xf9\x92\xd5\x1f\xc2\xe1\xaa\x1f\xbb\x66\xbf\x52\x17\x92\x43\x09\xa2\xe9\x76\x01\x1d\xb7\x44\x27\x77\xc9\x15\x4e\x04\xe1\x14\x79\x4c\x1a\x4d\xcd\xf6\x94\xe0\x5a\x5d\xc4\x2f\x41\xa8\x06\xb9\x4a\x48\xbb\xc8\x12\xa5\xc6\xb5\x80\xb6\x8d\x92\xa4\x8a\x4c\x71\x9c\xfa\xef\x7c\x48\x7a\x8c\x5f\xb2\xc8\x1f\xcd\x49\x59\x02\xb5\x29\x0f\x12\xab\xaf\xf1\x0f\xbf\x48\xc8\x5e\x3e\xd3\x44\xf5\xd4\x9a\x92\x46\xb5\xa3\x87\xad\xef\xc9\xa6\xc8\xdf\x2a\x91\xef\x96\x34\x82\x88\x34\x78\x3a\x7e\x36\x2b\x5d\x59\x45\xd6\x40\x96\xf3\x85\x6f\x45\x44\x77\x01\x2a\x16\x0e\x3b\xdc\x13\x3a\x12\xe0\x08\xaf\x5f\x5a\x06\x53\x36\x9c\x4a\xbf\x6c\xc3\x47\x7e\xd6\x1b\x97\x0b\xee\x55\xf6\xec\xaf\xd8\x58\xc5\x50\xcb\x70\xa3\xb1\xe8\x0c\xfd\x13\x85\xda\x45\xae\xf3\x8b\x4c\xdd\xa8\x55\x2e\xa4\x08\xb3\x3b\x3d\x58\xf1\xd3\x37\xcf\x5a\x8b\x0d\xc9\x0e\xa7\x45\x88\x8b\xbd\xe6\xd5\x9d\xbb\x36\x5e\xb7\xd9\x7e\x76\xbb\x37\xf5\x66\xc3\x7a\x5f\x33\xde\x26\xf8\x45\x4c\x9f\x3b\x68\xeb\x1b\x1f\xf8\xbd\x6e\x9c\x91\x44\x0f\x68\xc8\x70\xc0\x98\xbe\xa0\x5c\x5f\x15\xc0\xf7\x9c\x1b\x7f\x96\xf6\x6e\x31\x60\xe2\x06\xbe\x4c\xdc\xa7\x99\xe5\x7c\x5c\x56\x37\xcb\x3c\x96\x2d\x29\x2e\x26\x1d\xa4\x7d\xd1\x99\xf1\x1e\xb6\x83\x2c\x37\x2f\xb5\x72\x57\x5b\xae\xc6\x0d\xa7\xe7\x54\xe5\x25\x27\xb1\xa0\x26\x3b\x7e\x80\x67\xb3\xd4\x54\xe5\x3b\x81\x99\xaa\xbc\x04\x4f\x39\x32\x84\xf9\x3a\x3c\x8e\x4d\x11\x76\x11\xeb\x1b\xaa\x81\xb9\xf6\x39\x4c\x52\x2d\xcd\xdd\x63\x14\x08\xa9\xb1\x31\xb6\x0a\x1e\xa8\x25\x27\xfc\xff\x94\xe3\x14\x89\xbf\x78\xa9\xd9\x0e\x24\x57\xb9\x20\x27\x73\xa0\x74\x64\xbe\x8c\x40\x4d\x18\x1d\x49\xa7\xb4\x9e\x18\x3a\x31\xc5\xc1\x89\xc2\x99\x6b\x64\x3c\x11\x4f\xd6\xe5\x93\xd2\x0e\x96\x7f\x7e\x46\xe7\xaf\xdc\x22\xbb\xf2\xb3\x59\xee\x4f\x9b\x11\x79\x41\xf1\x04\x6f\x14\xa7\x8a\x9c\x72\xfa\x20\x62\x6d\x83\x22\x75\x33\xe4\x0c\x1f\xad\x29\xfe\x7a\xc4\x36\x0a\xf2\xca\x35\x45\x17\x2d\xb4\x4e\x17\xc6\x74\x99\x4a\x11\xea\x0b\x42\xa8\xdc\x2c\x2e\xd8\x32\xd4\xf7\x50\xc2\xc2\x14\x0b\x82\x8d\xfd\xd2\xaf\x21\x69\x8f\xbd\x61\x38\x45\xae\x52\xfd\xa2\x7f\xf0\x48\xa3\xba\x5b\x90\x4b\xc7\x16\xa7\x5f\x4c\xb7\x12\x64\x4b\x47\x2f\xfd\xd0\x03\xaa\x63\xb4\x7f\xb7\xf0\x57\xbc\x6f\x83\xbf\xa3\x60\x98\x09\xde\xc7\xa4\xf1\xd2\x24\xa1\xac\x40\xc3\xc4\x7b\x31\x17\x3e\xf3\x29\xfc\x5c\x0f\x63\x5f\xbb\xb5\x4a\xad\x4c\xe2\x54\x19\x23\x32\x2c\x16\x0e\x53\x6f\xb1\x08\x22\x8e\x83\x09\x8b\x45\x15\x4f\x40\xe3\x75\x9b\x59\xa8\x7b\x20\xa7\x9a\xb9\x0b\x73\x42\x26\x08\x68\xb6\x93\x60\x14\x68\x92\xf5\x47\x79\x33\xa3\xc0\x69\x77\xf8\x3c\x18\x3a\xc3\xa6\x3b\xd0\x11\x26\xa5\x3b\x9c\x5b\x37\xdd\x87\x1b\x51\x62\xe4\x87\x14\xba\x88\x0f\x14\xa8\x41\x86\x6b\xc7\xeb\x74\x45\xc1\xe1\x53\xcf\x2b\xb7\x6c\x3d\x41\x23\xb1\x45\x55\x76\x3c\x93\x4b\x38\x33\xc1\xa5\xd2\xf9\x4a\x17\x2f\x94\xae\xbf\xc6\x60\x20\x99\x83\x1e\x04\x66\x6d\x1c\xa9\x58\x8e\x98\xa2\x46\x2c\x28\x1c\x4f\x64\xde\x9f\x9f\x53\x52\x4d\xb4\xd2\xd8\xcc\x3c\x79\xc3\xa7\xdb\xed\x7b\xcf\xbb\x59\x38\x45\x90\xda\xae\xe8\x06\xf4\xbb\x28\x78\x2b\x30\xd6\xcf\xee\x34\x4d\x76\xed\x49\xf1\x8e\xd5\xa0\xe5\xb5\xbd\x61\xf7\x46\xef\x60\x85\x66\x43\x21\xd1\xeb\x32\xd1\xde\x8a\x34\x4e\x36\xc0\xcb\x63\x43\xa9\xa0\x62\x1d\xf2\xff\x23\xfe\x7f\x6c\xec\x19\x13\xa6\x76\x97\xa9\x1b\x7d\xd7\x5b\x66\xb0\x4f\x41\x90\x84\x1b\xcc\x64\x5d\x79\x92\x2a\x35\xa0\x98\x7e\x31\x41\xe6\x4e\xc4\x6e\xe9\xf7\x5f\xa8\xc5\x61\xc9\xb9\x6f\x7e\x4e\x06\xd7\x16\xc5\x53\x15\x7c\x4b\x84\x69\x54\x34\x60\x7f\x1f\x86\xf9\x3f\x79\x29\xa5\x57\x9f\x5a\x32\xbf\xde\xc2\x57\x86\x6b\xc0\xe0\x59\xb4\x47\x1d\xb8\x18\x2c\xc6\x59\x3a\xe6\xd3\x25\x95\x82\xc2\x9d\x74\x74\xa1\xf8\xe5\x16\xb3\xfb\x93\xda\xd0\x6f\x7b\xba\x59\x45\x33\x58\x9a\xa9\xdd\x18\xb4\x47\xa3\x39\xc3\x04\xae\xd2\x6b\x29\xe8\x53\xad\x4a\xef\x78\xc2\x09\xfd\xe2\xac\x8f\x46\x59\x91\x2a\xd7\x8f\x3a\x05\x5e\x6c\xbc\x51\x9c\x37\x88\x6d\x8f\xd0\x9e\x7d\xfb\xf1\xa3\x14\x7f\x81\x3c\x52\x06\xe8\xf2\x11\xb2\xd4\x3e\x6a\x50\xa7\x2a\xbf\xd3\x41\xc5\x98\xb7\xc1\x1e\x7d\x83\x2c\x5a\xd6\xf2\x87\x6b\x2c\xbe\xc4\xa3\xa6\xa3\x20\xf2\x43\x51\x50\xbe\x73\x11\x8c\xf4\x77\x30\xee\x56\x6c\xee\x52\x20\x2e\x97\xd4\x01\xc2\x33\x5f\x44\x3a\x99\xfb\xd8\x72\x52\x51\x28\xce\xd2\x04\x49\x99\x1c\x55\x1e\xc9\x56\xa4\x9b\x19\xdd\x27\xef\x64\x7b\x17\x3b\xe2\xe3\x98\x9b\x33\xf1\x65\x3a\x6c\xa1\x14\xde\xb2\x30\x2f\x19\x45\x1c\xa0\xf3\xed\x59\x9c\x91\xb7\x25\x9c\x5e\xb3\xf4\x6e\xef\xa7\x03\xa9\xd8\x8c\xac\xd0\x1f\x2b\x45\xf1\x6f\x36\x2b\x4e\xf2\xec\x90\xff\x1f\xc9\x22\xac\x44\x39\xd1\x78\x60\x1b\x03\x98\x0f\xf1\xae\x21\xab\x63\xb1\x68\x34\x98\x62\x55\x75\xf3\x96\x64\x90\x1a\xfd\x60\x34\x1b\xaa\x95\xde\xb3\xcd\x68\xeb\x13\xf7\x3b\x6f\xee\x3a\x55\xaf\xff\x5c\xef\xf6\x3b\xce\xf0\xb9\xdb\x1b\x36\xbb\x37\x2c\x18\x64\x8c\x0c\x75\x66\xe4\xd7\x48\xeb\x42\x32\xdf\x32\xd2\xbe\xd7\x76\x86\xcd\x7b\xef\x79\xd8\xec\x78\xdb\x6d\x53\xa5\x7e\x59\x0d\xae\x39\xc3\x4f\xcb\xb3\x96\x6e\xb1\x47\x2d\xf0\xcd\x72\xac\x0d\x52\x33\xf6\xcb\x26\x5f\x87\x02\x36\xaf\xd7\xbe\xeb\x3b\xed\xcf\x60\x33\xba\x56\xbb\x39\x18\x7e\x56\x88\xf7\xf2\xd2\x60\x34\x43\xe7\x00\xc5\x0d\x98\x9f\x0a\xa1\x2d\xf0\xcc\x6e\x29\xa9\x61\x4c\x2e\xdc\x5a\x73\xd0\x6b\x3b\x4f\xcf\x37\x4e\xc7\x1b\x40\xb3\xb2\xd5\x72\x54\xb4\x8c\x69\xcd\x36\xdf\x9f\xed\xce\x07\xef\x99\xd0\xa4\xbc\xa7\x7e\xa2\xa7\xdc\xc5\x7d\xfb\x66\x24\xce\x41\x6c\x0b\xc0\xed\x60\x0c\x11\xc5\x95\xfa\xef\x66\x24\xa3\x38\x65\x02\x15\xee\x52\x63\xeb\x50\xe1\xda\xa7\x34\x37\xc2\xcb\x8c\x72\x71\x6a\x67\x2c\x94\xea\x54\xb9\xb2\xa5\x26\xed\xfb\x68\x6d\x12\xd8\x87\x29\x6c\x69\xa5\xef\x35\xbc\x47\xad\xb8\xed\x88\xa5\xc8\xec\xa3\xc2\xeb\xf2\xf1\x1c\xb0\xb9\x73\x21\x2e\x52\xbc\xc1\x0a\x1e\xdc\xf5\x08\xd9\x70\xbd\xef\xb8\x30\xd1\xcf\xbd\xbe\xe7\x36\x07\xf0\xa4\x7b\x19\x34\x1b\x37\xcd\x7a\xd3\x75\x6e\x86\x3b\xbe\x22\x0c\x83\x60\x1a\x05\x93\x60\xe4\x47\x79\x2f\x55\xa3\x80\x43\xed\xa7\x40\x1a\xd3\x23\xd2\xa3\x83\x45\xb1\x10\xe5\x6a\xc1\x94\x4e\xdc\x2d\xfc\xd5\x67\x9f\x4c\xdb\x18\xfa\x34\x8d\x6a\xe6\x6c\xbf\xd6\xf0\xf9\x23\x16\xbc\x89\x73\xe1\x49\xc9\xb8\x4e\x37\xb1\x4d\x6d\xc5\x86\x50\x84\x13\x52\x70\xce\x64\x9a\x51\xd8\x5d\x91\x29\xbc\xc9\x96\x37\xa0\x08\xc6\x7a\x4a\x4c\xd7\x00\x18\xc5\xe6\xfa\x15\x3c\xb8\x3d\xca\xb7\x41\xb4\x39\x45\x14\x88\xef\x53\xd0\x7f\xa6\x60\x91\x4d\x4f\x2d\x86\xb6\xba\x18\xac\xa3\xdc\x5f\xe9\xb9\x53\xab\x44\x5f\x6f\x3e\x61\xc5\x0b\x3d\xc4\x96\x30\x67\xe8\xa4\x62\x45\xcd\xd3\xbf\x2f\x82\x07\xfd\xcc\x1b\x05\x2f\xbd\x28\x0f\x5b\xd3\x23\x50\xe5\x37\x2c\x3c\xd6\x9c\x23\x88\x96\x2a\xd5\x37\x58\x12\x0c\x87\xe5\x30\xa8\x8c\x8f\x9f\x6e\xb5\x6f\xa1\x3d\x44\x83\x6c\xda\x63\x33\x2d\x51\xd3\x1f\xe6\x67\x2d\xe0\xa5\xee\x34\xdb\xf8\x8b\x1e\xf0\x82\x11\x85\xfd\x22\x54\x3a\x78\x21\xe3\x0f\x38\x95\xfa\xd6\xbc\x9d\x25\x39\x7f\x74\xc2\x0f\x1a\x1b\xa5\x01\x62\x89\x53\xfd\x70\xa9\x1f\x0e\x19\xc8\x1f\x18\xda\xb3\xa3\xca\xe1\x89\x79\x3a\xd7\x4f\x78\xc1\x1b\x3d\x1d\x9a\xa7\x63\xf3\x64\x7a\x39\xb2\x35\x2e\xcc\x93\xe9\x1a\xe7\x68\xbb\xc3\x63\xd3\xf8\xb1\x69\xfc\xd8\x34\x7e\x6c\x1a\x3f\x36\x0d\x9d\x1c\x59\xc9\xe8\xe6\x2b\x93\x6d\x20\xc7\x6b\xec\xe8\xe9\xdc\xdc\xb3\xd1\xb6\xb7\xd7\xd2\x27\xd3\xde\xa9\x81\xe0\xd4\x40\x70\x7a\x64\x9e\x0c\x2c\xa7\xa6\x83\x53\x03\xd5\xa9\x69\xe5\xcc\xd4\x3d\x33\x35\xce\x4c\xb9\x33\x83\x9a\x73\xd3\xdb\xb9\x29\x77\x6e\xd0\x75\x6e\xda\xbb\x30\xe5\x2e\x4c\xcb\x17\x06\xaa\x0b\x53\xf7\xc2\x40\x75\x61\x7a\xbb\x30\xbd\x5d\x9a\x56\x2e\x4d\xdd\xcb\x53\xd4\x7a\xb5\xf7\xc1\x78\x5e\xe9\xa3\xad\x6a\x89\xe6\xe0\xc0\x3e\x1e\xda\xc7\x63\xfb\x78\x6a\x1f\xcf\xec\xe3\xb9\x7d\xbc\xb0\x14\x68\x1b\x33\xd4\x08\xdc\xa4\x17\xeb\x25\x90\xf9\x4b\x35\xb6\xaf\x49\x9c\xd5\xf0\x6a\xd6\x4c\x3b\x62\xf4\x7e\x8d\xbe\xe0\x1a\x4a\x2d\xfc\x55\xdd\x0f\x42\x5b\x8d\x33\xc4\x2a\xc5\xb6\x83\x10\x84\x21\xb4\xa6\xe3\x7a\xfb\x7c\xe6\x16\xe0\xa0\x1f\x31\x13\xb4\xa2\x2f\x3d\xd6\x90\x22\x3f\xe2\x7b\x01\x99\x6b\x81\x31\x7a\x68\x7c\x38\xfc\x73\x21\xa2\xb5\x9e\x81\x1f\x0d\xca\xcc\x5c\x35\x6b\x20\x20\xa0\x55\xc4\x83\xd6\x79\xb6\x16\x7d\x12\xad\xa8\xe9\x8f\x09\xdd\xdc\x63\x81\xc2\x03\xe1\x45\xaa\xc6\x1a\x30\xc3\x4e\x6c\xbc\x69\x06\xc8\xcf\x0e\x77\x7c\xb4\x71\x7c\xa8\xbb\x66\xc7\x25\x7e\xa4\xc2\x89\x1b\xc6\x99\xb1\x2d\xcd\x97\x38\x51\xd1\x76\xee\x48\x96\x85\x22\xb4\xbb\x66\x30\x83\x85\x72\x19\xb8\xb8\x09\x0e\x6f\xd4\x96\xdf\x4c\xa1\x70\x33\xcc\x33\x3b\x95\x9f\x9f\xe5\x8b\x9f\xe2\xad\x5f\xdd\xd4\x68\xba\xf2\xd3\x46\x30\x67\x06\x24\x9b\x5d\x22\x92\x08\x55\xa8\xff\x1d\x1e\xc9\x6a\x51\x49\xd0\x6a\x0d\x90\x6c\x7c\xe4\xfe\x32\xf0\x73\x77\xa5\xed\x2f\x4e\x3a\x1d\xf0\x8f\x4f\x6c\x7c\xe1\x10\xca\x6d\x54\x8d\x37\x74\x23\x1b\x10\xf9\x69\x91\x1e\x2a\xff\xa4\x54\x98\xa7\xcf\x0a\x6f\x7e\xeb\xe2\x49\xf1\x5d\x80\xda\xaf\x9f\x02\x9b\xe1\x9a\xd9\xfc\x9c\xe1\x35\xa3\x19\x4a\x9d\xec\xf0\x74\x7b\xf0\x32\x27\x29\xf3\x2b\xda\x22\xd9\xe4\xeb\x67\x17\xdb\x55\x76\x81\x83\x61\x25\x65\xde\x77\x7e\xb8\x5d\x62\x47\xd5\xa4\x1c\x43\x6c\x91\x10\x17\x2f\xa1\x72\x92\x38\xcb\xd3\x38\xa1\x0b\x4a\xcd\xc7\xb7\x22\xce\xc1\xae\xd7\x8e\x10\x9d\x5f\x44\x9f\x7d\x89\xe2\x68\xe8\xd3\x95\x5d\x41\x34\x75\xa2\x69\xa8\xaa\xf8\x2b\x3a\x88\xb7\x13\x59\x14\xa3\x73\x37\x96\x60\x99\xde\x9a\x63\xf9\x0d\xb7\x4b\x06\xfc\xab\x49\x5f\x91\x75\x19\x3f\x78\x79\x6c\x76\xb6\x63\x71\x6d\xa3\x1c\x98\x2a\x05\x15\xeb\x4d\x56\x5b\x80\x28\x8f\x54\x3f\xf4\x17\x98\x5f\x40\x88\xd0\x6b\x5d\x6a\x7d\x8b\x0a\x58\x75\x73\xe9\x9e\x6d\xc9\x4d\xf4\xa9\x7d\x8a\xa3\x17\x84\xc1\x86\xe1\x95\x33\xb8\x1a\x3a\x0d\xa3\xdc\x2f\xd8\xe9\x63\x82\xc6\x75\xf8\x96\x61\x2f\x18\x3b\x8e\x0a\x74\xa4\xde\xf5\x40\x22\xf5\xee\x31\xef\x4e\x83\x51\x7e\x97\x06\x5e\xc4\x81\xfd\xe4\xf2\x72\xf4\xef\x31\x6e\x1c\x54\x30\x67\x0d\x4c\x5d\xfb\xe3\x5e\xe6\x4a\x1f\xf3\x03\x0c\xd6\x50\xc7\x30\x03\xb3\x51\xe2\x8f\x46\xc5\x82\x7e\x59\x5e\x6b\xfe\xc0\x22\x9c\x52\x21\xba\x97\x60\xae\xd6\xd9\x40\x6f\xfb\x52\xd7\xdb\x45\x97\x7e\x78\xa4\x1b\xba\xc3\x8b\xc4\x11\x10\x1d\xfe\xad\xbd\xd3\x11\xee\xc7\xb1\xcd\x88\x87\xe6\xe4\x57\x66\xd0\x51\x3c\x56\xf8\x8b\xa6\x0b\x3f\x01\xe3\x22\xdb\xfb\x9f\xbd\xff\xeb\xa0\xe1\x5c\x54\x1d\xa7\xe2\x39\x4e\xd7\xad\xdc\x3a\xa7\xd5\x5e\x65\xe0\x38\x67\x55\x17\xb2\x3a\x6e\xa5\xe1\xb8\xaf\x90\x3a\xcd\x5a\xa5\xe9\x38\x03\xc8\x77\x1f\x2b\x5d\xc7\xe9\x56\x3c\xa7\x31\x84\xcc\x96\xf8\xf4\xab\xfc\xa9\x89\xed\xdc\xba\x98\xeb\x56\x5a\x8e\xd3\xba\x86\x36\x93\x6a\x0b\x3f\xd4\xc5\x87\x2b\xf1\xa1\x73\x8d\x69\xab\xd2\x75\xbc\x59\x15\xfb\xaf\x63\x8e\x07\xe0\x3d\xd4\xa0\xab\xa8\xba\x01\x06\x76\xe8\x41\xb1\x26\x24\x0d\x1c\x16\xd5\x6b\x79\x54\xc2\x75\xdc\xd3\xaa\x05\xac\xd3\xc3\xb4\x53\x69\x98\x6e\xfa\x58\x7c\x00\x10\x0d\xe8\xf9\x16\x9f\x6f\xb0\xb3\x6e\xe5\xce\x71\xee\xdc\x8a\x72\x1c\x45\x50\x3f\x62\x0b\xb7\x00\xfb\x87\xa7\x01\x6a\x32\x86\x9a\x95\x79\xd5\x6d\x0e\x01\xe6\x01\xc2\x84\x48\xe2\xce\xbb\x98\x3e\x21\x8e\x97\x6e\xa5\xe9\xb4\x63\x44\x7b\x6b\x86\xff\xae\x9f\x2a\x5d\xa7\xd6\x84\xa1\xb6\xba\x80\xe1\xeb\x51\x65\x5e\x75\x9c\x7b\x9c\x8e\xc2\xad\x2c\xe0\x05\xc6\xd8\x3c\xac\xd6\x10\x0a\x4c\x1f\xe0\xbb\xb7\xef\x36\xe0\x65\x5a\x6d\xf3\x08\x9b\x88\x8a\x86\xd3\xb9\xac\x56\x3a\x4e\xfb\xac\x5a\x79\xab\x3a\x4e\x58\x85\x8e\xdd\xa1\x43\x85\x6f\x10\x6f\x75\x1c\xd8\x1d\xa4\x9d\x36\x40\x77\x59\xad\xf3\x28\xa1\x15\x9c\x9a\x3b\xa8\xd7\x98\x38\x84\x7d\x33\xbe\xbb\xfb\xd2\xf8\x1a\x06\xdd\x03\xce\xe9\x38\x4e\x67\x56\x45\x2c\x06\x55\x7c\x9b\x60\x6f\x53\xcc\x7b\x80\x1a\xe7\xee\x10\xc7\x71\x85\xe9\x00\x46\x93\xd3\x30\xfe\x6a\x34\x0a\x7b\xe9\xe1\x68\x1a\xd0\xfe\x7e\xf5\xfe\xfb\xd1\xdc\x61\xf6\xac\x8a\xc3\x09\xaa\x76\xee\xee\x5e\xf1\xa5\x3b\xaf\x62\x5b\x44\xd9\x88\xf8\x81\x57\x69\x39\xee\x18\xc0\x76\x1d\x2c\xe5\x3a\xb8\x26\x1c\x2c\xdb\xbc\xc6\x86\x91\x3e\x83\x6a\x4a\x2d\x67\xf0\xa5\x71\x4a\x94\x0c\xf0\xba\xed\x19\xd5\x04\xaa\xbb\x3e\x42\xe4\x8d\x91\x0e\x1b\x3d\x28\xa4\x3a\x08\xc4\x43\xc5\x73\x3a\x1f\xee\x13\x2e\xa2\x94\x10\x99\x55\x2b\x03\xc7\x1d\x23\x2c\xb7\x49\xb5\xf2\xe4\x4c\xdd\x5f\xd8\x67\x06\xcd\xb8\x3d\xb1\xd6\x5c\x9c\x81\x5f\x95\x07\xa7\xbb\xaa\x62\x19\x1f\x8b\x44\x55\xfc\xdc\x83\x06\x6f\x69\x2d\xcf\x69\x88\x95\x8e\xd3\x38\xaf\xe2\x24\x9f\x54\xf7\x69\x06\xa7\x80\x36\xa7\x03\xf5\xef\x90\x4b\xb8\x49\x0d\x0a\xdf\x3a\xd0\x4a\xd7\xe7\xb6\xba\x4e\x23\xaf\x1e\x54\x4b\x55\x1f\x6c\xcd\x5f\xb6\xa2\xa9\x02\xe3\xb9\x81\x39\x49\xaa\x53\xb7\x54\xd1\xb7\x15\xc7\xbc\x54\x61\xe9\xd5\x9a\xa5\x9a\x0d\xc7\xe9\xc2\x87\x46\x42\xe4\xb7\xc6\xde\x15\xac\xff\xd7\x2a\x2e\xe5\xdb\xca\x83\xe3\xde\xf0\x32\x75\x9c\x66\xb3\xd2\x74\x6e\x27\xc7\xae\x61\x85\xcb\x26\xb2\xc2\x79\x55\xd9\x99\x72\xb9\x39\x9a\xbd\xdb\x37\x64\x19\x0f\x8e\x9d\x05\xf7\xb8\xfa\x56\x15\xaf\xfd\x13\x78\xf3\x9c\x63\xcc\xf4\x63\x59\x21\xa9\x02\x08\x33\x37\xae\x8a\xd7\x7e\x06\x6f\x9d\xeb\x4a\xd7\xb9\x56\x75\x51\x1a\xa8\xc7\xbd\xa4\x09\xa0\x97\x3e\x50\xb3\xf7\xc4\x94\x04\x43\x03\xfa\xef\x38\x4e\x17\x6a\xb8\x3d\xb7\xf2\xe0\x38\x4f\x30\x15\xeb\xab\x59\x35\xac\x9a\x91\x39\xb7\x67\xf8\xcd\x87\x3a\x87\xd5\x04\x08\x60\xe6\xd5\x61\xb4\x47\xb4\x36\x98\x2e\xcf\x3f\xa3\x4b\x1f\xa8\xb8\xf3\xf2\x25\xf9\xf9\xce\xba\x76\x7f\x55\xb9\x75\xd2\x1a\x36\x7d\x40\x32\xe5\x3b\x92\xf7\x87\xd8\x74\x51\xfd\xaa\x6d\x55\x09\x5c\xf7\xb5\xf1\xab\x92\x35\x9c\x69\xd5\xc1\x39\x39\xab\xd2\xaa\x47\x6a\xc6\xae\x1a\x40\x92\x4d\xec\xe9\xca\xa9\xd3\xd7\x43\xa2\xe6\x33\xb7\x32\xad\x02\xc2\x2a\xae\xe3\x78\x2e\xf1\x9e\x11\x14\x58\x22\x60\x03\x24\x30\x9a\x19\x6c\x06\x84\x9c\xe7\x38\x5e\x03\x8a\x3e\xd5\x61\xb1\x2c\x51\x16\xdd\xd5\x44\x19\x2b\x86\x1a\x2c\xd2\x00\xe7\xa7\xee\x27\xb2\x63\x41\x60\x62\x59\x62\x44\x5e\x13\xdb\xb9\xe2\xbe\x80\xa0\xbc\x6b\xee\xa0\xe9\x34\xd2\xaa\x60\xb5\x6d\xd3\xb1\xf7\x41\xf9\xd8\x75\xf7\x92\xd6\xf0\x4f\xe0\x00\xce\x08\x24\x5c\x2d\x72\x11\xca\x91\x45\x8b\xf7\x4a\x32\xc3\x4b\x70\xf0\x73\x1c\xf5\xcd\x1b\x16\xf0\x19\x60\x5e\xf9\x77\xb8\xe2\x50\x2c\x37\x0e\xb1\xf4\x13\x95\xf3\x52\x46\x1c\x0c\xf8\xc0\xc5\x69\xf5\xac\x10\x7e\xa8\x3c\x38\xb7\x21\x34\xdc\x23\x0d\xe3\x21\xa2\x45\x1e\xd7\x80\x08\xef\x68\x75\x21\xdb\x38\x74\x2d\xe6\x08\xc6\xd7\x9a\x95\xe3\x73\x7a\xbe\x24\x06\x90\x22\xa8\xb7\x44\x4c\xf4\xa9\x11\x82\x7c\xf4\x4e\x45\x2b\x07\x80\xe1\xda\xb0\x8b\xa5\xce\xa9\x66\x82\x4b\xb8\xdb\xfe\x64\x36\xce\x5c\x66\xb3\x30\x1b\xc8\x66\x3d\x64\x24\x2d\x6c\xc4\xeb\x41\x17\x97\x24\xe2\x41\x00\x79\xad\xe3\xaa\x10\x2d\x9d\xca\x93\x13\x7b\x57\x1f\x55\x8b\xba\x9f\xee\x79\x55\xf0\xdf\x5f\x16\xba\xba\x1d\x9c\x1c\x68\x8c\xcf\xad\x99\xbb\x3d\x50\xfa\xd4\x4c\x50\xd5\x6a\x05\x35\x04\x4c\x8e\xcb\x69\x00\x72\xdd\x15\x4d\x40\x46\xc5\x23\x12\xb8\x3f\x49\xb5\x69\x99\x9e\x8e\x91\x8d\x5d\x54\xf3\xda\xa6\xb6\x24\xfb\x71\x3f\x04\x42\x0b\xd3\xa2\xed\xb2\xf9\x2e\xea\x23\x9c\x2d\x1c\x99\xb7\x22\x31\xb0\xae\x59\x6d\x80\xf4\xc7\x16\xae\x9c\xc3\x1a\xd1\x1e\x2d\x1a\xd7\x3c\xbb\xaf\x84\x3d\x20\xff\xcc\x1d\x1d\xd6\x34\x2e\x6f\x61\xbd\x47\x9d\x19\xb0\x2d\x97\x56\x7a\x0d\x58\xa4\xbb\x30\x8a\xea\xc8\x71\x46\x95\x8e\xd3\x59\x55\xeb\x95\x2e\x14\xef\x4d\x78\x21\x7a\x30\xd2\x4a\x5c\x75\x9c\x47\xe4\x7e\xeb\xaa\xc3\x92\xb0\xe9\xb8\x2b\xb7\x0e\x28\x7a\x72\x4d\x96\xd3\x24\x46\x50\x89\xab\xd0\xcc\x2d\x21\xa1\xa9\xa1\x04\x0e\x04\x19\x41\x75\x82\x39\xd8\x70\x5c\x7d\x42\xbe\xea\x88\x56\x88\x2f\x7b\xb7\x98\x3e\xc9\xe6\x83\x2a\x54\xc7\x99\x41\xe8\x3c\x52\x33\xca\x85\xa6\x55\x04\x02\x0a\x21\x4b\xf6\xae\xb6\xcb\x80\x3a\x38\xd7\x5a\x14\x7c\xf5\xb6\xcb\x80\x5e\xf4\x46\x65\x70\x9e\xbc\xd7\x1d\x9d\x89\x86\x90\x48\xbc\xf0\xeb\x42\xb4\x3a\xa2\x1d\x85\xc4\xd8\x68\xd9\x24\x3b\x0a\x09\x98\x08\x3d\xe9\xd7\xdd\xa1\xf2\xe8\xe5\x3b\x0a\xf1\xac\x3b\x1d\xd4\xd7\xbc\xe5\xce\x22\xee\x8a\x74\xc0\x07\x39\x61\xbf\xc4\x84\xf9\xb8\x4a\xad\xe0\x00\x78\x60\x45\x51\x03\x90\xf0\x0c\x55\xd6\x35\xc7\x59\xd7\xa6\xf4\x96\x71\x26\x24\xb8\x7a\xbc\x8f\x9a\x58\xb9\xdd\x0b\x5a\x8b\xb9\x4b\x8d\x3d\x38\xce\x03\xab\xed\x8b\xea\x21\x95\x5c\xd7\xa8\x0f\x00\xaf\xb2\xae\x02\x71\xf2\x30\xb1\xb8\xee\x36\xb8\x72\xdc\xfd\x1e\x16\x7d\x27\x08\x41\x6e\xb9\xb4\x16\xb1\x24\x74\xd8\xc1\x35\xa9\x7b\xa8\xf8\x8e\xe3\xbb\x3c\x5a\x7e\x61\xa2\x1a\x69\x51\xe0\x11\x64\x76\xe0\x97\x55\x49\x90\x19\x41\xbe\x5f\x43\xfe\xf8\xee\x21\x98\xfb\xf4\xed\x83\x98\xe6\x00\xd1\xc8\x08\xf9\x20\xc9\xb3\xf6\xac\xf0\xf3\x72\x7a\x39\xf0\xb0\xe0\x23\x36\x08\x28\x73\x93\x1b\x56\xb4\x5b\x60\x6f\x0a\x18\x22\xf7\x7f\x0b\x86\x5a\xd6\x60\x4a\xae\xd3\x6c\xd4\x35\xfd\x42\x89\x1b\xf9\xe9\xa0\x6e\x69\x24\x35\x00\x22\xf6\x30\x21\x6a\x9d\x72\x16\x21\xdd\xa1\x17\x00\x98\xc8\x83\x74\x19\xe2\xc9\xbc\x0c\x11\xb0\xcb\x9a\x84\xaf\xcd\xd3\x94\xd2\xc7\x75\x09\x1d\x38\x91\x17\xae\x04\xed\xa4\x0e\x82\xfe\x09\x41\x5b\x12\xb6\x18\x31\xdc\x60\x8f\x29\x22\x2a\x35\x88\x0a\x50\x34\x9e\xd3\xdb\x92\xda\x5a\xd4\x45\xcb\x59\x9d\x14\x2b\xca\x6b\x13\x67\xa7\x72\x24\x12\xe8\x03\xa1\x30\xac\x21\x14\x24\x44\xbd\x43\x82\xf6\x27\xfd\xbb\xd7\x8d\x02\xa5\x72\x73\x6e\x25\x23\x2e\xe0\xe9\x85\x56\x22\x6c\x80\x1b\xf1\x44\xb9\xab\xc6\x96\xd0\x0e\x1a\xb6\x7c\x44\x2a\x14\x09\x51\xf1\x8c\xed\x74\xf9\xf1\x0e\xe6\xaf\xe1\xb8\x33\xb9\xd2\x49\xfc\x6e\x10\x1b\x82\x73\x42\x59\x91\x67\x17\x4a\xec\xd9\x39\x4b\x6a\xf6\xd9\xce\x33\xcb\x04\xa8\x3f\xf7\xa0\x47\x14\x9e\x83\x90\x2a\x5e\xd4\x88\x7a\xa9\xeb\x89\xce\x33\xc5\x2e\xa9\xcd\x9c\x28\x64\xdd\xb0\x3d\x33\x14\x39\xcd\x6b\x46\x0d\x9c\x50\xf1\xfd\xba\x50\x26\xbd\x39\x81\x44\xb3\xf5\xda\x40\x54\x65\xa4\x8d\x72\x23\x0b\x6a\x92\x61\x9a\x7b\x96\xcb\x79\x92\x14\x52\xe3\x5e\xd1\x6c\x02\xb1\x42\x40\xa5\x54\x34\x43\x15\x78\xb0\xcf\x45\xb1\x14\x0e\xaa\x6a\xe7\x66\xb3\xf9\xe3\x3a\x8d\x0e\x8d\x9b\x46\x63\x93\x85\x6a\xd5\xb7\x89\x2a\x83\xd1\x12\x1a\x87\x66\x1d\x1a\x80\x56\x25\x20\x04\x43\xcb\x51\x3d\x22\x8d\xc6\x7b\xaf\xe1\x9a\xc1\x06\x6f\x10\x0f\x54\x8d\x27\xf0\xbd\x86\x6b\x57\xe1\x04\x7c\x18\x0c\x6d\xe3\x8b\x5e\xea\x82\x5f\xc3\xe8\xba\xd8\x77\x4e\x1f\x0b\xaa\x77\xc8\xd3\x48\xbc\x9d\xa7\xb1\x8d\x2f\x3c\xf5\x53\x76\x84\x50\xc1\x13\x52\x2a\x99\x23\xb8\x60\xea\xac\x50\x3b\x1e\x90\xe3\xc1\x3b\xad\x59\x0a\x63\x4e\xc3\xbc\xa5\x8b\xd6\x9e\x1d\xec\xba\x86\x6b\x8c\xe0\x39\x20\x2c\x1e\x30\xd5\x76\xb5\xcb\x69\x8b\xeb\xef\x6f\x2e\x02\x84\x4a\xb0\xb7\x27\x1a\xd0\x15\x4d\xb3\x99\xd5\x82\x4a\xfe\xf4\x58\xf9\xe8\x38\xce\x05\xea\x6c\xab\xda\x2b\xcd\xd3\x9c\x1c\x7c\xaf\x9e\x54\x3d\x16\x34\x95\x21\x15\xa1\xbe\x63\x22\xe2\x73\xe6\x46\x7a\x85\x00\x1b\x98\xd7\xe5\x42\x7c\x23\xf2\x81\xe7\x41\x5a\xb7\x6c\x15\xa1\x2a\x77\x47\x2b\x50\xf7\xb3\x28\xf5\x90\xd7\x64\xdb\xac\x67\xa0\xbf\xea\x45\xea\x01\x9e\xc0\x6d\xc0\xee\x3d\x68\xa5\xdc\x03\x66\x85\x25\xda\x91\x04\x34\x63\x76\x86\x7e\x2e\x6a\x38\xf6\xcc\x28\x3c\x21\x6c\xf2\x2b\x2c\x99\xd1\x22\xa0\x1a\x39\x14\xf0\x8e\x48\xfe\x14\xbc\x44\xbd\x5d\x5c\x8b\xdd\x34\x4e\x27\x37\x8a\x49\x2d\x24\x02\x7d\xa7\x0a\xab\xcd\x7a\x72\xa2\x61\x46\x23\x4f\xd0\x5d\x0b\x15\x85\x57\xfe\xfc\x84\xce\x84\x26\x20\xa2\x6a\xd0\x4e\xb6\xc1\x02\xe9\xd3\x23\x56\x6e\x40\x89\x68\x66\xf5\x47\xf4\xb9\x40\x7e\x62\xd9\x49\x8b\x84\xaa\x79\x8a\x3d\xd1\x10\x22\xc8\x16\x12\x4d\xae\x6b\x16\xed\xb9\xe0\xc9\xef\x04\xd8\xbb\x4b\xad\x80\x36\x24\xe6\x0f\x5b\x38\xaf\xea\x31\xb3\xd0\x32\x95\xb5\x80\xc5\x35\x4b\x64\xf1\x21\x78\xbf\x96\xf6\x1e\xe8\x68\xf0\xb8\xac\x2e\x3c\xcb\xbc\x22\x01\x86\x63\x1b\xb2\x8f\x5d\x76\x65\xfc\x6c\xe0\x14\x1f\x7a\x1b\x1a\x66\x6d\x93\x11\xb2\xe0\x23\x1b\xa8\x60\x3d\xd1\x65\xeb\xa3\xf9\xc6\xd6\x3b\xd5\x20\x78\x27\x87\x04\x36\xcf\x0f\xe2\x5d\x11\x77\x88\x89\x83\xbc\xb1\x8e\x44\xe5\xde\xa8\xf2\xa5\x41\x09\x52\xa9\x99\xbf\xb0\x26\x55\x1b\x02\x2a\xb6\x08\x0b\x5c\x1e\x1c\x28\x3b\xe7\xfc\x9d\xf6\x0a\x1a\x6c\x19\x2c\xc8\x5b\xc6\x6f\x20\x8a\x32\x57\xb4\xd0\x31\x7a\x92\xc1\x17\x33\x65\x2e\xb4\x24\xb9\x45\x14\xd4\x40\xa7\x7f\x32\x91\xfa\x38\x8f\xf4\x88\xf4\x1c\x64\xaa\x67\xd5\x8f\xaa\x18\xeb\x61\x95\x07\x4b\x9d\x9c\xd2\x24\xb0\xee\x50\xc2\x9e\xc7\xd8\x9b\xa2\x02\x39\x2a\x76\x60\x05\x58\xab\x9e\x68\x68\xa6\x90\x32\xc7\xac\x29\xa9\xdd\x09\x6d\x90\xcb\x92\xed\x13\xca\x8d\x8f\x23\x1a\xdf\x19\x73\x0e\x4d\xf7\xcd\xa5\x54\x31\xd0\x6b\x85\xad\xbe\xb9\x6f\xe4\xb6\x5a\x95\xc9\x53\xb2\x02\x58\x31\x8b\x9a\x24\x62\x4d\xbf\x42\x86\x68\x6d\xd5\x0a\x11\xa1\xab\xa2\xf4\xba\xba\x6c\x42\x53\xd3\x6a\x56\xb3\xe4\x3a\xdb\x12\xee\x2d\xcd\x08\xa8\x75\x4c\x8c\x5e\xc4\xbd\x5c\xd0\x1c\x41\x73\x98\x0c\x2e\x3d\xdb\x3b\x37\x89\xf6\x6e\xe3\xa7\xfb\x13\x1b\xef\xee\x7b\x1a\x12\xa1\xf4\x4c\x1b\x86\x67\x34\xa5\x1e\x57\x97\xa3\x64\x5b\x80\x79\x71\x7e\xa5\xc9\x48\x70\xe3\xa9\xe9\x92\xf9\x31\x48\xdd\x47\x6c\x71\x84\xfc\x27\xac\xef\xe2\xb1\x42\x33\x64\xe6\xc1\x62\x21\x2c\xad\x3d\x2d\x7a\xe4\x82\xfe\x43\x68\x9c\xc1\x47\x63\x07\xc7\xb0\x1a\x3a\xf6\x53\xd3\x64\x8d\x1c\x0f\x75\x91\xd2\xac\xb6\xf4\xac\x90\x93\x94\x55\xc6\xd3\x9a\x61\x54\xd7\x39\xee\x4b\x90\x97\xb9\x4c\x25\x30\xc1\x6b\xef\x73\x05\xe7\x80\x5a\x99\x5d\x91\xcb\x89\x26\xe2\x82\x38\xd5\x25\xbf\x11\x85\x4c\xa4\xd5\xf6\x93\xd6\xe0\x09\x29\x8d\xc7\xd4\xd6\x11\xc8\xe3\xe6\xc2\x5b\x13\x69\x27\x34\xbc\x57\x62\x20\x8c\x54\x4b\x08\x96\xa9\xb3\xae\x9c\x95\x54\x2e\x4a\xa0\x90\xcd\x87\x9a\x71\x13\x31\xa9\x17\xa7\x91\xe6\x4b\x57\xce\x6b\x5c\xd5\x82\xc5\xd0\x58\x19\xe9\x5b\xe2\x93\x05\x80\x21\x90\x58\x2c\x4c\x04\xef\xbc\xaa\x5d\xd4\x46\xa5\x3a\xa7\xe7\xf7\xda\x4e\x90\xe6\xd5\x3b\x29\xe8\x49\x4d\x79\xad\x86\xc4\xb7\x58\xe1\xda\x37\x1a\x87\x67\xf4\xa8\x08\xa1\xf6\x33\x82\x34\xad\x5b\xa0\xde\x84\xbd\x74\x28\x0c\x2c\x1c\xe0\x91\x50\xd3\x73\x96\x0e\xcc\x15\xdd\x0d\xb1\x70\xec\x5a\x06\xb8\xc1\xed\xb0\xb9\x2e\xc9\x3a\xcf\x71\x57\xbe\x30\x13\x1b\x6c\xd8\x15\x55\xc7\x29\xaa\xa4\xe0\x34\x2b\xef\x55\xc7\x79\xaf\xf2\x27\x5c\xd7\x64\xf3\x11\x83\x62\xe3\x6c\x5e\xd3\x1e\x23\x28\xf7\x5a\x23\x1e\x02\xd2\x9d\x1d\xca\x6c\xb0\x13\xa7\xbb\x3d\xa3\x8d\x36\x6e\xd4\xcc\xe1\xe5\xce\xf5\x6c\xa6\x28\x17\x33\x20\x04\x12\x2f\x30\x28\xb7\x40\x82\x9d\x55\x03\x77\xc7\x0a\x94\x2a\x20\xb5\x7d\xc7\x7a\xd5\x99\x6b\x18\xdf\x60\xff\x0f\x61\x78\xab\x96\x15\xbe\x00\xeb\x2f\xab\xaf\x25\x3a\xb0\x0a\xe7\xbe\x01\xa0\xe9\x38\x4f\x3f\x5d\x4d\x04\x48\x94\x75\x3b\xdd\x89\xe0\xbd\xb6\x87\x86\x76\x3b\x11\x19\x76\xf5\x6c\x4e\x1b\x76\x04\xb3\xc6\xb6\x20\x68\x80\x4c\x82\x92\xa1\xbb\x68\xec\x58\x28\xa4\x28\x42\xed\xe9\x26\x6f\x7a\x60\x86\x13\x10\x53\xc4\x42\xaf\xa2\x0b\xcb\xaf\x0c\x92\xbe\xa0\xb9\xa6\xe3\x5e\xaa\x19\x51\xc1\xbc\x45\x8e\x6a\xd6\x71\x10\xa0\xdb\x05\xf5\x90\x12\x94\x64\x6e\xdf\xc6\x94\xb9\x22\x98\x4f\xa9\xfa\x1b\x29\xbf\x3c\xa3\x11\x56\xb8\xcd\x5a\x88\x9e\x73\xaa\xfe\x41\xd5\x0b\xaa\xbe\xe4\x21\x53\x47\xef\xad\xca\xa2\xe6\x38\x8b\x1a\xed\x03\xa7\xed\x25\xee\xe2\xdc\xae\x5b\x64\x8c\x32\x7b\xff\x8c\x18\x60\x3c\x39\x6a\x1e\x88\x86\xc1\xe7\xee\x23\xf6\x34\x9b\xc5\xcb\xe4\xf8\x21\x34\x93\xa1\xe6\xba\x28\x69\x6b\x52\x4c\x95\x4d\x54\xd6\xae\x99\x67\xef\x0b\x8f\x37\xb0\x67\x6b\xe1\x43\xff\xc7\x9e\xe1\x26\x31\x4a\x76\x62\x3c\x0c\x29\x3b\x3a\x5a\x9a\x25\x09\xc1\xc0\xcd\x1e\xe9\xd6\x47\x2c\xcc\x07\xc7\x25\xe7\xc7\x9b\x18\x80\xab\x3f\xb4\x60\x0e\x8c\xec\x81\x62\x65\x49\x54\xb7\x96\x3e\xed\xa6\x25\x9f\x7d\xae\x4b\xdb\x61\xa7\x1f\x25\xa3\x65\x45\xc8\x63\x3f\xca\x41\x83\x23\x58\x88\x79\x99\xe9\xc9\xa5\x23\x02\xe7\x61\x20\x95\x4e\x56\x10\x4d\x21\x33\x59\xec\x34\xfe\xca\xdf\x72\x41\x53\x43\x5d\x36\x76\x7b\x5b\xa6\xc2\x73\x56\xd7\x4d\x02\x76\x8e\xea\x1b\x46\x06\x17\xb4\xa0\x69\x0f\x0b\x7c\xd4\x9e\x97\x4f\xbc\x2d\x6d\x01\x42\x4d\xac\x3d\xe8\xb5\xf5\x8d\x92\xe0\xae\x26\xac\x25\xf0\xbc\xfe\x24\x62\x20\x02\x49\x48\x21\x58\x10\x4d\x92\xa5\x77\xca\xd4\x42\x6b\xec\xcd\x23\x4f\x3f\xf4\xd2\xae\x58\x45\xe5\xa2\x05\x66\xe9\x71\x8b\x49\x4f\x58\x5c\xc0\xbc\xa6\x42\x51\x5d\xa3\xd4\x18\xb0\xf0\x3a\xa9\xa3\xf7\x31\xab\x1e\xd2\xa0\x8f\xae\xb0\xfd\x63\xc2\xe7\x09\xcd\xf6\x29\xbd\x9d\x35\x88\x6c\x3c\xf6\xcd\x38\x03\x8e\xa0\xd0\x56\xe9\x6d\xcd\xca\x9b\x94\x9e\x4f\xa9\x9b\x05\x61\x6b\x76\x85\xf2\x80\x20\xfb\xc9\x93\x48\x78\x66\x66\x15\xb4\xb1\xff\x19\xbb\x49\xae\x88\x83\xb5\xed\xa0\xc3\xab\x2d\xb6\x1b\x30\x67\x13\xec\x9f\xf4\x0b\xdc\xfd\x18\x72\xa9\x03\x39\x19\x03\xe6\xb6\xc4\x04\x6e\x17\x6d\xb1\x7f\x60\xe6\x72\xc5\x8a\x3a\xca\x7a\xe2\x7b\x71\x9b\xca\xa0\xe8\xb8\xda\xd4\x10\x69\xc8\x87\xbc\x6c\x88\x79\xa5\x34\xdb\x3c\xbc\xac\x8d\x08\x45\x20\xdc\x63\x75\x4a\xe3\x2b\xda\x96\xe7\x2f\x3f\x69\x75\x69\x5a\x85\x2f\x2b\x9a\xad\xf5\x15\x21\x9c\x66\xc4\x00\x7b\x88\x94\x71\x7b\x24\x9a\x3d\xbe\x12\xc4\xb2\xad\xd5\xae\xa8\xf5\xb5\x2b\x09\xf6\xe4\x0a\xe6\x1b\xad\xec\xc1\x69\xd3\x0a\x58\x22\x2f\x46\xdd\x59\xdb\xfa\xdc\xcf\xcb\x9d\x00\x28\x59\x43\xfb\xc7\xa0\x94\x2d\x20\x5a\xb8\x10\x38\xbd\xfc\xb4\x85\x77\x0c\xd4\x78\xb8\xdc\xd5\xc2\x4f\xa6\x0f\xa0\xce\x7d\x1a\xfb\xb4\x43\x33\x8a\x54\xd7\xfc\xac\xd1\x03\xda\x37\xb2\x05\x44\xa3\x81\x36\xca\x49\x14\x37\x77\x89\x28\xd4\x09\x88\x8d\x1d\xe9\x0d\xa6\xad\x92\x4d\xc7\xcd\x47\xa4\x4a\xde\xce\x3b\x7a\xe7\x09\x69\xf9\x53\xc0\x4e\xf4\x0e\x55\xb8\x0b\xb4\x45\xc7\xaa\x21\xd1\xa7\x6d\xb0\xba\x15\xed\x6a\x21\xee\x08\x3a\xfe\x6e\x68\x17\x84\xfa\xad\x72\x56\x45\xbe\x7d\x23\xcd\x83\x74\x8a\xa6\x00\x85\x34\xae\x9f\xb4\xa9\x9c\x36\x4b\x6b\xa1\x63\x37\x92\xf2\xed\x3a\xd3\x9a\xfe\x22\xea\x14\x3c\xf2\x87\x4a\xe0\xba\xbf\x56\x64\xfc\xa6\x14\xfa\x40\x4e\x00\x54\x87\x07\xb4\xa3\xa0\x2a\x76\x8f\xfa\x17\xe6\x50\x9c\x0e\x50\xb1\x6f\x63\xd0\xbc\x5f\x95\xff\xbf\xed\x71\x3a\x01\xb1\x8d\x39\xb2\x1d\x5a\xaf\xa7\xa4\x0f\x1c\x1a\x75\x0f\xcc\x0a\x34\x59\xc8\x4d\xb8\xdc\x65\x93\x31\xdb\x58\x68\xc7\xb4\x15\x75\xc4\xd3\x97\xc2\x9d\x41\x86\xd6\xe5\x77\xa1\x89\x77\xb6\x06\x0b\xaa\x90\x0a\x51\x0c\x84\xf7\x62\x59\xcc\x05\x21\x63\x46\xda\x42\xd0\x26\x0b\xaf\x2e\x94\xb4\xba\x11\xde\xa4\xdc\x34\x58\xa4\xec\xce\x35\xd6\x53\xdb\x2e\x80\x15\x91\xce\xba\xb9\x59\xe7\xb0\x69\x4d\x9e\x0b\xda\x05\xbb\xdc\x24\xe1\x3f\x40\xd1\xc1\x56\x07\xe4\xd9\x26\xe2\xfb\xb8\x22\x0f\x05\x05\x07\xcd\x90\xa5\x2d\xae\x69\x8c\xed\xad\x21\x94\x1e\xdd\x99\x2f\x22\xb5\xc2\xeb\x5d\xab\x11\x9d\x60\x04\x27\x2b\xac\xac\xf6\x31\x9b\x60\x8e\xbd\xb8\x46\x46\x48\x66\xe6\x31\x48\x92\xda\x59\x1b\x1a\x7f\xca\x37\xb7\xb3\x7f\x7f\xe4\x64\xbd\x7d\x54\x7f\x36\xf5\xd8\x4c\xac\x4f\x0b\xd9\xc8\xe8\xa4\x65\x67\x06\x40\x25\x8f\x04\x6f\xed\x44\x8d\x0d\xb2\x75\x0e\xa5\x96\x15\x50\xab\xb5\x5d\xc8\xbd\xa8\x52\xd8\x8d\xb3\xf9\x31\x6a\xa2\x85\x33\x3c\x42\x3f\x70\x23\x6d\xb1\x04\xec\xf2\x02\xed\xb2\x79\xe5\x48\xac\x58\xe7\x9c\xb7\x35\x0b\x0d\xc7\x3d\xbd\xe2\x59\x68\x6a\x7f\x1d\x5b\xeb\x86\x58\xd3\x6b\xf2\xba\x5c\x97\x47\xdb\xcc\xa9\xfb\x8c\xb0\x90\x5f\x93\xbf\x85\x5d\x3c\x38\xca\x06\xd9\x8d\xab\x6b\x21\x7d\x99\xa7\x98\x0c\x0e\x71\x39\x14\xfe\xd2\x5f\xb6\xef\xf5\xb5\x1e\x78\xa3\xdc\x37\x4d\xe1\x41\xcb\x06\x80\x24\x57\xbb\x1b\x3a\x12\xc6\xd1\x2b\x7a\x76\xf6\xab\x07\x2d\xd9\x2c\x37\x96\x19\x33\x03\x35\x42\x34\xf5\x0e\xaa\xb6\xcf\x8f\x86\x41\xf4\x43\xc9\x71\xce\x7b\xee\x71\x69\x23\x20\x2b\xd9\xed\xe4\x08\xe0\x55\x72\xa3\x6d\x09\x83\x84\xd9\x36\x12\x0e\xa8\xd3\x8c\xe6\x3f\x6f\xd8\xa9\xf1\x04\xf7\xf7\x78\x1b\x60\xdd\xd0\x9e\x14\x28\x76\x49\x8b\xc9\x82\xbe\xa8\x89\x45\xcb\x6c\x3c\xaa\xe9\xad\x61\xbb\xad\xdb\xd8\xa7\x9a\xec\x70\x77\x2b\xd6\x20\xb8\xb6\x9b\x38\x34\xa4\x23\xbd\x31\x40\x9c\xe0\xb0\xa1\x73\x29\x82\x82\x95\xe7\x52\xe5\x06\xaa\xe7\x76\x83\x47\xa8\xeb\x30\xfc\x5f\x5b\x48\x38\x37\x5e\xfe\xae\xe3\xbe\x92\x26\x7c\x41\x24\x71\xb9\x93\x61\x30\xc7\x42\x34\xb7\xb6\x5c\x06\x87\xc2\x66\x26\x22\x9b\xb6\x64\x59\xad\x58\x13\xe7\x7a\x2d\x65\x12\x3d\x3c\xb0\x94\x3f\x69\x5a\x53\x72\x58\x31\xdb\x5e\x0d\xfb\xd8\xb4\x8f\xae\x7d\xb4\xd2\xb7\x11\xb5\x0c\x8f\x1b\xd0\xaa\x69\xe7\xae\x41\x4e\x4b\xbb\x54\xd1\x4c\x15\x28\x21\x7c\x25\x34\x79\x07\xde\xc6\xba\x28\x33\xcb\x4c\x6c\xec\x4d\x09\xa0\xc3\x8e\xae\x28\x32\x67\x4d\xed\x05\xb5\x64\x03\x15\x8b\x96\xfe\xfc\xd9\x72\x25\xf9\x59\x6e\x0a\xca\x2e\x6d\x4c\x9f\x9c\x77\x68\xd1\x04\x14\xfa\xf4\x48\x9e\x3d\x56\xe3\xe9\x45\x47\xd1\xa1\xd4\xa5\xac\x1a\x67\xa1\xa6\xc5\x94\x5b\xfb\x46\xc0\x5c\x4a\x01\x73\xd8\xb2\x14\x42\x38\x9c\x12\x21\xcd\xae\x05\x0e\xc5\x76\x0d\x0f\x9e\x9c\x2d\xcd\x4d\x66\x4e\x1b\x34\xa7\x25\xaf\xfd\x11\x79\x9c\x8e\xdb\x82\xb0\x7f\x5e\xeb\x75\x85\xc3\x27\xca\x5a\xb6\x4a\xe5\x5b\x5a\xb2\xa1\x11\xe2\x59\xeb\xe5\x84\x8a\x9f\x12\xe8\xef\x2d\x21\x0a\x1c\xa2\xa1\x86\xdd\x21\x76\x1a\x6b\x21\x8f\x3e\x4a\x75\x56\xd4\x05\x36\x7a\xd6\xb2\xac\xbe\xbd\xc1\xd2\xb9\x9c\xae\x45\x96\xf6\x1a\xff\x51\xe4\xfa\x2b\xed\xd5\x35\x04\xea\x3d\x81\xde\x8e\xdc\x43\x9d\x6e\x69\x8e\xfc\x75\x45\x6a\xf1\x3b\xa9\x85\xcc\x8b\xc9\x78\xe3\xcd\x37\x1a\xfe\x05\x7d\xb9\x6c\x55\x36\x55\xfd\x69\xb5\x94\x05\x85\x7f\xd2\x58\xf6\x5b\x95\xaf\x04\x7e\x43\xec\x6d\x7e\x5b\x0e\x61\xb8\xa2\x8d\x4a\xe3\x3c\x69\x90\x64\x2b\x69\x45\xe6\xd1\x8a\x52\xb2\x48\x51\xc3\x6e\xda\x60\xc4\x06\x1e\x35\x68\x5d\x21\x75\xd2\xd1\x0c\x8c\x7f\x6c\xa4\xed\xcf\xb8\xd9\x19\x8b\x5d\xdc\xfd\xde\x55\xea\xec\x5a\xf4\xdf\xd4\xdd\x91\x10\x7f\xdd\x51\x21\x44\xb7\xe2\x59\x55\xd6\x73\xed\x20\x99\x35\x5f\xdc\x3b\xce\xc5\x3d\xab\x1d\xbd\xad\xd8\xab\x93\xee\x0e\xf6\xe6\xed\x93\x6a\x7a\x4a\x73\xf0\xf2\x25\x86\x3d\xe3\x17\x3b\x67\xb7\x5b\x57\xdb\x88\x00\xc6\x61\xc7\xb2\x2e\x47\x3e\x7a\x36\xc4\x2f\xee\xa2\xf4\x3f\x25\xa5\x62\x45\x99\x6f\x5d\x6d\x7c\x90\xd2\x7b\x4c\xad\x67\xba\x75\x5e\x7b\x1c\x4e\x58\x74\x91\x8f\x5f\x12\x9e\x38\x6a\x6e\xd1\xd0\x2b\x51\x74\xf6\xde\x45\x53\xfe\xb8\x69\x09\x7c\xdf\xb0\x65\x77\xf5\xab\x52\x34\x1d\xa7\x68\x1e\xb5\xec\xee\xe7\x6b\xc3\x6e\x76\xee\x93\xc6\xcf\xfb\xef\x32\xbc\xd4\x17\xc8\xb2\xb2\xd1\x8a\xc5\x96\xf5\x5a\x50\xc2\x58\xe2\xf0\x58\xcc\x32\xae\x08\x7a\x45\xbe\x69\x23\x75\xf0\x2b\xcc\xda\xcf\xfa\x16\x40\xd2\xf0\x9b\x0a\x31\xa3\x01\x15\x8a\x38\x6d\x3e\x7b\xe7\xd5\x0d\x50\x65\xb5\x4d\x80\x19\x48\x84\xc0\xf8\xbd\x77\x80\xf1\x87\x78\x09\x3a\x46\xef\x83\xde\xdc\xcb\x31\x75\x87\x99\x27\x55\x54\xde\xb1\x4f\xd2\x45\xc2\xff\xe4\x44\xbc\xdf\x38\xce\xfb\xcd\xb4\xf3\x9f\x9c\xe7\xcd\xf1\x7c\xfc\x12\x13\x89\x1e\x0b\x94\x8e\x30\xa4\xff\xe8\x58\x6c\x27\xd0\xf4\xbf\x3f\x2f\x9b\x4d\xeb\x6d\x24\x4e\x60\x10\xff\xf9\x4e\x8c\xc3\xeb\x3f\x4e\x57\x25\xbe\x2f\x3d\x58\xcc\x17\x3b\x15\xb1\x99\x65\xd6\x40\x0c\x8d\xb8\xfb\x8f\x95\x83\x57\xd7\x71\x0e\x5e\xdd\xeb\x2f\x49\x65\xc7\x0a\xe4\x50\x89\x18\x4f\x12\x7e\x2c\x5c\x3a\x7f\xcb\x72\xf0\x4f\x96\xa4\x1d\xc7\x91\xe7\x38\x47\xde\x37\x54\xfb\x0d\x28\x2c\xea\xfe\x06\x90\xa9\xeb\x38\xbc\xed\x4f\x93\xf6\x40\xc7\x83\x9c\x07\x64\x0b\xbf\xc7\x98\xfe\x43\xb0\xbc\xbb\x78\x7a\x76\x03\x96\x4f\xf8\xe3\xbf\xb9\x90\xa3\x11\x0b\xc3\x69\xdb\x86\x4d\xb3\x5e\x45\x1c\xca\x5a\x43\xc8\x1f\x19\x51\x0d\x8e\xf5\x72\xed\xf6\x26\xf1\x77\x68\x7d\xfe\x5f\xa2\x73\x52\xb7\x12\x42\x6f\x56\xad\x2c\x6a\x8e\x1b\x75\xf4\xd2\x42\xc5\xb5\xb3\x5b\xa6\x5b\xcf\x98\x27\x71\xff\x81\x21\x5f\x2a\xa6\x02\xf6\xcc\x98\x96\x14\xb4\xcf\x3c\xf7\xac\x48\x25\xf0\x30\x2e\xa1\x75\x4c\x61\x73\x15\xcf\xc6\xc2\x89\x10\x01\x7d\x0c\xa2\x69\xe3\x5b\x34\xc9\x97\xde\x37\xbf\xdf\x3a\xbd\x08\xe3\x03\x9e\xa6\x9f\xf8\x86\x1a\xa5\x5d\x58\x7e\xd7\x86\x49\xc3\xa9\x9d\xd4\xfe\xa0\x7a\xe1\x6e\x2a\x2f\xb1\x6b\xe2\xb9\x3a\x34\xf1\x30\x15\x87\x32\x26\xf2\x81\xcf\xd4\xd9\xc0\x47\x2e\x89\x79\x5a\xba\x37\x50\x7f\x1e\x89\x6e\x78\xf3\x35\x6e\x21\xaf\x5a\x60\x28\x70\xe4\xb2\x66\x5d\x9a\xf9\xb4\x2b\xc2\x4f\x5b\x8e\x93\x91\x8b\x33\x66\x83\x4d\x6f\xa9\x60\x40\x6c\x34\x7c\xc7\x85\xd2\x58\x7d\x35\xfb\x16\xc8\x46\x29\xe0\x52\x64\x6a\x48\xbd\x72\x98\x45\xec\x8a\x80\x31\xf3\xed\x50\x86\x36\xd8\xc6\x9a\x36\xbc\xb2\x5c\x7e\x7d\x83\xad\x7c\xdc\x50\x57\x9f\x7d\x6c\xf2\xc9\x00\xaf\x0c\x61\x37\xad\x1d\xdc\xe0\x20\x0f\x6f\xe4\xe8\x6c\x6c\x0f\x6a\x8b\x22\xf2\x45\x8c\xbb\x8b\x54\xdf\x9f\xe1\x52\x79\xd2\x51\x93\xb7\xd6\xde\x3b\xa4\x28\x23\x56\x9a\x3f\x70\x7f\x4a\x95\xbf\x1d\xd1\xb7\x15\x7d\xcb\xe8\xdb\x1b\xa9\x9e\xc7\x28\x67\xee\xc8\x0e\x83\xea\x4d\x8d\xd1\xf7\xb6\xae\xa5\xb3\x06\x95\xa6\x73\x3b\xaf\x9f\xd0\x8c\x9d\xde\xd8\xd8\x41\xed\xde\xa2\x11\x9d\x69\x17\xea\x39\x21\x4c\xb3\xd8\x0e\xe9\xc3\x37\x56\x9c\x65\xa5\xd8\xa8\x23\x7d\x30\xed\x9c\xa8\x8a\xc3\x0d\x4e\xf8\x24\x16\x74\xa4\x8d\x4d\x51\x0b\x17\x34\x85\x10\x25\x84\xb7\xdc\x1c\x56\x80\x7f\xeb\xa6\xd4\xe4\x99\x89\x1c\x34\xf5\x41\x26\x8c\x86\x68\x7d\x06\x3e\x86\x3b\xb9\x86\x26\x1e\xb9\x4f\xcd\x4a\xba\x00\x57\x13\x2f\x76\x68\xea\x35\x74\x2a\x55\x56\x4b\xaf\x65\xef\xc9\x4f\x72\x95\xcc\x24\x07\x62\x9b\x2b\xdf\x85\x2d\x74\x32\xd5\xf2\xee\x94\x27\xb6\x87\xd5\x59\x1d\x3d\xc0\x8b\x26\x1a\x97\x0d\x8e\x7f\x42\xe6\x7e\x2e\x36\x2f\x8f\xae\x4b\xb5\xce\xaa\x60\xa3\x71\xad\xf3\xc6\x8e\x38\xa9\xae\xe3\x85\xe4\x80\xa2\x68\x71\xe2\x23\x6c\x22\xb2\x0f\x83\x42\x48\x4a\xa7\x12\xd7\xa4\xb4\x24\x6d\x8d\xce\xdd\x67\xf7\x0e\xa8\x58\xba\xab\x98\x38\x99\x78\x44\xc5\xf2\x5d\xc5\xc4\xf9\xbd\x13\x2a\xb6\xdc\x55\x4c\x9c\x05\x3c\xa3\x62\xab\x6f\x5a\xbb\xa0\x62\x1f\xdf\x14\xfb\x49\xc5\x0e\xbf\x19\xe9\x94\x16\xc0\xf1\xae\x62\xb4\x59\x45\x11\xc3\x54\xec\xf4\x9b\x21\xcc\xa9\xd8\xf9\x37\xb0\x2d\xa8\xd8\xe5\xae\x62\x45\xd5\x71\x97\x74\x60\x31\xa6\x62\xfb\xbb\x8a\x19\xc7\xf7\x1b\x15\x9a\x75\xbe\x2a\x94\x51\xa1\xd7\x5d\x85\x90\xe0\x30\x9c\xf9\x46\x3a\xc0\x56\x37\xbb\x4f\x48\xf2\x64\xce\xba\x86\x01\x96\x22\x88\x45\xb4\x38\x06\x4a\xbc\xd3\x0e\x71\xc4\xd1\xe2\x3f\x89\x07\xef\xdf\xe8\x37\x0c\x5b\x63\x7e\xa3\x1c\xe7\xc0\x35\xec\xdd\xfd\xe8\xd3\x61\x04\xea\xe9\xb5\x2b\x64\xab\x90\xe8\x26\x8a\x53\x02\xef\x6c\x4a\x99\x39\x59\xfa\x21\xad\xe6\x45\x77\x23\x48\x99\xc1\x8e\xba\x9b\xf5\xe4\xd0\xd0\x39\x70\x63\x01\x20\x41\xdd\xc2\xbb\x01\x6c\xa6\x89\x10\x69\x7c\x57\x12\x35\x3e\xda\x4f\xda\x51\xd2\x15\x99\x38\x45\x02\xce\xe3\x9b\x4d\x38\xe5\x91\x88\x0b\xb9\xe1\xc2\x3c\x74\xb3\x6f\x91\x2d\xc2\xed\x3e\x68\xfc\x2c\x0d\xde\xf0\xbc\xcf\x02\xed\xb8\xd3\x6a\x2a\x05\xe7\xbc\x47\xe8\xec\x11\x3a\xe9\xda\x0d\x14\x53\x8c\xc2\x79\xd7\xee\x3e\x71\x29\xcc\x30\x6a\x99\x1b\x4d\x6c\x89\x13\x4b\x4c\xdd\x96\x9e\x6d\x4f\xec\xf7\xa1\xbf\xa7\x65\x0b\x35\x64\xa1\xb7\x2b\x7b\xbe\xe6\xbd\x61\xa9\xe4\xfc\x66\x53\xb3\x5c\x53\xc9\x0f\xda\x84\x3b\x10\xf5\x48\x39\x69\x94\x28\xcd\x52\x16\x9e\x4d\xa1\xdc\xa4\xbb\x65\x9f\x54\xb4\x23\x8d\x7c\xe7\xd3\xad\x48\xd2\xb7\xae\x8d\xd1\xd9\x54\x5e\x3e\x7d\xda\xd0\x63\x70\xd5\x88\x03\x43\xa5\x80\xd1\x5b\x7d\x2c\xe4\xb5\x2a\x45\x58\x46\x4e\x2b\x66\xf6\xec\xf3\x64\x9f\x17\x4b\x8a\xb3\x5d\xe8\x4e\xac\x38\xd5\xb1\xd1\xac\xfb\x30\xc3\xe7\x19\x3d\xa2\x41\x72\x2c\xe0\x9b\xf4\xf5\x62\x31\xda\xaf\xf2\x2c\x8c\x94\x91\xb5\x29\x62\xe8\x9a\x8e\x60\xf1\x56\x89\xd9\xa5\xe3\xad\x9d\xa2\x6d\x14\xe1\x66\x44\x5c\x43\x1f\x2b\x24\x09\xc4\xdb\x6f\xf2\xc8\x0d\x0c\x6c\x29\x42\x11\x18\xa4\xc4\xa8\x32\x42\x87\xa0\x2a\x07\x84\x8d\x43\x31\xe5\x74\x1b\xc9\xab\xa2\x28\x83\x1e\x89\x07\xfe\x4e\x24\xdc\x28\x2b\xe3\x3b\x0e\x32\x6d\x3e\x3d\x71\x58\x56\xd7\x11\x13\x66\x2c\x2f\xe2\xab\xd4\xc5\xe9\x36\x7d\x4d\xcd\xde\xb7\xa1\xd4\x43\xb9\x95\x77\xd6\x25\x4c\x01\x30\xe7\x34\x91\x81\x89\xb8\x81\xd1\xbd\x32\xd3\xba\xc3\x28\xb4\x86\xe3\x7d\xd0\xd9\xeb\x0b\x1a\xdc\x65\x57\x28\x41\x3f\xb5\xa7\x74\xbf\xab\xdf\x47\x4e\x6d\x49\x46\xcf\xfe\x36\x70\x27\xbd\x12\xd8\x88\x10\x3c\xc3\xc6\x41\x12\x74\xd0\xe5\x64\xc0\xc2\x74\x46\x94\x73\x4f\xde\x54\xf2\xde\xbc\xd1\x8c\xd9\x48\xeb\x46\x50\x76\xf0\x8b\xed\x04\xde\xf9\x8a\x4b\xa2\x37\x73\xb7\x79\xff\x8c\x97\x11\xe5\x4d\x79\xc7\xd6\x1e\xa3\xa2\x06\x38\xc0\x91\x15\xc2\x19\x47\xfe\x50\x26\xd3\x17\xd5\x09\xf0\xd6\x90\xf3\x56\x42\xa2\xf3\x6c\x80\x60\xbc\xf6\x34\x9c\x66\xf5\xcf\x6f\x81\x48\xd0\xfa\x6e\x9c\xf6\xa9\x3b\x13\x53\x7d\xc2\x61\xf9\xb4\xb0\xef\xa4\x14\xc6\x53\x7a\x34\x0e\x79\x78\x88\x31\x51\x3e\x10\x45\x6c\x7e\x4d\x86\xd3\x69\xed\x1b\x88\x16\xb7\x14\xb5\x4c\xdc\xf0\xec\x06\x48\x62\x51\xd2\x25\x0d\x7c\x29\x29\xe9\xd9\xad\x15\xf7\x69\x6f\x17\x4c\x58\x8a\x64\x00\x1d\x38\xed\x59\x62\x71\x57\x13\x9c\x5d\x26\x20\xda\xdc\x2e\x6a\xc5\x2d\xda\x24\xcb\x9e\x18\x2f\xb5\xbd\xea\x6d\x1a\xc9\x65\x9b\x77\x63\x1d\xfc\x64\xd1\x82\x1c\xb1\xb7\xab\x7c\x79\x2b\x3f\xc6\xf1\xab\xf4\xd6\x8c\xe0\x0d\x51\x16\xd6\x82\xaa\x64\x9a\x67\x25\x4a\x66\x81\xd1\xb3\x2a\x3a\x89\x0e\xea\x90\x54\xf7\x2e\x9f\x76\xa7\xb8\x02\xbf\xa0\x4d\x1e\xee\xf6\xed\x56\xe3\x4f\x1b\x67\xe4\xc3\x39\xa0\x6e\x0e\x7b\x5b\x24\x5e\x06\x7b\x7d\x6b\xbb\xbe\xec\x59\xec\x3f\xda\x99\x3d\xba\x45\xf2\xc6\x80\xaf\x2e\x79\xdb\x91\xf0\xba\x1f\x38\xa7\x88\x91\x6e\x36\xb0\xdc\x86\x85\xb3\x23\xf9\xe0\x59\x8f\xef\x83\x08\xaa\x8e\xfb\xf1\xc4\x0e\x4e\xd4\x3b\x3f\x05\x91\x84\x0f\xdb\xc8\xb7\x44\x06\x88\xbb\x5b\x99\x75\x7e\x6b\x0b\x97\xc6\xf4\x71\xbb\xe3\xed\xe8\x16\x09\x38\x65\x99\x2e\xf4\xac\x63\xc6\x39\x5b\x09\x55\xf9\xb6\x28\x9d\xbe\xe3\xb1\x30\x6d\x43\x73\xfb\xd4\x78\xd0\xd7\x6c\x1e\xbb\xea\x5a\xdf\xe3\x6b\x9f\x98\x2b\x6f\xeb\x02\x3f\x62\xdf\xc3\x81\x38\x8f\xc7\x59\x7a\x4e\xd0\x9b\x70\xab\xe1\x30\xee\xb9\x9f\x03\x92\x8e\xb7\x02\x6f\x0a\x3e\xff\x72\x04\xde\xd7\xb7\xd0\x4b\x50\x25\x79\xac\x9d\x6a\x14\x92\xc9\xe7\xb8\x1a\x8e\xfb\x4a\x4e\xed\x45\x1f\x9b\x8c\x64\x93\x8d\x79\x7f\xbb\x9f\xd2\xfc\x30\xf6\x2c\xe2\x90\xf9\x10\x8e\xdc\xd2\xe0\x0c\x92\x49\xe6\x93\xf3\x89\x44\x68\x47\x0b\x7e\xa3\x89\x30\x96\xcf\xcd\x1d\x5a\xe2\x8d\x4e\xb7\x79\xb6\x88\xd6\x08\x1b\x34\x45\x5d\xfb\xc5\x9c\x27\x5a\x70\xf0\xe0\xce\x3a\xe5\x63\x97\x5a\xaa\xdf\xe9\x40\xea\x0b\xdc\xe2\x39\xae\x06\x1b\x1e\x81\xca\x80\xfd\x02\x1e\x5d\x6e\x85\xaa\x33\x32\x9b\x21\xe9\x6f\xb7\x92\x41\x32\x1a\xca\x5e\x09\x5d\x8b\xac\xc4\xaf\xea\x05\x6d\x89\xe7\x93\x5b\x6b\x4b\x9d\x1a\x12\x37\x2e\x4b\x4b\xe7\xd4\x30\xd7\x3a\xea\xe9\x77\xf3\x1d\x6f\xe6\xa0\xfd\x61\x0a\x3b\x4c\x4b\x9d\xcb\xfd\xe1\x0d\x90\xd9\x8b\x27\xb3\x18\x2d\x36\x18\xc8\xdd\x41\x06\x2d\x3d\xf5\xc7\x9e\xc4\xb3\x39\xe1\xe0\x96\x68\xdd\x9e\x45\xdd\x95\x25\x1d\x4a\xbc\x20\x1b\x52\xc9\xca\x5d\x29\xd0\xcf\xcd\x8d\x74\x82\x06\xce\x4a\xc7\x38\x4f\x48\xd0\x10\x4a\x31\x52\x7d\x58\x56\xe5\x16\xc8\x9b\x47\x91\x31\xee\x4c\xcc\x1b\x67\x59\x1c\xf7\xca\x3c\x0f\x31\x04\xa5\x57\x5d\x49\x8a\xdc\xc4\x39\x3a\x40\x97\xf7\xa4\x2c\x75\x77\xd0\x41\xc6\x2b\x05\x65\xa0\x2b\x81\xce\x6e\xb9\x0b\xde\x77\x46\xfd\x9c\x8f\xf0\x54\x25\xf0\x3c\x3a\xe2\x9f\xbd\x6d\xac\xcd\x6e\x75\x31\x63\x05\xe6\x25\x60\x65\x03\xf4\xe5\x9d\x2e\x0b\x98\xb3\x78\x95\x6c\xe2\x0c\x45\xdf\xa1\x0e\xef\x6d\x5b\x61\x72\x50\xa3\xb3\x38\x0d\xc7\xb9\x4d\x71\x61\x92\x85\x1d\x36\xb5\xbf\x7b\x97\xdd\x53\x60\x7b\x49\x8d\x43\x76\x1f\x38\xc2\x09\xa6\x94\xf6\x26\x28\xea\xa4\x74\xbc\x98\x9b\x60\x64\x75\x1c\xe7\x89\x1a\x0c\x6a\xeb\x3e\xea\x08\x1f\xc4\x93\xdf\x50\xa1\xbf\xb3\xa1\x6e\x28\x4f\xb1\xdb\xc1\x94\x94\x74\x9a\x9a\x03\x62\x14\x87\x9b\x53\xe3\x19\x07\x35\xe2\xed\x57\x20\x35\xff\x63\x74\x8e\x3d\x3c\x58\x0c\x08\xcb\xc5\x5a\x23\x73\x71\xc8\xdf\x9c\x21\xf7\x1c\x73\x15\x1c\x5f\xb2\x11\x8a\x5d\x0c\xeb\x3c\x36\x17\xd1\xc8\x70\xa1\x6d\x11\xcc\x87\xfc\x2f\x4a\x4e\x53\x6e\x51\x2f\xe3\xa6\xb9\x9c\x4d\xc7\x75\x45\x9e\x64\xc3\x9c\xf9\xd6\x43\x5a\x64\x57\x77\x58\xdb\xf8\x86\xe7\xce\x6e\x58\xc1\xe1\x46\x9a\xf6\x84\x6d\x66\x34\xbb\x80\xb8\x06\x5e\xda\xe0\xa2\xbe\xd8\x74\x9c\xb0\x9a\x0b\x45\x84\x85\x4c\x7a\x23\x19\x11\x0c\x79\xb0\x8d\x33\x06\x84\x07\xca\x38\xb3\x31\x57\xa1\x39\xe8\x89\x7a\x47\x1d\xe9\x87\xfc\xc0\x01\x56\xb9\x74\x19\x55\x5c\x64\x7d\x43\xd7\xf9\x74\xad\x96\x1d\x94\x0a\x1c\xdc\xe8\x21\x34\xb5\x72\x7b\xda\x97\xeb\x93\xcb\x1d\xdd\x90\x72\x4c\x14\x67\xbf\x99\x48\x9a\x50\xfa\x0f\x8e\xfa\xd4\x6d\xd3\x71\x13\xd2\x94\x88\x0b\x5f\x96\x25\xf1\x86\x8b\xea\x67\x5f\xfb\x6f\x51\x0c\x74\x4b\xc1\x64\xc6\xa4\x93\x1a\xb6\xd0\xf1\xce\xab\x56\x95\x5b\x0f\x84\x8e\xb7\x64\x57\x13\xce\x41\xad\xcc\x37\x8c\xd0\xe3\x55\x3b\xeb\x7f\xa6\x29\xe4\xae\xd4\xa6\x2c\xe4\x0b\x7b\xbe\x8f\xf6\x23\x2f\xab\x8e\xac\xf0\xe6\xe9\xd5\x68\x27\x99\xd4\x3e\x76\x0d\xe7\x5d\x3b\x06\xe1\xb0\x90\x87\x87\x6b\xdb\x88\x68\xd0\x8d\x88\x1d\x7b\xec\x3d\x61\xaf\x15\xb6\x63\xca\x38\x7a\x09\x1a\x75\xec\xa2\xbe\xd5\xda\x9d\x80\x4d\xd2\xe8\x86\x12\xdb\x2c\xdd\xd3\xb1\x81\x98\xe9\xb6\x62\x49\x6c\x99\xf7\x5a\x53\x58\x68\xee\xfe\x93\x74\x16\xbc\x7e\x8a\xed\xaf\xf4\x32\x36\xa4\xad\x2e\x61\x9c\xb7\x39\x4a\xa3\xa6\x18\x08\x9e\x9d\xed\xe4\x5f\x48\xd0\x85\xb7\x85\x74\x6e\x92\x65\x0c\xcb\x93\x9d\xa2\x84\x33\xf5\x46\x97\x58\x5d\x52\xd6\x9c\xb3\x7a\x86\x6a\x2a\x6b\xbe\xfd\xcf\x9c\x17\x8b\x3e\xda\x84\xd1\x40\xca\x7e\x43\xaf\xc6\x11\x38\xeb\x5b\x3f\x8c\xb3\xa1\x26\x08\xc5\x80\xb8\x21\xf6\x39\xa8\xfc\xac\x3a\xce\x10\xb9\xd9\x7b\xbd\x72\x56\x75\xdc\xcb\x47\x61\xc4\xa4\xa5\x16\xad\xe7\xa6\x63\x6e\xaa\xa0\xbd\x16\xca\xed\xea\x2b\x74\x2a\x6f\x2e\x9e\x6a\xb6\x8e\x9a\xa9\x8b\xc1\xfd\xd0\x72\x46\x6d\xe6\xe5\x79\x36\x75\xb5\xa8\x0c\x5c\x7b\x4b\xca\x1b\x55\x49\x09\x4f\x08\xf3\x4f\x73\x01\x07\x39\x75\xb5\x54\x35\xdf\x3c\xc7\x3d\xe6\x9b\xd6\xa8\xb6\xb8\xdc\x63\xd5\xb7\xf3\xcb\x5e\x90\x75\x9f\x07\x49\xf6\x16\xb3\x1c\xf4\xb4\x0d\x36\x24\xa2\x67\xc3\x1c\x8b\x2e\x97\x5f\x53\x79\xe3\x0b\x38\xec\x6f\x48\xd3\xae\xe3\xdc\x11\x9d\x9c\xa2\x87\xee\xe7\x35\x8b\xf6\x4d\xd6\xa7\xe3\x61\xfb\x48\x61\x68\xff\x12\xe9\x25\x7d\xc9\x2d\x90\x97\xde\x9d\x0e\x4c\x28\xc6\x11\xc6\xea\x1d\xd6\x8b\x01\x13\x39\x1a\xe7\x57\x3a\xe8\x17\x89\xe4\xd6\x71\xee\x38\x70\x16\xe7\xe6\x94\x86\x76\x36\x20\xef\x97\x3d\xe0\xe5\xcf\xc8\x25\xcb\x8d\x91\xc5\x77\x49\x00\x5c\x10\x31\xf2\xdb\x4f\x7a\xdb\x2f\x7d\x43\x6a\xbc\xa4\xc6\x2f\x06\xb2\xf8\x94\xde\x66\x43\xfd\x0d\xb4\xf5\xd7\x17\x21\x0d\x5e\x07\x5b\x28\x71\x04\x33\x94\x4c\xa6\xaa\xfb\x7c\xa0\xcb\xcf\x51\x5b\xb3\x83\xd7\x42\x6f\x60\x5d\xa1\x6c\x58\x9c\xa1\x61\xf1\x8e\x46\xd0\x98\x0d\xed\x8b\x5b\x3a\xf2\x8e\x06\xcb\xdd\xd6\xc2\xf3\xb4\x32\xf6\x36\xd4\xb4\xf8\x09\x9b\x82\x0c\xba\x4a\x6b\xbf\xac\xa8\x04\xb4\x15\xf1\x4a\xd6\x55\x70\x43\xa7\x66\x45\x74\x71\x2e\x42\x72\xcb\x7a\x98\xf6\x57\x1b\xaa\xa5\xcf\x83\x4c\x04\x72\x4c\xfb\x96\xd7\xbb\xc8\x68\x38\x18\x08\x67\x84\x14\xe9\x06\x6f\x5d\x5c\x89\x2f\x74\x96\x97\x76\xb2\xae\x45\x3e\xad\x2b\x3a\x24\x42\x96\x1a\x71\x2f\xca\xef\xd8\xe9\x31\x06\x95\x7b\xd8\x11\xbc\xe3\x7c\x60\x8b\x1c\xd1\xf3\xf1\xc0\x2e\xf6\x8d\x2c\x44\x20\x3d\xe7\x03\xc9\x74\xf4\xf8\x9e\x48\xf1\xef\x6b\x31\x34\x14\x65\x39\xe0\x9f\xaf\x1e\x71\x25\xab\x17\x5a\xe0\x81\x56\x46\x30\xa6\x55\x70\xb6\x9a\x84\x64\xc7\x99\x46\x9a\xbf\xcb\xc7\x98\xa2\xbf\xdf\xf9\xe4\x4b\xb3\xb4\xb6\x50\x9b\x6c\xcb\xfd\xa1\x0f\xbd\xdb\x1b\x34\x19\x4f\x80\x3f\x6d\xc0\x12\xfc\x1e\x97\xed\x96\x72\x49\x07\xe1\xe5\x48\x3e\xd8\x43\x9a\x20\x6e\x8a\x36\x27\x3b\x95\x27\xc7\x65\xdb\x8b\xc0\xe5\xf9\xa3\x6e\x75\x98\x3a\x66\xd1\x2c\xd3\xac\xdd\x48\xc6\x49\x86\x19\x3b\x11\x09\x08\x16\x4d\xd9\x8d\xe3\x64\x37\xe9\x95\xdd\x44\xca\xae\x84\x0c\xd0\x17\x33\xd1\x3e\x27\x5d\x21\x65\xf6\x7b\xf8\x26\xcd\xe1\x96\x44\xcb\xc8\x26\x9f\x89\x7b\xaf\x1d\x3a\xe9\x9b\xe0\xe2\x1e\xf0\xa1\x53\xa1\x53\xbc\x13\x1b\x27\x6a\xbe\xbc\xa7\x3c\x57\x2f\xbf\x26\x5f\xbf\xe3\x26\x74\xc4\xe5\x80\x3a\x38\xdc\xee\xba\x7c\x28\x73\xfb\x5c\xc8\xd1\xd0\xee\x02\x1e\x93\xfa\x73\x40\x1e\x4c\x76\x37\x3a\x3a\x0f\xe7\x05\xaf\x82\xe9\x4a\x36\x5f\x69\xf0\x9e\x17\xed\x8e\xa7\xac\xf4\x91\xa0\x1a\x9c\x0c\x61\xfe\xe7\xd5\x7c\x20\x55\x24\xdd\x43\xa9\xa1\x83\xde\xd6\xbe\x8a\x1c\xc8\x5b\xaf\xb4\xa1\x65\x90\xce\xdc\xfa\x7c\x28\x14\x69\xbb\xbf\xf3\xd6\xdd\x70\xdf\xa7\x3d\x89\x96\x8b\x21\xd0\x54\x86\x83\x60\x4b\xe3\x12\x11\x3f\x47\x53\x6f\x3c\x95\xe6\xdf\x11\x8e\xe5\xad\xca\x68\xb2\x4d\x4c\x6d\xd0\xc9\x25\x7d\x13\xcb\xf8\xe7\x9d\xb8\x20\x65\x83\x54\x66\x77\x16\xe8\x83\xa1\x9e\x42\xb1\x3b\xb5\xe3\x28\x52\xc7\xf1\x66\x2d\xc9\x94\x5f\xb1\x11\xdc\x01\xee\x43\xb5\x5a\x8e\x5b\x35\x4f\xce\x67\xb4\xa0\xa7\x1c\xbe\xf0\x58\x00\x3f\xcc\x80\x6e\x1d\xe7\x91\xe7\xdc\x10\x55\x53\xfb\xa8\xb6\x60\xe1\x50\x43\xfe\xc9\x8e\xe9\xf6\xfe\x9a\xb1\x8a\xcb\x14\x68\x6e\xae\x2c\xcf\x0e\x9b\x81\x6c\xf6\xc6\xfc\x63\x0b\x86\x1e\x74\x1c\x64\xa7\x74\xf6\xc0\xa3\x2d\x12\x72\x92\xde\xd9\xd2\xcb\x5b\x33\xb6\x27\x33\xb6\x71\x5a\xba\x02\xe9\x1d\x0f\xc8\xf2\xde\x46\x72\x23\xb5\x1d\xeb\x86\xc3\xca\x5c\x61\xda\x47\xd2\xbd\x34\xf2\xd3\x46\x85\xe2\x4e\xe4\xad\x80\x68\xda\xc7\xaf\x97\xb7\xc2\x1e\xb1\x92\xfa\x52\x6c\xfa\x1e\x0c\xb4\x51\x28\x6c\x5b\x7c\x8e\xc9\xb0\x64\xa8\xb1\x70\x70\x5f\x2a\x4c\x5f\x62\x69\x56\xfd\x14\x4e\xe7\xf3\xfe\xe6\x94\x11\x42\xef\x34\x8a\xf1\xd6\x03\xe3\x58\x84\x0e\x18\x0f\xe5\xeb\x6c\xdf\xbc\x8d\xa1\x62\x22\xae\x71\x94\xd7\x8e\xf0\xc8\x4f\x77\x8f\x7c\x26\x8e\x8d\x9d\x55\x6d\x0b\xe5\x9b\x16\xa3\xd2\x1e\xb1\x9d\x08\xa2\xa9\xa5\xb5\x36\x5d\x79\x07\x64\x52\x9a\x5e\x26\xa4\x0b\x41\xaf\x12\x4f\x67\xb7\x76\x1f\x9c\x0d\x5e\x3b\xbe\x86\x98\x49\x9e\xe7\x9d\xe3\x71\x4f\x27\xdf\x0c\x88\xbb\x2f\x53\x9e\x1d\x50\xf3\x77\x06\xb4\x75\xf3\xa2\x69\xa3\xf9\xcd\x80\xa0\xcc\x4b\x89\x06\xba\xda\x4f\x4e\x34\xf0\x46\xea\xe9\xe9\x9d\x2d\x5f\xd4\x76\x13\x0d\x36\x4c\xe5\x7e\x76\xac\xc5\xb7\xdf\xde\xcd\x16\xb8\xfd\x6b\x7d\x79\x04\xdf\x02\x20\xf8\x00\x71\xa6\x45\x35\xbe\x47\x37\x5e\x82\x5c\x69\x20\x98\x65\x73\xe3\xae\x01\x3e\xed\x23\x9c\x04\x65\x19\x61\x2a\x31\xa3\x67\xb1\x41\x7b\x95\xbd\x4d\xe9\x37\xbf\x47\x60\xc3\x7b\xf9\xb6\xa2\x0d\xe8\x92\xfc\x33\xc5\x91\xc5\x58\x2f\xd4\x7d\x89\xef\x19\x0b\x91\xe1\x59\xdc\x8b\x33\x36\xe8\x5c\xbe\xdf\x21\x61\x0f\xc8\xc9\x76\x28\x22\x89\xc8\xb2\xad\x96\x05\xb0\x00\x6a\x71\x4f\xfb\x60\x25\x48\xcb\x45\x9c\x12\x04\xdc\xa8\x7b\x3a\x62\x77\x2b\xaa\xf3\x77\x7a\x0e\x1a\xbb\xc2\xa4\x3e\xf3\xb8\x74\x75\x39\xbc\x2a\x82\x95\xf6\xd6\xae\xcb\x4a\xbb\xa9\x5b\xca\xc4\x0b\x0d\xb4\x99\xc1\xd7\x25\xad\xa8\xad\xb9\x2b\x61\xa1\x59\xe6\x31\x70\xc1\xbc\xae\x8d\x94\x06\xdd\xa8\x5e\x6e\xd9\x2c\x4c\x36\x91\x33\xda\x2b\xcf\xef\x4b\x5f\xbc\x8d\x43\x80\x05\x7d\x5e\xde\x49\x4d\x84\xd5\xe0\xe3\xda\xf6\x88\x74\xc8\x03\xf9\x1b\xf7\x1b\xb2\x3c\x9b\x2a\xdc\x48\x44\x8a\xe1\xda\xd3\xe4\x6e\x88\xf5\xfd\x4e\x6b\x29\x2e\x9f\x7f\x63\xc5\xf1\xee\x73\xeb\x6f\x23\xae\xe3\x8e\x35\xe8\x64\x28\x17\xd3\x91\xce\x26\x38\x1e\x77\x61\xa8\xf9\xdd\xed\xb1\xe4\xaf\xe0\x2b\x2a\x4e\xee\x38\xfa\xf4\x9c\x08\x7d\x41\x11\xff\xe5\xbb\x17\xc8\x92\x28\x8c\xab\xc0\x8e\x68\xbe\xab\x78\x39\x22\xd6\x0c\x85\x4e\xd0\xdd\x6d\x0c\x44\xa8\xa5\x67\x77\x3a\x82\x97\xde\x29\x20\xe4\x9d\x56\x02\x69\x6d\x64\x9c\xfc\x24\x3c\xee\xe3\x3f\x0a\x90\x48\x5d\xe1\x1f\x62\xfc\x5f\xb1\xd5\x81\x26\xf4\x9d\xd0\xbf\xf9\xbb\x0d\xe1\xbb\x5d\x59\x2d\x09\xbf\x0d\x8b\x3b\x49\x36\x6b\xac\xdd\x15\xc1\x72\xe1\x60\xb7\xa3\x92\x6f\x39\xa0\x3d\x6a\x62\xdc\x27\x5f\xdc\xeb\xd0\x3a\x6d\xe2\x8f\xa9\x91\xaf\x70\x4a\xb4\x3a\xc3\x7f\x67\xb8\xf4\x0f\xeb\x92\x3d\x05\x84\x8b\x57\xc3\xcd\xf0\x2a\xa1\x16\x64\x0e\x2e\x5a\x95\x83\xaa\xe3\x1c\x54\x99\x05\x19\xf6\xb0\xae\xa2\x93\x4a\x70\xa7\x05\x85\x71\xb0\xfd\x1f\xdf\xd3\xa5\x36\xf4\x8d\x14\x4f\x02\x24\xbd\xb7\x24\x15\xf3\x49\x62\x1d\x55\xf1\x84\xb9\x09\xda\x61\x2f\x65\xb5\xb0\xe5\x38\x7e\x86\x1a\xec\x1b\x96\x3f\xad\xe7\x6d\xe1\xad\xe4\x50\x2f\xe1\xbd\x19\x9c\xd1\x35\x6c\x97\xac\xfa\xcb\x2b\x60\x64\xfc\x0e\x7b\xee\xe5\x89\xe2\xec\x41\xb0\x36\x4b\x97\xcb\x7b\xb1\xc8\xde\xef\x6d\x58\xe5\x8a\x46\xb9\xbe\xb7\x1e\x9d\x0f\x66\xd9\xf7\x36\xce\xf2\x90\xb2\x8e\x48\x1a\x44\xe6\x07\x0c\x59\xb4\x5c\x90\xb6\x79\x49\x3f\xf0\xc2\x6f\xb3\xbe\x3d\x78\xed\x9e\x52\x70\xec\x09\x81\x71\x7a\xbf\xb1\x3c\xbc\x8d\x73\x21\xc5\x83\x6e\xb0\x5b\xba\x4c\xfd\x80\xd8\x4f\xcc\x1e\x04\xd4\xb9\x28\xc0\x2e\xf5\xc6\xd4\xd8\x00\xc7\xc6\xc3\xe2\xd0\xfb\xa3\x01\x9b\xbc\x97\x0f\x52\x21\x29\x48\x0d\xf8\xa0\x4c\xd6\xc4\xdf\xc9\x8f\x94\x20\xa1\x0f\xa4\xda\x81\x60\x94\xdb\x3f\xbb\x2f\x37\x7c\xf0\x20\x5b\x3c\x78\x10\x4d\x79\x6f\x77\xda\x08\x71\x2f\x3b\x72\x5f\xe4\xfe\x33\xb3\x85\x67\x80\xeb\xe7\xe2\x62\xba\x2d\x27\x19\x66\x68\xa6\x48\xb3\x94\x12\xfe\x67\x32\xa2\xb5\x69\xef\x3f\x90\xf7\x32\xcb\xfc\x8c\xd4\x87\x5c\xca\xd4\x13\x3a\x99\x15\xb7\x4b\x27\x6a\xb1\x75\xda\x85\x39\x22\xf1\x7e\x2c\x2b\xb1\x6a\xcd\x79\x82\xdb\x70\x0f\x44\x1d\xbd\x8d\x0e\x4c\xd4\x12\xb7\x0c\x70\xa3\xdb\xbb\x5f\xda\x97\xf8\x89\x5a\xc7\x83\xd6\x7b\x1a\xc2\xa3\xba\x6b\xf4\x25\xf3\xee\x95\x5c\xdf\xdb\xc7\x8e\x04\xf0\x65\x54\x32\xc1\xf3\xde\x23\xe1\xba\xb4\xf5\xa1\x3b\x15\x17\x20\x9d\x18\xb7\x25\xb3\x30\x5e\x66\x68\xf1\x13\x7d\xf0\x7e\x81\x5e\x8e\xc8\x3f\x88\x05\xf1\x9d\x8c\xbc\x2a\xd9\x95\xc0\x57\x93\x18\x9a\xa3\x59\x23\x3e\x7e\xb6\xf9\x63\x3c\x42\xa1\xa7\x10\xd5\x2d\xe9\x77\x40\xa7\x29\x5e\xc9\xe4\x2c\x36\xa3\xfe\xd8\xe4\xe7\x23\x17\xd7\xac\x3d\x5b\x64\x31\x03\xbe\x96\xee\x4d\x8e\x25\x93\x36\x2a\x29\x2d\x0d\xba\x96\xfc\x27\x29\xe1\x1c\x6f\x74\xce\x14\x4c\x48\xfb\xe8\x5b\x79\xc6\x4e\xc3\xd7\x87\x1d\x52\x54\x80\x70\x4c\x0d\xbc\x55\x85\x8d\xb2\xb9\x85\x81\x7b\xfc\xc4\x4d\x42\xa6\x28\xfe\x8d\x13\x7d\xdb\x16\x16\xd3\x36\x04\xed\x6e\xcc\x1f\x4b\x15\xcc\x55\xba\x1b\xf9\xb7\x6c\x24\xe8\x45\x78\x29\xb6\x44\x69\xbf\xad\x56\xca\xb7\xfb\x24\x9d\xf2\xb5\xfd\x06\x84\xb3\x47\x2d\x67\xd0\x37\x50\x82\x7b\x6a\xe2\x9e\x4a\x90\xef\x8a\xae\x2d\xdf\x5b\x4c\x48\x22\xd7\xc9\xf9\xb5\xbe\x6e\xa8\x49\xb1\xc2\x8d\xd2\x0f\x1a\x35\x6c\x04\x30\x03\xfd\x6e\xce\xa2\xb9\x39\x6b\x44\x04\x95\x5b\x4a\x9b\x4e\xf9\xa6\x07\xfb\x4d\xc6\xe9\xef\x7e\x6c\xd2\x25\xc5\xbc\x79\x6f\xb2\xe8\x67\xdc\x9a\x6f\xb5\xad\x16\x0f\x6e\x1d\xe7\xe0\xf6\x52\x5c\x23\xf0\x93\x83\xb4\xa6\x57\x8e\x33\xbd\xda\x37\x5f\xdc\x63\x5a\xeb\xd3\xb6\x56\x10\x77\xca\x1d\x4f\xdc\x68\x61\x38\xfd\x4f\x72\x1a\xbd\x3e\xca\x45\xba\x22\x92\x3c\x7b\xc0\x35\x48\x7a\x67\x9d\x94\xa2\xd6\x82\x8e\x88\x2f\x69\xb5\x4e\x89\xdd\x47\x4f\xc2\x63\x1e\x93\x64\x8c\x1e\x25\xbe\x2b\x5d\x7b\x2b\xd5\x2e\x62\x7c\x7f\xb0\x18\x13\xf3\xfe\xc4\x2a\x07\x3d\xb9\xdf\x94\x79\xe0\xdf\xbc\xdd\x2e\xa3\x19\x6e\x8b\x7f\xfe\x0a\xca\x90\xf5\x94\xd0\x2f\x9a\xbc\x3d\x89\xcb\x2f\x85\x4b\xb8\x22\xae\xa6\x21\xe2\xba\xdd\xa8\x66\xae\x5c\x60\xfd\xf7\x6b\xec\x7b\xe6\xb6\x0b\x7b\x5e\x26\x91\xec\x7b\x7d\x4f\xe7\x32\x69\x4b\x93\x59\xe4\x94\x56\xcc\xec\xe9\x77\x1a\xed\x26\xb4\xc7\x00\x18\xee\x53\xa3\x05\x4d\xc9\x12\x55\x1f\x3f\xa6\xd6\x92\x47\x6d\xe4\x5a\x9b\xec\xec\x9e\x85\x1f\x89\xfa\x01\x06\xf8\x7a\x33\xb2\x2e\xdf\xa9\xde\xea\x71\x5b\x94\x33\x7c\x0f\x52\x5f\xb5\x00\xbd\x3e\xec\x96\xe7\xac\xe1\x1c\x0a\x03\xa9\x22\x4e\x28\x56\x1a\x3c\x23\xfd\x7c\x87\x58\x7c\xa2\xcf\x30\x48\x76\x00\x9c\xb1\xf6\x8e\xbc\x20\x46\x45\x7a\x69\xf6\xab\x1e\x89\xce\x51\xd7\xf2\x46\x24\xcf\x1e\x39\x14\xfd\x83\xe6\xec\xe0\x91\xb8\x26\x5e\xef\x54\xd5\xc6\xc6\x83\x43\xbf\xda\xcb\x23\xe6\xd8\x2e\xbd\x8d\x4f\x3e\x90\x29\x9e\x90\xba\xc0\x1f\xbe\x4a\x6b\xc7\x8f\xb2\x4b\xf2\xc7\xde\x6b\xc8\x85\xb3\x9b\x2b\x6b\x7d\xa0\xe3\x38\xfe\xfe\x7d\xa9\xaa\xf1\x2b\xd3\xea\x38\x7d\xdc\x40\x94\x53\x2a\x5d\x0e\x7d\x7e\x25\x62\x39\xa3\xa9\x3f\x2f\x2f\xf0\x0d\xc5\xee\x9c\x15\x49\x6a\x88\x59\x31\x8b\x71\xdb\xdb\xc7\x27\xd3\x18\x3c\x68\xea\x6a\x38\x4e\x80\xd2\xe9\xb2\xaa\x27\x12\x35\x67\x9a\x98\xcb\x3b\x69\x21\xda\x19\x69\x00\xb1\x48\x33\xc3\x3d\xa4\x98\x15\xad\x71\x6f\x2e\x29\x9c\x00\x83\x12\xe1\x85\xbe\xb8\xd7\x8b\xd3\x58\x06\x3f\x9f\xac\xef\xe8\xa3\x6a\x59\x38\xcb\x6d\x9c\x64\xfa\x05\x40\x3b\x2e\xb6\x92\x0b\x69\x65\x18\x2c\x2c\x1f\x4a\x48\xa7\x90\xa8\x5b\xc7\x09\xab\xcc\x44\x0b\x9a\xa5\xa5\xa1\x02\xdc\x5d\x18\x13\x53\x7c\xd8\xd0\x53\x79\x50\xff\xfe\x2c\x89\x09\x9a\x6e\x22\x58\x40\xb5\xae\xda\x58\xf2\x15\x29\x57\x74\xa1\x53\x83\xef\x5e\x16\xf1\x79\xe2\x50\x02\xfb\x1e\xa2\xaf\xca\xf0\x2a\x09\xb7\xca\x10\x96\x4f\xc9\x87\xf9\x93\x34\xa0\x90\x0a\x9f\x97\x32\xe5\xce\xf9\x93\x94\x1e\x76\x44\xc0\x6d\x5f\x9f\xa4\x77\x4e\xae\x95\x47\xb6\x45\xcd\x2c\xb3\x24\x8b\x9f\xd8\x4a\xb6\x6c\x9b\x82\x22\xae\xf1\x92\x15\xa2\x36\x92\xae\x92\x76\x8c\xa7\xce\x4c\x7e\x40\x57\xa5\xbe\xfe\x12\xca\x0a\xd3\x86\xa0\x98\xfd\x5f\xd6\xa2\x5b\xd3\x75\xa0\x87\xa2\xe8\xf2\x61\x43\x8d\xdd\xbe\x5a\x95\xf7\x02\xf6\xb7\x55\x72\x69\xc5\x30\x43\x7e\x65\x67\x17\x9f\xa4\x26\x91\xf4\x4a\x0b\x83\x37\x64\xe6\x4f\x86\x45\xfc\x44\x6f\x1d\x3b\x43\xe9\xa7\xf9\xd7\xfc\xab\x09\xf4\x6f\xf5\x60\xc7\xbb\x26\xe3\x83\xaf\x13\x5c\x71\x39\x51\xe0\x80\x0a\x14\xf4\x65\x49\xff\x0e\xa9\xc0\xd1\x83\x9c\x78\xbe\xe7\xfa\xe4\x51\x4e\x3c\x65\x1a\x86\x6f\x11\xc0\x0e\xbc\xd4\xd7\x08\x68\xd9\x61\x5f\xf0\x02\x43\x4d\xad\x75\x74\xff\xc5\x78\x3b\xa5\xfb\x04\xae\x75\x9b\xb7\x68\x59\x80\xe8\xb8\xf0\x64\x77\x28\x37\xf1\x94\xce\x13\x39\xc6\xc3\x87\x4d\x66\x7b\x44\xe6\x2a\x35\x85\x2b\xdf\xdd\xa7\xae\x5b\x5b\x2a\x1c\x6e\x07\xd1\xdc\xfd\x14\x36\xe8\x3e\xc7\x38\x08\xe7\x26\x2d\x4a\x48\x96\x9c\x4b\xbf\x46\x8c\x8f\xfa\x62\xbc\x86\xdd\xd5\xa6\xd1\x61\xc2\x19\x3b\xff\xd9\x52\xa8\xa5\x3c\xb1\x56\x70\xbb\x99\xb0\xae\xc3\xff\x4c\x18\x37\x71\x16\x4c\xca\xed\xda\xd6\xf8\xc4\x33\xff\xb3\xfd\xd9\x6b\x5d\xee\xf0\xa7\x9a\xec\x97\x8d\xc4\x74\xc1\xe3\xe3\x20\x75\xdb\x08\x7a\xa6\x08\x29\x1f\x25\xa6\x20\xd6\xcf\x16\xf9\x6c\x85\xd3\x9a\x25\xfa\xcd\x15\x89\xe5\x5f\xf4\xc9\xc4\xbe\xba\xdc\x6c\x12\x97\xe1\xcf\xc9\x36\x64\x5f\x68\x5e\xb7\xac\xfd\xbd\x6e\x3b\x5c\x97\x0e\xee\x9f\xd1\x09\xa2\xfc\x5e\xd3\x1e\x8c\x71\xc9\x9e\x38\x18\xf4\x05\x87\xa7\xe0\x2f\x5a\x92\x56\x7f\xf6\x8b\x62\xf6\x88\x01\x15\xf4\x6f\xdf\xd7\xab\xcf\x4a\xb3\x8c\x3e\x5d\x96\x3e\xbd\xf1\x79\x2d\x22\xf3\x88\xfe\xa1\xcf\xea\xe3\x9e\xdd\x7e\x95\x33\x98\xdc\xb3\xa0\xfa\x51\xfe\xdd\x26\xf7\xf8\xb5\xca\x77\x05\x54\xe2\xbe\xe3\xc4\xfd\x8f\xcd\x1f\x76\xe2\xcf\xc2\x86\xb1\x73\xc3\xab\xe2\xad\xee\x38\x6f\xf5\x73\x51\x93\x0f\xef\x0b\x0e\x4b\xf5\x53\x0a\x3f\xc9\x28\x0c\xb0\x27\xc7\xf9\xf6\xc2\xab\xab\x49\xbf\xea\xe3\x5e\xbe\xe0\xa3\x2b\x99\xf2\xfc\x57\xe5\xa2\x4a\x77\xe7\xe2\x58\x7f\x95\x75\xbd\xb5\xd4\x01\x00\xef\x09\x72\x93\x0d\xf3\xb0\x6c\x03\x97\x8c\x52\x69\x6b\x7f\x6a\xba\x6b\x06\xcd\xe2\x82\xc0\x3c\xb0\xbf\x9f\x87\xe1\x0b\x83\x92\xb7\xa2\xe1\xc8\x53\xbe\x7c\x23\x0a\x69\x5f\xb3\x17\x7b\x36\xc3\xb7\x75\xa6\xf2\x32\x7b\x53\x93\x39\xe0\x9b\xaf\xbb\xfe\xb6\xaa\xf8\xd9\xa1\x8c\x6a\x85\x5f\xd6\x2a\x6f\xf9\x67\xbf\x98\x2b\xe4\x54\xb2\x66\x71\x15\x7c\x5b\x82\x0c\x46\x5f\xce\xd4\x4e\x7f\xe9\x82\x7e\xd1\xb8\x5e\x31\x97\x86\xf2\x45\xf8\x6c\xa7\xb3\x85\x71\x41\x7e\x78\x71\x5f\x32\x96\xa5\x5c\xbe\x7c\xff\xb3\x0b\x1f\x1b\x8e\x33\x01\x70\x8e\xaa\x0b\xd2\xa2\x2f\xe9\x0a\xf2\x29\xfa\xf0\xc8\xb4\x9d\xf2\xc9\x8f\x2f\x20\x9d\xd3\x60\x88\x61\x75\xb6\xb0\x79\x56\xdd\x5d\xb5\x69\x62\x7e\x78\x0a\xd2\x2f\xfa\x20\x94\xf8\x1b\xca\xc7\xb1\xd1\x66\x07\xfa\x37\x11\xb8\xad\xfc\x46\x5e\xbf\xcc\x5e\xf5\x47\x4b\x71\x9f\x79\x0c\xa0\x80\xd6\x31\x06\xda\xcf\x5d\xf6\x55\x6b\xdf\xf3\x9d\xd4\x5f\xbf\xb9\x0a\x89\x2d\xd6\x80\xea\xb0\x9f\xe0\xb5\x6a\xb7\xb8\x31\xe3\xe7\xe3\x77\xb0\x5f\x0e\xbf\x9b\xd0\x6d\xe8\xb9\x8f\xe1\x65\x9b\x83\x69\x76\x56\xf5\x36\x2f\x09\x95\x97\x32\x19\xfd\x99\x1b\x1f\x61\x3a\xd6\xba\xd3\x57\x0d\x36\x25\x59\x8a\xb3\xe0\x05\xb9\x16\x68\xb6\x5e\xb4\x92\xf5\x37\x2d\xf1\x19\x35\x52\x62\x7f\x69\x6d\xec\x0f\x5a\x32\xae\x69\xe9\xdf\x5c\xa0\xb0\x9e\xd3\x2f\xba\xba\xf7\x7a\xb9\xa2\x07\x98\x7f\xfc\x8a\x26\xf3\x51\xd3\x6e\x93\x4e\x4f\x1b\x17\x78\xf2\xf5\x35\xab\x2d\x10\xf7\x16\x08\xa1\x88\x6c\x83\x71\x37\xd4\x8b\x70\xbb\x7f\x02\x2d\xff\x9b\xfe\xf9\x78\x0e\x9b\xa0\x83\xf3\xeb\xb7\x07\xba\x5c\xfd\xe1\x5b\x2a\xa3\xe0\x8e\xa7\x0d\x72\x6e\xd8\x43\xdb\xe5\x1d\x21\xf9\x83\xdf\x42\x66\xbc\x11\xdb\x59\x93\xc4\xa4\x0d\x13\xf4\xa4\xbc\x55\xf5\x76\xf6\x3d\x98\x2b\x21\x6d\x2e\xb3\x17\xf5\x8b\x25\xc7\x46\x1b\x86\x7e\xf1\x46\x08\x6d\x0e\xdc\xf3\x7e\x2c\xc7\xa6\xbd\xe2\xf6\x57\x21\x4f\x06\xf2\x2e\x11\xdf\xd4\x34\xd8\x58\xc0\xac\x24\xe9\x53\x4c\xe5\x58\x08\xd6\x93\x78\xc6\xda\x5a\x56\x33\xab\x79\xb5\xe7\xcc\x44\x60\x1a\x0b\x5f\x8e\xf9\x3b\x46\x2e\xa0\x74\x04\x9a\x15\x87\x1b\xbf\xbe\x50\xfa\x6d\xe9\x86\xb9\x65\x62\x7d\x25\x7c\x32\xb7\x36\xe0\xf0\xe3\x4e\x82\xc4\xb7\x5e\x70\x61\xed\x83\xc1\x9d\xc1\x3b\xdb\xd9\x09\x99\xc8\xa7\xa5\x38\x4e\x1b\x46\xbb\x7b\x62\x0b\x73\x6e\xe4\xcf\xe6\xd6\xe0\xb7\xd2\x72\xdc\x84\x4c\x33\xd6\x20\x38\x10\x9a\x23\xf3\xc9\x05\xbd\xa0\x5d\x2a\x7a\x99\x93\x62\xbe\xe3\x65\xa0\xbd\x2b\xae\xbd\x8e\xc0\xd5\x47\xa2\x3c\x1d\xca\xfb\xb4\x5d\xba\xc3\x1a\x85\xfe\xc1\xf4\xad\x36\x9e\x40\x3d\xdf\xca\x7d\xd0\x4b\xb9\x54\x4d\xb4\x2b\xaa\x89\x8e\x77\xb7\xab\x60\x52\xe8\x71\xaa\xcf\xb7\x6f\x42\x2f\x8a\x8b\xbe\x45\xae\xe8\xdb\xb8\xc8\x4a\xb9\xe2\x51\xfc\x4a\xbc\x78\x14\xa8\x60\x90\xdd\xc3\x49\x09\x66\x31\x92\x12\x70\x9f\xcf\x8b\x18\x9a\xcf\xde\xcc\xa6\x60\x27\xf6\xf6\x20\xa3\xdf\x9d\x5d\x09\x3f\x73\x32\xaa\xec\xd0\x3d\xcd\xa6\x8c\x26\x3e\x8a\xb7\x10\xda\xa5\x38\x3b\xa4\x2b\x91\xc7\x37\x2f\xed\x3c\xa1\xf0\xe4\xa3\xa8\x23\xba\x68\xa3\x26\x09\x72\xf5\xcb\x2e\x6c\xd6\x99\xdf\xc6\x14\x8d\x35\xd6\xdc\x4d\xdf\x6c\x9d\x91\x6c\xcc\x0d\xc4\x0d\xbd\x11\xa8\xad\xb7\x16\x9e\x28\x94\x4b\xfd\x02\x23\x2d\x16\x55\x96\xf1\x42\xf8\xdb\x00\x78\x8b\x2b\xa1\x72\x93\xd5\xc3\xae\x10\xb1\x1b\x95\x93\x92\x34\x37\xd6\x91\x67\x77\x9b\x19\x11\xf2\x64\x79\x51\x3a\x0d\x86\x3b\x1e\x25\x73\xb1\x18\x91\xd7\x81\xae\xd5\xe4\x1f\x78\x2c\x1f\xb2\xc4\xcc\xda\xf0\x52\x5f\x1f\x89\x97\x46\x8d\x89\x15\x0d\xb7\x2e\xee\x5c\x90\x1a\x91\x3c\x88\x2f\x32\x66\xc8\xc4\x42\x20\x63\x1e\xd9\x08\xda\x84\x4f\xd4\x90\x4f\x79\x3d\xb2\x4c\xf2\x95\x0c\xaa\x95\x2f\x67\x73\x05\x73\xe2\xa6\xfc\xfb\x4f\xd4\xe9\xfe\xc8\x32\xd2\xe9\x58\x6c\x1d\x12\xd7\x11\xd4\x2f\x1e\xc5\x66\x98\x91\x9e\xa5\x05\xf6\x6d\x81\xdd\x0b\x4c\x3c\xee\x2e\x2b\x72\x5b\x44\x43\x6e\x38\x14\x2b\xe3\x78\x2c\xe8\x6c\x3b\xec\x0a\xde\x0f\x88\x22\x0f\x47\x76\x81\xcd\x8c\xa1\x6c\x1c\x47\x1c\xd8\xf9\xb3\x2f\xaf\x7f\xdb\x38\xb4\xd9\xc4\x5f\x90\xf0\x4a\xd1\x40\xb2\x3d\x7b\xe2\xb3\x7c\xfc\x71\xdf\x1c\x6c\x36\xe1\xc8\x93\x9d\xb1\x45\x2d\x5e\x9e\xa7\xa6\xbd\x23\x02\xe6\xc1\x71\x1e\xf6\xfb\xdf\x43\xd8\x2a\x9d\xe6\xd4\x91\xb3\x43\x22\x20\xde\xec\x19\xea\x4c\xb3\x6f\xbb\xba\x2d\x35\xc2\xf5\xdd\x90\xfc\x31\x53\xc2\xdf\x69\x19\xd3\x66\x45\x6b\x2a\xbd\x16\xb7\x6a\x75\xec\xaf\x4d\xf3\xbd\x90\x67\xca\xf2\xac\xf3\xb1\x50\xb0\xed\xc6\x7f\x4b\xdc\x04\x2f\x37\xfa\x64\xae\x7c\xe6\xe8\xb2\xcf\x5a\xb1\x1b\x24\xf2\x5e\x53\x06\xfa\x82\x69\x02\xb3\x68\x01\xf2\x1d\x57\xfb\x72\x98\x1c\x42\xc0\x8a\x16\x9d\x76\x3c\xac\x7d\x0c\x2d\x39\x38\xfa\x8b\x71\x4b\x73\xc8\x55\x39\x00\x8b\xc3\x44\xf0\xa6\x88\x83\x2a\x9f\x20\xd4\xbf\x38\xd2\xde\xc0\xe8\xe7\x51\x7d\x5d\xba\x4a\xb5\x69\x37\xee\x79\x1b\xa2\x26\x15\xd0\x4c\xc4\x46\x1e\x8c\x60\x26\x4f\x7d\xb1\x64\x5e\x71\x2a\xde\xd9\x81\xf3\x56\x75\x9c\x55\x4d\xb3\x9d\xa6\xb8\x5d\xa9\xc5\xe7\xfc\xf4\x4f\x75\xce\xdd\xcd\x90\xde\xae\xbd\xa1\xb3\xa0\x4b\x30\x38\x5c\x7f\xae\x2c\x1d\x84\x13\x3b\xf3\xfa\xa0\xb5\xb2\x5b\xf9\xec\xb8\x51\x52\x68\xd9\x55\x5c\x3e\xb2\x67\xf2\xcc\x61\x0c\xfe\x40\x9e\x05\x6a\x23\x51\x9b\x74\xfa\x4e\x3f\x56\x93\x54\x59\x52\x9c\x8d\x44\x9f\xa8\x2e\x5e\xdb\x68\x99\xa7\x4c\xc6\x5e\x08\x21\xe9\x99\xe3\x77\xa8\xff\x1e\xf0\x0f\x45\x71\xf4\xa6\x45\xbd\x47\x27\x5c\xf1\xa2\x2b\xf4\xc1\xdf\x31\xaa\x19\x22\xf9\x23\x3b\x76\x6b\xfe\x8d\x7e\x74\x8c\x99\xf3\x94\xa4\x6b\x3e\xd1\x72\xc0\x62\xa4\x7c\xd5\x9b\x0d\x5b\xda\x02\x9b\xf7\x16\xc6\xb4\x92\xf0\x27\x94\xc7\x02\x8b\xfa\x03\x1e\xf6\x55\x12\x78\x47\xf3\x07\x3c\x3a\x89\xbc\x83\x7e\x67\xca\x91\xd8\x3b\x07\xc3\xd1\x3d\xa6\xb0\xe7\xf9\x78\x23\xd0\x7b\x45\x2d\xbe\xd1\x7e\x3f\xdf\x27\x1a\xd0\x18\x5f\x27\xe8\xef\x64\x5a\x58\x2b\xbd\x90\xcb\x87\x12\x22\xd6\x2c\x8c\xbe\x82\x36\xcc\x84\x6f\xd7\x20\xca\x31\x34\x76\x4e\x34\x56\xd8\x5f\xd2\xc1\x59\x23\x1c\x30\xa7\xe4\x26\x82\x09\x7c\xd9\xaf\xbe\x2a\xa9\x52\x1d\x4c\x80\x7c\xa7\x6e\x72\x67\x7f\x46\x01\xaf\x37\x75\x4f\x69\xbf\xff\x8c\x7a\x38\x57\x96\x24\x6c\x64\x9b\x45\xf7\x59\x57\x5e\xc7\x76\x46\xf7\x03\x9d\xba\xf6\xa0\xdd\x2b\x5f\x46\x4c\x17\xad\x98\x7d\x30\x7b\xd7\x5b\x47\xdf\x2b\x72\x58\xfa\xc5\x5b\x8a\xff\xfd\x36\x0b\x43\xb1\x4c\x96\x71\xeb\xff\x7f\xe4\xbd\x57\x77\xdb\xbc\x12\x2e\xfc\x83\xe4\xb5\xd4\xdb\x25\x49\x51\x8c\x22\x3b\x2e\xb2\xe3\x38\x77\x49\x2c\xab\xf7\xae\x5f\xff\x2d\xce\x3c\x03\x0c\x48\xca\x76\xde\xfd\x9e\x7d\xf6\x59\xdf\x4d\x62\xb1\x80\xc0\x60\x30\xbd\x14\x55\x6f\x13\x49\x79\xea\x2b\xa2\x89\x62\xf3\xa9\x70\x16\x4d\x35\xde\x9c\x63\x95\x8a\xf0\x48\x84\xea\x24\xae\x99\x6e\x06\x00\xda\x44\xac\xfe\xe2\x04\xae\xeb\xe4\xed\xb9\xfb\x2d\xb3\x32\xf9\xe0\x33\x65\xce\xd1\x9f\xf1\x65\xa7\x04\x69\x82\xb5\xf3\xc5\x75\x78\xf9\xa2\xe5\xa7\xf1\x9a\x32\x99\xac\xbd\xc8\xec\x7d\x75\x6b\x15\x4d\xa7\x06\x5d\x80\xa9\xc5\x2c\x88\x14\x92\xdb\xc4\x6d\x9e\xae\xad\xe6\xa0\x23\xc7\xdf\x14\xdc\x6d\x04\xbf\xfe\x77\xd7\xb7\x87\x99\xc5\xe0\x37\x2d\x28\x82\xe5\x58\x0c\x9d\x3f\x26\x09\x98\x75\xe3\x72\xa2\xf9\x14\xa9\x87\xfc\xed\xe2\x5b\x4a\x06\x2d\xbd\xe9\xfe\x2c\xf4\x4f\x59\xb7\xf8\x19\xbc\x43\x2d\x65\x3e\x66\xba\x48\x58\x16\x75\xfa\x4d\xe4\x9e\xf6\xe0\xeb\xd5\x8d\x17\xd6\x3b\xdb\xf8\x78\xb5\x17\x31\xd5\x08\xab\x5f\x3d\xfa\xf1\x95\x7e\xf0\x90\xb7\x89\xef\x6c\x4d\x28\x97\xee\x0e\x74\xef\xb5\x0b\x31\x86\x86\x63\x68\x3d\xf7\x6e\xed\xa1\xe4\xca\x5c\xae\x26\xcd\xa7\xbb\xa6\xdb\x6f\xfe\x97\x0d\x3a\x43\xbf\x39\x7a\x66\x81\x8a\x78\x24\xa4\x95\x90\x9a\x0c\xf3\x87\x78\x9c\xe3\x1f\x5d\xcb\x69\x57\xfe\x35\xd5\x16\x62\x11\xb6\xce\xf7\x87\xcf\x59\x44\x85\xfe\x13\xb8\xd3\x63\x12\x14\xed\xa6\x17\x3b\x5e\x31\x80\x16\xf1\xde\xcd\xc7\xc4\xe6\xb8\xa1\x35\x15\xe6\xd2\x55\xa6\x84\x85\xbe\xf1\x3b\x13\x91\x7b\x2d\xf2\x75\xe9\x8c\x47\x94\x91\x3d\xb4\x08\xe6\x9f\x7c\xb7\xde\xc3\x6a\x2a\xf5\xb9\xd2\xb3\xde\xb1\xe9\x93\x50\x59\x85\x66\x3a\xb0\xd1\xcc\xd0\x75\x37\x98\xf5\x53\x4e\x4c\x5f\xdf\xca\x18\x8b\xe1\x73\xc3\x7b\xfe\x75\xab\x85\xa1\x1b\xb0\xb3\x44\x06\xe7\x0c\xba\x20\xc9\x52\x9c\x2e\xfa\xe6\x68\x60\x68\x4c\x35\x1c\x58\xb2\x75\x23\x36\xd3\xa9\xd4\xcb\x55\xc8\x23\x65\xec\x54\xe5\xd7\xc4\x25\xf7\x29\x63\xb2\xc4\x25\x9e\x15\x0e\xd5\xdc\x09\x39\xb0\xe7\xea\x9d\xa1\x88\xdb\xa2\xf8\x55\x57\x29\x37\x9d\xb4\x96\x40\x41\x5e\x0c\xbd\xa5\xdb\xa0\x9f\xd8\xa4\xb4\xe4\xea\x7a\xc1\x94\xab\x1c\x30\x16\xae\x07\x29\x55\x2b\xb3\xa4\x6a\x7a\xba\x98\x5b\xc4\x4b\x0e\xaa\x5c\xd8\x69\x83\xf1\xb6\x89\xc4\x9e\x34\x52\x97\x6c\x64\x68\x67\xfd\xd5\x1e\x05\x0b\x0c\x68\xed\x68\xef\x77\x56\xcd\xb3\xf7\x41\xe2\xf9\x9d\x63\x14\x76\x4a\x78\x09\x2e\x59\xde\x66\x03\x52\x2f\x69\x2b\x28\xef\x9e\x08\x3f\x84\xa3\xfc\x9d\xab\x56\xcb\xd1\xda\x0c\x8f\xdc\x4a\xc9\xc1\x2b\xbf\x89\xd8\x99\x17\xcf\xfb\xed\x94\xb5\x62\x6e\xbf\x63\xae\x5a\x6c\x5d\xe0\x93\xd6\xdc\x33\x56\x0e\x6e\x91\x25\x39\x1f\xde\x4a\x50\x91\xd3\xd2\x41\x55\xdb\x16\x59\xd3\x29\xba\x7d\x93\xd5\x27\x30\x18\x0f\x62\x65\xb6\xc7\x15\x1f\x0c\x8a\x7a\x16\xd9\x47\x8c\x82\xfb\x54\x63\x8d\x8e\x95\xd9\x36\x43\x17\x47\x40\x24\x26\x24\xb4\xf5\xcb\xcf\xa0\xb6\x75\xc2\x31\x13\x6f\xf8\x08\x98\xb2\x7a\x95\xef\xb9\x57\x8b\x6c\x82\x95\xd0\x3e\xb9\xfc\x4d\x3f\x6c\xae\x72\x3d\x16\x96\x9f\x4e\x40\xd8\xb3\x7b\x10\x2c\xb0\x0e\x03\xdf\x9d\x57\x42\xb2\xad\x77\x35\x89\x2f\x0c\x38\xc2\x62\xc9\xac\x5c\xc8\xb4\x9a\xdb\xa0\xa5\x52\xe7\xf0\x8d\x15\x20\xb2\xd6\xc7\xc5\xd3\xc4\x1d\x75\xca\x78\x46\xcc\xcd\x76\x78\x18\xa2\x9c\x6e\xde\x9c\x55\xe6\xcd\x22\x97\x3b\xe4\x01\xa5\xa1\xb3\x47\x7b\xe2\xf4\xbe\x8e\x17\x6c\x51\x1d\x09\x63\x97\x53\x3b\x1c\xd9\x7c\xbb\x8d\x16\xa2\xb1\xaf\xe7\x67\x40\x1f\xdd\xfd\xde\xc7\x82\xf3\x33\x0e\xd6\xb9\xf3\x7f\x68\xfb\x51\xaf\x19\xcb\xa9\x1a\xb9\x3f\xbd\xf3\xe7\x67\x88\x98\x95\x67\x67\xe9\xb2\xd7\x9c\x80\x34\x50\x6a\x7a\x0d\x3f\xea\xf8\x3f\x91\x9b\xa6\xc5\xaf\x6e\xa6\xa4\x6e\xfe\x0c\x8e\x4f\x5a\x3b\xb2\x1a\x67\x22\x8f\xa0\x03\x71\x62\xe2\x33\x29\x18\xfa\x88\xb7\x05\x94\xcf\x6f\x9a\xfb\xb3\xed\xa1\x87\x64\x25\xf6\x96\xbc\xaa\xf5\x97\xc7\xe8\x0c\x01\x57\x58\x99\x15\x60\x54\xf8\x67\x57\x4d\x51\xd5\x83\x38\xa4\x6c\x1c\xc0\x00\x9b\x84\x12\x4f\x1f\x0e\xe7\xa9\x90\x42\x43\xe9\x67\x7c\xa3\xee\x48\x0b\x57\x2a\x26\x0c\x23\x47\xdc\xa1\x37\xe2\x92\x77\xa1\xe3\x34\x23\x13\xad\xee\x06\xbd\x0e\xf5\x67\x28\x02\x10\x12\x5e\x93\x95\x51\x04\xfc\x2c\x54\x04\x92\xfb\xb9\x5b\x9c\x60\x36\x13\xcc\x46\xbe\x19\x0a\xa6\x28\xb5\x33\xa2\xf9\xc0\xc3\x37\x26\x3a\x18\x4e\x83\xc4\x21\x09\x8d\x87\xaf\xa2\x5a\x89\xb3\x17\x73\x1c\xa1\xcf\xe1\x68\xcc\x88\x77\x04\xa2\x49\x4b\xc3\x31\xe3\x5b\x11\xc3\xa1\xa9\x21\x82\x06\xe7\x4f\x1a\x78\x78\x25\xc7\x6f\x34\xb8\x23\xfa\xc9\x5f\xe2\xd5\xa5\xe9\x1b\x4c\x36\x9d\x50\x93\x30\xd4\xcd\xc3\x5c\x4a\x4c\xa7\xa6\xa1\x3e\xe6\x44\x64\xe0\x49\xc4\x73\x85\x1f\xec\x6d\x67\x8f\x2b\xfa\x38\xe2\x65\x18\x2e\xd9\x21\x37\x20\x9e\x51\xfd\x82\xf7\x1a\x63\x13\xbb\x46\xba\xd9\x9b\x91\xd4\x98\x39\x0f\x95\xec\x3c\xb1\xec\x5a\x2e\x8f\x50\x1c\xfd\x1a\x62\x3e\x7d\x6e\x8c\x2e\x92\x3f\x40\x43\x76\xdc\xd4\x80\xaf\x47\x6b\xae\xab\x39\x42\xcc\xeb\x71\x78\x21\xac\xc3\x70\x03\x2c\x66\x32\x61\x76\x3c\x9e\xfa\xd9\x49\x7f\x58\x91\x3c\x77\x7e\xa5\xe4\x3f\x7a\x78\xed\x9f\xf9\x60\x7f\xe7\x99\x45\x72\x10\x2e\x7d\xf9\x69\xa6\xaa\x4b\xe8\xfd\x38\x5d\xc4\x28\x51\xba\x4b\xc0\xf2\xa2\x30\x13\xb6\xc2\xc5\x50\x3a\x07\xd6\x4a\x9c\x0b\x53\x05\x02\x10\x6e\x35\xf4\x6d\xf0\xf8\x72\x92\x5e\x7c\x2c\x58\xf4\x9d\xab\xf3\x57\x9b\x49\x89\x63\x51\xc1\xd7\xab\x43\xcd\x0b\x4e\x43\xd5\x86\xff\x2c\x01\xd4\xb8\x78\xed\xec\x47\x83\x4b\x83\x51\xa3\x92\x2f\xd3\xeb\xfc\xd0\x38\x68\xe3\x83\xb5\x6f\xdb\xb4\xff\xd9\x94\x8f\x0b\x97\x18\xc6\x84\x73\x63\x5f\xfb\xec\x58\xbf\x1c\x3a\x87\x03\x07\xe7\xfc\x5d\xb1\xdb\xf8\xa4\xc4\x63\x35\x65\x16\x43\x13\x38\xc9\xcc\x43\x6e\xc4\xfc\x32\x16\x02\xf7\xea\xb7\xf1\x05\x0e\x31\x89\x18\xb9\xa5\xd0\x15\xc7\x63\x41\xca\x34\x85\xc0\xf2\x1f\x4f\x29\x26\xe1\x28\xe6\x2f\x8e\x89\xa1\xe9\x1c\x0a\x96\x2a\x7a\xe6\x88\x67\x3f\x1c\xd9\xdf\x7f\xb0\x95\x9d\xf3\x24\x71\x2c\x36\x1c\x79\xd6\x67\x13\x0f\x19\xa9\xf0\xc8\x86\x02\xdf\x7f\xad\x58\xdd\x5b\xb3\xb9\x66\xc3\x6a\xf2\xbd\x8a\x0f\xed\x78\xc1\xf2\xb5\x4c\x1f\x6b\x1d\x5e\x07\x97\x49\x4f\x70\x66\x75\x74\x09\x1a\xea\x3e\x7a\x52\x88\xea\x12\xb5\xe9\x8b\x43\xf9\xe6\x38\xd9\x42\x20\xd9\x00\x99\x3c\xee\xeb\x1f\x09\xe0\xb7\x1d\xb2\xb0\xf8\x21\x99\xfa\xfc\xdc\x4c\x7e\x73\xb0\x12\x69\xbe\xb1\x18\x62\xf0\xab\xf8\x6a\xd5\xbf\xdd\x83\x15\x9e\x9b\x08\x3c\xb0\x9a\x28\x9d\xab\x17\xdd\xfd\xc5\x38\x51\x02\x7d\xd5\x74\xbb\x5c\x8f\x52\xaa\xda\x6a\xe4\x23\x19\x8a\x9f\xbd\xe5\xaa\xa2\x40\x42\x82\x8d\x2f\xaa\x60\xd0\x7c\xd9\x22\xc0\x71\x37\x50\x25\xcc\xcf\x23\xb7\x82\x9b\xd1\x90\xb5\xd4\x0e\x65\x09\xac\x9e\xcb\x74\xdc\x58\xcc\xe4\xf0\x04\xa1\xe4\x27\xfe\xb5\x0e\x12\xc5\xa9\x8d\x0a\xb7\x8b\x2c\xd3\x66\x66\x31\xa3\xc6\x33\xe3\x2f\xcc\x11\x76\x4c\xeb\xc0\x0a\xca\x1c\x2b\x5b\x0a\xe5\x17\xf9\x6d\xa3\xc4\x23\xf1\xc5\x12\xb7\xbe\x1d\x04\x4a\xb8\x68\xf0\xe6\x9c\x75\xe7\x96\x9f\x06\x78\x54\x3d\x6f\xe8\x84\x3b\xce\x86\x0c\x9c\x22\xf8\x7b\x61\xcc\xbf\x7f\x1b\x09\x34\x42\x53\x0d\x2f\x12\x0d\xb6\xf8\x16\xa3\xf7\x1e\xa5\xbf\x70\xf1\x98\x84\x36\x3a\x80\x19\x11\x23\x17\x68\x6d\xe2\xf2\x73\x03\x5d\x10\xd5\x2c\xc2\x8a\x73\x18\x86\xc9\x89\x89\x22\xa7\xb0\xfe\x17\x7b\x58\x8a\xb8\xcf\xc8\xc1\x30\x3d\xf0\xfd\x23\x8b\xeb\xa7\x97\xab\x3f\x5e\x80\x9a\x28\x60\x8f\x78\xc9\x9a\xde\x31\x24\xfa\xed\xd0\x91\xbb\x39\xbd\xe0\x95\x8e\x6d\xb6\x67\xe4\x15\xfe\x53\xaa\xc9\xb1\x8b\xdc\x64\x08\xab\x40\x88\xc0\x1a\x38\xcf\x3f\x33\xa2\xa8\x41\xd7\x10\x30\xc1\xf7\xcf\xb7\x36\x7e\x5a\xb0\x9e\x90\x92\x86\xa2\x4e\x23\x3f\xf9\xf0\xd3\xd9\xcc\x1c\x96\xcf\x33\x86\x65\x73\x9e\x0c\xbb\x6b\x79\xde\xae\xd5\xf0\x2d\x23\x3c\xfc\x90\xcf\xc4\x43\x94\x33\x07\x5c\xf9\x5e\x50\xef\x63\x40\x2e\x35\x2a\x03\x9e\x5a\x9e\x77\x72\x06\x3c\xfd\xd0\x59\xe8\xd5\xcc\x01\xb9\x0c\x1e\x06\xe4\x98\x67\x19\xb0\xd0\xf2\xbc\x82\x19\x90\x12\x35\x7e\x88\x43\x3e\x18\x3e\x69\x6f\xf9\xd8\x35\xb2\x64\xe7\x69\x1a\x09\xa2\x02\xaa\xb0\xe4\x9c\x29\xb8\x72\x2b\x13\x5f\x59\xf6\x6d\xd7\x69\xf2\x38\x83\x08\x54\x26\xbe\xf2\x03\xd8\xce\x96\xd6\xde\x21\x96\xc3\x6c\x1f\xad\x2a\xc6\xc8\x1a\xc5\x1f\xeb\x53\x46\x37\x7a\x39\xda\x63\x9a\xcd\x84\x21\xd3\x1c\x6b\xa3\x88\x58\x98\xad\xda\x60\x22\x20\xc3\xe2\x7d\x12\xf7\xd6\xdc\xd3\xa4\xc0\x41\x23\x65\x0e\xc1\xe7\xaa\x3e\xc9\xda\x27\x61\x76\x03\x54\xba\x50\x7a\x33\xf3\x0e\x8d\x87\x2e\x05\x68\x6b\xee\x91\xf2\xde\x23\xdc\x8f\x74\x9b\xba\xe3\xc4\xaa\x36\x62\x7d\x42\x32\xba\x3c\x1f\xda\xee\x03\x7b\xe7\x69\x16\x92\x13\x4f\x3b\xfd\xe8\xce\x78\x7e\x11\xb2\xe6\x72\xeb\x79\x2f\xa2\xae\x7f\x75\x10\x06\x15\x2a\x1b\x7e\xe2\xd3\x90\x4e\x28\x64\x66\xac\xdc\x35\x20\xa3\x1b\x50\xd7\xe3\xc0\x4f\xac\x71\xe2\x7b\xc1\xf4\xfa\xea\xd6\x6b\x2d\x6e\xc4\xfc\x58\x7b\xb3\xbc\xa6\x0c\x60\xc7\xb2\x69\xbc\x05\x6d\xe3\x7a\x88\xff\x4f\xc2\x6a\x99\xb8\x2e\x13\x63\x4e\x5a\x97\x0e\x32\xe4\x55\x7d\x69\x1b\x43\xc5\x03\x0a\x8f\xf3\x71\x98\xf8\xa2\xfb\x5e\xd0\x66\x2b\xbd\x2b\xd3\x4b\x52\x54\xfa\x0d\xef\xf6\x6f\xe6\x2f\x7d\x6a\xdd\xfc\xb6\x4c\xaa\x9a\x91\xad\x3d\x87\x60\x4b\x0e\x46\x29\x92\xbb\xf7\x59\x25\xef\x0a\xf8\xf7\x8c\x00\x7f\x1a\x7e\xe2\xf9\xf8\x78\x94\x58\xf5\x3e\xf3\x7f\xd2\x6e\xcb\xfe\xcd\x3a\x1a\xb2\x89\x69\x0d\x5f\x76\xdc\xa6\x74\xf8\x11\x01\x00\xee\xc5\xd7\x6b\x58\x7d\x7d\xa2\x1f\x10\xd9\x45\x07\x98\x4d\x38\x0d\xf0\x17\x85\xf3\x3c\xc8\x11\xf3\x9e\x54\xef\x4d\x1b\xb4\x3c\x1d\x3b\xea\x53\x65\x40\x94\xa2\xb7\x61\x25\xf2\x5e\xf1\xaa\xb1\xb2\x4b\x0a\x89\x89\x86\x2f\x33\xa6\x93\xd1\x7c\xa2\x2c\xfc\xed\x26\x99\x13\x5f\xb6\xee\xfa\xe2\x7f\x72\x13\xed\x47\x84\xfc\x3b\x66\x84\xa9\xa1\xe6\xc4\x9f\x24\x79\x54\xee\xa2\xd1\x50\xf7\xd1\xd3\xff\xb2\x68\xd9\x32\x0b\x8e\xf2\x63\x25\x98\x5e\x25\x0b\x37\xd8\x75\x08\x41\xea\x5a\x19\x0f\xe0\x58\x4c\x19\xdf\x97\x53\x38\x17\xa0\x3e\xad\xf1\x7b\x33\xe5\x13\xb5\x9d\x5e\x7e\xfe\xd6\x71\x94\xc9\x9b\x3b\xe4\x6a\x32\x4e\xaa\x8b\x14\x77\x30\x57\x99\x60\x28\x90\x20\xf7\x18\x1f\xf1\xc2\x64\xaa\xd8\xcc\x9b\xe2\xe4\xcb\x89\x7d\xc0\xe6\x94\xd9\x85\x2a\xc4\x1a\x2b\xa7\xce\x18\xaf\x8d\xa6\xca\x0f\x37\x9e\x5a\xdc\xe8\xba\x90\xbb\xf1\xc2\xf1\x63\x25\xe4\xce\xc4\x16\x01\x6e\x6c\xf9\x5c\x39\xb4\x14\xda\xf6\x84\x64\x46\x96\x2b\xb6\x93\x24\x05\x8f\xa7\x56\xc3\x57\xaa\x6c\x49\x30\xa6\x38\xb7\x9e\x6b\x57\xf0\x17\x45\x75\xa6\x4a\xdd\xc6\x29\x50\x85\x6c\x3c\x79\x86\x44\xe1\xa9\xaf\x25\x1c\x15\xd2\x96\x15\x75\xeb\x06\x8e\xaa\x87\xb3\x03\xe4\x54\xd8\x6d\xf6\x03\x2a\x1c\x2f\x3b\xf0\x2e\xf9\x40\x82\x01\x1f\xa7\x69\xdb\xf0\xe7\x63\x1e\x6e\xa4\xbb\x12\x02\x1f\x04\x16\xc2\x7a\x9c\xc0\x85\x90\x02\x2e\x38\x7f\xea\x34\x4b\x02\x0d\x32\xf1\xef\x2c\xe9\x88\xf5\x1f\x92\x4a\x50\xc2\x18\xb2\x51\xa3\xe5\x79\x0d\x47\x36\x62\x93\x07\x98\xfc\x34\xc3\x26\xdd\x20\x57\x4a\xb9\x25\x55\xb8\xd9\x7e\x50\x62\x15\xa2\xd2\x52\x32\x6c\x31\xf5\x7a\x8c\x4f\x0b\x55\x4d\x78\xc2\xd9\x48\x5b\xe6\xa6\x3b\x88\x06\x46\x7d\x30\x0a\x50\x65\xaa\x08\x47\x76\x00\x46\x13\x8f\x38\x95\xd1\x90\xf6\x8e\x5b\x79\xfe\x9f\x63\x54\xb8\xcb\xda\x63\x89\x29\xea\x9c\x39\xe4\x4b\xd2\xfd\x32\x90\x42\x73\xb3\x34\xe1\x14\xcf\x40\xa8\x9c\x62\x66\xc6\xa3\xb9\xc9\xad\x93\xda\x66\xbc\xee\x6f\x2a\x88\x8b\x1b\x51\x1a\xe9\x3a\x7e\xef\x4e\xd3\x4f\x13\x05\x86\xdc\x83\x99\xfe\xba\xe9\xf9\x14\x36\x58\x6f\x1e\x49\xb6\x95\x71\x89\xd7\xb1\x01\xa5\xa9\xf0\x7d\x7d\xd5\xd6\x5a\x23\xf5\x94\xa3\xed\x6a\x5f\x05\x7c\x06\xa5\x26\x08\xc0\x33\x66\x1f\xae\x10\x34\xf8\xad\xe1\x8e\x00\x7e\xfd\x2c\x6a\x6a\x92\x6d\x90\x9f\x5d\xcf\xb2\x7c\x1c\x4c\xb0\x91\x6b\xc8\xf5\xf0\x60\xba\xda\x33\x6b\x7a\xd8\x80\x45\x55\x19\x00\x4f\x9b\xb9\xaf\x21\xd7\xb6\xb8\x20\x20\xc2\x38\x5d\x95\xcc\xbe\x77\xa0\x27\xbe\x39\x05\x4a\xfa\xf3\xc5\x24\x42\xb1\xfa\x09\xc8\xb5\xad\x87\x03\x05\xe9\xb3\x10\xe2\xc9\x56\x7e\x74\xde\xce\xcf\x94\xf9\xe0\x34\xc7\x11\x7f\x67\x84\xc8\xba\x27\x2f\x0c\xd6\xca\x87\x8b\x6b\xa6\xcf\x0c\x5b\xa9\xdb\x4a\x7e\x85\xae\xd5\x55\x39\xb0\x3e\x3c\x1b\xf5\xb5\xef\x85\x45\xf6\xd0\x97\x94\xce\x9c\x67\xb3\x4b\x83\x07\x9b\xf8\x70\xd9\x22\x1f\xe3\xcf\xdf\x0b\xfb\x60\x00\x33\x2c\x6f\x2e\x81\xf1\xd7\xcc\xd7\x38\xff\x90\xe5\xb1\x12\xd7\x02\x43\xb3\xe9\xd2\xb5\x43\x21\x0d\x28\xea\x9d\xd4\x66\xb1\xe4\x1b\x52\x47\x73\xa3\xc4\xa0\xfe\xc9\xc8\xb7\x85\x57\xd0\x98\x62\xa4\xa5\x1e\x71\x5d\x48\x64\xe2\x58\x09\x06\x5b\x08\x3a\x8b\xb1\xa2\xed\x63\x5c\xcc\x61\x64\xf9\x6d\xd6\x60\xba\x8d\xa2\x07\x77\xad\xa3\xbb\x8d\xe6\x3b\x98\xa8\x21\xf9\x0f\xb8\x10\x0f\x86\x42\xae\x63\x15\xcf\xb2\x1e\x6b\x06\xcb\xff\xce\x5b\x5a\x00\xa3\x09\x97\x80\x5b\x47\x2c\x04\x3e\x1f\xec\xc8\x4e\x67\x0b\x6c\x4d\x3f\x21\x6c\x50\xa4\x82\xde\xec\xa7\x24\x8d\xd1\x74\x93\xe7\xc9\x8d\xee\xf9\xcc\x51\xac\xf5\x8d\x5a\x0c\xba\xa2\x4f\xbf\x59\xb2\xc9\x03\xe5\xd9\x31\x70\x5a\xc2\x00\x34\xc9\xb0\xe1\x2c\x54\xab\xb5\x7c\x20\xa2\x51\xb0\x7e\xd3\x06\x1d\xd5\x0c\x14\x16\xc0\x18\x7e\xe0\x23\xfc\x27\x41\x35\x51\x7e\x68\x3e\x4f\xb3\x66\xd7\x1c\x4a\xdf\x43\x76\xe1\x62\x21\x46\xc1\xe5\xc2\x4f\x5e\xe1\x62\x1f\x62\xd3\x06\xc8\x9b\x5c\x10\xfd\xc6\xe1\xfa\x4c\xb0\x57\x73\xeb\xdb\xba\x8d\x35\xaa\x60\xce\xb6\x5f\x95\xa3\x1a\xe8\x3f\x55\x82\x40\xa2\xb2\x16\x8a\xa5\xa8\x64\xd3\x49\x5b\x9b\x41\x3f\xfc\xd3\xa4\x44\xab\x3f\xab\x2d\xfb\x44\xad\x65\xf3\x6b\xd0\x36\x35\x39\x48\x43\x2c\x47\x3c\xa5\x5f\x99\x0f\x05\x96\x48\x2c\x17\x29\x33\x6c\x0c\x4c\xc6\x27\x01\xef\x6a\xc1\x16\xff\x35\x7e\x4f\x38\x2a\x0b\x85\x8a\x37\x0b\x48\xf2\x89\xa7\x43\x6b\xec\xdd\x2f\x34\xe9\x54\x7d\xb4\xed\x57\x77\x18\x85\xa3\x5c\x96\xbe\x19\x3a\x92\xd0\xb6\xdf\x4c\x4b\xb6\x73\xb0\xca\x39\x9d\xee\xfe\x17\x3b\xe8\x71\x6e\x64\x31\xd2\xbb\x5a\xfa\xc1\xfb\xf2\x42\x19\x4d\x0f\x0b\x9d\x51\x0f\x25\xc9\xcc\xf7\xf8\xf1\x7c\x0f\x34\xdf\xa0\xcc\xaa\xfe\x11\x13\xde\x65\x4c\x78\x8f\x59\x55\xd2\x13\x3e\x67\x4e\x18\x0f\xde\x57\xf5\x84\x4f\xce\x84\x6f\x6c\x9b\x1e\x16\xc5\xc6\x6d\x8b\x75\xcb\x6b\x1b\xc4\xbf\x7a\xd0\x58\xa5\x90\xc1\x20\x52\xa0\xab\xdb\x66\xe3\xa0\xf3\xa7\xf1\xfb\x07\xd6\x64\xe6\x18\x3e\x4d\x6b\x86\xf5\x9b\x28\x4b\x7d\xcf\xeb\xab\xe2\x10\xfc\x48\x0c\x80\xd9\x9b\x7d\x7c\xfb\xf1\xe3\x8b\x37\x7b\x75\xff\xe6\x96\xf7\xd0\x2f\xd0\x5f\x8c\xc3\x2b\xf5\xca\x51\xbf\x12\x8c\x87\xe9\x77\xf8\x36\x6c\x21\x2c\xa6\xf3\x0c\x11\x60\x76\x7e\xfb\x98\xbf\x86\x2a\x0d\xbb\x63\x52\x92\x39\xdd\x09\xa4\x92\xa7\x86\xe0\x52\x44\x10\x50\x53\x73\xdc\x8f\x01\xa0\x52\xde\x16\x56\x4b\xa7\xb0\xb3\x36\xc9\x51\xf7\x92\x15\x33\x83\xe3\x0e\x62\x4a\x0e\xbf\xa7\x53\x1f\x96\x41\x83\xba\xa4\x17\xf1\xc0\x08\x1a\x46\x81\xdb\xed\x35\x78\x17\x71\xfe\x50\x3f\xb1\xe3\x36\x48\x60\x1a\xab\x19\x33\x49\x11\x10\x37\xf2\x9b\x54\xe8\xa7\x29\x55\x1f\x40\xc4\x2f\x07\x2a\x0c\x88\x80\x35\x03\x1d\x5f\x02\x60\x25\x67\x3e\x98\xb3\xc1\x1b\xed\x67\x86\x48\xf6\xbf\xf7\xbc\x86\x4f\x86\xf7\x47\xe9\x02\x41\x64\xe2\x97\x62\x85\xd9\xc5\xd6\x6f\xed\xaf\xf8\xef\x67\x31\x6f\x1a\x6b\x00\x9b\xf3\xe7\xda\xe3\x6c\xee\x39\x91\xda\x7f\xbc\xe0\xcc\x5b\xc2\x9b\x6a\x49\x4b\x14\x0b\x49\x72\x8e\x17\x22\xbe\x3f\xc7\xcb\x12\xed\x7f\x2a\xba\x7b\x7c\x75\xbc\xc2\xa9\x7e\x21\x3a\x11\xaf\xff\x97\x8b\x15\x1d\xca\x83\xd1\xe3\x0d\x17\xee\xf8\x1d\xee\xac\x39\x73\xc7\xe7\x19\xcf\x65\xfc\x67\xcf\x1b\x10\xc3\xdf\x5e\xa3\x1a\x46\x7c\x8a\x81\x6e\x88\x91\x61\xa9\x6d\xf8\x8a\xf9\x99\xa7\x96\x4e\x1f\x07\x3c\x36\x67\x69\x26\x82\x47\x8c\xa9\x3f\x02\x2c\x9e\x24\xbe\xa2\x10\x24\x84\x1b\xaa\x76\x84\x42\xa7\xaa\x95\x3e\x0c\xab\x07\x26\x20\xa8\x12\xdd\x33\x50\x8d\x4f\xcb\x90\xd7\x25\x45\x4e\xf6\xbe\xf3\xc1\x2d\x47\xd1\xee\x93\x26\xca\x0b\xdf\x43\xdb\xd8\x12\xa7\x90\xa1\x5f\x62\xd3\x9e\x20\x3a\x9e\x0c\xe6\x1b\x4e\x8f\x24\x3a\xfd\xad\x25\x80\x88\x95\xce\x21\x0f\x08\x70\x06\x40\xc1\x07\x78\xf8\x00\xb4\x81\xed\x1e\x79\xc3\x62\xe0\xd0\xd7\xe1\x0e\x13\xdf\x09\x78\x5c\x01\xc5\x24\x1e\x75\x46\x66\x38\x32\xea\x7f\x9d\xdb\xe8\x22\x91\x5d\x76\xa1\x5e\x76\x76\x10\x9d\x44\x59\x75\xa5\xba\x0a\x36\x7d\x2e\x36\x3f\x82\x98\x8a\x57\x8d\x6c\x6f\x0f\xfb\x12\x3e\x3e\x6b\x01\xe5\x08\x52\x8c\x09\x4d\xfe\x6f\xaf\x5e\x99\xa1\xbb\xbf\x31\xd7\xa1\x46\x28\x72\x86\x8e\x2d\x1d\x2e\xb5\xb8\xb7\x21\xbd\xe5\x47\x6a\x14\xf7\x96\x3d\x2b\xbc\xe0\x7e\xf7\x08\xb0\x58\xc5\x3a\xfe\x36\x19\xb5\xbf\x1e\x4c\xa7\xce\xd0\x36\x0f\x88\x6c\xd6\x12\xaa\xae\xd3\x7e\xae\x88\xcf\x8e\xfd\xaf\x7a\xfb\x2a\x54\x76\x6a\xe7\x1f\xef\xe1\xea\x8b\x77\x03\x5f\xdc\x01\xaf\x74\x04\xa3\x89\xe6\x4b\x47\x30\x02\x70\xf6\xb3\x8b\x8c\xcf\x02\xa7\x0e\x99\x9f\x05\x09\x66\xbd\x79\xae\x3f\x3b\xc1\xe7\xa6\x19\x9f\xb5\x98\xc1\xa5\xa7\xf6\x2c\x2b\x96\x50\x27\x70\x68\x03\xff\xe2\xbb\x3f\xad\xb6\xb6\x51\x63\xc1\x6a\xf4\x55\xce\x95\x09\xc2\x2c\xb1\x38\x7f\x50\x61\x2e\xf1\xe5\x8e\x55\x00\x67\x3a\xaf\xdb\x30\xad\x0a\xa4\x6e\xf2\x89\x2a\x89\xc1\xc3\x99\xea\x7a\xde\x8a\x4d\x32\x2b\x11\xbf\x58\xf7\xdf\x6f\x59\x0d\x39\x49\x44\xdf\xd0\xf9\x5d\x25\xcd\xe8\xa5\xee\xa6\x75\xc2\x21\x00\x85\xa2\xa3\x92\x3c\x8d\x2c\xef\x59\x0f\xaf\x35\x94\xdb\xc8\xe2\xa1\xfa\xb1\x68\x55\x50\xca\xf8\x88\xc9\xdc\x42\x9d\xe9\x93\x25\x8f\x4c\x27\xb0\x8c\xd4\x97\x69\x73\x41\x09\x6f\x97\x97\x29\xb7\x05\xfc\x86\x91\x67\x32\x7f\xdc\x20\x76\x75\x63\x98\x92\xd5\xaf\xdc\xea\x99\xa0\x82\xd3\xf6\x95\x4d\xde\x86\xed\x00\x3a\x70\x39\xd0\xb7\x54\xa8\x97\x0d\x8d\xed\x71\x01\x6e\xbd\xed\xee\x57\x76\xe9\xba\x77\x4e\x5c\xed\x4e\xc5\x08\xd7\xb0\xf0\x3c\x1c\x6f\xb3\x20\x41\xae\x63\x12\x50\x49\x40\x67\xa3\x99\x47\x27\xf9\x46\x22\x12\x51\xc2\x0f\x97\x7c\x70\x72\x2b\x13\xc4\xe0\x04\x08\x18\xdd\xc2\x13\xf3\x0a\xb1\xf7\x2f\x5a\x72\x35\x12\xf4\x7c\xe0\xff\x95\x71\x76\xd4\xf6\xbc\x51\x5b\x1b\x67\x47\x2a\x0f\xf4\x52\x85\x65\xb1\x3a\x16\x1f\x94\x2a\xbc\x5e\xb9\x18\xd2\x49\xb5\x74\x5d\xa1\x27\xc1\xb5\xda\x00\x88\x71\x7c\x70\xf9\xc6\x8c\x53\x73\xe6\x8f\xfa\xb1\x07\x93\xc0\x17\x35\x50\x0b\x21\x9e\xf2\x17\x40\x86\xfc\x37\x6c\x24\x28\x13\xa9\x25\x12\xcd\xfd\x2f\xae\xe1\xd7\x5b\xd0\x46\x9e\xfc\x25\x2c\x7f\xaf\x8a\x28\x71\x2e\x3e\x6a\x72\x0e\xb1\x9b\xa3\xa5\x8f\xba\x80\x14\x21\x83\xab\xb3\x25\xf1\xdc\x5d\x7b\xbe\x54\xfe\xe5\xc5\x92\xdb\xe2\x87\xcb\xa5\xb6\xcc\x0f\xb8\xd9\xeb\xf0\x4e\x7e\x91\xee\xf0\x93\xfd\x35\x6f\x2c\x4f\x0c\x58\x6b\xcd\xf9\x2d\xda\x27\x16\xa8\xb7\x82\x51\x4b\x1f\xe5\xfa\x62\x3c\x10\xf5\x72\xb7\xf4\x71\x8a\x63\xa5\x46\x74\xb8\x03\x3f\xbb\xf2\xb9\x40\x22\x47\x52\x33\x50\xea\x0b\xe5\x81\xab\xe1\x07\x2e\x86\x99\x66\xf6\x89\x0e\x15\x61\x86\x30\x5d\x69\xe7\x5c\xb7\xa0\xda\xc7\x41\x01\x1c\x71\x3e\x12\xcc\xbe\x4b\x36\xf4\xd6\x07\x96\x81\x05\xc5\x57\x07\xd9\x59\xed\x1b\xb2\xf4\xbc\x50\x02\xc5\x67\x95\x95\x50\x1c\xaf\x33\x69\x8c\xd1\xf1\xbc\x75\x28\x1e\xd9\x8e\x6d\xfa\x95\x54\x18\x08\x8e\x0a\xfb\xf6\x7c\x63\xc1\xd8\xb7\xd4\xd8\xb7\x7b\xa0\xd3\x58\xe0\x43\xb5\xb5\x0d\xd1\x02\x18\xb2\x76\x6c\x04\xdc\xdf\x43\x88\x8e\xaf\xd5\x58\xe3\xcd\x0d\x6c\xac\x06\xb2\x0f\x20\x73\xab\x0f\xf0\x72\xaa\xe8\x6e\x99\x4a\x44\x47\x44\x13\x9a\xe0\xa8\xa2\xfa\xaa\x6f\x98\xf6\x38\x4f\xd4\x75\xc7\x2b\x6d\x67\x67\x58\xdc\x86\xb8\xc2\xd8\xe7\x27\xde\x35\xa9\xfe\x59\x77\xcd\xd1\xa6\x6d\x7f\x3e\x40\x80\xdf\xc2\x89\xab\x2c\x73\x95\xdf\x74\xf8\x06\xfe\x0c\xe1\xff\x4a\x55\x22\x64\x42\x07\xab\xd9\xda\x62\xa6\x2e\x21\x6e\x79\x48\xca\xdf\x7b\xe5\x16\x23\x8f\x12\xe6\x85\xab\x44\xb6\x8f\xcd\x1d\x32\x6a\xbf\x97\xb4\x80\xe5\x17\x8e\x4d\x93\x1f\x47\x9c\x46\x7c\xc1\xe0\xeb\x0d\x29\xe3\x89\x71\x8d\x73\xf4\x36\x73\x30\xe3\x8c\x9d\x40\x4c\xc9\x2f\x32\xcc\x94\xa7\x8e\xad\x89\xe4\x18\x2b\x4c\xe6\x32\x4c\x8e\xcb\x8c\x97\x6b\x1d\x7b\x62\xb6\x6b\xed\x6d\xe7\x45\x68\x0b\xef\x66\xcd\xc7\x6b\x0c\x69\x64\x64\xe2\x65\x11\xa2\x64\xa2\xf5\xcd\xf0\xa5\xb6\x9d\x05\x67\xfa\x43\x38\x5e\x67\x7a\x26\x69\xff\xb9\xc2\x1c\x87\x2c\xef\x99\xa8\x55\x99\x97\xb3\xb7\xf7\xb7\x9e\xd3\x69\x4d\x24\x00\x7e\xe0\xf3\xc6\x6d\x84\xd8\x31\xca\xbf\xf8\xbf\x10\x90\xda\x71\xba\x7d\x3e\x2b\x19\x48\xc5\x46\x18\xd9\x32\x38\x72\x80\x5c\x61\xed\x38\x36\x95\xe1\xd7\x1c\x54\x30\x6b\x55\x05\x5f\xd9\x80\x99\x1e\xab\x07\xd4\x08\x46\xad\xc0\x03\x1c\xb1\xa7\xfe\xbc\x95\x8c\xf0\x40\x4c\xf7\x12\x50\xa7\xa6\x14\x4a\x15\x1c\xa5\xd9\xe2\x01\x6e\x96\xfa\xce\x9f\x3c\x51\x83\x00\xe9\x07\x54\xd9\x7e\xcb\xbd\xaf\x54\x28\x96\xba\xaa\x9e\x55\x83\x29\xcb\x59\x0a\x42\x91\x18\x20\xd2\x0f\xa8\x71\x53\xc0\x7a\xf7\xcf\x60\xf8\xf6\xf9\x87\xb3\xfe\xe4\xb9\xbf\xf3\x27\xcf\x9d\xfe\xe4\xb9\x77\xa4\xb7\x06\x4f\x78\xd8\x49\x9d\x89\xfc\x54\xd1\xbc\x8d\x2a\xc6\x6a\x3c\x21\x1d\xa7\x88\x34\x58\x57\x01\x34\xa0\x28\x1d\xfc\xd8\xfd\xbe\x69\x39\x6f\xd1\x60\xb0\xe9\x29\x33\x98\x4e\x21\x57\x15\x1c\xd8\x0a\x4b\xae\xfe\x07\x70\xe2\x03\x70\x3c\x3e\xa1\x1d\xe9\xd9\x3d\x83\x07\x0a\xf1\x22\xec\x7a\xea\x28\x87\xa4\xc4\x02\x20\x85\xd1\x8e\xdd\x15\x99\x61\xbf\xb1\xc7\x9b\x08\x20\x85\xbe\x91\xf3\xaa\x6d\x4d\xb3\xa7\xf6\x5f\xd9\xfe\x77\x5d\x7b\xb9\xaa\xfe\x9e\xb5\x1c\xc2\xb4\x40\xf5\x1e\x0a\x97\x76\x88\xdc\x2f\x2f\x68\xf6\x3d\x3d\xdf\xc6\xdc\x77\x29\x54\xfc\x4f\x45\xaa\x5e\x92\xf7\x4f\x47\xcb\x7d\x0a\x06\x62\xe5\x1e\x2b\xbf\xdf\x8d\xf5\xa0\x4f\x27\xee\x94\xbc\x5f\xef\xcf\xe8\x9f\x7c\x92\x1c\x4b\xcc\x50\x97\xac\x01\x68\xfb\xf9\xe6\xc6\x16\xa7\x87\x2d\x23\x8d\xb7\x87\x9b\x94\x3f\x85\xff\x34\xd1\xf9\xcd\x6e\xe6\x2e\x5d\xd8\xd3\xdf\x66\x8f\xe2\x5f\x39\x9e\xd5\x74\x9b\xc1\xa4\xca\xcf\xb6\x45\xd8\xea\x2d\x93\xc5\x8d\x98\xf7\x94\xd3\x6b\xab\xa9\xd8\x91\xed\x5e\x43\xda\x3a\xb1\xc1\xdf\xf6\xf8\xe6\xc0\xf7\x82\xe9\x9b\x3c\x0c\x51\x6e\x0f\xbf\xbe\x15\x6e\xd9\x71\xf2\xee\x90\x07\x35\xa4\x37\xf0\x8f\xce\x90\x27\x19\x92\x12\x0f\x9d\x5b\x85\xbd\x6f\x1b\xcc\x3b\x5e\x8c\x2c\x0f\xc4\x74\xc6\x4f\x17\x58\x8c\x28\xdf\xfe\xbd\x4b\x7c\x81\x80\x0b\x54\x40\x56\x0f\x40\x52\x55\xa6\x62\x0a\x05\x6c\x29\x79\xc7\xcc\x94\xad\x2d\xc0\xd3\xe9\x4a\x29\xef\x2a\x9c\xcc\x15\x7f\xa4\xa2\xc4\x4e\x83\xd1\x86\x19\x9b\xe7\xaa\xa8\x90\xbd\x5b\xa7\x1e\xb4\x4d\x4c\x88\x9c\x40\xd9\xa8\xcc\xb2\xa3\xd9\x6c\x44\x73\x56\x6c\xb3\xfd\xcb\x4e\x33\xeb\x39\xaa\x25\x4e\xe2\x5a\x30\x1f\xf9\x85\xf9\x3b\xb3\xb7\x03\xb9\x1d\x70\x3e\x73\x8d\x42\x95\x20\xf6\x37\xd2\x20\xb2\xb2\x6a\xd6\xcb\xd4\xb4\x0f\x60\x1b\x38\x68\x4a\x1e\xed\xdf\xef\xe8\xeb\xd0\xa1\x47\xeb\xe4\x5b\x75\xf4\xa4\xe1\xfb\x8b\x7d\x6a\x4a\xa4\x03\xed\xed\x16\x64\xec\x55\x15\x12\xfd\x2a\xfd\xb6\x85\x9a\xfb\xca\x1a\x23\xae\xd2\xbb\x9f\xee\xff\x73\x95\xca\xf1\xb7\x70\x72\x1b\x0c\x25\xaf\xc5\xb0\x5b\x13\x7f\x0d\xce\x43\xff\xa4\x75\x5f\x9a\xc6\x79\xa1\x35\xde\x1c\x21\xd8\xb7\x12\x19\x3e\xf6\x7e\xdd\x95\x63\x25\xd3\xad\xdc\xd7\x0a\x92\x63\xb5\x1f\xf8\x81\xe5\xda\xab\xae\xd5\x44\xf2\x51\x2a\x5f\xef\xc4\x81\x7e\x45\x6e\xf5\x8b\xb1\x11\x6a\x8e\x58\xf9\xc2\x17\xcf\x2b\x7c\x99\xdd\xd9\xec\x84\x33\x8d\xdf\x27\xd3\x7f\xb4\x32\xed\x84\x42\xcf\x7b\xdc\x11\xad\xe8\x6f\x39\xd6\x70\xa2\x1b\x03\x31\x51\x29\x4d\x25\xf1\xac\x05\xf5\x8f\xf3\x18\xf6\xcc\x12\x0f\xa6\x1e\x25\x02\xe4\xbe\xe2\xf7\x14\x75\x12\xdb\x08\xd3\x99\xde\x58\x3f\xd5\xec\xc6\xf2\x54\x95\x6d\xc2\x59\xb4\x8c\xde\xe1\x5c\xc5\x1e\x2c\x0e\x2c\xd7\x2f\x0f\xf0\x80\x33\x57\x39\x6c\x7d\x35\x44\x4b\x0f\xc7\xd2\xfb\x8d\x17\x6c\x5f\x99\x59\x83\x9f\x1c\x4d\x2a\x25\x09\x04\x47\x1d\x17\xcc\xaf\x26\xbe\x51\x0e\x9c\x5f\x2d\xa3\x2c\x74\x56\x47\x25\x19\x94\x31\x3e\xe4\xef\xf8\xd9\xc2\x96\xe5\xbb\xb3\xbe\x45\x7c\x8f\xfb\xb6\x95\x30\xfb\x96\x95\x68\x99\x79\xed\x0f\x97\x0d\x61\x8e\xd7\xbc\xb1\xf1\x6d\x0a\xce\x74\xaf\xa3\xba\x76\xda\x9e\x7d\x84\x39\x0a\x0b\xeb\xda\x74\xcc\xea\xb5\x66\x36\x47\xff\xaa\x11\x78\x5e\x23\x38\x1f\xd5\x58\x70\xf8\x1d\xfd\xab\x42\xe0\x79\x05\x82\x52\x6f\xcb\x33\xb9\xb6\x76\x01\x29\xbd\x43\x02\x00\xce\xbd\x6f\xcd\x2b\x91\x75\xac\x45\x9e\xb7\x40\x9e\xd8\x9a\x4b\x39\x3b\x6e\xa1\x12\x51\xb1\x97\xc6\xd4\xbf\xaa\x04\x9e\x57\x31\xb3\x11\x61\xf5\x20\x33\x39\x32\x04\x9f\x54\x30\x24\xad\x27\xac\x13\xee\xa0\x1e\x54\xbc\x19\x75\x47\x81\x2d\x1d\x7c\xaa\x0d\x35\xe3\xb5\x94\x09\xde\xc1\xf0\x8d\x93\x58\x81\x6b\x67\xe0\x21\x67\x0c\x50\x19\x9e\xf0\xf6\xca\xd4\x90\x98\x01\xc2\xf5\x43\x66\xbc\x20\x61\x17\x0f\xc0\xbc\xba\xb0\x55\x44\x24\xbf\xf5\x53\x07\x9b\x9d\x04\x0c\xac\x10\xe5\x3f\xd8\x85\xc4\x0e\x06\xd3\xbb\x98\xaa\xbe\x80\x64\x36\xb3\xbf\xde\x49\xb5\xcb\xe0\x4d\x1f\xd0\xfd\xad\x8f\xce\x88\x92\xa0\x71\xe4\x13\xbe\x92\xac\xec\xaa\x00\xfc\xe4\xeb\x02\x4b\x67\xc6\xb0\x83\x72\x2a\x54\x08\x56\x4d\x7f\xae\x8d\x51\xf1\x6b\x14\x01\xcd\x12\x5d\x7d\xcb\x00\x9d\xaa\x88\xd1\x4d\x70\x95\xac\xca\xb9\x62\x73\xe3\xf8\xce\x2a\x54\x13\x54\x47\xa2\xcc\x45\xd5\x8c\xbf\xa4\xa2\x43\xf6\x4a\x21\x1c\x21\xa9\x74\xc8\x27\xf3\x44\x22\xc7\xd6\xa9\xef\x60\x50\x8c\x8a\xfb\x31\x18\x46\x47\xff\xaa\x14\x78\x5e\x29\xf8\x09\x3a\x40\x47\x63\x2b\xdb\x17\x1f\xe6\x2f\x7a\x73\x50\xab\x3e\x50\x9b\xc3\x45\x57\x5a\xf1\xb4\x29\x83\x64\xc9\x9e\x91\x1d\xb0\x64\x7a\xfc\xab\x7d\x62\x7b\x7d\xf5\xda\x62\x47\xba\x13\xfc\x8d\xd3\x9d\xab\x71\xc8\x46\x08\xf4\x8c\xda\xe3\xfb\x93\x93\x9c\x9d\x31\xae\xb0\xc7\x2a\x03\xcb\xdb\xee\x8a\x89\x6c\xeb\x67\xbf\x26\x51\x33\x40\xff\xc6\x1a\x70\x73\x8d\x2f\x98\x56\x1e\x88\xd8\x16\x72\x64\x9a\x3c\xcd\xf8\xba\xcc\xf1\x70\x14\x17\x04\x12\x22\x71\x3d\x26\x4f\x92\x42\x47\x24\x17\xd7\x2b\x47\x5f\xd9\x0b\xea\xb8\xda\x38\xfa\x57\xa3\x20\x46\x42\x18\xe8\x14\x4e\x73\x76\x20\x8a\xe2\xc1\xa7\x6f\xda\x90\x0c\x78\x36\x53\x5c\x37\xad\xa7\x1a\x7c\x7d\x8e\xeb\x8b\x93\xef\x34\xfa\x59\xe3\xfa\xe6\xe4\xce\x52\x61\xd4\x11\x8f\x9c\xd4\xab\xf7\x40\x83\xde\x58\xc4\x7e\x63\xff\x10\x6d\xf0\x92\xf7\x44\x86\x45\x18\xdf\x42\x51\xfc\x96\xdc\x88\xc4\x06\x03\xed\x9f\x94\x62\x2a\xed\xb2\x97\x0e\xf4\x46\x94\x47\xb3\x30\xba\xa0\x7a\x29\xd8\x2f\x67\x5e\x0c\x3e\x7d\x31\xf5\xba\xa9\xf5\x5c\xdf\xbb\xe4\xf0\xd6\x94\xdf\xc0\x81\xce\x9f\xd2\x8e\x41\x1b\xad\x42\x99\x4e\x47\x3f\xeb\x72\x98\x75\x31\xf8\xf4\xc5\xf0\xb3\x13\x5d\x08\xe5\x39\x6b\xd6\x4d\x50\x7f\x90\xd4\x35\x77\x2d\x4f\x33\xcc\x78\x7e\x74\xb9\x3d\x11\x32\xb4\x9e\x19\x9f\x33\xc8\x06\x8f\xba\xcd\x1e\x75\x81\x51\x97\xd9\x04\x87\x18\x1c\x1e\x99\x72\xff\xb0\x06\xa9\x95\xf0\x8e\x9e\x4e\xda\x0f\xcc\x0e\x6b\x7c\xa1\x80\xff\xc1\x86\x38\x50\x09\xbe\x4d\x74\x98\xd8\xf1\x2f\x2e\x09\xf1\xb4\x3a\xa9\x15\xf5\x13\x90\xfd\x6e\x3f\x40\x1f\x2c\xe2\x6c\xc8\x57\xd4\x26\xaf\x2d\x39\x21\x81\x92\xc2\x63\x83\x7c\x1f\xbe\x02\x23\x54\x3e\x58\x66\xa1\x3a\x75\x25\x1a\x66\x74\xca\x27\xe5\x3c\xb1\x8c\x0c\x70\x3a\xa1\xa7\x9a\xad\x80\x16\xa9\xfc\x2e\x77\x37\x50\xcc\xf7\x90\xb2\xd3\xc1\x2e\x67\xca\xe0\x18\x32\x60\xaa\xb3\x46\x10\x57\xc4\x99\x70\xeb\x79\x37\x33\x07\x83\x63\x2c\x9b\x1f\xb5\xde\x11\x3f\x39\x83\xbc\xea\x29\x18\xd5\x0b\xbe\x53\xd2\x86\xa2\x2d\x8e\x7a\x93\xb8\xaa\x59\xa7\xc9\x28\x51\xa6\x2a\xcf\x9b\xee\xea\x88\xb0\x4a\xa3\xae\x31\x43\x59\x67\xe1\x1c\xf7\x5e\x8d\x99\x26\x67\xc8\x1c\x11\xae\xe6\x3c\x1a\x4f\xad\x18\x28\xde\x56\xe3\x12\x60\x3a\x57\x45\x90\xe8\x9c\x8e\x14\x70\x32\x92\x0e\xad\x98\x06\x9e\x94\x3f\x7d\x4a\xd2\xc4\x5c\x7a\x5c\x3f\x5b\x11\xe0\x87\xbc\xae\xec\x2d\x2d\x92\x40\xb8\xfa\x4c\xef\x68\x74\xae\xae\x4d\x32\xb3\xd5\xab\x42\x76\xbc\x1b\xec\xd9\xea\xca\xf4\x05\x65\xea\xaf\x1e\x7c\x4b\x0b\x6a\x87\x4b\xf4\xd9\xee\xa2\x4d\xa9\xc9\xcc\x3c\x0c\xa6\x7d\x55\x96\xaf\x7a\x4e\xfb\x42\xe4\xf3\xf2\x65\xca\x12\x08\x17\xc2\xd5\xcf\x8e\x3a\xb0\x69\x41\x04\xa6\xe6\xd7\x5f\x2c\xd4\x6b\x18\xa5\x9e\x80\xba\x21\xfd\x4e\x09\x50\x8d\xc3\xe0\xe0\x8f\x56\x63\x28\xa3\xf6\xf8\x59\x84\xc5\x66\xc1\x91\xce\xd3\x37\xe8\x0b\x80\x36\x76\xe7\xa4\x9f\x51\xea\x8d\x7b\xe3\x16\xa0\x8e\x3e\x1a\x81\x75\xf0\x9b\x58\xcc\xcf\x1c\x28\xb4\x96\x6e\x53\xe8\xd0\x98\x71\x57\x92\xb3\xe2\x02\xe7\x00\x98\x1d\x05\xc6\x67\xdf\xdd\x3c\x6f\x83\x60\xa6\xf3\x59\x0f\x3d\xe9\x5e\xf5\xa9\x8a\x1f\x59\xc7\x50\x27\xae\x80\x12\x2d\x80\x48\x4c\xde\x59\xae\x1e\x17\x79\xfd\x93\x22\x0e\x63\xac\x18\x4e\x05\xa2\x05\xa8\x77\x37\xa6\xca\x2b\x9f\x94\x79\x21\x7d\x7a\x0a\x05\x26\x0d\xc5\xb3\x3a\xd6\xa9\x08\xa9\x19\x3d\x5c\x6f\x1b\xaf\x9e\x91\x36\x38\xf8\xb2\x80\x55\x17\x5d\x22\x40\xdd\x39\x54\xa0\xc3\x90\xb1\x11\x05\x3a\x16\x98\xe7\x12\x6c\xb1\xd4\x36\x34\x8c\xe9\x86\xb1\x58\xd9\xd2\xaf\xac\x58\x1a\xea\x16\xcb\xc7\x49\xf9\xb6\x26\x6d\x2e\xb1\x5a\xd9\x91\x2d\x22\x1a\xb8\x1f\x36\x42\x2c\xe8\x89\x16\x07\x87\x62\x90\x55\xd1\xb7\x65\x6b\x7e\x2a\x8a\xd9\x04\x9f\x2a\xb7\x2d\x7e\x4a\xcb\xfc\xc8\x36\x54\x2a\x6d\x93\xad\xe7\x50\x6a\xb4\xe0\x10\xaa\x82\x6f\x0b\x5e\xb0\xaa\x27\x13\x6e\x3c\xd2\x60\x15\x89\xaf\x57\x91\xe8\xd6\x4a\x00\x27\x12\xfe\x0c\xce\x3f\x75\xbe\xa0\xbb\xcf\x2e\x85\xc3\x77\x8f\x58\xed\xa1\xc8\x4e\xd9\x63\xc1\xd7\x04\x24\xbe\x7c\x61\x7a\xa7\x82\xc4\x80\x90\xdb\x00\x57\x0b\xe6\x6a\x3c\xd1\x32\xae\x96\x0a\xd2\xdd\x29\x9e\x68\x1d\x57\x6b\x05\x95\x39\xc0\xb4\x38\xef\x4c\x99\x9b\x3a\x8f\xdb\xe2\x87\x8d\x27\x31\xc2\x61\x18\x0b\x96\x17\x71\x38\xa0\xd5\xad\xee\xac\x41\xa8\x32\xf3\xb5\xaf\xc1\xb8\x0c\xf6\x07\x9b\xba\xd2\x67\x11\xa0\x1c\x5a\x7a\x37\x43\xf7\xd6\x79\x51\x4f\x46\xb5\x57\x9a\xfb\x29\x58\xfe\x92\x98\x27\x76\xf1\x42\x38\x7a\x73\x9a\x9c\xc4\x50\xb8\xa7\x78\x1e\xe3\xb0\x17\x46\x26\x99\xcb\x6d\xc1\x2c\x8b\x21\xb8\xb6\x66\x05\x76\xd5\xca\xf8\x85\xe7\xc5\xf3\x5d\x40\x16\x04\x2d\x23\x58\x72\xbe\xd0\xa2\x04\xc9\xae\xf8\x91\x75\x48\xc8\x75\x3c\x3f\xee\x4b\x1e\x1d\xce\x2e\x35\x63\x21\x6e\x44\x0b\x79\x65\x87\xe2\xd0\x6d\xe8\x02\x98\x0c\x7c\x3a\xfc\x0b\x3f\x89\x1f\x45\xf7\xb0\xe3\x2c\x79\x89\x6b\xd6\xbf\xfe\x59\x28\x04\xd3\xaf\x4c\x96\xb1\xdc\x75\x31\x29\x8e\x84\x17\x92\xf9\x5a\xce\xb9\x68\x27\xe4\x3e\xd1\xc0\x79\x9e\xb1\x8e\x49\xf1\x50\xb8\xca\xef\x9e\x8e\xe2\xde\x74\xfb\xa1\x1b\x73\x98\x4b\xbf\x02\x75\xb1\x93\xe8\xc0\x06\x12\x03\x9b\x1c\x7e\x89\x82\x9b\xf5\x6b\xad\xa7\xd7\xba\x3c\xa9\xae\x54\xad\x7a\x15\x3d\x1a\x29\x73\xa5\x47\x8a\xdd\xa2\xc7\x86\xfe\xfa\x5e\xf3\xa4\xa3\xcf\x4c\x49\x80\xb0\x50\xcb\xb7\xee\xe2\xc4\x9a\x32\x96\xc3\x66\x09\x84\xf8\x20\x72\x09\x43\x09\x6f\x63\xca\x17\x18\x81\xb0\xbb\x54\x99\x07\x15\x2b\x28\x2a\x5d\x80\x63\x28\xc9\x6d\xc1\x32\xfc\x1a\xe1\x7e\x81\x91\xac\xd9\xb0\x3f\xf7\xd1\x12\x12\xa2\xf5\x99\xd9\xe8\xc2\x9f\x16\xfd\xc4\x5e\xec\x98\x9a\xa0\x2c\x0c\x28\x0c\x90\x3f\x7e\x2f\xfe\xdd\xa7\x7f\x85\xef\xe7\x70\xb5\x8c\x9a\x2e\x4b\x4e\xfb\x58\x70\xd2\xbb\x50\xa2\xa1\xe2\xcd\xec\xdd\x27\x9b\xb5\x62\xec\x94\xf5\x25\xf4\xc9\x48\xee\x55\x66\x76\xb6\x2a\x62\xe8\x05\xf3\xb7\x1d\xbf\x67\x8c\x13\xc7\x56\x9a\xd0\x57\xf8\x70\x94\xd0\x47\x4c\xec\x0f\x45\xdd\xf0\xa8\xa0\xd8\x0a\xfd\xb5\xd4\x77\x9d\x71\xd8\xcf\xbb\x57\xd5\xf3\xfe\x0b\x60\x88\xa7\x54\x81\xbc\xbc\xc4\x02\xb0\x89\xb9\xb3\xc8\x42\xc3\xd4\x26\xc2\x96\x05\xe0\xdc\xc9\x71\x09\xa1\x03\x3f\x4e\x78\x08\x29\x0b\x8a\x2d\xc7\xdc\x7a\x48\xc4\xa8\xa8\x42\xde\xf1\x05\xa4\xeb\xc6\xd2\xe1\x5b\x9d\x73\x44\xf3\x96\x57\xf6\x88\x2a\x92\x33\x15\xd3\xc1\x74\xcb\x28\x04\xc1\x28\x1c\xed\x71\x77\xa1\x84\x98\xb9\x73\x6c\x95\x24\x73\xd4\x68\x6f\x17\x11\x2e\x7a\xf1\x06\xf0\xd9\xfa\xbd\xec\xc9\xb5\x27\xb2\xb8\x5a\x09\x3d\xa4\x2e\x36\xc2\xbb\xaa\xc1\x19\xf1\x83\xf1\x12\x5e\xcb\x7e\xc6\x12\x06\x81\x08\xa5\xef\x4f\xbb\x4c\x4f\x53\xf8\x45\xaf\xa4\x26\xec\xac\x04\x75\xba\x23\x93\x0a\x91\xb1\x66\xbb\xb4\x4d\x41\x49\xb2\xcc\x82\xce\x16\x2b\x9e\xbd\xa0\xda\x17\xc8\x56\x1e\x8d\xc7\x98\xea\x11\xfe\xc4\xc2\xac\xc3\x21\xde\x0d\x5f\xec\x7c\xf1\x05\xd3\xf7\x5f\x94\x25\xa0\x00\x92\xf8\xd6\xa4\x8b\xff\x32\xb0\xfa\xe9\x54\x37\xa7\xd8\x91\x89\x5f\x64\x85\x7d\x65\xb5\x3c\x96\xe4\x85\xba\x24\xc9\x6e\x4f\x4a\x39\x3d\x97\xb1\x12\x84\x72\x7f\x9e\xaa\x7f\x75\x98\xce\xd6\x61\x3a\x99\x54\xfe\x46\xe2\x19\x44\x65\x43\x41\x17\x64\x63\x88\xa0\xc0\x47\xfa\xc8\x34\x3a\xe7\x12\x64\xa1\xf5\xd7\xce\xb7\x65\x09\x27\x08\xb1\x79\xfc\xff\x68\xb6\x88\x8a\xd0\xe2\x29\xd3\x67\x2a\x96\x2c\xf3\x8f\x64\xe4\xe5\xf0\x99\x02\x44\xac\x73\x8a\x3d\x47\x9e\xd7\xa0\x7b\x65\xdf\x35\x0f\xd4\x8a\xbc\x7f\xf5\xa2\xfb\x3b\x5e\x03\x0b\x53\x22\x57\x6a\x01\x56\x6d\xe0\xc0\x10\xc9\x5b\x5b\xc3\xda\x52\x0b\x44\x10\x3b\xd2\x11\x0a\xba\x80\x42\xcc\x4a\x08\xa5\x35\xac\x67\x78\xb2\x34\x87\xd5\x8d\xa3\x9f\x7c\x38\x06\xf1\x1c\xa7\x63\xa6\xe7\xc3\xc4\x5c\x3c\xcf\x7b\x15\x6a\x97\xb0\xd6\x53\xd0\xae\x0e\x36\x64\x5b\x46\x77\x15\x59\xae\x7a\x80\xb6\xb3\xe4\x58\xec\xa8\x2e\x0d\x28\x26\xda\xdf\x72\x06\x17\x40\x39\xd1\xa9\x8a\xa0\xae\xe0\x44\x54\xdf\x11\x98\x1a\xd2\x3f\x89\xba\x78\xea\xc3\xc1\xb3\xdf\xfa\x81\x86\x74\xe3\x91\x4c\xd9\x70\x93\x1d\x99\x40\x65\xd9\x5f\xc2\x94\x3d\x05\x38\x83\x77\xd8\x0d\x69\xc9\x00\x07\xfc\x8c\x95\x62\xc7\x51\x7e\x54\x57\x96\xd6\x11\x94\x7f\xa6\xed\x2f\x4b\xad\x6f\x9c\xad\x75\xf1\xd6\xa9\x26\x57\x64\x03\xfc\xca\x5f\x4a\x51\xdc\x47\x6b\x34\xbb\xa9\x18\x97\x16\xb9\x85\x33\xb0\x37\x72\x1b\x1b\x16\x7d\x15\x5a\xd0\xc9\x03\x11\x06\x65\x3e\xe0\x75\x20\x90\x6c\xdf\xf0\x40\x53\x5c\xf9\x70\x34\xc3\x2e\xfd\x2a\xda\xcd\xa8\x0c\xcb\x2e\xe8\x36\xd0\x95\x03\xae\xb9\x9d\x50\x37\x07\x42\x37\xe6\x3a\xc2\x04\xbd\x9e\xee\x18\xe9\x89\xef\x2d\x84\x43\x83\x96\x02\x80\xd4\xce\xae\xf2\xc3\x43\x47\x62\x28\x1e\x63\x22\xa8\xdc\x50\x09\x64\x75\xf1\x18\xe5\xff\x45\x70\x48\x4f\x5a\x3a\xc8\x4c\xcd\xfe\x9b\x10\x2a\x99\x34\x71\x8a\xa3\x72\xc8\xcb\xe0\x1d\xd0\x1c\x95\x9a\x4d\xd6\x63\x2c\xb1\x54\xd2\xa0\x09\xf6\xfd\x32\xc7\x38\x0c\xf8\xfa\xab\x70\x6e\x63\x8a\x29\x18\x95\x2d\x34\x8d\x8a\x01\x9a\xcd\x9d\xb1\x5a\x32\x0c\xd6\x77\x49\x18\xb4\x1c\x62\x36\xc5\xc7\x67\x25\x17\x04\xf0\x3e\x4d\xca\x2e\x08\x36\xaa\x42\x4d\x05\xf3\x99\x96\x2e\xd0\x97\x50\x27\x54\x84\xd2\xd1\x0e\xa1\x29\x04\x99\xa5\x0f\x71\x41\x3b\xfa\x37\xc1\x61\x2d\x2e\x33\x43\x66\x4b\x72\x65\x09\xa8\xad\x54\xea\x82\xd4\x81\x5f\x73\xd7\x58\x30\x72\x94\xa9\x6d\xb4\x89\x6e\x6e\xfc\x05\xdc\x5f\x7b\x1b\x4c\x4f\x31\x13\x92\x71\x85\xe0\x23\x6a\x71\x51\x67\x53\xe0\x00\x88\xb1\x4c\x2d\x31\x52\xde\x5a\x93\x19\x81\xc5\xce\x58\x99\xbe\x1d\x63\x87\xa0\xf0\xac\xca\x44\xd5\x1a\xcf\xf1\xfa\xa7\xd2\x4e\x60\x7c\x76\x3c\x59\x16\x18\x39\x88\xc7\x79\x90\xfb\x36\x98\x37\x85\x33\x30\x82\x6e\x60\xd5\x77\x3c\xd3\x27\x9f\xd9\xd9\xda\x66\xfc\x6e\x7d\x9d\x14\x12\x73\xfe\x85\xb5\x85\x9f\x31\xc8\x01\xff\x4b\xb0\x09\x0e\xc1\x0c\x41\x2b\xe2\xbc\x55\x4c\x4b\x52\xd7\x01\xa3\x96\xa6\xf3\xb4\x9c\x26\x57\xa3\xdf\xf0\xc2\x6f\x39\x4e\x04\xfb\x17\x5f\x8c\xf1\x20\xf9\x9b\x2d\xf2\x72\xfa\xb9\xe2\x87\x70\x32\x11\x14\xe0\x13\x2f\xeb\xc4\x9b\x46\xc9\x18\x78\x2d\x0a\x7f\x1c\x4a\xb2\xc7\x1e\xc1\x58\x60\x43\x49\xb6\x08\x25\xa1\xcd\x93\x46\xb8\x3b\x1c\x87\xfd\x25\x94\x8f\x6c\xc7\xc6\x61\x62\x5d\x3c\x39\x59\xd9\xa1\x2c\x5e\xe7\xa3\xba\xc2\xee\x6f\x11\x87\xc5\xa6\x21\x8d\xc6\x88\x78\x94\xfd\xab\x49\xe0\x79\x93\xe0\x8c\xf7\xe2\x2b\xec\xd7\x9e\xbb\xef\x05\xe6\xfb\x14\x4e\x89\x03\x5e\x83\x9c\x36\x2d\x08\xbc\xca\xba\xaa\xb2\x99\xee\x8d\x17\xe4\xef\x94\x33\xa2\xf8\xde\x92\x33\xcc\x2e\xd8\xa3\x33\x8b\xd0\x70\x25\xb3\xf8\x08\x2a\xbc\x38\x03\x03\x4a\x8e\x84\x50\x65\x99\x1f\x85\x0a\x4b\x72\x02\x7d\xc7\xd4\xca\x4e\xad\x56\xc6\xf1\x7a\xb9\x7c\xae\x90\x90\xc4\x51\xc7\x42\xf0\xe4\x78\xf1\x23\x77\x1f\x1e\xaf\xfb\x5b\x3d\xca\xee\xe4\x1e\x1a\x64\x8e\x4b\xdc\x89\xd8\xaa\x24\xc4\x9d\xff\x9b\xb3\x94\x24\x01\xb6\x99\x60\x28\x31\x1b\xae\xfb\xc5\x7b\xbd\xc8\x52\xd9\xbf\xaa\xc4\xb2\x52\xeb\x2d\x4b\xb6\x43\x91\x82\x26\x7f\xfd\x32\x9c\x49\xd5\xc7\x69\x79\x32\x03\x33\xf6\xe1\xfa\x59\xb9\x39\xd0\x36\x8f\x6f\x88\x27\x20\xde\x19\xc6\x60\xc1\x23\xdc\x88\x4f\xeb\xca\xf7\x82\x6d\xbf\x09\x14\x9d\xb8\x2b\xc5\xf3\x4b\xf5\x3c\xc2\x8c\xdc\x11\x54\xfc\x51\xea\x9b\x65\x75\xa5\x42\xc4\xac\x5e\x86\xe7\xc4\x7e\x2c\xde\xfa\xc7\x04\xb6\xef\x34\x39\x30\x33\x8a\xff\x19\xff\x47\x7b\xa6\x40\x0a\x0c\xae\x99\x75\x89\x50\xa4\xf4\x5b\x60\xb0\x7c\xb3\xca\xe3\xe5\x62\x25\x35\x28\x73\xc2\xa0\xe0\xd6\x38\x4b\x08\x7b\x36\x2a\xed\x8f\xad\x33\xdf\x03\x8d\x34\x32\xc4\x10\x07\x54\x27\x6d\xa5\x3a\xb3\xad\xac\xb5\x88\xc2\xd8\x7f\xac\x35\x49\xe0\xbb\x2f\x89\x36\x7d\x78\x24\xc7\x15\xa2\x38\x88\xed\x3a\xe5\xb2\x11\x4d\x27\xb4\x99\xd1\xab\xaf\x9f\x0a\x68\xea\x50\x5f\x66\xa3\xe7\x4c\x54\xb4\xd7\xd4\x06\x9e\x9b\x26\x71\x89\xa3\xde\x80\x6d\x0b\x40\x68\xe9\x8b\xf6\x17\x6d\x01\x7c\x55\x62\x24\x42\x38\x6e\x83\x66\xd3\xc1\xb3\x52\x6f\x2c\x4a\x78\x63\x5b\xc2\xa5\x48\x9e\xe3\x01\x63\x71\x8e\x8c\xd7\xa5\x8c\x67\xac\x4f\x79\xc8\x16\xb2\xa1\x39\x21\x91\x6d\xb0\x32\x31\xeb\x8c\x65\xba\x58\x06\x8b\xd1\x46\xcd\x30\x12\x50\xd8\x34\x79\x03\xc7\x44\x24\x9d\xd9\x85\x27\x67\xab\xe3\xcb\xeb\x64\x67\x2f\x40\xbc\x6b\x00\x19\x0c\xd9\x1f\x3d\x03\xdf\x9b\x97\x1d\x69\x97\xff\x49\xa5\x0d\xb1\x95\x73\xe9\x8e\xae\x38\xd9\x31\xbc\xb2\x65\x03\x56\x9c\xee\x34\x47\xe9\x0c\x60\x18\x9f\xfe\x6a\x46\x86\x7e\xad\xad\x0c\xa9\x84\x5d\x70\xda\x75\xbd\x60\xc9\x82\xe9\x02\xdd\xdc\x97\x65\x15\x6f\x32\xd4\xe7\x5e\x07\x65\x6e\x7d\x75\x28\x3a\xb6\xdb\x10\xb0\xb5\xe2\xdb\x70\xa9\x6d\x45\x3b\xfa\x76\xb8\x25\xaa\xcb\xd6\x7d\x23\x0f\x46\x8b\xcb\xf1\xd3\x54\x52\x1b\x04\x45\x3f\x66\x27\x16\xcb\xfc\x36\xbc\x44\x84\xee\x9e\xf5\xb6\x73\xb6\x8a\x6e\x40\xad\x59\xb0\x74\x7d\xb3\x99\x0d\xc6\xda\x0a\x4a\x93\xac\x20\x10\x25\x02\x21\x17\xdf\x93\x25\x8d\x29\x6e\x9f\x6b\xd2\xb8\xa6\x14\xfa\xa2\x4a\xa8\xec\x1c\x1e\x2d\x7a\x1f\x9f\x92\x47\x12\xfd\x3a\x91\x96\x76\x74\x0c\xba\x5b\x93\xd0\xa6\x94\x28\xf7\x91\x43\x05\xd5\xd3\x9d\x3d\x40\xdd\x28\x35\x69\x74\x40\xa2\x69\xdb\x56\x53\x76\xda\x1b\xc2\xa9\x79\x30\xb0\xd2\x13\x99\xad\x2c\x66\xc7\x27\x40\xbe\xc6\x13\xc1\xbd\xd9\x93\x31\x4f\xbd\xe8\xcf\xb8\x72\x88\x03\x5b\xca\x9c\xfa\x1e\x38\x2b\x38\x33\x06\xa0\x45\x5f\x05\x41\x03\x0e\xd6\x95\xa8\x02\x4a\xcd\xaf\x3e\xa9\x55\x9e\x2a\x1c\x01\x21\x2a\x1b\x10\xab\xf2\x14\x6b\x8d\x53\xb4\xf6\x62\xd9\x1f\x4a\x89\x7a\xc0\xa3\x91\x7a\x74\xbf\x35\xf9\xc5\x87\x9b\x7b\xa0\xd6\x34\x87\x63\xc7\xc1\x3e\xd0\x85\x37\x24\x2a\xf8\x49\x1a\x60\xeb\x51\xa9\xa7\x92\x02\xc6\x86\xa1\xb0\xbd\xdc\xd5\x28\xb2\x84\x5b\xa1\xae\xa9\x5d\x75\xe3\x79\xcf\x28\x54\x55\xa8\xb8\xea\x97\xb8\x33\x61\x5b\xa8\xb2\x06\xd3\x2d\xdd\x71\x3a\xcc\xad\x7c\xb2\x6b\x1d\x5d\x4e\x5d\x4f\x29\xe6\xfb\x4d\x3d\xdf\x63\xb4\x08\x11\x94\x66\xf7\xe0\x53\x53\x87\x27\xa5\xc2\xae\x76\x11\x07\x16\xcc\x31\xe1\x81\x9e\x25\xe7\x10\x52\xc8\xec\x3d\x7d\x8f\x04\xe7\xc2\x3b\x8c\x3e\x82\x22\xed\x2e\x72\xac\x17\xd9\xa8\xb8\x5a\x09\x8a\x15\x2f\x51\x03\x00\xd5\x88\x43\x7c\xd7\xe6\xf9\x64\x43\x33\xd7\xfa\x87\x93\x42\xc4\x2a\x43\x12\x36\x8a\xc7\x7f\x8a\x05\x64\x2b\x67\x2c\x40\xa5\xd5\xc5\x35\xec\x74\x67\x34\xd0\xe3\x4c\xd1\xfc\xb3\x7e\x28\xd6\x56\x47\x24\x7b\x1e\x01\x8c\x43\x89\xad\x8b\x1b\xbf\x09\xca\x9b\x03\xb8\xce\xff\x1e\x56\xd1\xb0\x36\xa8\xe3\x06\x05\x63\x33\x30\x4c\x6a\x56\x5d\x38\x1e\x21\x5b\x36\x5c\xf8\x2c\xc3\xf7\x8f\xc9\xa0\xea\x3b\x2a\x5a\xc6\x82\x30\x2e\x99\x88\xae\xff\xad\xd3\xc2\x66\xaa\x5f\x19\xe8\xa1\x65\x93\x6d\x96\x04\x6a\xd9\x82\x9c\x71\x5e\x81\x18\xe8\xdc\x15\xac\x4b\x7e\x7a\x2a\xa1\x6e\xfc\xe3\x86\x2f\xa9\xc4\x66\xe3\x00\x05\x0d\x0d\x6d\xe4\xcd\xe1\xab\x7d\x1a\xa6\x84\x1d\x48\x6b\x1d\xf3\x40\x41\x92\x62\x98\xe0\x52\xb4\xdf\xc1\xc5\xa3\x24\xf3\x85\x6a\x99\x3c\x4a\xcc\xdc\xf9\x9a\x34\x36\x75\x56\xb6\x51\xcf\x55\xae\xed\x2c\xa7\xb7\x0e\x02\xe7\xff\x29\xb4\x06\x18\x60\x58\xe1\xc8\xef\xb7\x01\x5b\x09\x87\x77\x49\xf8\x09\x6a\x0d\xab\x17\x3f\x25\xfb\x79\x9f\xf9\xbd\x59\x25\x5b\x72\x74\xe5\x8b\x1c\xdf\x7c\x7b\x87\x5a\x28\x0b\x03\xc3\x42\x3b\x5e\xb6\x2a\xc9\x4b\xe3\x43\x25\xbc\x80\x7b\xec\x80\x56\x60\xee\x64\x70\x2d\xbd\x41\xfb\x34\x62\xef\x82\x8f\xb0\x6d\x16\xbc\x8b\x6d\x55\x96\xce\x0f\x4e\xc7\xab\x05\xe2\xae\xf9\xf1\xea\xd7\xcb\xe4\x82\x49\xf9\x86\xed\xb8\x5b\xc3\x6b\x08\xda\xad\x0f\x19\x99\x91\x0e\x67\xb7\x76\x62\xd5\xac\x89\x9d\x83\x0f\x49\xb9\x81\xfb\x08\xdb\x5d\x44\x18\x23\xca\x2c\x17\x6f\xd4\xae\x27\x41\xdf\xfd\x90\x22\x72\x38\x73\x02\x93\x36\x99\x98\x74\x2d\xec\xf1\xe2\x60\xb3\x30\xb5\x93\xf3\x6c\x34\x09\xaa\x7d\x90\x6b\x82\x6e\x6b\xf4\x86\x06\xfb\x52\xaf\x14\x21\x17\x83\xd0\x60\xdf\xb3\xe6\x8e\xef\x7c\xe9\x32\xce\x14\x2e\x50\xa8\xf1\x37\x85\xef\x45\xd5\xc1\xcd\x36\x65\x53\x6c\x7e\x6f\x4c\xe0\x86\x46\xc1\x2a\x5e\x0a\xb3\xf0\xcb\xe9\xfd\x09\xe8\x0d\x5a\x1a\xc1\x60\xc7\x33\x86\x76\x1a\xb2\xa5\x8e\xad\xfb\xf2\x4c\x25\x5a\x0c\x6c\x68\x4f\x29\x38\xb3\x4c\xcd\xe6\x9b\x6d\xe0\x38\x4c\xfe\xc1\xb2\xc4\xd8\xaf\x61\xdd\x80\xe9\x6f\x5c\x41\x07\x21\x26\x6b\x63\x4b\xdd\x0e\xfe\x41\xd7\x8e\x4c\x44\xff\x65\x6c\xab\xeb\xcd\xa0\xaf\x4b\x4a\xc6\xbc\x22\x7a\x7e\x06\x3a\x4a\xd4\x91\xc4\xb8\xf0\x30\x91\x60\xbc\xa1\x6c\x4a\x43\x17\xee\x60\xfe\x6e\xe8\xa8\x8b\x79\x20\x94\x25\x14\x5f\xf8\x58\xc5\x56\xd1\xe7\x57\x8e\x8c\x26\xd5\xec\x78\x6a\x87\xd0\x3a\xc9\x61\x90\x19\x21\x5f\xe0\x08\xe6\x07\x73\xaa\x36\x01\xb1\xb9\x20\xd0\x37\x2a\xf7\xa6\x19\x58\xe7\xc8\xb4\xa1\xa3\xa7\xd6\x05\x50\x42\xdb\x47\x7a\xac\xad\x06\xf1\x64\x5e\x12\x27\xa0\xa2\x83\x94\xd6\xaa\x4a\x0c\x45\x64\x07\xdb\xb7\x9d\x02\x72\x15\x9e\x69\xb6\xa9\x41\x2b\x81\x04\xc3\x08\xf7\x55\x81\x1c\x44\x0c\x51\x13\x73\x45\xba\xf7\x0e\x67\x83\x04\x04\xf6\xcf\x0a\x1f\x96\x27\xdd\x72\x60\xcb\x33\xa8\x68\x58\x45\x5b\x8b\x07\x4d\x45\xed\x1a\x28\xa7\xe9\xab\xc9\x35\xd5\x8b\xfc\x90\x8e\x1e\xa4\x50\xc1\xcb\xfb\xc7\x9d\xd8\x5e\xb1\x81\x50\x3c\x11\xee\xd1\x49\x80\xfc\xc6\xf3\xfe\x2c\x5a\x29\xec\xfb\xfa\x01\x20\x30\x1d\x18\xc0\x00\x09\x58\x36\xad\x05\xcd\xbc\xdc\x54\x29\x12\x78\xf5\xe8\xa8\x3f\xdd\x8f\x70\x92\x63\x6e\xa6\x7e\xa8\x10\x07\xcf\x31\x51\x9f\x3a\xef\xba\x0b\x54\xcb\xc0\xfe\x9c\x28\x94\xea\x79\x09\x5b\xec\xa3\xdd\x0d\xe9\x4e\xcc\x93\xdd\x68\x07\xe5\x11\xc1\x51\x91\x02\x17\x3e\x3b\xfa\x08\x73\x7a\x8a\xae\x09\xbc\xc6\x8f\xfa\x22\xdb\x73\x2b\x84\xeb\xe7\x00\x59\x06\x28\x98\x7b\x08\x38\x0f\x3c\x26\x1a\xf9\x76\x4a\xf7\x9e\x18\xdf\xca\x8d\xe7\xbd\x20\x86\xc2\x6a\xac\x85\x34\x75\xa9\x2b\xb9\x09\xd6\x1b\x66\xf4\xc5\xae\x3a\x85\x88\x54\x69\xd9\x53\xbe\x4b\x9a\x0f\x83\x7d\x5f\xa6\xd3\x2a\xf4\x51\xd3\x78\x6f\x2c\x2b\x80\x57\xc7\x0b\xca\x7d\xa9\x40\x90\x69\x7f\x14\xdf\x79\x68\xa3\x96\xe8\x65\xe6\x6b\x85\xd6\x67\xc8\x1b\x14\x42\x10\x22\x55\xc6\x63\xca\x67\x4f\x1a\x4f\xf1\xd3\x55\xd6\x64\xaf\xb3\x5e\xa2\x80\x3e\x84\x49\x95\xb3\xe8\x9f\x93\xc3\xc1\x85\x16\xfc\x8c\x1d\xa6\x2f\x94\x79\x43\x1e\xf5\xdc\xcf\x2d\x4d\x2d\x8e\xa6\x26\x93\x4b\x01\xfb\x09\x0a\x98\xd7\xce\x28\x49\x97\x33\x14\xd0\x8b\x94\x80\x0e\x99\x79\xd6\xcb\xa0\x7f\x67\xfe\x4e\x41\x1f\x7b\xc8\x97\x90\xd8\x35\x1e\xef\x9c\x4d\xc1\x32\x31\x3c\xc8\x3c\x56\x88\x8b\x79\xe7\xbf\x93\x92\x96\xef\x34\xfc\xd9\x66\xda\xd2\xb4\x0f\x13\xbb\x49\xd0\xbe\x6f\x0a\x0c\xf1\x6a\x3f\xbb\x8f\x07\x18\xcf\x50\x38\x18\x2e\x6a\x10\xc2\x7d\x90\x00\x7d\x4c\x28\x80\xbf\x1f\x31\x05\x17\x24\x2f\x9a\xe2\x03\x22\x60\x0a\xb8\x58\x55\xef\xfe\xb4\x94\x90\xd7\xf5\x5d\xd3\xc1\x73\xeb\xaf\x30\x95\xcd\x83\x6b\x59\xe1\x8d\x5e\xe7\xa9\xa5\x09\xd4\x75\xc6\x6a\x1f\x65\x56\xc1\xf0\x8d\xa9\x1e\xd8\xe5\x14\x5e\xbf\x1f\xf6\x08\xa1\xa3\xc8\xd8\x21\x8b\xd7\x72\x2d\x45\x16\xff\x6d\xd8\x09\x59\xfc\xa1\xf0\x68\x13\xfd\x05\x51\xd4\xd5\x88\x38\x63\x26\xb4\xe2\xe8\x4a\xd5\xf5\x44\xdc\x06\x9e\x67\xb9\x7c\xd5\xd2\x72\xb9\xb5\xec\xdd\x88\xb0\x6c\xe4\xd2\x3c\x33\xce\x22\x8f\xb2\x6a\xc9\x7f\x96\x58\xc0\xad\xb2\x51\x4d\x3c\x20\xab\xe0\x63\xa5\xb4\xe2\x18\xff\x86\x1f\x9e\x2e\x97\x44\x88\x4a\xea\x02\x63\x7b\x54\x28\xeb\xfe\xa1\xa7\x71\x86\x67\x75\xbf\x72\xd5\xd8\xdb\x64\x42\x9f\x5d\xdf\x9a\xd1\x05\x27\xc6\xd2\x21\xb4\x33\x49\x44\x4a\xf3\x3c\xc7\xd7\x2e\x68\xcc\xb8\x75\xbe\xb1\x15\x79\x38\xfe\x77\x41\x66\x62\x71\x20\xe0\x0c\xcc\x4d\x96\x87\x0b\xaf\x67\xcf\x7b\x71\x4c\x67\x80\xe8\x58\xf1\x92\x91\xe6\x2b\x26\x2b\x83\x47\xaa\x95\x6d\xca\x13\x4f\xd1\x04\xb8\xc3\x18\x4a\x73\x0b\xd6\x6f\x7f\x33\xb9\xcb\x86\x5a\xf3\x64\x64\xe3\x6d\x5c\xb3\x61\xe6\xfc\x23\xeb\x79\xdd\x3a\xba\xc3\x8d\xe7\x3d\x3b\xca\x54\x4b\x6d\x95\x27\x53\x8e\x17\x9d\xbf\x77\xf7\xa0\xeb\x79\x9d\x25\x7f\x72\x04\x93\x4d\x15\x40\xb0\xe0\xa5\x52\xc9\x88\xce\x10\x03\x0e\x1e\x6a\x0b\xfa\xdc\xc4\xb8\xd2\xcb\x5c\x42\xfc\x0d\xe8\xc3\x12\x84\x79\x76\x00\xfd\x4d\x9f\x8c\x42\xa4\xbf\x9e\x69\x25\xe3\xc0\x70\x6e\x2e\x9a\x82\xad\x3d\xb8\x96\x27\x2f\x32\x70\x63\xa3\x4e\xee\x17\xd9\x40\xa3\x7a\x4e\xb8\x86\xc8\x54\x33\x18\x1b\x04\x87\x3d\xc6\x8c\xb5\xee\x94\x3a\x27\xcc\x97\xf8\x85\x1f\xdc\xee\x20\x4a\x38\x83\x37\x6c\xb5\xde\x32\xed\xaa\x24\xac\xd6\xe0\xa0\xa5\x1e\x67\x9e\xfc\xd0\x0f\xc1\x6a\xed\x8d\x9c\xa4\x2a\xd3\xde\xfa\xe8\xda\x75\xa5\xcf\xd7\xf7\x2c\xe4\x0d\x35\xb9\x0b\x2e\x58\xa4\x2f\x1e\xab\xdb\x4d\xf2\x4b\x06\x2f\x9d\x38\xe0\xb1\xf5\xc1\x05\xf3\x37\xe3\x39\x8c\x89\x35\xe6\x23\x86\x43\xc9\x17\x5c\xa6\xf1\x8e\x6c\x94\xef\x4c\x2b\xbe\xb1\x08\x9d\x2d\x55\x96\x14\xc9\x39\xb8\x60\x56\x56\x7b\x47\x57\xd7\x29\x1b\x3a\xb6\x0b\x5d\xc1\xfe\x0a\xb6\x69\x33\xba\x99\x79\xc7\x16\x85\xb7\x43\x76\x6c\xea\x1f\x8c\x58\xdb\x7f\x04\x96\x88\x4b\x56\x26\x21\x32\x80\x0f\xb3\xaa\x43\x9e\x26\x2c\x96\x45\xdb\x62\xf2\x3c\x29\x46\x48\x42\x22\xeb\x03\x55\x95\x7f\x05\x51\xf1\x78\xf1\x4d\x4a\x99\xf9\x01\x15\xa3\x50\x72\x0d\x73\xbc\x33\x37\xf0\xe1\x73\xd0\xe9\x5a\x71\x67\x88\x37\x29\xde\x62\xff\x22\x6b\x83\x5e\x3b\xe2\x0a\x96\x59\x01\x0b\xf1\x9f\x13\x2e\x80\x0b\xfb\xf8\x8c\xc3\x1b\x62\x56\xd0\xa7\x2f\xd6\x93\x7b\x6c\xc3\x4a\x80\xa6\x54\xdd\x90\x53\x54\x38\x1d\xe8\xd5\x5e\xe8\x5b\x58\x29\xe2\x70\x46\xb2\xc2\x01\x96\xce\xd0\xde\x2a\x26\x6e\x45\xf6\x56\xd9\xb9\x15\x8c\xdf\x54\x84\xdd\x5e\x7b\x42\x18\x6c\x62\x3d\xe7\x5a\x23\xc5\x0c\xcd\x4a\x09\x9c\x54\x06\x0a\x2f\x1c\x2b\xda\xdc\x7e\x22\xa6\xbe\x0d\x50\x3d\xaa\x21\x91\x09\x58\x3c\x2e\x4b\x64\xe0\x1a\x63\xa0\x9c\x51\x05\x97\x59\xd2\x99\x57\x1c\xd3\xea\x8c\x32\x4b\xa5\x6f\x65\xe8\xa4\xf2\xcd\x1f\x53\xdc\xeb\x54\x15\x42\x77\x16\x75\xa4\x47\x3b\x77\x6d\x49\xb6\x8d\x27\x8a\x21\x35\x09\x11\xec\xb0\x21\xcf\xf6\x3a\x60\x0f\xf7\xde\xd7\x81\x07\x9e\x9e\xd2\x82\xf3\xbb\x97\x64\x8a\xbd\x29\xf5\x6c\x41\xd2\xf2\x83\x46\xa9\x0a\xf7\x98\xf7\xf7\x8c\xbe\xe1\x88\xdd\x26\x1d\x4e\xb2\xb5\xeb\x5e\x56\x55\x14\x49\xa9\x8a\xa4\x9e\xc4\x4b\x63\xfc\x9e\xe0\x37\x7c\xf4\x14\xb7\xdc\x91\x92\xbe\x6c\x04\xaf\x02\xbc\xbb\x8a\xc0\x95\xe8\x64\x51\x15\x75\x47\x51\xb9\x1d\xbe\xcc\xa5\x4b\xcf\xfc\xc4\x2f\x64\x10\x0d\x58\xf0\x01\x74\x6c\xfc\x0d\x61\x48\x28\x96\x28\xa8\x1a\x9f\xd8\xde\xa6\x9e\xa9\xc4\xb9\xd6\xf1\xec\x4a\x99\xf5\x29\xf2\xd6\x29\xff\x94\x05\x04\xb3\x93\x4b\x80\x93\xd0\xff\x9b\x48\x6c\xc1\x92\xab\xf0\x49\x14\x66\xb3\xa2\x62\x4a\x34\x53\x4d\xb4\xaa\x75\x79\x33\xb2\x38\x42\x95\x24\x6e\x38\xbc\xd0\x75\xc4\x28\x3f\xa9\xc6\x9c\x14\x9f\x42\x90\xe6\xe4\xc5\x37\x07\x45\x63\x84\x3c\x87\xab\xaf\x57\xb7\xde\x29\x1c\x76\xce\x40\xbf\xfe\xd5\x8d\x77\x0e\x37\x1d\xba\x5c\xfe\x82\x96\x4b\x74\x19\xd1\x41\x55\xa9\x4c\x9b\x9e\xda\x13\xa0\xd1\x83\xc7\x36\x57\xf5\x51\xbc\xfb\x97\x91\x24\xba\x14\xb5\x17\x79\xde\xcf\x21\x22\x32\x2a\x4f\x31\x26\x73\x28\x75\xf5\x49\x8d\x6d\xd9\xdc\xe4\x3b\x9f\x14\x32\x67\x7c\xd7\x97\x8e\x5c\xe9\xb6\x78\xa7\xd6\xe6\xbe\x63\x12\x9f\xa6\xdf\x9d\x50\x1e\x23\xaf\x69\x5d\x6b\xf6\x9d\x9f\x77\x13\x9e\xe7\xfc\xc9\xc2\x1d\xed\x2b\xbe\x55\xe0\xb0\x61\x30\x2f\x6b\x10\x77\x22\xb0\x0a\x77\x7a\x7a\x08\xe0\x39\x3b\x73\x76\x1f\x49\x47\xfa\x58\x2b\x7b\x03\x95\xb1\xc6\x55\xd7\xc9\x68\x40\x33\xa9\x21\x05\xae\x6a\x8c\x1b\x14\xb0\x18\x2f\x25\xd8\x43\xb8\xaf\x01\xe7\x59\x06\x8a\x9a\x11\xea\x54\x4a\xf4\x79\x13\x37\x4c\x22\x96\xdc\x60\xae\x52\x00\x9e\x23\xe7\xcf\xfc\x1d\xd8\x3f\x4f\xc5\x64\x01\x89\x63\x91\xe5\x6a\xc9\x0a\x4d\xd0\x77\x34\xb6\x96\xf8\x8e\xc4\xf2\x92\x4a\xa4\xdb\x9a\x46\x1b\xa3\x15\x04\x71\x20\x8e\x1c\xcc\x0c\xcb\xf4\xd6\x58\xa9\x60\xae\x36\x03\x48\xff\x21\xd5\x8f\x26\xb2\xb1\x47\x1b\xeb\xb0\x49\xb4\xa0\xc9\xf3\xd4\x27\xc2\x8f\x52\x79\x55\x61\x76\xd3\x0d\x6e\x12\x92\xff\x32\x02\x61\x90\xc4\x13\x2e\x54\x18\x2e\x23\xb5\x14\x39\xd4\x14\xd4\xc9\x06\x0d\x53\xdd\x82\x76\x01\x90\x1c\x15\x55\x49\x90\x09\xdb\x11\x62\x02\x6e\x30\xa9\x9c\x52\xc8\x11\x8b\x5e\x32\xed\xea\x88\xfa\x55\x0d\x0c\xc2\xa4\x3f\xf1\x06\xfe\xe8\xf8\x5b\xcc\xe1\x16\xaa\xe6\x94\xac\x42\xfd\xc3\x39\xec\x91\xe7\xcd\xfd\x65\xe8\x4e\xb3\x23\x07\xbd\x7e\x50\x88\xfc\x9a\x62\xfe\x07\x55\x10\x95\x4e\x72\xd8\xb2\xb8\x86\xa4\x7c\x07\x20\xa5\xd0\x59\xbb\xc8\x8d\xe5\x4b\xeb\xea\xd9\x78\x58\x67\x5d\x9d\x98\x2f\xc7\xaf\x36\x5b\x2e\x34\x25\x7b\xab\x5a\x53\x64\xbb\x82\x8a\x5b\xc6\xb6\x12\x72\xed\x2f\xc9\x67\x62\xd4\x03\x9b\xe0\x15\x1c\xd4\xf9\x99\x14\xec\xa1\xb9\xd9\xd6\xd4\xfa\x37\xe9\x12\x88\x46\x1e\x92\x8c\x8d\x5a\x55\xf1\xa2\x3a\x16\x4a\x7b\x22\x89\x2a\x04\x18\xb7\x22\x8b\xf9\x73\xd1\xb6\xd4\x70\x5e\xb4\x29\xfc\x5c\x22\x0d\xf5\xbe\xa8\xeb\x4f\x88\xe2\xa0\x05\x2e\xb1\x3d\x26\xee\x1c\xd6\x61\x97\xe0\x55\xf1\xe2\x21\x8b\x10\x58\x7b\xb8\xc3\x67\x45\xd8\xa6\x25\xaf\x25\xc5\x3b\x59\x38\x81\xe1\x82\x6b\x31\xee\x38\x84\x16\x15\x98\x14\xfa\x3a\x48\x4c\xcf\x34\x61\x72\x6b\xa9\x0d\x60\x59\x43\xd5\xbc\xa9\x85\x97\x97\xf2\x27\x31\x37\xbc\x87\x57\xea\xf0\x70\xf1\xaf\x6a\xcb\x92\xde\x14\x95\xca\x8e\x51\x7e\xfa\xe9\xec\x4c\xdf\xf3\xee\xa6\xf7\x32\x58\x14\x2b\x12\x72\x24\xb1\x55\x38\x1b\x61\xed\xa0\x8b\xd6\x34\x71\xb5\x81\xab\xd8\xc0\xa9\x92\x4c\x28\x49\xbd\x98\x2c\xc7\xf0\x1f\x6c\x22\x60\x17\xdf\x36\xf1\xd2\x92\xd2\x57\xcb\x60\x48\xd2\xc5\x3d\xd4\x79\xcc\x11\x77\x59\x0b\xbd\x60\xca\x45\xbb\x46\x75\x10\xc0\x5a\x3a\xec\x3c\x57\x43\x45\x5a\x08\xe3\x22\xe4\xd4\x60\x6c\xb1\x52\x4e\x45\x9d\x8d\x41\x5a\x7d\x40\x28\x67\x45\xb2\x05\xa6\x35\x25\x55\x43\xef\xc3\x0e\x33\xa7\x87\x0e\x5c\x2a\xba\x89\xeb\x28\xef\xbb\x39\xfb\x89\x42\x29\xc7\xec\x42\x29\x6d\x75\xb1\x63\xfa\x9a\x19\xff\x03\xad\xcd\xd7\xbf\xdc\xb2\x29\x99\x45\x54\x96\xee\xd4\xe4\xcb\x61\xe6\x04\x5d\x5c\x2e\xea\x59\x3a\xc2\x20\x22\xe8\x74\x2d\x9b\x42\x51\x19\x76\xa5\x56\x23\x5b\x9e\x94\xa7\x6a\x6d\x3a\x46\x3a\x24\x9f\x97\x0b\xdb\x39\xe4\x35\x31\xf5\x44\xaa\x1c\x4f\xa5\xa2\x65\xdd\xf8\x9d\xa6\x2e\x86\x51\x38\xa0\xaf\x2d\xcc\x08\x32\x06\x57\xee\x18\x27\xf8\xde\x8c\xc5\xaa\x25\x36\x77\x51\xd3\x3d\x3b\xd6\xb8\xba\xaa\x49\xd1\x54\xaa\xe3\x87\xab\x9b\x1a\xc7\xa3\x17\x53\x07\x66\x2d\xba\x49\x68\x5c\x8e\x81\x02\x05\xec\x2d\x3b\x2d\x7a\xac\x7c\xd1\xe2\x69\x4b\x4c\x3c\x0a\x1d\xe3\x1d\x07\x6e\x36\xfb\x75\x1c\xc2\xf8\x8a\x2e\x3d\x90\x53\x05\x0a\x7a\x52\x48\xac\x96\x2e\x6b\x82\xaf\x5c\x2a\x6b\xf2\x7f\x12\x38\xb7\xaa\xaa\x89\x94\xea\xfa\x6e\xbe\x86\x02\x6f\x25\x47\xb1\x89\x47\x8e\xa7\x21\xdf\x6f\x39\x23\xcb\xf7\xc7\xce\x3b\xf1\x1c\x63\x2c\x96\x77\x3c\xa1\xbd\x26\x51\xa1\x2a\xf6\x2f\x12\x6c\x95\x85\x94\x83\x03\xda\xb2\x45\xa1\xed\xa2\xba\x72\xab\x55\xa0\x36\x56\x15\x3d\x13\x8c\x16\x05\x19\x60\xa0\xab\xd3\x01\xa2\x10\xc7\xf2\x4f\xea\x8d\x13\x0e\xcb\xda\x3d\xa4\x72\x86\x4c\x51\x52\x58\x17\xab\x52\x59\x7e\x5f\xd7\x4c\xdd\xb6\x30\xc2\x37\x50\x45\x60\x54\xa5\x8c\xe9\xe3\x6f\x55\x22\xed\xf8\x7f\x9b\x5e\x4a\x54\x4d\x15\x06\x77\x58\xc5\xaa\x2e\x05\x3a\xba\x00\x49\xe9\xa7\x55\xd5\x12\xae\x9a\x45\xbc\x88\x8e\x38\x75\x43\x1c\x92\xc5\x0a\x83\x63\x64\x5c\xe8\xf2\x22\x03\xa4\x85\x4a\x12\x3a\x6a\x7c\x31\xda\xa1\x08\x14\xe3\xcd\x09\xa8\xb0\x9f\x25\x67\xfc\x31\x2e\x20\x79\x91\x4f\x98\xdd\xfa\x58\x20\x95\x72\x61\x1a\x43\xe8\xdc\xf8\x09\x54\x98\x96\x93\xa8\xe0\x59\x0a\x13\xcc\x59\x2f\x2d\x80\x5b\x9e\x33\x76\xbf\xc6\xbb\x3f\xa3\xec\xb4\xa6\xe4\x84\xc5\xb2\xa0\x26\x1d\x4a\x43\xc5\xe4\xa1\x52\xc8\x04\xe1\xeb\x58\xb4\x49\x02\x98\xb6\x1d\xa3\x93\x41\x25\xc4\x15\x98\x7d\x2a\xa9\x1e\x46\xd7\xf8\x34\xcb\xcc\xd2\x48\x2d\xa6\x26\xb1\xc4\xbf\xab\xf9\xaa\xa2\xe3\xbe\xe1\x5b\xfb\xe8\x88\x8b\x8d\x2f\xe9\xc5\x9e\x14\x5c\xd4\x53\x85\xa3\x97\xb4\x45\x80\xa0\x5c\xbb\xa0\x72\xc5\x5a\x16\xb9\x7c\xf3\xdf\x46\x8a\xa7\xac\x6e\xd9\x52\xcb\x6a\x7b\x91\xc9\x20\x10\xbe\x8e\x1c\x62\x60\xe2\x0e\x42\x75\x53\x2a\x2a\xd9\x9c\x2c\x8e\xe2\x19\xfa\x10\x0f\x17\xb4\x1a\x6a\x07\xf2\x27\xbe\x79\xd4\x5c\xcc\xe4\x56\x51\xf6\x25\x47\x3b\xd0\xa3\xba\x8c\x21\x88\x3a\x1e\x95\xd3\x84\xae\xd6\xdc\x58\x0e\x56\x1c\xb7\xcc\xee\x8a\xf3\xad\x16\xfe\x3a\x91\x70\x95\x39\x44\xe4\x1e\xde\xec\x6a\x74\x9a\x97\xe1\x6d\x48\x06\x41\xea\x0b\x11\xea\x63\x06\x75\x36\x74\x35\x6a\x8a\x47\x70\x5b\x8e\xf1\x4c\x35\xa5\x1c\xa1\x38\x41\xfe\x9d\x5d\x73\x82\xa0\x25\xcd\xf0\x0c\xbb\xc3\xe1\x96\xbe\x5d\x65\x39\x1f\x99\x4f\x95\x7b\xfa\x42\x6d\xa6\x34\xad\x72\xdd\x0c\x7d\x6b\xec\x33\x1d\xcf\xeb\xed\x95\xf8\xe2\x59\x7c\x1a\x21\xbf\x7f\x58\xff\xe4\xcc\x6a\x98\x59\xfc\x82\xa9\x43\xe1\xe9\xb1\x0d\xc9\x5c\x85\xfc\x44\xe8\x98\xb6\xee\x13\x4a\x0f\x2f\x89\x35\xdc\x09\xad\x88\xd7\xfc\xb3\xa8\xcb\x43\x9d\x98\xa2\x31\x03\xac\x83\x1e\x1c\x70\x18\x8e\xc2\xde\x41\x84\x38\xe4\x67\x46\x28\xf2\x93\xcf\xa3\x82\x4b\xc8\x55\x0d\xac\x1c\xf3\xbc\x8a\xfe\x31\x90\x53\x83\x31\x58\x27\x00\xeb\xb8\xee\xaa\x08\x14\xda\x53\xd7\xd6\xd0\xf8\x6e\x3e\xa1\x48\xe8\x11\xa6\x19\x23\x0c\x1a\xc9\x11\x86\xf5\xf4\x08\x33\x3c\x35\x7f\x6f\x84\x50\xe4\x57\x67\x84\x60\xce\x78\xbb\x90\xea\x0f\xf5\x94\xa6\x13\x19\x4d\x27\xe2\xec\xd9\xd0\x34\x9a\xb6\xc6\x5d\x7a\x98\xb2\x28\x41\x18\xee\x6d\x11\x6c\x53\x0a\xff\xf2\x08\xa5\x96\xee\xc9\xa2\x07\xc2\x9d\x78\x83\x39\x36\xbe\x82\xc4\x24\x48\xd6\xeb\x14\x3a\x47\x54\x9f\xfa\xd6\xf3\x8a\x81\xe3\x4e\x54\xd3\xb0\xe7\x7f\xf0\x68\xe3\xc8\xb6\x4f\x26\x50\xf8\x65\x50\x4f\x82\x8d\x9d\x3b\xe3\xa6\xa2\xe7\xbf\xf4\xea\x37\x6a\x43\x06\xc2\x46\x54\x71\x59\x07\xb0\x12\x25\x03\x9e\xd6\xcd\x4f\x41\x43\xe2\x79\x34\x1f\xed\x79\xd3\x01\xc4\x04\xbe\x27\x31\xef\x92\x9b\x08\xb3\x3c\x26\x76\x4d\x99\x0c\x4f\x15\x7c\xa1\xf6\xe1\x29\x6e\x69\xd2\x79\xe8\xd9\xbe\xca\x1c\x30\xa3\x32\x41\x79\x49\x3b\x1c\xca\xbd\x23\xf3\xc6\x43\x3d\xdb\x51\xa3\xc4\x78\x58\xa0\x9d\xed\x13\xc1\x2f\xc8\x33\x7d\x3d\x89\x00\xf0\x3f\xbc\xa2\x91\x46\x60\x49\xd7\x7f\x7f\x79\x92\x4d\x87\xd5\x15\xb3\x90\xd6\xe9\x1a\x92\x3b\xf3\x22\x95\x83\x57\xaa\x6a\x41\x25\x88\xe4\xa0\x8c\xf0\x01\x92\x75\xcf\xfe\xc7\x2f\x28\x79\x69\x85\x05\x17\xcf\x2c\xb4\x48\x31\xec\xf8\xf7\x1f\xb8\xb1\x7a\xc5\x28\x13\xb8\xb2\xb0\x88\xa1\xd0\xf1\x3c\x32\xea\x6f\xfc\x46\xd9\x1d\xb4\x4c\xcd\x71\xc7\x5c\xdd\xab\x24\x20\x48\x31\xc8\x24\x08\xde\x2b\x3d\xd5\x53\xa5\xa7\xb8\x5c\x34\x6b\xd2\x6f\x22\xb8\xbe\x5b\x7f\x6a\xe7\x37\xb8\x70\x6a\xbf\x79\xb4\x8f\x13\xbf\x81\x90\xd1\xa8\xf8\xb6\x23\x61\x60\x53\xb9\x5d\xfd\x99\x26\xeb\x48\xd3\x15\xf6\x0b\xb3\xad\x65\x1d\x3a\xb6\x13\x16\x31\xac\x59\x24\xb2\x7d\x02\x3f\x36\x8e\xe0\xf9\xa9\xf3\x99\xfb\xa2\x63\x1c\x59\x9a\x7a\xb1\x4f\x9e\xf7\xab\xcc\x59\xdc\x8b\xb6\xb5\xda\x0e\x03\xa5\x4e\xc2\x12\xaf\xcd\xb2\x26\x41\x17\xd0\xec\xc3\xf6\x2d\x3e\x11\x51\xe5\x17\xaa\xfb\xa2\xdd\xb6\x35\xa4\x4a\x5b\x07\x8e\x41\x7a\x50\x47\x98\xd7\x5b\x3b\xf0\x13\x05\x72\x5e\x1c\x7d\x69\xb5\x04\x20\x4e\xea\x5c\x36\xa4\xa1\x1c\xfc\x52\x7a\x43\x4a\x82\xd6\x45\xad\x10\xc5\x47\xd7\xd7\x65\x14\x63\xaf\xe6\x30\xc0\x96\x4e\xca\x28\x10\xe1\xbc\x30\x43\x51\x06\x8c\xdf\x5d\x81\xfb\xaf\x67\x62\x10\x32\x24\x82\xab\x21\x70\x21\xca\x89\xe3\xd6\x08\xa6\x03\x9f\xa2\x11\x02\x06\x6d\xad\xa6\xac\x3e\x39\xc8\xc1\x3c\xd2\x76\xc3\x3f\xf3\x6c\x85\x1c\x80\xd7\xb1\xf1\x64\xc2\x39\x43\x28\x0c\x31\x0b\xc1\x78\x39\xd9\x28\x96\x79\xd8\xf4\xc0\x79\xa4\xe1\x8a\x6b\x76\xb3\x30\x12\x6e\x78\xa4\x2d\x4c\xbf\x8c\x7a\x7b\xfe\x75\x60\xea\x73\xe4\x5f\xa3\x90\xad\xa2\xfc\xab\x01\xb0\x34\xf9\xc0\x50\x14\x35\xef\x5e\x1e\x57\x06\xc8\x8a\xe6\x2c\x43\x2f\x2a\x15\xd5\xea\x26\x41\xd6\xea\x84\x8c\x9c\xcf\x0c\xdd\x15\x98\xe3\x1c\xc1\x94\x23\xdc\x1f\x9a\xd2\x2a\x5c\x66\xb6\xf3\x7f\x82\x95\xe7\x6a\x49\x56\xde\xfd\x98\x95\x53\xb2\x52\xa4\x2b\x0a\x4e\x3b\x97\xe5\x3b\x33\xb2\x92\xef\x48\x92\xfe\x6a\xdb\x11\xcc\x3b\x97\x18\xda\x8e\x18\x5a\xd0\x8c\x59\x53\x6b\xf6\x5a\x7f\x97\xaf\x0d\x3e\xc3\x7c\x82\xf1\xc0\x77\xd8\x4f\xb4\xe8\x30\x11\xa3\x2a\x10\x19\x60\x76\x28\x2f\x94\x1c\x6e\xbe\x3b\xed\x3a\x13\xda\xe8\x7c\xa2\xad\x8e\xad\xe3\xb3\x97\x73\xac\x47\x62\x20\x42\x35\xd1\x59\x9b\xa7\x33\x6e\x3b\x21\x62\xb9\xbf\xd1\xba\xa7\xca\x6a\x07\xcd\xbb\x0e\xcd\xbb\xfe\x37\x9a\xb7\x7c\xdb\x68\xde\xa4\xc8\x74\x6c\xe0\xf1\x9a\x24\x3e\x2e\xd6\xf0\xaa\x92\xfc\x6c\xff\x40\x2a\xae\x0e\xcf\x54\xc5\x17\x19\x0e\x4a\xfc\x86\x43\x30\xa4\xd3\x51\xf1\xc4\x77\x77\x40\x7d\x6e\xc8\x0b\x8f\x65\x25\x10\x8a\x19\xbf\x52\xbf\x2c\xfb\xcc\xaa\xae\x7d\xc4\x55\x77\x79\x2c\xc7\x4e\x15\x8b\x56\xcd\x97\x18\xb1\x46\x3f\x4b\x55\x90\x7a\x23\x04\x88\xc7\x30\xc9\xb1\xff\x46\x0c\xb0\xd1\xdb\x91\xe7\x51\x60\xc8\xc8\x5f\x54\xf5\x78\x41\xb3\xbf\xe4\x76\x80\x7c\x36\xf5\x11\x79\x46\x89\xc6\x86\xd2\xa1\x9b\xf5\xb4\xf1\xe7\x54\x57\xd6\xa9\x79\xd5\x31\x11\x10\x9e\xc7\xbb\x74\xa7\xc9\x81\xdd\xe9\x1d\x74\x1b\xe0\xc5\xc5\x63\xaf\x0d\x32\x68\x21\x8f\x3a\x89\x0b\x6d\xc6\x1f\x65\x92\xbc\x92\x02\x59\x16\xc9\x9b\x48\x32\xa3\x21\x79\x0b\xa9\x56\x69\x0a\x65\x6b\xb2\x18\xa3\xd8\x06\xbf\xd7\x18\x53\x7a\x61\x55\x51\x53\xf8\x04\xdc\x3a\xa2\x0e\xa6\x35\x1c\x97\xf0\x24\x5b\x3c\xc6\xff\x0a\xee\x95\x4c\xa0\x13\x59\x49\xeb\x9f\x40\x3d\xd3\xa9\xaf\x92\x42\xbd\xea\x7f\x05\xf5\xbc\xde\x7f\x88\x79\xc1\x71\xe0\x8b\x0b\x8f\x17\x5e\xac\xfc\x15\xf2\x1d\x80\x7c\xe1\x3f\x46\xbe\x95\x46\xbe\xc1\xff\x35\xe4\x93\x4e\x68\xf3\xd3\x47\xc8\x37\xc1\x9d\x87\x7f\x11\xf9\x24\xc0\xf3\xe1\xff\x4f\xc8\xe7\x85\xa2\xe0\x3f\xfc\xab\xa8\x17\x54\xdf\x3e\x89\x7b\x27\x91\x9d\xba\x17\x7b\x15\x2a\x1b\xc7\xb4\x71\x71\xff\x6a\x8e\x10\x66\x23\x86\xe3\x6b\x75\xe1\xe8\x25\xc4\xb8\x90\x4b\xda\x2d\x82\xc3\x6e\x26\xd8\x67\xbf\xea\xb2\xa1\xef\x55\xde\x90\x8a\x5b\x46\x74\x84\xc5\x4f\x6a\x4c\x8a\x0d\x79\x05\x2d\x20\x70\x0b\x81\xb9\x37\x4d\x21\x30\xe0\x1e\xc6\xd8\x97\xd3\x8f\x85\x5e\x50\xbc\x33\xf6\xe2\xf8\xa5\x65\x23\xc3\x34\x87\x17\x53\x11\xd4\x3a\xee\x91\x9f\xe1\xc0\xe9\x13\xac\xbc\xf7\x9e\x57\x0e\x51\xcc\x44\xa9\x55\x1c\xc4\xfb\x54\x67\x6b\x6a\x49\x3a\x64\x23\xd5\xa8\xc6\x13\xaa\xaa\xce\xfe\xe3\x6f\xe4\x50\x91\x18\x5c\x5b\x8e\x55\xf4\xfa\x5b\x35\xa9\x5b\xcf\x5b\x90\x2d\xae\x1e\x28\xa1\x54\xd6\x20\x88\x4c\x8a\x20\x7c\x3f\xb3\x47\x55\x67\xfd\x91\xcd\x6a\x1f\x7c\x29\x8a\xb7\x5f\xe2\xb9\x6e\x28\x59\xfc\x81\xcb\x51\xa1\x16\xe6\xb6\xa1\x0c\x1c\x62\xd2\x56\x35\xdf\xc4\xed\xd4\x54\x8f\x0d\x9b\xca\x59\xa1\x91\x52\xf7\x83\x5b\x34\xb3\x37\x2a\xa0\xf2\x95\x5d\xcf\x5b\x22\xd4\xe3\x84\x43\x33\xe7\x38\xb4\xd1\x2b\x81\x79\xe5\xd7\x5e\x33\xde\xcf\xa1\x07\xa3\xd4\xf5\x7f\x54\x7d\x21\x80\x8b\x95\x47\xf4\x85\x20\x38\x2e\x7c\xa3\xae\x73\xa3\xd6\x28\xcf\x24\xc0\x98\x89\xbf\x38\x02\xa0\x1c\xd0\x3c\x28\xa2\x98\x7b\xf7\xec\x83\x3c\x4b\x16\x78\x0f\x74\xb6\xf9\xf0\x97\x13\x09\x93\x13\xe1\x03\x2f\x32\xd5\xbe\x91\xd2\xee\x11\x5e\x81\xbe\xfc\x38\x94\x89\x67\x56\xb6\x61\xbf\x78\xaa\xf4\x31\x70\x2f\xb9\x29\x04\x3c\xe4\x6a\xab\xd7\x1d\x54\x19\xd5\x84\xe2\x1d\x35\x96\xb0\xaa\x64\x74\x35\x37\xba\x52\x25\xaf\xde\x38\x0b\x1a\x35\xac\xc0\xa9\xba\x0d\x19\x04\xd3\xe7\xb2\x6b\x97\x57\x6c\x39\x8b\xe9\xa9\xd2\xdd\x3d\x52\xe7\x48\x2d\x14\x14\x1a\x38\x83\xe5\x2a\x36\x70\xb0\x93\xaf\xba\x98\x3c\xc4\xff\x13\xfc\x9f\xa0\xb5\x2e\x6e\xca\xb6\xef\xde\x62\x66\xcb\x26\x8d\x6f\x83\xbe\x5e\xe0\x8d\xe2\x67\x70\x19\xc6\xb8\x3e\xa0\x05\xd5\x7d\xc0\x3c\x3e\x8b\x4b\x3f\x11\x8c\xd6\xf7\xbc\x93\x0f\x23\x67\xee\xd1\xb8\xfe\xd8\xff\x77\x7e\x48\x79\xdb\x6d\x48\xd8\x88\x60\x3a\x74\x06\xdc\xf5\x63\x32\x3a\xf0\xf7\x9c\x31\x97\xe2\x4b\x49\xd4\x99\xf5\x54\x04\x33\x45\x03\xde\x6b\x4a\x59\x79\x93\x1d\x69\xb6\x97\xf1\xc6\x36\xda\xbb\x88\xa3\xbc\x93\x06\xab\xad\xb2\x1f\x0a\x98\xe5\xdc\xbc\xc9\xdc\xd0\xa7\xcf\xbb\xd9\xf7\x05\xde\xf7\x5e\xb3\x5d\xff\x7a\x75\xe3\x35\xda\x9b\x2e\xa9\xcf\xcd\x76\xbe\xc3\x9f\xfa\xea\xf1\xcf\xaf\xfc\x93\x6d\xf6\xf7\xa8\x6b\xe4\x54\x27\xe1\x75\xbf\x9c\x98\x6c\x10\x14\x3d\x88\x99\x44\xe8\x9c\x89\x80\x60\x56\x1e\xad\x55\xd2\x84\xe8\xa2\xbd\xf9\x84\x83\x01\x1f\xd5\x18\xb0\x20\xbb\xfd\xb2\x38\x56\x1c\xcd\xf0\xa3\xb2\xa9\x82\xb4\x4b\xc6\x34\xcf\x11\x83\x97\x7f\xa7\x04\x20\x84\xb3\xef\x36\x9e\x08\x19\xc9\x12\x30\x2c\x91\xda\x34\x15\xf7\x5d\x11\xe9\xc6\x6e\x4d\xaa\xc9\x13\x0d\x56\xed\xe9\x67\xb9\x50\x3d\xf6\xa8\xdc\x48\x9a\x8e\xc3\x54\x59\xa0\xaa\x06\x75\xae\x6d\xbc\xa3\x9d\x31\x6c\xa5\xa6\x3c\x6c\x87\x0c\x8d\xb7\x9e\x57\xf4\x47\xd0\x9a\xa4\xd7\x1d\xea\xb7\xc2\xe6\x28\xa4\xf6\xdd\x18\x68\x64\x57\xb5\xf9\x88\x11\x40\x68\x2f\x3a\xb0\xb3\x56\x22\xd3\x24\xe7\x89\x4f\x4e\xfc\x77\xfd\x2e\x03\xd2\x2d\xb5\x9e\x27\xa9\x28\x4b\x26\xf6\x75\x07\x39\x02\x12\x15\x7c\x4c\x34\xdc\x38\xda\x6f\xbc\x48\xe3\xbb\xaa\xed\x04\xc3\x72\x81\x54\xcc\x46\x59\xcd\x91\x8e\x5f\x2b\xa1\x73\xa9\x0b\x69\x6a\xdb\x1e\x6c\x9f\x4c\x0a\x0d\x49\x6f\x1f\xec\x46\xe8\xa6\xa9\x71\x0c\x49\x2b\xc1\x90\x67\xc6\x70\xab\x65\x3e\xe5\x7c\x24\x00\x75\xe4\x9b\x65\x0e\xca\xe9\x28\x13\x59\xd7\x96\xab\x97\x02\x23\x91\x95\xe1\xb7\x2c\x78\x4e\x82\x78\x89\x9b\xd6\xd1\xe6\x19\x47\xe9\x82\x8b\x4e\x4c\x28\x4b\xbb\x21\xf4\x5f\x32\xcc\x23\xb9\x8f\x1b\x67\xb9\x55\x88\x11\x0c\x07\x26\xc5\x29\x0f\x3d\x27\x5d\x63\x4a\x96\xc9\x62\x04\x70\x49\xbe\x0b\x69\x5a\xc8\x97\xd0\x35\x32\x2a\x58\x71\xde\x85\xf2\xcc\xc1\x62\x03\xe5\x8e\xe7\xed\x08\xd7\xbf\xa3\x0c\x47\x4b\x1d\xa9\xde\xf0\xc1\x3e\xd6\xd1\x01\x0f\x15\x8e\xa1\x2b\xf8\x52\x3d\x95\xaa\xd2\x68\x22\xcd\x19\xfc\x33\x1f\x70\xdc\xb1\x74\xd0\x95\x5e\x0b\x73\x1e\x13\x4e\x96\x06\x47\x05\x3b\xd5\x9a\x5f\x1a\x92\xce\xec\x2e\x64\xc1\xe4\x49\xdc\x27\x4f\xa6\xb0\x76\x08\x7c\x95\xc2\xae\x26\xd3\x92\xd3\x36\x51\xdd\xf2\x1f\x40\x3f\xf2\x82\x39\x07\x9a\xe5\x1a\x99\xb0\x7d\x0f\x83\x8d\x48\xb3\x64\x0a\x5b\x43\x3d\xfb\xfa\xd2\xb2\x70\xb2\x95\xd7\xfc\x77\x21\x42\x85\xd0\x8e\x8a\xe2\x0e\x8d\x27\x87\x92\xad\xdc\x4c\x02\xdd\x7e\x2d\xfe\x9d\x7d\x3a\x17\x28\x10\x5a\xf5\x1d\xa9\xf7\xdd\xda\x94\x12\x5a\x1f\xc1\x1e\x1e\x5e\xe8\x3f\x19\xa8\xad\x64\x00\x34\x55\x18\xb0\x2e\xe1\xb6\xd5\xf2\x08\xd6\xcd\xcd\xad\x43\x5b\xe8\x56\xfc\x69\x6c\x22\x5d\x2c\x3f\x31\xe3\x99\x4a\xfc\x65\xe8\x30\xcd\xdc\xf3\xbb\x03\xfc\xef\xd4\xf8\x67\x2f\xfb\x32\x60\x56\x82\x76\x1e\x91\xb4\x86\x5c\xf0\x88\xa5\x43\x26\xd1\x07\x91\xff\x54\xe2\xcb\xbf\x48\xf4\x31\x30\x7f\xf5\x7f\x89\xea\x97\x7f\x9b\xc8\x06\xe2\xeb\x9f\xd9\xab\xf8\x9f\x6b\xbd\x4b\x96\xe0\xf3\xd1\xa3\xe5\x45\x15\x6c\xcc\xf0\xc4\x96\xa7\x45\x68\xee\x11\x29\x78\xc8\xde\x22\x40\x1a\x61\x54\xd7\xb6\x35\x6a\xb9\xab\xc4\x45\xe9\x99\x4a\x34\x1d\xd5\x52\x9e\x52\x97\x14\xe1\x89\x0e\x28\xed\x20\x1d\x6a\x5c\xa9\xa5\x24\x26\xa3\xd4\x5d\xb5\x72\x78\xec\xae\x6e\x9d\x20\xfa\x51\x52\x0d\x05\xd7\x9b\x3b\x4b\x58\x73\xe0\x35\x0a\x41\x4a\x86\xa1\x34\x88\x40\xea\x34\xba\x1f\xb0\xd3\xc6\x09\x0b\x9d\xb3\xfb\xe4\xc4\xf3\x61\x33\x4f\xae\xe0\xb4\xd4\xa8\x16\xd5\x79\x75\x74\x36\x65\xfe\x8a\x3c\xef\x00\x39\xbd\xb1\x77\x0e\xce\xd9\x3f\x19\x76\xf9\xee\x09\x24\x8e\x41\x53\xe4\xe2\x31\xa8\x00\xb5\x2a\x4a\x27\x0a\x29\xc8\x2d\x36\x49\xa7\xba\x3c\xd7\x67\x39\x9d\x7d\x64\xe9\x9d\xa5\x0a\x3c\xdf\x1e\xc0\x11\x7c\xa6\x3e\x2a\xc1\xf6\x55\x1a\xb3\x20\xcc\x7c\x65\x1a\x4a\x4c\xcf\x68\xaa\x8e\xa2\xa9\xfc\x8b\x1d\x84\x92\x42\x2d\x46\x1c\x97\xaf\x22\x52\xbd\x76\xf6\x13\x32\xb4\xf4\x67\x47\x25\x0c\x44\x6f\x96\x59\x11\x99\xa1\xa9\x84\xb4\x64\xdc\x60\x98\xb5\xd3\x48\x60\x21\xf5\xd1\x22\x5b\xe7\xf3\x4d\x8f\x76\xbc\x77\x66\x1d\x88\x59\x90\x66\xc4\x90\xe7\x0c\x93\x92\xf4\x7a\x45\x93\x0a\x1c\xf0\x15\xac\xb0\xd5\x92\x83\xa8\xa8\x7f\x76\x34\xc0\x70\x3e\xcc\x34\xe2\xc8\x0b\x19\x60\x60\x11\xe5\x5d\x8c\x47\x8f\x70\x29\x39\x19\x68\x72\xc0\x67\x6b\x9b\xb5\x61\x85\x64\xbb\x11\xdd\x87\xc4\x69\x16\xa2\x5b\x83\xa4\xaf\x64\x3e\x6a\x07\x2f\xaa\x2b\x35\xdf\xf3\x6a\xf4\x68\x70\xee\x17\x53\xdd\x4a\xf2\x65\x3f\xc9\x97\x24\xb8\x18\x7d\x2b\x2f\x3f\x4b\x00\x7e\x72\x4e\xaa\xe4\x0a\x39\x81\xee\x79\x56\xcb\xa4\xc2\x3c\x23\xc8\xd0\xc1\x04\x83\x36\x22\x8c\x66\x9d\x67\xa0\xd4\x2e\xd4\x3b\xfe\xe5\x13\x93\xac\x3f\x31\x45\xba\x8f\xf9\x6d\x98\x41\x76\x66\x68\x9f\x95\x68\x4d\xbe\x09\x3f\x41\x8d\xf2\x90\xbb\xd8\x3c\x09\xc3\x64\x05\x8d\x12\x44\x70\x1b\x1c\x5c\x41\x0e\x62\x2e\xd7\x1d\xca\xa2\x61\x07\xf6\xef\x0e\xfd\x14\x2d\xfb\x43\xbd\x5c\xc9\x9e\xeb\x44\x17\xff\xcb\xf4\xeb\xc9\xf3\x46\xa2\x2a\x10\x68\x87\xc1\x22\x4c\x52\xb2\x18\xdd\x66\x2d\x42\xae\xb1\xc9\x71\x89\xa9\x56\x66\x17\x1e\x90\x2b\x6f\x12\xfc\x97\xc8\xd5\xbe\xe0\xa7\x49\x4b\x92\x50\x09\x85\x28\x7e\x4c\xa8\x82\x0c\xba\x97\xa0\x54\xfe\x95\x8d\x0e\x8b\x58\x5c\xf8\x37\x28\x55\xf2\xcb\x4c\xaa\xf6\xbc\x94\xdc\xe1\x2f\x48\x95\x63\x6e\xf8\x76\x99\x54\xc5\xb2\x0e\xef\x09\xae\xcb\xd1\x1e\xd5\xa4\x8b\x1d\x6e\x8c\xd5\x0d\x26\x4c\xfa\x0a\x3f\xb3\xa6\xa2\x7b\xc1\xf9\x0d\xb3\xf9\xa6\xbf\x88\x72\x76\xf6\x8b\xf2\xa9\xf8\x0a\x53\xb4\x25\x8a\xf6\x99\xd7\x15\x24\xf1\xfa\xc4\x7c\x7e\x9d\x4b\x93\x00\x97\xa6\x59\x14\xad\x26\xc8\x05\xe9\x38\xce\xb3\x13\xb3\x88\x3c\xb2\x2d\x50\x0d\x50\x2c\x96\x43\x5c\x06\xcd\x7b\xc4\xe6\x34\xd3\xc2\x55\x7a\x12\x2c\x0a\x6c\xcf\xff\xc1\xc0\x14\xc1\xff\x19\x2a\xcc\xb6\xaf\x45\xf0\x09\x2a\x5c\x34\x34\xe2\x22\x15\xa6\x7a\xa7\xc1\xf4\xcd\x11\x58\xfe\x5f\x80\x95\x30\x03\xd3\xc9\x79\x97\x03\x6d\xfe\x40\x67\x0c\xa1\xe5\x04\x55\x0e\x91\x59\xd4\x3e\xf1\x9e\xa3\x41\xbf\xa7\x6c\xce\xac\xc9\x05\x15\x34\xe6\xda\x2c\xc0\xce\xa5\x3a\x53\xc2\x85\x4a\xd9\x45\x6f\xf5\x1d\xce\xfe\xc9\x4c\xc2\x86\xa7\xd6\x2f\x19\x1f\x22\x5b\xf1\x2d\xd0\xec\x30\x27\xa6\xc0\x2a\xeb\x24\x65\x1b\x0a\x2c\x35\x15\xbf\xe8\x4d\x82\xe5\x6a\xd4\x30\x5d\xd6\x28\x0b\x0f\xc7\x90\x63\x81\x4a\x04\xec\x69\x67\xdd\x71\x76\x24\x54\xce\xc9\x78\x44\xe4\xf9\xcd\x8d\xee\x47\x95\xfd\xc6\xef\x19\x4b\x39\x8b\x87\x55\x8d\xe5\xbb\xef\xb1\x1d\x56\x76\x32\x5e\xcd\x73\x96\x16\xaa\x14\xda\xc8\x4d\x6d\x43\x60\xd7\x0e\xc5\x56\x97\x60\xb9\xef\x40\xff\x79\xeb\x5a\x89\xc9\x9d\x07\x95\xff\xd8\x4c\xfb\xbc\x53\x3e\x42\xc2\xfe\x1c\x23\x79\x95\xbd\x34\x12\x31\x2a\xd1\x41\xb8\x7b\xce\xd9\xdf\xa8\x4f\x94\x33\x0f\xf6\x6c\xee\x01\x7e\xd5\xc0\x78\x12\xa3\xf1\x5d\x82\x66\xc7\x24\x9e\xb8\xf5\x92\x72\xcf\x57\x7d\x2f\x58\xf6\xaf\x3a\xde\xed\xe2\x47\x89\x93\x7e\x6e\xc4\x26\x1e\x79\x77\xe7\x1f\xaa\xc6\x54\x73\xa9\xba\x41\xe5\x96\xbe\x74\xdc\x09\xa6\x81\xf2\x9e\xe7\x53\x87\x48\x20\x93\x0b\x98\xe8\x97\x83\xbd\x83\xaa\x15\x9b\x3a\x14\xda\x7e\x1f\xab\x26\x47\x74\xca\x96\x73\xe8\x1b\x97\xec\xb9\x37\x9a\xf5\x8a\x18\x48\xfe\x26\x4a\x9e\xb9\xad\x39\x73\xb1\x98\xe5\x6f\xef\xcd\x03\xe4\x12\x6a\xb7\xad\x0d\x68\xd9\x4a\xea\x91\x86\xea\x1c\x19\x19\xbf\x58\x2d\xdf\x9e\x65\x63\x9c\xd0\x58\xef\x0e\x12\x1f\x2a\xee\x5e\x8f\x04\xca\x06\x67\xd2\xd2\xe1\xef\x36\x41\xdc\x73\x35\x11\xee\xeb\x35\xe5\xf0\xfb\x49\x1f\xed\x31\x79\x8b\xa7\x4c\x97\xef\x93\x96\x67\x2e\xc9\xca\xdd\x06\xa5\xc5\x54\x03\x05\x66\x8a\x96\xae\xc5\x1b\x3b\xb3\x99\xdf\xac\x7a\x55\x03\x1d\xf3\x88\xb7\x7a\x32\xaf\x46\x41\x45\x4d\x98\x93\x27\xe7\xfc\xbe\xa4\x0b\xe2\x90\xb5\x99\xf4\xe3\x3b\x5b\x5a\xee\xc6\x54\x24\x16\x0d\x59\x95\xf0\x71\xd3\x1a\x71\xaa\x3c\x36\x6f\x3a\xa5\x83\x60\xef\x1d\x3c\x88\xe9\x33\xb4\x11\xb4\xd6\x46\x07\x6b\xe9\x11\xc5\xb9\x75\x0e\x2a\x35\xca\x0a\xca\xbf\x28\x2e\xf5\x77\x9d\xcd\x68\x52\x26\xae\x6e\x0d\xb2\xa1\x0a\xc5\x31\x1d\x44\x82\xf1\x1b\x4a\xfe\x20\x52\x66\xf4\xc0\x5d\xe2\x9d\x6e\xe3\x58\x4c\x4e\xec\xa8\x38\xae\xce\x0a\xd0\xcc\x9b\x3b\x6a\x4c\x03\x97\xad\xb0\x0d\x73\xed\xa6\xdf\xc6\x20\x75\xe1\x33\x98\x64\xf8\xa3\x4c\x7a\x88\xeb\x9d\x70\x3b\x9d\xc7\x9b\xce\xc4\xed\x27\x27\x8c\x7c\x77\x3a\xd1\x4e\xc8\xe6\xf4\x44\xf6\xc6\x67\x40\x1c\x8e\xd4\xc8\xf3\xf2\x81\x86\xa7\xe0\x49\x11\x6c\x48\xca\x4b\x9c\x9d\xe4\xdd\x55\x83\x88\xd9\xc0\x2f\x6f\xfd\x8f\x10\xe5\xde\xf3\x9e\xc4\x0c\x48\xcf\xce\xc3\xcf\xe3\x48\xcf\xf3\x9e\xc4\x5d\xf7\xc4\x65\x8a\xc8\x64\xc8\x1b\x54\xe1\xbe\x24\xf9\xfb\x6c\xb4\xd9\x71\x69\xc3\x25\x82\x4b\xf4\x02\x06\xb4\xd1\x0d\x72\x44\x6c\xdb\x28\xbe\x28\xf9\x5a\x12\xc3\x34\x63\x3b\xfe\xe1\x5a\x2d\x51\x04\x87\x5a\x8f\xf3\xe2\xbf\x6b\xcc\x3a\x98\xce\xa5\xf4\x53\xf4\xd4\xf7\x11\x88\xd7\x82\x94\xc8\x05\x95\x45\x9a\xb6\x30\xa0\xf4\xeb\xce\x66\xa9\xd8\x4a\x46\xaf\x3c\xc8\x41\xf0\x2e\x96\x05\xf3\x37\xfe\x1e\x35\xdf\xfc\xbe\x4d\xa0\xc9\x4d\x3c\x90\x4d\x07\x6f\x10\x73\xac\x87\xff\x16\x21\x91\x63\x96\x79\xdc\xad\x3d\xd4\x1e\x77\x09\x02\x60\x9c\x12\x3b\xea\xff\x18\xf5\xf1\x16\x5f\xe2\x07\xaa\xd1\x5f\x52\x9f\x24\x54\x5c\xe2\x03\xa7\x56\xcf\x0a\x60\x48\x41\xad\x1c\xfe\x01\x92\x39\x54\x6a\x47\x67\x76\xed\x7f\x80\x2b\x97\x25\xba\x56\x12\xef\x82\xe2\x0f\x76\x7f\x4b\x9e\x68\xce\x11\x9d\xf1\x9e\x18\xf2\xc7\x45\x5f\xc7\x1a\xe8\xcb\x29\xaf\x0e\x04\xad\x47\x6b\x3a\x5f\xf7\xd4\xde\x94\x4e\xee\x90\x12\x07\x7c\x72\x87\xac\x01\x49\xeb\x62\x72\x33\xee\xb7\xc8\x24\xa8\xe2\x00\xcd\x73\x9f\xd5\x13\xae\x6c\xfa\x1e\x8c\xa3\xba\x21\x39\x0c\x18\x89\x3b\x54\x29\x64\xc5\x56\xa7\x25\x0c\x05\xab\xbc\x53\x11\x0a\x0d\xff\x43\x92\xa1\x48\x42\x97\xe2\xf7\x79\x96\xa5\xc4\xaf\x31\x6b\xaa\x5a\x63\x2c\xa5\x49\x92\xe5\xac\xc0\xd2\xdc\xb8\xe0\xab\x59\x8e\xea\xee\x87\x67\x36\x97\xc9\x7c\x5f\x32\x7c\x67\x75\x5f\xcf\x44\xd2\x76\x17\x75\xdf\x99\x13\x74\x9c\x55\xdd\x9d\x9a\x44\x4b\xd6\xd5\x0c\xb7\x12\x10\x8b\x14\x08\x99\x2b\x24\x6f\x35\xe3\xc8\x0b\xce\xec\xca\xd9\x41\x29\x2a\xa7\x36\x25\x4a\xe4\x83\x40\xff\x83\x5c\x29\xd1\xf7\x60\x35\xa3\x1a\x2f\x5c\x4c\x71\x60\xc5\x00\xe8\x0a\x49\x58\x88\x57\xcb\x0c\x71\xd8\x84\x8a\xc8\x4e\x7c\x96\x2f\x23\xcf\xdb\xfa\xf8\x3e\xfb\x7b\xc2\x6f\x31\x24\x57\x3e\xd7\xce\x62\xc9\xce\x33\x7f\x86\xae\x73\x31\x91\x9f\xa6\x05\x4d\x2b\xea\xa2\xe0\x0a\x85\x30\xfd\x81\xa7\x4c\x91\xca\xa1\x73\xca\x25\xba\x25\xf2\x2e\x95\xae\xbc\xb5\x42\x2d\xc2\xa7\xd0\x4f\x7a\xb1\x72\x4f\xee\x46\x97\x57\x82\xf9\x49\x8d\x50\xdb\xbf\xf3\xb8\x12\x50\x44\xf9\xa3\xac\x19\xcd\xc7\x4d\xd1\x48\x1d\x38\xe7\x39\xef\xd8\xa2\x91\x4f\x5a\xf7\x92\x82\x29\xa1\xa7\x1b\x11\x19\x7a\x9c\x55\x3a\xf2\x49\x0e\x3d\x25\x24\xde\xca\x2f\x2a\x1d\x79\x97\x1a\x34\x23\x44\x10\xef\xa0\x2b\xeb\xd9\x99\xba\xfb\x88\xe6\x0b\xb1\x74\x10\xc1\xca\x49\x2b\xb9\x3b\xb5\xac\xdc\x1f\x4e\xc3\x04\x7f\x0b\x1c\xf6\x56\xae\x28\xc2\x1e\x0c\xdf\x2c\x05\xac\xde\x1b\xf4\xef\xc6\x78\xb1\xe2\xcc\x56\x37\xe3\x84\x51\xe2\x49\xc4\x3d\x03\x28\x36\x6e\x8c\xb8\xab\x8f\xdb\xcf\x7b\xd5\xe3\x32\x16\xf4\xdc\x0c\xf5\x08\x9b\xd0\xe0\x40\xf4\xab\xda\x77\x8e\x54\x49\x12\x85\x28\x26\xf6\x2b\x98\x17\xa7\xe1\xbd\xf0\xfd\xa9\xa3\xed\xbb\x1c\x98\xd9\xf6\x83\x0c\x6d\x87\x13\x36\x88\x5f\xbc\x3f\xc0\xd1\x79\x5e\x79\x66\xc1\x3c\x25\x5a\xde\x61\xb9\x28\xcc\xf1\x62\x52\x61\xbb\xdc\xeb\x36\xfe\x73\xec\x4b\x3b\x64\x5a\x5e\xc5\x4f\xcf\xf5\x29\x31\x57\x03\xc3\xe1\x83\x39\x62\xa8\xd8\x4c\xad\x41\x20\x1a\x00\x52\x27\x2a\x08\xb0\x4b\x43\x33\x4a\x84\xb3\xbb\xc2\x08\x03\xc9\x19\x09\x82\xc1\xf8\xe1\xea\x92\x98\x50\xd1\x98\x8b\x97\x67\xb9\x0c\x68\x6d\x54\xe1\x8d\x0f\x61\x15\x53\xa9\x46\x94\x1e\xc4\x44\xbb\x53\xd8\xf5\xad\x97\xf1\x3e\x65\x7d\x56\x1c\xc9\xc4\x82\xcf\x11\x48\xf3\x1c\x1a\x58\x58\x64\x9a\xbf\x36\x81\x43\x52\x14\x19\x98\x5c\x73\x1d\x6e\x0e\xfd\x9e\x74\x6d\x6c\xf7\xfc\x5a\x11\x5b\xc4\xa7\x30\xd8\x7f\x73\x58\x01\x84\x82\x93\xa8\x36\x25\x31\x8d\x84\x90\x67\xd1\x3b\xfc\xa4\x44\x4b\x15\x43\xab\x42\x48\xec\x0e\xc6\x0b\x76\x09\x1c\x0b\xf7\xe9\x50\x53\x45\xed\x5d\xe2\x1d\x50\x34\x48\x8c\x9a\x01\xf4\x1b\x28\x5f\x3f\xcf\x6e\x63\x5c\x7e\xe1\x17\x3e\x27\x71\xed\x12\xd2\xee\xa8\x15\x37\xbc\x39\xae\xbc\xa9\x23\xfb\x41\x31\xe7\x4f\x2e\xf5\xea\x25\x31\x0c\xe7\x70\x33\xfe\x0b\x75\x30\xa1\x2b\x59\x04\x98\xab\x73\xd5\x45\x5c\x74\x01\x87\xbb\xea\x8a\x8e\x7a\xae\x85\x9c\x2d\x87\xc7\x71\xcb\xc5\xbc\x23\x98\x1e\x72\xaa\x02\x27\xef\x75\x33\xc9\x28\xb6\xa9\x32\x91\x68\x36\xbd\x36\x4a\x7f\x92\xc0\xe9\x4a\xc0\x62\x1a\x48\x7c\xd0\x11\x7e\xf4\x72\x1d\xca\xf3\x72\xe1\x6d\x33\xdd\x73\x3e\x39\xdd\x74\xe7\x4f\xa6\xd2\x2f\x70\x26\xec\xd2\xd3\x95\xef\x93\xee\xfb\x1d\x67\x21\x09\x4b\xf9\xb6\x98\x7f\x9d\x95\x24\x2f\xae\x57\xaa\x1c\x18\x86\x94\xee\xed\xf1\x11\x7e\x76\x76\xb0\xfe\x97\xc2\x1a\x4b\x23\x00\x1e\xfa\x31\xab\xa4\x0e\x7b\xf0\x12\x7f\x65\xdd\xb5\xd7\xde\xbf\x6b\xc0\x91\xfc\x9a\x55\x3c\xa5\x18\x27\x5c\xc6\x93\xad\x02\x50\xe2\x85\xdc\x17\x06\x1b\x4a\x7f\x52\x3c\x67\x44\xa2\x5c\x48\x1f\x88\x96\x0e\x6b\x2e\x5d\x53\xfb\x99\xc6\x49\x2c\xc0\x73\x10\xbd\x2d\x17\x92\x41\xdf\xfa\x19\x9f\xaa\xbe\xdc\x95\xdf\x96\x71\x9e\x9b\xa9\x28\x99\x09\x4b\x1e\x9b\x85\x35\x5e\x5b\xf1\x4f\x79\x6e\x7a\x89\x75\x8c\xc0\xa0\xea\x60\xf0\xe2\xe0\x44\x44\x4b\x46\xe5\xf8\x5b\xcd\x30\x0b\x49\xb8\x16\x6d\x9f\x99\x1b\x29\x93\xc3\x6e\x0b\xa9\xff\x51\x76\x6d\xc9\x13\xc7\xe3\x0f\xb4\x16\x33\x57\x56\x6c\x22\x7e\xc9\x9a\x12\x01\xf7\xd0\xe5\x5d\x41\xd0\x71\x9f\xd0\x20\xeb\x4e\x82\x3e\x07\x47\x29\xad\xde\x25\xe7\x69\x14\x33\x76\xce\x0e\x90\x2a\xfa\x4e\x8d\xfc\x17\xf1\x16\x19\x37\x41\xfc\x49\xdd\x0c\x0d\x9f\x3b\x7f\xc9\x82\x57\xc7\x74\xee\x5a\x3a\xe1\x0b\x1c\xee\x3d\xb4\xee\x5c\x64\xeb\x0f\x1d\xad\x64\x82\xab\xf5\x3f\xf1\xcf\x5e\x5b\x89\x85\xb2\x4d\xfa\x2f\x12\x49\xc1\xc7\xa9\xb8\x8c\x6a\x7b\x69\x9f\x70\xff\x92\xf0\x50\x4d\xed\x59\x49\xa9\xb3\x06\x73\x68\xe9\x60\xb9\x1d\x4b\x46\x6b\x7e\x44\x35\x75\xb9\xb1\x93\xc9\xc1\xef\x42\xcd\x85\x52\x53\xc8\x9a\x0c\x9d\xb1\xf4\x5b\x72\x29\x7b\x2d\x1f\xbc\x44\xea\x5c\xea\x25\xf2\xab\xbd\xfb\x04\x55\xb3\xe6\x55\x42\x62\x43\xa0\x2a\x62\x32\x68\x08\xbc\x36\x78\x63\x54\xf9\xc3\x20\x4c\x88\x57\x3d\x5b\x08\xad\x71\x1f\xcb\xf8\x65\xee\xc1\x33\xe2\x0a\x76\x7f\xa4\x02\x4f\x09\xfa\xf9\xb8\xf9\xb7\x5f\x88\x0f\x46\x01\x1d\x69\x7b\x7f\x3d\xd7\x92\xaa\x6d\xc2\xd5\x16\xf6\xfe\x81\x3b\x08\x9c\x39\xd0\x85\x07\x5b\xda\x0e\x8b\xd4\x2b\x27\xf4\x9c\x9e\x38\xc7\x88\xa8\xd6\x4e\xb5\x26\xa1\x21\xd9\xab\x23\x35\x51\xe8\x5e\xcc\x0d\x90\xb8\xc7\x61\x80\xe8\x5e\xcb\xd8\xb7\xe0\x12\x12\xf5\x6f\xda\xb3\xcc\xe3\xc5\x0b\xdd\x30\x22\x3a\xed\xd9\xdd\x37\x19\x6d\x2f\xbc\xce\x54\x8f\xc7\x28\xa0\xd4\xcc\x37\x99\x79\x47\xea\xe6\xf3\x22\x4e\xbf\x34\xac\x6a\x8a\x08\xb7\xd4\x11\x8c\x31\x05\x2d\xd5\xf3\xbc\x09\x1b\xc6\x9b\xad\xc6\x1b\xb8\xb8\x13\x9b\xe6\xbc\x36\x63\x35\x78\xde\xcb\x3a\x4d\xea\x2f\x23\x79\x43\x80\x85\x37\xbc\x42\xf8\x13\x14\xdf\xc6\x88\xcb\x98\x0c\xb8\x3c\xc4\x18\xe4\xa3\xf8\x47\x4b\x25\x92\xd6\x8b\x08\xde\xe9\x59\x49\xc1\x6c\xa5\xdd\x66\xdb\x31\x76\x2f\x64\x4d\x7f\x41\x30\x00\x53\x26\x88\x44\x5c\x5f\x04\x69\x50\x30\xc1\xdf\xd1\xa6\x6c\x99\xcc\x34\x5e\xd9\x41\xfc\xca\xa0\x61\x40\xcd\x6f\x25\x0e\x18\x8f\x44\x92\x86\x54\xfd\x45\x3c\x76\xea\x94\x3e\x6e\xb4\x78\x9b\xef\x3d\xaf\x07\xd7\x2c\xc5\x9a\xec\xfc\xaa\x6e\xc7\x92\x7b\xe0\xf2\x36\x7c\xad\xf1\xc0\x42\x08\xa3\x4d\x9e\x8f\x49\x83\xd5\xba\xfa\x6b\xc6\xf0\x79\x85\x39\x25\x46\x84\x66\x5f\xde\x8a\xb7\xe0\xd2\x5b\x91\xcd\xa1\xb2\x31\x10\xb0\x0f\x4a\xd5\xdd\x01\xdb\xf1\xaa\x52\xed\x92\x8f\x3e\x4d\x2a\x1a\x62\xfb\x66\x03\x34\xf0\xc4\x43\x39\x18\xdf\xe6\xea\x3e\xa9\x23\x62\xe6\x43\x19\xd6\x86\xc4\x57\xcf\xf3\xc6\x8e\x1b\x59\x20\x0e\x06\x2e\x8b\x11\xeb\x2c\x2e\x4f\x85\x8b\x43\xad\x2c\x3a\xd1\x11\x48\x61\x00\xaf\x2b\x77\xf5\x87\x71\x5a\x8a\xbf\x84\xc1\x47\x9e\xf7\xa4\x62\xe5\x3f\xc3\xac\x82\xe6\x1b\xf8\x2b\x84\x23\x9c\xec\xf7\x79\x17\xea\x0d\xeb\xbd\xbf\xd3\xbc\xab\xc1\x27\xfb\xe8\xf0\x2e\x1c\xba\x6d\xeb\xfd\xcf\x25\x39\xd9\x47\xd3\xfb\x0c\x5f\xc3\x18\x0d\xc5\xa3\x3f\x1a\xf6\x83\x21\x28\x69\xff\x83\x21\x92\x3c\xef\x33\x80\x1e\x18\x58\x85\xb6\x5f\x18\xc0\xbd\x40\x23\x7e\xe7\x9e\x7c\x80\x2a\xe7\xe3\xd2\xeb\x47\xdc\x51\xe8\x15\xc7\xa1\x21\xe4\x37\x5b\xa8\x80\x98\x52\xbb\xb3\x76\x76\xe1\xa3\xf9\xbc\x3d\x5c\x24\x89\xe1\xdc\x94\x15\xab\x52\x2d\x01\xaa\x64\x88\xa6\xa1\x7b\xa8\x18\xfe\xf9\x59\x2b\x8e\x4b\xd2\x41\xb0\xa5\xb2\x5b\x0a\x3a\x07\x5e\x4c\xf3\xfe\x9f\x42\x87\xc0\xef\x44\x0b\x56\xfa\x9a\x29\x77\xae\xac\xba\x05\xef\xb1\x0a\x0c\xe2\xf2\xb9\xeb\x14\x97\x9e\xb7\x88\xd7\x1d\x92\x5c\x1a\xe5\x2e\x59\xe7\x93\xd6\xa5\xf1\x34\xa1\x6e\xfc\xe4\xc3\xc2\xb3\x04\x83\xe2\xf0\x40\xee\x13\xca\xf6\xaf\xa5\x5f\xd6\x35\x99\x40\x2c\x28\xbb\x94\x48\xfc\xc0\xaf\x62\x8f\x1f\xec\x40\x1d\x22\xcc\x68\x37\x0a\xfa\x2c\xed\x53\xe2\x3b\x27\x65\xde\x3e\xf3\x6c\x0f\x0f\x5a\xd8\xc1\x74\xb4\x40\xe0\x3e\x40\x7f\xe3\xa9\x59\xe0\x79\xb3\x40\xfa\xa5\x72\xc8\x06\x4a\xd3\xc6\x48\xc4\x34\xbb\xe2\x08\x06\x02\xac\x78\x5b\x30\xb1\x8d\xb3\x6b\x0d\x3f\xf5\x40\x83\x8c\x53\xd1\x9e\x4b\x27\x40\x5a\x02\x70\x0a\xb6\xc5\xcd\x25\x41\xa2\xc9\x69\xea\x2b\xb6\x00\xaf\x35\x12\x71\x8d\xea\xb7\x04\x32\x82\xe0\xe1\xbd\x09\x2f\x7f\xfa\x90\x29\x49\x50\x6d\x64\x3e\x1b\x55\x56\x82\x6a\x10\x4f\xb9\x20\x8a\x35\xf1\x43\xe4\xa9\xde\xc9\xc3\xc6\x46\x6b\x87\xc3\xbb\xb9\x1c\x3b\x76\x84\x7b\x81\xc5\xcd\xe8\x03\xdf\xcf\xe0\x22\x90\x83\xf9\xb3\x7f\x76\xac\x3e\x14\x99\x8a\x27\x78\xe3\xb9\xe9\x27\xe4\x26\xbc\x5c\xe3\xe2\xb8\x7f\xde\x79\x57\x26\xc1\x8f\xfe\x52\xa2\x97\x12\x9b\xb6\xbc\x37\x05\x88\xdd\x43\x90\x8f\x51\xde\x77\xa4\x26\xa4\xe0\xe4\x7f\x0b\x5b\xb3\x69\x98\x4e\x84\xe4\x2d\xb7\xd4\x0a\x2f\x6a\xae\xc6\xd6\x93\x34\x2d\x10\x88\x1f\xaf\x2e\xe8\xd1\x52\x0c\xa7\xea\xea\xd1\x2a\x51\x5f\x82\x4c\x13\x8e\x26\x7d\x1e\x3e\xad\x16\xef\xdf\x78\x09\xd9\x06\x01\xe9\xec\xe6\xa8\xc6\x3d\xad\x1a\xa7\x33\xf5\xf0\xbd\xaa\xb6\xd6\x4a\x68\xac\x98\x17\x0b\x7d\x47\x24\xd9\x18\x6d\x89\x0c\x76\x8f\x4a\x8e\x12\x60\xde\x78\x5e\x77\xdb\xb3\x24\xd0\x7b\x4f\xfe\x8c\x0f\x71\x03\x05\x23\xd7\x9c\xbe\xd2\x4d\x6a\xda\x8e\x60\xb3\xfe\x6a\xa1\x76\xe5\x54\x88\x29\x10\x98\xf7\x3e\xe1\x54\xf8\x87\xa5\x53\x1d\x09\xd7\x40\xb0\x9a\xf2\xed\xd9\xb0\xd7\x17\x72\x1a\x02\xc2\xc8\xa8\x2c\x9f\x8c\xd1\xa8\x63\xd7\x4e\x9f\xde\x0b\x31\xb5\x26\x79\x24\x6f\x25\x8b\xf2\x0a\x40\x47\x6d\xee\x54\xe2\x6c\xc8\xc6\x07\x1b\xa0\x0a\x0a\x33\x53\x2c\x28\x54\x35\x14\x8e\x3d\xbb\x62\xb6\x7f\xb0\xab\x6f\xea\x3b\xce\x06\xd8\xbc\x49\x95\x9a\x05\x5c\x97\x1d\x81\x24\x12\xfe\x50\x41\x5d\xf6\x3d\xdc\x02\x3b\x38\x0c\xa4\x2f\x30\x2c\xd5\xf0\x03\x4f\xe1\xb9\x56\x6f\x53\x25\x1b\xa7\xc2\x7a\xb0\x7d\x9b\x67\xbe\xcd\x71\x9f\x92\xc5\x71\x6f\xac\xc6\xf7\xdb\x9e\xd8\x21\x85\x75\x24\x5d\x6f\xa6\xae\x77\xb9\x8c\x1c\x85\x8e\x2d\xd7\x2f\xe0\x9c\xb4\x25\xea\xbe\x0b\xf7\xf6\xf7\x21\xbb\xaa\xc3\x6f\x31\xa6\x3d\x17\xb8\xd7\xda\xa0\x6e\xeb\x93\x47\xf0\xc0\xc7\xdf\x1c\xd7\xed\x7d\x42\x36\xfc\xc6\x7d\xaa\xd4\x1d\xc1\x35\x2f\x73\xe8\x28\xee\xa0\x9f\x8f\xd4\xf3\x5c\xf3\x48\xae\x4e\x71\x75\x80\x9a\xfa\x53\x88\xee\x7b\x8a\x2b\x08\x53\xb4\x8a\x38\x40\xca\xb6\xc9\xde\xee\x67\x17\xdd\x51\x9d\x18\x34\x4a\x87\x00\x25\x1e\x41\x2b\xa3\x0f\x6d\xa9\x91\x54\x5a\xdf\xfb\x67\x74\x65\xa1\x43\x74\x40\x53\xfa\xe4\x59\xea\xcb\x91\xa3\x73\x58\xa0\xfd\x5c\x07\x55\x1b\x09\x8a\x33\x36\xd5\xe1\xd9\x39\xf4\xf0\x87\x24\x89\x30\x80\x4d\x9e\x70\x4b\xea\x91\x41\x3a\x94\x3a\xc8\x75\xf1\x7c\xdd\x8b\x3b\x7a\xd3\x76\xf6\x8e\xcd\xd7\x79\x03\x82\xa0\x19\x8b\x63\xad\xd9\x9b\x72\xdd\x07\xe3\x37\xd6\x34\x9c\x23\xa1\x7d\xa0\x88\x8c\xe6\x66\xeb\x11\x5c\x8a\x3f\x60\x5a\x69\xa8\x9e\x98\x1d\xb4\x6a\xe6\x46\xf1\xc7\xaf\xe9\xb4\xf4\x68\xb0\x4e\x4c\x3d\x22\xaf\x2e\x1d\x4a\xf7\x94\x1f\x38\xf4\x66\x67\x9a\x25\x88\xd6\x2f\xdd\x96\xa6\xe9\xd1\xd9\x0d\xc2\xb4\x6a\x83\x1a\xc4\xeb\xc4\x99\x66\xb6\x9c\xe8\x86\xb0\xc5\xef\x0d\xff\xee\xcb\xef\x20\x05\x8c\x39\xf9\xcd\x6f\x61\xbf\x60\x7e\xff\xad\x62\x42\x3a\x22\xcf\xbb\xaf\x3d\xa5\x02\xa3\xcc\xe1\x27\x2f\x05\x0e\xff\xaa\xa0\x9a\xd2\x09\xa9\x99\xa9\x27\xb9\xa3\xc3\xab\x94\xd9\x72\x9c\xb7\x36\xbb\xce\x8d\xb9\xaa\x22\x18\x5b\x6a\x10\x4b\x70\x36\x1b\xb3\x10\x4e\xc6\x07\x9f\xe5\xd9\x5a\xd1\xb7\x3e\xd0\xba\xe4\x40\xdf\xdb\x6b\x40\xdc\xcd\x51\xcd\x56\xf6\x60\xf0\xc5\xba\x49\x86\x5f\x12\xf3\x69\xc2\x3c\xd3\xe0\xd4\xba\xa0\xdc\x4f\x4e\x2e\x99\x99\x9f\xc7\x7d\x37\xea\xcd\x0d\x29\x94\xf9\xe6\x2b\xae\x34\x91\x98\x3a\x0a\xec\x20\xb8\x29\xb1\x86\x64\xea\xb7\x34\xe0\x01\x4e\x4f\xba\x5c\xea\xf8\x4b\x6a\x8d\x4d\x5d\x81\x2d\x16\x5b\x6a\x09\x30\xcb\xef\x16\xbd\x23\xeb\x8d\x61\x12\xff\x66\xb9\x77\x2c\x55\xb3\x8f\x7c\x75\xeb\x64\xe1\xb1\xf3\xaa\x44\x04\x64\xee\x97\x49\x1c\x66\x75\x81\xd8\xc1\x77\xef\xca\xc4\xa3\x53\x34\xcd\x13\x74\x45\x20\x69\x53\xcb\x11\xb9\x7b\x9e\xba\x2d\xf0\xf5\x60\xc4\xb7\xe7\x78\x84\x87\x69\xfa\x14\x77\xa5\x17\x6b\xc6\xf1\x2d\xda\x08\xf8\x19\x4e\xad\x84\x76\xf8\xef\x9f\x5a\xb1\xd5\x6d\xd3\x62\x68\x16\x4d\xe8\x28\xbf\xd1\x29\x8f\xfa\xb6\xf1\x1b\xe2\x86\x2c\xe5\x71\x72\x25\x74\xeb\x5e\x82\x50\x82\x79\xff\xea\xde\x6b\x15\xfa\x94\x9c\x1e\x2c\x07\xbe\x77\xf1\xac\x13\xd7\x5f\xbb\x87\x9f\x39\xb4\xad\x7c\x77\xe6\xed\x16\x6c\xde\xe5\x25\xfa\x6c\x8f\xa9\x14\xf2\x62\xbd\x62\x2a\x00\x91\x32\x63\xa5\x0a\x7c\x51\x8a\x88\x47\x46\x60\x34\x85\x2b\xa4\x8d\x50\xda\xef\x0f\x5e\x19\x22\x46\x8f\xd0\x55\x6c\x6e\xf7\xc4\x51\xe7\x4e\x80\x88\x1b\x2e\xd2\x24\x0d\x84\x94\xa6\x47\x57\xcb\x39\x30\xac\xff\x8c\x5d\x87\x71\x3e\x8b\x39\x34\x1d\x56\x75\x40\x08\xe0\x5c\x55\x0a\xe3\xf0\x23\x15\xd2\x66\xea\xbe\x9f\x15\xec\xd0\xf3\x5f\x5d\xa1\x54\x95\x6b\xcb\x82\xa5\xe6\x04\x26\x29\xd1\x86\x32\xc8\x06\x51\x8a\x52\x89\x24\xf1\x58\xc2\xf9\x0d\x27\xb1\xec\x76\xb2\x31\x8e\xa0\x87\xdd\xe7\xf3\xb5\x33\x09\xed\x43\x07\x90\x47\xa1\x3d\x94\xf7\x5f\xec\x89\x65\xfe\xc1\xb1\x76\xcc\xae\x3a\x57\x2a\xf8\x2e\xe2\xa2\x4e\x56\x3e\xb9\x49\xf7\xdb\xea\x78\xc1\x7a\x20\x87\x6c\x75\x77\x65\xda\xe1\x6e\x20\x30\x97\xf3\x29\x47\x6b\xaa\x24\xa2\x78\x8d\xa1\xcb\xb7\x5c\x49\x87\xa2\xd6\x8f\x8e\x8a\x56\xb1\x41\xad\xe4\x8d\x6d\x57\x89\xd6\xdc\x3b\x85\xf8\xa8\x90\xd6\x17\x56\x0d\x58\x44\x18\xa4\x84\xad\x90\x24\x9b\xc8\xf3\xea\xbe\xe4\xdb\x64\xbb\xa2\x3b\xc4\xc1\xba\x30\xba\x1c\x7d\x54\x82\xb3\x1f\x7c\x21\x81\x2b\x06\xcd\x36\x15\xb8\x52\x83\x86\xf3\xf3\xbd\xd9\x3d\x39\x81\x79\x46\x88\xac\x81\xf4\x49\x93\xef\x2c\x49\x11\x1d\xbe\x49\xea\x9b\xd1\x24\x86\xfe\x38\x4c\x4f\x70\xe2\xdb\x62\x80\x9f\x04\x50\xe6\x37\xa2\x2c\x4f\x7e\xa1\x98\x25\x99\xba\xd2\xee\x59\x8f\x6f\x5b\x44\x9b\x98\xc5\x0a\x90\xa5\x9a\x77\x23\x59\x4c\x20\x64\x9d\x41\x0c\x03\xc9\xe1\x95\x83\x0e\xd8\x87\x50\x1b\xb0\xaf\xfb\x0c\xcc\x5b\xde\x5d\x75\xbc\xb1\xbf\x7f\x2d\x40\x78\xe7\xb8\x97\x8c\xd4\xc4\x0c\x15\x5b\xcb\x54\xd5\xde\x55\xe4\x5d\xa8\x57\x97\xbb\xb1\x48\x8a\xa2\x9e\x39\x26\x21\x08\x12\x1d\x70\xcc\x09\x04\xad\xd5\x57\x21\xc5\x66\x9c\xf5\x57\x67\x20\x02\x17\x0f\x84\x1c\x0d\x36\xad\x3a\x69\x1b\x88\x00\x45\x7a\x86\xb6\x0c\xca\x3b\x26\x02\xb4\xda\xd3\xd4\x3e\x11\x8d\x67\xa3\x8c\x32\x62\x3f\x11\x71\xb3\x60\xb2\x81\x6f\x2d\xbe\x39\xb1\x9f\x6a\x10\x27\x5c\x4a\x12\x47\x7a\x3a\xea\xd3\x0e\x91\x9a\x7c\xad\x77\xf5\xe4\x05\xc3\xde\x61\xa9\xb6\xaa\xfc\x77\x15\x83\x96\x2d\x47\xe0\x32\x56\x16\x02\xb2\x4d\xf1\x22\x49\x63\xf3\x0c\x9b\x32\xdb\x79\x97\xcf\x8b\x8c\x62\x2d\xec\x2c\xda\xfa\x52\xc1\xc6\x35\xd1\x94\x6d\x3c\xe0\xcb\xc6\xee\x27\xe3\x35\x28\xfd\x06\x55\x27\x79\x3f\x19\xb6\x98\x4a\xe9\x5e\xdf\xe2\xa6\x0f\xd2\x7b\xe6\x2a\xc3\xc4\x88\x09\x2e\xd8\xd8\xbb\xfe\x96\x1e\xf1\xf4\xa0\x6f\x7d\x7a\xc4\xb3\x32\x68\x9f\x94\x83\x6e\x1c\x59\x63\x3e\x78\xce\x8b\x7d\xf2\x82\xd5\x1f\x07\x33\xf9\x39\xaa\x30\x0d\x3d\x96\x17\x50\xce\x58\x40\xee\x41\xdf\xba\xb8\x00\x65\x6f\xc4\x98\x15\xc4\xc5\x4b\xbe\x3e\x4c\x95\x23\x78\x2d\xa4\xf0\x74\xa3\xee\x98\x21\xe1\xa4\x2f\x12\x19\x2c\xfb\x2b\x96\x2a\xd7\x7f\x04\xcb\x62\x21\x74\x67\x37\xf9\x4f\xc3\xb0\x3c\x83\x4f\x73\xaa\x38\xd7\x2f\x44\x70\x10\x84\xd6\x69\x5f\x50\xae\x6f\xbe\xa1\xcb\xe4\x3d\x79\x41\xbe\xaf\xca\x4d\xef\xb9\xd2\xe8\x42\x47\xbf\xd0\xf3\x5d\x16\xf2\xf7\x3c\xe8\x8c\x1f\xdb\xe9\xa6\x88\xea\x4f\xa9\xc3\x44\x10\x62\x2b\xcb\xce\x89\x0f\x50\xe6\x7a\xfc\xb8\x60\xad\x77\xdd\xf8\x05\x9e\xf5\xb6\xa5\x3f\x6b\x63\xa3\x3c\x7b\x12\x37\x7c\x7d\xa8\x1c\xdf\x78\x87\x44\x94\xc4\x29\xec\x40\xcf\xb1\x75\x4f\x22\x4a\xae\xa6\xec\x80\x2f\x96\x60\x69\x02\x13\x72\x7b\x90\xd0\xf3\x9e\xf6\x59\x9b\x50\xc7\xc8\x81\x05\x7f\x51\x45\xa2\x14\x02\x67\x17\xbc\xa7\xc8\xa2\xd7\x97\xc4\xec\x96\x66\x53\x22\xe3\xec\xb1\x1b\xc1\x75\x3b\xec\x9d\x7a\xeb\x6f\xb6\xc8\xb0\x1d\x86\x8c\x8e\x21\xb5\x03\x51\x2a\x7c\x4b\x88\x9b\x7d\xee\x7b\xe6\x27\x82\xe5\x9b\xf3\x0d\x79\x96\xb2\x41\x20\xf3\x5f\x98\x95\xbb\x6d\x43\xdd\xae\xf7\x37\x1f\x3a\xc6\x26\x4e\x8f\x8d\xea\x97\x3d\x52\xa1\xe7\xdd\x8e\xff\xa4\x6e\x8f\xfe\xd8\xdb\xec\xd3\x61\xc7\x1b\xb6\xa9\xa8\x5b\x08\x5e\x44\x27\x6c\x2d\xe1\x32\x08\xcd\x17\x79\x3d\x6d\x9e\x97\x1f\x9f\x18\x58\x16\xa5\x8e\x47\x2d\xe1\xcd\xca\x3c\x14\x06\xc3\xea\x8e\x0b\xab\xae\xbd\x89\x70\x86\x63\x37\x9d\x85\x22\xb9\xee\x33\x6b\xfe\x25\xdb\x97\xfd\x30\x9d\xf8\x21\x7f\x49\xc2\xf1\xe9\x57\x77\x98\x36\x4e\x75\xd3\xc6\xa9\xae\x17\x54\xff\x48\x8e\x00\x87\x51\x5c\xe2\xbd\x11\x37\x7d\x83\x29\x38\xed\x45\xe8\x78\x7f\xb0\xc8\x89\x70\x45\xa6\xca\x1c\x59\x41\xdd\x7d\xee\xb1\x91\x36\x3b\x7e\x6c\x2b\x4c\xd9\xb5\x39\x02\xd9\xa1\xcf\x71\x9b\x7d\x45\x21\x45\xe2\x63\xdb\xc7\x40\xc9\x2e\x76\x86\x21\xeb\x25\xf1\x9d\xe6\x8d\xb5\x3a\x32\x0c\x4b\xcc\x9f\xcb\x70\x29\xa2\xdf\xbd\x8e\x7a\x80\xc0\x29\x2e\xbd\x84\xf4\x07\x4d\x86\x5d\x1b\x63\x24\xb5\xb4\xac\x1a\x79\x68\xf8\x58\x6f\x7c\x69\x3e\x54\x84\x08\x85\x08\x17\x74\x30\x9e\x95\xe9\xfd\x4f\xfc\xdf\xe6\x0b\x57\xfd\x95\xb2\xe5\x03\xf5\x69\xd7\x5b\xd5\x00\x2c\xcd\xd2\x9b\x8a\x9f\x3b\x5d\xec\xf5\xd1\x37\x51\xf6\xd0\xef\x72\x10\x91\xd7\xd8\x07\x24\x25\x89\xbf\xa9\x25\x2a\x65\x30\xe5\x46\x7e\x25\x29\xd8\x9e\xd8\x37\xa5\xe4\x7d\x3e\x1a\x39\x72\xfd\x42\x32\x7b\x72\x60\xfd\x44\xd9\x54\x46\xaf\xbe\xa4\x7a\xb9\x84\x7a\xe3\xd8\x78\xb4\xff\x2e\xb4\xcd\xe1\xd8\xd4\x56\xf1\x9b\x44\xb4\x5f\x07\x0e\x7e\x73\x5c\xf1\x9f\xd1\x46\xea\xd1\x99\xb2\x39\x18\xac\x8a\x63\x85\xe8\x53\xf4\x2a\x18\xa0\xc4\x44\xa2\xea\xd5\x32\x10\x03\x88\x92\x60\x76\x83\xe0\x6a\x11\x78\xde\x22\xd8\x0f\x95\x43\xea\x72\xf0\x75\xd6\x5f\x16\x54\xb4\x79\xad\xa4\xaf\xb1\xfe\xe4\xe8\x51\x47\x67\x7b\x06\x2d\x23\x1e\x0c\xa5\xca\xbf\xf2\x47\x79\x86\x52\xfc\xd2\x16\x32\xdd\xff\x77\xe4\x5b\xa0\x4b\x0e\xd0\x56\x33\x83\x52\x5b\xcd\xd8\x3c\x8a\x98\x09\xab\x18\x59\xd9\x41\xd9\xfe\x00\x26\x20\x60\xd5\x6d\x66\x1c\xff\xfe\x65\x14\xc6\x0e\xda\x89\x44\xa6\x00\xfc\x4e\xcf\x62\xd5\x62\xd3\x49\x4b\x54\x1f\x43\x6d\x4e\x38\x82\xe7\xff\x67\x01\x33\x64\xeb\xc8\xa0\xe5\x80\xa9\x0e\x8f\xca\x47\x60\x08\xb6\xe8\xc4\x0d\x38\x14\xdd\xca\x7e\x9b\x54\xca\x84\xa8\xa5\x9f\x3b\xc6\xcf\x31\x31\x7b\x90\x5e\x32\x2c\x9d\x31\x2a\x3e\x99\x11\x58\xf7\x4d\xe6\xcf\x51\xd3\x0f\xb6\x1e\xfe\x84\x46\xcc\xed\x3d\x5e\xec\x8c\xe0\xe5\x15\x37\x7d\x49\xce\xaa\x05\xd5\xb0\xe2\x22\x51\x89\x0f\x6f\xa2\xdb\x48\xd1\x2d\x77\x77\xe6\xe0\xef\xe1\xe9\xd2\x43\x64\xfa\x17\x33\x5c\x53\xcc\x6e\xdb\x9c\xf6\xc1\xd8\x16\xdf\x72\xd6\x57\x01\xb5\xf4\x78\xf1\xbc\x25\x4c\xd1\x72\xee\xa5\xe9\xcd\x19\x06\x5e\x84\x43\x88\x3f\x16\x78\xc3\xc1\x83\x16\x6e\x13\x2b\xdc\xcf\x7d\x97\x2d\xc7\x23\xfd\x12\x48\x90\x5e\x79\x67\xca\x46\x74\xe5\xd0\x00\xd2\x62\x20\x80\x61\x43\x5d\xaa\xb7\x13\x5b\xbd\x76\xba\xad\xe0\xa9\xfd\x57\x1b\xeb\x60\x1f\x45\xd8\x62\xe6\xa3\x8d\xd5\xa5\xf5\x61\x67\x83\xe5\x9b\xb5\xc6\x11\x55\x94\xba\x09\x16\x3b\xfa\xa6\xfc\xeb\x35\xf3\x86\x18\x51\xb0\x7c\xce\xf4\xff\xb5\xe2\x38\x9f\xf2\xab\xde\x46\x10\xea\x53\xd9\x54\xc8\xc5\x46\x96\x38\xae\xa5\x6f\xbe\xdc\x4b\xfe\x95\x60\x4b\x11\x55\x2b\x78\xf1\xbc\xf1\x17\xe3\xb7\x0c\xb9\x3d\x1f\x8a\xe2\xe8\xa4\xaf\x55\xcf\x49\xbb\xef\x24\xfa\x67\xa8\x6e\xb5\xb7\xc7\xf4\xed\x93\xea\xb7\x74\x66\x3b\x4e\x83\x4d\xf4\x4d\xba\xf8\xeb\x03\x66\x9a\xc1\x2b\x12\x76\xdb\x1b\x2f\x28\x73\xf6\xd8\x00\xb2\x45\x35\x8b\x14\x70\x21\xc6\xa6\xd8\xf7\x77\x79\x51\x20\x48\xce\x65\x22\xf2\xf4\xcf\x18\xbe\xfc\x35\xd3\x78\x0d\x94\x53\x52\xeb\x1f\xcf\x3b\x91\xe8\xf8\x76\x74\xe2\x15\xd0\xe4\x67\xa5\x4e\xbf\x98\xc6\xc1\x70\xd1\xfc\x7d\x85\xda\x55\x4c\xef\x8e\x4a\xe2\x4f\x36\xcd\x05\x49\x02\xbd\x4d\x50\xe1\x9d\x53\x55\xa1\x52\x43\xe0\x96\xe9\x55\x29\x8c\xca\xbe\x01\xf1\x03\x26\x25\x11\x69\x8d\xce\x00\xb0\x4b\x99\x72\xf1\x02\xa0\x79\x85\x2e\x95\x51\xe2\x39\x96\x43\x61\x07\x37\x26\x2a\xd6\x00\x7b\x05\x82\xbe\xe4\xff\x47\xbc\x63\xaf\xa9\xb8\xa1\x67\xcf\x1b\x04\xb3\x12\x55\x38\xbc\x3e\x92\xac\xff\xd2\xcc\x10\xbe\x41\xfd\x59\x70\xcd\xbb\x82\x95\x34\x2f\xd9\xa0\x4a\x98\x90\x57\x38\x33\x11\x9b\xd3\x18\x06\x57\x3b\x0a\x21\x67\x93\x25\x44\x92\x0c\x49\xb3\xe3\x75\x27\xfe\x29\x4f\x3b\x19\xe5\x2d\x91\xb4\x26\x1f\xb3\xcc\x06\xde\x5e\x0e\x33\x6f\x0f\x46\x7c\x79\x38\x4c\xe2\x72\xc7\x0b\xe6\xbf\x58\x74\xc5\x44\xc6\xc3\x8b\x32\x35\x6a\x66\x94\x99\x98\x4b\xaf\x1b\xe2\x0a\x8c\x9f\xba\x30\x1b\xbc\xc0\x52\xa6\x82\x7c\x71\xfc\xe2\x41\x3b\xd0\x05\x7b\xe1\xbc\xe5\x57\xbb\xfa\x73\x74\x09\xdf\x94\xf6\x53\x6c\x36\x49\xf4\xa0\x62\x87\xbc\x5c\x6c\xa8\x5e\xc6\xeb\x86\xbb\x53\x74\xd1\x50\xbc\xae\xfd\x8c\x22\xa5\xd1\x08\x40\x1b\x8f\x54\x37\x8e\x09\x7e\x4c\x87\x4a\x24\x48\x6b\x3e\xda\xd2\x9d\x7d\xa9\xe3\x05\x45\x36\x2f\x37\xa4\xc5\xdc\x50\x27\x5e\xda\xf3\x92\xb1\x11\x4e\x9b\x21\x54\x1c\x31\x46\x6a\x33\xc5\x91\x2a\xc6\x96\xa1\x39\x5e\xa9\x02\x05\x4e\x64\x5a\xe1\xce\x92\xc7\xe5\x4d\xd2\x69\xb3\xe2\xd6\xa0\x55\x87\xd3\xb2\x9c\x32\xf2\x13\x46\x7b\x4b\xf3\xe8\xf0\x72\xe9\xf7\xab\x30\x85\xa0\x92\x29\x6a\xe5\x06\x9c\xb3\x67\xd6\x58\x7e\x24\x5f\x34\xc1\xa1\xbb\xa4\xa8\x0f\xba\xf9\xf3\x49\x58\xe0\x8b\xe7\xf5\xa5\x2d\xf6\xa3\x43\x72\xec\x03\x4e\xd5\xf8\xa1\x9f\x7a\x0a\xf6\x21\x86\xa4\xf5\x12\x18\xc7\xe2\x87\x5e\x02\xe9\xe2\x2d\x0e\x1c\x5c\xa6\x77\x60\xf0\xb7\xae\x44\x57\x04\xd4\xfe\x83\x11\xed\x63\xd1\xff\xd8\x8d\xf0\x9c\x74\x23\x98\x0c\x06\x4c\x2c\xdb\x41\x63\x76\x2d\x71\x49\xd6\xc6\xf2\x05\x6e\x8a\x20\x4a\x76\x11\x72\xda\xef\xdf\x2c\x00\xa4\xa6\x7f\xcf\x1e\x91\xaa\xf9\xb4\x51\x3c\x58\x8d\x55\x0f\x7f\xce\x8d\xc3\xd1\x58\xf1\x5c\x30\x26\x64\x1d\xee\x39\xe8\x08\x1c\x4a\x2e\x2b\xa3\x05\xb2\x4f\x01\x06\x6c\x4a\x58\x71\xc1\x5d\xa2\x9c\x29\x36\xef\xa4\x18\x83\x7d\xa2\x5c\x09\x4a\x02\xf0\xdf\x61\x92\x41\xb0\x6d\xcb\x09\x8c\x42\x18\x10\x7e\x49\x9d\xc7\xae\xfe\x55\x28\xb1\xbd\x7e\x8d\x22\xc0\x1a\x05\xdd\x78\xd3\x06\x37\xa0\x9a\x6c\x10\x8a\x32\x74\x38\xd5\xc6\xc6\x45\x27\xee\x26\xbd\x7a\x35\x0e\xbf\x98\x3f\xea\xc3\xdc\x20\xa7\xe8\xaf\xe4\xe0\xdc\x1f\xba\xbb\xd5\x7c\xa8\x53\xe0\xc0\xd9\x21\x09\x63\x1c\xeb\x78\xf4\x1d\xcc\x1d\x0d\x02\xaa\xe5\xcb\x9d\xc5\x7a\x63\x6d\x8e\xda\xba\x0e\x09\xed\xa0\x10\x87\x04\x8a\x46\x4a\x23\x32\x42\x30\xca\xc7\xca\x2a\x48\x87\xc4\xa2\x09\x9f\xa0\x0b\x7b\xea\x54\x28\x43\x59\x15\x8e\x11\xe3\x0f\x2d\x86\xef\x61\x44\xfa\xed\xd6\xf1\x61\xb4\x65\x26\xbd\xb4\xa0\x0a\x25\xf1\x3f\xac\x33\xa2\x1d\x80\x68\xc7\xff\x41\x44\xbb\x8c\x30\x0a\x9d\xec\x56\xdb\xba\x3c\x10\xbc\x3e\xb1\x27\x1b\xec\x49\xf6\xf2\x3f\xda\x93\xc3\xf0\x3d\xe0\xa5\xdf\x6e\xaf\xdb\x2b\xec\xc9\x31\x63\x4f\xa2\x3d\x53\x9f\xcb\x72\x91\xe3\x8c\xf8\x05\xf1\x81\x20\xfa\x63\xa9\xe3\x46\x51\xa4\x89\x50\xdb\x32\x5a\xc5\xc2\x91\x0b\x03\xe7\x26\x4a\xd7\xa1\xcd\xdc\x6d\xba\x5c\x13\x36\x8f\xc8\xd5\xcf\x24\x6b\xe3\x3a\x3a\xaf\x07\xfe\x34\x7b\xcf\x4e\x5f\x98\xf3\x22\x19\x7c\x76\x9d\xe0\xbc\xd3\xeb\x04\xef\x9c\xb7\x14\xbb\x09\x89\xa7\x98\x87\x17\x8e\x78\xcd\xba\x18\x7b\xf9\xd3\x03\x4c\xf4\xb3\x28\x68\x78\xd4\x1f\x33\x20\xc4\xe2\x37\x77\x96\xe3\x6c\xef\xe4\x92\xe1\xab\xd2\x7b\xcf\x92\x28\xfe\x00\x44\x7e\xa7\x82\x16\x64\x46\xf6\x27\x48\xc5\xf4\x96\x35\xf8\xd6\x40\x64\xa4\x42\x33\x3f\xa1\x9b\xf7\x34\x20\xf9\x5b\xc3\x59\x07\xe5\xd5\x1a\x3c\xc3\x66\x57\x1e\x50\x1c\x09\x67\xd1\x71\xf0\x20\x80\xcd\x6c\x63\x99\xd9\xec\x51\x6d\x64\xa0\x20\x4e\x56\x78\xb8\x67\xef\xb3\x04\x07\xc4\x3c\xce\xae\x39\x1c\xec\x5a\x7e\x91\x6f\xfd\x36\x39\xe8\xce\xa9\x1d\x78\xad\x67\x59\xb9\xd7\xd2\x81\x1d\x28\xb5\x10\x3c\x88\x12\x44\x51\xcc\x1c\xd7\x6f\x8c\x5d\x6b\x07\xec\x95\x6b\x13\xf6\xde\x41\xc3\x96\x1a\x47\x35\xd5\x51\xf9\xeb\x41\x2c\x6b\x96\x29\x44\x98\xe2\xe9\x56\x2e\xc6\xaf\xaf\x40\x9d\x70\xf1\x51\xc6\x4f\x46\x81\x20\x97\x43\x70\xc7\x72\x0e\x46\xa0\x99\x2d\x74\x13\xb8\x71\x6d\x98\xeb\xe2\x3a\x85\xc4\xd2\x3e\xec\xbb\xde\xd9\xf2\x5d\x6a\x67\x65\x6c\xd3\x28\xa8\x00\xc7\x8d\x58\x04\xac\x01\xd2\x4c\x4b\x82\x30\xd4\xb4\x10\x6b\xf6\xe9\xcf\x99\x08\x95\xf9\x77\xe5\x46\x4a\x04\xa8\x20\xe8\xe1\x7b\x16\x02\x21\x50\xae\x74\xc7\x25\xbc\xef\xe4\x57\x22\x3e\x85\x83\xf0\x7f\x38\x27\x9e\x5e\xf9\x75\xcd\xc7\xdc\xb6\xa9\x95\x13\x8c\x02\x2d\x67\x67\x0d\xa0\x69\xce\x8a\x68\x62\xc1\x92\x15\xcb\x0d\xc2\x44\xce\xc3\x7f\xcb\x27\xe2\x9a\x55\x67\xda\xac\x7a\x84\xed\x25\x11\x84\x95\xd0\x44\x32\xd3\x86\xac\xe2\x0c\x2d\xc6\xd2\x73\xa7\xc8\x8c\xd8\x47\x25\x72\x99\x3e\xe0\xd4\xf0\xbc\xe0\x69\x19\x3a\xce\x10\x1a\xd8\x29\xd4\x01\x67\x24\xab\xf2\xf3\x54\x28\xae\x35\x59\x4a\xdc\x33\x55\xdc\xa5\x7a\xe6\xf9\x10\x94\xae\xc4\xe9\x4d\x92\x5a\xcd\x69\x5d\x80\x0f\x89\x58\xc6\x06\x64\x5c\x5d\xe8\xf9\xb7\xa0\x20\xc5\x1b\x18\x12\xaa\x7c\xa0\xe1\xaa\xa9\xf1\x01\xa8\xbe\x0a\xe5\x8f\x6c\x2e\x52\xc5\xb9\xc7\xc2\xc0\xed\x2c\x95\x26\x8d\x9a\x6a\xbc\xed\x05\xdb\x60\x56\x41\x59\x03\x99\x6d\xcf\x1d\xc5\xe8\xf8\x5f\xbb\x12\x9c\x34\xce\x16\x1d\x72\xca\x9c\xc8\x96\xec\x95\x67\x0a\xb5\xe2\x3c\xc5\xe9\xbd\xf3\x44\x2c\xe6\xf0\xfd\xc6\xad\x90\x6d\x75\x7f\x44\x18\x10\x8d\x99\xfa\xd4\xc4\x04\x15\x72\x53\x18\x83\xbe\x83\x64\x7c\xd3\x8c\xe5\xa2\xba\x03\xbd\xab\x1b\x2a\xb6\x67\x22\x7e\x26\x7c\xbe\x71\x62\xf6\xa9\x7a\x20\xec\xfe\x0d\xad\x5c\xb6\xbb\xe5\x8c\xab\x3d\xc2\xe0\xb1\xd7\xea\x72\x32\x29\xd9\xa6\x43\xe6\x73\x8e\xf5\xce\x4d\x87\x5c\xde\x69\xf4\x96\x94\xc6\x7c\x4e\x85\x36\x0f\xd9\x4c\xd5\x32\x4f\x18\x8f\xac\xca\x7c\x8c\xa1\xf9\xe7\x9d\x11\xb3\x92\x24\x3f\xf3\xbc\xfc\x36\x50\x8e\x38\x90\x36\xed\x14\x45\x3c\x65\xde\x77\x4e\x74\x66\xe2\xa1\x57\x09\x62\x30\x6e\x83\xaa\xf3\x30\x0b\x52\x4f\xcb\x47\x73\xc8\xfb\xd2\x04\x9b\x3e\xd3\xa0\xdc\x80\x6a\x2b\xef\x34\x59\x45\xe1\xa5\xc1\x37\x96\xb2\x39\x12\xac\xf4\xc2\xa5\xf4\x43\x93\x0b\xbc\xe4\xb8\xb0\xdc\x33\x45\x4d\xef\xfc\x0b\x96\xf4\xe0\xfc\xfb\x2a\xf2\x5a\x95\xdf\xe7\x27\x4d\xa0\x14\xa9\xe4\xd2\x8d\xfb\x7e\x5e\x35\xb3\x50\x49\x7b\xbb\xac\x60\xcd\x03\x08\x70\x9d\x4c\x3a\xac\x8f\x4b\x54\xf4\x56\x19\x3b\x8c\x6f\xc1\xda\x3a\x0c\x1f\x76\x6b\x75\xe2\x5c\x2c\x1d\x15\x83\x59\xf5\x2f\x32\xb0\x7e\x5f\xe9\xb3\xcf\x06\xa5\x8a\x7f\xfa\x4a\xf8\x3b\xff\x29\x47\xd7\xf4\xbd\x67\x28\x50\x9d\x55\x54\x46\xca\x59\x43\x72\x6f\x0f\x1c\x76\xbe\x37\x09\xce\x5f\x38\x39\xb1\xeb\x79\x45\x37\x77\x50\x08\xf0\x98\xb3\x1d\x50\x7f\xb2\x7a\xa7\xec\x6b\x5b\x0e\x58\xe2\x3a\x2f\x7c\xb2\x4f\x39\x55\x93\x4c\xbe\x59\x60\xb2\x58\xdb\xf1\xbd\xfd\x54\x11\xd3\xe9\x4f\x17\x3b\xa5\xbd\x20\xa0\x04\x89\x16\xe0\x01\x7e\xad\x1f\x2d\xce\x8e\xac\x55\x72\xe2\x4b\xdb\xb8\xc8\x31\x4e\x8a\xf1\xf0\x36\x55\x5e\x95\x83\x1a\x9c\x74\x99\xc0\x24\x30\x05\x20\x67\xcb\x44\x2e\x65\xcf\xf3\x9e\xce\xa9\x32\xa9\xc1\xfc\x4d\x8a\xec\xf4\x24\x42\x94\x19\x8d\xf3\xfa\x3f\x2a\xb9\xfa\x94\x28\xb9\xba\xf1\xb3\xe4\x19\xa0\xd7\xdf\x17\x5b\x15\xe3\x99\xb2\x9b\xe9\x59\xfc\x47\xc5\x56\x29\x04\xe5\xdb\x09\xa7\xa7\x3a\xd2\x92\x05\xe5\x36\xc6\xb7\x2b\x50\x21\x53\xb7\xdf\x8b\x47\x40\x2e\xc0\x00\x16\xdf\xea\x65\x93\xbb\xb1\x95\x9b\x11\x45\x2c\xe0\x06\xde\x89\xa7\x8c\x60\x61\xf2\x76\x5c\x1b\x37\xa1\xd1\x57\x75\xda\x13\xf7\xe3\x1b\x33\xc4\x06\x8b\xfb\x23\x17\x31\x35\x23\xd6\xa0\xd4\x3a\xa4\x20\x61\xfd\xc5\xb1\x6a\x23\x5c\x33\x02\x8f\xb2\x1f\x94\x99\xcb\xf3\x13\xb8\x76\x40\x87\xbf\xe6\x48\xdb\xbe\x73\xd0\x49\x87\x63\x31\x06\xdf\x7b\x41\x9e\x4b\x71\x8e\xc6\x80\x15\xda\x04\xe1\x5c\xa6\xe2\xa7\x4e\x70\x6f\x8d\x47\x69\x97\x87\x69\x1c\x8f\xb8\xfb\xb3\x2a\x48\x74\x2f\xd6\xc9\xf8\x02\x0c\x9d\xa5\xb3\x6f\xcd\xb5\xa3\x6f\x6e\x69\x82\xce\x7c\xac\x05\x17\x0e\x8c\xda\x50\x34\xc2\xb0\x05\x39\xa8\x72\x46\x20\x6e\x7c\x3e\x47\xdf\x10\xce\x60\xda\x95\x21\xda\x17\x2b\x9b\x0c\x53\xb1\x5f\x9d\x98\x48\x05\xa4\x98\xb1\x22\x98\x83\x9c\xb2\xfe\x4f\x56\xa7\x35\x71\x90\x22\x74\xf6\xaf\x55\x4d\x43\x1f\x05\x6b\xa9\xe1\xa8\x5a\x79\xc2\xf0\x14\xaa\xa5\x4b\xdb\x10\x03\xb4\x67\x91\x45\x1e\x06\xd7\xc9\x85\xc5\x27\x06\x05\x97\x94\xe6\x1f\xa6\xa9\x7d\x83\x4e\xe9\x92\xcf\xea\xde\x69\x42\x04\x7a\x93\x37\xfd\xca\xa0\x67\x38\x40\xc7\xbd\x79\x49\x65\xd8\x1e\xc6\x82\x74\xda\x02\x67\x98\xdf\x19\xdd\xf6\x06\x53\x7e\x8c\x6b\x03\xec\x27\xec\xfb\x2b\x8c\xb2\x76\x29\x2b\x65\x42\xa2\xf1\xb6\xc0\xea\xdc\x24\x40\x10\xe6\x76\xac\x71\x86\xe9\xeb\x6a\x1a\x58\xf2\x3e\x1d\x6a\x6f\x08\x49\x6e\x44\xaf\xeb\x3f\xaf\x3a\x5e\xce\xcf\x3d\xce\x08\x57\xf2\x7e\xf9\x51\xa8\x10\x8b\x16\x35\xfc\x0f\x33\x08\x3b\x22\xa3\x66\x04\xcf\xe3\x4a\xfa\xfe\xe3\x06\xfa\xe1\xef\x82\x42\xd5\xea\x52\x2f\x81\x15\xd2\xed\x9f\xb7\x5b\xae\xd4\x31\xa6\xdd\x59\xb5\x38\x11\x88\x3e\xf6\x6c\xff\xfc\x6e\x44\x92\x90\x82\x00\x29\x61\x3c\xe2\x48\x7a\xa3\xc2\x61\xd0\x78\x7b\xd2\x7f\xc6\x0f\x9c\x5b\x76\x06\x85\x96\x3d\x2f\x47\x3b\xc9\xde\x5a\xea\x12\xc5\x2f\x34\x1a\x7e\xf2\x54\xd1\xf5\xc8\xfe\xf9\x92\xf9\x80\x8a\x7e\x4e\x5f\x55\x00\x48\x5c\x65\x9d\xfa\x9b\xe1\x63\x47\xe2\xd6\x03\x92\x33\x5a\xcd\x03\x52\xab\x63\xca\x5c\xd9\x6a\x99\xcf\xe0\x5b\xe5\x5e\x61\x20\xf0\x90\x4a\xb1\xde\x3b\x4f\x07\x4d\x6e\x86\x80\x26\x59\xc3\x92\x9f\x38\xf5\x91\x61\x11\x52\x46\x7e\xee\xbb\x71\x56\x15\x1f\x4a\x3f\x71\x25\xe3\xdb\x97\xf8\xbd\xdc\xd9\x77\x15\x6c\x6e\x7b\xd4\x64\x1a\xa2\x8a\x89\x40\x4e\x78\x36\xc1\x99\x91\xd7\xca\x13\x62\x53\x6f\xa7\x53\x30\x89\x38\x3e\x27\x7e\xe3\xc1\x08\xa9\xe0\xe4\x2d\xcd\x74\x56\x20\x50\x6b\x26\x50\x14\x1d\xfd\x13\xf2\xc1\x62\x14\xb0\x43\x87\x0e\x95\x6d\x72\x3c\x09\x12\xc6\x00\xc9\x83\xb0\x19\xa0\xe6\x96\x97\xf5\x15\x90\x99\xae\x1b\x2a\xe0\x8e\xf9\x97\x2f\xe2\x74\x5a\xb1\xc6\xf0\x87\x4d\x90\xd2\x3d\xd0\x28\x83\x56\x53\x61\x9c\x3e\xf2\xd0\x27\x7a\xa0\x7b\xa6\x91\xa8\xfa\x59\x30\xe5\x6d\x1f\x49\xcf\x96\x92\xc3\x57\xed\x3f\xbb\x89\x52\x22\xbd\x4c\xac\x8d\x49\x49\x62\x2e\x03\x1b\x61\xf2\x9b\xa5\xee\x12\x28\x62\x79\xac\x89\x5a\x3f\xe5\x41\x3e\x1c\x81\x2d\xb1\xc4\xce\x19\xb6\xed\xa9\xb1\x23\x87\x83\x60\x14\x7f\xb4\xbd\x8e\x2f\xc1\x5c\xd0\x22\x7e\xd7\x97\x5a\x6f\xd5\x31\x06\x24\x45\x3f\xdc\xc6\xff\xb5\xcf\x31\x20\xc2\x4a\x38\x22\x9b\xc6\xed\x0c\x21\x12\x4d\xd4\x96\xe4\x87\xca\xed\x78\xd0\x11\x2d\xb0\x3d\x6a\x33\xe6\x51\x88\x80\x22\x2d\x9e\xa5\xf2\x83\x51\x8a\xca\x37\xf7\x5a\xc7\x89\xff\x39\x1a\xd7\x2f\x73\xab\xae\xe7\xfd\x16\xa7\x88\xf8\x08\x66\x26\x83\x22\x3e\xe3\xbe\xf5\x27\xd0\x3a\xb0\x03\xcd\x29\xca\x46\x19\x00\x76\xbd\xe0\xcc\xc2\x53\x69\x92\x82\x6e\xf4\xbf\xd0\xca\x44\x49\x73\x23\x27\xbe\x00\xfd\x69\x12\x22\xad\x76\x42\x65\xba\xaa\xac\xe7\xa9\x6f\x02\xc9\x48\xff\x62\xf6\x1f\x03\x3c\x47\x1c\xbc\xf9\x05\xfa\x2a\xd4\xff\x0a\xb7\x28\x97\xa6\x96\x26\x7d\xba\xe9\xf4\x1c\x71\xaf\x47\xca\xdf\x6c\x57\x6e\xdb\x26\xc9\xbb\x82\xb9\xa7\xc4\xcb\x37\xca\x9e\x0a\x93\x29\x7b\x03\xd2\x1e\x0a\x2c\x6f\xee\x18\x98\x09\x43\xab\xda\x9c\xce\x06\x51\xce\xd6\x9d\xb7\x04\x90\xd0\x7d\xba\x36\xdb\x64\x03\xe9\x0a\x89\xb5\xd1\x8a\x8b\x80\xa0\x40\x4b\x07\xc9\xe2\x70\x3d\xed\xdc\xea\x2c\x47\x5c\x9e\x12\xe9\x78\xa6\x4a\xc7\xc1\xfa\x0f\xa3\x19\x64\xc3\xfa\xf8\x72\x70\xfc\x38\x48\x59\xda\x9b\x93\xa4\xb1\x01\xc9\x31\x39\xa0\x6d\x9e\xd1\xb6\xea\xbb\x63\x0d\x20\xce\xa0\x2a\xd4\x70\x9a\xf6\x5d\x03\x4f\x47\x13\x12\x6d\x66\x2d\xe3\x73\x19\xfb\xe3\x89\xf1\xce\x45\xf1\xd8\x6e\xfb\xa8\x09\x87\x4a\x55\xfc\xea\x48\x07\x62\xf4\x87\xce\x11\x31\x6f\xc4\x3b\x44\x16\x67\x45\x54\x34\xb7\xf5\x12\x8b\x6f\xe2\x20\xce\x26\x26\x24\x2b\x66\x23\x73\xcc\x69\x31\x09\x90\xe4\x4e\x43\x2c\x71\x79\x35\x61\x2f\xe9\x9c\xfd\x25\x05\x66\xe1\xe7\xa9\xab\xff\x18\x7d\x41\x83\xbf\x36\x71\xb7\xc6\x0d\xd0\x97\x81\xed\x84\xd7\x53\xb5\x27\x08\x92\x4b\x3e\x4c\xf1\x4d\x93\xd4\x42\x08\x53\xd3\x0b\x71\xa7\x25\xe3\x0f\xca\xdc\xb6\x86\x4e\xe5\x90\x0b\x67\xe4\x9d\x7e\xc8\x76\x4e\xa9\x64\x0f\xfb\x40\x21\xb0\x19\x15\x47\xf5\x77\x47\x0b\x76\xe6\x77\x8b\xe5\x04\x45\xb3\x43\x27\xa1\x51\xff\x8e\xc4\xea\x27\x89\x87\x66\x09\x36\xad\xe7\x9d\x2d\x8b\xe1\xc2\xfa\xcc\x1c\xc2\x3c\xd2\x4c\xe6\xb6\xaf\x98\xe4\xc6\x48\x53\x65\x50\xe7\x3c\xb2\xc6\xc4\x42\xc1\x10\x0e\xe6\xfd\xf9\x34\xd0\xc7\xc0\x7e\x59\x80\x8a\x99\xda\x0a\xc4\x13\x90\xab\x0b\x18\x43\xf4\x14\x32\xc7\x14\x1e\xce\x1d\xa6\x3b\x9f\xb9\xcf\x0a\x1d\x0d\x62\xce\x6f\x68\x16\x81\x75\x8f\x57\x6a\x67\x3e\x90\xf5\x93\x8b\x30\x6b\xe2\x50\xc1\x94\xd5\xe4\x0d\x9e\xde\x4e\x34\x4f\xa2\x09\x5e\x9f\x26\x56\xd4\xed\x9e\x15\x79\xf8\x73\xc0\x5b\x47\xbe\xf8\x5d\x6a\x59\x95\x88\x61\xff\x3a\x1f\x7c\xe7\x00\x1a\xab\x04\xf0\x7d\x37\x4a\x50\x28\xcb\xd8\xac\x86\xc9\x71\xdd\x63\x7f\xeb\x80\x99\x57\x71\xf7\xfb\xaa\xeb\xdd\xb2\x28\xd1\x5a\xe6\x21\xa5\xdc\x70\x4d\xc4\x84\x94\xc3\xdf\x2a\xfb\x35\x18\x28\xe2\x85\x10\x87\x26\xd4\x8c\x50\x09\x98\xf3\xd0\xa2\x11\x68\x67\xd1\x21\x4b\x48\x73\xe2\xba\x53\x2a\x0f\x92\x85\xac\x09\xcd\x3f\x8c\x45\x8e\xbb\x7d\xfc\xf7\xed\x81\xd2\xef\x7e\xd0\x43\xd2\x69\x6b\x48\xca\xe4\x3d\x8e\x90\x95\x22\x49\x33\x84\xc6\xbf\xc3\xff\x75\xf9\x3a\x7d\x91\x77\x61\xeb\xaf\x0e\x2c\x74\x15\x51\xcc\x6a\xca\x9f\xaf\x8d\xad\x22\x1a\x63\x42\x2c\xb8\xdf\xed\x63\x78\xdf\x56\xba\x1c\x0c\xc7\x56\xa8\x75\xdb\x90\xbf\x88\xf3\xe1\xd2\x2b\x8d\xa4\xc5\x8b\xa9\xd1\x01\x19\x25\xd4\x1b\xaa\xd3\x03\x09\x34\x33\x06\x01\xfd\x0d\x9a\x2a\x15\x6a\x80\x75\xc2\x5d\x4a\x81\x14\x7b\x55\x91\xa4\x39\x43\xb6\xce\x63\x47\x20\x00\x21\xc7\xe8\xb4\x7b\x0a\xa5\x36\x03\x23\xdf\xde\x91\x21\xf4\x76\xc3\xec\x38\xdf\x48\x06\x75\x93\xb8\x7e\xb7\xfe\x1e\x3f\x54\xfb\x5e\x19\x3b\xe8\x1b\xca\x4a\x15\x33\x89\x9c\x18\xc5\x01\x41\x25\xd8\x93\x75\xbe\xf0\x3b\x4a\x83\x28\xd8\xf6\xbd\xab\xae\xd7\x3a\xf5\xdd\x20\x9e\xc1\x34\xb8\x5a\xf9\x5e\xb0\xee\x0b\x63\x8c\x99\x1a\xb7\x51\x67\xc7\x59\x9e\xd3\x4a\xd9\xfa\x5d\x63\x5c\x9e\xd0\xbf\xbf\xeb\x12\x4a\x4f\x9f\x7f\x58\x7d\xbd\xea\x78\xf7\xf9\x0e\xdb\xf1\x9f\xad\x95\x74\x65\x2b\x7d\xc1\x9c\x96\x77\x0c\xe6\x60\xbc\x7d\x7b\xce\xea\x03\x2d\x14\x37\x95\x5d\xc7\xe5\xd5\xfd\x32\x18\xef\x62\x9c\x75\x30\x68\xf7\xfb\x66\x47\x7e\x40\x2a\x39\x29\x09\xa4\xeb\x79\xbf\x16\x7c\xc6\x9a\x7a\x3b\x22\x65\x72\x89\x92\xe9\x4a\x59\x33\x99\x4e\x95\x27\x1c\xd0\x9d\x4c\x03\x76\xc5\xc2\x2a\xdf\xc0\xff\xc3\x79\x9a\x5c\x4e\x54\xfb\x08\x09\xed\x15\x6e\x60\x77\x7a\xc7\x51\xd0\x07\x42\xee\x35\x72\xd3\xdd\xc3\x70\xf2\x29\x37\xd9\xf4\x69\x73\x77\xda\x2b\xf8\x1f\xed\xf4\x60\x40\xb3\xe3\xe3\x3c\xf7\xc5\xd9\x35\xb5\x9b\x35\xa2\xb7\xf2\x92\x81\xa0\xe8\xfd\x5f\x6e\xcf\x8d\x31\xe7\xc7\xdb\xa3\x52\x3c\xf4\xf6\x4c\x78\x7b\xaa\xff\xc1\xf6\x04\x47\x67\x7f\xd8\x02\x52\x64\x9c\x1e\x81\x8d\x88\xa8\x67\x59\xd5\x08\xa4\x78\x7e\x6f\xb5\xc9\x09\xe3\xf2\x50\x1e\x56\x0a\xb6\x79\x6f\x30\xb1\x91\xd1\x1c\x7d\xf1\x6d\xc8\x1f\xa9\x4b\x35\xba\xd2\x9e\x48\x40\x8e\xaa\x99\x75\xc9\x40\x2c\x63\x2c\x83\x5d\x72\x22\x9e\x50\x44\x2a\x14\x93\x11\x65\xd7\xb1\x69\xe9\xa1\x63\x0a\x50\x49\xff\xa9\xdf\x9f\x79\x3e\xa9\x71\x43\xfa\xb6\x33\xde\x81\x3a\x44\xb6\x72\x14\x9b\xa1\xff\xfe\x04\xe8\x32\xd7\x8b\x59\xf6\x09\x78\x24\x55\xa6\x87\x82\xdb\xb4\x23\xb9\x91\x2a\x13\x19\x5a\x54\xac\xab\x92\x5e\x06\x5e\x12\xe0\xdc\xe0\x8b\x3b\x92\x28\xab\xa4\xcf\x1f\xfd\x29\x6f\x2a\x53\xda\xa5\x8f\x4e\x8f\xf1\x61\x9c\x91\x70\xb6\x9e\xa9\x4d\xe7\x8d\x64\xb6\xff\x8a\x03\x35\x22\xcf\x6d\xa3\xb5\xe5\xd9\x0f\x5b\x70\x33\x9e\xf6\xaa\x46\x15\xd7\x1b\x63\x15\x9f\x5f\xff\x89\xa2\xd5\x03\xd8\x94\xee\x3d\xef\x59\x52\x40\xaf\xac\xba\x01\x61\x70\x85\x26\x7a\x91\xad\xc0\x41\xeb\x2d\xe0\xd8\x24\x58\xe3\x56\x6f\x44\x90\xef\xff\xcd\x4e\xc4\x10\xcd\xde\x89\x77\x4c\x48\x64\xe8\xbb\x2e\x68\x8e\x0c\x59\x79\x05\xaa\xe0\xaa\x0d\x17\x44\x48\xb3\xa5\x57\x5d\x2f\x18\xb2\x34\x28\x8c\xb1\xfa\xb1\xea\xc8\x2d\x2e\xd7\x7e\x53\x9f\x6a\xed\x7a\xbb\x7a\xf6\x7e\x90\xd6\xfa\xcc\xe6\xd0\x51\xf4\x1f\x48\x69\x47\xee\xda\x7f\x6a\x67\x4a\x69\x43\x25\xa5\x89\x28\x62\xfb\xf6\x40\xb7\x6f\x19\x29\xed\xc7\x38\x86\xdd\xf3\xa4\x6d\xa5\x34\xc8\x52\x95\xa9\x92\xd2\x9e\x13\x52\xda\x12\x4c\xa3\x94\x90\xd2\x26\x8e\x94\x76\x4a\x48\x69\x28\xf3\xb7\x19\xba\x52\x1a\xb5\xf3\xfc\x31\x8e\x89\xca\xf3\x06\x56\x30\x16\xd3\xf2\x30\x54\x0c\x33\xc5\x34\x68\x25\xa7\x04\x2e\x8a\xa7\x2d\xd2\x62\xda\x26\x29\xa6\x89\x04\x8b\xd2\x0c\x49\x11\xe9\xe7\x3f\x91\xd8\xf2\xc0\xb5\x43\xdb\x0a\x69\xc2\x60\x04\xa5\x13\xfa\xb8\x20\xdd\x99\x53\x07\x44\xc7\xd9\x4f\xdd\xf8\x30\x6d\xb1\xb2\x9b\x27\x96\x77\x83\xbe\xe3\xb6\x7a\xeb\xf7\xd5\xbd\xf7\x93\x2c\x74\x2f\x53\x7f\x14\xc9\x0e\x74\x3c\xaf\xd7\x38\xfa\x36\xc0\x6e\xc1\x66\xb2\xe3\x27\x3e\xd9\x15\x77\x59\xfc\xf5\x9f\x64\xeb\x7c\xc9\xf9\xef\x7d\x7f\x49\xdf\xaf\xb4\xb2\xbe\x1f\xe4\xa1\x77\x3d\x64\x6d\xab\x9c\x31\xad\xdb\xcb\x3e\xe4\x5c\xdd\x9e\x26\x20\xe2\xb2\x43\x83\xbc\x11\x7d\x10\x86\x48\x31\xb4\xaa\x47\x4c\xff\xdc\x32\x48\xd4\xb8\xcf\x3c\x46\xe3\x88\x3a\x3a\xb8\xb4\xfb\x6a\x93\x8e\x96\xdf\x12\x12\x27\x58\x93\xea\x48\x2d\xb1\x90\x9b\x44\x70\x1f\xdb\x46\xca\xfe\x56\x07\x0c\x22\x27\x71\xb4\x65\xbf\x23\x73\xe2\x5e\x15\x8e\x9e\x9a\x98\x9b\xdd\xac\xb6\x77\x7b\xa4\x75\xbc\x54\x16\x9c\x34\x9e\x6f\x56\xfd\x84\xd4\xc7\x87\xbf\x9a\xfa\x4a\x64\x9a\x4c\x46\xd6\x50\x27\xb5\xde\x5c\x27\x40\xe9\x80\x20\x1b\x28\xf9\x4e\xc6\x39\x4a\x7b\x4d\xe9\xd1\xf0\x88\x00\x54\x3e\x15\x62\x06\x94\x02\xe5\x38\x6f\x34\x3c\x7c\x5b\x67\x46\xb1\x15\xbf\x90\xe5\x4a\xe3\x43\xae\x1a\xc2\x84\xf6\x5e\xb6\x17\x2d\x98\xc3\x5a\xe8\x3b\xc4\x4c\x05\x67\x5a\x1a\xba\x43\x44\x62\x89\x6b\x50\x77\xf9\xac\x13\x3c\xe2\xa9\xa2\x80\xfb\xcd\x37\x7b\x88\x98\x71\x48\xb7\x4e\xc6\x9f\xc2\xad\x93\xdb\xfb\x1e\xfe\x1c\x2a\xaa\xbc\x48\xbe\xa6\xab\xf3\xd4\x8a\xaa\x35\xc0\xf6\xac\xcd\x85\x2b\x72\x5e\xf3\x82\xb6\x7e\xa1\xa0\xc3\x42\xd9\xd4\xcd\x5d\xa1\xc2\x83\x72\x19\x4e\x0a\xd6\x65\x88\x52\xc1\x72\xc5\xd4\x43\x71\x50\x7f\x1d\x6f\xe2\x6b\x3e\xde\x92\x3f\x8b\xe8\x04\x7d\xd9\x98\x12\x95\xae\x3a\x6f\x5b\xe1\x81\x56\xe0\x66\x66\x20\xe4\x06\xc1\x76\xf8\xc4\x9e\x2d\xc9\x4c\x40\x43\x14\xe8\xda\x12\xc2\x1c\x68\xf2\xdb\x16\xbc\xfb\xa0\xa9\xd0\xb8\xee\x6d\x06\xe4\xd9\xd6\x2e\xa6\x22\xb9\x92\x60\xa9\x2a\x14\x73\x18\x69\x5e\xca\x0e\x3a\xf5\x81\xb4\x53\xfd\x24\x89\x79\xd6\x90\x39\x72\xe2\xce\x0d\x96\x71\xcd\x73\x8e\xa8\x3c\x14\xd0\x4d\xdf\xbc\x35\x95\xe2\xfb\xd8\x5e\x8e\x99\x9f\x72\x10\x22\x2e\xae\x50\xe4\x37\x7f\xb6\x1e\x49\x2a\xe6\x8e\x48\xb5\x12\x17\x08\x46\xfc\xd4\x8a\x23\x9e\x24\x66\x1f\xe5\x7b\x8f\x78\xf7\x70\x96\xf2\xa4\x4d\x94\xf2\xe5\xd1\x83\x3d\x67\xd4\x27\xc6\xb4\xb2\xe3\xde\x56\xfb\xe6\x1a\xec\x84\xd3\xa8\xc0\x8e\x90\xfe\x91\x8a\x6d\x55\xa6\xd4\xb4\xbe\x12\x7f\x49\x1a\xb2\x2a\x37\x02\xdb\x8e\x38\x6e\x49\xa2\x76\x9f\x6c\x69\xbe\x2b\x95\x3d\xd8\xb6\xd4\x94\xbf\xd7\xe8\x21\x2a\xd1\xe6\x5f\xb3\x78\x16\xcd\x61\xae\xad\x20\x3a\x79\x58\x51\xa5\xfb\x77\x8c\x03\x51\xa1\x63\xb2\x1d\xbb\x45\xe2\x6a\x51\xa9\x43\xb5\x9c\x1a\x7e\x91\x8f\x19\x18\x63\xd2\xcc\xca\xf3\xc1\x22\x57\xc5\x64\x50\xd2\xf0\x9c\x0c\x0d\xc9\x2b\x36\xb5\x43\x94\xcf\x1e\x32\xf7\x0a\x1a\x45\x1e\x32\xce\x4f\x67\xd4\x3c\xaa\xb0\x4b\x1f\xf0\x81\xfb\x70\x02\xe5\x7e\x6a\x82\x41\x28\xb7\xa0\xe7\xe6\xc1\x11\xe4\xe7\xa4\x2a\xf9\xe2\x6c\x70\x2d\x6e\x44\x54\x13\x23\xe5\xeb\x13\xf6\xd3\xd8\x75\x4d\xaf\x35\xc2\x1e\xdd\xa7\x6c\xfa\x0e\x21\xc0\x37\x83\xb6\x86\x0a\xb3\x40\x07\xd8\xac\xb8\x4d\x1c\xef\x23\xb2\xfb\xa5\xb8\xc6\x9c\xd7\x06\xfd\x47\xd0\xf9\xea\xd9\x0b\xa6\xdc\x7e\x45\x4a\x6e\x73\x60\x11\x21\xc3\x2d\x9f\x36\x9d\x47\x0f\x22\x0e\x30\xef\x46\x94\x56\x97\x23\x90\xad\x91\xa0\x30\xd1\x6e\x32\xf7\x41\x0e\xff\x02\xbb\x28\xe6\xd4\x06\x16\x1a\x08\x09\xc3\xc5\x62\x4b\x9b\x03\x76\xad\xf8\x78\x0c\x38\x9f\x80\x07\x46\x79\x89\x2a\x3f\x77\x0a\xd8\xdd\xac\xbb\x06\x7d\x38\x64\xd7\xb4\x00\x43\x82\xff\x41\xe9\x9e\x4c\xd5\x0f\x90\xc3\xca\x39\x25\xbf\x1d\xad\xb8\x44\x52\xa5\x56\xbf\x72\xa8\x8c\x67\x08\x70\x64\x9b\x0d\x0e\x10\x9e\xb3\x34\x31\x37\x11\x87\x9a\x68\x1c\x22\xfa\x8a\xc4\xf6\x82\x5b\xed\x59\xa7\x53\xff\x56\x5c\x69\x77\x67\xeb\x90\xef\xd1\x7d\x2f\x14\x5e\x1b\x5f\x2c\xa1\x0f\x0f\x4b\x21\x08\x6e\x5e\xf9\x74\xcc\x0f\xd7\x9e\x77\xb8\x2e\x20\x6f\x35\xc6\xbb\xa1\x9f\x8f\x55\x96\x81\x3f\x7b\xa1\x0c\x8e\x60\xfd\x16\xcf\x74\xec\x13\xe7\x19\xf9\xf5\xf6\x1b\x23\x0a\xea\x27\x6c\x61\x93\xe3\x90\xa9\x61\x78\x81\x84\x91\x24\x1b\x0a\xad\x72\xb3\x31\xb6\xb7\x9a\xe4\x03\xdf\x3e\x86\xc8\xc4\x5f\xb8\x71\x0b\xbf\x25\x56\xb0\x09\x26\xc2\xd1\xd2\x14\x19\xff\xac\xc1\x67\x3f\x9d\xee\x36\x85\xed\x05\x43\xd9\x41\x6e\x94\xdc\x4a\x1c\xa0\x83\xce\xe8\xb0\x9d\x1b\xe0\xcf\x3e\x3d\xc5\x3b\x32\x30\x8e\x60\xa6\x6d\xa7\x86\x7f\x55\xf0\x4d\x0f\x88\x05\x51\x81\x8e\x66\x87\xd1\xba\x25\x25\xfb\x6f\xa9\xc7\x0d\x1b\x74\x22\x15\xce\x30\x60\x6c\xe3\x50\x2e\x99\xcd\xc7\xa0\x9a\xa5\x40\x35\x81\x06\x3e\x1d\xa7\x40\xf5\x22\xa0\x8a\xef\x7f\x80\x69\x03\x16\x47\x8c\xba\xc8\xb4\x14\x25\x1f\xf9\x62\xa7\x8e\x69\xd6\xf8\x7f\xae\x73\x40\x0d\xf2\x7e\xd3\x9f\x53\x55\x6f\xba\x0c\x0a\x53\x19\x39\xea\xec\x86\x13\x13\x45\x2f\x17\x25\x17\x82\x21\x47\x26\x54\xab\x96\x41\x11\xc8\xc4\xde\x48\x3a\x20\x42\x11\xf6\x45\x47\x9f\x95\x92\x46\x62\x81\x8a\x7f\xe4\xf1\x23\x87\x29\xe4\x47\x2a\x54\xd8\x7d\x6f\x30\x56\xef\x0d\x65\x8b\x00\x59\x09\x2e\x95\x80\xd2\xb1\x78\xbb\x28\x59\x17\xdb\x01\xb9\x51\xa2\x0a\xf2\xbe\xda\x73\xa9\xdc\x61\xfc\x68\xf6\xd4\x90\x18\x39\x90\x60\xcc\x48\xd9\x5c\xcb\xb2\x03\x14\xa3\x9a\xf7\x13\x2f\x9d\xf9\x4a\x67\xb6\x65\x01\x78\x8e\xd0\x97\xcc\xd7\xe5\x62\x73\x9a\xb6\xd6\x9c\xb0\xaa\x33\x8e\x9a\x5b\xba\xe3\x44\x67\x69\x43\x92\xc5\x3c\x3c\xa3\xa4\x53\xc5\xed\xd0\x60\x2a\x68\xdc\xa2\x99\xb6\x15\xc2\x2b\xb0\x59\x55\xa1\x64\xd6\xa4\xe4\x04\x36\x9e\xd8\x33\x59\x3e\x82\x2d\xf7\x51\xd6\x6f\x10\x09\x64\xf1\x55\x44\x64\x57\x76\xc0\x1a\x20\x4b\x1f\x6e\xe3\xa9\x73\xb1\xa4\x1f\x58\x00\x5e\x67\xa1\xf9\x09\x47\xbc\xeb\x79\x3f\xf7\x1c\x6e\x78\xa2\x10\xb7\x01\xc9\x49\xe4\x4f\xff\x89\xa0\x92\x1a\x36\x4d\x8c\x97\xf8\x06\xa5\xda\xdd\x60\x85\xa6\x3d\x0e\xe7\x58\x94\x76\xa6\x53\x87\x5b\x93\xc3\x54\xf5\x0f\xad\xc7\x6a\xc1\xe3\xe5\x6e\xad\xfe\xc2\xad\x47\xa2\x54\xd4\x2c\x08\xe9\xa4\xe8\xb6\xa2\x90\xa2\xbf\x26\xca\x45\xba\x51\x54\x9d\x1d\xe0\x65\x98\x76\x26\x2a\xbc\x01\x51\x6b\xda\xb2\x89\xc4\xbd\xe1\x5d\x62\x41\x4e\x5f\x82\x2b\x95\x91\xaf\x32\x4e\x9c\x44\x27\x0b\x68\x4c\xe3\x31\x46\x11\x44\x15\x56\x6d\x8d\x96\x18\x8f\xa4\x3c\x8b\xd4\x6c\x59\xb2\xa2\x1b\x2e\x4e\x0a\xaf\xe4\xe2\x44\x5f\x5c\xab\xc2\x2e\xe4\xb2\x4e\x14\x7a\xe1\x3c\x87\x79\x62\xbc\x64\x39\x98\xa9\x1a\xfa\x05\xe2\x62\x28\x17\x91\x8d\x4a\x7d\x27\xde\x30\x71\x79\xf1\xfd\xcf\x01\x65\x93\xab\xc2\x65\xfd\xf1\x1e\x04\x52\xd5\x7d\x67\xce\x82\x8b\x9c\xdc\x63\x0d\xed\x9e\x08\x4f\x60\x83\x54\xdc\x02\x48\x2b\x5b\x60\x37\x59\xbe\xfe\x6e\x09\x1c\xae\x66\x4f\x9c\x55\x15\x49\x7b\xc3\xa0\xc0\xfc\x01\x25\x86\x82\xa5\x49\xae\x6a\x24\x4b\x32\x79\xf8\x33\x32\x96\xf2\x46\xbf\x51\x63\xdd\x44\x27\xaa\xa5\x3f\x8e\x39\xe6\xc2\x6f\x20\x46\x92\x4e\xbd\x30\x84\x0c\x0a\xe5\xc6\xb7\xed\x20\x82\x30\xbd\xcd\xfb\x03\xad\xd8\x37\xce\x3e\x09\x44\x39\x0a\xda\x52\x2f\x73\x50\xec\x34\x61\x40\x57\x1f\x69\xb0\xf7\x87\x7b\x9f\x9f\x7d\x55\x6a\x3a\x87\x32\xf0\xf3\xcc\xb4\x85\x0e\xaa\xbf\x8e\x39\xc3\x27\x07\xea\x95\x4f\xd8\x0b\xc9\x0c\x33\x0d\x6c\x51\xb2\xb5\x2f\x0a\xc4\xda\x6f\xc4\x9f\x5e\xf9\xac\x0f\xb4\xe6\xb9\x77\xa3\x14\x6e\x40\x70\x42\xab\xd3\x8b\x15\x50\x3e\x2a\xd9\x42\xd6\x0e\x68\x4e\xed\x59\x7b\x8f\xe2\xa5\xb0\x68\x9b\x0f\xb6\x9f\x36\x28\x76\xcf\xae\xa1\x50\x9b\xa1\xae\x2f\x98\x8a\xff\x61\x0c\x52\xa4\x22\x73\xac\x8f\xd4\x8a\x78\x12\xc0\x9f\x1b\x5a\xdf\x58\x44\x11\x2b\x91\xd7\x5a\xc9\x04\x07\x66\x40\x49\x54\x99\x3b\x59\x55\x83\xa9\x84\xd9\x8b\x3f\x76\x30\x0b\x50\xa3\x70\x08\x91\x27\xfd\x4c\x62\x3e\x82\x53\x32\xe6\x2c\x80\x64\x6e\x46\xe0\x31\x83\x79\x7f\x3c\x77\x2c\x00\xea\xad\x91\x99\xa9\xb8\x40\x1d\x87\xfc\xd4\xfd\x46\x63\x2c\x73\x12\x9b\x52\x22\x5a\xaf\x39\x36\xae\x91\x2e\xb9\x29\xe2\xb3\xfa\xc3\x9a\x9d\xd8\x74\x74\x65\x6c\x5f\xd0\x76\x36\xaa\xf2\x1e\x2a\xe4\xe4\x44\xe3\xc6\xd6\xc6\xbf\x2d\xc1\x93\x28\xf3\x8a\x61\x3f\x34\xf5\x12\x68\x72\xc1\xb9\x9c\x7e\xe8\x45\xe8\x9a\x3c\x69\x19\x20\xb3\x26\xf6\x85\x91\x59\x7d\xeb\x0f\x63\xbe\xbd\xf1\x37\x5f\x2b\x48\x4d\xd0\xa2\x44\x77\x81\x46\xeb\x6d\x7b\xc0\xf3\xe8\x1f\xfb\xdb\x9a\x60\xf9\xdf\xe2\x6f\xc5\x6e\xe9\x2f\xde\x73\xe5\x89\x55\x89\xc7\x83\x39\x04\xad\x39\x4f\x72\x31\x67\x6e\x0c\x9d\x1e\x57\x37\x73\xd3\x54\x66\x65\x17\x83\x12\xc3\x74\xd4\xc6\xad\x9d\x2e\x87\x8e\x62\x1c\xdf\xb0\x6f\x43\xb6\x0d\xcc\x66\x0c\xbb\xe5\x5b\xbc\xb4\xfe\x66\xc0\x8c\x52\xbe\xb2\xc2\xb7\x99\x30\xad\x94\x4e\x8b\xf8\xb1\x19\x28\x4d\x3c\x71\xf1\xfc\xa3\x21\x6f\x69\xe5\xdb\xa0\xfe\x31\x26\xc9\x20\xaa\xad\xe2\xaf\x06\xcd\xbe\x7c\x07\x76\xac\xc6\x8a\xab\xeb\x34\x57\x9a\xd6\xe6\x56\xbe\xad\x88\x75\xc4\x1b\xa8\xf2\x80\xa4\xf0\xca\xad\x6d\xee\x0a\x73\x47\x47\x02\x34\xad\x05\x7d\xab\x94\xb6\xdf\x56\x4e\xaa\x28\xab\xac\x42\xd2\x15\x2c\x54\x2c\xcf\x9c\x95\x60\x25\xfd\x85\xa0\x7d\xaa\xcf\x38\xe5\x82\x5d\xd1\x8c\xcf\x59\xf7\xcc\xe4\xb8\x66\x5b\xdf\x76\xea\x69\x26\x51\xe0\x14\xa1\xe5\x83\x46\x61\x78\x77\x11\x69\xda\x50\x23\x1c\xd5\xdf\xdf\xf4\x00\xd3\x07\x91\xc6\x42\xd2\xd8\xb2\x9f\x1a\xb2\xd5\x13\x99\x65\x7c\x28\xab\xdf\xb9\x49\x64\x8c\xf0\x05\x5e\xb6\x18\x8d\x7a\x2c\x60\xa1\xb8\xc5\x5e\x6f\x95\x08\x6f\xb7\x4e\x19\x19\xac\xb9\xa0\xea\x8f\xb0\xa4\xc9\x1d\xa1\xeb\xc1\xc0\x84\xf2\x53\x68\xd3\x89\xcb\x3a\xd5\x11\x27\x7d\x23\x40\x88\xb8\x29\x2f\x8c\x32\xf1\xa3\x28\x72\x89\x0f\x4c\x7c\x59\x6d\x24\x0e\x6b\x98\x72\xa4\x7f\x5c\x9f\x99\xc3\x8d\xe7\x3d\xed\xa9\x02\xfc\x57\x4c\x9f\x59\xd7\xcd\x82\x25\x9d\xf2\x77\xbd\x9a\x85\xda\x9f\xbd\xda\xd1\x50\xa1\x17\xe5\x49\x2d\xf9\xe0\xee\x97\x50\x78\x96\x3c\xad\x3d\x57\x95\xbd\x5f\x29\x44\x11\xb7\xb4\xa1\x0b\x72\xea\x81\x85\xf4\x11\x6a\x67\x49\xf8\x1e\x6c\xd9\x4a\x5c\x50\x94\x64\x36\xf7\x85\x2f\x30\x8d\x8d\xcf\xc8\x18\x04\x3a\x56\xd6\xa9\x18\x2e\xd4\xa0\xca\x77\xe3\x52\x88\xea\xec\x90\xd2\xcc\x81\xbe\xb7\x18\xab\x28\xc0\xaf\x6c\x6b\xb0\xe6\x5f\xd8\xff\xc5\x21\x9c\x64\xbf\x27\x68\x31\xd2\x04\xb4\x26\xaa\x3c\xde\x63\x9d\x73\x74\xe2\xbc\x62\x6e\xe2\x7a\x3b\xe6\x9d\x86\x42\x9a\x9a\x10\xfd\x13\x38\x1c\x03\xd9\x3a\x2a\x46\x76\x85\x2c\x7c\x73\xda\x50\x0e\x18\xd1\x08\x3b\x52\xd5\x58\x58\xe2\xb8\xd9\xf6\x98\xd6\x7f\x03\x7f\x67\x95\xc2\x2a\xc2\x4d\xdb\xd8\x1b\xc9\x6b\xd7\x1e\x92\xb9\xe7\xc6\x8e\x0b\x4b\x2b\x0f\xbb\xb9\x55\xe6\x1c\xb8\x8f\x5c\x8e\xc2\x86\x1d\x94\xec\x51\xce\x59\xb4\x6c\x70\x9c\x1a\x9e\x85\xa3\x27\x8c\xc8\xf6\x5c\x32\xad\xb3\x58\xf8\xb8\xb7\xb6\xa8\x83\xa8\xdb\x75\x0d\xc7\xdd\xad\x55\x2e\x12\x0e\xc5\x1d\x32\x87\x2f\xbf\x50\xc3\x13\x4b\x38\xfa\xb0\xd0\x6d\xca\x7d\x69\xac\x0e\xe6\xf5\x84\xa7\x32\xfe\x67\x7f\x6b\x9f\x08\xea\x8c\xc3\x9f\xfe\x02\x9d\xbd\xc6\xe7\x1f\xbe\x29\x49\x23\x3c\xa6\x77\x77\x45\x58\x86\x68\xcb\x7a\x40\x50\xa9\x87\x7f\x04\xec\xf8\xae\xc2\x4f\xd3\xda\xb3\x72\xfb\x5f\x3c\x03\x13\x88\xc7\xe8\x94\x32\x61\x96\x5b\xe7\x12\x26\x2b\x52\x6f\xba\xf8\xc5\x1c\x69\x33\xe5\x13\x2f\x96\x4b\x58\x21\x77\xec\x4d\x9f\xf8\x53\x18\x42\x1e\x94\xf4\x67\xb2\x41\xfa\xde\xf0\xfa\x78\x67\x32\xb9\xa8\x59\xfb\xcc\x55\x24\x7a\x46\xc1\x8b\x86\xdc\x89\x62\x60\xa2\xd0\x89\x4a\xa7\x84\x81\x19\x17\xae\x9c\x3f\xa6\x6e\x70\xf9\xe2\x45\x21\xf5\x25\xda\xe2\x67\x06\x39\x89\x21\xdf\xd5\x79\x38\xcc\xb8\xd4\xc6\x91\x15\x22\x31\xa1\x9d\x66\x01\x55\x53\x61\xe7\x63\xdd\x3f\x8b\x4d\x73\x16\xa0\xca\xf8\x79\x1e\xef\xcd\xe0\x7a\xd6\xde\xcd\x29\x99\x8a\x6c\x3c\x58\x7a\x2c\xde\xcc\x16\x52\x63\xba\x59\x56\x91\x8c\x6c\xfb\x46\xe0\x33\x53\xda\x29\x27\x0b\xa1\x00\x16\x04\xec\x39\x09\x36\xe4\x86\x7f\x38\x82\xd8\x23\xbb\x6a\x32\xa7\x5d\x1d\xf9\x45\x5c\xef\x6a\x81\xef\x41\xed\x42\x65\xc9\xa2\xd5\x12\x0f\x32\xa7\x6e\x2c\x59\x1e\x2b\xf3\xf9\xa9\x70\x01\x86\x8e\xcc\xff\x8b\x48\x4b\x31\xba\xfd\xa0\xa3\xb0\x09\x21\x69\xda\x41\x4a\xdc\xf4\x7b\xc8\x1e\x9f\x39\x6a\xb4\x2f\xb4\xa4\xd7\x8b\x25\xbd\xbe\x17\x8c\xdf\xea\x4b\xcd\xc0\x6b\x98\xd5\x14\x12\x18\xca\x00\xb1\x73\xaa\xcc\xa2\x7a\x09\x16\x83\x3f\xce\x14\x97\x63\x0b\x1d\x8a\xe6\x41\x7f\xb0\x5a\x60\x9d\x7e\x9e\x81\x91\x16\x65\x2f\x0c\x24\x8f\xe5\xc1\x46\x41\x4a\x87\xe8\x36\xf0\x86\xb3\x00\x09\x8a\x26\xaf\x03\x1c\xbe\xa8\xbf\x8b\xda\xc3\x54\xe2\xd6\x2f\xe7\x57\xd9\xb7\xc8\x94\xf5\xa9\xfd\xd2\xb7\x80\x09\x10\xcf\x1a\x8a\xf3\x9f\xa1\x57\xe2\x08\x4a\xde\x45\x05\x9b\x27\xc2\x6e\xe5\x95\xe5\x81\x57\xb3\xb5\x31\x68\xe7\xb8\x5b\x7b\xa5\x85\x1c\xf9\x6e\x6e\x89\xb6\x2f\x00\x4a\xe3\x97\x7e\x77\xb0\x82\x01\x0b\x77\x73\xbf\xe2\xad\x7d\x9a\xbf\xea\xe3\xc2\x27\x7f\xe0\xf3\xa9\xf9\xff\xc8\x7b\xb3\xe5\xc4\x99\xa6\x5b\xf8\x82\x20\x82\x79\x3a\x54\x15\x42\x96\x31\xa6\x31\xc6\xd8\x7d\xe6\x76\xdb\xcc\xf3\xcc\xd5\xff\x51\xb9\x56\x49\x25\xc0\xfd\xf4\xf3\xee\xef\xfd\x62\xef\xf8\x4f\xba\x8d\x86\x52\x0d\x59\x59\x39\xae\x9c\x93\x5a\x8b\xe0\x1d\x04\x43\xba\xf8\x68\xa4\x6c\xe6\x38\xe9\x30\x20\x1c\x63\x4d\x52\x30\xde\xa8\x0e\x3e\x44\x2b\x20\x8e\xc8\x2f\xdb\x51\x51\xe1\xdf\x6d\xc7\x7a\x71\xc7\x18\xbc\xd6\x3e\x5a\xb5\xf1\xf2\x59\xa7\x2f\xee\xc7\xda\x71\x74\x6c\xc4\x4a\x1e\x9c\x55\x0d\x9c\x61\x6f\x7a\xb1\x72\xb0\x85\xb5\x62\x85\xc0\x30\x96\xf9\x65\x99\x27\xd9\xe1\x46\x95\x93\x12\x79\x14\xd4\x27\x8c\x40\x9c\x72\xb2\x66\xa2\xcf\xe8\xf3\x17\x5d\xe2\xbc\xbc\x9a\xc9\x42\x23\x23\x63\xaf\xad\xa9\xd2\xf2\x03\x54\x9f\x6b\xbb\x10\x41\x1d\xcf\x7b\x1b\x5e\xc7\x73\x82\x8f\x14\x20\xb9\xcc\xa0\x2d\x07\x8e\xa0\xf0\x24\x82\xef\x6e\x08\x45\x33\x85\x1c\x62\xbb\x92\x97\x9d\x5d\xf0\x31\x96\xbd\xb7\xa1\xaa\x0b\x66\x85\x0e\x89\xe9\x53\x86\x8a\x8a\x25\x74\x02\x74\x32\x9f\x96\xca\x4d\x23\x6b\x12\x56\xfd\x0f\xa2\x18\x0d\xca\xaf\x8e\xf0\xd5\xb8\x10\xbe\x36\x18\xb3\x54\x9b\x89\xc5\x2f\x44\x66\x22\x74\xea\x2e\x85\xff\xdb\x63\xf4\xcb\x02\x24\x65\xfd\xeb\x03\x5e\x24\xb1\x3b\xb6\x09\x85\xe2\x38\xd1\xb1\xbb\x59\x3e\x39\xa2\x93\x88\xde\x78\x7f\x7f\x59\x66\x67\x33\xa1\x17\x29\x0e\xed\xc1\x41\x44\x11\x20\x92\xfd\xc4\x0e\xc1\x88\xa6\xfb\x0b\x8f\xe3\x94\x1a\x93\x6d\x2b\x0a\x89\xb5\xf1\x72\xd1\x1d\xe2\xef\xe3\x13\xf0\xd2\x8d\x69\xac\xb3\x5d\x3d\x33\x45\x8a\xc1\x64\x93\xff\x3b\x44\x10\x11\x12\x6c\x85\x87\x19\xd1\x01\xf6\x74\xf7\x54\xf0\xa8\x45\xc0\x48\x10\x0d\xf8\xfc\xd0\x09\xcb\x77\xd1\x0c\x2c\x3f\x5f\xd1\xff\xb3\xc6\x0a\x62\xf1\x56\x41\x82\xde\xda\x28\x5f\x6a\x5a\x58\x53\x0b\x0f\xa2\x1e\x4b\xc5\x6b\xda\xb6\xed\x6f\xe9\xa3\xbd\x88\x57\x66\x32\x5d\x25\x21\xf2\x35\x05\x6c\x27\x31\x74\x21\x71\xdd\x67\x37\xde\x4e\x4c\xf5\xf6\xf8\xc2\x61\x63\x81\x38\xea\xb7\xf3\xd7\x8f\xbc\xbd\x1b\xc7\xf9\x68\x3e\x57\xbe\x6a\x6b\xef\xb9\xe6\x59\x62\x3e\x33\xdf\x78\xe7\x06\xc5\xb6\x66\x23\x27\xcc\xda\x99\xbe\xb9\xcd\xa4\x48\xa6\x8b\x4b\x44\xc0\x28\x9a\xb0\x92\x2a\x44\x22\x70\x51\x65\x5b\xc8\x3f\xdf\xa8\x19\xb6\xff\x03\x7e\x01\x29\xfe\xf9\xc2\xb7\x37\x1e\xea\x8b\xfd\xbb\x4e\xc4\xf5\xed\xda\x11\x0e\xbd\x2c\x57\xa3\x24\x88\x23\x1d\x9b\xe6\x34\xae\xdc\x94\xca\xa3\xc7\xd7\xc2\x1e\x3a\xb3\xb1\x75\x4c\x47\x63\x9b\xc6\x68\xbd\x01\xfd\x62\x6d\xcf\x7b\x38\x3c\x21\x8c\xa6\x6b\x78\x74\x46\x5d\x6d\x0b\x5d\x43\x88\xe0\xec\x31\xb6\xb1\x61\x42\x5c\x31\x4e\x06\x32\x76\x58\xd8\xca\xcd\xea\x93\xf6\x04\x72\xec\xd1\x8b\xae\xf6\xd6\x4c\xf2\x38\x5b\xf3\x9a\x8e\x7d\x06\x9e\xf3\x31\x39\xf9\x62\xef\x54\x0b\x7b\xde\x95\x5b\x98\xf8\x22\x46\xd0\xa7\x68\xcd\x2a\xaa\x60\x5a\x2c\xab\x15\xb0\x07\xfe\xca\xf8\x6e\x6d\x97\x01\xf4\xbe\x50\xba\x1c\x7a\x15\x25\x55\x7a\xcb\xea\xd4\x60\xa8\xaf\xe7\xee\xca\xa2\x85\x5e\x12\xaf\x7b\xe1\x72\x66\xc0\xa7\xd1\xf2\xd6\x75\xb6\xc1\x93\x16\xc6\x88\x17\x40\x30\xff\x4c\xd8\x67\xff\x55\x91\xa1\x20\x01\x84\x39\x25\x6f\x9a\x65\x9c\x8b\x73\x9a\x70\x20\xed\xb8\xf1\x54\xe6\xab\x23\x67\x46\xae\xd3\x0e\x22\x6e\xb7\x8e\xe1\x4f\x03\x07\x72\x8e\xa3\xa0\x23\x6a\x5b\x48\xfe\x96\x5e\x46\x17\xe5\x3f\xf1\x98\x3c\x33\xce\x7a\x8c\x0e\x2e\x10\x3a\xd8\x4f\xfb\x9e\x2e\xc1\xf7\x32\x83\xde\xbf\x9f\x27\xf4\x18\x64\xfb\x4f\x74\x99\xbc\x65\x8e\x9e\x1e\x6d\x72\x7a\xe4\xd5\xc7\xde\xfd\xb2\x08\xb6\x16\x18\x98\xa6\x2a\x41\x83\x86\x3a\xb4\xd3\x28\xb5\x62\x6b\x5d\x5c\x26\xe6\x48\x49\xa2\x8b\x48\x76\x01\x90\xb7\x50\x4c\x83\x6b\xdf\x90\x4c\xb6\xcd\x5c\x05\x0f\x9e\xd0\xb4\x66\xc7\xe3\xd9\x97\xe2\x2c\xde\xf0\x2a\x73\xde\xad\xf7\x90\x08\xbd\xbe\xd0\xfd\x2c\xba\x93\xb9\x67\x3f\x34\x9e\x25\x9a\x72\x4a\x47\xf7\xe3\xd7\xf9\x39\xf7\x7d\xc8\x78\x08\xd2\xde\x25\xf8\x2a\x5e\x03\xff\x25\x54\x2a\xab\x0a\x95\x4b\x51\x0c\x4d\x12\x32\xca\xb0\xee\x7f\x08\x9d\x09\xa3\x4f\x0f\xb4\x8d\x86\xa9\x9c\xb9\xaa\x36\xe9\xdd\xc6\x7c\x60\xae\xbf\x6c\xd5\x19\x5b\x1e\x7b\x10\x1d\x2b\x97\xab\xba\x49\x36\x10\x21\xec\xcb\xaa\x32\xbb\x75\xe8\xf8\xc1\x5d\x53\x91\x14\x6b\xd0\x47\x44\xc3\x0c\xb8\xc5\x73\xd3\x1b\xf4\x78\x0b\xc6\xfd\x34\xd5\xb1\xc0\x93\x9b\xb9\xca\xd1\x0a\x5c\x63\x09\x53\xf1\x01\xf8\x0f\x47\x96\x1c\x86\xbc\x4a\x53\x5c\x4a\x66\x2c\xc2\x86\x98\x56\x62\x38\x88\xd0\x96\xfe\x3c\xe1\x28\x9c\xc2\x64\x55\x6e\x0b\x30\x94\x18\xec\x52\x2a\xd3\x60\x2d\x37\x2b\x40\x21\x02\x44\xc2\x97\xa3\x63\x02\xfa\x18\x61\x1e\x7c\x58\x3a\x6d\x92\x62\x32\x0b\x3b\xce\x51\x1c\x73\x1a\x92\xe0\x04\x97\xe9\x89\x71\xfa\x70\xc4\xe6\xad\x04\x53\xb9\x40\x05\xbe\x26\xfe\x0b\xec\xba\x78\xfa\xaa\x2f\xce\xf4\x89\xdb\xf3\x3e\x8e\xbc\x1d\x59\x61\x04\xeb\xf5\x3c\x24\xef\x49\xe5\x65\x44\x91\xcf\x0b\x06\x04\x01\xaf\xf7\x6e\x6e\x7c\x58\x60\xde\xdd\xd4\x1a\x7d\x7c\x3e\xb9\x45\x61\xce\x57\x28\x6c\x97\xb4\x40\x8a\xc8\x39\x0e\x1e\xc8\x04\x57\xbe\x31\x1b\x23\xce\x5c\xb4\x9a\x8a\x21\x21\xdc\x2a\x36\x30\xa8\x54\x18\x9e\x84\x28\x65\x54\xa3\xdc\x1d\x55\x3a\x46\x4a\x8d\xb8\xc4\xdc\x16\x13\x8e\x23\x7b\x85\x9f\x3c\x16\x4f\x31\x09\xf4\xa6\xb6\x86\xdf\x65\x0c\xe0\x8c\x30\x08\x47\x86\x5a\x9e\x6a\xb7\x52\x32\xe4\x58\x7f\xac\x80\xd4\x4a\x60\x40\xa2\x7e\xfe\x88\x51\xa8\x5a\x96\xcf\xad\xb9\xc9\xe9\x3a\xdc\x58\x49\x55\x74\xd8\x45\x72\xc6\x6c\x90\x65\x35\xe2\x2c\xce\x79\x98\x34\x62\x8e\x8f\x94\xa1\x59\x57\x9b\x59\x70\xdb\x38\xe0\x36\xb8\xb6\x7c\x1e\xc8\x2c\x8f\x97\xe0\xae\xc4\x10\xff\xb4\xc2\x43\x7c\xda\x0e\x5f\x9d\x95\xb5\x98\xd0\x25\x42\xb9\xa5\x1a\xee\x2a\x12\xf1\x79\x53\x87\x85\x0d\x9b\x21\xc5\x84\x91\x35\xc3\x7b\x4e\x28\x6f\xcc\xb2\xe3\xa7\x3a\xda\x73\xaa\x3d\x3b\x47\x7e\x44\x3f\xd4\xf4\x05\x14\x76\x2c\x55\xff\x8d\x3c\x50\x2f\xff\xce\xf4\x9c\xde\x11\x07\xb6\xf8\x95\xde\x28\x4f\x0f\x3f\x33\x89\x1c\x95\xee\x89\x66\xdf\xcc\x55\x6d\x5b\x43\x17\x13\x9b\x5d\x13\xd0\x6a\xfd\x02\x19\x51\x62\xe2\x51\xc7\x75\xae\x98\xe5\x66\x9d\xb7\xa5\xea\x8d\x96\x66\x96\x89\xcc\x5e\xa2\xd0\x82\x66\xe1\xe9\x0f\xad\x5f\x00\x7a\xa1\x9b\x05\x55\x72\xab\x81\x1b\x8a\x80\x4b\x9e\xc1\x4c\x4d\x27\xe0\x73\xeb\x06\xc2\x7c\xc4\x9b\xa1\xe2\xc4\xd5\xd8\xc3\xa3\x90\xba\xec\xb3\x08\x0a\xb4\xeb\xc4\x31\xe4\x65\x59\xbe\x63\x1d\x95\x30\x73\x1d\x77\xa1\xab\x3d\x61\x8b\x27\x65\x41\xfc\x2b\x2a\xae\x2d\x35\x67\x36\xc7\xa6\xe2\x6c\x9d\x61\xd5\x99\x5e\xdf\x8e\xbd\xe7\x79\xef\x1c\x65\x14\xd2\x01\x25\xa2\xfc\xed\x0c\xcb\x56\xb2\x7b\xb9\x23\x82\xb4\xdd\xd6\x08\xcf\x9c\x2b\xbb\xbb\x23\x3e\x64\x56\x7f\x7c\x7b\xcb\xeb\xa1\x40\xbb\x4d\xfa\x14\x01\xb4\x4b\xc9\x38\xcb\xdc\xb2\xe7\x89\x5a\x5d\x98\xdd\x7c\xef\xea\x92\x33\x8d\x41\xb2\xda\x92\x65\x74\x73\x6e\xc0\x15\xf7\xab\xc5\x29\xce\x42\x4c\x84\xd5\x6a\x41\x55\x3e\x93\x4d\x8e\x9e\xbf\xf2\x51\xb0\x9a\x9e\x7e\x1d\x19\xd4\x93\xc0\xb7\x22\x93\xe5\xa6\xbf\x58\x63\xa1\x21\x1a\xea\x3a\xae\x44\x10\x5c\xa6\xc7\xcc\x7c\xd4\x5e\x0d\x3d\xaf\xcb\x68\xbe\x76\x04\x60\x3b\x92\x1e\x0f\xeb\x8c\xae\x5c\x31\x03\xc4\xfc\xcd\xda\xbd\xac\x8d\x09\x2b\x1d\x26\x28\x81\xf5\x5e\x20\x27\xab\xd5\x2f\x94\x8a\x15\x8b\x8e\x98\x43\xbb\xe8\x30\x36\xb3\xab\x16\xce\xbd\xa5\x9f\xf8\x4e\x3b\xae\x2e\xb1\x40\x72\x0d\xec\x3e\x4b\xaa\x61\xe6\xa2\x24\xba\x5e\xfc\xb6\xce\xdf\x80\x01\xba\xd1\xe1\xc6\x40\x46\x7e\xa6\x58\x88\x40\x43\x29\xfc\x51\x36\x3f\xd9\xe2\x57\x09\x44\xa1\x45\x14\x8b\x1f\x00\x9d\xc1\x87\x4e\x21\x4a\x15\xdf\xac\xf0\x0d\x32\xe2\xb3\x6b\x66\x2e\xc6\x48\x5e\x7c\x2a\x6b\x45\xb3\xc2\x8d\x25\xdf\x24\xd6\x7a\x93\x8a\x03\x1a\x9b\x56\x19\xa8\xc7\x33\xb7\x8a\x02\x2b\x9d\x72\xcf\xee\x12\x6e\x91\xca\x87\xa9\xa1\x17\xc9\xbf\x41\x54\x9e\xcb\x80\xa1\xcf\xbe\x38\x47\x57\x10\x7b\x5a\xd2\xda\xd3\xe7\x9f\x02\x30\xf2\x33\x29\x04\x14\x8b\x8e\x8a\x59\x2a\xa8\xcb\x6d\x67\xad\x48\xff\xf9\xbe\x3b\xb7\x17\xe2\x9f\x7a\x23\x9a\x66\xa2\x0e\xbf\x8f\x2a\x33\x11\x72\x14\x57\xc1\x5e\xf2\xa3\x64\x54\xcc\x8c\x85\x24\xbe\x93\x21\x1f\xe3\xdc\xd9\x48\x13\xca\xe2\xcd\x5c\xe8\xcc\x50\x6a\x24\x0a\x27\x64\xc3\x28\xa4\xdb\x79\x89\xf0\xd9\x67\xf7\xa5\xd3\x02\x3a\xf8\x99\xba\x94\xdb\x25\xf6\x32\xfe\x56\xcb\x22\x03\x7b\xdf\xb6\x7d\x3d\xb0\xab\x56\xda\xde\xa9\x3d\xfc\x95\x5d\xc0\xd3\x75\x44\xcc\x78\xcb\x99\xa9\x9d\x1f\xc7\xcd\xd1\xbd\x78\x90\x4b\x2b\xc9\xdc\xa9\xe8\xa3\x6b\xa2\xc6\x2d\x3b\x15\xe4\xae\xb0\xa4\x27\xf6\x96\x90\x5e\xe7\x5c\xc7\x22\xb5\x1d\x29\x20\x51\xc9\xdc\x10\x48\x95\x4b\x58\xab\x3a\x8a\x3f\xfe\x89\x8a\x72\x7a\x97\x8a\x8e\x19\x8d\xa4\xb5\xfe\x72\x15\x9f\x93\xd4\x71\x19\xa8\x81\x0b\x68\x1d\x7d\xfa\x8c\x7c\xa6\xe2\xe3\xe5\xcd\x36\xd0\x43\x9f\xc6\x0d\x23\x16\x69\x9a\x60\x03\x80\x2d\xc9\xee\xe3\xf6\x5e\x52\xf4\x41\x4d\xfe\xde\xc2\xb1\x97\xbb\x83\x1f\xb8\x9b\x75\xc8\xcd\x3a\x49\xd4\xbc\x72\xf0\x4e\x2c\x0c\x78\xdc\x0c\x49\x7d\xe2\x36\x33\xfd\x77\xcd\x04\x31\xea\x91\x75\x69\x63\x7f\xd5\xfe\xd3\x66\xca\x6e\x33\x95\x64\x33\x8b\x43\x72\x7e\xa0\xd1\xe5\x30\x3d\x17\x55\x67\xdc\x6f\xdc\x30\xdc\x38\xea\x54\xba\x19\xb1\x20\xff\x62\x86\xd2\x31\x06\xa2\xbe\xa6\xc4\xa4\x2e\x92\xd7\xe0\x23\xc3\xa4\xb4\x28\x6f\xaf\x75\x12\x11\xda\x56\x89\xaf\xf0\x68\x9e\x25\xc7\xb7\xcf\x46\x97\x03\x23\xec\xaa\x8b\xf5\x77\xd3\xc8\xff\xa2\x5f\xd0\x92\xa6\xff\x9d\x7e\xb9\xc5\x98\xf1\xd8\x56\x4d\xaa\x49\xa5\xc8\x9d\x41\x9e\xe4\xb0\xe7\x1d\x5d\xa0\xca\xb1\xb3\x5a\xd7\xe5\x2b\x17\x40\xc6\x0c\x28\x2c\x6a\x77\x88\x29\x65\xc5\x23\xb3\x95\x97\xb6\xe6\x41\x74\xca\x7f\x3a\xa2\xe7\x20\xe3\x14\x33\xa0\xcd\xc8\x46\x4f\x53\xd7\x5e\x51\x50\x5a\x27\x91\xfe\xcc\x0b\x40\x9d\x09\x12\x73\x4f\x31\x62\x01\x94\xc4\xcf\x21\x5d\x49\x3b\xa6\xcd\x9f\x39\xef\xdf\xeb\x00\x36\x4e\x6d\xc6\x92\x35\x16\xba\x8f\x88\x3d\x38\xe3\x07\x8f\xa6\xf5\xce\x8a\x11\xeb\x7b\x44\x7e\x9e\x07\x09\x41\x80\x55\x9d\xc6\x52\x46\xfc\x6d\xc4\x50\xc9\x4c\x35\xb1\x8b\x52\x45\x0a\xc3\x86\x43\xdb\xa4\x16\xd7\xd2\x5b\xe4\xf8\xa7\x25\x67\x8f\xd6\xdd\xdd\x95\xac\xa3\x51\xb2\x75\x25\x63\x13\x04\x8c\xb6\x70\x3f\xfd\xda\x46\xa5\x28\x7b\x36\x28\x3a\x51\x8a\xb2\xdc\x45\x4c\x80\x08\x95\x7e\xa6\x7e\x45\xa6\xf6\xb3\xb3\x4a\x72\x4a\xff\x41\x88\x88\xb6\x8a\x9b\x5a\x15\x91\x1b\x43\x47\xa2\x7c\xc0\xda\x35\xad\xfe\x61\x57\xbd\x8f\x4b\xb1\x9d\xc4\x3a\xa4\xbc\x68\x7e\x3f\x3c\x5d\x42\xd0\x46\x29\xe7\x0e\x04\x76\x91\x2a\xc2\x3a\x96\x03\x77\x3b\x05\x6e\xa0\x28\x74\x58\x73\x35\x95\x7c\x76\x85\x07\xac\x68\xd9\x8b\x83\x5b\x57\xf4\x3e\x8c\x6b\x2e\x31\x8b\x9c\xf3\x97\x56\x06\x71\x06\xfe\x9d\x81\xc1\xee\x18\x24\x24\xfb\x37\x16\x6e\x16\x61\xdf\xdf\x92\xfa\xbe\x5f\xab\x3f\xad\x8d\xa3\x88\x45\xcb\x68\xeb\x43\x5f\x2b\xe9\x37\x78\xe6\xa4\xf0\xcf\xe6\x8c\x84\xfd\x22\xb2\x33\x89\x91\x2d\xb9\x73\x49\x77\x29\xda\xfb\xc7\xdf\xee\x96\x93\xfe\x27\xc2\x4e\xee\xa7\x8b\x11\x32\xf9\xe4\x2f\x18\x3d\xb0\x99\x0a\xd5\xff\x9d\x03\xe8\xe6\xb0\xbc\xc4\xb4\x65\xca\xea\xdb\xf1\xf9\x9e\x5e\x7e\x5c\x0e\xf5\x16\x0b\x48\x36\x39\x2c\xc1\x8d\x98\xf9\xbe\xe5\x00\x55\x55\x7c\x6b\x3f\x1c\xab\xeb\x09\xa4\xcd\xa9\x76\xd3\xaa\x68\x19\x1f\x75\x57\x6b\xc4\x2a\x70\x2f\xc0\x86\x95\x69\xc4\x2e\xb2\x59\x54\x02\xeb\xea\x13\x50\x77\x8f\xfa\xc2\xba\x35\xb6\xf8\x0b\xb0\x6e\xb1\x9e\xe0\x0a\xd6\x2d\xc4\xae\xbb\x15\xed\xe4\x1d\x7c\x04\x92\xf7\x50\x24\x9c\xac\xac\xc9\x32\x00\xea\xb7\xbf\x63\xf6\xfc\x7a\x66\x3b\x6a\x05\x5d\x20\x93\xac\x1b\xd6\x3b\xc1\xa3\xe5\x8e\xb1\xbb\x85\xbb\xe4\x6f\xf2\x33\xbe\xff\x61\xb3\x0c\xc9\x1c\x11\x10\x62\x83\x60\xcc\xdf\x88\xe5\xad\xc7\xba\xd0\x3f\xda\xbd\x5c\x19\xcd\x7a\x78\x50\x2a\x35\x19\x5d\x3b\x91\x52\x7e\x23\x7b\x7a\x2f\x50\xa6\xd1\xd6\xf6\x16\x0b\xa6\x7f\x61\x05\xd8\x27\x92\xa3\x8b\x81\x83\x1d\x2c\x59\x6d\xf3\x66\x4c\x1a\x0b\xcb\x96\x7d\xd4\x7b\x8c\xc1\xd2\x44\x73\x83\x4a\x88\xfd\x37\xca\x3a\xac\x60\x7f\x76\x1d\x9a\xf1\xb9\x77\x86\x4f\x23\x86\x7e\x6c\x72\x27\xe5\xcf\x24\xdf\xe3\xa5\x27\x94\x34\x26\xab\xdd\x2a\x21\xc0\x63\x43\xb9\xe8\xdb\x12\x25\x16\x27\xa1\x42\x33\x50\x85\xf9\xa6\x0c\x30\x24\x4e\x42\xe1\x44\x3c\xe8\xeb\xcb\x81\xb5\xee\xff\x46\x0e\x02\xdf\x5c\x49\x8c\xdd\x42\x4d\x59\x91\xfe\x9c\x6c\xe8\xd7\xd5\x55\x31\x97\xf2\xff\x3d\x69\x9a\x8b\x44\xe1\x8a\xb1\xed\x93\x6c\xb2\xa9\x1b\x97\x23\x9a\x70\x93\xb7\x27\xa0\xb6\xa3\xc3\x5c\x03\x3b\x63\x4d\xcf\x0b\x33\x58\x4d\x84\x35\xe7\x12\x1b\x50\xfc\x13\xf7\x89\xa5\x8d\xa8\x26\xd3\x71\xbe\xb1\x63\x87\x1f\xe2\x90\x10\x37\xc4\x4b\xae\xde\x5d\xad\x77\x18\x17\x80\x44\x28\xbc\xab\x3d\x5c\xe4\x16\xba\x5b\x77\xf0\xc4\xcc\x42\x01\x0b\x4c\xd0\x35\x51\x6e\x76\x89\x5f\xec\x84\xe9\xff\xdd\xcd\x4e\x1b\x4e\xfa\x85\x5b\x6f\x37\xf8\x27\xc5\xbe\xe0\x06\xdb\xfc\x5b\x01\x6a\x92\x38\x3c\x30\xbd\x1b\x55\x90\x9d\x37\x56\xab\xa4\x4a\x5e\x13\x6e\x39\x52\x96\x53\x67\x0f\xb7\xac\x92\x33\xbd\x77\xfa\x30\xb5\xb3\x37\xe2\xfe\x18\x73\xc1\x69\x29\x98\x20\xaa\xb6\xaa\x4a\x8b\x2b\xa3\xa4\x5f\xf9\xf1\x7f\x72\xbe\x0e\x6c\x0e\xc9\x04\xfd\x7c\x8d\xb4\x6f\x77\xb4\x6f\xb9\xc4\xe8\xca\x8a\x05\x0d\x2f\x44\x02\x79\x68\xab\x7c\xb7\xc1\x0b\x75\x55\x76\xc5\x07\x39\xf0\xce\x15\x53\x22\xe2\x3c\x55\x92\x82\x7b\xe2\x20\x24\x71\xe7\x92\x47\x96\xad\xe8\x7b\xbb\xc1\xbf\xd5\x15\x23\x33\xf3\x7f\x22\x26\x30\x2c\xe5\xff\xd0\xfa\xcd\xe0\x49\xc7\xa4\xc8\xe2\xc9\x35\x34\x0c\x0f\x06\xac\x91\x83\x63\x6c\xe3\xa5\xd9\x2a\xba\x67\xf1\x66\x2e\x6c\xe1\x55\x72\xd6\x65\xc2\x16\xca\x01\x1c\xce\xb7\x0c\xa5\xb3\x84\xfd\x72\x50\x75\xad\xe8\x37\x4c\xa4\x49\xbb\xea\xc5\x42\xd8\x02\x43\xb7\x9d\x2a\x16\xc0\xe2\xd2\x50\x51\x8a\x3c\x11\x11\x08\xe3\xc0\x95\xc9\x8e\x11\xf8\x8f\x1e\x36\xe0\x8d\x07\xbb\xaa\x5c\x05\x87\xf8\x71\x65\x4d\x82\xc7\x55\xa9\x0f\xb4\xed\x01\x66\x2e\xfe\x82\x09\x8b\x99\x66\x88\x5d\x2d\x22\x0f\xab\x84\x98\x95\x3c\x9c\x50\x05\xfc\x9a\x3d\x41\x7e\x93\xc8\xa9\xe6\x02\x55\x1f\x97\x88\x8f\x9a\xa1\x93\x73\xfc\xb7\x2a\x3b\x25\xd9\xd6\xc8\xf3\x6e\x8e\xca\x4e\xde\xd1\x98\x17\x77\xc0\xb6\x94\xbf\xf7\xf0\x90\x57\x53\x4c\xb2\x24\xb5\xb3\x38\x4f\x1e\xd1\x73\x0c\x41\xdb\xf5\x21\x44\xa1\x67\x23\x66\x84\x8f\x0b\xc4\x68\xab\xa8\xd8\xbb\x70\xa4\x42\xb9\xe0\x27\x6d\xd5\x1f\x4e\xcd\xaa\x0f\x5a\x35\x97\xd6\x68\xae\x5a\x42\xdc\x4e\x8d\xda\xfd\x80\xc3\x19\xb2\x85\x54\xc9\x89\xeb\xc9\xf0\xa1\x5d\xde\x2a\x4f\x7b\x78\xd9\x9b\xd9\x7c\xec\x69\xf2\x73\xbc\xb8\xe8\xc7\x5b\x03\x68\x1b\x0b\x06\xf1\x5c\x89\x4f\xce\x32\xc6\x67\x56\x95\x39\x62\x7f\x58\x75\x9d\x43\xb4\x46\xaa\x96\x30\x86\x8e\xc4\x1d\xf7\xdb\xb5\x71\xae\xa5\xac\xe7\x4e\xb1\x20\xf5\x42\x62\xb4\x75\x09\x8e\xa6\x15\xbd\x1d\x16\x9b\xef\x0f\x41\x0a\x62\x88\x2f\x9a\x63\xa4\x3e\xc5\x61\xb2\xee\xa6\xe3\x62\x6c\xe5\x72\x72\x88\xb6\x44\x24\x3c\x41\x54\x7a\xb7\xd8\xfa\x94\x0c\xf3\x05\x71\xdb\x75\x10\xf6\x5e\xb2\x49\xfd\x5c\x67\xd6\xf4\xb2\x91\x37\x39\x7a\xbb\x41\xc2\xcb\x44\xbc\x4e\xb2\xf6\x3f\x23\x76\x56\x5d\x17\x10\x24\xc1\xc6\xd0\x71\x1b\x52\x54\x4e\x92\x22\x87\x6d\xb3\x89\xa5\xdb\x30\x72\x0c\xf2\x0e\x49\xd8\xe4\x61\x66\x02\x63\x1b\xd8\xfa\x45\x36\xcf\x18\x71\xb5\xb6\xcc\x71\xec\xcf\xb1\x09\x84\xe7\x4b\x9c\x8a\xa8\x72\x0d\x99\xdd\xc8\x91\xaa\x64\x72\x90\x94\x9a\xac\x51\x49\xb3\xcd\xa9\x90\x84\x37\xb1\x70\x27\x76\x6d\x0f\x28\x77\x9f\xac\xa8\xc9\x44\xb3\x09\xb1\xe8\x8e\xfc\xae\xad\xb7\x68\x6b\x31\x72\xfd\x26\x80\xb0\x2e\x81\x9f\x17\xc3\x58\x8e\x9e\xba\x95\x74\x04\xbe\xf9\xc2\xee\x80\xdf\xfa\xfc\x55\x87\xf8\x6c\x1b\xce\x61\xf6\x51\x38\x78\x6d\x5d\xb5\x36\x6f\x9b\xc3\x2e\x77\x51\x2b\x9e\xc0\x0e\xa8\x72\x49\x08\xb9\x09\x6a\x32\xb4\x8e\x76\x98\x05\xfc\x9e\x72\x2d\x58\xed\xa2\x46\x1b\x9f\xc8\xd7\x90\x42\x75\x09\xa2\xd4\xce\x06\x63\x15\xbe\xd9\x9d\xce\xe1\xe1\x04\xb1\x53\xa1\xf3\x29\x8e\xde\x53\x6c\xc2\xb1\xd1\x4c\xf8\x2d\x5c\x97\x85\x70\x52\xbe\xdb\x61\x44\x89\x45\x28\x64\x30\xd4\xcc\xf1\x8c\xcf\x9d\xbf\x9d\x90\xdd\x99\xe3\x94\x28\x53\xa9\xcb\x59\xea\x83\xb8\x76\x97\xf6\x5d\x2f\x4b\xf4\xea\x01\x5e\x8c\x75\x33\xea\xbf\xef\x00\x68\xc6\x82\xd5\x84\xa0\x5c\xff\xf4\xdc\xcc\x39\x16\x89\x11\x37\xb3\x67\xab\x4c\x2b\x1d\xd4\x90\xdd\x84\x74\x1a\x13\x39\x0f\xdb\x59\x92\xd9\x9e\x23\xe0\xeb\xdc\xe4\xf9\x7b\xf7\xa2\xdd\x0a\x16\x46\x66\xe9\x58\x73\xb3\xce\x6c\xe4\xfe\xb1\x0b\x3e\xbe\xde\x84\x18\x47\xdf\x0f\x5f\xb3\xdc\x67\x6a\xe7\xf4\x9f\x3f\x9e\x77\x3e\x5e\xf8\xeb\x8f\xdb\xa1\x8f\xf9\xa1\xc2\x9f\x3f\x74\x49\x29\xd7\x0e\xae\xf8\xcf\x53\x3d\x3e\x7e\xca\x98\xc3\x39\xcc\x34\x5f\xb1\x74\x32\x77\x8d\xe1\x18\xc1\xd2\x59\xe9\xab\x67\x4e\x78\x66\xeb\x56\xa4\xbe\x7c\x86\x9e\xb2\xf3\x9f\x9e\x29\xe3\x99\x9c\xf3\xcc\xf2\x42\xdf\xb2\xc5\x0f\x70\x4e\xe3\xf9\xc2\x77\x6d\x7e\xe3\x12\x72\x40\x3c\x3c\x3a\x45\x6d\x93\x03\x99\xab\x5c\xdd\xda\x37\x79\x82\x0e\x29\x9c\x55\xfe\xb4\x5a\xa5\x24\x8b\xa0\x04\xce\x02\xf3\x49\x83\x2b\x57\xb0\x6b\x47\x27\xd2\x1c\x85\x3d\x0b\x1c\x7b\x4b\x0e\x58\x88\x1f\x61\x6c\xf1\xef\x67\xae\x97\xd3\x1e\xae\x91\x21\xcc\xf4\xcd\x7e\x90\x67\x44\xd7\x3a\xcb\x44\x65\xbb\x88\x18\x48\x88\xa9\x80\xa4\x59\x5a\x0c\x95\x9b\x5f\xc2\x59\xa7\xbe\xff\x90\x5e\x03\xff\x2a\xc5\x2f\x65\x6e\x7e\x49\x8c\x22\xcb\xa6\x8d\x8f\xaa\xb9\x9e\x5b\xe1\x72\xd5\xc8\x8a\x66\x1a\x8b\xad\x68\x51\xf9\x69\x5e\xb2\x12\xc4\xcd\xa1\xdb\x45\xb3\xd5\xd1\xc5\x30\x04\x4f\x0a\xd1\x34\x52\x2f\xf2\x2b\x75\xb4\x01\x86\x18\x5f\x47\x5a\xa9\xb1\xeb\xd5\x02\xee\xee\x54\x4d\xd6\x49\xd7\x58\x93\x96\x62\x59\xe6\x56\xa4\x76\x40\xe1\xda\x4a\xe1\x90\x7b\x28\xd7\x2e\x1a\x8e\xab\x0a\x12\xf0\xe1\xcd\xed\x17\xa5\xf5\xc9\x02\x66\xa7\x29\x85\x9e\xdd\x4a\xbb\xfd\xdc\xaf\x70\xf9\x30\x4f\x20\xd0\x30\xa3\xb5\xb9\x9b\x3b\x68\x35\x16\x16\x32\x3f\x77\xf1\xb0\x79\x71\x32\x60\xc9\x11\x14\xea\x68\x76\xe3\xee\x21\xa9\x63\x81\x64\xba\x35\xf4\x72\x3b\xb4\x99\x0b\xb2\xc3\xf4\xb1\xf2\x2c\x01\x7b\x53\xe1\xe5\xdd\xcc\xf6\x7c\xcf\x2b\xd9\x19\xbe\x99\xe3\xef\xfc\xcc\x02\xd1\x14\x78\xe5\x34\xb7\xf9\x83\x67\xf6\xf3\xb4\xb0\x80\x36\x67\xce\xc8\x29\xfe\x9c\xef\xe9\xfd\xbb\x2c\x0c\x8e\xa5\xcc\xf8\x9f\x02\x6d\x2d\x3e\xce\x49\x08\x7f\x1b\x61\xdc\x30\x90\x96\xe9\x8b\xd4\x41\x73\x89\xe2\xb9\x88\xa3\x0f\xe8\xcf\x18\x3a\x5b\xec\x1b\xa4\xfa\x3f\x7c\x7e\xa6\x2c\x94\xce\x15\x92\x8f\x4d\x9c\x64\xd1\xc5\xc1\xe5\x8b\xc3\xb9\xdc\x68\x59\xe7\x96\xfb\xa5\xa6\xf3\xa5\x18\xf6\x67\xe6\x64\x6a\x05\x17\xd1\xcd\xdf\xe0\xf5\x58\x30\x2b\xa7\x20\xc2\x1f\xf0\x7a\xf4\x14\xf9\xd8\x14\x31\x72\xc9\x69\xb8\x4a\x98\xe2\x38\x2c\x90\x6b\xd4\x93\xe1\x54\xff\xf3\xbc\x61\x61\x58\x39\x81\x4b\xf2\xdd\xb3\x7f\x0d\x81\x34\x4d\x0e\xd7\x3c\xcf\x3a\xcb\xd3\xab\x16\xdc\xfa\x1d\x89\xa1\x4d\x26\x36\x5d\x7c\x7a\x05\xfc\x64\x73\xe7\xa1\x0a\x26\x2b\x8b\xfd\x81\x5c\xcc\x2c\x8f\xe2\x61\x1f\x13\x15\xc4\xb7\x58\xef\xab\x72\x87\x35\x09\x44\xd1\xa5\x17\x9c\x37\x4b\xbc\x33\x5c\xfc\xc1\x7c\xe0\x46\xba\x59\x57\x35\x3c\x00\x10\xb0\x8d\x4e\x22\x3a\x35\x99\xac\xb5\x12\x0f\x0f\x90\x33\x6d\x74\xa1\x0d\x82\x3b\xb9\xce\x15\xc6\x66\x3b\xce\x0f\xa7\x02\xda\xc9\x06\xcc\xc6\xd6\xd8\xac\x24\x5f\xd4\xd4\xd2\xf5\x2b\x1b\x6d\xc4\xf0\xbb\x89\x8e\xe2\x0c\xae\x53\x42\x44\xd5\xba\x06\xf2\x92\x9b\x44\xe0\xb6\x78\x3a\xf1\x27\xc5\x47\xc9\x08\xe7\xa6\xe3\x95\x14\xae\xd7\x74\xba\xb0\x42\x04\x55\xc1\x29\x5c\x72\x85\xe5\x2a\x3d\x63\x2d\x01\x74\x1f\xbd\x92\x4f\xdd\x5f\x37\xb6\x99\xa9\x74\x56\x7b\x5e\x16\xe2\x0b\xf3\x0e\x83\x4d\x02\xd8\xf0\xc1\x81\x12\x7c\x88\xc5\x9f\xe1\x55\x01\xb0\x76\x3c\x31\xbd\xc4\xc4\xc4\xb9\x2e\x84\xb9\x4d\xe8\xd5\xf2\xd6\x2f\x18\xe6\x48\x0f\x52\x76\x8f\xca\x93\x8d\x8a\xa7\x95\xdf\xe2\xdb\x38\xa5\xa6\xb6\x75\x77\x59\x6d\xf2\x32\xe7\x54\x80\x70\x74\xa1\x9f\x6e\x7b\xf5\x2a\x11\xe4\x8e\x11\x83\x90\xb2\x1b\x89\x5f\xd6\x67\xc4\x70\xb7\x14\x73\xdc\x19\x43\xcc\xcb\x29\x1a\x2d\x0a\x47\x6b\xb3\x33\xb2\x40\xf5\x78\x5d\xc3\x7e\x2a\x7b\x46\x2f\x3f\xd3\x1d\xaf\xbe\xfb\x1c\x47\x88\xe1\x7a\xfa\xe5\x60\x98\x4b\x46\xde\x3b\xb7\x6d\x1e\x54\x3d\xa7\x52\x18\xe1\xd6\x9e\x22\x83\xaa\xf9\x39\xb2\xe2\xce\xc9\x9a\xb7\x03\xcf\xeb\x79\xf1\xb1\x60\x2b\x61\x8e\x21\x34\x48\x0c\xc1\x4f\xd7\x2e\x93\x17\x0b\xcc\xc7\xee\x29\xb6\xd9\xc7\x21\x03\x49\x05\xbf\xd2\x48\x92\x66\xde\xc1\x73\xa1\xb9\x8f\x4f\xee\xef\x61\x77\x10\xb5\xd6\x02\x8d\x2d\x5c\x4e\xb3\x52\x88\xeb\x4e\xe2\x0f\x3e\x0b\xfb\x38\x20\x79\x89\x16\x82\xd4\x33\x74\x70\xda\x0b\x6a\x04\xd3\x4a\x25\x4a\x93\xba\x97\x03\x9b\x2e\x32\x23\xdb\x99\x27\xbe\x1c\x4c\x78\xd9\xe9\x90\xd3\x52\x64\xa1\x31\x1f\xdd\x65\x6f\xf4\x5d\x2f\xc1\xd5\x16\x6c\x67\x79\xc5\xd5\x02\xa9\xbe\xe1\xa4\xa5\xe0\x03\xcb\x5b\x72\xdb\x59\xdb\xb0\x31\x27\x51\x36\x8c\xc0\x94\x56\x32\x89\x45\x45\x3c\xe3\x51\xc9\x15\x59\xe3\xd5\x10\xdf\x91\xad\xfb\x16\x7d\xd1\x73\x7e\x07\x91\xbb\xb5\x58\x8f\xea\x17\x46\x01\x88\x77\x36\x91\xd7\x67\x48\x95\xc8\xba\x34\x87\x33\xda\x6e\xc2\x2c\xe2\xb9\xcd\xf1\xab\xdb\x74\xe9\x68\xc7\xcb\x59\x38\x6c\x97\xee\x25\x7e\x72\xf0\xad\x24\x32\x83\x30\x7d\x46\x8a\x5b\xf5\x15\xf3\xd2\x01\x92\xa7\xb8\x95\xe0\x2a\x1e\xc1\x88\x3f\xee\x5f\x4c\x70\xcb\x88\x60\x80\x7b\x1d\x3e\xfd\x8b\xb7\x06\xed\x91\x9f\x9a\x21\xa6\x74\xbd\xd0\x97\x33\x35\xeb\x62\xcf\xb9\x4c\x7f\x03\xa1\x3c\xd3\x85\x39\x76\x85\x32\x60\x7b\xb1\xfc\xe9\xf3\x23\x0e\x53\xae\xec\x7e\xe1\x24\x2b\x79\x97\x27\xc4\xac\x1b\x83\xbf\xf3\x13\xf6\x92\xd8\xb3\xa3\x4b\x51\x08\xce\xc5\x53\x23\xed\x79\x23\xcd\x8b\x8b\x6e\xfa\x2d\xaa\x27\x65\xb9\xc3\xf1\xbb\x03\xd6\x77\xbc\x2a\xb1\x93\x98\x04\x33\x1a\x44\x49\x83\xb2\x5d\x52\xca\x39\x9a\x62\x13\x13\x19\x13\x0b\xa1\xa1\x2d\xbc\xb6\x9c\xea\x8b\x37\x60\x99\x73\x0f\x9b\x78\x54\xb6\xfe\x1e\x27\xab\x46\x0e\x05\x9a\x3e\x07\xd6\x32\x25\x5b\x86\xcf\x0c\x97\x09\xeb\x17\xcf\xf1\x49\x3d\x0e\x75\x13\xee\x3f\xad\xdf\x1a\x57\xbd\x26\xac\xf4\x6d\x9f\xc8\x80\xcb\x8a\x47\x63\x7f\x27\x3b\x2e\x5f\xf7\x0c\x4d\xed\xeb\x09\x61\xea\x5b\xca\x38\x45\x89\x61\x67\x5b\x7a\xe5\x29\xc2\x26\x45\x29\x7d\x82\x9d\xcf\x00\x0d\x3b\x27\x1c\xf4\x92\x9a\xcb\x0a\x88\x3e\x4b\x87\x02\xdd\xed\x41\xd9\x8a\x22\x1d\x41\xef\x98\xaa\xfc\x24\x8c\xe9\xec\x24\x4c\xc0\x56\x3f\x4b\x32\x23\x97\x0c\x64\x59\xf2\xc8\x3f\x37\x5b\x36\x94\x1a\x9b\xcd\xd4\x01\x41\xc3\xcb\x79\x42\x0e\x5b\xf8\xd7\xab\x3d\x52\xdf\xae\x74\xd2\x56\xf8\x97\x6b\xbd\x8c\x0a\xb4\x38\x8b\x7d\x98\x32\x6f\xdf\xbc\x7d\xf8\x87\x85\x6f\xd9\x23\xca\xd6\x1f\xa8\x25\x60\xc5\x29\xdd\x16\x6e\xb1\xe6\x44\xc2\x20\xfa\x81\xc3\x63\xad\xe2\x34\x13\x62\x36\x52\xd4\x4d\x80\xdc\x37\x63\x69\xaa\x08\xef\xd8\x09\xd6\xad\x63\x27\x16\x01\x5d\x58\x3c\x47\x5e\xde\xf8\xae\x61\x81\x66\x80\x0c\x18\x55\xb5\xc8\xe2\x2a\xb2\x99\x83\xe5\x13\x00\xcf\x59\xb2\xa2\xb4\xf8\x56\x50\xc7\xc6\xa9\xff\xbb\x31\x88\x3c\xba\x22\xdf\x5a\x3a\xfe\xc2\xcd\x55\xa8\x2c\xa4\x82\xd4\xfc\xe6\x9c\x22\x34\xc9\xdc\x7a\x58\x46\x54\x78\x5e\xc3\x80\x90\xc5\x1a\x61\xcc\x70\x21\x46\x5b\x9a\xcd\xd0\xe4\x60\x19\x6b\x2c\x7b\x34\x12\x2d\x4d\x36\x84\x29\x8d\x48\xab\x72\xbb\x81\x2d\x29\xc6\x42\xda\x63\x8a\x47\x27\x37\xb4\x7d\x11\x9f\xb8\x30\xf8\x5b\x77\x3b\x45\x81\x74\xd7\x0b\x72\x6f\x99\xfb\x98\xa0\xe6\xcc\xe1\x8e\xda\xe0\xe9\xdc\xbe\x90\x6d\x69\x6f\x59\xd9\x0a\xd4\x3a\x9e\x6c\xf9\x0b\x2c\xd8\xfa\x67\xb8\x96\x37\xe4\x14\x31\x7e\xbc\xc6\xdf\x5f\xf6\x6f\x7c\x5a\x72\x0d\xe7\x2a\xd1\x24\x1a\x5c\x24\x1b\xb4\xce\xc7\xa8\xb9\xf5\xbf\x1b\x0e\x73\x79\x17\x2a\xd1\xfd\x69\x54\xa0\x9e\x42\xa8\x4d\xfd\xb5\xec\xb3\x2d\xa0\x64\x37\xc6\xa6\x73\x0f\x3b\x11\x35\xd0\x9b\x7d\xf3\xd6\x26\x6d\x03\x25\xdd\x12\x7b\xd3\x2c\x3f\x56\x71\xac\x66\xc0\x1c\x9b\x23\xd0\xe2\x22\xe5\x08\xff\x95\xc5\x2b\x80\x7a\x32\x15\x38\x82\x17\x50\x70\x40\xde\x97\x58\xf8\x49\xa5\x97\x6a\x44\x15\x62\x60\xcd\x75\xde\x55\x85\xa5\x6f\xc4\x99\x5c\xf0\x13\xb7\x0e\xf3\xc8\x2a\x24\xa4\x48\x3b\x99\x8e\xf7\x1e\xb5\xa3\x99\x58\xcd\x1c\xf1\xcc\x73\xbb\x5e\x83\x31\xf2\xa0\x2f\x56\x23\x0a\x41\xf1\x23\x44\x85\x80\x72\x5d\x1c\xc9\x60\xf3\x16\x06\x2b\xa8\x40\x19\x4e\x7c\xca\x2a\x5a\x71\xc1\x46\x6b\x87\x00\x74\xd8\xda\xe5\x2c\x33\xc7\xfc\xfe\x33\xc1\x0f\xc4\xc0\x8e\x61\xf0\x10\x5a\x60\x31\x08\xeb\x3a\x73\x93\x85\x43\xbb\xc1\x52\x30\x9f\x8f\x9f\xdc\x05\x73\x9e\xe9\x8a\x7d\xa1\xed\x79\x2f\xc9\x55\x9c\x8b\xcb\xe1\x73\x07\xf4\xbd\x1c\x18\x2c\x17\xe7\x54\x63\xe4\x26\x21\x55\xcc\x77\x5b\x55\xd0\xd5\x49\xdc\xc0\xba\xf6\x93\x69\x89\x0c\x56\xba\x24\xb4\x3f\x4a\x47\x0e\x6e\xf2\x55\x31\xc4\xd4\xd6\xf1\xac\x58\x78\x95\x8a\x53\x65\xe2\xfd\xf6\x27\x42\xcf\x9b\x1b\x46\x56\xa8\xcb\x72\xe4\xeb\x7d\x96\x25\x03\xc0\x40\x77\x40\xdd\x67\xb9\x60\xb7\xfb\x5e\xa1\x3e\xc4\xa3\x65\x59\xf1\xba\xc4\x89\x0e\xeb\xd9\x27\xe4\xda\x46\x7b\x65\x95\xba\x8c\x04\xdc\x5a\x84\x81\xf1\x15\xd4\x8e\xbd\x95\x6a\x24\xa4\x67\x67\x71\x2e\x0b\xa3\x70\xc0\x04\xe6\x18\x82\x79\xa2\xd6\xe2\xa0\x5e\x78\x29\x8a\x34\xde\xdc\x83\x74\x19\x0f\x8d\x59\x1f\x3f\x7c\x77\x70\xfd\xab\x72\x93\x85\xba\xc8\x86\xf9\xfa\x28\xbc\x2e\xf8\xd8\xf6\xbc\x2a\x44\xa8\xb2\x53\x05\x22\x4e\x85\xd0\xcc\xf1\x0c\x8a\x80\x9d\xd2\x8e\x86\x10\x08\x93\x0b\x46\x0e\xbb\xad\xd0\xc0\xba\x23\x26\x0a\xe3\x8a\xac\x9d\x1e\xaf\xc9\x18\x02\xba\x31\xb7\x20\x9f\xec\xde\x59\x84\xda\x50\x63\x76\x5b\x9e\x9e\x4a\x9c\x44\xaf\xe0\x48\x20\x49\x7c\x7e\x73\x08\x9c\x94\x37\x57\x03\x11\x11\xde\xe6\x4b\x17\x36\x06\x99\xd7\x46\xe3\x4c\x09\x3e\xff\x25\x4a\x0f\xc5\x8d\xc5\x2a\x7a\x40\xb6\x24\x2f\xaf\x56\x90\x3b\xd7\xfc\xbd\xb1\x87\x6d\xb2\x15\xf4\x6a\x11\xf1\x17\xe1\x36\x64\x23\x56\x44\x58\xcd\x1d\x31\x6b\x3d\xbf\x1e\xce\x61\x65\xad\x94\x56\x69\xde\xd2\xdc\xe1\xb3\xf2\x2a\xce\x46\x9b\x55\x43\x78\x9f\xd1\x13\xb2\x78\x84\xd5\xc0\xb0\x15\x25\x80\x61\x45\xae\x3f\x75\x5a\x59\x94\xf8\xf9\x22\x41\xa4\xf2\x3a\x84\x44\x70\xfb\xb9\x21\xd7\x99\x5a\xbe\xe6\x57\x50\xfe\x32\x4b\xc7\x82\xea\xc4\xef\xe6\x97\xb6\xf7\xe4\xdc\x91\x4c\x12\xd9\x7e\xf1\xe3\x93\xb6\x94\xa6\xed\x02\x73\x48\x82\x5a\x40\x9f\xc8\x21\x32\xc5\xca\x00\x86\x2b\x02\x28\x09\x49\x76\x3c\x8f\x96\x9f\x11\x48\x6c\x2c\x7a\xe1\x4c\x39\xa7\x71\x1e\xac\xf3\x90\x52\x6e\x3b\x11\x5d\xb4\x51\x86\x27\x3e\x3d\x06\xce\xe0\x47\x2b\xc0\x89\x16\x6d\x7f\x1d\xf7\x8d\xe3\x3d\xb9\x18\x2c\x1f\xea\x78\xde\xf9\x97\x68\x55\x48\xe5\x9f\xda\x0e\xcc\x19\xcf\xb6\xb1\x25\x0e\xcd\x67\x33\x04\xec\x43\x82\xec\x60\x14\xe9\x92\xa2\x27\xe3\xb4\xea\x1c\x9a\xe9\x59\xdd\xa8\x69\x16\xcf\x63\xbc\xe5\x8d\x1d\xba\x63\x33\x6a\xc0\x19\x3a\xa7\x1d\xa2\x71\x00\xfb\xb1\x72\xb7\x42\x8c\x27\xec\x18\xab\xae\x55\x6d\x16\x57\xf2\xda\xd4\xd9\x6e\x6c\xb9\x6a\x2e\xca\x41\x89\x32\x36\x6d\x8e\xb3\x03\xfb\x83\x47\x6c\xbe\xcc\x1d\xbe\x2a\x66\x5e\xff\x5a\x52\x36\xff\x64\xaf\x23\xee\x8e\x7e\x3a\xc6\xe3\xc9\x8b\xda\x93\x95\x8d\x55\xb2\x52\x40\x0c\x8c\x62\x29\x42\xc0\xad\x41\x7c\x36\x2b\xcb\x50\x84\xde\xf7\x0b\x62\xbb\xe9\x64\x77\x94\x2c\xcc\x58\x73\xab\xa4\x7e\x10\x78\xb5\xfa\xc1\x7c\xaf\x5a\xc7\x2e\xfd\x87\xc2\xd0\x6e\x61\x8c\x3f\xf1\xe5\xbf\x38\xf9\x42\xcf\xab\xc8\x94\x9e\x74\xcc\xa9\x65\xc2\x8f\x3c\xdd\x20\x28\x76\xf2\xbf\x40\x39\x82\x90\xf9\x7a\x4b\x08\x14\xb9\x66\xfe\x2f\xb4\x94\xe2\xdc\x09\x58\x3d\x26\x74\x26\x84\x53\x5a\x00\x1d\x39\x5e\x3a\xab\x87\x84\x82\xf2\xbf\xd7\x03\x3d\x7f\x66\x17\xf2\xbb\xc8\x8b\x2a\xf3\xb0\x72\x3e\xbc\x5b\x5c\x18\x96\x6e\x84\x19\x34\x29\x1b\xb7\x11\x66\xb0\x1b\xc2\xdf\xb3\x52\x23\x3f\x56\xa7\x07\x6e\xca\xaf\xed\x58\x5c\xbe\x02\xb5\xf9\xed\xeb\xdc\x13\xe2\xbe\xb5\x90\xa2\xb4\xfd\x99\x4d\x29\x51\x6b\x9d\x29\x70\xe9\x3b\xc5\x9d\x65\x73\xeb\x46\x34\x49\xe6\x46\x79\x17\xb9\xb7\x84\x81\x5f\xd0\xa7\x4c\xd5\xf2\x4a\xb7\x8d\x24\xe2\xf9\xdf\xeb\xe4\x6d\x4f\xef\x5f\x10\x2f\xd1\xa9\xee\x74\x7a\x81\xe2\x94\x92\x8f\xb3\xfa\x27\x8f\x93\xb5\xdd\x8d\xe7\xdf\xc7\xcc\xc6\xa1\xfe\x90\x87\x9d\xfc\xee\x0b\x3e\x22\x11\x60\x67\x75\xbd\x40\x2e\x65\x5c\x5b\xe9\x22\xda\x20\xcc\x27\x6a\x93\x77\x76\x74\xf3\xf4\xd3\x23\xad\x87\xdd\xcc\xc3\x51\x4e\xeb\xb6\x30\xdc\x1e\x0a\x18\x74\xd2\x2d\x73\xb7\xf5\xdb\xf5\x30\xb9\x59\x28\x4c\x5f\xe9\x89\xbd\x52\xb9\xe2\x44\xf1\x1e\xcd\xa3\xef\x59\x3a\xe3\x63\xf9\xb1\xb4\x76\xd4\xc7\x83\x33\x9a\x69\xec\x77\x6e\x08\x93\x78\x8f\xd7\xf4\xd1\xe1\x17\xe6\x1f\x08\xc2\xa8\x87\xd8\xc9\x32\x50\x62\x7f\x72\xf6\x03\x5e\xfe\xe5\x4c\x16\x52\x13\x62\x82\x1f\xe0\xb8\xa9\x7c\xc5\x67\xb6\x40\x36\x36\x69\x7d\xcb\x0e\xed\x09\x26\xce\x07\x64\x2b\xc9\xc7\xe4\xa4\x8b\xaa\x06\x2d\x7f\x38\x8f\x15\x48\x89\xc4\xb8\x86\x9a\x5d\x8f\x07\x82\x0e\xcd\xf8\xed\xe9\x47\x4c\x9a\x4b\xe8\x5b\x78\x80\x82\xfe\x57\xa2\x87\x12\x68\x50\x8f\xdb\x9d\xd7\x5d\xda\xb7\x60\x1b\x9f\x40\xf0\xfb\xb2\xf7\x44\x32\xa6\xe2\x65\xee\x4c\x3e\xa4\xff\x15\xa9\x1a\x1e\xfe\x8c\x6f\x40\x6e\x0b\x22\x7e\x0d\xe8\x93\xce\x60\x1f\x49\x1c\xd4\x42\xe3\xc2\xc0\xdc\x07\xac\x7e\x5c\x1c\x68\x86\x97\x51\x20\xc4\xe5\xd1\x9b\x51\xce\xe7\x5f\x5b\x0b\x5a\xc1\xcb\x2f\x88\x8a\x44\xf0\xc6\x02\x17\x67\x2f\x4e\x1e\x14\xe8\x29\x3b\x70\x5c\x5f\x38\x6f\x6d\xf5\x37\xbc\x53\x1e\x58\x69\x89\x34\x57\xa1\x9f\xae\x3a\xb0\x3c\x70\xfc\x20\x4d\x50\x53\xcf\x87\x9e\x97\xb7\x55\x05\xc6\xcc\x35\xb1\x19\xd7\x7c\x26\x1b\x7a\x5e\x96\x60\xb2\x13\xa9\x10\xb4\xb6\x50\x8c\x89\x12\xcb\x9c\xe0\xef\xa9\xc3\xd6\x7f\x33\x4f\x46\xe5\x5f\x20\x5e\x73\x3e\x60\xcf\x3e\xd0\xe9\xf9\x7d\x4b\x05\xb6\x64\x9f\x5c\xba\xba\x8f\x83\x1b\xe3\xb8\x71\x28\xc2\xf8\x91\xe5\x55\xfe\x09\x1d\x7e\xa8\x93\xeb\xdf\x46\x7a\x8a\x7c\x1d\x72\xdb\x91\xba\x87\xcd\xf1\x32\x7d\xba\xa6\x0c\x91\x45\xd7\x3a\xfe\xdc\x95\x9f\x62\xc2\x8a\x40\x9c\xdf\xc5\x9d\xe7\x2d\xee\xd6\x29\x87\x37\xd3\xbe\x5e\x45\xa6\xfe\x66\xad\x62\x01\x62\xb9\x76\x65\x35\x31\x25\x38\x46\xee\xe2\x02\x3c\x66\x4f\x0e\x08\xcd\x70\xb2\xc4\xa7\xa6\xd6\xd8\xcb\xdf\x46\xba\xd1\xf3\xaf\x38\x99\x03\xe3\x5e\x5e\x9a\xa0\xad\x27\x37\xc9\x63\xac\xaf\x98\x56\x8e\xaa\x23\x8d\x3d\xc6\x4b\x70\x4c\x30\x81\xc1\x52\xc7\x08\x30\xf3\x95\xbe\x5a\xaa\x48\xc6\x3b\x3a\xa7\xc5\xa1\x9e\x7c\x59\xee\xc3\x5e\xd9\x5d\xc5\xc7\x6c\x98\x52\x57\x9c\x86\x84\xc2\x11\xac\x2c\xe4\x4c\xf4\x59\x26\x5e\x46\x4d\x8b\xc3\x6d\xa1\xbf\xe3\x2c\xcc\xba\x83\x1f\xdd\xb5\x6c\x3a\x73\x03\x88\xe4\xdc\xe9\x9a\xdf\x90\xdd\xbf\xb9\xc6\x82\x48\x01\x03\x9f\xcb\xfd\x53\xb4\xc8\x11\x3e\x19\x4e\xc9\x06\xc4\x4d\x18\x4f\xc7\x2e\xe8\xd4\x11\x8a\x71\x36\xe2\x83\xc3\x8f\x2b\x5d\x4d\x23\xc0\x22\xf9\x62\xcf\x1e\xbd\x33\xa7\xa8\x11\xce\x1c\x18\xf9\xa6\xd2\x04\x45\x70\x7c\xb1\x42\x16\xc0\x36\x12\xf6\x61\x5a\x3b\x92\x65\xb5\x20\x1f\x0c\xb0\x59\xaa\xe8\x00\x00\xf3\x7b\x40\x73\x6a\x5e\x24\x37\x98\x4f\xae\x62\xdd\xcd\x02\xfa\x8e\xd8\xf7\xfa\x77\x4a\x3f\xae\x47\xe2\xc4\xf0\xd2\xf1\x76\x11\x54\xe4\x48\x22\xb9\x28\xf8\x28\x7a\xc3\x6d\xf3\x02\x09\x37\x3a\x8d\xc7\xce\x2e\x9e\x25\xb0\x54\xb8\x70\xbb\xa4\x35\x2c\xea\x89\x13\x5a\x72\x74\x3c\xca\x24\x18\x3f\xc2\x7a\x67\x48\x06\xe9\x24\x9b\x74\x50\xf8\x51\x20\xf8\xfb\xc5\xc8\xa7\x8e\x5b\x3b\x9e\x35\x1f\x55\x66\xa2\xa7\x8e\xce\x53\x55\xda\x4a\xf1\xdf\x9d\xd3\x49\x2e\xf3\xe7\xd5\xe7\xba\x76\x71\xc9\x0f\xe2\x43\x9c\xaf\xdc\x18\xc8\x38\x61\xc1\x3b\x20\x73\xd6\xec\x16\xf4\xe8\x5c\xff\xae\x47\x88\xf7\x27\x1d\x6e\x6f\xd1\xe1\x5f\x75\x10\x10\xd2\xed\x8a\xbb\x75\xa2\x7c\x9e\x22\xe1\xd5\xfe\x69\x53\x9e\xe8\x44\x39\xf3\xf2\x69\xe3\x40\xa5\xc2\x8b\xb7\xba\xe1\x79\x5c\xfd\x94\x06\xd7\xd8\xfa\xab\xf7\xb8\xf9\x71\xcf\x21\x07\x87\xec\x9c\xe5\x76\x44\x47\xe7\x6a\xcb\xe5\xa8\xd1\x9f\x11\x9f\xd5\x63\x44\x52\xc2\xf6\xb7\xbf\x84\xea\xb7\x90\x3e\x18\xb6\x03\xef\x59\x72\xc9\x35\xba\xca\xe3\x8c\x91\x34\x36\x72\xa6\x8f\x25\x6c\x19\xbd\x83\x19\x99\x1b\xd4\x7b\xcb\xe1\xec\x1a\x88\x62\x57\xd3\xa4\x43\xe6\x11\xfa\x89\x99\xb3\x33\x69\x23\x7f\x23\xf8\x3c\x5c\x5e\xca\xe0\x3e\xbc\x64\x77\xa3\xe0\x3b\xd6\xca\x40\xad\x00\x99\xd6\x97\x93\x23\x16\x44\xa3\x0f\x0d\x27\x75\x77\x9b\x08\x17\x11\xbf\x0c\xa4\xa4\x7f\x8c\x42\x47\x8f\x97\xba\x60\xb0\xac\x77\xfa\xed\xac\x91\x0f\xd8\x98\xee\x20\x9a\x13\x33\x50\x33\x27\xa1\xa7\xb7\x28\xab\x33\x43\xd7\xe6\xae\x6d\x36\x00\x16\x80\x5d\xc9\x8b\x03\x6c\x0e\xae\xf8\x19\x5f\x71\x14\x1c\xff\x14\x33\x7d\xd1\x2a\x1f\x58\x7d\x4d\x5a\x6c\x57\x7d\xbb\x5d\x9c\x01\xc3\x2f\xa4\x1c\x33\xd0\xec\x10\xa7\xf8\x30\x90\x07\xde\x92\x56\xa2\xd2\x15\x89\x87\xa5\xe9\x17\x47\x15\x07\x75\xe3\xb8\x77\x2d\x3f\x97\x4f\x49\x80\x46\x14\xe7\x25\xd3\x39\xa7\x71\xd0\xb4\x7d\x5e\x44\xee\x0a\xe7\x1b\xa6\x63\x10\xcd\xc6\x89\xf2\xd6\xc3\x58\x72\x13\x85\x8b\xb9\x57\x8c\x75\x7b\x4b\x7c\x79\x78\xb2\x57\x93\x67\xa5\x2c\x2c\x79\xb5\x76\x14\xa8\x3d\x42\xbc\x59\x78\x9e\xb7\xb8\x9f\x2f\x26\xd2\x9d\xcd\xe8\x94\x40\xea\x73\xba\x95\xa0\xa0\x52\xe4\x76\xbf\xa0\xa0\x31\xf3\x5c\xeb\x2e\x05\xc1\xae\xe1\xa7\xc8\x74\x72\xb4\xa4\xec\x1c\x0a\x8f\xb7\x67\x45\x92\xa8\x76\x2f\xed\x4b\x76\xc1\x6a\x34\xa9\x48\x7e\xd2\x4b\xe0\x94\xf3\x98\xa3\xb5\xe1\x32\x21\xc9\x61\x93\xbe\x77\x0d\x06\x13\x39\x62\x9d\x6b\x51\x2e\xdd\xe5\x73\x71\xb1\xb2\xc8\x89\xbb\xc1\xd8\x2a\x3c\xd2\x20\x55\x2d\xf2\xca\x0d\xe4\x5d\xe6\x69\x8a\xc8\xa9\x74\x5e\x49\x98\x9c\x9c\x0b\xb0\x07\x74\x0c\x3f\xa2\x12\x24\xc7\x2f\x9f\x9e\x7d\x58\x09\x5d\x08\x49\xd4\xcd\x4e\x71\x9f\x30\x3b\x97\x70\x34\x74\x06\xbf\xd3\x55\xc9\x5e\x07\x39\x49\xa9\x99\xce\x26\x97\xb0\x13\x6f\x8f\x2e\xc9\x4d\x72\x2a\xae\x25\x49\x38\x92\x4e\x79\xaf\x6d\x07\x45\xfc\xa3\x79\x02\x67\x69\x70\x8b\xb1\x34\x3d\x7d\xfc\x40\xe9\xa5\x4e\x31\xa7\x18\x91\x14\xeb\x24\x15\x1a\x07\x33\x77\x98\x81\xbd\xb6\x1d\x8d\x1e\x19\x53\x7c\x27\x0d\x2f\xd1\x58\x6a\xcf\xdd\x24\x8e\xa8\xb5\xb3\xd5\x53\x97\x60\x75\x37\xff\x12\x9e\xe2\xc7\xe7\x0c\xf6\x7e\x27\xaa\xb8\x93\x72\xa2\xe2\xce\x09\xde\x83\xfb\x19\xe7\x7e\xba\x1d\x15\x09\x7b\x15\xe2\x54\xa9\xba\x25\x49\xc7\x74\x38\x38\x44\x3a\x95\x64\x12\x1e\x68\xd0\xce\x59\x62\x98\x5a\x21\x0c\x43\x3c\xfd\xb2\xa8\x9d\x62\xd3\x7e\x4d\x9c\xd9\xed\x64\xed\xef\x3f\x8c\xf4\xd6\x5f\x17\x83\x8d\x87\x62\x3d\xa5\x89\xa1\xd6\x2f\x86\x3a\x4c\x0c\xd5\x8f\x87\xaa\x87\x9f\x1c\xeb\xe4\xc3\xc2\xcd\x9b\xbe\x4f\xdf\x6c\xdf\xfd\xdb\x41\x35\x34\x5f\x65\x13\x30\xdc\xf0\x34\x2c\x0f\xea\xf2\x80\x8e\xf9\x4c\x52\x0a\xcf\xaf\xa0\x06\x5a\x0f\x76\x32\xe5\x2c\x1e\xd0\x3c\x21\xce\xce\x23\x20\x84\xc4\x3b\x3e\x6b\x15\x98\x59\xb2\xe5\x24\xed\xef\x69\x26\x62\x29\x12\xfc\x4b\x72\xaf\xbb\x7c\x86\xbc\x0f\xad\x9f\xc4\xd2\x3b\x8e\x12\xc4\xa4\x4e\x26\x84\xa5\xa3\x58\xed\xc3\x15\xd9\xb7\xcd\xfe\xcc\x6f\x40\xdf\x05\xea\x58\x59\x32\x47\x6b\x0a\x4c\xe1\x0c\xdb\xd7\xa3\x0c\x5b\x77\x2a\x16\xfe\x6c\xa5\x63\x35\x78\x1f\x9f\x36\x41\x0c\x10\x60\x85\x3c\x7b\x17\xae\x76\x56\x0f\x2d\x39\x86\xad\x72\x72\x03\x22\x2b\x9e\x17\x3f\x1d\xe7\x35\x2b\x95\xcd\x1c\x53\x9d\x4d\x09\xc0\x7f\x9c\xb6\xb9\xef\x66\xcb\xd9\x6e\x58\x89\x72\x91\x14\x8c\x30\x9b\x07\xff\x9f\x39\x8d\xf7\x36\x17\x0c\xf8\xc2\x3b\x95\xd7\x5d\xcc\x38\xa3\x20\xa0\xfd\xe9\xa6\xee\x3f\x67\x47\x5d\x09\x32\x29\x3c\xba\xd2\xc4\x12\x0f\x54\xfd\xab\x13\x45\xc2\x90\xaf\xaa\x15\x18\x0e\x2e\xe9\x51\x16\x0f\x37\x29\x3f\xda\xb4\x1c\x2b\x1b\xce\xc9\xd3\x63\x71\x60\x9a\x05\x3f\xa7\x09\x67\x72\x48\x58\xca\xa7\x9b\x6b\x57\xa7\xe5\x5f\xf1\x81\xf5\x6f\x38\x99\x0f\x33\x88\x59\x25\x58\x40\x5b\xa6\x0d\x04\xaa\xe7\xf5\x24\xb0\x5b\x5e\x2c\xc9\x53\x95\x79\x06\x49\x60\x05\x8b\x30\xd6\xbd\x96\xd6\xb2\x5b\x16\x75\xd9\x53\x4b\xe5\x49\xeb\x22\xaf\xe3\xc8\xe9\x0d\x30\xfe\xb6\x50\x3a\x0b\xd2\x74\x25\x1c\x3d\xb0\x40\x6c\xf2\x27\x13\xd0\x5f\x2b\x68\xf1\xa4\xca\xd8\x15\x61\x0d\xbb\x64\xa0\x00\x25\xd4\x2b\x8b\xf0\xe9\x75\xcc\x83\x22\xb0\x4a\x8c\xdb\x9b\xcc\xe2\x44\x9d\x44\x4d\xf7\xb7\xf0\x1f\x49\x0b\x03\x35\x14\x93\x52\x6f\x24\x39\x0a\x42\xcd\xad\xb1\xe4\x2e\x2c\x14\xae\x0d\x1c\x63\x15\xb5\xa0\x95\xf6\xfc\xe1\x5d\xdc\x4a\x5e\xc9\x7f\xad\x12\xec\x00\x1d\x98\x9a\x79\xf6\xba\x6f\x0b\x73\x2b\xd7\x6d\x2e\x67\xbb\x82\x17\x58\x87\xea\x59\x06\xbb\x82\x3f\xe5\x59\x56\xa7\xaa\xd8\xcc\x0f\x1c\xe5\xfe\x14\xae\xa7\x2a\xae\xf6\xec\xbf\x01\x23\x3b\x08\x92\xf7\x25\x2d\x15\x65\x12\xe0\x36\xde\x39\xa3\x00\x38\x46\x7a\x22\x8c\x42\x14\xac\x4f\xa1\xab\xee\xf8\x20\x03\x7c\x13\x98\x8f\x36\x61\xff\x77\xa0\x7c\xe8\x26\xfd\x29\x1e\x11\x5b\xa7\x9f\x17\x23\xd3\xbb\xfc\x2d\xc5\x26\xbd\xf6\x89\x1d\x3b\xd7\x54\x54\x4d\xb5\x9d\x67\xb0\x3d\x26\xa9\x16\xe3\x5f\x7c\x9a\x3b\xa1\xe7\xbd\x9d\x0f\xda\xb2\x9a\x4f\xcf\x1b\xa9\x8a\xfb\xf3\x33\xbf\x75\xc7\x89\xbe\xe6\xb6\xe8\x6b\x5e\xe2\x9a\xfc\x31\xb4\x25\xaa\x59\x9d\x56\x9a\x45\x0f\xf4\x50\xad\x70\xed\x6d\xcd\x7b\xe6\xf1\xa5\xda\xe0\x97\x30\x2b\x3d\xc7\x02\x4a\x4a\xf3\xdb\x59\xc5\x2b\x2b\x35\xdb\xf5\x4f\x2e\x9f\xe9\x43\x3d\x1d\x7a\xfe\x4b\xa5\x8f\xa6\xb4\xa7\x5f\x52\x48\x5b\x30\xda\xe8\x33\x8a\xf6\x19\xb1\xe7\x69\xfe\x08\xa1\xb8\xe5\xbd\x3f\xa7\xdb\xde\x8b\x57\x91\x63\xbd\x55\x15\x14\x13\xa4\x5c\x74\xd6\x0f\x69\x0b\xae\xdc\xdb\x19\x72\x0b\x84\x72\x1b\x1e\x40\x00\x5b\x68\x5b\x5c\x31\x43\x85\xb0\xcf\xd6\xe0\xd5\x7c\x44\x5c\x49\xfa\xc9\x33\xdf\x7a\xd4\x30\xf0\x77\x39\x47\xc1\xd8\xac\x76\xc3\x9b\x7e\xdf\x48\xf9\xde\x7c\xb8\xb3\x7a\x8c\x5a\x09\xea\xf2\x78\x80\xac\xb8\xd9\x2b\xfa\x27\xd3\xf3\x25\xe3\xaf\xbd\xfc\x71\xcc\x41\x62\xcc\xc1\xc3\x4e\x8c\x6c\xe6\x00\xf2\xcd\xfb\xda\xdf\x1e\xb5\xe3\xd3\x4e\x81\xf4\x9b\xeb\x99\x8e\x22\x8a\x7a\x52\x45\x44\xb3\xee\xcc\x4e\x64\xc2\xee\x08\xf2\x5f\x53\x84\xd6\x30\x27\x0e\x2f\x7f\xac\x70\xb7\xbd\x58\x1a\x96\x10\xbe\x70\x58\x76\xa8\x81\x77\x77\x31\x5f\xed\x12\x22\x84\xdb\x7c\x71\xb5\x34\xbd\xd1\x05\xc5\x99\xe6\x84\x4c\x71\x54\xb5\x27\x55\xa3\x15\x37\xf7\x0a\xc3\xe8\x2e\x97\xe8\xb6\x70\x8b\xf6\x6c\x69\x3a\xed\xaf\xd5\x1c\x9d\x93\x0b\x9d\x8b\xf5\x2c\x3e\x48\x46\x9b\x5a\xbf\xde\xea\xc6\xe8\xa8\xc5\x77\xa2\xee\x93\x6b\xa7\xc7\x6a\xfa\x7a\xb1\x44\x1d\x2f\x98\xca\xfe\x15\x76\xa8\x7f\x5c\x3d\xe0\x8b\xdd\xb6\xed\x3d\xd9\x25\x27\x91\x75\x68\x97\x0f\x05\x50\x2c\xf0\xbc\x5e\xe1\xb2\x83\xfe\xbc\x9e\x6e\x7b\x75\x6f\x7d\x45\x2b\xcf\x2d\xa1\xad\x8b\xfe\xf9\x42\x5b\xf5\x1b\xb4\xf5\x12\xc4\x54\xd4\x06\x15\x8d\x61\x52\x6f\xb3\xe2\x5f\x67\x2f\x0c\x5f\x23\xc0\x87\x86\x89\x56\x39\x48\x7f\x7a\x0f\x52\x46\xd4\xf7\x9a\x0b\x35\x31\x2c\xe1\x7e\xad\xe0\x34\x0c\x11\x3a\xf2\x0e\x65\x28\x2c\x48\xe0\x43\x2f\x6f\x0e\xad\xb0\xbe\x16\x6b\xf9\x43\x4d\x46\x38\x52\x2b\x39\x80\x3a\x63\x6c\x60\x1c\xb6\x07\x6c\xed\x4e\x01\xf0\x33\xf4\x97\x5a\xe6\x2c\x3c\x55\xb6\x77\xb3\x62\x75\xa5\xbd\x59\x4a\xfd\x1a\xf3\xcb\x0c\xe5\xca\xf4\xa8\x2e\x0b\x21\x67\x1d\x4e\xa0\x76\x86\x44\xbd\x88\x52\x0b\xf4\x5e\x19\x9e\x14\xf1\x01\xe9\x70\xd7\xfc\xf9\x8c\xca\xe8\x46\x59\xd4\x3f\x72\x77\xf1\xf5\x69\x0d\x80\x32\xd8\xd2\xa9\x99\x8e\x6f\xf1\xcf\x96\xa7\x9f\x86\x42\x39\xbe\xde\xa0\xa3\x66\x75\x7c\x24\x16\x99\xc3\x3d\x34\x4c\xfb\xae\xf9\x6a\x1a\xbf\x13\xe6\xd2\x12\x61\xbf\x2d\x87\x75\x73\x68\xe6\xc4\xff\x25\xe6\x92\xf0\x47\xba\xe3\xbd\xff\x12\xa6\x24\x3c\x69\xa4\x72\x0c\xf6\x1c\xc8\x84\xfa\x2d\x39\x45\xc6\xea\x8e\x3c\xb0\xeb\xe9\xdf\xa8\xb9\x3a\x53\x85\x85\xb6\x71\xd0\x5a\xb4\xb7\xf1\xdd\x44\x8d\x64\xe6\x47\x77\x48\x17\x6c\x9a\x5e\x0f\xef\x36\xe2\x25\x98\x6a\x48\xcf\x1d\x99\xc5\x70\x8c\xb4\xb7\x4f\xff\x82\xec\xe1\xc2\xa1\xc4\xf6\x0b\x27\xa1\x2f\x3f\xa6\x5a\x24\xce\x85\x32\x62\x63\x31\x18\xe3\xe8\xbc\x4f\x87\xde\xf4\x4e\x38\x93\x59\xe2\xa6\xb7\xbb\xfb\x92\xcd\xd9\xc1\xf9\x20\x2d\x1b\x46\x10\x20\xa8\x0e\xfc\x7c\xa2\x2a\x22\x2c\xe9\xb3\xda\xac\x28\x01\xd4\x50\x45\xbf\xb5\x3a\x42\x3c\x50\x31\xb7\xef\xac\x79\xbe\x8f\xf7\x78\x66\x81\x9a\xb0\x23\x55\x3b\x62\xc2\x24\x15\xa7\x75\x30\xe2\xd3\x48\x9d\x4d\xd7\xbe\xbc\x2a\x8e\x96\x96\x8c\xa8\x63\xe6\xe9\xa7\xf4\x49\x7c\x3c\xb6\x0a\x85\x64\xa0\xb5\x68\x2b\x68\x4d\x1e\x2d\x3f\x95\x68\x20\xa6\xfd\xe8\x7d\x1d\x02\xee\xe5\x52\x76\x3c\x3d\x55\x80\xbc\x69\x99\xdd\x13\x3c\x19\x2d\xc2\x87\x0d\xa3\xb5\x7f\xc3\x87\xb5\xa7\x7f\x82\x47\xb4\x0f\xc2\xc5\xc2\xa3\xe1\xcf\xfa\xb5\xda\xb6\xd1\x58\xfa\xb5\x61\x4f\x66\xfd\x92\x13\x21\xaa\x2b\x67\x67\x28\xa5\xb5\x7e\x81\x8e\xe5\xeb\xe1\x43\xba\xe3\xf9\x3f\xc4\xe8\x74\x68\x98\x23\xad\x16\x78\xf0\x95\xf5\x46\x3c\x4b\x8d\xd2\x70\x52\x15\xc5\xb9\x16\x1d\xb3\x67\x26\x20\x87\x1d\xff\xd3\x70\x88\xe7\x16\xee\x8e\x4f\x10\xa7\x66\x65\x25\x36\x0b\x11\xd3\x75\x46\xef\x09\x5a\x55\x3c\x52\xd4\x90\x73\xab\xc4\x09\x3f\x1d\x8d\x4c\x10\xfc\xb8\x4f\x36\xb2\x3a\x89\x2c\xf2\x61\x9a\x38\x3a\x29\x45\xdd\x8a\xbc\xd7\xf9\x95\x0e\xbc\xc7\xd0\x73\x50\x03\x56\x68\xfe\x2d\x77\xc4\xee\x4e\x89\x77\xa1\x73\xe2\x71\xe3\xa7\x7b\x9e\xae\xe9\x06\x7f\x48\xb5\x89\x85\x73\x54\xed\x24\x0c\x44\x57\x94\x3c\xd1\x5e\x1e\x75\xd4\xaa\x59\x49\x8b\xdc\xde\xf2\xc2\x9a\x02\xa3\x93\x29\xf5\x9e\xd3\x5a\x78\x9a\x11\xf8\xbe\xc4\x68\xd3\x9c\x0a\xc3\x11\x7b\xd1\x17\xb2\xab\x9b\x22\x7c\xeb\x1f\x39\x90\x66\xb3\xea\xc7\x74\x53\xa4\xf2\x60\x16\xbc\xa0\x72\x9c\x96\x11\xb0\x01\xba\xd3\x83\xc8\x5d\x7d\x89\xfb\x52\x55\xf2\xdf\x8c\x4b\x78\x51\x03\x2d\x73\x3a\xfd\x8e\xbb\x10\x0e\xd0\xad\xb1\x62\x2f\x4a\xf7\x66\x12\x7e\x0f\x2d\xfa\xc2\x49\x5a\xe9\xcf\x9d\x6f\x9c\x6f\x7f\xc3\x5a\x83\xcd\x37\x0a\xea\x67\xdc\x5a\x00\x75\x77\xf6\x80\x4d\xda\xf7\xf4\xa3\x90\x66\xbb\x9e\xee\x7b\xe1\x4f\x7d\xd9\x94\xfe\x6d\xf7\x49\x92\x84\x67\x8f\x09\xca\x6c\xcb\x1e\x73\xa9\xb7\xe7\x05\x5f\xf0\x9f\xb6\xdb\x86\xbc\x82\x67\x44\x26\x09\xf3\x8b\x0f\xea\xbe\xa7\xbf\xf2\xa6\x2d\xad\xe7\xfa\xea\x24\x9e\x98\x7e\x84\xf7\xbf\x2f\x08\x76\x82\xa8\x04\xc1\x5b\xd7\xe3\xfa\x9e\x85\x3d\x6f\x13\xec\xe2\x24\x41\x93\xc1\x8f\xaf\x64\x2b\x83\x33\x65\x5d\xd3\x48\x41\xcf\x69\x16\x1a\x8f\x54\xb4\xa0\xb2\xcd\x87\x17\x37\xcc\x2a\xf4\x8d\xe6\xfb\x2b\xd9\x1e\x52\x67\x64\x4a\x31\x92\xb0\x86\xea\xbd\xa9\x22\x4b\x5f\xc9\x51\xdd\xaf\xed\x75\xe2\xb2\x70\x08\x5d\x52\xac\x40\x6c\x8e\x63\x23\x9e\x4f\xe6\x56\xec\xea\x70\x25\xf6\x1a\xe1\x83\xfd\xf5\x49\x5f\x36\xdc\x31\x67\x41\x51\x18\x57\xdf\x92\xa4\xbd\x9d\x7f\x33\x54\xb4\x55\x12\x39\xde\x3b\x5e\xdc\x3d\xbd\x99\xd3\x65\xad\x4a\x12\x22\xd9\x2e\x8d\x6e\xf5\x6e\xaa\xf2\xb8\xbd\xe7\xdb\x3b\xd9\x6e\xfe\xc3\xfe\xa2\x35\x11\xb2\xf4\x2f\xb1\x47\x08\xd4\x87\x28\xe4\xf7\xd7\xcf\x78\x9d\x0c\xe7\x41\x5c\x74\xbe\x1c\x3f\xe1\x7d\x59\x58\x77\x26\xf8\x4c\x6b\x6f\x70\xb7\x55\x47\x98\x85\x5a\xd5\x86\xd9\x32\x6f\x29\x4c\x4a\xfb\xfc\xdb\x2c\x89\x79\x48\x1f\x75\xf9\x53\x06\x46\x1d\xa5\xaa\xad\x1b\x41\x1f\x15\x88\x14\x67\x46\xaf\xc4\x33\x36\xbf\x36\x4a\xab\x7f\x54\x62\xab\x09\x80\xd1\x82\xac\x83\x2e\x2a\x1a\xb0\xb4\xf8\x3d\xe4\x17\x59\xe7\x96\x24\x6b\xf4\xf7\x1a\x76\x9e\xee\x5e\xbc\x7d\x4f\x22\x66\xad\x54\xbe\x4c\x35\xc6\x1c\x9b\xc4\xfa\x1b\xc2\x88\xc5\x59\xd0\xbf\x1d\x79\x86\x06\xc0\x3c\xc4\x19\x01\xfc\xc4\x41\x77\x50\x90\x76\xcd\xe1\xd3\xa4\xc7\x18\x3d\xeb\xc5\xca\xc5\x56\x11\xbc\x24\xf4\x82\x1f\xa2\xac\x20\x5a\x33\x3e\x49\x4f\x82\xcc\xed\x7f\x1d\xeb\xc9\xd3\x33\x7b\xe2\xc1\x30\x3f\x39\xc6\x85\x56\x2b\xfd\xe6\x7d\x4a\xc0\xeb\x52\x79\x55\xcc\x78\x0f\xb0\x7f\x5d\xd3\x50\x67\xae\x60\xf7\x58\x13\xdd\x78\x91\x55\x54\xe9\x0d\xb5\xc3\x50\x21\xa2\xd7\xc3\x06\x6b\x61\xfe\x7e\x82\xeb\x75\x78\x8a\x96\x59\x42\x2f\x44\x6d\x6c\x9e\x55\x37\xd1\xa2\xb3\x79\xce\xac\x06\x2d\xb2\x4f\xeb\x84\x84\x3d\xf8\x00\x72\xa1\xdb\xd4\xc6\x7c\x3d\x18\xeb\xbc\xd0\xcc\x5a\x35\xd3\xda\xdb\xa8\x9f\xb4\xb9\x83\x64\x3e\x90\x93\x37\x58\x71\xe0\x32\x81\x67\xb3\x74\x88\x83\xa3\x45\x46\xb4\xa4\x27\xcc\xce\x7b\xe1\xac\x6d\x54\x94\xa6\x87\xaa\x0a\x12\x6a\x63\x2d\xde\xe7\x12\xd1\xa9\x8f\x2a\x8b\xc3\x2a\xd2\x4e\x06\x92\x40\x14\x90\x7e\x5e\xbe\x95\xfe\xfb\x9e\x46\x95\xc7\x70\xd1\x8e\xbe\xd9\x36\x8a\x9e\x79\x2f\x7b\x8e\x7a\xdb\xf2\xb6\x2a\x03\x31\xb0\x13\xc2\x96\xa2\xcd\x76\xfc\xf5\x1d\x61\xbf\x79\xfe\x19\xe8\xb3\x9d\xf5\x97\x9c\x26\x82\x33\xac\x73\x2a\xfb\x1f\x6c\x93\x77\xc3\x37\xbc\xf4\x9b\x17\x3e\x68\x92\x83\xd5\x9d\x47\x8a\x54\xd1\x15\xdb\xd4\xbb\x19\xd3\x52\xc5\xce\x98\xb3\x73\x56\x67\x75\x44\x4b\x7a\xa9\x1f\x30\x38\xd4\xb6\x99\xa8\xf1\x03\x38\x4a\x9b\xcf\xb4\xbd\x70\x5b\x17\x5b\x68\xb7\x8b\x5d\xde\x8f\x34\x16\x38\xb7\x6e\xb7\xec\x47\x2d\x23\x7c\x63\xa1\xa6\x89\x96\x3d\xd3\xf2\xb1\xbe\xc7\x2b\x0c\xc9\x4c\x9d\x75\x3a\x48\x8f\xb4\x9e\xf7\xc6\x58\x6a\x31\x92\xec\x54\xc6\x5a\x8f\x9a\x62\x5a\x11\x22\x92\xe8\x6c\xfd\x4c\x69\xd6\xfc\x49\xd3\x8e\xe6\x44\x1b\x51\xc4\x2f\xe8\x42\xe2\x13\x72\xc4\x81\xc7\xe0\x7a\xb3\x86\x2d\xd6\x4e\xed\x1c\x23\xd2\xe7\x12\x96\xd1\xde\x0a\xff\x7f\x60\xb6\x10\x88\x24\xb4\xda\x97\x49\xf9\x32\xf2\x0b\x68\x17\x01\x17\xe0\x29\xd3\xb5\x90\xe4\xcf\xf4\xec\xc1\x6b\x36\x44\x43\x9c\xd0\x48\xb7\xce\xc8\xc1\xd5\x96\x1a\x87\x0f\x2b\x89\xb5\x0b\xb0\x2f\xb2\x75\xd1\x85\x64\x6e\xcd\xe4\x35\x30\xa2\xa6\x84\x70\xbd\x7f\xa6\x7d\xaf\x45\x7d\xab\x05\xb1\xdb\xd0\xcb\x5c\x61\xc3\xff\x30\xe7\xec\x0f\x41\x7f\x6a\x99\xae\xe9\xc7\xdc\x86\x7c\x46\x76\xa4\x7e\xac\xad\xa1\x57\x55\xa5\x42\xbb\x7e\x92\xf8\xfe\xce\xb3\xfc\x2d\xb1\x0c\x9d\x17\xf9\x1b\x1e\x7e\xa3\xb7\xfa\x4f\xe2\x37\x6d\x1a\x89\x45\x3f\x08\x98\x54\x57\xda\x7e\x1e\x8a\xdc\xd0\xcd\xb7\xe5\xd7\xf8\xa7\x58\xbe\x46\xf2\xdc\xaf\x0f\x39\x1c\xa4\xdd\x9f\x15\xa0\xce\xb4\x0e\x32\x8d\xfa\x11\x54\x2f\xdf\x79\x11\x5c\xcd\xf6\xab\xf4\xfb\x4d\xce\x4a\x79\xff\x15\xf1\x70\x6d\x71\xf0\xe9\x1f\xef\xf2\xc3\x70\x7d\xff\xc7\x87\x11\x11\x06\x0a\xfd\x1f\x72\xa1\x67\xaa\x91\x0e\xbc\xa6\x0c\xae\x01\xa5\xe1\x73\xe9\xcb\xee\x94\x5c\x6c\x7f\xa9\xbc\x74\x28\x54\x55\x7f\x5e\xe6\x62\x62\x68\x2c\x54\x7a\x50\x37\x37\x3c\x44\xff\x0e\xe8\xda\x89\x8a\xf5\xc3\x27\x04\x2b\x8d\x79\x00\x41\xac\x36\xb5\x47\x39\x77\x6c\xc4\xa8\xd9\xc5\x0c\x20\xbc\xf5\x14\x33\x44\x24\xcb\x01\xf7\x09\xd5\x93\x7c\x8c\x59\x25\x92\xa0\x4a\xc3\xff\xad\xc7\x68\xcd\x17\xa9\x22\xe1\x40\xff\xb6\x35\xc6\xd8\x6c\xff\xe1\x31\x24\x65\x7e\xfd\x79\x98\xf4\x33\xab\x1b\x4f\x39\xd1\xdc\x29\x06\x00\xdd\xfa\x22\xfd\x79\xad\x08\x62\xfe\xf5\xcf\x83\x5c\xe3\x5b\x77\x7f\xee\x3c\xcc\xf1\xa2\x64\xe8\xe5\x57\xf2\x31\x26\x0a\x98\xc7\x80\xd8\xf6\xfb\x46\x5b\x62\x8e\x35\x8f\x60\x02\x9e\xff\xf4\x08\x3c\x88\x95\x5b\x93\x10\xd5\x62\x45\x60\x5d\xed\xd6\x33\xce\xe0\xe0\x70\xcf\xdc\x7a\x8a\x2e\x6c\xf3\x14\x02\x3c\x86\xb7\x68\x8b\xdf\xd3\x53\x18\xf4\x11\x0c\x35\x76\xb2\x4d\xbe\xc5\x9c\x8c\x1c\x88\x70\x4c\x22\x52\xfa\x54\x8f\x73\x80\x2a\x4e\x4a\x86\x53\x92\x94\x5e\x22\xe2\xa0\xd7\xa1\x66\x9b\x67\xc6\x0e\x52\x64\xd5\x89\x64\x72\xd0\x65\xaf\xe3\x9b\xe4\x45\xc7\x4f\x03\x2f\x5a\x1c\x45\x60\x03\x06\x63\xaf\xfc\x89\xfe\x8c\x66\x0c\x2c\x2c\x7f\xdf\xc7\x7f\x36\xe2\x3f\x1d\xb7\xef\xc1\x41\x63\xdd\xd6\x2f\xbe\xf3\x16\x8f\xd5\x0d\x1b\x2b\xab\x38\x00\x89\xa1\x92\x8e\x2b\x76\x14\x85\x88\xc8\x19\x87\x36\xf7\x90\x14\x46\x79\x3a\x2b\x8f\xdc\x32\x10\x08\x26\x79\x16\x9f\xa6\xaf\x95\x4f\xcf\xf2\x36\x91\x6c\x49\xc7\x14\xdd\x5c\x8b\xe8\x46\xcd\xe6\x30\xe3\x8d\x15\x73\x00\x33\x8c\xc2\xa5\xd3\x79\x93\x87\x62\x5b\x60\x33\x10\x4b\x3b\x33\xc4\xbe\x71\x89\xa6\x68\x62\x97\x87\x94\x51\xe3\xb3\x08\x36\xec\x1c\x78\x39\xc7\xcb\x28\xcf\xd2\x39\xe5\xa1\x49\xe4\x44\x32\xd2\xc3\x2f\x3a\xac\x17\x89\xa6\xe7\x68\x7a\x83\x34\x3c\x86\x49\x2e\xf9\x3d\x3c\x89\x5f\x84\xa5\xe8\x64\xf3\x4e\xd2\x5a\xee\xe4\x78\x18\xe9\x85\xe5\xe1\x97\x9c\x6b\x42\xe1\x60\x4e\xf3\x79\x9b\x41\x7e\xe6\x64\x4f\x31\x19\xc5\x7c\x94\xab\x67\x5a\x2f\xb9\xad\x27\xdb\x23\x0a\x21\xba\x54\x4e\xbe\x56\xf9\xfe\xb5\x0d\xde\xe3\x92\x54\xf3\x4e\x6a\x59\xed\xe4\x04\x3b\xdf\xda\x84\x09\x8a\x16\xbc\x13\xc6\x1d\xa1\xef\xa9\x3c\x53\x0e\x25\xb8\xe3\xfb\x2e\x00\x57\x8c\xcb\x3c\x28\xe8\x18\x43\x6a\x78\xfe\xf6\xa5\x09\xfa\x4d\x3a\x18\x15\x98\xf3\x2b\xeb\xf8\xfd\x5b\x3f\xc4\x68\xf8\x9b\x64\x32\x71\xdf\x9a\x7e\xff\x16\x9c\xd7\x24\xa2\x59\x81\x56\x0d\x09\xc3\xfe\xfe\x25\x72\x30\x4b\x62\xee\xb0\x96\xdf\xbf\x05\x40\x9b\x80\x34\xb8\x2a\x38\x33\xb8\xfe\xfe\x2d\x56\x76\x24\x91\x6e\xdc\x6f\x6d\xbf\x7f\xeb\x97\x4c\x06\x21\x9e\x3b\xbb\x42\x14\x73\x24\xe0\x0c\xe7\x6f\x17\xdf\xa6\x57\x04\x51\xf9\x12\xbb\x18\x48\x90\x61\x08\xed\x1e\xbf\xec\x88\xf0\xcb\xf6\xd4\xa6\xd2\x04\x92\x08\x64\xfe\xee\xbb\xbc\xfe\xd5\x25\xb3\x38\x45\x81\x64\x36\x84\x6b\xbe\xed\x5e\x2b\xa0\x61\xdf\xbd\x86\x5c\x22\x32\x4a\x5e\x63\x95\x47\xed\x5e\x63\x01\xe0\x66\xa2\x3d\x0c\xff\x77\xe2\x5d\x5c\xfb\x72\xaf\x9d\x13\xbe\x7f\x5e\x2c\x11\x69\x01\x9b\xfb\x40\x32\xdb\x9f\xa8\x25\x4c\xf4\xbc\x87\xfd\x2d\xf2\x5c\x49\x81\x98\x4e\x05\x68\x91\xa0\x18\x30\x29\xdb\x32\x71\x26\x59\x31\x90\xb1\x9b\x81\x99\x87\xf6\x19\x00\x74\xab\x03\x75\x50\xed\x69\x88\x85\x5b\x11\x65\x25\xd9\xeb\xf3\x20\xbe\xfd\x57\x33\x15\xba\xb1\x17\xd1\x00\xa0\x0a\x15\xb1\xcb\xe9\x97\xf4\x2a\xf4\x82\x40\xb4\x6f\xa8\x47\x4c\xdc\x36\x67\xec\xe6\xef\x7a\xa2\xf7\xea\x70\x88\x14\x61\xfd\x75\xbe\xf1\x19\x5a\xde\xdb\xa5\x9d\x76\xe2\xec\xfa\x11\xc6\x20\x5c\x15\x13\x61\x43\x7e\x41\x9f\xa7\x3a\x52\x3a\xc2\x2f\xd1\x47\x06\x50\x6c\x5a\xd9\x67\x58\x8a\x7d\x4f\xff\xce\x3d\xa7\x9b\xe9\x89\xd6\x25\xfd\x22\x46\xba\x30\x6f\x3e\x7d\x77\x9f\xee\x7a\x2d\x39\xe6\xeb\x13\x78\x24\x9e\xd7\x77\x46\xe3\x6a\x88\xbf\x75\x81\x6b\xaf\xcb\x91\x68\xcd\xcf\x46\x62\x8e\x2e\x42\x27\x87\x6e\xe6\x7b\x43\x11\x67\x9b\x08\x90\x98\xc0\x24\x9d\xda\x0b\xdb\xef\x4a\xb4\xca\x8f\xca\x5e\xa7\x3b\xe9\xaa\xd6\x53\xf5\x35\x0d\xd3\x8e\xe2\x26\x19\x01\x45\xba\x2b\xd2\x11\xc4\xdb\x27\x4e\x45\x28\x43\x4b\x46\x76\x42\x6a\xee\x36\x5d\xcf\x7d\x3e\x47\x87\xc6\x14\x77\xdb\x9b\x3b\x33\x61\x3d\xb0\x6c\xf3\xab\x0b\x3b\xb2\x3e\xea\x31\xd2\x94\xcb\x5d\xe0\xeb\x72\x01\xac\x2d\x65\xaf\x17\xcf\xd6\x9d\xaf\x7f\x56\x9e\xd2\xc4\xe9\xd0\x48\xd3\xa2\x05\x58\x50\xa5\x83\xa1\x5a\xfb\xb7\xda\x6a\x52\xdd\x9f\xff\x55\x5b\x3d\x34\xf5\x70\xab\x25\xc6\x1f\xe8\x63\xd4\x52\xe8\xf9\xbf\x96\x72\xb7\x3d\x2b\x6a\x6b\x1b\xf2\x3d\x9f\x7e\x07\x33\x3d\x61\x7a\xa0\xf5\x56\x81\x67\x2f\x30\x23\x9f\x10\x41\x60\xee\xcd\xe8\x7f\x88\x82\xb0\xf1\x0f\x7d\x4f\xd7\xf4\x08\x04\x6b\x9f\xee\xe1\x28\xff\xd8\x88\xae\xa4\xc7\x5a\x96\x2a\x11\xa5\xe0\xa7\x17\x5a\x37\x7e\xc2\xff\xbc\x50\x6b\x09\x66\x72\x0d\x21\x15\x7d\x90\x24\xac\x8f\x2d\x6e\xb9\x96\x90\xbe\xa7\x2b\xea\xe0\x43\x1d\xdc\xdf\xbc\x9f\x51\x27\x5f\x64\x81\x89\x3a\xde\x7c\x60\xac\xb3\x68\xff\x7c\x7d\xfb\xdd\x68\x8d\xe2\x55\xf5\xde\x73\x57\x3d\xdb\xea\xb2\xe8\x97\xfd\xc2\xcd\x86\x73\x6a\x2f\x8e\xc8\xde\xa1\x7b\xeb\xf6\x59\x95\xc5\x7f\xd1\x2b\xdd\xf8\xae\x7e\xf8\x84\x4f\xdf\x6b\x0d\x0c\x79\xce\xfc\xb1\x3e\x6c\xcd\xa7\xf7\xf5\x27\xc4\x0a\xd1\xd1\x42\xb7\x5c\xdb\xf3\x85\xef\xff\x12\xdb\x41\x03\x61\x29\xe9\xae\x17\xa0\x64\x8c\x0c\x61\x02\xaf\x4c\x3f\xfd\x69\x54\x95\x8c\xac\x89\x2f\x18\x83\xbd\x89\x84\xb3\xe8\x27\xd1\xbf\x3e\xd7\x34\x47\xe1\xaa\x7f\x76\x7c\x7f\xdd\xf9\x8e\xff\x37\xd3\x3d\xaf\x43\xab\xe7\x4c\x78\x7d\x17\x41\x53\xed\x4c\x1d\xdc\x0b\x86\x52\xa1\x88\xf0\x5e\xb4\x72\x84\x77\xa0\x2c\x5f\xdf\x90\x5f\xc2\x59\xc8\x77\x43\xb1\x1a\xb4\x3c\x5d\xd0\x1b\x1c\x1b\x6f\x94\x47\x5b\xb3\xb3\xd8\x53\xc6\x6a\x1d\xc0\x9d\xde\xf6\xa6\xca\x5b\x48\x7b\xed\xe9\xc4\xb5\x7f\xf2\xf3\x0b\x50\xfc\x7d\xac\x3a\xa0\x88\xbc\xe4\xae\xbd\x6d\x0b\xe8\x02\xbf\xd3\x17\x81\xbe\x29\x80\x55\x88\x15\x6e\x85\xe9\xc0\xeb\xcf\x1b\x38\x5d\x4a\xf0\x60\x8b\x41\xf4\xb7\xb4\x78\x14\x37\xfc\x1f\x0c\xa1\x05\x75\x32\xfb\x67\xaf\x9e\xd3\xda\x3b\x28\xff\x67\xfa\x5d\xd6\xa1\xed\x3d\x20\x0c\xa8\xbb\x59\xea\xc8\x84\x38\x57\x55\x04\x8d\xcb\xae\xed\x17\x7c\xb1\xe4\xaa\x33\x3c\x3f\xbd\x2c\xf8\x5a\xaf\xd2\x44\xd9\xf9\xc7\xf4\x9b\x51\x28\x89\xee\xd6\x2d\x2f\x61\xe3\x5e\xa9\xd9\x84\x5e\xfe\xb4\x24\xcf\xc8\x79\xfc\x76\x1f\xb7\xe9\xbd\x0d\x64\x44\x1b\xa1\x22\x6f\xa6\x44\xe3\x9e\xa9\x9e\x59\xb8\x63\x73\x28\x6b\xec\xb7\xaa\x5b\x9d\x0e\xf4\x91\x98\xfb\xa2\x73\xee\x54\x41\x70\xef\x2a\xc2\x8d\x85\xe4\x84\xa7\xeb\xc6\xad\x88\xae\x00\x35\x61\xda\xf5\xb4\xaf\x1f\x5a\x48\xb6\x09\xd3\xa1\xf7\x29\x96\xc3\xdf\xa0\x87\xfe\xb8\x14\x45\x0b\x58\x0e\xdf\x13\x58\x4a\xf2\x71\xc4\x8c\x1f\x65\xba\xe4\x28\x80\x94\x1c\x2e\xa2\xdc\xf6\xb6\xb5\xe8\x36\xa5\x2c\x3d\xb8\x7f\x0a\x21\x7b\xdd\xc2\x17\xca\x1e\x19\x01\xd2\x07\x59\x34\xd9\xcf\xa6\x24\xcd\x8a\x89\xe0\x65\x49\xfb\x70\x5b\x9e\xc6\x18\xb8\x23\xd1\x50\xa7\x26\xc8\x1f\x3a\xa3\x77\x08\xe0\xda\xbf\x21\xbf\x02\xb7\xdb\x35\x09\x76\x6e\x72\xc8\x3b\xc3\x7f\x83\xf6\xfc\x35\x61\xd2\xef\xeb\xaf\x2f\x57\x38\xa9\x2a\xc2\xd4\x77\x80\xb8\xaf\x11\x61\x2a\x46\x85\x17\x82\xef\x0f\xe8\x11\x0f\x3c\x2d\xc5\xf4\xfd\xb0\x86\x2f\x4a\x39\xd3\xc6\xc3\x01\x74\x64\xee\x3f\xef\x00\x7f\xfc\xbe\x2c\xb9\x51\x45\x33\x89\x8f\x0e\xc0\x2c\x9a\x19\xbc\xed\xce\x64\x0a\x8c\xbf\x3f\xc4\x6b\x32\x97\x7a\xac\x69\xb2\xe7\xcd\x0c\x0e\xdd\x5f\xfc\x2d\xf1\xe5\x86\x0c\x6b\xb2\xea\x46\x2e\xd1\x15\xf5\xa7\xa9\x09\xf6\xd1\xd4\xf8\xe9\x94\xd6\x4f\x0f\x87\x01\xa3\x0d\x60\x3f\x67\x7c\xc8\x87\xb7\xd2\x2f\x11\xcb\xf1\xef\xcd\x26\x80\xab\x57\x7a\xfb\xfe\xcc\xb3\x10\xc2\x5d\x60\x18\xf1\x96\xbc\x24\x0f\x44\x0e\xc4\x8c\xfc\x2a\x70\x7b\xaf\x8a\xd8\x62\x72\x75\xac\xd6\x7c\x78\x53\x64\x9c\xa4\x5c\x5f\x2b\xdb\xc8\xae\x48\xaf\xb9\x44\x22\xed\x79\xf5\xc0\x46\x1e\xd3\xbe\xe4\xe3\x98\xfe\xc1\x20\x2e\x3d\x79\x37\x73\xd7\xf3\x52\x4a\x0e\xd7\x8a\xf2\x36\x14\x2f\x3e\x61\x2e\xef\xda\xdd\xe6\xe7\xb4\x84\x16\xe5\xd8\x6e\x55\xf4\x7f\xed\xd7\xf2\x89\xef\x18\xb2\x36\xff\xed\x64\xe6\xa6\x1a\xd2\x62\xfb\xc5\x82\x88\xf7\x3d\x7d\x54\xc3\x42\xf2\x9d\x87\x74\xcf\x0b\xc6\x0a\x13\xf4\x1c\xd9\xe9\xe9\x01\xc8\xc2\x92\x59\x70\x86\xf9\xe1\x05\x5b\xb8\xd2\xda\x3f\xa3\xc7\xbf\x6c\x57\xf0\x84\x7e\xda\x5f\x4c\x8c\xfd\x6d\xe7\x75\x9d\xfc\xdd\x43\x25\xa1\xb3\x33\xcd\xe2\xd2\xbd\x58\xa4\xd6\x13\x22\x9c\x0b\xee\x63\x7a\x78\xb7\x4d\x4c\x78\xa6\xfe\x6a\xf8\x28\x22\x71\x97\x10\xe2\x85\x4d\xbd\x80\x76\x64\x5f\xbc\xc6\xbe\xae\xc3\x91\x8e\xaf\xbe\xa7\x1f\x60\x6a\xf9\x69\xc4\xac\xf7\x27\xb1\x96\xfd\xea\xa4\x5b\xde\xe7\x4b\xea\x44\x5a\xeb\x7b\xc1\x63\xec\x77\x92\x63\xec\xcd\x7e\x45\x3e\xe0\x8f\x15\xe4\x4f\x77\xbf\x6c\x90\x2b\xd8\xdb\xbb\xfb\x65\xa9\xed\xe5\x6d\xc9\xf4\x21\xf8\xfd\x1e\x49\x71\x90\x23\x57\x46\x83\xf2\x9f\x8d\xa4\xdb\xa3\x42\x39\x53\x00\xd5\x2e\x81\xa0\x80\x2c\xf1\x49\x12\x6b\x7b\x8d\xb0\x02\x31\xa0\x3b\xc4\x7f\x1c\x34\x2c\x7f\x9d\x8c\x2f\x6e\x62\x9d\x42\x0c\x0c\x3c\x2b\x79\x89\xd8\xd1\x46\x6c\xd0\x9e\x34\x58\x93\x9d\x55\x55\x9f\x15\x09\x02\xd1\x6b\x55\x46\xe2\xf5\xa7\x18\xda\xff\xcd\x27\x4e\x8c\xec\xa2\x5d\xa5\x59\x86\xc5\xec\xb4\x89\x60\x99\x66\x7a\xad\xcc\x41\x18\xae\x15\xc2\x74\xda\xaf\xb1\x47\x7f\xaa\x32\x49\xda\xfa\xb1\x4f\x50\xa3\x7e\xb8\xa4\xb5\x9b\x9b\xb0\x17\xa6\x3b\x9e\xfe\x2a\x5d\x6d\xcd\xd0\x0b\x7f\x1b\x41\xe2\xa8\x9f\xd3\x81\x9e\xea\x50\x82\x1d\xf3\x75\x51\x42\xd6\x6a\x9a\x77\x64\x2a\x5d\xd2\x33\x68\x5d\x92\xaa\xa0\xb7\x08\xd0\x79\x67\x38\x9f\xf5\x27\xed\x54\x2b\x8a\x94\xfa\x3c\xca\x33\xda\x93\xac\x20\x0d\xa2\x84\x02\xf5\x29\x32\xd8\xa3\x1c\x88\xe2\x9f\xa4\x10\x66\xc4\x0d\xc0\x6c\x84\x4c\x51\x82\x49\xfa\x09\x2e\xeb\x1d\xdc\x75\x2d\x23\xc3\xea\x0a\xa2\xc1\xb3\xd2\xc9\x33\xee\x4c\x70\xf4\x97\x16\x90\xc6\xeb\x20\x6e\x44\x06\xf1\x03\x4d\xc3\xab\x8b\x0b\xf4\xcc\xc7\x49\x0e\x3f\x6d\x08\x41\x53\x5a\x45\x9d\x85\x35\x5a\xad\x2a\x3a\xc7\x84\xf5\x65\x00\xf8\x7b\x50\x62\x98\x6d\xb5\x8c\x18\xa5\x6b\x78\xad\x28\xaf\xe5\x94\x44\xf2\xcd\x34\x9c\xd7\x6f\x62\x39\xd5\x63\x9f\xef\x09\xf4\x5b\xab\x93\x3e\xc5\xef\xad\xea\xf6\xbd\xc0\x8c\x08\x2c\x16\xcf\x8f\xc0\xa0\x5a\x63\x09\xa1\xdb\xe3\x79\xe4\xe9\xce\x15\xfc\x21\x45\x15\xb9\x34\xf5\xb8\xce\x43\x42\x4c\xf5\x2d\x86\x55\xa0\x73\xf2\xd2\x14\x1f\x99\xe1\x23\x15\xcd\x8f\x2c\x79\xc2\x22\x6f\x80\x79\x78\xd0\x04\x44\xde\xa7\xd7\x48\x72\xb7\x8a\x22\xc7\xbd\x19\x79\x6a\x7a\x0f\xe3\xbb\x23\x2d\xeb\x8a\xda\x6e\xc8\x13\x24\xdf\x43\xbf\x64\xa6\xcc\x2b\x5e\xcc\xec\x21\x1d\x9a\x77\x80\x99\x01\x59\xeb\x0d\xf1\x9d\x1f\x28\x1b\x1a\x09\x59\x12\xb0\xa8\x6b\x77\x63\x94\x82\x58\xa9\x09\x9a\x00\x6c\xc1\x4e\xd5\x92\x8f\x8b\xa1\x4f\x17\x82\xc8\xb4\x76\x52\x1f\xd2\x80\x82\x30\xb8\xf6\xd3\x65\x19\xc8\xc2\xa7\xdc\x7a\xaa\x7b\x5e\xb1\xfe\x0c\x62\xde\x48\x6e\x95\x3d\x6c\x88\x02\x5b\x42\x5e\x52\x33\xd6\x0d\x76\x18\xed\x48\xd0\x94\xcd\x41\xc0\x88\xaf\x91\x3a\x2e\x19\xb1\xf7\xe6\xe9\x61\x43\x96\xff\xa3\x8a\xe4\x98\x4f\xd9\x2b\x0c\x6c\x3b\x29\xb0\x4d\x31\xc4\x86\x2b\xe7\x60\x3f\xd6\x5f\xa0\xa1\x79\xf0\xd7\x41\x02\x95\x1f\x3f\x7d\x6a\xed\x3c\x9a\x7d\x71\x06\x65\xf1\x33\xa7\xe0\xae\x06\x19\xbc\x14\x11\xf5\x29\x3f\x9e\xf7\x80\x72\x78\xc7\x41\x9f\x5f\x22\xf6\x68\x83\x17\xb7\xaa\xc1\x85\x36\x6c\xbd\x35\x54\x61\xac\xe9\x64\x74\xec\x68\x85\x53\xaa\x33\xcc\x6b\x47\x6f\xd9\xba\x7a\xcb\xa7\x51\x1c\x7e\xfd\x6b\xbd\x65\xf0\x10\x93\xef\x50\x6d\x40\x07\x51\x04\x62\xe0\xe9\xdf\x90\x93\x5a\xb3\xfb\xc8\xea\xb2\x54\xc8\x08\x6c\xad\xc4\x48\xd8\x99\x9f\x29\x7e\x9d\x64\x9d\xdf\x2b\xe8\xa5\xd8\xa2\x03\x23\xe4\x0e\xa5\x3b\xad\x85\x54\x4d\x7c\x23\x9a\xcb\x3c\xeb\xbe\xa5\x87\xf6\xa9\xd5\x3d\x79\xc6\xfa\xde\xfd\x3d\x53\x99\x12\x43\xe5\x20\x90\x12\x4e\x75\xa7\xf6\x52\xb7\x74\x1f\xa4\x24\x67\xbc\x97\x09\x9d\xbe\x81\xff\x6c\xc0\x2e\xb6\x2a\x7d\xd0\x9e\x37\x6b\x14\x30\xcc\x79\x23\x9d\x35\x3c\xf5\x21\x3f\xa3\xf1\x0a\x30\xad\xbc\x6d\x44\x5b\xbf\xf2\x23\x8f\x53\xa6\xb5\xb9\x37\xda\xe8\x23\x92\xfb\x5a\x3b\xe9\x95\xaf\xf7\xe6\xe7\x54\x3d\x23\x4f\xf4\x13\x09\xfa\x5d\x59\xba\x95\x3a\xba\xea\x28\xdc\x4a\x9d\x65\xc5\x50\x76\xf1\x4e\x74\x81\xdc\x5d\x24\x7c\xdd\xd4\x09\x37\x12\xb4\xdb\xf2\x40\xc3\x99\x32\x2b\x1a\x95\x75\xe4\x46\x6a\xe7\x78\x31\x55\x96\x70\x8b\x61\xdd\xaa\x31\x34\xc0\xf5\x50\x27\x63\xa6\x60\x9c\x1d\x28\xdb\x0a\xa2\x28\x53\xb2\x46\xde\x44\x89\x3b\x20\xa8\x34\x80\xd4\xdd\x9e\x7e\xda\xe0\x0f\x91\xca\x76\xc2\x35\xda\x0f\x76\x0d\xf0\x35\xef\x7d\x2c\xa7\xc1\x54\x59\x39\x6c\x50\xb1\xc1\xba\x12\x60\x50\x71\x42\xb4\xf4\x5c\x1d\xfd\xc4\x43\xcb\x91\xa2\x7f\xb3\x44\xd8\xc2\x41\xc3\xcc\x41\x38\xac\x33\xd2\xa8\x7d\xfe\x94\x3c\xc4\xa2\x1c\x72\x33\x3d\x1a\xa1\x1e\x83\x3f\xad\xdc\xfa\x9e\xf9\x37\x58\x2a\x70\xfe\x76\xed\x93\x2c\x05\xc6\x17\x44\xef\xdb\x0f\x25\xbb\x10\xec\x55\x55\xd0\x19\xda\xf3\x9e\x13\x1a\x78\x54\x36\x34\xd0\x8c\x57\x90\xbb\xcb\xc9\xf1\x0f\xc5\x62\xa3\xcf\xda\x0a\x0b\xbc\xf1\x69\x48\x72\x19\xcd\xf5\xa0\x60\x4b\xea\x48\x64\xa6\x3e\xaa\x69\x29\xa9\x06\x98\xe7\x23\x2d\x20\x31\xaa\x56\x06\x8e\xe1\xe8\x95\xcb\xe9\x93\x04\xcb\xe0\xa8\x39\x82\x53\x3d\x8e\xc6\x85\xfd\xac\x8e\x68\x81\x1e\xf2\x31\xd2\x07\x43\x06\x77\x3f\xc0\x74\xdf\x3c\x7d\x0e\x0b\x6c\x79\x51\x91\x6e\x06\xbf\xe1\x9b\x6c\x8f\xa2\xa6\xa4\x24\xc5\x32\x07\x1d\xa6\xce\x62\xba\xe6\x71\x90\x6c\x25\xc7\xc0\xa8\x19\xd7\x6d\x52\x77\x45\x7a\xb3\x36\x5d\xf0\xe8\x31\xb9\xed\x32\x39\xfe\x56\xe1\x1d\x51\xb9\xbf\xa5\xc6\x6c\x7d\x5f\x76\xc7\xba\x6c\x0a\x98\x6a\x55\x35\xf1\xb2\x98\xf2\x7d\xda\xda\x11\x68\x26\x06\xc5\x5f\xd4\xac\xe5\xd9\x33\xb8\x8f\x24\xa3\x50\xfe\xc9\x82\x31\xbd\x09\xa3\xf9\xc4\x20\x5b\x3f\x84\xc7\x97\x84\x0b\xf9\x15\x9d\x85\xe0\xf5\x21\xfb\xb9\x7b\x84\xe3\xb0\x7b\xc8\x33\x50\x4b\xa2\x1d\x0b\x7a\x01\x4d\xd6\x59\x02\x31\x1a\x2e\xe0\x67\x91\xd7\x5a\x74\x10\xca\x69\xd1\xb0\x6f\xb7\x90\x51\xe6\xcf\xdd\x7c\x90\x7f\x68\x8d\xaf\x79\x46\x54\xa5\x62\x2a\x6f\x4c\xee\x3f\x05\xee\x60\xa5\x18\xbf\xb7\xae\xc4\x93\xda\x36\xd3\x78\x93\xa0\xdc\x6d\xd9\x31\x8b\x36\x01\xff\x6e\xcf\xea\x09\x95\x4d\xd2\x7b\xc4\x0d\xf2\x90\xd6\xd6\xe1\x03\x5c\x83\x77\xab\x47\x59\x56\x64\xb9\x10\x2c\x4a\x1d\x6e\x74\x78\x37\xc0\x62\x74\xa5\x7e\x2c\x5c\xec\x11\xd3\x60\x81\x66\x80\xa4\xc6\x45\x9d\xf9\x42\xff\xfd\xc8\xb1\x85\x9f\xe9\xb6\xd7\x5e\x36\xbc\x8b\xcd\x35\x4c\x7e\xe0\x3d\x53\xa7\x6f\x75\x99\xb7\xef\xd9\xdb\x03\xb3\xe9\x7d\xc0\xf2\xb7\xdf\xa0\x5c\x9b\x61\xc7\xba\xf5\x1f\x58\x99\x3f\xfd\x86\x95\x05\xe3\x88\x95\x55\x33\x36\x2a\xbe\x96\xa1\x8f\xbd\xa2\xd3\x2b\xed\xe9\x8c\xda\x57\x12\x61\xe1\x33\x11\xa3\xef\x7e\x8f\x4b\x31\xb7\x58\x28\xaf\xfd\x2c\x93\xd0\x2e\xd7\xcd\x6b\xde\x4e\xa7\xfb\x5e\xab\xa4\xa3\x97\x33\x48\xff\x5f\xa9\x4d\x1f\x32\x88\x1d\x25\xdf\x0f\x7e\xf4\xfe\x4a\xbb\x4e\xd9\xa4\xbd\x4b\xe6\x56\xab\xcb\x34\x9d\xeb\xb2\x77\xdb\xd5\x3a\xa7\xa9\x6b\xf8\xe3\x50\x0c\x91\x1a\x9b\xb0\x99\x45\xb0\xe9\x9b\xe8\x75\x2b\x55\x29\xc5\xe4\x61\x64\x1f\xf7\x90\xfa\x30\x9d\x11\x4f\x81\x6c\x8e\xe6\x1c\xf9\xc8\x3c\xd5\xdf\x0b\xf5\x58\x34\x83\x0b\xb3\x29\xd9\x35\x77\x21\xbf\xd1\x05\x6c\x46\xdf\x6a\x48\x64\x46\xf9\xb2\x0c\x5a\x67\x94\x30\xbb\x91\x82\xd6\xd2\x2f\x51\x46\xb5\x5d\x3a\xc9\x68\xf5\xb2\x7e\x76\x4e\xd3\xfe\x45\x1f\x3f\x3d\xef\x03\x14\x38\xa6\xa8\xea\xd2\xee\x87\xd1\x0f\x24\x35\xe5\x19\x5e\xf7\x0b\x73\xab\xb8\x8a\x8e\xb4\x53\x25\x0e\xaa\x40\x4c\x7b\xb4\x2e\x27\xf7\xbb\x5f\x51\x89\xfd\xce\x04\x26\xcb\x1a\xcc\x25\x1f\xe1\x9d\xd3\x12\x16\xfe\x23\x0b\x17\xc6\x44\x2d\xed\xee\xab\x60\x9b\x3c\x45\x4c\xa8\xeb\x85\x43\x7f\x20\x13\x3d\xbd\x7f\x4e\x6b\x6f\x76\xef\x1b\xd5\xfa\xdd\x9b\xd5\x1b\xe9\xb6\x37\xae\x87\x0b\x81\x9d\xf7\x1b\x50\x0e\x29\x9f\x78\xbd\x6a\x09\x68\x0f\x33\xbd\x19\x26\xef\x94\x71\x47\x0f\xfd\xdd\x8d\x3b\x79\xe5\x35\x0b\xca\xde\xb9\xe7\xce\x14\xf9\xb2\x20\xd2\xad\xd7\xa9\x40\x22\xfe\xa0\x04\x5c\x26\x7e\xe8\x72\x9e\x50\xf5\x4a\x6a\x81\x94\xa5\xce\x7e\x2e\x6a\xd0\xa7\x5c\xde\xab\x1d\x2f\x17\xa4\x86\xd1\x5b\xe9\x2b\xed\x7b\x2b\xfd\xeb\xb4\x90\x83\xe6\x1d\x69\x67\xdd\xfb\x74\xa8\x2b\x5d\x9b\x8a\x88\x6b\xb5\xaa\xbe\x30\x9c\xfa\x84\x94\x1f\xd1\xc5\x59\x93\x80\xb9\x00\xe6\x43\x09\xc2\x17\x69\x59\x42\xc7\x90\xe1\xf1\x28\x62\xd4\x48\xbe\xf5\x48\x53\x82\x1f\x3d\x27\x7f\x8a\x31\x66\xa9\x71\x45\xbc\xe5\x4d\xcd\xbf\x7d\x2f\x44\xfd\xf4\x19\xc4\xbe\xf7\x29\xd0\xa3\x5a\x94\x94\x85\xec\xf3\xec\x4c\x09\xff\xb7\x74\x9c\x4e\x2d\x01\xa2\x0a\xe1\xa9\xc8\x39\x96\xee\x48\xb2\x23\xf3\x8f\x47\x08\x00\x79\xd6\x89\x1b\x66\xfa\x23\x98\x14\x6a\xf9\x93\x1a\xb5\x8a\x9a\x6b\x82\x95\x14\xce\xa5\x5a\xf0\xe6\x38\x71\xf3\x4e\xcc\xee\xd2\x01\xfb\x7a\xab\x54\x45\x5a\x49\x19\x12\x6e\xab\x52\xa5\xc5\xca\x76\x38\xa7\x5d\x4b\xf6\x85\x81\x2a\x5f\x8d\x5b\x89\x0c\x54\xb0\xef\x34\x4f\xb8\xd7\x5e\x57\xf1\x75\xa4\x2c\xda\xef\x16\xe0\xe0\xea\x2c\x92\xd3\xd5\x9c\x39\xf7\x43\x09\xfd\x10\xcf\xb2\x73\xb5\xe9\xe9\x71\x34\x19\xe1\x2b\xff\x4a\xbf\xe9\x1c\x92\x1c\xba\x1c\xca\x0e\xae\xab\x75\x1c\x2c\x52\x55\x43\x09\x02\xe8\x4d\xa5\x34\x9c\xae\x80\xbe\x66\x15\xec\x76\x98\x1c\x12\x8f\xf8\x6b\x9c\x10\x0b\x79\x94\xb1\xb2\xe6\xb9\xf0\x59\x44\x33\xea\xae\x08\xc1\x10\xec\x04\x5d\x13\x2b\x41\xef\x9e\x89\x48\xa2\x70\x4b\x47\x90\x17\x72\x60\xa1\x5e\xb8\x24\x1a\xc2\x0b\x52\xf5\x8c\xb0\xd1\xb1\x1e\x05\xbc\x3c\x41\xe1\x42\xd4\xec\x02\x36\x69\xbf\x21\x5f\x01\xe3\xdc\x22\xcc\xbb\xbf\x94\x05\xfe\x28\x10\xa9\x0a\xd3\x34\x83\x48\xf1\x06\x89\xaf\x12\x4f\x40\x5e\x15\x64\x8b\xf4\x8a\xef\x20\x05\x04\xfc\x8e\xe7\xb2\xa5\xf7\xb0\xfa\x17\x11\x39\xdc\x81\x0d\x20\x1a\xa1\xa1\x2b\xa8\x27\x22\x0e\xb5\xee\xb9\xdd\xa1\xb0\x49\x86\x46\x3f\x88\x1f\xf6\xde\x1a\x89\x1b\xa1\xb7\x52\xd3\xc0\x30\x2d\xe5\xd5\xd9\x40\x34\x69\x7e\xce\x6d\x46\x84\xc9\x81\x76\x1a\xd3\x53\xdf\x69\x0d\xca\xf8\x1c\x33\x10\xf5\x43\x3b\x53\x9d\x61\x20\x07\x4e\xa5\x4e\xaa\x60\xb7\x69\xd4\x62\x57\x32\xe6\x7f\x10\xda\xf4\x65\x2c\xe6\x27\xfd\x6c\x9f\xc4\x77\xf0\xbe\x9e\x2b\x7b\xf9\xe2\x5b\xa5\x02\xbf\xe6\xdd\xfe\x4c\x68\x24\xae\xb1\xb8\x33\x82\x86\xb9\x1b\xe8\x92\x0e\xd3\x6d\xef\x4b\xec\x02\x59\x1d\xb0\xb3\xad\x08\x78\x60\x8f\x25\x59\x20\x95\x73\xa6\x04\xd6\xa8\xa8\xb7\x81\xc8\xcc\x82\xed\x78\xd2\x1b\x79\x0f\x5b\x5b\x02\x86\xc3\xbb\xad\x99\xad\xfb\x83\xca\x4b\xd0\x13\xc0\xa9\x7b\x99\x4f\xba\x7a\x22\xab\xb5\x47\x3b\x47\xdb\x10\x70\xd7\x50\x63\xf6\xcb\xa1\x11\x61\x41\x84\x8c\x60\x4f\x26\xfa\xf5\xaa\xc5\x35\x8c\x44\xf9\x2f\x43\x35\x24\xb6\x85\xca\x7d\x21\x97\x6a\xf1\x33\x1d\xea\x47\xc3\x40\x9e\x64\x98\x3b\x7d\x08\x28\x6c\xb4\xc4\x3c\xb8\x50\x51\x3d\x81\x91\x7e\xc4\x38\x25\x59\x71\xa3\x8f\x32\xce\xb9\x8c\x73\xc3\xf7\x0a\xf1\x38\xfd\xbb\xa3\x19\x67\x63\x15\x8f\xb3\x6f\x27\xb0\x9d\xee\xe8\x7b\xec\xba\x8f\x34\x13\x28\xcc\x26\x80\xf6\xfd\x28\x2d\x81\x7e\x51\x78\x1b\x42\x0a\x9c\xee\xbd\x26\x1f\x0d\xbc\x01\x94\x4d\x74\x7d\xa2\x6d\xda\x72\x4b\x6a\x04\x12\xdd\x01\x7e\x56\xd1\xaa\x3c\x6a\x29\x76\x87\x95\xd5\x10\xbe\x28\x6e\xb1\xdc\x8d\x2d\x16\x86\x80\x3f\xb8\x03\xfb\x68\x23\xee\xae\xb9\x31\xa2\x90\xfe\x49\x4b\xf1\x1e\x17\x77\x0d\x91\x8b\x0a\xd8\x53\xef\x70\x14\x38\x26\xba\xc7\xcb\x31\x22\xac\x08\xa1\xb5\x13\x58\x4e\xfa\x8d\x8b\x87\x7a\x25\x33\x11\x4f\x62\xb4\xd6\x81\xcc\x24\x12\x74\x17\x8a\x36\x4d\xc9\xd9\x02\xe8\xc4\x47\x68\xb8\x42\x06\x55\xfc\xdf\xc5\x0c\x76\xc7\xeb\x81\x17\x3e\xdf\xa7\x43\xaf\x99\x92\xf4\x1b\x6f\xa6\x24\xc9\xf2\xa3\x24\xab\xb8\x15\xf9\x78\xa4\x8b\x01\x7c\x67\xf1\x2a\xde\x97\x64\x15\x61\xaa\x9f\x33\x07\x2a\x48\x37\x75\x4d\x61\x01\x45\x7a\x1b\xe8\x57\x74\xa6\x81\xae\xb5\xc0\x9e\x51\x3e\x38\xd3\x88\x26\x61\xa2\x11\xc6\xdb\xce\x8e\x55\xbc\x2f\xda\x12\x66\xd6\xbf\x87\x6e\x55\x19\x2b\xe7\x11\xc6\x6a\xcd\x0c\xc9\x9a\xa5\x3a\x49\x85\xfb\xbe\xd1\x91\x82\x33\xce\x10\xd1\xc6\xab\xc8\x9d\xbc\xd1\x83\x78\x81\xf7\x81\xac\x68\x45\x5c\x1c\x5e\x56\xbe\xa3\x05\xe9\x49\x7b\xb1\xa5\xfc\xc9\xeb\xa0\xa5\x0a\x96\xb5\xdc\x30\x62\x2c\x3d\x01\x33\x55\xc3\xd5\xaa\x98\x13\xf5\xd1\xf2\x17\x94\x78\x69\xa6\x84\xf1\xeb\x1c\x68\x40\x18\xe6\x4e\x1f\x1d\x9c\x8c\x0d\x5e\x80\x93\xf2\x68\xad\x29\x62\x2f\x7a\xc4\x67\x85\xbe\x3f\xb6\x98\x3a\x0d\x50\xa7\x81\x12\x49\xf3\x53\xee\xf5\x33\x13\x31\x44\xd4\xb4\x13\x40\x91\x9a\xc0\x85\x80\x40\xf8\x3e\xdc\x17\x3f\xd8\xb2\xf9\x2f\xa7\x96\x0a\xf2\xdc\x7b\xe3\xd6\x44\xeb\xa1\xe6\x08\x7f\xc8\xde\x99\xa9\x37\x3c\xf6\x70\x39\xff\xa1\xa7\xf7\x0d\x99\xa3\x8f\xfa\x0d\x9a\x0d\xbd\x93\x1a\xd6\xc5\x85\xb5\x54\xde\x92\xa6\xf0\x67\x36\xda\xff\xae\x07\xa6\x55\xff\x7f\xaa\x07\x33\x35\xac\x8b\xb0\xff\xf5\x08\x4f\x71\x24\x11\x8d\xd4\x56\xdd\x1c\xfe\x51\x67\x59\x3e\xf5\x09\x9f\x6b\xe3\x31\x51\x24\x02\xd9\x85\x9c\xeb\x77\x08\x0f\xcf\xb2\x78\x33\xa2\x2f\x7c\xd3\x11\xbd\xf4\x4d\x3f\x7b\x13\x05\xfc\x94\x29\xd6\x20\x78\x8e\xb6\xc4\x40\xbf\xc7\x04\x41\xa3\x22\x03\x9f\x2e\x08\x26\xf4\xce\xba\x54\x1f\xc7\x6b\xd8\xf8\x85\x31\xe4\x75\xb1\x81\xf5\xcf\xe9\x52\x43\x28\x20\xab\x77\x81\x00\xf0\x1e\xf5\x9e\x51\x85\x37\xe6\x51\x4e\x93\xef\xe7\x51\xc4\x88\x99\x8a\x28\x59\xff\x7a\x4d\x87\x5e\x59\xb3\x32\xa6\xb4\x9a\x55\x6b\x34\xdf\xdb\x7d\xc0\xa2\x84\x40\x0b\x1f\x7d\x47\xf8\x4f\x2b\x25\x99\x33\xba\x64\xdd\x02\x43\x88\x08\x83\x86\x51\xcb\x74\xc6\x4a\x2e\xa8\x4c\xd4\x1a\xc9\x8e\xdb\xab\x1c\x44\xa4\xde\xa8\x70\xcb\x6d\xb3\x81\xf5\x10\xce\x01\xb1\x11\x8f\x03\x98\xa8\x26\xcc\xf8\x5f\x28\xc2\xad\x5b\x21\x72\x58\x2f\x56\xb8\x5f\xcb\x74\xb5\xed\x93\x4f\x6c\xeb\x13\x48\xa4\xef\xf8\xd6\xe7\x31\x71\xbf\x0d\x47\x3d\x7c\x0a\x5e\x67\x01\x71\xb9\xdd\x02\x0f\xac\x83\xa5\x7d\xc7\x0a\xa3\x66\x74\xa9\xbe\x04\xeb\xca\x53\x56\xae\xc1\xed\xd0\x4c\xe1\xff\x7e\x6d\xeb\x84\x72\x41\x9e\xcf\x09\x59\x86\x07\x44\x3b\xf7\xce\x19\x2a\xc2\x11\xca\xab\xf0\x06\x18\x8f\x24\xe4\x05\x58\x1f\xe1\x01\xc6\xc8\x01\xd4\xa0\xde\x31\x83\x68\xda\x2e\x4e\x3c\x39\x58\xe1\xc7\x8d\x53\x29\x82\x75\x7c\x6c\xf5\x36\xf9\xc4\x04\x9d\x1d\x78\xa4\x11\xd3\x63\x07\xda\x70\xf6\x25\x16\x4f\xbc\x1c\xa3\x27\x2c\xd4\x4e\x1b\x19\xa8\x26\x8a\x41\xe7\x50\x8a\xb2\xc1\x5b\x5e\xb8\xc6\xf1\xb1\x12\x02\x79\x9b\x62\xd6\x03\x94\x01\x66\x12\x21\x1c\x68\x2d\x59\x81\x62\xdd\x33\xea\x46\x14\xec\xb6\x53\xe3\xb6\xe3\x24\x1f\x89\x37\x1d\xca\xe2\x0b\x32\x52\x41\xb8\x40\x8d\xce\xa8\x49\x1b\x94\x31\x66\xf8\xeb\x1d\x8c\xff\xe2\x32\x1c\xc9\x4c\x2d\x21\x1c\x95\x55\xae\x41\x22\x6a\x88\x76\x6c\x1d\xa1\x08\x18\x6f\x2e\xee\xc4\xa5\x59\xb9\x74\x69\x9a\x2f\xc2\xcd\x38\x11\x2c\x04\x3d\x04\xb2\xf9\x41\x21\x8a\xb4\xb9\xbb\x4b\x17\xe3\x17\x0f\x37\x5e\x5c\xe1\xc5\xad\x7d\xf1\x8c\x17\xb3\x77\xb2\x79\xf8\xe2\xe0\xc6\x8b\x65\x85\x17\x1b\x01\x88\xba\x84\x17\x81\x8a\xa6\x4b\x78\x31\x4f\x17\x32\x42\xe3\x26\x9a\x5b\xb1\x2e\x72\x4a\x7c\x44\x8f\x54\x49\xdf\x20\xe0\xb3\x51\x6f\x28\xb1\xbc\x78\xb1\x2f\xbb\x63\x0e\xe2\x17\x47\xf7\xef\xec\x71\x10\xc1\x33\xf6\x8e\x20\xe7\xd6\x82\x18\x3e\xd2\x93\x8d\x2c\xd3\x17\xf0\x7d\x52\xf4\xcf\x69\x2a\x82\x88\xe8\x6e\x21\x02\xe6\xc2\xfb\x0d\xb4\x85\x09\x03\x5f\x3e\x10\xa5\x35\xc6\xa9\x71\x50\x35\xbc\x59\x14\x23\xa5\xf5\x39\x97\xe9\xab\xc6\xab\x33\x0d\x38\xbb\xcf\x81\x0f\xe7\x33\x5f\x25\x9b\x2a\x8b\x72\x68\x5f\x4d\x5d\xbc\x0a\xd1\xe5\x53\x00\x60\xed\x59\x75\xb0\xac\x0c\x3a\x81\x7d\xd5\x2e\x52\x9e\xaf\x22\x95\xef\x73\x22\xaf\x1e\xf1\xea\xe7\x30\x04\x57\xc3\x9e\x6f\x47\xf5\xea\x3b\xd6\x23\x4d\x9d\x0b\x5e\x4c\xa3\x7d\xfa\xe7\x3b\xe4\x27\x6d\x14\x5c\x78\xc8\x42\x1a\x29\xf8\x5e\xc1\x06\xf5\x1e\x79\x69\x27\x2a\x5d\x19\xf2\x42\x38\x0c\xca\x82\xa1\xa9\x87\x0d\x72\x29\xf0\x1f\xa4\xea\xbd\x6d\xc8\x1c\xd3\x1f\xa2\x8a\x18\x92\x90\x8d\xdc\xcf\x35\xdc\xb3\xb3\x9b\xd6\x9e\x9f\xd3\x65\x3a\xc8\x7b\x9e\xff\xb3\x01\x6f\x2e\xc2\x50\x2b\x0b\x86\x60\xd9\xa8\x1b\xa8\x81\x12\x96\x10\x54\x14\xeb\xb1\x79\x59\x73\xb6\x12\x52\x37\xf0\xfc\xa9\xce\xda\x58\x45\x06\x5f\x69\x1a\xed\x3c\x78\x72\x74\xc2\x63\xbc\x45\x30\xa6\xfc\x7a\x6c\x27\x6e\xe9\xc8\xd3\xeb\x23\x84\x6c\x16\x1b\xbb\x96\xea\x29\xfa\x88\x98\x5f\xc4\x36\x1b\x74\xe6\x86\x2f\x8f\x83\xaf\xf4\xca\x97\xb4\xcf\x4f\xe7\x8c\x3b\xa9\xf3\x3d\x4f\x67\x51\x55\xf7\x10\x16\xe1\xd6\xe8\xee\x60\xd4\x6f\xee\x25\x33\xfc\x5d\xf0\xa7\x5e\x37\x04\xe2\x43\xf7\x30\xfa\x51\x4d\x82\x7c\x5f\xf6\xd8\x60\x5d\xeb\xfb\xa9\x49\x32\xf8\x50\x5d\x5c\x37\x8b\x40\x68\x02\xbe\xea\xbd\x9b\x47\x02\xc3\x9f\x61\xd7\x4c\x7f\x7a\x81\x40\x18\x7d\x3d\xa5\x67\x3a\x3d\xd1\xda\xf3\xd2\x6f\x9e\x86\x07\xe1\x50\xe2\xb1\x29\xd3\xf1\x92\x93\x18\xd6\x0d\xb2\x4a\x80\xaa\xd6\x2e\x20\xd3\xa6\xef\x01\x2b\x4a\xce\x59\x7f\xed\x67\xef\xd3\x9d\xf4\xac\xae\xef\xbe\x92\x82\x6b\x10\xb9\xf7\x80\x50\x11\xc6\x98\x67\x25\x48\x31\x45\x00\x4a\x94\xde\xd3\x5d\xd3\xfb\x05\xae\x8a\x88\xd1\x34\x7c\x3b\xca\x3c\x37\xef\x03\xa7\x89\xb9\xf4\x08\x8b\xce\x11\x46\xad\x25\x24\x1f\x4f\x21\x03\x67\x64\xc7\xf4\xd0\x6a\x6f\x70\x8f\x08\xc6\x21\xc6\xd9\x34\x2f\xb7\xbc\x16\xdd\x60\x27\x08\x4a\x9d\x86\xe1\x55\x3f\xb1\x15\x6c\xfa\xb7\x61\x8f\xfe\xab\x9f\x6e\xa7\x57\x4a\xcf\xd5\x97\xa0\x18\x02\x5e\x22\x57\x66\x52\x4e\x94\x14\x74\x8e\x92\x5b\x98\xfe\x66\x6e\xf3\x57\xb1\x0c\x05\x66\xcd\x5c\x56\x5e\xde\x4b\x35\x85\x5e\x22\x2e\x9e\xf5\x26\x6a\xcc\xfe\x92\x92\x78\x4c\x6a\x33\x7f\xcf\x89\xad\x83\xac\xc4\x51\x0b\xb8\x31\xe6\x48\x24\x26\x20\x4e\x7a\x62\x02\xbe\x23\x49\x40\x1c\x22\x28\x24\xbb\x48\x74\x6f\x5d\x77\xd3\x01\x72\x4f\x62\xd4\x4b\xb7\x2d\x97\xb9\xbf\xf5\x2d\x23\x37\xe4\x7e\x38\x19\x67\x63\x58\xb4\xee\xff\xa2\x29\x62\xb6\x67\x7f\xc4\x4d\x49\xe7\x8e\xe8\xdc\x2e\xea\x9c\x2f\x55\x00\x80\x50\x2a\xc8\x9d\x29\xcc\xce\x78\x58\x8f\x03\x28\x20\xf0\xe4\x99\x13\x16\xdc\xfa\x7e\x04\x40\xfe\xed\xf7\x33\xdd\xbf\x78\x8f\xb9\xd1\xab\xcb\x7e\x17\x99\x46\x59\x21\x78\x2b\xa7\x75\xc3\x65\xae\xff\x97\xfa\x0c\x0a\x64\x25\xf4\xc0\xfd\x32\x80\xcd\xfd\xd5\xf0\xbf\xfa\xe9\x39\x96\x6b\x72\x63\xb9\x88\x64\x5f\xfb\xcf\x96\x2b\xaa\x5d\xf4\x2f\x97\xeb\x82\xcc\xbe\x5b\xae\x0c\xb2\x87\x1b\xd7\xdd\x4e\x03\xd2\xc3\x21\xc2\x6d\xc3\xee\x4a\x73\xff\x21\xce\x81\xe6\xde\xcd\x05\x71\xd6\x54\x36\xb0\x97\xda\x70\xd2\xfb\x16\x03\x3a\x7e\xd8\xb9\xe3\xb9\xb7\x58\xe6\xed\x88\xf4\xbe\x05\x2b\x0f\x60\x35\x77\x4e\x01\xab\xb8\x2a\x6f\xd4\xdf\x73\x02\x6c\x80\xed\x09\xab\x80\x28\xe2\x4f\xdd\xc4\x41\x49\x91\xbb\xe8\x80\x20\xf7\x39\x15\xbf\x11\x92\xc1\x42\x5b\xe2\x12\x6c\xb8\x50\x5e\xb6\xfa\x87\x0c\x1c\xe9\x81\x5c\x47\x38\x70\x56\xd0\xf8\xe6\x48\x66\x58\x39\x00\xf7\x8c\x18\x62\xb5\x36\xe2\xb1\x49\x96\xcf\x9d\x3c\x7b\xbe\xb7\x77\xa2\xf4\xdd\xf8\x1f\x66\xfe\x27\x12\x8b\x59\x23\x84\xc0\xbe\xc4\xab\x46\xf2\x7f\x48\xcb\x4f\x9c\xeb\x1d\x4f\xd9\x40\xbc\x87\x4b\x15\x4d\x84\xbd\x33\x53\x35\x6a\x2c\xf1\x0b\x98\x57\x32\xe4\xb8\xb2\x85\x05\xb6\x8e\x4b\x5d\xd8\xc1\xc5\x3c\x11\x6a\xa3\xbf\x74\x90\x8b\xf1\x97\x0c\x8f\xe8\x10\x3a\x5e\x30\x96\xb8\xa9\x61\x49\xe2\xa6\x99\x18\x5f\x25\xbc\x31\x33\xe1\xcd\x6f\xa9\xaa\x4d\xb6\x73\xf5\x19\x36\x9d\xaf\x3a\xa7\x08\x9c\xfb\x7c\x63\x98\x7c\xa0\x16\x37\xe4\xc7\x40\xde\xe4\x29\x65\x74\xea\x9e\x93\xeb\xdb\x5a\x18\x15\x96\x61\x20\xdd\xa1\x64\x9c\xbc\xce\xca\x85\xac\x0f\x60\x7a\xce\xf9\x60\xe9\x47\x54\x5d\xc3\x27\x59\x9e\xe2\xe4\x52\x26\xd1\xea\x61\x2f\xe5\xb5\x5d\xc3\x66\xa6\x79\xe1\xd0\x77\x09\x7f\xa2\xbf\x23\x7c\x5b\x3d\x0f\xcf\x11\xda\x5a\x9e\xcb\xa3\xe9\x02\xba\x08\x7c\x06\xf1\xd4\xb2\xc8\x6d\xc5\x85\xee\xc7\xbf\x36\x43\xd9\x5c\xcf\x92\xaf\x65\xc8\xe8\x6f\x3f\x21\x99\x9f\xc3\xba\x70\x2a\xd6\x81\xb0\xb5\x44\x24\x76\x02\x97\x72\x7f\xfe\x54\x9e\x9f\x1a\x66\xbe\xfb\x54\x9e\x9f\xda\x27\x3f\x15\x9b\x0c\x83\x5d\xa2\xfe\x0f\x14\x61\xf6\xbc\xc4\x95\xcf\x11\xab\x41\xc0\x91\x98\x35\x8c\xb7\x3e\xe2\x97\x10\x9d\xe1\x93\xdd\xf1\x8d\x20\x51\xf8\xdd\x74\x35\x5e\xd9\x38\x97\xd7\x61\xb0\x84\x4e\x88\x0e\x8f\xb8\x08\x88\xf8\x61\x13\x94\xe2\xd9\x87\x42\x5b\x94\xea\x5f\x34\x67\x68\x68\xe7\x20\x2c\x4c\x9c\xfc\x6b\x3b\x17\xe6\x02\x8a\x57\x8d\x32\x12\x24\x8a\x74\xc6\x42\xca\x79\x96\xec\x32\x05\xd1\x8b\x01\x04\x21\x79\x7a\x36\xe2\xc5\x7f\x35\xd8\xb8\x3a\x5f\xfc\xe5\x19\x02\x26\xe4\x72\x91\x41\x54\x43\x18\xa0\xfc\x11\x1d\x9a\x39\x68\x99\x21\xb9\xd4\x05\x43\x8e\xeb\xe4\xc1\x2e\x24\xa1\xe4\x44\xa1\x47\x3f\xfb\x1b\xa7\x36\x03\x06\x94\xb8\xdf\xde\xf8\x9c\x70\xd9\x38\xcc\x4e\x87\x14\xb1\x71\xe8\x86\x0c\x82\xc8\xfc\xda\xa1\x0d\x39\x30\x60\xb5\xa7\x4c\xc2\x22\x72\x0f\x2e\xf7\x66\xad\x4f\x7e\x60\xa5\xdc\x94\x6d\x32\x73\xf2\x0a\x36\x5e\x70\x6a\x32\x10\xed\x3d\xee\x9d\x14\x0b\xf8\x9b\xde\x8d\x20\x90\xa0\x7b\x5b\xd2\xfe\x4a\xc5\x72\x75\x6c\xf9\xf5\x0b\x6e\xa5\xe0\x32\xce\x02\x52\xe5\x38\x74\x6e\x31\x81\x9e\xc5\x0a\x06\x4e\x1d\xf7\x25\xc6\xbf\x48\x39\x3b\x71\x4b\xd1\xac\x78\x67\xd7\xdc\x74\xbe\x22\xca\x56\x30\xad\xc7\xc7\xce\x20\x71\xda\x51\x12\x00\xbb\x02\xb9\x06\x37\x26\x0b\x11\x96\xfe\x93\x3c\x30\xc1\xd3\x2c\x36\x43\xa4\x01\xa4\x8a\x86\x57\xad\x77\x58\xca\xa1\xfd\xc7\x66\x5b\x9e\xd7\x64\xb3\x28\x41\x81\x81\x12\xd5\xe5\xec\x4c\x6e\x9c\x7e\x4f\x74\x81\xeb\x56\x71\x0d\xf9\x08\xcd\x04\x3f\xa3\xe0\x66\xb9\x5b\x72\x7f\x45\x27\x07\xf7\xf4\x49\xb0\xd7\x5a\xfb\x7b\x58\x95\x20\xfa\x0d\x25\x8d\x22\xfc\xc7\x7d\xd8\xb4\x32\x21\xfb\xc4\x6a\x0f\x09\xe1\xe2\xee\x92\x05\x38\xd2\xc4\x87\x3b\x8d\xd8\xfc\x90\xd3\x38\x70\x3c\xca\xca\xaf\x79\xc4\xa6\x2d\xe5\xa8\x0b\x59\x78\x30\x02\x2e\x69\x23\xd2\xcf\xce\xe0\x0e\x68\x11\x80\xd0\x99\xf9\xc9\x6e\x45\xdf\x27\xf1\x45\x6c\x27\x3e\x42\x76\x29\x1d\xb3\x13\x4c\x9a\x65\x20\x7e\x2c\xde\x96\xad\xfe\x6a\x7e\x58\xda\x5c\x71\xb5\xd8\xc2\x91\xaf\xd8\xdf\x35\x6a\x15\xf1\xdc\xee\xf8\xa2\x69\xc0\x11\x99\xa8\x18\x04\x89\xb7\x7f\xc8\xfa\x2c\xd9\xe6\xe5\x3d\x07\x1a\x6a\x7c\xf1\xd9\x1f\x17\x32\xdc\x32\x71\xe8\xde\x6c\x48\x74\x0f\x3b\x60\xf2\x6d\xdc\x69\x7a\x5e\x65\xa4\x22\x1e\xef\x90\xc6\xf5\x1c\x7b\x51\xd3\x52\x4f\xf2\xbb\xd9\x88\xe6\x99\x7c\x67\x91\xba\xa9\x14\xde\x9e\xe3\xeb\x39\x9d\xd5\x2f\x19\x35\x81\x6f\x26\xc4\xed\x48\x0c\xff\x72\xb2\x0a\x3c\x27\xa4\xd1\xe0\xc6\x04\x88\x14\x68\x19\x20\xff\xff\xae\x11\x16\x22\x2b\xb0\x9a\x32\xeb\x9e\xd9\x83\xd0\x69\xb4\x6f\xc1\xec\xbe\xef\x4f\xb2\x07\xf1\x3f\x8b\xbf\xea\x83\xe9\x69\x54\x2f\x6f\x7d\x73\x65\xdd\x81\x1d\x12\x56\x8e\xe6\xdf\x0e\x43\xce\x31\x1e\xbc\x58\x80\x86\xdb\xce\xb7\x63\x38\xdd\xf8\xdc\xca\x5d\x88\x31\x1a\x9d\x3d\x1e\xeb\x82\xe6\x1b\x5e\x0d\xf5\x3b\x52\x4e\xee\x97\xbf\x5c\x8a\xd2\x9f\x36\xd9\x77\x83\xf8\xd3\xce\x1c\x3b\x04\xd3\xf2\xbc\x09\x3d\xd5\x73\x56\x5a\x9c\xb8\x7a\x26\x13\xa6\x7d\xe8\xb6\x22\xf4\xb2\x08\xaf\xb8\xe2\x52\xa8\x63\x97\x63\x05\xeb\x89\xff\x2d\xdf\x75\xa9\xe3\x4c\xcd\x27\x66\xd3\x41\x5c\xcd\xd7\x99\x9f\x14\x13\xc8\xcd\xd9\x6a\x39\x5e\xde\x4e\x52\xc7\x16\x0f\xd9\xf3\xdc\xe2\xe9\x54\xb4\x4b\xd5\x21\x68\xa1\xdd\x5c\xc3\xa2\xbe\x3a\xeb\x5c\xcd\x9b\xeb\x3e\x63\x48\x29\x3f\xb8\x7e\x15\x5b\xe9\xae\xfe\x4f\xcf\xef\xd9\x41\xda\xe4\x16\x95\x24\x39\x90\x53\x0f\x2a\xda\x39\xc7\x2c\x53\x89\xe4\x42\xb2\x15\x8a\x5c\x1b\x96\xbb\x3c\x92\x40\xc8\x89\x57\x6c\x5a\x88\xb1\xe6\x8a\x25\x0e\x4d\x18\x3e\x86\x05\x48\xb1\xb4\x95\xf9\x67\x4a\xfc\xb3\x2e\x57\xe3\xbb\x37\x2d\x89\xb8\xef\x4e\x4a\x7f\xff\xfc\x05\x59\x46\xcf\x65\xfc\xab\x66\x41\xae\xa1\x73\x0c\xd5\x1d\xbb\x84\x6d\x68\x72\x8f\x3a\x2a\xab\x9b\x6b\x5d\x42\x8d\xc9\xd6\xc0\x55\xe6\x9d\x0b\x2c\x24\x94\x9f\x42\x3d\x5d\x12\x3f\xcc\x22\x53\x80\x11\x9d\x81\xa5\x37\x95\x44\x56\x72\xdb\x88\x98\x56\xda\x3a\x1a\x43\xbb\x1f\xcb\xa9\x08\x28\xdc\x6b\x9d\xbf\x21\xc2\x83\x16\x6f\x8e\xec\x2f\xf2\xa2\x87\x3f\xca\x26\xd6\x9c\x70\xd3\xfe\x13\xcf\x68\x54\x7c\x2e\x61\x8b\x49\x5a\x9a\xf8\xab\xa2\x5c\x63\x94\x98\x97\xfd\x4c\x84\x1a\xe5\x3c\x18\xb3\x1c\xe9\xc9\x2e\xc1\x07\x63\xfb\x18\x64\xa2\x05\x0c\xd1\x71\xcd\xc4\xcb\x9d\xdc\x74\x06\x3b\xcb\xd0\x82\x48\xb5\x17\x5d\x59\x64\x2c\x98\x1a\xd0\xa0\x22\x49\x3e\x83\x7d\xbf\x1e\x51\x8e\x0a\x3d\xaf\xbb\xc1\xd6\x58\x8a\x1f\xb8\x5f\x29\x7f\xbb\x7f\xcb\x8c\x96\xb6\xdf\xe2\x18\xab\x4c\x25\x88\xdc\x0e\xdd\x5a\x25\x12\x9b\xfd\xef\xe4\x7b\x50\x52\x74\x56\xd1\x1c\x74\x17\x53\x6f\x19\xc1\xf6\x63\x56\x85\xc2\x0c\xb1\x8c\x23\xdb\xb0\x8f\x33\xb2\x2d\xb0\xb5\x5a\x83\x75\xf2\xbe\xc8\x9b\xac\x3d\x3b\x61\xe5\xf7\x68\xe6\x8f\xb4\x36\x2e\xc2\x68\x83\xe5\x1b\x19\x9c\x3f\x6b\x95\xb0\x53\x67\xc8\xc7\x61\xd6\x3d\x65\x68\x14\xe2\x68\x0b\xd4\xfa\xb9\x22\x96\x6b\x21\x48\xc8\xcf\x67\x98\x2f\xc4\xcb\x94\xff\x8b\x19\x70\x1c\xdb\xb4\x2d\x37\xaf\x12\xeb\x55\xe2\x27\xca\x0e\x9f\x65\x04\x82\xbf\x76\x67\x17\x5c\x79\xc0\x05\x22\xae\xea\x7c\x10\x6f\x1d\x1f\x5a\x86\x21\xfe\xa5\x3d\x2b\xc8\x2a\x4b\x8c\xae\xab\x50\x7d\x3c\xf1\xfa\x09\x66\x48\x2b\xd7\xa5\xf8\x5a\x09\xc0\xde\x5b\xe2\x68\x32\x4c\xd9\x67\xc1\x30\x3b\xcc\x11\x2f\xe7\x30\x57\xdb\x72\x82\xaa\x8f\x8e\x75\x61\x65\x8b\xa1\xfa\x11\xa2\xeb\x89\xd2\x8c\x6d\x8c\xc8\xa6\x29\x80\x62\xec\x07\xce\x9e\x60\xb9\xcb\x1c\x1e\x39\x24\xb4\x2a\x6e\x64\x2b\x0e\x46\x15\xc7\x65\xb4\x52\x16\x35\x58\xc5\x53\x61\x5e\xb4\xab\x11\x4d\xa3\xc3\xea\xb2\x89\x8b\x1b\x0b\x56\x24\xa3\xe3\xd4\xd8\x8b\x6b\xf7\x2c\x94\xbf\xe6\x2e\xf1\x6f\xb4\xe7\x6d\xb4\x67\xf7\x92\xd8\x77\xc9\xeb\xd8\x4e\x06\x7c\xb0\x52\xd3\xee\x43\x7c\x91\xa5\x3d\x77\x96\x0c\x6f\x3e\x24\x9f\x06\x00\x2b\x02\x2e\xac\x62\x4d\x13\xe6\x5b\xdc\x41\xb0\x0a\xca\xdd\x1b\x66\x1c\x58\x69\xc7\x56\x0d\xa6\xe0\x90\xfb\xee\x58\xa0\x4d\x2c\x8b\xed\xba\x44\xbc\xfe\x32\xf9\x72\x89\xb3\xfc\xf4\xa7\x2f\x59\x69\xa4\xf0\x9f\x7c\xc9\xbe\x1c\x31\x33\xc0\xd0\xde\x38\x46\x6a\x2e\xbb\xa3\xfa\xcd\xcd\x57\xd0\x2e\xf3\x93\x0f\x7f\xe1\xd9\x77\xcf\x7b\x87\x26\xf2\xf8\xdd\x93\x54\x81\xcd\xc2\x90\x59\x4d\xf4\x77\xcf\x92\x5b\x59\x97\x45\x17\xf5\xc3\xb9\xf5\xbe\x79\xc7\x1e\x2c\xef\x2c\xcb\x1c\x6c\x9c\xea\xcb\xb4\x5a\x2f\xae\xcd\xda\x16\x22\xd6\x5c\x6e\x27\x1e\x9a\x56\xf9\x79\xd4\xf7\xe3\xce\xdc\xd0\x36\x0d\x34\x54\x16\xcd\x44\x02\xee\xc5\x13\x92\x77\xe5\x40\xe0\xb6\xe3\xee\xc0\x6c\x9c\xca\x5f\x96\x7b\x2e\xe4\x54\xdc\x1b\x5b\x50\x91\x4f\xd5\x68\xee\x65\x77\x68\x63\xb5\x25\x56\xd1\x9d\x3e\x4f\x78\x61\x06\xc9\x07\x4c\x6f\x3a\x71\x67\xd6\x09\xab\xa3\xf9\x33\xc5\xcf\x55\x55\x3a\x59\x7c\x79\x5a\x73\x3a\x15\x24\x1e\x9a\x67\x54\x62\xa1\x90\x02\xcc\x79\xb0\x06\x54\x74\x8d\xf2\xb7\x2d\xdb\xa9\x12\x8f\x98\xce\x3d\x5c\x9a\x48\x5c\x1b\xd9\xa8\x78\xb9\x70\x76\x75\xa5\x6c\x26\x17\xd1\x3e\xb5\x2f\x27\x56\xce\xd6\xed\xd7\x6e\x7f\xca\x64\x0e\x15\xf2\xce\x8b\x87\x24\x23\x18\xbd\x43\xc7\x88\x35\xcd\xcf\x1e\x13\x47\x96\xb3\x61\x78\xcc\xfe\x8d\xb8\x76\x8a\xc5\xb5\x75\xd9\x91\xb7\x78\x3c\xae\x1b\x0e\xd0\x54\x3b\x2e\xa4\xbf\xa2\x0f\x0c\x76\x86\xe8\x4f\xf9\x87\x93\x4c\xe7\xbc\x2d\x84\x25\x67\x89\x6b\xa3\x60\x4f\xfe\x24\x2f\xcd\x06\x36\xe1\x92\x7b\xdf\x0a\x4c\x8b\xe8\xc6\x92\x58\xbb\x3c\x4b\x57\x83\x3a\xb8\x6e\xc6\x15\x09\x36\xbc\x6a\xf7\x19\x45\x82\xdd\xa0\x0e\x1c\x6b\xc7\xf6\x33\xb5\x10\xe8\xed\xa8\x50\x66\x24\x3f\x2d\x9c\x1a\xa8\x36\x66\x22\xba\x10\x2b\xd1\x91\x1b\x8e\x97\x4e\x47\x96\x7c\xe7\x7a\xad\x0a\x2a\x16\xcc\xf2\x0d\x16\x65\x90\xb7\x52\x9f\x9e\x97\xfa\xbc\xf8\xec\xb8\xa6\xfe\xfe\xbb\x21\x0a\xae\xfa\x89\x8a\xef\xf2\x92\xeb\x7a\xe5\xdc\x2f\xe2\x0e\x26\x25\xc5\xf3\x51\x5f\x7e\x52\x3b\x66\x2c\x1c\xdc\x43\xdf\xf1\x71\x70\x69\xfb\x4e\xc7\x28\x21\x3b\x9f\x7d\x8f\xfb\x85\xb3\x2f\x4b\xe7\x50\xdd\x31\x58\x0d\xb8\x17\x72\x14\xae\xf2\xc0\x10\x1f\xdb\xa2\xa8\x29\x1d\x7b\xd2\xcc\xd4\x48\x03\xbc\x39\xa1\x64\x52\xc9\x58\x63\x40\x13\x01\x82\xb2\x1f\x8a\xa0\xe2\x1c\xdd\xad\xd2\xc2\x57\x6c\xfa\x95\x3e\xb4\xe2\x5b\x8f\x56\x66\x71\x87\x21\x25\x6a\xf0\x37\x9b\x29\xa7\x88\x53\x8f\x83\xda\x9c\x6d\x0e\x1f\x4e\xbe\x8e\x09\x98\xd1\x38\x51\xb9\x3d\x42\x3b\x01\x43\x2b\xd9\x95\x58\x07\xbd\xe2\x0e\x8a\xbd\x37\x17\x00\x48\x5e\xa4\x24\xcb\xd5\x19\x57\x5d\x3b\xdb\xd6\x5d\x9e\x0b\x19\x57\xae\xd9\x9d\x05\x29\xe4\xe8\x5f\xed\x5d\xe7\x9c\xb7\x2f\x6e\x07\x58\xbe\xd8\x5b\x1c\x99\x02\x59\x79\xdf\xce\x0d\x4e\xfd\x54\x72\xc2\xa0\x83\x0e\x74\x3c\x1c\x1c\x04\x48\xf8\xa8\xdb\xda\xc8\xdd\x08\x98\xc9\x77\xe8\xbe\x52\xb7\xe6\xea\x8b\x1b\x6d\xd7\xcf\x54\x75\x76\xc2\x02\x6e\xaa\x02\x6b\xe2\xac\x95\xa8\x12\x8e\xdb\xc9\x1e\xe4\x74\xdf\x1e\x61\x50\xc9\x82\xe6\x73\x4e\x6f\xb2\xce\x7e\xe4\x99\x3e\x88\x85\xf0\xa8\xca\xb2\x34\x6d\x5d\xac\x7c\x60\x50\xd3\xb1\x6c\x00\x4f\x59\x26\xf1\xc0\xe8\xea\x81\x71\xf2\x01\x23\xd0\x13\x90\xdb\xdc\x3d\x56\x13\x0a\xca\x6a\xce\xd7\xa1\xbc\xc9\x9f\x56\x5f\x36\xbb\x26\x87\xa4\xd6\x30\xbb\x80\xb2\x51\x60\xfc\xc6\x14\xc4\xcb\x67\x2b\x04\x83\x1f\x11\xa0\xa6\x6d\xeb\xf4\x22\xa0\xa1\xca\xf1\x47\x55\x7a\x03\x42\xd4\x05\x49\x44\x6f\xb6\x56\x00\x39\xd3\x39\x52\x02\xcf\x45\x81\xde\x4e\x9e\x22\x87\x5b\x9e\xb7\xc7\xc3\x71\x87\x99\xef\xc7\x13\xff\x1a\xf3\xa0\xdb\x91\x1d\x49\x9f\xc1\xd9\x31\x45\x83\xb4\x18\x7e\xb6\xa3\x56\x82\x97\x47\x09\x6d\x3a\x8e\x75\x71\x75\x7a\x87\x9d\xbb\xb4\xe6\x54\xfc\x67\xd3\xd9\x11\xf6\xc4\x9c\x71\xe9\x15\x87\x02\xb7\x8e\x07\x9f\xeb\x35\x60\x69\x16\x2c\x86\x8d\x7b\x40\xd9\x24\x06\x2f\x32\xa6\x14\xcf\xe7\x96\x36\x2d\xce\x92\x7a\xb0\x6c\x3a\x27\xa6\x39\xd2\xfa\x9e\xf7\x66\x89\x66\x04\x2f\x15\x88\x12\x4d\xac\xd1\x99\xc4\xf3\xfd\x21\xf3\x13\xf7\x2a\xba\x2c\x22\xc1\xc0\xc6\x35\xb4\x19\x23\xd1\x7b\x8a\xf7\xa8\x1f\x50\x34\x91\x33\xd6\x31\x84\xc7\x57\x63\xaf\x41\x7c\xad\xcd\xfe\xca\xb6\xa2\xff\x68\x62\xcf\x73\xdb\x71\x59\xca\x54\xcd\xf1\x05\x4d\x31\x96\x16\x7d\x4a\xe5\x47\x44\x47\x09\xe4\xd2\x91\x76\x53\x11\xdb\xc7\x78\x8e\x8e\xd5\x6c\x3b\x7e\x6e\x73\x74\x04\xb8\x2d\x9e\x9b\xef\x24\x42\xbf\x9f\xba\x0e\xab\x6a\x25\xbc\x54\x65\x4d\x93\x47\xc2\x6b\x16\x95\xf7\x83\x95\x23\x3e\x10\x17\x09\xb7\x0c\xf8\xcc\x2d\xa7\x98\x50\x4f\x76\x75\x7f\xf8\x11\xf7\x73\x77\x74\x42\x26\xf7\x1c\x0f\xc5\xaa\x45\x27\x7e\xee\x70\xe4\x6e\x37\xcf\x1d\xf1\x5c\x66\xda\xfc\x6e\x3c\xff\xde\xf5\x66\x6d\xd0\xd6\x8e\xbd\x4d\x9a\x6b\x61\x4c\x2c\xdf\xf6\x80\x24\x5c\x43\xd7\x5e\x21\xdb\xe4\x32\x95\x28\x99\x32\xbd\xe9\x66\x2a\x50\x71\xfc\xfe\x6e\xb4\xe9\xa7\x6e\x24\xce\x77\x0f\x7e\xe7\x5d\x6a\x7a\xde\x92\x00\x78\x53\x12\x62\xea\xff\x77\xee\x35\x3b\xf2\xe2\xff\x94\x7b\x2d\x94\x78\xfc\xa8\xfd\x3f\x7b\xda\xe2\xd8\x83\x0b\x77\x0f\x70\xf8\xbf\x7b\x35\xb2\x58\xfe\xd3\xa8\x52\xff\xb1\x6f\x6d\xa5\xae\xdd\x6c\x89\x66\x6e\x74\x3a\x74\x62\x61\x6e\xb9\xe4\x62\x09\x7e\xf0\x40\xe3\x66\x4e\xff\x89\x74\xff\xd3\x49\xaf\xdd\x26\xb0\xbf\x9a\xf5\xf3\xf7\xef\x1a\xde\x75\x4e\xf0\x2e\xa3\x4c\xf4\x59\x10\x5e\x9f\xc9\xbb\x62\x3d\x94\xdb\x9c\x56\x8d\x89\xf3\x62\xd6\x7d\x31\x97\x78\x51\xa2\x9f\x5c\x6d\x23\xeb\x5f\x39\xb6\xe4\x88\x6a\xd9\xe3\xb6\x65\x61\x2e\x02\x7b\x4e\x34\xed\x90\xd6\x8f\xf1\x01\xe3\x58\x6e\xca\x2c\xea\x24\x94\xc4\x80\xdf\xb7\x38\xa5\x0d\x0f\x6d\xbe\xae\x9e\x31\x7f\x96\xc6\xce\x33\x93\xf1\xed\x86\xa6\x13\xe7\xa1\xc3\x8d\x87\x24\x66\x70\xe4\x3c\xb4\xab\x3a\xab\xfa\x04\xdd\x05\xbe\xc1\xb2\x14\x44\x13\xb9\x3f\xf8\x65\x8e\x3e\x20\xf3\xbc\xc5\x7f\xfe\x8e\x83\xe9\xeb\xf1\xb3\xef\xb6\x7c\x95\xf8\x30\xab\xfa\x52\x62\xcb\x57\x12\xd5\x5e\x0a\x95\xeb\x27\xaa\xda\x6d\xa3\x70\xdd\xc6\x88\x86\x43\x19\x42\xfb\x72\xf9\xfb\x92\x7e\xd9\x43\x1d\x3a\xf7\xe2\x9a\x95\x27\x2f\x2e\x4f\x86\xea\xd6\xd3\xd3\x5f\x97\x0d\x8b\xdf\xe8\x0b\xd2\x8e\x2f\x62\xa3\x91\x3e\xc5\x88\xd3\xfe\x90\x2e\x8b\x4d\xb5\x63\x8d\xc1\xb6\x66\xae\x17\x6e\xff\x8f\x4d\x1d\x94\x0c\xad\x62\x7f\xa6\x42\x74\xa9\x5e\x3b\xda\xd9\x34\x97\x88\xbd\x05\xff\xd8\x81\xc4\x41\x45\x79\xb4\x55\x63\x5b\x93\x1c\x1a\xa9\x64\x09\xff\x31\xd0\xae\xe1\x60\xf4\xec\x79\xa3\xe7\x31\x8d\x64\xe5\x1a\x1e\x9a\x92\x51\xa2\xf9\x2a\x55\x0b\x6b\x05\xa1\x89\x27\x4b\xa4\x85\x25\x0f\x24\x4e\xc7\x6e\x82\x0f\x8c\xc7\x3c\xa7\x43\x37\x72\x9d\xa1\xe8\xb1\xf4\x81\xec\x77\xd9\x61\xeb\x4d\x6f\xa3\x85\x95\x9d\xeb\xe9\x66\x7a\x56\xd7\x7a\x8b\xc8\x25\xa7\x90\x45\x6f\x24\x41\x63\xb6\x10\x74\x2e\x63\x6b\xc6\x64\x91\xb9\xd9\x9c\x57\x59\xd7\xc3\x46\x54\xf7\x8e\x75\x17\x3b\xc2\xe2\xdf\x40\x8f\x8d\x94\xae\x69\x55\xc7\x91\xa0\x8b\xbb\xf4\x4c\xa5\x47\x5a\x37\x00\xfb\x19\xa6\x20\x6e\x0f\xe2\xda\x01\xf5\x9f\xe9\x4f\x4f\x8b\xdb\x59\x4f\x91\x9c\xf7\x49\x1b\x9a\x90\xc1\xc4\x16\x72\x33\xe7\x6c\x84\x9f\xc2\x84\xb2\xb7\x7d\xce\x02\xba\x84\x9e\x8f\x69\x3c\xe4\xec\x48\x64\xc8\x12\xf4\x4c\xe7\x99\x3e\x23\x55\x2c\xbf\x10\x20\x8e\x67\xd3\xe1\xac\x74\x65\xab\x52\xc0\xbd\xcf\x4c\xea\x28\xce\x6a\x9a\x4a\x89\xfb\x3b\x78\xda\xe3\x48\xe8\xc8\xfe\x32\x7b\x3a\x60\x6d\xc8\x01\xd8\x5d\x7b\x87\xfc\xa3\x82\x65\x9a\x86\xfe\x17\x84\x4d\x3f\xf1\xe5\x46\xe2\x11\xb9\xeb\x33\xcb\x69\x8d\x5d\xca\x9d\x96\x07\x7e\xcd\xf9\x35\x32\x0e\x84\x27\xf8\xe1\x47\x6a\x2b\x7a\x69\x7b\xf3\x8e\x9f\x66\x83\x04\xe3\x46\x9c\x3d\xd5\xde\x4f\xb4\x4d\x96\xd2\x98\x8f\xd5\xc4\xce\xc7\x7a\xa2\xe3\xd4\xda\xf6\xea\xc0\xba\x8f\x11\x04\xf5\x4c\x78\x54\xf7\x08\x8b\x7c\xcb\x9a\x09\x66\x46\x53\xf0\x87\x2a\x87\x4e\xb8\x58\x3f\x13\xc8\x3e\xed\xf9\x54\x56\x4b\xb0\x7e\x82\xa9\x9e\x08\x69\x35\x3c\xb6\xd4\x99\xe1\x7f\x62\x0e\x74\xa6\x0c\x57\xb4\x9e\xc5\xa6\xe7\xe7\xd4\x8c\xb8\x81\xf2\xb5\x80\x99\xb9\x43\xe9\xf1\x49\x3f\x2f\x89\x41\xee\xd0\x6f\x31\xa2\x5f\xac\xe2\xc4\x02\x71\xe8\x97\xf8\xf8\x5c\xbf\x80\x61\x94\xeb\x9e\x97\xaa\xaf\xc4\xe8\xf5\x9e\x6e\x7a\xc1\x58\x30\x1a\xcc\x0c\xdd\x31\xdb\x1e\xe8\x3b\x35\x4b\xf5\xac\x04\x1f\x0c\x75\xb6\x6a\x27\x30\x74\xa6\x6f\xd9\x93\x12\xb1\x02\xb9\xd5\x00\xe6\xc4\x5a\x66\xb4\x23\x10\x55\x8f\x98\xd2\x2c\x46\x6e\xb6\xa8\x1e\x02\x2f\xc5\x90\x3b\x8a\x73\x08\x18\xdb\x0f\xc0\x3f\x74\x56\xf2\xdf\x7b\x17\x27\x3b\x56\x6a\xaf\xcc\x1a\x04\x44\x6a\xf9\x25\x34\x5e\x06\x1d\x55\x98\x05\x6d\x76\xe1\xa1\xc1\xfe\x1d\xa3\x8b\x16\x00\xe5\x28\x44\xf8\x04\xd5\x92\xb5\x1a\x4e\xb0\x79\xb7\x73\xd1\xd3\xfe\x56\x65\x0a\x22\x79\xf4\x2d\x60\x0d\xe0\x2e\x6f\x7c\x2c\x23\x00\x37\xe1\xd9\x02\xe0\xdc\xea\x78\x58\x50\x1c\xb8\x88\x0e\xdd\x74\x57\x3c\x50\x11\xa1\x01\x60\xa5\x00\xa2\x61\x34\xec\x41\x96\xd3\x1f\xab\xe5\xf4\x8a\xcc\x36\xb8\xd4\xd9\x3b\x64\x26\x5a\x92\x7f\x74\x02\x6f\x5b\x2b\x3e\xb6\x05\x65\x4c\x55\x96\xd5\x13\xa4\x95\xd6\xfa\x0d\x2b\x2b\x7e\x03\x9e\x91\xa4\x69\xf1\xac\xb7\x66\x78\xbf\x3f\x97\xea\x57\xc1\x11\xdd\x3b\x49\x23\x9f\xba\x3c\x11\x9e\x7a\x52\xf7\xe9\x56\x7a\xa0\x75\xa1\x31\xd5\xe9\xc1\xa3\xa7\xfb\x86\xaa\xeb\xaf\xe9\xae\x87\x6a\x15\x7d\x60\x40\x82\xaa\x0c\x83\x9e\x29\x41\x97\xd7\xbc\xb2\x01\xfe\xe9\x41\x60\x46\x79\xed\x53\xa4\xdb\x91\x32\x3c\xf0\xdb\x17\x17\x80\x20\xd8\x28\xef\xa1\x60\xfa\xd2\x42\x16\x3e\x12\x50\x3d\x54\x88\x58\x3b\x13\x82\x13\x4c\x6a\xe9\x58\xd0\x2a\x19\x60\xcf\x66\x29\x46\x35\x78\x6b\x84\x80\x47\x3d\x9f\x0d\x40\xfc\xcd\x34\x46\xc9\x57\x2d\x49\xa5\xcd\xab\x32\x26\xac\x2d\x78\x04\xd2\x82\x48\xfd\xe0\x3e\x00\xb0\x95\xde\xf4\x58\x50\x23\x7e\xec\x0c\xf9\x4e\x76\x56\x67\x2b\x55\xc5\x9b\xd3\x66\xba\xed\xdd\x7b\x1b\x18\xe6\x5b\xbb\xe7\xa8\x01\x9b\xa4\x5b\x52\x35\x9a\x55\x47\x03\x01\x2f\xd5\xbf\xc6\xf4\x7c\x9a\x0b\x90\x95\x72\xe8\xf0\xea\x59\x10\x91\xd4\xfa\x59\xf2\x2e\xd3\x6d\xef\xd9\x3b\xa3\xb4\x53\xaf\x0a\x23\x93\xc0\x5f\x74\x7f\x9b\xbf\x5f\xa4\x0e\x72\xbf\xa2\x4a\xe2\xfa\xf0\xfd\x09\x6c\x2d\x79\x00\x3f\x3f\xc8\xac\xe1\xc8\x11\xb6\x95\x05\xb0\x79\xd7\x22\xaa\xb4\x2d\x80\xc6\xe5\x44\x09\x86\x63\xbd\x8a\x89\x02\xda\xe4\x87\x39\x56\x9a\x9e\x7f\x0e\x64\xbc\x65\xb1\xfd\xf5\x16\x70\x9d\xe4\x95\xf9\x56\x58\x13\xee\xf8\xb0\x90\x95\xad\xe8\x47\xf3\x7d\x98\x6a\x16\xe8\x91\x5c\xa1\x60\x21\x47\xcc\x4c\xdd\xc7\x3d\x1a\xff\xa1\x47\x46\xf8\xda\xe9\x9b\x3d\x2a\x34\xdc\x1e\xad\xd0\xa3\x85\x32\xdf\x0a\xf7\x92\x93\xff\x50\x36\xf3\xd4\xda\xea\x1f\xd2\x23\x09\x59\x22\x32\xfc\x0f\xa2\xb6\x9a\x1e\xb5\xc1\xe1\x1f\xe2\x1e\x65\xd4\xf7\x3d\xfa\xf4\xbc\xd9\xed\x0e\xed\x13\x1d\xda\xa0\x43\x13\x65\x3e\x15\xae\x05\x2c\xe5\x21\x2f\x1d\x5a\xea\x27\xe9\x50\xd7\x99\xa2\x27\x67\x8a\x3a\x98\x22\xd4\x4f\x5f\xc2\xf4\xdd\xc9\xe3\xff\x37\x01\x1d\x59\xd7\xff\x99\xea\xdd\x8e\xf6\x00\x97\xc9\xb6\xba\xc8\xfe\x96\x69\xff\x32\xed\x76\x6c\x5c\xc1\x17\x90\x17\xf0\x14\x8e\x95\x3d\xca\xc9\xb4\x90\x69\x8e\x77\x76\x4b\xfd\xc7\x77\xa2\xb2\x59\x92\x56\x8e\x77\xea\x7f\x7c\xc3\x07\x30\x68\x4b\xf2\xe9\x9d\x39\xcd\xbd\x0b\x32\x9d\xdd\x66\xa9\xe7\x18\x32\xed\x67\x26\xda\x2c\x8f\xd1\x66\xd9\x59\x32\x30\xf3\xd9\xda\x2b\x33\x95\x3f\x84\x0c\x3a\x5b\x2d\x9b\xcc\x17\x01\xe4\x84\x59\xff\x29\x00\x5d\xd8\x2a\x02\xa5\x73\xc0\x56\x79\x2b\xa4\x14\x51\x10\xcd\x3c\x17\x57\xea\x0f\x13\x6d\xb8\xe2\x08\xc5\x12\x0e\x8a\x9c\x5c\xa6\x4d\x20\x47\x46\x92\x4a\x5f\x44\xad\x27\x33\xca\x81\xe2\x52\xf6\x89\x75\x1a\x0b\x8a\xcc\x2d\x5c\x28\x7c\xc1\x1f\xff\xf8\x77\xa3\xcf\x63\xf4\x27\x65\xc6\xd5\x2a\x09\x3a\xd0\x0f\x61\xfe\x9d\x82\x39\x84\x8d\x3c\x3b\xf4\x1b\xe9\x83\xef\xf9\x7d\xa3\xdf\x34\x5e\x4d\xff\x0e\xac\x64\x26\x5f\x21\xe8\xdc\x18\x38\x6e\x60\x65\x72\x22\x04\xaf\xf1\x43\x1f\xf2\x6f\xd3\xf2\xe1\x08\x12\x07\x7f\x77\xcc\xbf\xfe\x59\xdc\xca\xc8\x49\x04\x68\xff\x97\x50\x74\x58\x9a\x09\x2d\x0c\xd4\x6c\x5e\x37\xdd\x1e\xa1\x12\x42\x68\x0e\xff\x73\x5c\x80\xff\xce\xfc\x13\xe6\xe0\x30\x6a\x09\x4a\xc0\x1e\x40\xea\xa3\x19\xcf\x59\x23\x8a\x8d\xa5\xb5\xa6\x54\x8f\xa8\xe3\x90\xae\x06\x69\x5b\xdb\xe7\x3e\x0f\xdb\x0d\x14\x3b\xf4\x4e\x16\xb1\xd9\x89\x47\xd0\x5a\x23\x17\xa1\xb3\x98\x13\x3a\x53\x7b\x9a\xb5\x22\x45\xee\x6a\x8a\x23\xa1\x25\xc7\xbc\x04\x8c\x84\xec\xf8\xb3\x4c\x95\xb5\x3c\xb7\x9b\xd6\x06\xaa\x9f\x7e\x5e\xf5\x3a\x05\xca\x08\x32\xd3\x7a\xfa\x5d\x8a\x91\x0b\x64\xdb\x4c\x9a\xfa\x34\x2b\xa6\x67\x8a\x60\x75\x22\xfb\xfc\x38\xfe\x4d\xb3\x33\x4c\x46\xbf\x4b\xd7\x87\xc4\xc4\x74\x0b\xc8\xac\x97\x90\xe3\xfb\x5a\x3d\xad\xcd\x46\x33\xe3\x11\x66\xd7\xfb\x1d\xf5\xa4\x25\xd9\x32\x66\xd0\xab\x99\x50\x75\x4f\xca\xeb\xf5\x9f\x58\x8d\x2c\x92\x47\xbb\x38\xb0\xc1\xf7\x84\xa1\x73\x73\xec\xd1\x81\xce\x0a\xff\xb7\x05\xaa\x1f\x19\x70\xa1\x38\x2c\x26\x0a\x98\x35\xbf\x32\x90\x9e\x29\xf1\xbe\x88\x4e\xb2\xd3\xf6\x47\xe8\xe9\x1a\x8a\x51\xac\x6e\x3f\x20\x70\x94\x83\x19\xe5\x6b\xa0\x45\xfd\x30\x32\xe0\x6f\x2c\xf8\xd5\x3c\xed\xd8\xce\x3e\x00\x61\x83\x1f\x0b\xc6\x45\xdd\x4b\x03\xf3\xba\xeb\xb5\xb1\xa2\x03\x10\xe3\x07\x30\xd5\xa6\x52\x83\x81\xe1\xe1\xc0\xb6\x2d\xa2\xb5\x5f\x0b\xfc\x0c\xcc\xe5\x96\x91\x8d\x4f\xb8\xd0\x29\xa5\x08\xae\x8c\xed\x2d\x0f\xb4\xa5\x94\x01\x6c\xf2\x16\x08\xcb\xde\x98\xaa\x64\x53\x5e\x6b\x77\x04\xbc\xca\x73\xae\x23\xda\x40\x6e\xff\xd7\x04\xa0\x1b\x03\x45\x99\x02\x16\xa5\xee\x1e\xd8\x11\x05\x55\x1c\x30\x7c\x51\x0a\x5a\x86\x4b\x2c\xcd\x82\xe3\x5d\x3b\xe3\xed\xfc\xed\x50\xa7\x1c\x6a\xb9\xf6\xff\xc2\x50\x57\x18\xea\x40\x09\x64\x9c\xb7\xfc\x77\x63\x3d\xa6\x40\x71\xb3\xd4\xc5\x90\xf2\x18\xeb\x48\xed\x2f\x26\xe1\x7f\x74\xac\xf1\xbe\x76\x46\x7a\x4e\x8c\xb4\xeb\xbd\xc8\x98\xe0\x51\x0d\x77\x18\xee\x3b\x61\xd3\x51\x25\x0c\x1e\x45\x30\x94\x7e\x19\xff\x07\xe6\xb7\x20\x58\xc1\x4a\xdb\x43\x8c\x10\xf9\x82\x5e\xeb\x13\x82\x1b\xfb\x2c\x49\x34\x53\x71\xa9\x8f\x26\xbc\xda\x2b\x95\xb7\x17\x5b\x71\x25\xbb\xd0\xf3\x36\xc4\x99\x87\x4b\x51\xd0\x67\x25\x91\x4d\x87\x40\x8c\xe9\x9a\xdb\xf5\x3a\xbe\xf8\xc1\x98\x9b\xde\x60\x50\xff\xf6\x48\x11\xe4\xb0\x02\xdc\x7a\x12\xd3\xdd\x2b\x04\x18\x60\x1c\x6d\x3c\x34\xcb\xae\xe7\xf5\x8e\xeb\xe1\x5d\x48\xac\x81\xfe\x22\x22\x0c\x62\xf9\x0c\xdb\xa8\xe0\x6b\x5c\x07\xe2\x10\x00\x95\xa9\x53\xe6\xbd\x61\xc6\xf9\xe0\xd1\x27\x84\x67\x74\x46\xa1\xfc\x24\xf9\xf6\xa3\xad\xfe\x12\x33\x9a\x61\x7d\x8e\xda\x84\x33\x3f\xdd\x96\xd0\x28\x31\x8a\x8c\x49\x90\x95\x98\x20\xfd\x30\xdd\xf4\xea\x21\xc2\x0e\x5a\xdc\x57\x95\x49\xdd\x86\x9b\x85\x9e\xd7\xb3\x47\x88\xbd\x5c\x94\xe4\x39\x7f\xab\x2f\x26\x7f\xa2\x10\x5b\xc0\x95\xb4\x8e\xe0\x2f\x37\xbb\x73\x16\x37\x65\x86\xb6\x82\x12\x9b\xf3\xcf\x89\x43\x27\x39\x29\x13\xdc\xfb\x80\x61\x31\xac\xcc\xd1\xfa\x64\x76\x6b\xd5\xba\x5e\xb0\x6e\xe0\x8c\x53\x18\xed\x58\xc7\xdb\x0f\xac\x55\x46\xab\xef\x65\xe4\xde\xad\x81\xcb\xc9\x24\xa3\xd7\x63\x79\x4f\x92\x1c\x9b\x23\x86\xc4\x9a\x0d\xa8\x1f\x2f\x46\xff\x96\x9e\xdc\x79\xde\xea\x8e\x00\xc3\x82\xba\xee\xe7\x50\x51\x18\x3d\x6f\x8b\x61\x52\x3f\x4e\xe0\xfb\x45\x5c\xbe\x50\x86\x5f\xa0\xbc\x41\x14\xb9\x60\x27\xa5\x4c\xe6\xfa\x4c\x83\x57\x45\x30\x03\xbd\xae\x5d\x8a\xd2\x84\x86\x9d\xd0\x28\xc0\x59\x16\xad\xb9\x18\xc5\x04\xc2\x44\x77\xad\xaf\x96\xaf\x65\xcf\x51\xa9\x4b\xa8\x9d\x50\x2c\xff\xff\x9a\x95\x34\x2f\xac\x51\x42\xfb\x7a\xdc\xef\x5e\xb8\xbf\x4b\xb7\xbd\x79\x53\x9c\xe1\x1b\xb5\x98\x03\xe4\x58\xe6\x8b\xab\x3a\x05\xd8\x72\x57\x70\xcf\x26\x12\x42\xe6\xdf\xe3\x56\x9c\x7a\xde\xab\x49\xac\x7b\x33\xf5\x4a\x1d\x2c\x32\x07\xf4\x87\x28\x63\x09\x9b\xca\xfa\x48\x60\xbf\x40\xaa\xaf\xb5\xbd\xa7\xe6\x4a\x32\x4b\xf5\x88\x95\xad\xb0\xd3\xe7\xe2\xf5\x07\x54\xfa\xef\x09\xb4\xe8\xe6\x54\x82\x2c\xc2\x87\x19\x7e\x77\x73\x08\x54\xea\x9e\x60\x71\x6f\x9e\x17\xe6\xa5\xbb\xbd\x22\xa2\xbd\xd8\x9e\xcc\xfc\x6d\x24\xd2\xac\xf9\x98\x79\x35\x4b\x6d\x94\x94\xc5\x7d\x38\x12\x3f\xfb\x7b\x45\x70\x08\xf6\x4d\x24\x87\xf5\x53\x12\xc7\x40\x3b\x4a\x8f\x6c\xa7\xc3\x68\xc1\xa6\xe1\x50\x5b\x9d\xb8\xd7\x66\xd4\x4e\x33\xdd\xf5\x1a\x67\x23\xaf\x07\x30\x90\x00\xb4\xf6\x2d\xdd\x32\x92\xfb\x63\x45\xa5\x8b\xa1\xa7\xfb\x62\x9a\xaf\xbf\xa6\x7b\xae\xd9\xc6\xff\xc1\xc6\x3e\x44\x99\x18\x28\xcf\xaf\xa8\xef\x2f\x8d\x00\x33\x38\x53\xc2\xb5\xb4\xd7\x4e\x7e\xb0\x19\x55\xc9\x15\x69\xb9\x0c\x7b\xcc\x5c\x28\x6b\x0f\x2d\x15\xa4\xf2\x26\x96\xd7\x66\x49\x7e\xb4\x36\x6e\x59\xbe\x8a\xdc\xba\xad\x34\x99\xe9\x0e\x3d\xaf\x73\x96\x8d\x1c\x6c\x01\xd4\x7a\xcb\x9a\xf2\x0b\x85\xc2\x5b\xe5\x1e\x95\x4a\x0f\x65\x4c\xa4\xf5\xa6\xd1\x7f\x5e\x22\xfd\x87\xe4\xfb\x2e\xfd\x6c\xef\x15\xbb\x58\x58\xd4\x1d\x90\x96\x3e\x6b\xf0\xb4\x6c\x68\xcc\x46\x9d\x91\x55\x52\x16\x9d\x93\x16\xa2\x0a\x7e\x34\xab\xb2\xad\xfc\x69\x5d\x08\xe6\x75\x63\xb8\xd0\x5b\x46\x0d\x05\x21\xc0\xf7\x8b\xa0\xa3\x19\x0e\x52\x71\x40\xf8\xcc\x9e\x81\x07\x65\xa2\x04\x7d\xf7\xad\x06\x02\x6b\xc3\x95\xd7\xc5\x2e\xd5\x4c\x82\x66\xa5\xea\x0b\xc5\x72\x27\x56\xb3\x2c\x5e\x94\xb8\xac\x3e\x5b\xe9\xb0\x3c\x94\xcb\x07\x10\xf9\xdb\x3d\x30\xc6\x8f\x4c\xc9\x93\xba\x74\xde\x4a\x97\xe1\xa0\x5d\xa8\xf9\x0c\xba\xe5\xa3\x6b\xad\xa8\x62\x5b\xcf\x94\x8c\x20\xdc\x02\x72\xef\xa1\x28\xf6\x8a\xb5\x0e\x45\x73\x96\x85\xd8\x61\xa4\xa8\x07\x3e\x86\xea\x0c\xd7\xc8\x46\xe5\x20\x2f\xb4\x77\xc0\xde\x1b\x48\x3a\x87\xb5\x38\xdd\x1e\xe3\x07\x00\x9a\x65\x4c\xd0\xa0\xf9\x32\xbb\x3d\x00\x50\x60\xd4\xed\x4a\xe8\x76\xfb\x84\x6e\xef\x94\x74\x27\xcc\xa1\x10\xde\xc3\x40\x2c\x51\x67\xdd\x95\x6e\x03\x34\x81\x2b\x24\x01\xb1\x76\x85\xaa\x3c\xa9\x07\x74\xc9\x38\xc8\xf6\xdf\x74\x77\xa5\x05\x66\xdc\x2e\xc9\x4a\xd0\x3b\xf7\x5c\x68\x77\xba\xbd\x44\xaf\x4b\x2d\xb7\xd7\xb4\x44\xce\x50\xb4\x2e\xdc\x2a\xe9\x47\x34\xd9\x2b\x05\x4d\xbd\xa4\x1b\xe4\x9b\xd6\x75\x36\x7e\x4e\x5b\x2b\xc2\x87\x39\x0c\x0b\x9a\xda\x90\x11\x67\x9e\x59\x8b\xe2\x24\x25\xb8\xc5\x6b\x0b\xb9\x6f\xa0\xc2\x93\xa1\xc1\xa1\xb2\x95\x89\xcc\xa1\x6c\xd8\xd0\x3d\xcd\xd1\x3d\x4f\x3f\xfc\xf7\xfe\x6c\xc2\x59\xad\x1f\xff\xf8\x67\xdf\x0b\x9e\x86\xc8\x9b\x90\x21\x18\xfa\x3d\x7d\xa6\x03\x33\x13\x6b\x35\x55\xb5\xff\xd9\xa9\x10\x1d\xff\xe9\xff\xb1\xa9\x58\x28\xfd\x9b\xa2\x7c\x66\x44\x1b\x48\xdf\x08\x40\x12\x01\x29\x61\x8d\x27\xd6\xe2\x98\xec\x69\xc0\xf1\x8c\x70\xb5\x15\x2f\xa3\x77\x60\x24\xe6\x07\x0b\x74\x84\xf7\xf0\xf1\x64\x6c\x24\xfc\xa4\x2e\x18\x9d\x63\x95\x59\x61\xb6\x07\xeb\x3a\xc3\x2e\xc6\x13\xb8\xbe\x56\xcc\x6e\x34\xcc\x49\x92\x59\x82\x4a\x9d\xb9\x08\xef\x92\x9a\xf9\xe1\xb6\x36\x53\x22\x6c\x05\xde\xbd\x37\x9c\xc4\x97\x51\x2c\xe8\x28\x26\xac\xbd\x54\x1e\x70\x5c\x64\x2c\xf1\xef\xaf\xd5\x44\x26\xc1\x6f\x5c\xb4\xe8\xad\x94\x91\xa6\x83\xbd\x40\xae\x77\xa7\x93\xc4\x5d\xfd\x8c\x90\x68\xe9\xaf\x99\xd3\xab\x8f\x86\xe9\x99\xd2\x05\x95\xc3\xa1\x26\xae\xb1\xe7\xf4\xbb\x39\x4c\x25\xa5\x16\xf6\xa1\x29\x93\x10\xda\x66\x65\x7e\xee\xe0\xf8\xee\x2e\xc4\x7e\x12\xe4\x56\xf5\xf4\xa7\xe7\xff\xcc\x23\xae\xa5\x48\x20\xc6\x21\xd8\xf9\x01\x71\xaf\x62\x80\x9a\xd6\x47\x73\x7a\x40\xb1\xa0\x86\x23\x48\xc5\xbc\x77\xa3\x61\xd1\x68\x42\x6d\xa9\x13\xc4\x16\x41\x9d\x81\x4b\x79\x41\xee\xd8\x84\x85\xd4\x1c\xe2\x05\xdc\x29\x63\xa9\x5f\x6b\x32\x4b\x7a\xaa\x52\xa0\x99\x5e\x06\x27\xee\xe2\x59\xa6\x03\x0a\x3e\xe0\xf1\x7d\x71\x0f\x35\x6a\x6b\xd7\xa7\x5e\x95\x91\xde\x0b\x9b\x7c\x87\x4b\x31\xd9\x84\xb7\x52\xa8\x40\x94\x7c\x2f\x1d\x7a\x1f\xb9\xba\xf9\xa8\x3d\xac\x17\xea\x2b\x1d\x7a\x6d\x08\x6d\xa2\x2d\xbe\xcd\x15\x47\xe1\x94\xe8\x98\x88\xdd\x8c\xe5\x05\xa7\xcc\xde\x58\x19\xb9\xcb\xd6\x7c\x65\x21\xb5\x1a\xd7\xc0\x7c\xe3\x13\x40\xa5\xe2\xce\x10\xb5\xe2\x0d\x92\x0c\xfe\xcd\x31\x0e\xbf\xe5\xe9\x4c\xbd\x28\x6a\x9a\x27\xcb\x59\x54\xbf\x21\x92\x2c\x65\xe5\xa2\xfa\x2d\xbb\x75\x64\x2a\x6d\x7a\xc1\x5e\xc3\x16\xaf\x02\xba\x70\x23\xd1\xb3\x49\x7f\x54\x61\x6d\x96\x4d\x4f\x75\x91\x93\x5c\x5a\x63\x1d\x13\x10\x96\x79\xc8\xa1\x5b\x4d\x2c\xe5\x0a\x1f\xca\xae\x69\xfb\x5b\xc0\xe8\x32\x10\x11\xd8\xd6\xda\xc8\xab\xe1\x12\xd7\x21\x1a\xeb\xb3\xc0\x1c\x7b\x79\xf5\x0a\x65\xff\x1d\xad\x6d\xcb\xac\xee\xbb\x50\xde\xdb\x54\x00\x93\x0c\x65\xf4\x29\xc5\xd0\x3c\x1b\x24\x5d\x69\x27\xd2\xa6\xec\xde\x13\xd1\x52\x97\xf2\x3d\x3d\x15\x3d\xa4\x6d\xa4\xe7\xd0\xd3\x77\x32\x61\x5d\xb3\x89\x83\x3c\xca\x41\xcd\x51\xb7\xa4\x79\x66\x99\x34\x26\x90\x36\x8f\x92\xa9\x10\x0e\x75\x9e\x7d\xf8\x80\xe0\xd4\x15\xc5\x3e\xf0\x7a\xe2\x05\x7f\x0e\xb7\x1b\x32\x6d\xc1\x2a\x7e\x66\xb8\x08\xaa\x5a\x7d\x9e\x90\x4a\xd2\xb9\x37\xbc\xa9\x86\x9a\x29\xed\xe3\x12\x33\xb6\xc0\x4c\xfc\x92\x50\x82\x95\xfa\x14\xe3\xb0\xb2\xda\x8f\xa0\xd0\xa7\x37\xca\x0b\x86\x1a\xa5\x06\x33\xb7\x96\x23\xb5\xa4\xa3\xbd\x69\xe4\xc1\x67\x89\xa1\xed\x7c\xc2\xd0\x2e\x21\x48\x92\x45\x46\x33\xa7\x44\x1d\xf9\x66\x79\x3b\x9e\xd7\x2d\x89\x8b\x65\xe3\x2f\x55\x79\xcd\x2d\x0a\x8d\x69\xbd\xa9\x4b\xfd\x32\xbd\x42\x94\xb0\x5c\x90\x2a\x55\x88\x54\x46\x15\x0f\x8e\x74\x2a\x54\xed\x3f\xef\x40\xd0\x9d\x89\x8a\x6b\xa7\x37\x8f\x34\x92\x75\x66\x2a\xee\x92\xa3\x73\x75\x73\x12\x82\xd4\xca\x7f\x38\x55\x60\xc0\x29\xe5\xcf\x07\x99\x20\x98\xc0\x9a\x48\xdc\xb9\x7a\x31\xf4\x02\x3a\xb3\x10\x9b\xd3\xb1\xa1\xdc\x3d\xe8\x58\x02\xb7\x8c\x3d\xdf\xcc\x4d\x98\x76\x85\x0c\x08\x24\x59\xd7\x6a\xdc\xb9\xb1\x95\xa5\x2d\x11\x71\x6d\x51\xd6\xda\x35\xd4\x5d\x9d\x60\x32\xa4\x8d\xbe\xb7\x69\x8e\xeb\x8b\x09\xa7\xed\x45\xca\x67\x60\xe9\x82\x17\x2e\xdd\x9b\xd7\x3e\x2a\x1b\x84\x16\xf1\x02\x56\xcf\xb0\xbc\xa0\x8a\x59\x0b\xd6\x10\x33\x45\x70\xff\x89\xa5\xda\x28\x6f\xa2\x9f\xe9\x1a\xed\x9c\xc9\x83\xa4\xc7\x23\x96\x86\xc4\x26\x1e\xe7\x38\x63\x52\xf0\x3c\x8c\xd3\x45\xcc\xf3\x45\x11\x17\xf5\x6f\x3e\xd4\x1c\x21\xac\xa3\x64\xb6\x40\xeb\xa7\x88\x6c\x0f\xb8\xb1\x35\x6b\x1c\x22\x95\xa0\x20\xf1\xb2\xfa\xb7\x34\xb1\x15\xb2\x6d\x06\x16\xde\xcc\x9a\xda\xe0\xa8\xc6\xdb\xf9\x3b\xc3\x97\x60\x66\xde\xde\x39\x5f\x96\x22\x07\x0d\xaf\xb0\xe1\xae\xba\x93\xb9\x7c\x96\x75\x1d\x85\x64\x3f\x2d\x04\xf1\xea\x07\x33\xd6\xce\xab\x78\x84\xbc\xeb\x7b\xa1\xb7\xd1\xaf\xb3\x31\xe3\x08\x24\x34\x5c\x78\x63\x6b\xac\x10\xcf\xdd\x29\x6d\x78\xf2\x48\x2f\x01\xad\xfb\x3e\x92\x39\xf6\x7f\xb1\x2d\xcb\x42\x3e\x0c\xd7\xfc\xe5\x4d\x37\x90\x7e\x67\x1b\x4e\xb0\xef\xe9\x9f\x73\x5e\x5c\xdc\xd9\x6b\xc1\xcf\x25\x34\xa8\x05\x9f\x5b\xf2\x91\x95\x6c\x96\xda\xd7\x58\x8d\xcd\xf9\x93\xfa\xf2\x6c\x61\xc0\xd5\x5d\xd4\xf9\x9f\x6b\xbc\xbc\xd9\x70\x99\x9b\x9e\x3f\x54\x5b\x36\xb1\xdb\xd0\x74\xd0\xf6\xf4\xef\x3d\x2f\x3e\xa4\xbb\xde\x7c\xa0\x1e\x4e\x92\x19\xb2\x1a\xa8\xa8\xdd\xc3\x86\x59\x09\xb4\xb1\x8c\x64\xb1\xfc\xb9\xf8\x98\xf4\x5d\x4c\x01\x5b\x00\x83\x74\x4a\x22\x6b\x88\xc1\x70\xae\x8a\xf0\x0a\xad\xda\x56\x94\xd4\x3f\xb3\x50\x12\xa2\x83\x03\x8a\x40\x51\xaa\xa4\x8e\x55\x2e\x2a\x63\x28\x00\xd7\x1d\x1b\x74\xa9\xd7\x0a\x75\xe5\x8b\x9d\x74\xc7\xab\x0c\xd4\xeb\x41\x20\x29\x66\x43\xd5\xd8\xf4\xad\x98\xa7\xef\x73\x76\xa2\xa2\xe9\xf0\x7f\x8a\x95\x14\x81\x23\xf5\xb7\x02\x1f\xb0\xe3\x32\x74\xfc\x20\x52\x1f\xb2\x91\x0e\x12\x79\x45\x64\xfe\xfe\x51\xd4\x0d\x8d\x08\xc7\x03\x3d\x43\xc3\xad\x9c\xfa\xdc\x5c\x84\x62\xd8\xc8\x16\xfb\xad\x6d\x3d\x6f\x01\x89\xbd\x73\x4a\x1e\x64\x26\x51\xcf\x9a\x9e\x06\x84\x55\x56\xe4\xbc\x00\x41\x39\x5b\xba\x96\x8d\xae\xae\x7f\x43\xe3\xdd\x58\xf9\x00\xe4\x29\xe7\x7f\xba\xed\xbd\xb2\x36\x50\x66\x46\x32\xea\x78\xfa\x77\x8a\xfe\xa2\xfd\x16\x4e\xb7\xc5\x14\x1c\x9f\xed\x76\xf2\x01\x76\x8a\x5c\xf6\x5f\x25\x40\xab\x71\xc4\x17\x3a\x90\x59\x40\x15\x63\x45\xb9\xa4\x63\x7a\x51\x1b\xa9\x9f\x27\x21\x86\xd1\x58\xbd\x95\xfb\x42\x9e\xf1\xb2\x67\x90\xce\x16\x7e\x24\x66\xd5\xf4\xe1\xb2\x56\x44\x68\x21\xda\x02\xb3\x61\x96\x70\x07\x8e\x76\x94\xe2\xb6\xc9\x65\xd9\x6e\xa1\xea\xaa\xc1\xce\xb1\xa0\x49\x41\x57\xa2\x41\xa2\x72\xed\x18\x45\x53\x5a\xe6\x78\x08\x11\x97\xfb\x00\xfe\xd4\x66\x69\x07\x2f\x0c\xd3\x91\x5d\xac\xb7\xdc\x26\x36\xa0\x68\x2d\x34\xcc\xc0\x90\xd0\x47\xd5\x8b\x88\x3c\xcb\x5b\x46\xb9\xbc\x79\xba\x06\x0c\xfc\xf7\xc2\x37\x8f\x7c\x58\x50\xc2\x50\x72\x50\xde\x18\x09\xa3\x23\x1a\xd8\x26\xbf\xde\x46\x50\x52\x2b\x74\x60\xca\xd1\x74\xc8\xeb\x0c\x71\xd5\x67\xbc\xbf\xbf\xfd\x7e\x93\xe4\xdb\x96\x8a\xa0\xf1\xfb\xe2\x2c\x0f\xe0\x80\x0b\xef\x20\x96\x9b\x3f\xd7\xff\x51\x37\xda\x5e\x50\x00\xec\x9c\x19\x6e\xeb\x39\xb6\xac\xee\x17\x34\xb3\x66\xb5\xf7\xc0\x49\xcf\xf8\xdf\xf6\x74\x79\xab\xa7\x03\xe5\xf5\x6a\x8a\xd5\x08\x04\xa5\x18\x62\x7e\x4b\x8a\x7e\x19\xa1\x3b\x22\xb9\xe7\xff\x22\xc1\xa1\xa4\xa8\x7d\xea\x06\xd1\x08\x2b\x3a\x76\x6e\x13\xc0\xa7\x39\x72\xe7\xdf\x2f\x12\x88\x01\x15\x10\x71\xa2\x7d\xfe\x40\x0d\x39\x43\xbe\x60\x90\x02\x66\xfc\xbc\x17\x93\x9b\x16\x7d\xfc\x59\x7c\xb9\xf5\x1d\x26\xe4\x5d\xaa\x68\xf5\xce\x5b\x8a\x5a\xe2\xa3\x6a\xa7\xd0\x85\xf7\x46\xfa\xdd\xc8\xdb\x68\xdb\x70\x24\x86\xa7\xa2\x6c\xa8\x74\xfb\x13\x31\x64\xbf\x51\x4c\x2f\xf0\x42\x99\xba\x3b\xc4\xaa\x46\x2c\x45\xac\x82\x57\x3c\xc5\x5c\xf5\x9f\x53\xf8\x76\x23\xb7\xfd\xc3\x91\xc2\xd3\x6c\x33\xb3\x1d\x33\xba\x09\xcc\x61\x41\xe3\xbc\xc2\x43\xf9\x2d\x0c\x5e\x46\x4d\x09\xf6\xaa\x8b\x60\x48\x5c\x31\xab\xe4\x10\xff\x42\x18\xf3\x10\x7e\x3b\x76\x93\xaa\x69\xb2\x97\x1f\x5f\xe9\x96\xf7\x6a\x1f\xdf\x71\x6d\x32\xe2\x1b\xc0\x84\x0e\x95\x7d\xc3\x36\x33\x0f\xdc\x3e\xd3\x78\xc7\xf6\xb4\x84\xb6\x5f\xb5\x34\x54\x7c\xa9\xcc\x75\xae\x44\x67\xa9\x99\x29\xfb\x34\xdb\xa8\xa9\x66\x72\xaa\xba\xd7\x53\x65\xa6\xef\x1d\xdf\xb2\x3d\xc0\xb7\xbc\x95\x3a\x89\xc7\x43\xaf\x75\x69\x9b\x78\xe7\x20\x6e\x84\xe0\x87\x90\x4b\xf0\x0c\xe3\x3b\x36\xd0\x43\x54\x2a\x81\x07\xf4\xee\xbf\xc9\xa9\x2f\x36\x4e\x33\xaa\xea\x1a\x48\x59\xeb\x86\x77\xdc\x26\x97\xfc\x29\x1d\x57\xe8\x06\x0f\xef\xc2\x92\x0f\x5b\xd3\x87\x2c\xfd\x0f\xa9\x2f\xda\x94\xf3\x17\x09\xaf\x28\x38\x3d\x74\xd8\xc1\xf4\x7f\x73\x5c\xb6\x78\x85\x4f\xe9\xb4\x80\xed\xd5\xb8\x38\xa3\x18\xaf\x61\x89\x30\xb1\xb5\x26\xca\x79\x31\x8f\x4d\x0d\x8c\x4e\x4b\x2c\x4b\x55\xa5\x2e\xd4\x43\xbc\xb5\xf0\x4b\x23\xaa\xb4\x5e\x63\xae\x9b\x89\xb8\xae\xf2\x82\xa9\x32\x2a\xb0\xd4\x5f\x8e\xb4\x9e\x9e\xf5\x3a\x05\xde\x7b\xc9\x70\xd6\x9f\x9e\x99\xab\x84\x68\xa8\x3d\xfd\xfb\xbc\x80\xa3\x6b\x01\xe9\xbf\x9d\xba\x43\x14\x8e\x84\xf2\xbf\x21\x3a\x4a\x18\xa1\xa4\x15\x07\xb2\x0e\x43\x65\x9b\xda\x49\x53\xc1\x0f\x57\x94\xdc\xaf\xd5\x8f\x93\xac\x54\x76\xad\xda\xab\x5e\x3a\xf4\xe6\x2b\xf5\x1a\xc7\x9d\x7e\xa7\x5e\x05\x72\x82\x4a\x58\x2e\x5d\xbf\x62\x43\xb6\x33\x6e\xa4\x95\x15\xe2\xbf\x20\xa1\xbc\x89\x1f\xab\xf7\x53\x94\x7f\x26\x79\xbc\xed\xf7\x75\x57\x69\x5d\x60\x27\x7e\x66\x76\xa2\x68\x9e\x35\x02\x57\x7a\x30\x4e\x51\xd2\x11\x4b\x9b\x51\x8a\x5b\x67\xb8\x4e\x76\x76\x0a\x3b\xde\xa4\xf5\xd3\xf4\x3c\xab\xa0\xd5\x74\xcf\xe8\xee\x79\x67\xcb\x3f\x4a\x7f\x25\xff\xa4\xd0\xdc\x49\xec\x6e\xb9\x59\x88\xab\x8e\x0c\xd4\x01\x6e\x79\xd1\x18\x50\xd1\x24\xf0\x4a\xcd\x85\x51\x5e\x8b\xcd\xa1\x5a\x08\x7c\x81\x6e\xc4\x6b\x3b\x24\xf8\x5e\x7a\xa0\xcd\xda\xa6\x03\x2f\x83\xc7\x53\xcd\xa1\x1a\x40\x3a\x96\x28\x3c\x9d\x51\xe8\x79\xcf\xf3\x5e\xf1\x19\xb6\x53\x12\x12\x6a\x42\x26\xca\xef\x0c\x61\xb5\x0c\x9b\xbd\xf3\x2a\xdb\xa4\xcc\x47\x07\x50\x2c\xf4\x81\xd3\x87\x9e\x5f\x37\x5f\x78\x05\xa1\x82\x22\xfb\x15\x3e\x55\x96\x80\x58\xa3\xea\x07\xd6\x91\xd8\x33\x4f\xff\xc4\xa6\xe2\xea\xd1\x56\x35\xc5\x64\x56\xd6\xd6\x47\x63\xde\xa9\xa2\x1b\x03\x45\x2d\x0f\xed\x00\x40\x5f\xee\x48\xe6\x93\x06\x22\x70\x5b\xb0\x8c\x42\xa7\xda\xe8\x5c\xd5\x12\xe3\x08\x5e\xec\x00\xf2\xd4\x5e\x0b\xfc\x6d\x68\xc5\xe8\x81\x25\x47\xaa\x25\xae\xfb\x4e\x36\xe8\x5c\x7d\xb8\x13\x22\xd1\xc0\x5a\xb0\xac\x32\xad\x95\xf8\xf4\x52\xad\xb1\x3a\xca\xec\xfa\x66\x76\xa1\x30\x56\x5a\x1f\xe9\x37\xaf\xda\x7a\xda\x22\xf7\x48\x66\x2e\x18\xb2\x31\xa3\xaa\x21\xa8\x66\xbd\x71\xbe\xfb\x68\x36\x95\xfb\xc1\x8e\x3b\xf7\x83\x6d\x3d\x22\x9b\xde\x70\x6b\xdf\x6b\x7a\xc1\x5c\x83\x4a\x8e\x8f\x13\xa3\xed\x67\x1f\xa9\x17\xcf\x40\x0c\x5d\x5b\x06\xfb\x16\x89\xae\x6d\x69\x48\x39\x5b\x4e\x1b\xf7\xec\x33\xba\x8a\xf6\xda\xc2\xe6\xee\xbd\x22\x2b\x85\xdb\x11\x15\xcd\x11\x57\x79\xf4\xd2\x6f\x5e\x43\xa4\xc9\x59\x7b\xac\xca\xce\xf1\x68\xe6\x15\x66\x05\x2d\xc9\xba\xc1\xff\xc7\xde\x9b\x75\xa7\xae\x6b\x69\xc3\x3f\x08\x8f\x41\xdf\x5d\x4a\xb2\x70\x1c\xe2\x10\x42\x08\x21\x77\x84\x10\x3a\x63\xfa\xf6\xd7\x7f\x43\xf3\x99\xb2\x4d\xba\xbd\xf6\xa9\x7a\xeb\xec\xfa\xea\xdc\xac\x15\x6c\x49\x56\x3b\x35\xdb\x67\x36\x62\x5f\x8e\xbb\xea\x1a\x46\xf0\xed\xf5\x55\xf8\x9e\xa3\xab\x2b\x28\x7b\xf6\x13\x81\x21\x2a\x44\x28\x2b\xa9\x7b\x8f\x5c\x7f\xd0\xa1\xa2\x61\xa2\xfa\xa2\xd6\x9a\x48\xdb\xb3\x58\x60\x69\x7f\xdd\xbb\xe9\xbb\xb7\x25\xf2\xed\x87\xcc\x9e\xe2\x39\xa7\x32\xfb\xcd\xf4\xe8\xaa\x2a\x50\x85\xe1\x53\xe2\xe2\xdd\x99\x01\x99\xcf\x5f\xc3\x18\xd5\x0c\x0f\x36\x62\xc6\x17\x4a\x27\xfa\x2d\x98\x07\x03\xb8\xb3\x50\x94\x5a\x93\x3c\x5e\x3d\x40\x5c\xec\x53\xd5\xfd\xd8\xd5\x65\x0b\xaf\xa3\x87\xa4\x99\xfa\x8a\x6d\x15\x86\xcc\x72\x3b\x5b\xca\xde\x3e\x95\x33\x36\x7f\x0e\xc0\xf1\x80\xbe\xc7\x7f\x9a\xef\x94\x90\x70\xb6\x43\xb7\xdd\x56\xae\x62\x32\x93\x24\xf8\x32\xed\x12\x1f\xbf\xbc\x4d\xe2\x35\x33\x33\x17\x0e\x38\x11\x66\xac\xbb\xa0\x4b\x8f\x59\x30\xa6\x56\xc5\xb4\x9c\xbb\xde\x43\x0d\x50\x4f\x08\x5a\x4b\x2c\x55\xc8\xf6\x3f\x2c\xc3\x90\x48\xff\x98\x99\x76\x72\x91\x1c\xab\xdb\x22\x5f\x18\x68\xa2\x2e\x29\xfb\xd1\x54\xd6\xaf\x48\xe3\x81\x73\xb6\x1f\xdc\x24\xa3\x36\x64\x8c\x51\xd2\xed\x9c\x55\xea\xf9\x22\x32\xf4\x81\xc0\xb7\xdf\x68\xc9\x77\x2a\x6e\x8d\x52\xe7\x5d\x52\xa1\x0d\x7c\xb3\xcc\x07\xe9\x03\x73\x07\xca\x04\x27\x14\x78\x6f\xf4\x2e\x84\x02\xaa\x80\xae\xfd\x1d\x23\xd9\x14\xfa\x96\xb6\x78\xe2\x02\xda\x39\x5e\x31\xa1\x94\x13\x8c\xf6\x29\x5c\x29\x49\xad\xc7\xfa\x38\x42\xc6\x57\xd3\x94\x53\xa6\x7a\xc8\x20\x30\x39\x16\x29\xc0\x31\x98\xfb\xea\xfd\x7c\x44\x1c\x52\x0e\xff\x45\x18\x52\x50\xe0\x88\x84\xec\x22\xa5\x5d\x2c\x23\x5a\x28\x74\xa7\x07\x16\x49\xcc\xe2\xf3\x5e\x6e\x2d\xe2\xd9\x08\x28\xd0\x83\xaa\x53\x85\xe7\x12\xb4\xbe\x50\xd5\xd2\xdf\xcd\x5a\x52\xd8\x2f\x5a\xe4\x90\x54\x27\x8c\xd8\x51\x9a\xab\xe4\xe3\x5b\xc2\xe0\xf7\xf3\x6a\xc5\xa6\x79\xab\xcb\xa4\xcf\xab\x8f\x2c\x2d\x51\x7b\xb3\xa5\xef\x03\xbc\x77\x4e\x00\x26\xde\x33\x2d\xf4\x14\xe0\x5e\xe8\xc5\x8c\x7f\x2c\xda\x71\x37\x0e\x92\xa3\x64\x5a\x58\xc3\x16\xe4\xe1\xa9\x7a\x35\x9f\x50\xbf\x2d\x7f\x20\x7c\x0e\x8b\x28\x98\x5e\x0c\xee\xd8\x70\xc2\xf1\x32\xd1\x9a\x42\x66\x26\x6a\x49\xcc\x81\x27\x68\x55\xb4\x70\x9a\x22\xe3\x51\x88\x56\xe7\xf6\xbb\xab\x8c\x0d\x03\xbc\xef\xc1\xdb\x74\x98\x9f\xea\xac\xdc\x34\x91\x3f\x98\x99\xdb\x3c\xe9\xa8\xe7\xf8\x62\xfd\xa4\x17\x3d\x1c\x56\x47\x89\x26\x79\x16\x36\x44\xfd\xea\x6e\x85\xe2\xce\xc7\x05\x65\xaf\xdd\xab\x2b\x0a\x60\x54\xfe\xf5\x57\xb7\xf7\x86\x0c\xaf\x24\xf9\x46\xa6\xe8\x64\xe7\xb3\x62\x27\xfb\xf4\x0a\x75\xdf\xb8\xeb\x2f\xfb\xdf\x8c\x4e\x3f\xe0\xdb\x22\x35\x0c\x5e\x29\x3a\xb4\xfe\xcb\x64\xed\xfe\x25\x31\xa6\x09\x32\x54\xb4\x4b\x6c\xfb\xdc\x15\x1e\xf2\x7b\x9d\xdf\xa0\xb1\x35\xef\x81\xe3\x61\xcf\x24\x7a\xd1\xbe\x1a\x57\x77\x95\x5c\x86\x1c\xb2\xff\xfd\xc9\xa4\xdc\xfb\x37\x02\x21\x6d\x7f\x7c\x4d\x18\xd9\x8a\x2f\xe5\xd4\xec\xab\x57\x8a\xea\xe4\x4e\x02\xea\xad\xc5\x81\x9e\xa8\xa5\xe1\x96\x15\x2c\x69\x8f\xb7\x1a\xac\xf9\x27\xf7\x2f\xef\x81\xaf\x38\xb6\x78\x74\xe0\xb7\x37\xa4\xcf\x34\xa3\x03\x95\x59\x21\x19\xaf\xd5\xce\x71\x18\x65\xa7\x24\x9d\xb6\x99\x01\x62\x16\x2e\x29\x46\xa7\x23\x54\xcc\xe8\xfc\xac\xb4\x8b\x5e\x9e\xc1\x7f\x57\x5e\x1a\x45\x8e\x3a\xfd\x3c\x2e\x4f\xdc\xeb\xad\x76\x3c\x51\x94\x0f\x2c\x1b\xfe\xe9\x42\x8a\xae\xb3\x54\x46\x36\x3a\xec\x7f\x6a\x7b\xe9\x82\xdd\x47\xc2\x98\x01\x08\x30\xee\x03\xa6\xf8\x74\xef\xe1\x76\x02\xdd\x35\x02\x9a\x3e\xc0\x11\x9a\x54\x1e\x0f\xf5\x44\x31\x25\x7a\xb9\xb8\x90\xb7\xfa\xa6\x10\xe9\x57\x06\x67\x2e\x44\xba\x43\x7e\x43\x02\x4b\x6f\x9d\x54\x3f\x49\x43\x11\xd3\xc2\xde\x85\xbd\x52\x96\x10\xa7\xf9\x16\x22\x55\x03\x04\xd1\x4d\x0a\x7a\x35\x96\xf3\xfa\x70\x41\x53\x33\x75\xad\x3b\xa1\x1c\xa8\x0f\xd7\x5a\x09\xf5\x7e\xc4\x2a\x42\xe4\x1d\x04\x9c\xf5\x96\x62\xc3\x31\x21\x46\x06\xf1\x3f\xaa\x9b\xab\xae\x21\xa4\x9b\xe6\xaa\x6f\x65\x7b\x55\x65\x17\xe9\xfe\x86\x33\x97\xf0\xe5\x33\x9c\xd0\xa6\xa2\xc8\x41\xd3\xc6\x14\xda\x86\xc0\xf1\x44\x4d\xbe\xd1\xb7\x26\xb8\x8f\x20\xe3\xbd\x7f\xcb\xbc\x43\x11\x3a\x65\x6b\x5a\x27\xeb\x72\x5c\x20\xc9\xc1\x0d\x48\x18\xb1\xf1\x6a\x54\xe6\xa9\xcc\xd1\xa5\xc9\xe9\x8e\x38\x1b\xbe\xf5\x1c\x2c\x43\xcd\xc2\xb0\x02\x25\xea\x2c\x0e\x55\xb3\xce\x70\x19\x35\x78\x77\x75\xb2\x60\x30\x3a\x29\x19\x99\xa5\x77\xc3\x54\xcd\x61\xd4\x64\x8c\x2b\xdf\xc6\xac\x77\x42\x7a\xee\xd7\x58\x59\x8c\x46\x14\xbb\xab\xe7\x6a\xd7\x77\x6b\x0e\xa5\xba\x75\xf4\xf8\x04\xfd\x04\x9a\xb6\x36\xa3\x25\xb7\x84\x32\x6a\x27\xe7\xdf\x9a\x8f\x5a\x2f\x49\xd8\xb0\xa9\xda\x13\xd1\xe8\xe9\x48\x54\x75\x39\xf2\x27\x07\x75\x5d\x49\xdf\x41\x4d\x93\x4c\x5f\x53\xb0\xb6\xcd\x13\xcd\xb4\xd9\x94\x1e\x07\x73\x12\x95\x7c\x86\xc1\xc1\x76\x4f\xca\xe4\x49\xa0\x8d\x3e\x1e\xf0\xc1\xc5\xc7\x59\x66\xf7\xb1\xeb\xf2\xe9\x83\xfc\x10\xb7\x5b\x92\xe3\x15\x90\xb1\x36\x37\x3f\xfb\xb4\x10\x4a\x96\x6e\x5f\xfb\xb4\x34\x9d\xb1\x52\xd9\xad\x7c\x76\xe6\xb7\xa2\xe5\x9f\x89\xaa\xee\x25\xbb\xa4\x87\x21\x1c\x34\xe7\x24\x8c\x04\x65\x37\x31\xa9\x0e\x8d\xac\x3e\xb6\x81\x58\x2a\x54\x2c\x76\x8c\x20\xa3\x57\x29\x84\x5f\xc1\xce\xe2\x56\x14\x2b\xbc\xfa\x75\x7a\xae\x2f\xee\x19\xca\x88\x2e\x64\x8b\xfb\x24\xde\xbf\x17\x3d\xe3\xea\xde\x95\x11\x58\x65\x3e\xfa\xb4\x94\x15\xc3\x76\x77\x26\x92\xdd\x77\x9b\x79\x40\xb9\x03\xd0\xa4\x80\xe5\x6c\xc2\xfe\x49\xc1\x71\xc3\x54\x62\xe0\x07\x2b\x89\x5a\x71\x98\xb5\xb3\xcc\xca\x17\x43\x97\x55\x21\xb8\x7a\x4d\x8d\x1a\x62\x6f\x90\x2a\xd6\xfa\x36\x10\x8f\xe0\x35\x6d\x6a\x58\x04\xe5\xa1\x7d\x12\x36\x49\xd2\x8e\xee\x31\x0e\xba\xd5\x76\xc0\x5d\x25\x97\xd5\x76\x51\xf2\x8c\xf1\x5c\x0d\xb1\x96\xa6\x1c\xf9\xbe\x9c\x1a\x34\xbf\xa4\x32\x06\x8d\x43\x1a\xb8\xb5\xa4\xeb\xfa\x22\x13\x3f\xe7\xfe\x93\xa5\x76\xa2\x45\xc6\x88\x31\x22\xee\x83\x07\xf0\x87\xf8\x5e\xbc\x44\xfb\x22\xbb\xdc\xad\x4a\x64\xc6\xec\x00\xd3\x0a\xe7\xe6\xcc\x1e\x1a\xd8\x74\xc8\x3f\xdd\xc4\x65\x38\xd8\x20\x1e\x3c\xb7\x71\xe1\x4e\xd3\x17\xfe\xe5\x86\xce\x13\x02\x52\xa3\x2c\xbb\x58\x4c\xa5\x08\xe5\x0d\x25\x20\x9e\xcb\xb9\x3a\x13\xaa\xe5\x4c\x6e\xd4\x65\x05\x57\x08\xe4\x26\xee\x4e\x7d\xd8\xee\x07\x62\x2a\x8f\xc4\x94\xe5\x35\x3b\x57\x77\xf2\xcf\xe4\x66\x0b\xc0\x79\x3d\x93\x99\xae\xd9\x3c\x0f\x3b\x18\xba\x4a\x72\x72\x03\xf7\x47\x9a\x31\x40\x74\xb7\x46\x08\x9a\x37\xc3\xcd\x2b\x1e\xed\x94\xa5\x9d\xfa\xce\xfd\x32\x58\x1a\x24\x0f\x67\x58\x5c\x1b\x3a\xa2\x0f\x37\xf0\x37\x68\xac\xfd\xfc\xb3\xd3\x24\x5f\x42\xb9\x01\xd3\x9b\x79\x36\xa7\x86\x66\xb5\x84\x64\xe3\x91\xda\xcd\xa5\x33\x56\xf4\x80\x02\x97\x95\x70\x32\x52\x88\x8c\xdc\x92\x4a\xa3\x71\x22\x77\x4a\xda\x33\x5d\x72\xd6\xd0\x87\xb9\xbc\x2a\x02\x55\x9b\x3a\x81\x72\x84\x63\x62\x92\x1f\x76\xf7\x29\x9c\x91\xf5\xbd\xd3\x14\xad\x89\x9c\xd3\x4b\x25\x8a\x27\x6b\x2b\x6c\x0b\xd1\xcd\x69\xdc\xb1\x81\xb3\xd4\xaa\x2e\x27\x72\xa3\xe3\xe1\xb1\xa4\xf9\xe9\x9f\x80\x72\x1f\xd2\x95\x7d\x62\xf5\x8b\x8d\x6f\x8e\x0f\xf5\x16\x66\xd1\xfe\xa6\x49\x11\x3b\x2a\x95\xcb\xfc\x24\xb7\xb4\xc1\xa6\x66\x6c\xaa\xac\xd8\x13\x50\x93\x27\xa0\xc7\xd1\x88\xb7\xf9\x53\xea\xc7\xe2\x05\x7f\x37\x85\xba\x3d\x56\x40\xab\x0d\xad\x68\xdc\xd0\x06\xf7\xc1\x92\x92\x80\xd6\x0f\xc0\x9e\x23\xc1\x36\xe3\x74\x50\x5f\x10\x38\x05\x73\x45\x15\xb9\xc9\x97\x88\x7f\xec\xb7\x7f\xa9\x63\xbd\xdf\x55\x5e\x45\xf0\x07\x5b\xdf\x9a\xbd\x70\x96\x74\x70\xf8\xd6\xed\x70\x4c\xbb\xb9\x74\xf5\x06\xde\x0a\x70\xb2\xa8\x02\x01\x05\x69\xc8\x3b\xdc\xa8\x21\xaa\x13\x69\xe3\xf6\xea\x0b\xe6\x52\x6b\xd7\x0f\xd0\x57\x8b\x9d\xc2\xea\x4c\x00\x7d\x44\x34\x23\xad\x05\x7e\x55\xe0\x0b\x64\x86\x3e\x96\x97\x54\xfc\x79\x3b\x04\xa4\x02\x9d\x6c\xeb\x98\x31\x65\x98\x85\xd5\x99\x35\xac\xd8\x2c\x63\xb2\xc7\x99\xa5\x6d\x71\x21\x5f\x88\x81\x2d\xe4\xc5\x51\x04\x3b\x99\xc1\xb2\x7b\x33\x92\x21\xbd\x3b\xee\xda\x84\x80\x1b\xc6\x30\x6c\x87\x72\xce\xb1\x56\x21\x14\xe3\x5b\x39\x07\xf6\xaa\x7d\x00\xe8\xc9\x16\x6a\x25\x43\x20\x3f\x89\xa1\x10\xc3\x2a\x82\xc4\x41\x77\xdf\x17\x00\x66\x3e\x43\x55\x96\x95\x33\x18\x6f\xa3\x88\xe5\x37\x74\xb3\x07\xad\xe0\x2f\x2f\x03\x74\x5a\xb4\x2a\x33\x3e\xc6\xe6\xa2\xcf\x96\xd5\xe7\x89\xec\x4d\xa0\x10\xad\xf7\x71\xf2\x95\x50\xef\x93\x32\x4e\x04\xad\xcb\xfd\x82\x63\x57\xe9\xd7\x63\xa6\x19\xb3\x48\xea\xd6\xb0\xe8\x91\x22\x88\x8f\xe1\x84\x32\x51\x30\xc7\xc4\x53\xf7\x79\xee\xeb\x01\x88\x8f\x16\x2a\x2b\xa7\x78\x37\x88\xbe\x8e\xc2\xb7\xf0\x2f\xd0\x7f\x5e\xad\x8e\x7e\xb3\xeb\x62\x64\x58\xbb\x28\x33\xf2\x17\x73\x03\x40\x9d\xac\x31\x8b\x05\x38\x3d\xf6\x92\xfb\x6b\x30\x43\x2f\xb3\xb2\xc0\xd4\xe1\xfb\x79\x09\x44\x4e\xae\x74\x93\x75\xfc\x5a\xa8\xa7\x03\xc5\x11\xbc\x63\xac\x87\x5b\x0c\x95\xf4\xb0\x68\xa8\x5d\xc7\xff\xc4\x83\x0f\x57\x72\xbc\xa5\x24\xe4\x54\x7e\x34\x41\xd8\xc2\x1b\x2a\xa4\x76\x7f\x53\xf4\xde\xf6\x4b\xd7\xf1\x54\xd6\x85\x8e\xa9\x40\x87\x6f\x40\xe0\xb9\x83\xb1\x35\x0a\x78\x36\xef\x3f\x91\x1d\x0d\x79\x31\xff\x9a\x2c\x59\xe1\x15\x4c\x62\x0f\x11\xab\x4c\x9e\x3a\xab\x93\x9b\x02\x8e\xa2\x18\x91\x2d\xc1\xc9\xf8\x42\xcc\x64\x9d\x33\x2c\x20\x80\x3a\xc1\x8f\x32\x4b\x3c\x95\x33\x30\xb5\xc7\xa2\x4a\x3e\x53\xa1\x4f\x0e\xee\x40\x4b\x49\x0c\x08\xe8\x62\xb8\xc7\x13\x92\x1a\x89\x4e\xb5\x3d\x84\x64\xc1\x4c\x0f\xe6\x9c\xc1\xa9\x88\x82\x27\x7d\x2f\xbb\x7f\xde\x6a\x6b\x75\xd5\x52\x4f\xe8\xa2\x1c\x32\x02\x84\x66\xf3\x4d\x24\x29\x63\xae\x39\x06\xea\xb9\x81\x5e\x40\xa9\x45\x95\x2e\x9c\x2f\x7c\x8f\xb5\x4e\x77\xca\x99\x2a\x42\x2d\x50\x42\x55\x1b\x23\x34\xd2\x14\xea\xe9\xaa\x91\xf0\xcb\x58\x48\x5d\xef\xa6\xca\x3f\x90\xb3\xa3\xeb\x78\xce\x40\x45\xaa\x6b\xc8\xc9\x6d\x83\x2c\x07\xcc\xf8\xb6\x84\x7a\xe0\x3f\xdb\x6a\x48\x68\x23\x13\x49\x0a\xb4\x27\xda\x5a\xff\x40\x8f\x71\xa5\x5b\x05\x9f\xfa\x89\x91\x9c\xfe\xb9\xfd\x2c\xf9\xa9\xf9\xbc\xfc\x73\xfb\x59\x41\x3f\xef\x28\x50\x20\xff\xcf\xed\x67\x2d\xbd\xee\xc5\x7f\x6e\x3f\x33\xe9\x75\x2f\xff\x73\xfb\x39\xbe\xa5\x7e\x12\xfc\xc4\x73\xf5\x1f\xda\x4f\xa7\xad\x5c\x6f\xca\x71\x53\xca\x08\x17\xd5\xb5\xb2\x1e\x62\xfa\xb6\xb6\x86\x01\xdc\xd9\x4a\xa1\x9f\x14\x68\x9f\xf9\xfb\x65\xc7\x21\xdf\xf4\xeb\x79\x6f\xd1\x35\xf6\x52\x78\x8f\x49\x1d\xef\x49\xc5\xee\x3f\xcf\x20\x85\x0c\x63\xa6\x0d\xc7\xfb\x3e\x59\x12\x68\x4c\x67\xba\x64\x2d\x55\x53\x78\x13\x79\x80\x76\x83\x3a\x74\xbf\x2e\xf0\x0f\xf3\xa1\x47\x15\xbb\xed\x1a\xd2\x4a\x41\x3b\xbe\xd0\xef\xd9\x54\x6f\xd4\xf3\x78\x0c\xf9\x8e\xc2\x38\xf5\x8c\xf0\x93\x92\xbe\x66\x18\xe7\x6f\x49\x8e\xdf\x6a\x25\x55\x52\x58\xcd\x64\x78\x94\xa9\x6f\x2c\x8e\xd2\x7e\x45\xbd\x03\x76\x72\x6e\xde\x7b\x2f\xb1\xd8\xa4\x26\xb2\xbc\x89\xe7\x4c\xc5\x73\xf6\x92\x8c\x73\x22\xbb\x98\xba\x82\x14\x2a\x99\x3a\xf3\x2b\x99\x3a\xf3\xeb\x7e\x80\xbf\x4b\x66\xac\x7c\xd7\x97\xa4\x50\x5f\xa7\xf1\xcd\xce\x97\x7a\x9d\xf1\x24\x9a\x7b\xf2\x65\x77\x6f\xa7\x4e\xc5\x53\x37\x4b\x4d\xf9\xc7\x98\x87\x57\xba\x9a\x42\x95\x4c\x61\xe9\xcb\x14\xaa\xd4\x14\x52\x9f\x53\x53\x58\xfa\x6d\x0a\x4b\xbf\x4d\xa1\xbf\x83\xd8\x45\x8a\xb9\x91\x8d\xce\x07\x9e\x0d\x04\x3a\x4f\xa8\x49\x4a\xb5\xb2\xb0\x52\x18\xb8\x1c\x52\x6c\xaa\x13\x64\x9f\x39\x78\xc0\x3e\xc5\x70\x33\x93\x1d\x18\x1e\x6a\xa3\x6e\xb8\xb5\xa6\x50\xf7\xac\x99\xcc\x21\xcd\xf7\x39\xc7\xce\x96\x8d\xf8\x83\x62\xe0\x26\x12\xc6\xad\x59\x34\x42\xca\x52\x4f\x78\x1c\xc2\xc3\x1e\x69\xb2\xda\xc4\x8c\xb4\x88\xb7\x0c\x6e\xc0\xf9\x75\x84\x78\xbf\x31\x23\xe5\x0a\xf0\x56\xea\x99\xe2\xec\x5b\x88\xe2\x0d\xa7\x29\x9a\x17\x4c\x00\xb1\x3c\xc3\xb4\xa9\x2e\x3d\xdc\x76\xd1\xac\xae\x2a\x42\xaf\x92\xa1\xa1\x6d\x38\x8b\x4c\x8d\xcc\x21\x79\x1b\x85\x7a\x6f\x59\x5d\xf5\x0e\xf1\x30\xc8\xca\xf8\xd1\xdb\x1a\x8f\x36\xfc\x28\x10\xea\x85\xa2\xcc\x15\x9c\x6a\xd7\x1c\x3a\x94\x97\x86\x40\x54\xf1\xb9\x05\xf5\xe7\xc0\x9f\xa3\x70\x48\x55\x57\xf0\xeb\x87\xc3\x69\xb3\x4e\x82\xec\x6b\x09\x00\x72\x50\x3d\x37\xab\xf4\xf0\x65\x8a\x87\xe0\xe6\x9a\x65\x92\x72\x9f\x32\xcd\xe4\xa3\x53\xc0\x24\xb5\xf3\x27\xd2\x96\x5d\xf0\xd5\x02\x0d\x32\x92\x15\xe4\x3a\xa2\x78\x46\xb5\x53\x59\x7c\x96\x88\x15\xda\xaf\x60\x48\xb0\x4c\xd0\xa3\x67\x64\xce\x0f\x22\x7e\x14\x08\xf5\x98\x1e\xe5\x22\x8e\x82\xfa\x3a\xa7\x6e\x7a\x4a\x27\x38\x66\x37\xc9\x94\x96\xd0\x72\x39\x35\xa5\x73\x3c\x0a\xbf\x4e\x29\x6d\xca\x31\xa0\xb7\xda\x07\xb3\xda\x14\xb4\xd4\x22\x25\x24\xc5\x96\x57\x38\x34\x87\x5c\xb2\x54\x88\xcf\x35\x92\x53\x5d\x40\xdb\xc5\x98\x30\xaa\x97\x29\x1e\x71\xa4\x06\x4d\xe6\xf2\x6a\x6c\x24\xff\xb7\xdb\x7f\x35\x36\xe4\x09\x68\xb9\x56\x38\x54\x6f\x48\xcd\x16\x00\x8b\x83\x1e\xbd\x8e\xf1\x68\x22\xad\xa8\xa4\x9e\x97\x57\x63\x83\xa7\x62\x44\xd6\xed\xcf\x83\x2b\x41\xef\x58\x20\xc2\xd4\x85\xe0\x8f\x60\xb3\x23\x1c\x19\xdb\x3d\x8a\x4d\x63\x2d\x45\x8d\xb6\x59\x1e\xbd\x04\xf4\x01\x44\xcf\xa2\x8b\x84\xce\x12\x21\x37\x0f\x4e\xdf\x08\x75\x54\x67\x4f\x75\x2e\x12\x1e\x55\x10\x83\x21\xca\xee\xdc\xd3\xfd\x95\x6a\x83\x75\xda\x71\x5e\x41\x3a\x8e\x83\xd8\x35\xa0\x07\x8a\x99\xfc\xb5\x24\x59\xd3\x90\xb4\x66\x11\x59\x1f\x07\x18\x32\x79\x39\xf7\xc8\xb1\xef\x79\x21\xd7\x0c\xdb\xb2\xb1\x12\x06\x6d\x72\x5c\x05\x4d\x73\x0b\x18\xe1\x7f\xcb\xae\x40\x27\xf9\xe5\x75\x9b\x30\x02\xcd\xec\xf2\x9d\xcb\x4f\x07\x45\x24\x1a\x87\xb9\x7f\x04\xb5\x41\x78\xe5\x75\xb5\x80\xfd\xa9\x3f\xc9\xff\x6b\x82\x9f\x2f\xd4\xa4\x31\xcd\x43\x32\x9f\xfd\xeb\x8d\xcc\x1a\x73\x34\xd2\x0f\xff\xe5\x46\x5a\x2b\x73\x3c\xee\x45\x65\xc1\x00\x75\xa0\xae\xd0\x4e\x16\x49\x91\xac\x9f\xc7\xc0\x26\x69\x4f\x60\xe9\x0e\x16\x94\x9f\x42\x1d\x64\x84\x99\x08\x4c\x01\x43\x6a\xaf\x0b\x78\x93\x4f\x05\x54\xca\x7d\x7b\x45\x46\x23\x91\x09\x72\x47\xd2\x87\xc2\x0a\xeb\x99\xc9\xf7\x36\x0f\x29\x84\xa9\x8f\x4f\x6d\x7c\x7c\x69\xa3\x36\xba\x6e\xe3\x94\xb3\xb8\x22\x66\xa4\x53\x8c\x8c\xaa\xb7\x01\x03\xd9\x12\x0f\x82\xee\x83\xd1\x69\xcb\x9c\x84\xd9\x8e\x4b\x5e\x57\x32\x8c\xab\xa2\xba\xbd\x2e\x62\x76\xe7\x1a\x45\x7a\xe4\x1d\xac\x57\xaa\xbc\x65\xac\x83\x3d\x62\xe3\xd8\x34\x49\xbf\x07\xec\x68\x2d\xc6\x72\x92\x1a\x42\x4b\x78\x3b\x65\x26\xca\x13\xde\xdd\x91\x4d\x99\xc4\x5b\x84\x69\x8d\xd0\x07\x03\x85\x78\xe2\xa8\x9e\x9c\x96\xc8\x4a\xca\x4b\xde\x17\xa2\x5b\x7f\xb7\x72\xbd\xde\xa8\xf9\x20\x56\x1c\xe9\x47\x36\xe3\xc1\x63\xfa\xfe\xb8\x85\x55\x0b\x5b\x79\x80\x60\xff\x9d\xc4\x29\x84\xf1\x7b\x00\x5f\x05\x3e\x7a\xec\xb3\xa3\x23\x77\xc2\x4c\xc4\x19\xa6\xcd\xc1\xe5\x8c\x01\xcb\xcc\x09\xec\x0e\x9d\xb7\x01\x47\x85\x95\xc9\xed\x28\xd8\x22\x50\x61\xe7\x11\x1e\x9f\xcc\x50\x66\x2b\x00\x33\x0e\x1e\x50\xb2\x98\x0c\xd1\xbb\xaf\xd9\xb8\x15\xea\x6e\x24\x35\xf3\x31\xac\x68\xb7\x06\x13\x2d\xfc\xf7\x1d\xed\xca\x01\xe9\xa7\x5f\x71\x1f\x06\xa7\x03\xd0\x27\xf6\x13\xd2\xed\xdc\x47\xb8\xd0\x17\xf0\xeb\x9d\x15\xdc\x44\x1d\x54\x00\xf1\x6e\x6e\x81\x4c\x47\xb9\x25\x1f\x51\x82\xfc\x2f\xbd\x88\xbd\x74\x0a\x6c\x02\x51\xf0\xa5\x21\xd7\xd6\x81\x68\xa7\x10\x8e\xa7\x12\x74\xba\x03\xc8\x24\x66\x91\x36\xe4\xbd\xc2\x06\xc8\x8f\xf5\x08\x37\x27\x50\x11\x11\xe2\xd3\x2b\x00\x4a\x48\xb3\xcd\x63\x07\x7f\x97\xfd\xc8\xe9\xc1\xa1\x3e\x56\x6a\xc3\x3c\xf5\xd4\x74\x2a\x4a\x74\x4a\x00\x53\xab\xbb\x4c\xf7\x4f\xa8\x76\x36\x84\x49\x6d\x64\x4a\xcd\x1c\x4a\x4b\xf5\x3d\xf6\x38\x56\x45\xc5\x04\x3c\x8f\x5a\x05\x8a\x3c\x56\x65\xbe\xe8\x99\x86\xbb\x4c\xc2\xad\xab\xbd\xca\xe3\x63\x47\xc9\x3e\x39\x95\x11\x5d\x17\xcc\x95\x7c\xbe\x2e\xe2\x6a\x55\x5b\xad\x8e\x6a\x99\x11\x01\xca\x72\xb5\xca\x4f\xd5\xca\xa8\xb6\x95\x13\xd2\xc7\x35\xa7\x1f\xe6\x24\xf1\x0d\x7a\x66\x35\x3f\xd5\x9a\xa6\x6a\x9d\x5c\xd6\xba\x87\xa8\xb5\xf8\x70\x06\x31\x0b\xb3\x56\xd7\x7a\xf7\x78\x42\x22\xd4\x1a\xae\x50\x69\xf9\x61\xae\x34\x0e\x6e\xee\x6d\xf0\x70\xfb\x61\x6e\xf0\x89\x3c\x3d\x5c\x5d\x63\xd1\x2b\xae\x62\xba\xc6\x88\xa3\x26\x99\x80\x03\xaf\xf8\xd2\x62\xb6\x9c\xb9\x6c\x32\xc8\x61\x0f\xf5\x45\x3f\x82\xdf\xd6\x9e\xbe\xd2\x7a\xc7\xb1\xf3\x84\x0e\x11\x18\xdc\xa5\xcd\x08\xa0\xf3\x1d\x45\xee\x58\xb6\x84\x94\x60\xe5\x35\x9b\xb1\xe1\x51\xd0\x5a\x62\x17\x8e\x10\xc9\xe2\xb4\x85\x57\x54\xe9\x1b\x2b\xcf\x9a\xb7\x29\xec\xea\x41\x16\x7c\x4b\x9f\xd3\xed\x8e\xc0\xf0\x42\xfb\x78\xfa\x48\x94\x8f\xeb\x51\xca\xff\xfa\x52\x4a\x7b\x63\x17\x90\x4d\xbc\x0b\xd7\x91\x03\xf5\x51\x87\xd2\xb4\x8c\x42\x9e\x98\xb8\x81\x93\x51\x62\xea\xce\xe4\x1e\x69\x70\x17\x0a\x2c\xd6\x9c\x27\x82\xd2\x20\x8d\xe1\x6f\xca\xd6\xf7\x00\x18\xa2\x63\x99\xcf\x4b\x6b\x37\x63\x37\x38\xbf\x80\x61\xb6\xef\xcd\x21\x7d\x6f\x39\x56\xff\xc8\xf0\x17\xd0\xe3\xbe\xe1\x5c\x42\xc6\x6f\x01\x77\x40\xd5\xcd\x27\x3d\x0e\xb0\xfd\x54\x86\x53\x41\xa8\xb2\x5a\xe0\x09\x71\x2c\x83\x17\xc7\x06\xbc\x23\x03\x46\x0b\x11\xbb\xdc\xce\xc3\x0f\x65\x9a\xa6\x0c\x3f\x79\xfc\xad\x1d\x64\x93\x47\x20\xd1\xe0\x09\x54\xc0\xda\xa5\xc0\x63\x52\x7f\x0c\x71\x7e\xfe\xda\x0e\xdb\xcc\xd4\xc6\xdd\xa2\xcc\xcb\xd7\x76\xec\xb8\x56\xee\x1a\xe4\xfb\xf5\x6b\x3b\xf6\x5b\x13\x97\x49\xfc\xdb\xcf\xdf\x9a\xb9\xf5\x0d\x7c\x65\xce\xb8\xe7\xbe\xf9\x9c\x39\x5b\x6f\x64\x11\x72\x97\x10\xbd\xdf\x7f\x68\xd0\x37\xe7\x2f\x07\x3b\xe9\xc7\x0f\x65\xcc\xf5\xfd\x62\x78\x8e\x0b\xb6\x48\xe3\xd3\x85\xa7\x4e\x72\xfa\x11\xdf\x0b\xea\xdd\x4b\x59\x0f\x36\x32\xc6\xd6\xd2\x0f\x41\x6a\xe3\x92\x09\x0d\x7c\xf0\x73\xfa\x8e\x51\xe6\x8e\x49\x6e\x20\x65\x6e\xa0\x69\x82\x4e\x14\x4a\x6d\x6d\xea\x9e\x50\x1f\xc4\x32\xf5\xaa\x0f\x8e\xd5\x3c\x44\x92\x73\xdc\x3a\xbe\x3a\x35\x2c\xae\xea\x95\xb7\x04\x72\x3c\xec\x38\x89\xcf\xa5\x67\x99\xb4\x36\x9b\xf8\xfc\x05\x4c\xe0\xfd\x34\x8b\x86\x3c\x0b\xe7\xde\x3f\xb3\x0e\xbc\xcb\xa9\xd6\x5d\xd9\xdc\xea\xcd\xdc\x63\xbc\x13\x90\x84\xe5\x9f\xd7\xe9\xff\xe2\x40\x6f\x8b\xa4\x5c\xf1\x4b\x2c\x72\xfe\xfb\x87\xda\x36\x57\xde\xe7\x3a\xbe\x85\x51\xfc\xbb\x75\x52\x43\xbd\x09\x49\xfe\xf7\xd6\x25\xc4\x82\x5c\x1e\x1c\xce\x91\xe0\xcf\x28\x64\x55\x8d\xc6\x64\x84\x73\xdd\xc4\xcf\x1b\x92\x0c\x1d\x5e\xfc\xe3\x59\xfc\xfc\x3f\xf9\x27\xf6\x06\xfb\xdf\xda\x82\xc7\x28\xc6\xff\x53\x2d\xfc\xf8\xec\xff\x4e\x0b\x71\xc1\xff\xb4\xf0\x3f\xdf\x82\x6f\x1d\x23\xff\xef\xb6\x90\xb0\x52\xff\x69\xe1\xef\xb5\xe0\xab\xfb\xd9\x49\x65\x49\x6b\x7b\x03\xf3\xdc\x74\xc1\x36\x0a\x4f\xb9\x6e\x22\x69\xcf\x21\x97\x35\x2f\xe4\xe1\xc9\xd2\xd0\x03\x79\xfa\x20\x9a\x3c\x38\x03\xb0\xd2\x3f\x21\x6f\x2c\xee\xa1\xab\xa7\x6d\xa1\xb3\x6c\x99\x8b\x55\xfb\xe8\xd7\xb1\xcc\xbe\x29\x14\xa5\x5c\x42\x54\x2b\x7c\x77\x03\x12\x12\x11\x5e\xdb\xd4\x80\x34\xe7\xe2\x4d\xd3\xa8\x61\x79\xf7\xfc\x91\x03\xfd\xf6\x38\x5a\x96\x4a\xa9\xfb\x20\x19\x44\x49\x46\x14\xe5\xe0\x2d\xfb\x9c\xf2\xc1\xd4\x5e\xd1\x33\x32\x4a\xd3\x78\x38\x2c\xe7\x9e\x03\x43\x1c\x9b\xf2\x71\xca\x80\x3b\xa8\x8c\x70\x78\xff\x54\xe0\x4f\x27\xd0\x66\x16\x15\xb3\x13\x01\xfb\x66\xce\x09\xb5\xa3\x71\x92\x8d\x9c\xd0\x1f\x57\xe6\xb7\x4b\xc9\xd4\xee\x21\x18\xcf\xa5\xcd\x18\x79\xc9\x90\xc2\x63\x40\x6b\xe9\xa7\x9f\xf6\x85\xe8\x57\x48\xc3\x5e\x25\x16\xff\x9e\xd2\xfa\x18\x81\xb7\x6d\x3b\xbd\x94\x93\xeb\xfc\xb7\x3b\xeb\xc7\x37\x14\xe2\x7e\x85\x9c\xb0\x6b\xe9\x14\x94\x10\x05\x35\xbe\xa7\x32\x93\x7b\xe2\xa9\x31\x52\xfe\xa0\x19\x6b\x5b\x88\x93\xe7\x78\xea\x66\x90\x4c\xe4\x88\x64\xbd\x26\xe6\x5b\xe5\x95\xd3\x52\x77\xf4\xfa\x2c\xf7\x65\xc6\xeb\xa2\x61\x6e\x78\x2d\x19\x37\x7a\x4b\x3e\x73\x9c\x6c\x5a\x38\xda\xf5\x4f\x14\xa1\x36\x12\x8e\xaf\xef\x28\x82\x2d\x83\x59\xb6\x6d\x53\x78\x9a\xd8\x4a\xf2\x7a\x7a\xa9\x91\x0e\xad\x14\x27\x41\xa6\x94\x80\x90\x9b\x4b\xd8\x0b\x33\x8d\x75\xf4\x6d\xba\x60\xe0\xfe\xc7\x0e\xe4\xea\x2e\xba\x4d\xfe\x5e\x92\x5f\x51\xb3\x4c\xf8\xd2\xfa\x09\x81\x7d\x76\x83\x4e\x29\x0b\xa1\x16\xa2\x2a\xcb\xe4\xdf\xd7\x5c\xd2\x7f\xfe\x85\xf3\xe4\x0e\xcc\x74\x2e\xe4\x3c\xef\x26\x1b\xb5\x89\xa2\xde\x2c\x6b\x33\xc2\xb5\x85\x9a\xe8\x33\xfb\x4a\x65\x4f\x58\x90\x39\xfc\xbb\xbc\x0d\x8e\xc5\x13\x81\x38\x35\x4b\xbc\xaf\xab\x65\xc4\x52\x98\x5e\xdf\xd4\x54\x85\xb7\xb9\xe3\x8b\x66\x1d\x81\x87\x75\xa0\xbf\x3d\x14\x3e\xae\x06\x43\x9f\x20\x03\xb2\xba\x33\x1f\x26\x7f\xf1\x56\x6d\xc9\x8e\x7a\xa6\xea\x44\xe6\xa9\x87\x3d\xd3\x3d\x04\x55\xf7\x9c\x8e\x11\x77\x51\xc1\xac\xda\x9e\x0d\x4b\x94\x9b\xcc\x4c\x97\xcf\x7e\xfb\x0d\xc7\x6b\x44\x72\x4f\x6b\xb6\x86\x7b\x10\x2d\x94\xcf\xe2\x62\x41\xf2\x51\xc4\x53\xef\x6e\x46\xa0\x0f\x6f\x89\x96\xb8\x66\xa3\x47\x2a\xfe\x8d\x3f\x6e\x38\x9e\x7f\x77\x68\x24\xd1\x55\x04\x4a\x3e\xa8\x13\xd4\x19\x65\xa9\x73\x97\x0c\xb6\x56\x06\x6a\xe3\x12\x7e\x82\xab\x54\x1e\x6c\xb3\xd7\x28\x8e\x70\xbc\xb1\x01\x9a\x36\x17\xb6\x77\x8f\x37\x82\x9f\xc7\x79\x11\x2d\x84\x5b\x15\xad\x9e\x65\x05\xa6\x0b\xbf\xbe\x55\xc0\x13\x43\x4a\xec\x6e\x05\xf1\x5d\xed\xea\x26\x9d\x14\xbb\xcf\xc0\xb9\x67\x32\x42\xf8\x75\x4f\x38\x9e\xd3\x54\xa2\xb1\x26\x59\xff\xe5\x83\x9c\xe0\x40\x31\xa3\x7e\x82\xdd\x4c\x8a\x2f\x5f\x97\xba\xc8\xac\xe2\xda\x02\xac\xcc\x52\x79\xb9\x7c\x61\x29\x56\xdc\x8a\x91\xe3\x29\xef\x21\x64\x58\x4e\x25\xd4\xcb\xbe\x69\x69\xf9\xdf\xf6\xa9\xd5\x8d\x1c\xd1\xda\xb5\x59\x3c\xef\x20\x77\x95\x18\xfe\xe6\x47\x77\x60\x95\x95\xf3\x33\x74\x3f\x66\x40\x7d\x76\x79\x7d\xff\xc6\x6f\xd5\x3a\x85\xb2\x87\x6b\xe0\x74\xd4\x3b\xc3\x2b\xcc\x2b\x2c\x92\x28\xa1\x3e\x36\x17\x76\x65\xec\x08\x75\xb3\xd2\xf8\xbb\x27\xb4\x9b\x2b\xa6\x4a\xad\x8a\xb1\xc3\xa3\xba\xe1\xeb\xac\x2d\xd4\xcd\x7b\x52\x17\xba\x70\xcf\x69\x09\x75\x03\x55\x45\x2a\xd4\xb5\x43\x78\x05\xc9\xc3\x00\x91\x94\xfa\xa9\x96\x8f\x1d\xd9\x2d\xa2\x01\x99\x42\xae\xfe\xec\x20\x57\x95\x7a\xe6\x3f\x03\xd1\x7c\x54\x8e\x56\x79\xd9\xc3\x76\x5a\x55\x6c\x40\x4c\x7c\x8f\xb5\x13\xff\x48\xaa\xa4\x8d\x30\xfe\xe1\xf4\xc5\xed\x42\x9e\xa1\xdc\xfd\x28\x22\xe9\x7a\xa0\x4d\xe3\x8f\x0d\xfe\xdb\xb3\xb6\x55\x4a\x58\xed\xbd\xd8\xe7\xbe\xbb\x90\x01\xcf\x1d\x05\xbd\x22\x77\x17\xd0\x10\x70\xef\x37\xab\x95\x14\xc4\x05\xd4\x20\xd4\xa5\x2d\x57\x6b\x21\xb2\x32\xd6\x80\x98\xbd\xdf\x78\x44\x00\xe5\x43\x5c\x22\xa0\x5a\x0a\x03\x19\x11\x33\xe0\x72\xc2\xff\xe6\x66\x13\xe3\xa7\x43\xf7\xa6\x8a\x6a\x42\xf3\xed\x6f\xed\x8a\x11\x54\x84\xb9\xb5\xe9\x69\x29\x7e\xaa\x67\xac\xcc\x25\xd5\x52\xaf\x5c\xe0\x40\x9a\x25\x88\x61\xff\xcc\x09\xe5\x8a\x4c\x40\x92\xc4\x55\xd0\x1e\xd9\x5b\x23\x47\x81\xc1\x9c\x94\x8f\xe2\x25\xe2\xf4\x01\x39\xec\x48\xce\xce\x06\x17\x5c\x36\x4c\xc5\x19\x65\x7b\x91\xd9\x47\xfa\x63\x4d\x9c\xcf\x30\xce\x01\xdd\xfc\x76\xd7\x27\xff\xfc\x41\x11\xda\x1e\x64\x41\x25\x7d\x2a\x74\xcc\xc4\x3d\x91\x09\x35\xf9\x87\x9e\xe1\x35\xbb\x87\x50\x05\xd2\x5a\xf7\x85\xaa\xa6\x90\x0a\x17\x71\xb6\xa0\x78\x73\x21\x62\x26\xa8\x33\xd8\xb6\x26\x88\x8c\x20\x4e\xb4\x31\x93\xe4\x08\x06\xb7\x64\xda\x25\x8c\x66\x8f\x70\x1b\x86\x9f\x0e\x2b\x57\x57\xf1\x9c\x22\x28\x11\x41\xfe\xa5\xce\x80\xc8\x1a\xb2\x80\xcf\x48\x73\xaf\x28\xae\xb1\xd5\x70\x06\xe2\xc8\xa1\xe6\x6c\x29\x40\x0f\x67\x84\xab\xc9\x5e\xc5\xd4\xe6\xfc\x05\xe8\x33\x71\xa3\xc3\x55\x27\x01\xa6\xcf\x00\x16\x6e\x2f\x39\xed\x4d\x4b\xb8\x02\x4e\xb3\x3e\x3d\xdb\x49\x8a\xb9\x9d\xcb\x08\xaa\x55\xb4\x86\xd0\x32\x0e\x5e\x7a\x87\xa6\x31\x8e\xa4\xa2\x70\x32\xe5\xb3\x51\xc1\x54\x73\x1f\x27\x13\x98\x93\x33\x30\xbf\xfa\x5e\x02\xdb\x46\x31\xd8\xc4\x3a\xab\x47\x53\xc7\x9b\x5b\xf7\x7d\xba\x2d\x5c\x6a\x12\xe6\xe7\xf2\x0c\xfb\xab\x44\xdc\x48\xd0\xac\x2f\x49\xdf\xd2\xc9\x01\x5c\x9d\x3b\x17\xc2\x0f\x5f\x19\x76\xca\x47\x6c\x73\x15\x3e\x1d\x75\x44\xb6\x7f\x20\xeb\x29\x58\xab\x61\xc9\x2c\xa4\x7b\x5f\x04\x45\x0a\x4a\xc4\x54\x70\x30\x69\xeb\x50\x4d\xa7\x43\xcc\x11\x3a\x6b\x2b\x93\xda\xf8\x7b\xda\xf8\x1e\xa1\x10\xb3\x05\x27\x0b\x8f\xe1\xfe\x8c\x03\xf4\x2b\x3b\x3e\x6f\x58\x93\xa6\x9d\xa0\x21\xae\x01\x73\x7b\xbb\x77\x2f\xe0\xf7\xc8\xc9\xe7\x2c\x0f\x04\x86\x97\x77\xe7\x2f\x68\x09\xcc\x6d\xb0\xcd\xc7\x2d\xb9\x45\xcf\xd0\x5f\x51\x90\x3b\x74\xbc\x35\x45\xa1\x9e\x11\x29\x5a\x08\x89\xf2\x4f\xd7\x7b\x6d\x7b\x61\x7b\x8a\x8a\x91\xec\x7d\x6c\xf5\x4d\x21\x19\xbd\xa9\x50\xbf\x25\x4b\x2d\x39\x60\x72\x8c\x52\x8b\xc1\x5a\x36\x5f\x77\x0f\xdf\x9c\x59\xd2\x5a\xeb\x22\x76\xd1\x1c\x9e\x3e\x7e\x8e\x63\x18\xe1\x6f\xe8\x55\x6e\xf1\x33\x5b\x65\x6c\xae\x2a\xa9\x0f\x7b\x85\x31\x9f\x3a\x5a\xaa\xee\x69\x4c\x5a\xe3\xac\x9e\x67\x79\x31\x7d\xe1\xdd\x39\xe4\x5b\x6f\x8e\xeb\x41\x1e\x38\x73\x59\x65\x63\x37\xa3\x22\x84\xf3\x98\xe3\x5c\xca\xdd\x2f\xa3\xd2\x16\x9f\xbe\x92\x5e\xe1\x42\x15\xa1\x6a\xdf\x0c\xb2\x04\xd3\x8e\x4b\x83\x83\xcb\x8d\x5f\x60\x94\xf5\x3a\xc6\x96\xb9\x35\x5f\x1f\xdd\xa4\x07\x42\x14\xbb\xee\x96\xe3\x51\xf8\x77\xa6\x05\x0e\x8f\x35\xa5\x3c\xb5\x68\x1c\x24\x5d\x0c\x73\xc9\x72\x4c\x6a\x35\x03\xc3\xd8\x9f\x3a\x30\x0e\xb5\xad\x78\xe6\x45\xb2\x8c\x4d\x7d\x19\x39\x5d\xe0\x2a\xa9\x27\x42\x00\x17\xed\x02\x99\xe7\x86\x1f\x8e\xd6\x07\x3e\x01\x94\xdc\x57\xa5\xe1\x7f\x47\xe6\xd2\xfa\x57\xfc\x23\xb4\xf0\x0e\xc8\x7e\x52\xa9\x24\x54\x2a\x45\x61\x02\x04\x69\x13\x01\xe8\x87\x3c\x4e\xb3\x3a\x33\x55\xf5\xe9\x82\xaf\x98\x89\xf2\x1e\xaa\xb7\x60\x02\x7a\x1c\xbd\x01\x79\x74\x0c\x79\x61\x52\x4d\x77\xaf\x3d\x97\x4e\x2c\x99\x42\xa8\x9a\x63\xad\x5a\xec\x89\xa0\x6d\x66\x52\xf6\x22\xe2\xfd\xb3\xaa\x72\x74\x07\x4a\xb7\x67\xdc\xec\x94\x7e\x77\xc0\x8c\x22\x92\x70\x22\x6d\x61\x3a\xfd\x4a\x2c\x6b\xcc\xa5\x78\x66\x82\xa9\x44\xf8\x7d\x09\xfb\x98\x52\xff\xb2\xe4\x84\x4c\xba\x20\x13\xd3\x0b\xfb\xf5\x39\x00\xb6\xa4\xbc\x4c\xdf\xd1\x4d\x1b\x3f\x81\x99\xf1\x12\x0c\x5f\x26\xb6\x2f\x1c\xfd\x45\xfb\xcd\xc2\xda\xe6\x18\x57\x92\xfc\x51\x04\x65\xb8\x70\x23\xf6\xf7\x70\x02\x31\x97\xcf\x4e\x4b\xbc\x8b\xcb\x55\xb2\xea\x12\x87\xf2\xc5\xce\x99\x1b\x75\x38\x21\xa2\xd0\xe9\x89\xce\x0d\x95\x5d\xd2\x29\xf5\x5e\xb0\x52\xed\xda\xad\xb5\x48\xa9\x87\xfa\xad\x61\xc5\x5c\x04\x42\x2e\x9b\x96\x39\xd6\x21\xfb\x52\x38\x19\x49\x3e\xa9\xc4\xd0\x65\xe0\xac\x4b\x9f\xaa\xa4\xbc\x66\xc7\x4a\xf8\x7a\x83\x44\xcd\x64\x13\x95\xdb\x01\x6e\x73\x9f\xf8\xbe\x36\x92\x56\x1b\x6e\x90\xf3\x5b\xeb\x07\x65\x0b\xe8\xa4\x80\x69\x7c\xc4\x29\xac\x75\xec\xa4\xd0\x24\xd0\xbd\x34\xf6\x30\x00\xcb\x62\x03\xf2\x89\x49\xdb\xf1\x2e\xed\x09\x11\xe4\x48\x2d\x33\x72\x02\xd1\x27\x11\x48\xbd\xbd\xa5\x02\x91\x66\x83\x94\xe9\x2c\x3f\x66\x9c\xb7\x1e\x27\xf0\xf1\x21\x51\xb6\x43\xfd\x2f\x1d\x2e\xe6\x9d\x55\x15\x39\x3d\xbb\x8f\xff\x62\x14\x8d\xae\xeb\x39\xf6\xe6\x52\xe6\xb1\x39\xdb\x85\x31\x45\xfa\x96\xe5\xf8\x2d\x71\x57\x8b\x1d\x02\xb2\x00\x63\x39\xd3\xe8\x7a\xb4\xc6\x2b\xcd\x9e\xac\x65\x6e\xa1\x44\xc4\x52\xe5\x25\xf9\x0b\xf1\x7d\xc7\x08\xad\x15\x19\xa7\x83\x36\x92\xd9\x88\x62\xad\x5c\x4e\x0c\x5e\xb7\x0d\x90\xd3\xd4\x67\xaf\xca\xf9\xde\x7a\x55\xc6\x6e\x76\x13\x55\xbd\x83\x8f\xc1\xec\x98\xf6\x95\xeb\x59\x77\x00\xa7\x2b\xc6\x6a\x43\xb1\xd4\xed\xe7\xf4\x25\x57\x44\xb2\x90\x18\x18\x8e\xb5\x10\xed\xf4\xad\xbd\xcd\x5d\x65\x4d\x37\x5b\xa1\xce\x5b\x81\xc3\x9f\x01\x61\xc7\x0f\xa7\xf0\xc9\x89\x64\x2e\x64\xaf\x45\xe1\x24\xae\xa2\x1d\x8f\xb5\x55\xa6\x46\x9e\x9b\x29\xa5\x9b\x29\x87\x0c\x9e\x0f\x9c\x99\x02\x3c\x28\xd7\x0c\xe7\x51\x02\x7e\x75\xa7\x4c\x1c\x82\xaa\x06\xab\x48\xd9\xa3\xab\x9f\x8f\x79\x97\xd2\x70\x02\x6a\x2b\x23\x21\x63\x32\x64\x1e\x1c\x38\x6e\xac\x6a\x8c\x29\x48\x05\xbe\x03\xbd\x2a\xe7\x21\x35\xdb\x81\x51\xae\xab\x7e\x7a\xa3\x17\xa8\x11\xc0\x79\x90\x76\xb2\xb9\xbb\x30\xd6\x30\x3c\x53\xfc\xfa\x98\x11\xda\x9a\x36\x63\x73\xcf\x09\xd4\xa9\x71\x70\xb3\xe4\x57\xfb\x84\xd8\x8c\x5a\x86\x4f\x9c\xb9\x07\x54\x1c\x8f\xf4\xa2\x62\xcf\x83\xc7\xab\x3f\xad\x8f\xc0\xc3\x95\x90\x47\x67\x39\x50\x19\x4d\xc9\xae\x8a\xfa\xc3\xe9\x89\x39\x29\x82\x66\xac\x49\xba\x30\xb9\xfd\xaf\x9c\x0a\x20\x9a\xed\x65\x1e\x6d\xb5\x8f\x07\x17\x3e\x9c\x0b\xf2\x53\x2f\x7d\x72\x00\x8a\xdd\x64\xd8\x01\x68\x2e\xcb\x5c\xf1\x7c\xe4\xc3\xb0\x24\x3d\xda\xfc\xfa\x30\x24\x15\x27\xa8\xb8\x90\x75\xfb\xc5\x8b\x0b\x7f\xd8\x3d\xa9\xbd\x28\xef\x7d\xca\x21\x36\xae\x18\xba\x70\x44\x1b\x6d\x58\x8c\x3c\x1e\x81\x5f\x23\x8f\x01\x6e\x81\x09\x06\xd3\x5e\xe4\x09\x50\xaf\x2e\x6b\xb4\x17\x72\x9f\x1c\x84\xe2\x16\x4f\xee\x8a\x14\x8b\xb1\x03\xcf\xf5\xe1\xb2\xa0\x85\xdd\x94\xc4\x34\x12\x3a\xdf\x38\x42\x5b\x00\xdf\xd0\xe1\xf1\x16\x77\xd9\x81\x3c\x44\x86\x1c\xa2\xbc\xa4\xf4\xbd\x13\x15\x51\xdf\xba\x25\xba\x31\xe0\x43\x7e\x92\x15\x8e\x88\xf5\x49\xe1\x62\xf6\xcc\x41\xee\x1a\xec\xbe\xa6\x85\x7a\xdb\xbb\xf8\x5c\x20\xd4\xcb\x0e\x7b\x05\x29\xcc\xaf\xe2\x11\xd7\x01\x24\xdf\x00\x85\x3d\xa1\x5f\x8a\xb7\x29\x6f\x87\xfa\x21\x3e\xd1\xfa\xa1\x76\x71\xd3\x8e\x10\xa0\x1d\x98\x12\xeb\xae\x76\xbe\x85\x8e\xf4\x12\xa4\x4a\x4e\x3e\x62\x97\x09\xf5\x50\xda\xc8\x54\x2f\x27\x63\x1b\x91\xea\x09\xf5\x70\x24\xe7\x5b\x1d\x94\x9e\xfe\x9c\x61\xb1\xac\x0a\x14\x07\xad\xf8\xe4\xf9\xbf\x71\x31\xa1\x97\xe6\x62\x58\x99\x2a\x9a\xd7\xac\xcc\x5a\x51\xe4\x6a\xa8\x04\xbc\x18\x7b\x55\x6c\x0e\xca\x28\xf7\x99\x99\x5d\x5b\xdf\x7e\x4e\xaf\x92\x52\x83\x91\xe3\xaf\xda\xc8\xa3\x72\x9a\xce\xd6\x55\x1b\xf7\xce\x99\x2b\x33\x9e\x4d\x48\xba\xb8\x35\x6d\x94\xaa\xb4\xaa\xb8\x2d\xe2\x47\x33\x35\x02\x16\x7a\x33\x5d\xaa\xca\x0d\xab\x02\xae\x5f\x4e\xbe\x7b\x6e\xfe\xcf\xb3\x03\x6b\xc1\x15\x99\x1b\xe4\x1a\xeb\x14\x3e\x80\x45\x0f\xee\x9c\x72\x0e\x15\x89\x5b\x21\x79\x7f\x2d\x4b\x1d\x26\x84\x2d\xc6\xd4\x00\x81\xea\x46\x94\xf5\xbe\xb5\xe8\x80\x33\x2b\x12\x0e\xcb\x8c\x49\x2a\x91\x4b\xe2\x61\xe0\xe3\xb2\x28\xba\x71\x1c\x4b\xa4\xdc\xb8\x8a\x85\x84\x9f\x51\x68\x0d\x54\xdb\x73\x28\x5a\xba\xd5\x76\x22\x5d\xd7\xc8\x4b\xbb\x4b\x53\x32\xc4\x32\xcf\x2a\x09\x0c\x58\x77\x4e\x94\x40\x55\x35\x0c\x44\xf7\x16\x07\xda\x76\xe6\x0e\x0c\x57\x60\xa9\x38\xb2\xf0\x97\x1f\x9d\x81\x33\xd6\xea\xe2\xbf\x4e\x3b\x14\xb3\x45\xea\xf4\x8f\xec\x33\x94\x80\xff\xb8\x98\xad\xb9\x54\xcf\xb7\x0b\xf2\xd0\x22\x25\x89\xfa\xe0\x8b\x5f\x21\xfe\x86\xfd\x6a\x8d\x30\x54\x92\x8d\x9a\xb9\x37\x2f\xf2\x86\x13\x04\x9b\xa1\x5d\xe4\xec\x36\x46\x9b\x79\x28\x72\x0c\x56\x80\x03\x89\xe3\x8e\x5f\x2f\xb3\x1a\x18\xb8\x05\xa1\xd7\xb7\x0c\x1f\xca\xfe\x86\xbe\xf0\x23\x19\xe2\xbc\x1a\x3e\xf0\x63\x9e\x8a\x51\xca\xf8\xe4\xc6\x44\xea\x34\x35\x93\x9b\x9c\x8a\x19\xdf\xfb\xe5\x86\x69\x5f\x4b\xa8\x0f\xd6\x26\xf5\x08\xab\xc1\xec\x7c\x4d\x60\xd0\x3e\x05\x77\xba\x86\xa0\x39\x63\xa5\x1a\x17\xe9\x9c\xef\x85\x0f\x00\x9c\x19\x64\x9d\x0b\x0b\x6f\x05\xd0\xeb\x5e\xf1\x8d\xd2\x15\x2a\xa7\x2f\x5c\x24\xf0\x7b\xa3\x7b\x6c\xcf\x4e\xb0\x24\xa1\x48\x82\x41\x13\xdd\x6c\x2f\x39\xa5\x63\x92\xfb\xbb\x27\x02\x4e\x69\x51\x96\xb1\x7b\x9f\x80\x68\xda\x2b\x9a\x85\xc7\x12\x3e\xd1\x41\x11\x7e\x2c\x82\x65\x00\xff\x43\x94\x2d\x91\xa7\xa8\x7a\x2b\xbd\x5d\x95\x2d\x31\xc6\x57\x99\x5e\xeb\x83\x3c\x12\x26\x29\x65\xfe\xd3\x0f\x8e\x2f\x9a\x3d\x2b\x65\x10\x26\xfb\x86\xc3\xbe\x8c\x84\xb9\x7d\xc5\xf4\x78\x74\x63\x0f\xcd\x71\xa3\x58\x1a\xf5\xbc\x5c\x49\xcb\x75\x1b\x1e\x60\xc4\x31\xd8\x6a\x22\x4f\x39\x43\x80\x5e\xb6\x8c\x06\x52\xe4\x4c\x7a\x47\x92\x46\xfb\x8c\x95\x46\xa1\xcb\xaf\x71\x58\xf3\x8d\x4a\xbe\x13\x95\x78\xad\x3c\xa1\x1e\xb7\x75\x99\xf4\xa6\x36\x60\x1b\x29\xc5\x71\xf5\x59\x09\xfa\xa6\xac\x43\x92\xd9\xa1\x1c\xe8\xe5\xed\x52\x92\xc0\x5e\x6e\x96\x36\x9f\x5f\xfc\xc5\x72\x41\xc5\xac\xfc\x6d\xf2\x18\x60\xc5\xd4\x1b\x4a\xf7\xa4\x5e\x58\x62\x23\xd0\xe7\x92\xc2\x84\x97\x8b\x2a\x29\xf7\x9a\x14\x3b\xc2\xe3\x33\x38\x11\x5f\xa1\x67\x72\x98\x14\x23\x2d\x7a\xb3\x83\x49\xca\x14\x93\x82\x46\xaa\xed\x38\x01\xe5\x97\x32\x5b\x6f\x3d\x36\xfb\xcb\x1d\xad\x08\x99\x0c\x8e\x79\x41\x16\xe3\x81\x36\x75\x2a\x2f\x63\x6d\x78\x03\x42\x99\x7e\xe6\x14\x6d\xa6\x5c\xc4\xd9\x45\x6f\xe6\x63\xfd\xdf\x3a\xa5\x4d\x51\x91\x61\x4a\x89\xb4\x96\xbb\x3e\x98\xcb\x3e\x25\x67\xca\xf3\xa1\x3f\xe0\xe9\xbe\x0f\xd8\x71\x70\x34\x27\x3c\x3c\x52\xae\xa8\x95\xdc\xbd\x42\x52\x99\xbf\x42\x3f\xd5\x13\x1e\x41\xb3\x37\x98\xed\xa3\xe4\xc2\x62\x73\x88\x2f\x3f\xd5\xe0\x84\x88\xcd\xe4\xc6\x6c\x66\xc3\xab\x0b\x18\x29\xcf\xd5\x4a\x85\x5c\x74\xce\x36\x11\x5b\x2e\x13\x5a\xb0\x1e\x56\xcc\x89\x60\x01\xdb\x5d\x11\x69\x3b\xce\x7d\xce\x50\x9c\xcf\x5a\x44\x65\x43\xe0\x19\xd1\xd1\x8f\x76\x4c\xbf\x02\x76\x6a\xec\x84\x48\x93\x4c\x4c\xb1\x82\xbe\x7f\x3f\x66\x77\xf3\x03\xfe\x08\xcc\x3a\x74\x4d\xb7\x66\x59\xc0\xe9\xed\xb3\x50\xc3\x17\x33\x40\x40\x5b\x49\xa7\x27\xf4\x4c\x31\x5e\xfb\x5c\x9e\x93\x59\x21\x53\xc7\xbf\x79\x56\x72\x80\x0f\x29\xfe\xad\x39\xa9\xeb\xdf\xe6\x24\x13\x51\x44\xe1\x4a\xd5\x91\xaf\xe3\xc7\x39\xc9\xd8\x8c\x63\xe3\x7e\x3c\x27\xd5\x7f\xc0\x9c\xd0\x99\x18\x84\xd1\xdf\x99\x92\xea\xaf\x53\xb2\x1c\x6b\x3a\x1b\x2a\xfa\x75\x9b\x6c\x52\x19\x9b\x2b\x0b\xf7\xda\x73\xf7\xe1\xda\xaf\x77\x3c\x60\x4f\xde\x07\x27\xf6\xaa\x8f\x70\x35\x30\x7f\x5d\x18\x60\x76\xab\x04\x26\xad\x0e\xda\x89\x51\x5f\x6b\x07\x3a\xeb\x73\x59\xfe\xb6\xc6\x25\xe3\x5a\x77\x64\xa1\x33\xb3\x84\xa9\xca\xea\xce\x75\x2f\x5a\xd7\x7d\xb4\x21\x01\x64\x22\x7f\xdf\x90\xd1\xd4\xf0\x57\x2a\x22\xb2\xa5\x22\x46\x5e\xfa\x32\x41\x6b\xc6\x2d\x53\xab\xf9\xef\x13\x74\x1e\x6b\x96\xa0\x9f\xed\x9e\xd1\xa4\x54\x76\xb1\x67\xea\xd9\xff\xa7\x9b\xc5\x90\xfb\xda\x2b\x24\xc0\xc3\xd5\x99\x29\x65\x59\x41\x53\xaf\x7f\xbf\x43\x4e\xbf\x12\x92\xc5\x58\x3b\x43\xea\xc8\x5f\xec\x10\x73\x68\x46\x36\x37\x97\x9a\xc8\x02\x1d\xe0\xd1\x4b\x3c\x1b\x87\xff\xd9\xd9\xc8\xd0\x6c\xf4\x4e\x57\x93\x51\xe1\xce\x67\x7f\x9a\x8b\x5f\x4f\x8b\xb9\x21\x03\xda\x0c\x7f\x31\x17\x85\xb1\x75\x76\x8f\x89\x2a\xd0\xda\xfe\xe7\x86\x3f\x1e\x80\x19\xbe\x1a\x7e\x0d\xdf\x1d\x4e\x32\xdf\x0f\xbf\xfc\xeb\xf0\xb7\x76\x2b\x6c\x7e\x1e\x7e\x5f\xf8\x70\xd0\xe8\x94\x50\x6b\x54\x87\xc6\x8f\x53\xe7\x07\x67\xc0\xd2\x15\x1b\x71\x08\x97\xf2\xe7\xe4\x8e\xe1\x0a\x8e\xb0\x19\x64\x29\x99\x33\xe7\x00\xa8\x12\x62\x71\x93\xa4\xe0\x1b\xdf\x70\xa4\xbe\x50\xa2\x8c\xa2\x1d\xae\xd2\x8b\x8e\x04\xab\xb4\x92\xfb\x10\xc1\xba\xb1\xc2\x5b\xbf\x84\x1b\x36\xda\x93\xde\x1f\x3a\x27\xe0\xed\xb7\xeb\x19\x96\x88\xe7\xc0\xe1\x6b\x22\x53\x74\xf5\xb6\xaa\x9d\x92\x32\xf2\xb3\x19\xca\x12\xfa\x8b\x3e\xd2\xdb\x82\xad\x0e\xf2\x35\x8a\xe9\x57\xf7\x97\x97\xb4\xac\x59\x23\xc0\x00\x8f\x79\x96\x1d\xb1\xad\xfa\x36\x0b\x65\x49\x50\xf1\xe8\x56\x3b\xc3\x08\x3e\xe7\x20\xe8\x0d\x1b\xd2\x08\x37\xe0\xd6\x08\xfc\xe0\x6b\x7b\xc2\x7b\xcf\xde\x51\x03\xf9\xc2\x55\x03\x60\xef\x48\xc1\x51\x78\x89\x63\x3c\xee\x97\x63\xf0\x58\x7b\xca\x12\xa0\x1e\xa3\x8c\xfb\xe3\x67\x0f\xc9\x67\x97\x5f\x3f\x7b\x6a\xd2\x67\x67\xa5\x3f\xea\x77\xe6\xba\x81\x9c\x14\xde\x7b\xed\x8d\x5a\x38\x5c\x77\xe1\xff\x79\xc7\x33\xf8\xec\xe9\x97\x06\x52\x1d\xaf\x5d\x37\x30\x12\xde\xfb\x98\x2c\xa6\xdd\x0b\x37\x30\xbe\x31\x27\x85\x5d\x41\x80\x7e\x48\x18\x83\x0a\xc8\xb9\xfe\x07\xee\xd1\x0c\x69\x55\x1f\xdd\x14\x60\x1f\x53\x80\x15\xd0\xe7\xb8\x88\x57\x97\x59\x64\x66\x8f\x67\xc4\xde\xac\x13\xb5\xec\x58\xef\x1b\x75\x7b\xe8\xb1\xea\xd5\x13\xea\x76\x7d\x66\xe0\x2e\x73\xdf\x91\x3e\x5b\xbd\x66\x73\x49\x60\x6b\x47\xe8\xc7\xe2\x5e\xfd\xdd\x66\xf7\x36\xb7\x9f\x69\x76\xbb\x00\x88\x17\x2b\x1e\x83\xf9\x4e\x39\x5d\xa1\x1f\xab\x7f\xbf\xdd\x1a\xa9\x8a\x3c\xdf\x69\x5b\xbc\x90\xf6\x05\x99\x17\xce\x14\x93\x96\x55\x33\xb2\x22\xb5\x4a\xe4\x77\xd1\xdd\x6a\x24\x83\x03\xe5\xe8\x22\x5f\x12\x3f\x5d\xc9\x15\x54\xbd\x61\xfc\x34\x10\xfa\xd1\x88\x75\x2d\x73\x54\x67\x8d\x0f\x23\x3e\x1f\x35\xcb\xc8\x00\x40\xe8\x46\xc0\xdc\x2c\x01\xab\xfd\x3c\x64\x11\xb9\x2d\xdc\xbe\x69\xe6\x51\x60\x3b\xe0\x28\x9f\x6a\xac\xf1\x5c\x90\x89\x5f\xb9\x89\x07\xdb\x1a\xb0\x11\xfe\x65\x08\x1c\xc8\xa2\xde\x49\x67\xde\x20\xce\x82\xa0\xe9\x69\xb7\x0c\x52\x91\x7d\x70\x6a\x21\x4d\xa8\xa7\xab\x53\x9d\xb6\xfb\x4e\xc9\x01\x68\x04\x51\xf7\x2a\x67\x7f\x9d\x5c\x28\xdf\xe0\x5d\xb7\x96\x0b\x50\x56\xd2\xd7\x8d\x66\x92\xac\xc1\x3b\x84\xd2\xfb\x75\x72\x03\x78\xef\xa0\xcc\x10\x1a\xcc\xa1\xe1\xf3\x7d\xf1\x1e\xca\x25\x1e\xdb\x8c\xb8\x21\x3d\x7f\x2e\xab\x47\xe2\x9c\x44\xea\x5f\x52\xef\x15\xb2\xec\xc2\xe5\x5b\x24\x10\xfa\x33\xc8\x5e\xf5\xbc\x82\x9e\xfb\x87\x9f\x7a\xae\x43\x8f\x3a\x59\xdb\xa9\xb8\x93\xa6\xf9\xc7\x4f\xdf\xf3\x0b\x18\x99\x17\x65\x39\x6b\x1d\xff\x5e\xf1\x6f\x02\xf9\x55\x35\x1a\xa3\x7a\x74\x9a\xe2\xae\xbd\x26\x83\xe6\x40\x6c\x4e\xb4\xf3\x1f\x77\xfb\x14\x66\xe9\x99\xea\xdd\x11\xbe\x7b\x8b\x3c\xf1\x3a\x48\xbe\xf2\xff\x03\xe9\xbb\xa4\xe0\xf1\xe1\x57\x48\xfc\x5e\x10\xb0\x6f\xa4\x18\x2f\x54\xff\xcc\x27\x33\x67\x9d\x37\x53\x53\x56\x67\x19\xd1\xbe\x2e\xa9\x8d\xac\xc0\x89\xa5\xbd\x3b\x99\x85\x5d\x2a\xb3\x9e\x91\x22\x8b\xa6\x78\xad\x85\xb4\x06\x5b\x1c\x8b\x6e\x89\xd3\xe6\x86\x86\x30\xaa\x9d\x6b\x59\xa9\xca\x44\x73\x9a\x65\x4a\xe4\xb2\xa9\xa4\xa4\xfc\x45\x29\xa5\x52\xd1\xb1\x92\x6c\x26\xab\x5c\x79\x81\x15\x40\xe6\xaf\x1a\xe1\xa8\x32\x4c\x38\xf0\x2c\xdb\xd5\x1e\x98\x8d\x2e\x91\x1b\xb2\xa7\x4c\xac\x0b\x33\x99\x5e\x50\x2e\x40\x6a\x77\xce\xdd\x8d\xbc\xbf\x1c\x1e\x86\xf4\x74\x9a\x9b\x45\x42\x86\xce\x79\x62\x55\xdd\x9f\x37\x70\xc6\xb0\xa8\x1d\x52\x33\x3f\x36\xb3\xf4\xcc\xdf\x9c\xc8\x41\xb6\x63\x5a\x78\x47\x2a\x5d\xd1\x0c\xa7\xa4\xe4\x65\x70\x84\x93\x5c\xac\x13\xc4\x0e\x54\xe1\xa4\xd5\xfe\x49\xae\x4f\xdf\xbe\xa3\x1d\xcf\xcd\x5d\xa8\x9b\x37\x65\x99\x03\x14\xad\x7f\x40\x4e\x90\xe6\x76\x92\x14\x68\x89\xe6\x4b\xee\xa8\xac\xe2\x0c\xfa\x5b\xbf\xbc\x02\xe1\xbe\xdc\xd8\x8c\xdf\xea\xf9\xcc\x90\x2d\xec\x5c\xa7\x67\xe4\xd9\xa4\x5f\xf2\xc8\x5a\x56\x0a\x5d\xb8\xba\xd2\xd0\x09\x4c\x98\x13\x7d\x90\x05\x74\xb8\x23\x58\x81\xe0\x08\x00\xe3\xe6\x09\x56\xbd\xe0\xd8\x45\x86\x12\xbc\x3d\x93\xfb\x7a\xff\x82\x5f\x39\xbc\xc3\xea\x23\x3a\xb3\x57\x07\xab\x78\x7c\x32\x77\x47\xd5\xab\x73\x12\xcc\xcc\x44\xb3\x13\xad\x69\x60\x08\xc8\x5f\x25\xd4\x45\x6d\x90\xe9\xb7\xbd\x60\xdf\xad\x5c\x9f\x84\xdc\x33\x22\xba\x17\x32\x9f\x74\xa4\x03\xa7\x4d\x3d\xd1\x75\x86\x6f\x9f\x82\x48\x75\xd0\xa8\x19\x4c\xd1\x16\x07\x96\x70\x88\xb5\x7a\x9d\xd0\x39\x24\x55\xa3\x26\xb7\x32\x57\xd8\xae\xd5\x90\xe8\xb4\x4b\x57\xd7\x33\x94\x98\x73\x79\x24\x55\x41\x24\x93\x9b\x20\xbc\x48\x58\xf9\x32\x5a\x78\x27\x39\x39\x30\x74\xc9\x84\x7c\xc8\x19\xeb\x87\x2b\x8a\xf6\x8a\x3e\xd8\x01\xee\xcc\xfa\xdd\xb0\x44\x82\x7c\x94\x48\x63\xd5\x25\x67\x90\x96\x10\x4f\x27\x80\x3a\xe4\x68\xd6\x9f\x88\x6b\x85\x49\x07\x07\xbc\x79\x3c\x51\x4c\xbb\x3f\xd1\xab\xa9\xbe\xfa\x20\x0d\x49\x23\xdf\x5b\x7e\x7e\xe5\x81\x15\xdd\xc4\x25\xe9\x06\x4d\x06\x51\x3f\xf3\x20\xe6\xae\xd9\xa5\x76\x10\xe3\x05\xe6\xe0\x88\x88\xe4\x77\x0c\x25\x0f\xa8\x98\x33\x79\x77\x1e\xdc\xcb\x98\x3b\x10\xba\x09\xba\xcd\x87\x5d\x8a\x0c\x61\x66\x2b\x11\x91\xf8\x0b\x23\x49\x73\xf1\x6c\xa6\x7f\xe7\x19\x3a\xee\x8e\x76\x24\xbd\xec\xbd\xb1\x6a\xc5\x74\x84\x5e\xe7\x95\x19\x9c\x05\xe3\x28\xcb\x4c\x24\x7f\xa7\x28\x4d\xa1\x9f\x89\x70\x6f\x5e\x99\xcb\x4a\x69\xaf\x2e\xff\x00\x4d\xcd\xbf\x4f\x7b\xb5\x51\x89\x82\x26\xa5\xe8\x2c\xfe\x03\x26\xe5\xdf\xa9\xe8\x4c\xe9\x27\x52\x4a\xbd\xd3\x3f\x60\x56\xfe\x3d\x4a\xbd\x81\xc8\xf9\xe4\x88\x7b\xd0\x02\x43\xb1\x1e\x5b\x63\x7c\x7b\x11\xfb\x2e\x2b\x73\xf7\x17\xc7\xda\x3a\x6d\xf9\x94\x3e\xb4\x59\x18\xb3\xa7\x42\x41\x3a\x47\x69\x68\x65\x51\xc6\x0f\xf6\xd2\x42\xe1\xfb\xa7\x41\xea\x44\x8c\xd8\x3b\x65\x2e\x37\x14\xcf\xa4\x67\x8d\x71\x45\xa5\xab\xe9\xaa\xbc\x00\x52\xa8\x4f\x08\x02\xae\x15\x1b\x75\x28\x33\x7b\x37\x2e\xba\xc5\x17\x9a\x86\xbe\x16\xaf\x68\x6f\xd7\x77\x7c\xe1\x97\x65\x59\xa6\xc9\x58\x17\x10\x06\xa7\x4c\x0c\xb1\xa8\x6e\x33\x15\x26\x2d\x4a\xa8\xfb\xc9\x8e\xad\xfa\x7d\xa1\x5f\xa6\xbb\x24\x2b\xc5\xdd\x2c\x79\xe3\x7d\x54\x1e\x6d\x20\x85\x6a\x54\x72\x29\xbd\x68\xde\xfe\xe8\x0a\xf5\x30\xaf\x7e\x35\x70\xf6\xc8\x95\x2c\xfe\xf8\xaa\x6a\x21\x72\x7f\x29\xaf\x93\x8f\x6d\xaa\x29\x74\xdd\x9f\xca\x7b\x49\x79\xf6\x74\x69\x09\xf5\x74\xf8\xab\xaa\x7d\xe1\xbd\x97\x2b\x09\x96\x63\x63\x91\x1e\x59\xcd\x4b\xdb\x62\x99\x7d\xd6\xaf\x77\xc9\x58\xfc\x2f\x05\xba\x89\x33\x0e\xca\xc6\x4d\x7f\x6d\x2c\x55\x16\x7f\x92\xe5\xa7\x63\x56\x3c\x55\x4f\xff\x61\xbd\x9e\xf0\x23\x49\xdc\xd7\xce\x2f\x49\xc7\x37\x52\x5b\xbe\x71\x50\x4e\xcd\x15\x7b\x3d\x22\x6b\xe4\x45\x91\xa4\xb0\x97\xe6\x44\x24\xd9\x5e\x90\x81\xaa\x07\x4f\xa9\x80\x2c\x89\x6a\x26\xb7\xf0\x70\x18\x94\x33\x69\x3f\x5f\x15\x49\xc0\x87\x0e\x94\x33\x14\xed\xb7\x10\xbe\x8b\x07\x0e\x6f\xc8\xdc\x38\x1d\x96\x33\x4e\x92\xfd\xa5\xa8\xfa\x91\xf6\xdf\x47\xe9\xc6\x89\xf1\xf5\x43\x75\xa0\x7d\x58\x83\xd9\xaa\xef\x26\xa9\x00\x72\x0c\x6b\x44\x77\x2d\x58\x02\x8a\x13\xeb\x9d\xe4\x01\x3e\x23\x69\xd9\x6a\x0f\x27\xe5\x01\x39\x6a\xc8\xb6\x87\xc0\xad\x46\xdc\x68\x40\x98\xd7\xb7\xc4\x7e\x3d\x13\xd8\x1a\x1c\xfd\x29\x3d\x4c\x93\xbc\x3f\x4d\xdf\x6e\x8c\xf0\xfe\x5a\xbe\x81\x2f\xb1\x12\x42\x15\x6e\x58\xff\x45\x89\xce\xe0\xcb\x7a\x02\x45\xb0\x7a\x81\x3a\x85\xf5\x0e\x0a\x5e\x7c\xa2\xaa\x6e\x11\x22\xd6\x11\x01\x34\xf7\xbb\x9c\x0b\x21\x7a\xe5\xde\x39\x19\x57\x68\xe4\x2e\x3d\xd6\xcd\x94\xb5\xc9\x2f\xed\xa1\x7f\xe1\x66\x73\x37\x44\xaa\x8a\x37\x10\xf3\xf5\x04\x86\xc8\xca\x98\x03\x11\xca\x23\xc7\x13\xed\x72\xca\x7e\x57\xaf\x31\x64\xdf\xdc\x15\x62\xe9\xd6\xe8\xa7\xde\xb8\xc5\x90\x5d\xcf\x62\x22\xee\x23\x93\x94\xa5\xe1\x71\xb8\xa0\x77\x51\x95\x25\x03\xe1\xf4\x84\x18\x64\x67\x31\x17\x0a\x62\x4e\x22\x85\x17\x31\x39\xc8\x18\xfa\xa8\x0a\x9c\xc2\x90\x6a\xc4\x7d\x38\x4b\x11\xc9\x95\x76\x16\xca\xf4\x9e\xb3\xb4\x66\x48\x05\x3e\xa2\x91\xbe\x23\x89\x4c\x6f\xc6\x51\x14\x70\x9f\x21\x26\xb7\x7b\x7e\x4e\x30\x31\xe1\xad\x7c\xea\xff\xd5\x10\xac\x5e\xed\x02\x89\x31\xc3\x12\x61\xf1\xc3\x76\xdc\x63\x0d\x7c\x1c\x8f\x4b\x99\x8f\xc7\x30\xab\xaf\x38\x8a\xb6\xc5\x7e\x26\x23\xd2\x66\x90\xce\x02\x0d\xb5\xeb\x84\x8b\xa8\xb2\x6a\x4f\x5d\x69\x1d\xe8\x16\xe5\x06\x44\xab\x4e\x22\xa4\xcd\x82\xba\xef\x9b\x79\x6a\x45\xc8\x5e\x4b\x38\x16\x41\xe0\xf4\xd4\x07\x04\xf4\xed\xde\xa2\x9e\xfe\x6f\x0d\xff\x53\x2f\x48\x12\x57\x41\xdc\xc1\x30\x3f\xb5\xaa\x86\xf8\xab\x39\x12\x75\x42\xb9\x22\x0f\xa1\xf6\xb2\x93\x12\xad\x9b\xb3\x2c\x7f\x99\x7c\x36\x35\xa7\xf6\xcb\x14\xd8\x35\x08\x5a\xe9\xf6\xde\x77\x92\x84\x1c\x11\x69\x1a\xff\x45\xa7\x44\x65\xd8\xa8\x5a\x91\x93\x8d\x7a\x42\xdf\x21\x93\x5b\xa7\xc8\x4e\x7f\xdb\x22\x72\x7b\xee\xc6\xb1\x37\xa7\xf0\x57\x63\x3a\x1a\xc4\xe9\x4f\x25\xc9\xdb\x1f\xfe\x98\x73\xd5\x4c\xb6\x44\xe9\x7a\xf6\xf7\x85\x12\xf3\xa8\x8b\xb2\x7b\x09\xfb\x67\x81\xfc\xf0\xed\xcb\x8b\x63\xf3\x39\x76\x37\xb7\xec\x2c\x3a\x64\x4d\x9c\x2f\xf6\x73\x1d\xb7\x62\xf7\x53\x93\xa8\x5b\x13\xfb\x49\x0b\x75\x50\x19\x7e\xbb\xab\xc1\x29\xff\x7c\x3d\x61\xbc\x29\x83\xf4\xa6\x34\xbf\x0b\x1c\x54\xc1\x1e\x33\x71\xf5\x74\xb9\x96\x68\xae\xe4\x96\x74\x9f\x79\xf9\x44\xe7\x56\x2a\x01\xca\x52\xa5\xe0\x17\xef\x16\x6b\x07\xdd\x11\xbb\xb4\x35\x85\x4b\x69\xbc\xee\x0c\x87\xa2\x4a\x0d\x16\xfa\x6d\xfa\x69\xbf\x36\xc3\xd2\x9a\xa1\x12\x56\xd3\x23\xd1\x8e\x2c\xc5\x16\xe9\x21\xbc\xed\x17\x37\xf0\x35\x0b\x89\xcc\xfa\x73\x23\xd5\xb7\x36\x6a\x47\xca\x4b\x4e\xf0\xb2\xb8\x81\x4b\x50\x24\x11\x40\x3b\xa7\x8b\xec\xff\x2e\x2d\x11\x1f\x75\x69\x56\x69\xac\xcc\x2a\xad\x6f\x45\x1f\x0a\xd9\x35\xbc\xa4\x82\xec\x4c\x03\x84\x90\x90\xdf\xa0\x2f\x09\xaa\x4b\xf5\x2f\x06\xa3\xa8\xbc\xde\x72\xcb\xbb\xd9\xbf\xe6\x74\xaf\x45\xbb\x0e\x9d\xea\x94\xdd\xb8\x4b\x0b\xb0\x06\x65\x80\xf7\x36\xd7\x0c\x69\x78\xe1\xfc\x78\x07\x32\x7a\x89\xf6\x78\x6e\xc6\x52\x6b\x70\x62\x58\x28\x9b\xf3\x35\x24\xb3\x4d\x25\x64\x0e\x26\x13\x9a\x58\xa4\x3c\x19\x4f\x38\x97\x21\x82\x41\x02\x10\x52\x52\x9d\xf9\x96\x0e\x70\x3c\x4d\x89\x42\x3b\x8a\x8d\x5b\x44\xe1\xa1\x69\x82\x46\xd4\x56\x96\x0f\x0a\x35\x15\xd7\x62\x7e\xe9\x84\xec\xc3\xd8\x04\xfb\x3a\x8b\x38\x94\x6e\x65\xcb\x3b\xb1\x8d\x0f\x2e\xa5\x55\x54\x61\xe3\x31\x40\x85\x45\x3b\xcb\xba\x05\xa4\xff\xea\xf0\xd0\x83\x6d\x11\x5a\x8b\x88\x02\xa2\xda\x44\xce\xef\xfd\x2d\x46\x6b\xc1\x7d\x85\x95\xd4\x84\x57\x9c\x92\x9d\x7e\x27\x6d\x43\x78\xb7\x41\xaa\x17\xf8\xe3\x47\xde\x15\x8d\xc6\x49\x0d\x84\xff\x78\xb4\x41\x2a\x01\x63\xd2\xa6\xe1\x8a\xa1\xe4\x6b\x99\x0f\xb4\xe0\x7c\x6e\x41\x1d\x48\x19\xc2\xa9\x7b\xb8\xd4\xe7\xef\x99\x51\x56\xe0\x8a\x96\x4d\x25\xd1\xa3\x59\xf1\x6b\x2b\xac\x67\x71\xc2\x91\xd1\x3e\xd9\xdb\xaf\xf0\x32\x83\x79\xeb\x6b\x19\xfc\xd3\x64\x17\x86\xac\x9e\x37\xac\x27\x3f\x24\x4c\x33\x25\x35\xad\x73\x35\x04\x2e\x56\x09\x37\xd2\xe3\x18\xd3\x1a\xe7\x79\xad\xd7\x58\x8f\xfa\x46\x3a\x23\xa0\xca\xd6\x61\xe0\x1a\x33\xfa\xf1\xcc\xc7\xfe\x35\x5f\xce\xcc\x89\x64\x21\x0c\x1a\xb4\x3f\x74\x53\x01\xd7\x2d\x0e\x0d\x22\x40\xd7\xf6\xa4\xc4\x79\x83\xc9\xce\x7b\x51\x29\xe4\x58\x5a\xd8\xfd\xdd\x35\x70\xec\x8e\xac\x4c\x5e\x15\xd1\x2d\x35\xd8\xcc\x3a\xf5\xcc\x55\x3f\x32\x73\xf6\x23\x37\x35\xe2\xfe\x2f\xa5\xd5\xbb\x0a\xef\xf8\x80\x0f\x35\x85\x3f\x8b\x93\x36\xab\xbb\x1d\x04\x14\xe2\xa2\xef\x6b\x59\xb3\xc0\x77\xe0\x7c\x79\x9f\xe4\xeb\xa9\x75\x2b\xfa\xa9\x7d\xb2\x9d\x6b\x62\x44\x77\x73\x73\x76\xc7\x12\x1c\x0c\x5f\x57\xa3\x49\x5d\x71\xa4\x2a\x65\x71\xe7\xd8\x14\x3b\x7d\x7c\x1c\xdf\x6a\xbc\xbf\xec\x70\x6a\x24\x84\xf6\x49\xcb\xf5\x0c\x08\xd1\x0b\x21\xcd\x53\x1a\xde\x06\xd6\xa3\x25\xf4\x07\xcb\xc6\xdf\x75\x92\x37\x57\xc8\xf9\x7e\x52\x7b\x9a\xfe\xa9\xcc\xf5\xd7\x7d\x63\x76\xbb\x76\xf1\x39\x08\x33\xf1\xd7\xe8\xec\xf0\xe7\x5a\x36\x90\x41\x78\xe1\x01\xe7\xd8\x06\xfc\xc7\x60\x03\x33\x25\xfe\xa8\x68\x20\x3c\xe4\x89\x8a\xdf\x97\x41\x12\x40\x00\xdb\x57\x55\x8a\x19\x75\xb5\x91\xfb\x7c\x79\x72\xe6\xf8\xa9\x1c\x23\xd1\xd7\xe6\x11\x0e\xfa\x10\xda\x1e\xf9\x96\x34\xb2\x58\x03\xf6\x04\xe4\xbc\x84\xd8\x76\x78\xe4\x98\x38\xb3\x41\x4f\x47\x75\x45\x69\x69\x2b\x21\x2c\x9f\x36\x6f\x67\xc2\x18\x2a\x96\x34\xcf\x81\xb1\x6e\x8b\x34\x45\x3f\x8f\x3e\xa1\xf1\x88\xd6\x5f\x73\xe2\xca\x35\xe8\xe1\xda\x88\x2a\xee\x45\x6e\xf0\xb3\xcd\xf9\x28\x89\x62\xfb\x42\x3d\x60\x5b\x88\xa9\xcc\x91\x64\x19\xde\x20\x0f\x9b\xa5\xbb\xb8\x5a\x15\x1d\x02\x4f\x34\x6e\x79\xd7\x7c\x6a\x46\xdf\x60\x17\xa9\x89\x0c\xc7\x10\x70\xe6\xe3\x44\x75\xf5\x52\x07\xab\x44\x0c\x48\xb2\x50\x24\xbf\x65\x41\x22\xfd\xcc\xf4\xcb\xab\x13\xd7\xba\x07\x5f\x30\xbe\xbe\xa7\x66\x0b\x86\x59\xb0\x4c\x8e\x3e\xc9\x02\x03\xfb\x74\x84\xe8\x21\xfc\x70\x96\x72\xd7\xf4\xc3\xbf\x7d\xe1\x9a\x8d\x5a\xe3\xc0\x57\x16\xdc\x2c\x5e\x40\x11\x24\x14\xa9\xb3\x81\xe6\xe9\xd7\x3e\xae\x16\x74\x33\xb9\x5e\xbf\xe2\x22\x05\x3c\xe4\xc4\x16\x19\xcf\x32\x2f\x5e\xe8\xb2\x3b\x35\xe5\xa8\x5e\xb3\x8c\x4f\x74\x6d\xc6\x7b\x81\x49\xf1\xc0\xd4\x79\x98\x40\x8c\x27\x21\xb5\x97\x1b\xfe\x57\x0a\x34\x45\xeb\x64\x88\xd4\x1d\x14\xba\x1f\xdb\x14\xd9\x68\x09\xf5\x28\xb0\xe7\x7c\xa1\x1e\xb9\x5f\xfe\xa5\xce\x88\x32\x59\x3e\x64\x4d\xe1\xbd\xcc\x29\x1e\x77\x84\xc8\xc6\x49\xc6\xfd\x42\xeb\x44\x7b\x6f\xee\xad\x5c\x63\xab\x28\xb3\x6c\x67\x57\x87\xa0\x83\x2d\xf4\x99\x30\xb5\x08\x64\xe7\x5e\xec\xa9\xdd\x00\x54\x65\x56\x4b\x45\xb6\x2d\x6a\x88\x47\x47\x26\x55\x64\x80\x33\xb4\x85\x6e\x81\x2e\xf8\x05\x12\x27\x22\x9e\xc2\x63\x85\x39\xc0\x9b\xf8\x5d\xc7\x5e\x16\xde\x4c\x03\x3d\x87\x9e\x82\x05\xc6\x96\x0c\xe2\xec\x9c\x5f\x7e\x93\xc0\x0f\xb1\xcd\xcc\xd0\x51\x1e\x40\xef\xe6\x9c\x24\xe0\x52\x67\x89\x20\x32\x87\xa8\x43\x89\x55\x1e\xc5\x3e\xfa\x7a\x94\x88\xd1\x39\xf0\x8b\xcc\x15\xf7\x88\x0c\x69\x1f\x5c\x8b\xd6\x25\xa0\x50\x27\xf3\x74\x7c\xbd\x5a\x13\x95\x7e\x10\x80\x58\x78\x13\x69\x9f\xf2\x54\xe3\xb0\x6d\x48\x59\xac\x5e\xae\xaf\x91\x2e\x87\x91\x4e\x61\x43\x6f\xcd\xf8\xff\x1c\xbd\xf5\x89\x8e\xde\x88\xfc\x37\x54\x85\xc6\x90\xc3\x8b\x21\x62\xa1\x83\x39\x45\xa9\x12\xbf\x92\x95\x5c\x89\x6f\xa4\xf4\x25\xa3\x36\x72\xfe\x76\xdd\x43\x8b\xef\xe3\x97\x28\x56\x01\xae\x4c\x16\x75\xe0\x97\x96\xca\x29\x91\x20\x1b\x38\x9f\x84\x0c\xfe\x33\xe6\xa7\x25\xe7\xbe\x89\xbf\x9b\x5d\x24\xd0\x42\x7e\x21\x34\x33\xe3\xb3\x0c\xf0\xfc\xcd\x2c\x65\x80\x8b\xdb\xce\x6e\xaf\x66\xa9\xfa\x3f\x35\x4b\x4d\x3b\x55\xd7\x87\x87\x1f\x62\xea\x4e\xea\x7f\x6e\xea\xe2\xfe\xfc\x34\xaf\x3c\xa5\x8c\x6e\x91\x4c\x29\xa5\xfc\x5d\x3d\xb2\x9a\xb2\x80\x4e\x76\x99\x71\x30\x87\x2b\x08\x65\x69\xc2\x20\xe8\x30\xf9\x17\x4f\x8a\x15\x63\x70\xaf\xcd\x35\xc8\x88\x41\xd1\x6b\xd5\x06\x34\xf6\x5a\xa8\xf7\xc9\x4e\x26\x3f\x72\xcd\xa4\xd0\x3a\xe7\x5e\x05\xca\x4c\x42\x75\x65\x22\x2d\x7b\x57\x3f\x17\x25\x3e\xe9\x5a\xa8\xc7\x3c\x21\xa9\xf4\xe8\x00\xe5\xb7\xca\xa2\xac\xe9\xdb\x1a\x88\xa4\xed\xe4\x26\xc7\x7e\x3c\x86\x10\x16\x1f\x93\x06\xbc\xa4\x7e\x2d\xd4\xc9\x73\x95\xfc\x59\x65\xae\x0f\x85\xe6\xda\x1e\xdd\xce\x9d\x8a\x69\xed\x4c\x42\x3b\xa4\x85\x7a\x9d\x54\x59\xcc\xd7\x42\x3d\xad\xf4\xf7\x83\x9e\x4f\xd5\x0f\x3d\x67\x77\x9f\x91\xd9\xc0\x51\x2a\x82\xa4\xc7\x9e\x27\x64\xf4\x47\xfe\x90\xe8\xc0\xd6\x1a\xb8\x78\x3c\x1b\x7a\xe9\x37\xc0\xfd\xd0\x1a\x91\x31\x7c\x4a\x59\x4a\x9e\x27\x2e\x52\x00\x3c\xe2\xa4\x1c\xa4\xd3\x17\x13\xd9\x84\x29\x24\xe9\xfd\x6c\x93\x1e\xba\xfb\x17\xbd\xf7\x44\xff\xcd\x26\x27\x40\xc3\x55\x80\x07\xb4\x97\x64\x7c\xef\x33\x37\x5c\xbc\x30\xd7\x56\xed\x24\xf6\x25\x75\x92\x8b\x12\xc7\xfd\x4c\xe0\x42\xd7\x1a\x6f\x5c\xf2\xe4\xab\x4a\x58\xdf\x8f\xb2\xbc\xc0\x8c\x97\x16\xe4\x54\xad\xb2\x72\x92\xa3\xc6\x0a\xb2\x8c\xc6\x4a\x1d\xe7\x2c\x85\x0a\xd5\x02\xa8\xea\x53\x99\xe5\xd6\x32\x1b\x17\xdf\xa9\xb1\xfb\x4a\x95\x1b\x6b\x39\x5d\xb1\x55\x55\xa4\x54\x21\xad\xca\x46\x01\xb6\x22\x87\x1b\x79\x2d\x8f\x0c\x88\xa7\xec\x7f\x9e\x50\x75\x97\x45\x4e\xa8\x22\xa9\x24\x25\x94\xb1\xe0\x4c\x0d\x14\x4e\x01\x32\x71\xa4\x4a\x48\xa3\x19\x8d\xdf\x90\xb0\x82\x58\xc8\xad\xe4\xd8\x2c\x8a\x09\xcd\xaa\x43\xef\xfa\xcb\xc4\xa3\x2c\x29\xbf\xb3\x5f\x07\x4b\x93\x5d\x20\x95\x6f\x66\xcd\x8e\xdc\x99\x37\xf0\x9c\x50\xe0\x17\xf9\x35\x94\x53\x53\x4a\x1a\xdf\xe2\x94\xe7\x5b\x69\x64\xec\x80\xf8\xad\x1b\xe8\xb2\x3c\x1c\x11\x5a\xb8\x9e\x0f\x37\x90\xa6\x93\x24\xb6\xe9\x35\x91\x2e\x22\x8f\x66\xd3\x64\x08\x66\x4b\x8f\x31\x84\x2c\x08\x55\x3a\x75\x53\x00\x90\x38\xc2\x3b\x84\x67\x42\x26\x84\x5e\xaf\x1e\x92\x38\xd6\xcd\x2d\x88\x31\x62\x74\xa7\x3c\x96\xa6\x57\xc1\x53\xc6\x5c\x1c\xf2\x8a\xf5\x4a\xd7\x8f\xcb\xf8\x49\x22\x5d\x15\x2c\x00\x1b\x68\x07\x65\xc4\x30\x9f\xe5\x22\xc7\x9b\xee\xb2\xa0\x1b\x9c\xcc\x31\x5a\xef\x89\xd1\x1f\x4d\xed\xdb\x13\x46\xc7\xd6\x5a\xc5\xf1\x0d\x79\xe2\x96\x9a\xd0\x89\x8c\xc7\xda\xf1\x49\xe3\xe6\x3d\x39\x47\x9f\x83\x07\x84\xbf\x9a\x5b\x52\x18\x1f\x53\xcf\xde\xcf\x2d\x71\x23\x1a\x78\x9b\xe7\x94\xab\x94\x21\xcc\xdc\xa1\x4a\x08\xcd\x41\xeb\xa4\xf9\x3d\xc8\xc4\x0f\x0a\x14\xdb\x83\x21\x02\xdc\xa1\x47\xc7\xb3\x61\x96\x18\xac\x0d\xc2\xa2\xb9\x4c\x72\x5b\xc0\xbb\x07\xbe\x3f\xac\xfe\xfb\xaa\x78\x63\xbe\x9d\xca\x62\x19\x35\x58\xaa\x1b\xfe\x56\x20\x54\x51\xdf\xf2\x07\x7c\xe1\x6d\x52\x19\xba\xba\x77\xf1\x87\x35\x67\xee\x42\x9e\xf1\x3a\xae\xb1\x0c\xd9\xa1\x86\x46\x34\x73\x39\xb8\x75\x98\x4c\x8b\x06\xa2\x14\x81\x58\x75\xc9\xb9\xa5\x25\xc4\x3d\xd4\x25\x03\xee\xf0\x1c\xff\x81\xf7\x87\xb1\x1d\x92\x41\x1f\xe5\xf4\x86\x27\x8e\xb3\x03\x79\xc2\x2b\xd3\x56\xf0\x39\xb3\x7a\x4f\xb4\x43\xe4\x96\x81\x22\x94\x51\x77\x52\x7a\x50\x4e\x6e\x9d\xff\x8c\x48\xea\xcd\x52\xc6\x21\xa8\x17\xfc\xfa\x27\x75\x28\xc9\x56\x98\x7d\x72\x90\xd3\xe5\x54\x2b\x39\x33\xc3\xee\x13\x62\xac\xab\x32\xd1\x90\xaa\xd6\xdd\x0f\xab\x01\x29\xdb\x23\x55\xa6\x4f\x97\xbd\x26\x34\xce\x26\x35\x42\xb1\x91\x9a\x35\x85\x81\xf9\xbb\xc9\xba\x30\xab\xfb\xec\x93\x8f\x0b\x05\x2f\xe3\x74\xb5\xea\x60\x5b\xbd\xa3\x45\x6e\x22\x2d\x22\x8f\xcc\x83\xeb\x18\xf7\x17\xf0\x9f\xd0\x2c\xef\xdc\xbf\xea\x21\x99\x32\xb1\x7e\x5b\xf8\x16\x6d\x9a\xb1\xb8\x58\xd7\xdf\x77\x5e\xbd\x91\xab\x82\xe9\xf3\x1d\xd0\x4a\x5d\x60\x8b\x29\xfe\xa0\x25\xeb\x3b\xda\x40\xfe\x21\x45\x6a\x48\x5f\x3b\x96\xf0\x6d\xf6\x21\xbd\xd8\xf2\x62\x2b\x77\x33\xf8\xa1\xf2\xaa\xa1\x18\xb0\xa0\xa0\xb8\x56\x45\xf7\xec\x7d\xea\xaf\xf9\x85\x85\x47\xce\x84\xf4\xba\xd4\x16\x9a\xa1\x0d\x0d\x75\xb9\x1a\x3b\x57\x0b\xcc\x01\x84\x64\xad\xef\xd3\x6d\x41\x7a\xd6\x71\xc1\xa6\xd0\xc8\xdf\xd8\xa2\xd2\x47\x77\x2e\xf9\x4a\xa2\xfd\x9d\x51\x55\x2c\xda\x16\xfe\xdb\xc9\x92\x34\x92\x1d\x98\xde\x8d\x4b\x68\x68\x26\xea\xeb\x6e\xc4\x2b\x9f\xe1\x39\xa6\x00\x0c\x4d\x6f\x3e\xe1\xb9\x1c\xce\x42\x2a\x12\xf6\x26\x01\xc7\x01\xf0\x59\xa0\x57\xd1\x97\xa0\xbd\xa8\xc9\xdd\x57\x3b\x69\xea\x3b\x6c\x0d\x60\x65\x6f\xdc\x62\xf2\x49\xff\x98\xaa\x0f\x5d\x16\x8d\x4c\x23\x18\xbf\x7d\x4e\x5c\x9a\x85\x8f\x9e\x13\x79\xcb\xbb\x98\x48\x50\x36\x15\xff\xad\x66\x98\x4d\x43\xa3\xb6\x6a\x98\x8f\xe7\xb2\x4d\x54\x39\x98\x28\x27\xe7\xdb\xd8\x68\xf6\x98\x59\x4b\xa8\x20\x54\xfe\x99\xd0\x06\x72\xc4\x34\x05\xce\xf8\x46\x78\x30\x05\x6c\x1f\x70\x31\x6e\x10\x01\x94\x36\x9f\x2f\xe6\xb4\x03\x0a\x96\x56\x0f\x85\x18\x1d\x66\xda\x19\x90\xa5\x87\x4c\xd5\x33\xce\xb3\x93\x06\x36\x80\x3a\xce\xf0\x6e\x1a\x29\x8f\x16\x24\x37\x2f\xe4\x65\x46\x4c\xe4\xa8\x04\x3e\x3f\x67\x76\xb3\x93\x91\xea\xe3\xe0\x16\xe1\x03\xfa\x25\x79\xff\x58\xa9\x9b\xa2\x74\xb6\x5e\x7c\xdd\x94\xe5\x7f\x6e\x9b\xff\xdc\x36\xff\xd6\xdb\x66\xa9\x6f\xd8\x9c\xfe\x1f\x42\xf6\xdf\x4f\xc8\x26\x41\x5d\xb2\xfe\xfb\x3b\x6a\xc0\x5e\xec\x4b\xa2\x3c\x47\x64\xbc\x6c\x93\x9d\xae\xb3\x1a\x33\xe8\xe1\x13\xdb\x20\x62\x1b\x80\x77\xc2\xcd\xd9\x59\xc2\x5d\xa6\x69\xa4\x5c\xcd\xc7\xac\x4e\x8e\x04\x73\x49\x86\x79\x55\xff\xad\x5a\xb6\xe9\x74\xe2\x7a\x87\x2e\x68\xcd\x4e\x7e\x36\xa3\x7d\xad\x97\x51\xe4\xd6\x80\x8a\x4b\x60\x34\x0e\x67\x08\x4a\xf8\xad\x62\x44\x49\x81\x6d\xc5\x12\x57\xdc\xfc\x75\xc5\x4b\x26\x5d\x31\x97\x65\xaa\x59\xfd\xeb\xbe\xd6\xcb\xe9\xbe\x2e\xaa\x5c\x13\x71\x20\xbf\xd6\xf4\x52\xf5\x22\xac\xc5\xe8\x35\xe5\x58\xff\x7d\x2d\x82\x67\xe6\x5a\x27\xe0\x0e\x21\xeb\xe1\xe5\xd7\xf1\x51\x2c\x47\x3c\xa3\x05\x96\x50\xa1\x04\xc0\x79\x24\x0f\x76\xb1\x84\xa0\x0a\xb0\x7e\x18\x4a\x5f\x93\x26\x03\xe2\x54\x68\x8a\xc6\xec\xe6\x19\x4a\xb6\x20\xfd\x71\x13\x59\x3d\x73\x9d\xe3\xab\x50\x64\x71\xef\x99\x2e\x7a\xc2\x7f\x80\x00\xca\x1a\xab\x36\xd0\x1d\xc8\xcd\xd0\x2f\xcb\xab\x77\x1d\xce\x46\x46\xce\xa4\xd5\xeb\x77\x2d\x40\x41\x50\xf4\x8c\x5f\xbc\x7e\xd7\x84\xf6\x81\x32\xed\xf8\x97\x3f\x7f\xf7\x5b\x9b\xe9\x77\xcd\x4f\xef\x02\x21\xfa\x78\xd7\x16\x7e\xfe\xfa\x9d\x1f\x9b\xf5\x03\xb1\x31\xdb\x44\x89\xad\xf2\xe8\xca\x66\x6b\x9d\xd9\x8e\xd0\xe5\x90\x16\x47\x61\x7e\x86\x40\xe8\xb9\xfa\xae\xaa\xaa\xab\x77\xe9\xf9\x69\x44\xae\xa3\x84\xe7\xa5\xe3\xd5\xc6\xd2\x09\x9c\xb9\x54\x45\x19\xa9\xc9\x52\x7f\x43\x3a\x38\xc2\xcd\x10\x90\x27\x0b\x12\x3d\xb5\x99\x05\xbf\xe8\x56\x56\x0b\x86\xd1\x79\xfc\x74\x85\xa8\x50\xed\x23\x86\x15\xcb\x46\xfa\x2b\xdb\xac\x4f\xd8\x4c\xa4\xbc\xe8\x44\x96\xd8\x91\x7b\x75\x8b\xfa\xd0\x36\x9f\xdc\xed\xa9\x0f\x8f\xdb\x3d\xeb\x0b\x13\x6b\x70\x3e\xcf\x01\x09\x67\x97\xf8\x00\xf3\x89\xe8\xc8\xdc\x4c\x68\x36\x56\x46\x7d\x84\x8b\x64\x90\x65\xf5\xe0\xf4\x84\x22\x5e\x1f\x74\xdc\xb7\xb7\x6f\xcb\x06\x64\x39\x5a\x04\x24\xf2\x90\x19\x34\x0e\xfd\x0d\x39\x19\x98\x39\xb6\x07\x04\x81\xcc\x27\x49\xdc\x10\xe5\x66\x9b\xd3\xd5\x72\x51\xb3\xa5\x4e\xeb\xa6\xc4\x52\x4e\xdf\x61\xe6\x80\xba\x80\x3f\xd3\x7c\x4c\x82\xba\x39\xc8\xd8\x13\xea\xa6\x1a\x7d\x51\x9e\xb0\x97\x86\x61\xb0\x64\x05\xaf\x61\xc7\x8f\x26\x16\x1a\x76\x20\xc4\xa0\x08\xbb\x15\x19\x5d\x9a\x50\x30\x1d\xa5\x33\x12\x37\x2f\x77\x9f\xfa\x33\x47\x7f\x4e\x69\xc4\x41\xf6\x70\x40\x83\x05\x8c\x3d\x28\xce\x29\x64\xf2\xc6\x7a\x09\xc4\x28\xaa\x8e\x16\x3e\xa6\x29\x07\xfd\xa3\xe9\xbc\xff\xea\x04\xe2\x46\x90\x07\xf7\x5e\x1e\x4a\xa9\x58\xc8\x99\x97\xb8\x70\x9d\xe1\x38\x1b\xba\x36\xaa\x0a\x7e\x62\x4d\xe1\x7d\x38\x67\x29\x5c\xbd\x5a\xa6\xe3\x07\xdd\x64\x8d\xd8\x32\x9c\x99\xd3\x95\xde\xb6\xb1\x00\x8e\x2f\x82\x3a\xd4\x30\x85\x25\xb1\x72\x8f\xb6\xb0\xdf\x9e\x22\x91\xe7\x52\x6e\xb8\xd5\xa5\x9b\xb0\xb3\x67\x28\x46\xc9\x59\xae\xb9\xd3\x04\xa6\x8f\xc5\x9f\x9a\x25\xd1\x62\x4d\x11\x35\x2e\x92\x45\x37\x1f\xb0\x57\x0f\x64\xc1\x7a\x3a\x3c\x7f\x5e\xa8\xea\x15\x3f\x36\x67\xac\x52\x45\x4c\x62\xcc\x36\x90\x95\xb1\xf1\x54\x60\xe3\xea\x8c\x21\x52\x39\xba\xa6\x02\x37\x51\x59\xb7\x61\xa1\x64\x02\x43\xd9\xa0\x38\xa3\xc4\xd1\x55\x39\xc5\xd1\xf5\xcc\x56\x33\x2b\xc9\x8d\x35\x8b\xe4\x48\xe7\xe3\x1c\xf9\xdb\x05\x7b\xf7\x23\x63\x00\xfc\x0d\xbb\x40\x96\xdb\xca\x22\xfc\x0e\x27\xa9\xae\x95\x67\x5f\xb8\x1f\xfe\x52\x3b\xc4\xec\x41\x50\xce\xca\x5c\xc4\xe7\x7e\x17\xe9\xab\x2e\x62\xc2\x44\xdb\xf4\xcc\x88\xbf\x6a\xce\x5d\x75\xe3\xc7\x64\xe3\xe0\x0e\x5f\x17\x0f\x42\x66\xb3\x97\xac\x3f\x3b\x35\x20\xa2\x61\xaa\xc7\x72\xc2\x26\xba\x3c\xb8\x1e\x0a\x8e\xec\xd3\x21\x78\xf1\x9f\xc8\x8c\x91\xa3\x37\xea\x69\x62\x09\x01\x22\x13\x16\xf5\xeb\x8a\x94\x94\x5d\x76\x52\x38\x7a\xe3\xce\x97\xc0\x01\x2d\xd4\x7b\x89\x79\x6c\xb3\x2a\xaf\x58\xf0\xfc\xc1\x86\x60\x6a\xe1\xdd\x4f\xa9\xc5\x57\x72\xfb\x5b\x48\x25\xc4\xe6\x98\xe6\xc8\x2c\x3f\x96\x91\x4a\xc0\xef\x73\x5d\xfe\x8f\xf7\x9d\x99\xac\x8c\x54\x0a\xbe\xcd\x67\x30\xcd\x67\x59\xc7\xd4\xb5\x33\x70\x7b\xa2\x73\x86\x88\xbf\xe7\x6c\xd1\x0a\xb3\x36\x35\x67\x11\xae\x0e\x0c\x00\x4a\xc2\xa8\x7b\x77\xec\x3b\x5a\xdd\xd0\xe1\xde\xab\xbd\x9f\x6e\xad\xfc\xd7\xad\xe9\xab\xd6\x1a\xd4\x9a\x85\x9d\xda\x03\xfe\x7b\xb0\xe2\xa5\x4a\xbb\xa8\x02\xe1\x47\x34\xb3\xa8\x9d\x5e\xa1\x0c\x2c\x16\xbd\x49\x39\xa5\x68\x9a\x21\xe9\x6b\x50\xe3\x97\x59\x0a\xea\x55\x6f\xfc\xbb\x93\x65\xa3\x4a\x9d\x88\x27\x99\xf1\xab\xf2\xb7\x29\xf7\x0e\xf1\x94\x6b\xf7\x89\x5c\x10\x2a\xf2\x6a\xf8\x1e\xc3\x16\x44\xe5\x6b\xbd\x18\x88\x03\x88\x80\x5f\x62\x28\xec\xd3\x52\x7f\x52\x9e\x9d\x10\x8a\xc4\xc2\xd6\x37\xe3\x5c\x2c\x99\x20\xac\xd2\x84\xe2\xc0\x03\x9d\xdb\xb7\x11\x11\x2c\x15\xc9\x9f\x86\x4a\xfe\x36\xf7\xbf\x6a\xd9\x3e\x6d\xc6\x93\xfb\xdb\xcc\xf8\x97\x64\x66\xc4\x0c\xde\xb9\x15\xa5\x3d\xbf\x04\xad\x4f\x0e\x79\x7f\x1f\x57\xc8\x9c\xb8\x94\x22\xc6\xa8\x16\x4d\x73\x94\x3b\x84\x26\x62\x4e\xe5\xfa\xa8\x9c\xa6\xd2\x55\x37\xdc\x2a\xc7\x73\xd5\xed\x1c\x4e\x55\xc3\x65\x04\xbe\xa5\xfc\x1e\xfb\xeb\x3e\x09\xc7\x57\x37\x91\xcc\x2f\x5c\xa7\xa5\xc4\xbb\xf5\x51\xce\x2f\x13\x56\xc8\xdb\x58\x63\x11\x4f\x4f\xdf\x10\xd9\x91\x68\x55\x25\xcf\xe6\x1e\x1a\x89\x7e\x9d\x82\xb1\xbc\x48\x8d\xc7\x3c\x8f\x17\xb4\xc7\xfc\xe2\x3a\x82\x49\x74\x38\x33\xf4\xa6\x22\x57\x6a\x7b\x32\xc3\x59\xc1\xe5\x6c\x21\xeb\x91\x4e\xb9\xd7\x64\x40\xbc\xdb\x3b\x7c\x85\xcf\x38\xc9\xf7\xad\x0a\x4a\x46\xaa\xc8\xd0\xf4\x21\x99\x7b\x02\x3c\xd7\x13\x3a\x74\x9a\x99\x14\x7a\xda\xa6\x90\x2c\x02\x18\xb0\xf1\x2a\x47\xc0\x88\x93\xb5\x12\x58\xa5\xb3\xa9\x26\x10\x6c\x7a\x4d\x3a\xae\x4e\x0d\x63\x59\x4b\x33\x6a\x74\xc0\x13\x6d\xf2\xf4\x7a\xf0\xc7\x74\x4f\x28\x72\xed\x57\x8d\x6c\xea\x73\x94\xfc\xca\x74\xae\x23\xf4\x4c\xa6\x7a\xe7\x0b\xef\x39\x6b\xe4\x09\x15\xaa\x3b\x34\xfe\x30\x2c\xa6\xe6\xbb\x35\xa4\x74\x5b\x83\x93\x5c\x12\x18\xcf\x2d\x4d\xce\x51\xe2\x12\xb5\xe9\x0f\x4a\xd1\x97\x6e\xf9\xea\x29\x6b\x19\xaf\xdf\xa7\x7e\x2e\x57\x2a\x47\x53\xff\x44\x8d\x2f\xa9\x95\x38\xab\xcf\xc0\xcc\x05\x45\xea\xaa\xd1\x11\xa8\x2c\xcf\x27\x92\xc7\xde\xdb\x66\x93\xbb\x77\xce\x58\x8a\xa9\xbc\x8d\x07\x4a\xfb\x70\x2e\xcb\x3c\x8c\x11\x2c\x7f\x35\xf4\xa5\xcb\xcb\xfa\xcc\x97\xf4\x88\x6e\x57\xf5\x7c\xbf\xa0\xff\x9f\x0c\xd7\xe2\x7a\x1f\x08\x6d\x58\xc1\x0c\x1f\x9c\x73\x36\x6c\xc9\x2a\x20\x3b\xf9\x2a\x67\xeb\x21\x07\x63\xd2\xb4\x35\xcf\x30\x77\x75\xcd\xbb\xa6\x7a\x78\x58\x2e\xb5\xa1\x2a\xed\x70\xa5\x53\xa6\x52\x31\x26\xdb\x69\x5b\x9d\x65\xa4\x96\xab\x64\x56\xb7\xc4\x6e\x21\x40\xbf\x65\x09\xed\x13\xb2\xa6\x11\xf6\x0d\xfd\x50\x33\x59\x95\x5b\xde\xfc\x27\x5c\x06\xbb\xb5\xeb\x74\x4d\xff\xf8\x0c\x7c\x3e\x32\x19\x1e\x2b\xba\x77\x21\xcc\x40\xef\x22\x57\xfe\x77\x47\xc9\xab\xda\xf2\x0b\x1c\xa5\x41\x95\x57\xf5\xc9\x69\x8b\x82\xca\xcb\x0a\x71\xb8\x6f\x1c\xd3\x55\x87\xe7\x37\x7c\x94\x9b\x6b\x54\x1d\x6c\x68\x33\x96\xd5\xad\xb3\x90\xa2\xa4\x86\xfc\x8d\x1e\xaf\x6d\xc2\xd2\xf3\xfe\x3e\x33\xcf\x84\x1c\xd6\x2b\x94\xba\x48\x5c\x3f\x2d\x21\x9e\x51\x40\x35\x3e\xd5\x63\xd7\x9d\x55\xfa\x54\x72\xf7\x5b\x1c\x48\x02\xff\xa8\xdd\x42\x3b\x7d\x32\x2f\x07\x14\x99\xbe\x30\x14\x6c\xbf\x88\xad\xc4\x83\x38\xff\x71\xe8\xde\x5c\x0d\x7b\xbc\x22\xfe\xab\xd3\x70\x3c\xa7\xa3\x66\x2e\xfc\x1d\xd5\x8d\x33\x12\x05\xd9\x49\x14\xc5\x7d\x50\x67\x85\x5b\x12\x8e\xaa\x30\x29\xaf\x28\xf9\x4a\xeb\xd6\xf1\xc4\x5d\x0d\xd1\x31\x91\x5c\x90\x4c\x24\xd6\x2e\x91\xea\x37\x5c\x72\x2e\x78\x1b\xb8\x2b\x21\x53\xbe\xdc\x9d\xe9\x32\x6a\xa2\xdc\x1e\xae\x00\x39\x9b\x19\x03\x12\xcb\x32\x95\x7a\x20\x16\x20\xca\xf0\xc9\x0d\x9c\x82\x22\x84\x24\x3a\xaa\x50\xa9\xc3\xef\xeb\x89\x42\xd6\x18\xba\x84\x80\xf4\x3d\x24\xbb\xda\xa3\xc5\x57\xf7\x53\x8b\x79\xdb\x62\x4e\xc5\x98\x4b\x95\x19\x1f\xf2\x1b\xf8\x96\xd0\xa6\xa2\x74\x19\xea\x83\x13\x91\xe0\xfa\xe2\x89\x71\x81\x57\x46\x13\x4f\xd7\x8e\x5e\x59\x6d\xbb\x2f\xd4\x4d\x03\x92\x37\xc2\x7c\xd3\x75\x0c\x19\x59\x9a\x9d\xdb\xd9\x28\x0e\xdf\xe1\x1c\xd4\x24\x0a\x10\x31\xcd\x71\xf6\x9c\x3c\xb0\x5b\xba\x94\xed\x86\x45\xe4\x9f\x66\xa9\x68\xbd\xa5\xf7\xc9\x98\xe6\x67\x9a\x06\x43\x74\x9b\x11\x34\xff\x63\xf2\x50\x57\xb0\x00\x0c\x27\x8c\x0e\x50\xa0\xf9\xd2\xaf\x46\x46\xa6\x44\x26\x4d\xa0\xa1\xdc\x39\x4a\xf8\xf0\xd4\x1b\x11\x6e\x80\xad\x0e\x71\x06\x1c\x75\xbb\x86\xc0\xac\x61\x1d\xa9\xf7\x28\xf7\x38\xe5\xba\x59\x03\x56\x61\x18\x22\x7c\xb1\x55\x1e\x39\xac\xe3\xa8\xc8\x09\x8f\x1e\xbb\xed\x16\x50\x27\x74\xf6\x6a\x0b\x6e\x6e\x61\x35\x03\xf1\x20\xab\xac\x65\x76\x0a\x9a\x06\x89\x94\x2b\x6b\xca\xc8\x53\x01\x63\xd7\xba\x14\x88\x37\x98\xc8\xcf\xce\xe3\x81\xb3\x6d\xd8\x5a\xfe\x74\xce\xe7\x30\x91\x53\xe7\xbc\x29\xb6\x76\x02\x95\x9e\xce\x93\xf5\x55\x13\x40\xea\x83\xfc\x20\x71\xdb\x70\x46\x43\x6d\xd4\x0d\x27\xe3\xeb\x25\xfd\x42\x71\x3f\x4c\x21\xb7\x31\x2e\x46\x7f\x7b\x64\x36\x4b\xc1\x43\xa9\xba\xfa\x22\xf1\x6f\xe1\x99\xd2\x3d\xa4\xb8\x46\x72\xe0\xd2\x17\x75\xa4\x77\xee\x88\x16\xaf\xbb\x2b\x9b\x15\xb7\xce\x6e\x39\x12\x73\xe6\xfa\x89\x9c\x2b\x7d\xc7\x22\xa7\xeb\x6a\x01\x39\xb0\x97\xb4\xd6\xfa\x79\x82\x14\x4a\x14\x82\xfb\x76\x18\x3a\x49\xbe\x88\xc5\x80\x2c\x18\xf4\xe3\x45\xa5\x5e\xd4\x4e\xd2\x19\x89\x8b\xdb\xc0\xad\xa9\xf8\xce\xc4\xec\x2f\x39\x1f\xd2\xf5\x76\x5c\xd9\xd9\xac\xd1\x6c\xc6\xa7\x8b\x81\xab\xa3\xad\xfa\xbe\x87\x2d\xb1\x74\x9f\x07\x4e\x53\x14\xd5\x93\xd9\x8d\xd0\xe0\x9f\xe8\x20\x68\x81\xe3\x21\xa6\x32\x24\xf2\x61\xaf\xb2\x8e\xc3\x29\xde\x3b\xaf\x4f\x30\xc2\x10\xeb\xb3\x38\x5b\x3d\xee\xd7\xc4\x26\x71\x47\x77\x15\x96\xf2\x0c\x2d\x60\x1c\xde\x3d\x89\xe2\xea\x06\x71\x03\xe1\x94\xe4\xd9\x97\x39\x74\x61\xf4\x9b\x08\x2a\x79\x85\x07\x21\xdc\x59\x17\x74\x32\x34\xa5\xca\xd1\x93\x93\x74\xfa\xc2\xed\xd4\xb0\xde\x23\x33\x2e\xaf\x2a\x29\x5c\x96\x10\xc7\x2c\xcb\xb1\xa2\x8b\x53\xdd\x97\x28\x33\xc4\x60\xac\x0a\xd2\xd1\x2a\x7c\x40\x68\x6f\x67\x8a\xfa\x35\xb9\x59\x43\xa1\x7b\xae\xcb\xc4\x44\xe4\x57\x38\xc9\x7f\x75\x9b\x44\xdc\xd9\x03\xe0\x85\x1c\x61\x31\x95\xa2\xd1\xdd\xc2\x02\x3e\x8c\xb5\x44\xa2\x67\xce\x7e\x0f\xb0\x18\xa2\xe5\x0c\x28\x46\x83\x8c\x7e\x3b\xda\x3c\x59\xe5\x4c\xef\x44\xc9\x45\x6a\xd4\xfd\x5a\x27\xf7\x01\x32\x4a\x35\x52\xfa\xab\x61\x76\x7d\x85\xfb\xb4\xd6\x50\xbd\x5b\x9f\x17\x4f\xa8\x97\xe2\xfa\xcb\x5e\xcf\xe1\x51\xbf\xb8\xd6\x9f\xa4\xd8\x62\xda\x3d\xe8\xcc\xc5\xf2\xd4\xac\x0e\xe5\x9c\x92\xc3\x05\x1c\xa1\x19\xca\x3d\x39\x67\x75\x4e\x6b\x0d\xf4\x16\x6e\x77\x88\x0a\xa2\x75\xc4\x6f\x2a\xe0\xd3\xcc\x90\xcf\xe2\x9a\xd9\x83\xd9\x26\xdd\xf9\x0c\x55\x6a\x71\xb6\x26\x7a\xb3\x65\x87\x42\xa7\x29\x4e\x38\x04\x25\x78\x62\xe5\x65\xfd\x9b\x81\x8b\x6e\x34\xd1\x9f\xe2\x16\x2d\x26\xd3\x16\x27\xbe\xcb\x70\x2d\x27\xaa\xe0\xe1\x0e\x2d\x11\x29\x6b\x3c\x6d\xc1\x68\xb5\x37\xb8\x23\x7b\xb4\xa5\x66\x88\x41\xa0\x43\xe2\x0b\xaf\x9c\x8a\x8d\x39\xd9\xeb\xac\x2f\xc4\xb0\x4c\xc4\xe1\xdd\x99\x3e\x12\x09\x32\xac\x24\xae\xe6\x83\xfa\xa5\x5d\x77\x23\x9d\xb1\x12\x62\xae\x96\x43\xc6\x97\x30\xcb\x9e\x45\x3e\x57\xb0\x36\x2f\xb1\xd7\xbd\x77\x69\x27\x5f\x67\xd8\x18\x4a\x4c\xe6\x25\x8f\x0f\xea\x6b\x9f\x2a\x46\xd4\xf7\x96\x98\x82\x8b\xe7\xcc\x9f\x44\x4d\x85\x92\xd2\x63\x21\xdd\x94\x55\xf3\xb6\x42\xa2\xbc\xea\x61\x39\xe7\xc8\x6d\x38\x50\x79\x9c\x2b\x04\x17\x15\x99\xb8\x70\x53\xb5\x2f\x25\xf9\x2f\x26\xde\x50\x65\xbd\x45\xe8\x40\x67\x57\x93\xf6\x15\x74\xbd\xc2\x3f\xaf\x52\x17\x85\xd9\xb6\xfd\xc7\x64\xf3\xd3\x6a\xc3\xd1\x31\x02\x0c\x00\x25\xf2\x7c\x80\xfc\x9d\x06\x00\x39\xcf\x98\x72\x55\x79\xaf\x03\x02\x04\x28\x05\x11\x27\xc1\x24\x25\x53\x6b\xcf\x99\x84\x2f\xb0\x7c\x9d\xe4\x12\x79\x16\xd9\x02\x3f\xdc\xb5\xf0\xb8\xd0\xc2\xcc\x00\xa6\x4b\x04\xc7\x29\x1b\x9f\x00\x5f\x37\xe7\x44\x12\x6d\xac\xf6\x5a\xee\x90\xe1\x37\xb2\x9e\x89\x6b\xf2\x4c\xdc\xc3\x5d\x7c\xaa\x00\x3a\x94\x1c\xbb\xd1\x2b\x48\xcf\x8c\x5a\x0b\x8a\x19\xab\x98\xf9\x72\x1b\xaf\x43\x3e\x97\x3b\xcc\x41\xf7\x4c\x4a\xe6\x36\xf5\x43\x85\xe0\xcb\x06\xc4\x45\x0c\x89\x9e\x2f\x89\x13\xd2\xb3\x54\x46\xc6\x81\x9d\xbf\xec\x5c\x3a\x9e\xca\xde\x70\x94\xdb\x16\x83\xe3\xd4\xd2\xa3\x5d\x9c\xa5\x38\xd9\x05\xb1\xf9\xab\xb3\xdd\x31\x35\x5a\x11\x69\x0b\x2a\x40\x2a\xec\x99\xd5\x1f\x88\xb3\xe4\x36\xd7\xf0\xee\x5e\x48\xce\x6e\x33\x96\x07\x34\x8b\x14\x74\x31\x6b\x8b\xa9\xe1\x2c\x58\x0d\x74\x43\xa7\x2b\x78\xc8\xe7\x53\x93\x9c\x82\x67\x0f\xf8\x3a\xa8\x75\x81\xf8\xc9\x88\x0c\x7c\x50\x43\xcb\x77\x6a\x21\x32\x0d\x94\x3a\xc2\x1b\x2b\xc7\xd4\x97\xa6\x69\x77\xe3\xd4\x1a\x94\xc8\x2b\x01\x9a\xd9\x40\x1a\x48\x67\x84\x3b\x6f\x74\x8a\x27\xdd\x32\x97\xb8\xdb\xfc\xe8\x83\x79\x4d\x64\x7f\xf0\xc1\x54\x2f\xcb\x4d\x4c\xed\xcd\xa4\xaf\xf0\x99\x7b\xa6\xb6\x8b\x0d\x09\xe8\x4f\x54\x66\x29\x37\x1b\x10\xd9\xf9\x46\x7f\x5e\x29\x5f\x78\x13\x90\xc7\xa3\x99\x4a\x15\xaa\x20\x61\x91\x77\x29\x65\x64\x44\xea\xf5\xcf\x59\x4a\xce\x1b\x56\x56\xac\x31\x6d\x7f\x92\x54\xad\xac\x17\xd4\x56\x10\x11\x90\xf4\xa7\x94\x6a\x1e\xac\xc1\x16\x13\x8e\x8b\x5e\x88\xfe\x2b\xa0\xde\x74\x93\xf8\x56\xb3\x14\x7e\x17\x45\x33\xb8\x2c\xe2\xb2\xdc\xb7\xc0\x34\xfa\xc8\xa2\x19\x02\x4b\xe0\xd9\xc3\xf0\x11\xde\x44\xa6\x22\xed\x92\xfd\x0a\x45\x95\x46\x94\x87\x0e\xe5\x97\xed\x3a\x96\xaa\x2c\xf9\xa2\x3a\x02\x00\xf0\x67\x55\x31\xe2\x9f\xfe\xa6\xa6\x18\xb1\x46\xdf\x2a\x8a\x6d\x8a\xf8\xcf\x7a\x62\x31\xfc\x53\x3d\xb1\x68\xff\xa6\x99\x83\x9d\xaf\xb5\x37\xef\x96\xf2\xc4\xbe\x58\x17\xf7\xf3\xb6\xd8\x7c\xbb\x2d\x0a\x98\xfa\xe1\xe9\x6f\x6c\x8b\xb0\xb1\xe6\x20\xc0\x6f\xb7\xc5\x24\xe5\x93\x35\xbd\x4f\x76\x40\xe2\xb4\x7c\x25\x0f\x53\x80\x86\x06\xf4\x60\x43\x84\x7c\x03\x71\x6a\xab\xef\xe4\x67\x05\x91\xa6\x1f\xa1\x68\x50\x1c\x00\xed\x37\xb3\xe3\x62\x1c\x20\x01\xd7\xa5\x2e\x28\xee\x83\xd3\x31\x42\xc7\x8a\x93\xce\x91\x83\xd0\x6d\xca\xa5\x61\x0e\xb1\xab\x1b\xee\xcd\x0a\xb4\x69\x76\xee\xc4\x94\x51\x32\xa0\x3e\xdc\x80\x57\x85\x9d\xef\x4c\x70\x9c\x8a\x07\x6b\x45\x74\xc2\x3c\x44\x69\xa2\x01\xed\x70\x7d\x4d\x3d\xcf\xb0\x1e\x5d\xe4\xad\xd9\x35\x63\x55\x3f\xc7\x83\xe8\x0a\x5d\x54\xf0\x98\x87\x33\x1c\xa3\x09\x52\xd2\x94\x22\x3a\x5e\xdb\x29\x27\x50\x45\x15\x4a\xa7\xd0\x74\x2a\x9e\x6a\x22\xe4\xde\xc3\xad\xb4\xe1\xd0\xed\xc2\x5e\xa6\x3a\x97\x1f\xa7\xd9\xaa\x1a\xc4\xf9\xe0\xf8\xf2\x13\x8e\x28\xe7\xf5\xfc\x1e\x47\x94\x36\xfb\xbe\xee\x26\xbe\x0a\xfd\x22\x02\x88\x9b\x2b\x0a\x20\x56\xa7\x04\x3a\x94\xd2\x8c\x90\x1b\x49\x85\x6f\x6c\x6b\xd3\x41\xd8\x7c\x4b\xb8\xbd\xc3\x36\xdd\xbb\xf9\x57\x97\xc0\x15\x02\x3f\x15\xfc\x86\x26\x33\xf9\x53\xbf\xeb\xf2\x8f\xf0\x4f\x9b\x8b\x15\x5b\x65\xd9\x88\x46\xbe\x6d\x25\x28\x88\x82\x72\xf2\x50\x9d\xdc\xaf\x23\xc9\x60\x24\x19\xc9\xee\xb1\x77\x09\x3e\x08\x52\x6f\x71\x08\x04\x61\x46\xbf\x24\x77\x42\xbf\xda\x84\x16\x83\xb0\xb0\x14\x5b\xe8\x26\x57\xe3\x4d\xe3\x08\x61\xd4\x7d\x4e\x44\x6f\x26\x3d\x04\x5a\x62\xc0\xe1\xa4\x53\xc9\xee\x96\x48\xc3\x15\xf1\xdb\x05\x80\x4d\x7b\xb9\x3b\xbc\x05\xdf\x14\x02\x9d\xb0\x8d\x19\x05\xa2\x74\xff\x52\x64\x2e\xf8\xdb\x06\x2f\x33\x34\x78\x2e\x7e\xd7\xe0\x69\x96\x6a\xd0\x14\x09\x84\x3e\x3d\x82\xf6\x50\xfd\xe1\x84\x60\x79\xfd\x0b\x52\xa7\xb6\x72\x67\xe6\x13\x4e\xf0\x76\x41\x06\x4a\xff\x00\x37\xa1\x4e\x6d\x09\x1f\xb9\xfa\x12\x92\xfa\x16\xcf\xbb\x47\xf8\x28\x9e\x90\x33\x68\x0b\x40\xf9\x3a\x91\x1f\xaf\x46\x2b\xd2\xe5\xeb\x75\x42\x41\xcd\xde\xb8\x4d\x4e\xa3\x6c\x11\x98\xe1\xe1\xb4\x0d\x25\xeb\x89\xb5\xb1\x7b\xf6\xee\x3b\x00\x78\xb2\xb3\xc5\xf3\x5e\x16\x0d\x67\xd0\xf0\x22\x00\x2f\x11\xd2\x48\xbc\xf9\xd0\xa9\x48\xa1\xaa\xc4\x2a\xef\x48\x1b\x25\xc6\x70\x1b\x59\xc2\xdb\xb3\x78\x60\x4c\xeb\x26\x29\x15\x49\xaa\x84\x79\xa4\xcd\x1c\x8f\x2d\x71\x5c\x71\x07\x17\x14\xbf\x25\xe6\x32\x5a\x48\x67\x24\xf4\x46\xcf\xee\xcc\x00\xfa\x5b\x48\xe7\x2d\x67\xae\xe3\xa0\x96\xea\x81\x23\xc6\x81\x7d\x02\x5c\x3b\xf5\x5a\xa5\x36\xfc\xdb\x23\x65\x70\xf1\x2f\x63\xfd\xc3\xb5\xc2\x66\x8f\xee\x09\x38\x31\x59\xc5\xd6\xe6\xce\x09\x58\x28\xe4\x34\xee\xe7\xdf\xd2\x40\x96\x05\x8a\x53\x55\xb4\x79\x19\x77\xbd\x5d\x25\xf8\x49\xf5\x58\x09\x63\x9f\x05\xe1\x15\x33\x89\xbb\x94\xcf\xfe\x6e\xd6\xa1\xaa\x38\x91\x49\xc1\x30\x34\x5b\xa7\x43\x77\xd3\x43\x73\x8d\xf0\x0f\x97\x6c\x3f\x6a\xc1\x60\xa1\xc8\xbb\x56\x82\x9a\x50\x64\x97\x2a\x0d\xea\x5d\x68\x0b\xef\x6d\x0d\x86\xfe\x4b\x3d\x5f\xa8\xfb\x12\x82\xe2\x70\x12\xcb\x98\xe1\xf6\xa1\xce\x11\x56\x8c\xa9\xd7\x16\xcd\x32\x01\xda\x8b\x1c\xeb\xcd\x66\x5f\x89\x4f\x0e\xc7\xb0\x20\x2f\x10\xff\x28\x5d\xe9\x4a\x63\x17\xad\x43\x26\x05\x1b\xfc\xd1\xd9\xbf\x42\x57\xcc\xea\x99\xd2\x1d\x5e\x97\xef\xb0\x43\x1b\x70\x8e\xbf\x30\x89\x57\xa2\xfd\xec\x34\xc5\x43\x93\xac\x75\xa2\x0c\x5f\x4a\xd6\x3b\x4c\x2c\xe4\x51\x0d\x46\xdd\x61\xfd\xe8\x9a\x27\x7e\xe8\x5e\x78\xd2\xc9\x77\x12\x50\xfa\x47\x39\x5d\xb0\x32\x2c\x4b\xee\x12\xfa\xe0\x96\x28\x26\x92\xb4\x8b\xda\x37\x84\x71\x2c\x0f\x10\x0b\x82\x73\xa4\x38\xf4\x0f\xf1\x51\x63\x39\xa7\x3e\x01\x3d\x7b\xe3\xee\x60\x6d\x68\x11\x36\xb0\x66\xf0\xe6\xdd\x98\xf6\xc8\x0d\xd1\xd8\x6d\x23\xe9\xc3\x02\x7d\x58\x48\x27\xa7\x84\xa8\xa8\xdd\x8a\x7d\x03\x8e\x4a\x88\x9c\x2a\x11\xc1\x68\x33\x70\xc4\x42\xd6\x43\xe2\x78\x37\x37\xcc\xe7\x17\x10\x47\x1d\xa7\xda\x3c\x51\x75\x8f\xd5\x08\xe6\xa1\xf7\x82\xe4\xe8\x2d\x71\x33\x96\xd3\xf7\x4f\x43\xc8\x03\x7e\x99\x31\xde\x2d\xe1\xe8\x00\xfe\x0c\xe9\x49\x26\xb4\xd7\xb4\x5a\xbe\xff\x34\x2c\x75\xf3\xfd\x88\x6a\x84\x2f\x16\x8f\x88\x0c\x02\xf1\xd9\xe5\x8c\x05\xa0\x83\xd8\x55\x65\xee\xc5\xa7\xd1\xea\x90\x14\xc1\x3e\xc6\xfa\xdf\xbd\x26\x3f\x76\x5e\x09\x31\x75\xe3\xce\x43\x25\xf1\xfd\x72\x78\x79\xc2\x89\xdb\xf3\x31\x5a\x70\x3f\xcd\xec\xeb\x85\x95\xc8\xda\xc9\xb3\x5b\x5a\x25\xa7\xaf\x4e\xde\x43\x0d\x54\xe9\x28\x39\xa6\x71\x2c\xcd\x08\xdb\xe6\x9f\x9e\xf9\x67\x2e\x91\x0b\x42\x09\x67\x18\xff\xb3\xa7\x87\xc7\xd4\xbf\x05\xfb\xaf\x16\x94\xd4\xc1\x56\x1c\xc5\x0d\x0d\xe3\x76\x46\x42\x7b\x89\x91\x65\xb0\xc1\x55\x33\xe1\x8c\xe3\x79\xd0\xc5\x3a\x1b\xe3\xc3\xbf\x73\xc3\x64\xe1\xab\x7d\x75\x43\x0c\xac\x0a\xed\x35\x22\x32\x68\xc1\xb9\x81\x3a\x4a\x1f\x59\x83\xbd\xeb\x6c\xf0\x7f\x7b\x4d\xd1\x00\x6a\x26\xd7\xf7\xe8\x21\xf1\xc1\x6f\x85\x35\xb9\xce\xdb\x84\x1c\x74\xcb\x00\xb5\xb9\x1d\x12\xf0\x99\xca\x13\x27\x03\xfa\xbe\xaf\x32\x43\x5b\xa7\xae\xba\xee\x3e\x47\xa8\xeb\xfd\x88\x73\xc2\xd5\xd6\x6c\xde\x5e\x51\x5e\x6b\x2f\xcb\x29\xd6\xa0\xdb\x00\x22\x7e\xfb\x10\x32\xeb\x55\x46\xa0\x5e\x6b\x4e\x20\xb6\x70\x6d\x21\x82\xf9\x75\x40\x0a\x0e\x7d\x2c\xa7\x21\xa8\x35\x69\x08\xf3\x2b\x3a\x6b\x0e\x79\x38\x14\xe0\xf7\x0f\xb4\x97\x0c\x01\x80\xdc\x2c\xd9\x61\xb0\x3e\xd6\x16\x21\x40\xf8\x39\x38\xd2\x77\xcd\x9d\xb4\x50\x66\xb1\x45\x49\x4e\xb2\x24\x01\x4c\x3c\xd8\x4d\xc7\xd8\xe7\x13\xe4\x98\x7f\x81\xb3\xed\x96\xe5\x63\xf7\xb7\x21\x01\x7f\xe2\xbf\x34\xa4\xda\x1c\x3e\x4b\x13\xba\x95\xf4\xe9\xbf\x3c\x24\xf8\xc5\x38\x03\x35\x73\x1f\xd8\x8f\x2c\x23\x01\xd9\xc3\xba\xf5\xce\x29\x05\x29\xc5\xc9\xe4\xdb\xab\x3b\x2c\x6c\x16\x37\x76\x6b\x7c\x82\xfc\x55\x3f\x20\xa3\xec\x0f\x23\xcd\x4a\x73\x18\x7d\xa1\x5c\x76\x80\xed\x0a\x3d\xcc\x72\x2a\xe0\xbe\xb3\x94\x42\xe7\xf9\x5a\xba\x1e\x45\xad\x06\x96\xd0\x19\x1b\xd2\xe1\x93\x63\xe9\xae\x69\xa7\x2d\x94\x8f\x30\x46\x03\xe0\xdc\x5f\x3c\xa2\x77\x55\x4a\x5c\xa0\xaa\xff\x90\x83\xe6\x0b\x31\xa4\x83\x26\xba\x9f\x0f\x9a\xb9\x05\xae\x0e\x1a\xb9\xfe\xea\x0d\x4c\xc7\xb9\x3c\x87\xea\xce\xa8\x53\xee\xc3\xe7\x83\xb6\x80\x94\x5c\x93\x17\x3a\x68\x83\xba\xbb\x06\xcb\xc7\xfb\xc8\x2e\x17\x26\xe4\xfa\x64\xd8\xe5\xa3\xa4\xc4\x70\xe2\xd8\xb8\x3f\xef\xa7\x84\x7c\xcf\x95\xd9\x51\x17\x6c\xa5\xaa\xfe\x7a\x3a\xd4\xc9\xe6\xe5\xdb\xe3\x7c\x50\xd8\x94\x2a\x5a\x12\x8c\x7f\x7b\x70\x12\x57\xc2\xe9\x9a\x7f\x82\x98\x88\xb6\xaf\x7f\x76\xe2\x7f\x88\xe2\xf6\xaf\xff\x39\x73\x5b\x5a\x38\x0b\x69\xa9\xef\x7d\x9a\xfa\x6e\x18\xff\xbf\x64\xbd\xda\x67\xe0\xec\x76\xee\x7f\xd3\xee\xf8\x9e\x51\x1f\x0a\x45\x37\x98\x78\xe5\x74\x31\x7f\x9f\x3a\xf7\x4e\x93\xcf\x8c\x5f\x73\x8f\x98\xf3\x3e\xf1\xf5\x82\x85\x5d\x5f\x88\xd1\x0a\x4a\x9d\xcf\x3b\xcc\xe6\x56\x1a\xb3\xeb\x1d\x93\xf3\xcb\xcd\x62\xc2\x9a\xbc\xe8\xf1\x6a\x4b\xad\x37\xac\xa9\x2c\x12\xdc\x69\x7b\x63\xf6\xc6\x03\x49\xf9\x4f\x1b\x40\x5a\xa9\xe9\x82\x65\x9b\x8d\xb9\x9d\xd5\x44\xae\x6f\xf1\x7b\x75\x4b\xf4\x4e\x2e\xf9\x77\x74\x0b\x37\x1e\xc0\x5a\xcf\xe5\x6a\xad\x3f\x73\xb2\xcb\x35\xbb\xc2\xd0\x88\x36\xb7\x16\xca\x57\xf4\x18\xbf\x77\x20\x74\xd8\x98\x0d\xd1\xc0\x06\x5e\x7a\xed\x5c\x68\x11\xc7\x12\x40\x04\x9a\xb3\xf6\x24\x64\x86\x33\x8a\xfe\xf8\x5a\x11\xfe\x16\x6c\xaa\x4d\x90\x7e\x8a\x58\x9d\x8e\xad\x1f\x22\xbe\x2c\x02\xaf\x8d\x85\x20\x99\xba\xee\x26\x14\x7c\xba\x4d\x53\x70\xea\x7b\xdc\x17\x6c\xb9\xe4\xfc\x65\x49\x0f\xa2\x8b\x38\x77\x17\xe8\x0f\xff\x88\x8e\x9f\x09\xfa\x82\xe9\x78\xbd\x71\x75\xf8\x8e\xa9\x9b\x69\x0e\x11\xa8\xf7\xf0\x9f\x49\x49\x26\x65\x81\x49\x99\x03\xe2\xe0\xa7\x59\xf9\xf5\xba\xfe\x1f\x9b\x15\x7b\xe3\x9f\x32\x40\x28\x6d\xfc\x97\x67\xc5\xe6\x25\x47\x84\x58\x65\xc1\xe7\xff\xe9\xff\xee\x5c\xa8\x2c\x6b\xc2\x6a\x0b\x8e\x80\xf9\x24\x2a\x5c\x71\xf3\x21\x49\x78\xfe\xe1\x86\x69\xdf\x32\x9e\x28\x64\x01\xff\xed\x36\xb9\xbc\x7d\xc7\x54\xc0\x0f\xed\x1b\xa6\x22\x2b\x33\x80\xed\xa1\x14\x00\xea\xbe\x5a\xe3\x08\x92\x2b\x9e\x68\x7e\x23\xc4\xfa\x86\x78\xa2\xd9\x2d\x2e\x94\xb9\xfc\x96\xa8\x17\x60\xdc\x29\xa6\x18\xce\x13\x8a\x8e\x0e\x93\x34\x45\x15\x53\x59\xe4\xc8\xfa\x2a\x99\x9a\x74\xde\x4d\xb3\x9a\xdf\x0b\x74\x60\x2e\x99\x23\xc8\x32\x04\x76\x5b\xcd\x24\x66\x77\x1c\xb1\x79\x97\xf2\x05\xd8\xd9\xe5\xcb\x5d\x8b\x22\x76\x5c\x60\x07\x1c\x08\x1f\x0a\xbb\x12\x5e\xf4\x90\x30\xc5\x5f\xd2\xa9\x1d\x15\xe9\x62\x6b\x47\x21\x47\x99\xfc\x77\xce\x7b\x14\xcf\xfb\xbe\xef\xf4\x85\x0e\x65\x94\x77\xbf\x99\xf9\xf1\x8d\x10\x0b\xcc\x7c\xd6\xff\x75\xe6\x2b\xd7\x33\x1f\x87\x0a\x93\xa7\xe7\x07\xf3\xd6\x50\x94\x7d\x42\x71\x9c\xd1\x54\x7b\x2b\x5b\xdf\x8b\x45\xfb\xfb\xa5\x75\xb9\xa0\x64\x79\x30\x1f\xf5\x1d\x2d\x3e\xe0\x9d\xb6\x97\xe5\x21\x5b\xd9\x49\x32\x67\x3c\x2b\x52\x1f\xd7\x43\x76\xed\x26\x2c\x3d\xfa\x31\x7c\xcc\x50\x24\x99\x18\x56\x77\x9a\x8d\xe2\x2d\xe1\x8a\xc2\x0e\x27\x33\x7b\x44\xda\x8a\x13\x82\x27\xe8\x4b\x1a\xd1\x54\xac\xf0\xdb\x4d\x8d\xd8\xcf\x60\x44\xcd\xcb\x95\xa3\xc5\x0e\x3e\x29\xe5\x1d\xb9\xc7\x44\xb2\x00\xbe\x63\x18\x56\x3e\xed\xbb\xd3\x02\x80\x50\xf3\x88\x0f\x54\x7e\xfe\x55\xa3\xbe\x7e\x66\x4b\x1b\x59\xb5\x00\x42\x97\xa5\xff\xbc\x2c\xa9\xef\xba\x6f\x4e\x4b\x3c\xf9\x53\xee\x7b\x44\xb6\xce\xb7\x15\xac\x1b\x71\x1a\xa5\x5a\x18\xbf\xf6\x2d\xd4\xf2\x49\xda\x52\xb0\xa8\xa5\x92\x36\xa9\xea\x6f\x49\x9b\xce\xd4\x98\x77\x90\x9f\xbf\x52\x20\x5e\x4d\xdf\xaf\x72\xd2\x2a\xeb\x3f\xda\x5b\xeb\x2e\xf7\x79\xfc\xb3\x02\x96\xab\x40\x90\xd4\x53\x59\xc5\x39\x8a\xe0\x03\x7c\x75\xf2\x7e\x21\x6e\xde\x01\xd7\xdf\xd6\x70\xbb\x6a\xe6\xe2\x04\x66\xb0\xc1\xf6\x76\xc7\xa4\x54\x21\x2d\xb0\xd2\x69\x4a\x37\x97\x17\x9c\xb8\x35\x9d\xb8\xa9\x9c\x61\xcd\x98\xd4\xe5\xff\xf6\x91\x6b\x0b\x15\xca\x52\x8d\x83\x9d\xfa\xce\x50\xe8\x95\x5c\x7d\x7b\xb2\x96\x37\x42\xec\x71\xb2\xa2\xdf\x69\xda\x7c\xfb\x85\xa6\x45\x01\xb3\x9d\x9f\xe7\x36\xca\xd0\xf9\xf1\x36\x60\x31\x0e\x3f\xd2\xb4\x4f\x33\x3b\x25\xd5\x94\x99\xd9\xa6\x93\x91\xea\x31\xdb\xe0\xa0\xc7\xb1\xa4\xc1\xe4\x60\xfe\xaf\xab\xf4\xe4\x21\x24\xf9\x90\x4a\x2d\xb7\x09\x11\x1d\xbe\xe6\x7c\x00\xf8\xad\x3e\x2a\x9c\xbf\xe8\x08\xdf\xfc\x53\x80\xac\x12\xc8\xa4\xd7\xc9\x60\x82\x5b\xd9\x50\x32\x57\x3d\x46\x82\xfb\x02\x90\x78\x8b\x0d\x23\x64\xec\x64\x1d\xb0\x4b\x67\x34\x72\xe1\x46\x08\x68\x6c\xb4\xc7\xc3\x43\x80\xa2\x9c\xcc\x72\x8b\xa7\xbb\xc0\x88\x54\x07\x4e\x8f\x1f\x7b\xec\xf3\x45\x6a\x3e\x38\xd5\x4e\x45\x52\xd8\x3c\xba\xb2\x95\x64\x6a\xd8\x18\x59\xee\x28\x85\x38\xc3\xea\xd2\xba\x33\x7b\xd0\x63\x85\x01\xa2\x4c\x2a\x6a\x83\x83\x8c\xb1\x73\xd2\xc3\x55\x94\x76\x6d\x58\xc0\x4d\xa5\xbd\x48\x65\x5e\xcb\x90\x65\xa4\x59\x2c\xa4\x45\x78\x48\x72\x8c\xdf\xdc\xba\x90\x55\xc0\xff\x20\x5f\xd7\x02\x23\x81\xa2\x82\x68\xce\x67\x24\x33\xad\xe5\x6a\x8a\x64\x19\x32\x33\x25\xa1\xe3\x28\xb3\x30\x8d\x9e\xb0\x68\xaa\x42\x1b\x99\x8e\xe5\x63\x3b\x34\x6c\x50\xf7\x03\x52\x6b\x68\xa3\x87\x62\x3b\x6d\x7b\x82\x13\xd4\x27\xef\x9d\xfe\x7c\x99\x9c\x04\xe5\xf3\xbb\xce\xd4\xda\x4c\xd8\x56\x9c\xae\xe3\xee\x14\x83\xef\x55\x28\x36\x55\x23\xd4\xdf\x8f\x76\x3a\x6d\xd5\x58\x42\x71\xfa\x90\x9f\xbb\x69\x7c\x90\x5a\x86\xb1\x64\x85\xe3\x89\x96\x98\xa3\x61\x98\x5e\x67\x44\xfe\xfc\xec\x01\xf7\x21\x26\x6c\xba\xa7\xa5\xac\xc8\x10\xc4\x71\x3e\x4c\xaf\x57\xa7\xde\x30\x33\xd2\xba\xf4\x70\x17\x90\xda\xa7\x24\x85\xaa\xeb\x39\x4d\x75\x4e\xda\x45\x24\xfa\x79\xd0\xca\xd1\xea\x04\xe7\x89\x25\x67\xcf\x69\xef\x70\x00\x99\x18\x73\xb2\xf8\xc1\x62\x60\x9a\x9e\xca\x0b\x85\x7e\xab\xba\x5c\xec\xd9\xec\x50\xde\x7c\x11\xfe\xd6\xc0\x2c\xdd\xca\x5c\x00\x17\xf4\x4d\xc8\x87\x1b\x57\xff\x28\xc4\x7e\x69\x73\x38\xd1\x58\x2e\x69\x39\x46\xab\x16\x20\x58\xd8\x6e\x56\x80\xd7\xe6\xa8\x38\x35\x3b\x77\x21\x8b\x1e\x69\x87\x9a\xe7\x37\xc7\x13\xbd\xe6\x4f\x09\xe4\x76\x55\x80\xa8\x5f\x22\x60\x90\x8f\x09\x10\xb0\xea\x8a\x84\x20\xcc\xc1\xe4\x4c\xa5\xb3\x54\x42\xec\xd5\x85\xe1\xa7\x29\x93\xc8\xd6\x8d\xfb\xe5\xcc\x3d\xa1\xab\x7e\xf1\xc5\xe1\x74\x56\x23\x21\x46\xb9\xef\x3f\xa4\x36\xee\x98\xc6\x2b\xfe\xe4\x43\x4b\x57\x88\xe3\xf5\x87\x3e\x66\xb7\x07\x84\x79\xa4\x5b\x98\xc6\xfc\xd8\x5e\x09\x51\x52\xdb\x01\xd7\xc8\x35\x44\x2b\xdb\xe0\x99\xe3\x19\x8d\x67\x78\xd5\xe2\x84\x8d\x81\xe8\x6c\xdc\xd3\x57\xe8\x9b\x12\x5c\x7f\xa6\x10\xd0\xab\x11\xb9\xb1\xf4\xe9\xbb\x7d\x43\xa2\x06\x71\x74\x7a\xb8\x81\xcf\x2c\x89\xf0\xe3\x1d\x13\xca\x2a\x84\x82\x5e\x87\x73\xbf\x1f\x43\xb8\x5e\xad\x25\x9b\x28\x57\x7f\x54\x2d\x17\x62\x32\x97\xa8\xb6\x20\x0f\xa8\x9f\xab\x95\x06\x9c\x68\x2a\x77\x97\xf4\xb7\x77\xf9\xb5\xce\xd8\x7e\xe1\xc8\xb9\x01\x91\x6a\x53\xcc\x65\xf1\xcf\xea\xed\xc3\xd4\xe4\xf4\xf2\x7f\x56\xe9\xfc\xf9\x63\xe5\x3f\xab\x57\xb8\x9a\xfb\xfa\xaf\x95\xe6\x8a\xed\x40\xfb\x19\xae\x10\x46\xcd\x5b\xff\x54\xc9\x13\x62\x50\x59\xa4\x47\x33\xd9\xfe\xf6\x81\xca\x00\x37\xcb\x3a\xb8\x1e\xcb\xe6\xd7\x5a\xb5\x81\xb3\x90\xee\x5c\xce\x32\x72\x4c\xd9\x84\x46\xd5\xbf\xa2\x11\xa2\xc3\x64\x27\x02\x9f\xc3\xf9\x5e\xd3\x59\x64\xb1\x5f\xe1\xf8\x1a\xa9\x9f\x86\x4b\x9e\x90\xba\x06\x9e\xb5\x3d\xc5\x69\xe8\xcc\xe8\x74\xa8\x99\xb4\x57\x33\x4e\x4d\x67\x65\x2e\x27\x15\xd9\xab\xb9\x10\xb1\x3f\x15\xce\x73\x28\x8f\xaf\xf4\x9d\x05\x4a\x47\x86\x3a\xa9\x93\xbd\x6e\xe7\x78\x1a\x9a\x93\xa6\x2e\x92\x32\x7a\x74\xd7\x78\xb8\xe1\x86\x37\x7c\x07\xe7\xd8\xff\x3c\x4f\x94\x4c\x85\xf2\x3c\xd6\x4c\xba\x05\xdc\x82\xa6\xd0\x19\x96\x23\xb2\xcb\x4f\x28\x23\x22\x70\x27\x4d\xb3\x21\x82\x80\xf9\x2a\x9e\x13\x44\x0c\x3b\xd1\x9e\x6a\x2c\x56\x9b\x11\xbf\x6c\x9f\xac\x9b\x2c\x71\x24\x9c\x25\x32\x41\xf6\x11\xc3\x7b\xa7\x29\x5a\xe4\xda\x77\x2f\xd8\x43\x33\xa8\xc2\xd3\xb1\x3d\x45\xbe\xf7\xf7\x15\x5c\x6c\x82\x43\xdf\xb1\x79\x3b\x9f\x77\x6c\x04\xac\x5c\xd5\x51\x6f\xdb\x23\x1c\x37\x72\xc4\x5c\xf6\xee\xb0\x43\xea\x8c\xa2\xce\x69\x21\xda\xb5\x6d\x52\xab\x25\xd4\xc1\xdd\xee\xc9\x53\xa9\xff\xf2\xb5\x7c\x5b\xe8\x99\x42\x85\x85\x34\x12\x49\x59\x8a\xcb\x81\x76\x44\x97\xf5\x0a\x43\x4c\x48\xef\x24\xe7\x48\xc3\x39\xc8\xe7\xc0\x31\x17\x30\x61\x65\x30\xed\x84\x9e\x80\xd4\xdd\xc4\x02\xd0\xb5\x39\x38\xe0\xf6\xdc\x13\xac\x6c\x7f\x87\x9b\xac\x9d\x81\x61\xd1\xcb\x12\x1f\xa9\x0e\x6a\x8b\x6f\x75\xd6\x7c\xff\x97\x97\x3a\x71\x08\x6c\xe6\x38\xd0\x8d\xc8\x71\x9f\x12\xd6\x06\x27\xe9\x34\xc5\x9d\x4f\xdc\xe1\x64\x98\x9e\x96\xfc\xd5\xe5\x7a\x91\x76\xf8\x14\xc2\xdb\x3c\xc9\x0c\x8f\x62\x8f\x4c\x23\xb9\xa6\xc3\x59\x4e\x75\x19\x62\xdb\x7c\xc1\x0c\xd0\xe4\xc8\xe9\x37\x11\xfa\x1a\x8c\xc9\x93\x57\x5d\x64\xb8\x23\x93\xbd\x58\xca\x9c\x07\x6e\x97\x9c\x44\x90\x91\xcb\xff\xa6\x8e\x68\x9b\xa1\x12\xf3\x0e\x6e\x65\x4b\x89\x13\x27\x8d\x31\x47\xd0\x45\xb8\x36\x86\x66\x83\x17\xe5\x82\xb3\xa2\x55\x23\x6d\x28\xd4\x68\x49\xa9\xab\xd5\x46\x9e\xcd\x9e\xaf\x4a\x12\x43\x6a\x72\xa2\x66\x1b\x4d\x26\xd5\xc1\x74\xa3\x9d\x96\x33\x56\x3a\x6c\x80\x05\x3b\x6c\xb5\xf3\xff\x77\x6c\xb3\x0e\xa7\x4a\x21\x42\xf0\x7f\x1e\x3a\x2c\xd7\x78\x09\x13\x10\x36\xa7\xaf\xaa\x77\x65\xc9\x62\xfc\x5c\x3a\xa5\xa6\x4d\xe1\xcd\x6e\xd0\x2a\xc5\xed\x9e\x20\x94\x19\xfa\x9f\xf3\xde\x9c\x96\xb8\x78\xe2\xc8\xcf\x8a\x0b\x68\x05\xcf\x0b\xcb\xc6\x98\x65\x3e\x00\x1d\x89\xf3\x67\x5d\xd8\x48\x72\xe6\xff\x81\xb0\xc4\xe9\xec\xda\x9c\x02\x86\x86\xf1\x6c\x27\x4d\xb9\x59\x38\xec\xb6\xce\x14\x9b\x8c\xa8\x9b\xc7\xe8\x80\x28\x16\x44\x43\x3a\x00\xdb\xa1\x07\x1d\xb3\xc6\x6d\x72\x3f\x0f\x84\xbe\x4d\xda\xc9\x61\x5b\x8d\x01\xa2\x4f\x70\xe3\x8f\xf9\x19\x37\xd3\xc5\x3f\x6a\x47\x24\x34\xa9\x75\xf7\xeb\x5f\x29\xf7\xfd\xe5\x81\xd1\xaa\xc7\x9a\x40\xf3\x7e\x2d\x2c\x50\xb4\xa6\x7e\x2a\x9a\xc7\xa4\xb6\x2a\x63\x69\xe9\xbd\x35\x18\x77\x31\x3e\x4a\x2b\x49\x59\x17\x45\xf7\xc0\x68\xe3\x10\x21\xae\x87\xfd\x7b\x67\x0b\xe4\x5b\xfa\xf5\xbb\x99\x6a\x1c\x4f\x61\xbf\x6b\xca\x5f\x66\xb1\x9f\xb6\xca\xff\xc1\x4c\x7d\xf7\xc9\x8a\x7b\x35\xe8\xf8\x93\x4b\xc4\x3b\xce\xb1\x98\x75\xbb\x30\xc9\xa3\x4f\xeb\x4b\x41\xbb\xa9\xef\xc3\xaf\x0e\xce\xe3\x04\x37\xfe\xcd\xb7\xa7\xf4\xed\x4f\x5f\xec\x62\x90\xc9\x94\x5a\x07\xe1\x4e\x3d\x35\xdc\xf2\xbf\xe1\x73\xdf\xec\xde\x02\x80\x02\x3a\x08\xa1\xfc\x69\x05\x52\xf3\xee\xf2\x56\xfb\x61\xd6\x4b\x91\xc6\xde\xa7\x6c\x9a\x65\x7e\xba\xae\x31\x96\xfd\xf5\xf2\x67\x53\x1d\x2c\x7e\x5a\x7e\xdb\xc1\xff\x43\x0d\xfe\xe9\x8e\x5f\xea\xef\xe7\x7e\x5b\x63\x04\xa5\xeb\x4f\x4e\xe6\xc9\x27\x29\x69\xec\x37\xdb\x60\xff\x7d\xd5\xd9\xe7\xaa\x7f\xb5\x3b\xe2\x3e\xfe\xb4\x3f\x8e\x35\x97\x58\x8b\xd0\xb6\x6c\x91\xe5\xba\x86\x70\xff\x09\x0d\xf8\xfb\x14\xf4\xa8\xc9\x37\x3c\xe0\x84\x26\xb7\xe8\x4b\x13\x1a\x56\x86\x8f\x28\x48\x67\x41\xae\x0e\xec\x3b\x68\x64\x35\x73\x4b\xc5\x17\x57\x4e\x66\xd7\x32\xa5\x36\x99\xd4\x95\xbd\xba\xf6\xd2\x5c\x5d\x3b\x29\xc6\x78\xe6\x47\x35\x78\x86\x4e\x81\x16\x51\xc1\xd5\xb5\x82\x63\x9e\xb7\xc5\xff\xbe\xa2\xf8\x0a\xca\x43\x1c\xca\x79\x0a\x9f\x4f\x3d\xcc\x18\x5c\x60\xbe\xd4\xcc\xf2\xc2\xa6\x70\x39\x50\x7c\xcb\x46\xc1\x6f\xa6\xb5\x88\xdf\xdf\xc4\xef\xdb\x84\x24\x1d\x08\xf1\x90\xa3\x3b\x4d\xdd\xfd\xde\x9a\xb7\xa3\xd2\xcf\x67\xdc\x80\x84\x36\xf6\x68\x21\xe8\xbe\xff\x80\x1f\x77\xe0\x0f\x3b\xa8\x6e\xd2\xd5\xad\xd9\x91\x3b\x68\xd1\x13\xbc\xfc\x41\x5b\xe5\xbc\x8e\x40\xaf\xa8\x19\xeb\xb3\x85\x3e\x75\x57\xd0\xd3\x52\x0c\x48\x9b\xe6\x8b\x37\x4c\x9f\x97\x1f\xba\xdb\x35\x72\xe9\x0e\x18\x25\x93\x4a\xcc\xe5\x55\x11\xce\x2e\x3c\x14\xda\xc6\xb5\x0c\xaf\xde\xbb\x68\xa0\x9b\x34\x70\xbe\x6e\x40\xa0\x40\x47\xa8\xb7\xaf\x6d\x2d\xe4\x77\x8d\x0d\x93\xc6\x6a\xdf\x36\x36\xf8\xb6\xb1\xc1\xf7\x1d\xf3\x19\xb6\x95\x66\x66\x2d\x4f\x91\x45\xd5\xf4\x85\xf2\xcf\x2c\xad\x13\xe7\xda\x65\xad\x2e\x58\x37\x7a\xe7\x89\x86\xd9\xbe\xdd\xe7\x64\x97\x2f\x79\x97\x6b\x92\x5a\x38\x3e\x3e\x9f\x6c\x75\x75\xcb\xde\xb5\x70\xda\xcf\x80\x51\xe8\x4d\x36\x10\x7e\x20\xe2\x36\xf9\x71\x27\x3a\x7e\x8d\xa6\x2c\x43\x4e\x1b\x43\xa8\x43\x20\x4c\x27\x0b\xb5\x2c\x33\xbd\xfc\x2e\x20\x62\xc0\x8c\x5b\x57\x28\xb7\xcc\x9b\xb2\xd2\x02\x0f\xd3\x15\x94\xf2\xd9\x2e\x7f\x4f\x28\xb7\xda\xba\x2a\xd1\x13\xea\xc3\x3e\x42\x36\x8f\x5e\x8d\x48\x4e\x70\xd8\xb3\xcd\x19\x51\x2d\x9d\xab\x4d\x84\x94\x9f\xad\xca\x52\x63\x1d\x10\xcb\x9e\x94\x59\xca\x2b\x92\x53\xe5\x7e\xd5\x96\xda\xa6\x30\xd7\x8c\xbe\x69\x6b\x8c\x84\x72\xeb\x9f\xba\xdf\x4a\x3a\x37\x5f\xd3\x65\xb1\x96\xe7\xd1\xe7\xde\x4d\xbc\xbc\x3a\x43\xc7\x6c\x11\x8c\xa7\x5e\x94\x6e\xdb\x48\x50\xee\x1b\xd8\x2c\xc2\xae\x20\xa6\x4e\x85\x32\xcb\x1f\x1c\xaf\x34\xab\x0a\xdb\x64\x24\xbf\xee\xd6\x64\xa5\xff\xa8\x6e\xeb\x53\xdd\x41\x52\xb7\x93\xc7\x7f\x22\xf5\x2f\xbc\xdd\x35\x1c\x08\x8c\x74\xc7\xed\x77\xd1\xdc\xed\xd5\x38\xb7\x91\xfb\xc5\x62\xb8\x78\xa1\xb8\x31\x98\xa6\x58\xbb\x9c\x6a\x7a\xbb\x47\xd4\x51\x21\x23\x93\xbd\x1f\x98\xfe\x37\x29\xa4\x22\xe9\xa8\x39\xd3\x59\xf8\x90\xfd\xbd\x8e\xc2\x5f\xfe\xff\x6d\x4f\xeb\xe9\x9e\x12\x79\xe2\xae\x26\xeb\xd1\x23\x01\xb9\x13\x5f\xdb\x4b\x2a\xc5\xeb\x33\x5d\x69\xee\x27\x74\x54\x0c\x52\xd3\x9a\xaf\x34\x04\xfb\xce\xa7\xbd\x4b\x54\x29\x5c\x7d\xa9\xdd\xfa\xb6\x76\xfb\x53\xed\xfd\xdf\xaa\xdd\xfa\x54\x7b\xfb\x43\xed\x0e\x91\xa5\x8e\x68\x3e\xd2\x84\xe1\xf8\x9f\x65\xc4\x30\x92\x53\x98\xb7\x88\x1e\x88\x13\x85\x42\x03\x7a\xd3\xbd\x5a\x9a\x2a\xab\x0c\xb4\xb5\xe1\x81\x0d\x58\xc4\xdc\x33\xb1\x4d\x53\x4b\x5b\x4c\xcb\x59\x70\xbf\xed\x31\x2e\xea\x1c\x2e\xea\xe8\xcb\x45\x4d\x42\x78\xfa\x87\x59\xd1\xb9\x24\x13\xd0\x44\xf6\xe8\xb6\x5d\x21\x3a\xc2\x5e\xb6\xdb\x95\x25\x06\x30\xc1\xd9\xdb\xb6\x2a\x4b\x47\x0b\x5b\x62\xae\x5d\x11\x5f\xba\xef\xd1\xea\x33\x1d\x01\x95\x2d\x1f\xb9\x66\x05\x35\x09\x99\x53\xbd\x6c\x56\x9f\xbf\x84\x3b\xb8\x4a\xc5\x55\x68\xef\xe0\xa4\xb9\x20\xf5\x5e\x74\x6a\x47\x5c\xf8\xf5\x23\x41\x35\xd5\x6d\xf9\x1f\x7a\xfe\x5d\x83\xef\xa9\x5b\x5d\x67\xc9\x97\xe0\x61\x89\x66\xd3\xcb\xd2\x11\xea\x1d\x75\xaf\x0f\x60\xfa\xe8\x31\xf6\x59\x4e\xf6\xaf\x29\x60\x4f\xf8\xa7\x06\x0a\x42\xa7\x50\x92\xab\x6f\xf6\x85\x3a\x28\xbe\x1e\xfe\xf8\x13\xca\xe9\x09\xb7\xac\x09\x44\x87\x76\xca\x6d\xea\xb6\x6c\x25\x2d\x17\xe5\x2d\xa1\xea\x9c\xfe\xaa\xfd\x23\x61\x39\x79\x8c\xfd\x4a\xc5\x55\xd4\x01\x9b\xb9\x5f\xb1\x5d\x0f\xa0\x13\x1b\x98\xb3\x39\xe2\x1d\xb7\x67\x3f\xc2\xff\x9d\x25\xfe\x47\x68\x6b\x2b\xbb\x77\x9d\x24\x33\xe6\xfc\xc8\x51\x29\xe4\xfd\xd5\xda\x85\x98\x8a\x2e\xad\xa8\x70\x9a\xa2\x33\x53\x94\x16\xcf\x2a\x7e\x8f\x4f\xc4\x5d\x0b\x08\x78\x27\xaa\x16\x94\x32\x92\xf1\xf3\x08\xef\x85\x83\x4c\x82\x4a\x46\x32\xc8\x9e\x16\xea\xbd\xca\x4f\xc3\xe3\x55\x61\xee\x41\x90\x1f\x23\xf8\xd8\xd0\xd7\x1c\x2c\x43\x65\x59\xbd\xa3\x83\x37\x1d\xbb\x44\x68\xde\x66\x63\x37\x7e\x30\xa7\xc3\x9e\x47\xc7\x0b\xf0\x08\x2b\xcb\x22\x7d\x25\xa3\x5f\x9c\x56\xe3\x02\x67\x86\x85\xac\x1f\x12\xcd\xe1\x3f\x25\x63\x80\x5e\xc9\xac\x26\x77\x9b\xee\x12\xfa\xe4\x01\x96\x71\x70\x90\x76\x05\x3d\x92\x6d\x68\x89\x1b\xbc\x84\x58\xba\x98\x47\xf3\x37\x14\x90\xc1\xb0\x05\x38\xfc\x85\xa5\xb4\x59\xb8\x84\x17\xd6\x54\x82\xea\xb1\xbc\x31\x3c\xe0\x05\x4f\xce\xec\x80\x13\xed\x75\xca\x49\x88\x56\xa5\xb1\x6c\xc4\xd9\x16\x5b\x86\x68\x7f\x08\x9b\x00\x58\x04\xe6\xec\xbe\x8b\xd4\xfb\x56\xf2\xfe\xef\xfe\x36\x04\x9b\xcd\xeb\x67\x00\xa7\x05\xb6\x0c\xfc\x41\xed\x10\x03\xc3\xe9\x5d\x2e\x9c\xe2\xed\x4c\x76\x90\x6f\xaa\x05\xec\x3c\x9d\x54\xd3\x55\x24\x7d\xdc\xe3\x69\x7f\xb5\xb7\x08\x89\x7f\x3d\xda\xbf\xea\xfd\xff\xde\xd9\x38\xe6\x99\x3d\x57\x09\x0f\x8f\x1c\xde\x7d\xe0\x2f\x58\x78\x2e\x62\x94\xd1\x9a\x39\x2e\x0b\xc6\xda\xa1\x70\xee\x7e\x79\xc9\x31\xb6\xbe\xf5\x7b\x6c\x9a\xe9\xe3\xc0\x52\xb8\x45\x02\x40\xab\xbf\x43\x18\x5a\x50\xce\xa6\x3c\xdb\x6a\x59\xfa\x3c\xfb\x19\xce\xd0\x9a\xf5\x80\x98\x4f\x88\x4e\x7d\xcc\xc1\xfc\xf7\x43\xfc\xdf\x74\xe2\xec\xd6\xdf\xbc\x51\x75\x95\x7e\x1a\x90\xc0\x13\xa7\xbc\x5e\xf2\x2b\x66\x84\xe2\x86\xd0\x51\x44\x4e\x62\x14\x41\x3c\x6a\xc3\x0d\xbf\x7c\x7e\x38\x8a\x9f\xb5\x6d\x14\x27\x86\x19\x6e\xa4\x33\x10\x19\x99\xe5\xaf\xf6\x45\x59\x52\xac\x6e\x8e\xce\xb4\x4d\xbc\xa4\xfc\xfc\x89\x64\x69\x41\xc1\x93\x0d\xc1\xbe\x11\x0c\x76\x08\x1c\x42\x60\x32\x7b\xc2\xa7\x34\x03\x2e\x44\xa4\x01\x29\xa4\x9f\x60\x57\x29\x9f\xb4\x65\x51\x90\x67\x8d\x35\x24\x58\x71\x87\xb3\x3d\xc5\x7f\x23\x44\xc7\x2f\x9c\x74\xba\x36\xe2\xd6\x57\xca\x3e\x2e\xe2\x7f\x32\xff\xb4\xd2\x0f\x9b\x46\x0e\xb7\x0f\x40\x34\x44\x93\x3b\x4e\x05\x48\x99\x41\xb6\x26\xef\xd1\x3e\xb7\x5d\xa4\x7c\x18\x9c\xfb\xa8\x9d\x7e\xd9\xa6\xb3\xd8\x84\x04\xc8\x73\x59\xe2\x8f\xc0\x49\xe7\xd3\x4b\x61\x5f\x89\x26\x5f\x52\xb6\x28\xb1\xd2\xec\x01\x86\xa7\x27\x36\x53\x21\xe8\xd9\x90\xc3\x29\xe3\x17\x05\x24\xa6\xb5\x85\x12\x7c\x93\x22\xdb\x5c\x32\xa5\xbe\x08\x26\xaa\x76\x22\x30\xcc\xa9\x7c\x43\xac\x45\x4f\xdc\x14\xa5\x91\xdf\xbc\x85\x6b\x1e\x35\x10\x3b\xd2\xa2\xe3\x30\xec\xc6\xe0\x1c\xb4\x6d\xf4\xd9\x90\xe1\x9b\x88\xc0\x01\xf7\x64\xb5\x6d\xae\xe4\x07\x25\xd1\x27\x17\xd8\x52\x23\x2b\x43\x0a\x23\x5d\xd7\x1a\x30\xc0\xcc\xc9\xdc\x15\xd5\x1a\x2f\xb8\xb8\x36\x58\xb3\x56\x7d\x84\xbd\x43\xe8\x8a\x5b\xb9\x85\xe9\xe7\x75\x87\x63\x7c\xb4\x9e\xab\x9e\x50\x64\xce\x59\x06\x3e\xd8\xa6\x55\x00\x44\x73\x9a\x9f\x37\x05\x3e\x18\x01\x16\x30\xf4\xb6\xb6\x14\x8e\xab\x42\xc5\x2d\x99\x43\xd7\x3c\x01\xf9\xa6\x63\x71\x15\x9b\x8c\x9d\xb4\x51\x2c\xb9\x9b\xd3\xbb\x5b\xc9\x4f\xf7\x86\x08\xaa\x63\xd7\x5a\xd6\x5b\xa1\x5c\x32\x12\x57\xe3\xba\x19\x7f\xa3\xbc\xf8\x36\x13\x6b\xe9\x0c\x45\x3b\x0b\x45\x59\xf7\x8e\x8b\xf2\xaa\x35\x0f\x0a\xc1\xfe\xf7\xd7\x4d\x78\x3b\x45\x1c\x55\xf7\xe1\xba\xbc\x3a\x28\x72\x1b\xeb\xde\x72\xd3\x0b\x69\x18\x49\x3a\x3a\xdd\xa7\xeb\x36\xf4\x4e\x11\x6a\x77\xf7\xf9\x53\xf7\x76\xaa\x97\xb4\xbd\x26\x56\x44\x65\x25\xda\x35\xd2\xd3\xb3\xba\xea\x3d\xa9\x38\xfd\xb4\x99\xb0\x19\x6f\xba\x16\x74\xe5\xa6\xc2\xf2\x0e\x68\x71\x2b\x78\x42\x98\x8b\x23\xba\xfb\x58\xc3\xbe\xd9\x7d\xe5\xc6\x2a\xd4\x5f\xb2\x10\x77\x01\x01\x79\xd5\x61\x08\x0d\xdd\x77\x2e\xbd\x97\x66\xe6\x48\xc6\xef\x46\xf2\x7a\x2a\xbc\x83\x02\xb9\x03\x74\xcc\x06\x3e\xa8\x2b\xd8\x86\xb7\x88\x1e\xea\x99\xce\x04\x42\xdd\xd6\xc0\x9f\x4e\x5a\x36\xdb\x2c\x52\x13\x57\xe5\x1e\x51\x40\xdd\xdd\xd7\xbe\xc0\xe2\xdf\x3d\xd8\x37\x0c\xa5\xa5\x8a\xea\x98\xfa\xee\xea\x02\xa9\x62\x4f\x4b\x1e\x2c\x1f\xe8\xf6\xe5\xe8\xb3\x27\x27\x86\x05\x04\xe6\x33\xd9\xd7\x9f\xd8\x1f\xc8\x06\xea\x23\x53\x0c\x04\x3b\xf1\xb4\x99\xb0\x71\xdd\xbe\x46\x3e\x18\xd1\x5a\x64\xb1\x0c\x48\xf3\x22\x82\x83\x45\x7d\xf7\x2c\x95\x00\x1d\x28\x3e\xa7\x9e\xaf\x2f\x90\x85\x20\x87\x75\xf3\x9f\x86\xa9\x76\xaa\xc0\x83\x69\xc7\x0b\xff\x9e\x5e\x78\xbb\xd2\xb0\x8a\x28\xac\x05\xdd\x1a\x5c\x7a\x22\xd3\xc5\x93\xcd\xd2\x8c\xcd\x57\xc9\xcf\xaf\x1b\x88\x9a\xad\x6b\xc6\x04\x73\xfa\x71\xb3\xe1\x9f\x35\x6b\x73\x29\x98\x7f\x82\x89\x86\xbf\x60\x77\x66\x0f\x36\x2b\x85\xf4\x45\xcd\xb9\xd9\xaf\x6f\x60\xce\xee\x46\xea\x7a\x9d\x75\x51\xc1\xe1\xb7\xbb\xb2\x6f\x38\x5b\xaf\x27\x74\xe8\x82\xeb\xed\x6e\xec\x3b\x66\x48\x47\x65\x05\xbf\x8e\xee\xee\x53\x7b\xa3\xa2\x62\x88\x9b\xc3\x27\xb2\x33\xd8\xa9\x63\xfa\x4b\x44\x31\x54\x56\xf2\x27\x9c\xb5\x8e\x67\xa5\xfc\x75\x56\x9a\x31\x3b\x64\x27\xa4\x9d\xb2\x6b\x51\x11\xfa\xcb\x22\x49\x76\x3f\xff\x63\x59\x69\x3a\xcb\xd5\xdb\x8a\x4c\x75\x72\x4d\x9a\x67\x73\xed\x71\x5f\x72\xad\xb8\x2f\xd9\xbf\xb1\xf0\xdf\xed\x83\xef\x8a\x50\xc7\x13\xd3\xdc\xdf\xff\xe7\xd3\x78\xff\x21\x3f\xff\x72\xda\x37\xef\x63\x3e\xa0\x2a\x21\x7d\x2a\x2b\x0b\x80\xc2\x2c\xda\xa7\x5d\x43\x3d\x01\x30\xd3\x25\xfe\x31\xb5\x8d\x3a\x3b\x35\x35\x77\x9d\xdb\xad\xa6\xb6\xd1\x06\x18\x6c\x68\x51\x67\x65\x0d\x95\x43\xf7\xcb\x45\x84\x18\x24\xf4\x2e\x3a\x59\xd0\xeb\x80\x53\x0d\xdc\x93\xe5\x40\xf3\x9f\x4d\xa1\xf4\x12\xc1\xd9\x70\xa0\xb9\x5f\xd1\xaf\xe9\xb1\xb1\x91\xeb\x03\x1c\xd3\xca\x17\x6d\x03\x0b\x26\xc7\x46\x97\x8a\xed\x09\xec\x20\x2b\xd7\x27\x60\x4b\x6e\x3e\xf5\xc3\x3f\xa8\xad\x9b\xea\x21\xae\x38\x95\x95\xe8\x5d\x2f\xb2\x4f\xfb\x86\xc1\x59\x32\x95\xb7\x0f\x07\x42\x4f\xd4\x1a\x0f\x2f\x9f\xa6\x47\x1f\x54\x0e\x6f\x9c\x0e\x21\xc2\x9a\x3f\xab\xea\xfb\x3d\x9c\x26\x2b\x6a\xe3\x62\xd2\xd2\x15\xb3\x7f\x50\xd1\xdf\xb8\x63\x7c\x31\x6f\x3b\xd8\x33\xbd\x86\x03\x77\xaf\x78\xf5\xb0\xc4\x59\x1d\xb4\x50\xef\x31\xce\xb1\xfa\xa0\x3f\xb7\xc9\x67\x34\x1f\x78\x88\xee\x2d\x16\x4e\xf2\xca\x86\xcd\x90\xca\xc1\x56\xf2\xe0\x0a\x8f\xa8\x53\x4d\xb2\x42\x9b\x22\x5e\x61\x93\xdb\x49\xe6\xaf\xda\xf3\x3c\x99\x64\x89\x75\x32\x97\x97\xf9\x44\x08\xbd\x0d\xbd\x1b\x18\xce\x51\x27\xde\xfe\xd0\x14\x6e\xb6\xcc\x7d\x2e\x94\x10\x6b\x35\xd3\xe9\xb6\xfa\x90\xc6\xf2\x1c\x6f\x46\xe2\xfd\x5e\xee\x8e\x49\xa1\x1e\x65\x26\xa6\xc4\x61\x7b\x4a\x07\x03\x17\x9c\x19\x31\xf3\xc1\x33\xd1\xcd\x3d\xe6\x6a\x48\x9e\x3c\x2c\xd7\xaf\x72\xa9\xd2\x15\xac\xe9\x52\x3e\xc6\xe5\xda\x55\x94\x2b\x03\x2f\x3a\x98\x4f\x59\x4d\x44\x60\xfe\x80\x4f\x3e\x23\x38\xb0\x26\x57\xa7\xf4\x4b\x15\x31\x74\x9a\x8f\x54\x3f\x69\x2d\x53\xcc\x63\xfb\x28\x9b\xd7\x86\xa7\x54\x84\xfa\x45\x8d\xdc\x14\xe5\x12\x80\x9e\x39\x02\x8c\xf0\x85\x78\xaf\x51\x70\xb5\xba\x27\x39\x5c\x7c\xea\x6a\x93\x80\x4f\x4d\x57\x27\x1a\x7b\xb5\x04\x5e\x42\x71\x57\xd8\x7e\x25\x74\x78\xd4\x49\xb8\x70\x0e\xa9\xf3\x83\x3d\xf2\xf6\xb5\x14\x3b\xaf\x22\xde\x83\x80\x4e\x79\x67\x45\xf0\xd3\x6b\x1d\x99\x51\xca\x35\x62\x33\xfa\xe7\x86\x0d\xcd\x1d\x4f\x5d\xc7\xe6\x91\x41\x25\x0b\x9a\x4c\x55\xed\x57\xda\x79\xc8\xd8\x17\x8d\xaf\x6c\xb6\xd6\x88\x16\x37\xbb\xca\xaa\xa4\xd9\x65\x96\x1c\x15\x09\x32\xd3\xae\x61\x86\xa2\x55\xad\x77\x13\x67\x40\x29\x52\xea\x2e\x57\x94\x90\xc2\x0b\x7c\xc8\x52\x12\x50\x00\xee\x6d\x9f\xd1\x5b\x2c\x43\xee\x3f\x90\xd5\xad\x8c\x0a\x7e\x21\x97\x98\xdf\x1b\x6f\xa8\x5d\xbf\x10\xda\xcd\x89\x52\x89\xb6\x6e\x29\x33\x92\xfd\x80\xd9\xed\xf7\x6f\x4e\x20\x1a\xb7\x83\xf4\x17\x51\x47\xbf\x66\x2e\x24\x15\xbe\xe3\xa0\x91\x16\xb4\xfd\xea\xb4\x85\x7e\x9b\xa4\xbe\xe8\x09\xb5\xa6\x15\x39\x49\x9b\x6b\x22\x33\x43\x9e\xf8\x2c\x85\x95\xaa\x99\xe4\x2f\xb6\xdf\x8c\x74\xfb\x38\xe0\x96\x98\x38\x7a\x33\x69\xdb\xee\x08\xfd\x6a\xda\xf6\x85\x77\x0b\x2c\x35\xcc\x32\x66\x01\xa8\x80\x6a\x45\xe2\x10\xf2\x21\x74\x1e\xf0\xba\x1d\xb3\xec\x2a\x4a\x01\x61\xce\xe5\x1d\xe6\xd9\x83\x17\x18\x67\x3e\xbf\xc7\x43\x3f\xf6\x23\x62\x3b\x69\x71\x95\x32\x9a\x4e\x02\x1a\x36\xb0\x19\xd4\xe3\x3b\x5c\x9b\x39\x62\x84\xf6\x20\x51\x17\x53\x66\x84\x87\x1f\x66\x6e\xca\xb2\xb8\x8c\x13\x46\x29\x37\x44\x2b\x05\x6e\xe5\x83\x5a\xc1\x89\x1c\x92\x60\x4c\x80\xf2\x64\xc6\xc4\xc3\x89\xd9\x76\x3e\xbb\x12\x4c\x11\x51\x3b\xa3\xee\x3f\x97\x10\x62\x67\x18\x06\xef\xfd\x2e\xfe\x5b\xbd\x23\x1f\x03\x8d\x55\xcd\x64\xc0\xe4\xcf\x37\x02\x39\x67\xf3\xcb\xee\x39\xb3\x31\x69\x40\x9a\x6c\x06\x9e\x9b\x76\xc5\x59\x86\x34\x2f\x3d\xa8\x5a\x11\x2d\x65\xf3\xa4\xa5\x28\x01\xf4\x47\xa4\xb3\x1c\xb4\xb9\x82\x27\x44\xbb\xf3\xb9\xb2\xbe\x20\x55\x6e\x95\xf4\xdb\x86\x50\xb9\xcd\x5c\xc3\xfc\x0d\x24\x7c\x01\xfa\xe5\xa7\xcc\x23\x5a\x78\x40\xe2\x05\xc0\x98\xe9\xc1\x1d\x8c\xc3\x8a\x2e\x5b\xc8\xe1\x75\xea\xda\x73\x05\x86\x8b\x19\x0e\x6f\x73\x4e\x66\x0e\x05\x07\x2d\x2a\xaf\x13\x94\x57\x76\x06\xd0\xc9\x27\x11\x05\x66\x86\x54\x52\x66\x0f\x16\x95\x40\xaa\x0c\x90\xc0\x3b\xdc\x3e\x86\x3c\x5d\x9e\xc6\x72\xf5\xe4\xb4\x45\xe9\x69\x27\x27\x64\xdd\xf1\x44\xa6\x62\x56\x4d\x6b\x42\xfa\x7a\x18\x9b\x76\xa6\xad\x47\x73\x89\x21\xea\xf3\xc6\x49\xcc\x3e\x3a\xfe\x5b\x4d\xe4\x86\xdc\xa5\x70\x49\x89\x26\xa9\x96\x82\xd0\xa3\x56\x30\xa0\xe6\x09\x4e\xdc\xe7\x74\x89\xc8\x4b\xbe\x23\x9a\x04\xbb\x10\x94\xc9\x91\xf5\x61\x8a\x67\x1e\x3d\x5b\xd1\x16\x79\x20\x6f\x62\x31\x22\xd9\xad\x3a\x91\x77\x21\xa9\x5a\x6a\x13\xd9\x02\xc7\x51\x9f\xc8\xb7\x26\x9e\x74\x1e\x9c\xc0\xfc\x6e\xb5\xf1\x9b\xa6\xa7\x3c\x91\x33\x75\xca\xe1\xe6\x20\x86\x7f\x29\x4b\x48\xb1\x4d\xbe\xa1\xc3\x24\x3e\x39\xd8\x14\xcc\x69\x29\x4d\xe4\xcc\xad\xd0\xf6\xce\x4f\xe4\xd3\x8c\xcd\x1d\x29\xa1\x2f\xb0\x92\x1c\x12\x58\x8a\x66\xf8\x48\xa7\xac\x54\x04\xb9\xca\x9f\x74\x0a\xcc\x71\x41\x56\xb2\xc2\x44\x6e\x5c\x64\x1d\x6f\x9a\xf3\x3c\x78\xe3\xbc\x1b\x30\x96\xbf\x63\xad\xab\x66\x22\xaa\x53\x79\x63\x9a\xed\xae\xbd\xb8\x39\x8a\x15\xa2\xff\xc7\x33\xb9\x02\xd8\xb7\xf2\xe1\xa8\xd9\xaa\x62\xfa\x6a\x98\xf4\xba\xf9\x4f\x21\xe5\xde\xca\xdc\x40\xbe\x50\xc8\x5b\xd9\x09\x4d\x41\x8f\x55\xc9\x6b\x53\xee\xd0\xd6\x86\x8f\x53\xc1\xe1\xeb\x74\xeb\x0f\xd3\x29\xb7\x6f\x16\xac\x33\x91\xc5\xef\xfb\xeb\x09\x7d\x57\x69\xa4\xfb\x41\x8b\x3f\xbf\x4b\x6d\x21\x91\x6c\x9b\x47\xf7\x9b\x9d\x41\xc2\x6a\x70\xc2\xce\x48\x77\x61\x32\x96\x94\xf9\x6c\x3a\x96\x37\x64\x6b\xa6\x9c\x9d\x93\xb1\xf4\x7e\x5b\x16\x78\xf4\x55\x17\xc0\x63\x18\x83\xca\x8c\x8a\x86\x79\x75\xe1\x89\xd1\x2d\x98\xda\xcb\xb1\x8c\xa0\x5e\x78\xe5\x75\xd1\x22\x7f\xe7\x93\x23\x5b\x90\x4f\xed\xe4\xf1\xeb\xeb\x77\x83\xc1\xa1\x13\xed\x2e\x32\x0c\x65\x69\x51\xec\x79\xc0\xe1\x9b\x12\x31\x0e\x55\x39\x7f\x7d\x91\x54\x48\x4d\xa8\x66\x92\x66\x60\xb7\x95\x86\x03\xdb\x6f\xe5\x3d\xa9\xb6\x3d\xc1\x13\xf3\xcb\x5a\x52\xfa\x66\xef\x6d\xdc\x48\x11\x92\x46\xc9\x33\xf7\x51\x50\xf6\xd2\xe7\xa9\x4f\xb3\x5b\xf5\x3e\x95\xf0\x84\x82\xb9\x2b\x54\x87\xd3\x0f\xbd\x23\xd1\x77\xb3\x93\xcf\x8e\x2f\xb6\x3b\x69\x64\x60\xd3\x3b\x48\xc4\xcd\xa2\xf7\x63\xef\x8a\xe8\x5d\x09\xbd\x2b\x7e\x73\x96\x77\xf2\x63\x45\xe7\xa5\xb6\x93\x83\x23\x4e\xce\xdb\x0d\xde\xbc\xfd\xb6\xba\x94\xbf\x57\x74\xcb\x55\xf7\x93\x5a\x24\x30\x4d\x45\x2a\x75\xc8\xbc\xbb\x1f\x0e\x59\x53\x2c\xe4\x46\x02\xc0\xe5\x9b\x1d\x7d\x38\x48\x44\xd3\x1e\xe8\xc8\x9d\x0f\x72\x25\x17\x05\xfd\x2f\x9d\xb9\xaa\x4e\x9d\xb9\xb1\x29\x17\xbd\x07\x14\xb5\xa6\x82\x7a\x6a\x8f\xad\xcf\x6a\x22\xd3\xbb\xcc\x13\xea\xd6\xf4\xe9\x34\x93\xb7\x7f\xb5\xfb\x44\x1b\x29\xd5\x92\xdb\x87\x95\xea\xf4\xaf\xda\xb9\xbb\x7f\x61\x53\x4e\x15\x6d\xca\xe9\xff\xc7\xde\xbb\x70\x35\x8e\x23\x0d\xc3\x7f\xc5\xe4\x9b\xc3\xc4\x8b\x09\x01\xba\xb9\x24\xe3\xe5\xb5\x1d\x03\x19\x08\x77\x9a\xe9\x21\xbc\x1c\xd9\x56\x12\x13\xc7\x0e\xb6\x13\x08\x97\xff\xfe\x1d\x55\x49\xb6\x9c\x84\x4b\xf7\xcc\xee\xb3\xcf\x7b\x76\xce\x34\xb1\xee\xa5\x52\xa9\xaa\x54\x2a\x49\xd6\xbf\x9d\x28\x0f\x3e\x26\xca\xa7\x1e\x78\x46\x55\x7b\xd6\xe7\x89\x72\xa5\x21\x43\xb7\x3e\xdb\x76\xe0\x5b\x31\x1b\x83\x81\x6f\xf5\x4d\xd1\x7e\x9f\xbf\x83\x59\x05\x35\x9f\xc0\xf2\xcc\x04\x09\x32\xf4\xd1\x31\xe5\x9e\x65\x47\x0b\x37\x65\x2d\x74\x50\xbe\x1c\xac\xbc\x0d\xca\x36\x82\x32\x40\x50\x56\xe6\xa0\xe1\xa4\x8b\x42\x1c\x4c\x05\x6c\xc8\x0e\xde\x1d\x32\x38\x65\x39\xbc\x43\xd7\xb7\xfb\x3b\xab\x6a\x7e\x45\xb4\xe0\xf1\xcb\xd6\x1d\xbc\x15\xd4\x7f\x07\x2d\x09\xc0\x72\x7a\xb7\x0f\x67\x8b\xfb\xd0\x7a\xeb\x08\xe5\x33\x0c\xdd\xd9\x80\xc5\xa5\xfb\x5f\xad\x9c\x1c\x53\x73\x4a\x3b\xb0\xfe\x94\x74\x8f\xe1\xb6\xc9\x56\xd0\xf7\xdb\xe6\x91\x00\x7c\x2e\x36\x91\xde\xb6\xcd\x96\x76\x60\x8c\xb6\x81\x09\x66\xb8\xfc\x98\xe8\xf0\xbe\x45\x27\xb1\x05\xd1\x65\xfa\x45\x68\xbd\xa3\xc7\x34\xff\x84\xbb\x4a\x0b\xaa\xd2\x24\xdf\x98\x3b\x04\x0e\x74\x10\x99\xa8\x8d\x00\xfa\xe0\x0c\xc8\x71\x17\xce\x1e\x1d\xf7\x50\x87\x45\x0e\xb0\xc7\x17\x5e\x07\x51\x41\x77\x83\xcb\xcd\x9b\x17\xa9\xd4\x07\xfb\x70\x6b\x57\x06\x54\x66\x8a\x78\xaf\xc6\xca\xd6\x7c\xf1\x86\x3a\xb9\x0f\xc6\xe5\x06\xae\x19\xba\xdb\xe6\xfe\x06\x00\xbd\xb2\x65\x8e\xac\xf0\x01\x0f\x49\x56\x1f\xf9\x6a\x2c\x06\x67\x0e\xe1\xd4\x88\x7b\x3d\xad\x8d\x11\x08\xbd\x31\x2a\x19\x9b\xd0\xf2\x60\xdb\xe4\x96\xf6\x2f\x1c\x07\x0c\x12\xdf\x6c\x3e\x20\xa7\x4a\xf7\xdf\x52\x0f\xf8\x7e\x0d\x43\xfe\xf9\xdd\x0f\x2a\x09\x33\x2a\xea\x9e\xb1\xbd\x64\x1e\xf0\xfb\x91\xb3\x93\xa1\x03\xd3\xf0\x57\xcc\x9e\x85\x7a\xf1\xee\xef\x8c\x37\xae\x2c\x99\xe0\xfe\xef\xaf\x98\x71\x63\x13\x8c\x6d\x73\x55\x59\xe3\xe0\x54\x28\x17\xd3\x1d\xe0\xb7\x98\x1c\xf0\x7b\xfc\x71\x9f\xdd\xd9\xcf\xa4\xc7\xe9\xc5\x9b\x2a\x1a\x9c\xd5\x31\x8e\xa1\x13\x5b\x8d\x91\x55\x45\x2c\xc1\x0d\x3b\xf6\x19\xcc\x5c\x8e\x18\xb4\x83\x1a\x05\x8e\xdc\x34\xdc\x27\x13\x6e\x24\x33\x5c\xb8\xcf\x4e\xd4\xdd\xdb\x07\x4c\x75\xf7\x91\xc0\xf6\xb1\x1b\x08\x91\xd6\x32\xec\x43\x43\x4e\xc0\x07\xf1\x5a\x87\x62\x8a\xee\x19\xd6\xd6\x47\x02\x1d\x4e\x3f\xa5\x21\x9e\x3f\x1a\x85\x56\xdf\xda\x44\x36\x81\xc7\xa2\x5a\xc1\xdb\x6c\x82\x8b\xf4\x01\x50\xff\x69\x00\x04\x71\x36\x0f\x9f\xdc\x6e\x84\xde\x42\xfc\x06\x04\xbc\x73\xd5\x0c\xcd\xcf\xc8\xe6\x73\xe7\x0d\xc9\xfc\xb3\x49\xef\x0a\x7b\xbe\xb6\xc2\xb1\xfc\x73\x77\x0d\x87\xf2\x71\x3f\x27\xd3\xaf\x07\x73\x75\xd9\x7f\xb5\x00\x1e\x6e\x82\x00\xbe\xdf\xfc\x8f\x14\xc0\xe3\x0d\x10\xc0\x0f\x1b\x7f\xa7\x00\x5e\xf9\x8a\x0e\x93\xdd\x8d\x4f\x09\xe0\xbb\x0d\x7c\xbf\xb2\xbf\xf1\xc3\x02\x78\x88\xa0\x4c\x6c\x21\x80\x9b\xc6\xe3\x06\x7a\x61\x4e\x36\xac\xe4\x13\x8d\xaf\x6e\xe0\x33\x59\x6b\x2c\xfb\x8f\x35\x1e\xb2\xc5\x78\xf3\xce\x7c\xb0\xff\x56\xf1\xbf\xbd\x85\xe2\x7f\x69\xeb\x5f\x27\xfe\x83\xe6\xe7\xc5\x7f\xb0\x66\x31\xf1\x3f\x58\xb3\x3e\x21\xfe\x87\x6b\x16\x13\xff\xf7\x6b\xd6\xdf\x26\xfe\x7b\x8d\xcf\x98\x31\x7e\x9f\xa3\x00\x3c\x61\x68\x4d\x52\x07\x70\x50\x1f\x50\x1d\x78\xda\x97\xa7\xd2\x04\x1c\x77\xc0\x76\xd4\x44\xd8\x8f\xc1\xc2\xc4\xf5\x05\x7f\x4f\x44\x31\x7d\x01\xa5\xd2\xde\x90\xeb\x0b\xf7\x40\x03\x42\x5f\x78\xab\xfa\x2b\xe3\xc0\xc1\xf3\xd5\x07\x3d\x16\xb9\x77\x08\x6a\x47\x03\x5f\x49\x39\x86\x38\x6b\x57\xd0\x2c\x9a\xda\x97\xd6\xd1\x7d\x06\x20\xda\x1b\x9a\xd0\x19\xfb\xf0\x03\xe5\x23\xac\x5a\x6f\x2a\x1f\x7d\x73\x6d\xc2\xd6\xd6\x8d\x14\x94\x8f\xa8\x6a\xed\xc3\x99\xf6\xb0\x6a\xad\xcd\xea\x1e\x63\x70\x62\x48\xcc\x8d\x03\xdc\x6b\x61\xaa\xc7\xe6\x2e\xd3\x31\xb6\x51\xf3\x00\xde\x3a\xaa\x5a\x5c\xf1\xd8\x2e\xe8\x1d\x5b\xc8\x86\xbf\xfe\xbb\xf4\x8e\x78\xcd\x9a\xd1\x3b\x46\xa6\xf1\xb0\x66\x15\xf5\x8e\x74\xcd\xea\x33\x1c\x3c\xac\x59\x4f\xff\xb3\x7a\x47\xd5\x1e\x59\x5d\x70\xad\x6b\x6d\xfe\xef\xd0\x3b\x7a\xbd\x06\xe8\x1d\x7e\xaf\xf1\x5f\xbd\xa3\xa0\x77\xb4\x6c\xdf\xc2\x67\xa8\x61\xc7\x8c\xf5\x67\x7d\x62\x5d\xf6\x71\x78\x57\x24\x5d\x64\x6d\xc2\xe6\xcb\x8f\x68\x23\xe8\x77\xcb\x89\x80\x4c\x6b\x26\xb1\x1d\x5b\x3f\xae\x99\x0c\x1a\xa0\x99\x0c\x1a\x3f\xaa\x99\xa0\x8b\x50\x33\xd7\x4f\x6c\xc3\x3e\xd1\xf6\x8c\xc6\x41\x2e\xfd\x6c\x3c\x85\xdf\x30\xa6\x35\x95\xb9\x79\xaf\x58\xd4\xb7\xc4\xfa\x94\xce\x12\x34\x40\x67\x09\x1a\x7f\x41\x67\x99\x0b\xc5\xc8\x64\x71\xc1\xa0\xe1\x69\x57\xc6\x97\x7e\xe3\x33\xda\xcb\x66\xbf\x01\xe6\x83\x2d\x96\xfd\xc7\x14\x88\x00\x81\x1a\x49\xda\xcb\x30\x68\x3c\x81\x73\xc7\x7d\xd0\x78\x5b\x7d\x39\xc8\x5a\x4f\x83\x06\xde\x68\x39\x62\xf9\x45\xf3\x07\x9f\x6a\xfe\x8e\xeb\x2f\x49\xd6\xfe\x5f\x19\x1a\x60\x45\x9b\x61\x03\x74\x97\xad\xb0\x51\x35\xd7\x71\x70\xf0\xae\x6f\xc6\x9d\x3e\x18\x9c\xfb\x5d\xc1\x9f\x04\x1c\x2d\x19\x8e\x7b\x8b\xf5\x7e\x68\x19\x5c\xab\x01\x27\x81\xed\x41\x63\x68\x69\xdf\x8d\xa5\x41\xa3\x6f\xbd\xab\x9e\xc0\x15\xa6\xbd\x90\xf1\xae\x4b\xc3\x0f\x1b\x7d\xfe\x10\x02\x0e\x16\x5e\x70\xda\x0a\xdf\x66\x60\x3d\x59\xd5\x3c\x0d\x51\xc1\xea\xe2\xae\xf8\xd0\x94\x35\x2c\x1f\x23\x6d\xdc\x28\x69\x02\x53\xef\xbf\xc1\xd4\x89\xcc\xd4\xbf\xe2\xae\xfa\x86\xc4\xd4\x5b\xc0\x29\xed\xa3\xfe\xbe\xe0\x9b\x92\x5e\xc7\x98\xfa\x91\x21\x12\x58\x33\x30\xe1\x06\x98\x7a\x22\x60\xb2\xf1\xbe\xee\x3d\x70\x9c\xdc\x35\x38\xcc\xac\xa2\x23\x84\x87\x6f\xd5\x34\xc1\xb2\x8f\xca\x4e\x13\xd5\x48\x7c\xaa\x0f\x4b\x34\x87\x13\xae\xec\x4c\x40\xd6\xa1\xbf\x5c\x6b\x4f\xbb\x34\x9a\xdf\xf0\x78\x59\x0f\x3a\x7b\xd4\xc5\xd2\xbd\xa6\x8c\x8e\xd8\xfc\x21\x49\xc3\xe2\xd7\xd3\x06\x4c\x91\x2f\x69\xa3\xdf\xd8\x6c\xa0\xa4\xc1\x02\x41\xf3\x43\x49\xc3\x31\xd6\x7c\x43\xd2\x6c\xde\xb3\xca\xc1\x47\x71\x9d\x9f\x40\x42\xd7\xf1\xef\x61\x88\x9c\xf8\x0e\x1f\x95\xe5\x7e\xe2\xfc\x31\xd5\x79\xb6\x6c\x7c\xf3\xf0\x11\xbc\x08\xd7\xc0\xe7\x0c\x94\x1b\xa3\x6a\xe2\xe3\xb7\x97\x86\x71\x95\x46\xf2\x2e\xfe\xa0\x27\xf9\xbe\xf3\xa7\xfe\xb5\x3d\x71\x1e\x95\x35\x7c\x2a\xe2\xe7\x9e\xd5\xeb\x77\x60\x33\x14\x77\x0e\x57\x9f\x70\x86\x55\xf1\x77\x8f\x85\x19\x7b\xc6\xf7\x99\x4e\xbf\xf0\xeb\x82\xbe\xf2\x6b\x27\xbf\x7c\x85\xee\xfa\x66\x0f\xfd\x10\xf6\x86\x23\x4b\x3b\x37\x4e\x53\x86\xe0\x93\x66\xba\x0b\x7d\x7b\xa8\x42\xe7\x8f\x56\x8f\x70\xcf\xed\x1e\x4e\x4a\x6d\x0f\xb8\x2e\x3d\x31\x0d\x63\xc3\x5c\x3a\x64\x79\xf1\x1a\xd2\xa7\x3d\x46\x8e\xe1\x6e\x1f\x9f\x7e\x6e\x3e\x56\xf9\x99\x00\xcb\xb0\x8e\x02\x37\xeb\xbc\x75\xf2\xd0\x43\x17\x86\x08\x9c\x6b\xec\x93\x60\xc8\x1f\x13\x03\xd7\x6f\x90\x5d\xfd\xfb\xc6\xa0\xf1\x00\x4f\xae\x9f\xa2\x64\xe3\x9a\x00\xca\x12\x17\x3d\x1b\x42\xeb\x2f\xe9\x03\xa7\x46\xf3\xe2\x8d\xa4\xe3\xff\x26\x7d\x2e\xc9\x2e\x28\x40\xbd\x6e\xc3\xad\xa2\xb6\x33\x6e\x4a\x1b\x6f\xdd\xc6\xe3\x5f\xd4\x76\xac\xf5\x46\xf8\xe3\x1a\xce\xfa\x13\x68\x38\x5f\x9e\xfe\x97\x69\x38\xdb\x13\xd0\x70\x96\x26\x7f\xbb\x86\x03\x50\xac\x3e\x82\x82\xd3\x7d\xfc\x94\x82\x73\xf7\x88\x0a\x4e\xff\xf1\x87\x15\x1c\xbc\x12\xd8\x89\xfe\x3e\x05\xe3\xb1\x8a\x0a\xc6\xa4\xfa\xf7\x2b\x18\x05\x29\x29\x44\x6c\x2e\x25\xef\x51\x80\x3d\x4a\x62\x92\xcb\x98\x10\x56\x33\x7f\x60\x91\x66\xfa\x88\x62\x72\xf4\x28\x8b\x49\xf0\x12\x6d\x7e\x4b\xcd\x7c\xa1\x34\x2d\xd5\xa7\xe5\xf6\x67\xe4\x24\x78\x36\xad\xac\x37\x60\x5c\xba\x5f\x1a\x55\x6b\x1d\xe5\x24\x77\x79\xea\x7d\x28\x27\xfd\x7d\x21\xac\xe7\xcb\xc9\xa0\xca\x2a\x97\xe5\x24\x5e\xc3\xbc\x6e\x7e\x24\x16\xb7\xf1\x8c\xe2\xe9\x66\x62\x4a\xa2\xaf\xff\x39\xd9\x06\x4e\x0e\xff\x4f\xca\xb6\xd1\x53\x63\xcd\x5a\x43\xd9\xc6\x6f\xf5\xf6\xf9\xab\xca\xf1\x5f\x5b\xe0\xfe\x57\xa0\xbd\x2d\x9a\x1e\x87\x8d\xbe\xb9\x81\xb2\x69\x55\x92\x4d\x83\xc3\xaf\x73\x45\x93\xe4\xe2\xf2\x19\xcb\x2d\xc8\x95\x71\xd7\x3c\x60\x0b\xd3\xae\x79\xf8\x69\x71\x13\xa2\x41\x68\xf4\xd1\x6e\xe2\x07\xce\x32\x70\xfc\xec\x3c\x69\x69\xc7\x46\xbf\x67\xa6\xf8\x52\x6d\xe6\x43\x61\x1b\xc3\xd6\x83\x09\xf7\xf3\x1e\xa7\x26\xdc\x83\xc2\x1d\xd0\xae\x72\x07\xb4\x3f\xb4\x79\xa6\x55\x3c\x48\x72\x61\x14\xec\xab\xc2\xe0\xd6\x34\xf6\xfe\x98\x98\xdc\xaa\x66\x1b\xe3\xab\x2d\x73\xf3\x52\x3b\x37\x26\x57\xf1\x1c\xc7\x34\xce\x61\xef\x4d\x38\x33\x34\x34\x0d\x6e\x62\x93\x0c\xb3\x6b\x16\x32\xbf\xa6\x6c\x39\xfd\x82\x91\x9b\x85\xc8\x0d\x8c\xdc\x86\xc8\x0f\xf7\x3a\xe0\x3a\xe9\xf4\x8f\x3f\xb4\xa6\x31\xfa\xe3\xea\x2b\x0e\x0e\xde\x31\x7d\x70\xf7\xb6\xfc\x02\x7e\xd1\x7a\x32\xb9\xf1\xf1\x27\xcd\xc1\xff\xd2\x4e\x7d\xfd\x0e\x8f\xa0\x6e\x7c\x1f\x98\x3f\xd2\xad\x4b\xe3\xfc\xce\xc2\x0b\x62\xd0\x16\x6d\x1f\x16\x36\xc4\xdf\xb6\xd5\x1e\x3c\xe2\xb5\x32\xe0\x39\xd9\xfc\xf3\x0d\x93\xed\x3b\xac\xc8\x16\x46\xf6\xdc\xa4\xcb\x29\x83\x00\x61\xfc\x69\x14\xad\xbb\xb3\xbb\xf9\x5f\x0a\x08\xed\x16\x70\xb7\x59\x88\xdc\x92\x11\x2a\x22\x97\xe0\x8d\x0f\x07\xcf\x6d\x71\xab\xfb\x27\x7d\x02\xf2\x41\xfd\xeb\x30\x5c\x19\xc7\xb1\x89\x57\x67\x7e\xd6\xa7\x20\x43\xfe\xc3\x2e\xbc\xa3\x67\xe6\x13\x9c\xf3\xba\x46\x3e\xb5\xfb\x8d\x7c\x6e\xe3\x75\x2e\xd2\xe4\x9e\xef\x63\x5a\xdc\x37\x39\x06\xc7\x50\x7e\xca\x79\x6f\x8e\xdb\x67\x53\xb8\x78\x4a\x71\xb6\xd6\x32\xf6\x9c\x14\x3d\x1b\x23\x53\x46\xf1\x16\x5c\x99\x7c\xb0\xd9\x65\xec\x63\xef\x30\xc2\x93\x4a\xee\x44\xa6\x8f\x6d\xb4\xf6\x6f\xc9\x3b\x9f\x1f\x4e\x04\xd8\x13\x79\xa4\x6c\x3c\x27\xb4\xb1\x8e\xd3\x60\x4d\xda\x68\x79\x73\x1a\x48\xde\x6d\x1f\xd0\xfd\x36\x05\x2d\xa6\xdf\x49\xcd\x37\x05\xf3\x9b\x24\xbf\x67\xd8\xbb\x40\xd4\x13\x3e\x36\x07\xf9\xd0\x1c\xce\x65\xbb\x46\x13\x1f\xdf\x6d\xc2\xea\x37\xb8\x33\x7f\x0f\xe0\x14\x42\x75\x80\x1e\x1e\xe3\x86\x11\xa1\x3a\x36\x77\xec\x3e\x94\x57\x80\x9d\xcd\x3e\xc8\xab\xad\xbe\x79\xf8\xf3\x48\x93\xd8\x57\x17\x4e\x42\xb7\xe0\x31\x20\xeb\xa4\x8b\x22\x63\x68\xe5\xfa\x6c\xdc\x37\x19\x99\x26\x7d\xb3\xf5\xee\xba\x03\xcd\xbc\x7d\xf3\x48\x3b\x30\x1e\xfa\x66\x2b\x95\x56\x1d\x1f\xaf\x84\x7a\x08\x22\xe7\xd0\x7c\x25\x94\xed\xb4\xd9\xe2\x90\x9b\x31\x17\xd9\x4d\xa3\x19\x98\x78\x48\x70\x86\x32\x0f\x0c\xf7\x4e\xec\x04\xbc\x4f\xb5\xd3\xd3\x37\x1d\x98\x16\xfa\x49\x8e\x06\xe6\xfe\x3d\xf7\x93\x34\x30\xe5\x07\xbc\x60\x71\x2d\x51\xdd\xcf\xee\x11\x3f\x5e\x83\x93\xdc\x0f\x03\x73\xa5\x21\x89\x7b\xee\xd1\x2e\x91\xd9\xd1\x5c\x32\xfb\x82\x97\xcc\xae\x5b\x05\xf9\xfe\x49\x6d\x27\x42\x6d\x27\xfa\x01\x6d\x87\x53\x4f\x75\x77\x66\x97\xd7\x38\xf0\x33\xea\xf9\xcc\x9c\x07\x29\xb7\x1a\xc2\xe3\xd1\x6b\xa1\x69\x7f\x5a\xf8\xad\xd8\xd2\x46\x39\x97\xdf\x1f\xec\x4c\x36\x9d\x37\xa4\xdc\x3b\xba\x78\x36\xe5\xf9\x8c\x3f\xce\x87\xe2\xe4\xf3\x43\x31\x1e\x82\xeb\xdd\xc3\xf0\x33\xae\x77\x4f\x43\x70\xbd\xab\x0e\x7f\xd4\xf5\x6e\x1b\x51\xd2\xff\x9b\x46\xe5\xe9\x1e\x46\xa5\x7a\xff\x1f\x3c\x2a\x23\x3e\x2c\xf7\x92\x90\x8c\xa7\x85\x64\x81\x3b\x44\x0d\xb0\x0c\x84\x0d\x63\x68\xcf\x7a\x88\x67\x5a\xca\x5e\xa6\xa5\xac\x63\x02\xef\xfb\xd7\x82\x4c\xb5\x65\x99\x0a\xec\x72\x1f\xab\x3b\xed\xdd\xa1\xb6\xf1\x00\x47\x59\x5a\xf8\xce\xd5\x08\x8e\x34\x58\xab\xe6\x1a\x16\x1c\x73\x2b\x78\x9e\xda\x34\xac\x00\xae\x69\xd8\x33\x78\x1e\x78\xf5\x79\x3e\xb2\xc1\x40\xd1\x8c\x4d\x3c\xb1\xd7\xe4\xe6\x19\x2c\xc0\x78\x39\x93\xd2\xbd\x5e\x51\x4a\x7f\x91\x31\x09\xe3\x63\x1f\x16\x74\xe0\x7d\x41\x14\xeb\xf8\xf2\xe1\xf9\x68\x0d\xda\xec\xfc\x3d\x30\xa7\xdc\x15\x7d\x3f\x87\xd5\x46\x1a\x15\x7a\xa9\xc4\xd4\x97\x80\x8f\x7f\x5b\x47\x22\x58\x93\x41\xef\xed\xc9\x82\x7a\x3a\x69\xaf\xa0\x07\xff\x8c\xaf\xe8\x7f\x47\xfd\x7f\xdf\xa8\x9f\x1a\x07\x8e\x7c\x04\x80\x32\x25\xe5\xcf\xe6\xc6\x2e\x6f\x27\x33\x01\x4f\x3b\xe7\x6c\x71\xe7\x9c\x47\xee\x9c\x03\x4c\xc0\xbe\x08\x7e\xee\x5c\xcf\x2a\x74\xf6\xdb\x86\x9d\x4b\x8d\x91\xc4\x9e\xc6\xd3\xec\x29\x02\x1d\x3e\xb4\x8c\xe1\xfc\x23\x2b\x9f\x90\xe1\xeb\xeb\x70\x64\xe5\xcb\xfa\x0f\x1c\x59\x19\xe2\x98\x3c\xcc\x7a\x6a\x19\x07\xf8\xd8\x5a\x2b\xf8\xfd\xaf\xfa\xfb\x5c\x7c\xf9\xb9\x73\x1a\x31\xe2\xf0\x41\xc6\xa1\x29\xe1\x10\xa7\xdb\xde\x34\x73\x6f\x02\x6f\xdf\x9f\xcb\xda\x8d\x91\x35\x63\xf1\x9f\xe9\xae\xb0\x1e\xc3\x62\x7c\x57\xec\x08\xc0\xe4\x47\xdd\xf2\xa0\x09\x07\x06\x7f\x17\x84\xcc\x18\x09\xe6\xda\x8b\x05\x23\x79\x92\x19\x09\xcb\x6f\x1f\xe2\x41\xa7\xb7\x05\xe2\xea\x86\x09\x87\x1a\x2f\x57\xd1\x78\xfc\x88\x7e\x48\xf2\xa9\xdf\x07\x3c\x63\xd9\x32\xb2\x0c\x68\x7f\xdd\x33\x1e\x36\x4c\xa7\x0a\x57\x07\x1a\xa7\x99\xf0\x03\x97\x80\xaf\x3f\xbc\xaa\x7f\xd7\x10\x77\x7e\x01\x0f\x4b\xcc\x1b\xd3\x5d\xe3\x6d\xd3\x18\x8e\x25\x5c\x55\xb3\x71\xfc\x87\x78\xdc\x2d\x1b\xcc\xaf\xd3\x6e\x8b\xf8\xfd\x1d\x2c\x56\x7f\xfc\x84\x46\xbb\x39\x04\x57\xdd\xad\xe1\x0f\xb8\xea\xae\xe3\xd6\xc2\x52\x23\xe7\x12\x40\x09\x14\x6c\x19\xde\x47\x36\xae\x7d\xfe\xa0\xf4\xca\xbb\x02\x80\x4b\x93\xc7\xf5\x77\x98\xe9\xc7\x3a\xd6\x13\xf7\xf7\xc0\x95\xc5\xdf\x62\xcd\xfa\x37\x83\x7f\x69\x1c\x3f\x99\x7c\x99\x33\xcf\x6a\xf5\x49\x93\x59\x62\x31\xd2\xdb\x48\xac\xcf\xeb\xa7\x7c\x98\xfb\x12\xea\xec\x93\x4c\x40\x4c\x09\x22\x41\x8b\x4d\xa3\xe9\xbd\x31\x93\xde\x31\x16\xfc\xa8\xe9\x8c\x9e\x00\xa1\x71\xa3\x99\x44\x68\x5b\x85\x91\xea\x73\xa7\x86\xfe\x7b\x23\xc5\xe9\x3d\x7e\x6f\xa4\x3e\x9e\x13\x63\x4e\x68\x6b\xd2\xa4\xe0\x84\x56\x30\xec\xcc\x3b\x31\x9d\x13\xda\xff\x24\xf8\x40\x68\xf8\xb8\x1f\xe2\x5d\x76\xd9\xe4\x72\x65\x43\x62\x45\x9b\x39\x2b\xfa\x7e\x06\xdc\x27\x3f\x30\xde\x78\xc2\x87\x46\xc3\x7f\x03\xe8\x31\x77\x52\xfa\x09\xc4\xef\x19\xd6\xef\xab\xff\x56\x48\xcf\x8d\x56\x6c\x3e\x34\x0a\xc4\x9d\x21\x79\x74\x6f\x22\x9a\xd7\xac\x1c\xcd\xeb\xb2\xd3\x00\x5e\x30\x7d\x8a\x6f\x2f\xc0\x4d\xab\xbd\x8d\xc6\x9f\xc3\x2d\x14\x64\xb0\x41\xb8\xb4\xd4\x80\xab\x3f\xb6\xed\x29\x6b\x99\x24\xd3\x25\xed\x65\x84\xe2\x7c\xfc\xfb\x4f\x9c\xb1\x05\x5d\x36\xec\xda\x47\x5a\xd3\x88\xba\x76\x0b\xce\x29\x7f\x46\xc5\xe5\x67\x3d\xfa\x4d\x49\x33\x10\x82\xbe\xa1\xed\x19\xc3\xcd\xc6\xe1\xb4\x4b\xf3\x77\x7e\x1b\xec\x68\xb3\x11\x5a\xf7\xe3\x79\xee\xcb\x09\x8a\xbf\xd5\x86\x38\x9a\xff\x99\x4e\xc0\x8e\xfe\xb8\x67\x07\x0c\xd0\x87\x9e\xdd\xc7\x17\xae\xf6\x8c\x8f\xb7\xfa\xf9\x6e\x32\x67\xc7\x2b\xb3\xfa\xca\xd3\x56\x63\x6c\x06\x9b\xac\xe5\xea\x56\xe3\xde\xbc\x87\xcf\xd5\xad\xc6\x9d\x39\x86\xb1\x81\xd8\x0d\xd0\x7e\x9f\xb6\x1a\x9b\x16\x38\x8d\x8b\xbb\xe2\xaa\x5b\x0d\xdf\x1c\x3d\xf0\xc4\xd8\xec\xc9\x26\xb3\x2d\xb8\xc6\x0e\x36\xef\xac\xc0\xcc\xf6\x63\xc5\x89\xe2\x53\x63\x6d\xab\x71\x8a\xd7\x97\xff\x98\xe7\xef\x9b\x8c\x58\xb6\x04\x7e\x64\xf9\x19\x49\x04\x3c\x7e\x9f\x80\xbf\x2e\x4d\x11\xf0\xda\x9d\xfd\x79\x02\x5e\xd9\xff\xf0\xa0\xc4\x3d\x1a\x99\x86\x45\x7b\xdf\xcf\xd8\x8e\x57\xd6\xc1\xb5\xa6\xfb\xa5\x71\xf4\x69\xdb\xf1\x36\x77\x07\x69\xcc\xb1\x1d\xf7\x2d\xc9\x5d\xf2\x1d\x6b\x6d\xd3\x38\x17\x32\x75\xda\x04\xdb\x34\xf6\x0e\x7f\x6a\xcd\xc6\x66\xcd\x76\xe1\x60\x41\x15\xde\xed\xd8\x05\x0c\x4c\x76\x6d\x64\x7d\xad\xc7\x9f\x66\x0c\x71\x00\x8c\x21\x09\xfe\x46\xc6\xd0\xeb\xda\x6f\x32\x86\x41\xd7\xfe\xfb\x19\xc3\xd3\x00\x19\x43\x75\xf0\xb7\x32\x86\xb8\x67\x0b\xc6\x90\xf4\x6c\xc1\x18\xd2\x9e\x2d\x18\x03\xc4\x22\x63\x88\x7b\xf6\x14\x63\x48\x7a\xb6\x60\x0c\x71\xcf\xfe\x51\xc6\x30\xea\xd9\xff\x73\x8c\x21\x91\x16\xf7\x69\x03\x1e\x91\xfc\x1d\xde\x0d\x36\xf0\x06\x9e\x26\x9e\xa5\x39\xdd\x7c\x57\x1c\xe3\xad\x97\x07\xc3\xf7\xc4\x31\xcf\xb3\xf9\xce\x32\xc6\x42\xaf\xb7\x8d\x39\xa6\x8b\x77\x96\x68\xf0\x3e\xf6\xde\xb7\xae\xb4\xed\xf8\x45\xea\xd5\xd7\x79\xbd\x5a\xe7\x26\xaf\xe0\x5f\xdf\xab\x47\xde\xab\xea\x8f\xf5\x6a\x15\x7b\xb5\x21\xf9\x49\xd0\xbc\x53\x9d\x29\xce\x7a\xf0\x27\xdc\x5e\x35\xcf\x08\x33\xc7\x2a\x3c\x00\xf4\xd8\x61\xe3\xd3\x16\x45\x28\xc1\x4d\x52\x40\x26\xff\x46\x93\xd4\x18\x31\x51\x95\x30\x91\x48\xe2\x2c\xb5\xa6\x70\x31\x0c\xed\x53\xfe\x26\x36\x8b\x5c\x1b\xda\xdb\x8c\x1d\xa5\x96\xb1\x32\xc7\xb2\xf2\xb9\x55\xf9\x6a\x68\xb7\x60\x93\xc7\xfe\xfc\xaa\x3c\x66\x35\xef\x39\x13\x4b\xb6\x51\xf1\xee\x4a\x47\xa1\x8a\xc6\xab\x2f\x9c\x25\xce\x1a\xaf\xc6\x91\xbd\x0f\x86\xcc\x87\xc8\xb6\x80\xa8\x2d\x47\x8c\xc4\x9e\xf1\x18\xd9\x89\x29\x92\x0f\xe1\xfe\xc0\x34\xb2\x43\x13\x9f\xc8\xc6\x03\x3a\xf0\xa6\x37\x3c\x20\xf2\x25\xb2\x77\xd3\xdd\xbf\xdb\xee\x95\x42\x87\xbf\x4d\x58\x63\x0f\x5c\x73\x5e\x92\x46\x6a\x25\x1f\xa9\x89\x79\xa6\x1d\x1b\x8f\xa6\x11\xcc\x52\xec\xe6\xbd\x7d\xa0\x1d\x1b\x5b\xf7\xf6\x27\xf6\x9b\x56\xee\xed\x96\x76\x60\x74\x63\xfb\x07\xf7\x9b\x42\x1c\x9d\x91\xf5\xbe\xb7\xc3\x63\x6c\xaf\x31\x10\xd7\x62\x7b\xc5\x0c\x98\x88\x6a\x08\x60\xe1\x36\xad\xd6\xf6\x67\xb1\x33\x44\xec\x8c\x24\x32\xee\x4a\x6c\xaa\xf7\xee\xc6\x0f\xdf\x83\xff\xfe\x88\x66\x25\xef\x87\x09\x78\xf3\x11\x08\x78\xeb\xf1\x07\x08\x78\x8e\x59\x49\x36\x3d\x4e\x7e\xff\x6b\x67\x62\x1b\x02\xe2\x19\xb3\x3d\xe6\x1a\xbf\xc7\x77\x3f\xe1\x24\xc0\xcd\xf6\xf6\x1c\xcf\x0a\xf4\x1a\xfb\x92\x7b\x8d\x6d\xaf\xd9\xe7\xda\xb1\xd1\x38\xfe\x0a\x77\x36\x2f\xad\xd9\xfb\x6b\x70\xd3\x1f\x24\xb4\x0c\xe3\x68\x1d\x6f\xdb\x1b\x98\xd9\x8d\xa7\x85\x6f\x77\xf6\xca\xd3\x53\xa3\xbb\x6e\xc7\xf6\x97\xc9\xb4\x06\xf4\x91\x72\xd9\xfc\xf6\x86\x72\x29\xc9\xfc\xd9\xad\xff\xbb\x2f\x36\xde\x34\xb4\x0e\x8f\xbb\x44\x5f\xec\x9e\xf9\xf0\x64\xff\x24\xaf\xce\x1c\x79\xc2\x96\xdd\xb5\xf1\x68\x68\x66\x61\x9e\x98\x60\x62\x7e\x34\x85\x8d\x99\x6f\x31\x71\x7d\x52\xdb\x33\xc6\xa9\xbd\xaf\x1d\x1b\x0f\xa9\x6d\x8b\xdd\x97\xb7\x9d\x2c\x9e\x52\x9b\xf5\xad\x9a\xda\xf6\x8f\x39\x59\xf0\x39\xcc\x75\xf9\xf5\xbd\xcf\x5b\x03\x79\xdd\xc1\x97\x77\x48\xec\xe3\xf6\xd1\x98\xe9\x55\x6d\x2d\xbf\x84\xe0\x1b\xba\x9c\xec\x0d\x9f\xb0\xfd\x25\x90\xa3\x2b\x23\xfb\x9b\x76\x6c\x74\xc7\x76\x4b\xb4\xf9\x36\x3e\xee\xc6\xf6\x91\x76\x60\xf4\xc7\xf6\x0f\x3a\x9d\xfc\x07\xe0\xa3\x65\xb4\x62\xb3\x8b\x54\xb7\x64\x49\xbb\x7b\x53\x64\xd7\xc7\x96\x9a\x5f\xc5\x91\x72\x1b\x26\x47\xef\x73\x5b\xfc\x40\x68\xc1\x1a\xac\x67\x06\x6b\x3f\xb0\x9e\xe1\x2c\xcd\xcf\xf6\xf2\x24\x27\x21\xf9\x78\xf2\xc7\x7b\x47\x82\xc5\x3d\x3d\xda\xc6\xe6\xd8\x2e\xbc\x8a\xb2\xf1\x68\xaf\x98\xfe\xe8\x87\x15\xf7\x9f\xdd\xda\x90\x6d\x56\x5c\xb4\xf8\x92\x68\xb9\x9b\x2f\x5a\xee\x1b\xb8\x0e\x6f\xbc\xb3\x0e\xff\x4f\xe2\xd1\xc6\x01\xfa\xdd\x9f\x3e\x58\xf0\x84\xdb\xca\xcc\x91\xf9\x7f\x0d\x63\x9d\xf2\xa9\xfa\x90\x38\x51\x2f\xa9\xda\x8c\xa2\xbb\xab\xf6\xee\xa7\xe5\x6d\xcf\xd2\x5a\xc6\xc1\x9d\x09\xb7\xce\xff\x38\xd3\xee\x36\x9c\xe9\x65\x42\x2f\x37\x09\x47\xa0\x71\x85\x73\x34\x2e\xe9\xf6\xc4\xad\x4c\xfb\x94\x74\x9a\x09\x9b\xd5\x7b\x87\xab\xff\x66\xb5\x1f\xee\x40\xdc\xfb\xd6\x97\xf4\xa5\x48\x22\xea\x61\xe3\x2f\x77\xad\x7b\x24\x29\x30\xef\xaa\x5f\xd6\xd0\xfc\xc8\xe1\x46\xa8\x61\xc2\x24\x3d\xdf\x62\x35\x1e\xee\x32\x35\xec\x61\xb8\xfb\x79\x8b\x15\x5f\x47\xac\x59\xb2\xc5\x8a\x2f\x17\x7e\xcc\xd3\x43\x70\xba\x73\xb8\x64\x64\xd3\xfe\xaf\x0f\x46\x31\x09\x6e\xc5\x80\x23\x77\x3f\xe7\x7e\xb3\x25\x58\xc3\xbb\x34\xb0\x99\xec\xb2\x39\xb0\x95\xec\xda\xff\xa5\x81\xff\x38\x1a\x38\x37\x5a\x77\xa6\xcc\x9d\x7e\xd2\x9e\xfb\x17\x38\x1f\x38\xae\x8b\x7b\x3e\xa1\xaa\xde\x37\xdb\x87\xde\x1f\xde\xfd\xac\x42\xff\x93\xb0\x6c\x23\x17\xf6\x25\x2e\xbc\x24\x71\xe1\x95\x77\xd9\x66\xdf\x04\x97\x96\x3b\x73\xae\x4f\xcb\xe7\x16\xae\x8f\x9b\xf6\xb1\xd6\x34\x26\x9b\xf6\xc9\xe7\x8f\xcf\x02\xd0\x4e\xf7\x83\xb5\xfd\xdd\x96\xfd\x85\x15\x1f\x6c\xd9\x3d\x4b\xf8\x2d\x1f\x18\x56\x6b\xfb\x73\xa7\x41\xb8\x8a\x74\x84\x88\x7a\xc7\x94\xb8\x6e\xfe\x3d\xea\xd2\x6a\xa1\x5f\xbd\xec\xbc\x28\x1e\xbf\xf9\x43\xf6\xf8\x69\xc0\xe4\x35\xce\x7b\x83\x77\xc1\xfa\x7b\x9c\xfa\x90\x46\xb6\xec\x8f\xfd\x8a\x7e\x5f\xb1\xff\xbd\x60\x35\xef\xcc\x25\x53\xf6\x97\xf8\x29\xfd\xf0\xf4\x6d\xfd\xf0\x33\x47\x66\xc2\x15\xbb\x11\x5c\x68\xe7\xc6\x60\xc5\xa6\xfd\x0b\x8c\xb1\xd6\xc7\x7c\xc3\x84\x3f\x74\x73\xbf\x62\x6f\x9a\xfc\x1d\x77\x30\xd8\x71\x8f\xa5\x9f\x9c\xb9\x9b\x38\x2a\x5d\x69\xe6\x56\xa5\x99\xbb\xfa\xee\xcc\x5d\xb3\x60\xe6\xae\x5a\xff\x1a\x47\xe3\xff\x0a\xa1\xff\x2c\x17\xe0\xff\x8e\xc7\xff\x0a\xe7\xdc\x31\x4e\xe9\x2a\xab\x24\x6a\xe2\x6b\xc8\xf8\xdc\x36\xc1\x57\x80\x4e\x8d\x66\x80\xcf\x57\x2c\x71\xc7\xa0\x96\x61\x6c\x80\x58\x4d\x2d\x1c\xb1\x2b\x30\x57\xca\x0f\x30\xd9\x78\xb4\xfe\xbc\x5b\xb5\xf3\xc7\x73\x42\xb8\x5f\x07\x5f\x2a\x36\x4e\xa3\x8d\xec\x81\x71\xcb\xb0\x1e\xad\xed\xaf\x0d\xfe\x2c\x41\xcb\xb0\xbe\xb1\x3a\xce\x00\x98\x2e\x3e\x3c\xf5\x3d\xed\xc9\xa5\x93\x9e\xad\x5d\x1a\xd6\x8a\x19\xc1\xab\x56\x89\xb9\xba\x2e\x27\x57\xd7\x6d\x2d\x32\x0d\x1b\xf6\xf1\x1a\x46\x0a\xa6\x64\xd2\x84\xfd\x6d\xd8\x65\x75\xef\x81\xc2\xbb\x66\xd1\x18\x61\x85\x68\x40\xf3\x27\x8c\x4a\x5a\x27\x5a\xcb\xd8\xc7\xe7\xa7\xa9\x25\x8a\xb1\x1f\xb9\xd4\xa9\x61\xdd\x35\xbe\x40\xf3\x61\xba\x0b\xe7\xdf\xed\xd5\xfc\xa1\x9b\xfb\x74\xf7\x62\x0d\x5f\x06\x9f\x98\xe2\xf5\x3a\xe8\x92\x6f\xde\xad\x15\xe9\x78\x0d\x1f\x25\xe1\x84\xfb\x05\xfd\xcc\xfa\x26\x77\x73\x9d\x53\xc4\x5a\x6d\x76\xb1\xe3\x91\x09\x6f\x34\x76\x4d\x9e\x0f\x6e\x96\x6b\x34\xa7\x92\x5a\x56\xcf\xdf\xdb\xb6\x12\x20\x8b\x91\xa9\xb9\xc6\xf1\x10\x07\xb7\x07\x8f\x0c\x4c\xcc\x14\xee\xa0\x89\x39\x75\xc7\xdb\x30\x8e\xf8\xba\xdb\x00\xfc\x1c\x6c\xc7\x87\x07\x76\xba\xe6\x1d\x10\xe9\xe9\x86\x89\x41\x10\x0e\xcd\x4d\x6b\x7b\x80\x38\xc4\x37\xdc\x37\x06\x78\x93\xc1\x66\x1f\x1f\x0b\xaa\xee\xe7\x15\x26\x17\xda\x9e\x71\x0c\xf6\x48\xbc\xee\xa9\x89\xd7\x21\x58\xc6\x0a\x7a\xfd\xe2\x46\x31\x94\x85\x77\xe0\x1d\x7c\xbe\x26\xc1\x17\x87\x80\x66\xad\x55\x7c\xcf\xe5\xfb\x5d\x00\x45\x4f\x02\x74\xa6\xc2\x37\x5a\xb1\x17\x23\xbc\x00\xa9\xb9\x19\xe2\x93\xb8\x80\xde\x53\xfe\x84\x96\x65\x58\x63\x7c\xc2\x26\xda\xc2\x7b\x20\x36\x9f\xcc\x42\xf6\x6f\x78\x4b\x1f\xac\xe2\xfa\x61\x83\xf5\xd6\x37\xfb\x70\x5d\x87\x71\x0e\x80\xde\x9b\x2b\xdc\x53\x01\x5f\x1c\x35\x0e\x56\x37\x6d\xf1\x42\x9c\x75\x67\x3f\x6c\xda\x88\xdd\x00\x9a\xb0\x9e\xcc\x01\xb6\xf5\x1d\x60\xfe\x93\x31\x26\x7c\x5c\x1f\x00\xbd\x62\xa5\x70\x2a\x42\xae\x2b\x18\xae\xcb\xa7\x4d\x7c\x00\x6b\x6d\x1f\xb0\xf1\x05\x9f\x82\xc4\x4b\x28\x4e\x1f\xf1\x02\xce\xbd\x95\x80\x3f\x22\x4c\x0c\xeb\xab\xfd\x05\x1b\x3e\xc7\xdb\x2e\xcf\x13\x70\xa3\x8c\xcd\x15\x7e\x21\x03\xa2\x19\x3a\x0a\x54\xcf\x1f\xdf\x4e\xbf\xe0\x43\x8c\xfe\xb8\xa1\xd9\xfb\xf7\xfb\x63\xb8\x53\x75\x5f\x13\xef\x29\x36\xe3\xb4\x91\xe3\xf8\x4e\xfa\x8e\xb8\x0f\x2b\x3c\xce\x7d\x19\x9b\x1c\xd1\x2c\x9d\x8f\x01\x7f\xd8\xd8\x87\x11\x3c\xd8\xc4\xf7\x0a\x41\x31\x30\xf6\x18\x14\xd6\x23\x88\x88\x66\x82\xd9\xf1\x59\xaa\xd6\x12\x62\xff\x20\x6b\x09\xde\x70\x32\xb6\x4c\x19\x10\x63\xa6\x1d\xeb\x29\x7f\x4a\xb4\x39\xca\x6a\xcc\x9b\x6c\xca\x0f\xfa\x22\x6f\x07\x5c\xdb\x8f\x80\x91\xd3\x89\xac\xd1\x20\xe4\xc0\x58\x57\x1b\x90\x60\x03\x53\xc0\xeb\x7c\xe0\x5b\x3c\x84\xbd\xaf\xd9\x7b\xab\xfb\x23\x6b\x97\x71\x03\x0a\x8c\x74\x09\x5f\xdb\xc2\x97\xa8\x9a\x4d\x36\x93\x82\xdd\x98\xcf\xba\x55\x92\x0d\x04\xb1\x7a\x16\x7f\x8e\xa8\xea\xf3\x17\x5b\x7c\x68\xed\xb8\x8b\xaa\xd2\x13\xbe\x4f\x7b\xfc\x15\x1f\x78\xe4\xc7\x2b\xbb\xb6\x56\x35\xf9\xa4\x30\x5a\xf7\x57\x70\xfb\x07\x5e\xac\x7e\xfe\x15\x5f\x9b\x84\xc7\xdb\x1e\xf1\x02\x12\xff\x1b\xe4\xe3\x8f\xd9\x9f\x8b\x97\x71\xb1\x89\x26\xbc\x2c\xbc\x8f\xd7\x46\x1c\x8c\x1e\x4d\x56\xb5\x75\x68\x48\x2c\xc2\xc6\x5b\x56\xff\xf8\x43\x1b\x58\x5a\xd7\xb2\x2c\x9c\xc0\x5f\x90\x0c\xfb\x66\x8a\xdd\x3d\xc5\x3b\xfd\x46\x18\xa2\x63\x11\xdb\x34\xac\xb1\xf9\x80\xa1\xbe\xf9\x98\x67\xae\xee\x6e\x23\x43\x9a\xf0\xd7\xc9\x7a\x7c\x56\x76\x1f\x01\xc1\x70\xa9\x31\xbf\xd0\xe2\xa0\x1b\x83\xb7\x58\xa3\xc7\x6f\x89\xf4\x21\x6c\x9c\x83\xe6\xd1\x35\x37\x37\x71\x65\x10\xd9\xda\xc0\x34\x8c\x81\x39\x64\xe1\xbd\x75\xd8\xb4\xf6\xcd\x33\x3c\x4e\x8e\xf5\x9f\x0e\xc1\x2c\xcc\x1f\xea\x6e\xde\xa3\x96\x43\x62\xfc\x6d\x3e\xad\x5b\xc2\x1c\x6f\x6d\x02\x08\x78\x06\xbc\x67\x6e\x81\x76\x6d\x31\x4e\x6b\x37\x44\xf6\xf8\x0e\x59\x47\x15\xe7\x1f\x61\xcd\xae\x60\xbf\x9e\x60\xc8\x5b\x5f\x29\x4a\x66\x78\x91\x2b\xc4\x46\x23\xe8\x46\xb8\x7b\xc8\x1f\x8b\x83\xd7\x3e\x59\x73\x70\xd4\x1d\xde\xe7\xb4\x7f\x07\xba\xec\xe3\x63\x9d\x07\xf7\xb1\xc5\x26\xfa\x9f\x9a\x78\x3d\xfb\x77\x7c\x46\x0a\xae\x9d\xc1\x8e\x1d\xc0\x7b\x51\xc7\xc9\x16\xa8\x72\x5f\xcd\x47\xe1\x48\x44\x0c\x83\x6c\x6c\x23\x97\x1e\xc2\xf3\x87\xf6\x3a\x52\x56\x8b\xcf\xa4\x26\x76\xf9\x8a\xad\x08\x9b\x86\xfd\x64\x3a\x4c\x6b\x89\xcc\x2a\x32\xcc\xd8\xdc\x02\x9e\x6b\x7c\x5f\xd9\x02\x31\xdf\x59\xe2\x5c\x6d\x05\x1a\x83\xe7\xac\xf6\x86\xe6\x54\xec\xc1\x08\xb8\x0e\xbc\x75\xd5\xda\x66\x0a\xdd\xd9\xa6\x99\x4c\x95\x64\x68\xb9\x82\xc7\xbd\xf1\xd1\x74\xa9\x5f\x17\xef\xf6\x8a\xcd\xed\x62\xaf\xe0\x31\xb6\xd9\x5e\x9d\xe2\x25\x38\x76\x6a\x3a\x8c\xfd\xae\xcd\xef\xd5\x9e\x71\x30\x9e\xee\x00\xdc\x68\xb7\xf7\x05\x85\xf4\x20\x28\xa4\xb5\x18\xe0\xbf\x6f\x5b\xd3\xfd\x01\x16\xc0\xd2\xf6\x87\x73\xfb\x7a\x09\x8f\x25\x5a\xd6\xdb\xdd\x3c\x35\xac\xfd\xed\x60\x3e\x88\xbd\xbf\x03\x44\x86\x8d\xaa\x75\x32\xda\xb2\x35\xcb\xd8\xed\x99\x63\x9c\x54\xc7\x5b\x48\x6b\xa8\x0e\x1e\xc3\xdb\x7a\x80\xbc\x18\x4e\x95\xb7\xc6\xd6\x03\x66\x6c\x8d\xb7\x6d\xbc\x3a\x89\xf7\xa2\x65\xd8\x8f\x20\x9c\x06\x70\xf3\xa7\x71\xb6\x06\x7c\xcc\xda\xaf\xc2\x54\xdb\x3b\x5b\xc5\xd9\xc2\x07\xe6\x2b\x2f\x37\xfe\x03\x07\x08\x9e\x2d\x6d\x19\xad\xd0\x1a\xe0\x2d\x96\xcd\xbb\x55\xfe\x40\xf0\x01\x2e\x0c\x32\x45\xe2\xe1\x0f\x98\xba\x28\xc6\x07\xf8\x8e\xee\x69\x88\xbf\xad\xa7\xef\x58\x9f\x78\xb7\xfe\xa0\xbf\x2f\x6a\xd9\x7b\xb4\x52\x38\xb5\xdc\xea\xa2\xed\xbf\xb5\x9a\x82\xbf\xe6\x9f\xfe\x3d\x86\xc7\x70\x1f\x53\x2b\x18\x36\x34\xf1\x34\x7c\xb3\xcf\xf3\x66\xaf\x73\x5f\x32\x2c\x01\x33\x6e\xae\x58\x09\xbc\x5f\x61\xb8\xe9\x08\xa8\xf7\x2c\xc1\x87\x9d\x23\x13\x0f\xa4\xfc\x81\xac\xe9\x8e\x41\x6c\xdf\x35\x12\x08\x5f\x1e\x62\xec\x23\x1f\xa1\x11\x8e\xd8\x41\xf5\x0f\xad\xc5\x18\x87\xc0\x2c\x92\x75\xb2\x8d\xf3\x28\x45\xb5\x7a\x15\x1e\x01\xe1\x54\xb3\x8a\x3e\x1f\xa7\x63\xb8\xba\x6b\xdc\x40\xc9\x87\xd5\xb5\xaa\x78\x15\xce\x1d\x94\x3f\xf5\xe0\xea\xa8\x87\xaf\xc8\xd8\x96\x62\x00\x77\xc4\x87\x0a\xb8\xf9\xbd\x99\xf6\x51\xe5\x58\xda\x83\x4c\x23\x7c\xf5\x7a\xb3\xd1\xc3\xc3\x2a\xc7\xd0\xcc\x7a\xe3\x1b\x72\xd2\x6d\xd4\x56\x9e\xb6\x60\xda\xe1\x4b\xe6\xcd\xc7\x8e\x5c\xc3\xe4\x3b\xac\x33\x71\x42\xf6\x41\xca\x5a\x2e\x34\xf9\x2d\x00\x11\x64\x7d\x9b\xa0\xa3\xf0\xd5\x63\xa1\xd3\x5b\x5d\x80\xef\x94\x95\x69\x31\xa4\xc3\xcd\x5d\xf8\xf2\xfd\x1e\xa8\xd5\xac\xb7\x40\x7e\x77\x58\x2e\xf0\x11\x4d\x7d\x9f\x87\xef\xc0\xe7\xe0\xd1\xdc\x62\xeb\x32\xa3\x89\xef\x69\xff\xce\x99\x3e\xd8\x45\xb9\xfa\xfd\xd4\x65\x64\xdb\x3c\xc3\x70\xb7\x71\xce\x40\xb2\x0c\xe3\x6a\x1d\x46\xed\xc9\x2c\x74\xdf\x38\x46\xfc\xee\x9d\xf5\xc0\xad\xc5\x3a\xdc\xdc\x2f\xcc\x83\x53\x63\xdd\xbc\xb8\x07\x49\xb0\x65\x5e\xac\x23\x96\x4e\xef\xb7\x61\x83\xf7\x92\x3b\x71\xc6\x3c\x7a\x03\xa0\xc4\x1b\x34\xed\x9e\xb9\xc9\xaf\x8d\x9e\x58\xf8\xca\x29\x83\x79\x0d\xdd\xd3\x0e\xc0\x08\x75\x0e\x4f\x23\xee\x06\x5c\x27\xc0\xc9\x7a\x04\x7a\xa7\xc7\x77\x90\x6d\xc3\x3a\xb3\xf2\xcf\xa6\x98\xc2\x7b\x5d\x13\xe7\xb0\x1d\x9b\xfd\x2e\x48\xd2\xb3\x00\xb7\xf6\x0f\x58\x98\xd1\xab\xe6\x1a\x7b\x0e\x10\x51\x9f\xd1\xe8\xf0\x10\x64\xd3\x92\x90\x4d\xdb\xd2\x75\x9f\x3f\x20\x8c\xee\x37\x4c\x64\xdb\x2c\x83\x0f\x7f\xbf\xc5\xf8\x12\xb4\x0f\xcb\xc1\xb1\xd9\xe5\x62\xff\x89\x17\x9c\xa0\xf8\xff\x13\x96\xae\xeb\x57\xb0\x4a\x60\x32\xc7\x5a\x9f\x98\x99\xc9\x0b\x2e\x2e\xfb\x33\xa9\xbe\x53\xb4\xcb\xb9\xda\x3a\x4e\x94\xe3\x35\xb6\x7e\xb4\x3c\x30\x48\x89\x34\x59\xe5\x68\x1a\x96\x93\x0e\x2d\x71\x31\xc5\xde\xc5\x3c\x91\x04\xde\xdd\xac\x73\xb8\x50\xc8\x3b\x65\x60\x97\xe6\x77\x06\x57\x07\xeb\x96\x68\x76\x06\xde\xd6\xa7\x61\x2a\x8a\x8e\x7f\x11\x38\xcd\xcf\x80\xd3\x32\x06\xbf\xb7\xba\xab\x70\xf8\x32\x31\x57\x81\x4c\xec\x14\x81\x5b\xc1\xe9\xd5\x7b\xb0\xa4\x89\xbd\x84\x4f\x7f\x1f\xf8\x68\xbb\x3f\x90\x29\x90\x31\x8e\x71\x64\x4f\x4f\xd7\xf5\x22\x5b\xdb\x44\x9d\xb3\xb9\x0a\x35\xd9\x1e\x23\xf5\xef\x3e\x78\xfe\x0a\xf6\x6b\xed\x23\xfb\xdf\xe3\xeb\xac\xef\x0c\x00\x30\x6b\x59\x7c\xae\xfe\x31\xa7\xcf\x7b\x7c\x91\xf0\xf8\x60\xcd\x72\x41\x24\xb6\x31\x2a\x67\x9c\x21\x80\x24\x67\xea\xc4\x99\xd1\xc5\x98\x66\xdc\xc7\x59\x38\x68\xe6\xe2\x6a\x09\x7c\xb4\xad\x9e\x19\x0e\x00\xc8\x8b\xc1\x80\x35\xd7\xfc\x7d\x13\xb5\x98\x63\xb8\x02\xe5\xc0\xc7\xd0\xe5\x26\x07\x2a\xda\x16\xfd\xe5\xc3\xb7\xaf\x7d\x37\xf6\x02\x6b\x82\xfa\xd4\xf7\x8c\x1e\x86\xc8\xce\xe6\xcf\x03\xfe\x9a\xa4\x18\xc8\x00\x2f\x27\xdc\x7e\x82\x17\x0d\xd6\x2d\xff\x34\x17\x26\xf1\xb6\x95\x33\x72\xbc\xa3\xc5\x1e\x73\x1b\xcf\x01\x83\xff\xbe\x99\x5f\xd8\xc2\x74\xbd\x9e\xb9\x89\x97\x9d\x2e\x6d\xc3\x1b\x93\xf8\x14\xf9\x36\xb7\x18\x82\xae\x6b\xdd\xe5\x0f\xc0\x1e\x6d\xa2\x12\x7d\xb0\xc6\xcf\x99\x15\x04\x3c\x4e\x68\x38\xf4\xdb\x1d\xe1\x35\x31\x21\x2c\x93\x5a\x0f\x7f\x4a\x1a\xbb\xd1\xda\x3e\xd7\x5a\x6c\x09\xb2\x79\xb4\x69\x6a\x5f\x2c\xe3\xb2\x99\x6c\xb1\xfa\xbe\xb1\x19\x7a\x19\xe1\x93\xd4\x55\x60\x90\xd6\xaa\xd5\xc3\xc7\x22\xf0\xea\xc7\x31\x2c\x65\xf8\xb3\xc8\x23\x17\xb8\x37\xeb\x1f\x1c\x36\x30\xfe\x80\x64\x63\xc0\x79\x6b\xdc\x47\xa5\x1e\x0c\xa7\xad\x16\x63\xa3\xee\x91\x76\x60\x2c\x99\x2b\x4c\xf2\xdc\x59\x06\x9a\x42\x2e\x13\xdc\xc2\xea\x9b\x50\xbe\xf9\xd5\x1c\xb9\x38\xf1\x56\xc0\x6a\x65\x5c\x3e\x7c\x35\xb5\x04\x2e\x67\x44\x3b\x08\x9a\x6b\x9e\x90\xac\x13\xb8\x35\xf6\xe0\x71\x8c\xda\xc5\x03\x76\x7d\x82\xfc\xea\x7c\x84\xae\x60\x63\x5c\x07\x4c\x70\x83\x87\x3c\x5d\xb1\x86\x8f\x9f\xae\x00\x8d\x68\xb8\xbb\x32\xac\xed\xc6\x20\xe5\x19\x7a\x30\xdc\x97\x4b\xf8\x64\xff\xda\x1a\x67\xb6\xeb\x58\x70\x05\xaf\x95\xbc\xca\x4a\xf2\x61\xee\xa2\x55\xde\x9d\x80\x96\xf4\x7d\x15\xfc\x56\xad\x6d\xd3\xc7\x27\x0b\xdc\x07\x8c\x67\x4b\x76\x3b\xb4\x9e\x9c\x62\x37\xab\x07\x48\x2b\x57\x99\x6e\xf6\xc0\xaf\xa0\x4e\x1f\x61\x57\x0c\xde\x24\x3e\xdd\xb0\xc0\x10\x18\x99\x03\x34\x0e\x9c\x3e\xfa\x0d\xa1\xfd\x19\x2d\xf8\x1a\xc1\x7b\xec\xd6\x6a\x03\x4c\x4f\x68\x3f\xb3\x50\x63\x69\x4e\x1c\x54\x9e\xb0\xf5\x83\x89\x03\x0f\x7d\xf4\x00\xe5\x07\xc7\x28\x99\xae\x20\x6e\x72\x05\x9a\x19\x2b\x75\x12\x23\x62\xba\xe6\x7a\xd2\x60\x2b\x1c\xdf\x5c\x03\x93\x83\x15\x73\x3b\x40\x08\x0b\xb4\xd6\x76\x82\xf4\x8a\x8a\xda\xc1\x1a\xbf\xaf\x73\x9d\xdf\xd7\x39\x19\x42\xd8\xed\xe3\x0d\xd7\x01\x1c\x55\x21\x0d\xc4\xc3\x00\x23\xc3\x03\x8d\xb2\x96\x60\x70\xce\x1f\x70\x00\x1f\x71\x00\x43\x3c\x2c\x75\xb5\x86\x3a\xe5\xde\xfa\x10\xbb\xbe\x81\x61\xb4\x46\xec\xa5\x55\xbc\x5c\xf4\x71\x02\x74\x89\x86\xdc\x93\x6e\xd8\xc0\x2e\xf4\xb1\x2f\xc7\x01\xfc\xda\xbd\x16\x1f\xf5\xd3\xf4\x4c\xb3\x8d\xc6\x01\x9a\x24\xc7\xc0\xb5\xf8\x55\x90\x93\xa1\x78\x25\xdb\x06\x78\xa9\x30\x1d\x5a\x2b\x26\x93\x88\x4d\x60\xd9\xfb\x07\x9b\x68\x4e\x12\xac\x6f\x6d\x15\x17\x7a\x68\x65\xe5\x66\xf0\xa6\x61\x5f\x69\x91\x69\x18\x4e\x0f\xce\xb5\x58\x06\x24\x9f\xa3\x65\xd2\xee\x99\x21\x30\xa2\xbd\xe3\xed\x5d\x3e\xd0\x29\x4e\x73\xf4\xfe\x3b\x3e\x63\x90\xa0\x91\x24\xd9\x43\x32\x64\x18\x1f\x80\x0f\xa4\x3d\xb6\x0d\xa6\x04\x77\xd6\x39\x71\x3d\x3e\x80\x05\xce\x85\x87\xfa\x1f\xcd\x07\xb0\xe0\x04\xd6\x1a\xd3\x1b\x06\xd6\xd0\x4a\x97\x1a\x4c\x0b\x21\xc9\x52\xa3\xa4\x95\x3a\x7e\x40\x4b\xb5\x52\x92\x92\xd4\x77\x57\xee\x92\x95\xed\x0a\x59\xa7\x1b\x5b\x1e\xa5\x15\xb7\x37\x0a\xfb\x95\xbb\xa4\xa4\x95\x92\x68\x14\xbb\x34\xb1\xa2\x30\xa5\x61\x5a\xaa\x5d\x97\x7e\x1d\x25\x54\x49\xd2\xd8\x77\xd3\x5f\xeb\xed\xb0\x1d\x76\x46\xa1\x9b\xfa\x51\xa8\x24\x3d\x12\x04\xd1\x83\x7d\x3f\x22\xc1\xb1\x73\x47\xdd\x34\x29\x47\xce\x9d\xa1\x29\x91\x73\x67\xaa\xca\x73\x3b\x54\x14\xbf\xa3\x40\xa4\xa2\xeb\xba\x1c\xaf\x28\x31\x4d\x47\x71\xa8\xa4\xf1\x88\xd6\x59\xcc\x2b\xab\x1c\x0b\x2c\x40\x89\x97\x17\x65\x61\x5e\x89\x0e\x09\x92\x42\x91\x31\x89\x15\x72\x40\x27\x89\xa2\x2b\x08\x48\xa5\x4f\x27\x08\x8c\x5a\x17\x39\x9c\xf9\x39\xcc\x3c\x47\x40\x43\x45\xc7\x9a\x2a\x01\x0d\xbb\x69\xaf\x9e\xc3\xe4\x48\xd1\xca\x82\xae\xb3\xdc\x1f\x42\xd6\x89\x62\xa5\xcc\xaa\xf6\x15\x5d\xa9\xd6\x15\x5f\xf9\x8d\x95\xab\x2b\xfe\xd2\x52\x56\x98\xa5\xf7\xe9\x44\x34\x7d\xed\xdf\xf0\x66\x73\xec\x5d\xf7\xe9\xe4\x06\x5a\x65\x10\x63\x88\xa1\x87\xf7\x65\x18\x47\x69\x94\x4e\x86\xb4\xd2\x23\xc9\xf1\x43\x78\x12\x47\x43\x1a\xa7\x93\x8a\x4b\x82\x00\x3a\xa9\xb1\x16\xd4\xac\xc9\x39\x10\x03\xcc\x19\xe0\xc5\xc1\x81\xc8\x41\xe4\x8d\x02\x5a\xa1\x8f\xc3\x28\x4e\x19\x22\xe7\x8c\x7f\xbd\x1d\x96\xb4\xd2\xca\x4a\x3b\x5c\x59\x51\x5a\xc4\x0f\xd9\x47\x81\x68\x06\x74\x10\xf9\x4f\x54\x29\x77\x42\x4d\x89\x86\x2c\x2e\xe1\x60\x31\x3c\xb8\xc4\xed\x51\x45\x17\x29\xca\xe2\xa2\xf8\xac\x40\x12\x42\xba\x33\x2f\xb2\x86\x85\x1b\xb4\x43\x46\x41\x9a\x53\x46\x42\x63\x9f\x04\xfe\x13\x8d\xe7\xd7\x9b\xa7\x4f\x57\x3e\x9d\x52\x93\xea\x9a\x6d\x26\x8d\x49\x4a\xbb\x93\x37\x1a\xe1\xa9\x33\x4d\x14\xe2\x6b\x59\x2d\x85\xea\xf9\x60\x88\x34\x40\x1d\x1f\x48\xe8\x32\xef\xb9\x86\x51\x39\x8c\x32\xbc\x30\xb6\x2a\x1f\x4a\x3e\x40\xe7\x59\xe3\x53\x83\xe4\x27\x27\xb1\x3f\xf0\x53\x7f\x4c\x19\xf9\x06\x23\xca\x87\x88\x43\x02\x51\x8a\xae\x2b\xe1\x28\x08\x18\x21\x32\xda\x8b\x3a\x59\xbc\xae\xfc\x1a\x8e\x06\x0e\x8d\x7f\x9d\x9f\xe8\x44\x51\x40\x49\xf8\xab\xb2\xb2\x32\x37\x43\xbb\xc4\x18\x4e\xd8\x6d\x97\x94\x5f\x47\x61\x42\x3a\xf4\x57\x65\x98\x41\xc4\x26\x55\x34\x8a\x95\x90\x52\x2f\xe1\x3d\xca\xe9\x2b\x0a\x89\xe7\xbb\x48\x5f\x88\x16\x09\x0b\x9a\x42\xe2\xee\x34\xb9\x1d\xc0\xdc\x93\xfa\x5c\x86\x4c\x3b\x2c\x6f\x61\xcc\x21\x3e\x1f\x71\x37\x1a\x0c\x47\x29\xf5\xbe\x21\xdc\x58\x59\xa5\x4b\xd3\xb2\xa8\x56\x15\xcc\x83\xf7\x70\xaa\x04\x43\xc5\x28\xf4\x68\xc7\x0f\xa9\xf7\x6b\x36\x39\xa7\xeb\xed\x84\x38\x8f\xd3\x9e\x9f\x60\x07\xa4\xb1\xaf\x24\x52\x7b\x5a\xb1\xac\x3a\x3b\xa1\x0b\xe9\xd3\xb8\x1b\x93\xd8\x7f\x07\x79\x12\xde\x48\xdc\x65\x1c\xc0\x88\x63\x32\x91\xb8\x4f\x12\xf8\x2e\x45\x60\x49\xdc\x1d\x0d\x68\x98\x26\x9a\xb2\xae\xce\x41\x77\x11\xab\xc9\xff\x0c\x5a\xc9\x70\x18\x4c\x72\xbc\x26\xff\x2a\xc4\x92\x24\xa1\x03\x27\xe0\x5c\xcf\x65\xc2\xf5\x31\xd5\xb2\x09\x3d\x8b\xeb\xe2\x74\x13\xf9\x2a\x8e\x1f\x7a\x65\xd1\x1b\xac\x04\x43\x9d\x50\x93\x40\x9f\x66\x04\x2c\xa8\x4e\xc3\x34\xc5\x69\xde\x62\xc8\x12\x5b\xeb\x84\x42\xfc\x31\x14\xaf\x2a\x3b\xd9\x64\xab\x65\xa4\x53\xc0\x89\xe8\x76\x79\x0a\x48\x40\x38\x87\x51\xa0\x00\x83\x05\xb6\x5e\x71\x63\x4a\x52\x5a\x56\xa7\x12\x8b\x4c\xed\xcd\x8e\x7d\x2b\x50\xf3\xbb\x3d\xfb\x0f\x84\xbe\x25\xf3\xb1\x77\x81\xe7\x83\xf0\x3f\x07\xbb\x90\x26\x52\xe2\x94\x3c\x99\x11\x9b\x4a\xb9\x48\xe1\xbf\x9f\x1f\x1f\x55\x90\xe7\xfb\x9d\x49\xce\x3c\xa6\x9a\xb0\x50\xda\x4f\xd5\x8e\xba\xc7\x95\x9f\xf6\xa2\x51\x7a\x22\x98\x11\xe4\xcd\xda\x61\x1d\xaf\x08\xe5\x82\x6b\x4d\xbc\x93\x4c\x86\x89\x76\xde\xa9\xaa\xa8\x64\xb1\xe9\x20\xda\x2f\x33\xd5\xaa\xd0\x1d\x16\xa3\xf8\xa1\xd4\xea\x8f\x35\xd0\xa5\xe9\xfb\x0d\xe4\x15\x83\x2e\xf8\x43\x95\x27\xb3\x95\x6b\x8a\x2c\xe4\xa7\x2a\x87\xf9\x91\x33\xb5\x8c\x8f\x8b\xa1\xd4\xb1\x14\x62\xb3\x96\x57\x8c\x11\xd9\x08\x64\xb0\x87\xf4\xe1\xbd\x21\x2b\x0b\xe6\x2a\x0f\xbc\x71\xd2\x14\xc3\x3e\xa3\x86\x72\x8d\x72\x3a\x45\xa8\x56\x3e\x4d\x04\x88\x62\x9a\xd7\x66\x78\x04\xd0\x39\x9f\x48\xb5\xe9\x39\x08\xa0\x30\xb5\xf6\x1f\x0b\xca\x3f\xfe\xce\xff\xda\x71\x3b\xb4\xa2\xe1\x24\xf6\xbb\xbd\x54\x29\xbb\xaa\xd2\xf2\xdd\x38\x4a\xa2\x4e\xaa\x58\x51\x3c\x8c\x62\xc2\x30\x59\x61\xf9\xd8\xbf\x13\x1a\x0f\xfc\x24\x61\xc8\x4d\x23\x65\x94\x50\x26\x4b\x86\x13\x4d\x19\x44\x9e\xdf\x99\x68\x0a\x09\xbd\x95\x28\x56\x3c\x9f\x4d\x25\x67\x94\x52\x18\x4b\x85\x55\xf8\x40\x62\xd4\x9c\x48\x38\x61\x75\x0d\x47\xf1\x30\x4a\xa8\xf2\xe0\xa7\x3d\x25\x8a\xe1\x37\x1a\xa5\x4a\x87\x52\xc5\x4f\x94\x1e\x8d\xa9\x33\x51\xba\x31\x09\x53\xea\x65\x10\x5c\xec\xdb\xca\xf9\xf1\xee\xc5\x95\x71\x66\x2b\xcd\x73\xe5\xe4\xec\xf8\x5b\xb3\x61\x37\x94\x76\xc9\x38\x57\x9a\xe7\xed\x92\x62\x1c\x35\x14\x96\xcd\xb8\xbc\xd8\x3f\x3e\x53\x1a\xcd\x73\xeb\xd0\x68\xb6\xce\x15\xe3\xf0\x50\xb9\x32\xce\xce\x8c\xa3\x8b\xa6\x7d\xae\x5c\x35\x2f\xf6\x59\x95\x67\xf6\x9e\x71\xd6\x50\x2e\x8e\x95\x8b\xfd\xe6\xb9\x54\xfb\x91\x75\x78\xd9\x68\x1e\xed\x41\xc1\x66\xeb\xe4\xb0\x69\x37\xe4\x0a\x8e\x77\x95\x96\x7d\x66\xed\x1b\x47\x17\x86\xd9\x3c\x6c\x5e\x7c\x67\xd5\xb1\xe6\x77\x9b\x17\x47\xf6\xf9\x79\x45\x69\x1e\x29\x47\xc7\x8a\xfd\xcd\x3e\xba\x50\xce\xf7\x59\x3d\x12\x64\xa6\xad\x1c\x36\x0d\xf3\xd0\x56\x76\x8f\xcf\x14\xe3\xe8\xbb\x72\x7e\x62\x5b\x4d\xe3\x50\x53\x1a\xcd\x33\xdb\xba\xd0\x58\x7d\xcd\x23\x1e\x50\x8e\xcf\x14\xeb\xf8\xe8\xdc\x3e\xbd\xb4\x8f\x2e\x9a\xc6\xa1\xd2\x30\x5a\xc6\x1e\x03\x04\x4b\x8b\xe0\xd5\xbe\x71\x71\x7e\x6c\x7f\xb3\xcf\x94\x33\xfb\xfc\xf2\xf0\x82\xf5\x61\xf7\xec\xb8\xc5\xaa\x3b\x3c\x3e\x07\xc8\x2f\xcf\x6d\x4d\x69\x18\x17\x06\x2b\x7d\x72\x76\xbc\xdb\xbc\x38\xd7\x94\xab\x7d\xfb\x62\xdf\x3e\x63\x70\x1b\x47\x8a\x61\x5d\x34\x8f\x8f\x58\x6e\xeb\xf8\xe8\xe2\xcc\x60\x40\x1c\xd9\x7b\x87\xcd\x3d\xfb\xc8\xb2\x95\xe3\x33\x56\xe1\x31\x14\xb8\x38\x3e\xbb\x68\x1e\x5f\x9e\xf3\x32\x9a\x62\x9c\x35\xcf\x59\xbb\xc7\x97\x17\xac\x82\x63\xa8\xd3\x3a\x3e\x3a\xb2\xb1\x52\x86\x7d\x40\xc6\xe5\xb9\xa8\xe9\xc4\x3e\xdb\x3d\x3e\x6b\x19\x50\xf7\x6e\x71\x34\x80\x00\xfe\x56\xda\x57\xfe\xb1\xc2\xea\x5c\xf9\x87\xd2\x0d\x22\x87\x04\xca\x19\xed\x04\xd4\x4d\x35\xe5\x24\x8e\x06\x7e\x42\x79\x06\xf6\x8f\xb1\x1c\xfa\x98\xd2\xd0\x3b\x07\xf3\x85\xcc\x7d\xcb\x9e\xa6\x38\x8c\xc5\xf0\x35\xda\x74\x3e\xce\xeb\x13\x9a\xb3\x99\xe3\x8e\xf2\xf2\x22\xf2\xb3\xff\xca\xcf\xca\xed\x2d\x30\xc8\xdb\xdb\x9a\x72\x7d\xa3\xbc\x2a\x7e\x98\xa4\x24\x74\x99\x76\x09\x4a\x2e\x5b\xcb\xe5\x2c\x93\xb7\xa9\x78\x95\xac\x9c\xa2\x2b\x4e\x5d\x79\x55\xa7\xaa\x9e\x2d\x93\x99\x04\x86\x4c\x42\x38\x2a\x28\xb2\x9f\x5a\xc7\x3b\x9a\x32\x54\x55\xc5\xbb\x1e\x32\x9e\xec\x5c\x0f\x6f\xea\xca\x6b\x5d\xb4\xc6\xb9\x6b\xa1\xff\xd8\x28\x64\xc1\x8c\xec\x1f\xf2\xc7\x1c\xb2\xdb\x5b\x2c\x93\xbc\x8b\x4a\xa9\xaa\x42\xbf\x6e\x6f\x19\x83\xe7\x32\x23\x0a\x93\x34\x1e\xb9\x69\xc4\x96\xda\x5e\x5d\x79\x15\xd9\xbd\xbc\x6b\x0c\x74\x50\x20\x61\xed\xb8\x33\x25\x8c\x1d\x55\xa9\x29\xe5\xdb\xdb\x62\xfe\x3c\xa4\x81\xf8\x60\x8d\xf2\x6e\x4d\xf5\x8a\x21\xf6\xf6\x96\x24\x89\xdf\x0d\x65\x2a\x91\xba\x25\x25\xf3\xb6\x79\xf8\xe5\x45\xee\x16\x46\x96\x53\xa9\x24\x74\x5c\x0c\x5f\xa2\x81\x51\x67\x55\x53\xc0\x68\x24\x34\x16\x61\x38\x02\x53\x4f\x6e\xe8\x91\x6a\x00\xe5\x4b\x2e\x02\x06\x9f\xa9\x0c\x45\x2a\x49\x7e\x80\x4a\x12\xa4\x92\x14\xa9\x24\x61\x54\x22\x57\xfe\x2a\x07\x84\x36\x91\xe5\x78\x9d\xa2\x26\x81\x86\xe9\x95\x12\xd7\xce\xe6\x0e\x81\x84\xc3\x98\x26\x29\x03\x88\x4a\x28\x60\x9d\x02\xa5\x21\x27\xdd\xbf\xd8\x59\x36\x37\x69\xc5\x0f\x3d\xfa\x78\xdc\x29\x0f\x55\xe5\x37\xa5\xaa\xca\xdd\x9c\x87\x0b\xd6\x44\xa2\x2c\x70\x32\x5c\x5c\x14\x46\x08\xde\x6c\x97\xa6\x52\x63\xe7\x93\x81\x13\x05\x09\xb7\x4d\x88\x0e\xb6\x4b\xea\x5c\xca\x00\x5b\x9f\xa6\x0c\x73\x02\x9b\x5b\x5b\x39\x51\x91\x4a\x86\x39\xcd\xcc\x25\x16\x06\xaa\xd4\xbf\x6b\xff\x06\xba\xc8\x80\x9e\x41\xd2\x90\xb7\xd1\x4c\xec\x70\x34\xa0\x31\x71\x02\x9a\xa3\x8a\x15\x55\xa7\xab\xe7\x18\xba\xf6\x6f\x38\x92\xd8\xd7\x7c\x9a\x29\xd0\xcb\x3b\xe3\xee\x51\x97\xe9\x2e\xb4\xcc\x3f\xa2\x38\xd1\x94\x94\xc4\x5d\x9a\x82\x21\x52\x53\x3c\x9a\xb8\x53\x44\xe1\xce\x99\x46\x9a\xc2\x38\x89\xab\xfc\xa6\xac\x2b\x3b\xbc\x06\xa5\x06\xa5\x65\x1e\x82\xe1\xf9\xd8\x6e\xd0\xc4\x8d\xfd\x61\x1a\xc5\x65\x09\x02\x95\xd7\xa2\x29\x5e\x81\x24\x38\x15\x70\x61\xc4\x07\x3c\x82\x7a\xdb\x25\x89\x4c\x78\x86\x8a\xe8\xe9\x2c\x69\x00\xe4\xd3\xd9\x3e\x40\x48\x06\x0a\x0d\x12\x5a\x24\xa8\xbc\xa0\x58\x84\x2f\x2b\xab\x8c\x7e\xfe\x89\x86\xe5\xe5\x65\x9c\x36\x5e\x21\x2f\xd0\x0a\x03\xa4\x2c\x70\xe8\x95\x63\xd6\x77\x57\xf9\x27\x0f\x16\xa0\x80\xb4\x42\x9c\xca\x24\x9a\x12\x4f\x8b\x19\x2c\xbf\xb8\xa8\xc4\x12\x19\xa2\xc9\x45\x20\x7e\xba\x66\x8d\xd7\xf2\x0e\xdd\x0c\x49\x4c\x06\x65\xf8\xdb\x64\xe4\xae\xe5\x5d\x91\x88\x45\x98\xae\x33\xd1\x5a\x18\xd7\xe7\xbc\x4c\x11\x82\xbc\x5a\x95\x4b\xa6\x77\x20\x19\xd0\x94\x78\x24\x25\x65\xf1\x01\x46\x20\x11\xf8\x26\x56\x4b\x7f\x81\x72\x44\x5d\xf3\x28\x07\x3b\x38\x9d\xf3\x3d\x58\x3e\xc2\x2c\x79\x20\x7e\x4a\x63\xe0\xe0\x46\xdc\xd5\x94\x5b\xc9\x40\x77\xa2\x29\x5d\x1a\xd2\x69\x3c\xe7\xe6\x2b\x2f\x1a\xa6\x99\x1d\xb8\x68\x04\x96\x14\xa5\x13\x65\x87\x47\xd6\x40\x4a\x9f\x94\xf3\x21\x8a\x69\x12\x05\x63\x5e\x1c\x3e\x79\x7d\x4c\x67\xaa\xcf\x70\x18\x56\xbc\x7c\xc2\x28\xaf\x7c\xa2\xe8\x42\x25\x54\xd5\xd9\x1a\x35\x25\xa6\x0c\xc7\xd3\x62\x5a\xe4\xeb\x8c\x82\x8e\x1f\x04\xd4\xcb\xe1\x4f\xe3\x89\xf2\xac\x24\x29\x1d\x96\xb3\x6e\x57\x42\xfa\x28\xba\xc8\xe0\x51\x5c\x92\xba\x3d\xa5\xcc\x21\x66\x2d\x94\x01\xd8\xa2\x00\xcd\x9a\xc1\x2c\x1f\xb5\x72\xdd\x2e\xa5\xbd\x38\x7a\x68\x97\x6e\xfe\x42\x5b\x50\x67\x4c\x93\x51\x90\x72\x7c\x8e\x82\xb4\xe2\x45\x21\x55\x76\x32\xec\xf2\x58\x0e\x4e\x8d\x8f\x61\x21\xb6\x92\xf6\x68\x58\xce\x10\xa4\x65\x9d\x90\x07\x04\x4d\x45\x74\x58\xce\x7b\xa1\xe8\x39\xb9\x48\x8a\xc1\x14\x59\xb1\xc1\xbb\xbe\x51\x55\xc4\xac\x9a\xf3\xb6\xd7\x0f\x89\x35\xab\x3d\xaf\xd7\x89\xbc\xc9\x94\xbc\x60\x2a\xf7\xb3\x12\x10\x87\x06\x35\x26\x6f\x13\x1a\xa6\xb5\x82\xc6\x87\xf3\xf2\xba\x7a\xa3\x2c\x2a\xab\xaa\x02\xa8\x57\xd2\xeb\xd5\x9b\x7a\x26\xc9\x20\xf0\xaa\xb1\xd1\x4a\x98\xea\xaf\x29\xd1\x30\xc1\x35\x80\xa6\x74\x34\x65\xa2\x29\xa9\xa6\x74\xa7\xd9\x5f\x17\xda\x66\x3d\xab\x29\x63\x1a\x3b\xe5\xaa\xaa\x29\xd9\xe0\xf2\xb8\x55\x88\xc3\x12\x59\xe4\x9a\x0a\xcd\x21\x2f\x40\x4d\x60\x86\x03\x30\x6e\x51\xee\x5e\x63\x6a\x85\xcd\x5b\x86\x8c\x9b\x29\x7d\x56\xb6\x05\xb1\x59\x24\x83\x99\x9b\xf4\x59\x9b\xa1\x94\x3b\x9f\x40\x63\x29\x16\x46\xf8\x3a\xd4\x94\xf1\x0d\x1b\x7c\x69\xfc\x8b\x54\x17\x0d\xa7\xe6\x19\xc3\x70\x47\xa0\x96\xcd\xda\x8b\xc9\x90\xda\x71\x1c\xc5\xe5\x76\x69\x2f\xa3\x18\x3f\x51\x48\x10\x53\xe2\x4d\x14\xfa\x48\xdd\x51\xea\x87\xdd\x4a\xbb\xa4\x16\xd4\x8c\x87\x9e\x1f\x50\xa5\x7c\xab\xe2\xdc\x99\xa7\x06\x75\x50\xe3\x86\xe5\x58\x39\x85\xad\x36\x1c\xde\x35\x65\x47\x99\x5c\xe7\xd8\xbe\x51\x6a\x3c\x0d\xe3\xc5\xb4\x03\x96\x02\x25\x0b\xb9\x41\x87\x4c\x51\x51\x9a\xa8\x9a\x52\x65\x53\x66\x02\xa4\x0b\x49\x0b\x50\x44\x64\x60\x44\x72\xbd\xca\x68\x9b\x4d\x3a\x75\x56\x8d\x96\x41\x9e\xa0\x36\x98\xaa\x4a\xc4\x34\xc2\xeb\x0c\x62\x4d\xe1\x13\x71\x56\xfb\x4f\x1e\x7c\xe0\x08\x90\x77\x8e\x46\xa8\x80\xa5\x3f\xa1\x4a\xb5\x86\xbf\xab\x35\x05\xb1\x51\x57\x9c\x98\x92\xfe\x4c\x8d\x59\x89\x2f\x35\xe5\xb6\x02\x93\x66\x69\x29\x9b\x06\xcf\xc8\xb7\x6b\xd8\x2f\x4d\x61\xdd\xaa\xe1\xde\xb0\xb4\xc2\x9c\xa9\xeb\x6b\xa1\x2e\xdc\xf9\x84\x09\x85\x3d\xad\xde\xd4\x61\x9b\xc2\x0f\x47\xf4\xed\x4a\x36\x6b\x98\xfd\xb6\x12\x0d\x93\xca\x30\x1a\x96\xd5\xba\x72\x5b\x61\x13\x52\x84\xde\xad\xc4\x43\x33\x64\x6d\x5e\x9a\x18\x03\x1c\x3e\xac\x54\x53\x70\x28\xb9\x16\xf5\x4f\x54\xa4\xd3\xeb\x54\xd2\xab\x90\x1e\x10\xfd\x30\x3b\x37\x18\xdd\xe4\xc1\x35\x95\xcd\x9d\x5b\xdc\xd3\xcf\xa0\x2b\x32\xcd\x69\x18\xf2\xd2\xa0\x37\x95\x17\x52\xa0\x45\xc0\x98\xf2\x4f\x05\xd9\xd4\x22\x62\x50\xf9\x4d\x49\xaf\xd7\x6f\x54\x6c\x06\x51\x9c\x63\x17\x47\xf8\xb3\xad\x6d\xb0\x5a\x45\x1d\xbf\x01\xc7\x2b\xd6\x8a\x3c\xb0\x48\x3e\xef\x57\x9e\x4e\x57\xb9\x36\x53\xe5\xda\x4d\x5d\x8c\xe8\x28\xe9\x31\xbe\xf1\xc9\xaa\xa1\x2e\x99\x16\xde\xca\xfd\x49\x12\x99\x69\x0d\x88\x8d\x89\x93\x7c\x53\x15\x25\x57\xb1\xa9\xa2\x54\x46\x82\xde\xd0\x14\x7a\x83\x84\x5e\x65\xe2\xb9\xe3\x87\x24\x08\x98\x98\x67\x7c\x29\xe5\xd1\xd3\xec\x51\x4c\xf8\xaf\x82\x4d\xf2\x61\x9c\x33\xf7\x80\x5d\x21\x05\xd4\x94\x71\xe4\x7b\x8c\x73\xe0\x64\x4c\xe3\x91\x3c\x17\xe7\xea\xaf\x68\xfc\x40\x4b\x8a\xe9\x87\x9e\x1f\x76\xa7\x77\x3b\x94\x1d\x25\xd3\xa1\xca\x91\xa6\x0c\x34\xa5\xaf\x29\xfd\xb5\x29\x65\xb6\xbf\x06\xb4\x93\xed\xa2\xaa\x0a\x8b\x51\x72\xbe\x32\x5f\xe3\x8f\x58\x55\x9a\xf2\xac\xd0\x6c\xf1\x89\x90\x33\x05\x73\x5a\x38\xf3\xfe\x0f\xae\xfb\x37\xa0\xeb\x70\xb5\x00\x0c\x40\x7f\x07\x88\xd1\x75\x7f\x8d\xc9\x4c\x68\x00\xab\x7e\xd7\x06\xc6\x62\xce\x53\x12\x97\x07\x9a\x12\xc9\x6a\x70\xc1\x3a\x31\xc0\x65\xd6\x10\x9c\x71\xda\x25\xce\x7d\x50\x66\x7f\xd2\x1d\x07\x0d\x34\x53\x03\xc5\x7b\x3a\xfc\x50\x39\x02\x6a\x49\xca\xd1\x94\x36\x94\x30\x0a\xfc\x50\xab\x98\x52\x29\x34\x65\xc0\x96\xfc\xc0\x77\xae\x93\x1b\x8d\xbb\x29\xc9\x68\x1e\x64\xe2\x6d\xc0\xc1\x57\x0b\xe9\x91\xb4\xb4\x89\xe4\xfd\xe1\x76\x09\x5d\x40\xa4\x05\x4d\x41\x8e\xa1\xf2\x94\xab\x23\x6f\x18\x3e\xa0\x7e\x58\xe5\x8a\xda\x55\x25\x52\x74\x3e\x3b\x66\xa6\xfb\xcc\xa4\xc2\xbe\xf9\x4b\x4b\x99\x58\x5b\x88\xa6\x64\x5a\x36\x63\xf3\xe8\x79\xfa\x4c\xa2\xec\x28\xed\x12\x0e\x31\x53\x68\xc2\x28\x55\x00\x91\x4e\x40\x2b\xed\x92\x52\x53\xda\xa5\x29\xfc\x8a\x6c\x9c\x44\x33\x8d\xe7\x5d\x93\x19\xf1\x18\x2d\x84\x53\xe3\x3b\xf8\xd4\xf8\x46\x33\x4a\x63\x61\xb0\x16\xf2\xd1\x8c\xea\x72\xed\x6c\xdc\xb3\xf1\xd5\x14\xf0\x93\x61\x1c\xef\x46\x53\x72\x96\x3a\xa3\x95\x71\x85\xad\x1c\x02\x2c\x38\x22\x4c\xa8\x85\xcb\xcb\x4c\xae\x72\xcd\x89\x55\xe4\x8b\x55\x00\xd7\x98\x48\x8c\x72\x21\xe6\x4b\x91\x59\x03\xa4\xe0\xbe\x0c\xf5\x8c\x5b\x50\xd0\xb8\x21\x58\xc3\x9f\xa2\x9a\x2a\x58\x71\xc1\xee\xf7\x96\x1a\x09\x46\x8b\x85\x18\xd7\x4c\x4c\x18\x33\xec\xfa\x05\x85\x50\x15\xf8\xf0\xd5\xb7\xed\xa7\xb9\x00\x00\x1b\x9d\x60\xf0\xb4\x02\x00\x4a\xe0\x4d\xaf\x6f\xc9\x87\xa6\x90\x64\x08\x94\x30\x8f\x0f\x65\x43\x23\x39\x15\xce\xb1\x3f\x2f\x2d\x15\x4c\x7d\x50\x8a\xc4\x15\x37\x0a\x5d\x92\x96\x39\xa5\xc9\x46\x68\x69\x8d\xf6\x83\x60\xc2\x16\x49\x32\x17\xd8\x04\xd5\x5f\x6e\x13\xf5\x83\x37\x6d\xe5\x7e\xc0\xed\x9f\x89\xb2\x54\x34\x8e\x67\xbe\x98\xd3\x75\xc7\xc2\x05\xa9\x9c\xa8\x9a\xd2\x97\x5a\x2a\x56\x39\xd7\x4a\x4b\xa6\x4c\xf0\x9a\x72\x87\x15\xdc\x01\x8c\x19\x6c\x77\xca\x6f\xca\x5d\x50\x57\xee\x96\x96\x34\xa5\x3f\x55\x1b\xe0\xea\xba\xcf\xc4\x0c\xb9\xbe\xbb\x99\xc6\x5f\xfc\xe1\xd6\x0b\xd8\x65\x60\x29\x36\x6d\x63\xed\xf9\x89\x6c\x5c\xe1\x59\x99\xfc\x86\xbd\x96\x31\xe3\x81\x1a\x64\x53\xb9\xbd\x25\xaf\xed\x43\x6b\x50\x32\x09\xdd\xbd\xd9\x55\xb6\x6c\x14\x9a\x67\x11\x02\x1e\xc2\x39\x0c\xd4\xd1\x4c\x45\x9e\xf9\x2b\xc0\x79\x79\xdf\x62\x8a\x82\x17\x75\x7f\xc8\xbe\xa0\x29\xbe\xa6\xdc\xc3\x84\x98\xc6\xbe\x0f\xbb\x0c\x1a\xae\x81\xdb\x25\xc6\x81\xda\x25\x35\x0b\xf3\x25\x61\x1e\x21\x26\x3f\xab\xf3\x7a\x1e\xe4\x37\x05\xbf\x89\xd9\x25\xb8\xa6\xf8\xef\xad\xc0\x19\xf6\xba\xd7\xe1\x8d\xaa\xf8\xd7\x61\xb1\x2e\x79\x2d\x0e\xa6\x33\x34\x78\x49\xe6\x2e\xc2\xb7\x0f\xef\x91\x71\xc2\x5a\x5d\x53\x58\xec\x8d\xaa\xfc\x53\x59\x05\x2b\x2d\x4d\x46\x03\x5a\x66\x49\xc2\xae\x36\x6f\x25\x2f\x67\x9b\x32\x54\x5d\x87\x37\xe5\xf1\xac\x51\x2a\xa1\x69\x1a\xd0\xf2\xfd\x75\xf5\xe6\x7a\x9d\xc9\x84\xa2\x75\x6a\xca\x32\x05\x7d\xa9\xcc\x98\x07\x73\x0a\xe6\xbd\xab\x64\xb6\x2a\xcc\x5c\x19\x17\x4d\x52\xb9\x69\xaf\x56\x80\x60\xed\x46\x53\x62\x75\x5e\xcf\x78\x41\xd9\x54\x09\x5d\x15\x83\x2f\xfc\x5c\xe6\x63\x05\x0c\x6f\xb3\x45\x39\x9d\xbc\x57\x96\x43\xd7\xe1\x18\x05\x4b\x45\x79\xac\x6a\xca\x7d\x25\xe9\xf9\x9d\xb4\x0c\x9f\x42\x7d\xe1\x35\x43\x5f\xaa\x37\x9a\x02\x1f\xab\x37\x9f\xb0\x4a\x03\x35\x36\x68\x40\xbb\x30\x6f\xa7\x75\x40\x5f\x53\x86\x3f\x37\x09\x34\x89\x16\xd1\x7a\x89\x82\x0c\xed\x4a\xef\xcc\x8f\x79\xc6\xa9\x1f\x9c\x1a\x9a\xd2\x01\xa4\xe1\x9c\x88\xd8\xcf\xce\x1b\x53\xa3\xcc\x96\x61\x0b\x43\x55\xd9\xc9\x35\x3c\xc1\xf5\x22\x4e\xbb\x42\xcd\x0b\xb9\x82\x24\xa0\x56\x5e\x95\x9a\xd2\x61\x55\xb3\x2a\x6b\xca\xb8\x8e\x31\x9f\xc4\xfa\xb7\x59\xb5\xfb\xdf\xc2\x0d\x07\x80\x93\xb9\xdc\x48\xc6\xa9\xd0\xd1\x95\x9d\x5c\x8f\x63\x0b\xa9\x28\x57\x1b\xc5\xd2\x61\x56\x71\xdc\x29\x2c\x2b\x6a\x73\xb4\x48\x46\xc0\xff\x13\xec\x74\x8e\xc3\x81\xc4\x4f\x25\x8a\x29\xb8\x67\x7c\xcc\x4d\x67\x37\x0f\x94\x31\xaf\x0a\xe6\x2d\x9f\xd0\x53\xd9\x34\x65\x0c\x2a\x23\xfb\x2d\xec\x5e\xbc\xc3\x13\x66\xaa\xf0\x38\x93\x98\x66\x82\x39\xf3\xe3\x4b\xdf\xb1\xbc\x59\x92\x91\xfb\x58\xd0\xb7\x87\x4d\x67\x5d\xf8\xc4\x9e\x16\xe9\xd3\x0b\x3a\x18\x06\x24\xa5\xb8\x8c\x29\xbb\x51\xd4\x07\xcb\x3f\x79\x98\x22\xec\xb9\x0b\x7c\x06\xd1\xfc\x95\xbf\xa8\xa8\x5d\x8a\x09\xf0\x93\x0c\xe0\x98\x3c\x20\xa4\xb8\xa9\xf9\xac\x60\xd6\x0a\x8b\xd7\x59\xea\xec\xee\x0f\xe6\x98\xd2\x9d\xd0\xb8\x91\xd0\xb4\x05\x6e\x7e\xb9\xf7\xe1\xbb\xf6\x0d\x59\xb3\x7a\xd3\x66\x21\x2d\xe3\xe7\x1b\x2f\x04\xee\x0b\x46\x8a\xb7\x9a\x89\xae\xa5\xfa\xc0\x7b\xf2\x43\x2d\xd0\x1f\xe4\xc6\x87\xc8\x9b\x1a\x89\x41\xe4\x31\xf2\x1e\x44\x5e\xe5\xf6\x96\x26\xd8\xfd\x7c\x55\x1e\x79\x05\x7e\x81\x3b\x3c\x45\xff\x0a\x51\x0b\xf7\x76\x50\x73\x25\xb8\x0f\x26\x0d\xd6\x24\x98\x54\xe6\x19\x35\x3e\x65\xd3\x18\x44\x9e\xa6\xf4\xe7\x58\x35\x10\x1c\xf0\x50\x64\x19\x32\x90\x66\x47\x52\xce\x3a\xb3\x10\xc1\xb4\x8f\xd4\x5a\x44\xa3\xa8\xaf\x88\x49\x21\x41\xde\xc0\xe6\x0e\x8b\x51\x6a\xb0\x7b\x8c\xf6\x64\x88\x78\xfd\xa8\x49\x37\x20\x49\x72\x12\xfb\x63\x92\xd2\x5d\x9f\x06\xde\x1e\x65\x3d\x71\xa9\x3f\xa6\xb1\xa6\x0c\x31\xa5\x45\x86\xd3\x72\x23\x4f\x61\x08\xcd\x8a\xa8\x53\x66\x90\xf9\x82\x84\xa4\x29\x1d\x0c\x53\xea\x29\x69\xa4\x74\x69\x2a\xda\x51\x3a\x0c\x04\x25\x0a\x95\x30\x0a\x97\x85\xee\x25\x8b\x94\xe9\xa9\x26\x81\xd1\x95\x20\xff\x70\x05\x31\xd3\xef\xf3\x37\xfa\x2d\xb9\x16\xff\x6b\xba\x9f\xfc\x54\xf7\xa5\xf6\x93\x02\xe4\x53\xf6\x08\x79\xaf\x3b\xc7\x49\x49\x2b\x21\xad\x29\x67\x94\xb8\xa9\xd2\x89\xa3\x81\xf2\x6b\xcc\xbe\x7f\xad\x23\xab\xba\xe8\xd1\x01\xb5\xf0\x90\x06\x38\x82\x90\x8c\x47\xf1\x58\x74\x3c\x87\xa3\x7e\x60\x51\x8c\x23\x97\x26\x49\x85\x86\xe3\xca\xd1\x71\xc3\xbe\xb5\x8f\xbe\xc1\x7c\xfc\x75\x18\x47\xde\x08\x10\x2f\x0e\xb3\xc8\x95\x57\x3c\x3f\x19\x06\x64\x72\x44\x06\x54\xd1\x95\x5f\xe5\xb4\x5f\xc5\xd9\x3d\x3e\x80\x9c\xb6\x0b\xe5\xeb\x25\xad\xc4\x00\xee\x91\x44\x18\x96\xe6\x18\x9a\x7e\x15\x63\xff\xab\x64\x46\xec\x44\x71\x7d\xa6\xee\xbc\x9e\x1d\x29\x5f\xf9\xd7\xc1\xc8\xaf\x84\x34\x49\xe1\x48\x4e\x4d\xf9\xf5\xf6\xf6\x62\xdf\x6e\xd9\xb7\x47\xf6\xf9\x85\xdd\xb8\xbd\xfd\xb5\x0e\x2e\xd6\xff\x50\xfe\x4f\xe0\xbb\x34\x4c\x28\xc7\xed\x78\x75\xa3\xb2\xba\x5e\x59\x6d\x87\xca\x3f\x14\x40\x71\x25\x47\x48\x65\xe0\x87\x95\xbb\x84\xa5\x41\x7a\xd1\x9b\x7a\x97\xb8\xd4\x89\xa2\xbe\xa6\x34\x43\xb7\xa2\x90\xd0\x53\xfc\x34\x51\x48\xa7\xe3\x07\x3e\x49\x69\x52\xc9\x0a\x5e\xa0\x9f\xf4\x28\x76\xa9\xe2\x46\x1e\xf8\x40\x73\x38\x3c\xb0\x31\xc7\x4a\xda\xa3\x4a\xab\x79\x21\xa2\x95\x4e\x34\x62\x15\x32\x75\x85\x42\x1d\x87\x4d\xcb\x3e\x3a\xb7\x95\x8e\x1f\x50\x1e\xaf\xc4\x11\xd3\xed\xfc\x98\xba\x69\x14\x4f\x94\xa8\x23\x3c\xb2\xa1\xa5\x34\xa6\x14\x60\x00\xcf\xf6\xc2\x49\x5b\x38\x8f\xaa\xc7\xf4\x7e\xe4\xc7\x6c\x15\x82\x9e\x24\xcb\xe8\x8e\xc7\x94\xaa\x50\x97\x75\x38\x5d\xd7\x0b\x83\xb6\xb8\x98\xe3\x5e\x1b\xea\xe1\x8e\x34\x14\x4c\x35\x63\x68\xa4\x01\x65\x2b\xe9\x76\x49\xad\x6d\x54\x57\xab\xeb\xda\xfd\xfc\x7c\x6c\x78\x49\x20\xb2\x6d\x68\xf1\xfc\x6c\x9d\x98\x74\xe5\xfa\x36\xb5\x74\x7e\x46\xec\xe2\xed\x20\xf2\xa8\xc8\xbb\xa5\x8d\xde\x68\x3b\x8e\x18\x3a\x63\x9e\x71\xf5\x8b\x36\x7e\x33\xe3\xd8\xf7\xb2\x8c\xd5\x6d\xed\x61\x7e\x46\x7e\x70\x4a\x54\x58\xd5\x1e\xdf\xe8\x4e\x14\x3f\x90\xd8\xbb\x8d\x69\x47\xe4\x5d\xd3\x26\x6f\xf4\x68\x94\x0c\x19\x4d\x88\x8c\xeb\xda\xd3\xfc\x8c\x03\x3a\x88\x44\xa6\xaf\x9a\x31\x3f\x53\x40\x9e\x26\x2c\x53\x3b\x64\xd9\x36\x34\xf3\x73\x23\x2d\x94\xf5\x7a\xc6\xa6\xad\x32\x51\x9f\x59\xcd\x70\xfc\x59\x6f\x97\x7a\x69\x3a\x4c\x6a\x2b\x2b\xd0\xce\x5d\x52\x89\xe2\xee\x8a\x17\xb9\xc9\x0a\xd8\x2b\x97\x3d\xca\x48\x3f\xae\xf4\xd2\x41\xb0\xe3\x87\x70\x5c\x22\x4c\xf5\x76\x69\x89\x68\xae\xbe\x5a\x77\x7f\x9b\x31\xdd\xb9\x4b\x4b\xaa\xb3\xa4\xb7\x4b\x8b\x24\xee\x26\xd7\x37\x2c\x33\x0d\x59\x35\x97\x67\x4d\x2b\x1a\x0c\xa3\x90\x86\xa9\x64\x66\x74\x6f\xd4\xba\x58\x19\xb4\xfc\xd0\xef\xf8\xd4\xe3\x33\x1d\xad\xba\xff\x1f\x6b\x6e\xa9\x5d\xaa\x2b\x63\x3f\xf1\x53\xa5\x5d\x5a\x72\x96\xda\x25\xd0\x59\xd8\x8c\xea\x8c\x82\x40\x19\xd0\x24\x21\x5d\xaa\x44\xb1\xc2\x26\x0d\x8b\x67\x2c\x7f\x20\x2a\xf4\xe8\x58\xa1\xe1\xd8\x8f\xa3\x90\x35\x0b\x85\xa1\x20\xb4\x91\x00\x2b\x20\x9e\xe7\x33\x34\x91\x40\xe9\xd1\x60\xd8\x19\x05\xca\x03\x89\x43\x3f\xec\x26\x95\x76\xe9\x15\xd9\x78\x43\x7f\xf6\x93\x56\x34\x0a\x53\xea\xd5\xf2\xed\xab\x67\xec\xc2\xc2\xea\xab\x46\xc3\xfb\x11\x1d\xd1\xdd\x28\x76\xe9\xe5\xd0\x23\x29\x95\xf3\x65\xe9\x67\x74\x18\x10\x97\x9e\xa7\x6f\x65\x38\xa7\xe9\x6c\xe2\xab\x66\xeb\xcf\xaf\xf9\x88\xee\x96\x89\xe6\x68\xae\xfa\x0c\x36\xc0\x61\x1c\x0d\x13\x9d\xd4\x85\xf3\x35\xa3\x6b\xdd\xc1\x60\x4c\x3b\x89\x6e\xe3\xf7\x08\xc0\x8a\x75\xf7\xe5\xa5\xf1\xba\x2b\xa9\x72\x7e\x02\x98\xcf\xc6\x89\xb5\xb5\x5b\x3c\x2a\x04\x30\xe9\x19\x4c\x44\x73\xd4\x67\xbf\x53\xce\x5d\xdb\x16\x32\x7a\x24\x8b\x8b\x32\xa1\x16\x12\x98\xac\x5b\xd0\x89\x8a\x02\x1d\x05\xb9\x55\xde\xfa\xaa\xaa\x05\x10\x2b\x53\xc8\x40\x8f\x63\xd6\xe7\x76\x49\x00\xd3\x2e\xa9\x45\x28\x3b\x39\xea\x25\x40\x39\x8e\xa6\x2a\x96\x86\x49\xd4\xdd\x2e\x49\x15\x40\xe5\xd2\xd9\xb2\x3d\x36\x0a\x7b\x79\x63\xba\xd4\x70\x3e\x2c\xfb\x7f\x7d\x58\x18\xb1\x35\xf5\x7d\xa9\x25\xa6\xf5\xec\xd5\x9b\xb2\x57\xbd\xbe\x5f\x0f\xca\x4d\x4d\x82\x41\xad\x37\x2b\x7e\x72\x32\x8a\xe9\xd4\x48\x2e\x54\x41\x84\xfc\xae\x3f\xbb\xa3\x38\xa6\x61\x5a\x63\x43\xf0\xaa\x1d\xe8\x1f\x28\xf4\xda\xa1\xfe\xdc\xa7\x93\xda\x42\x55\x8b\x69\x87\xfd\x30\x5d\x3d\x10\x5f\x20\xb8\x6a\x0b\xd5\x02\x96\x5a\xa2\xff\x70\x52\x43\xf3\xf4\xe7\x57\xad\xab\xb3\x06\xb5\x3e\xfc\xd4\xfd\x4e\x19\x49\xc0\x51\x19\x43\x02\xf9\x88\x1b\x46\x0b\xba\xee\x30\xb4\x2c\x2e\x96\xfb\xf8\xa5\x6a\x52\x4a\x9f\x4e\x16\x17\xcb\x5d\xbd\x5d\x62\x8c\x80\x05\x55\xcd\x51\x0f\xc4\x89\x08\xaa\x2e\x2e\x2e\x1c\x4e\x75\xa1\xcc\x62\xcb\xde\x35\xbd\xd1\x9d\x6b\x7a\xa3\x02\x26\x3a\xfa\x34\xf3\x5a\x5e\x63\x60\xad\xea\xba\xde\x51\xbd\x8a\xdb\xf3\x03\x2f\xa6\xa1\xee\xd6\x61\xa1\xca\x92\x7e\xeb\xe4\xfc\xb3\xa7\xe3\x56\x43\x47\xd5\x06\x7a\xb5\x3e\xf8\xad\x53\x1f\x2c\x2d\xa9\xbd\xeb\xc1\x4d\x5e\xf3\xf5\x60\x69\xed\xa6\x2e\x55\xd6\x7b\xf5\x3b\x65\xb2\xb8\x48\x2a\x5c\x3f\x62\x30\x26\x39\x0e\x3a\x7a\x31\x45\xeb\xa8\xd8\x79\x5d\xd7\x59\x07\x44\x3f\x3a\xd0\x0f\xe4\x3a\xcf\xbf\xfc\x82\x13\xab\x36\xd4\xd8\x47\x8d\x68\x6c\xc0\xba\x30\x5e\x7d\x0d\xc8\xaf\xe6\x69\xb7\xd1\x43\x48\xe3\xda\xef\x15\x4e\x00\xaf\xaf\xd2\x88\x1d\xe1\x4c\x7e\xab\xc2\x0a\x9c\xb5\x60\xb5\x3a\x50\x2b\x61\xe3\xc2\x6b\x26\x48\xe0\xa2\x7e\x52\xc1\x8f\xd7\xd7\xfc\x40\x26\x9b\x7d\x82\xc9\x0b\x3e\xa1\xcf\xb2\x03\x1d\x10\x23\x1a\xd7\x75\x7d\x98\xd7\x41\x13\x97\x0c\x29\xab\x08\x85\xd7\x73\xbb\xa4\xb7\x4b\xb5\x76\x49\xaf\xb6\x4b\x1a\x7c\xb1\xc0\x5a\xbb\xf4\x9a\xc9\x93\x5f\xda\xa5\xa5\x32\x10\x0a\x51\x2b\x31\x32\xdc\xf2\xca\xb5\x5e\xbb\x59\xe9\x6a\x32\x67\xe0\x5a\xbd\x73\x4d\x6e\x5e\x55\x98\x7a\x27\xfa\x4a\xbb\xbd\xb2\xb4\xd2\xd5\x4e\xf5\xeb\x9b\x7c\x66\x9f\x21\x65\x6b\x14\xb8\xde\xa9\xb0\xe1\x02\x50\x9e\x7e\xca\xdd\x4f\xbc\x0a\x2e\x50\x75\x52\xf7\x18\x89\x9e\xc4\xb4\xe3\x3f\xea\x4e\xdd\xab\xb0\x9a\x74\x97\x91\x04\x67\x04\x14\xbe\x47\x61\xaa\x57\x39\xe0\x8a\xf7\xca\xc7\x01\x6b\xc1\xf1\xc4\x3a\x6a\x0e\x00\x5e\x73\x35\x5e\xbe\x46\x35\x28\x5d\xab\x16\xc6\xf3\x9c\x75\x8b\x08\x30\x60\xca\x11\x09\x12\x1e\x01\xc0\xf0\x6f\x01\x4f\x16\x44\x90\x56\xab\xff\x14\xbd\x5c\x5c\x3c\xc5\xcd\x06\xa2\xca\x4d\x5d\xe4\x28\x41\x2c\x88\x61\xad\x83\x5c\xc8\x1c\x32\x60\xc8\xbd\x97\x97\x76\x89\x5f\xf7\x80\x11\x2a\xc1\x26\x61\xab\x47\x5f\x58\x15\xac\x41\xd7\x75\xa2\x76\x19\xdf\x82\xe9\x87\x2e\x70\x65\x4f\x7d\x06\x2f\xb1\xfc\x46\x88\x1a\x0f\x0b\xef\x82\x1a\x94\x41\xdf\x22\x9e\x24\x48\xae\xc6\x2b\xc9\x69\x8c\xd7\x36\xc4\x4a\xee\xa1\xec\x2b\x9b\xa2\x5d\x55\xd8\x9e\xca\x14\x64\x02\x00\xeb\xec\xb4\x4b\x95\x76\x69\xe9\xb2\x4c\xb4\xaa\x5a\x73\x54\x6d\xb5\xde\xd5\xab\x75\x47\x2f\x66\xa8\x31\x0d\xa5\xd6\x2e\xb1\xbe\xe0\x9d\x08\x7e\x82\xdc\x82\xa8\xaa\x60\x20\x7d\xbd\x5a\xef\xff\x96\x6d\x2c\xf6\x97\x96\xd4\x67\x4f\x27\xd7\xfd\x1b\xce\x9f\x9c\xa5\xcb\xb2\xa7\xf5\xd5\x7a\x77\x49\xbf\x28\x7b\x5a\x07\x90\xfc\x2a\xb8\x91\x40\x12\xc3\xe8\x1c\xe1\xbb\xd3\x01\xbc\xd6\xca\x1d\xdd\x5c\x5c\x24\xd7\xe6\xcd\xcb\x0b\xb9\x6e\x97\xfe\xcf\xff\x11\x8a\x61\xbb\x74\xa3\x75\xde\xd0\x25\x3b\x3b\x1d\x10\x10\xaa\xf6\x46\x3a\x74\x83\xe8\x1d\x7e\xbb\x83\xaa\xf5\xf5\x76\x58\xad\x2f\x94\x3d\x9d\x14\x36\xf7\xeb\xaa\xa7\x7b\x68\x1e\xd5\xb2\x3e\x2d\x2d\xa9\x5a\xa1\x57\x19\x8f\x2d\x30\x08\x8f\xeb\x07\x2e\xb2\x7b\xa2\x09\x45\x61\x7d\x55\x6b\x97\xae\x31\x27\xb7\x48\xdd\x40\x09\x77\x47\x54\x80\x27\x59\xfb\x74\x92\x28\xcf\xed\xd2\x92\x7c\xcb\x0f\x51\x2b\x77\x91\x1f\x96\xdb\x25\x4d\x69\x97\xd4\x25\xa6\xdd\x95\x6a\x2e\x8c\xb2\x2a\xb8\xaa\xd2\xcd\x99\xcf\x37\x21\xcf\x84\x11\x19\x50\x4f\x76\xaa\x35\x46\xfc\xac\x18\x24\xe7\x05\x2e\x65\x76\xfa\x21\xcf\xe3\xca\x10\x03\x6e\x47\xf0\x39\x90\x6c\x35\xa7\x92\x46\xe7\x40\xe8\xe5\xf5\x0d\xa9\xfe\x2b\xac\x1f\x67\x30\x1f\x02\x31\x83\x35\x47\xe3\xd3\x77\x69\xa9\x30\x51\x09\x29\x88\x65\x5d\xb0\x07\xcd\xd3\x25\xde\x50\x27\xfa\xc7\xd5\xd6\xa7\xa9\x7a\xe7\x8f\x32\xd1\xa8\xe6\xce\x63\xab\xe4\x55\xad\xf1\x2e\x2e\x2e\x96\x99\x30\x58\x5c\x2c\x13\x9d\x89\x1c\x6f\xa9\xbc\x00\x6d\xbf\xbc\x38\x8b\x8b\x20\xce\x19\x49\x03\x26\x18\x5a\x6b\x9c\x7d\x03\x36\x32\x16\x7e\xa2\xb5\x4b\xbf\x2c\xae\xe0\xd0\xc1\x8f\xab\xaa\x1a\x15\xcc\x49\xc2\xd3\x1f\x82\x37\x69\x1e\xf6\x1a\x15\x87\x3a\x82\xe3\x82\x26\x81\x4d\xb8\xef\x54\x5f\x77\xf4\xb3\xb2\xa3\x75\xa1\x9a\x3a\x23\x06\xc2\xd0\x5f\x3f\x2f\x3b\x28\x2d\xbe\x4f\x69\x55\xb9\xbc\xf8\xb3\x8c\xed\x12\xfd\xbb\x90\xbb\x05\x06\x57\xd4\x7f\xd7\xd7\x56\x73\xfa\x23\x7c\xc9\xe1\x10\xfd\x19\x95\x39\x2c\xdf\xf0\x93\x21\x49\xdd\x1e\x8d\x6b\xdf\x35\x39\xc1\x64\xb1\x56\x14\x76\xfc\x6e\xed\x59\x2c\x41\xb9\x9a\x27\xe7\x3b\x46\x3d\x40\x6b\x26\xe7\xd1\x80\x9e\xd1\xd0\xa3\x31\x8d\x0d\x37\xf5\xc3\x6e\x2d\xeb\x08\x5b\xcb\xa0\x75\xa1\x16\xbc\xd6\xc5\x21\x7a\x4b\x28\x32\xcf\x03\x32\xac\xc9\xcb\x00\x46\x57\x59\xcf\x88\x60\x9f\xa4\x8e\xb4\x76\x7d\x53\x47\x0a\x01\x25\x90\x65\x16\xdd\xa4\xaf\x5a\x27\x8a\x6d\xe2\xf6\x3e\x55\x1d\x1b\x0a\xa8\x23\xaf\x88\x0d\xc8\x55\x36\x1e\x5c\x1c\xce\xa1\x43\x96\x6f\x66\xc9\xa6\x20\x7e\x80\xd7\xbd\x6a\x69\x04\x04\x5d\x28\x8d\xfa\x06\xef\x80\x83\xed\xce\xa7\x72\xd1\x25\xe7\x55\x8b\xc2\xa0\x58\x8b\xdf\x29\x2f\x30\xd2\x9f\x1a\xf1\xd5\x2f\xeb\xf2\x88\xbf\x66\xf6\xb3\xa4\x92\xeb\xee\xbb\x19\xfa\x77\xb9\x4d\x45\x8f\xb3\xa8\x13\x6e\x11\xd1\x47\x79\xd4\x28\xa6\x79\xe9\xfd\x2c\xfe\x1c\x0c\x2d\xad\xc8\xa3\x7a\x9a\x47\x72\x42\xd1\x27\x59\xd4\xed\xed\xb9\x6d\x9d\xd9\x17\xb7\xcd\xa3\x0b\xfb\xec\xc8\x38\x3c\xbf\x6d\x1c\xdf\x1e\x1d\x5f\xdc\x5e\x9e\xdb\xb7\xc7\x67\xb7\xdf\x8f\x2f\x6f\xaf\x9a\x87\x87\xb7\xa6\x7d\xbb\xdb\x3c\xb3\x1b\xba\x43\x24\xc8\xdd\x20\x0a\xa9\x8d\xd6\x24\xfd\xcd\x41\x65\x92\x2b\xd3\x6d\xa7\x67\xc2\xda\xc6\xa6\x46\x54\x95\x53\x4f\x50\x7e\x7e\xd5\xb8\x9e\xa9\x0a\x76\xa5\x75\x75\x54\x43\xfb\xba\xd0\x39\xe5\x65\xc5\xf3\xcc\x72\xa2\x8b\x5f\x5a\x5f\xcf\x74\x60\xb5\x3e\xb3\xb4\xf0\xe4\xa5\x05\xab\x10\x95\x5f\xa6\x99\xc2\xea\xa8\xa0\xb7\xf3\x85\xc4\x6c\x4a\x9d\x89\xc7\x1e\x9e\xe8\xce\x16\x27\xbd\xb9\x8b\x13\x16\x5b\xa6\xd7\xbd\x1b\x3d\xc3\x86\x73\xdd\xbb\x59\x5c\xcc\x40\xeb\xec\x74\xae\x7b\x37\x35\x16\x8b\xfc\xa6\xf7\xce\xda\xa5\xa7\xd2\xf9\x6b\x97\x9e\xfa\xdc\xe1\x6b\x96\x9e\x5a\x17\x5a\x08\xae\x5d\x7a\xb0\x76\xe9\xcc\x59\xbb\x48\x95\x75\x5e\xdf\x5f\x1e\xb4\x43\xb6\x40\xf0\x60\x81\xd0\xe5\x8b\x03\x2a\x96\x05\xfd\xd7\x9c\x89\x14\xcc\xde\x53\xb6\x84\x1c\x07\x8b\x8b\x65\x47\x47\x9b\x38\xd1\xf3\x36\x1f\xb4\x5b\x97\x04\xee\x28\x60\x55\xf4\x48\xd8\xa5\x9e\xe9\xa7\x49\xcd\xd1\x6e\xf9\xa0\xc2\xd6\x7c\x8d\x14\xc3\x6b\x2c\x22\xed\xc5\x94\x78\x16\xea\xcb\xda\x09\x37\x11\x02\x8b\xd4\xac\x28\x4c\x46\x03\x1e\x7a\xad\x93\x8a\x48\x96\xda\x1e\x6b\xb7\x42\xed\x26\xaf\xd9\xac\xad\x88\xa2\x3a\x99\xee\xa3\x98\x04\xad\xa9\xf8\x5d\x02\xf6\x5f\x7d\x96\xcf\xb4\xf0\x52\x27\x00\x89\xa8\x75\x07\x50\xab\x93\x9c\xb5\x4c\xd5\x74\x46\x3b\xfa\x0c\x53\x2b\x4a\xa3\xbc\x08\xb7\x61\x16\xca\x90\xd9\x55\xdf\xa3\x16\x83\x50\xa8\x11\xa9\xac\x9f\x7c\x23\x81\xef\x89\x1e\x1d\x4b\xf3\x3d\x20\x4f\x93\x77\x2b\x34\xb4\x5b\xd6\x5f\x36\x04\x49\x4a\xd2\x51\x52\x5b\x5e\xd5\x6e\xf9\xea\x66\x0a\xc6\x01\x1d\x44\x53\x34\x31\x5d\xdd\x93\x58\xe6\xba\xd1\x60\x48\x62\x5a\xcb\x89\x66\x07\x74\x5e\x47\xaa\x6f\x94\x50\x8b\x04\x81\x43\xdc\xfe\xdc\x6a\x99\x88\x96\x33\x41\x5a\xb1\xf8\x5c\x42\x9d\x2a\xcd\xf7\x70\x66\x0a\x37\xa8\x33\xea\x02\x05\xca\xc3\x54\xc8\x62\x77\x3a\xd4\x7d\xbf\x7a\xcc\x32\x5b\x7b\x73\x30\x64\xba\xbc\x3f\xa6\xfb\x24\xf4\x02\x3a\xc3\x6d\x8b\xd5\x4c\x67\xe7\xb9\x64\xa9\x33\x4a\xe8\x21\x99\x44\xa3\xf4\x13\x50\xc9\x19\x67\x61\x6b\xbd\x35\x90\xa2\x38\xcb\x30\x5b\xec\x8c\x7a\x23\x97\xc6\x1f\xf4\x84\xe7\xca\x3a\x50\xa8\x60\x1e\x75\xe7\x05\x3b\x6c\xfd\x2a\x17\x98\x36\x69\x4e\x17\x41\xcb\xa3\x5c\x68\x4c\xe3\xc4\x8f\x42\xbd\x5d\x12\x9b\x51\x25\x7e\xd3\xe5\x67\xf6\xab\x96\xbd\x68\xf0\xff\xea\x9e\xd5\x0a\x03\x85\x69\x18\x71\xe8\x3f\xc5\xca\x7a\xa5\x5a\xa9\x0e\x63\xaa\x94\xad\x51\x92\x46\x03\xc5\x1c\xf9\x81\xa7\x2a\x2f\x0c\x8a\x76\xc8\xca\xcc\xec\x72\x11\x22\x6d\x73\x01\xc2\x70\x7b\xeb\x9d\xbd\xaf\x58\x4a\x4c\xdc\x1e\xf5\x46\xb8\x45\x94\xeb\xe1\xa3\xff\x6e\x7d\xfc\xfc\xd6\x07\xd3\x5d\x49\x51\x43\x1b\x95\xd7\xd6\x36\x55\x55\x36\xfa\x3a\x7c\x79\xa9\x79\x1a\xd5\x3a\x5a\x57\xeb\x69\x7d\x94\x6a\x81\xfe\xa9\x8b\x21\xd7\xd5\x7a\x1a\x4f\x9e\x1d\xee\xe3\xeb\x6a\x81\xfa\x0a\x5e\xa7\xe5\x01\xb7\xa4\x47\x21\xb6\x3e\x50\x5f\x41\x0f\xf2\x88\xbe\xb0\xaa\x51\xb4\x20\x69\x1d\x08\xf5\x78\xc8\x27\xfa\x33\xcf\x5f\x50\xc4\x59\x99\x6a\x9d\x12\x9d\x09\xb7\x0c\xf8\xbb\xb9\xc0\x43\xfd\x75\x5e\x7f\xdd\x21\x1c\x32\x9f\x68\xf9\x9d\x27\xf9\x62\xb3\x3f\xb7\x8e\x3b\x22\x5f\x96\x22\xdd\x95\xe2\x77\xca\x1e\x2e\x0c\x3c\x22\xf0\x44\x49\xbd\xd0\x26\x1a\x7b\x8a\x88\x5f\xdd\xde\x52\xd5\x7a\x87\xbc\xbc\x94\x59\x8f\xab\xac\xc7\x01\x47\x48\xc0\x3b\x3f\xe0\xbf\x21\x07\x5d\x1a\xa6\xa8\x60\x05\xf0\xb8\xf2\xfa\xf2\xd2\x2e\x8d\xc2\x7e\x18\x3d\x84\xcb\x74\x0c\xbb\xb6\x75\x22\xb4\xe4\x0b\xb8\x36\x41\x0f\x49\xd9\x55\xeb\x7d\x52\xf6\x34\x87\x9b\xe4\x99\x8a\x32\x93\x8d\xc1\x0d\xe7\xa3\x38\x10\xf7\x44\x7f\x2e\x6c\x0f\xc4\xa4\x0c\xfd\x1e\x92\xcc\x18\x46\x18\xb3\xb9\xcf\xb4\xa0\x7b\x72\x4d\x6e\x34\x57\x1f\x92\xec\x9e\x13\x02\x18\x5b\x28\x2f\xaf\xfe\xe6\xaa\x53\xb4\xb8\xbd\x01\x8b\x05\x96\x9e\x10\x36\xaf\x60\xb9\xe5\x54\xe8\x63\x1a\x13\x37\xb5\xc7\x80\xf1\xa9\x32\xb8\xc0\x80\xfc\xba\x53\x77\x75\xa7\x02\x1d\xbf\x98\x0c\x69\x92\xa9\xc7\xc0\x1c\x33\x8b\x09\x3f\x64\x84\x5a\xbf\x7b\xed\xdd\x68\x5d\xdd\xd1\x7a\xba\xc7\x9a\x4e\xc9\xac\x66\x3f\xdd\xe6\xb6\xd6\x53\xd5\x7a\x4a\x98\xb6\xdf\xa9\xa3\x15\xb0\x53\x19\xf6\x48\x42\xbd\x33\xda\xf5\xe1\xa6\x39\x3f\x0a\x8f\xc8\x80\x26\xac\xd2\x3e\x72\x2d\xe0\xc5\x7d\xb5\x3f\x6f\x63\x63\x44\xca\xfd\x6b\x7a\xc3\xe8\x4d\xad\x53\x7d\xa1\x8a\x44\xd3\xa9\xc4\x53\x15\xee\x94\x47\xa4\x3c\x1b\x0d\x05\x35\x56\x50\xad\x51\x6e\x80\x5d\xa0\xd3\x90\x6f\x69\x1e\xe0\xeb\xf5\xb5\x60\x67\x1e\x11\x69\x5d\x37\x66\xa3\x36\x55\x70\xb5\x5a\xe5\x0b\xb9\x6b\xc2\xf0\xfc\x80\xbf\x12\xae\xaf\xdd\x9b\x8a\x47\x87\x4c\xe3\x0c\x5d\x9f\x26\x40\x3b\x09\xd1\xaf\x6f\xb4\x94\x51\x8e\x36\x86\xbf\x0f\xa4\xb0\xf3\xf9\x48\x72\x9d\x79\x61\x55\x73\x61\xc4\x5c\x86\x26\xa2\xc2\xa2\x6d\x0a\x53\xae\x9a\x11\xfc\xb5\x7b\x03\x7d\xbc\x9f\x93\xe9\xe5\xe5\x9e\xa5\x2f\xe8\xba\x07\x5d\x82\xd0\x4c\x97\xd6\x34\x57\x55\xeb\x90\xa6\x7b\x75\x07\x8c\xc6\xce\xe2\x22\xa3\x6b\x80\x7e\x42\xf4\x85\x19\xd3\x37\xb7\xfc\x3d\xf8\xa1\x17\x3d\xe0\x7c\x7b\x33\xb9\xe2\x45\x2e\xf0\x89\xcf\xe6\x2b\xae\x37\x54\xed\x89\xcf\x3d\x83\xff\x9a\xb3\x8c\xc0\x22\xdc\x2e\x41\xf4\x01\xfb\xe4\xfb\xb8\xf3\x36\x6c\x9f\x66\x98\xff\x56\x95\x2f\xce\x1d\x9d\x54\x98\x4e\x4f\x8f\x22\x8f\xd6\x71\xd1\x16\x90\xb2\xc3\x40\x28\x4b\x49\x1a\x5f\x24\x3a\xaa\x2a\xed\x0c\x35\x00\x06\x83\xec\x98\xec\x7f\x61\xc0\xab\x99\x44\xbf\x26\x37\x35\x83\x31\xe9\x2c\xaf\xcd\xb9\x86\x41\x84\x49\xcd\x20\x9a\xa3\x9b\xa4\x6e\xb2\x4f\xec\x1f\x74\x8a\x8d\xae\xc3\x0d\xd4\xd5\x3a\xf9\xcd\x11\x22\x9a\x2c\x2d\xa9\x16\x29\x3b\x8c\x4c\x25\x28\x76\x49\x41\x3d\x65\xd0\xe7\x89\x7b\x12\x57\x97\xb3\xf0\x98\x3c\xe3\x3e\x83\x0f\xf7\x6d\x89\xbe\x4b\xb4\xdf\x41\x1c\x1d\x00\x3b\xcf\x32\x1d\xf2\x4e\x70\xe3\xaf\x41\x5e\x5e\xf8\xa7\x49\x54\x56\x83\xc6\xba\x29\xcf\xb0\x96\x3c\xc3\x0e\x72\x4b\x58\x19\x6c\x5f\x07\x20\xcd\x98\xd8\xe4\xf1\x4d\x91\xfd\x95\x1f\x46\x7b\x06\x08\x34\xd6\x30\xca\x88\x23\xa2\xaf\xfc\xdf\xeb\x9a\xb1\xfc\xe7\x2d\x59\x7e\x6a\xb7\x47\xd5\xaa\x55\x5d\x86\xdf\xc6\x06\xfe\x6c\x61\x70\x17\x83\xbb\x18\x5c\xdb\xdd\x65\x3f\xeb\x9b\x98\x79\x7d\xb3\x81\x3f\xbb\x2c\xb8\xba\x0b\xa9\x6b\xd5\xaa\xb5\x8c\xbf\x0d\xf8\xc1\xcc\x6b\xab\x5b\x90\x6a\x55\x31\xb8\x6b\xb3\xe0\x7a\xb5\xba\xca\x82\x8d\x4d\x28\xbb\xbb\x8d\xa9\xbb\x0d\x0b\x82\x8d\x5d\x0c\xee\xee\x36\x6e\xfe\x77\x81\xdb\x6e\x2f\x57\xaa\xcb\xdb\x00\x8d\xb9\x09\xcd\x56\x39\x14\x1b\xd8\xec\xfa\x2e\x36\xfb\xa5\x7a\xf3\x8f\x5f\x56\xb4\x63\xf2\xe1\x2e\xfc\x09\x30\xc1\xd3\x69\x51\x7a\x26\x26\xf1\x31\x41\x75\xea\x94\x30\x76\xcb\xdd\x51\xaa\x75\x29\xe5\x44\x4e\x01\x2e\x7f\x44\x2a\x29\x4d\xd2\x72\x16\xad\x9c\x02\x77\x5e\xa8\xd6\x4f\xc4\x47\xe6\xd8\x92\x6f\x2d\x66\x13\x42\xa6\x64\x77\x71\x91\x2d\xc0\x5d\x98\xe5\x79\x2b\x7c\xc7\x8d\xf3\x11\x27\xdb\xbd\xcb\xb9\x8c\xd8\xbf\x4b\xc0\x6b\xa9\x5d\xaa\x65\xb0\xf3\x84\x6c\xb7\xb0\xc6\x54\xa5\x42\x07\x44\xdb\x22\xd2\xad\x10\xd7\xa5\xc3\x34\x31\xb1\x4c\x02\x9b\x19\x69\x74\x18\x3d\xd0\xd8\x22\x09\x2d\xab\xa8\x7a\x96\xab\xda\xd7\x5c\xf9\xf6\x48\x4a\x96\x81\xdf\x81\xcb\x0a\xd3\xf5\x79\xb0\x2e\xbc\x7f\x33\x34\x14\x76\x3e\x67\x31\xa1\xeb\xba\xf3\x26\xcf\x76\x5e\x5e\x24\xe4\x15\x06\xe9\x8d\x7e\x71\xf4\x71\xac\x22\xf2\xd6\x05\x30\x4e\x9d\xdf\xe0\x21\x8a\xb2\xc6\xeb\xfc\x26\x0e\x71\xdc\x27\x39\x22\x47\x65\x47\xc5\xe8\x8d\xe9\xe8\x97\x97\xd5\x7f\x3a\xaf\xb3\x63\x3c\x96\x35\x59\xae\x7c\x4f\xa1\x56\x5f\xc3\xbe\xae\xe3\xcf\x17\x68\x1c\x33\xa6\xfc\xb6\x59\xa6\x5d\xe8\xde\x9c\xc8\x64\x48\x5c\xaa\x53\x4c\x19\x8c\x92\xf4\x32\xc9\x1c\xf0\x75\xb7\x9e\x79\xcd\xb0\x30\x54\xc2\x9d\x67\xc0\x16\xc6\x5b\x49\x48\xe8\xa7\xfe\x13\xbd\x3c\x3b\xd4\x3b\xc0\xd8\x2c\x9c\x1b\xed\x92\xb0\x58\x2a\x1e\x09\xbb\x34\x8e\x46\x49\x30\x39\xa7\x69\x33\x0c\x69\xbc\x7f\xd1\x3a\x14\xbe\xa9\x78\xf3\x3b\x0f\x58\x3d\xea\xf6\x29\xd3\xf7\x44\xae\x64\x34\x1c\xc6\x34\x11\x8f\x9f\xd8\x9e\x9f\x12\x27\xa0\x57\xb8\x32\xca\x92\xf7\x27\x1e\x2a\x53\x59\x42\x3a\x09\x68\xbb\x54\x49\x86\x81\x9f\x96\xdb\x25\xa5\x5d\x52\x2b\x7c\x8f\xa3\x2c\x2f\x45\x2c\x36\xc7\x42\xfa\x00\xe8\xae\x6a\x0b\xab\x1a\xc1\xed\x85\x85\x55\xf5\x55\xad\x5f\x5f\xb7\x4b\x88\x74\xab\x47\xe2\x84\xa6\xe0\xe8\x80\x31\xcb\xae\x88\xba\xd1\xae\xdb\x25\x70\xbf\x66\x98\x82\x2c\x10\xe2\x29\x6c\x01\xbb\x1b\xc5\x10\xdf\xc1\x3d\xdf\x6b\x5c\xfd\xda\xf7\x23\x7f\x0c\xf1\x2c\xb4\x4c\x31\x78\x73\x33\x17\x54\x2e\xea\xaf\xab\x37\x75\xeb\xda\x11\x50\x3b\xda\x2a\x40\x7d\xbd\x7a\x53\x00\xbc\x5d\x72\x8b\x38\x83\x66\xbc\x98\x74\xbb\x59\x28\x19\xd2\x20\x00\xa4\x43\x10\xaf\x94\x2e\xcd\x6f\xbd\x80\xa8\x35\x68\xb2\x38\xab\xe5\xd6\xdb\x21\xc3\xdb\x28\x8d\xce\xe8\x98\xc6\x09\xb6\x46\x1f\x53\x1a\x87\x24\x38\xa3\xfc\x45\x9b\x33\x34\x18\x78\x1c\x31\xee\x28\xc9\x20\x63\xa3\x4a\xe3\x31\x35\x82\x61\x8f\xfc\x00\x48\x05\x20\x4a\xf0\x16\xca\xee\x28\x08\xce\xdd\x98\xd2\x50\x81\xa3\x4e\x0a\x83\x6b\x97\xb5\x06\x5f\x27\x01\x99\xc0\x55\x25\x71\x14\x24\x99\xc7\xb4\x47\x3b\x14\x2e\x6d\x66\x10\x79\xe2\xe3\xc4\x77\xd3\x51\x4c\x9b\x21\xff\x60\x0b\xf9\xc1\x51\x04\x46\x59\x92\x52\xa5\xe7\x7b\x1e\x0d\x95\x20\x8a\x86\x4a\x18\xe1\x39\x06\x25\xcc\xd3\xa3\x21\x0d\x95\x61\x40\x26\x49\x33\x0c\xfc\x90\x2a\x31\x25\xde\x71\x18\x4c\x14\x6e\x3b\xf1\x94\x18\x11\xe6\x29\x89\x1b\x0d\xd9\x0f\x25\x83\x80\x26\x89\xe2\xa7\x74\x70\xce\xe2\x7e\x98\xaa\xd7\x3f\x33\x58\x2e\x4e\x3d\x40\xfe\x60\x14\xa4\xfe\x90\x8f\xc4\x60\x94\xf2\xe8\x84\x06\x70\x15\xd9\xa7\x86\x63\x5d\x5b\xa8\x4e\x4d\xa5\x76\xc9\x25\x43\x86\x36\xa4\xc4\xe8\x21\x0c\x22\xf2\xb9\xda\xbe\xcc\x4e\x4c\x46\xdf\x41\x02\x55\xc5\xd1\x03\x7e\x24\xfe\x93\x20\x6c\x26\xac\x3e\x51\xf1\xc6\xbc\x8a\xe3\xe8\xe1\x1c\x2a\x60\x35\xa5\x24\x4e\x3f\x55\xd5\xd7\x0f\xd0\xcc\xa6\xef\x25\xd1\x57\xae\xdb\xed\xe5\xda\x4d\xf9\x9a\x2c\x3f\xdd\xa8\x2b\xdd\x5c\x2f\xfd\x46\xe4\xad\xcc\xeb\xd5\x9b\x4a\x1a\x5d\x0e\x87\xa2\xae\x57\xc6\x56\x19\xe7\x09\xd3\xe5\x1e\x05\xe3\x24\x09\xfc\x2e\x58\x94\x96\x1d\x92\x50\xa0\x28\x12\x13\xc7\x77\x97\x19\x61\x2a\x22\x72\x19\x0e\xbc\x2a\x2e\x19\x8a\x82\x6e\xe0\x0f\x97\x87\x24\xed\xe1\x57\xcc\xe8\xd4\x8d\x82\x28\x5e\xf6\xc3\x94\xc6\xc3\x28\x00\x6e\x3a\x2f\x6e\xb9\xe3\x07\x29\x8d\x13\x9e\xc6\x9d\xc1\x79\x08\xf7\x2c\x18\x03\xf6\xa2\x81\x1f\x12\x19\x32\x1a\xb2\x29\xb4\xec\x10\xb7\xdf\x8d\xc1\xe6\xd9\xf1\x83\x60\x39\x1a\x12\xd7\x4f\x27\x18\x00\x40\x3a\x41\x14\x79\xcb\x50\x21\xff\xce\xf2\x44\x61\xba\xdc\x21\x03\x3f\xe0\xdf\x6c\xc0\xf3\xaf\x65\xe2\xdd\x8d\x92\x94\x47\xa4\x31\x4d\xdd\x9e\x08\x4c\x02\x9e\x91\x9b\x11\x31\xf0\x80\xe8\xe8\x06\x93\x61\x6f\x39\x24\x03\xca\x3f\xa3\xd8\xa7\x61\x8a\xfd\xed\x45\xb1\xff\x14\x85\x29\x09\xe6\x24\x8e\x69\x9c\xfa\x2e\x09\x14\xc8\xb5\x4c\xbc\xf1\xf2\x23\xff\x8e\x62\xbf\xeb\x87\xcb\x8f\x8a\x3f\x20\x5d\x2a\xa1\x26\xa0\x69\x4a\xe3\x65\x26\x80\x21\xc8\x40\xf0\xc3\x2e\xef\xf1\x80\xc4\x7d\x1a\x2f\xd3\xd0\x13\x9f\x03\x3f\xfb\x04\x6a\x54\xa2\x31\x8d\x61\x5c\x87\x51\xe2\xa3\x41\x49\xc4\xa4\x3d\xdf\xed\x87\x8c\x5f\x0c\x89\x1f\xa6\xcb\x51\xec\xd1\x58\x19\x92\x30\x4a\xe8\xf2\xaa\x32\x8c\x60\x2c\xd1\xbc\x94\x28\x19\x4c\x30\xc4\x61\xaa\x24\x3d\x32\x94\x41\x4d\xd2\x68\xc8\xe1\x82\x4f\x31\x10\x49\x1a\xfb\x7d\xca\xd6\xa3\xa3\x6e\x2f\x07\xa3\x18\x9d\xc3\x92\xa4\x71\xd4\xa7\xcb\x1e\x49\x7a\x04\x6e\xee\x96\x22\xa2\x4e\x27\xa1\xa9\x88\x61\x9d\x70\xc9\x50\x0e\xde\x45\x7e\x28\xc2\x03\x3f\x65\x1d\x1d\xf8\x59\x01\x09\x22\x16\x7c\xf0\xbd\xb4\xa7\xa4\xf4\x31\x5d\x26\xa1\xdb\x8b\x62\xfc\xe6\xd7\x8f\xc2\x2d\xfd\x2c\x9c\xf7\x10\x6c\xf2\x45\x64\xe6\x51\x79\x0f\x46\xa1\xef\x46\x1e\x5d\x76\x7c\xcf\xcf\x02\x31\x53\x6d\x58\x28\x4d\x96\x87\x0c\xab\x03\x65\xbc\x4c\x98\xc4\x72\x68\xea\xbb\xca\x78\xb9\x47\xc2\x2e\x6b\x65\xbc\xec\x7b\x34\xea\xc6\x64\xd8\x83\xf8\x01\x49\x7b\x74\x40\x90\x74\xc6\x60\xd4\x5f\xa6\xb0\x87\xa3\x30\x8a\x02\x3a\x9a\xe0\x67\x46\x46\x72\x68\xa2\x3c\x44\xb1\x97\x91\xd0\x43\xec\x03\x05\x0d\x22\x8f\x2a\x8f\x83\x20\x4c\x6a\x8f\x81\x1f\xf6\x95\x47\x3e\xe1\x3f\x23\x33\x84\x25\x41\xb8\xe0\x5c\x12\xad\x1d\x7e\x23\xea\x3c\x65\xa3\x28\x66\xa1\xad\x1a\x71\xd3\x11\x13\x72\x3c\x14\xbb\x71\x14\x88\x90\xf4\x99\xf4\xa2\x07\xfe\x99\xfa\x69\x16\xcd\xd4\xca\x9f\x84\xf2\x2d\x18\x51\xa9\xaa\xad\xac\x3c\x3c\x3c\x54\x1e\xd6\x61\x7b\x61\x75\x7b\x7b\x7b\x05\x5a\x6c\x97\x72\x86\xff\x38\x08\x6a\x8c\x4f\x01\xc7\x67\x81\x80\x84\xdd\x2c\x00\x9a\xf2\x5b\x22\xe0\x2f\xc2\xf3\x47\xeb\x90\xc1\xb4\xb5\x12\x0a\x95\x5c\x86\x2b\x25\x0e\x5c\x8e\x8b\x1a\x65\x1c\x25\xc9\x31\x8c\xff\xa7\xe4\xd1\xea\x87\x62\xdf\xaa\x00\x26\xf6\x63\xda\xe1\xa5\xf8\x58\xee\xc3\x01\x1b\xac\x41\x0c\x6f\x0f\xe3\x3e\x46\x6a\x15\x40\x4f\x62\x17\x73\x8b\x62\x84\xaf\x35\x51\x07\x1e\x18\x3c\xf8\xd7\x3a\x52\x15\x82\xf5\x8a\xe8\x84\xfc\x84\xd3\x4c\xfd\x6a\xc6\x00\xd9\x2e\xcd\xf7\xf4\x6a\x97\xd4\x97\x97\xf2\x15\xa9\xcc\x4f\x9e\x72\x3f\x53\x3f\xac\x59\x72\x15\x9b\x5b\xb5\x94\xae\x4f\xb9\x92\x15\xf6\x7c\xfe\x90\x56\xc0\x68\x22\xb7\xa6\x1b\x76\xd4\x1d\x46\x90\xb5\xcc\xc9\x17\xfd\x52\x17\x74\x9d\xee\x54\x75\x5d\xa7\xb0\xaa\xab\x79\x3b\x0b\xab\xb5\x85\xf2\x5a\x66\xac\x53\xc1\xaf\x15\x96\xe1\xce\x75\xf5\x86\x2d\xcc\x8f\xb3\x10\x4b\x0b\x79\x68\x15\xd2\x8e\xb2\x10\x54\x54\xad\x77\x5e\x5e\xca\x17\x68\xa7\xa3\x9a\xa7\x2e\x2e\x96\xd1\xd5\x59\xd5\x3c\xb4\xb9\xb1\xb6\x77\xce\x48\xd9\x61\x69\x3c\xc2\xdd\x61\xb3\x69\x10\x8d\xa9\x21\xd6\xab\x65\x47\xad\x91\x4a\x42\x53\x29\x46\xe3\x2e\x83\x6a\x8d\x4e\x2f\x5f\x77\xc8\x35\x2d\xac\x5d\x6f\xf4\xac\xee\xf5\xac\xbb\x0c\x46\xf0\x6f\x74\x6b\x65\x47\xa7\xc5\xd5\xb1\xe6\x4d\xc7\xc0\xe4\xd4\xde\x87\xb1\x4c\x79\xdd\x9a\xab\x43\x43\xb8\x26\xa7\x8b\x8b\x0b\x55\xee\x18\x0b\x3e\xc9\x0c\x70\xcd\xdb\x29\x76\xe9\xe8\x1c\x36\x75\xdc\x39\x5d\x75\x55\x55\x55\xb9\x2b\xe2\x77\xa2\xaf\xfc\xdf\x72\xe5\x1f\xea\x75\x1b\xfe\x5b\xb9\x59\xd1\xec\xcf\x9f\x3b\xfc\x93\xe8\xf6\xa7\x0e\x1e\xfe\xf2\x46\xc6\xe9\x93\x87\xc4\x99\x9f\x6f\xf6\xe8\xa1\xf3\x46\xce\xb9\x67\x0f\xdd\x37\x32\xcf\x1e\x3e\xf4\xde\xce\x39\x75\xfa\x90\xbe\x91\x73\xe6\xf8\x61\xe7\xed\x8c\x7c\x92\xcb\xd0\xae\xae\x6a\xdd\xb7\x90\x30\xef\xc0\x62\xef\x2d\x3c\xcc\x9c\x58\xf4\x3f\xc8\x79\x1b\xf8\x49\x9a\x1d\x4b\x5c\xab\x6a\x77\x6f\x14\x28\x9e\x71\xec\xbf\x91\x4b\x1c\x72\xc4\x23\x8e\xc1\x1b\xb9\x9c\x20\x72\xfb\x3c\xdb\xda\xaa\x36\x70\x7e\xf6\x28\x64\xe8\x70\xbb\xe9\x07\x5e\xf4\xaa\xe4\x25\x5a\x27\xfa\xc0\x59\x5c\x24\xd7\x03\x67\x9e\x2f\x7d\x66\x4e\x9c\x07\x10\xd9\x21\xc8\x3e\xf3\x7d\x58\x01\xc1\xf2\x2a\xb8\x3c\x73\xcf\x28\xf5\x39\xfb\xd4\xab\xd9\x0e\x0b\xb8\x4f\xd5\x1d\xdd\x29\xab\x75\x52\xe1\x9e\x53\xba\x53\x77\xa6\xee\x08\x71\xd4\xe7\xaa\x5c\x1b\x6c\xc7\x38\xc2\x33\x51\xcb\xab\x66\x42\x2d\xab\x46\x7d\xd5\xde\xab\x21\x2f\xb5\x56\x2c\xa5\x16\xac\xa1\xc3\x22\x4a\x8b\xa8\x9b\xda\x5a\xd2\x67\x31\x4c\xe4\x83\xeb\x2f\x2f\xa4\x12\xc2\x6f\x5e\x5a\x1c\xf8\x98\x57\x56\xd8\x99\x09\xb7\x91\x12\xa7\x26\x46\x63\x37\xe3\x05\x68\x03\xfd\x85\x64\x49\x27\x9c\x9d\x60\x82\x9b\x97\x39\xc9\x26\x3a\x26\x39\x79\x52\xee\x43\x2b\x12\x7b\x52\x62\x36\x8b\x30\xc9\x9f\x4d\x3a\x84\x59\xf3\x3a\x7d\xd2\x21\xeb\xd1\x5b\x47\x54\x68\x5e\x95\x38\xe8\x2f\xdc\x0e\x45\x6b\xde\x6c\x96\x93\x8c\x0f\x61\x96\xae\x53\xcb\x95\x46\xb6\xd4\xa8\x03\x79\xc8\x88\x77\x38\xe2\xc1\x4f\x7e\xfe\xd8\x80\xc7\xfc\x02\x9e\x76\xd9\xcd\x5c\x0a\xcb\xdc\x3d\x45\x65\x62\x26\x94\x53\xda\x25\x6e\x7f\xbe\x13\x10\x02\xb1\xa0\x51\x1b\x53\x82\x62\x0a\x02\xc7\xd3\xfa\x4e\x0d\x76\x29\x0b\xf3\x64\x27\xa3\x44\x3c\xa7\x22\x95\x56\x5f\x65\xd7\xee\x8c\x3e\xef\x9d\x5c\x67\x86\xce\x79\xd1\x33\xc9\x8f\x04\xa5\xa4\x9b\x19\xd8\xb9\x5d\x9d\xdb\xcc\xf9\xb5\xd4\x78\xb1\x76\x15\x7f\xb7\x01\x8f\x78\x2e\x05\x0f\x1b\x29\xf9\x66\x81\x70\xac\xb8\xf5\xa8\x33\xea\x82\xbb\xbd\x46\xb3\xf0\x39\x18\x20\xb5\x8e\x2e\xe3\x00\x77\x2f\x3d\xd0\x52\x86\x4e\xd9\xc3\x78\xb5\xee\xe9\x9d\x7a\x07\x5b\xa1\x3b\xec\x43\x29\x13\x70\x04\xa2\x15\x46\xa1\x6c\x3c\x32\xf5\xff\x3b\x1e\x45\x51\xf1\xec\xd1\x12\xad\xb0\x75\xe4\x11\x1c\x8b\xe2\xc3\xe2\x2e\x2e\x96\xb1\x12\xdc\x2e\xf6\x14\x67\xc2\x2a\x73\x31\x9d\xc1\xd1\x2e\xb5\xf9\xb5\x1c\x21\x4b\x29\xc3\x81\xad\x4b\xf4\x0c\x61\x75\x77\x5e\x9d\x25\xdd\x85\x7d\x15\xc4\xf2\x2b\xdc\xfa\x59\x26\x92\xf7\xbb\xec\xea\x01\x48\x2f\xee\x02\x91\x6c\x17\x28\xdf\xda\x99\x3e\xc4\x35\x7d\x72\xeb\x8d\x43\x5f\xd2\x36\x4b\x2d\xe3\x05\xc5\x3d\x1b\x86\x12\x69\xaf\x37\x71\xe4\x95\x13\x1c\xdb\xc5\x7c\x65\xd6\xa5\x30\xf2\x00\xa7\x2a\x53\x29\xfd\x70\x38\xc2\xd9\x39\xb5\x00\x58\x5c\x2c\x73\xa3\xa5\x13\x3d\xe2\xb9\x2f\x86\xa5\x98\x78\x7e\x84\xc1\xc2\x0e\x6e\x2a\x35\x09\xcd\xef\x48\x26\xcf\x5a\x66\xfa\xd6\x5c\xfd\xa3\x07\x6b\x88\x7c\xf8\x57\x7a\x04\xcb\x51\x35\xee\xb6\x4e\xae\x1d\x74\x6e\x98\x59\x00\x38\xd0\x27\x09\x61\xb9\x94\x73\x8b\x07\xb5\x73\x76\xe4\x32\x50\xde\x4e\x4c\x68\x2a\xd4\x7e\xc8\xa9\x75\x74\x88\xac\xcf\xbf\x59\x89\xad\x14\x9e\x5d\x58\x54\x8c\xf0\x3a\xa5\x85\xaa\xd6\xa5\xe9\xec\x39\x7a\x85\xe6\x97\x71\xab\xaf\x5a\x42\x8b\xe7\x39\x44\x5f\xeb\x1d\xe9\x21\x64\xa2\xbe\xbe\xaa\xef\xb5\x2c\x5d\xe3\xe4\x56\xf2\x40\x76\x6c\xe3\xb9\x4b\xb9\xeb\xf8\x2c\x3c\x1e\x00\x31\x95\x2a\x41\xf2\xaa\x25\x69\x34\xbc\x88\x89\xdb\xf7\xc3\xae\x5c\x01\xa9\xe0\x55\x6a\x90\x46\x63\xbd\x1d\xe2\x4c\xa7\x01\x4d\xa9\xc2\x86\xeb\xf5\x55\x22\xcf\x47\x07\x0f\x6e\x16\x0a\xbd\xbc\x94\xa7\xab\x01\x9a\x92\x9c\x0f\x26\x42\xf8\x2e\x90\x7c\x27\x31\xd3\x1e\xe4\xa2\x40\x1d\x4e\xbe\xf9\x88\x7c\xcc\xa9\x88\xde\x97\x71\x51\x8b\x3d\xab\x13\x38\x11\x81\x54\x4b\x2a\x9c\x6a\x77\xda\xa5\x34\x66\x24\x5b\x6b\x97\xe0\x51\x80\x76\xa9\x46\xc4\x0d\x68\x44\xf7\x32\xb1\xb1\xc0\xd6\x1d\x65\xa7\x22\x70\x57\x26\x2a\x5b\x37\xd7\xe4\xad\xc6\x27\x87\x3b\xfe\x73\x38\x78\x1b\xa2\x8e\xb0\xfc\xfc\xca\x46\xaf\xb8\x4b\xc7\x3d\xbe\x35\x79\x23\x4f\xc4\x8d\xe5\x00\xaf\x8d\x9f\x3f\x73\x77\xdc\x1a\xa9\xdc\x3e\xc4\x64\x38\xa4\x31\xf8\xf5\x56\xfc\xd0\x4f\x7d\x12\xf0\x8a\x5f\x0b\x33\xd7\x28\xc0\x86\x7a\x4d\xa6\x4d\x41\xa3\xb8\xaa\x2a\xc6\x69\x1e\x5f\xe1\x66\x9d\xd9\xc9\xbe\xf2\xac\xbc\xc1\xba\xab\xc7\x8e\x38\xb4\x82\x38\xdc\xe1\xbf\x35\x17\x94\x3d\x19\x5a\xfd\xb9\x08\x6e\xcd\xd3\x78\x04\xa2\x00\x8f\x05\xc7\x51\x10\x50\xaf\x36\xcd\xa3\x32\x47\x3f\x89\x51\xe1\x6a\x74\x0a\xdc\x5a\x01\x1c\x89\x3a\x4d\x8e\x0f\x47\x1a\x27\x9e\x77\x71\x11\x6c\x01\xf2\x66\x8e\x03\xc6\x1e\xd9\xe3\x88\x17\xe7\xd5\x70\xd2\x8b\x9d\x32\x6f\x89\x71\x31\x84\x28\xdf\x04\x77\x55\x50\x95\x84\x60\xd0\x85\x63\x16\xac\x69\x19\x6b\xe2\x0c\x1a\x2a\x60\x6a\x23\x7c\xb0\x72\xfc\x13\x67\xa8\x8b\x4e\x71\x59\x32\x8f\x05\xed\x56\xce\x26\x1f\x44\x4d\x46\xce\xc0\x4f\xf3\x63\xcb\x31\x85\x0d\x57\x04\x61\x76\x0d\x9e\x31\x72\xc1\x50\x5e\x9d\x59\x23\x8c\xc8\xb2\xd3\x00\x1c\xf0\x05\xbb\x5a\x9b\x93\x55\x26\xa9\x76\x49\x5d\x5c\x94\x8b\x00\xd2\xe4\x1c\xaa\x5a\x17\xf4\xc9\x47\x40\x9c\x2b\x9d\xa6\x38\xe8\x73\x31\x4a\x5f\x58\x98\xce\x55\x18\x38\xdb\x91\x7c\x90\xde\xe9\x15\xd3\x1e\x3f\xea\x87\x70\xc3\xcb\x07\x7a\x41\xc2\xf5\x82\xae\x7b\x6c\x54\x39\xae\x17\x00\xf5\xd2\x19\x2d\x68\x29\x3b\x3b\x2b\xe8\x86\x73\x33\x7e\x0e\x7b\xe9\x8d\x29\x0e\x10\xd4\xdd\x97\x17\x47\xa6\x98\x8c\x00\x1c\x36\xdb\x64\x60\x75\xe7\xd5\xd5\x71\x1d\x52\xe7\x1a\x2f\x12\x0c\x8b\x81\x96\xa4\x12\x39\x26\xdf\x67\x30\x73\x6a\x72\x0b\xb8\x6e\xc8\xb8\xce\x09\x7f\x01\x94\x0c\x52\x81\xd3\x54\x0d\xe1\xf5\x47\xdc\xd4\x1f\x0b\xaf\xbf\x05\xb6\xe8\x42\x22\x70\x77\xa6\xba\xf2\x21\x5e\x6a\xc5\x02\xc5\x19\x32\x5b\x95\x7c\xd8\x79\x77\x5a\xb1\x26\x24\x3b\x27\x9a\x59\x58\x49\xe1\xcc\x64\x7e\x1c\xd8\x59\xd2\x89\x2a\x1f\x9d\xcc\x1d\xef\x38\xb7\x20\x7a\x58\x7e\x16\x2e\x1d\x9c\xaf\xbf\x32\xf6\xc1\x68\x51\xdf\x65\x13\x41\xa4\xaa\x2a\xc9\x8f\xab\x39\xf2\x41\xda\xdc\x4b\xcf\xc9\x2d\x96\x4c\xe3\xe3\x4f\x99\xa3\xcb\xe0\xb3\x03\x3e\xa6\xdc\xf7\x97\xea\xd5\x3a\xfd\xcd\x15\xce\x83\x74\x69\x49\x75\xae\xf1\x56\x09\xf7\x9a\xde\x80\x7b\x14\x78\x9d\xea\xd5\xba\x9b\x1f\xe4\x77\x97\x96\x54\xaa\xcf\x99\x08\xbf\x80\x7e\xe6\xde\x08\x66\x07\xdf\x62\x63\x7b\x01\x4c\x75\xe5\x42\x9c\x4e\x55\x8d\x2e\x2e\x7a\x22\x9e\x0f\xc3\xb9\x48\x5e\xa8\xe2\x6d\x00\xcf\xfc\x7c\x7c\xec\x94\x5d\xb5\x8e\x87\xe6\x00\x32\xec\x01\x91\x7b\x00\x0e\x9f\xd7\x94\x03\xc1\x98\xa8\xfa\x0c\xe1\x24\xaf\xb5\x8e\x2d\xd2\xb9\x2d\x0a\xe6\x26\xa6\xe0\xcb\x0b\xe6\xe4\xee\x0a\x2f\x2f\x65\x47\x67\x31\x6a\x96\x83\x8d\xb2\x5c\x7d\xd1\x6c\xd0\x74\xb2\x4b\x84\x32\x7e\x35\xdf\x6d\x67\xda\x25\x59\x3a\x2b\x2d\xb4\x84\x82\xec\x9f\xa7\x1c\x64\x74\xf4\xe1\x84\x78\x95\x28\xfc\xf7\x29\x1d\x05\xaf\xff\xcb\x4c\x1d\xae\xfa\x8c\x9a\x0b\xd6\x5d\x77\xa6\x94\x04\x59\x9a\x49\xfd\x9c\xee\xcf\x1a\xba\xb0\x17\x8f\xd6\xbb\xe8\x97\xbb\x50\x5e\xfd\xa7\x2e\x48\x71\xc6\xad\x7c\x5d\x65\x4b\x37\xf7\xba\x7a\xf3\xea\xe8\xee\x2b\x17\x04\x60\xfc\x41\x36\xe5\xea\xce\xeb\x5b\xaa\x04\xe2\x07\x68\xa7\x30\x30\x07\x85\x4e\x17\xa5\xf4\xac\xf8\x91\x8e\xd4\x73\x6a\x74\x35\x77\x21\xe3\xb3\x92\xa0\x75\x55\x6d\x9e\x26\x25\xdd\x89\x23\x38\xd0\x1c\xe6\xe3\xaa\xa2\x25\xef\x0d\xce\xe4\x49\xe3\x76\x58\x5c\xec\xd1\xc7\x94\xfb\x72\xd5\x51\x04\xbc\x3d\xfa\xa8\x59\x20\xf5\x4a\x74\x9c\xcb\x0a\xf0\x38\x6b\x39\xfa\x73\x2f\x1d\x04\xb5\xb7\x77\xa6\x58\x72\xbb\xa4\x0d\x48\xda\x7b\x3b\xdf\xd6\x4a\x8b\xa4\x3d\xf8\xd3\x3a\x6c\x97\xb4\x64\xdc\x9d\x9b\x75\xad\x5a\xad\xae\x24\xe3\x6e\xbb\x54\x70\x02\x3d\x92\x17\xd9\xf9\xea\x1a\x32\x66\xab\xe0\xf7\x6a\x13\xae\x96\x0c\xca\x77\x8b\xcc\xc2\x3a\xb3\xda\x7e\x1f\x11\xf2\xad\x40\x4e\xc1\xeb\x9a\x5b\x0d\x99\xa2\xf5\x7e\x15\x6c\xe4\x76\x8e\x9c\xb2\xa3\x7e\x80\x23\x9d\xfb\x73\x76\xa2\x98\xfa\xdd\xf0\x38\xb7\xb6\x39\x3b\x1f\x35\x52\x13\xb7\x2f\x9c\x38\xda\xa9\x33\xe7\x70\xe0\x1b\x4b\xe9\xd6\xb9\x31\x1c\x2e\x2e\xc2\x4f\x85\x3e\x52\xf7\x32\x4c\x48\x87\x1e\x46\x2e\x09\x76\x79\x25\x3b\xb9\xb1\x55\xb8\x95\xbf\x9b\xbf\x3c\xbb\x1e\x95\xfc\xcf\xd5\xd7\x1a\x79\x2d\x77\xa6\x2f\x64\x43\xdd\x02\x36\x8e\x2e\xcf\x9a\x0b\xba\xde\x72\x2a\xc9\xb8\xcb\xd0\x9b\x79\x38\xb2\x4f\x85\xa8\xa4\x92\xc5\xe8\x0e\xe8\xbf\xcf\x27\x8e\x7e\xe2\xbc\xbc\xcc\x3f\x5d\xc0\x74\x3a\x7f\xcc\xd8\xca\x89\x23\x15\x6d\x97\x7e\x4b\xc6\xdd\x7f\xc2\xd9\x79\x98\x25\xc7\x9d\xb2\x9a\xdf\x5f\xa2\x2e\xb5\x4b\xbf\xad\x60\x0e\x10\x4e\xac\x89\x4a\xc7\x8f\x93\x14\x94\x85\x3a\x91\x03\xaa\xd0\xaf\x21\x58\x96\xd3\xf0\xec\x7a\xdd\x99\xca\xce\x26\x72\xe8\x61\x76\x39\x0d\xcc\x02\xb2\xc7\x74\x2e\x6f\x32\xe6\x56\x68\xda\xef\x94\xdd\xc5\x45\x17\x18\x44\x40\x78\xec\xe2\xe2\x3a\x78\x37\x87\x91\x47\x2f\xd0\x17\x17\xbe\xb9\xa2\x28\x84\xe2\x6b\x81\xcb\xe8\x92\x36\x73\x5e\xe0\xa6\xcf\xaf\x75\xf7\x7a\xca\xaa\x74\xc3\x54\x62\x39\xa2\xee\x5e\xb7\x4b\x57\xd4\xe9\x33\xc5\x78\x89\xdc\xe8\xed\xd2\x83\x08\x39\x90\xd8\x8a\x9e\x44\xca\x00\x3e\x33\x9d\xc7\x05\xfe\x74\xe1\xe8\xcf\x24\xf4\x07\xe0\x7d\x42\x43\xaf\x76\xee\x94\xdb\x25\x43\xc4\xc0\x86\x78\x16\xb2\x43\xaf\x5d\x52\xb5\x2c\x3f\x6e\x6d\xf8\x51\xf8\x6e\xa9\xa6\xc8\x55\x28\x0b\xbe\x42\xef\x96\x3b\x47\xdf\x36\x55\x4b\x63\x12\xa2\xf3\x4b\x06\xe0\x45\x16\x05\x65\xf2\x20\x82\xf8\xaa\x5d\x32\x3d\x4d\xfb\xe6\xa0\xc3\xef\x84\xe9\x91\xdf\x1c\xfd\x03\x6a\xad\x80\x23\x56\xa1\xc7\x78\xd0\xcd\x0f\xb3\x43\x39\x65\x6e\x97\xb9\x70\x2a\x32\xde\xf2\x80\x36\x27\x43\x86\xa8\xf7\xb3\x01\x4e\xf2\xa0\x5a\xec\xd9\x0c\x28\x79\x0d\x05\x0c\x49\x21\xe9\x78\xeb\x95\x30\xff\x5c\xc2\xd9\x16\x4e\x04\x10\x80\x15\xd6\x85\x1c\x4d\xb8\x61\x08\x22\xe5\x93\x53\x8e\x3a\x6f\x79\xe7\xaa\x8b\x8b\x90\xfc\xcd\x29\x54\xac\x3b\xd7\xee\xcd\xf4\x65\x35\x7f\x38\xfa\x15\x1b\x42\x19\x7b\x6c\x94\xbf\x4f\xc7\xfb\x32\xdd\xfc\x39\x9d\x9a\x08\xea\xf8\x85\xa7\x14\x70\x00\xa4\xc6\xb4\x0c\xe2\x44\x71\xaa\xb8\x24\x1c\x82\x23\x2d\xfe\x72\x17\x30\xc5\x1b\x61\x03\x2e\x5c\x12\xa1\xd0\xc1\x30\xf5\xa9\xa7\xd0\xd0\x8d\x27\x70\x59\x34\x0d\x3d\xf6\x17\x8e\xda\x06\x11\xf1\xa8\x07\xef\x2f\xe3\x67\xf6\x1c\x33\x0b\xa2\xeb\xdb\x90\x8c\x12\x0a\x2e\xb4\xf0\xc7\x0f\xbb\xca\x30\x8e\xba\x31\x4d\x12\x25\x26\x29\xe5\x0d\x25\x94\xf6\xc1\x79\x96\xf6\xd1\x8d\x8d\x04\x01\x0b\xc3\x06\x90\xa7\xa4\xfe\x80\xe2\x4d\x8f\xca\x38\x0a\x46\x03\x51\xec\x81\x80\x1f\xd5\x94\x1f\x92\xe6\xb8\xe0\x8b\xf2\xc6\xee\xd9\x15\x25\xfd\x16\x19\xee\xf0\xdf\x5a\x8b\x0c\x25\xaa\x70\xdd\x5c\xfd\x71\xc0\x42\x5b\x26\xe2\xc6\x93\xfc\x86\x0d\xfa\xa0\xb4\xc8\x50\x73\xc0\x74\x0b\x4c\x6a\xbe\x29\xdf\x93\x6a\x23\x9a\xab\x13\xbc\x1c\x85\x04\xe0\x59\x9d\x52\x95\xb3\x65\xbe\x16\x57\x1d\x3d\xfb\x06\x99\x42\x74\xa7\xee\x45\x50\x98\xad\xe5\xcb\x4e\x05\xbd\xce\x2e\x48\x77\x71\xb5\xba\xb6\x81\x2e\x1a\xa2\x8c\xaa\x91\xbc\xbc\xd8\x62\x10\x1b\x3b\xeb\x68\xba\x22\xdd\x1d\x77\x6a\x57\x95\xba\x7c\x22\xac\xae\xa3\xdd\x9e\x74\x73\x05\x70\x40\x07\x91\xff\x44\x3d\x50\xf7\xea\xe2\xb8\x06\x5c\x46\x25\xf5\x43\xcb\x2f\xe6\x2a\xcf\x94\x42\x15\x5d\x68\x84\x62\x3e\x30\x4d\xb6\x07\xc7\x00\xa8\x37\x7f\xf3\xa9\x23\xe0\x02\x2c\x2e\x4c\x5f\x78\x33\x2a\xaf\x6e\x6d\xa9\x6a\x5d\xc6\x77\x57\xc6\x77\x0e\x1e\xb7\xdf\x3e\x3b\x3a\x54\x25\xdd\x26\x35\xbd\xa0\xc0\x2a\x05\x88\xac\x4d\xbc\x1d\x83\xbc\x8a\x15\xae\xab\x13\xcd\xd3\x9d\x7a\x3d\x37\xe3\x73\x8c\xe7\xb5\x52\x15\xef\xd2\x43\xd7\x1d\x5a\x04\x84\xe7\xe9\xa8\xcf\x9e\x4e\xa7\xca\xe2\x19\x4a\x57\xf7\xea\xe2\x31\xce\x57\xa8\xe9\xd5\xef\x94\xf9\xad\x32\xac\x28\x7e\xe1\x31\x57\x56\x3f\x04\xeb\x9d\x3a\x60\xab\xa3\xe7\xa7\x7b\x18\x0e\xd9\xaa\xb9\xce\xe3\xbd\x62\xbc\x53\xef\xe8\x9d\x4a\xe2\x3b\x81\x1f\x76\x5f\xe7\x22\x97\x49\x76\x0e\x24\x03\x4e\x50\x9a\xab\x53\xcd\xd3\x3b\x48\xa5\x02\x35\x5d\x38\x4b\x9e\xc1\xd3\x43\x78\x7a\xb8\x60\x86\x2b\x06\x5d\x9d\xc2\xf6\x5c\xd6\xa9\x1e\x5a\x06\x21\xd1\xd3\x69\xdd\xcd\x12\x7b\x7a\x2f\x83\x8c\x0d\x5f\x17\xbb\xdb\x13\xbd\x97\xab\x6f\x87\x79\x03\x1d\xa8\xe7\x8d\x06\x3a\x00\xc1\x5b\x0d\x4c\x23\x60\x1b\xce\xee\x02\x06\xb2\x11\x5c\xc8\x6f\xd8\xcb\x0f\x97\x57\x39\xa6\xd6\x17\xe0\x34\x17\x99\xad\x4a\xa2\x2a\x37\x3f\xe0\x29\x4e\x81\xa3\x87\x52\x4d\x52\x7d\x7a\x40\xc8\x44\xef\x0a\x7a\x5d\x28\xfa\x06\xe4\xd7\x32\x90\x3a\xe2\xe1\xab\x98\xdf\x2f\x2f\x1b\xe2\x33\x9b\x6b\x60\xaa\xe1\x54\xc3\x7f\xf9\x48\xea\x8e\xe6\x88\x75\x38\x8e\x26\x98\x88\xd8\x64\x43\x1a\x06\x0e\xb5\xe0\x08\x54\xd5\xc5\x39\x71\x2c\xfe\xf2\x22\xbe\xf4\x69\xf7\x85\x9c\x97\xbd\x66\xa5\xb3\x46\x2b\x99\xf5\x31\x4b\x7b\x2d\x70\x01\x69\x52\xfb\x6e\xc1\xda\x31\x3b\x69\xd7\xab\xaa\x34\xa7\x49\xa1\xd7\x33\x57\x49\x3e\xcf\x44\x3a\x6a\xee\x4f\x31\x1c\x25\x3d\x7e\xf7\x00\x6b\x53\x23\x75\x7e\xc2\xd6\x91\x6e\x1c\xe3\x1f\xd3\xb5\xec\x5c\x93\x1b\xf1\x34\xa0\xa3\xd6\xae\x89\xe6\xdc\xe4\x23\x7a\xe7\x0a\x1b\xe5\xcc\x3d\x80\x24\xb3\xf8\xa1\x3b\xd9\xe2\xa2\x83\x9b\x74\xae\x46\x70\xd1\xdc\x77\x67\x8e\x22\x07\x82\x3b\x4a\x0c\xef\xd6\xe3\xee\x8d\x87\x7e\x92\xd2\x90\xc6\x09\x93\x39\x79\x74\x93\x3f\xe7\x90\xcc\x62\xc6\xc9\x2f\xd9\xf4\xf4\x6a\xdd\xcb\x7c\x0a\x17\x17\x17\x48\xc5\x4f\x98\x6a\x43\xba\x5c\x0d\x8d\x86\x43\xea\x95\xd5\xba\xb7\xb4\xa4\xe2\xdd\x08\xd7\xde\x8d\xe6\x5e\x7b\x37\x7c\x2f\xc0\x59\x5c\xcc\xee\x4c\xa8\xcf\x83\x4b\x5c\x99\x3a\x0b\x9a\x48\xf1\x93\x13\x1a\x27\x90\x3f\x2d\xab\x2f\x2f\xc5\x7d\xdc\x98\x06\x94\x29\xfc\x44\x3e\x93\x3c\x70\x73\x3b\x29\x88\xa2\xbe\xab\xfb\x6e\xb9\xef\xc2\x69\x7a\xa2\xf7\xdd\xba\x40\x24\xe2\x0d\xc6\x24\x70\x81\x78\xfa\xee\xb4\x85\xe8\x2b\x52\x55\x47\x88\x1d\xa2\xf7\xc8\xd4\x85\x19\xa4\x5e\x30\xff\x84\x7c\xd6\x32\x19\x1a\x77\x69\xca\xa0\x4e\x62\x97\x6b\xd5\x2f\x2f\xa8\xa7\xc2\x4d\xb1\x71\x4c\x93\x61\x04\x0f\xbc\x5c\x26\x42\xef\xe6\x62\xf5\x8d\xd4\x8c\x02\x51\x4c\x8b\x65\xd5\x0e\xa9\x0c\x09\xe3\x22\x8c\xa3\xd4\xa4\xc3\xdf\x91\xa0\x90\x85\x89\xb4\xc1\x49\xf4\x76\x89\x29\x44\x4b\x42\xa5\x85\x6b\x24\xc4\x3a\xa0\xee\x80\x31\xf2\x83\x65\x81\xe6\x14\x3d\x1e\x89\x26\x9e\xaa\xaa\x43\xea\x1b\x1e\x66\xa0\x50\xe7\x7a\x12\xdc\x77\xe1\x16\xae\x0a\xbe\x47\x04\x56\xd2\x68\x78\x48\xc7\x34\xb8\x80\x4b\xbc\x91\x20\x42\xb8\x84\x09\x94\x7e\x11\x85\x58\x66\xa4\x23\x62\x80\x84\xd2\x28\x16\x37\xcc\xe0\x6d\xbc\x43\x37\x23\xe6\xa1\x3b\xef\x3e\xde\xd8\x2d\x9c\x4a\xcd\xf2\x0b\x19\xcf\x4a\xc1\x2d\xc5\xb4\x08\x1a\xa9\x53\xbc\x95\xe1\x7c\x92\xa4\x74\xb0\x1b\x90\x6e\xa2\x7b\x75\x5a\x00\xd6\x61\xa5\x72\x48\xdd\xfc\x16\x47\xbe\x89\x2e\x57\x59\x23\xda\x74\x85\x35\x4f\x93\xaa\xab\x39\x5a\x5e\x59\xcd\xd5\xb2\x1e\xd7\xae\x6f\x0a\xc4\x98\x14\x74\xa1\xbc\x8c\xe6\x82\x52\x09\x84\xe1\x32\x64\xe7\x38\x03\xcc\xb8\x2a\x17\x90\xc8\x0b\x5c\x36\x07\x18\xc5\x79\x20\x51\x3c\xdd\x93\xe5\x57\x14\xa6\xc4\x0f\x69\xdc\x0c\x3b\x51\xae\x0c\xd4\xbd\x4c\xa3\xf5\x32\x9d\xa1\xee\xe9\xeb\x0b\xbc\x1a\x54\xaa\xde\xac\x09\xe4\xb1\xc7\x05\x90\x83\x22\xb5\xfe\x15\xed\x89\x1b\x62\x57\x67\x16\x6c\x57\x4f\xdd\xb2\xa7\x72\xef\x1a\x57\x2d\xec\x34\x4c\x53\x06\xec\x39\x3c\x83\x9a\x28\x52\xd8\xda\x0c\xc7\x9b\x4d\x64\x79\x0c\xd5\x3a\x5c\xfa\x22\x8d\x93\xb8\x0f\x5d\xce\x05\xb7\x2b\x4e\x8f\x5e\x9d\xef\xba\x96\xbb\x2f\xfa\xc6\x97\xfc\x12\xc1\x9e\xb8\xdb\xbd\x5a\xef\xff\x96\x14\xaf\x34\xc6\x8b\x6d\x12\xb8\xd7\x38\x58\x5c\x2c\x07\x7a\x50\xbc\x97\x05\x3c\x8f\x3b\x1a\xd5\xba\x2a\x5b\x02\xf4\xf4\x76\xe8\xbb\xe5\x9e\x16\xa8\xea\xeb\xc0\x2d\xf7\x64\xae\x38\x72\xa5\xcd\xb1\x05\x17\xde\x0a\x62\x72\x70\xd6\xf6\xe9\xc6\x51\x10\xb4\x4b\xb5\xb1\x0b\xee\xda\x22\x0c\x47\x04\x0a\x97\x43\xc3\xd9\xcf\xdc\xa3\xc8\x09\x46\x71\x5e\x8c\x27\x42\x29\x1e\x85\x19\x20\x06\x57\x4c\x59\x14\xde\x55\x28\x22\x45\x51\x8c\x2d\x34\xe9\xb2\x51\x0a\xf2\x36\xdd\x20\x02\x1f\x0a\x60\x72\x8b\x8b\xd0\x10\x99\x85\xd4\x0f\xc7\x24\xf0\x3d\xc9\x1b\x8a\x6f\x9a\x8a\x30\xdf\x34\xad\x61\x29\x61\x98\x45\xff\x52\x57\xba\x48\x67\x71\x71\x17\xef\x5d\x13\x4b\x3e\xbc\xfd\x94\x2f\xe1\x1f\x5c\xed\xd1\xd5\x26\xae\xf6\xe4\x32\xf1\x60\x30\xae\xa6\x99\x28\x6b\x34\x8b\xff\x36\xf8\xaf\xed\x66\x0b\xc8\xdd\xfc\x73\x0f\xca\xec\xbb\x60\x97\x1a\x25\xd4\x8b\x1e\x42\x05\xbe\x46\x43\x25\x8d\x46\x6e\x0f\x51\x80\xdf\xb0\x2a\x66\x1f\xb8\xcc\x26\xa3\x47\x37\xf0\xdd\xbe\xe2\x39\x01\x7e\xf0\x93\x63\xbc\x0c\x0f\x41\x9d\xfc\x7b\x34\x54\xbc\x98\x74\x59\x45\xec\x17\xeb\xf1\xe2\x68\xa8\xb8\xd1\x40\x9c\xad\x62\xa9\x52\x10\x33\xf5\xe9\x04\x2a\xea\xd3\x09\x1c\xe6\x66\x1f\xa3\xa1\x02\xae\x5f\x70\x5c\xab\x09\x5f\x30\x42\x0a\x07\xc0\x8d\x86\x13\xc5\x1d\xa5\xca\x90\x24\x29\x55\x10\x46\xbe\x8a\xe7\xee\xdc\x03\x1a\x8e\x14\x18\x0e\x45\x0c\x52\x71\x59\xdf\x64\xb8\x01\x12\x51\x18\xf5\x70\xf0\x53\x8a\x5f\x01\x25\x63\x8a\x08\x8b\xc6\x34\xe6\x5f\xac\x45\xec\x2f\x44\x8a\xef\x51\xaa\x74\xa3\x34\xc3\x11\x9c\x72\x55\x82\x28\x99\x8a\x9a\x82\x40\x56\xbf\x7e\x77\x65\xdb\xa4\xeb\x32\x05\x71\xdf\x9d\x7b\x38\x26\x9b\x80\xaf\x6a\xbd\xf9\x61\x96\x7c\xe2\x1e\xb8\xb3\xb7\xa8\x3c\x83\x37\x37\xf5\x8e\xc3\x1a\xd1\x0a\x72\xc3\x99\x95\x1b\xee\xcb\xfa\x5a\x41\x74\x50\x2d\x63\xb3\x35\xaf\x20\x2c\x0e\x79\x77\x66\x98\xc2\xfc\xa9\xce\x49\xbb\x38\xd7\xb2\xf1\xc8\xb3\x67\x03\xd3\x2e\xd5\xac\x79\x65\xb2\xf1\xca\xcb\x88\x81\x6b\x97\x6a\x8d\x79\x45\xa4\xf1\xcc\x0b\xe5\x03\xdb\x2e\xd5\x6c\xb7\x82\x96\xc0\xb2\x53\xe1\x09\x4d\x6f\x8a\x31\xcc\x0c\x7f\x5e\xd7\x3c\x3a\xa8\xed\xce\xad\x53\x62\xb3\x2d\xb7\x78\xff\x43\xc1\x4f\xbe\x20\x26\x16\xd8\xe2\x5f\x2c\x26\xf4\x03\xb7\x9c\x97\xd2\xe4\xfd\x5f\xfd\x88\x51\x95\x14\xf5\xc8\xc2\xb8\x26\x99\x1e\xeb\x17\xc9\x83\x4c\x1e\xd7\xe3\x02\x0d\xf1\xd1\x75\x66\x46\x97\x17\x35\x5d\xbd\xe5\x96\x4d\x57\xcb\xcb\x68\xf9\xa5\x22\xf2\xf8\xf2\x02\x16\x14\xb0\xde\x28\x20\x0f\x2e\x2f\xd0\x80\x02\x8d\x37\x0a\x14\x87\x56\x58\x4f\x32\x74\xd7\x6d\x64\xbe\x1d\xad\xe5\x96\x6d\x34\xce\x75\x54\xf4\x77\x97\x2a\x14\x2a\x66\x5e\xef\xbc\xc1\x16\x86\x10\xb9\x01\x6d\x57\x6a\x60\xf7\xed\x06\xb4\x85\x6a\x7e\x01\x88\x84\xed\x13\x49\xe5\x4a\xdd\xb2\xd0\xba\x8a\xf6\x2f\xce\x32\x3c\x60\x19\xf2\xc5\x25\xb0\xf0\x06\x5d\x47\x03\x4b\x1c\xdf\x70\xd1\xa9\x5b\x76\x73\x32\x60\x1a\x5b\xc6\x04\x74\xa7\x1e\x57\x46\x8c\x2f\x3b\x01\xbd\x8d\x47\xe1\x95\x9f\xf6\x4e\x62\x3f\x8a\xfd\x74\x52\x26\x95\x21\xff\x94\xef\xf0\x9e\xb0\xea\x32\xef\x91\xd7\xec\x6d\x84\x75\x34\xec\xc9\xe6\x09\x6e\x9f\x2b\x36\x89\x9b\x3a\x60\x48\x7c\x4b\x7f\xc3\x83\x6b\xf9\xfe\x4e\x5e\xb8\x68\xe1\x3b\x75\xa5\xe3\x0f\xb0\xf1\x9d\xe5\x9c\xf6\xc8\x3c\x03\x74\x4a\x0c\x4f\x9b\x9d\x04\x1a\xc9\xc1\xd0\xa6\xf4\xb7\x39\x23\x00\xd3\xab\x9e\xdf\xc5\xf3\xc8\x10\x53\x9f\xc2\xae\x18\x65\x41\x52\x85\x07\x43\x32\xcd\xea\x14\xb5\x90\x9c\x47\x48\x6c\xfc\xc2\x2d\xa3\xe9\x0a\x74\x83\x7a\xf5\x37\x23\x73\x8f\xc9\x2e\xe5\x72\xaf\xab\x37\xf5\xf9\x78\x78\x26\x0c\x50\x39\xa6\x9e\xaf\x70\x1f\xc0\x3c\x94\xab\xeb\x7f\x1d\x4f\x02\x49\x3b\x05\x3c\xd4\x0c\x57\xbc\xc2\x2d\x5c\x54\x4c\x77\x71\xf1\x94\x31\x0b\xa6\x80\x72\x79\x90\x15\xb7\x30\xd1\x82\x44\x6b\x2a\xb1\x81\x89\x0d\x48\x6c\x88\x44\x3b\x97\x8c\xe7\xae\x5a\xdf\x2d\x04\xa5\x57\x22\x5c\xf1\x8c\x43\x0e\x9e\xf0\x33\x28\x92\x99\xf6\xe4\xbe\xbc\x00\xd2\xab\x9a\x34\x49\xc4\x5d\xa7\xd9\xdd\xc5\x52\xda\x51\x14\x0f\x48\x20\xe6\x8f\x76\xe1\xe2\x31\xbe\xfc\xc6\x07\xa0\xd7\xfc\xf6\xce\x72\xbe\x15\x7f\x09\x0a\xa8\xca\x56\x2e\xd2\x08\xab\xcf\x97\x6e\x19\x46\x57\x23\xb9\xea\x8f\x97\xa1\xe6\x64\xe0\x0a\x9d\xdf\x63\x94\xe0\xde\xd4\xbd\x42\xe7\xc0\x9f\x78\xaa\x73\xea\xab\x3c\x0e\x97\xc8\xb4\x0b\xe8\xbf\x44\xbe\x5c\xc0\xfa\x25\xb2\xde\x02\xb2\x9d\x02\xae\x1d\x79\xd1\xb4\x57\x80\xd0\xd3\xf7\x18\x70\xda\x27\x80\x43\xa3\x61\x35\xaf\x00\xb6\x29\xf6\x00\x0f\xe2\x44\xa6\x4c\xd0\xea\x49\xc6\xe2\x8a\x49\x8b\x8b\x7b\x39\xe1\xa1\xaa\x7d\xe5\xea\xcf\xaf\xda\xf7\x5c\x71\xfe\x33\xff\xfc\xc5\xd5\xaf\xf9\x0e\x17\x9e\x61\xe6\x5f\x7f\xb0\x45\x08\x29\x6c\xda\x6a\xdf\x0b\x71\xd2\x96\xac\xf6\x67\x21\x85\x6f\xba\x6a\xb0\x04\x19\x06\x64\x22\xbe\x4f\xa4\x6f\x69\x0f\x4d\x4e\xbe\x90\xa2\x8a\x5b\x6b\x85\x28\x2b\x8f\xe2\x3b\x6e\xb3\xdf\x62\x07\x6e\x6e\xc8\x9b\xfd\x8a\x63\x7e\x81\x51\xfe\x35\x47\x0a\x62\xec\x09\xc6\x5a\x52\x2c\xde\xf4\x32\xfd\x81\xbb\x7d\x52\xb0\x51\x0c\x8a\x0d\x40\x29\xaa\x35\x1d\x95\x64\xf8\x64\xa1\x73\x29\x34\xab\x75\xf1\xe8\x39\xf0\xf1\xcd\xc4\xd9\x6f\xbe\xb9\x38\x1b\xe0\x7b\x8b\xec\x3b\x2c\x84\x4a\x7c\xb7\x71\xf6\x1b\x77\x1f\x67\xbe\xf3\xdd\xc8\x2c\x28\x1e\xbe\xd3\x7e\x61\xb4\x93\x16\x37\xdf\xb5\x76\x29\xdb\xa8\x94\xbf\x25\xbb\x17\xf1\x90\xab\xe5\x1c\x62\xca\x3d\x52\x5f\x93\xaf\xe2\xd4\x28\xfb\x59\x5a\xc5\xb7\x88\xc0\x9a\x57\xa6\xd7\xd5\xa9\x0b\x68\x96\xf8\x9d\xc1\xe5\x55\x55\xad\x77\xf4\xe7\x37\xae\x4c\xad\x3d\x3b\x23\xc7\x09\xa8\x57\xeb\x68\x1c\xf3\x5e\xad\xb3\xd4\x2e\x65\xf8\x7e\xd5\xe4\xbb\x46\x6b\xd7\xde\x0d\xae\x35\x04\xa3\xac\x39\xaf\xf5\x3f\x51\x73\xf2\x34\x47\xad\x7f\x17\xdf\x1d\xb5\x7e\xe5\xc2\xd3\x6b\x6c\xb1\x41\x3c\xbe\xee\xc7\xe5\x9b\x58\x19\xfe\xff\xdc\xbd\x79\x77\xd3\xc8\xd6\x37\xfa\x55\xe2\xac\x5e\x5a\xaa\x87\x8a\x8f\x9d\x30\x45\xa2\xf0\x0a\x04\x1a\x68\x20\x34\x81\x06\x3a\xce\xea\x55\x52\x95\x06\x0f\xb2\xb1\x1d\x92\x10\xfb\xbb\xdf\x55\xbb\x66\x49\x0e\x70\x9e\x73\xde\xfb\xde\xfb\x07\x44\x2e\x95\x6a\xd8\xb5\x6b\xda\xc3\x6f\xab\x3f\xf2\x46\xa8\xfe\x87\x9b\xa3\xfc\xdf\xb9\x1c\xaa\xe7\x37\xf2\x59\x5c\x28\xf5\xad\x52\xfc\x33\x77\x60\x7a\x71\xf5\xd4\xbf\x0c\xb3\xd9\x45\x32\xe1\x2a\xd1\xb9\xf4\x3e\xab\x5d\x7e\x69\x7e\x6a\xaf\xc1\xf0\x9f\xbc\x6e\xca\xff\xe5\x05\x57\xff\x0f\x72\x05\xf3\xd7\xb9\x13\x1f\xd7\xef\xc6\xef\x9c\x4b\xf2\x98\x5f\x7f\x9c\xef\xd4\x2e\xf8\xc7\xee\x55\x1f\xfe\x7e\x9c\xab\x8b\xb2\xfe\x1f\xb4\xe8\xbe\x2e\xbd\xfd\x8a\xff\x74\xeb\x85\xff\xd8\xbf\xfc\xab\xa7\x8f\x73\x57\x0f\xbf\x30\x01\x22\xd4\x4d\x5c\xdd\xc7\xad\x7a\x1e\xb4\xf2\x09\x00\xba\xc8\x3f\x0d\xd1\xc4\xd3\x36\x31\xc5\x33\x5f\x5e\x01\x8f\x92\xd6\x9e\x42\x5f\xfe\xd0\xeb\xa1\x7f\xfd\xef\x89\xfb\x37\xf0\x90\x18\xa8\x1d\xf3\x9f\x15\x01\x3c\x33\x4f\xfc\xaa\x94\xe3\xf9\x4c\x3f\x48\xf1\x80\x78\x7a\x6d\x9e\x40\x24\x20\x1e\x4e\x8c\xc0\x60\x3a\xd3\x42\x84\x37\xe6\x69\x76\xb1\x92\x0f\x27\xfa\xc1\x0a\x18\x4e\x1c\xa9\x02\x7c\xab\x9e\xdf\x38\xcf\x8e\x10\xe2\xa4\x5d\x1e\x01\xa5\x48\x71\x9b\xfe\xb3\x9a\xe5\xf9\x84\xdb\x3f\x17\x69\x01\xe5\xc3\x13\x94\x7e\x59\x70\x3e\x91\xff\xd7\x49\xd5\x47\x31\x65\xe1\x6f\x29\xde\xb7\x87\x8e\x84\x91\xe1\xae\x31\xb7\x98\xf0\xd4\xb1\xf3\x70\x84\x36\x75\x61\xcf\x76\x61\x90\x5e\x02\xfd\xaa\x53\x26\x96\x2e\xf6\x28\x61\x66\xf1\x62\x77\xee\x20\xb5\x3c\x24\xec\x2c\x65\xe7\x72\x28\x61\x39\x63\xc4\x39\x7e\x7d\x5c\xf2\xc5\x13\xb1\xf5\x97\x55\x6e\x0e\x61\xdc\xcb\x52\xbb\xe2\xe0\x0c\x6c\xaf\xad\x59\xbd\x12\xca\x28\x69\x60\xdf\x39\x38\x7e\x4b\x7d\x0c\xef\xbf\xe5\xf5\x2e\x41\xda\x0f\xda\xc6\x8c\x1c\xec\x47\x3a\x66\x5e\x2f\x62\x24\x67\x4e\x7c\x91\x04\xf7\x31\xf5\x64\x09\xfd\x88\x91\x62\x6b\x16\x2d\x51\x64\xa4\x6c\xe6\xd9\xa4\x03\xda\xa5\x8c\xc1\xd9\x5b\xeb\xc6\xc2\x04\x33\xf0\xf8\xda\xf6\xca\xed\x55\xce\xac\xe2\xe2\x15\x5d\xaf\x5f\xd0\x50\x07\x00\x2a\x19\xce\xc8\x2b\x1a\xbf\x32\x70\xb7\xbf\x53\x08\xcc\x27\xb3\x1b\xac\xdb\xf0\x15\x25\xe2\x92\x2b\xd1\x6e\xad\x06\xda\x29\x99\xb3\x90\x31\xec\x75\xc0\x20\x72\x7a\x9a\x5a\xe6\xa9\x51\x32\x86\xfc\xe3\x70\x10\xec\xf5\x1f\xbd\x70\xc5\xaa\x08\x04\x20\x5e\x89\xf8\xc8\xa8\x68\xa4\x46\x41\x76\xe7\xbd\x55\xd1\x78\x96\x16\x20\xb9\x62\xd6\x07\xa9\xbd\x06\xbe\xb5\xf8\x1d\x88\x32\xe5\xe6\x40\x37\xba\x4c\x4a\x40\x31\xc4\x54\xe0\x2c\x89\xb5\xff\x86\x86\x4b\x50\xcc\x6a\x02\x82\xd2\xaa\x86\xf1\xed\xb4\xf6\x26\x25\x55\x1a\x32\xa5\x9e\x48\xfd\x3b\xbf\xea\x1c\x73\x5f\x40\xb7\x94\xe4\xcb\x10\x20\x23\x1c\xb4\x20\xda\x4c\x27\x13\xe5\xf2\x34\xe4\xa8\x05\xd4\x75\x27\x55\xde\xd1\xde\xe5\x5e\x0a\xa5\x78\xcb\xfd\xde\xd1\x2b\x42\x2d\x03\x7e\xfb\xcd\xde\x2d\x5c\x1b\x9d\xa7\xfa\x5e\x62\x88\x96\xfe\x80\x62\xbe\xba\x5f\x74\x72\xc4\x1c\xdb\x4b\x73\x24\x97\xb1\x87\x3a\x3d\x9c\x00\x3a\xda\xcb\x29\xcd\xc5\x52\xbc\xe4\xf5\xc4\x53\x71\xda\xa9\xa5\x7d\x2a\xd9\xaa\x90\x69\x57\xcf\x27\xfc\xca\x79\xfc\x7d\x31\xbb\x98\xab\xdf\x27\x0b\x26\xda\x66\x92\x52\xb1\x11\xd9\x9a\xe5\xcf\xa5\x78\xcc\x54\x21\x99\x2c\xe1\x52\x3f\xbf\x83\x65\xf1\x1b\xd7\xbf\x4f\x8b\x45\x59\x8d\xf5\xaf\xb7\x3c\xa7\xee\xdb\x13\xd1\x40\xf0\xe5\x5d\x94\xec\x68\xc1\xa9\x7e\x7e\x2f\x4b\x54\x8f\xcf\x2a\xe6\xfc\x3a\x9d\xd3\xca\xfd\x09\x06\xa3\xea\xf7\x53\x68\xa1\xff\xcb\xf9\x5a\x26\xb8\x05\xa8\x14\x5d\x46\x36\xab\x56\x9f\x00\x7b\x4c\xfc\x9a\x94\x15\x7f\x3a\xa1\xd3\xb9\xfe\xf1\xc2\xbc\x52\x00\x6e\xf0\xa8\x3b\x31\x5b\xcc\x0b\x2a\xc9\xb3\xa2\xc9\x69\xf9\x1d\xfa\x79\x59\xb2\xd9\x25\x24\x7e\x07\x54\x2c\x78\x9a\xcd\xa6\x50\x5d\x39\x99\x9c\xd8\x92\x86\x15\x00\x07\x3a\x29\xcb\xd5\x6c\xee\xfd\x5c\xcc\xc6\xfc\x58\x03\xd2\xf9\x49\x12\x92\xce\xa6\xbd\x31\xa8\x73\x36\xad\x51\x96\x66\x8c\x0d\x1e\x33\xe2\x18\x0d\xe3\xe1\xee\x54\xde\x18\xc0\x52\x18\x03\x84\xd2\x79\xec\xc6\xc2\x1c\xb1\x76\xac\xb3\x31\x6b\x26\x4b\xcf\xcf\x3b\xb4\x9b\x16\x74\x71\xb4\x0a\x7b\xa8\x76\x48\xa7\xdd\xe5\x45\x22\x7d\xf4\xc3\x3e\x8a\x47\xec\x2c\x39\x27\x23\x26\xc3\xea\x3a\x86\x89\x13\xd6\x1a\x50\x33\xa9\x07\x87\xb5\xb8\xc9\x4e\x7c\xd5\xe1\x6e\x94\x02\xfe\x93\xf5\x8c\xb3\xf9\x7a\xd2\x19\x7f\xc4\xea\x56\xac\x14\x05\x01\xb4\x64\x20\xe3\x3d\x26\xa8\xbb\x5a\x94\xd3\x10\x41\xac\xd6\xf9\x15\x44\x78\xb7\xd6\x17\x4c\xfb\x9e\x51\x69\x36\x6c\xe5\x1d\xb7\x19\xca\xea\xfd\x58\x22\x61\xeb\x75\x7b\xb8\xbb\xb7\x27\x8e\x13\x9c\x4c\x58\x98\xe2\x04\x04\x0f\x28\x1e\xee\x66\x93\x19\x95\x0e\x09\xda\x6d\x26\x5d\x2e\x9f\xcb\x44\x14\x2b\x8c\x26\x5b\x3c\xe6\x28\x82\x90\x03\x5c\x02\xb9\x57\x8c\x54\xe1\x8d\xb8\x4d\x94\x2b\x3e\x85\xe1\xbf\xa1\x6a\xfa\x25\x74\x29\x57\x8f\x85\x9a\xf2\xe2\x0f\x9f\x26\x1c\x66\x51\x01\xa9\xe5\x34\x87\x3f\xe2\xb0\x24\x1e\xc6\xfc\x3a\xe7\x95\x9a\x25\x30\xdb\xc5\x1d\x58\xfc\x9d\xd3\x05\x05\x56\x37\xe1\xbe\xf1\x6a\x41\x53\xc8\x73\x09\x55\xf8\x36\xf6\x33\xe6\xda\xd8\x8b\x35\x5d\x50\x5e\xc1\x6c\x75\x1c\x57\x29\x8d\x7e\xbf\xdd\xe7\xab\x6e\x7d\x76\xf0\x40\x85\xe3\x75\x2d\x31\xb7\x7f\xee\xba\x95\x19\x2f\x41\xbf\xc8\xfb\xca\xe2\xaa\xd3\x8a\xc8\xb2\xb5\xe8\x20\x18\xee\xfe\xf3\x8f\xf4\x16\x29\xab\xed\xf9\xea\x3d\xb8\xdf\x57\x06\x76\xba\x59\xc0\x5f\xa2\xb4\x26\xfc\x90\x7a\x59\x2f\x61\x5f\x13\xc0\xc7\xdf\xb1\x44\x57\x90\x42\x0e\x03\x8a\xec\xda\x71\xa5\x09\xa4\x93\x74\xcb\x65\x1d\x42\x67\xb8\x4b\xab\x6a\xa6\xa0\x46\xaf\xa6\xae\xba\xda\x05\x5f\xb5\xc9\x0a\x20\x35\x6d\x4b\xda\x03\x48\xbe\x66\xf2\xc5\xa2\x6c\x4b\xce\x66\x8b\x29\x5d\xb5\xbd\xa9\x00\xe3\xda\xa8\xd7\xca\xe5\xb2\xac\xf2\x3d\xc0\x46\xb5\xd0\xf1\xfd\x3a\x6c\x7b\x4f\x4e\x98\xaf\x8c\xbc\x49\x20\xa4\x93\x5d\x8a\x16\x66\xa6\x1f\x7a\x96\x48\xeb\x75\xbf\x5f\x33\x4d\x8a\x6a\xde\xb7\xb1\xd1\x97\x8a\x13\x32\xb9\x04\xec\x8d\x76\xc3\x33\xb0\x2e\xbb\x48\x43\xb0\x2d\xa3\x5e\xa8\xe0\x25\x0b\xd1\x8d\x07\x17\xc2\x94\xe1\x15\x00\xed\xb4\x7a\x19\x69\x93\xa6\x81\x7e\x50\xee\x8d\xa8\x2d\xe4\x76\x2b\x94\x95\x13\x31\x82\xfa\x5e\xc4\xeb\x35\xed\x26\x33\x76\xad\x42\x2f\x39\x61\x31\x64\xb2\x63\x8c\xc1\x74\x50\xad\x18\x02\xb7\x7b\xfe\x38\xbe\x4f\x8d\x51\xe7\xd9\x2b\x0c\x73\x75\xce\x50\x54\x4c\x49\xcf\xd2\x2f\x4e\xa5\x79\x66\xdd\xef\x86\x11\x7a\x27\x75\xbd\x6c\x34\x89\xcb\x2c\xa4\x8f\x48\x12\x04\xec\xb1\xb1\xcc\xbe\x11\xdf\x45\x29\x56\xbb\x6a\xb2\x47\x37\x31\x25\x6c\x43\x23\xd9\x6e\x55\x47\x0a\x11\xab\x4f\xa5\xed\xa6\x38\x8c\x7a\x09\x1a\xdf\x67\x23\xd2\xad\x79\xda\x26\x55\xf1\x80\x36\xd0\xfe\x9a\xf7\xe4\x25\xf3\x63\x8a\x04\x41\x32\xa0\xb0\x83\x75\x7a\x11\x95\xee\x44\x0e\x73\x75\xfa\x51\x22\x13\x13\x9b\x28\xcb\x70\xaa\x44\x91\x44\x56\xa7\x65\xb5\x94\xce\x5b\x03\xa3\xfe\x58\x4a\xa0\x42\x15\x12\x51\xf3\xe8\x3b\x75\xc1\x1d\x74\x3a\xe1\xd6\x97\x61\x82\x82\xfe\x7d\x14\x75\xfa\x1e\x32\xc7\x15\x0b\xad\x14\x8f\x12\x69\xf0\x87\x13\xb2\x62\x21\x8a\x93\x9d\x52\x59\x39\x0a\xde\xea\x8a\x95\xee\xe5\xf3\x05\x9d\x6a\x36\x8a\xd1\x8d\xe0\x31\x8d\x92\xd4\xb6\xe6\x28\x8c\xf8\x4f\x32\x92\xcd\x64\x96\x4a\x27\x9a\x62\xc1\x33\xc5\x7c\x70\xe1\xe8\xf4\xc1\x6c\x19\x51\x52\xfb\x44\x99\x67\x2a\xc3\x2a\x31\x6d\x4c\x38\x1c\x73\x20\xf7\x3c\x18\xae\x99\x63\x45\x26\x38\x56\xc3\xfd\xb8\xcf\x35\x1f\x2c\x5d\x0e\x60\xfe\x58\x44\x20\xf9\x5b\x22\xf7\x49\x47\x03\x85\xad\xb1\xe4\x74\x91\x16\xb5\xc4\x15\x9f\xd4\x52\x2e\x16\xf5\x94\x39\x5d\x2e\x2f\x67\x0b\xe6\x24\x23\xf9\xed\xd5\x4a\xec\xea\x16\x67\x48\x62\xaf\x40\xae\x1a\xcc\xbe\x34\xb0\xfd\xce\x08\x38\x9b\xe3\x23\xf1\xf0\x2f\xf1\xf4\x04\x92\x06\xc3\x5d\xfc\x14\x9e\x3a\xc3\x5d\x7c\xcc\x94\x09\x0f\x53\x0e\xe3\x46\xf0\xc0\xb6\xd8\x4f\x24\x17\xab\x95\x1b\xb2\x43\x91\xc3\x98\x23\x81\x24\xc6\xfe\xb6\x2d\xd7\xeb\x70\x27\xe9\x1a\x00\xfc\x56\xa5\xf3\xef\xcc\x0f\x9c\xee\x75\x5e\x62\xf4\xcd\x8d\x25\x26\xfc\xae\x66\x12\x1d\xc9\xa6\xb4\xb2\x9a\x39\x6f\x78\x50\x22\xad\xef\x7f\xe9\x0c\x60\x80\x28\x7e\x90\x63\x6b\x86\xae\x3c\x43\xc0\xc0\xbd\x60\x5b\x8c\x4d\x97\x7c\xf5\xa1\x9c\xf2\xd9\xc5\x6a\x60\x1f\xb5\x4b\xfb\xcb\x6d\x5f\xa5\x13\x4e\x17\xfa\x3b\xf7\x87\xfa\xd2\x8e\xf8\x2b\xbb\x92\x2b\x64\x06\x00\xf8\xf2\x16\x45\x6d\x7c\xa9\x57\x27\x1d\x6f\x58\x87\x00\x91\x16\x8e\x9b\x36\xc3\x8d\x3f\xf4\x8e\xd6\x9d\x2f\xf8\xb7\x72\x76\xb1\xd4\x2b\xab\x35\xfd\xef\xc5\x54\xae\xc5\x0f\xbd\x85\xd1\x7a\x68\x32\xba\x02\xd7\x8f\x94\x10\xf2\x9d\xad\xd7\xe2\xef\x53\xf5\xf7\x89\xc5\x84\x49\x9c\x50\xe1\x7b\x7b\xf2\x5a\x2f\xb2\x1c\xb1\x20\x48\xee\xdc\xd9\xb4\xb4\xc2\xbb\xbc\x8b\xea\x5e\x33\xf2\x86\xae\x8a\xee\x82\x56\x6c\x36\x75\x9d\x58\x0f\xee\xeb\x00\x32\xfb\x08\xbf\x11\x84\xff\xe7\x1f\x40\xa6\x7c\x59\xc9\xf8\x12\xda\xf4\xfb\xb7\xe1\xee\x9d\xd7\x0c\xbf\x75\xb2\x80\xf4\x4b\xc6\x5d\x5d\x2c\xd5\xfb\x13\xe7\xfd\x53\x2d\x9b\x50\x1f\xbb\x07\xea\x95\x6b\xff\x7a\xf6\x86\x9d\x4b\xbc\x0a\xe3\x1c\xe0\x38\xf4\x38\xdb\x85\xde\xde\x12\x92\x9e\x9d\xb0\xf3\xf5\x3a\x15\x9f\x4a\xb0\x82\x86\x1b\x4f\x87\xe8\x23\xb2\x09\x49\x95\x1a\xfe\x4e\x95\xbf\x85\x8c\xa9\x05\xe3\x69\x34\xf7\x6a\x0b\x95\xed\xb2\x42\x1b\x95\xcd\x2e\xc4\x94\xa4\xb1\xdf\xbe\x76\x57\xa9\xb7\xda\xf0\x5c\x94\xb7\x5e\x53\xd1\x74\x6d\xbb\x40\xd7\xeb\x7b\x1d\xe5\xd7\x25\xcd\x67\xd5\x63\xff\xc0\x3e\x9b\x47\xe3\xee\x64\x6c\x5a\x98\xb2\xd1\xb8\xa7\x9d\xc3\xa4\x83\x09\x75\x1d\x4c\xdc\x78\x66\x35\xdf\x8c\x03\x71\xe6\xb6\x16\x1f\xcc\x8b\x99\xf0\x56\xb4\xb6\xee\xef\xf1\x1e\xf2\xb0\xd9\x8e\x05\xcc\xd3\xde\x6c\x41\x60\xba\x62\xfd\x31\x34\x4c\xa8\x6b\x99\xe1\x9d\x94\xdc\xd6\x49\xab\x67\xf7\x58\x27\x4f\x9e\x13\xaa\x24\x70\x1d\xe6\xbd\x4d\x89\xb8\x90\xc7\x06\xf4\xd0\xda\x4e\xcd\x2a\x50\x28\x39\xc0\x7b\x32\xe1\x69\xdd\x9e\x6c\x56\x1d\x5b\xfd\xd3\x96\xe4\x96\x8f\xde\x68\xd5\x50\x6b\xe2\xb6\x0f\xde\xcc\xbe\xb5\x27\x6e\xfb\xe0\xe3\xbc\x25\x69\x5b\xe6\x67\xca\xfc\x2b\x64\xa4\xc3\x0c\x7e\x09\x5a\xaf\xc1\x6f\x01\x50\x96\x18\x84\xf1\xd3\xdb\x9e\xde\x60\x1c\x5c\x40\xb9\xe3\x4f\xf4\x7e\x41\x1b\x1b\xb6\x74\xd6\xe8\xb0\x06\x46\x24\x55\xe7\x9a\x06\x4c\x6a\x0d\x8c\xcf\x41\xe9\xab\xc7\xe0\x3b\xe8\xe3\x61\x95\x60\xf3\xda\x7a\x65\x39\x06\x3b\xcc\x45\x6e\x22\xc0\x4b\x69\x57\x3b\xaa\x48\x84\xef\x6d\xf1\x27\xcf\x92\x73\x84\xd2\x36\x87\x97\x32\x0d\xdb\xd2\x71\x82\x70\xda\xe6\x06\xe3\xe7\x37\xe9\x20\x46\x35\xc6\x30\x7a\x6e\xc2\xc9\xec\xe7\x5a\xe8\x86\xf4\xa5\xdd\x7f\x3c\xbf\x80\xb3\xf3\x38\x89\x51\xaa\x3d\x9e\x70\x42\xde\x33\x6d\x12\x92\x18\x28\x95\xb8\xf7\x28\xd9\xdb\x8b\xd1\x07\x16\xa6\x67\xc9\x39\x36\x71\x62\xd8\x70\x57\x9b\xb9\x88\xcd\x29\xb1\x38\x40\xc9\x9d\x3b\x4e\x76\xa5\x6f\x86\xdc\xde\x05\xe0\x2f\x43\x79\x1a\x04\x29\xd8\x53\xf9\x7d\xaa\xc7\xe1\x04\x33\xc9\xf6\x01\xaa\x67\x05\x43\xf9\xff\xf2\xc8\x38\x43\xf3\x49\xee\xdf\x2d\xe3\xd2\xec\x83\xe8\xb6\x37\x12\x52\x1f\xe2\x94\xf6\x99\x19\x77\xa5\x8f\x4c\x9e\x58\xbf\xa8\xa3\xe8\xdf\xea\xef\x6f\xac\xe1\x22\x46\xb9\x0c\x9c\xf8\x9b\x59\xd2\x7e\x63\x32\x5c\x34\x4e\xc8\xdf\x0c\x8b\x3d\x4d\x0e\x10\x66\x98\x13\x83\x49\x56\x56\x3b\x5f\xd8\xe0\x0b\x53\x90\x7a\x5f\x98\x7b\x75\xc4\x19\xe1\x7a\x58\x6d\xb8\xc8\x34\x08\xc0\xbf\x9d\x10\x7e\x46\xcf\x21\x68\x64\x2c\x5d\x42\xd3\x3d\x0a\xf9\x18\xe9\xc7\xec\x11\xc9\x45\xc6\x74\x8f\xc9\xac\xd9\x1e\x3b\x87\x7b\x7e\x6c\x1a\x48\xb4\xd5\x02\xc5\xfd\x47\x6c\xd0\xdf\xd3\xc0\x85\x0e\x39\x12\x6e\x60\x3d\x3a\x3d\x9b\x9c\x3a\xc9\xfe\x11\xd9\x2a\x63\x20\x0e\x9a\x3f\x22\x3a\x52\x9a\x33\x02\x3a\x60\x9a\xeb\xc6\x23\xb6\x67\x48\x74\xfd\xd0\xe0\x0c\x93\xd1\xd4\x0a\x3b\xf9\x8e\x02\x08\x69\x09\x3b\x1b\x6a\x9c\xa7\x81\x28\xe8\x8c\x9f\x93\x24\x4c\xc5\x05\x55\xd6\x0c\xab\x1f\x1f\xc8\xb0\x6d\x32\x30\x30\x8b\x74\xce\x54\x7c\x27\x5b\x55\x2e\x8f\xe5\x8a\xf8\x6e\x01\x76\x18\x9c\x11\x8d\x95\xa4\xc1\x7d\xcc\x9b\x41\x33\x29\x82\xa8\x77\xda\xab\x57\x42\x11\x0d\x12\x1e\xa5\x5c\x17\xdf\x74\xf6\x23\xa9\xc6\x7c\x85\x40\xe6\x9b\x61\x55\x85\xbf\x3b\x68\xaa\x37\x73\x59\xba\x6a\x98\x8b\xe6\x29\x29\x5e\x6f\xb0\x42\xd1\x54\x24\x75\xe8\x0c\xf0\x99\xf2\xbc\x69\xcb\x1b\xd4\x13\x42\x41\xb5\x0b\x0d\xb1\xeb\x80\x8f\xbb\xbd\x82\x82\x9c\xdf\xa4\xd3\x47\x78\x1b\x05\x13\x8e\x24\x22\xa9\xd3\x79\xb7\x1b\xb7\xb6\xb6\xf6\xdd\xa0\x91\xb2\xbd\xbd\xd2\x74\xe2\x09\x2c\x89\x50\x96\x9b\x40\x3a\x3d\xd3\xe2\x96\x41\x81\x36\xcf\xa5\x9b\x64\x83\xe4\xae\x03\x25\x49\xf8\x06\xbb\x09\x51\xca\x31\xe3\x9a\x8d\xb7\xf4\xb3\x95\xd1\xc5\xfe\x29\x97\x78\xc9\xe8\xc0\x9f\x89\x8c\xd8\xd0\x9c\x34\x8d\x89\xd5\x36\xff\xec\xa7\xad\xbd\xdc\x36\x62\x9a\x5f\x5b\x96\x68\x3f\xdd\xf7\x3a\xdd\x6c\x50\xfc\xbb\xed\x0f\xb9\x81\x58\x1a\xb0\x86\xca\x76\xca\x67\x2f\x40\x77\x0b\xbc\x2d\x14\xa5\xec\xa0\xc4\x4e\x2b\xbf\x92\x5b\xdb\x52\x15\x01\x23\x09\xe8\xb9\xb2\xf8\x72\xca\x4f\x57\x74\x3a\x8f\x9a\xd8\x48\x3b\xb4\x6b\x5e\xaf\xd7\xc7\x74\xc5\xbb\xd5\xec\x32\x44\x1b\xdc\x98\xbe\x50\x56\xb9\xfc\xb0\xb8\x58\xea\x9f\x9b\x78\x58\xfd\xde\xe5\x57\x2b\x5e\x31\x0f\x78\xc9\xb1\x55\x45\x37\xce\x4a\xe9\xc0\xf4\xb6\x87\x5a\x57\xde\x7f\x22\x35\x4e\xec\x44\x27\xcc\x3e\x6b\x5f\x39\x7e\xb9\x93\xc4\x55\xc8\x71\x6a\xdf\xa1\xd8\xf9\x41\xb8\xfb\xcb\x65\x2b\x71\xbd\x71\x86\x02\x20\xe9\x98\xc3\x6b\x54\x94\xa3\xba\xc5\xd4\x43\xcc\xc0\xb7\xcf\x9c\xdb\xc4\xef\xdf\x1d\x45\x19\xe7\x9e\x11\x02\xb0\x82\x1c\xa6\xd9\x6c\x52\xf3\xeb\xac\xbd\x94\x3e\x9e\x92\xf7\xe9\x64\xe2\xd8\x04\xd4\x7d\x36\x77\x44\xaf\x45\x46\x53\x97\xbb\xdf\x64\x5c\x7b\xde\x86\xd4\x95\xf9\x01\x36\x73\xfd\x48\xfa\xe0\x10\x49\x4c\x4c\x4d\x94\x10\xc5\xfd\xde\xe3\xd6\x76\x07\x41\xbd\xc5\xca\x97\xd5\x22\x8e\x70\xe9\x41\x6b\xb2\x88\x43\x1d\xed\xe6\x1c\x7e\x70\x46\x38\x8f\xa9\x76\x9f\x26\x19\x87\x71\xce\x39\xd1\xdc\x13\xde\x30\xba\x52\x17\x2a\x84\x8b\x6d\x2f\x4a\x4e\xce\x0e\x71\xff\x00\xef\x3f\xc0\x07\xfb\xe7\x78\xc4\xc9\x35\x00\x87\x3d\xb5\x06\x42\x75\x7c\x1e\x3c\x56\xbe\xbc\x32\xa7\x96\x3b\xca\xb8\x00\x8e\x0f\x72\x10\x84\x63\x6e\x5d\x90\xdd\x7c\xda\x6e\x68\xa2\xab\xfb\xc0\xaf\x56\xf5\x7a\x82\xa0\x33\xe6\x78\x2a\xb3\x84\x9d\x11\x5f\xaf\xc7\x3c\x08\x1e\x3e\x12\xff\xf7\xfb\x8f\xc9\x98\x23\x5c\x71\x22\xe5\x13\xdd\x6c\x31\x9b\x3e\x2d\xe8\xe2\xe9\x8c\xf1\xf0\x60\x1f\xe1\x19\x27\x37\x09\xcf\x66\x0b\x0e\x36\x51\xd1\x8f\x0d\x27\xc5\xfd\xe8\x89\xfd\x62\xb8\x6b\x0d\x29\x6b\xaf\xb6\xda\x54\x0e\x77\x7d\x4b\x2b\xd0\x3c\x6b\x2b\x42\x69\x67\xaa\x8d\xb4\xa4\x6d\x2b\x5d\xae\xf8\x70\xf7\x7c\x83\x9d\xef\x9e\x55\xec\x27\x5b\xfb\xd4\xfb\xa8\xde\x60\xff\xed\xb6\x36\x2b\x63\xce\x9a\x85\xd8\x16\xef\x40\x63\xf2\x58\x33\x18\xf3\xda\x2f\xad\x11\x7e\xb9\x07\xc6\x88\xb8\xda\xd6\x0b\xc8\xf1\xf3\xfd\xb8\xd5\xcf\xf1\xa7\x7a\x22\x0d\x82\x7f\xbd\x2b\xc6\x90\x78\x5b\x4f\x64\x86\x9f\xef\x8a\x82\x4d\xfa\xd5\xbe\x88\x63\x05\xe9\xf4\xdd\xdb\xc4\x57\xbe\x45\xc4\x0d\x45\x19\x81\xf5\x5e\xbf\x43\x48\xc9\x8d\x22\x35\xe9\x8e\xf9\xf5\x53\x98\xbb\x36\xbf\xac\x52\xfb\x60\xed\xef\x1f\x82\x24\x4d\x65\x74\xf2\x29\xee\xf7\x5c\x03\x99\x27\x12\x51\x0e\x89\xc6\xe3\xab\x19\x7c\xda\xaa\x2d\xb9\x16\xa9\x32\xbe\xa2\xe5\xc4\x04\x9f\x69\x89\x29\x02\x0b\x14\x98\xad\x2b\x8d\x91\x5d\xfc\xc4\xfa\xb3\xe4\x5e\x84\xfa\xd5\x36\xd2\xd4\xe7\xb4\xee\xf1\x82\x9b\xf8\xd2\x5e\x3f\xcb\x2c\x3c\xd8\x07\x5a\x5c\x16\x65\x5a\x78\x72\x0e\x31\x20\x3d\x03\xde\x6a\xa8\xe4\x2c\x0b\x26\x9c\x03\x88\xce\x57\x14\x53\x42\x48\xc5\x83\x40\xc1\x95\x47\xf5\x38\x0f\xf2\x10\xe3\xee\x5c\x17\xdc\x28\xc4\x97\xdc\x68\xbf\xeb\xdd\x90\x62\x9b\xce\x88\x07\x81\xe2\x8a\x41\x48\x89\xb8\x6e\x8a\x6b\xe8\xdf\x8c\xe8\xcb\x29\xd0\x09\x53\x24\xcd\xc6\x1a\xe4\x51\x8b\x58\xe4\x09\xdc\xda\x88\xd2\x09\x93\x6e\xba\x5a\x4c\xfe\xe0\xd7\xeb\x35\x08\x62\xd5\xd3\x94\xaf\xe8\x1f\xfc\x1a\x50\xb4\x55\x86\x20\xd0\x19\x14\xf4\x76\x5a\xd0\x45\x10\xf4\x1f\xc9\x27\x7d\x02\x30\x30\x54\x22\x51\xe2\xe3\x78\x34\x6f\xdb\x1d\x74\x96\x4d\x4b\x83\xb7\x0d\xf5\x14\xec\x14\xc6\x2a\x2a\x1b\xa8\xec\x26\x6a\x38\xe4\x28\x6d\x1b\x13\xc1\x67\xdf\x38\xb9\x81\x9d\xfc\xc3\xf5\x9c\x2f\xa3\x19\xc7\x1e\x0c\x40\xe4\x42\x58\x3a\x11\xe5\x44\x77\x46\x1c\x25\xd1\xad\x1c\xa9\x3c\x31\x94\x9f\xe5\x8c\x77\xeb\x2b\xb1\x12\xc0\x25\x5b\xbb\x58\xff\xea\x59\xc5\x6e\xf9\x46\x1b\x0c\x37\x3e\x93\x6b\x9a\xfe\x72\x93\x69\x1d\x31\x28\x22\x96\x7c\x00\x3c\x06\xde\x62\x2d\x15\x8a\x8b\x95\x59\x51\xa4\x43\xd2\xfe\xfe\x21\x5c\x70\xd5\x7a\xd2\xf2\x1d\x74\x0f\xc5\xd9\x20\xf4\x86\x27\x55\xc3\x13\x04\xe1\x92\xaf\xd7\x59\x87\xb4\x7d\x37\xc8\x48\x3d\xfd\x59\xc5\x82\x60\x29\xbe\xe3\x30\x0d\x50\x14\x7e\x61\x84\xe1\xbf\xd9\xcf\x4a\x55\x96\x70\xd7\x43\x38\x23\x39\xb7\xa7\xb5\x30\x03\x71\x25\xd8\xad\xf2\x41\x06\xfc\x42\x78\x14\x72\xb2\xe0\x8e\x53\x28\x74\x51\xbd\x44\x08\x7f\x66\x61\x86\x30\x27\x19\x8a\xd4\x89\x2b\xa4\x64\xc2\x07\x2b\x49\xc7\xe8\x42\xfe\x45\x83\x30\x21\x85\x5b\xdb\x8c\x77\x9d\x83\x8f\x36\x98\x95\x6c\x4a\xa8\x28\x37\x41\x28\x52\x60\xd9\x9e\x19\x1a\xe1\x83\x24\x52\x8f\xc9\x80\x47\x67\x1c\x27\xe7\x9b\x0d\xbe\xe4\xe4\x06\x6c\x5f\xa2\x4e\x0f\xc3\x96\xa8\xfe\x8a\xcb\x0e\x58\xfe\xed\xea\x5f\x7b\x40\xfb\xe1\xae\xb4\xba\xa2\x25\x98\x5f\x4d\x67\x95\x34\xdf\x94\x1a\x48\x69\x58\x25\x95\xbe\xe2\x19\x22\xba\x82\x91\x15\xa8\x90\xc1\xc8\x8a\x4f\xe4\x9f\x2b\x30\xd0\xd2\xf5\x5c\x2c\x20\xf9\x92\xf3\x71\xd4\xe9\x6d\xec\xda\x7d\xc5\xff\x5d\x05\xb7\xa7\xdb\x1e\x74\x3a\x97\xfc\x4c\xca\xc0\xcf\xa3\xba\x0a\x7a\xd0\xe9\x45\x20\x92\x12\xf5\x5c\x0b\x9a\x80\xe1\xfd\xcf\x9e\x0f\xb4\x7f\x98\x7f\x28\x80\xd4\x1f\x9d\x04\x14\xc4\x02\xb8\xbe\xb8\x6e\x2c\xce\x81\xe0\x62\x5e\x77\x08\x68\x9c\x06\x2c\xb9\xbe\x73\x23\xa2\x25\xbf\x3b\xac\x73\xcd\xbb\xf2\x5b\x6c\x50\x9f\xe0\xea\xa7\x7d\x0e\x86\xbb\xf1\x31\xa8\x58\x40\x94\x69\x8d\x5b\x04\x41\x8e\x24\x97\xe2\x27\xbc\xa6\x55\x7f\x0a\x63\x03\xb0\x4e\x76\x1b\x3f\x76\x06\x0c\x94\x53\x62\xb5\xbb\x4e\x5c\x18\x2f\x9b\xf9\x99\xdd\xcf\x6c\x4b\x5c\xa8\x32\x09\x43\xf4\x1c\xf6\x73\xb8\x2f\x3c\xe7\x64\x96\x5a\xbb\x05\xb1\xea\x74\x5a\xef\x22\xeb\xf5\xe1\xa3\xf6\x4b\x8a\x67\xd7\xf7\x3b\x0f\xd1\xcd\x91\x98\xa1\x47\x1c\x0e\x1e\x69\x01\x8b\x77\x28\xc6\x50\x07\xbd\x34\x4e\x81\x2f\x38\x12\x64\x50\x14\x71\x7a\xfd\x42\x5f\x29\xcd\x7a\x02\x3a\x38\x37\x6a\x66\x10\x1c\xf3\xf0\x09\x47\x08\x22\x7f\x7d\x17\xcf\x98\x62\xc0\xa4\x42\xf8\x15\x45\x40\x47\x69\x51\x6e\x7d\x02\x9e\xd3\xf0\x29\x77\x6d\xb3\x5f\x01\xc0\x95\x74\x06\xb0\xd5\xbf\x34\xc3\x6e\x40\x03\x00\x53\x3a\x14\xdd\xc3\x47\x9c\x24\xa2\xd9\x29\x3e\x82\x28\x9c\x3f\xec\x23\x8a\xf4\xc9\x4d\xae\xd8\xa2\x14\x07\x3a\xde\xf6\xb5\xc1\x98\x5a\x63\xa4\x0e\x9d\xce\x4f\xbb\x03\xe8\xb1\x95\xe4\x70\x00\x35\x3c\x66\x90\xda\xb8\x5a\x7e\xd7\x71\xfb\xb5\x9b\xbd\xa6\xc0\x6a\x63\x25\xf9\xb9\x9c\xe3\x6f\xfc\x8d\xfb\x9a\xe3\x7f\xca\x25\xac\xaa\x40\x98\xd3\x8b\xf9\x7c\xb6\x58\x71\x16\x3d\xff\xc9\x2d\x9d\x24\x83\x77\x62\xf9\x8d\xd4\x5d\x3a\x23\xdc\x59\xa9\xf8\xb6\x95\xca\x21\x22\x34\x36\xf3\x95\x71\x19\x28\xce\xc0\x24\xd1\xc4\x59\x45\x52\x6e\xff\x8c\x1b\xf7\x88\x2b\x1e\x4a\xae\x7a\xce\x51\x4e\x5e\xcb\x17\x37\x39\x79\x25\x45\x40\x05\x79\xc9\x61\xaf\x0e\xdd\x46\xd5\xc2\x81\x65\x3f\x0a\x07\xc6\x5b\x42\xed\xa8\x06\x05\x41\x98\x93\x3f\xa4\xa7\x43\x0e\x3f\x72\x89\xb9\xaa\x29\xff\x9d\x87\xb9\x14\xd3\x14\x41\x50\x84\x14\x73\x9c\xa0\xd8\x67\xb1\x90\x12\xee\x83\xd7\x23\xb1\xc2\xdb\xd8\x3f\xa2\xbd\x8e\x9d\x8b\xac\x1b\x22\xc8\x70\x6c\xdf\x60\xae\x10\xfd\x37\x1b\xfc\xd6\x95\x8e\x7c\x2b\xf9\xa5\x14\xcd\xc9\xdb\x85\x96\x94\x0c\xab\x13\x4e\x6e\x8e\x26\xab\x68\xb8\x2b\x8f\xa5\xc3\x5d\xfc\x54\xd6\x1a\x0d\x77\xd5\xa1\x75\xb8\x8b\xdf\xf0\x15\x8d\x86\xbb\xea\x44\x3b\xdc\xc5\xa7\x45\x99\x89\xaf\xc0\xff\x19\x92\x9c\x75\xf8\x9d\xb3\x0a\x36\x84\xd2\xe6\x6c\x9b\x73\xb1\x22\x95\x59\xa9\xba\x3c\x68\x26\x85\x14\x45\x21\x25\x27\xfc\x8c\x9e\xa3\x41\xa7\x93\x9c\xd1\x73\xcf\xa4\xed\x4f\xab\x55\xd9\x79\xc7\x15\x7f\xbf\xe7\xa4\x87\x4f\xc5\x7f\x1f\xe0\x88\xff\x11\xfe\xff\x8b\x93\xb7\xdc\x50\x64\x99\x2e\x38\xaf\x3e\x4b\xa2\xc8\x1f\x5f\x94\x60\x74\x52\xf2\x6a\xf5\xd9\xfd\xa1\xde\xcc\x69\xce\x3f\xdb\x47\x9d\x5f\x12\x49\x95\xa4\xc8\x21\x7f\x49\x92\xca\x67\x45\x3a\xf9\xa3\xde\xcf\xe8\x4f\x8e\xa5\x56\x5a\x4b\x6a\xc5\xb3\x92\xd4\x2e\xf8\x84\xae\x38\xab\x0b\x7b\x5d\xe9\xac\x97\x05\x42\xe0\x88\xab\x81\xb2\xdc\x83\xb5\xd8\x22\xfd\x0d\x68\x77\x35\x53\xcf\x91\x97\x11\x6d\xf0\x74\xf6\x0d\x1e\x3f\x7b\xf5\xc0\x44\x35\xaf\x14\xca\xbc\xa9\xdc\xbc\xd0\x68\x18\x3c\x7e\xcf\x45\x95\x92\xc4\x7a\xc0\x3f\xf0\x81\xba\x24\x4f\xc1\x0c\xc0\x58\xc5\x0d\x4c\xd6\xbd\x24\xea\x45\xa1\x18\xb4\x1e\xee\x39\xad\xf9\xb2\xbd\x35\x5f\xb6\xb5\xe6\x8b\x92\xc6\x25\xe4\x94\xc7\xa7\xb6\x3d\x5f\x74\x7b\x3e\xfe\xb0\x3d\x5f\x64\x7b\x3e\xea\xf6\x6c\x10\xfe\xc4\xc9\x5f\x96\x89\x0c\x36\x8b\x1c\xa8\x4b\xf0\xda\x80\x47\x19\x29\x5f\xf1\x8a\xb8\x2a\x5e\x2c\x8c\x18\xbf\xca\x79\xb5\x2a\xe9\xe4\x9d\x9f\x5e\x4e\x34\xd3\x89\x47\xc5\x5c\xab\xcb\x72\xa9\x8b\x91\x95\x7d\x30\x0a\x81\x72\xf9\x6e\x51\x4e\xe9\xe2\x5a\xcf\xe6\xcf\x9c\xdc\x4c\x8d\x25\x44\x74\x53\x57\xe6\x46\x75\x53\x89\x86\x98\xcf\xc2\x1b\x61\x0f\x21\xe7\x5c\x8c\xc5\xc5\x92\x83\x7b\xea\x6d\x05\xbf\x96\x78\x4a\xbf\x52\xb0\xea\xd7\x6d\x6d\x7e\xe7\x64\x69\x29\xdc\xc5\x57\xc2\x35\xa0\x1e\x5b\xc1\x6d\x6d\x7f\xe7\x64\x01\x59\xdd\xaf\x55\xb1\xc1\x5f\xfc\x2d\xf5\xf3\x8f\x36\x4e\xac\x0c\xe1\x32\xe2\x91\x43\xef\xe0\x5e\xf9\x22\x11\xe7\xc4\x25\x62\x3d\x9f\x4e\x03\x48\xd0\x20\xe8\x11\x42\x42\x1e\x1c\xec\x4b\xb3\x82\xda\xea\x90\x7a\x73\x7e\xbd\xee\xe4\x41\xd0\xc9\x7c\x04\x5f\xc2\xba\x72\x2f\x07\x97\x53\x16\x85\x22\xc5\x33\x96\x47\xe2\xc6\xa7\x82\xb5\x94\xfc\x72\xbd\xce\x94\x21\x98\xb4\xe5\x55\x47\x01\xd8\x15\x61\xca\xe6\x00\xe6\x0b\x96\x1a\x8d\xf6\x98\xf5\x08\x0d\x56\xa9\x38\x47\x00\x7f\xfb\x90\x38\x85\x05\x25\x4a\x3a\x84\x14\xd2\x70\x2c\xb1\x86\x63\x12\x54\x38\x51\x6a\x34\x38\x1e\xe4\x06\x4f\x35\x77\x2d\x09\x2b\x13\x82\xb8\x49\x51\x7f\x30\x86\x95\xda\xc7\xc6\xe4\x2f\x79\x9e\x98\x90\xcf\xbc\x6b\xe7\x02\xa4\x4d\x4d\x1a\x70\x28\xa4\xcd\xf5\x78\x0d\x77\x37\x36\x02\x5d\x7d\xbc\x5a\xc7\x1a\x8d\xc9\x27\x8e\xa1\x22\x97\x75\xf1\xd4\x49\x81\x8a\xb0\xa8\x44\x25\x0c\x77\x63\xaa\x02\x1a\xe6\x83\x2c\x7a\xc7\xc2\x1c\xc5\x99\x0e\x71\x28\x53\x12\x14\x4f\xc8\xd8\xb9\x17\x4d\xb0\x3a\x99\x4c\xe4\x7d\x68\x7e\x67\xb8\xab\x10\xd1\x44\x92\xd4\xf2\xd3\x78\xe2\x8f\x18\x00\x55\xbb\xc5\x4c\xb5\x1e\x2a\xb5\xc5\x28\x2c\x2e\x91\x64\x3e\xaa\x15\x43\x63\x46\xf2\x78\x4e\x00\x0a\x99\x05\xc1\x1c\xd1\xe8\x66\x4c\x58\x3c\x25\xf3\x38\x57\xae\x03\x94\x8c\x63\x1a\x53\x02\x76\x77\x28\xbf\x73\xc7\x38\x15\x24\x64\x1a\x27\xb1\xb2\x02\x42\xf4\xce\x1d\x0d\xec\x92\xef\xd1\x18\x8d\x45\xfa\x18\xe1\x7c\x6f\x4f\xa7\xd3\xbd\x3c\x46\x53\x91\x3e\x45\x98\xea\x74\x91\x01\x18\x74\x4c\x08\x99\xae\xd7\xf0\xc7\x01\xc1\xd7\x76\x5e\xc3\x4a\x15\x19\xab\x22\x36\x63\xc7\xd1\x54\x3e\xc7\x53\x22\x31\xa9\xc7\xe4\xec\x3c\x66\x41\xc0\x3a\x84\x4c\x63\x74\x93\x13\xd6\x6a\xa0\x99\x07\x81\xe0\xcc\xa9\x42\x13\x1d\x4b\x95\x19\x43\x31\x13\x75\x30\xb4\x91\xc6\x29\x67\xe7\xf1\x3c\x08\xe6\xa6\xb0\xf9\xcf\x14\xc6\x64\x61\x73\x14\xcf\x45\x61\x73\x59\xd8\x9c\xf4\xe2\xf9\xa3\xb1\x36\x92\x99\xdf\xb9\x83\xfe\x62\xe1\xf8\x6c\xee\xdb\x3e\x29\x98\x9c\x39\x61\xd6\xae\x6a\x2e\x28\xf5\x17\x0b\x99\xcc\xec\xd8\x55\x59\x8d\xa7\x5a\x79\xee\xdf\x45\x83\xb3\xc9\x79\x74\x36\xc1\xe9\xb9\x7b\x43\xff\x9b\xfb\x5e\x14\xca\xf2\xbe\xd7\x81\xc9\xd0\xff\x97\x48\xe8\xff\x2b\x41\xeb\x35\x95\x20\x52\x62\xae\xcb\x6b\xf0\x6f\x7c\x8b\x59\xb4\xf2\x7e\x2c\x97\x03\xf3\x14\xfd\xcd\x31\xcd\x74\xf8\x5d\xab\xdd\xf5\xcd\x5e\xdc\x9b\x70\x92\x99\xfb\xd4\x6f\xb2\x8d\x36\xa2\xaa\x17\xdb\xdb\x31\x8f\x90\xd6\xa1\xdb\x83\xcd\x27\x26\x43\xe2\x23\x86\x99\xc0\xc0\xe0\xb1\x49\x11\x66\x5e\x82\x5c\xe5\xb4\x7d\x1a\xc0\xd2\x7a\x72\xe1\x4e\x5f\x19\x2d\xf5\x62\x66\xcd\xd8\xd8\x9d\x3b\x08\xb0\xd8\x55\x10\xdd\x44\x62\x5e\xaf\xd7\x1d\xd1\xa1\x33\xf1\xe3\x1c\x27\xf2\x2f\xb2\x25\x39\xd8\x61\xd0\xb4\x8c\xfc\x50\x03\xda\xef\x3f\x6e\xd7\x80\x62\x96\x91\x1b\x79\xa1\xfb\x49\xe9\xd1\xa9\xba\xfd\xf9\xd2\x23\x99\xfa\x43\x3d\x92\x05\x5f\xd1\xb8\x29\x52\x88\xe4\x8b\x8f\x9a\x80\xa5\x3f\x12\x28\x61\x2e\x17\x4e\x9c\xa9\xbf\xb9\xfa\x5b\x64\x35\xb5\xd3\x28\xf3\xe3\xc8\x99\x3d\x33\x19\x24\x86\x32\xd1\xa1\xef\x05\x94\x44\x49\xcd\xef\xac\xcc\xc2\x22\xd3\xcc\xc2\xb3\xf5\x9a\x67\x82\x8b\x58\x98\xa2\x9a\xbd\x2f\xcf\x62\x47\xee\xa0\x74\x8b\x65\xb5\x93\x06\xc1\xb5\xc8\x3e\x48\xc9\x8d\x8c\xd5\x93\x76\xfd\x6c\x98\x57\xcc\x4d\x7c\x56\xb1\x4d\x14\xa6\x24\x4c\xfd\xc6\x04\x41\x2d\xc1\xdf\xe5\x65\x0f\x91\x58\xfd\x4f\x75\x51\x21\xc2\x29\xb9\xa1\x55\x5a\xcc\x16\x80\xf3\x9d\x76\xed\x0f\x2c\x1f\x4f\xa4\xc3\x96\x7e\x23\x7f\x62\x18\x2f\xf5\x89\x79\x96\xa9\xe6\x03\xe7\x97\x0d\x2b\x99\x67\x41\x90\x64\x61\x9e\xe1\x14\x49\x7d\x45\x98\x67\x24\xc5\xbe\xdc\x8f\x65\xaa\xbf\x38\xcb\xb0\x84\xcc\xd7\x82\x3f\x2d\x76\xc0\x1a\x07\x91\xf0\x0c\x83\xf8\x0f\x53\x2d\x27\x19\x67\xde\xa1\x8e\x65\x3f\x3c\xd4\xe1\x0c\xdd\x70\x92\xad\xd7\xa1\x7f\x7e\xf2\x79\x81\x59\x5e\x60\x51\xfd\x58\x25\x3d\x57\x33\xd2\xe1\x08\xdd\xd0\xe8\x86\x93\x14\x80\x14\x32\x72\x49\xbb\x7a\x6a\xc4\x36\xaa\x45\x2f\xce\x1f\x65\x7a\x0d\xc8\xd5\x1a\x00\x2b\x5d\x98\x9d\xe5\xe7\x48\x34\xa8\xd3\x37\x2e\x6f\xe2\x2e\xb3\x11\xa5\x6f\xc4\x51\xd1\xe3\xae\xba\x18\xa7\xa9\x12\xd3\x88\x9c\x5a\xec\xe2\x39\x2f\xf1\x86\xf3\x12\xcf\x08\x17\x73\x28\xd1\x13\xc8\x47\x39\x55\xda\xd1\x3c\x23\x59\x46\x78\x5b\x0e\x57\xa5\x2a\xe6\x5e\xaf\x06\xbb\x6c\x57\x80\x9a\x1a\xf6\x62\xee\xc3\xbc\x7a\x4a\x2f\x98\xc5\x78\x94\x85\xf2\xcc\xe2\xfa\x3a\x39\x6b\x82\xe8\x64\x9a\xa9\xbd\x74\x58\x35\xd4\xc3\xad\xfa\xe5\x1d\x55\xaa\xe7\x08\xb1\xc1\x93\xcc\x91\xc5\x18\x0c\x09\xb8\x7d\xc0\xba\xc2\x27\x74\xbe\xe4\xec\x43\xa9\x13\xe6\x4b\x7e\xc1\xcc\x25\x5d\x5d\xef\xa6\x6e\x29\xe9\xa4\x9c\x27\x33\xba\x00\x94\xb3\x16\xa1\x00\xc8\x10\x6d\x0e\xeb\x5c\xe8\x7d\x27\x07\xda\x4f\x14\xd7\xdc\x2a\x73\x65\x25\xbe\x00\x42\xb6\xc6\x6e\xe9\x33\x2f\xca\x83\x56\x93\x83\x14\x12\x14\x93\xaa\x6a\x19\x3c\x40\xa5\xe1\x9e\x94\x7b\xf5\x0f\x4c\xc0\x9e\xfe\x01\x42\x11\x25\x49\xdc\xef\x19\x99\x58\xff\xc0\x86\x15\xd8\x7f\x04\x27\x04\x70\xb3\x1c\xd0\x48\xef\x57\xf3\x8c\xdc\x3c\x5b\xa6\xd1\x70\xf7\xd9\x32\xa5\x73\x71\x7b\x3b\x9d\xd3\x94\x27\x74\x11\xc1\x7a\x8e\x5f\x73\x10\x54\x1d\x2d\x16\xb3\x4b\xf1\x3c\xdc\xc5\x1f\xe7\x3a\xe1\xe3\x7c\xb8\x8b\xdf\xc3\x5d\x5d\xa5\xc0\x8f\xe1\x2e\x3e\x9e\x5d\x56\x3a\x4d\x3a\x3a\xe0\x63\x3e\x89\x86\xbb\xc7\x80\xa2\x39\xdc\xc5\x9f\x4a\x91\xe1\xe4\x14\xc4\x63\xd5\x45\x34\xdc\x7d\x6a\x31\xc0\x86\xbb\xf8\x68\x3e\x5f\x36\x12\x4f\x01\x41\x29\x1a\xee\xca\x87\xd7\xb3\x74\x2c\xbe\x9f\x7d\x7f\xb7\x28\x2b\x98\x36\x7f\xf0\xeb\x68\xb8\xfb\xb1\x2a\x19\xaf\x56\x65\x06\x20\x7b\x1b\xfc\x35\x23\x37\x0f\xa3\xe1\xee\x13\x9a\x8e\x21\x08\xe0\x70\x17\x1f\x46\xc3\xdd\x0f\x34\x19\xee\xe2\xfe\xbe\xa8\x68\xc2\xa9\xb8\x1e\xf7\x0f\x04\x35\xd4\x5d\xb9\x7f\x5f\xd4\x55\x94\xd0\xef\xfe\x03\xd5\x9e\xc5\x6c\x22\x7e\x8a\x02\x8f\x26\xf0\x46\x94\xf5\x8e\xc2\x7d\x05\xef\xf7\x22\x00\x58\x5b\xaa\xd6\xed\x3f\x70\xc9\x7b\xb0\xaf\x08\x7b\x70\x00\xdf\xe4\xe0\xa5\x81\x0f\xee\xaa\x5f\x8a\x58\x07\xf7\xa0\x15\xe2\x78\x78\x20\xda\xf0\x62\x36\x85\xaf\x1f\xd4\xc6\xe2\xe0\xa1\x37\x16\x07\x87\xf5\x81\xb8\xdb\xab\x0d\xc3\x5d\x51\xf2\xcb\x6a\xc9\xc1\xae\xe6\xee\x7d\x77\x4c\xfa\x40\x89\xe7\x7d\x78\x14\xed\x7b\xbe\x0f\x8f\xa2\x71\xcf\x0f\xe0\x51\x7c\xfd\xfc\x2e\xdc\xf2\xfb\x40\x9d\xe7\xf7\x20\x5d\x34\xec\xf9\x7d\x78\x14\x4d\x7a\xfe\x00\x1e\x45\x73\x9e\x3f\x04\x12\x8b\x76\x3c\x3f\x84\xc7\x3e\x54\xd2\x83\x67\x59\x21\xd4\xb8\x0f\x35\xf6\xa1\xca\xbb\xa2\xca\xb7\x17\x53\x45\xc3\x3e\xb4\xda\x1b\xf4\xfd\x7d\x91\xe5\x0d\x17\xb3\x73\x83\x17\xde\x94\x1b\xf3\xeb\xba\xcc\x0b\xe6\x96\x9e\x68\xf3\xec\x0c\x7e\x9f\xaf\xd7\xf0\x57\x9e\x51\x7d\xa6\xf1\x02\x5a\x6d\xf4\xb2\x60\x6d\x17\xac\xc0\x2b\xa4\x04\x66\x31\x56\xd3\xcb\xb0\x4f\xd4\x66\x68\x40\x51\x43\xad\x6d\xc4\xe3\x8e\xe6\x43\x16\xfd\x55\x35\x54\x7c\x79\x2e\x72\xf8\x6d\x84\xb0\xbd\x1b\xac\x7d\x85\xff\x7d\x89\xea\x82\xcf\x39\x55\x92\x32\xa9\x27\xdf\x2e\x69\xd5\xab\x50\xeb\xb2\xe9\xd1\x67\x58\xa9\x6e\x00\x79\xa2\xde\x06\xab\xae\x6c\xfb\xf4\x67\x48\x62\xe8\x21\xca\x03\x9b\x8d\x1f\x37\xc4\x6b\xc6\xbf\x55\xd3\x06\xe1\x65\xe6\x0a\x2f\x19\x5d\x51\x88\x57\x98\xf1\x85\xde\x62\x56\x1e\x13\x4a\x94\xbc\xa5\x6b\x7e\xfc\xc1\x4d\x92\x5b\x25\xf3\xd2\xb6\x0e\xd0\x2d\x83\xda\x32\x46\x1b\x84\x2f\xdc\xed\xce\x55\x25\xfe\xca\x9e\xf9\xcd\xef\x32\x9f\xac\xe8\xe7\x56\x6a\xcb\x57\xd6\xa2\x4a\xe6\x1c\xee\x02\x84\xdd\xb1\x79\x39\xac\xe8\x60\x8f\x76\x9d\x54\x31\x88\x90\xfb\xcb\xf6\x72\xbf\xf8\xe5\x7e\xf1\xca\xd5\x2f\xbd\x62\xfd\x2c\x6d\x39\x4c\xbd\x7f\x6b\xc5\xce\x64\x45\xc5\x25\x4c\x77\xfd\xd2\x3f\xbd\x7e\x4a\x7f\x52\x97\xf7\xc5\x04\x16\x84\x93\xa4\x77\x44\x6c\x33\xaf\x73\x2c\xa1\xc4\xce\x3d\xcb\x1a\xb7\x96\x1f\x1c\x9d\x28\x59\x64\xad\x27\xc3\xda\xa9\x93\x92\xaa\x96\x4f\xa9\x49\x45\xd5\xfb\x12\x9b\x17\xf4\x26\x6d\xb5\x6b\x00\x4e\xe7\x5c\xa8\x00\x38\x6f\xb5\xe0\x73\xf4\x03\x5b\x0f\x98\x4e\x4c\x80\xed\x81\x03\xfc\xb3\x2a\x25\xc3\xea\x2f\xde\x8c\x50\xd0\x76\x6a\xbd\x3d\x80\x01\xbf\x72\x03\x86\xb8\x21\x0d\x9c\x24\xbf\x29\x06\x54\xd4\x4d\x9a\xc9\x91\x58\xd6\x28\xec\x00\x68\x3a\x38\x00\x0a\x3d\xb3\x96\xe2\x93\xc9\x02\x6a\x42\xc1\x2b\xaf\xe0\xcf\x89\xcc\xf6\x45\xfd\xfd\x3b\x89\x28\x99\x78\x59\x7e\x13\x49\x17\xb5\xe6\x98\x28\x30\x94\xbc\xad\x91\x4f\x61\x4d\x46\x94\x7c\xab\x73\xc9\x6c\x7e\xed\x0c\x84\x3b\x50\xda\xc6\x8f\x92\x69\xf6\xbf\x0b\xc1\xe0\x07\x09\xa8\x53\xcc\x41\x3c\x6d\x24\xfa\x64\xf3\x62\x45\xfc\x44\x50\x09\x35\x83\x86\xd5\x27\x5e\x03\x75\xa4\xe4\xf7\x8d\x38\x91\xdb\xeb\x30\xd7\x72\x5a\xb0\x95\xb2\xb1\xae\x36\x62\xa6\xcf\x1b\x01\x2c\x7b\x7d\x84\xe2\x39\x25\x32\x16\x9b\x15\xa2\x81\x07\x9c\x94\x31\x0d\x77\xdf\xcb\x58\x60\x7c\x01\xab\xca\xbb\xc9\x45\x5e\x56\x3b\xa7\xe5\x74\x3e\xe1\x6e\xca\x33\x23\xc6\x76\x53\xa5\x95\x90\xf7\x25\x5c\xc3\xdc\x14\xc7\x3e\xdd\x49\xae\xc9\x6c\x50\xbc\xd0\xd8\x92\x57\x19\x79\x9b\xc6\x13\x4a\xfe\x64\xf1\x94\x92\xab\x2c\xae\x28\x79\xc7\xe2\x2b\x1a\xde\x34\xda\x15\x5d\x66\xb8\xb5\x69\xd1\x17\x8e\x1b\xad\x8b\xde\x70\xdc\x68\x60\x34\xce\x70\x7b\x1b\xa3\x6f\x7c\x23\xdb\x74\x9d\x91\xb3\x73\xfc\x3d\x23\x7b\x8e\x5d\xee\x0b\xb1\x8c\xf6\x1e\x7f\xcf\x40\x5f\xab\x83\x2d\x5e\x67\x67\xdf\xb3\x73\x2c\xff\x28\xa8\xf8\x6c\x6f\xcf\xf3\xe0\x78\x29\x85\x4e\xdf\xb3\x3b\x77\x62\x95\xd1\x14\x10\xdb\xa2\xa4\xd8\xf4\x28\x23\x37\x1b\xfc\x8a\xdc\xa8\xe4\xe8\x28\xdb\xe0\x3f\xec\xcf\x4e\x7f\x83\x9f\x64\xe4\x28\x73\x2c\x9b\x32\xdf\x41\x5d\x3b\xc6\x88\x05\x0c\x36\x13\xdf\x51\xfd\x28\x53\x6e\xea\x35\x57\x76\x16\x04\xac\x5b\x83\x53\x78\xa3\x62\xaf\x7e\xac\xa6\x74\x39\xe6\x32\xbc\xb7\xba\x21\xb9\x2a\x9a\xad\x1f\xbe\x69\x7c\xa6\x3c\x7d\x6e\x36\x38\x03\xb1\x48\xb6\x53\x56\x3b\x29\xe2\x67\xd9\x39\x49\xce\x32\x90\xc3\x87\xd4\x6d\x1c\xa6\xbf\xd4\xac\x64\x7b\xfe\x66\x6b\x08\x77\xdc\x71\xac\xb5\x8e\x36\xee\x4e\x9d\xac\x92\x94\xce\x5e\x25\x25\xde\xd2\xbe\x54\x3c\xbb\x63\x7e\x9c\x85\xe8\xe6\x45\xf8\x07\x8a\x5f\x84\xaf\x1c\x3b\xa0\x67\x99\xe3\x0f\xfe\x4a\x8f\x7d\x87\x90\xa3\xac\x3e\x9f\xef\x3f\x44\x28\x7e\x19\xbe\xc2\x89\xf8\xf3\x87\x07\x5a\xf5\x3c\xf3\x01\x68\xdd\xa1\xa4\x1a\x47\xe2\x69\x8d\x05\xda\xdd\xda\x99\x58\x71\x5c\x92\x58\x08\x09\x46\x1a\x2f\x43\xe4\x3b\xa7\x02\x2a\x6b\x27\x54\x8e\xaa\x8d\x25\xe9\x21\x9e\x27\x61\x82\xe4\x45\x42\x39\x2c\x3a\x51\x55\x76\xc0\x49\x2b\xc5\x37\x1b\x00\x91\x35\x66\x6e\x99\xa4\xbf\xcf\x06\x60\x62\xb3\x6d\x60\xf9\x22\xf7\x07\x76\xbd\x3e\xca\xe2\x27\x19\x31\x34\x06\x52\x52\x49\xca\x3f\x74\x22\x8a\xdb\x62\x71\xbc\xb8\x85\xba\x12\xd5\xa1\x3e\x54\x87\x08\xc5\xa9\xb8\x97\xa9\x81\x79\x92\x21\xbc\x7d\x4e\x34\x1a\x4b\x28\x16\xbc\x82\x05\xaf\x60\xd9\x4e\x14\x01\xf7\xa8\x81\x97\xc2\x93\x97\xd9\x6d\xf0\xc5\xaf\xbc\xb7\xf5\xd0\x14\xf8\x0f\xef\xb5\xdc\xf1\xcc\xcb\xd7\x7e\xc9\xfc\xeb\x05\x5f\xae\xde\xd1\xb2\x5a\xe1\x37\xde\xab\x6a\x76\x89\xdf\x7a\x29\x82\x41\x24\x31\x75\x4b\x20\x5c\x08\x3e\xf1\x72\xbd\x9c\x4e\x39\x2b\xe9\x8a\x9b\xe6\xbe\xcb\x7e\x08\xd7\xfc\xa7\x97\xa5\x16\x50\xe3\xbd\xf7\xf2\xf5\xec\xd2\xbc\x39\xf5\x6b\x66\x13\x5b\xe9\x07\x58\x5d\x3f\xfa\x94\x2a\x66\x17\x13\xf6\xa5\xe4\x13\x86\xff\xd2\xf6\xe2\x1d\x42\x5e\x67\x83\xd7\x99\xeb\xac\xb9\xc1\x9f\x94\x62\xe1\xb3\xfa\xfb\x05\x44\x93\x7f\x67\xe4\x4d\x16\x22\xfc\x5b\x46\xfa\xcf\xee\x3e\xfe\x3b\x1b\xbc\xc9\x5a\x9c\x3c\x45\x9e\xbd\xbf\xb3\x8d\xe7\x55\x9f\x87\xc6\xd3\xe3\x6d\x16\x22\x75\x50\x3f\xc9\xb4\x80\xf2\xf0\x50\x9e\x70\xde\xd9\x94\x87\x32\xe5\x4f\x9b\xf2\x40\xa6\xbc\xb7\x29\xf7\x65\xca\xa9\x4d\xb9\x67\x0e\x1a\x75\x4c\x95\x7d\x00\x32\xb4\x9a\xb5\x5c\x4c\xbe\xda\xcd\xe1\xf0\x50\x17\x74\x92\xc9\xa2\x0f\x1f\xea\x94\x77\x3a\xe5\x81\x4e\xf9\x53\xa7\xdc\xd7\x29\xef\x75\xca\x3d\x9d\x72\x9a\xfd\x6c\x83\xd2\x5c\x23\x04\x42\xd3\xf4\xd2\xf1\x52\xee\x7a\x8e\xb7\x62\x6e\xad\x89\xbd\x9c\xaf\xf4\x74\x76\xc2\x94\xe7\x3a\xba\x2b\x21\xe4\x53\x36\x08\x3f\x65\xe4\x8c\x9e\x8b\x81\x7d\x95\x85\x27\x19\xce\x72\x84\xa2\x4f\x99\x41\x77\xd6\x46\x51\x99\x03\x97\x9d\x87\x6e\xbc\xa1\xcf\x99\xf6\x77\xfe\x9c\xc5\x8a\x41\xe2\x3f\x32\x30\x37\xce\x43\xdf\xa5\x53\x7d\xd9\xf9\x92\x19\x84\x9f\x4f\x19\xba\xf9\x92\x59\x57\x76\x69\x51\x2b\xa5\x47\x9f\xb2\x38\xcd\xc3\xc3\x43\x37\xf2\x92\x84\xfd\xb3\x00\x87\x54\xc7\x7d\x49\x49\x72\x46\xcf\x63\x36\xdb\x49\x49\x1a\x76\x7a\x48\xe1\xdd\x54\x1a\xd6\x79\xb3\x41\xb1\x62\x64\x05\xf3\x96\xa2\x1b\x39\x06\xa6\x2d\x41\x20\x28\xf2\x29\xd3\xf0\x09\x77\xfa\x08\x61\x49\x99\x3c\x47\x38\x8d\x8d\x89\x2f\x4c\x01\xd7\xba\xb7\x30\xc3\x90\xfe\x8b\xf4\x8d\x93\x51\xbf\xf7\xe0\xe0\xc1\xdd\xfe\xc3\xfd\xfe\x5e\x18\x86\xce\x2f\x7a\x27\xf9\x57\xbf\x87\xfe\x95\xae\x7b\xe8\x4e\x1f\xfd\x8f\x03\x9e\x52\xe6\x46\xc9\x2b\xc1\x2f\xb4\xf7\xf2\x6c\xbe\x44\x37\x89\x74\xf1\x4d\x50\x2c\xdd\xb0\xec\x3b\x1f\x2c\x96\x22\x1b\x71\xff\x2c\x3d\x0f\x82\x50\xfc\x81\xd8\x17\x0e\x3a\x12\x40\x46\xe7\xf6\x9c\x25\x5d\xb2\xc7\xd2\x24\x05\x4f\xd4\xdf\x69\x5e\xb3\x2a\xaf\xc4\x50\x4e\x73\x32\xc9\x89\xca\xeb\x0e\xf4\x2c\xb7\xb2\xf6\x51\x6e\x76\xa2\x17\xe1\x28\xd7\x46\xed\xdd\x7f\xd4\x49\xad\xfb\x8f\x7a\x2d\xe1\x05\x9c\xf8\xdd\xf3\xdc\x06\xf4\x70\x51\x9f\xf4\x79\xcf\x33\x2e\x50\x67\x96\x67\x57\xf3\x52\x6a\x71\x3f\x94\x53\xfe\x28\x41\xad\xe9\x24\xd1\x56\x3b\x00\x90\xd2\xfa\x25\x98\x24\xb5\x7e\x6b\x31\xcf\x7f\x58\x08\xda\x52\x84\x0b\x21\x68\x11\x9a\x1c\x6e\xfa\xaa\xfa\x3e\xce\x09\x8d\x25\x9d\x61\x00\xe4\x90\x5b\x2d\xb3\x13\xc7\x4a\x3f\x29\xfc\x4b\x49\x5d\x40\x43\xe0\x5e\xed\x8f\x41\x93\xb1\xc8\x01\x17\xc1\xcf\xad\x0c\xe6\xdd\x00\xb8\x96\x15\xa7\xb9\xac\xa7\xd3\x97\x91\xf4\x7a\x1d\x1d\x5e\x6d\x0b\x26\xb2\x61\x76\x89\xd3\x36\xcd\x09\xc5\x09\xb1\xa9\x71\x42\x6e\x14\x13\x44\x14\xcf\x92\x25\x5f\x7c\xe3\xec\x49\xb9\x5a\x46\x09\xae\x44\xaa\x74\xcb\xb7\x90\xee\x93\xdc\x8d\x09\x38\xae\x87\x88\x3f\xe8\x89\xa3\xe3\x24\x27\x49\x3c\xce\x3d\x32\x91\x1b\x9f\x06\x51\x0f\xbb\xfd\x8e\x12\xbc\xd0\x17\x44\x29\x20\x54\x96\x59\x13\x41\x79\xc0\xa3\x23\x89\x81\x98\xf3\x39\x16\x66\xd0\x2a\xf7\x7c\x19\x2f\x72\xe9\x40\x2e\xbd\xb5\xfe\xbc\xe0\x17\x9c\xdc\x24\x74\xc9\xa5\xdc\x90\x76\xa7\xea\x48\x04\xbf\x01\x34\x19\x32\x69\xa9\x23\x5d\x70\x16\xdd\x88\xe6\x97\x55\xae\xa6\x24\xcf\x32\x9e\xae\x74\xeb\x9c\x21\xfa\x96\x5b\xcc\x68\xa7\xc2\x38\xf1\xaa\x97\xba\xaa\x64\x7b\x93\xcc\xb3\xd3\x1c\x99\x0a\xcf\xba\x55\xb4\x2b\x1f\x4c\x7b\x68\x57\x3d\xb9\x61\x37\x2f\x4d\x9b\xea\x84\xa7\x58\x86\x01\x5a\x72\x09\x5c\x01\xa1\x98\xf3\xa8\x87\xe7\xf4\x7a\x32\xa3\x4c\xa3\x3e\xc8\x03\x9a\xb2\xb0\xb3\xbc\x60\xc6\x00\xc6\xc4\x71\x52\xb9\xda\x42\x05\x27\x20\x9c\x82\xd5\x86\xe6\xc7\x06\xb5\x4e\x12\x39\x56\x3c\x95\x0e\x12\x35\xdc\x51\xa8\x9e\x24\x26\x2b\x4e\x55\xba\x58\xc0\xd4\x47\x24\xf1\x06\xe2\x3a\xf7\xef\xa3\x76\x7d\xb2\xeb\xc4\xb7\x1c\x02\xd2\xc7\xf5\x66\x8a\xfc\x86\xd6\xb6\x31\xa1\x93\x4a\x74\xcb\xb0\x7e\x40\x5b\xdb\xe8\x36\xeb\x7b\x5e\x17\x9d\xfa\x55\x4b\xde\xd5\xf1\x11\xec\x80\xe7\x84\x2b\x62\x19\x22\x39\x46\x5c\xee\x11\x20\xd3\xa6\x8f\x19\xd4\x1f\xcb\x3f\x44\x4e\x9c\x58\xcd\x9f\x62\x93\x91\x3c\xae\x17\x29\x57\xb5\xa2\x8d\x5a\x05\x04\x65\x2e\xdc\xb6\x62\xf7\x95\x43\x99\x1c\xa1\x8d\xd7\x1c\xd3\x14\x69\x14\xc9\x1d\xee\x9e\x90\x1e\x9e\xca\x5d\x6d\x2e\xff\x5c\x19\xf3\x4b\x5d\xbc\xec\xcf\x77\x52\xc4\x6c\x76\x93\x93\xef\xb5\x15\x14\x2c\x35\x1f\x29\x72\xa6\x4d\x1e\xaf\xe7\xaf\xb3\xfc\xf7\xae\x9f\x00\x33\xe0\x3b\x04\xad\xd4\xb3\xe0\x7b\x57\x3d\xd9\xa9\xf0\xbd\xab\x1f\xdd\x09\xa1\x58\xe5\x6a\x10\xce\xc9\x15\x19\x56\x29\xc5\x53\x32\x46\xd1\x15\xb9\x52\xac\x41\xe3\xfc\xb1\x0c\x80\x9d\x23\x58\xd5\x74\x74\xff\xab\x20\x08\x4d\xb6\x7a\x1f\xec\x32\xfd\x5f\x6c\x3d\x8a\x8f\xf2\x30\xc7\xf5\x12\x51\x4c\x23\xa0\xed\x31\xa1\x78\x45\xbe\xc7\x62\x45\x4f\x29\x49\xb5\x60\x7f\x05\x36\xb4\x37\x2a\x74\xcc\x31\x59\xe9\xfa\xea\xd7\x7d\x6b\x7d\x77\x8c\x6e\xc6\xe4\x58\x8a\x03\x53\x8a\xc7\x38\x47\xc6\xd8\x64\x4c\x8e\x0d\x4e\x1e\x94\x79\x10\x1d\xab\x55\xed\x03\xcd\x89\xf3\x1c\xec\xdd\xed\x1d\x3e\x58\xdf\xbf\x1b\xab\xc8\x36\x6e\xdd\xf9\x16\xc3\xbf\xe3\x81\x5f\x6f\x74\xec\x6c\x69\xf9\x7a\x6d\x8e\x69\xb9\xb1\xe2\x1c\xcb\x33\x9e\xdb\x4a\x59\xe3\x7e\x24\xa6\x6b\xcf\x44\x2e\xb4\x64\x0d\x82\x61\x15\x52\xdb\xd4\x35\x39\xd8\x87\x39\xac\x96\x67\x1d\x19\x30\x1f\x98\x24\x72\xf6\xfd\x3c\xca\xe5\x59\xff\x3b\x42\x9b\xef\xe4\xbb\x9c\x35\xb6\x79\xdf\xd7\xeb\xef\x44\xcc\x08\x30\x4e\xae\xcf\x5e\x53\xa6\xb2\x3f\x81\x3d\xf3\x3b\xf1\xe6\x3f\xd6\xf3\x1f\x3b\x8b\x0b\xc9\x48\x8e\x5b\xd7\x02\x15\x78\xbe\x2f\x63\x64\x02\x67\x4f\xc9\x38\x52\x5c\x3a\x8f\x9d\xa9\x4c\xa6\xb1\x5b\xe4\x55\xfc\x24\x0f\x27\x62\x79\xf6\x59\x99\x4c\xe2\xda\x86\x4b\xc6\xde\xba\xfd\xd4\xbd\x40\x69\xda\xc4\xe6\xa9\xbe\x3a\x50\x64\xc1\xf9\xa8\x0b\xce\x67\x82\xcb\x25\xe7\x98\x13\x66\x46\xc6\xf9\x96\xa3\x1b\x9b\x2e\x0b\x66\x84\xc7\x9c\xa4\xb7\x08\xaa\xea\x52\x97\xc3\x3e\x66\x08\xc5\x4c\xe1\xeb\xa0\x8d\x44\x99\x3f\xce\xc9\x27\xda\x7d\x0f\x90\xae\xf2\x7c\xf2\xc4\xe2\x43\xe1\x67\x39\x09\x2b\x7e\xb9\x43\x69\x17\x90\x30\x2a\x5e\xad\x50\x77\xc1\xb3\xa5\x03\xc0\xec\xec\x14\x09\xa9\x11\x2d\x16\xd7\x2a\x08\x4d\x97\x12\xbd\x3f\x39\xbc\x9b\x0e\x92\x48\xde\x4b\xa4\xe3\xaa\x4f\xf0\x14\x22\xf8\xd7\x47\x06\x0e\xa7\xce\xf2\xee\x0c\xad\x91\xfd\xbc\xca\xc9\x4d\xb9\x7c\x33\xbb\x00\xd8\xa6\xa6\xea\x12\x64\x65\xbe\xbc\xe9\x79\x99\xf0\x05\x1a\xb0\x34\xa4\x48\xd4\x0a\xb2\x63\x5e\x7d\x15\x55\x9c\xf2\x95\x3c\xf0\xf8\x6a\x45\x79\x34\x68\x29\x46\x89\x8c\x7f\xcf\x43\x84\x39\x39\xce\xcd\x4a\x15\x33\xf2\x22\x0f\x19\xa6\x98\xa3\x98\x93\x4b\xf1\x2c\x9e\xf4\x6a\x40\x92\xd8\x48\x54\x1c\x3c\xdb\x20\x08\xb9\x65\x80\x14\xc5\x70\x6e\xe1\x28\x7e\x99\x43\xb8\x24\xd3\xd0\xf7\x7c\x3e\xa1\x29\xff\x2f\x37\x76\x45\x73\xd2\xff\xcf\x35\xfa\xf9\x6c\x91\xaa\x38\x8e\x5e\x9b\x6f\x6f\x71\x2a\x5b\xcc\xbc\x16\x0f\xab\x54\xb4\x39\xc5\x10\x44\x8a\x89\x36\x83\x4e\x88\x41\x9b\xf7\x6d\x3b\x13\x0b\x86\x0d\x61\x54\x4d\x3b\x13\xd5\x4e\xa6\xda\x99\x7a\x3e\xd8\x7f\xe4\xae\x39\x24\xce\x75\xcc\x15\x2d\xef\xd4\x8a\xf1\xb6\x05\x5d\x1c\x22\x67\x17\x13\x66\x26\x92\xec\xf2\x60\x4b\x7a\xc8\xa0\x82\xc8\x81\x00\x0b\x02\xe7\x47\xb7\x5c\xbe\xbb\x58\x70\x39\x73\xf5\xa7\x83\x4e\x22\x6d\xf4\xd6\x6b\xf1\xc4\x71\x86\x22\x5f\x5a\xfb\x3a\xf7\xa5\xb5\x9d\x3e\xe6\x44\x29\x39\x32\x8d\x59\x2f\xc5\xe0\x71\x1b\x3e\x8b\x95\xc1\x64\x83\x8c\x2c\xf3\x30\x43\x51\xc8\xc9\xeb\x30\x41\x83\x27\x59\x64\x04\xc8\x98\xf9\x85\x2d\x71\x46\x42\x89\x4d\xd2\x21\x84\x39\x9a\x00\x86\x06\xa0\x93\xe1\x28\x3a\xca\x50\x9c\x48\x58\xb3\x30\xc5\x59\x73\x45\xd0\x63\x26\x49\xee\x14\xa2\x52\x06\xea\xaf\x44\x3d\xd1\xf7\x96\x05\x79\x95\xc7\xce\x30\x91\x24\x4e\xda\xf8\x8a\xd0\xff\xb5\x3a\xe5\x96\xfc\x2d\xea\x94\xcc\xd1\x53\x3a\x63\xf4\xc6\x59\x51\xa9\xee\x5a\xdc\xce\x55\x89\x04\xc3\xa8\xc0\x37\x69\x32\x79\xcf\x53\x5e\x7e\xe3\x20\xd8\x11\xec\xb2\xf5\xa5\x9c\x17\xdb\xca\xfc\xf8\xf6\xf4\xe8\xf9\xb3\x7f\x6e\x2d\xfa\x47\x79\x64\x0d\xaa\xf5\x52\x08\xf0\x2a\xef\xb6\x2c\x54\xa1\xb8\x9b\x40\x2e\xdc\x90\x24\xbc\x6d\xb9\x86\xd8\xe9\xc6\xc1\x0b\x7f\x49\xd2\x58\x85\x4d\x6b\x6c\x3f\x1c\x36\x2b\xf2\x2c\x8f\xe1\x76\xfd\x6f\xb1\xb9\x51\x0f\x6a\x76\xcf\x5a\xd8\xdd\x66\x02\x66\xce\x10\x8a\xe1\x0a\x95\x62\x0e\x31\xf2\xb6\xb4\x4f\xb4\x25\xe7\xab\x63\xbe\x28\xbf\xa9\xb4\xe7\x8b\xd9\x54\x0a\xe6\xda\x47\x27\x0b\x82\x50\xed\xb9\x19\x4e\x11\xde\x52\xf4\xf6\xc1\xdd\x56\xdf\x7a\xdd\xfe\x05\xe0\x94\x9c\x56\x74\xbe\x2c\x66\x2b\xa9\x0d\x96\x4b\x94\xff\x41\xc7\xf9\xa0\x8d\x37\x60\x37\xde\x06\x17\xcd\xbb\xcd\xbc\xeb\xf5\xb0\x0a\x13\xa2\xfa\x87\xb7\x35\xae\xad\x92\xb6\xd4\x10\x6d\x2d\xe2\x96\xe6\xde\xf2\x32\x44\x38\x11\xa7\x33\xbd\x18\x6d\xe1\x6e\xae\x47\x48\x72\x37\x76\xd8\xe2\x57\xc7\xce\xe9\xd6\x71\xc9\x54\x0b\xfd\xe3\xfb\x5d\x89\x1f\x79\x92\x2b\xcb\x86\x72\x09\x7f\x5d\x35\xca\x3b\xe7\xe4\x9a\x8a\xf9\xe1\x1e\x53\xb7\x0d\x10\x6d\x8f\xf9\x44\x55\x44\x9a\x7f\xc0\xce\x5f\x06\xa3\x91\xcf\xe0\xe5\x03\x6f\xfb\x80\xef\x23\xee\x5e\x75\xc1\xdb\x21\x42\xea\xf4\x91\xda\x59\xbd\x69\x55\x1a\xde\x7d\x80\x29\xd2\x01\x36\x21\x26\x1a\x75\x63\x01\x38\xb1\x2d\x16\x3c\xf3\x3b\xe1\xf2\x3e\xbc\x84\x3f\xdd\x7f\x64\xe8\x8d\xf7\x3c\x83\xb0\x8f\xc6\x73\x5f\x10\x24\xf1\xa0\x3c\xa5\x48\x9a\xc9\x73\x6f\x42\x08\x79\x96\x03\xfc\xb5\x4c\x21\x37\x1b\xa4\x2f\xd4\x74\xc0\xc0\x58\x77\x27\x39\xe3\xe7\x91\xf8\x8f\xd0\x8d\xd8\x6c\x6c\x5d\xdc\x2e\xf9\x12\x22\x42\x05\x00\x71\x69\x5a\xc3\xa9\x7c\x78\x57\xc5\xfc\x32\x74\xae\x65\x38\xec\x01\x71\x5a\xc3\x59\xfc\x99\x3b\x58\x1a\x16\x1b\xa7\x63\xc2\xb6\xd4\x06\xa5\x8f\x87\xbb\x67\x72\xa0\x95\xf3\xd9\x39\x90\xb0\xe1\x6e\xa6\xc3\x4c\x28\x87\x2c\x34\xd0\xfc\xb1\x73\x59\xae\x8a\x9d\x31\xbf\x5e\xee\xdc\x0c\x77\xef\xf8\xce\x5f\xdd\xd1\xac\xac\xc2\xe1\x2e\xde\x19\xee\xa2\x3b\xc3\xdd\xcd\x70\x37\x4a\x4c\x84\x30\x37\x16\x41\x5e\x8f\xf8\xaf\xec\x00\xa8\x3e\xba\x24\xdd\x09\x5d\xae\x9e\x01\xef\x6b\xf1\x0f\x1b\x84\x0c\x2e\x7d\x32\x99\xa4\xd8\xcd\x45\x52\x71\x9e\x02\x19\xae\x4a\xf0\xdf\xc6\xa9\xfb\xad\xb4\xb0\x73\xae\xf4\x0f\x5d\x3d\x5b\xa8\x61\x4e\x3b\x3e\x28\xbe\xab\x77\x60\x31\x4a\x20\x1f\x66\x84\x75\x97\x2a\x8c\x48\x6b\x1c\x09\x27\x0c\x39\xd5\x51\xf5\x75\x31\x49\x8c\x0c\x77\x8f\xf9\xb5\x8c\xb4\x27\xe1\xfd\x30\x84\x51\x92\x3f\x01\xf7\x0f\x03\x78\x7c\x52\xaf\xcc\x91\x79\x72\x7d\xb6\x3e\x95\x9c\x11\xab\xd0\x6b\xa4\x27\xce\x48\xf2\x33\x0f\x67\xca\xf9\x36\x0b\xf5\x45\x4f\x7d\x03\xb2\x13\x4b\x81\x34\x66\x5b\xa2\x75\x18\x20\x74\x41\x09\xd9\x52\xf6\x28\x1d\x84\x89\x43\xdf\x61\xb5\x8f\x53\x14\xb1\xd8\x4d\xdc\x6f\x89\x13\x90\x87\x09\x20\xbc\x6b\x07\x44\x5b\x23\x48\xab\x9d\x8f\x9d\x03\x96\xd5\xb9\x79\x28\xb5\xba\x8c\xf5\xda\xfa\x59\xeb\x6f\xc8\x07\xb8\x4b\x74\xa7\xe0\xfe\x87\x70\xa2\x54\x2e\x84\xe2\x24\x4e\x08\x07\x9e\x8c\x6d\x6a\x4b\x65\xe3\x46\x65\x72\xb9\x4a\xba\x5c\x1a\xf3\x8a\x23\x08\x98\x77\xc2\x64\x34\x44\x82\xb2\xe5\xf1\x06\x61\x58\x68\x88\x59\xb7\xe1\xb7\x6a\x07\x8b\x19\xf9\x98\x87\xf2\x73\x0c\xc8\x6b\xfa\x3b\x05\x66\xaf\x5b\x1f\xd7\x4a\x89\x59\xa3\xdd\xcc\xb6\x7b\xb2\x85\x48\x77\x35\x91\xd6\xeb\x64\x5b\xa8\x5a\x19\x82\xc5\x4d\xf1\x33\x83\xa1\x9a\xe8\x3b\xdc\xe9\x3b\x84\x0c\xab\xb4\x96\x68\x87\xe0\xaf\x1f\x0f\x81\x13\x10\xe9\xec\xfc\x07\xe3\x31\x35\x17\xb8\xac\xd6\xb3\x07\xcd\xe1\xff\xe4\xd6\x8d\xb3\x7f\x8b\x01\xe6\x8e\x09\x53\x6b\xb8\xa7\x2d\x51\x9e\x3c\x26\x94\x41\x40\x75\x53\xd2\x5a\x43\x3c\x17\x5e\xa7\x08\xbb\x29\x1a\x13\x85\xa4\xfb\xdb\x6f\xf2\xb5\x12\x84\xfe\x4d\xb5\x8d\x41\x2a\xf8\x28\x91\x7c\xa4\xd6\x96\x16\x3e\x4a\x11\x4e\x2d\x1f\x55\x32\x3a\x33\x4e\x6d\x73\x52\x65\xe1\x6a\xca\x85\x21\xdc\xd6\x76\xb1\x07\x9e\xe4\xd2\xe8\xa9\xaa\x5c\x28\x31\xa0\xbe\xfd\x4c\x1d\x9e\xbc\x7e\xab\xad\xad\x3d\x30\xcf\x55\xfd\xe2\xa0\x69\x31\x80\xce\x45\x95\xc1\x49\x68\x8e\x49\xda\x3e\x26\x5e\xf4\x1a\x71\xf2\x93\xce\x99\x72\x3d\x81\x21\xd2\x31\xb2\xdb\x86\xc3\x11\x8d\x98\xe1\x48\x6f\x19\x0e\xd1\x4a\x80\xf7\x53\xc0\x03\x84\xd0\x64\xa0\xd8\x57\x0e\x8c\xe1\x7b\x80\xdc\x88\xec\x52\x13\x59\xe3\xf0\xdf\x5a\x0a\x9c\xf8\x19\xd5\x18\xa4\x68\xbd\xae\x92\x9a\x7d\xbb\xed\xa5\x9d\x38\x30\x12\x92\xf8\xe9\x16\xe2\x7f\x77\xa1\x40\xb6\x10\x99\xb5\x13\xd9\x6c\x14\x14\x1c\x54\x72\xbe\x92\x2d\x03\x17\x65\x08\x2e\x0f\x94\x06\x51\xd4\x16\x4a\x33\x43\x69\x66\x28\xcd\xb6\x53\x9a\x4a\x3b\x62\xbd\x14\x30\xd8\x63\xd3\x08\xfe\xea\x9a\x99\x37\x06\xa2\x15\xac\x3e\x06\x1c\xcb\x2f\xa2\xb1\x7c\x8f\x35\xee\xee\x6f\xbf\x54\xd3\xc4\x7c\xad\xc6\x85\xc9\x71\x61\x16\x64\x8f\xd4\xc8\x32\xd5\x9f\xd8\xa1\x49\xea\x7e\x9a\xf6\xe0\x42\x43\x8e\x73\x5c\xe0\xb1\x8d\x47\x33\x91\x2a\xad\x95\x32\xdb\x20\x39\xbe\x26\x39\xe9\xe1\x23\x79\x0e\x50\xc4\x9c\x06\xc1\xf5\xa3\x42\xcb\xae\xaf\xef\xdc\x41\x37\x53\xb9\x95\x3f\xbe\x1e\x84\x47\x64\xaa\x34\x64\x28\x3a\x22\x53\x73\x00\x81\x50\xa6\xe4\x2a\xe4\x78\x8a\x8b\xb3\xeb\x73\x3c\x76\xc3\xad\x7f\x35\x76\x45\xd3\x20\x08\xa7\xe4\x48\x69\x2e\x36\xe2\xbe\x51\x4d\xcd\x16\xff\xd5\xdd\xe2\x13\x51\x18\x8a\x73\x92\x85\x5f\x71\x8e\xaf\xcd\xf1\x7b\x35\x98\x90\xaf\xd1\xca\x9c\x62\xbe\xc6\x2b\xf2\x35\x9e\x92\x23\x41\x4a\xc1\xfb\x45\x0d\x83\x36\x85\x92\xf0\xc4\x69\xd1\x54\x99\x8e\xd4\xba\x3a\x25\xf3\x90\xeb\x0e\x60\x4b\x91\x50\xb4\x62\x0a\xad\xc0\x4e\x2b\xa6\x4e\x2b\xa6\x78\x45\xa6\xe6\x20\x32\x01\xa4\x8a\x29\x61\xb2\x13\xb5\x6a\x8e\xc8\xf7\x70\x8a\x39\xbe\xae\x57\x75\x24\x2e\x7a\x86\xaf\x8f\x5c\x72\x4c\xbb\xf2\xd2\xa1\x7b\x70\x04\x6c\x75\x1d\xc1\x5f\x84\x45\x03\x8f\x1a\x0d\x3c\x72\x1a\x78\x84\x57\x82\xf0\x54\x14\xd5\x16\x5d\x5b\xaf\xc8\x21\xc0\x15\xba\x3d\x31\x06\xbc\x8a\xa7\x26\x1a\x50\xa6\x4a\xc2\x02\x6d\xd7\x4e\x8c\xeb\xd7\xbb\x7b\x3d\x84\xe2\x82\x8c\xe5\x65\xa2\x40\xf1\xb0\x32\x43\x52\x34\x32\xf7\x91\x35\xac\x9d\x92\xb1\xe6\x5e\x9f\x6d\xf1\x57\x52\xc0\x71\x3e\x34\xd1\xdf\x56\x41\xd0\xf9\xda\x65\xb3\x8a\x0b\x62\x3b\x19\xd0\xcd\xca\xe5\xe4\x95\x9a\x0a\x82\x93\x57\x1e\x27\x1f\x03\x27\xaf\xf0\x57\x89\x45\x87\x27\x2e\x33\x1f\x1b\x66\x16\xd7\xf2\x95\xc7\xcc\x2b\xc3\xca\xc7\x75\x56\x5e\x49\x56\x3e\xf6\x58\x79\x3a\x18\x93\xe3\xc8\x4c\x23\x72\x1c\x4f\xc9\x71\xbc\x92\xac\x2c\xfb\xe0\x32\xf1\x0a\xe1\xb1\xd3\x92\x95\x62\xe2\x2d\xbd\xfd\x0a\xcc\x6c\xfb\xa0\x99\xec\xab\xe2\xe7\xaf\x1e\xbb\x88\xa6\x7c\x75\x9a\xf2\x15\x4f\xc9\x57\xc3\x05\x63\xe0\xe7\x15\xf0\xf3\x0a\x6d\xaf\xf1\x7b\xb8\x02\xbe\x6e\xaf\xd5\xb2\xf6\xb0\xf2\xe6\xfa\xaa\xc6\xdc\x5f\x15\x73\x7f\xb5\xcc\xfd\x53\xad\x15\x43\xf0\x2b\xcc\x6d\x62\x43\x3a\x1a\x09\x86\x33\x5c\x68\x0e\xff\x81\xd4\x30\x08\x32\xbb\x65\x98\xb1\xcf\xc0\x9d\x75\x0c\xb8\xc8\x59\x6d\x03\x41\x0a\x82\xe9\x07\x05\x8b\x51\x9e\x20\xb5\xab\x65\x2d\xbb\x1a\x8d\x6e\x26\xaa\x22\x89\xd6\xc3\x34\xfb\x8f\x15\x16\x90\x3a\x08\x4c\xcc\xe6\x38\x76\x34\xe3\x0f\xa2\x32\x0b\x9d\xb6\xa3\x9b\x34\xa4\x78\xac\xe9\x89\x62\x71\x37\x19\xe3\x66\xeb\x9d\xeb\x04\x25\x26\x84\xdc\xc6\xf7\xdb\x81\xea\xfd\x9b\x8f\xac\x4b\x56\x33\xac\xb6\x55\xe4\x5d\x5f\xc6\x38\xdb\x5a\xdf\x06\x9a\xab\x67\x9e\xb4\x98\x93\x29\x63\x62\x0a\xdf\x38\x1d\x1c\x84\x4c\x1c\x35\xeb\x1d\xd2\x27\xcf\x02\x67\x92\xd5\x9c\x4b\x17\x25\x0c\x45\x61\x21\x0e\xcc\xb2\x20\x99\x47\xb7\xd5\x3b\x30\x17\x08\x17\xb6\xe5\x70\x8b\x28\xdc\x92\x2c\xa6\x39\x08\xa8\xf5\x89\x41\xc5\x7c\x1e\xab\x91\xb4\x02\x05\x31\x82\x4c\x8d\xe0\x18\x95\x59\x78\x17\x4e\x12\x80\x14\xc6\xb6\xdd\xc8\x80\xcc\x5e\x8a\x9f\xd9\xbf\x7c\x41\xee\xda\x7d\x0c\x86\x87\xf9\x83\xc3\x70\x56\xbb\x7a\x6d\x19\x13\xb0\x1f\x49\xa5\x56\xad\x36\x2e\xa0\xa6\x1b\x56\xa6\xe4\x0d\x13\xd7\x85\xcc\x52\xaf\x56\xa6\x4b\xac\xcd\x96\x93\x65\xd6\x7e\xb2\x34\x80\x20\x99\x14\x20\x66\xd8\x6a\xa3\xee\x6b\x22\x0e\x42\xbf\xa3\x58\x75\xb4\x65\xfc\x65\x87\x30\x13\x17\x34\xa7\xc1\xf5\x8c\x38\x57\xee\xa6\x27\x79\x98\x99\x43\x5c\x4a\xcd\x82\x02\xeb\x76\xe2\xbc\x3b\xb6\xaf\x26\x41\x00\x07\xed\xec\xb6\x60\xe9\x59\x10\x74\xc6\x7a\x49\xa0\x9e\x95\x8b\x32\x38\x91\x1b\xa8\x89\x14\x69\x77\xd2\x7d\x2c\xa3\xe4\x4d\x28\x78\x1f\xaf\xd7\xb4\x5b\xc1\x5f\x15\x4f\xa6\x82\x00\x2f\x8e\x6c\x51\x76\x5a\xda\x0e\x7c\xce\xc9\xfb\x3c\xec\xf4\x10\xfe\x22\x9f\xfa\x08\xff\x9d\x93\x9b\x0d\xfe\xcd\xb1\x0d\xfe\x3b\xdf\x60\x5a\xf8\xbf\x13\xff\xb7\x2b\x9d\x96\x76\xf4\x00\xa4\x4c\xc8\xdf\x75\x99\x71\xff\xc1\x5d\x84\x5a\x04\x53\xac\x90\x52\xad\x97\x61\x52\x48\x17\x20\x5a\x48\xff\x95\xdf\x72\xfc\x77\x8e\xc0\xcf\xc7\x04\x03\xae\xdb\xeb\x4b\x32\xf5\xfb\x11\x60\xf8\x59\x70\x23\x03\xdc\x97\x00\x55\x00\x9a\xe2\xe3\xfb\x97\xd1\x49\x02\xdb\x91\x14\x5b\x36\x3c\x13\x21\x26\xf0\xc0\x8d\x84\x1e\x25\x18\x82\x11\x3b\x65\xa8\xa3\x3b\x95\x21\x55\x05\xed\x71\x42\x4e\x12\x71\x92\x47\x9b\x17\xe1\x6f\xb9\x6a\xbb\x6b\xb3\xcf\x0b\x70\x93\x12\xef\x5e\x84\xb4\x10\xff\x27\x85\xf3\x3e\x93\x5d\x2a\xc2\xa4\xb0\x2e\x3b\x52\x78\x9d\x16\xe1\x6f\xb9\x9f\x98\xaa\xea\xe4\xf2\x1b\x27\x4a\x67\xaf\x28\x87\xa1\xf6\xd4\x0d\xac\x98\x43\xf1\xd4\x94\xad\xac\x43\xa1\x41\x18\x1a\x24\x75\x0f\x6f\xec\xd8\xf6\xbc\xa1\x2d\x0a\x1d\xb8\x59\x01\xaa\x38\x02\x4e\x50\x14\xc8\x88\xf2\xc0\xbf\x1a\x74\xca\x57\x97\x79\xd6\xd3\x61\x0a\x51\xf7\x8a\x6b\xb6\xa0\x2b\xce\xb0\xb5\x2f\x49\x25\x6e\x3e\x21\x4f\x98\xf3\xe3\xa9\xbd\x42\x25\x06\xb6\xb0\x7f\x48\x0c\xd0\xa2\xa3\x4d\xd6\xd5\x82\x62\xac\xbb\xe0\xdf\x38\x9d\x9c\x2c\x18\x5f\xc8\xd0\xcd\x1d\x42\x5c\x39\x63\x70\xff\x6e\x4b\xd1\x95\x17\xa7\x18\xdd\xa8\x07\xbd\x3a\x24\x71\xa2\xdf\xc5\x62\x69\x2e\xab\x0b\xd0\x7d\x24\x00\x93\x28\x99\xca\x08\x93\xa1\x91\xfa\x20\xea\x09\xae\x54\x71\xeb\xb5\x11\x8d\x38\xc0\xd8\x52\x0d\x6e\x32\x6d\x4c\x19\xa6\x11\x3a\xcc\xaf\x23\x33\x6e\xbf\x37\x96\x85\x0b\x6e\x77\x63\x2c\x9f\x23\x8a\x61\xd3\x8b\x12\x1d\x3a\x63\x54\xd4\x4d\x8a\x8e\x55\x38\x38\xbe\xc0\xe3\xc6\x4b\xd7\xde\x68\x52\x90\x1e\x7e\x2b\x8f\xef\x27\xf2\xcf\x3b\x75\x29\x2d\x3c\x5b\xe9\x3f\x43\xed\x85\x61\x14\x17\xfb\x7d\x2f\xde\x71\x55\x18\xbd\x47\xd5\xc0\xa9\xb3\x11\xa8\x7b\x71\x6a\xdc\x42\x82\x20\xb5\xb6\x59\xa9\x42\x9b\x92\xf8\x72\x00\x2e\xb7\x05\x59\xce\x3a\x30\x14\x3e\x58\xd6\xa4\x20\x59\xfc\x16\xac\x0d\x9a\x66\x0c\x35\x4b\x6b\x95\x54\x33\x42\xeb\xc5\x23\x3b\xdd\x2a\x83\xc7\xa7\x9f\xfc\x62\x07\xf3\x22\xfa\x5a\xc4\x14\x2c\xae\xa4\x74\xa4\x51\x20\x21\x93\x02\xdd\x64\xa4\x17\xb3\xd9\x4d\x4b\x75\xe0\x9f\xb8\x7f\xef\x71\x56\xf7\x4e\x3c\x00\x87\xe9\xec\x0e\xe9\xc7\xef\xc8\xc9\xd6\x1e\x38\xcd\x5d\xd8\xa6\x28\xf3\xbc\xf6\xd6\x6c\x9c\x6f\x96\x45\x9c\x68\x41\xdd\x89\x39\xf3\x9e\x48\xfb\x42\xc1\x1c\x50\xf9\x5b\x85\x47\x09\x2c\x01\xa1\xc5\xeb\x6d\xed\xb9\x9b\x84\x1b\x99\xbc\x30\x71\x16\x6f\x3c\xda\x29\x64\x6a\x63\xd9\x6e\x7e\x3a\x16\xf6\x5f\xed\x63\xd3\x94\xf6\xdd\xe0\x6d\x6d\x90\xdf\x11\x1a\xbd\x23\xef\x94\xcd\xb9\x6e\xce\x3b\xcb\xa1\x17\x45\xe8\xb2\xe7\x89\x6e\xd9\x5b\x47\x81\x42\x35\x35\xe8\xa0\x36\xda\xb2\x7a\x58\x6b\xa8\xa6\x90\x5c\x56\xb7\xb5\x28\x7a\xe7\xd9\x69\x82\x5c\xf8\x1d\x49\xf0\x09\xa1\x12\x57\xde\xb6\xa5\xae\x82\x3c\xe8\x0b\x8a\x9e\xc0\x11\xac\x46\xb8\x93\x16\xb7\x04\xfd\xa6\xcd\x3b\xe0\xc4\x31\x16\xff\xaa\x52\xbe\x4a\x33\xed\x5f\x26\xea\xc6\x10\xd5\xf5\x6c\xf0\x16\xaa\x2d\x8a\xe0\x41\x12\x52\x14\x79\x56\x37\x97\x85\xd5\xf5\x8a\xa1\x81\x20\xbd\x5f\x5d\x77\x00\xb1\xb9\x34\x08\x23\xa6\x45\x0a\x5a\xc4\xf7\x5c\xac\x87\x9c\xbd\xe7\xec\x22\x05\x6b\x22\xa9\xa7\x3c\x01\xbb\x4e\xdb\xeb\x8c\xa4\x2d\xb6\xf1\x99\xab\x20\x52\x00\xca\x39\xe1\x72\xc8\xe4\x9f\xba\xa5\xfc\xc6\x29\x95\x70\x00\xa1\xf5\x8c\x62\xbd\xf2\xb8\x2e\x8b\xa9\xc6\xc8\x1d\x55\x9a\xe0\xe7\x44\xf9\x68\x8e\x09\x17\x2b\x83\xbc\x89\x8e\x5b\x2c\xd8\x27\x8f\x26\xea\x0a\x3c\x6d\x58\x7f\xd7\xf3\xd7\x6d\xc0\xc7\x75\x1b\x70\x0a\x94\x8f\xc6\x5d\xf9\x80\x39\xcd\xf9\x42\x91\x4f\x94\xe6\xfc\x94\xef\x24\x63\xa9\x37\x92\xb3\x9a\x5c\x53\x0c\xc2\x9c\x14\x64\x8a\x33\x71\x4c\x2f\x94\x10\x82\x4c\xe3\xc9\xe3\xb7\x0d\x5b\xd2\x61\x15\xd6\x13\xc9\x04\x83\x4d\xb0\xb4\x7b\xd7\x62\x70\xed\x58\xf0\x8b\x76\xef\xff\xe5\x3e\x23\x7c\x94\x87\x13\x5c\xaf\x45\xdc\x4a\xfc\xb2\xe0\x4c\xea\x16\x12\xd1\x90\x61\xdd\x0a\x79\x39\x16\xc5\x6e\x3c\xff\xc7\x71\x10\x8c\x81\x7d\x2c\x6d\x33\xc2\x22\x45\x85\x3c\xfe\x4d\xdc\x8d\x6a\xbb\x1b\x5a\xaf\x95\x9f\x58\x63\xdf\x63\x71\xe2\x58\xeb\x66\xea\x97\xe4\xdf\xa2\x36\x8b\xd4\x17\x6a\x8a\x9f\xd5\x8a\x72\xa2\x8e\x9f\xbb\x93\xf8\xea\xbf\x35\x89\x6d\x7d\x98\xdb\xf9\x8b\xb3\x5b\x8e\xa8\x1c\xdd\xf8\x13\x52\xc5\xe5\xb6\x33\x71\xb6\x93\x11\x1a\x66\x38\xd7\xc3\x80\x73\xed\xff\x22\x87\x21\x97\xc4\xff\x8d\x87\xd9\x2f\x90\x39\xb3\x47\x46\x43\x5f\x50\x8c\x3b\xb4\xaf\xf7\x57\x25\x6b\x72\x67\x98\x79\x74\xbd\x2e\xdc\xa0\x17\xe1\x36\x03\x25\x89\x6c\x48\x43\xd4\x6c\x94\x5b\x3b\x85\xeb\xd8\x57\xe9\x4e\xe6\x3a\xac\x61\x4d\x64\x85\x75\xd6\x1c\x90\xe8\x5b\x81\x1b\xed\x8e\xe8\x46\xfa\x38\xaa\xaf\xc9\xf7\xa2\x9b\x94\x15\x93\xb7\xb4\xb7\xd8\xb8\x24\x37\xd8\x88\x9e\xdb\xfd\xf8\xa8\x70\xcd\x2e\x6f\x56\x34\x8f\x28\x4e\x17\x5c\x54\x90\xc8\x98\xcd\xb3\xeb\x28\xc5\x8c\xcf\x97\x11\x73\x17\x9e\x84\xbc\xf5\x9c\xa3\x34\xf9\x07\x61\x42\x6e\xac\x81\x89\xf2\xc9\xf3\xf2\x82\x63\x96\x63\x83\xa2\x7d\xd4\x50\x14\xa6\x9e\x75\x8a\xb9\xde\x0c\x5a\xf3\x47\x21\xab\xf9\x73\x51\xac\xde\xb1\x5a\x0d\x5b\xce\x46\x4f\x0a\xeb\x7d\x2f\xa6\x8e\x4f\x29\x4b\xa6\xa7\x45\x5d\xb3\x0a\x0c\xf1\xd6\xb5\x42\xa3\x31\xaf\x0d\xff\x51\x11\xf6\xd7\xe2\x2b\x79\xc9\xc2\xc6\x05\x80\x49\xf5\xa2\x8b\x68\x71\xdc\xa8\x41\xb4\x27\x66\xa4\xf1\x91\xb2\xe7\x94\xe9\xce\xd4\x3b\xd1\xfb\xe7\x49\xc3\xde\x32\xef\xaa\x91\x74\x8d\x53\x82\xa0\x2a\x42\x86\xc1\xfd\x73\x89\xd0\xcd\x51\x01\x86\x2e\x99\x8d\x3f\xbc\xd9\xfc\x6c\x07\x33\x0f\x9d\xe3\x99\x77\x1a\x11\xc4\xbb\xd7\xbf\x8f\xef\x62\xdf\x1b\xff\xb9\x9f\xeb\xb8\x3d\xd7\xef\x8d\x5c\x77\xf1\xbe\xcc\xe3\xe2\x71\x14\x8e\xc1\x57\xeb\xe1\xc7\x51\x24\x86\x08\x8b\x93\x90\xeb\x2b\x2f\x65\x1b\x68\xe3\x9b\xd7\xd9\xbb\x71\xed\x6b\x73\x76\xa7\x5e\x21\xde\xad\xc5\x0d\x67\x55\x18\x87\x77\x62\xaf\xf2\xd6\x7f\x60\x00\x96\x23\x29\x5d\x85\x67\xf4\x5c\x29\xb2\xfd\xfe\xbe\x70\xe7\x76\x82\x29\xf2\xb0\x0a\x5e\x15\x5e\xb8\xed\x3f\x14\x31\x56\x0d\x86\x26\x67\xd4\x32\x61\xa2\xc2\x42\x9e\xb7\x88\x96\x5e\x17\xae\x83\x26\x70\x62\x42\x1a\x5f\x9a\x6d\x62\xdb\x6e\xc0\x5c\x8f\x83\x4a\xf0\x17\x3b\xeb\x9b\x1b\xe5\x0e\x3b\xeb\x9d\xc7\x69\xb3\x89\x6e\x93\x5c\x13\xf1\xff\x73\x8d\x82\x71\xfe\x51\xd3\xac\xc1\x76\x51\x43\x83\xc9\xc5\xc7\x79\x78\xf8\xf0\x31\x1b\x1c\x3e\x8c\x98\xcb\x25\x34\xec\xf4\xd0\x46\xbe\x7f\xf0\x88\x0d\x0e\x1f\xf8\xef\x65\x11\xe3\xc2\x3a\x78\x38\xcf\x2d\xdd\x5d\x2d\xae\x45\x99\x7d\x84\xd3\xd0\xc6\x55\x73\xbf\x61\x9b\x8d\xef\xe6\x5a\x6b\xee\x0f\xbd\x60\xea\x27\x3f\x56\x3f\xf0\x71\x7d\xc2\x4b\xfd\xa3\x1d\xb0\xab\x73\xfc\xaa\xdf\x23\xb5\x65\x7a\xcd\xb5\x38\x1b\xa8\xb3\x3f\x8f\x42\xef\x16\x80\xd5\x2d\x80\x8b\xad\x56\x9f\x32\xc4\x02\x57\x87\x38\x20\x84\xbc\x95\x22\x03\xa5\x97\x12\x09\x48\x5c\x9e\x7b\x98\x37\x8e\xbe\x05\x6e\x1e\x87\x0b\x73\x3d\xdc\xe2\x8f\xa5\xdb\xba\x5e\xf7\x40\x77\xe0\x67\x90\xe1\x43\x93\xb6\xe3\x15\x36\x97\x1f\xa4\x01\x3c\xf2\x5a\x4e\xb9\x4f\x17\x24\x0b\x73\x9c\xa2\x98\xfb\xa7\xda\x4c\x27\x48\xae\x2c\x62\x19\xe2\xa0\xc0\xb9\x66\x62\x85\xda\x31\x16\xab\x82\x62\x88\x0d\x78\xf6\x0c\x2b\x86\xb4\xc8\x6a\x59\x90\x9b\x05\xa7\xda\x31\x23\x5a\xe6\xf8\x62\x69\xd0\x80\xa2\x3f\xe1\x97\x7a\x07\x3f\xd4\x86\x0e\xcf\x2f\xa7\x73\xbe\x80\x18\x60\x2f\x68\xc5\x26\x5c\xa6\xbe\xa6\xd7\xb3\x8b\x95\x9b\xef\x0d\x9f\xce\xe4\x93\xe6\x09\xf5\x23\x93\x0f\x0a\x1e\x54\x3c\x1e\xf3\xe4\x22\x07\xa0\x00\x9d\x47\x4b\xdb\xd4\xeb\x8c\x2f\x16\x9c\x39\x39\x00\xec\x14\x22\xa2\x46\x7f\x6e\xf0\xfc\xf6\xfe\xfc\x51\xb8\x1d\x92\x2f\x55\x4b\x9f\x15\xad\x5d\xaa\xfb\x92\xfd\xf2\xe2\xfd\xf4\x96\xc5\xbb\x41\x2e\xdf\x0b\xcc\x2f\x01\xb6\x3b\x43\x4e\x3f\xa7\x5c\x0d\x57\xdb\x56\xc3\xad\x2b\xd9\xb0\x72\xd7\x32\x77\x84\xea\xfd\x96\xab\x84\x57\x83\xec\x78\x98\xa0\x28\x89\x59\xfd\xc2\xe3\x1c\x7a\x45\xfd\xec\xdf\x3c\xf4\xd2\x96\x33\x6f\xf2\xb3\x67\x5e\xd6\x3c\xf3\x6a\xbe\x6b\x5a\xb9\x43\xd7\xa8\x95\xe0\xd3\x8d\x8d\x69\xe7\xf7\x4d\x12\x4a\xb6\xe5\xba\xa8\x71\xed\xab\xc2\x67\xdb\xb2\x68\xf2\x6d\xdb\xd8\xc1\x3d\x03\x33\x92\x9e\xf5\xce\xc5\x45\xeb\xac\x7f\x1e\x3f\x73\x14\xf6\x3a\xdf\xaf\xed\x09\x3c\xa4\xed\xdb\xc1\xb0\x4a\x37\x1b\x0c\x7b\x19\xb2\x46\xb0\xb5\xf9\xd4\x24\xd2\x75\x21\x37\x19\x92\x88\x0d\x32\x21\x89\x68\xa6\xa2\xf6\x1f\x45\xf8\xb6\xc1\xe4\x67\x09\xa6\xe7\x08\xc2\xc5\xe0\xaf\xb7\xcf\xcd\xd7\xdb\xe7\xe6\xf3\xf6\xb9\xf9\xb2\x68\x4c\xa0\xdf\x0b\x33\x43\xde\x14\x2e\x3f\x5f\x16\x7a\xe8\x9f\x14\x76\xf8\x9a\xf0\x5b\x97\x45\xf8\xad\x90\xf3\xec\x3f\x30\xaa\xb2\xb4\xda\xb0\x3e\xff\xef\x0d\xeb\xbf\x35\xa8\xc3\x4a\x35\xb3\x75\x58\x5f\xff\x68\x58\x17\xff\x6f\x0e\xeb\xd5\x4f\x0e\xeb\xd5\x7f\x74\x58\xaf\xfe\xbf\x30\xac\x57\xbf\x30\xa8\xc3\xaa\x31\xac\x27\x85\x52\x43\xa9\xbf\x7f\xfa\x7a\xa8\xf7\xde\x39\xfc\xb4\x08\xef\x49\xe3\x0f\xf8\xaf\x27\x36\x1b\xd7\xd8\x65\xb8\x7b\xfc\xec\xf5\xb3\x0f\xcf\x8e\x65\xec\xb0\x66\x92\xeb\xa2\x6a\x6d\xaa\x7d\x27\x14\x03\xde\xe4\x5c\xea\x07\xa1\xfb\xcb\x77\x80\xa1\x35\x07\x18\xea\x39\xc0\xf8\x6f\xdd\xa3\xf1\x07\xd5\xb5\x16\xbb\x82\x7b\x91\x8b\x9e\x1a\x27\x04\xc0\x9d\x8c\x7e\x5d\x46\xbd\x73\x62\xce\x9a\xb7\xcd\x38\xb9\x7a\xe0\x7d\x9b\xe3\x44\x74\xc8\x21\x06\xee\xf4\x50\xd4\xe9\x4b\xeb\x98\xfb\xd6\xb2\x7c\xb8\xab\xa3\x31\xcb\xfd\x54\xf9\x31\x1e\x78\xcd\x51\x55\xe0\x9f\x29\xbb\x7f\x10\x19\x15\x9f\xd6\xe8\xeb\x04\x0f\xfe\xe1\xa3\x36\x53\xf8\xb3\x30\x21\xb1\x0b\xa9\x8c\xd2\xba\x6b\x50\xa6\x29\x2a\xa2\x9b\x84\xbc\x62\xa1\x14\xcd\x9c\x6a\x23\x1a\x91\x21\x59\xaf\x6d\x26\xc7\x95\x8f\x50\x17\x40\xa4\xdf\xdb\xbf\xb7\xde\x8f\x25\xf7\x9d\x14\x46\x9f\xb4\x79\x5f\x84\x27\x85\x38\x44\x41\xe2\xbb\x42\xd4\xa2\x5c\x9c\xc0\xd5\x58\x09\xb1\x7f\x50\xb0\x64\x6b\xc1\xec\xd4\xb9\xab\xff\x65\xf4\xf5\x16\x6d\xcc\x81\x0e\xbb\x27\x7d\xc8\x68\x1e\x04\x07\xf6\xb1\x6f\x9e\x63\xe4\x7c\x06\x45\x3b\xf4\xfb\x64\xcc\x3c\x3a\x84\x9c\x38\xc1\xbf\x04\x4d\xfe\x34\x06\xba\xd0\x04\x68\x5d\x0f\x2b\xbc\xa1\x44\xb3\x5d\x99\x85\xa6\x09\xeb\xf5\x70\xb7\xe0\x54\x05\x86\x08\x82\xe1\x6e\x32\x63\xd7\xfa\x57\xe7\x77\x26\x5d\x09\x5c\xad\x3e\x52\x88\x1c\xef\x8a\x38\x89\x91\x9a\xc8\x38\x91\x04\xf4\x86\x09\x1a\x11\x6b\x03\x05\x35\x11\x68\xc3\x97\xd7\xd3\xd5\x59\xbb\x04\xe3\x69\xd0\x69\x6a\xd5\x1e\x20\x40\xad\xa1\x4a\x8c\xa7\x6a\x8c\x35\x54\x08\x95\xaa\x7e\x30\x28\x31\xec\x6c\xa1\xa2\x18\x5d\x81\x13\x64\x4a\x08\x39\x92\x8e\x3a\xb0\x98\xa2\x1b\xc9\x07\xd4\xef\x86\xb1\xc8\xdb\xdb\x93\x4c\x91\x76\x08\xf9\xce\x82\x40\xfc\x7d\xaa\xfe\x3e\x61\xeb\x75\x72\xe7\xce\xa6\xd6\xa4\x8d\x5a\xff\x14\xc2\xd9\xbb\x82\x9c\x14\x03\xa8\xc2\x1a\x91\xb9\x95\xb9\x67\x7f\x5f\x49\xfe\xb9\x08\xa1\x7d\x6a\x61\x95\x2c\x0d\x76\x23\x5f\x1a\xa6\x01\x27\x97\x15\x5f\xe0\x85\x0f\x93\xf6\xde\x81\x1b\x91\xe6\x13\x46\x33\x3e\xf8\x92\x87\x72\x9e\x4b\xef\x86\xcf\xd2\x83\x04\x32\x41\x8a\xe5\xed\xbf\x0b\xd7\x45\x21\x05\x47\x58\xb1\xf9\x99\x7b\xf8\x82\x67\xf1\x57\xf1\x3d\x47\x31\x23\x8e\x6a\x3f\x53\xba\x75\x3b\x11\x3a\x0b\xeb\x33\xe4\xc9\x76\x3d\x9c\x12\xec\x1a\x8c\x90\xbd\x7b\xfd\x07\xb8\x7e\x95\x7e\x44\x78\x0b\xf4\x1e\xe9\x21\xfc\x9b\xac\x1f\x2e\xfb\x8e\x18\xb2\x1f\x4b\x6a\x80\xbe\xdf\x34\x01\xfa\xeb\xd2\x9c\x96\xbe\x61\x82\xab\xe8\x55\x97\xee\xd4\xcc\xa9\x76\xa1\x61\x1e\x04\x9d\xa4\x0c\x73\xa4\xef\x7b\x84\x80\x28\xd5\xe2\x48\x1a\x23\xd7\x14\xbc\x94\xe9\x82\x3b\x59\x53\x1f\x8e\xd2\x34\x15\xa0\x44\xee\x61\xe9\x76\x44\x72\x9c\xca\x96\xe6\xaa\xa5\x31\x75\x9c\xdb\xe4\x5d\x49\xf9\x1c\x49\x6b\x3b\x80\x88\x58\x70\x3d\x5e\xd4\xda\xd6\xf8\xc4\x20\x74\x93\x6b\x80\x6a\xd1\x47\xfe\x28\x0b\x82\x90\x93\xdc\x5f\x12\x70\x6a\x1b\x8f\xed\x15\x77\x90\x46\x49\x86\xd3\x90\x63\x06\xb0\xca\x0b\x70\x19\x86\x2a\x8d\xa8\x4c\x0d\x50\xd6\x18\x20\xf0\xb3\xcc\x31\xfb\xf9\x96\xba\xc6\x70\xb5\x81\xf3\x77\x49\x0a\x61\xe2\x6a\xcb\x5a\xb3\x8d\x0a\xb7\xb1\x8f\xf9\xa3\x0c\x0d\x9a\x56\x18\x75\x7e\xc3\xa6\x2f\x28\x62\xa5\xe3\x2f\xe7\x58\xa2\x95\x7e\x68\x40\xc7\x89\x9c\xb8\xb0\x92\xa9\x11\x3c\x51\xd5\x28\x70\x7f\xf2\x49\xb4\xff\xd0\xb1\xe3\x2b\x9b\x41\x84\x5f\x87\xa9\x0f\xb6\x10\x67\xe4\x69\x16\x02\xb1\xf5\x0c\x4d\xff\x6f\x9f\xa1\xe9\xed\x33\x34\x2b\x6b\x1e\x53\xa2\xd3\x9a\x00\x9d\x5e\xfc\xbb\x38\x58\xc8\xb5\x17\xc2\x34\xea\x7e\xbb\x86\x60\x16\xfb\xdb\x76\x3c\x74\xa4\x81\x44\xcd\x9c\x46\x82\xd3\xdc\x7d\x84\x5f\xe7\xca\xc9\x17\xbf\x55\x4f\x98\x8b\x43\x7e\xa7\xe7\x21\x98\xba\x8b\x87\x53\x37\x2e\xea\xd6\x73\x71\xae\x50\x3a\x0a\x85\xab\x97\x6b\xa8\x0c\x3c\x51\x7e\xa2\xb7\x21\x71\x4c\x0c\x33\x4d\x06\x13\xb2\xcc\xc3\x09\x8a\xc2\x49\x93\x29\xf0\x44\x32\xc5\x44\xa1\x04\x4c\x49\xba\x15\xe9\x02\x62\x0b\xb7\xad\x72\xd3\x6d\x18\x18\xf9\x36\x0c\x8c\x78\xbe\x0d\x05\x23\xff\x09\x14\x95\x61\xb5\xed\xdb\xad\x1f\xad\xd7\x21\x44\x4d\x5d\xaf\xc7\x82\x26\x28\x08\xde\x88\x61\x12\x2b\xe6\x04\x39\xb0\x8c\x57\x0d\xcd\x74\xae\xc0\x26\xae\xe2\xef\xe0\x20\x86\x73\xc1\x41\xe3\x46\x3e\x55\xfc\x55\x87\x90\xf1\x7a\x6d\xd0\xdf\xd7\xeb\x55\x3e\xd8\xb2\x3b\x4c\x25\x26\x89\xe0\x96\xa9\xe0\x9c\x46\xa1\x08\x87\x05\x59\xe5\xeb\xf5\x1f\x32\x57\x81\x19\xbe\xc2\x63\x31\x5a\x83\xf0\x17\x49\x78\x2b\x90\x48\xde\x0a\x24\xb2\x6d\x53\x6b\x05\x0f\x69\x4b\xdd\x0a\x1e\x72\x6b\x13\x6f\x79\x19\xa2\x46\x89\xc3\xaa\xd9\x2c\x07\xe6\x23\xf1\x61\x3e\x50\xf4\xe3\x4e\x6d\xff\x1a\xd7\x26\x29\x69\x98\x71\x90\x31\xc2\x7a\xe6\x32\xac\x79\x67\x8c\xcd\xec\x25\x13\xcc\x48\xf1\xbf\x6c\x06\x23\x9d\x3e\xd2\xf1\xcc\xdd\x65\x44\xe1\xd3\x36\x97\x13\xd3\xa8\x44\xbb\x70\x78\xae\xf4\x83\x22\x2a\x8d\x1b\x73\x21\x38\x71\xeb\x72\x83\xff\x43\xcb\x0d\xbe\x75\xa9\x09\x7f\x7e\xad\x71\x18\x60\xcb\x6a\x83\xfe\x57\x8b\xcd\x7f\x74\xa9\xc1\xb0\xd4\x34\x67\xba\xc3\x2a\xce\x32\x83\x1b\xcb\x11\x76\x8a\xbe\xfa\x37\x97\x99\x46\xa1\x08\x87\xd3\xfa\x32\x33\xc6\x57\xff\xd6\x32\x23\x29\xfe\x93\x64\xd3\x80\x48\x3f\xb7\xd0\xe8\xa2\x5b\x93\x43\x86\x87\x95\x68\xf2\x2f\xad\x38\xb6\xc8\xed\x6f\x43\x26\x49\xb1\xb5\x60\x77\xc6\xea\x02\x1b\x53\xf6\x17\x37\xc8\x7a\x09\xfb\xf7\xee\xd7\xd7\xae\x56\xaa\x9a\x26\xac\xd7\x85\x67\xeb\xac\xb8\x79\xdc\x34\x80\x5e\xaf\x6f\x6d\x6c\xe7\xc7\x8d\xfd\xf7\xeb\x12\xdd\xfa\x89\x45\xf5\xaa\x6d\x51\xbd\xaa\x2d\xaa\x53\x14\x0d\xab\xff\x7f\x52\x08\xd6\x7b\x13\xe7\xba\xf4\x8e\xec\xee\x79\x38\xaf\x5d\x7c\xd4\x85\x43\x59\xd0\xb5\xf9\x5f\xc8\x58\x33\x41\xd0\x31\x27\x7d\x1e\x04\x2f\x24\x60\x4d\xa7\x8f\xec\xa5\x06\x20\x6a\x2c\x86\xdc\x17\x6b\x7d\x9e\x68\x6b\xd8\x6d\x93\xbe\x75\x99\x07\x69\x8e\xb2\x47\x52\x42\x84\xb0\x71\x09\xb0\x27\xf2\x5c\xdc\xc0\xe4\x55\xcf\x13\x4f\xc0\x59\x1c\x20\x46\x9c\x97\x90\x58\xc0\x4d\x4c\x5e\x23\x0a\x79\xc3\xac\x6b\x19\x25\x42\xa0\xd3\xe1\x5e\xe3\xb2\x61\xbd\x70\x4a\x37\xa4\xb1\x25\x84\xb1\x22\x50\x4a\x8a\x81\x8c\xbe\x54\x4b\x6d\x24\x48\x0f\x17\x15\x0c\x29\x32\x8f\x41\xa0\x3e\xd7\x9b\xaf\x18\x77\xe9\xa5\xe5\x3b\x22\x6a\xc8\xd6\xb2\x24\x37\x35\xa1\x19\x5e\xf0\xd5\xe2\x5a\x22\xef\x7b\x8e\x44\xa3\xd2\xd7\xc7\x2a\x69\x00\xb7\xe6\x13\x72\xef\xcd\xc8\x1b\xb3\x5f\xc3\x6e\x55\xc4\x61\xd1\xca\x3d\x48\xec\x75\xf2\x4d\x16\xec\x23\x6b\xd3\x40\xed\x0d\xb6\xb6\xd5\xa0\x18\x0c\x8d\x3b\xbd\xda\xb5\xf1\xfe\x3d\x29\xfd\xb2\xf1\x15\xda\xe6\x86\x91\x8c\xf0\x6e\xa6\x74\x44\xeb\x75\x47\x26\x98\x60\x3b\x54\xe4\xfa\x50\x94\xcb\xe7\x26\x4b\x98\xad\x49\x1f\xc5\x2f\xc3\x37\x38\x0b\xfa\xee\x05\x50\x0c\xaa\x56\x48\xdb\x42\x83\xe0\x63\x11\x26\x90\x2f\x47\x37\xb9\xf3\x26\xe6\xe4\x53\x1e\x2a\xa1\x4a\x4f\x41\x47\x70\x2b\x97\x50\xd2\xc4\x50\x12\x37\xd8\x97\xf2\x52\x6a\x31\x38\x7d\xe7\x13\xed\xdd\x04\xff\x47\xea\x17\xe6\x5a\xaa\xe1\x84\xe2\x30\xb2\x0f\x0e\xee\x6f\xda\xab\x29\x15\xcd\x11\x67\x0b\x85\xf5\x62\x15\x20\xc3\x2a\x89\xb9\x71\xe8\x4e\x1b\xfc\x5f\x96\xb1\x9e\x35\xdc\xa2\x45\x31\xc2\x8d\x77\x6a\xbb\x07\x4e\x4d\xf2\x62\x85\x87\x0c\xa7\x2e\x34\x7c\x7d\xe4\x6d\xb0\xb3\x98\x39\x1d\x90\x24\xe6\x2e\x89\x53\x09\xb2\xe5\xeb\x27\x9c\x9e\xb5\x50\x19\x5c\xf0\x7f\x89\xc6\x10\x61\x43\x39\x99\xc1\x18\x29\x40\x24\x92\x6b\xa2\xe7\x31\x32\x1e\x5f\x29\xd8\x18\xeb\x36\x33\xd1\x40\x90\x1e\x3a\x7e\x69\xa9\xa1\x35\x8b\xdb\x43\x91\xf4\x6e\x1b\x83\xd4\x6a\xe7\x52\x7f\x8d\xb3\x03\x22\x61\x93\x7e\x3c\x26\xc3\x2a\xdd\x50\x57\x72\xf7\x8b\x4c\xdc\xe4\x3f\x90\x89\x68\x06\x44\xff\x17\x71\xb9\xcf\xe3\xa9\xb7\x75\xea\x7e\xfc\xca\x30\x38\x53\xe1\x67\x28\x2d\x07\xca\x1f\x22\x77\x47\x1e\x2b\x91\x5f\x43\x22\x96\xb4\x09\xc4\x12\x14\xdf\x16\xd0\x22\x6d\x2b\xa4\x9e\x28\x0a\x99\xe7\x66\xb4\x3c\x53\xd8\x49\xed\x7c\x20\xcf\x05\x75\x8d\x4c\xa5\xc1\xeb\xeb\x38\xc2\x37\xe5\xf2\x09\x4d\xc7\x97\x74\xc1\x96\x10\xc6\x45\xec\xda\xc6\x1e\xc7\xfc\x3c\x5d\xd1\xc5\x4a\x45\x7e\x99\xd0\xe5\x2a\x62\x78\x45\xcb\x49\x94\xc2\x1f\x3b\x18\x51\x0f\x12\x20\x40\x31\xc7\x8e\xc1\x77\xb6\x89\xc2\xbc\xeb\x54\x46\x12\x9c\x77\x4d\xf9\x52\x00\xe7\x24\x98\x0a\x49\x0f\xe7\xa0\x99\x85\x63\xa2\x28\x5c\x4c\xdc\xae\x5f\x2d\x64\xd2\x15\x13\xae\xbe\x50\xba\xdc\xcc\x1b\xbd\x69\x63\xc7\xf4\x36\x4a\x0e\x58\x96\xc6\xc9\x15\x67\xe0\x0c\x5f\x4e\xb4\x7a\xc1\x9b\xb7\xcc\xee\xaa\xb1\x76\x86\x65\x62\xe6\x30\xc2\x82\xfe\x7a\xdf\x97\x28\xde\xbf\xeb\x39\x97\xc9\x29\x08\xdf\xd0\xda\x16\x4c\x23\x39\xf5\xb4\x53\xac\x9d\x4b\x37\xbe\xee\xad\x7d\x59\x0e\x02\x60\xd1\xd4\x06\x5a\x02\xdf\x5e\xf9\x49\xfd\x95\x29\x42\xf9\xe6\x52\xdf\x37\x97\xc6\x76\xd1\x71\x7d\x73\x29\xa8\xd7\x74\x6c\x05\xd7\x3b\x97\xb6\x7a\xe7\x52\xe3\x9d\x4b\xad\x77\xae\x2d\xc0\x09\xe2\x44\xeb\x9e\xb9\x46\x73\xea\xac\x1e\x1b\x16\x90\xfe\x46\xec\xfd\xac\x6d\xe5\xaa\x4f\xf3\x61\x05\x13\x1d\xfa\xac\xb4\xf8\xdc\x04\xb7\xce\x66\x0b\xe0\xc8\xe1\x6e\x94\x1a\x92\x8b\x1e\x71\x0f\xf4\x29\x8d\x11\x25\xa9\x9d\xc4\xb8\x71\xb4\x01\xaf\x6e\xd0\xa6\xa4\x08\x14\x28\x76\xa9\x73\x63\xd2\x70\x5d\x09\x76\xb5\x76\x00\x1e\x6e\x3e\xc1\xa9\x07\x40\x89\xe2\x49\x19\x26\xb8\xd3\xc7\x1c\xec\xea\x5d\x37\x06\x54\x0b\xaa\xad\x27\x18\x74\x47\x76\xdb\xeb\x95\x5b\xa9\xee\x1b\x8f\xc5\x56\xce\x5b\xf1\x2a\x6b\xfd\xb3\xba\x46\xae\x31\x7d\x88\x59\xae\xfd\x85\x1b\x22\x33\xd0\x8d\x6c\x7a\x4f\xad\xf3\xb7\xb7\x7e\x35\xcb\xf9\xaa\x80\x00\xc8\xba\xc7\xd6\x8a\x44\x39\x4c\xb4\x7d\xae\x2d\x14\xda\xd6\xf7\xcd\x76\x65\xc3\x6f\xc6\xe8\xd9\xd9\x14\x13\x3f\xf4\x95\x1f\x30\x4c\xc3\xf4\xd6\x75\x47\x71\x4f\x1a\x91\x3f\xc9\x43\xa6\x1c\x8e\xdb\x22\x9a\x79\xc0\x79\x3e\x91\xd5\x07\xce\x5c\xac\x83\x3d\x1d\x20\x57\x99\x63\xbc\xe9\xed\x3a\xb1\xe5\x90\x65\x8f\x23\xf2\x4c\x64\xb6\x59\x33\xf7\xcd\x8c\x75\xa6\x98\xcb\xc1\xad\xe5\xe2\xb4\xed\xa0\xd4\x46\x71\x41\xb2\xaa\xc4\xb3\x12\xcf\x4b\xfc\xb5\x8c\x87\x55\x55\x12\xdf\x8e\xca\xfa\xa1\xd7\x16\xbd\x54\x2e\x23\xf7\x88\x82\x4e\x5e\xaf\xef\xeb\x47\x44\xbb\x74\x2e\x9a\x04\xf6\x1d\xa1\x63\x34\x64\x97\xb7\xbb\x1a\x72\xd9\x6a\xe2\x34\xdd\x52\x7f\xa5\x13\x0c\x9b\xb6\xac\x74\xa9\x5d\xa8\xbc\x75\x2e\x6d\x5d\xe7\x52\xb3\xce\xa5\xee\x3a\xa7\x56\xb0\xd4\xbc\xdf\xa4\xf5\x65\x4e\xbf\x89\x1d\xba\x6f\x36\xf1\xcc\xa1\x14\xba\x11\x97\xbf\xb9\x4f\x3b\x5f\x45\x58\x93\x47\x08\x7e\xc9\x24\xfc\x5f\x43\x41\x15\xd7\xa0\x30\xe4\x51\x4f\x43\x82\xa4\x66\x7d\x2c\xab\x39\x84\x29\xcf\xc8\xf7\x24\xcc\xa5\xdc\x00\x9e\x98\xf8\xe6\xec\xdc\x9f\xc1\xb3\xb9\x94\x15\x44\x19\xf9\xdd\x64\xff\x7d\x6b\xf6\x25\x04\xda\x86\xec\x10\xfe\x24\xc3\x37\x80\x8a\x15\xc9\xc9\xbe\x11\x5f\xc3\x0b\xd6\x78\xd1\x2c\xcc\x82\x3a\x47\x19\x79\x69\x6a\x7f\xd9\xac\x5d\xaf\x17\xed\xd2\x8d\xac\x3b\xab\x9e\x4e\x4a\x08\x0a\xd4\x2a\xe3\x63\x36\x43\x98\x77\x67\x55\x2a\x9e\xc9\x92\xa1\xcd\x8c\x49\xb4\x7f\x90\x9f\xe0\xb1\x0a\xf6\x02\x8c\x53\xec\x94\xd5\x4e\x06\x50\x0a\xac\x5b\xd0\xe5\xc9\x65\x25\xc6\x88\x2f\x56\xd7\x61\x81\x82\x20\x6b\x4b\x94\x4c\x9b\x9d\x15\xe7\x48\x61\xfc\x5c\x4f\xb8\x92\x91\x17\x70\x42\x1f\x8b\x62\x73\xc8\x82\x73\x94\xd7\x0b\x19\x8b\x1d\x29\x5d\xaf\xc3\x94\xdc\x6c\x10\x4e\xcf\xc6\xe7\x44\xa2\xb5\x88\x29\x32\xdc\x65\xb4\xca\xf9\x62\x76\xb1\x9c\x5c\x9f\xf2\xd5\xcb\xaa\xe2\x8b\x17\x1f\xde\xbc\x06\x72\x14\xa2\xff\xfa\xc0\x63\x53\x96\x17\xf3\xf9\x82\x2f\x97\x20\xf7\xa8\x56\xcf\x58\x09\x97\xf4\x4f\x74\x51\x69\x00\x6f\x2f\xdf\x0b\x10\x65\x94\xb3\xaa\x91\x83\x5e\xac\x66\xcf\x67\xe9\xc5\x52\x27\x85\xdf\x68\x93\x0a\x03\xba\x5e\x87\x62\xf0\x50\x14\x52\x42\x01\x60\x49\x46\x5d\x2a\xe4\xd5\x01\x59\xfa\x2a\x46\x9f\x10\x76\x56\x9c\xc7\xfa\xfe\x98\x0d\x04\x79\x22\xeb\x1d\xd7\x3a\x00\x70\x41\x54\x02\x8f\x0e\x99\x68\x79\x47\x8e\xea\xa4\x97\xe1\x9c\xe4\xa2\x25\xc9\x8f\x3a\x2d\x84\x5f\xaf\x27\x41\x30\x69\x4b\x6f\x1f\x10\x53\xdc\x04\xb5\x7c\x15\x04\xf9\xd9\xf8\xbc\x43\xc8\xe4\x6c\x7c\xee\x8d\xe9\xb0\x82\x42\x44\xba\xd2\x20\x89\x77\x86\x68\x62\xdd\x96\xc4\x4a\x91\x38\x97\x4c\x7e\x34\xf2\xd2\x73\x7c\x42\x26\x83\x49\xf7\x9f\x7f\x8a\xd5\x74\xa2\x28\x27\x2e\xcc\x83\xbc\x96\xa6\xa8\x15\x04\xe2\xf6\x3d\x91\x6e\xaf\xde\x10\x4d\x10\x8a\x5c\x36\x82\xe2\x73\x42\x04\x85\xdb\x50\xdf\x27\x82\x33\x9a\x11\x31\x27\xd0\x1f\xbf\x68\x40\xaf\x9a\x88\xe2\xff\x53\x3c\xd9\xce\x80\xa1\xe9\xe4\x82\x85\xa0\x4d\xa3\xeb\xb5\xea\x82\x24\x72\x0b\x6b\x4e\x10\xda\xa4\x0d\x7a\x18\x3e\x82\x43\x38\xa1\xf2\xac\xe0\x5a\x62\x70\xdf\x2a\xe4\xee\x46\x2c\xfa\x5f\x9b\x8b\x3e\xba\x49\xe5\x99\xa3\x2e\xc9\x76\xc2\xf4\x2c\xca\x86\xe9\xaa\xbc\x24\x99\xd5\xbd\x28\x19\x13\xa3\x12\x81\x35\xa1\xb8\xe9\xd8\xad\xd8\x3d\x22\xba\xd0\xeb\x2e\xc8\x78\x4a\x6a\x38\xeb\xe6\xa0\x2b\x8b\x83\x42\x22\xff\x7c\xe0\xaf\xda\xe9\x6c\x32\xa1\xf3\x25\x67\x70\x62\xad\x35\x82\xd5\xcf\xe0\x66\x17\x77\x1b\xc1\xea\x27\x6e\xd5\x08\x36\x48\x1c\x8c\x18\x51\xb0\xd7\x2a\xf9\xec\x35\x2d\x62\xfe\x49\xc6\x0b\xe6\x7a\xeb\xd5\x31\x36\xc0\xd2\xd6\x3c\x78\x5f\xe1\x69\xdd\x57\x7f\xef\x69\x18\x32\x0d\xb3\xa5\x80\x06\xe1\xcf\x43\x95\xaa\x3e\xd2\x58\x5c\x77\x23\xf7\xc8\xa8\xd0\xcc\x54\xd2\x6b\xa5\xdf\x45\x41\x70\x9c\x85\x12\xf9\x51\x87\xe0\xd3\xb2\xff\x22\x44\x4e\x94\xf8\xd4\xd3\x2d\xa7\x35\x11\xb6\x0c\xda\xab\x14\x30\xf5\x97\x8d\xdc\xf2\x6a\x52\xbb\x07\xd9\xf3\xeb\x7a\xdd\xf9\x54\x00\xa0\x75\x43\xd5\x32\x2b\xc3\xc4\x6d\xed\xbd\x28\x07\xd9\x6c\x4a\x5a\x30\xbb\xb8\x52\x70\x37\xef\x24\x1d\xcf\xd6\x67\x2e\x87\x87\x83\xd0\x12\x6b\x1b\x2b\x6d\xf8\x55\xb7\xb4\x42\xe6\x32\xde\xf1\x91\xdd\x9d\x12\xeb\xe1\xfa\xef\x23\x14\x0f\x2b\x17\x14\x8a\xd6\xf1\xc4\xca\x2c\x84\x4e\xa3\x1b\x5f\xb9\x62\x3a\xa1\xad\x2a\xfd\x63\x1a\x3b\x7b\xc3\xce\x49\x12\xb3\xb3\xb7\xec\x9c\x64\x71\xe3\x92\x5a\x66\x0b\x3a\xe5\x62\x86\xa8\x63\x96\xd2\xd7\xeb\xdf\x7c\x9a\xc0\x04\x7a\x1e\x0e\x77\x27\x33\xca\x86\xbb\x06\x62\x50\xcf\xb3\x6f\x25\xe3\x33\xfb\x05\xbd\x60\xa5\xf8\x29\x45\x0d\xbd\x98\x3e\xa2\xa9\x1b\x15\xfc\x79\x48\xd3\x33\x7a\xde\x28\x66\x39\xbb\x58\xa4\x5c\x55\xc5\x05\x6d\x5a\xea\x2a\xa7\xb9\xad\xa9\x9c\xd2\xdc\x69\xfa\xa4\xac\xc6\xcd\xcf\x6f\x69\x78\x36\x5b\x4c\xd5\x07\x0b\xbe\xe4\x2b\xfb\xc1\xf2\x22\x99\x96\xab\x96\x4f\x18\x17\x33\x7b\xa9\xbe\x5a\xcd\xf2\x1c\x96\xdc\x46\x33\xd5\xd1\xf6\x28\x01\x64\x43\x28\xb3\xac\xbe\xd1\x49\xa9\xda\xb1\x10\xc7\xb9\xe1\xee\xac\x7a\x5a\x88\xdd\xd2\x82\xdc\xd5\x8f\xaf\xac\xfb\xcf\xe5\x42\xdc\x46\x16\x5a\xe2\x70\x73\x49\x97\x6f\x2e\x26\xab\x72\x3e\xe1\x51\xa7\x93\x75\xa7\xea\xc7\xe6\xd7\xab\x71\x0e\xb6\xaf\x64\x53\x71\xbd\x0c\xdc\x2c\x43\x1c\x46\x95\xed\xa8\x39\x84\xc2\x2d\xc0\x1c\x44\x1b\x47\xce\x1c\x99\x58\xb4\x67\xf9\x79\x5c\xdb\xb6\xf3\x41\x1b\xc8\x64\x31\x60\x5d\xd1\x40\xb5\xf5\xaa\x7d\x94\x92\x33\xf7\x6b\x5c\x9c\x8b\x6d\xba\x89\x45\x59\x04\x41\xfd\x73\xd8\xd5\xdb\xca\x90\x2f\xce\x51\xd4\xdc\xa4\x73\x73\x56\x2e\x60\x93\x4e\x71\x8e\x36\xcd\x59\xa4\xc6\xfb\x2a\x11\xb7\xf4\x67\x40\x4a\x50\x11\x6e\xa3\xb6\xcc\xf8\x1a\xfe\x6f\x1f\xf8\xfa\xb5\x67\xfb\xfd\x82\xb4\xde\x2f\xaa\x90\x79\x17\x88\x94\xd0\x1a\x9c\x58\xea\x88\x8b\x1b\x5b\x3d\x2c\x62\x39\x39\x84\xab\xa7\xf1\xf3\x48\xa3\xb4\x0b\xf1\x71\x8e\x15\x7e\x63\x4c\x09\x21\x5f\x65\x4c\xb7\xb7\x49\xc8\x11\x52\x29\x62\x44\xd3\x45\x39\x97\xa6\x3f\x7c\x10\x52\x92\x77\x25\xd4\x87\xc2\x7c\x0c\x87\xbb\xac\xfc\x36\xdc\x15\x4b\x6a\xa9\x0f\x89\x64\xb8\xfb\x48\x7e\xf7\x78\x38\xbc\x3a\x48\xff\xa5\x7f\xec\x62\x29\xca\x9b\xce\xbe\x71\x79\x2d\xa7\xae\x0f\x06\x1c\xd5\x9a\x00\xf8\xdd\x72\x39\x68\x56\xcc\xf1\x4d\xb9\x8c\xc4\xcb\x0d\x1c\xaf\x1a\xef\x11\xb6\x03\x21\x5a\x0f\x1a\x23\x8a\x99\x99\x6a\x83\xdc\x3c\x92\x4e\x0f\xf6\xf6\xef\x90\x0b\x1e\x88\xfc\x8d\x10\x8a\x1a\x85\xbf\x3d\x95\x21\x1a\xa9\x5a\x98\x29\x2c\xcc\x2c\xae\xe4\x26\xd3\xe9\x83\x1a\xd7\x59\xe1\x09\x8d\x73\x32\x67\x60\x1a\xfd\x1f\x59\xbe\x87\x15\x45\x71\xa1\xb1\x63\x7f\x62\x11\x2f\x48\x2f\x2e\x9c\x45\xbc\xd0\x8b\x78\x71\x8e\xdb\x8a\x6a\x5d\xc8\xdb\x32\xfe\xe2\x62\x4e\xbd\xc5\xbc\xad\xc0\x96\x05\x9d\xd6\x16\xf4\xb6\xcf\xb6\x2c\xea\xad\x4d\xb6\x0b\x3b\x20\xeb\x16\xe4\xbb\x7a\xf2\xd7\x4d\xfa\xe3\xb5\xd7\xcc\xec\x82\xfc\x9e\x38\xc8\xbd\x8d\x95\x80\xd6\xb6\x80\xda\x06\xc0\x9c\x0d\xa0\xd8\x26\xd3\xf8\xe5\xd6\xf9\x3b\x83\xf4\xe5\x8f\x0b\xf2\xf2\x97\x7b\xab\x57\xac\x82\x30\xb9\x6f\x14\x48\x59\x29\x17\xb0\x71\x64\x62\xd3\x00\x98\xe5\x71\x7d\xed\xcd\x90\xbe\x74\x8f\xcf\x32\xb1\x69\xd8\x9b\x72\x36\x98\xb2\x90\x62\xb8\xa2\xdd\x76\xdf\xcc\xda\xef\x9b\xe6\xda\xf5\x67\x02\xa5\x34\x2e\x92\x59\xeb\x8e\x34\x19\xd4\x23\x7c\x01\x8e\x2f\x3c\x4d\x50\x10\xbc\x4f\x74\x9b\x9a\xfb\xd1\x44\xbd\xfe\xa5\xab\x65\xf6\xc3\xab\x65\xd6\x14\x77\x64\xad\xb7\xcd\x4c\x3a\x02\xea\xcb\x66\x8a\x33\x6d\x44\x31\x09\x82\xcf\x34\xa4\x38\xc3\x13\x9c\xa3\xdb\x77\x37\x0a\xbb\x1b\xc5\x0c\x96\xa9\x61\x75\xcb\xfe\x46\x61\x7f\xa3\xdb\xb8\x5e\xd6\xcd\x24\x56\x7d\x10\x40\x88\xad\xa3\xd5\x6a\x51\x26\x17\x2b\x1e\x0e\x77\x21\x5d\xef\xcd\x8b\x24\x54\x39\xd1\xf6\x59\x62\x57\x64\x67\x4e\xc4\xa9\xae\x43\xed\x76\xe9\xe0\x85\xe8\x80\x9b\x47\xda\x2f\x99\x16\x29\x8e\xfd\x4b\x36\xac\x99\xdb\xcf\xe1\x6c\xf3\xb7\x6f\xce\x85\x23\xdb\xa3\xde\xd6\xfc\x9c\x29\xc7\x97\xc6\x2e\x5c\x79\x21\xf7\x9a\x77\x8d\x4d\xe3\x0a\x77\x3f\x2a\xb3\xb0\xf5\x1a\xf3\x55\xee\x30\x4d\x67\x16\x73\x61\x69\x13\x9a\x30\x27\x06\xd8\x8f\x2e\x30\x8d\x5b\x56\xed\x0e\x03\x17\x98\x41\xe8\x5f\x15\x59\xc3\xfc\x38\x95\x5b\x23\x96\xe7\x0e\x20\x72\xbb\x3c\x02\x10\xbc\xc2\x1f\x1d\x51\x90\xda\x80\x3f\xf0\x2b\x80\x8a\x0e\x19\x32\x55\xb8\xfb\x6c\xda\x42\xcd\xfe\x41\xf4\x22\x7c\x23\x0d\xda\x1a\x08\x3f\xb7\x62\x14\xd7\x35\xed\x29\x4e\x62\xe3\xef\xc4\x62\x46\x3a\x7d\x1b\xd2\x70\x2b\x2c\xb2\xb5\x31\x02\xda\x45\x61\x23\x90\x25\x36\x11\x7f\x39\x4e\x8d\x4c\x82\xaf\xd7\x90\x55\x2a\x22\xb4\xe2\x45\x67\x54\x68\x31\x8e\x93\xb2\x41\x89\x19\x84\x7e\xf4\x3e\x8e\xb9\xeb\xeb\x9c\xa1\x28\xbc\x25\xbc\xdf\xb0\xaa\xe5\x97\x17\x79\xee\x3a\x57\x23\xa9\x6c\x4a\x83\xa0\xc3\x94\x9a\xda\xea\x57\x3d\x0f\xa7\x4e\x1b\x45\x6e\xb3\xdc\x82\xc2\x8c\xe6\x3c\xe8\x23\x74\x2a\xa6\x5f\x19\x04\xe1\x29\xb9\x28\x2d\xa3\xcb\xe4\xf5\x5a\xfc\xbd\x28\xd1\x29\xf9\x56\x82\x9e\xed\xb2\x34\xb2\x86\x0f\x41\x10\x5e\x95\xe1\x07\xfc\x11\xe1\x6b\xf1\xf7\xb2\x44\x60\xb1\x94\xae\xd7\xac\x26\x48\x8b\x1b\x7c\x73\xd7\x93\x92\xd4\xa5\x12\xfd\x9e\x7e\x3d\xcb\x6b\x6f\x1e\xfc\x58\x02\xd3\x3f\xbc\x85\x27\xb5\x7c\xca\x53\x07\xf2\x76\x73\xce\x8c\x30\x6b\x17\xe1\x7c\x0c\x37\x38\x8e\x16\x65\x28\x57\x79\x43\xb5\x8e\xa4\xda\x2d\x46\x06\xc3\x4a\xcc\x01\xd8\xd6\xeb\xfa\xb6\x0c\x54\xc1\x45\x11\x66\x9e\xe7\x18\xba\xa9\xdb\x32\xd8\x7a\x7d\xdf\xb1\xd8\x61\xdf\x9a\x60\x13\xd7\x16\x06\x23\xa6\x73\x98\x13\xbe\x72\x39\x57\xea\xbf\x3d\xfe\x75\xf3\xc3\xe1\x84\xd5\x7b\xc1\x62\xc4\x09\xc3\x19\x49\x5d\xae\x0e\xc8\x7e\x93\xef\x31\x6f\x54\x87\xb9\x5b\x5b\x25\xe1\xe9\x79\x4d\xf5\x0f\x2b\x42\xb8\xc5\x1c\xa9\x89\x27\x95\x19\xdb\x28\x55\x83\x6f\x20\x5d\x4b\xb4\xda\x6b\xcc\x1b\xd8\xd2\x98\xfb\x1a\x6a\x6d\x3e\xd0\xda\x14\xda\x96\x8a\x87\x55\xa3\x81\x0d\xe7\x47\x63\xcb\x65\x6c\xbb\xfc\x26\xd7\x77\xa8\x7a\xeb\xeb\x2b\x20\xbf\xc5\xdf\x30\xab\xa9\xd9\xdb\xba\x08\xc7\x3d\x90\xd1\xd6\xa1\xc7\xea\x38\x5b\x58\xde\x38\x15\xc4\x48\xd6\x75\x7f\x62\x83\xd7\xbe\x8c\xb2\xae\xfd\xb1\xf1\x43\x93\xbe\x0c\xdf\x60\x67\x89\x5a\xef\x37\xcd\x88\x49\x66\xd5\xb4\x46\x96\xc8\x11\x18\xc7\xc0\xfc\xc1\x76\xf2\x48\x04\x72\x77\xfe\x60\x71\x23\xc5\x69\x8d\x0e\xde\x4d\xdf\x13\x02\xd4\xe7\x0e\x96\xf3\xaf\x67\xc2\xfd\x48\x3b\x25\x71\xcc\xd4\x22\x7d\x93\xf8\x46\x2c\xdb\x41\x27\xb3\x1c\x6c\x63\x0b\x0e\xab\xad\x53\xcb\xe0\x44\x40\x6b\x1a\xdb\x45\x65\x60\xb7\xf7\xff\xe7\xb7\x2c\x44\x7b\xac\xc5\x7c\xeb\x31\xab\x99\x6a\x05\x41\xff\x51\x43\x90\xa1\xc9\xa1\xd7\x14\xdc\xd8\x97\x5b\xcd\x29\x48\xba\xd7\x47\x31\x73\xcd\xca\x06\xa1\x19\x95\x86\x99\x4d\x06\x07\x11\xd9\x43\x43\xe9\x81\x55\x4d\x64\x91\xc9\x89\x65\x2e\x92\x79\x87\x8d\x8e\x26\xe8\x00\x0c\x8e\x9a\x5d\x0b\xeb\x49\x44\x10\xe6\xce\xbd\x5e\x0f\xe1\x54\xe5\xc7\x0e\x99\x48\x8a\x99\xb2\x69\x33\xbb\xbf\x3b\x02\x3e\xee\x69\x1b\x7d\xa1\x82\x9a\xb5\x10\x4e\x1c\x6b\x6f\xc1\xc8\x7c\x90\x08\x16\x8e\x92\xa0\x8f\x70\xaa\x62\x1d\xd6\xad\x4b\xee\x63\xc1\x0a\x2b\x9a\x7b\xc1\x03\xbe\x83\x8d\x7c\x6b\x44\x95\xd7\x21\x75\xb7\x3e\x03\x49\x61\xc6\xd5\xcc\x98\xe0\x6e\xef\xf0\xfe\xc0\xdd\x81\x48\x12\xec\xdd\xed\x1d\x3e\x58\xdf\xbf\x8b\xa9\x1b\xa5\xf1\x20\x12\x5b\x71\xfc\x22\xfc\x43\xfc\xf7\x0a\xc5\x7e\x89\xe6\x38\x07\x87\xb8\x7a\x74\xe8\x7b\x08\xc5\xed\x95\x18\x4c\x33\xad\x6f\xd0\x8e\x17\x80\xaa\xe1\x1d\x24\xd5\x1b\xb1\x77\x63\xaf\x72\xfc\x2b\xfd\xe8\x1f\x7a\x05\x6d\x3b\x72\x6c\x39\x6c\xe8\x36\xf9\xc0\x2b\x52\xe5\xe0\xc0\xf4\x96\x5e\x20\x0a\x29\x4a\xa0\x58\xca\x75\xa2\x04\x2f\x57\x34\x1d\x47\x5f\x93\x30\x31\xf0\x7e\x4f\xca\x2d\x3e\x78\x9f\x38\x1d\x9f\xf2\xd5\x40\xfd\x8d\x4e\xf9\xca\x6a\x11\x9f\xd6\x9c\xdc\x65\x0d\x58\x69\x38\xd2\xb1\xd9\xc7\xad\x91\x0d\x28\xe5\xbe\x42\x10\x4d\x47\x7c\x39\x4f\x14\x84\x01\x82\x30\x1b\xee\x7d\x4f\x9c\x53\xfa\xc4\x80\xa7\xcc\x13\xcd\x5d\x80\x84\x94\xce\xaa\xe5\x6c\xc2\xbb\x20\x63\x12\xfd\x91\x58\x86\x1c\xdd\x2c\x39\xcc\x83\xd9\xc5\xca\x45\x5b\x92\x9c\xc1\xe3\x0d\x72\xe8\x75\xac\xba\x21\x0a\x54\x11\x5d\x1b\x9b\x58\xd2\x1e\x87\x1e\x7c\x35\x5c\x37\xb2\x6a\x2a\x7d\x57\x55\x43\x52\x74\xf3\x4c\x1a\x56\x3a\xf5\x3d\xf7\xfc\x4b\xfc\xf0\xf2\x09\xba\x05\x95\x16\x1a\xa8\xc0\x67\x1b\xe5\xcb\x80\x51\x3e\xaa\xac\xa3\xa4\xfc\xdd\xd7\xf8\xba\xda\xc8\x9a\xda\x51\x6b\x23\xf7\xf7\x23\x6d\x79\x24\x27\xb6\xbf\x59\x05\xfb\xf7\xee\x5b\xd5\x9e\xc5\x5c\xa9\x5d\x4f\x5b\x40\x60\x5c\xfd\x57\x22\x43\x75\xb6\x39\x52\x85\xf5\x08\xd0\xf2\x44\x3d\x48\x1d\xff\xd5\x14\x49\xdc\x88\x7f\xfe\x59\x70\x9a\xae\x5e\x56\xb0\x8f\x4d\xda\x8a\x23\xc9\xc6\xed\xce\x41\xa4\x66\xbc\xba\x76\xab\x49\xe8\x1f\xe3\xeb\x8b\xe1\xfd\x83\x5a\x0c\xf6\x17\x8a\xaa\x82\x6b\xdd\xb3\x6e\xe2\x06\xd3\xad\xe1\x5b\x7b\xa3\xad\xe7\x0e\x49\x34\xe2\xb9\x38\x13\x84\xd2\x34\x8d\x22\x8b\x21\x00\x00\xeb\x0a\x97\xd9\x3c\x69\x5c\x67\x73\x01\x65\x41\xc0\x04\xf3\x29\xa4\x6b\x85\x55\x9f\x42\x55\x2e\xc6\xf0\xff\xd1\x66\xcb\xfb\xbb\xd3\xea\x5b\x9a\xe8\xd0\xf6\x95\x51\xab\x9b\x58\xc0\x3f\xc3\xb3\x2f\xcb\xf0\x00\xa7\xfa\x58\xa6\x79\x97\x12\xc7\x0c\x10\x2e\xb0\x0e\x27\xdf\x45\x6e\x0c\x1c\xda\xf4\xcb\x0e\xd5\x2d\x4a\xf7\xa8\x2d\x32\xf9\xa0\x76\xd5\x15\x5c\x9a\xea\x60\xd1\x3e\xae\x52\x4c\x5b\x7c\x14\x9b\x71\x02\xf0\x4f\xf1\x35\xda\x24\x24\x6d\xbb\x68\x25\x41\xf0\x34\x0f\x53\x00\xe2\x8b\x7d\xd6\xaf\x7f\xe1\x0d\xad\xd2\x0a\x3a\x91\xa4\x94\x65\xa4\x19\x06\x29\x96\x70\xd1\xce\xa8\xce\xe4\x4e\x6d\x2b\xe7\xeb\xb7\x65\xd8\x98\xd6\xe9\x89\x39\xac\x9c\xe2\x6c\x41\x7a\x64\xc0\x2b\xc2\x0e\x5a\x10\x3c\x67\x36\xac\xbb\x4f\xe1\x20\xa0\xdd\x6c\x96\x5e\x2c\x43\xbf\xeb\xf7\xbd\x25\xed\xae\xbf\xc0\xd5\xd6\xbb\x83\xc8\xd8\x6e\xd6\xcc\xe8\x21\xae\x56\xc3\xe0\x5b\x07\xdc\xf2\xc7\xb0\xba\x35\x1a\x97\x7c\xf3\x57\x2a\xf6\x43\x54\xe3\xd9\x43\xb3\x18\x49\xd6\x56\x2c\xbf\xdf\xff\xd9\xc5\xe9\x0f\x33\x81\xda\x37\x94\xd7\x65\x10\xbc\x2e\xc3\x04\xb5\x99\xa8\xd4\x27\xd8\xdd\xc6\x44\xa3\xb5\xc5\xc3\x33\xc3\x00\x40\xb4\xe6\x95\x81\x22\x03\x7b\x2d\x17\x0e\x09\x6c\x9d\x0e\x0e\x1f\x44\x69\x1d\xd8\x9a\x12\xa6\x43\xad\x00\x98\x97\x45\xa5\xb7\xb8\xb2\xc6\x7e\x55\x1e\x07\xcc\xc6\x5b\xc0\xc6\x98\xe3\x02\x6d\x0c\x52\x97\x5a\x6a\x28\xd8\xbd\x6e\xd0\xc6\x63\xd0\xe7\xa5\x34\x34\x71\x37\xa7\x76\xb2\xa5\xad\x5b\x7e\x10\x1c\x97\x2a\xd8\xbd\x2d\xf6\x9e\x2a\xd6\x49\xba\x1b\xbd\xd1\xc3\xe2\xad\x76\x6f\xbd\x43\x81\x13\xdf\x48\xdb\x01\xc3\xa4\xa4\xae\x91\x7e\xdd\x67\x47\x25\x36\x42\x4e\xd1\xe6\x9d\x39\xae\xa3\xde\xc4\xb4\x21\xed\x88\x69\x5d\xda\x11\xfb\x96\xde\xf5\x56\x78\x89\x56\x30\xeb\x59\x8b\x05\xc1\x5b\x41\x11\xbb\x15\x9d\x94\x4e\x8c\xd9\x7b\xc4\xa0\xd5\x1d\xd8\xc7\xbb\xfa\xd1\xa5\xd7\x3b\xf8\x4e\x05\x01\xb5\x67\x29\x17\x81\x4f\x05\xcd\x3b\x29\xc1\xee\x46\x63\x0e\x1a\x90\x37\x1b\xf4\xad\x3e\x91\x7a\x62\x22\x25\xde\x1a\xd4\xb2\x05\x49\x8c\x47\x90\x04\x3b\xe3\x2b\x16\xd7\x9a\x03\x6f\x0c\xd0\x40\x1e\x0f\xdc\x9a\x47\x9f\xee\xeb\xcd\x82\xf0\x6d\xee\x12\xd8\xbf\x1f\x04\xe1\xfb\x24\x94\xb1\xf5\xc5\x75\xcf\x75\xb3\xed\x3f\x40\x31\x8d\x12\xd0\x01\xa7\x84\xc6\xb1\x0a\x79\x5c\xfd\x9c\x9d\xfa\x49\x69\x5c\x02\x90\x86\xb3\x36\xc4\xfb\x29\x83\x75\x59\xb1\xad\xe7\x9e\xb5\xb9\xbf\x6f\x1f\xfb\x0f\xf5\xb3\x6c\x88\xdb\x89\x7d\xa4\x2d\xee\x77\x12\x37\xe0\xb5\xde\x4c\x24\x6f\xc8\x41\x71\x72\x4a\x5b\xd7\x9a\x19\x3f\x36\x66\xfc\x1b\x88\xe1\xe6\xd7\x23\x11\xee\x6a\x9b\xd7\x0e\xdd\x6c\xd8\xe0\x4f\x38\x60\xe3\x04\x45\xef\xf5\x93\xcb\x88\x7f\xd6\xac\xff\x80\x53\x31\x27\x82\x97\x99\xf4\x4a\x90\x88\x6a\x88\x12\x3e\x70\x26\x46\xe4\x42\x03\x96\xd5\x72\x45\xab\x94\xe3\x64\xf0\xb0\xa6\x10\x71\xc2\x64\x8a\x6c\x7c\xa1\xb6\x7f\x38\xc2\x45\x69\x4b\x5a\x58\x2b\x22\x14\xbc\x6c\x4b\xc1\x49\xfd\x9b\x14\xa1\x48\x64\xc2\x89\xe7\x39\x41\x91\xb4\x9e\x94\x87\x90\xf7\xb3\x19\x08\xcb\x80\x67\x9d\xdd\xcb\x2e\xc6\x46\xb6\x9c\x68\xfd\x18\xd8\xf8\x39\xba\x32\xdf\x01\x83\xa9\x7d\xc2\xfa\xf7\xcb\x2d\x42\x30\x8e\x21\xab\xe7\x1c\x5a\x19\x8f\xb7\xd6\xf7\xee\xb8\xbc\xff\x4f\x8f\x4b\x1b\xa5\xd3\x1a\xbd\x7e\xba\x7b\xef\x7f\xd0\xbd\xd6\xf7\x5e\x7c\x0b\xd3\x3d\x6b\x12\x9b\x60\x4e\x3a\x7d\x9c\xe1\x3c\x96\x73\xa9\x03\x61\xcd\x98\x71\x94\x83\xb5\x20\xf6\x26\x7c\x53\x19\x28\x56\xbf\x8c\xf0\xe6\xe2\xc7\xbd\xc5\x2f\x37\x0b\x9f\x96\x9e\x1c\x44\x59\x3d\x88\x72\x9c\x9b\x65\x4d\xe7\xba\xfb\x83\x5c\x1b\x4e\xb4\x7b\xf2\x86\x93\x4e\x6f\xa3\xbc\x7c\x98\xf5\xf2\x51\x67\x4f\xd9\x1d\x69\x96\x46\xf1\x98\x30\x3c\x21\x29\x9e\x92\x71\x1c\x8b\x03\xfd\x1f\x65\x58\xe0\xa9\x13\x46\x7d\x2a\x47\x22\x08\xee\xc2\x0f\x51\xc6\xd4\x5f\x24\xa6\x78\xaa\x73\x19\xb5\xc9\x14\xc2\x48\xb7\x79\x34\x4e\x5b\x57\xd0\xa9\x59\x41\xa7\xd6\xd3\xc7\x16\x30\x35\x19\x36\xd3\xfa\xca\xa9\xdf\x40\x26\x3d\xe6\xf9\x20\x2c\xc8\xb0\xca\x44\x07\x1d\xbd\xab\x98\xe2\x85\x9d\xe2\x85\xbb\x4a\xb8\x66\x56\x63\x14\x15\xb5\x04\x04\x02\x6e\x9b\xe2\x14\x8b\x4c\x6c\xd6\xbb\x96\xce\x4e\x34\x14\xed\x23\x95\x91\xad\x91\xb4\xe5\x60\x32\x9f\xb0\x0c\x82\xea\xd5\x9c\xa8\x4c\x5d\x70\x50\x05\xeb\xdc\x7a\x3d\x3f\x53\x4c\x99\x85\x6c\x8b\x2f\x16\x6b\x1d\x21\x66\x46\x88\xb5\xf8\x62\x31\x3b\x5f\x9c\xc0\xe1\x21\x07\x1c\x2e\x56\x1f\x32\x93\xd7\x51\x12\x78\xe7\xba\xd3\x9f\x97\xbb\x34\x8f\xd8\x2f\xc4\x5d\x36\xa9\xdf\x65\xdd\x5f\x1a\x68\x3a\xf1\x6f\xb7\xca\x56\xc2\x81\xff\xf0\x55\x32\x6d\x41\x33\xe5\xad\x95\x81\x80\xc6\x33\x49\xf6\x24\x04\xcd\xe3\xa5\x17\xa1\x31\x55\xf6\x70\xc6\xea\x44\xea\x82\x87\xbb\x0b\x0a\x16\x69\x92\xa2\xd7\x73\xae\x45\x47\x0c\x82\x3e\x07\xc1\x93\x44\x3a\x48\xcd\x99\x34\xb0\x4b\x08\x3c\x31\xa4\x5c\x6e\x7b\x31\x7f\x94\x69\x13\x36\x7e\x87\xec\xeb\x93\x7f\x76\xc6\xcf\x71\x21\xfe\xdc\xe9\xfb\x46\x46\xf9\x60\xca\xc2\x14\x17\x3f\x32\x32\xca\x07\x7f\x26\x3a\x5f\xcd\xae\xf5\xbd\x7a\xf1\x99\x86\x29\xce\x71\x21\xf6\xfe\x5a\x6c\x6c\x6b\x5f\xf3\x54\x75\x41\xf2\xa1\xba\xcc\x7a\x66\x35\x7f\x78\x39\xea\x26\x30\x62\x97\xf6\x4c\xc5\xba\x8e\xa5\x18\xbe\xe5\x9d\x67\x31\x83\xa9\xb6\x98\x51\xb3\x89\x0e\x5e\x88\x6a\xfd\x3c\x60\x31\x93\x74\x88\xf7\xa9\xf1\x71\xf2\x4d\x64\x5a\xbe\x6f\xda\xd0\x44\x6d\x99\x8c\xbd\xe5\xd9\x79\x24\x8e\xa8\xa2\x56\xb4\xd9\x6c\xfc\x2b\xf9\xcf\x19\xd9\xef\x23\xcf\xae\xd2\x1a\x97\x34\x8c\xe6\xeb\xb2\x0e\x4f\xde\xd8\x55\xf7\x6f\x50\x35\xa9\x67\xb1\x69\xfe\x95\x86\x75\xdc\x9d\xda\xbc\x6b\x88\x07\x52\xe5\x2a\x4b\x9a\x28\x18\xc3\x4a\xdc\x0b\xa2\x90\x49\x65\x9e\xd6\x38\x7d\x28\x41\x2f\xe3\x6a\xd0\x53\xe3\xd5\x9f\xc6\xd6\xa5\x55\x6a\x54\x32\x17\x7e\x08\xb3\x41\x08\xba\x45\xc1\xdf\x5b\x30\xc6\xb2\xee\x92\xaf\xb4\xc9\xd8\xc0\xfb\x05\xe6\xba\x10\xc6\x1e\x8c\xb2\xaa\x59\x25\xad\xb3\xca\xe9\x7c\xb6\x58\x51\x08\x62\x1f\x65\x3a\xd4\x3d\xd1\x39\x50\x14\xfa\xad\xe0\x75\x11\xaf\x6a\x10\xb7\xc1\x5e\xcc\xdc\x16\x4f\xbc\x6e\xc8\xe6\xb4\x03\x0d\xb8\xae\x50\xe2\x4a\xa8\xde\x99\x56\x4c\x98\xd7\x6c\xee\x9c\x1f\xef\x1b\x2a\xd1\x56\xa6\x60\x03\xc1\x70\x51\xdd\xef\xd5\x20\x1f\x1c\x58\x9d\x42\xb5\x05\x2d\xa1\x6a\x45\x26\x72\x44\x38\x62\x1f\xac\x19\xe9\xc4\x99\x8b\x90\x30\xac\x32\xbb\x4f\xfd\x07\x90\x15\xd2\x96\x3d\xee\x17\x70\x15\xd2\x7f\x1f\x57\xe1\x23\xc8\x31\x6a\xf2\xa9\x96\xc4\xdb\x25\xe7\x36\x38\x80\x27\xed\xd8\x2e\x8a\x6c\xee\x36\x5a\x1a\xd4\x10\x0f\x4a\x09\x9b\x27\x78\xe0\x97\x3b\x4f\x4a\xb1\x6a\x64\xb3\xc5\x33\x9a\x3a\x71\x37\x12\xbd\x33\xfe\x55\x3a\xd1\x2d\x00\x40\x2d\x15\x0c\x2b\xdd\x93\xd2\x2e\x65\x2c\x4c\x10\x4e\xba\xab\x82\x57\x21\xc3\x0c\xa1\x8d\x51\x9a\x7d\xba\x4d\x69\xf6\x86\xce\x07\xea\x6f\xf4\x86\xce\xad\xd2\xec\x73\x69\x43\x44\x5d\xe6\xa1\x45\xb9\x59\xd1\x9c\x1c\xc4\xe2\xa2\x76\x3d\x99\x51\x46\x6e\x94\x94\xd9\x09\x7f\xc6\x8c\x72\x2c\xed\xa6\xca\x6e\xca\x75\x03\xff\x52\xae\xd7\xe1\x97\x52\x2c\x3a\x7f\x97\x84\xa1\x58\x69\xe8\x36\x16\xe9\xc6\x45\x39\xb8\xbd\x25\xe6\xda\x74\x3d\xe7\x5b\x61\xdd\xb6\xe3\xa1\x9b\xd0\x94\xb6\xc9\xba\x67\x4e\x8b\x55\x03\x0d\x20\x52\xc8\xd1\x66\xa3\x5d\xd6\xfd\x31\xd6\xd6\xb2\xed\x0b\x9f\x2b\x50\x7f\x4a\x57\x69\x21\x7d\xd6\x5a\x88\xd4\xee\xdb\xcd\x1c\x44\xb3\xd1\x80\x8e\x80\x7b\x4e\xf9\x2a\x3c\x5b\x15\xe5\xf2\x1c\x45\x74\x04\xdc\x20\x7e\x21\xac\x9a\xad\x31\x7c\xb4\xbe\x53\xbc\x6c\xb6\x24\x54\x14\xc0\x37\xe6\xd5\x29\xa8\x60\xad\xad\x01\xec\x8e\x1b\xb4\x41\xee\x40\xc1\xf4\x18\x91\x37\x74\x55\x74\x53\x5e\x4e\x70\x3a\xaa\xe3\xff\x1f\xab\xd8\x56\x7c\x81\x59\xe3\xa5\x0c\x0e\xf0\x17\xe9\x61\x3e\x22\x0f\x71\x36\x22\xfd\xfb\x38\x1f\x91\x83\x7d\xbc\x2a\x49\x0f\x17\x23\xd2\xc7\xe5\x88\xec\xe3\x8b\x92\x1c\xe0\x6f\x25\xb9\x8b\x47\x23\x72\x0f\x7f\x22\x7f\xe1\x0f\xd2\x64\xe0\xb3\xfc\xf3\x91\xf4\xf0\x29\x59\x95\x78\x3c\x92\x09\x93\x11\x71\x42\x3a\x4f\xbd\x5f\x95\xca\x73\x29\x2a\x99\x8d\xc4\xee\xfa\x41\x3c\xce\x47\xe4\x5e\xaf\x87\xbf\xc8\xb7\x82\x4d\xfb\x82\x4d\xe5\xd4\x53\xdf\x7c\x85\xec\x0b\xf5\x6b\x39\x22\x87\x3d\xbc\x52\xbf\x2e\x46\xa4\x87\xbf\xe9\xc2\x47\xa4\x67\x27\xd5\xef\xb9\x09\xe1\x13\x7e\x0a\xc2\x6c\xb4\xce\x47\x08\x75\x08\xf9\x6b\x60\x1a\xd6\xdf\x0b\xc5\xe6\xfb\xaf\x7e\x6f\xdd\x43\x11\xd8\x0b\x8e\x06\x97\xa3\xe8\xd2\x69\xbc\x97\xc7\x53\xf4\xe5\x7a\xae\x24\x0a\x4c\xcf\xc2\xcb\x04\xfb\xc6\x6e\xd4\x52\x21\x76\xa2\x3b\xda\x9c\xd6\xc2\xf4\xf0\x10\xfc\x50\xed\x07\x36\x44\xf6\xbe\xf8\x20\xfc\x14\x64\x23\xe8\x81\xfe\xe2\xa3\x7f\x6a\x20\x85\x68\x52\xda\x5d\x49\x2d\xf7\x9b\xe5\xba\xb7\x5e\xdf\x7b\x76\x80\xf7\xef\xf5\x90\x07\x69\xc3\xd4\x49\xf5\xf0\x30\xa2\xce\x38\xb9\xa7\xd0\xc3\x87\x91\x2a\xb0\x7f\xaf\x87\xfb\x3d\xdf\xf5\xe9\x50\xa9\x20\x0e\xef\xeb\x5c\xa6\x1e\x37\xd7\xbd\x88\x92\xfd\x5b\x65\x98\x07\xfb\xf7\xc5\x36\x50\x19\x1b\x4d\xb1\xa9\x7d\x0c\x82\xbd\x3d\xda\x1a\xc4\xf3\x65\x6e\x22\xb5\xde\xeb\x3d\xba\x18\xa9\x43\xa1\xc7\x08\x66\x8b\x91\x66\x1e\xe4\x6a\x24\x57\x14\xcf\x48\x51\xed\x1a\x62\x30\x2c\x01\x64\x00\xe2\x4f\x01\x97\x74\x0e\x02\x87\x75\x88\x60\x9d\xeb\x51\x48\x51\x14\xfe\x1d\x52\x84\x3f\x11\xc8\x92\xe7\x21\x42\x91\x48\x89\xc3\x4f\xc1\x5d\xc8\xb7\x5e\x1f\x3e\x94\xa2\xb0\xc3\x43\x29\x06\xd3\x2b\xc9\x6a\x34\x58\xc9\x95\xe4\x0d\x9d\x87\x67\x10\x9a\xe9\x1c\xac\x8d\x56\x23\xb1\xa4\x8a\x82\x43\x1b\x02\x62\xbd\x4e\x1f\x27\x28\x08\x56\x23\x71\x72\x93\x2b\x8c\xaf\x25\x50\x9d\xfb\x3f\x8c\x31\xa6\x77\x02\x05\x33\xe6\xdf\xfb\xa4\x7d\x87\xc5\x9e\xe2\xde\xc2\x2d\x01\xf9\xf5\x71\x45\x5a\x60\xde\xa4\x84\x39\x0d\x62\xad\x88\x38\x09\x58\x4d\xb5\x19\x77\x25\xc8\xeb\xc3\xb6\x8f\xdb\x71\xf9\x12\x17\x10\x52\x9f\xb9\x64\xf3\x95\xb4\x83\x93\x86\x12\x73\x63\x65\x02\x1b\x7b\xb2\x0d\x3f\x28\xdf\xb2\x27\x60\x05\x7c\x4a\x08\xf9\x56\x06\xc1\x55\x19\x72\xfc\x11\x81\xd9\x31\x87\x3d\x42\x1b\xf6\x78\x61\x55\x47\xee\x01\x08\xf4\x2c\xa2\xa1\x9c\x01\x68\x90\x32\x67\x32\x91\x84\x13\xb0\x93\x00\x05\xcd\x3b\xa9\x80\xd1\xd9\x3a\x47\x92\x23\x6c\x4e\x3d\xe2\xa2\xcc\x77\x65\x95\xab\x22\xb5\x12\xec\x8f\x6a\x76\x59\xa9\x42\x5e\xf3\x6f\x7c\x12\x53\x92\x3e\xa6\x83\x34\x32\x53\x70\xff\x31\xe0\x0e\x81\x78\xa0\x17\x79\x13\xf2\x6f\x15\x93\xa8\x67\xc3\x6b\xd9\x66\x23\x6a\xf6\xdb\x1a\xd5\x9d\xcd\xc1\xe6\x79\xb7\x28\x67\x8b\x72\x75\x4d\x0e\x0f\x9d\x54\x38\xb9\xf1\x3c\xbc\x1e\xb9\x07\x33\xe4\x28\xe0\x13\x02\xc4\x03\x1b\x49\xf7\xab\xd8\x44\xf7\x71\x74\xae\xb5\x82\x65\x69\xdb\x9a\xd9\x6b\x6d\x5d\xcf\x53\xfe\xff\xde\xb2\x86\x30\x72\x78\x18\xf5\xc5\xe3\x7a\xbd\xaf\x53\xee\x89\xdb\x5f\xbf\xf7\x3f\xa1\xb3\xb9\x24\x68\xaf\x96\xc2\x10\x66\xa4\xf7\x98\xb0\xc1\xe1\x61\xb4\x7f\x4f\x3e\x3d\x8c\xee\xe9\xc7\x07\xd1\xe1\x3d\xff\xba\xa8\x4e\x55\xcd\x96\x42\x2c\xdb\x6d\x5d\x03\xd5\x1b\x7f\x6c\x2c\xcb\xe3\x54\x2c\xc0\x59\x10\xfc\x91\x85\x29\xda\x6c\xfd\x6e\x58\x25\x71\x0b\x51\x58\x9c\x90\x1a\x11\x5a\xc6\x2c\x62\x79\xc8\xf0\x13\x3f\x15\xdf\xa8\x1d\x2b\x6a\x12\x47\xec\xbd\x1b\x14\xd7\x06\x2d\xd9\x78\x6b\xe0\x13\xb5\x06\xc2\x09\x00\xe2\x89\x19\xa3\x55\x08\x4e\xfc\x54\xbe\xc7\x7f\x1b\x73\x39\x39\x25\x80\x6b\xf4\xd4\x82\x8d\xbc\xc9\x3f\xb5\xc3\x43\x3d\x1c\xd5\xfe\x03\x84\xe2\xe3\x51\x28\xbd\x64\x3f\x04\x41\x2a\xf6\xaf\xf5\xfa\xd9\x48\x82\xe7\xd9\x71\xfa\xac\x2f\x18\x9f\xe2\x4f\x6b\x92\x8d\x14\x62\xc1\x73\xf1\x2d\x9b\xed\xac\x16\xd7\x37\xbf\x8b\x67\xb9\xbe\x18\x9d\xf5\x0b\x51\x50\x81\x94\xa6\xba\x8f\xe2\x4a\xb0\xdb\x27\xc2\xe2\x74\x64\x4c\xbb\xa0\xa5\x62\xb9\x29\xf4\x86\x98\x90\xf1\x08\xab\x46\xe0\x2b\x69\x10\x26\xfb\x9f\x38\xcb\xdd\x67\x6d\xc1\xc1\x61\x31\xa9\xca\x65\xc1\xd9\xa7\xd9\x62\x2c\x08\x21\xcb\x76\xac\x1a\x6c\x96\xba\x71\x2d\x66\xe4\x54\x9f\x0f\xf5\xd9\x62\x55\xca\x23\x42\x31\xaa\x6f\xf9\x77\xc5\xb6\x0c\xef\xca\x51\x04\x63\xb3\xff\x28\x1d\xec\x47\xbe\xa6\xfc\xa2\x8c\x54\xbb\x01\x31\x56\xac\x2c\xa7\x10\xd5\x90\xa9\xf5\x6b\x58\xa5\x44\xa9\x54\xda\xd7\x31\xf2\x72\x04\xfe\xcb\xe2\x72\xef\x72\xe6\x64\x04\xd2\xdb\x0f\xe5\x9d\xf9\x08\x18\x0c\xf7\x7b\x8f\x38\x82\x65\x6c\x36\xb2\xf8\x58\xb5\xf5\x52\x2d\x26\xd9\x7a\x9d\x3d\x16\xdc\x52\xcf\x40\xd2\x58\x8f\xba\x1c\xc3\x4d\xe6\x73\x58\x16\x04\x2a\x96\x0f\xf4\x52\xa5\xb2\x20\x60\x92\xfd\x1a\x05\x32\x8d\x9b\xa7\x8f\x74\x32\xcc\x25\x79\xc1\xc2\x57\xb5\x29\xc4\x75\xa5\xaf\x46\x35\x0f\xbd\x6f\x3f\xa2\xe3\xcf\x53\x71\x26\x09\x57\x6f\x27\xee\x49\x07\x25\x2e\xc8\xf2\x13\x74\xe1\x3e\x59\x78\x10\xf0\x5f\x22\xcb\xb0\xd2\x84\xb1\xc3\xda\x21\x64\x3a\x1a\x34\x96\xd7\xe9\x48\x2e\x21\x51\x8d\x01\x06\x8c\xf4\x5a\x56\xe3\xc9\x08\xed\x89\x83\xac\x36\x96\xae\xbf\x4f\xd1\x1e\xc7\x8c\xf0\x3d\x86\x7b\x8f\x19\x58\xae\xf6\xc4\x72\x1d\xf6\xf7\x7b\x8f\xd9\xa0\xbf\xdf\x8b\xee\x3e\x14\x4f\x77\x1f\xf6\xa2\x7e\x0f\x1e\xc5\x9f\xa8\x7f\x28\x33\x1c\xee\xf7\xa2\x83\x67\x07\x8f\xd9\xe0\xe0\xd9\x41\x74\xf7\x00\x52\xc5\x9f\xa8\x7f\x78\xbf\xf7\x3f\xc9\x28\x64\xff\x12\x4f\x08\xed\x31\x9c\x3e\x62\x0a\xb1\x46\xf1\xf0\x23\x90\x0d\xfd\x90\x17\xd8\x56\x5e\x18\x8d\x22\x6f\x32\x74\xe4\x64\x50\x2b\x54\x35\x42\x37\x19\x99\x8c\x14\x62\x7c\x35\x8a\x19\xc9\xbb\xc9\xc5\xf2\xfa\x4d\x59\x1d\x5f\xc8\x09\x2f\x6e\x15\x31\xec\x44\x40\x42\xae\x72\x1c\xf3\x09\xbd\x16\xef\x70\x06\xb4\xdb\x0b\x6b\xa4\xcb\xd0\x5e\x98\x37\xae\x26\x48\x50\x2f\x7b\x44\xf8\xa0\x17\xf1\x3b\x6c\x2f\x73\x7a\xaa\xb9\xb6\xde\xe3\x61\x75\x5b\x9f\xbd\x4e\x6f\xbb\x73\x1c\x8a\x3b\xc7\xdf\x8a\x07\x6b\x7b\x8b\x73\xc8\xaa\xed\x53\x1b\xd7\xc2\xdf\xdd\x7f\xae\x6f\x3d\xba\x25\xe0\xac\x95\x0c\x12\x87\x09\xff\x9d\x9d\x25\x71\x76\x96\xa4\x65\x67\x49\xbd\x9d\x85\x79\x3b\xcb\x1f\xf5\x9d\x85\xab\x9d\x85\x37\x77\x96\xd4\xdd\x59\x58\x63\x67\x49\xcd\xce\x92\xa8\x9d\x45\xef\xac\xa9\xd7\xa6\x9a\xc9\x3d\xd8\xaa\xfc\x78\x93\x89\xb7\x6e\x32\x49\x2c\x37\x98\x58\x0e\xb0\xa8\xd1\x1b\x0f\x33\x1a\xaf\x47\xa1\xab\xa1\x5c\x8d\xb4\xed\xd8\x6a\x14\x2b\xc1\x81\xa8\xa5\x2e\x00\x14\xbc\x76\xf3\x74\x14\xa6\x18\x4a\x4f\xc5\xb1\x43\xdc\xed\xbc\x93\xc6\x9b\x91\x6b\xdf\x0e\xf4\xee\x83\x9d\x99\xbe\xab\x82\x25\x93\x8a\xc3\xfb\x89\xa4\xee\x25\xd1\xb1\xb6\x7d\x5b\x2f\x26\x20\x7b\xfb\xa2\x30\x3e\xfa\xf9\xd2\x9c\x66\x3d\x33\x97\x40\x8f\xbe\xc6\x8c\xab\x95\xa0\x3d\x73\x31\xf0\xe6\x57\xbc\xd7\x37\x27\x65\x7f\xe2\xed\xf5\xf1\x4b\x16\xa6\xc8\xe7\x3d\x69\xd3\xf3\xb9\x66\x69\x95\xc6\xc6\xda\x57\x1b\x0b\x30\xcf\x27\x84\x29\xad\x9f\xbc\x93\x3d\xb5\x21\x86\x96\xe6\x5e\xe8\x18\x92\x30\xe5\x39\xe2\x99\x55\xd5\xfd\x3f\x5c\x2b\xbb\xbc\xa8\x01\xb1\xdc\x95\xd9\x5d\x0b\x3f\xe5\x0a\xec\x26\x1d\x36\x93\x7a\xd1\x2c\x0f\x19\x72\x0d\x9c\x3e\x10\x1a\x7f\x06\xa4\x53\xe3\x3c\x23\x05\xa5\x1f\x49\x12\x9f\x92\x55\x19\x2b\xa1\x58\x3c\x1d\x11\x4f\x2e\x16\x2b\x49\x58\x7c\x59\x92\x5e\x0c\x92\x30\x4f\xa6\xa4\xc6\x91\xcd\xc0\xf5\x00\x26\xe4\xc8\x06\xdb\x58\x42\xb4\xdc\xa9\x44\x73\x94\x83\xf7\xb6\x05\xbe\xdb\x27\xbf\x0c\x9f\xef\x10\x35\x64\xda\x66\x4f\x79\x4c\x1a\xc3\xeb\x49\x41\x7a\xf1\x3b\x72\x42\xde\xaa\xd6\x43\xe8\x5c\xe7\xb8\x68\xdc\x91\xf5\x70\xeb\x95\xf2\x94\x14\x23\x3c\x1e\x91\x44\x89\x07\x63\x1a\xe9\x5b\x09\xce\x4c\x6e\x9c\x93\xcf\xb8\x20\xe2\xee\xfa\x31\xce\x3d\xb4\xf6\xde\xdd\x87\x71\xee\x19\x1c\xe6\x0d\x5b\x43\xcb\x75\x00\xd0\xd7\x0c\x44\x55\x6c\x13\x06\x17\x20\xad\x97\x24\x19\x93\xc2\x88\xdf\x72\xe3\xa7\xac\x60\x29\x72\x67\x25\x9a\x0c\xc2\xdc\xd3\x36\x4c\x3c\x07\xbc\xbc\x66\x6b\x39\x69\xc4\x74\xaa\x89\x4d\x26\xb5\x04\x14\xd5\xca\x97\xd8\xd3\x8d\x82\x61\x90\x36\x32\x3e\x5f\xc3\x21\x1a\xcf\x49\xa6\x4d\x62\xaf\x44\xbf\xae\x08\x28\xb2\xe6\x72\xb2\x89\xe4\xef\x64\xde\xee\x56\xdc\x21\xe4\x3b\xba\xd2\x8a\xff\xef\x8e\x1a\x6b\xd0\xe9\x45\x9d\xbe\xbd\xe4\xa6\xd4\x29\x43\xaa\xcd\xae\x6c\x24\xf2\x94\x1a\xb7\xf6\x41\xa7\x1f\x81\x97\x77\x4a\x6f\x71\xec\x16\xc5\x4f\x65\xd6\xcd\x46\xb4\x59\x36\xf4\x98\xcc\xdb\x14\x3f\x84\x90\x63\x99\x61\xa5\x45\xf0\xf1\x0a\x24\xef\x63\x14\x7b\x5f\x90\x95\x54\xa9\x1d\xeb\xb7\x7a\x9c\xe7\x76\x9c\xe7\x35\xe7\xe4\xdc\xb3\x90\xdc\x3f\x7c\x08\x0c\xdf\x87\x50\xad\x82\x84\xb6\x11\x0e\x6f\xa0\x5c\x46\x61\x7d\x60\x49\x74\x4d\x2e\xf3\xd0\x15\x79\xc3\xd4\xba\x86\x7c\xfb\xf1\x55\x1e\xe6\xf8\x1a\x6d\x1a\x4c\xe1\x2c\x0d\x0a\x7b\x63\x87\x6e\x0a\xed\xc5\x91\xab\xf8\x3a\x47\x84\x77\xe7\x65\x95\x3f\xa5\x69\x61\xd4\x5b\x47\x83\xd0\x4b\x07\xe2\x7c\x2a\x71\xa1\xa9\x84\x8f\x40\x68\x38\xc6\x05\x42\x51\x58\x90\x23\x10\x30\x8e\x11\x36\x23\x57\x04\x41\xd8\x9a\x5d\x86\x06\x2a\x40\xf1\x95\x23\x74\x53\x00\x45\x73\x29\xf8\xfb\x4a\x4e\xdc\x83\x11\xc7\x63\x9c\xa3\x78\x2c\x35\x62\x5f\xf1\x57\xb4\xf1\x88\x7c\xb7\x77\x78\x3f\x9e\x37\x84\x88\xc6\xba\x6b\x4e\xe6\x7a\x61\x95\x47\x11\xc5\x90\x73\x14\x17\x44\x9e\x1f\xc2\x79\x22\x0e\x8f\xd7\x73\x19\xcd\xed\x68\x07\x94\x1a\x3b\x46\x79\x32\xdc\x45\x77\x86\xbb\x3b\x4b\x7d\xaf\xd9\x81\x82\x76\x8c\x13\x24\xde\x49\x2e\x56\x3b\xd5\x6c\x47\xf3\xe9\xce\xc7\x97\x3b\x97\x74\xb9\xb3\x9c\xf3\xb4\xcc\x4a\xce\xba\xc3\x61\x35\x1c\x56\x47\x8c\xed\xd0\x9d\x47\xa7\x2a\x7c\xbe\xc9\x4f\xba\xdd\xee\x63\x5b\xdf\x4e\x51\xe6\x05\x5f\xec\x94\xd5\xce\xaa\xe0\x3b\xab\x05\xe7\x3b\xab\xd9\xce\x7c\x31\xfb\x56\x32\xbe\x43\x77\x26\x33\x2a\x16\xd8\x9d\xb2\x62\x65\x4a\x57\xb3\xc5\xce\x6c\xb1\x33\x9f\xd0\x94\x17\xb3\x09\xe3\x0b\x91\x5b\x69\xb1\xbb\xc3\xdd\x3b\x5f\x13\x41\xe5\xcd\x69\x87\x90\x61\x35\x1a\x01\xbc\x41\x39\x12\xfd\x3f\x2a\xc3\x42\x50\x57\x4d\x73\xb5\x95\xce\x9d\xad\xf4\x20\x12\x2b\xda\x4f\x51\x1c\xfc\xfa\xc8\xe7\x32\x9c\xe3\xb1\x38\x42\x5e\xe7\xe1\x1c\x3f\x41\xbe\x35\x5e\x1f\xca\x13\x59\x2f\xc5\x2a\x72\x3d\xe7\xf8\x22\x21\x73\xdf\x9a\x48\xcd\x2a\x0f\x7e\x20\x08\xb6\xe8\xfd\x2e\xb7\xea\x0a\x8d\x79\xe8\x45\xb2\x6d\xe9\xbe\x48\x5a\x15\x79\x46\x31\xb7\x5e\x77\xe8\x08\xf8\xf4\x22\x41\xa8\x3e\xc1\x6f\xa3\xc4\xb7\x84\xfc\xe6\x93\xe2\x5b\x62\x23\x7e\xdf\xc2\x96\x9b\xcf\xe4\xdd\x28\xfc\xac\x1d\x0b\x3e\x83\xe4\xe8\x73\x6a\x75\xf3\xf2\xa0\xad\xcf\xd5\xee\x06\x2f\xce\xe4\xea\x34\x6a\x0f\xd9\xee\x79\x7b\x59\xb8\xd8\x13\x80\x1c\xb0\x2c\x22\xea\xb8\x72\x2a\x05\x08\x7d\x24\x6e\x6e\xfb\x8f\x68\x10\x84\x93\x11\xa1\xc8\x31\xa8\xa7\x8f\xa6\xe6\xdd\x74\x44\x28\xae\x46\xc4\xb5\xb0\x7f\x92\x83\xa5\xfc\xe3\xcb\x32\x08\xc2\xcb\x92\x50\xe7\x9d\xb8\x29\xdc\xb8\xe2\xf9\xcf\x31\xfa\x4c\xfe\x84\xfe\x5a\xe5\x5a\x23\x53\x10\x74\x3e\x8a\x03\x5a\x33\xef\x9f\xce\xe5\xe8\xfd\xc8\x0d\xae\x8b\x29\xfe\x88\x1a\xde\x02\xbe\x47\x81\xe3\xea\x13\x26\x82\xec\x14\xa1\x98\x8d\x3c\xa7\x46\xe3\x3d\xec\x79\x03\x40\xb5\x9f\x09\xd5\xbb\x63\x42\x3e\xbb\xd7\x0c\x7b\x62\xd5\xec\xfc\xd9\x35\xff\xee\xdd\x7d\x88\xc4\xb0\x2e\xcb\x30\xc1\x9f\x45\x3b\xd5\xae\xf0\x71\xbd\x16\xe7\xe3\xcf\x6d\xba\x04\x17\x9c\xbe\x87\x99\xce\xe4\x2a\x3a\xe4\xa1\x88\x35\x60\x08\x48\xab\x66\x23\xe6\x8f\xa5\x11\x03\x47\x71\xa6\x1e\x01\xa8\xdc\x5a\x16\xb6\x36\x84\xa4\x1b\xd7\x6a\xc2\x68\x02\x2a\x0b\xf4\x41\x6a\x40\x1f\xd0\x63\x67\x62\xb9\x67\x31\xb8\x0b\xb8\x67\xb3\xcf\xee\x2f\x63\xa3\xf9\xd9\x07\xe7\x30\x56\x2d\x5e\xaa\xfb\xd3\x45\x0a\xa8\x15\xe9\x79\x9a\xb8\x05\x23\xdc\x7f\xe4\x8e\x94\xa9\x67\x58\xb9\xdf\x0c\xb6\xd6\x13\xd5\xba\x52\xab\x0a\x29\xa4\xc4\x84\x7c\x2f\xc3\xcf\x5e\x18\x05\x07\x0a\xc8\xc1\x09\xe9\xdd\x7d\x80\x13\x3f\x54\x92\x5b\x7e\xc3\x65\x06\xd3\xfa\xc1\x17\x6d\x04\x6f\x3a\x21\xb1\x9a\x03\xf7\x99\x50\x7f\x15\xfa\x8c\x62\x07\x0a\x67\x34\x42\x71\xeb\x5d\xf8\xa5\x27\x99\xa8\x05\xa2\xa0\xed\x90\x1f\x66\x3a\x3d\xa6\x83\xc4\x5d\x7a\x5e\xb9\x85\x89\xab\x49\x9a\x87\x87\x87\xf8\x74\x54\x33\x98\xf1\xdb\xe2\x5a\xbe\x9a\xeb\xcd\x0e\x08\x36\xbc\x1e\x2d\x46\xe8\x67\xa5\x22\xfa\xde\xea\x5e\x76\xc1\xaf\xb8\xfd\xa6\xeb\x1c\x24\xfd\xa8\x1a\xbf\x78\x5d\x56\x21\x1e\xcc\xa5\xaf\x6e\x90\xf8\xe0\x01\x6a\x68\x2a\x54\x99\xdb\xd4\x4b\x6d\x9a\x94\xc3\xff\x87\xbd\xff\xdf\x6e\x1b\x47\x16\x45\xe1\x57\x81\x7d\x66\xcb\xe4\x18\x96\xe5\xa4\xbb\xa7\x5b\x0a\xe3\xed\xc4\xce\x74\x66\x92\x38\x1d\x27\xdd\x93\xb1\xfc\xb9\x29\x12\x92\x68\x53\xa4\x42\x52\x96\xd5\xb6\xd6\x3a\x7f\x7d\x0f\x70\xd7\x79\xc2\xfd\x24\x77\xa1\x0a\xbf\x49\xca\x4e\xf7\xcc\x3e\x77\xdd\x73\x7b\x66\xc5\x22\x50\x00\x0a\x05\xa0\x50\x28\x54\x15\x78\x6a\xb3\x2a\xb6\x27\x2e\x0d\x5e\x5f\x79\x91\x3f\xa8\xdf\xff\x05\x6c\x10\x3f\x6b\x52\xf2\x1e\x0a\x58\x2b\xb1\x09\xb0\xed\x4e\x30\xe8\xf5\xa1\xe6\x7a\x2d\x7a\xc6\xdb\x15\x0d\xb3\x18\x62\x6e\x3c\xab\xe9\x8b\x15\x17\x30\x74\xba\x3d\x03\xd2\x50\x9e\x69\x86\xa1\xd3\x38\xac\x50\x89\x79\xff\x08\x3e\x2a\x73\x14\x7f\x70\xf0\xcc\x70\xe1\x39\x94\x47\x61\x93\x2b\x78\x51\x0b\x5b\x88\x28\x0b\x22\x8b\x05\xf5\x59\x10\xf5\x9d\x44\x63\x71\xaa\x77\x34\x40\x09\x34\xb9\xaa\x6d\x4a\xc7\x71\x30\x8e\x85\x2a\xf5\x36\x46\x9b\x8f\x55\x0c\xd2\x34\x46\x66\x03\x23\xdf\x24\xcf\x20\x42\xc7\x70\x1b\x1e\x07\x40\xd7\x85\xbb\x92\x27\xf5\x27\x5d\x1b\x86\xb2\x2c\x36\x13\x4f\xb2\x78\x8d\xd7\xe9\x61\xff\x6e\x1a\x78\xd3\x60\xe2\x04\x4a\xeb\x74\xa6\xca\x2c\x37\x61\xcb\xfb\xfb\x65\x92\xc5\xf9\x52\x86\x6b\x04\x3f\x7b\x59\x1b\x87\x35\xbf\x11\xe3\x6b\x8c\x09\x75\xdd\x2d\xc2\x6c\xc2\x5e\xe6\x8b\xac\xf2\xef\xa6\xc1\x75\x37\xcc\xa2\x69\x5e\x80\x3c\x28\x22\x3a\x8a\xa4\xd3\xf1\xb8\x64\x15\x1d\x66\xb3\xe0\x1a\x3d\x6e\x01\xe8\x5a\x7e\x61\x3e\xa8\xb9\xb4\xb7\x02\x9d\xa9\x9f\x42\xaa\x5a\x8e\x78\x3b\x99\xe9\x62\xc6\xdb\x99\x07\x3d\x7a\x1b\xec\x1d\xd0\xdf\xf8\x3f\x51\x18\xf4\xe8\x71\xd0\xa3\x55\x30\xa1\x2b\x01\xad\x5c\x5a\xe4\x66\x7c\xc4\x3f\x20\xda\x30\x46\x14\x4b\x3b\x9d\xa7\x5b\x41\x50\xa9\x26\xef\xef\xbd\xdb\x60\xbe\x9b\xfa\x03\x0e\x35\x43\xa8\xeb\x06\xa8\xdf\x82\xf9\xee\xb5\x3f\xe0\x07\x6c\x9d\xde\xe9\x78\xf3\x5d\xf1\x0d\x96\xa6\xc2\x26\xdd\xb4\x2b\xf0\x8e\x82\xca\x8a\x6e\x8b\x1a\xa6\x55\x50\x0d\xaa\xe0\x68\x6d\x38\xe1\x54\xfc\xa4\x29\xac\x32\x47\x83\x15\x1e\xd2\x76\x77\x23\x3e\xe3\xd3\x4e\x87\x23\xea\x43\xf2\x8c\x27\x1f\x07\x80\x28\x47\xcc\xdc\xaa\xa0\x39\x3e\xbb\xcf\x70\x53\x91\xed\x55\xc1\x8a\xb7\x69\x78\x86\xac\x79\xf3\xd3\x60\x8f\x8b\x36\xb7\xf7\xf7\xf0\xf7\x37\x11\x3b\x09\x67\xe1\x2d\x4c\xbb\xdf\x84\x6f\x06\x0e\xc9\x7a\xca\x69\x29\x00\x7a\x00\xd0\x53\x00\xe2\x09\xad\x93\x38\xb8\x0b\xa3\x2a\xb9\x91\x81\x72\x8f\x59\xc5\x8f\xa9\xe2\x9d\x52\x98\x0b\x2c\xe6\x79\xfd\x09\x55\x73\xfa\x03\x9f\x66\xfd\xe9\x7a\x30\x06\x37\xca\xcf\x9c\xa3\xa1\x0a\xfb\xe3\x95\x72\xe5\x5d\x8e\x4c\xc3\xd6\xcf\xee\x1e\xf1\xb4\xe7\xfb\x83\x93\xc4\xfb\x4c\x97\x23\x7f\xf0\x39\xf8\x6c\x2c\x74\x7b\x17\xfd\xec\x9b\x2d\xf0\x51\x98\x04\x21\x68\xa8\x24\x80\x10\xd9\xbe\x04\x9f\x8d\xd8\x32\x5f\xc0\xcf\xf2\xc3\xc8\xfb\x6c\x98\x41\xe3\xcb\x1c\xc9\xd8\xfb\xd2\x39\x78\xf2\x3d\x16\x7b\x11\x7c\x6e\x7c\x29\xeb\x05\x66\x2f\x83\x17\x10\xec\x43\xa4\x2e\xdb\x4f\x50\x87\x4b\x0c\xf2\xd1\x5f\x5a\x4c\xc6\x5f\x4b\xdf\x83\x2f\x9d\x83\xde\xd3\xef\xd5\x63\x02\xef\x13\x8f\xf7\xcd\xd2\x6d\x58\xe6\x5d\xdf\xb5\x80\x9c\x25\x9e\x81\x32\xfd\xec\xe8\x42\x9f\x7c\xd3\xb7\x4b\x1c\xf4\x9e\x7c\xeb\x80\x7c\x6f\x83\x0c\x33\x04\xda\x58\xf3\x37\xfd\x8d\xd9\xdf\xf7\xd3\xe0\x33\x7d\x9b\x78\x13\x9a\xd2\xa9\x4f\xdf\x25\x5e\xea\xaf\x9d\x91\xfd\x37\x4c\x8e\x65\x70\x12\x0f\x5e\x20\xfb\xfe\x12\x2c\xbb\xc6\xa4\x1d\x4c\x83\x65\xd7\x9e\xb6\x7c\x80\x5f\x6c\x05\xc1\x97\x4e\x87\xff\xdf\xe6\xc5\x9d\xce\x32\xf6\x9c\xb4\x6e\x2c\x7e\x88\x15\x42\xbf\xf8\xea\x7d\xb1\x69\xa7\xb3\x8a\xbd\x2f\x5c\x24\x7f\x11\x4c\xbb\xb0\xd4\xe8\x32\x98\x76\x59\x16\x6b\x05\x0e\x9f\x32\xcb\xe0\x85\x0e\x6f\x6d\xed\x27\x5f\x0e\xbd\x2f\xce\x1e\x12\xbc\xa0\x5f\xac\x1d\x04\x8d\x49\x67\x49\xe6\x2d\xe9\x17\xb4\x4a\x95\xfc\xcb\xef\x7b\xcb\xc0\x7b\x11\x38\x58\xdf\xdf\xc7\x7a\x7f\x79\xd1\xb4\xbf\xd0\xa5\xb3\xb3\x0c\x33\x6f\x19\x2c\x9d\xed\x85\xa6\xc1\x17\x33\x9e\xbb\x68\x96\x4e\x34\x4a\xb2\xdf\xa9\x4f\xa7\x5a\xdf\x08\x34\x38\x9c\xf4\x0d\x30\x4e\x94\xd4\xa7\x5b\xcb\x2e\xbb\xad\x58\x16\x77\x3a\x93\xe7\x53\x7e\x32\x0e\xa6\x74\x1a\x4c\xe8\x24\x48\x79\x7b\x37\xb1\xf7\x85\x4e\x7c\x3a\xc3\x5f\x53\x9f\xa6\x9d\xce\xac\xd3\xf1\xf8\x91\x6e\x69\xec\x71\xf7\xf7\x4b\x63\x87\xe3\x7b\x06\xb0\x77\x9d\x8c\xbb\x18\x64\xe4\xf0\x93\x67\xa9\xdd\x0e\xbc\x09\x65\x01\x63\xd7\x83\x74\x84\xc7\x81\x7d\x21\x42\xa1\xc0\xfc\xf1\x7c\xfa\xa2\x5b\xb2\x0a\x06\xca\xc3\x16\xa9\xac\xdf\xa7\x4b\xe1\xa2\x77\x94\xa6\x00\x5e\x7a\x3e\x9d\x3c\x9f\x1e\x7a\xcb\x6e\x18\xc7\x58\xc3\x0b\x0e\x86\x24\xf0\x10\x03\xaa\x1a\xf4\xfb\x1e\x54\x7f\xd2\x90\x47\xad\x3a\xe0\xbf\xc1\x8b\xe0\xfc\x02\xfc\x0a\x96\xc1\x97\x01\x1f\x3e\xbd\x6b\x0c\x7c\xbe\x4f\x2c\x8d\x2d\xf0\x05\xbe\x59\xa3\x2c\xd4\x97\x34\x65\xe3\xaa\xbf\xec\x96\x51\x91\xa7\xe9\x1b\x36\xe6\x22\x41\x95\xcf\x55\xd2\xc7\x7c\xbe\xf6\x5b\x02\x2a\x7c\x41\xa2\xf1\x45\x24\x63\x76\x70\x44\xbe\x04\xbd\xc1\x97\x67\x2f\xa4\xcf\xd7\x97\xdd\x5d\x7f\x19\xbc\x38\xff\x72\xc1\x3b\x8d\x0d\x1b\xed\x05\xcb\x2e\xc7\xa1\x96\xf7\x31\x9f\x07\xcb\x6e\x95\xcf\xd7\x7c\x8f\xd9\x3a\x8e\xf9\x56\x75\xac\x22\x28\x48\xfe\x1a\xb9\x5b\xc3\x17\xfd\x56\xad\xdc\x16\x16\x23\x6b\x5f\x58\x8c\x3a\x4f\xbf\xeb\x74\xfe\x96\x78\x5f\xa8\xc3\xcc\x92\xb1\xb7\x18\xe1\xc6\xf0\x42\xc5\xe8\x41\x25\xd4\x67\x27\xe0\xd3\x8d\xb8\x18\xfc\x47\x14\x7c\xae\xbb\xdc\x7e\xb6\x5c\x6e\x5f\x04\xff\x88\x9c\xbb\x6e\x9e\xb4\x6e\x26\xeb\xcd\xe8\xf0\x66\xe4\xbd\xf0\xfb\x37\x3a\x2a\xd4\x8b\xf5\x7f\x03\x1f\xfd\x2c\x85\x82\x9f\xc7\x70\xc5\x3c\x46\x59\xc1\x24\x36\xdf\x38\xaf\x7c\x65\xec\x1d\xd2\xf2\x2a\x18\x69\x63\xd1\xcf\x01\x33\x88\x3f\xb2\x9a\xa3\x9f\x6b\x91\x3a\x3f\x07\x2d\x06\x92\x3d\xa1\x4b\x12\xd6\xe5\x35\xc3\x3d\x2e\x66\xdd\x5c\x1d\x2e\xae\x76\x77\xfb\x9e\xb4\x2a\x0e\xfd\x3e\xff\xd9\x32\x59\x3f\x5d\x75\x3a\x9f\xae\xcc\x47\x05\x69\x8c\xf7\xd3\xbc\x53\x9f\x13\x41\x39\xb4\x6e\x0f\x83\x7f\x26\xda\xc4\x5d\x1c\x78\x99\x6d\xd6\x0d\x94\x9a\x4c\xbc\x96\x33\xfd\x47\x57\xf9\x26\x67\x63\x68\x4d\x46\x0c\xe5\xda\x79\xf2\xed\x77\x7e\xa7\xf3\xd7\xda\xee\x8a\x0a\xa0\xce\xb7\x07\x4f\xfc\xfb\xfb\x2f\x57\xf7\xf7\x1e\xa7\x7d\x8f\xc6\x13\xef\x87\xbf\x98\x71\x57\xe0\xa4\x6e\x22\xe2\xd7\x86\xdb\x3c\xe3\x1f\x8b\xdb\xf7\x1f\x78\xfb\xa5\xba\x7b\xff\xe1\x2f\xcf\xca\xab\xc3\x1f\xfe\xd2\x2f\xaf\x06\x60\xc3\xaf\xdc\x1a\x26\x5e\x48\x7f\xbe\x32\x6f\xc7\x7f\x36\x2e\xf0\x03\x50\x0c\x20\xec\xd6\xc1\x00\x2b\x2b\xae\x06\xc2\x1f\xe0\x11\x1a\x83\xa7\x07\xbe\x8c\x38\x28\x8f\x6a\xe8\x5d\xa7\xad\x0f\xcc\x13\x5e\xa6\x1c\xee\xe1\x0a\x56\xa8\x1a\x54\x38\x41\x33\x46\x04\xa7\x9d\xff\x55\x91\xa8\x7e\x4c\xbc\x6f\x69\xe4\xd3\xd7\xf8\x57\x2e\x35\xeb\x59\xa1\xb0\x6d\xa5\x85\x14\x1f\xfd\x30\x28\x3f\x08\xdd\x99\x3f\x08\x83\x68\xfd\x4b\x30\x32\xe7\xcf\x56\xcf\x1c\xa0\x5f\xae\xb4\xdf\xc2\x51\xe2\x45\x74\xe4\x0f\x46\x81\xf0\x41\xd2\xab\xc1\x1f\xdc\xa2\xa6\x59\x1a\xd0\x9b\x59\x5a\xdb\x05\x66\x18\xda\x0e\x21\x51\xd6\xf9\xda\xfc\x1b\x1a\x84\x9a\xd4\x6a\x96\x0a\x9c\xba\xcd\x80\x28\x29\xc8\xf9\x0b\x98\x63\xd0\x91\xb2\x1c\x93\xbe\x7a\x1a\x44\xde\x72\x5b\xd7\x13\x6d\x61\x7a\x36\x3a\x2e\xdd\xdf\xb7\x3d\xe1\xf8\xc8\x0b\x88\xd8\xf7\xfd\xbb\x90\x13\x15\x02\x6c\x85\xc1\x9f\x12\x40\xdf\x21\x2a\x18\x98\x44\x9c\xa8\x51\x13\x51\x23\x4e\x54\x6d\x43\x68\x98\x1d\x98\xa3\x78\x7a\xe5\xc6\xb2\xb0\xef\x07\x85\x05\x5d\x37\x66\x29\xab\x98\x37\xf2\x07\x1f\xd1\xef\xfa\x13\xbc\xb8\x86\xa6\xe9\x32\x5e\x76\xa7\x53\xb3\x8f\x04\x1b\xae\x8f\xc9\xb3\xf9\xd5\x21\x18\x97\x7c\xf2\xfb\x39\xe7\x0f\xfd\x23\x34\xe5\x03\x75\x7c\xdd\x10\x10\xef\x1f\x46\xcf\xe0\x59\xc1\x9a\x1d\x20\x98\x09\xf9\xc6\x7c\xf9\xd9\x0a\x17\xd9\xe0\xde\x05\xf6\xfc\xba\x0f\xa3\xa0\xa7\x38\xb8\xb0\xed\x1d\x05\x3f\xe2\x2b\xec\x19\xbe\xef\xa8\xdd\x3d\x9c\x49\xca\xdb\xf8\x70\x35\x18\x66\x1f\xae\x9c\x07\xf2\xb4\x4f\x3c\x6b\xd4\x1b\x6a\x87\x11\xe6\xbe\xe4\x06\xe6\x63\xd6\xfd\x05\x3e\x21\xf1\x77\xa5\x23\x2c\x20\xf8\x81\x0c\x1d\x11\x3f\x8b\xfc\xbb\x02\x02\x65\x34\xb8\xff\x3f\xed\x4f\xc1\x7f\xf2\x1f\x8e\xa5\xca\xb7\xfd\x31\x3c\x7a\x06\xe1\x16\xe1\x26\xfb\x9b\x4e\x47\x58\xe9\xb0\x2e\x06\xf1\x6d\x8d\x53\xdf\x1c\x0f\x17\x5f\x4b\xb6\x23\xb2\x19\x11\xca\xff\x3a\xae\x05\xa9\x8a\xa7\x9e\x15\x5e\xdf\x71\x8d\x76\x6c\x66\x6a\x11\x06\x84\xcb\x9f\x7c\xdd\xac\x7b\x29\x1e\x8f\x1b\xbc\xf6\xae\x26\x94\x7f\x23\xc1\x40\x83\xe2\x0f\x9c\x04\xfb\xd5\x96\x83\xa7\x7d\xf3\x75\x63\xcb\xb8\x01\x9f\x53\x43\xff\xd9\x26\xe5\x36\xc4\x0c\x92\x06\xa6\xcf\xb5\x42\xf8\x4a\xba\x3e\xba\x01\x9d\xf9\xac\x53\xaf\x3f\x0f\xec\x18\xbf\xa3\x43\xf5\x9a\x21\xfa\x64\xd6\xcb\x5a\xc6\x45\x71\xf3\x68\x3c\x47\xf9\xa7\xf1\x85\x77\x98\x35\x12\x49\xf5\x24\xfd\xc0\x09\x8a\xbc\x66\xb5\xd8\xf1\x99\x76\x4b\x61\xee\xf3\xf9\x4c\x3f\x6d\xe8\xf4\x17\x2f\xfe\xad\x68\xf3\xd2\xca\x4e\x11\x61\x0d\x13\x58\xe8\x7b\x70\x32\xd7\x66\x5d\xaf\xf9\x91\xc3\x58\x46\x92\xb0\xee\x4b\xec\xc0\x63\x74\x54\x4f\x30\x6f\x4c\x7c\x88\x47\x61\x2d\x43\x16\xbc\x1c\x7b\x23\xfa\x37\xdd\x8b\x2f\x13\x0c\xbd\xc6\x82\x7c\x8a\x37\x13\xc3\x6c\x44\x63\x1a\x52\x56\x23\xdf\x01\x6e\x19\x75\x7b\x22\xcb\x6d\xbd\x79\x73\x90\xa4\x95\xb6\x6a\x41\x10\xb0\xee\x9f\xfe\x84\xb9\xfe\xdd\x08\xed\x44\x06\x4d\xaf\x8d\xb7\x44\xce\x78\xc3\xf7\x11\xa1\x5b\xde\xea\x0d\x60\x25\x22\xa9\xc7\x48\xe9\x7a\x4d\x1c\x41\x5c\x98\x86\xc9\x9c\x48\x39\x14\x7f\x31\x62\xe7\x62\xe2\x09\xef\xad\x49\x10\x37\xed\x84\x48\xcf\xe6\xbe\x4e\x3a\x9d\x57\x9c\xac\x31\x9d\xf0\x2d\x4c\x46\x69\x2f\x82\xbf\x4d\xac\xf7\xad\x18\x5f\xbd\x56\x94\xca\x57\xc9\x88\x15\xc1\x68\xf0\x0e\x8b\xa3\x2d\x78\x30\x49\x70\x64\x78\xd2\x56\x8f\x8e\x8d\x98\xb5\x9c\x6a\x3d\xfa\x41\xe6\x43\x58\xd7\x91\x0a\xdd\xaf\xae\xc5\x70\x5d\x7d\xd7\x0f\xfb\x77\x7c\x01\x18\x41\x38\xdb\x26\x98\xb0\xb1\xfa\xfa\x29\x96\x8f\x3c\x86\x97\xc0\x40\xdb\x4b\xde\xdd\x45\x29\x64\x35\xe8\x6f\xb9\x48\xab\x01\x0b\xf4\x6f\x9c\xea\x01\x1b\x8c\x03\xec\xd1\x3f\xae\x78\x1d\x61\x90\x4c\x3c\xc6\x29\x28\x96\xc8\x58\xc9\x8d\xa3\x20\x4e\x74\x9f\xb5\xc9\xbc\xb6\xcd\x18\x05\xe3\xcd\x10\x1c\xe4\x9f\xd3\x8d\x20\xdf\xf4\x47\x41\x68\xd4\xc2\xd1\x41\x43\x8f\xd0\x87\xa0\x3b\x4a\xe3\xee\x48\xa2\xbd\xef\xa8\xd0\x73\xfa\x83\xb5\x3d\x08\x2a\x26\xb5\x5c\xe1\xd4\xdd\x2b\xa9\x33\x42\xe0\xec\xca\xfa\xc9\xc4\x8b\x29\xf3\x69\x8c\xac\x2d\xc6\xf5\x69\xc5\xb5\xf9\xdd\x75\x8e\xad\x3a\x45\xf8\x15\xb9\xc9\xc6\xcd\xc1\x2a\xb9\x94\xa4\xcc\x1c\xdd\x97\xf5\x9f\x7c\xff\xc4\xc7\x92\x0e\xfb\x71\x99\xaf\x5e\x97\x87\xac\x6b\x7a\xed\x0f\x6e\x84\x54\xfd\x1b\x2e\x05\x18\x84\xa8\xe1\xed\x0f\x59\x6a\x20\x82\x19\x31\x9f\x4b\x05\xd4\xdc\x8b\xa4\x50\xc1\xcc\x78\x26\x32\x82\x89\xff\x7e\x1a\xfc\x2d\xf6\x5a\x37\x6c\xf3\x36\x82\x9e\x4e\x21\x52\xd8\x4f\x53\xce\x71\x20\x02\x1a\x5a\xf5\x7e\xe6\x48\x02\x8a\x10\x8b\x49\x06\xbd\x8f\x06\xd1\xc0\x37\x4e\x42\x81\x79\x2a\xda\x7b\x7a\x7f\xd0\x7b\xf2\x8d\xf5\xc8\x2e\xac\xea\x0f\x62\x30\x22\x9f\xa2\x80\x23\xd7\xb3\x33\x95\x54\xc8\x75\x10\x7a\xd4\x0b\x1a\x9d\xce\x27\xf8\x6e\x9f\x0c\xe3\xf6\x18\x46\xd2\xb4\x32\x10\xf6\xc6\x05\xcb\xe8\x5f\x63\x98\x25\x87\xe2\x39\xdf\x4c\x05\x14\x80\x8c\x71\xed\xf5\xa6\x83\xef\x7c\xca\x84\xbd\x7b\xab\x18\x76\xe8\x3d\x5a\x00\x1b\xc9\xe7\x38\x90\x30\x13\x8b\xc7\xf9\x74\x64\xc7\xa7\x25\x2e\x1d\xb2\x86\x50\xf4\x5a\x88\xb1\x23\xc8\x3f\x20\xbb\x51\x77\x46\xeb\x67\x4b\xe4\x90\xff\xc3\x9a\x09\x7d\x63\x2c\x25\x53\x96\xec\xe7\x0f\xae\xd9\x7f\x4e\x6b\x7c\x40\x3d\xa1\x83\xad\x3a\xd5\xb9\x28\x7c\x6f\x42\xf3\x4d\xdf\x86\xd7\xe3\x5f\xc3\xfd\xc9\xa6\x76\x36\x94\xeb\xf1\xfd\x27\xae\x09\xb6\xb5\xc3\xc2\xa4\x16\x97\x68\x1c\x30\x21\x17\xe3\xc5\x6f\xa3\x6c\x3c\x75\x65\x63\x27\x21\x30\x95\x87\x60\xb0\x3a\x0d\x26\x22\xbe\xc4\x38\xf8\x13\xf3\xa6\x74\xec\x1f\xf6\xfa\x6d\x51\x39\xba\x97\x51\x98\x46\x8b\x34\xac\x18\x3e\xf5\x17\xbf\x48\xaa\xf2\xb0\x25\x1d\x6a\x33\x3c\x59\xfc\xfb\x1e\xf8\x7f\x8d\x41\x52\x9d\x28\x32\x81\x20\x24\x3f\x3a\x9d\x2d\x7d\x22\xba\x33\x79\x98\x32\xb7\x53\xba\x81\xa9\x8a\x8d\xa4\x6f\x42\xbc\xa9\x0c\x45\xa3\xcf\x75\xd3\x81\xb2\xe7\xb6\xa2\xd9\x1a\xc4\x18\x66\xd7\xfe\xdd\x24\x98\x8a\xd1\x92\x9a\x87\x34\xb8\xb6\x1e\x7a\x91\x35\xa6\xa8\x7f\x48\xd5\xbb\xd6\x70\x48\x00\xa9\x3c\xed\xe6\xa3\x92\x15\x37\x48\x83\xce\xd8\xf7\xef\x0e\xe0\x26\x02\x43\xc1\xa5\x46\xb4\x14\x9a\xa2\xcd\x2f\xbd\x9d\xe0\xd3\xee\x83\xa9\xeb\x55\x1f\x41\x8f\xdc\xf7\xc4\xfc\x41\x1a\x4c\xeb\x6e\xf9\x69\xa7\xe3\x5a\x8e\x43\x05\x6e\x22\xaf\x60\x3e\x51\x94\xe2\xc4\xbd\x6e\x2a\xe7\x26\x06\x4a\xd7\x90\x06\x29\xfa\x01\xe0\x60\x4c\x82\x83\x9e\xec\xe3\xe1\x14\x65\x19\x15\x72\x1f\x58\xa6\x20\xac\xfc\x6b\x4d\x43\x15\x3c\x68\xaa\xd5\x3e\x93\x60\x2a\x7b\x25\x62\x13\x4d\xc0\xdd\xea\xce\x7c\xec\x7d\xcd\x67\x6f\xdd\x18\x6a\xea\xdf\xa9\x49\x20\xeb\x1e\xf0\x0a\xb1\xd0\x44\x25\xae\xa7\xc1\x30\x9b\xac\x71\x0d\x33\x73\xd9\xb6\xee\x38\xea\x05\x0e\x79\x3a\xa5\x63\x97\x69\xc5\xc1\x58\x57\x25\x0e\x17\x94\x05\x25\x97\xe4\xc6\xda\xd4\xdd\x9c\x25\xf0\x4c\x90\xc7\x7c\x5b\xb6\x3c\xa0\xad\xbc\xf3\x9b\x06\x34\x40\x54\xb4\x71\xf1\x45\xb2\x00\xf1\x69\x28\x9f\x33\x1f\xa3\xf4\x26\xb5\x8e\x52\xc3\x9a\x08\x76\x26\x22\xcf\xdb\xfd\xd2\x05\xfe\xf2\x47\x59\xf7\x1f\x39\xd3\x51\x71\x52\xa2\xfc\xf8\x73\xe8\x85\xc1\x56\x8f\xc2\xd1\xc7\xef\x87\xc1\xd6\x81\x22\xf9\x1b\x14\x9b\x98\x4f\xc5\x59\x02\x8e\x06\xf2\x24\x81\x67\xbc\xad\x1e\x4a\xbd\xce\xf3\x2a\xea\xf0\xdc\xf0\xa0\x8d\x7a\xce\x06\x18\xf1\x27\x11\x48\xe4\x4d\x22\x9e\xc3\x96\xfa\xaa\xcf\x57\x22\xda\xc1\x70\x7b\x91\xc5\x6c\x9c\x64\x2c\x36\x79\xe9\xe5\xe5\x87\x93\xa3\x97\x1f\x2f\x8f\x4f\x7e\xfe\x78\x7a\xfa\xe6\xec\xf2\xaf\x6f\x4e\x5f\x1c\xbd\xb9\xfc\xf1\xf4\xf4\xef\x97\x97\xb6\x1a\x7b\x14\x6c\x86\x46\x6d\x4f\x52\x1e\x27\x25\x9f\x5a\xf1\xfd\xfd\xd6\xa8\x5b\x2e\xe6\xf3\xbc\xa8\x4a\x38\x50\xc9\xfa\x7a\x03\xad\xa9\x1e\x75\x93\x8c\x1f\x63\xbd\xd0\x1f\x7c\x32\x15\x5d\xf2\x31\x93\x3c\x7b\x99\xcf\x66\x49\x05\x35\x7c\xc8\xf3\x0a\x54\x94\xe2\x15\xd5\xef\xbe\x41\xb3\x50\xa9\x18\xb7\x55\x11\xda\x75\x70\xbd\x1e\xbc\x49\x1e\xaa\x5c\xbe\x7c\x12\xd1\xd0\x2a\xaa\x95\xde\xeb\x26\xfd\xf4\x3f\x85\x66\x93\xc6\xfe\x1d\x44\x4f\xe2\xf3\x22\xc4\x40\x4a\xd7\x6c\x15\x44\xf8\x53\x3e\x63\x84\x01\x96\x40\x46\x81\x9f\x82\x45\x20\x8c\x3a\x92\x62\x45\x7c\xca\xc2\x2f\x73\x0e\xc3\x08\x43\x6a\x92\xc5\xec\x36\xe8\x0d\x44\x3d\x63\x23\xcb\x0a\x72\x3e\xc2\x34\x2b\x84\x3a\xa4\xd8\x27\x73\x48\xb2\xbc\x53\x4c\x18\x23\x34\x3a\xa6\x73\x34\x63\xfc\xad\x05\x6b\x81\x8c\x61\x42\x0a\xdf\xa6\x81\x29\x24\xb8\xb7\x00\x9a\x2a\x8e\xd8\x89\xf5\xbb\xba\x1a\x48\xb5\x17\xa8\x56\xd2\x9e\x4d\xf5\x80\x48\x59\x94\x2d\xcd\x71\x32\x87\x6f\x84\x51\xd8\x83\xb0\x3b\x2f\xf2\x2a\x07\x65\x8f\x18\x66\x6f\x2b\xbc\xbf\xdf\x0a\xbb\x49\x89\x31\xa9\xa4\x56\xdd\x50\x08\xff\x43\x2f\xb0\x26\x59\x25\x54\x5a\x4e\xde\xca\xe1\x41\xbf\x67\xc5\xfe\x0f\xcd\xd7\x67\x38\x0a\x52\x11\x33\x10\xd1\xf2\x26\xca\xa4\xf6\xe0\x40\xa6\x5d\xe9\xb4\x6f\xe4\xbe\xf0\xc4\xb2\x5a\x9d\xd8\x4a\x6a\x7b\x87\x06\x75\xba\x17\x05\x67\xe2\xd1\x2b\x78\x90\xf5\x9a\xad\x68\x08\x43\x0a\x21\xd8\x8d\xd9\x16\x9a\x5f\x14\x6f\x24\x44\x44\x35\x1a\x99\x6f\x84\x1b\xb7\x89\xc6\xcb\x12\x41\x48\x4d\xd6\x1a\xf9\x7d\x2f\x72\x26\xa7\x19\xf3\x3d\xe8\xd1\xa8\x76\x37\x1a\xd5\x5f\x31\x8c\x5c\x23\x65\x7f\xd0\x1c\x2c\xa7\xd9\x60\xb8\x16\x21\xa8\x66\x6a\x1c\xd9\x2f\x04\x0e\xa2\xcd\x2f\x04\x0e\xa2\xcd\x2f\x04\x0e\xa2\xf6\x17\x02\xe1\xde\xd7\x12\x08\xa3\xc6\x17\x02\x47\xcd\x2f\x04\xba\xc7\x37\x3a\xcc\xac\x37\x02\x47\xad\x6f\x04\x8e\xcc\x37\x02\x07\xfa\xa1\x35\x1d\x8e\x31\x12\x2c\x26\xc4\xbf\x83\x08\xb8\x0c\x3e\xf8\xd4\x14\x8e\xef\xd3\x44\x2e\x31\xbe\xb9\xcb\xf0\xb6\x4f\x06\x31\x5e\x48\xb6\xad\x11\x58\x1c\xf0\xc2\xfd\x81\x8e\x8e\xd9\xf4\xfa\x75\xe8\x4f\x82\x6f\xa5\x05\xa9\x13\xc4\x36\x1c\xc9\x7d\xf3\x97\x89\x8c\x9c\xc4\x65\x1f\x2e\x65\x8c\xc4\xde\x3a\x1e\xf5\x27\xc1\xf7\x03\x76\x1f\xfc\xc5\x54\x74\x8f\x54\xb2\xf5\x0e\x42\xa4\x6a\x0c\xf9\x6a\x39\x78\x42\x23\x2e\xb5\xdc\x7f\xef\x53\x6b\x55\x04\x11\x5f\x42\x95\xfa\x55\x7b\x1e\x53\xe8\xb1\xa6\x4e\x7d\x4f\xb1\x3e\x5f\x16\x9e\x8e\x9c\x7a\xa7\x9b\x6a\x4b\x9c\xda\x7e\xd0\xb5\x99\x75\x24\x2d\x75\x48\xeb\x8b\x16\x4d\xb2\xc9\x99\xd4\x13\x79\x5a\x4d\x0c\x18\xc4\x9c\x6c\xc3\xec\xc0\x89\x8e\xce\x78\xf2\x0f\x76\xda\x84\xa7\x1d\x38\xc1\xd6\xaf\x20\xf1\x1b\x3b\xf1\x1a\x12\xbf\x1b\xc4\x96\x29\x2d\xe6\xa5\x3c\xef\xc9\x93\x16\x6d\xdf\xc1\xd3\x9e\x50\x03\x84\x87\x61\x5f\xf6\x43\xa9\xff\x46\x9c\x4a\x13\x41\xa4\x81\x2d\x16\x86\x52\xf5\x19\xd7\x2f\x06\xc6\xda\x5b\x47\x5f\x49\x4f\xf4\x0e\x03\xd4\xff\x0b\x0d\x69\x0c\x77\xcf\xb5\xc3\x8a\x8e\x0a\xa7\x0d\x22\x54\x24\x3e\x28\xfc\x9d\xb8\x0c\x7c\xa8\xbc\xb1\xd0\x7e\x36\x62\xf9\x9d\x4d\xbd\x6f\x94\x28\xab\xe6\xfd\xa1\xfe\xd9\x3f\xbf\x10\x2c\x7e\xe4\xd7\xfb\x17\x59\xaa\xf0\x3b\x4b\xd1\xd2\x0f\x6d\xc5\x0b\x15\x9c\xfb\xa5\xac\x19\xd0\x4e\x66\x73\xa4\x25\x54\xda\x0f\xbb\x76\xc2\xba\xd1\xdd\x29\xbc\x96\x3d\x50\x32\x93\x10\x53\x2c\xa3\x74\x11\x8e\xd2\xc0\x41\x8a\x56\xda\x8d\xd4\x14\x78\x24\x66\x46\xe9\x56\xf7\x08\x2b\x57\x3b\x54\x20\x3e\x4e\x20\x01\x4b\xaa\x12\xbc\x34\x50\xc8\xf1\x0f\x5d\x56\x86\x64\x16\x82\x5f\xdd\xbd\xc2\x4a\x36\xdd\x28\xb4\xec\x64\x78\x0f\xa8\x44\xe3\x66\x5a\xc9\x50\x75\xbf\x07\x05\x6e\x7b\x37\x68\x31\xac\x2d\xdd\x74\xcb\xb0\x04\xdc\xa3\x2b\x5b\x9e\xa8\xd7\x32\x08\x1b\x03\xf5\x88\x71\xef\x89\x7b\xf1\xe7\xe8\xea\x17\x18\x0b\xe9\x36\x79\xa8\x6a\xda\x12\x03\x48\x84\x0b\x6c\xe8\x11\xde\x3b\xc7\xcf\x47\xf7\xf7\xe0\xec\xed\x37\x79\x8d\x8c\x06\xa3\x47\xfb\x79\x8c\x1e\xef\xe7\x61\x05\x59\x91\x2f\xd4\x3d\xaf\x9b\x75\x69\xdc\x4d\xaa\x8f\x4c\x4f\xa1\x1a\x8d\x7b\xf2\xf5\xdc\xe7\x41\xf4\xaf\x70\x8f\x19\x3d\x6f\x2a\xa0\x3a\xe6\xd0\x6b\xf7\xc0\xa7\xbc\x27\x8d\xb5\x6d\x08\xc6\x34\x32\xcd\x27\x5e\x3a\x33\xa9\x29\x68\xa0\x8e\x22\x59\x27\xb0\xc5\x41\x46\xd7\x9a\x09\x4b\x5b\x07\x19\xdd\x62\x8c\xb6\x16\x93\xe0\x78\xd2\x2d\x85\x6f\xf4\x60\x1c\xfc\x38\xf1\xc6\x94\xd1\x89\x3f\x08\xf9\xc6\x17\xe1\x93\x39\x0d\x57\x7f\x83\x51\x1f\xee\xb1\x23\x2f\xf2\x31\x1e\xe6\x81\x7c\xe2\xa7\xe6\x44\xd5\x13\xe6\x5a\xd3\x20\x32\x3c\x9e\xa7\xb6\x99\x04\x5a\x44\x1b\xca\x6c\x76\x5b\x0d\xa4\xd3\x84\x7e\x9c\xf2\x8d\x87\x7a\x2b\xdf\xbf\xb3\x8b\x38\xaf\xe8\xbd\x15\xc2\xe5\x5b\x56\x4c\x18\x3e\xdd\xf2\xd2\xae\x74\xbd\xe6\x15\x34\xf9\x03\x4f\xfd\x81\xdb\x05\x78\x96\xa9\x6e\xa6\x74\x2d\xde\x05\xc4\x5b\xde\x6b\x78\x61\xe8\xd5\xd8\x8b\xe8\x35\x9d\x1a\x9a\xd0\x28\x98\xa2\x02\x2e\x0a\x8e\xc6\x3a\x9c\xbc\xe8\xe5\xa1\xfa\x15\x44\xfd\x91\xcb\x42\xa3\xc1\x28\x58\xf2\x51\x99\xf0\xad\xa9\x16\x37\x3a\x5c\x0f\x62\x6d\x47\x3d\xcc\x62\x94\x81\x63\x33\x3a\xc8\x48\x87\x48\x8e\xc1\x5e\x89\xf1\x7d\xee\x35\x28\xba\x94\xfd\xc3\x58\x4f\xc2\xe8\x5a\x1e\xf8\xa4\x3b\x73\x32\xf6\xb6\x64\x2c\x73\xd3\xa4\x51\x09\x3e\xf5\xd7\x02\xe5\xa6\x5c\x7b\x32\xd0\x79\xd7\xb6\x06\x60\x98\x0d\xc6\xd7\xc2\x33\xba\x76\x5a\xd0\x8a\x29\xb5\xaf\xeb\x58\x17\x9d\x0e\xd8\xa1\x15\x2b\x23\x6a\xaa\xfa\xb6\xdc\xa6\x99\x68\x40\x34\x34\x00\x1b\x42\x1d\x13\xa2\xd3\x11\x19\xe6\xaa\x1a\x5f\xeb\x88\xda\xd8\x78\xd4\xe9\x6c\xc1\xaa\x94\x1b\x9b\x08\xd7\xc4\xcf\xd4\x6a\x17\xa7\x8c\xcb\x21\x18\x45\x02\xff\xc1\x28\x92\x7f\xc1\xa0\x92\x87\x4f\xfb\x3d\x7f\x10\x1b\xf1\xff\x8c\xc7\x79\x82\x78\xb0\x98\xc0\x45\xf3\xf9\x69\x7c\x11\xc4\xda\xcd\x1c\x95\xd9\xa3\x4e\xe7\x6f\x91\x17\xd2\x1f\xc0\x42\x4f\xbd\x17\x13\xf6\x43\xc7\x7b\x0c\xf7\xcf\xcb\x44\x2c\x92\x0f\x79\x5e\x05\xf1\x7a\x7c\xad\x4f\xf6\xc2\xf8\xc1\xd2\x04\x01\x1f\xa9\x97\xd4\x5d\xf1\xd7\x03\xab\x8e\x05\xea\x89\x82\xda\x5b\x7f\x0d\x95\x40\x84\x46\xeb\x6d\x99\xd1\xb5\x74\x3c\x85\x3f\x46\x25\x23\xe8\x3e\x9a\xac\xae\x07\xc6\x98\x4c\xae\xf5\x03\x73\xa8\x94\x38\xd8\x32\x49\xd1\xe9\xfc\xe0\x7c\x1f\xb8\x00\xde\xf7\x56\xc2\xfd\xfd\x70\x9b\x00\x47\xd9\x83\xbe\xec\xcd\xf3\x24\xab\xf6\xa4\x5a\x98\x40\x58\xf1\x50\x7b\x88\x99\x4c\x7c\x2a\x66\xd5\xe8\xfe\xde\x1b\x05\xe1\xa1\x3b\x2c\xae\x93\x88\xf4\x5f\x06\x2e\x85\x12\xe3\x28\xd8\xf2\xb6\x46\xd8\x8d\x91\x81\xd4\xd6\xa8\x3b\x0d\xcb\xa3\xaa\x2a\x92\xd1\xa2\x62\xde\x70\x3b\x0e\xab\x70\x0f\x10\x2d\xf2\xbc\xe2\x92\x3c\x1a\xfc\x8c\x74\x48\xa1\x81\xdc\x49\xa0\x81\x81\x1f\x5a\x2f\x03\x19\x26\x50\x6c\x89\xb3\xbb\x47\x47\x87\x77\x62\x2e\xf7\xb7\x7a\xeb\x3e\x32\x18\x6b\x19\x24\xd7\xfa\x24\x2b\x8d\x5b\x1a\x5f\x11\xe3\xd8\xa8\x93\xee\xd8\x1e\xfd\xf6\x33\xaf\xa8\x73\xca\x17\x42\x7d\x1e\x45\xd7\xde\xc4\x1f\x4c\x81\xaf\x79\xa1\xbf\x5e\x8f\xae\xbd\x11\x9d\x50\x88\x7e\x06\x97\xe8\x2d\xc8\x04\xd3\x6b\x7c\x9d\xe5\xeb\x51\xb9\xde\x84\xca\xb5\x46\xe5\xdd\x95\xf9\x18\xb5\x89\x98\x8a\x6e\x06\x65\xf4\x7c\xb9\xba\xb6\xad\x16\x9f\x3e\x0b\x8b\x09\x4c\x90\x52\x38\x46\x18\x46\x40\x2a\xeb\xfc\xe9\xc5\xa1\xf9\x81\xc6\x08\xd8\xc2\x9d\x3c\x88\xf6\xff\x14\xd2\x6b\xb6\x12\xaf\x9c\x8a\xcd\x81\x1f\xf8\x76\x63\xaa\x4e\x3f\x21\xb5\xcf\x34\x23\xf7\xc0\x12\xad\xd7\xc3\x6c\x19\x59\x4c\xc1\x7a\x5f\x43\xfa\x90\x4f\x27\x1e\x88\x15\x2a\xc0\xb8\x08\xee\x3d\x10\x8c\x76\xbd\x1e\xdc\xda\xd5\x98\x6f\x74\x78\x00\xfd\xd4\xa7\x00\xfd\xd4\xf7\xd7\x83\xd5\x23\x1a\x85\x68\xbd\xb6\xd1\x68\x43\xbb\xc3\xec\xb7\xb0\x66\x25\x2a\x2d\xda\x9a\x9e\xf9\x11\x26\x4d\x11\xbc\x5d\x84\xb3\x43\xbf\x6f\x14\x59\xef\x1b\x8d\xd0\x7a\x3f\x0a\xc2\x41\x64\xf9\xd4\x44\xd6\x9b\x7c\x10\x96\xeb\xcb\x82\x15\x2b\xf4\x99\xca\x8b\xa3\x34\xf5\x44\xa3\xe7\xbc\x99\x60\xb8\xbd\xfb\xb7\xb3\xd3\x77\x5d\xd4\xec\x24\xe3\x95\x07\x83\x35\xf2\x77\x77\x2e\xce\xe1\x00\xae\xb0\xb8\xd8\x41\x17\x9a\x51\xd0\x1b\x8c\x9e\x45\xd2\x85\x66\xb4\xbb\xab\x4c\xa8\xcf\x47\x17\x20\xe9\xe3\x4e\x19\x77\xc7\x79\x31\xc3\x48\x10\x79\x31\x93\x32\xe1\x4f\xb1\x17\x23\xcb\x70\xdf\xe3\xf9\x81\x0b\x6e\xab\x11\xcf\x7e\x39\x82\x0b\xa1\xf5\x7a\x6d\x3d\x6b\x64\x3f\x7b\x14\x3a\x2f\xa3\x3a\xcf\x1e\x99\xef\x15\x8d\x3a\x9d\x1f\x79\x81\xad\xad\x48\xbf\x25\x34\xa2\x5b\x07\x7c\xa8\x5e\x85\xc1\xdb\xab\xc1\x30\xfb\xab\x3b\x60\x26\xaf\x01\xcb\xff\x6f\xcc\xd8\x7a\xd1\xc4\xfb\xe1\x7b\x1a\x1a\xa1\x0b\x64\x11\x33\xe4\xde\xd8\x0e\xb9\x37\xf8\x31\x34\xd7\xb4\xf7\x4b\xc7\x3b\xb8\x37\xe2\xc3\x77\x3a\xde\x9b\x2b\xcf\xa7\xc7\x57\x1e\x9f\x8f\xaf\x6d\x94\xac\xb0\x81\x4f\x1e\x1f\xe8\x4f\xdf\x3f\x5d\x5f\x9b\xf5\x3c\x79\xdc\xca\x7f\x62\xae\xfc\x27\x17\xea\xe9\xee\xad\xc9\xb5\x37\xf2\x5d\x0b\xa7\x5e\x4f\xc7\x6f\x10\xac\x46\xd8\x28\x81\x05\x75\x7a\x1d\xdc\x9d\xdc\xf0\xaa\xfa\xe7\xef\x22\xfa\x3e\xa6\x3f\xc5\xf4\x36\xa4\x55\x48\xff\x11\x53\x73\xf5\x5d\x71\x19\xe3\x97\xd8\x5f\xd3\xe3\x90\x9e\x84\x34\x89\xe9\x2c\xa2\xc7\x57\xf4\x4e\xc8\x23\xfd\xad\x83\xf5\x05\x5f\x6a\x9e\x59\x4c\xc6\xaa\x18\x27\x59\x0c\x67\x87\x17\xab\x1f\xf3\xb2\x7a\x2d\x5e\x5d\x94\xa8\x7d\xbe\xf2\x32\xef\x6e\x4d\x43\x7a\x97\xdf\xb0\xa2\x48\x62\xf6\x63\x9e\x5f\x9f\x29\x53\x47\x2a\x93\xd1\x00\x08\x92\x4a\x56\xc9\xc8\x4e\xa8\x89\x28\x44\x7a\x34\x65\xf1\x22\x15\xcf\x67\x63\x5a\xe4\x3e\xa7\xf1\x81\x8d\xfb\xed\x6f\x6d\x70\x74\x4d\x3c\x5f\xac\x00\xf9\xbe\xd9\xb5\x30\x98\x46\x5e\xe8\xd7\x02\xfc\x00\x9b\x35\x14\xfe\x6b\xda\xd2\x79\xab\x36\xa9\x05\x3a\x1c\x79\xa1\x8f\xd6\xc7\x35\x2c\xca\x57\x39\xc7\xbb\x60\xe5\xd4\xee\x69\x73\x62\x9e\x57\x8a\x50\x02\xc2\xa2\xd3\x84\xc9\x9e\x63\xe7\x50\xb6\xf2\xd7\xbe\x77\xd7\x86\x71\x15\xd1\xd1\x82\x57\xc1\x25\x92\x7e\x8f\xde\xb0\xa2\xe4\x9b\xc4\x70\xfb\xe0\xbb\xee\xc1\xd3\xee\xc1\x70\x9b\x0e\x33\x14\x23\x59\xf1\x3e\x8c\xae\xc3\x09\x7b\x17\xce\x58\x7f\xb8\x8d\x02\x55\x9c\xcf\x86\xdb\x6b\x7f\xc0\x6e\xe1\xe6\xb3\x7b\x79\x79\x76\xf2\xf2\xc3\xc9\xc7\xcb\xd7\xef\x3e\x9e\x7c\x78\x77\xf4\xe6\xec\xf2\xf8\xf4\xf2\xdd\xe9\xc7\xcb\x4f\x67\x27\x97\xa7\x1f\x2e\x3f\x9f\x7e\xba\xfc\xe5\xf5\x9b\x37\x97\x2f\x4e\x2e\x5f\xbd\xfe\x70\x72\x1c\xa4\xd7\xaa\x34\xba\x5b\xbe\xcf\x8b\x2a\x4c\x83\x6b\x9d\xce\xf1\x3f\x3e\x7d\x0b\xf2\xb3\xb3\x87\x08\x25\xa8\x75\x94\x11\x87\x3b\x2d\xa7\xc9\xdc\x70\x20\x27\x70\xd3\x31\x58\x5d\x56\xa1\xd9\x43\xbb\x0e\x5f\x08\xd6\xee\xe1\xf8\xfb\xef\x7d\xf7\xb4\xf9\xe4\xbb\xef\xe9\x29\xe8\x9b\xbb\xd7\x6c\x55\x82\x83\xc5\x60\x0d\x53\x0d\x7c\x77\x5a\x67\x99\x56\x84\x0e\x86\x99\x22\x43\xba\x28\xa7\x67\xab\x2c\x72\x18\xd7\x83\x6e\x56\x07\xdf\xeb\xc0\x2c\xf5\xb0\xa8\x18\x28\xc6\x62\xb6\xbe\xcd\xf0\x04\xa7\x93\x78\x48\x9d\x9f\xbb\x05\x3f\x8a\x6d\x25\xea\x48\x30\xa2\x5b\x3d\xce\xb9\x54\xbd\xb5\xf3\xca\xef\xad\xf6\x00\xaa\xd5\x84\x13\x87\x18\x75\xa7\x79\x54\x35\x4d\xa5\x2d\x38\x7a\x38\x8d\x7c\x63\xb4\x11\x36\x89\xa1\x87\x9e\x2d\x25\x4a\x44\x04\x36\x5b\x07\xe6\xa9\xa7\xb1\x06\xe1\x1a\x66\x1e\x88\x7c\x78\xa2\x6f\xeb\x40\xd3\x46\x19\xb1\x8c\x80\xa7\xc5\xc8\x0d\x4b\xbe\xbb\xd6\x40\xac\x65\x64\x4f\x15\xd1\x13\xdc\xaa\xe8\x1f\xd8\xa3\x1c\xfa\x8a\x96\x71\x04\xcf\x16\xa3\xaa\x60\xec\x75\x56\xe5\xba\x93\xee\xf6\xaf\x48\x1e\x35\x8f\xab\x5e\xdb\xf7\xf7\x6a\x59\x36\x2e\x5c\xd7\x25\xef\x7b\x6b\x56\x60\x73\x5b\x07\x34\x36\x66\x9a\x60\x74\x81\xc1\xe8\x06\xc3\x6c\x9b\x6e\xef\x2c\x4a\x46\xb8\xc4\x16\x55\x3b\x83\x61\x36\xcc\x92\x31\xf1\xe6\x45\x1e\xb1\xb2\xec\xb2\xec\xa6\xfb\xee\xf4\xf8\xe4\xf2\xe4\xdd\xcf\x24\x08\x02\xb2\x33\x2f\xf2\x78\x01\xdd\xda\xf1\xc9\xdd\x30\x23\x64\x96\x73\x66\xdd\x15\x0d\x91\x80\x14\xec\xcb\x22\x29\x98\xb7\xd3\xdd\x8f\xae\xca\x7d\xc9\xce\x8b\xae\x2e\xdb\x9d\x25\x59\xf7\xaa\xdc\xf1\x07\xc3\x6c\x4d\x40\xbb\xf4\x95\x75\xc5\xec\x86\xa5\xf9\x1c\xfc\xa8\x65\x45\xd0\x9f\xfd\x3f\xff\x99\xfc\x67\x9a\x44\x10\x2f\x11\xe3\x32\xde\xf4\xba\x07\x3f\x74\x0f\x86\x19\xf9\x33\xd9\x80\x0d\xcf\x07\x98\x97\xf9\x7c\x55\x24\x93\x69\x45\xbc\xc8\x27\xaf\xc2\x88\x8d\xf2\xfc\x9a\x92\xd7\x59\xd4\x25\x61\x16\x93\xa4\x2a\x49\x38\x1e\x27\x69\xc2\x67\x64\x57\x15\xfc\x38\x4d\x4a\x52\xe6\x8b\x22\x62\x24\xca\x63\x46\x92\x92\x08\x54\x62\xb2\xc8\x20\xd0\xe2\x94\x91\xb7\xaf\x3f\xca\x64\x32\xce\x17\xbc\x42\x08\xdc\x08\x75\xbc\x79\xfd\xf2\xe4\xdd\xd9\x09\x19\x27\x29\x93\x01\x1d\xf9\xe1\x98\xc4\x49\x01\x62\xf7\x8a\xe4\x63\x52\x19\x2d\xf1\x99\x07\x38\xec\xf3\xe1\xb3\xc6\x13\xa4\x4d\x78\x16\xf4\x9a\xa6\xe8\x6b\xd4\x62\x2a\x84\x91\x12\x6c\x9f\x43\xfd\xf6\xd8\x5b\x56\x96\xe1\x04\xec\x2e\x33\x96\xa2\x54\x34\x17\xef\x61\xe1\x1f\x4b\x5f\xa2\xcd\xe4\xe6\xbe\xb4\x05\x0a\x83\xda\xda\xc9\xf2\xa5\xe7\x0f\xe6\xde\x56\x8f\x86\xfe\x00\xeb\x13\xd6\x38\x23\xff\x0e\xe7\x78\xc9\xaa\x8f\x78\x59\xe3\x55\xb4\xe7\xd3\xd1\x60\xbd\xa6\x8b\xe0\x38\xac\x58\x17\xcb\x37\x55\x6b\x22\x23\x16\x86\x2e\xb1\xb7\x58\x0f\xc6\x16\x2b\x94\xc8\x1e\x1a\xad\x8d\x29\xc7\xaa\xef\xcd\x83\x90\x3a\x48\xf8\x6b\x7e\x02\xb7\xb8\xcc\x97\xc0\x80\xc1\x07\xed\xa6\x26\x12\x51\xca\xc2\x42\xe6\x7f\xf1\xd7\x83\xeb\x3a\x8a\x9c\xf9\xa5\x75\x2a\x8d\xf3\x22\x62\xaf\x8a\x70\xc6\x3e\x58\x5b\x90\x7f\x87\x86\x91\x22\x74\x0b\x0e\x60\x77\xce\x0a\x7e\x3e\x82\x17\xc1\x6f\x65\x22\xef\x3b\x1d\x66\x2b\xf9\xad\x71\xa5\xbf\xc9\x34\x13\xc3\x81\x3b\x4f\xf4\x4c\x88\xf2\xac\xcc\x53\x71\x90\x39\x52\x85\x79\x7b\xe9\x51\x96\xcc\xe0\xcc\x0d\xd8\x0e\x9a\xa7\x92\x28\xc1\x17\x36\x2b\x2b\xbb\x48\xa7\x23\xaa\xef\x32\x60\x6d\xc3\x6d\x58\x51\xa3\x22\x5f\x96\xac\x20\x71\xce\xca\x6c\xa7\x22\xc2\xea\x8c\x34\xd6\xd1\x25\x6f\xc3\x6b\x46\xca\x45\xc1\x48\x35\x0d\x2b\xb2\xca\x17\x10\xff\x94\x84\x64\x9e\xa7\xab\x71\x92\xa6\x7c\x5d\x61\xdc\x53\x51\x75\xd9\x25\xd3\xaa\x9a\x97\xfd\xfd\xfd\xf1\xa8\x3b\x63\xfb\x28\xeb\x49\xf8\x72\xb8\xed\xb7\x74\xe7\xe8\x2b\x71\x6e\xa2\xd4\xbf\x0b\xe5\xb5\x7b\xfb\x3f\xcc\xe4\x20\xb4\xf9\x8f\x2d\xf9\x12\xf1\x1f\xb9\xa4\x96\xb8\x9e\xd6\x3a\xea\xf0\x8b\xe0\xf6\xeb\x56\xa5\x00\xdf\x7b\x81\x6f\x2a\xbe\x0c\xb6\x0e\xe8\xb1\x78\x36\x2d\xd8\x3b\xa0\xaf\x82\x6f\xe9\x5f\x83\x5e\xd3\x72\x21\xcd\xfc\xe4\x79\xf0\x57\xbe\x8c\xcc\x65\x52\x47\xa6\x6d\x4d\x85\xfe\x5d\xef\x79\x78\x7f\x7f\xf0\xe4\xdb\x67\xe1\xa1\x3b\xb0\x76\x29\x52\x85\xd7\xac\x84\x21\x2a\x93\x2a\xb9\xe1\xdc\xba\x22\x23\x56\x2d\x19\xcb\x48\x0f\x36\x8a\x83\x27\xdf\x52\xc2\x8b\x25\xd9\x84\x8c\x79\x49\x2e\x46\x96\x32\x5e\x6f\x35\x0d\x33\x0e\x43\xc6\xf3\x92\xef\x15\x59\x5e\x91\x45\x26\xa6\x0a\x5f\x77\x7e\xff\x55\xd0\x7b\x16\x1e\x42\x68\x99\x71\x9a\xe7\x85\x77\x70\xf2\x74\x3f\xf4\xfb\xdf\xa2\x69\xe8\x8f\xf8\x76\x9b\xc5\x9e\xe9\xeb\xe0\xc7\x2e\xaf\xe1\xc9\x00\xff\x1e\x74\xf3\x6c\x86\x20\x81\x56\x82\x5a\x7c\xfa\xd8\xdf\xcc\xa4\xff\x1a\x84\xbb\xaf\x40\x84\x3e\x46\x76\x7d\xf8\xba\x3b\xcf\xcb\x4a\xb4\x2c\xa2\x41\x79\xc6\xf8\xf9\x2e\x27\x6f\x28\x00\xdc\x1c\x76\x7f\x5e\xd0\xe5\xca\xc7\x41\x38\x78\x79\x7f\xcf\x2b\xed\xd1\x86\xd2\x0d\x6c\xf8\x24\x58\x99\x92\x69\xe8\x35\x77\xc7\x5f\xd7\x39\xf4\x6f\xde\x89\x3f\xe0\x73\xce\xb8\xc2\xf9\x9b\x73\x9f\x89\x4a\xaa\x10\x63\xcb\xf0\xe3\x8c\x8a\xed\x26\x74\x56\x7b\x07\xcf\x9f\x3f\x3f\xa0\x2c\x08\xcf\xe3\x0b\xcb\x16\x90\x75\x3a\xbd\x67\x7f\xc7\xf7\xd6\x78\x66\x30\xa2\xe1\x79\x74\x11\x30\x1a\x05\xf8\x94\x3f\x51\x37\x6e\xfa\xe9\x08\x71\x95\x75\xde\xbb\x90\xf2\x9d\x16\x0c\xc5\x09\xca\x7a\x0e\xc2\xd0\x58\xf0\x32\x26\x02\x46\x3f\xe6\xf9\x1c\xa3\xe9\x45\xe2\x11\xdb\xf3\xde\x45\x10\x89\xde\x60\x4f\x7a\xf0\x8c\xb2\xe8\x70\xfc\x8c\x89\x2e\xce\x82\x27\x7f\xf6\xe2\xdd\x03\x7f\xef\x80\x66\x41\x78\x3e\xbb\xa0\x37\xc1\x6c\xf7\x80\x16\x41\x78\x7e\x63\x37\x98\x75\x3a\xbd\xe7\x7f\xf7\x32\x1a\xf9\xbe\x4a\x2c\x30\xb1\xa0\x99\x7f\xe8\x01\x1d\x0a\xca\x4b\xc2\x9b\x4d\x37\x7e\x1f\xd3\x32\xca\xab\x86\xb4\x99\x36\x19\xab\x57\x12\x09\x5a\x9a\x75\x38\xb4\x54\xc6\x29\x8d\xb1\x4b\xfe\xee\xf8\xfb\xe7\x45\xf5\x3a\x8b\xd9\xed\xde\x48\xff\xb6\xec\x1c\x0e\xa3\x7e\xd8\x4d\xe2\xbd\x51\x37\x89\x81\x63\xbd\x0b\xce\x2f\xe8\x29\xff\xe7\x7d\x70\x40\x7f\x42\xd6\xf5\x21\x78\x4a\xcf\xe0\x55\x51\xfe\xcf\xa7\x60\xeb\xc0\xbc\xef\xf9\x99\x8f\x92\x24\xf5\x28\x78\xe3\x9d\xea\x60\xc9\xd6\x13\xc9\xfa\xea\xd3\x7f\xcb\x81\x24\x21\x46\x18\x86\x0a\x2e\x08\x83\x10\xf2\xa8\x81\x70\x2d\x70\x00\xfd\x9b\xf7\x4e\xc5\xbb\x40\x15\x27\x36\x6b\x4c\xb5\x5f\x38\x52\x80\xe9\xcf\x22\x52\xcc\xd6\x47\x5f\xf3\x87\x37\xde\x3b\xdf\xff\xc8\x17\xe2\xd8\xfb\x87\xf5\xd4\x9d\x85\x7e\xa7\x33\xf1\x7e\xa1\x06\x7e\x7b\xa1\xfd\x32\xc8\x3f\x90\xe0\x9c\x2e\x83\x4f\x9d\x8e\xc7\x5b\xa4\x53\xcf\xf7\x07\x67\xc1\x96\x7c\x01\xe4\x03\x30\x9a\x9f\xf9\x0a\xe3\x64\xfa\x09\x5a\x97\x6d\xfc\xd4\xe9\x78\x5b\xde\x4f\x4e\x17\x9f\x8f\xfc\xfb\xfb\xb0\xd3\xd9\xba\xe6\x75\xc9\xf5\xf8\x93\x22\xa0\xe1\xb9\x11\xfb\x77\x3a\x1d\x4f\xa2\x1f\x82\x9f\xba\x73\x61\xa8\x83\x4f\x0e\x8a\xb8\xc8\xb5\x76\x9e\x05\x10\xf6\xa1\x85\x4b\xb6\x5c\xc1\x1c\x1a\xed\xb1\xfe\x4f\x01\x92\xb3\xd3\x79\xcb\xbb\xf5\xb3\xf2\xa7\x86\x4f\xec\xac\x11\x2e\xf9\x27\x1f\x17\x9e\x8c\xda\xc0\xbf\x32\x8b\xea\x19\x52\x3d\x33\xa8\x3e\xf2\x07\x33\xce\x51\xa5\xab\x81\xd2\x6d\xa8\x09\x1a\xc1\x04\xb5\xc6\xe6\x33\x9f\x02\x8e\xd9\xa5\xf4\x9f\xdb\x3b\x18\x08\x97\x79\x69\x92\xfc\x6d\xcf\x71\x8f\x34\x9e\x0e\xb0\xbd\xfd\x0e\x4e\xbe\x71\xef\xcd\xbf\x3d\x79\x8a\x1b\xfe\x3f\x83\xb4\xbe\x3b\xbf\x8e\x53\xa6\xec\xa6\xbe\x6d\xc8\x9f\xcd\x58\xcc\x8f\x5e\x0a\xe8\xa0\x0e\xf4\x26\x5f\xaa\xec\x6f\xea\xd9\xef\xb8\x90\x9c\x2a\x88\xa7\x75\x88\xf7\x45\xce\x4f\x78\x22\x46\x41\x3d\xff\x53\xc9\x8a\x17\x69\x1e\x5d\x83\xad\xb3\xa8\xe7\x49\x83\x6e\x02\x24\xbe\x97\xb5\x77\x9e\x43\x78\x58\xdd\x9c\x87\x0d\x82\x8a\x8c\xe1\x7e\x72\xcb\xa2\x05\x2f\x66\x6e\x59\x1f\xef\xef\xcf\xee\xef\x3d\xb5\x2c\x9b\x35\x14\x5a\x4b\xfa\xde\x9c\xe2\x0d\x02\xd5\x87\x06\x04\x26\xac\x7a\x05\xd7\xbb\xa6\x99\x5b\xbd\x28\x4c\xda\x06\xa1\x8f\xdd\x56\x56\x8f\xc5\xf4\xfa\xa0\xa6\x97\x98\x55\xc2\x90\x06\x59\xca\x53\x27\x84\xd8\x28\xf8\xb0\x96\x9c\xe1\x43\x30\xb2\x6f\x2a\xb4\xde\xee\x43\x10\xad\x1b\x70\x98\x87\x8b\xb2\x99\x7e\x0d\xc0\xe2\x48\xf1\x3e\x4c\xb2\x2a\xf8\x67\x43\xfe\x22\xfb\x25\xa9\xa6\x6a\xbc\x6d\xf1\xa3\xb6\x78\xec\xde\x89\x65\x21\x96\x8d\xdd\xc7\x30\x78\x6a\xf4\x31\x34\xfb\x38\xaa\xf5\xb1\x61\x94\xa5\x5e\xa3\x61\x9e\x99\xb7\xb3\x2d\x8c\xab\xc5\x4c\x38\x52\x16\x2a\xea\x55\x4f\x08\x7f\x13\xae\x06\x2c\x18\x6e\x67\x8b\xd9\x88\x15\x4e\x84\x8a\xde\x33\x76\x18\xef\xb2\x7e\x3c\x88\x1a\x41\xd4\x7b\xd0\x87\xea\x57\x9f\x73\x1e\x69\x63\xc4\x7f\x53\x16\xf0\xe2\x6c\x37\x1a\x84\xc1\x5d\x12\xf7\xdf\xef\xee\x52\xb9\x54\xfa\x23\x6a\xf1\xea\x7e\x48\x15\xe3\xeb\x33\xea\xd8\xcf\x47\x54\xed\x8b\xfd\xbd\x83\xf5\x80\x3d\x8f\x0f\x3d\x63\xa7\x0f\xf8\xee\x78\x4a\x43\xe5\xd8\x8d\xac\x39\x84\x5f\xa7\x3e\xdf\xa2\x0e\xa7\x9e\xdf\xff\xc4\x17\x19\x67\xb3\x6c\x2f\xf6\x7d\x2e\xa8\x18\x75\x44\xb0\xc3\x86\x3e\xad\xad\x48\xbf\x51\xad\xad\x47\x6d\x9a\x2f\xd2\xf8\x73\xc2\xd2\xb8\x7e\x39\xdf\x32\x56\xb0\x3f\xcb\xbd\xf7\x9d\x6a\x60\x84\x7b\xa3\xde\x25\xf5\x9e\x2c\x7f\x29\x6e\xd3\xe9\xd8\x22\x04\xff\x76\xf6\x39\x77\xe3\xbb\xbf\xbf\xf6\x9a\x56\xf8\xb2\x08\xe7\x8d\xbc\x4d\xbc\xb0\xa0\x2c\xb4\xec\xde\x35\x2d\xe5\x6e\x38\x9f\xa7\x2b\x78\xbf\x9e\x2a\xed\xab\x33\xf5\xd7\xa8\xb4\x1c\x6e\x6b\x2d\x17\x28\x32\xf1\x2d\xfa\x4b\x31\xc7\x02\x22\x7e\x9c\xad\x66\xa3\x3c\x05\xcd\xa5\xb9\x37\x93\x4e\xc7\x86\xe8\x26\x15\x3f\x99\xe5\x85\x00\x2d\x21\x75\xb8\x4d\x0e\x15\xe2\xc4\xcb\x47\x57\x3e\xb9\x23\x02\x5d\x51\x3e\x1f\x5d\x0d\xc8\x9a\xf4\x5b\xe1\xf2\xd1\x55\xad\xb9\x46\x84\xf2\xd1\x55\x97\x9f\x38\xab\x62\x11\x49\x4c\x04\x38\xe6\x92\x2d\x95\xa2\xcd\x95\xc8\xa1\x89\x6e\xdf\x46\x0b\x08\xa3\x10\xbb\x8c\xd2\xb0\x2c\xf9\x60\xbd\x9c\xb2\xe8\xda\x4b\xc4\xa5\x18\x25\x2f\x75\xb3\x1c\xf3\x64\x4c\xbc\x2d\x95\x4d\xe4\x8f\x7c\x6c\x01\x72\x48\x3c\xd9\xf1\x23\xe8\xc7\xd5\x9c\x9d\x88\x73\xf2\xcb\x30\xe3\x27\x59\x3e\xdb\x48\x48\xa0\x55\x12\xf2\x93\xb2\xee\xb0\xcf\x89\xb6\xb6\xd1\x9b\xe7\x65\x99\x8c\x52\x66\x34\xf2\x01\x68\xe8\x95\x2c\x1d\x53\xa8\x4f\xa1\xc7\x93\x6c\x0c\x3e\xb0\x31\x2b\x58\x16\x29\x34\x40\x47\x3a\x0d\x41\xfd\x32\xe2\x67\xf2\x24\x4b\xaa\x24\x4c\x93\x92\xc5\x64\x8f\x94\x8b\x39\x2b\x3c\xdf\x82\xe0\x4d\xc0\xb9\x9b\xa3\x27\x2f\x8b\x78\x37\x3a\x1d\xe2\x49\x06\xc6\xbf\x71\x00\x25\xc7\x24\xf7\xf7\xa4\x9e\x6b\xf4\x96\x1c\x62\x46\x9f\x70\xbc\x07\x6e\xcf\x93\x6c\xca\x8a\xa4\x2a\xbd\x72\x31\x7a\xc9\xc9\x45\x11\x3b\xf8\x2d\xbb\x2c\x1a\xd0\x19\x30\x1f\xdc\x59\xe4\x64\xc3\x41\xb9\x75\xa0\xce\x38\x30\x61\xb7\xf3\x82\x95\x25\xc7\x64\xb6\x28\x2b\xc2\x92\x6a\xca\x0a\x32\x62\x50\x9a\xe4\x85\x31\x72\x14\x74\x14\xc3\x6d\xb2\x4b\x6a\xf8\x00\xd1\x64\x0f\x8c\x19\x1a\x10\x71\x21\x88\xb7\x34\x9e\x81\xa2\x85\xb0\x2e\x42\xc9\x1d\x31\x96\x42\x9f\xdc\x11\xb0\xbf\xe8\x13\x4d\x20\x96\x2d\x66\xac\xe0\x3c\xa8\x4f\xc6\x61\x5a\x32\x4a\x96\x45\x52\x61\x42\x55\x2c\x18\xe5\x55\x8c\x93\xc9\xa2\xd0\x69\x7c\xd2\xf9\x03\x20\xa7\x49\x60\x81\x5f\xc9\xaa\xf7\x12\x85\xd3\x31\x39\x6c\x4e\x6f\x19\x24\x8d\x5b\xf7\xf2\x12\x7a\x72\x79\x49\x02\x03\x44\x8c\x3a\xc4\x7d\x83\x6b\x09\x7d\xbb\x21\xee\x96\x41\xcb\x08\x00\xef\x8b\x7c\x0e\x8f\x0f\x5a\x40\xf3\x22\x9f\xef\x71\x24\x50\x1f\x29\x2a\x3b\x7a\xf3\xe6\xf2\xf5\xbb\xd7\x1f\x5f\x1f\xbd\x79\xfd\xcf\x93\x0f\x67\x24\x20\xe7\x17\xa2\x9e\x0f\x27\x47\xc7\x9f\x1b\x73\x4d\x63\xb8\xf2\x17\x36\x9a\x87\xd1\xf5\x07\x16\xc6\x2b\x6f\xc2\xaa\xb7\x70\x0d\xf3\x3a\x2e\xc5\x15\x0f\xa7\x97\xa7\x7c\x8a\x97\x08\x7d\x89\x97\x35\x25\xef\x26\x4c\x44\x43\x5f\x0c\x5c\xc9\xfc\xee\x4b\xde\xec\x35\x94\xf7\x7d\x31\x95\xe5\x7a\x12\xcd\x12\xb9\x04\x61\x7c\x07\x3c\x09\x48\xa8\xd2\x4d\x54\x3d\xbf\xcb\x6e\x58\xa1\xf5\x3f\xc4\x9b\x89\x3c\xb7\x3a\xd1\x13\x99\x2d\x1a\x37\xd1\xd5\x0c\xbb\x01\xdd\x73\x59\xf0\xa2\x5e\x12\x91\x14\xb7\x51\x06\x8d\xd3\x3c\x8c\x3d\xfe\x0f\x2b\x04\x36\x70\x85\x52\xe4\xb3\xa4\xe4\x2b\x04\xb3\x3c\x1c\x55\xcc\x84\x9b\x71\x12\x48\xdc\xc5\x13\x5e\x62\x6e\xeb\x34\x16\xf7\x89\x70\x36\xe7\x49\xa0\xab\xc4\x14\x40\x45\x54\x08\x95\x75\x75\x7b\xe2\x17\xbe\x91\xa6\x29\x86\x15\x2a\x7a\x61\x29\xf9\x78\x58\x60\x8c\x83\x99\xc7\x62\xd9\x81\x78\x60\xd1\xd9\x48\x5b\xfb\x5d\x54\x07\xea\xb6\x58\x51\x7c\x45\x43\xd0\x2f\x12\xf0\xfe\x89\x74\x11\xea\x4a\x7c\xaf\x25\xe9\x44\xdb\x50\xaa\x71\x18\xde\x86\x73\xb1\x45\x3f\x44\x69\x64\x2b\x36\xa9\xef\xd6\x9b\x09\x6d\x0c\x6b\xa9\xd7\x1a\x21\x55\xb1\x92\xf5\x9b\xe6\x11\x1c\x91\xda\xdb\xaf\xc4\xbb\x66\x2b\x45\x1b\xac\x13\x63\x78\x09\x42\xf3\x62\xe7\xd7\x6c\x75\x21\x3b\xcd\xff\x83\x6d\x11\xc1\x24\x25\x8d\x3a\xec\x01\x83\xc2\xc0\x5b\x14\xb8\x1a\xbc\x3a\xcd\x05\x14\x7c\x2a\x20\xf3\xda\xd6\x6d\x00\x07\x91\x4f\x54\x0d\xae\x11\x95\xe4\x41\x35\xaa\xa8\x5c\x24\x9a\x1d\xb2\x73\xdc\xa9\x5a\xb0\xf2\x31\xdd\xd3\x08\x6c\x9e\x81\x9b\x66\x9a\x98\x5d\xc6\x8f\x35\x81\xba\x9a\x26\xb1\x5b\x7c\xdd\xbc\x00\xdf\x8b\x5e\x85\x69\xea\x49\x82\xf8\x9b\xfa\xb8\x69\x89\x88\x39\x2f\xbb\xfb\x07\x16\xdb\xef\x59\x54\x05\x2b\xf3\xf4\x86\x19\x8b\xca\x16\x7d\xb9\x60\x7b\x79\xc9\x4a\x64\xd5\xe4\x10\x12\xc4\xb9\x97\xf4\x41\x54\xad\x57\x99\x71\x76\x88\xa3\x49\xf9\x8c\x99\x97\x76\xdd\xb0\x85\x0a\x89\x42\x58\xa2\x7b\x12\x11\xc1\xc5\x64\xb9\x5a\xed\x58\xea\x4d\x1e\xc6\x21\x88\x9b\xc2\x46\x06\xca\xbd\xca\x28\xc9\xe7\x1c\xac\x34\x38\x04\x8a\xce\x94\x5c\x56\x6c\x36\x17\x34\x81\xf5\x26\x40\x6b\x0b\x4e\xcb\x5b\x52\xd6\xc2\xeb\xb9\x54\x34\x2a\x77\x75\x2e\x15\xff\x2a\x0a\xff\x6a\x3d\x20\x69\x4e\x1e\x8e\x42\x3e\x07\x83\x08\xc1\x3c\xc2\xb2\x4c\x26\x99\x67\x70\x2c\x56\x58\xfb\x80\x62\x62\x46\x1a\x9c\xdc\xfb\xe4\x49\xaf\x27\x12\xe4\xf9\xdb\x04\x42\xd2\xf7\xc5\x5f\x91\x28\xf6\x40\x0b\x50\xec\x87\x06\x0b\xd4\x94\x33\x98\x61\x01\x7c\x10\x54\x68\x98\xa8\xe5\x8e\x2c\xa9\x3c\x45\x31\xc9\xbe\x8c\x15\x89\x45\x71\x54\x3c\xde\xff\xae\xd8\x41\xe5\x62\x74\x67\xbf\x5c\x5f\x26\xed\x5c\xf1\x08\xb9\x0e\x6f\xdb\x37\x06\x52\x1e\x9b\x78\x23\xa2\xb3\x0d\x52\xbc\xc0\xac\x2e\x55\x61\xa5\x7a\xb9\x19\x9d\xe0\xb5\x3b\x12\x96\xd9\x8a\x6f\x71\x20\x69\xc4\x03\x94\x31\x79\xa7\xc9\x7b\xac\x25\x09\x33\x92\x04\x62\x86\xf2\xd5\xac\x90\xb8\x84\x35\xf2\x27\x1d\xd7\x42\xb6\xa4\xcf\x1b\xb5\x35\x40\x49\xad\x94\xe2\xc8\xfa\x5a\xaa\xb6\x72\xcc\x05\x0a\x2d\x38\x47\x4d\x38\xd3\xd7\xcb\x99\xdc\x1e\xcf\xef\xfc\xc8\x16\x6c\x3a\x0a\x62\x4d\x2e\x92\xe8\xc0\x80\x79\x88\x8b\x59\xf5\xa5\x8c\xc4\x52\xac\x2c\x02\x59\xa4\x47\x20\x7c\xee\xa2\x62\xde\x9d\xb9\xc1\x53\x47\xfa\x82\x85\x13\x9f\xf2\x95\x03\xcc\x53\xef\x0f\x8f\x99\xb6\xba\xb5\x4b\x90\x47\x60\x1d\x99\xc3\x6d\x6e\xea\x72\x26\xd8\x7d\x71\x24\x16\x43\x1e\xe1\xab\x00\x7e\x52\x9d\x35\x0f\xcb\xea\x18\xd7\xbe\x29\xd2\x48\x0e\x60\x74\xc4\xc8\x51\x3d\xe6\x35\x8a\x0f\x27\x9b\xcb\x43\x32\x97\xc5\x26\xfa\xd6\x6c\x06\x94\xf5\x92\xc5\x1f\xb5\xb9\xd0\x9d\x17\x0c\x6c\x1e\x8c\x11\x12\x49\x9e\xc5\x13\xea\x2b\x44\x13\xac\xa9\x56\xe9\xd7\xa5\x98\xeb\x2f\x49\x9a\xbe\xcd\x17\x59\x65\x36\x55\xcf\x35\x5b\xc5\xd1\x02\x93\x4a\x90\x76\x2d\xd1\xa6\x75\x28\x1f\x87\x97\x51\xd2\x44\xc8\xaa\xd0\x96\x05\x81\xa0\x4f\x38\x1a\x48\x58\x93\xd5\x98\x4e\xeb\x5d\xb5\xdb\x74\x3a\xe4\xa8\x28\xc2\x55\x37\x29\xe1\x2f\x4e\x4b\xc1\xc1\x6d\x16\x64\xe6\x34\x48\xa6\x98\xf3\x2e\x9c\x31\xab\x94\x98\x98\x4f\x6a\x4d\x77\x0b\x36\xcf\x8b\xca\x2c\x67\x2c\x83\xb5\xdf\x24\x20\xca\xad\xa0\x51\x8c\x15\xa1\xd6\x5a\x8a\x99\x7c\x1c\xb6\x3b\xc1\xc5\xa5\x1e\xda\xaa\x8a\x17\x70\x20\x7b\x4e\xaf\x5c\xa6\x60\x2c\x25\xd4\x27\x58\xbd\xa9\x89\xc4\x72\x72\x88\x06\x4c\x6b\xb6\x16\x36\x64\x90\xf2\xb1\xcd\xca\x9d\x57\xf4\xc3\xc2\xe8\x11\x64\x12\x42\xc0\x26\x42\x61\x27\x14\xe0\xa3\xba\x51\xef\x84\xe6\x35\x0d\xa4\xa3\x16\x32\x8d\xd3\x02\x5e\xb8\x01\x23\x60\x73\x9d\x60\x8a\x57\x1b\xd8\x2d\x81\x80\x5c\xb5\x0e\x7a\xce\x34\xb2\x1a\x6a\x40\xde\x2c\xba\x81\xd3\x36\xf1\xc5\x5a\xb6\xcb\x55\x9d\xe5\x50\xc3\xe2\xd2\x34\xcd\x2b\x5b\x36\x0a\x43\xfa\x71\x4f\x11\x56\xcf\x25\xb9\xbe\xe6\x5c\xd4\x50\xe6\xf7\x73\x5e\x11\x86\xad\x95\xf7\xca\x30\x6d\x1b\xb8\xaf\x79\x60\x91\xb9\xcd\x34\x7a\x24\x07\xb6\x0a\x5b\x4c\xd8\xa9\x56\xe3\x64\x19\x74\x1a\x8b\x5c\x13\xa9\x01\xc2\x99\xdd\x8f\xc3\x0e\x05\x71\x13\x2b\x71\x3a\x72\x84\x4c\x2d\x18\xa8\xb3\xdd\xfd\x3d\x31\x52\x61\xb2\x36\x89\x9b\x4d\x67\x29\x25\xb7\xc0\x73\xf5\xd6\xfc\x4f\xca\x37\x4a\x1a\xaa\xb5\x69\xcd\x76\x93\x6d\x69\x48\x95\x6a\xc1\x1a\xdc\x41\x83\xca\x44\xda\xb0\xfe\xdc\x9e\x51\x67\x79\x17\xb2\x55\xf8\xdd\xbc\xe7\x10\x61\x52\x53\xa3\x9e\xc3\x2f\xe4\x81\x76\xae\x7c\x36\xea\x05\x28\xb6\xa6\xce\x9c\x56\x13\xf5\xba\xc4\x89\x48\x40\xb9\x13\x42\x5e\xab\xbb\xf3\x02\x4f\x00\x1e\x8e\x98\x96\xa3\xa9\x90\xb8\xe5\xf6\x2b\x75\xc7\xc6\xf9\x10\x95\xe0\x4a\xb1\xdc\x2d\xa7\xe1\xdc\x60\x6c\xb8\x4d\x9b\x00\x7c\xba\x41\x6c\x3c\x38\xa8\xc6\xf2\x0c\x22\x4e\x7a\xf2\x24\x6c\x9f\xac\x25\xbe\x30\x7d\xec\x03\xfb\xa6\x43\x37\x32\xff\xfa\x41\x5d\x42\x83\xca\x4e\xd7\xe8\xee\x60\x62\x85\xb8\xd7\x21\x1b\x0e\xe3\x46\xc5\xd6\x49\xbc\x51\xef\xf0\xab\x75\x6f\x55\x3f\x82\x6d\xea\xd9\xdb\x70\xee\x74\x4e\xc2\x75\x79\xdb\x81\xd9\x45\xa5\xd1\x7f\x19\xce\xab\x45\xc1\x36\x1e\xe6\x9e\x88\xde\xe9\xb3\x9c\x28\x55\x3f\x1c\x3d\xf1\xdd\x93\xb7\x00\xd5\x1c\xa4\xf9\xbc\x26\xc0\x7c\x77\x56\x7e\xf5\xf1\xec\x89\x79\xb5\x4b\xf4\xdd\xae\x45\x4d\xd1\x9a\xc1\xf9\x26\xac\x32\x63\x9f\x98\xf4\x70\xb2\x3c\x57\xc5\xaf\xe6\xb5\x9e\xfa\xd6\x12\xc4\xc9\xae\x17\xac\x10\x53\x1b\xd6\xa3\x5e\x95\x75\x04\x1f\x66\xcd\x16\x87\x95\xd1\xab\xba\x79\x26\x88\x21\x1a\x97\xce\xec\xbe\xd5\x9e\x28\x2b\x9a\xe5\xf3\xa7\xb6\xee\x01\xd2\xc0\x6b\x6e\x2d\xfc\x47\xac\x69\xde\x96\x2c\x1f\x19\x04\xb5\xea\x79\x90\x7d\x3c\x8a\x79\xac\xfd\x5a\xcb\xd6\x7a\xd0\xb3\x5e\xf7\xd8\x8c\x5c\x92\x2e\xca\xe9\x6b\x71\x83\xfb\x1b\x2b\x4a\x2f\x31\x3e\xea\x97\x2a\x96\xf6\x1d\x22\xe4\x10\xab\x84\x7c\x55\x54\x8e\x14\x2f\xca\xf3\x49\x40\x2c\x30\x34\x96\x45\x18\x5b\x73\x8d\x67\xd0\x26\x8e\xf0\x28\xe5\xae\xa5\xf9\xda\x84\x99\xbe\x06\xdb\x4c\x02\x53\x2b\xb6\xae\xf3\x1b\x71\x98\x3e\x4a\xd3\x26\x25\x88\x11\x45\x43\x60\x6f\xeb\xa1\xf3\xf4\x86\x51\x52\xb0\x2b\x16\x69\x45\x52\x1d\x21\x57\xdb\x26\x7a\xed\x56\x60\x5c\x93\x0d\x9a\x90\x04\x3d\xd9\xbf\x0c\xcd\xfd\x7d\xf2\x0b\x23\x61\xba\x0c\x57\x25\x59\x26\x69\x4a\x14\x24\x48\x0e\x25\x41\x3b\x1c\x32\x62\x64\x0a\x0e\xc6\x31\x59\x26\xd5\x34\xc9\xa4\xbc\x4e\x3e\xbd\x06\x37\xaf\xc6\x3e\xd7\xd5\x81\xf5\x5e\xc3\x8f\x5a\xb7\x6b\xee\x6e\x92\x0e\x03\x74\x64\x6b\xf0\x46\x7b\xd2\x3b\x78\xba\x37\x2f\x58\x09\xca\x3a\xdb\x37\xed\xff\xb9\x7e\x68\xd6\xc5\xb7\xe2\x12\x67\x2c\x2a\x58\x65\x7b\xf9\xa5\xc9\x68\xbf\x09\x6a\xc7\xb7\xd9\x01\x9b\xcd\xab\xd5\x2b\x65\x54\x44\xee\xd6\x6d\x99\xbf\x24\xd5\xf4\x03\x2b\x59\x25\xa0\x9a\x33\xbb\x9c\xa4\xd5\x2f\x61\x91\xc9\xc0\x83\x24\xb0\xeb\x69\x1e\xb1\xb1\x81\x82\xb5\xc7\x96\xd3\x64\x86\x7a\x51\x94\x23\xde\x85\x33\x30\x49\x10\xac\x1b\x3f\xd3\x3c\x0a\xd1\xac\x82\x83\xbc\x5a\xa4\x29\xa6\x97\xd0\x67\x8b\x43\x94\x82\x58\x41\xd0\x48\x45\x83\x5b\xec\xef\x93\xd7\x15\x1f\xf2\xb2\xe2\x73\xbd\x0c\xc7\x8c\x2c\xa7\xca\xba\x85\x8c\x8b\x7c\x26\x76\x24\x9b\xc1\xd8\x6a\x75\xb0\xf7\x2b\xf8\xee\x66\x48\x4e\x02\x7e\x87\x8b\x0a\x7c\x5d\x68\x43\x85\x9b\x30\x4d\xe2\xb0\xe2\xab\x09\x67\x48\xba\x92\x2e\x2d\xca\xa1\x85\x8c\x56\x30\x8f\x7e\xd5\x96\x0c\xbf\x92\x39\x3a\xd9\x77\xc9\x0e\xd9\x55\xf5\x7f\x2a\x99\xb1\x9b\x44\x5c\x28\x51\x9f\x9e\x4f\xaa\x1c\xed\x69\xaa\x29\x9b\xd9\x05\x39\xe7\x20\xb3\xbc\x60\x24\xac\xc0\x41\x4a\xf9\x47\x2d\x4a\xb6\x07\x15\xed\xe9\xd6\x77\xb0\x9c\x64\x9d\xac\x28\x20\x60\x0a\x09\xc8\xce\x6b\x3e\x61\x93\x30\xab\xc8\xcf\x49\x9e\xc2\x28\xed\x34\x5f\x92\xc1\xbf\x7c\xb8\x8d\xfd\x8d\x04\x90\x32\xb0\xa6\xc4\x84\x55\x67\x7c\x56\xb8\xd2\x81\x82\xc4\xaa\xf8\xf8\xcd\x38\xc1\xc2\xac\xda\x12\x09\x7f\x67\x6c\x8e\x8b\x2d\x4d\xca\x8a\xaf\xc7\x72\x95\x45\xc0\xa5\x88\x76\x64\x25\xc2\xcb\x97\xe7\xff\xda\xdd\x1f\x87\xb0\x4e\xf9\x1c\xe7\x84\x03\xd1\x8e\xef\x2f\x57\xe5\xaf\x5d\xb9\x5b\xda\x73\x49\x1f\x19\xc2\xa2\xe0\xc7\x36\x8e\x9a\x38\x58\x8d\xf2\x3c\xb5\x12\x78\xbf\xac\x04\xd4\x1d\x59\x49\x68\xd1\x61\x25\x61\x74\x18\x3b\x09\xec\xd7\x54\x92\xc0\x20\xb3\xdb\x07\x8c\x4e\xc7\x7d\x49\x46\x79\x0f\x2f\xc2\x50\x99\xa0\x46\xf0\x57\x2b\x5d\x5a\xb2\xd5\x6b\xc9\xf2\x98\x35\x20\x5e\x07\xcc\xb3\x86\xd2\x90\x88\xad\xd9\x19\x20\x25\xd5\x30\xbe\x0d\x39\x49\x74\x22\x26\xdb\x93\xbc\xdf\xc2\xc4\xd4\x2d\x9d\xc3\xad\x1c\x78\x53\x8e\xb4\x87\xb8\x6b\x0e\xb6\x9d\x65\xcb\x9d\xb5\x3c\x61\x7b\xf9\x7f\xd0\xbe\xb4\x23\x42\x7b\x88\x80\x1e\xef\x8f\xce\xce\x2e\x3f\xfe\xf8\xfa\xac\x31\xac\xc7\x4e\xf3\x06\xd1\x54\xf5\xa0\xd5\x53\x5d\x3a\xe7\xf3\x9e\xe2\x8d\x31\x1e\x12\xfe\x8f\xf0\x54\x1f\x05\xcd\x0e\x34\x68\xf3\xda\xe9\x08\xdb\xd7\x71\x5e\xd0\x28\x18\x1d\xea\x4f\x79\xbd\x2e\xa3\x3e\x0f\xb7\xfd\xfe\x77\xbd\x83\xde\x53\x1a\x37\xc3\x01\x77\x4d\x25\xd8\x77\x94\x35\x83\x8d\x8b\x70\x62\xd6\xf7\x17\x3a\x6e\x06\xc4\x5e\x5c\xce\xf2\x98\x49\xd8\xef\xe9\xa4\xa5\x6d\xf0\x2b\x01\x1d\x3b\x07\x3c\xf8\x86\x4e\x5b\x01\x6f\x92\x58\x01\xf6\x7e\xa0\xd7\xcd\x80\x42\xe9\x23\x2b\xec\xd1\xb4\x19\x2e\xe4\x7b\x86\x89\xe4\xc1\x01\x9d\xb5\x56\x29\x22\x0e\x39\xf0\x59\x0b\xa5\xf2\x62\x19\x16\xf1\x65\xc1\xc6\x12\xf6\x09\x9d\xb7\x10\x4b\xc4\x3c\x92\x80\x4f\xe9\x97\x60\x74\x38\xcc\x36\x80\x5e\xf2\x5d\x4f\xc0\x3f\xe9\xd1\xa2\xb9\xe2\x19\x9b\xe5\xb2\xd2\x6f\x69\xd5\x0c\x94\x86\xbf\xad\x24\xd0\x77\xf4\xa6\x19\x68\x94\xe6\xd1\xb5\x6c\xef\x80\x2e\x5b\x3a\xbd\xc8\xe2\x10\x02\xcd\xc9\xa9\x74\xf0\x17\x7a\xdb\x0c\xab\x62\xf1\x4b\xc8\xef\xe9\xaa\x85\x3c\x51\x3e\x57\xb4\xf9\xc1\x74\x1c\xfc\x4d\x3d\x46\xb1\x39\xa2\x3b\x58\xd8\x2f\xcc\xf7\x26\x84\x63\xca\x42\x38\xa6\x44\x2a\xba\xbe\x7c\xeb\x41\xba\xac\xa4\xe8\x9d\x32\xc3\x3f\x0c\xff\x4c\xf0\xcf\x18\xff\xcc\x55\xf0\x53\xe5\xbc\xa2\x6b\xeb\x74\x74\xab\xaa\xd2\x6b\x2c\x98\xe1\x9f\x0a\xff\x14\xf8\x67\x5a\xaf\x4d\x24\x2c\xd6\x6b\x8c\x43\x6f\x24\x68\x7f\xc5\x23\x23\xe6\x14\xa7\x4b\x10\x04\xb3\xb5\xf4\x4e\x38\xe2\x13\xfd\x6d\x1e\x33\xc3\xbb\xec\xa5\x9a\xd1\x90\x31\x33\x33\xf8\xea\x79\x99\x67\xe5\x62\xc6\x8a\xe0\xda\xcd\x79\x2f\xd6\x61\x30\x55\x39\x42\x4b\x1e\x44\x2a\xe5\x15\x2e\x80\x0f\x6c\x1c\x64\x3a\x51\xf0\x8f\x80\xa9\xa4\x37\xe1\x6f\xab\xa0\x52\x9f\x6f\xd9\x2c\x0f\x0a\xf5\x29\x22\xd8\xc4\x86\xaf\xc8\x7b\xc1\x2e\x82\x89\x82\x3a\x03\x6e\x03\xdd\x18\xeb\x44\xb1\x54\x82\xb9\x4a\x4a\x4a\x4d\x88\x86\x50\x5d\x9c\x84\xf7\xf7\x82\x78\x86\xf3\x59\x52\x3a\xb4\x3a\xb2\xb3\x2c\x6a\x35\xd4\x2b\x6a\xbc\x5e\xd7\x8b\x29\x52\xb6\x17\x9b\x9a\xc5\x24\x9d\xeb\xe0\x0f\xac\x01\x73\x1e\x06\x41\x10\x99\x95\x1a\x43\xd5\x8e\x46\x66\x95\x90\xe3\xd8\x0e\xcf\x4c\x78\x18\xe4\x76\xd8\xca\xf4\x05\x4a\x4a\x98\x03\xed\xd0\x85\x59\x73\x2d\xc4\x91\x0b\x1d\x5b\xd0\x72\xee\xb4\xc3\x4f\x4c\x78\x73\x62\xb5\x96\x18\x5b\x25\xe4\xac\x6b\x87\x9f\xdb\xbd\xfd\x99\x9f\x13\x4f\x8c\xd7\x19\x9a\xc6\xb6\xe1\x6d\x90\xb6\xe7\xf0\xc3\xfb\xfb\x30\x80\x47\xce\xf9\x9f\x19\xfe\x99\xe0\x9f\x31\xfe\x99\xe3\x9f\x2f\xbc\x8a\x07\x66\x8d\x67\x4d\x9b\xea\xfe\xde\xfa\x2e\x9c\xef\xa9\xf3\x7d\xed\x7c\x67\xce\xf7\xd2\xf9\xbe\x75\xbe\x57\xce\xf7\x8d\xe1\x71\x85\xce\x07\xc1\x6f\xff\xef\x14\xc2\x65\x7f\xf8\xb9\x3f\x91\x27\x6f\x3c\xe8\x87\x65\xc9\x8a\x4a\x18\x69\x2f\xa7\x49\x34\x25\xab\x7c\x01\x7a\xde\x49\x11\xce\x78\xfe\x62\xc6\x4a\x0e\x3a\x62\x60\x5a\xa0\xfb\x2a\xf8\x0d\x29\xe7\x45\x92\x55\xe3\xbd\xb2\x5a\xa5\xf0\xf6\xdf\x2c\xac\x88\x97\x67\xe9\x8a\xfc\x07\x44\xde\x50\x2a\x0a\x1f\xc4\x66\x75\x45\x01\xb5\x54\x39\x11\xb2\x18\x49\x32\x2c\x0c\x6f\x5c\x8c\xf2\x45\x45\x96\xd3\xb0\x22\xa3\x22\xbf\x66\x50\x72\x29\xe3\xb7\x2c\x59\x81\xb4\x62\xb7\x73\x16\x55\x49\x36\x31\x87\xc0\xe8\x25\x11\xa1\x39\x50\x33\x39\x42\xba\xcc\xe7\x0c\x08\xae\x45\x7f\x4a\x46\x8b\x0a\x08\xad\x4a\x42\x5d\x42\x9f\x39\x0b\xf9\x30\xe4\x84\x65\x10\x46\x26\xcd\x27\x49\x04\xc1\x67\x40\x03\x13\x27\xe3\x31\x2b\xec\x0a\xf5\x68\xa0\xea\x5b\xa2\x63\xe8\xb4\xa2\x3c\x8b\x13\x6c\x1c\xbb\x4d\x49\x48\xc9\x88\x92\x88\x92\x98\x12\x46\xc9\xd8\xb8\x92\x6b\x0c\x1a\xb6\xd5\x1c\x34\x0c\x4b\x88\x81\x08\x82\x80\x28\x1f\x0a\xeb\xde\xdf\xbe\xb7\xdb\xd1\x48\xea\x4b\xbb\x0c\x75\xb8\x8a\x8a\x72\xe8\x76\x6c\x7d\xb8\x61\xb3\xab\x7a\x65\xe9\xfe\x4d\xeb\xf6\x47\xe0\x26\xcd\xbc\xeb\xba\x31\x42\x76\xde\x26\x59\x32\x4e\x58\x4c\xd8\x6d\xc4\xc0\x24\x96\xe4\x11\xec\xa8\xf1\x80\xf0\xa9\xcf\x87\x31\xcb\xb3\xbd\x99\x04\x8c\xd9\x0d\x61\xd9\x4d\x52\xe4\x19\x47\xde\x54\x69\x11\xb2\x33\xce\x71\x4d\x8e\x17\x69\xea\x76\x97\xcf\xd6\x18\xfb\x13\xa6\x64\xca\xd2\xf9\x78\x91\x92\x25\xaa\x06\xca\xee\x8e\xac\x46\x91\xc3\xb9\x90\x06\x5f\xd3\x62\x02\xd7\x25\xee\xe0\x5e\x0c\x1c\x28\x70\x77\x25\x01\xe9\x0d\x1e\x43\x07\x24\x61\xb7\x60\xf3\x34\x8c\x98\xb7\xff\x1f\xe5\xfe\x84\x5a\x1a\x53\xa9\x6b\xe0\x08\x9c\xcb\xfa\x77\x77\x2f\x06\xe2\xa2\xd9\x44\x5c\xb4\xf5\x18\x05\x9d\xb2\xe5\xc1\x12\x10\x78\xa7\xfc\x98\xbf\xcf\xe7\x24\x20\x07\x03\xb2\xbf\x4f\x96\x8c\xc4\x79\xb6\x53\x91\x28\x2c\x98\x58\xca\x6a\x7a\xed\x94\x24\x5f\x66\x18\xb0\xc7\x51\xf9\xe5\xca\xaa\xbf\x45\x85\xaf\x2a\x91\x8c\x9a\x4c\xd2\x7c\x14\xa6\x22\xf0\x15\x2c\xb9\x04\xd4\x7b\x64\x9e\x67\x18\xdb\x09\x34\xb2\x3b\xdd\x7d\x99\xd0\xbd\x2a\xb5\x6e\x82\xf3\x55\x15\x98\x4f\x3a\xdd\xb1\x74\x8c\x4b\x4b\xcd\x4d\xb9\xb2\x80\x0d\x07\xe8\x67\xa8\x82\xeb\x19\x45\x05\x1a\x1b\x0b\x23\x4c\x63\x71\xd1\x99\x8d\xc5\x11\xa6\xb1\x38\x92\x6b\x73\x71\x84\x71\x22\x03\x8a\x3c\xa5\xf1\xdf\x91\xbe\x5c\xd3\xa4\xdc\xf1\x3d\x75\xdd\x65\xf9\xca\x48\x7a\x7a\xbc\xb4\xaf\xc4\x10\x22\x9d\x0f\xc4\xc3\xf8\x30\x50\xed\x9a\xfd\xbc\x48\x26\x49\x16\xa6\x68\x8c\x09\xb8\x0e\x2b\xb4\xfe\xb7\x72\xa4\x49\xf7\x7b\x11\x82\x4b\x40\x0e\x2b\x08\xe0\x21\x0d\x3c\x6d\x5f\x48\xa7\xee\x01\x16\xd8\xdf\x97\x91\x10\x31\xfe\x36\x31\x78\x10\x19\xad\x24\xfe\x08\x0c\x98\x08\x70\x75\x91\x4c\x9c\x04\x75\x19\x5a\x0d\x2b\x81\x01\xd6\xf7\xbe\xc8\xe7\xac\xa8\x56\xc2\x40\x93\x92\xe1\xb6\x30\xe7\xdd\xa6\x12\xff\x61\x65\x3a\x5b\x0a\xff\x33\xcc\x98\xb0\xaa\xef\xdc\x81\x60\xc6\xb0\x92\xb1\x47\x10\x91\x74\x20\x73\xd6\xf8\x63\xed\x3f\x12\x9d\xe4\x5f\x8d\x4a\xf2\xbb\x51\x11\x93\x63\x23\x3e\x4e\x95\xb3\xc6\xa9\x01\x6c\x88\x03\x00\x06\x16\x7a\x5a\xd1\xea\x4c\xd6\xba\xbb\xf0\x9b\x3c\x2f\x59\x9b\xcf\x30\x5c\x4a\x7c\x8d\x33\xae\x06\x42\x8e\x5b\x2f\x6c\xbb\xa7\x2b\x00\x1b\xba\xc5\xf9\x75\x98\xad\xb7\xe9\xb6\x60\x7c\x5a\x05\x8d\x9c\xcf\xb8\x90\xd1\x8b\x14\x3c\xf3\x16\xa3\x32\x2a\x12\xd8\x42\xcf\xa6\xe1\x5c\x78\x4e\xd5\x6d\x10\xaa\x62\x75\x86\xb0\x23\xb6\xc1\x0e\x81\x0a\xd8\x4f\x59\xf9\x58\xe8\x2c\xaf\x92\xf1\xea\x1d\x2b\x2b\x16\xf3\x26\x1e\x82\xe7\x67\x22\x51\x75\xbc\xd9\xf4\xc2\x77\xfa\x5a\xe5\x05\xdb\xd8\xc9\x47\xe3\x1c\x8b\x40\xe0\x0f\xc1\x4d\x84\x7d\xeb\x43\x78\xea\x91\xb3\xe7\x1e\x0e\xdf\x70\xfb\x3f\x47\xe1\x88\xa5\xfb\xc5\x22\xab\x92\x19\xdb\xe7\x42\x08\x2b\xca\x7d\x56\xce\xf6\x2d\x78\xf0\x8f\x15\x35\x81\xc2\x9b\x92\x3b\x62\xf8\x9e\x48\x03\x19\xb2\x16\x13\x03\x34\x62\x3b\xba\xd0\xe6\x89\x23\x80\xee\x0c\x52\xd2\x86\x29\x24\x2b\xef\x76\xf7\x17\x55\x92\x96\xfb\xaa\x56\xa3\x12\x21\x40\xb9\xa0\x22\x79\x47\xf8\x57\xcf\x0b\x36\x4e\x6e\x3f\x65\x65\x38\x66\x6f\x92\x31\x8b\x56\x51\xca\xde\xb2\x6a\x9a\xc7\xa5\x8e\x42\xf1\xc1\x54\x91\x7e\x60\xe3\x46\xb7\x61\x88\xcf\x92\xc4\xbf\x84\x45\x76\xc4\xa5\x91\x0f\x2c\x62\xc9\x4d\x92\x4d\xce\x78\x67\x0c\xab\x57\x43\x21\xb8\x6c\x06\xf6\x0c\xa1\xbc\xbd\x4a\xe7\x16\xd2\x34\x63\xd9\x88\x87\xf2\x7d\x10\xb4\xf0\x76\x9e\x49\xb5\xce\x73\x7d\xe2\x50\xf1\x2e\xa7\x61\x36\xe1\x84\xfc\x15\x06\xe5\x57\x92\xe3\x69\x71\x9c\xae\xe0\xe2\x96\xec\xe0\x5d\xf5\x2c\x2f\x2b\x92\x26\xd7\x2c\x5d\xe9\x18\x98\x25\x63\x78\x88\x44\x29\x73\xc4\xa2\x90\x4b\xcf\x3c\x0b\x6d\x92\x63\x7e\xe4\x81\x5a\x3e\xb0\x78\x71\x4b\x9e\x74\x6f\x41\x22\xc6\xdb\x14\x9d\x86\xc7\xc6\x2c\x27\x69\x9e\x4d\x58\x41\xa6\x39\xdf\xfc\xc1\xdd\xa4\x60\xf1\x22\x62\x45\x89\xd5\x84\x8b\x2a\xe7\xc7\xbb\x28\x4c\x39\x82\x67\x8c\xa9\x28\x9b\x93\xa4\x9a\x2e\x46\xdd\x28\x9f\xed\xf3\x32\xb7\x57\xa5\x08\xb9\x09\x5f\xfb\x05\x4b\x59\x58\xb2\x72\x1f\xea\xa9\xc2\xc9\xfe\xcd\x93\x6e\xaf\xdb\x23\x52\x78\x9f\x25\x13\x0c\xa7\x02\xd7\x90\x05\x9e\x87\xca\xee\x8e\x12\x5d\x04\x2f\x70\xdc\x14\x25\x6d\x3d\xa0\xdf\xdf\x95\x63\x30\x38\x82\xc8\xcc\x3f\x19\xb6\x5b\x86\x57\x9b\x2c\x02\xa7\x18\xf1\x0c\x8e\xf6\x02\x95\x79\x64\x07\x7e\xef\xb8\x1e\x87\xe6\xca\x41\x40\x55\x66\x97\x0c\xb7\xcf\x8c\x6c\x11\x83\x05\xcb\x49\xa4\x48\x00\x97\xd7\x7f\xfe\x1f\x97\x97\xef\x3f\x7d\x38\xb9\xbc\xe4\xa2\x2f\x31\x6d\x1a\x37\xb8\xa6\xe1\xde\x26\xab\xa2\xe4\xb2\xc1\x69\x0c\x48\x00\xbb\x0d\x72\x4c\x00\x35\xde\x79\x96\x70\x08\xf3\xbb\xcc\x09\x45\x23\x05\x1b\x5b\xb6\xf6\x68\x06\x59\xb0\x31\x09\xc8\xdd\x9a\xc2\xcf\x73\x49\x9d\x0b\xe1\x99\xa3\x13\x24\x80\x4d\xd0\x0b\xe1\x17\x49\x65\xfd\xc4\x32\x01\x56\xc8\xa9\x19\x20\xac\x49\xc4\x75\x4f\x93\x53\x90\xeb\x28\x46\x02\x83\x70\x35\x27\x39\xa3\x2a\x61\x29\x3e\xb0\x4a\x5b\x3d\x42\x4b\x45\x48\x79\x94\x83\x97\x20\xfa\x63\xac\xd7\xa5\xa1\xe3\xe3\xcc\x23\x1b\xcc\xa4\x25\x85\x84\x75\x74\x6d\xaa\x7c\xbd\x76\x62\x7f\x1f\x54\x51\x9f\xde\x9d\x1d\xbd\x3a\xb9\x24\xec\x86\x4b\xe1\x70\xf2\x5c\x4e\x59\xc1\xb4\xbe\xc8\x50\x20\xdc\x08\xb3\x1e\x20\xd6\x86\x7d\xe1\x90\xec\x88\x7a\x2d\xc7\x07\x64\xb4\xf8\x3e\xc8\x0e\xe9\x93\x9d\xf6\x5c\xd5\xff\xfa\xa4\x3f\x57\x68\x5c\x58\xf6\x73\x19\x6a\xdf\x2d\x2f\x4d\x69\xf7\x6e\x8c\x33\xc4\x8c\x91\xa0\x38\xda\x96\x21\x7c\xeb\x8e\xd3\x64\xca\xae\x66\x83\x89\xa6\x6b\x68\x02\x6d\xf4\x8d\x2d\xdb\x15\x52\x08\x51\x6f\x3d\x19\x62\x8a\xb8\xe9\x75\x6d\x4c\x07\x56\x73\x4d\x16\xad\x5e\x23\xd3\x94\xeb\xb8\x29\xcf\x5a\x06\xcd\x78\xb6\x15\xac\x2f\xf8\x9a\x38\xd2\x52\x16\x09\x5a\x9f\xdf\xeb\xda\x21\xd6\xd9\x26\x40\x5a\x6b\x3d\x3a\xa0\x32\xf5\xe3\x34\x29\xb5\x09\x63\xec\x89\x60\x4a\x6a\xdb\x60\xe9\xb8\x69\xcb\xf8\x77\xc5\x5a\x1a\xd6\x0c\x68\xa5\xf6\x62\x53\x57\xd8\x6d\xc5\xb2\x58\x39\xe5\xc8\x6f\xd7\x47\x9e\xb3\x36\xbd\x0c\xaa\xb0\x98\x18\xc6\x72\x7c\x6f\x86\x30\xac\x09\x2a\x86\x12\xf2\x8c\xb8\x0f\x44\x0c\x48\xb2\xbb\xeb\x30\x5b\xa1\xd4\x0e\x34\xf0\x79\x72\x61\x30\x5f\x55\xef\x35\x5b\x81\xb1\x16\xc0\xd7\x7c\xd4\x04\xa2\xfa\x80\x35\x0d\xcb\xd3\x65\x26\x4f\x9e\xc8\xb0\xb1\x2c\xe5\x55\xf9\xae\x77\x22\xf4\x46\x46\xbb\x40\x40\xf8\x6a\x71\x01\xb4\x18\xb4\x54\xa0\x40\x1d\x4d\x86\xe7\x92\xa2\x2d\xc6\xfb\x0f\x8d\x0f\xde\xb4\xfc\x92\x54\xd3\x7c\x51\x89\x2e\x25\x4c\x1e\x5a\x45\xa7\xd8\x6d\x94\x2e\xb4\xb7\x0d\xcc\x3e\x41\x5b\x19\xbc\x4a\x5a\xf4\xe3\xda\xe6\x44\x45\x94\x61\xc9\xaa\x34\x2c\xf5\x77\xb6\x32\x26\x00\x44\x58\x11\xa4\x57\x80\xd7\x6c\x45\x49\x22\x3d\x22\xf8\x38\x25\xa0\xd0\x84\xb1\xd7\xb5\x34\x0e\xfe\x35\x4a\x41\x0a\x08\x07\x5d\x8e\xa6\xec\x0b\xbe\xa6\x7f\x3a\xc6\x28\x2e\xcf\xc1\xa9\x54\xc6\xf1\x94\x16\x84\x1b\x07\xce\x5e\x0b\x6a\x80\x38\xb5\xf7\xf7\x09\xcb\xa2\x70\x5e\x2e\x52\x08\x24\xce\x05\x4b\x93\xa5\x08\xc5\x3f\xef\x57\x94\x67\x19\x5e\x3c\x90\x50\xdb\x9d\x72\x81\x19\x6e\x6b\x40\x36\x06\x6e\x46\x49\x58\x0e\x33\xd0\x89\xa6\x29\x09\x4b\x92\xb1\x12\x8a\x99\x15\x97\x24\x1f\x93\x98\x95\x11\xcb\xe2\x30\xab\x74\x85\x25\x25\x65\x8e\x22\xfb\x92\x91\x28\xcc\xe4\x15\x04\xdc\x15\xed\xef\x13\x78\xf8\xa9\x02\x84\x64\x11\x52\xb0\x3d\x21\x18\x8c\xd8\x98\x1f\x2b\x74\xcd\xa5\xf0\x81\x79\x73\x72\xf4\xe1\xe4\x58\x87\x8e\x80\xb8\xb7\x8b\x34\x7d\x93\x94\x15\xcb\xb8\xc0\x2e\xb6\x10\x3c\xa0\x1b\x01\xf8\x30\x41\x58\xfb\x3a\x31\xf0\x84\xaf\x8e\xa8\xe3\x65\x9e\xa6\xcc\x32\xdf\xdd\xdf\x07\xea\x88\xdb\xef\x7d\xbe\x15\x92\x79\x58\x55\xac\xc8\xf8\x29\x25\xca\xe7\x89\xb4\xa0\x05\x0a\xee\x94\xa2\x4a\x3c\x1d\x45\x79\x0c\xb7\x4f\xbc\x9e\x8f\xa7\xc7\xa7\x7d\x52\x30\xb4\xc2\xdc\xe5\xeb\xa4\x14\xf1\xfd\xe1\xda\x0d\xef\xab\x0a\xb6\x28\xc1\x45\x9b\x8b\x15\x87\x72\x92\x8a\xf6\xa5\xd6\x0e\x13\x33\x14\x5a\x45\x8a\xed\xe8\x02\xce\x86\x06\x0d\xe0\xdb\x94\xb1\x44\x61\x41\x56\xed\xa4\xa8\x1a\xb2\x73\xd6\xca\x2e\xb2\x95\xb8\x26\x3f\x4c\x8d\x41\xd1\x55\xf2\x36\x9b\x98\xa2\xb1\xe0\x54\xc1\x16\x66\x4b\x34\xc4\x79\x72\xd1\x20\x66\x08\x3c\x2d\xe5\x1f\xff\x6a\x90\x2f\x05\x3a\x66\x31\x43\xa3\xa2\x0d\xb7\x65\x9a\x27\x9b\x76\x3a\x6b\x6a\x78\xdc\x58\x00\x9c\x0f\x20\xa9\x03\x45\x09\x5f\x12\x5f\x7c\x77\xcb\x34\x89\x4c\x91\x89\x67\xa3\x4b\x89\x6a\xd1\x15\xb1\xb5\xbb\xb3\xd6\x5c\x35\xf8\x3c\x5b\xa8\xdd\xdf\xeb\xb1\x08\xd4\x00\xfb\x75\xd7\x67\xa7\x43\xb6\x7b\xed\xef\xec\x93\xe8\x55\x39\x87\x74\xf8\x2d\xd9\xa2\xea\x24\x25\x07\xb6\x33\xb3\x1a\xd8\xb5\xa9\xce\x37\x0f\x9a\xfc\x4c\xe9\x9c\x28\x6b\x3e\x22\x2a\xc1\x2c\xe8\x09\x56\x87\x0a\xf5\xb3\xc5\x88\x92\x3c\x03\xe5\xd7\xcb\x69\x98\x4d\x98\x21\xe4\x24\x42\xf0\x95\xd2\xde\xc0\xc8\x50\xc5\xb9\x90\x2f\x7f\x9b\x00\x56\xa5\x24\xb0\x1b\x31\x01\x8d\x81\xd4\x4c\x4e\xe5\x9a\x0b\xca\xe2\x7a\xee\x21\x5d\x9d\x7f\xcd\xce\xd6\xce\xc0\xe2\x30\x16\xc6\xb1\x52\x64\x9a\xa7\x03\x33\xbd\x3e\xeb\x01\x21\x53\xc1\xaa\x86\xd9\xb8\x83\xd1\x18\x77\x1b\x16\x90\x25\x5e\x08\x64\x5c\xc5\xaa\x89\x90\x9b\xe7\xd9\xc8\xe8\xb6\x24\x3b\x6a\x6a\xc0\x9d\xd6\x3a\xde\xa1\x4e\xaf\xd9\xe2\xbf\xc8\xf3\x94\x85\xe8\xc8\x68\x8e\x51\x63\x0b\x26\x51\xcc\x16\x6c\x62\x59\x11\x8e\x6a\xf5\x3a\x6e\xee\xf6\xb4\x70\xe6\xdc\xa1\x93\x60\x0d\xa8\x57\x9f\x7f\x3e\xe9\x1b\xf3\xd9\x18\x98\x06\x50\xdb\x9f\xde\x62\xe8\xad\x7b\xa6\xbb\x64\x6d\xd2\x7c\xb2\xba\x62\x12\xe7\x53\x13\x13\x53\x5e\xd8\x8f\xa3\x8e\xe7\x60\xdc\xba\x9e\x6a\x73\x46\xec\x8d\xed\x1d\xae\x2f\x38\xa7\x8f\x62\xae\x98\x4b\x0e\xdc\x33\x51\xdf\x20\x24\xe2\x3b\x9b\x71\x85\xa5\x92\x91\xd7\xff\x16\x85\x7a\xf3\xd9\xee\x11\x35\x36\x96\xb3\x6a\x96\x47\xab\x87\xeb\x12\x90\x56\xe9\x4d\x07\x81\x47\x54\xb9\xa9\xb8\xd9\xce\x34\x4f\x4a\xb8\xce\x48\x22\x79\x3d\x00\x49\x7b\x59\x9e\xe1\x1b\xe3\x7b\x25\xe6\x1a\x6a\x7e\x6d\x51\x82\x25\xb4\x09\xc0\xe6\x9b\x0a\x2b\x58\x42\xeb\x75\xc5\x1d\xa9\xdb\xbb\xd9\xc0\x7b\x89\x89\x8d\x35\x61\x9c\x9b\x07\x33\xef\x5f\x76\xd9\xf1\x6f\xb8\xc3\x98\xe6\xd5\x07\x26\xdc\x26\x7f\x16\xee\x48\x68\x30\x02\x37\x1c\x8b\xd9\x6c\x75\x26\xa3\x57\x39\xc2\x79\x96\xe7\x73\x21\xb6\x1b\xa9\xb3\xf0\x9a\xc9\x27\xa7\xa1\xe4\x78\x21\x0f\xc5\x32\x99\x12\x53\x53\xc5\x4f\x32\x45\x38\xc7\xb3\x91\x80\xe0\x87\xf0\x30\x13\x5e\x3d\x28\x84\x57\x45\x18\x5d\x97\xe0\x21\x81\x76\x00\xa5\x7a\xbc\xa9\x58\x64\xa5\xf2\x90\x52\x55\x28\x95\x55\xb1\xc8\x0c\x79\xb1\x58\x64\x6a\x62\x48\x84\x6a\x01\xd1\x8c\xf0\x9f\x52\x8c\x54\x6a\x36\x75\x02\x54\xa5\x91\x5d\xcb\xdb\x39\xcf\x8c\x64\x58\x17\xcb\xb0\x0e\x3e\x1c\x12\x53\x54\x9b\x72\xf9\x4f\xa5\xd4\x63\x7f\x10\x9d\x89\xde\xaf\xaa\x13\x9f\x64\x8c\x1d\x4b\xb2\xb5\x4a\xcc\x05\xde\xaa\xfd\x66\x30\x65\x1c\x64\x72\x63\x53\x25\x61\x84\xd1\x74\xd0\xfb\x5a\xe4\x6a\x6d\x3a\xd1\x4a\x1d\x2e\x6e\x6a\x9a\xa0\x9c\x73\x09\x53\x53\x67\x88\xd3\xf4\x51\x7c\xc3\xcf\xb3\xb1\xc7\xc5\x50\x5e\x8d\x2c\xff\x0a\x7d\xed\xf8\x21\x11\xa3\x65\xe3\x24\x4b\x60\x72\xcd\xf3\x0c\xe2\x25\xc0\x11\x08\x1b\xe6\xe7\x6b\x6b\x82\x6a\x09\xbf\x84\x6b\x2d\x5e\x39\x3f\x31\x2f\x2a\x06\x2a\x37\x24\x39\x2c\x66\x30\x85\x54\x3a\xfc\x30\x8b\xd5\x85\x6f\x97\xbc\xca\x0b\xc2\x6e\xc3\xd9\x3c\x65\x7d\xd1\x79\x57\x5f\xe8\xf4\xc4\x93\x85\x8d\xc0\x97\xc1\x73\xe2\x99\xad\x60\x8a\xb9\x17\x83\x07\x1f\xc6\x68\xe1\x1f\xe5\x39\xaa\xea\xe1\xe3\x75\x7c\xa1\x82\xb1\x94\xe1\x0d\xfb\x88\xe0\xe3\x84\xa5\x9c\xa5\x3c\x57\xe8\x7a\x21\x74\xf9\x25\x67\xa6\x39\x97\x1c\x25\xb0\x67\xd5\x46\x45\x51\xdf\x17\xd5\xae\x7d\xdf\xfb\x9c\x2f\x0a\xad\xe8\x87\xf4\xa3\x28\x62\x25\x18\x82\xca\x06\x38\xfd\x85\xe9\x66\x2c\x35\x1f\xc2\x2b\x92\x94\xb9\x33\x78\x09\x2b\x41\x7f\x31\x4a\xb2\x98\xd8\x98\xf1\xea\xf3\x45\x55\x26\x31\x43\xc3\x56\x96\x18\x8c\x21\x04\x33\x44\x4e\xbc\x59\xf2\x1b\x5c\xf1\x75\xc9\xa9\xd0\x9a\xcc\xf9\xee\x0a\x6d\x3b\x74\x27\x61\xc1\x74\x2e\x6f\xc0\x9c\x0e\x62\x3a\x51\x12\xa6\x79\x36\x41\x3f\x4f\xde\xa9\x34\x5c\xc1\x15\x03\x1f\xf4\x5f\x8a\x70\x3e\x67\xb1\xb1\x2b\x85\x42\x21\xc4\xa2\xdc\x30\x62\x45\x2f\xdf\x77\x79\x25\xb4\x0f\x0d\x53\xd6\x9d\xa3\x61\x9a\x92\x28\x8c\x38\xf9\xf7\x67\x6c\x96\x8b\x6e\xf1\xbe\x27\xd9\x08\xac\x81\x39\x06\xf9\xa2\x82\x0f\xde\x00\x8e\x18\x39\xce\xf1\x15\xbb\x92\xd5\x3a\xac\xdc\x82\x97\xb8\x97\x13\xac\x99\xaf\x04\x97\x01\x47\x61\x9a\xc2\x40\xae\xf2\x45\x61\x2e\x33\x4a\xf2\x6a\xca\x8a\x65\x22\x8c\x28\x5f\x62\x1b\x86\x7e\x4b\xd8\xc3\x4a\xfd\x52\x9e\x11\x08\x0b\x2e\xec\x87\xf3\x42\x2c\x24\xb8\x97\x66\xdd\x61\xc6\x8f\x90\x35\xaa\xef\xef\xcb\xb5\x20\x3d\x58\x87\xd9\x65\xc1\xc6\x56\x48\x58\xe3\x5e\x81\x92\xcb\xda\x5d\x83\x71\xf7\x84\x37\x85\x75\x85\xba\xba\x41\xac\x9d\xea\x0a\x36\x7e\x42\x02\xf8\xab\x96\x12\x24\xfe\x69\xc2\xe0\x9d\x77\x39\x11\x10\xe6\x49\xd7\x4e\x56\x65\x9a\xa1\x6b\x95\x28\xd4\xac\x07\x2f\x32\x33\xca\x9f\xe0\x97\xc3\xed\x97\x2e\x27\xdc\x26\xbb\x78\x35\xb6\x4b\x86\xdb\xbe\x8c\x81\x4e\xfa\x8d\x6d\x39\xbd\x99\x81\x9c\x61\xf5\x44\x27\x29\xd8\x3a\x94\x55\xd0\xc4\x7e\xc7\x99\x75\x3b\x0a\x8f\x86\x7a\x31\x03\x67\xca\xcb\x7c\x91\xc1\x5e\xa6\x10\x71\xd2\xa9\x56\xc9\x34\xc2\xd7\xeb\x31\xf1\xd2\xf6\x7b\xfd\x66\x70\x07\x29\xdc\xf6\xf0\xb9\xfb\xb3\x2a\x54\x48\x39\xe9\xf2\xf8\x56\x6a\x86\xdb\x02\xa0\xd0\xac\xd5\x6c\xa2\x09\x91\xf9\xfa\xcd\x90\x2e\x86\xda\x80\x40\xa0\x26\x12\x34\x2a\x0e\xc4\x9f\x1a\xec\x11\xf8\x90\xa1\xf9\x81\x6e\xd6\xad\x07\x93\x97\xe0\x02\x3d\x56\xcd\x89\x6f\x05\xe5\xe4\x6b\x78\x6b\x72\x43\xb8\xd6\xbe\x0d\xa2\xaa\x10\x73\x47\xf2\xee\xe0\x81\x4b\x0c\xa8\x84\x92\xf3\xe1\xb6\x3d\xc7\x87\xdb\x94\x0c\xb7\xf5\x7c\xc3\x6f\x67\xbc\x31\xb1\x6d\xb4\x44\xae\xa0\x04\x7e\x09\x6c\x87\xdb\x17\xd6\x33\x01\x9b\xac\x34\x76\xdc\x53\x03\x96\xb9\x51\x72\x79\x83\xb4\xbe\xbb\xab\xe0\x22\xf7\xea\xd4\x0d\x2f\xb6\xa6\x36\x1f\x6c\xb9\x2a\xad\x41\x3d\xee\x5e\xd4\x2c\xa3\x2f\x70\x9a\x2f\x75\x1b\x83\x17\xad\x9b\xf8\xf2\xa3\x5b\x77\x0b\x5a\x57\xb2\xda\x06\xab\x08\xe7\x7c\x7e\x08\xb6\xe8\xb9\xbb\xb2\xd6\x6f\x28\xb7\x96\xfa\xa1\xb0\x5e\x8a\x0f\xf8\xe7\x7c\x81\x2f\xb2\xcc\xe1\x05\x9d\xfa\x25\x8e\x61\x53\xc1\x91\x42\xe3\x60\xe0\xc7\x9e\xc1\x1f\x39\x5b\xee\x92\xd7\x59\x59\x31\xb0\x77\x02\x43\x82\x18\xe1\xfe\x76\x76\xfa\xae\x8b\xde\x56\xc9\x78\x55\x47\xc3\x97\x6a\x12\x78\x64\xda\xc9\x15\x0c\xd9\x2d\xd4\x35\x05\x95\xfb\xfb\x7a\x7e\x26\x32\x76\x54\xd2\x8e\xd1\x4a\x6c\xed\x57\xf6\xca\xf2\x9a\x50\xb0\x0d\x82\x9c\xbd\xdc\x58\xcb\xf2\xc2\x98\x4f\x0b\x7b\xa5\x1b\x01\x0e\xed\xf6\xfa\xa4\x65\xf7\xd2\xe4\xed\x93\x86\x8d\xc5\x59\xeb\x7d\x37\xe1\x41\x6e\xdd\x6f\xcd\xa9\x71\xd7\x3e\xa9\x31\x4c\xc1\x29\xfa\xc4\x65\x70\xb1\xd9\xb5\xb8\xa1\x5f\x4d\xf4\xed\x37\xa6\xaa\x22\xee\xf0\xf6\x6b\x29\xf2\x36\x8c\x1c\x45\xd5\x22\x4c\xd3\x15\x19\x27\xb7\x24\x5f\x14\x20\x26\xc2\xa3\xe2\x2d\x96\x2e\xfa\xbc\xbb\xff\x67\xc2\xca\x34\xc9\xaa\xbd\x38\x29\x45\x04\xfd\x30\xaa\xf6\xb3\x7c\x2f\x66\xf3\x82\x45\x60\x0d\x88\xfe\x4c\xc4\x0e\xa5\x0a\xd7\x89\x42\x4e\x0c\x30\xa9\x66\x94\xf6\x80\x59\x5a\xcd\x30\x4d\xd4\xd7\x6c\x97\x66\x46\xda\x13\x5c\xa1\xd5\x74\xab\xd9\x78\xeb\x8f\x9a\x6f\xc9\x38\xe1\x9a\xd1\x8b\x5f\x35\x88\xd2\xd4\xc5\xd8\x59\xc6\x9c\xb5\x5c\x7e\x74\x51\xbc\x24\x01\x64\x0c\xce\x7f\x7f\x2f\x11\xd3\x89\xb5\xc2\x50\xe8\x6d\x1e\xf3\x0a\xa4\xce\xdd\xa9\xa8\x1e\x2f\xbd\x64\x95\x98\x5b\xaf\xe5\xe3\x64\x41\x6b\x56\x97\x9f\xe3\xbc\x16\x8b\x97\xb6\x64\x5e\x97\x66\x7a\x36\xdb\x36\x7a\x4d\x41\x0e\x5e\xa4\x31\x1c\x76\xc6\xfc\xc0\x38\x1c\x0e\xb7\x81\xa5\x5a\x46\x92\x3c\x95\x24\x99\x7c\x53\x0b\xee\x96\x85\xf9\xa1\x3a\x8a\xe4\x63\xc1\xb3\x11\x1c\x7e\x9b\x4c\x50\xd6\xd3\x25\x27\x58\x8b\xd2\x6e\x81\x53\x8c\xde\x15\x92\x8c\x84\x44\x1b\xe3\x72\x24\x7d\xac\x17\x94\x02\xf3\x34\x89\x12\x7e\xfe\x82\xed\x64\x03\xbe\xf0\x56\x1b\xc7\x8d\xef\x33\x9b\x51\x1a\x6e\xfb\x0d\x31\x8b\xbb\x49\x96\x68\x5d\x58\x2b\x80\x79\x3d\x67\x03\x35\x18\x16\xd6\x42\x41\xab\x9b\x2f\xb1\xc6\x1a\x0c\x3f\xff\xa0\xe9\xa7\x3e\x8b\x3d\xb5\xb0\xdb\xdf\x27\xaf\x85\x77\xab\x26\xbe\xda\x57\x71\x59\x80\xa2\x46\x2c\xd3\xa4\x2a\x6d\x23\x0d\x1d\x6e\xae\x2a\xc2\xac\xc4\xfb\x1c\xab\xfe\x2a\x27\x61\xb6\x32\xcd\x22\x44\x03\x60\x97\xc1\x5b\xd8\x2d\x6b\xca\x62\x31\xb3\x06\x24\x41\x91\x81\x95\xa8\x3e\xb0\x6a\xb6\x8a\x69\xed\x44\x52\x75\xc9\xa9\x3c\x5a\x73\x94\x49\x39\x0d\xe3\x7c\x89\x1a\x05\xe1\x86\x64\x96\xa5\xc2\xa8\x3a\x4c\xd3\x7c\x59\x5a\x4d\x48\x66\x8b\x4a\x8f\xaa\xc8\x53\x92\x17\x31\xe3\x42\x06\x9f\xec\x70\x67\x97\x60\xe0\x33\x38\xe4\x8f\xd3\x7c\x49\xaa\x7c\xbe\x17\xe7\xcb\xac\x6b\x53\xdf\x42\x37\x20\x0e\xef\x38\xc4\x27\xea\xe4\x2d\x97\x7d\x1f\xe3\x4e\x26\x3e\x8e\x86\xbd\xee\xd3\x87\x04\x41\x15\x3e\x59\x71\x33\x07\x9e\xaa\xb9\x21\x26\x68\x7d\xe2\xa9\xf9\x71\x9c\xc4\xed\x6f\x0e\xc8\xcc\x86\x1b\xfd\x36\x31\x40\x5d\xe3\x73\x82\x37\x3c\x6d\x30\x06\xef\xd8\x78\x01\x44\x2f\x59\x71\xc3\x0a\x02\xea\x2b\xe4\xea\x10\xd5\x79\xb4\xa8\xea\x38\x90\x30\x8b\xad\xd1\x6c\x8c\xde\x1d\x83\x9a\xa7\x4b\x5e\x08\x93\x7c\xe1\xed\x4d\xad\xab\x4f\x32\xe5\x0c\x39\x53\x68\x74\xbb\xdd\x58\xb4\xd2\xb5\x9a\x30\x26\x9e\xba\xc6\xc3\x21\x58\x22\x93\x65\x1c\xfd\x2a\xbc\x66\x04\x5c\x49\x65\x85\x67\x67\x1f\x28\xe1\x08\xa0\x91\xd3\x8c\xcd\xf2\x62\x45\x52\x16\x5e\xdb\xf5\x7f\xcc\x45\x5c\x47\x64\xc0\x61\x29\xcd\x78\x43\x3c\x4d\x18\xcb\x78\x16\xae\xc8\x34\xbc\xe1\x2b\x33\x99\x4c\x58\xc1\x62\x12\x0a\xdd\x11\xaa\x8c\xc8\x68\x65\xd5\x2d\x55\x8d\x80\x42\x26\xf4\x86\x9c\x15\xf3\x55\x5f\x1f\x18\x4a\x96\x4c\x34\x90\x83\x9a\x6a\x91\x19\x8a\x3f\xd0\xaa\xcd\xc2\xd5\x88\x59\x6d\x28\x75\x56\xd7\x64\x43\xb5\x39\xdf\x7c\x49\xaf\x41\xa5\x8a\xbc\x58\x64\x5e\x53\xac\x6a\x33\x8e\xf8\x46\xf5\xbb\x8f\x15\x8e\xf3\x22\x62\x9f\x6a\xc1\xe1\x61\x4a\xbe\xcb\x2b\x86\xcb\x12\xf5\x8b\x5c\xe6\xe7\x1c\x0f\x97\x3a\x74\x59\x1a\x57\x1b\x41\xeb\xd0\x6f\xe3\x79\x70\xf0\x5d\xf7\x69\xb7\x87\x01\x62\x9b\xd7\x93\x2b\x29\xb6\xc6\x93\x37\x81\x1a\xad\xa0\x9b\xa8\xa3\xe1\x36\x2d\xee\xb6\xab\x09\x23\x06\x64\x03\x80\xd7\x14\x59\xfc\x11\x44\x7f\x14\x9b\xf9\x9d\x11\xf6\xcd\x91\x37\x26\x94\xdf\x3c\xc7\x3e\x35\xde\xc2\x37\x4c\xc8\xfa\xd5\x0f\x80\x34\x58\x7e\x64\x79\x3e\xaf\xd5\x24\xe4\xcb\xa6\x2a\xcc\xd1\x6a\x2b\xfe\xd0\x0d\x92\x6d\xe7\xd4\x40\xd5\x49\x93\xb8\x69\x0a\x0e\x4e\xae\x43\x51\x25\x38\xca\x53\x18\x19\x6e\x7f\xcc\x49\x28\x6e\x29\xa6\x4c\x9e\xab\x88\x7e\x89\x77\x95\x2f\x48\xc6\x70\x4b\x2e\xe7\x2c\x4a\xc6\x2b\x25\x1c\xde\xe9\x73\x9d\x78\xcb\x54\x44\xde\x90\xaa\x6a\xa9\xf0\x17\x57\x14\x58\xd0\x51\x04\x78\x3e\x28\xd7\xa5\xe0\xd6\x34\x0d\x97\x76\xaf\x36\xae\x80\x8d\x14\xaa\xe7\x7a\x5a\x87\x6e\x8c\xd4\xb2\x56\x85\xf6\x87\x69\x6c\xd6\x14\x2f\x2d\xcb\x1e\x4b\xec\x74\x05\x39\xfb\x92\x95\x04\xae\xaa\xc0\x33\x4c\x65\xf4\x9d\x58\xb3\x3e\xa1\x95\xb9\x92\xe0\x71\x17\xd6\xba\xad\xaf\xe7\xd3\x6d\x14\xb1\x57\x9e\x4d\x15\x4b\xd6\xfe\x7d\x52\x86\x32\x3b\xda\x51\x51\x5d\x84\x20\x3b\x83\xbb\x36\xe1\x19\x83\x86\xb0\x7c\xbe\x71\xa1\xb4\x2f\x0e\x39\x37\x65\x57\xca\xa7\x5d\x72\x64\xbc\x74\x67\x8b\x1a\x20\x38\xea\xbb\x3a\xac\xec\x26\x09\x45\x2d\xd8\x5e\xb6\x83\x17\x4c\xad\x12\x30\xe5\x87\xab\x9b\x24\x62\xb0\xb7\x84\xd6\xae\x09\x26\x0f\x86\x15\x9f\x57\x13\x29\x75\x82\x14\x2c\xe5\x39\xbb\x26\x01\x3e\xc4\xfc\xd8\xd2\x36\x42\x34\x4f\x90\x86\x25\x62\xdd\x1c\x0b\x0f\xaf\x78\x1a\x05\xe2\xff\xea\x32\xcd\x5f\xf9\xbe\x1a\x2f\xf8\xa1\x4e\x3a\x42\x36\xcb\x38\x78\xe6\x54\x67\xc4\x92\x2c\x32\xf9\x94\x4a\x62\x1f\x6a\xd0\x4b\x31\xe6\x75\x08\x0e\x62\x8a\xea\x24\xcd\xf3\x39\x15\x95\xfe\x5a\xeb\xee\xaf\x78\xf3\x56\x4d\x59\x26\x9f\x8e\xee\x92\x23\xbb\x01\x76\x5b\x15\x21\x8a\xec\x10\xed\x54\x5c\xcd\x09\xc1\x0a\xee\x5e\x19\x09\x6f\x72\xb8\xae\x1d\xad\x48\x94\xcf\x57\xf2\xa2\x1c\xf9\x18\xc9\xb3\x2a\xc7\xd6\x7f\x05\x61\x89\xb7\xe7\xc8\x4a\x5c\x44\xe4\xa5\x92\x0a\xef\x4d\x43\x92\xe5\x7b\xf9\x9c\x80\xf5\x2c\x74\xbd\x8b\x41\x90\x78\x83\xf3\x22\x1f\x85\xa3\x74\x65\xb6\x9c\x8c\xad\x51\xdb\xb1\x4f\x37\xda\x52\x0c\x6d\xed\x13\x79\x99\x08\x63\xa0\x1e\x3e\xd7\x60\x70\xe9\x0a\x22\x1f\xf8\xbd\x18\x86\x6a\x46\x4c\x25\x5d\xff\x03\x23\x50\x17\x01\x1b\xb6\xd3\xfa\xb6\xed\x02\xe9\x09\x66\xef\xf8\x9b\x98\x8c\x6b\xdb\xaa\x38\x8c\x95\xe1\x3d\x20\x5b\xd9\x1c\xcd\x61\x44\x8f\x12\x3e\xeb\x0f\x6c\xd5\xed\x45\x4d\x73\x93\xb6\x67\xb9\xcc\xb3\x8f\xb6\x2b\x69\xaa\xef\x54\x9b\xf8\x28\xd8\x41\xad\x3e\xf5\x5c\x94\xb6\x72\x6a\x7e\x8c\xab\x4e\xda\xc7\x34\xb8\xc9\x40\xb6\x09\xde\x1e\x08\xce\x43\xea\x1d\xfe\x15\xbd\x1a\x32\x19\x40\x28\x5d\x91\x64\x36\xc7\x8b\x09\x16\x63\xd8\xf0\x5f\xad\xe1\xfd\x95\xc4\xac\x62\xc5\x2c\xc9\x58\x49\x12\x9b\x7f\x73\xc9\xa5\x14\xab\x80\x4b\x2e\x19\xe0\x07\x7c\xba\x4b\x4e\xf9\xd6\x8e\x4e\x5f\xa0\x5f\x58\x64\xaa\x25\xb0\xc2\x62\xe9\x98\x2c\xb2\x2a\x49\xc9\x78\x51\x80\x9e\x0b\x8e\x5d\xf6\x06\x21\xee\x32\x21\x9a\x52\x97\x1c\xe7\x62\x9d\xc3\x39\x63\x19\xae\xc8\x4d\xc9\x57\x1a\x1e\x07\xe7\xac\x98\x85\xc0\xf4\x1a\x3b\x0e\xcb\x32\xce\x99\xbd\xba\x43\x88\x73\xcd\xc2\xcc\xe2\x50\x55\x32\x13\xec\x01\x23\x4e\x01\x1f\x13\x1c\x09\x56\x3b\xb8\xaf\x8b\x25\xcb\x81\xa9\x30\x69\x48\x1c\xed\x0b\xf8\x82\xcd\x18\xc7\x6d\xcc\x5b\x2a\xcd\x93\x70\xfb\xa4\x54\xb7\xc7\x0f\x89\xd2\x2d\xaf\x83\xfd\x2e\x8b\x68\xd2\x62\x15\x6d\x9f\x10\x3a\x9d\x06\x6e\x63\x57\xb8\x09\xa5\x30\x8e\x4f\x38\x35\x6b\x87\x38\x2b\xa3\x66\x4f\x27\xd8\x85\xbc\xe3\xed\x74\xc8\x96\x7b\xfd\xce\xd3\xdc\xcd\xbd\x09\x59\x5f\xb9\x98\x01\x1c\xec\xb6\x5c\x84\xe3\xe7\xfe\x29\x68\xb7\x60\x1f\x52\x5e\x4e\xc2\x8c\x29\x8c\xf9\x56\x81\x31\xa4\x52\x16\x5e\x4b\x91\x45\x46\xf4\xd1\x16\x69\xce\x1e\x8b\x27\x62\x06\xd2\xbd\x5c\x70\x18\xec\x1d\x4c\x6f\x76\x0a\x36\xde\x21\x65\xc2\x57\x0b\x6f\x6f\xa7\x24\x21\x97\x87\xd1\xdf\x92\x8c\xc2\x48\x35\xd5\x2c\x44\xc9\xc3\x44\x97\x77\x20\xc9\x26\x29\xab\xf2\x4c\xd8\xda\xf0\xc5\x28\x05\x55\x54\xad\xc8\xfd\x7a\x9a\xa7\x31\x2e\x1b\xdd\x16\x36\xd3\x58\x39\x25\xf3\x02\x3c\x8d\xe5\xf6\x2c\x33\x50\x0e\x1b\x31\x9e\x3e\x09\x8b\x51\xc8\x37\x76\x34\x19\xe7\xeb\x1e\xb7\xec\xb0\x12\xad\x8f\x78\x87\x62\x57\x3c\xe3\xa3\x0a\x63\x5f\xbb\xb6\x6b\xd9\x36\xc4\x34\xf0\x8d\x92\x5d\x34\xad\x69\xb9\x1b\x70\x54\x1e\xce\xd4\x31\xeb\x39\x77\xf2\xa4\x73\xbf\x79\x3b\x22\x6e\xcc\x75\x7d\x8f\x99\x75\x66\x1b\x0d\x8a\xc8\x47\x28\x34\x75\x05\x9b\x16\xd8\x63\x1c\xf0\x6b\x86\xae\xd6\x36\xdc\x64\x65\xf9\xd0\x99\xda\xa6\xc7\x46\x33\x54\xf4\x2a\xb6\x41\x1e\xd8\xbd\xad\x87\xb7\xe4\x8b\x75\x75\x73\x38\xe8\x85\xcd\x47\x6c\x0b\x56\xff\xc1\xed\x59\x86\x26\xc0\x83\x89\xf4\x05\xa8\x47\x18\x90\x31\x06\xda\x4d\xa9\xed\x07\x3a\xbe\x26\xb8\x00\xa9\xdf\x70\x74\x1f\x0a\x20\xd0\x74\x2d\xd2\xae\x3c\x53\x54\x88\x59\xca\x2a\xf6\x3b\x8a\xae\xe5\xbd\xaa\xbc\xa5\x65\xd9\x03\x97\xb4\x58\x40\xb6\x54\xbb\x32\xae\x9b\x15\x0c\xec\x12\xb6\x99\x80\xf1\xe5\xc0\x35\x19\x86\x34\xd9\xea\x59\x65\x1c\xf0\x76\x48\x33\xa0\x41\x54\x37\xfe\xfb\x3d\xa1\x27\x7e\xc7\xfc\xf8\x57\x84\x9f\xc0\x25\x5c\x0f\x3c\x21\xd2\x8d\x35\x51\x9b\x1d\x2d\x31\x27\x1a\xaa\x69\xb8\x5d\xab\x9a\xdf\x32\x56\xaf\x36\x15\xcc\x88\xd6\x93\x64\x93\xad\x06\x56\x2b\x35\xc8\x9c\xa6\xe2\x77\xd3\x29\x61\xd3\x6d\xb8\x00\x71\x2e\x2e\xc5\x55\x5f\x98\xad\x0c\xdd\x84\x79\x29\x87\xfb\xbf\x11\x4e\xc8\xe3\x3b\x1c\x97\xfd\xe4\x1d\x88\xd0\xd1\x89\x39\xe0\x53\x34\x1e\x36\x1b\xb6\xce\x94\x32\x08\x6c\xca\x05\x4a\x10\xbf\x97\xcc\x3c\x32\x76\xc9\xa7\x6c\x9c\x17\xd5\x22\x0b\x2b\x96\xae\xa8\x79\x4c\xce\x6f\x18\x98\xee\xb6\x55\x8e\x1c\x11\x63\x34\xcd\xb8\x88\x8b\x7e\x10\x5c\x68\x49\x63\x49\x93\x12\x0d\x32\x9a\x3a\x0b\xb8\xe1\xa3\x42\xe6\x05\x05\x8a\xfe\x70\x4e\x65\x31\x2f\x6d\x5e\x97\x94\x03\x32\xcd\x97\x5c\x8a\x16\x3d\xb7\x0f\x8b\xa6\x0c\xaa\x0e\xea\x20\x69\x25\xa5\xd3\x42\x02\xa1\x23\x42\x32\x5d\x4c\x18\x89\x59\x98\x5a\x27\x61\x9c\x4d\x79\x1a\x9b\xfe\xe1\xe7\x17\x03\x1b\xa6\x45\xcb\x6d\x4d\x15\xe2\xd6\x52\x17\x6f\xb5\x2f\x19\x78\x1a\x0f\xec\xe2\x5f\xa5\x33\x77\x1e\x1e\x36\xa7\x61\xfb\xf5\xb8\xd8\x55\x5b\x95\x76\x77\x8f\x40\xa8\xf9\xa2\xc8\xed\x7e\xc3\x0b\xe0\x0d\x5e\xd1\xf2\x3f\xf3\xda\xfe\x49\x1b\xc9\xda\xdc\x43\x0d\x8a\xd4\x08\x54\xfb\xb9\x76\xc3\x0d\x89\xa6\x4d\x27\x30\x6d\xa4\x53\x33\x6b\x53\xce\x9c\xeb\x6d\xba\x0d\x5e\x4b\x10\x78\x43\x87\x8e\x68\x0b\xc9\x61\x3b\x2c\x25\xa5\x77\x4b\xc9\xca\x08\x5e\x71\x0b\xe6\xa6\x2b\xd7\x6a\xfa\x16\x58\x53\x8f\xdc\xdf\x93\x95\xfe\x79\x40\xf6\x09\x16\xe0\xbf\x56\xc2\x6e\xda\x14\x77\xac\xe2\xb7\x5c\x90\xc4\xe2\x2b\x15\x84\x76\x93\xcf\x8a\x38\xbe\x9c\x7c\x59\x84\xa9\x97\x8f\xae\x8e\x28\xc9\x47\x57\x2f\x0c\x74\x93\xd2\x4c\x57\x07\x21\xe1\x5b\x33\x74\xde\x5a\x1d\x5d\x1d\xe1\xb6\x85\x56\xb1\x3b\xbc\x0f\x90\x18\x88\x60\x1d\x70\x63\xae\x80\x5f\x34\x01\xbf\x50\xc0\x2e\x8d\xf4\x75\x8c\x61\x08\x7f\xcd\x56\xe5\x91\x13\xd1\x83\x37\x69\xc5\xf3\x28\x5f\xd4\x21\x5e\x20\x04\x47\x1f\xea\x10\xf1\x05\x00\x25\x28\xa2\x5e\x59\x74\x9a\x1f\x66\xcd\x91\x0a\xcc\x5a\xec\x28\x05\x70\x12\xc5\x69\x82\x36\x5a\xbc\x79\x8a\x05\xce\x93\x0b\xb0\xce\xda\x12\x94\x3e\x97\xa9\x17\x48\x73\xfd\xed\x37\xbc\xf7\x68\x5c\x50\x99\x51\xac\xed\x51\x32\xe2\x6a\xde\xb0\x22\x19\xaf\xde\xa7\x61\x92\x21\x39\x5c\xe7\xbf\x1a\x80\x11\x6f\xd3\xb2\x68\x7d\x1b\xce\x3f\xe6\x20\xe0\xc1\x1b\xaf\x61\x56\x79\x13\x56\xc9\xdf\xf6\x63\x8c\xd6\x45\x83\x04\x51\x9b\x68\x83\x77\x91\x11\x75\x3b\x12\xe0\x68\xe9\xa9\xda\xaa\x17\xaa\x87\x45\x8b\xdc\x96\xea\x04\x94\x20\x2e\xb3\x70\x8b\x76\x63\x36\xe7\x67\xcc\xd3\x4c\x2c\xf5\xd2\xb9\x1e\x74\xea\x3b\x33\x4f\x46\xc0\x46\xc0\x12\xa0\x56\x49\x52\xa2\x37\x17\xdf\xa3\xe1\xac\xa2\xc9\xfa\xbe\xc8\x6f\x57\xe0\xaa\x24\xb5\x69\x7c\xb7\x47\x23\xb1\x1c\x2d\xb4\xf0\x0a\x22\x84\x7b\x3d\x0c\xd0\x22\xce\xfd\x33\x55\x8b\xa6\x06\x9e\xb8\xc5\x4d\x5a\x57\x3c\x00\x18\xa6\x65\xae\x30\x98\x85\xd7\xec\xfd\xa2\x40\xb1\x5d\xdd\x82\x99\x18\x60\x10\x18\x81\x85\xd1\x88\x52\xeb\x81\x38\x73\x93\x5f\x4b\xcd\x20\x62\x08\xaa\x6d\xa1\x02\xef\x42\x1d\xf0\xcf\x11\x11\x4b\x8e\x73\x83\x8c\x91\x32\x99\x64\x61\x2a\xd4\xe1\x46\xed\x3a\x48\x3d\xd0\x8f\xe4\x99\xe9\xeb\x66\x58\x1f\x29\x79\xb2\x5b\xab\xff\x37\x56\xe4\xd0\x61\x78\x0b\x00\x14\xf1\x20\xe0\x18\xcd\x24\x25\x9f\x61\x18\x0e\xa7\x98\x94\x70\xa9\xa4\x82\x19\x91\xbc\x20\xdd\x6e\x17\x32\xc0\xfe\x05\x6f\x43\x0a\x0c\x4e\x93\x81\x78\xc7\x17\x09\xaa\x1b\x4b\xd9\x72\x18\x45\x8b\x02\xe4\xb0\x6e\xb7\x29\x82\xe3\x84\x55\xc7\xee\xa4\xf0\x34\x4e\xf6\x32\xd2\xe9\x0d\xd3\x71\x4b\x72\xd8\x4e\xe7\x61\x40\xed\x6b\x72\xa8\x34\x77\x9b\x0a\xf9\xa4\x6f\x56\x6a\x70\xca\x03\x39\xb7\x3f\x89\x49\xc4\x87\xfd\x6d\x38\x07\x71\x43\xc0\xbf\x2e\x5f\x29\x9d\x5d\x16\x4b\x88\x63\xb1\x82\x6b\x40\x54\x10\x37\x29\x6d\x8e\x53\x5a\x83\x95\xa1\x05\xe2\xed\xca\x00\x02\x73\x33\x98\x2d\x25\x97\x27\xc3\x14\xfd\x10\xcb\xbe\x9e\x73\xe4\xcf\xe4\x98\x55\x2c\xe2\xc2\xaa\x5c\x4d\x1b\x17\x8c\x78\x12\x53\x90\x44\xcd\x3d\x61\xdc\x86\x75\x12\x73\x1d\xbb\xce\x73\xb0\x7e\x22\x78\x1a\x62\x8c\x56\x73\xa0\xd8\x2a\x18\x2e\x14\x3d\x9b\x85\x38\xdc\x95\x75\x4a\x7c\x4f\x33\x32\x4e\x8a\x12\x6f\x8d\xa8\xb8\xc3\xb3\x89\x31\x16\x53\x84\xcf\x4d\x70\x7f\x53\xbd\x10\x0a\x35\xce\x5b\x70\x61\xc9\xda\x33\xb6\x34\x54\xa9\x68\x6d\x00\x46\x03\x26\x29\x72\x34\xaf\x63\x5f\x16\xb0\xbc\xc2\x34\x7d\x10\x3d\xd8\x40\x12\x11\x78\x0a\x33\x44\xb4\x75\x90\xdf\xe7\x7c\x67\x11\x2e\x73\x94\x8f\x22\xd8\xfd\x71\x22\x2d\xc3\x22\x93\x75\xf3\xb2\x31\xbb\x61\x29\x97\xa9\xd4\x21\x24\x29\x1a\xc7\x49\xbc\x21\xaa\xbd\x66\x43\x7c\x6a\x54\xb4\x6b\x20\xfc\xd0\x4e\xc6\x67\xa0\xb1\x0e\xa8\x61\x1a\xb1\x61\x43\x03\x46\xdd\xb0\x9b\x5d\x9a\xa6\x0c\x75\xbf\x05\x9e\xdd\xb5\xb5\x12\x1a\x14\x67\xb6\x71\x54\x9e\xd9\xfb\x02\xfa\xde\x9e\x16\xc7\x7a\x1b\x54\x4b\xd5\xdd\xe3\xa0\xae\x06\x46\x70\x28\x72\x74\xd5\x9b\x6a\xed\x3f\x08\xad\x83\x6f\xc2\x35\x09\xe8\xc5\x63\x58\x6b\x62\x29\x1c\x65\xf1\xcf\x20\x5e\xf0\xe1\x9e\xb0\x4a\xd5\xae\xb5\x3d\x6d\xb8\x06\xa6\xc4\x49\x6a\xa8\x98\x94\x6a\x6e\xf2\x51\x04\x6b\xa8\x56\x7f\x0c\x6c\xa8\x26\x1c\x1f\xe2\xe6\x03\x53\x1d\x23\x3d\xe4\xe7\x0f\x8c\xa7\x71\xae\x33\x44\x6d\x51\x9a\x8b\xcf\xb2\xe7\x3b\xd6\x79\xab\xa1\x2f\x73\xc7\x0f\xff\x2b\x3b\x52\xb3\x05\xfc\x8a\x1e\xa8\xc3\x99\xd9\x95\x47\x6a\xbd\x6a\x22\xa9\xf4\x95\x30\xdd\x53\xcc\xa5\xea\x86\xc6\x32\xfb\x5d\x8b\x0c\x0b\xc8\x5b\xa7\x3d\x15\x37\x63\x94\x64\xf1\x91\xe5\xe5\x6d\x84\xe6\x88\x17\xb7\x56\x90\x8d\x66\x99\x98\x36\x70\x18\x1d\x71\x63\xdf\xce\x6c\x14\xb5\x1f\xd8\x2c\xf9\xf4\x72\x32\x6d\x56\x25\x9f\xd5\xa8\x81\x39\x93\x87\x1c\xb6\x30\x43\xa7\x18\x25\x3b\xf5\xc4\x1d\xce\x1f\xcc\x2b\xc8\xf5\xe3\x7b\xf2\x36\x29\xcb\x24\x9b\x3c\xd8\x91\xad\x86\x2e\xb8\x38\xab\xe3\x81\x56\x46\x48\x7e\xec\x1e\x26\xd5\x52\xd1\xa1\xf0\xe5\x2f\x3d\x53\x08\x59\xff\x81\x9e\x89\xd9\xfa\x50\xc7\x1a\xfa\xd5\xe9\x3c\x34\x6e\xf2\xcc\xfc\x07\x28\x50\x9f\xde\x8d\xc3\x1d\x5b\xec\x7d\x03\x3d\xa4\x76\xe1\xfc\x41\x01\xef\xa1\xb9\xd0\x0e\x80\x24\xbd\x18\x98\xcb\xf4\xdf\xbb\xf2\x9a\x05\x59\x4e\x29\x33\xa7\x6d\xcd\x99\x30\x8f\x5d\x70\x66\x19\x5c\x6d\x66\xca\x57\x2c\x35\x1b\x75\x63\x9d\xb5\x63\xbe\xe5\xe2\xfc\x88\xf9\x55\x5b\x59\x0f\xae\x1c\x77\xa6\x34\xd3\x98\x6e\xec\x87\x39\x07\xfe\x58\xf8\xa9\x7f\x8d\x4e\x44\xf4\xe9\x2d\x2b\x26\xcc\x10\x8f\x9c\x45\x24\x3e\x1d\xd9\xc3\x09\xa7\x0b\x17\xd9\x12\x84\x92\xd6\x7a\xfc\x96\xd1\xe7\x03\xa6\xd0\xc0\x59\xa5\x3e\x37\xc8\xb1\xba\x0c\x8a\x98\xbf\x5b\x92\xa5\x86\x88\xb0\x28\x14\x04\xff\x6d\x64\x85\x05\x83\x16\x63\x68\x12\x54\x90\x12\xb2\x21\xcb\x70\xff\x9d\x86\xe5\x87\x45\x76\x2a\x4c\x89\x0d\x1d\x0c\xbc\xa2\xa4\xcb\xd9\x9a\x19\x2d\x49\x3b\xdd\x7c\xfc\x30\x11\x23\x2e\x93\x81\x1f\x97\x12\xbf\x6e\xd4\x1d\x91\x4e\x77\xa8\x6e\xbf\x02\x04\xbc\xbf\x27\x5b\x0d\x34\xf1\x1c\x44\xa8\xd9\x7b\xdf\x37\xbf\x44\x24\xa6\xb7\x35\xea\x34\x5d\x9f\x5b\x04\x76\xa2\x28\x3d\xae\xce\x3f\x28\xdf\xcd\xcc\x3e\x59\x52\xde\x8e\xa6\xf4\x4e\xa3\x5c\x29\xf7\xd4\x1a\x52\x6b\x2d\xe3\xb5\x30\x4c\x55\xb3\xc9\xe6\x5b\x16\x8e\xe4\xf0\x2a\xbb\x85\xb9\xb7\x2f\xc3\xc7\x31\x71\x03\xa7\xd3\x59\x52\x55\x2c\x6e\x45\x69\xcb\x40\xc6\x8c\xd1\xe2\xb2\xe7\x1a\xa3\x52\xd1\x58\x1e\xc3\xac\x1b\x88\x44\xdb\x50\xb5\x58\xf4\x7f\x53\x8c\x3f\x9c\x4c\x67\x8b\x91\x54\xc3\x94\x6a\xcb\xaf\x67\x35\xf1\xf1\x64\xc6\x97\xdc\xab\x24\x0b\x53\x4b\x0f\x2a\x5d\x00\x6a\x1b\x74\x93\xcc\xa4\x87\xc2\x90\x9f\x5a\x38\x6f\x4b\x7b\x32\xba\x56\x8d\x07\x99\x33\x5c\x9d\x30\x4d\x94\x6a\x25\x9b\x70\x34\x15\xe8\x1a\xce\x3e\xb2\xb5\x2c\x96\x7f\x13\x7d\xac\x6d\x06\x5f\x93\xc4\x4b\xcb\xda\xde\x60\xa4\xaa\xfd\x24\x2c\x98\x3c\xa8\xba\xe0\x56\xba\x59\xe0\x4c\xb1\xea\xc6\x16\x9c\xcd\x47\x6f\x3d\x47\xd5\x1b\x16\x96\x55\x6d\x07\xc2\x37\xba\xa4\xe1\x2f\xdc\x36\x8b\xa6\xed\x6c\x3b\xc9\xda\x24\x54\xaa\xcd\xc0\x86\x66\xd0\x62\x54\x00\xbe\x4a\x8a\xb2\x7a\x19\xa6\xa9\x07\x4a\xb6\x33\x1c\x73\xf8\x7d\xea\x4e\x19\xe9\xc2\xaf\x21\x05\x53\xcc\x8d\xcb\x0c\xb3\xe4\xc0\x28\x67\x68\x42\x36\xce\x32\x51\xc6\xea\x0e\x16\x7b\xc4\xd4\x13\x85\x67\x7f\x70\x57\xd5\xbb\x97\x3d\x46\xc6\x26\xd6\xb2\x41\xac\x1b\x89\xfc\x8e\x2d\x01\xe4\x28\x8b\xdf\xb1\xa5\x88\xb5\x68\x51\xf5\x2b\xa9\xc3\xb7\xc5\x3a\x45\x9a\x14\xee\xff\xdb\xe9\xf8\xbb\x08\x65\x07\xeb\x75\x88\xd2\xd4\xcd\xff\x8f\x88\x16\x11\x9d\x29\x26\xa5\xcd\xb3\xdf\x41\x25\x9b\xdd\xbc\x14\x0e\x28\x01\x48\x92\x0e\x7f\xf3\xec\x36\xcc\x23\x87\xdf\xc4\x0a\x6c\x70\x63\x54\x6a\xed\xb9\x42\xe8\x7f\x03\x15\xcf\xd4\x85\x05\xe7\x8e\xa5\xee\x1b\x05\xbc\x6b\xcc\x51\xe9\x62\x6d\x12\x59\xbb\x86\x67\x96\xdc\x40\xea\x06\x2a\xbb\x14\x16\xc4\xb5\xe8\x6a\x92\xb4\xce\x99\xcd\xb6\x0d\x5a\x5b\x38\x77\x3a\x16\x02\xca\x66\x61\x03\x1b\x6b\xa9\xaa\xa5\xa8\x05\xbf\xb9\x29\xbb\xfe\xcd\x63\xe7\x4a\x43\x2d\xb2\xd0\x43\x63\xa8\x50\x70\x59\xff\xe1\xd7\x4e\x8a\x7e\x6d\x7b\x6d\x03\xb5\xaf\xf6\xf1\x2d\x8f\xa3\x38\x26\x33\x7c\xe6\x63\x26\x5e\x87\x47\xfb\x40\x38\xc6\x25\x25\xbe\x47\x6b\x87\x75\x35\x23\x73\xb9\x77\x87\x60\x4f\x27\x0c\xf3\xcd\x38\xc4\x78\x45\x0a\x57\x2c\x70\x47\xe9\x44\x34\x2c\x9b\xfd\xca\x31\xa0\x80\x36\x1c\xe1\x63\x39\xe6\xc4\x86\xda\x8c\xab\x7a\x70\x51\x13\xd7\xf5\x1c\x7b\x80\x76\xd0\x06\xd4\xc2\x74\x19\xae\x4a\xf5\x46\x37\xc9\xd8\x12\xea\x12\x51\x94\xc3\x2c\x6e\xc1\xa4\xa1\xb4\x78\x97\xbf\xdd\x58\x69\xdc\x2a\x73\xda\x22\xe4\x13\x43\x86\x04\xbd\x86\xab\x86\x13\xe1\x01\x1b\xf2\x94\x74\x28\xf2\x6a\xaa\x57\xbb\xa8\x2b\xd7\x5a\xa5\x8d\xa3\xa1\x59\x4a\x4b\xbe\x12\x3a\xff\xea\x60\x82\x0d\x98\x63\x00\xc0\x66\xbc\x8c\x3c\xd5\xba\x13\x23\xb0\xa6\xaa\x6c\xa2\x5c\xb3\xd1\x8d\xaa\xa0\x4e\xac\x66\x74\x36\x56\x63\x52\xcd\xc6\xb8\xdd\xe4\xe7\xeb\x2d\xa8\xeb\x47\xc1\xaf\x3f\xb7\x08\x24\x4c\xc5\x97\xef\x1a\xa7\xb9\xeb\x39\x50\xa5\x80\x21\x1c\x6e\x3e\x4b\x91\xfe\x43\xa7\xd1\xc1\xb0\x1e\xa7\xfa\x5f\x70\x10\x33\xe8\xbb\xfe\x57\x69\x59\xff\xbb\x14\x00\x6e\x4c\x61\xa5\xcb\xd5\x8f\x4b\xed\xbb\xfc\x52\x97\x36\x0d\x22\x5d\x35\xb0\x99\x67\x14\x91\xfa\x94\x1a\x75\x75\xcc\x68\xa9\x81\x68\xb8\x38\x6b\xaa\xc7\x1c\xb6\xc6\x4a\xac\xfb\x80\x7a\x0d\x5a\xe9\x54\x2f\xac\xd5\x67\xb5\x72\xee\xec\x93\x65\x9c\x89\xc5\x0b\x62\x64\x73\x41\x46\x11\xd1\x3c\x8c\xc2\x98\xa1\x85\xb9\x43\x5f\x30\x36\x43\xf3\x14\xbe\x87\x81\x0d\x55\x92\x55\xb9\x08\x58\x19\x56\xc9\x28\x05\x6b\xf1\x5a\x94\x65\xb4\xe8\x99\xca\xa8\xd5\xc9\x24\x0b\xab\x45\xc1\xfa\x52\xdf\xd7\x16\x99\xbc\x75\x7b\x0f\x9e\x43\x82\x5e\x50\xbc\x1e\xb3\x2f\x22\x2a\x96\xc2\xb3\x29\x2c\x77\x29\x1b\x93\x08\xc2\x6e\x96\x64\x04\x2f\x94\x43\x8c\xdd\x31\x13\x41\xbb\x5d\x1e\xc0\xc2\x68\x2a\xdc\x45\x1b\x82\x53\x2b\x2f\xb9\xa4\x14\xbf\xab\x04\x7c\x62\x72\xf3\x4d\x62\x30\xa3\x6b\xaa\x5c\x99\x01\xe1\x6e\x29\x83\x22\xa8\x10\xf2\x7c\x48\x79\xdf\x5c\xe6\xc0\xeb\x9a\xb5\xcc\xbc\x16\xce\xd1\x3e\xdf\x2d\xb6\x02\x35\xd7\x67\x24\xda\x25\x01\x17\xe4\x74\x16\xdd\xf9\x08\xef\xce\x09\xb7\xd8\xe6\x2e\x80\x57\x3e\x98\x64\x8d\x56\x2d\x01\xbe\x15\x0d\x97\x53\x06\x81\xa1\x60\x93\x50\x01\xd8\x4a\x23\x5a\x7e\x2e\x5e\x55\x17\x91\xea\x87\x99\xf0\x3d\x32\xec\x6e\x20\x0a\x7d\x31\xa1\x22\x2c\x3c\xe0\x6e\xc4\xbd\xb6\x2c\x81\x15\x88\x34\x91\xdb\xc3\x37\x23\x9f\xa3\x91\xf0\xde\x9e\x75\xea\x10\x76\x51\x46\xb1\xf3\xe4\x82\xb7\x65\xca\xda\x08\xa4\xa4\x6c\xfc\xdc\x24\x42\x6f\xb0\xa7\xd5\xcf\x73\xca\x57\x39\x5f\x67\x68\x2a\x75\x13\xa6\x0b\x8c\x28\xb0\x9a\x8b\xb0\x30\x42\xc5\x1d\x16\x13\x08\x0b\x03\x1d\xb5\x23\x79\xeb\x70\x32\x60\xeb\x69\x3c\x27\xa8\xc7\x02\x4a\xc8\x4d\xaf\x31\x3c\x2c\x04\x9f\x55\x8f\x7c\xca\x57\x16\xb4\x89\x7a\x55\x24\x51\x85\x87\xa8\x90\x92\x91\xad\x46\xc5\xe0\xd4\x23\x29\x85\xa3\x0d\xad\x9c\x11\x18\x13\x5f\x88\x91\xb0\x9a\x47\x8b\x24\x8d\x91\x99\xec\xe4\xe3\x71\x12\x25\x61\xba\xa3\xd6\xfe\x88\x4d\xc3\x9b\x24\x2f\xba\x84\x0b\xfe\x46\x80\x08\x90\x69\xe3\x64\x0c\x6e\xaf\x95\x0e\xfc\x0e\xa1\xcb\x16\x73\x74\xd8\xae\xc4\x9b\x88\x7c\x5e\xc3\xfe\x57\x26\xa3\x24\x4d\xaa\x15\x29\x23\x96\x85\x45\x92\x0b\x3b\xa7\xe6\x57\xbc\x65\x1c\xd0\xcb\x8a\xcd\xe6\x66\x14\x79\x74\x53\x85\x64\x3b\x52\xf5\x1d\x44\x50\xe7\xe9\x56\x1c\xec\x3f\x89\xee\xfc\x78\xfa\x52\x6a\x34\x75\x8a\x1b\xc8\x5a\x03\x59\xc5\xcc\x66\x5c\xf6\xd7\x77\xc1\xed\xd6\x5d\x2e\x22\x71\x68\xe5\x2e\xb2\x74\x1b\x80\xc4\xaf\x5e\xb1\x89\xe5\x43\xbb\x67\xbf\xb9\x92\x1a\xee\x16\x4f\x33\x70\x6f\xe5\x75\x06\xfa\xad\xfb\x7f\xd0\x56\x7d\x73\x0f\x5a\xeb\xe9\x37\xd7\xe3\x74\xc2\x61\xb6\xaa\x13\x0d\x4c\x58\x21\xdf\x20\x32\x04\x6d\xd5\x35\x21\xdd\x50\xbe\xdf\x5c\xde\x46\xb6\x2e\x20\x03\xae\xae\x20\x20\xcb\x34\x83\xd7\x6b\x69\x40\xb1\x2e\x5b\x37\x15\x1d\x34\xf3\x54\x31\xd9\xbf\x5e\xa6\x36\xcf\xa3\xfa\xa5\x87\x27\x4d\x4f\x3d\x10\xf5\xa6\xc3\x5d\xcd\x77\x49\x45\x19\x95\x67\x49\xe3\x1e\x1d\xd2\xff\x64\x5c\xb4\x3f\x75\x6f\xda\xcd\x3c\x01\xd8\x12\xd1\x1f\xb3\x6b\x95\x37\xde\xc4\x3c\x6d\xbb\x8a\x21\xcd\x37\x37\xf5\x6a\x4c\x24\x0c\x36\xaf\x70\x69\xad\x5f\x65\x9b\x4a\x3a\x13\xad\xe6\x2b\x9f\xd6\x5b\xa2\x86\xba\x2c\xdc\xcc\x43\x41\xbf\xb9\x44\x2b\xcd\x04\x44\x8d\x68\x6d\xf8\x35\x5f\x4a\x35\xd4\xf7\x18\x0c\xcd\x12\x4d\x18\x9a\x16\x05\x26\x86\xae\xa5\xc1\xa3\xcc\x36\x1a\x6a\x7c\x0c\x8e\x66\x09\xa3\x1d\x88\xa0\xf2\x35\xef\x2c\x3c\x05\xd5\x08\x9f\xbf\xa8\xef\xb0\x67\x8f\x4a\xb3\xc6\xdf\x86\x6c\x48\x77\xbb\x6a\xa8\x4d\x36\x29\x98\x50\x6a\x6c\xe2\x16\x2d\x12\x76\xdd\xca\x6b\x50\x6b\xa3\xae\x5f\x51\xcd\x7c\x9d\x74\xde\x68\xc0\xe9\xb6\x67\x2a\x62\x44\x3b\x06\x5f\x6b\x94\xe8\x9b\x8c\x33\xb4\x5f\x94\x90\x16\xbc\xda\x21\x4f\x9b\x3d\xc9\xd1\xdf\xdf\x47\x6f\x8a\x24\xc3\x47\xba\xc8\x8c\x95\x65\x38\xd1\x81\x78\xcc\xe0\xfa\xf2\x3d\x97\x1d\xea\x16\x87\xb3\x1b\xbe\x8f\x25\xa4\xab\x9d\xd2\x32\x5d\x52\xfe\x43\x32\xcc\xa2\x92\x5b\x6d\x40\x15\xa0\xc5\x8d\xfd\x6f\xf9\xf1\x18\x8f\x10\x58\xef\xe2\x90\x86\xb7\x71\x5a\xde\xc4\x21\xc6\xcb\xc3\xe8\xd2\x5c\xb7\x22\x4c\x4a\xd0\xc7\xae\x68\xcb\xe9\x27\xce\x19\xf8\x41\x6b\x07\xf3\x2a\x37\x0f\x39\xd2\xcf\x44\xed\xa9\xad\x0f\x0c\x18\x9e\x41\x96\xc5\xa0\x89\xa0\x8c\x0f\x3d\x2d\xf2\xc5\x64\x0a\x4d\xd9\xe3\xeb\x68\x54\xcd\x8a\xfa\x4d\x89\x0f\xa8\x60\xfb\x2d\xe9\x2d\xba\xd7\x3e\x69\x51\xba\x72\x3e\xd1\x27\xd6\x6e\x67\x33\x8c\x3e\x79\xa4\xa5\x41\xbf\x96\xb2\xc1\xc6\xa0\xdf\x90\x66\x82\xbb\xfc\xa6\xdf\x94\x28\x84\x03\x6a\xf1\x48\xbf\xc9\x66\x43\xbd\xe8\x66\x1d\x31\x7c\xc3\x2e\x47\xc6\x82\xa7\xe4\x4e\x40\xc9\x14\xc3\x58\xd6\x50\x9d\xc9\xdc\x9d\x07\x35\x6e\x8f\x53\xb8\xc9\xb3\x97\x2e\x04\xdf\xf2\xaf\x61\xa1\x73\x67\xe0\x6a\x63\x4a\x5d\x14\x54\x02\x3e\xa4\xda\xea\xfd\xbc\x9a\x8d\xf2\xf4\x74\x54\xb2\xe2\x26\x1c\xa5\xec\x7d\x9e\xad\xc6\x49\x9a\x7a\x45\x9e\xa3\x07\xeb\xb0\xd2\xe7\xf4\x81\xfc\x3c\x83\x62\x24\x80\xe0\xfa\x5d\xfc\x82\x3d\x61\x58\x19\x0e\x1a\x12\xaa\xee\xa1\x31\xac\x10\x10\x21\xba\xb9\x6a\x5f\xe5\x0e\x2b\xa5\x1a\xa8\x01\x0d\x10\x44\x5b\xed\x35\x16\xf0\x76\x74\x09\xe0\xc5\x08\x55\xab\x0d\x22\xa9\xaa\xde\x0d\x2b\x2e\x71\x3a\x75\xab\x9a\x77\xfe\xf3\x3f\x8d\x4a\xa1\xc0\x1a\xbb\xed\xea\x26\xf8\x24\xdc\xa6\xdb\xfb\x7f\x96\xce\x76\x64\x5c\x30\x46\x20\xda\x2d\x6f\xf4\xd7\x49\x9a\x8f\xc2\xf4\x57\x1c\xf5\x77\x79\xcc\xba\x57\x65\x17\x54\x2f\x9c\xc0\x1c\xf8\xaf\x00\xa1\x5f\x17\x9d\x88\x6f\xc3\xf4\xbd\xd3\x91\xa9\xea\x57\x57\x18\xf0\x72\xaa\x8b\x9f\x2a\x6f\xd0\x74\xb7\xa4\x5a\x42\x8c\x9d\x33\xf9\xc7\xe9\x22\xbb\x7e\x0b\xd1\x16\x97\x61\xc1\x3c\x58\x6f\x47\x42\xe9\xd1\x62\xcf\xe5\x35\x1a\xcb\x42\xf8\x53\xc3\x52\x16\xf4\x33\x7a\x7b\x90\x0f\x79\x4a\x10\xf9\xdd\x62\xc2\x0a\xfa\xcd\x06\x6f\x70\x95\x8f\x31\xc6\xeb\xe1\x9b\x85\x4a\x07\xa1\x36\x38\x0f\x69\xfd\x0a\x9a\x41\x6a\x95\x92\xc4\x4c\x30\x1f\x45\x0c\x3b\x4c\x52\x6d\xe3\xe3\x08\x4b\xac\xac\x58\x54\xc4\x35\xcd\xc4\x29\x50\x71\xca\xab\x97\xa5\xdd\x71\xe0\x55\x00\x44\x57\x45\xb8\x92\x88\xb4\x95\x69\x1a\x7d\xa8\x82\x33\x88\x2d\x49\x05\x8f\xd1\xca\xbf\x1b\x6e\xe3\x14\x1b\x6e\x07\x81\x20\x19\x96\x2c\x3b\x1d\xeb\x41\xdb\x2d\x99\x3d\xcb\xe3\x45\xca\x0e\x2b\x4f\xc0\xf9\xfd\xa1\x9a\x4b\x46\x2d\x58\xb0\xd3\xc1\xbf\xdd\x70\x16\x1f\xe2\x4f\xef\x7c\x28\xb8\x54\x39\xdc\xbe\xa0\x95\xdf\xaf\x3c\xd6\x05\x27\xa3\x37\xf9\x64\xc2\x8a\xc0\xfa\xba\xbf\xbf\x5b\xfb\x6b\x7c\xe9\x45\xa3\xce\x11\x87\xa0\xb7\x70\x94\x1a\x6e\x0f\xf4\x83\xda\xd8\x2f\xd6\x2d\x17\x73\x56\x5c\x06\x15\x65\x3a\x7e\x45\x20\xe2\x22\x20\xd9\x3c\x23\xb2\x05\xbd\x03\x77\xf6\x62\xc1\x37\xf2\xfe\x1d\xe8\x08\xfb\x8c\xb2\x6c\x31\x63\x05\x5f\xc8\xfd\xad\x03\xba\x2c\x92\x0a\x7f\xf7\x68\x94\x67\xe3\x64\xb2\x10\x79\xbd\xf5\xda\x5f\xeb\x98\x62\x88\x83\x68\x0c\xbb\x2d\xc4\x78\x8c\xab\x4c\x87\xdb\xd7\x49\x16\x0f\xb7\x69\x63\x4b\xbd\xb5\x4f\xab\x4e\xa7\x12\x9a\xd5\x4e\x67\x63\x4d\xf3\xb0\x9a\xea\x9a\x2a\xb7\x26\x8d\x16\x0c\x39\x2d\xfc\xbb\x4c\x10\xc7\x78\x44\x67\xb8\x7d\x32\xdc\xa6\xcc\xa7\x1b\x9b\x4a\xa7\xe5\x86\x96\x36\x97\x2d\xcc\xb2\x45\x3b\x96\x39\x12\x2f\x6f\xc2\xf1\xdd\x23\x70\x2c\x36\xe2\xa8\xdb\x49\xb0\x9d\xa4\xa9\x9d\xe3\x3f\x4c\x0b\xdd\x4e\x28\xa9\x1e\x36\xb5\x74\xf4\x88\x96\x92\x2c\x66\xb7\xbf\x9b\xee\x49\xc5\x66\x8f\x22\xfc\x58\x22\x0a\x96\x58\x01\xeb\x96\x69\x12\x31\xcf\x2b\xee\xef\x2b\x7f\xf7\xe0\xfe\x9e\xc9\x28\x21\x03\xc1\xe9\x64\x42\x50\x3d\xeb\x1d\xca\x8f\xdd\xaa\x0f\x6b\x6e\x51\x4e\xbb\xe1\x7c\x9e\xae\x3c\x46\x33\x9f\x32\xdd\xd0\x82\xaf\x5f\xe0\x7c\x81\xc5\x62\x34\x07\x3a\xb4\xd2\xfb\xef\x3c\x26\xdb\xd4\xfc\x6a\x2b\x08\xaa\xc3\xaa\xcf\x82\x20\x78\x1b\x56\xd3\xc3\xe1\xf6\x0c\x16\x42\x3f\x5b\xa4\x69\x10\x04\xbc\x12\xfe\x73\xb8\xdd\x3f\x2a\x8a\x70\xd5\x4d\x4a\xf8\xeb\x31\xff\x90\x9f\x77\x8b\x70\x35\xdc\xee\x0f\xb7\xcf\x85\x01\xc7\x71\x58\xb1\x0b\x8e\x44\x50\x8b\x7a\x53\xe5\x67\xf0\x28\x1c\x8e\x1c\x94\x8f\xc3\x8a\x41\xf1\x06\xd6\xa7\x0b\x74\x3a\xfb\xff\xbf\xe1\x70\xbf\xfb\xe7\xe1\x70\x7f\xbf\x5b\xb1\x92\xb3\x3a\x99\xe9\xf9\xbc\xa2\x82\x4d\xd8\xed\x1c\xaa\x92\x3d\xd3\x94\x4a\x71\x48\x68\x44\x4b\x1a\xd3\xb9\x7f\x57\x06\xe5\xfd\xfd\xf9\x05\x9d\x07\x73\xfe\x77\xc0\xa9\x38\x09\x4a\x31\x54\x3d\x7f\x90\x8c\xbd\x66\xb6\x1d\xfb\x77\xc9\xd8\x8b\xe0\xdf\x46\xac\xa3\x4e\x27\xf2\x26\x34\xf6\x7d\x11\xe5\x1c\x00\xf5\xee\x10\x78\xcd\x83\x15\xd5\x06\x2b\xf2\x7d\x6c\xac\x0b\xa1\xd7\xd2\x8a\x15\x9d\x8e\xf1\xe1\xb6\x12\x75\xb3\xbc\x98\xc1\xa3\x53\x38\x2f\xa6\x81\x91\xc4\xa1\x29\x5f\xaa\x83\x69\xa7\xe3\xb1\x60\x7a\xde\xbb\xa0\x55\x30\x3d\x3f\xb8\xf0\xd7\xeb\xf5\x04\x66\x9a\x17\xfb\x6b\x4d\xcb\x20\x08\xf8\x1c\xe3\x3b\x98\x95\x54\xf9\x50\x83\x39\x04\xb4\x0a\x2a\x73\x44\x80\xa2\xab\xaf\x98\x97\xf4\xa6\x05\xb8\xaa\x01\x57\x3e\x1d\x05\xce\xe8\x04\xab\xfb\xfb\x79\xa7\x33\x3f\x9f\x8b\xe5\xb3\x77\x70\xd1\x4d\xa7\x65\x43\x92\x13\x7c\xc9\x8b\x7d\x3a\xab\x55\x77\xd3\x50\x5d\x51\xaf\xae\x68\xaa\x8e\x8f\xc5\xd6\xa8\xd3\x99\xf9\x85\x97\xb1\x25\xc9\xbd\x09\xad\x7c\x7f\xc0\xd0\x7e\xca\xdb\x9a\x75\x3a\x23\x91\x97\x78\x13\xca\x8c\x3c\x4e\xef\x2d\xa4\xb1\x80\xc8\x38\x84\x55\x5e\xae\x1a\x35\x3c\x6c\xaf\xda\x0a\x82\xde\x86\x02\xc6\xf4\x5b\x75\x3a\x7c\x39\x6f\x05\x01\x53\xbf\x2a\x3f\x19\x7b\xf3\xae\x98\x56\x4a\x3c\xa8\xfc\x3b\x69\x68\xc5\x09\xc7\x99\xc1\xda\x97\xcc\x8b\xf1\x72\x9d\x4e\x53\x9b\x77\x50\x1b\xcc\xa7\xbb\x74\x5a\xf6\x19\x2d\xa6\x65\xbf\x5a\xfb\xd4\xe5\x20\x38\x4f\x97\x03\xc9\xf4\x06\xe3\xbc\xf0\x96\x41\x6f\xb0\x7c\xa6\x92\x96\xbb\xbb\xfe\xf2\x79\x20\x77\xf1\x43\x6c\x31\xf4\x26\x74\x49\x91\x84\xa8\x2f\xa4\xec\x7c\x79\xe1\xfb\x7e\x3f\xf5\xf8\x2f\x5a\xf1\x7f\xf8\x9a\xe7\x80\x73\x1f\xaa\x1e\x2c\x9f\xc9\x7a\x06\xbe\x5b\x51\x2e\x2b\xaa\xce\x97\xbb\xbb\xbc\xaa\x35\xf4\x86\xa3\x78\x1b\x98\xa1\xa0\x98\x4f\xcf\xac\x84\xca\x1f\xdc\xd6\xa2\x9a\x79\x19\xcd\xb1\x83\x49\x70\xd6\x85\xdd\xe7\x74\xec\x65\xfe\x20\x79\x1e\xf4\x0e\x3d\x8e\x66\xc6\xd1\xcc\x24\x9a\x19\x9d\xf3\x8a\xc7\xde\x19\x4d\x44\x3f\xb2\x0b\x2a\x90\xd2\x20\x6b\x9f\x9e\xd5\x1b\x63\xfe\x5d\xaa\x3b\xc0\x64\x9d\x0c\x0a\xac\xe5\xa4\x0d\xf4\xec\x85\xce\x11\x31\x8c\x1e\x67\xf2\xb3\x11\x2b\xe4\x1c\x49\xca\x77\xe1\x3b\x98\x5d\xf8\xab\xf2\xef\xef\x9d\xb1\x36\xf6\xbc\x48\x30\xd8\x4c\xcd\x98\x2c\xc8\x80\xc3\x22\xeb\x35\xb1\xe4\xd3\x0e\x27\x07\xf3\xd7\xb4\xf0\x69\x26\x47\x36\xeb\x23\xfe\xba\xde\x52\xee\xa5\xc9\xd8\x2b\xba\x5c\x42\xeb\x74\xf0\xaf\x9c\x86\xb8\xcb\xd2\x3c\x60\xe7\xd5\x05\x4d\x02\x2b\x77\xef\x00\x46\x3d\x0b\x7a\x83\xec\x59\x32\xc8\x76\x77\xfd\x3c\xc8\xcf\x11\xe6\x3c\xbb\xb8\x18\x94\xcb\xa4\x8a\xa6\x5e\xd1\xe5\x72\xa4\x7f\x17\x85\x25\x03\x61\xa2\x5f\x7a\x26\x1c\x2d\x70\xfc\xf8\xdf\x8a\xcd\xfc\xc1\xa8\x60\xe1\xf5\x00\xc1\x8f\x87\xdb\x7d\x11\xe3\xd4\xaa\xdb\x84\x39\x19\x6e\xf7\xf1\xd7\xbb\xe1\x76\xdf\x04\x0b\x0a\xce\x45\xd6\x38\x1a\x1b\xd0\x81\xfe\x3d\x84\x06\x0b\x40\xfa\xf0\x37\xb4\xcd\xeb\x11\x6d\x4a\xf1\x43\xd3\x3b\x36\xe8\xcd\x3a\x1d\xbe\xbe\x39\xc1\x11\x1b\x4e\x4a\x21\xd3\xd0\x3c\xd8\x3b\x50\xd4\x3e\x74\x88\xde\xef\x0d\x76\x77\xf3\x67\xc9\xc0\x6f\x66\xe9\x99\xec\x7e\x7e\x71\xd1\xe9\x78\xe6\x67\x60\xce\x43\x01\xae\x72\x0f\xcf\x2f\xfa\x77\x6b\x9f\x66\x81\x59\x64\xd3\x18\x0a\xfc\x4c\xf0\x7e\xf6\xd8\xc1\xb4\x1a\x69\x27\xa8\x85\xbe\x18\x4c\x4d\xd1\xf9\xff\xb6\x19\x3c\xff\xba\x19\xec\xcc\xc9\x74\x5a\xd6\xfa\xfc\x00\xc8\xbb\xe6\x75\xf0\xd0\xd4\x9e\x3f\x72\x6a\xe3\xbc\x6d\xc2\xab\x25\xeb\x9d\xb1\x20\x1a\xe6\xfa\x64\xd3\x5c\x17\x63\x42\x93\x80\xc1\x00\xe4\xee\xb0\x50\x1c\x92\x1c\x86\xa4\x79\x9a\x27\x06\x11\x3a\x1d\xcf\xfc\x0c\xf8\x34\x4e\x82\xe4\x91\x03\x99\x7c\xcd\x40\x26\x0f\x0f\xe4\x03\x20\xc6\x40\x26\xd6\x40\x6a\xe2\x4d\x1d\xe2\xc9\xd3\x8e\xde\xfb\xfc\xbb\xa2\xd3\xd9\x82\x23\x3c\xcd\xfc\xfb\xfb\x58\xfc\x5a\x0f\x52\xf9\x4b\x57\xc7\x65\x81\x3b\x79\x32\x89\xf2\x34\x2f\xfa\x64\xb8\xbd\xfb\xea\x9c\x5d\x74\xe1\x73\x77\xb8\x3d\x20\xe3\x3c\xab\xf6\x96\x2c\x99\x4c\xab\x3e\x19\xe5\x69\x6c\xca\xf8\x37\xfa\x34\xc4\x80\x84\xb4\x08\x18\xe0\x4e\xf9\x21\x2c\x9d\x96\x7c\x89\xf1\xe5\xc9\x07\x55\xd0\x30\xe4\xbf\x2a\x36\x93\xc4\xaf\x24\xdd\x39\x95\x10\x9f\xf3\xa2\x7b\x95\x27\x99\x87\x16\x47\x34\xa3\xc3\xed\xff\xfa\xff\xff\x5f\xc3\x6d\x9a\x5f\x18\xe4\x6a\x84\x55\x10\xc7\x2d\x10\x32\xff\xa8\x25\x7f\x77\xb8\x7d\x3e\xdc\xde\x4d\x76\x87\xdb\x17\xc3\x6d\x1a\x5e\x0c\x84\x1e\x4a\x42\x5f\x18\x34\x1c\xe9\x3d\x18\xfc\x08\x83\x08\xb7\x82\xaa\x58\xdd\x65\x87\x45\x77\x52\xe4\x8b\xf9\xcb\x3c\x4d\xc3\x79\xc9\x62\x2e\x45\x26\xe3\xf1\x70\xdb\xef\x8b\x2c\x9d\xb2\x8e\xe0\xf2\x8e\x0f\x49\x37\xcd\x27\x46\x46\x7e\x98\x37\x4a\x1e\x16\xdd\xb3\xe0\x06\x0e\x9a\xbc\xac\x38\xba\x16\xf4\x7c\xb8\xfd\x1f\x11\x8e\x69\x75\xd1\x85\xf7\x94\x56\x5e\xe5\xf3\xe1\xcd\xa2\xb0\xf2\xde\x7b\x19\x97\x28\x38\x36\xd8\xe4\x7f\xfd\xcf\xff\xf5\x5f\xff\xf3\x7f\x91\x2c\x07\x2b\x2a\x82\x9f\xc3\x6d\xec\x8f\x40\xf9\x24\x8b\xbd\x06\x6c\x45\x51\x28\xc7\xb2\x58\x94\x25\xbc\x03\x9a\x5c\x33\x4d\x2e\x31\xf8\x8f\x3f\xac\xc8\x59\x22\xc5\xea\xbe\x9c\xba\x4d\xa7\xd8\xf3\xec\xe2\x90\xff\xa3\x4e\xf1\xef\xbd\xc2\xf7\xfb\x3c\x49\x0c\xbf\x2e\xd5\x97\x6c\x8a\x4b\x94\xf6\x58\x13\x66\x20\xbf\x34\x89\x5e\x25\x33\x56\x56\xe1\x6c\x0e\x33\x3e\x5e\x14\xf0\xae\xcf\xc0\xd1\xf0\x7a\x8c\x1a\xf2\xe8\xf9\x70\x3b\x14\x6d\x5e\x48\xc8\x04\xa5\x32\x3e\x50\xc3\xed\x5d\x71\x94\x63\x5d\xde\x0f\x1f\x14\x69\x06\xc0\x7f\xf2\xa1\xcc\x7c\x5a\x58\xa9\x5e\x92\xf1\xf4\xbc\x5b\xe5\xaf\x92\x5b\x16\x7b\x4f\xf8\x14\x26\xb3\xd2\xe7\xcb\x21\x91\x53\xdb\x19\x89\x5b\xd4\x20\xc1\xb5\x09\x17\xf3\x41\x5f\x49\xb3\xa0\xea\x22\x8a\x1f\x8b\x30\x2b\xc7\x79\x31\x63\x05\xcd\xf9\x31\x33\xa9\x52\xf6\x8a\x9f\x6b\xab\x8a\x15\x34\x09\x50\x6a\x0c\x82\x20\x3f\x5c\x7a\x95\xdf\xcf\x69\x18\x54\x9c\x6f\xe0\x54\xa7\x63\xfc\xca\x8b\x92\x2e\xe0\x1c\x71\xc3\x52\x9a\x06\x55\x97\xcf\x10\x1a\xb5\x1d\x3c\x9d\x86\x06\xac\x3e\xf5\x73\x5a\x22\xe2\x71\x90\x77\xcb\x2a\x2c\x2a\x16\xd3\xb9\xfe\xfd\x31\x99\x31\x3a\x09\x72\xd1\x13\x3a\x0d\x72\x7e\x7e\xbf\x41\x7d\xf8\x2a\xc8\xf1\x65\x02\x7a\x13\x70\x9a\xe5\xd7\x74\x19\xe4\x5d\x6d\x89\x7c\x1b\xb0\xf3\x72\xf7\xe0\x62\x70\xdb\xe9\x78\xcb\xe0\xd6\x28\x7b\x13\xdc\xca\x46\xf6\x62\x3c\x6e\x9f\x05\x99\x37\xf1\xe9\x75\xd0\x38\x0f\xc3\xc3\x50\xe3\xad\xc4\xf4\xe5\x9a\x4e\x68\xee\xf7\x43\x7a\x15\x1c\x7b\x73\x9f\x9e\x04\x63\xec\xf7\xa1\xc9\x88\x45\x9a\x77\xc6\xc7\x73\x00\x5a\x96\xe1\x36\x3d\xe2\xd3\x48\x00\x4d\x8a\x70\xe5\x70\xe8\x94\xff\x61\xc5\x80\x4f\xb1\x23\x9c\x24\x27\x3e\xad\xf4\x7c\xed\x74\x8e\xe4\xdc\x79\x4c\x2d\xbc\xac\x9c\xdd\x5f\x5b\x14\x08\x74\x1a\x24\xde\x19\xbd\xa2\x37\xc8\x44\xae\x0f\x45\xb7\x3a\x9d\xa8\xc6\x1f\xeb\x8c\xeb\x54\xf1\xaa\x23\x5f\x31\x4d\xcd\x4f\x4f\xfd\x7e\xbd\xba\x47\xd6\xe2\x9d\xd6\xb8\xd8\xa9\xbf\xe6\x28\xbf\x0b\x66\xde\x82\x9e\xd1\xf3\xe9\x05\x1d\x6e\xab\xe1\xe7\xc4\x78\x2f\xb3\xce\x78\x96\x5c\xcd\x3e\x7d\x29\xd3\x57\x14\x0a\xc1\x0c\xe3\x19\xaf\x64\xc6\x92\x27\xab\x59\xc6\xa9\x93\x8c\xbd\x77\x7e\x32\xf6\xc6\x7a\x86\xe1\xbc\x7e\x13\xd8\xd3\x40\x65\x7b\x53\xbf\x6d\x4f\x1e\x14\xe7\xef\x2e\x80\x1f\xc0\x7b\x2e\xe2\xc5\xa5\x6d\xfa\x86\x4e\xf1\x44\x4d\x04\x80\x95\x3b\x05\x2c\xde\x23\x16\xe2\xda\x07\x50\xf8\xe8\xa0\x20\xee\x97\xce\x36\xb5\xff\x5e\xb4\x2f\xae\xad\x08\x21\xc3\x6d\xfa\x91\x9e\xa9\xf6\x01\xc0\xca\x3d\x83\xf6\x57\x9d\xce\x4b\x44\x01\x5f\x15\x01\x0c\xde\x3a\x18\x40\x96\xb7\xa2\x6d\x24\x18\x00\x0e\x2f\x05\x0e\x68\x8e\x22\x5a\x79\x4b\x57\x0a\x07\x00\xb0\x72\x57\x80\xc3\x2b\x44\x40\x0d\x10\x22\x71\xe9\x20\xa1\xb2\xbd\xe5\x26\x4a\xbc\x12\x58\x70\x70\x45\xeb\x4b\xba\x54\x58\x00\x80\x95\xbb\xf4\x07\x69\xa7\x33\xf2\xa6\x74\x49\x0b\x7a\xfd\x15\x3b\x6e\x9a\x4f\x8c\x0d\x17\xb8\xbc\xa1\x24\x38\xf3\xb0\x27\x2c\x50\x21\x72\x85\x38\xfd\xbc\xd7\xe9\x20\x13\xdf\x0a\x74\xe6\x79\xef\xe2\xd0\xfc\xe8\xdf\xad\x69\x25\xd5\x2e\x61\x59\x26\x93\xcc\xbb\x5b\xd3\x37\x94\xf9\xd4\xd9\x38\xa0\x2b\xee\xbe\x01\xa4\x36\x13\x93\xa0\xe2\x13\x3a\x86\xc7\x0e\x61\xcf\x48\xf3\x09\x98\xb9\x97\xb0\x67\xf0\xed\xe1\xbd\xcc\xaf\xa9\x84\xf5\xf9\xd4\x77\xb7\x5a\xc5\x5e\x4d\x19\xc9\x4d\xd2\xda\x35\xbe\xdb\xaf\xd7\x6b\xde\x02\x53\xf7\xb8\x9d\x8e\x7e\x30\xd4\x37\x42\x45\xe7\x29\x13\x13\x70\xb8\x7d\x0e\x17\x7c\x7b\xd8\xf1\x0b\x62\x7e\x81\x43\x26\x78\x35\xa4\x29\x8b\xbb\xe4\x6d\x78\xcd\x48\xb9\x28\x98\x8a\x04\x2d\xe0\x94\xe7\x43\x58\x8a\x57\x02\x97\x61\xc1\xfa\x43\x30\x60\xc7\xbb\x43\xdb\x2a\x5e\x98\xb2\x0f\x8d\x40\x86\xa2\x2a\x2b\xd2\xa1\xc0\x63\x67\x38\xcc\xe0\x4a\x90\xc8\x97\x77\xf1\xd2\xf0\x8c\x7f\x79\x43\xbc\x0e\x8f\x17\x11\x2b\x28\x7c\x00\xc3\x34\xee\x6d\xb1\x16\x7f\x38\xcc\x7c\x44\xe9\xb4\x80\xf7\x6c\xa3\x50\xde\xb8\xf3\x4f\x08\x9b\x21\xd1\x00\x6c\xa3\x45\x59\xe5\x33\x65\x77\x3f\xad\xaa\x79\x7f\x7f\x7f\x94\x54\xdd\x74\xb5\x6f\x22\xb8\x57\xeb\x0f\x56\x2b\xba\xbe\xa9\x47\xa2\xbd\xc0\x2a\xe1\xdd\x41\x3f\xf6\xf7\x49\xb7\xdb\xd5\x75\xaf\xfd\xc1\xbf\x94\x12\x9c\xa1\xff\xd1\xf9\xc6\x17\xe3\x22\x38\xbf\xa8\x8b\x8a\x52\x1a\xd3\xd3\xb1\x09\xc6\x4d\x4a\xdb\x6f\x45\x92\x4e\x67\x2b\xf1\x0a\x9a\xca\x0b\x0b\xc2\xbc\x14\x77\xe5\x28\xb8\x5b\x0f\x16\xb8\x9b\x47\x3e\x8d\xa4\x58\x13\x9c\x76\xb3\x7c\xe9\x19\x29\x5c\x9a\x0a\x32\xb6\x84\x3b\x26\x1a\xe9\xcd\x28\xc8\xbc\xc2\xf3\x39\x24\xb2\xf4\x20\x85\x9a\x4b\x21\x19\xf2\x85\x15\xfa\x9c\x8b\x95\x01\x6f\x56\xf3\xaf\x08\x97\x52\x90\x7b\x4c\x30\x44\x84\x18\x44\x20\x8e\x49\x14\xf6\x14\x0a\x34\xd2\x8c\x57\xb4\x3a\x40\xf9\x0f\xd9\x45\xa7\xd3\xd8\xfd\xf1\xe1\x18\x3a\xdf\x47\x28\x8e\xd0\xad\xb7\xa0\x35\x5e\x56\xd1\x3b\x9e\xdf\x8f\xd7\xbe\x4f\x17\x52\x67\xdb\xa3\x02\x4f\x1f\xbd\x71\xc4\x97\x1c\x92\x72\xbd\x5e\x83\xb0\x70\x4d\xaf\xb8\xfc\x66\x19\x26\x28\x63\x8a\x25\x41\xa5\x7b\xb5\x7b\xe0\xa3\x20\xce\xfc\x35\x3d\x6a\x06\x3f\xf1\x86\xdb\xbd\xe1\x36\xad\xf6\xcc\x4b\x1e\xa9\xb1\xda\x65\x6b\x7a\x1c\x34\xcc\x84\x23\xe4\x5f\x3f\xe6\x8b\xa2\xf4\x7c\x0a\xd2\x7f\x7f\xb8\xbd\x2b\xd2\xdf\x26\xd9\xa2\x62\x4d\x39\x67\x2c\xca\xb3\x58\xe5\x74\xcd\x32\x69\x9a\x94\x2a\xfb\xa9\xbf\xa6\xa7\xee\x6d\x8d\x8c\x6f\xcb\x0a\xce\xd8\x39\x33\x53\x37\x1b\x56\x5a\xe3\xd0\x18\x10\x7c\xb0\x0f\x8d\xef\x3e\xcc\xb3\x77\xcd\xf2\x34\xda\x45\xf1\x4a\xd1\x26\xac\x96\xd5\x4d\x2a\x56\x84\x55\x5e\x1c\x36\x50\x4a\x1e\x0e\xd7\xfd\x86\xcc\x36\x54\x65\x93\xac\x6b\x18\x59\x04\x41\xa0\xd2\xb7\xe4\x6f\x7d\xe9\x7a\xa8\xf1\xeb\xab\x46\xe9\x7b\x6b\xf4\x92\xb1\x57\xbf\x98\x91\xda\xde\x2a\xe8\xd1\x22\x10\xe9\xea\xe6\xba\xd2\xf7\x33\xd5\xee\xae\x5f\x9c\x57\x17\xa0\xbf\x94\x73\xb2\x90\x0a\x37\xac\x98\x73\x51\x98\x6f\x2f\x39\xbb\xe1\x27\x94\x87\x2f\x44\xd1\x04\xab\x76\xfa\xc6\x64\xdf\xef\x74\x04\x00\xfe\xe9\x37\xcf\x89\x65\x92\xc5\xf9\xf2\x10\xff\x70\x01\xe2\x2a\xb8\xee\x1e\x33\x36\x3f\xe6\x47\xbf\xab\x4e\xe7\x25\x32\x1e\x83\x95\x36\x57\x74\xd5\xe9\xe8\x82\x41\x10\x44\x9d\x8e\x67\x24\x5c\xd1\x2b\xc1\x6c\xfc\xb5\x4f\x2b\x2f\xa3\x05\xff\x93\xe3\x9f\x04\xff\x84\xfc\x4f\x93\x91\x41\xc2\x4a\x2f\x12\x4b\x5f\x18\x18\x44\x8e\x81\x01\xd5\x76\x74\xc7\x06\x58\xea\x82\xc1\xae\x61\x42\x4c\x1b\x21\xd0\x60\x57\xc2\xc4\x2e\x4c\xc1\x6e\x58\x51\xd9\x40\x13\x17\x28\x29\x5f\xe6\xd9\x38\x4d\xa2\x4a\x82\xd4\x36\xa4\x16\x5a\xae\xdd\xaa\xb2\xfc\xc1\xaa\xc8\xcb\x4e\xc7\x7b\xd9\xa8\x7d\x62\x1e\x27\xfa\xcb\x00\x1e\x80\xa1\x91\x5b\xfb\x1a\x59\xf4\xab\xe0\xee\xa4\x7f\x87\x22\xf4\x70\xfb\x7f\x3c\x39\xf8\xe1\xbb\x57\x4f\x39\x8f\x63\xb7\x55\x7f\xb8\xfd\xf2\xc7\xa3\x77\x7f\x3d\x39\xee\x0f\xb7\xd7\xf4\x9d\x01\xf7\xcd\xcb\xa3\x57\xdf\xf6\x34\xdc\xd1\xf1\xb1\x80\x3a\x36\xa0\x5e\x7d\xf3\xcd\xd3\xa7\xdf\x69\xa8\xe3\x93\x37\x27\x1f\x05\xdc\xd1\x86\x56\x8f\x3e\x7c\x38\xfa\xcc\xa1\xd6\xf4\x4d\x70\x07\x9a\x89\xfe\x70\x3b\xcd\x27\xc3\x6d\x8a\x1b\x7e\x5f\x08\x7d\x54\xc9\xa6\x68\x36\x25\xce\x9d\xe2\xca\x8c\x2a\x39\x56\x26\xc8\x93\x72\x7f\xeb\x80\xaa\x13\x37\x2f\xea\xca\xc6\x8d\x1c\x68\x4d\x6b\xba\x97\x16\x38\x57\xaa\x6e\x01\x43\xfd\x4b\xff\x0e\x4e\xc8\x4d\x13\x25\xc9\xa6\xac\x48\x2a\x4e\x30\xb5\xaf\x37\xc1\xfd\x8f\x1f\x4e\xf8\xff\x38\x1c\xa2\xd8\x08\xd4\x7b\x7a\xf4\xc3\xab\x6f\x38\x90\xda\xae\x1b\xe1\xe4\xe8\x8a\x7e\x34\xc2\xbc\x7a\xd2\xfb\xa6\xf7\x0d\x8c\x11\xac\xd0\xad\x03\x6a\x9d\x0c\x24\xc5\x2b\x83\x08\xe2\x22\x93\x7e\x0c\x8c\x1a\xff\xf8\xe1\x47\x1f\x09\x68\x83\x70\xd6\xb8\x69\x54\xf7\xf7\x8d\xe9\xc5\xe1\x99\xe7\x7b\x77\x2a\x94\x75\x45\x65\x6d\xfd\x62\xed\x63\x07\xdc\xf3\xc6\x70\x98\x59\x47\x0e\x72\xf3\xf4\x82\xbc\xf8\x70\x72\xf4\xf7\xd7\xef\xfe\x4a\x70\x05\x35\xc2\x9c\xc1\xcb\xb3\x4f\xbb\xbd\x6e\xcf\x3e\xa5\x08\x0b\x46\x32\x5a\xa9\xf3\x45\xfa\x7f\xb3\xf7\x2e\xdc\x6d\xe4\xc6\xc2\xe0\x5f\x81\x95\x89\x49\xda\x14\x5f\x12\xf5\xa0\xa2\x38\x1e\x3f\x26\xba\xf1\xeb\xd8\x9a\xcc\xcd\x11\x75\x25\xb0\x1b\x4d\xf6\xa8\xd9\xdd\xb7\xd1\x94\xcc\xd8\xda\xb3\x3f\x62\x7f\xe1\xfe\x92\x3d\xa8\xc2\xbb\xbb\x29\xda\x33\xf9\x6e\x76\xf7\x9b\xe4\xcc\x88\x68\xa0\x50\x28\x14\x0a\x05\x54\xa1\xaa\xe6\xcc\xc1\x31\xc9\x0a\xef\xd5\x42\x47\x39\x55\xfb\x69\x7b\x95\xbe\xda\xb6\xcc\x36\x81\xfc\xe2\x02\x6d\x3a\xfb\x88\x43\xf0\x09\xeb\xc9\x81\xf0\xd3\x37\x5d\xd6\xb3\x1b\x9e\x7e\xea\x32\x79\x72\x3d\x3d\xef\xea\x8a\xa7\xe7\x0d\xde\x68\xac\x3b\xdd\xb9\xba\x62\xfc\x2d\xb8\x8f\x1a\x87\x34\xf0\x41\xeb\xa0\x4b\x72\xcb\xb8\x74\xb6\x4e\xa6\x29\x7a\x9a\xf6\x14\xa9\xad\xbc\x07\x6d\x5e\x16\xd2\x83\x5c\xad\xd4\x34\xc8\x42\xf6\xf3\xc7\x33\xfd\xe0\x1a\xea\xf4\x30\x01\x3e\x6b\xf7\x2f\x1e\xb5\xda\x9d\x27\x97\xfd\x79\xd7\x02\x13\x74\x8c\xe7\x37\x80\x69\xfd\xb1\x45\x9e\x92\xa0\x17\x2c\x68\xf1\x22\x0b\xd9\xf3\xb2\x3d\xe8\x18\x4d\x72\x78\x20\x7e\xfc\x9c\xe7\xac\x78\x41\x39\x3a\xe7\x4e\x4b\x40\xff\xbe\x76\x08\xa0\x88\x64\x37\x2c\x25\xa7\xa4\xf5\xc7\x0b\xba\x1b\x0d\x76\x8f\x2f\xbf\x8c\xee\xd5\x47\xcc\x49\xfc\x56\x70\x32\x9c\xc8\x84\xbe\xfb\x91\xcd\x5f\x7d\xce\xdb\xd0\xae\x4b\x5a\xf3\x18\xbc\xda\x21\x64\xcc\x2a\x29\xe3\xda\xca\xad\xb6\x40\x1c\xbb\x7a\x4a\x5a\x9d\xa7\x2d\xd3\xd2\x7a\x61\x1e\x32\x41\x26\x4d\x23\xde\x36\x0f\x17\xba\x84\xe7\x49\xac\xde\x02\x94\xc5\x5a\x91\xa6\xdf\x27\xe7\x3a\xb7\x4b\x16\x32\x78\x8b\xc3\xd2\x32\x2e\x70\xa4\x10\xbd\xa0\xe0\xa5\x43\x48\xac\xea\xcc\x87\xe9\x0a\xd5\xf8\x56\xab\x23\xe9\x47\xe0\x5c\x43\xda\xac\x28\x3a\x56\xaf\x2f\x21\x75\xfa\x02\xb2\x86\x6b\xff\xfb\x38\x22\x36\x24\x19\x7b\x00\xd2\xc6\xf9\x93\x69\xaa\xd9\x0e\xfc\x30\x4a\x72\x8a\xa3\x85\xc4\x73\xf2\x41\x43\xbf\x4f\x3e\x41\x99\x18\x1f\xf8\x07\x92\x38\x25\x23\x92\xd3\xa2\xe4\xea\x41\x44\xc2\x22\xf0\xbb\x36\x18\x48\xd7\x3b\x45\x3e\xfd\x74\xa2\x88\xe7\x8b\xda\xaa\xa6\x9e\x61\x5f\xd4\x36\xed\x0c\xb3\x69\x40\x4b\xf4\x37\xbc\xb8\xec\x56\xe7\x4d\xe0\xd1\xa9\x29\x87\x5e\x3b\x9d\x4a\x68\x01\xac\xd8\x8e\xd3\x7c\x55\x33\xc5\xcd\x93\x86\x0d\x9a\xa7\x49\x33\x38\x06\x31\xca\x57\x65\x0f\x5f\xd0\x39\x8c\xad\x46\x3b\x2d\x9d\x10\x12\x43\x4c\x26\x87\xed\x2b\xd9\xe4\xf0\x19\x07\xc0\x24\xa7\xd5\x91\x62\xab\x2e\x89\x3b\x9a\x9d\x74\x2f\xd3\x72\x4b\x9c\x4a\xcd\x16\x9a\x08\xd0\x40\x31\x8c\x4b\x44\xbc\x9b\x79\xd9\x44\x25\x44\xba\xdf\x27\x7f\x63\x2c\x27\x65\x41\x83\x1b\x92\x45\x84\x26\x09\xb0\x94\x14\x45\x98\x62\x0b\x22\x82\x80\x43\x64\xa2\x92\x32\xe1\xce\x21\x7e\x5c\xff\xf8\xfe\xed\xb5\x79\x91\x03\xcd\xde\xd2\x9c\x9c\x2a\xb2\xb4\xfe\xf8\xfa\xd5\x1f\x5f\xbf\x6e\x4d\x48\x6b\x3a\x5d\xbd\x7e\xfd\xfa\xa5\xfc\x4f\xab\xab\x2b\xbc\xfe\xe3\xeb\x57\x35\x15\x60\x60\x92\x50\x18\xcc\x0a\x9f\x6b\xd8\xa2\xa5\xc7\x3e\xb3\xc0\x9e\xfa\xbb\x45\x9c\x30\xd2\x5e\xea\xd8\xbe\x40\x62\xc3\x3f\xb8\x5c\x51\x3a\x50\x4e\x66\xf1\x9c\x04\x8b\x55\x7a\x03\x09\xdb\xf2\x8c\x73\x8c\x7a\xa3\x9e\xef\xa8\x01\x5d\x00\xc0\x8b\xc1\xe5\xa5\x9e\x60\x87\xac\xea\xb3\x9e\xaa\x3a\x0e\xb4\xdf\x2d\x69\x30\x6e\x53\xc5\x4a\x3a\xc4\x08\x44\xcb\xd2\x55\x0c\xa4\x46\xe4\x9c\x87\x43\xf2\xe9\x90\xc5\x3a\x5b\x11\xf1\x5e\x8b\x99\xe7\x61\x48\xae\xff\xf8\x62\x74\x4d\x64\xc6\x59\xc8\xf4\x16\x69\x46\x28\x33\xcc\xb9\x0f\xd7\x9e\x71\x69\x92\xc2\x49\xec\x54\xbe\xfb\x59\x9c\x8a\x73\x3a\x99\x61\x66\x36\x71\xf6\x59\x83\xbc\x84\x47\x4d\x28\x5e\xf4\x70\x5a\x7f\x7c\x31\x6a\x89\xb1\x28\x8e\x68\x59\x5c\xc0\xd2\x52\x06\x42\xb0\xbd\x03\x4d\x6b\x45\xc6\xba\x5c\x90\xb2\x6d\xed\xfa\xed\xf7\xc9\x47\x89\xb3\x58\x06\x38\x39\xd6\xdb\x53\x6e\xa4\xc8\x0d\x5b\x93\x53\x05\xec\x22\xbe\x94\xc4\x56\xeb\x1f\xd7\xb1\xda\xce\xad\x9d\xef\x86\xad\xc5\x56\xd7\xea\x74\xad\xa5\x72\x71\xc3\xd6\x97\x9d\x9a\x77\x5b\x6a\x75\x43\xe9\x06\x05\x03\xf5\x89\xf0\xe7\x8f\x67\x72\x2c\xd6\x9b\x22\xf3\x0d\xa3\xae\xe1\x26\x68\x1e\xbc\x99\xd0\x33\xe7\xeb\x9c\x61\xf8\x99\xd6\xab\xcf\x39\xe6\x10\xbe\x36\xcd\xaf\x65\x1a\x41\x15\x8b\xe6\x1a\x21\x5d\x77\xc9\x3c\x2b\xc9\x75\xcb\x44\xa6\xb1\xba\x7c\x4a\x5a\xd7\x2d\x67\x68\xd6\x42\xb4\xea\x9d\x5a\x8d\x8c\x1a\x34\x9d\x3e\x15\x2a\x50\x8b\x58\xd2\x52\x6d\xf0\x0b\x06\x41\x63\x4a\xb1\xed\xe1\x4c\x15\xdb\xed\xec\x16\xb1\x36\x6e\xe8\xaf\x69\x92\xcc\x84\x54\x84\x78\x58\x10\x3c\x92\xaa\x97\x94\xb2\x43\x77\x03\x6f\x92\xb7\x95\x0e\xb5\xfe\xa5\x95\xdc\x2b\x1d\xc2\xed\x5e\x45\x5c\x2b\x79\x12\xcf\xe0\xf5\xb1\x7c\x1c\x25\xd8\xee\x2c\x2d\x13\x98\x22\xa1\xee\x9d\x4c\x53\x2b\xd9\x87\xf3\x49\xbf\x19\x73\x4a\x2f\xa6\x3b\xaf\xdf\x7f\x7c\xfb\xfc\xfc\xea\xd5\xc7\x8f\xef\x3f\x4e\x77\xc4\x02\xf3\xcb\x4e\xea\x1b\xfe\xfc\xee\xd3\xcf\x1f\x3e\xbc\xff\x78\xfe\xea\xe5\x15\x36\x38\x7f\xa5\x21\x34\x7c\x6c\x00\x75\xf6\xee\xef\xcf\xdf\x9c\xbd\xbc\x7a\xf1\xfe\xdd\xeb\xb3\x9f\x14\x0c\xbf\xb4\xa1\xf1\xdb\xb3\x4f\x9f\xce\xde\xfd\x74\xf5\xf2\xf9\xf9\x73\xd5\xd4\x2d\x7b\xa0\xe1\xf9\xc7\xe7\xef\x3e\xbd\x79\x7e\x7e\xf6\xfe\x9d\xdf\xde\xf9\x24\x96\x5d\xc7\xa5\xaa\xd0\xbf\xbc\x92\x53\xf2\xe5\xbe\xa3\x14\x5e\xfd\x89\x9c\x92\xfe\x93\x27\xe4\x2f\x41\x42\x39\x27\x4f\xfa\xc4\x9a\xa7\x2b\x78\x57\xa3\x27\x48\xcf\xbc\x01\xdc\x25\xb2\x8e\x1c\x89\x6e\xab\x6b\xb4\x05\x43\x75\xd5\xe3\xfb\x2e\x61\x9f\x03\x56\xcd\x87\xad\x73\xb4\x93\x53\x09\xd1\x7a\xcc\x43\xa6\x3b\x17\x7f\x81\x2b\xd8\xf2\x57\xde\x8f\xd3\x32\xc1\xd0\x53\x18\x17\x0a\xf6\xc6\xa7\x44\x10\x08\x7e\xcb\x9e\x30\xb8\x14\x9c\xb7\xc8\x53\xd2\xd6\xdd\x92\x67\x04\x8e\xad\x50\xac\x4b\x7b\x76\xab\xea\x57\x5e\x8a\xc5\x35\x21\x42\xb3\x86\xec\xc3\x98\x45\x5e\x87\xc2\x80\xd4\xd7\x01\x12\x39\x40\x76\xaf\x79\x32\x09\x48\xf7\x02\x9a\x97\x2b\x78\xbf\x1d\xdc\x9c\x17\x42\x80\x6f\x7c\x43\x49\x9a\x9a\xb5\xaf\x90\x38\x9a\xd2\xde\xf3\x49\xef\xf1\xe4\x95\x85\xf3\xbd\xf3\x22\x54\x03\x10\x6c\xd4\x46\x50\x1d\xfb\xc9\xb4\xe1\x95\x7b\xc9\x3d\x3f\xa7\x7c\x95\x8b\xaf\x2c\xd4\xde\x30\xdf\xcf\x4d\x8d\xd0\x1a\xb9\xab\xb1\x45\xfb\x01\x3e\x53\xc4\xa8\x61\xb1\x06\xc1\x40\xfa\x4f\x48\xed\x27\xf2\xa4\x5f\xcf\xd6\x2e\x7f\xb8\xb4\x6e\x44\x1c\x68\x6f\xa6\xd2\xa1\x7f\x33\xb5\xef\xf5\x6a\x86\x08\x6c\x2f\xe0\xe9\xe4\x6f\x59\xd6\x3e\x98\x0d\xeb\xdb\xaf\xfa\x1b\x48\xef\xcb\x53\x41\x73\xb7\xec\xbb\x88\x5d\xc5\x71\x13\x95\x6b\x68\xa8\xc8\x2b\xb3\x45\xbd\xa4\x25\xfd\x7e\xe2\xfa\x40\x1a\x49\xeb\x57\xfc\x0d\x84\x75\x77\x1b\x41\x56\xbb\xe4\xbb\x88\xea\x63\xb7\x89\xa4\x15\xba\x69\x82\x62\xa7\xc8\xcd\xbf\x81\xa4\x15\x30\xcd\x44\xad\x54\x35\x64\x4d\xb2\x80\x26\x4c\x9c\xf9\x79\x50\xc4\x79\x29\xc0\x7c\xdf\x36\xe5\xaa\x27\x82\xde\x76\x89\x4d\x6f\xbd\x3d\xbd\x81\xce\x27\xb8\x77\x21\x26\x6a\x13\x92\x38\x9f\xbd\x94\x5f\xdb\x06\x41\x27\x17\xbe\x57\xac\x83\x25\xc9\x3f\x26\x56\x85\x5e\x1c\x76\x14\xf8\x97\xf2\x2a\x55\x76\xf3\x3b\x76\xa2\x03\xba\x01\x60\xab\x43\xac\x11\x67\xe9\xef\xda\x99\x86\xda\xb1\x36\xfd\x0d\x0c\x6d\xb6\x6c\xbb\x1f\x0b\xe6\xc9\x37\xec\x9e\x55\xc6\xda\xb8\x22\xaa\x8c\xef\x09\x19\x30\x9c\x24\x60\xa8\xf9\xcd\xb2\xc6\x87\xf5\x90\xc8\xf1\xeb\xb7\xed\x15\x81\xbc\xf9\x4d\xcb\xa1\x56\x59\xb5\xa5\x90\xf5\x01\x16\xc7\x74\x47\x62\xa2\x96\xc9\x84\x4c\xa7\xd3\x1d\xe0\x15\x87\x89\x25\x4b\xc9\x88\xa2\x72\xd9\xe8\xaa\xce\x32\x12\xac\xb0\x02\x98\x3e\xcb\x79\x7c\x4a\x9e\x91\x96\x32\x2f\xc8\xee\x5b\x42\xe7\x8b\xc3\x96\x64\x2c\x0a\x51\x93\xe0\xa4\xd5\x9b\xee\xfc\x6b\xd9\xaa\x7e\x46\xb6\x90\xb6\x15\x06\xf2\x0f\x70\x31\x57\x71\x2e\x5e\x25\x70\x69\xd6\x25\x31\x7f\x49\x4b\xe6\xfd\x3c\x8f\x97\xec\xd3\x0d\x4b\x58\x99\xa5\xa2\xec\x0d\xb8\x2f\x24\x56\xad\x77\xf0\x30\xab\x52\x60\x37\xfa\x90\xac\xdc\x36\x1f\xb2\x55\x1a\x5a\xbf\x31\xa4\xa2\x55\x20\xba\xb5\x7f\xd2\xb9\xfe\xa5\x4c\x2a\xe2\x08\xb0\x2b\xa7\x08\xcf\x05\xbb\x39\x2d\xb8\x13\x50\x48\xd3\xe3\xef\x34\x59\x31\xc9\xfe\x72\x8f\xb7\x8b\x9c\xcd\xc3\xfe\xae\xaf\x18\xba\x56\x10\x23\xb0\x7b\xb5\xdc\x83\xee\x87\xe7\x1f\xcf\xaf\xce\xff\xf1\xe1\x95\x7b\xc8\xd5\xc5\x7a\xc9\xe8\x92\x0b\xf3\xd7\x74\x27\x41\xb2\xe2\x01\x6f\x80\xa7\x3c\x5d\x76\xb2\xa9\xa5\xf2\x98\x10\x6d\x86\xd8\x50\x15\xe1\x89\x50\x57\x86\xd3\xa0\xf9\xa5\x4f\x82\x6e\x3e\x43\x39\xc1\x6d\xb8\x97\x77\xe2\x4d\x42\x89\x32\x09\xfc\x89\x8c\xea\xf4\x0f\xa8\x53\xcb\xcb\xd8\x1a\x5d\xd9\x2c\x02\x41\xa6\x77\xf1\xad\x22\x53\x12\xca\xcb\x0f\xb4\x28\xc9\x29\xa1\x49\x72\x41\x93\xc4\x0a\x85\x7c\xe9\x1d\xae\x1e\xe9\xda\x5f\xbf\xba\x07\x27\xf5\x01\x1e\x2c\xc0\x8d\xd2\x40\x08\x1f\x49\x5c\x21\x4b\xfd\x16\xf9\xa6\xda\x95\x83\x99\xc0\x0b\x7c\x45\x60\x10\xf5\xa7\x2f\x3f\x2d\xa2\x83\x17\x06\x4c\x7e\x7a\x8a\xfd\xc2\xaf\x8d\x67\x38\x9a\xa8\x14\x96\xf7\x5d\x72\x71\xd9\x90\xba\x33\xe6\xc8\xd3\xff\xf9\xf6\x8d\x5c\x39\xaf\xd3\x36\x4b\xfc\x3c\x27\xea\x02\xcc\x0f\x2f\x85\x40\x65\x36\x92\x36\x97\x6b\xb9\x33\x21\x34\x0c\x89\xfa\x49\xe4\x89\xa4\xda\x3b\xae\xc7\xf3\x4c\x0c\x90\xb7\x59\xc2\xd5\xce\xc1\xbb\xf2\x5b\xc9\x0a\xfd\x37\xef\x62\xd4\x68\xde\x25\xc1\xaa\x28\x58\x5a\xa2\xc0\x80\x15\xd8\x25\x80\xc7\xeb\xac\x20\x21\x9b\xad\xe6\x73\x30\x58\x65\x45\x3c\x8f\x53\x9a\x68\xed\x42\x0e\xab\xdf\x27\x7f\xcd\x4a\x92\xd3\x72\x01\x9b\x02\x2f\x0b\x0a\x96\x22\x1e\x2f\xf3\x84\x91\x25\x9f\x93\xd2\xc8\x46\x6e\xb8\x9b\x25\xae\xb9\x8b\x3c\x7e\x5c\x11\x77\xa2\xd2\xc5\xe0\xb2\x53\xc7\xf9\x17\xee\xf4\x7a\xb3\x2d\xfe\x11\xb4\x9e\xf8\xfc\xd4\xad\xd6\x43\xcb\x2d\xc1\xbe\x90\x21\xbc\x5a\xf7\xd6\xef\x4b\x77\xb5\x39\xb7\xf5\x17\xea\xa3\xbe\x58\xbe\x82\x9b\xe5\xae\x00\x7e\x35\x24\xa7\xe2\xbf\x27\xa2\xf0\x4f\x58\xa2\x6f\x99\xaf\xd4\x35\xb3\xbd\x22\x05\x97\x60\xbd\x8b\xab\xd8\x5e\x81\xfd\x3e\x79\xf5\x39\x2e\x09\xa3\x45\xb2\x56\x74\x17\x9b\x2d\x2e\x7a\x77\xa9\xd6\x10\xb5\x53\x59\x55\x38\x04\x19\x2c\xe0\x77\x20\x65\x3d\x19\xed\xe5\x4a\x30\x94\x75\x19\xa7\x4d\xeb\x4f\xe7\xe6\xc1\x38\x87\xb0\xeb\xc3\x08\xc9\x8c\x69\x34\xd0\xb9\xce\x6e\xa3\x6e\xe8\xaf\xff\x70\x4d\xe2\x94\xe4\xc0\xda\xa4\x58\x25\x8c\x1b\x9b\x14\x0d\xca\x15\x4d\x08\x38\x28\xc5\x01\xe2\x5d\xa1\x9b\xbd\x6b\xd6\x52\xcd\xba\x66\xaa\x2e\x24\x5c\xe1\xf8\x8c\xba\x7a\xbf\xb4\x05\xd1\xbf\x85\xf0\x16\xf1\xcd\x7a\xef\xcd\x59\x89\xca\x01\xca\xa6\xb6\x94\x09\x9d\x1e\xd6\x69\x57\x91\xee\xd4\xc0\xae\x4c\xdb\xfd\xb7\xcc\xa2\x60\xe4\x5b\x5a\xc8\x84\xc3\x8a\x33\x3c\x66\x4e\xa3\xac\x00\x43\x10\x2d\xc1\xb2\x52\xb0\xff\x5e\xc5\x05\x93\xd1\xed\x39\xa1\x05\x23\x39\xc6\x0c\xd4\xd9\x03\x20\x97\x40\xe1\x4d\xda\xa3\xb6\x6c\xf1\xf8\xb1\xee\x35\x4e\x25\x98\xea\x04\x1a\xdb\x46\x45\x6f\x69\xcb\xe6\x5d\xe2\xcb\xbe\x4d\xe3\x84\x79\x97\xdd\x5d\x48\x08\xfe\xde\x59\x51\x05\x1b\x79\xeb\x11\x02\x14\x1a\x2f\x72\xd9\xad\x61\x2c\x69\xa6\xa9\xff\xb8\x89\xeb\x64\xb5\x66\x7e\xfb\xf6\x7e\xea\x61\x89\x7f\x9e\x11\xe9\x6b\x02\x8d\x3a\xcd\x15\x27\xa4\xd5\xda\xcc\x66\x5b\x89\xa8\x66\xfc\x9f\x55\xf4\x90\x09\x19\x8a\x12\x19\x30\x69\x93\x3c\xfb\x7d\x84\xd9\x47\x16\xac\x0a\x1e\xdf\x32\x94\xd9\x4b\x5a\x2a\xe1\x04\xd9\xb6\x40\x25\x47\x09\xde\x92\x0f\x26\xc8\xff\xfd\x7f\xfe\x5f\x32\x51\x49\x40\x53\x21\xf6\xa8\x03\x31\x65\xbc\x64\xa1\xd8\x7d\x4b\x56\x40\xc2\x85\x55\x50\xae\x0a\xd6\x83\x74\x1c\xc1\x22\xcb\xe0\x08\x26\x6d\xb1\x12\x66\x99\x91\x15\x67\x24\xe6\x0e\x28\x3a\x13\x5b\x77\x50\xb2\x70\x77\xb6\x06\x84\x42\x96\xb0\x39\x15\x05\x65\x06\xed\x41\xf4\x62\x62\x1f\x49\xb4\x8a\xc4\xb4\x0e\x34\xb5\x4c\x8d\xe9\xf6\xd6\x10\xbd\x52\xab\x42\x3d\x59\x62\xcd\x56\x75\x26\x9e\x29\xdd\xa5\x17\xd2\x92\x5d\xa8\x56\x97\xd5\x9a\x93\x9a\x93\x54\x5b\xd5\x6f\xe0\xc0\x67\x1a\x8d\x1e\x9c\x69\x42\x19\x9a\xb5\xbe\xb6\x9b\x6f\xd9\xfe\xf2\xfb\x6e\xa3\x46\x92\xd7\xe3\x21\xe4\xbb\x1a\xa9\x2b\xe1\xbb\x64\xd3\x68\x95\xf8\xbf\xad\x93\xf8\xdf\xc8\xd7\x38\xef\xd6\xf1\xf1\x5f\x36\xef\x65\xbc\xfc\xdf\xf3\x0e\xff\xfc\xfb\xcc\xbb\x73\x17\xf1\x2f\x9b\x79\xdc\x65\x1e\x9a\x7b\xf7\x1a\xe4\xff\xbb\x33\x5f\xa7\xd1\xfd\x2f\x5f\xef\xfa\x7e\xa8\x71\xd2\x83\x45\x9c\x84\x05\xb8\x8a\xb2\xa4\xa7\x7e\xc9\x93\xa7\x3c\x0b\x55\x74\x41\xd5\x18\x11\x7e\x9d\xda\xba\x14\x34\xbb\x3c\xa9\xd1\x92\x6a\xcf\xde\x0a\x44\x15\x3b\xe2\x28\x7e\xb5\xb7\x4f\x6d\xd9\x5d\xd7\x3a\xa2\x6f\x54\x04\x49\x55\x5f\x81\xec\xb4\x54\x7a\xe2\x38\xe7\x73\x43\x8c\xef\x3d\xa4\xfb\x5d\x23\xc1\xc1\x45\xed\x54\x13\x4f\x5e\x20\x2d\x69\x6e\xdd\xff\xe4\x1d\xf2\x45\x5f\x11\x49\xfa\x93\xfb\x8e\x0f\x10\xe8\xea\xbe\x46\x42\xf8\xf5\xe4\xd4\x7d\x5f\xe0\x5f\xfe\x34\x35\xab\x72\xea\x69\x3e\x94\x74\x25\x20\x0f\xe7\xa0\xe1\xf4\x04\x83\xd8\x78\x70\x52\x87\xb3\xdf\x41\x15\x24\x66\x95\x06\x75\x87\x24\x7f\xc4\x9d\x86\x73\x02\x2e\x20\xe7\x02\xb6\x71\x0d\x65\x79\x89\xeb\x44\x3e\x60\xc5\x55\x70\x29\x74\x71\x53\xd8\xcb\xca\x05\x2b\xea\xe6\x2f\xcb\xcb\x6f\x60\x7e\x64\x7c\x7d\x74\x97\x4a\xaf\xe3\x41\x67\x3a\xed\x7c\xeb\x6a\x68\x9e\x72\x77\x6d\x64\x79\xa9\x10\xd8\x66\x71\x54\x18\x77\x1b\xe9\xe5\x5c\x8f\x6f\x4f\xfc\xe9\xce\x29\x18\x33\x70\x12\xbe\x85\xe0\xf0\xf1\x2c\x2d\x93\x1e\x76\xfd\x71\x25\x4e\xe1\x8d\xac\xab\xa7\xc7\x36\x9c\x4e\x77\x7c\x00\x24\x46\x37\x4a\x7a\x4b\xe3\x04\xa2\xb3\xc7\x29\x5e\x92\xb0\xf4\x36\x2e\xb2\x54\x0c\xaf\x37\x9d\xa6\xe7\xc5\x9a\xe4\x59\x02\x11\xf2\x65\x6e\x34\x69\x9b\x99\x4e\x77\x5c\x1f\x9f\x5d\x3c\x91\xc0\x6d\x09\x58\x76\xd0\xaa\x67\xac\x4a\x67\xef\xce\xdf\x5c\x3d\xff\x70\xe6\x9a\x94\x54\x29\xd8\x93\x1e\x60\x8c\x1a\xe6\x50\x24\x17\xdd\x6a\x01\xb6\x79\x17\xb4\xe8\x60\x36\xc1\x2f\x72\xd9\xb3\xa4\x87\xe3\x10\x02\x9d\xdc\x37\x6d\x8b\x78\xe4\x42\x59\x4f\x76\x09\xb0\x77\x14\x71\x06\x7e\xf4\x83\x0a\x6b\x11\xcc\xf8\xeb\x32\x85\x40\x79\x9b\x05\x79\xff\xff\xcf\xf5\x29\xff\x5b\x47\xdd\xed\x57\xae\x6b\xd8\x70\xac\x26\x32\xc7\x22\x5e\x9f\x7f\x8f\xc3\x64\x83\xb3\x64\xd5\x51\xb2\xdf\x27\xbf\x2c\x58\x4a\xee\x18\x66\xda\xa6\x04\xae\x19\x17\x59\x12\xb2\x82\xcc\x56\x25\x49\x33\x39\xd8\x32\x93\x64\xc0\x96\x75\x4e\x86\x7f\x7f\xfe\xe6\xe7\x57\xbe\x7b\xa1\x2c\x3c\x71\x3b\x44\x98\x7c\x95\xe7\x49\xcc\x42\xcc\x2e\x0a\x5c\x51\x85\xae\xdc\x77\x1c\xe8\x5e\xe1\x49\x65\x38\x29\x63\x21\xe1\x39\x0b\xe2\x28\x0e\xc0\xef\x8c\x88\xa5\x2c\x86\x14\x97\x2d\x4f\xc6\x34\x0f\xc9\x48\x06\x77\x54\xa6\x1c\xed\x63\xae\xb7\x64\x83\xa7\xe4\x6f\x75\x52\xd9\xc6\x3b\xc5\x71\x4b\xe1\xf3\x2e\x41\xa7\xc9\x26\x53\x07\x79\xd0\xf6\xbe\xe4\xf3\x6f\x75\x54\xc4\x6f\x5e\x97\xe4\xd4\x47\x62\x2b\x23\xb6\x35\x9e\x9a\x68\xdf\x8e\x3f\x78\x7d\x86\xa3\x0b\xb5\x15\xe0\xfc\x4a\x77\x11\x83\xbd\xe5\xef\x09\x85\x4b\x07\xb9\x7b\x37\xe5\x85\xef\x9b\x51\x63\x3b\xaf\x73\xc8\xa8\x48\xbc\xdf\xe2\x53\x67\x9b\x9c\x37\xbb\xd4\xb9\xf7\xbe\x90\xeb\xe4\x2c\xd4\x32\x56\x27\x0d\xde\xc4\x1b\x9b\x5c\xed\xec\x5c\xad\x1c\xf3\xb1\x2a\xb7\x09\xd3\x9d\x76\x9d\x98\xd8\x5f\xc1\x58\x29\x3f\xf4\x88\x4a\xab\x46\x0b\xcb\xf3\xc2\xde\x02\x94\xfc\x97\xaf\x88\x70\xf3\x6e\x75\x34\x08\x2c\xf0\x64\x82\xed\xfa\x07\x45\xb5\xfb\xf8\x36\x6e\x7f\x86\x8e\x30\xe9\xd6\x0c\xd7\xfa\xfd\x59\xd3\x5c\xc7\x00\xfa\x3c\xf6\x9b\x99\xc0\xf2\x2b\xd8\x82\x11\xbc\x73\x60\x17\xd4\x8a\xef\x9e\x7d\xb4\x06\x79\x93\x6e\x4f\x2b\x59\xae\x78\x69\xbf\x9c\xd0\x59\x7c\xff\xf5\x73\xa5\x87\xba\xfd\x7c\x99\x59\xf1\xbc\xa8\x7e\xe3\xa2\xad\x71\x1d\xd9\xec\x39\xd5\xb0\x68\xbf\x73\x9a\xce\x17\x42\x81\x2e\x13\x65\x4b\x15\xfa\x08\xfb\x5c\x9a\xdc\x47\x9b\x96\x2c\xb9\xa3\xb8\x51\x6a\x2b\x95\xbc\x34\x97\xc0\x74\x5b\x5f\xd4\xbb\xeb\xd2\xd3\x04\x6c\x15\xfb\x3b\xe7\xba\x42\xaa\xcd\xf3\x5c\x9d\x49\xe9\xc8\xe4\x25\xa8\x99\xa6\xd3\xb4\xe1\x65\x34\x3e\x3f\x12\xa3\x71\x1e\x48\xab\xbc\xc8\x70\x82\x2e\x8b\x15\xc3\x60\x4c\xb2\x6b\xae\xdc\xc2\x88\x72\x3c\x94\xac\x35\x4b\x56\xec\xa7\x02\x1e\x53\x01\x80\xf1\x60\x42\x5a\x7f\x60\x01\x8b\xa2\x21\xe6\x0d\x1c\x0e\xa0\x28\x88\xc2\xa3\x30\xc0\xa2\x11\x16\xcd\x06\x33\x16\x8c\xb1\x68\x0f\x8b\x8e\x07\x74\x9f\x32\x2c\xda\xc7\xa2\xc3\xa3\xe3\xc1\xb1\x6c\x38\xc6\xa2\x83\xc1\x61\x78\x34\xc3\xa2\x03\x2c\x1a\xef\x1f\xb0\x43\x8a\x45\x87\x58\xb4\x3f\x1e\xd3\x83\x7d\x2c\x3a\xc2\xa2\xbd\xc3\xfd\xc3\xfd\x08\x8b\x8e\xb1\x68\x74\xb0\x37\xda\x3b\xc2\xa2\xe7\x35\xb8\x3e\xaf\x41\xf6\x79\x0d\x6a\xcf\xdd\x5e\xf1\x89\x10\xe8\x23\x86\x72\x8a\x58\xb5\x64\x55\xf5\x4e\xfe\x07\x67\xb3\x60\xa1\x3b\x91\x51\xc4\x66\x8c\x39\x13\x19\x45\x41\x18\x8e\x9c\x89\x64\xd1\x31\x3d\xa6\xce\x44\xb2\xf1\xe1\xde\xe1\x9e\x33\x91\x2c\x1a\xef\x8d\x07\xce\x44\x46\x10\x0f\xc4\x99\x48\x36\xde\x3b\xde\x1b\x3b\x13\x19\xee\x8d\xa2\x51\xe4\x4c\x64\x70\x30\x3a\x1a\x1d\x39\x13\x39\x3b\x1c\x06\xc3\xc0\x9d\xc8\x28\x3a\xa2\x47\x03\x77\x22\xa3\x68\x3c\x1a\x8f\xdc\x89\x8c\xa2\xe1\xe1\xfe\xbe\x3b\x91\xe1\x78\x30\x18\x0c\xea\x27\xb2\x80\x7b\xe6\xcd\x73\xd8\x7f\xf2\x64\x9a\x92\x27\xe4\x45\x96\xaf\xf1\x75\x76\x3b\xe8\x90\xd1\x60\xb8\xbf\x9b\x17\x8c\x83\xef\xde\x6b\x1a\xb0\x59\x96\xdd\x74\xc9\x59\x1a\x40\x8e\x7c\x68\x72\x2e\x34\x58\x9e\xad\x8a\x80\xe1\x4b\x9e\x98\x93\x24\x0e\x58\xca\x59\x08\x37\xdd\x05\xc8\xae\xb7\x67\xe7\xaa\x98\x44\xd9\x2a\x0d\xf1\x82\x81\x01\x8c\x37\x67\x2f\x5e\xbd\xfb\xf4\x8a\x44\xb1\xba\x78\x60\x90\x56\x8f\x84\x71\xc1\x30\x51\x33\xd8\x1d\x4d\x4f\x65\xc1\xac\x3c\xfd\xfd\x3e\xa2\x81\x09\x41\x45\xdd\x6c\x56\xd2\x38\x85\x44\xec\xa4\x60\x90\xb1\x3d\x60\x4a\x8e\xca\x7c\x71\xf2\x86\x4e\x1c\x59\x38\x3e\x37\x04\x48\x37\x2c\x2f\x49\x1c\xb2\xb4\x8c\x03\x9a\xa8\x36\x77\x74\x4d\xe2\x52\x0c\x0e\x41\x63\x5e\xd2\x62\x95\x96\xf1\x92\xf5\x7e\xe5\x48\x76\xa1\x19\x5b\x81\x87\x9c\xdc\x70\x80\xbe\x38\xa6\xc8\x8b\x44\xce\x92\x08\xee\x12\x8d\xd3\x1f\x79\xfc\x18\x8a\x3b\x78\xba\x01\x69\xfc\x5a\x41\x9b\xee\x58\x80\xa6\x3b\x1d\x0c\xb1\x20\x30\xfe\x99\x33\x72\x3d\x67\xa5\x95\xb3\xe4\x1d\x5d\x32\x7e\x4d\x66\x2c\xa0\x62\x75\xc2\xb1\x2b\x49\xc8\xac\xc8\xee\x38\x2b\xb8\xf2\xfe\x02\xc7\x07\x70\xca\xea\xf7\xc9\xb5\x9b\xf6\xe4\x9a\x64\xa9\x4d\xae\x6b\x81\xd9\xb5\xa2\x5a\x9c\x12\x4a\xee\xb2\xe2\x86\x15\x3d\xf2\x89\x31\xf2\x87\xe1\xd1\x5e\x0f\xa9\xb0\xa0\xe1\x47\x24\x0c\x39\x25\xf3\x5e\xc1\xe6\x2c\xc5\xb8\x59\xaa\xf8\xf1\x63\x41\x18\x29\x26\x6a\x30\x6f\xcf\x3b\x3a\xbb\x06\x66\xaa\x71\x01\x4c\x77\x3a\xe4\xcf\xa7\x20\x0a\x00\xf5\x4f\xe2\x14\x0d\x76\xe9\x24\x24\x35\xfd\xc5\x29\x09\x28\x87\x17\xc3\xd6\x74\x93\x82\x41\xdc\xbe\x90\x24\xb4\x04\xf7\x0f\xb8\xab\x4b\x2c\xec\xad\xa1\x3c\x7e\x5c\x3b\x16\x85\xc2\x6b\xf0\x3a\x29\x18\x13\x82\xac\x04\x0f\x35\xc1\x88\x86\x43\x7a\xd3\xb4\x96\x16\xa7\x8e\x3d\xa8\xe6\xe9\xad\x74\x60\x69\x4f\x77\x7a\xfd\x42\x8f\x1f\xea\xc6\x11\x69\x1b\x14\x25\xbf\x81\x7b\x00\x06\x24\x04\x92\xc8\x2d\x5e\xa3\x22\xea\x34\x60\x62\xc6\x2e\x38\xd0\xf2\x7d\x04\x98\xcb\x4c\x52\x59\x72\x44\x2e\xa7\x8c\xd0\x50\xfa\xd2\x38\xa3\x25\x44\x3e\xbf\x15\x2a\x84\x0c\x3e\xdf\x40\x41\x42\xe4\xc3\xd8\xb6\x51\xb1\xb6\x20\x16\x28\x28\xf7\x2a\xcb\xe4\xff\x9b\x25\xd8\x23\x23\x35\x64\x34\x34\x24\x43\xcd\xe6\x8a\x37\x07\xef\x73\xf3\x22\x5d\x1f\xd0\x4f\xd4\x57\x5c\xc9\xa2\x46\xee\x25\x33\xd2\x55\x0c\x1d\xc5\xe4\xbe\x15\xdc\x12\x64\x4b\x41\x2b\x08\x49\x40\xca\x05\x4d\xe5\x86\xdb\x53\x6d\x7e\xd0\x49\x4f\xab\xe9\x4d\xed\x88\x44\xe4\x99\xfa\x32\x51\x69\xec\xe1\x65\xbc\x8c\x9e\xa7\xa1\xfc\xe0\x85\xd5\x13\xf2\x6e\xba\xf3\x97\xbf\xa8\xdf\xf2\x86\x49\xb4\xa5\x7c\x9d\x06\x67\x4d\x00\x9c\xaf\x0a\x8a\x53\x68\x81\x52\xb7\x18\xe7\x74\x5e\x01\x64\x7d\x53\x60\xac\x22\x67\x06\xe2\x14\x35\x18\x43\x8d\xa5\xfc\x7d\xea\x39\x72\xab\x0b\x69\x2d\x12\x31\x4b\x69\xc3\x4a\x80\x58\x0c\xce\x82\x96\xb6\x06\xd9\x9f\x75\x06\xe9\xf7\xc9\x59\x54\x2b\xef\xb8\xcc\x32\x19\xca\xce\x12\xf4\xc3\xb9\x63\xad\x82\xa1\xec\x46\x64\xed\x24\xce\x10\x58\x01\x62\x2e\x48\xd1\xa3\x44\xbd\xbd\x17\x56\x3b\xd3\x8e\x3b\x55\xc1\x65\x8d\x4a\x9f\x25\x20\x7a\x4d\xda\x2a\xc9\x0c\xae\xb6\x09\xc8\x4b\x5a\x8a\xad\x1a\x43\x81\xf0\x52\x2f\x15\x5c\x4d\xe8\x71\xa4\xc8\x77\x47\xb9\x06\x44\x93\x82\xd1\x70\x5d\x19\x6b\xcf\x3e\xb6\x28\x39\x21\xc5\xd8\x4b\xa8\xeb\x80\xd4\x24\x6a\x53\x2e\x06\x8f\xd1\x08\x66\x6b\x22\x87\x0a\x61\x19\x42\xd6\x21\xe2\x73\x2c\xb0\x96\xb0\xbc\x11\xb7\xe3\xa8\x4a\xe1\x0e\xc9\x0a\x42\x49\xca\xee\xba\x84\x2d\xf3\x72\x6d\xfb\x3b\x6d\xc1\x13\x10\xe0\x41\x72\xda\x33\xbf\x47\xb9\xbc\x04\x28\x93\x48\xa0\xa0\x79\x3b\x4e\x53\x56\xbc\x4e\xbb\x24\x5b\x95\xf8\x87\xd8\xbd\xbb\x42\x22\xbf\xc9\x02\xfe\x26\xe6\xa5\x7d\x1b\x7d\x16\xa9\x8a\xe6\xd0\x29\xf8\x45\x16\x1a\x09\x23\x38\x8b\x92\x9f\x14\x8e\x90\x7d\x3c\xad\xab\x26\x43\x10\x67\x91\xa9\x2c\x67\x05\x6c\xd9\xa2\xa2\xfe\x20\x36\x1e\xd9\xfb\xe3\xc7\x5b\x02\x23\xcf\x74\x9b\x89\x29\xb5\xd2\xd7\xcf\x2d\xe8\x6e\x6e\x53\xb7\x73\xd3\x8f\x9d\xfc\x5e\x1d\xd8\x31\x92\xd4\x0b\xfc\xd5\xb6\xa8\x27\xa4\xc3\x85\x8c\xa1\x22\x89\x28\x0e\xfd\xbd\xab\x38\xbd\xcd\x6e\x98\x52\x45\x57\x69\x1c\xc5\x8c\x03\xbb\x81\x17\xfb\x92\xa5\xa8\x1c\x70\xe5\x4a\x07\xd1\x67\xbb\x1a\x4a\x0f\x2c\x36\x5d\x20\x7f\x4f\x9b\x29\x04\x30\xe5\x8c\xad\x47\xa6\x3b\x3b\x85\xb5\x7b\x06\x3f\xde\x42\x5d\xc3\x00\x38\xef\x72\x3c\x06\x5f\x09\x79\xee\x50\xee\xde\xe2\xc9\x9e\xe0\x23\x72\x0a\xec\x74\xa2\x57\xcf\x79\xb1\xee\x63\x04\x0b\xe9\xbc\x57\x66\x64\x19\xa7\xf1\x32\xfe\x27\x23\x21\xcb\xf2\x52\xfc\x89\x03\xec\x91\x8f\xd0\x89\xe0\x18\xb1\xb5\x24\x0c\x76\x07\x04\x54\xb0\x20\x2b\x42\x92\xc4\x37\x4c\x21\xd7\x2b\x8b\xf5\x2b\x1d\xe4\xa4\x67\x9a\xf4\x70\x8b\x8e\xd3\x92\x15\x11\x85\x5d\x7a\x95\x84\x12\x10\x18\x50\x66\x8c\xa5\xa4\x0d\x12\x8e\x72\x08\x51\x1f\x67\x2b\x9e\xac\x3b\x24\x64\x3c\x9e\xa7\xf2\x0e\x45\x08\x38\x4a\x82\x24\x53\x51\xb3\x67\x4c\x42\x41\x42\x86\xe0\xd4\x9d\xad\x4a\xa2\xe3\xf4\x75\xd1\x76\x91\xea\x58\x45\x42\x8f\xe4\xe4\x4e\xfc\x51\x30\x42\x67\xa2\xf6\x9d\x02\xa3\x04\x12\x5a\x75\x52\xc2\x3e\xc7\xbc\xc4\xd7\x70\xc0\x0e\x77\x42\x7e\xa5\xa5\xe8\x3a\x80\xd7\x33\x1c\x4e\x17\x05\x03\xd3\x08\xe8\xa6\x12\x92\xa8\x81\xb1\xb0\x41\x76\x98\xe5\x2d\xa5\x07\xf9\x85\x81\x1f\x27\xbb\x65\x62\x16\x4b\x42\xc5\x09\x05\x7c\xd2\x29\xe7\xab\x25\x28\xf5\x08\x69\xa1\xb9\x51\x10\x40\x48\x38\x1a\x94\xc9\x9a\x64\x29\xd3\xe3\xec\x12\x0e\xf1\xfc\xc0\x6b\x7a\x41\xf3\x9c\xa5\x4a\x49\xc6\x13\xb9\xa4\x12\x46\xd2\x01\x22\x00\xf2\x77\x8c\x84\x20\xcd\x61\xc4\x82\xc6\xd9\x2a\x90\x6e\xf1\x8a\x84\x1a\xe5\xf3\x85\x02\x94\xa5\x09\x68\x8d\xb1\x18\x12\x4d\x04\x71\xb3\x00\x75\x66\xed\xae\x1d\x73\x15\xcc\x47\xb2\x81\xe4\x99\x2e\x7a\xb1\xea\xe9\x17\xec\xc5\x21\xf9\x30\xe1\x0b\x9a\x33\xf4\x80\xcd\xc8\x22\xcb\x59\xb4\x12\x62\x5d\xfa\xfc\xcf\x18\x09\x16\x0c\x83\x08\xc9\x0e\x71\xf3\x32\x19\x92\x8b\xf5\x0b\xd0\x42\x23\x21\x39\x67\xbf\x76\xc5\x20\xb4\x9c\xb4\xb4\x59\xe3\x31\x22\xad\xc4\xd3\x1d\xcc\xca\x39\xdd\x81\x36\x13\x12\xa5\x78\x23\x68\xa0\xe8\x3c\xd7\x7e\x08\x98\x06\x80\x20\x07\x34\x3c\x56\x14\x06\x82\xb5\xa3\x09\x61\xf5\x13\x4b\x21\xca\xe3\xa7\x15\xcf\x59\x1a\xb2\xf0\x53\x89\x6f\xaf\xa6\x3b\xdc\x29\xb2\xb4\x91\x4a\x9b\x7f\xc4\x2c\x09\xdd\x36\x50\x54\xd3\xe6\xd5\x67\x16\xac\x4a\xb4\x03\x4d\x77\x98\xfa\x55\x53\xf3\x05\x4e\x1e\x43\xc0\x81\xfa\xa5\xf5\x28\x38\x56\x88\x71\xe3\xf6\x1f\x6b\x9d\x03\xcc\xac\x20\x34\x51\x8e\xc1\x3c\xc3\x1d\x28\x5d\x32\xc2\xa2\x48\x54\x42\x4d\xa0\xdf\x27\x90\xe9\x0a\xbc\x93\x57\xa5\x12\xab\x3a\xdf\x3a\xa6\x02\xc2\x54\x08\xe8\xc5\x20\x91\x7c\x21\x8d\xc4\x9f\x84\x7a\x93\xc2\x03\x19\xbd\x9b\x0a\x45\x61\xb5\x5c\xae\x89\x15\x96\x59\xf3\x09\xc7\x65\x72\xc7\xc0\xf9\x59\x22\x66\x07\x70\x16\x2c\x28\xa1\xd8\xc5\xd6\x96\x96\xeb\x28\xc1\x70\x99\xef\x41\x96\xbc\xa0\xf7\x28\xb5\x6a\x80\x36\xbc\x07\x0f\xaa\x04\x6b\x83\xa5\x15\x57\x48\x2c\x36\xc8\x2e\xc4\xd1\x5f\x82\x20\xe0\x0b\x90\x21\x32\x17\x37\x86\xd4\x57\x6a\x4b\x0c\xbb\x12\x26\x14\x80\x88\x5a\xe9\x3c\x41\x95\x28\x15\xa7\x6f\x49\x42\xce\x48\x79\x97\x19\xdc\xdc\xb5\xa2\x91\x6b\x77\xc8\x97\xfb\xfa\x4f\xaf\xad\x9b\x90\x07\xaa\x7c\x50\xa4\x91\x75\xd5\x7e\x03\x82\x5f\x2c\x71\xe5\x74\x02\xf4\xfa\xa3\x52\xeb\x75\xb3\x3f\x42\xb9\xe5\xac\x82\xa4\x94\x60\x50\x46\xa5\xb4\x44\x8f\x79\x75\xfb\x11\x1b\x66\xa8\x00\x54\xdc\x40\xaa\x9f\x2e\xdc\x83\xcc\x65\xbd\x39\xd4\xba\xad\xd1\x99\xed\x55\x6f\x73\x56\x02\x34\xa3\x9b\xa8\x12\x01\xff\x7d\xa4\x17\xd2\x3b\x40\xb9\x0e\x39\x0d\xe2\xf1\x63\xfd\x77\x5b\xff\x81\xd6\xc1\xf6\xc5\xa5\xf2\x8d\x10\x27\x88\x26\x60\x78\x1b\x23\xfe\x69\xaa\xf1\xe8\x54\x1c\x25\xad\x8a\x78\xa8\x44\x11\xd7\xd0\xa8\xeb\x9d\xf7\x3a\xb6\xc2\x79\xee\xb9\x16\x49\x39\x8e\x33\x54\x37\xbd\x27\xf8\xd0\x00\x13\x60\x30\x1a\x6a\x48\x72\xb9\x2b\xf6\x90\x3a\x52\x1d\xc5\x1a\xf0\x3c\xf1\xa5\xa9\xd0\x7a\x9a\xf9\xd3\x5a\xc4\xf2\xdd\x4b\x8d\x2a\x59\xd1\x39\x2b\xbd\xe2\xac\x54\xba\x71\x40\xfc\x94\x3b\x42\x65\x13\x56\xf5\xd0\x3e\xd8\x51\x33\x37\xc1\x79\xa0\xf9\x45\xe5\xc8\x7c\x59\x19\xbc\x1e\x81\x10\xbc\x09\x5d\xcb\x47\x5a\xd3\x9d\x4a\x0d\x5b\xfa\xff\x15\xb5\xc8\x08\x5e\x88\x46\x71\xaa\x8e\x81\xa8\x14\x6f\x52\x86\xe5\xc4\x4b\x38\xfa\xec\x6f\x94\xc4\x38\x25\x25\x2b\x96\x50\x91\xca\x68\xb2\xbe\x7e\xee\x8a\x34\x3c\x46\x2a\x50\xa8\x48\xf3\xb6\x39\x1f\x28\xfe\xbd\xc0\xec\x3a\x68\x66\xd3\xdb\xb4\xba\x9f\x9d\xee\x5c\x56\x43\x9a\x63\x77\xd6\x76\xaf\xa1\x5e\xe0\x27\x5b\x88\xb4\x6d\xad\xc3\x13\x25\x6a\x00\x12\x22\xea\x16\xda\xa5\x43\x6b\x08\x1d\x9b\xab\x95\x46\x1f\xf3\xca\x5c\xd8\xbd\xce\x59\xfa\x7a\x65\xc2\xa5\xc0\x31\x08\xf9\x45\x85\xef\x87\x0a\xd5\xdb\x1e\x90\x40\xe2\x93\xcd\x66\xae\x07\x47\x20\x77\x31\x02\xee\xf2\x81\x8a\x0b\x52\xc5\xc7\x7e\xd0\x2d\x9f\x0e\xe3\xbe\x04\x82\xa1\x5a\xdf\xea\xb1\x8b\x71\xfa\x18\x2f\x51\x3d\x4f\x1d\x48\x61\x06\x1a\x65\x26\x74\xc0\xe0\x86\xc4\x25\x27\x3d\xb1\xdb\xe9\x5b\x4c\xeb\x01\x52\x1b\x76\x6b\x9b\x91\xbf\x7e\x05\xa4\xa1\x45\x47\x52\xa0\x86\xb1\x15\x88\x09\x89\x68\xc2\x99\x23\xf7\xd5\x2c\x2c\x69\x71\xb3\x81\xec\x42\x50\x4b\xd9\xc1\x9d\x3d\xc1\xe2\x88\xda\xef\x12\x50\x77\xc3\x3a\xee\x68\x15\xd4\x7d\xd5\x2e\x67\xef\xea\x0a\xb8\xf2\xea\xea\x61\x51\x43\xf4\x1b\xc9\xea\x6d\x5a\x9c\x4a\x80\xae\x2f\x2c\x96\xd5\x8a\x92\x46\x29\x21\xb9\xda\xb9\x40\x92\xc8\x36\xcb\xda\x9f\xf2\xce\x89\x7f\xc8\x7d\xbd\x4a\x9d\xc9\xe8\xf7\xc9\x2f\x71\xb9\x90\x37\xb5\xb3\x2c\x84\xfb\x59\x9a\xae\xf1\xa2\x51\xcf\x4e\x97\x5c\xd3\x3b\x1a\x97\xe4\xf3\x35\xb0\x8f\x8e\x07\x2f\x0e\x94\x12\xd0\xf5\x1a\x54\xe7\x9a\x9b\x31\x0a\x77\x31\x9f\x3b\xd7\xf2\xa0\x27\x63\x9a\xaa\x5b\x1f\x71\x7e\x2b\x19\x57\x4a\xca\xb5\xbd\xa9\x4a\x67\x91\xe9\xce\xd5\x15\x20\x30\xdd\xe9\x5c\x63\xa0\x69\x21\xd4\xe2\x54\xdf\x8b\x41\xe7\xea\x75\xab\x7c\x89\x27\x74\x3c\x26\xcf\x99\x33\x46\x00\x00\x0b\xed\x1b\x27\x44\xad\x49\xe6\xe8\xb3\x88\xec\x7c\x22\xa4\x8c\x14\x2e\x95\xfb\xa6\xe7\xf6\x35\x6b\x5b\xd3\x40\x03\x33\x61\x0d\x2a\x82\xab\x4b\x0a\xc6\xb3\xe4\x96\x89\x3f\xc4\x14\x5a\x0c\x83\x26\x5e\xb8\x24\x38\x35\x07\x33\x0d\x5e\x89\xcd\xae\xb9\xc2\xf0\x64\x21\xc6\xb4\x15\x00\x30\x20\x04\x2e\x5a\x29\xae\x3d\xf1\x2a\xfa\x56\x95\x5d\x81\x5a\x89\xff\xe0\x3c\xd2\x37\x4d\x4e\xdc\x1a\xea\xf5\xae\x74\x85\xf5\xdf\xa6\x08\xdc\xb0\x8a\x51\xa9\xf0\x9f\xca\xa3\x53\xc7\x3a\xe8\xd6\x7d\x80\x5f\x3c\x7f\x60\x39\xa9\x1f\x8a\x6c\x19\x73\xd6\x93\x94\xc7\x86\x3d\xd9\xaa\xd3\x2b\x17\xcc\xf8\xae\xca\x57\x3e\x95\xe7\xc4\x38\x91\x66\x17\x94\x9d\xfb\x93\xe9\x38\xe5\xde\x77\xad\x44\x53\xce\xc9\xd7\x03\xaa\x37\x54\x56\x14\x0f\xc1\xf4\xde\x45\x54\x76\xcc\xda\xc1\xfa\x83\x5c\xa5\x62\x2d\xe4\x2c\xf4\x70\x52\x6e\xad\x54\xaf\x31\x09\x4e\x48\x02\x09\x31\xec\xc2\x4e\x12\x81\x81\x0d\x27\x6d\xc6\x82\x6c\xc9\xb8\x07\x09\x94\x1a\xac\x20\x35\x56\x09\xec\x4f\x18\xed\xbf\x1b\x66\x29\xbb\xff\xb3\x62\xad\x08\xf7\x3d\x0f\x88\x7c\xbc\x23\x15\x6b\xa1\x6c\xb9\x13\x6c\x78\x0d\x0c\x65\x72\x58\x27\x5e\x25\xa0\x84\x71\x76\x6e\x98\xa0\xcc\x9f\x22\xbc\x26\xa6\x72\x22\x2c\x6a\xdc\x51\xae\x28\xd4\x95\xfe\xe6\x78\x93\x2f\xea\x41\x1a\x63\x1a\xdc\x78\x90\xe2\x54\xda\xd5\x51\xdc\x9a\xcb\x5a\x2d\x2d\x78\x26\xb4\x7d\xf9\x54\x79\x41\xd3\x30\x11\x32\x77\xc1\x0a\xd6\xab\xe1\xea\x5a\xee\xc9\x36\xf3\x8f\xc5\x3d\x66\x87\xb1\xef\xa8\xf1\x16\x51\x0e\x53\xdf\x9c\x6a\x0c\x59\xfa\xdf\x2b\xb6\x72\x35\x31\x43\x32\x13\x1a\x9d\x26\x09\x5e\xcd\x8a\x1d\x07\xb5\xca\xe7\x69\xf8\xbc\x98\xd7\xba\xce\xa6\xec\x4e\x51\xd6\xb0\x68\xb3\x98\xb4\x96\xce\x46\xc1\xda\x38\x6e\xef\xfe\xc9\x1b\xb5\xfd\xb6\x1f\x19\x40\x8e\x1a\x0e\x6c\x70\xed\x0a\xb1\x13\x42\x19\x69\x5b\x1a\x04\xac\x7b\x4e\xd8\x3d\xc5\xa6\x93\x38\x90\x68\x92\xe8\xbe\xd4\x78\xb9\x75\x99\xab\xd6\x97\x8a\xe0\x2d\x1d\x15\xe4\x58\xbb\x0e\x2c\xb5\xb7\x22\x4f\xa3\x43\x2b\x4d\xee\xe8\x9a\x93\x90\x25\xf1\x2d\x2b\x98\x32\xd6\x92\x20\x2b\x0a\x16\x94\x24\x2b\x42\x56\xf4\xc8\x59\xe4\x40\xb2\x07\x97\x66\x65\xf3\x00\xd1\x15\x04\x5f\x08\xe0\x40\x1d\x38\xa2\x89\x44\x95\xc4\xcb\x25\x0b\x63\x5a\xb2\x64\xdd\xd5\xf7\xcb\x82\x2a\x70\x61\x25\xc4\x4b\x60\x05\x7f\x8e\xe2\xa2\x61\x74\x1b\x57\x8b\xba\x1e\xcb\xe0\x62\x63\x95\xc6\x25\xa6\xa5\x70\xd1\x12\xfa\x4d\xca\x02\xc6\x39\x2d\xd6\x84\xb3\x72\x95\xa3\xa9\x0a\x53\x0d\xe1\x25\xea\x1d\x5d\xcb\x0b\x77\x5d\x1a\x27\x71\xb9\x76\x20\xc5\x9c\xdc\x2d\xd6\xb6\x1c\x73\x6e\xca\x04\x9a\x8b\x22\x4b\xe1\x12\x5e\x12\x82\x0b\x49\xe9\x52\x1b\x6e\x0e\xb3\x42\x13\x00\x0f\x7a\x02\xb0\xab\x85\x71\x17\x60\x0d\x10\x69\xb9\x97\xcc\x22\xd0\x82\xf0\xdc\xa8\xfa\xf4\x64\xb2\x9a\x3b\xcb\x06\x23\x83\x0a\xb9\xe4\xf1\x3a\x75\x4e\x90\x2e\xe5\x79\x57\xb2\x00\x83\xc7\x0e\x34\xf1\xb0\xb2\x39\x03\xae\xe7\xe1\x72\x13\x1c\x13\xba\x78\x67\x2f\xf8\x60\xbe\x10\x50\xe4\x8d\x37\x07\x8b\x82\x25\xdc\xfc\xa5\xf8\xcc\x2f\xc1\x7d\xcc\x96\x04\xcd\xb2\xa6\xeb\x09\xe0\xe7\x60\xda\x17\x67\x1f\x3a\x47\xeb\x6b\x44\xe3\x64\x25\xd0\x28\x33\xb3\x20\x51\x2a\xa0\x35\x14\x9c\x64\x2a\x72\xfc\x56\x5e\xdc\x6b\x7b\x96\xba\xf5\xe9\x6d\x87\x98\xa9\xd5\x21\x93\x8d\xc2\xf2\xc4\x13\xd2\xae\x31\x17\x2d\x6d\xa1\xb2\x4b\x29\x8b\x87\x58\x39\x31\x27\x2b\x8e\x26\x20\x33\xff\x5b\x98\xdd\xda\x9c\xb1\xfa\x4b\x81\x8e\x1c\x9c\x7d\x22\x87\xb0\xf2\x20\x3e\xec\xb3\x77\xfd\x9d\x82\xa3\x33\xfb\x16\xc8\x86\x8f\x17\x35\x2e\x10\xdf\x70\xf5\x68\x54\x7f\x07\x3e\x39\x75\xfb\x33\xe7\xa3\x77\x59\x29\xed\x41\x32\xfe\x96\xbf\x3c\x84\x98\xd5\xf4\x64\x21\xb8\x8b\x65\x39\xc9\x22\x09\xc0\xed\x47\x5e\x5e\x9f\x88\xc9\x5a\x93\x5f\x57\x5c\x5f\x73\x53\x2d\x42\xa4\xd6\x43\x94\x9e\x34\x35\x16\x2c\xd4\xb0\xa4\x76\x94\x17\x59\xb8\x0a\x4c\xf8\x1e\x87\xe5\xf4\x09\x07\xd0\xb5\x4e\x38\xdf\x62\x13\x57\xee\x2a\xd2\x00\xec\x9e\x71\x14\xcb\x6e\x6d\x69\xc7\x06\x15\xe3\xeb\x86\x7b\x99\xb6\x84\xd6\x31\x97\x26\x80\x8e\x6b\xab\x87\x8b\x71\xeb\xfc\xa3\xe7\x9d\xa1\x79\xa0\xb2\x14\x27\x50\x04\xac\xdf\xf6\xd5\x60\xa9\x11\xd6\x1e\x1a\xa4\x6a\x29\x74\x54\xf2\xcc\x55\x34\x1d\x90\x55\x2d\xa3\x72\x5c\xdc\xd6\x52\x6d\xcf\x04\xd8\x6e\xf0\x52\xa2\xc6\xd0\xe5\x93\x75\xc3\x81\xd3\x1a\x9d\x38\x82\x49\xb8\xa7\xa7\x55\xd3\x96\x43\x07\xf3\x88\x52\xbd\x9f\x35\x7e\x08\x62\x0e\xa4\xd5\xb7\x58\xa5\x29\xd8\xc1\x6a\x15\xac\xfa\x0e\xb5\x85\xcc\xe9\x50\xd4\x95\x12\xac\xf9\xd8\xaa\xf0\x72\x4f\x9f\xce\x31\xa8\xdf\x27\x3f\xc2\xb2\x9a\xc7\xb7\x71\x3a\xef\x12\x21\x1a\x47\xe3\xde\x1e\xfe\x4f\x89\x6c\xb1\x87\x4d\x9c\x56\x8b\xb2\xcc\xf9\xa4\xdf\xcf\x59\x96\x27\xac\xb7\xcc\xfe\x19\x27\x09\xed\x65\xc5\xbc\xff\x7f\xfc\x9a\x15\x2c\x0d\xb3\x22\x8a\xfa\x8c\x1f\xec\x86\x05\x8d\xca\xde\xa2\x5c\x26\x7f\xe0\x2c\xd8\xd5\xec\x28\xb8\x64\xc9\x2a\xfa\xad\xe0\xa1\x8f\xc0\x40\xed\x5a\x32\x29\x67\x00\x35\x7c\x29\xc9\x4f\xfc\xef\xb4\x98\x93\x53\x39\x76\xbd\x20\x31\x19\x4f\x59\xac\xaa\x4f\xed\x54\x08\x22\x78\x37\x87\x20\x54\x91\x77\x30\x57\xc5\x1e\xb1\x6d\x20\x1f\xd5\x05\xc0\x92\xae\x67\x92\x9d\x5f\xca\x6f\xba\xbd\xe3\x75\x61\xe0\xd8\x5d\x7c\xac\x5b\x73\x75\x55\x80\x0d\x7c\x83\x65\xa7\xee\x9d\xab\x4d\x6a\x07\x84\x7b\x72\x6e\x60\x18\xcc\x21\xe6\xce\x00\x30\x20\x1e\xf5\xab\x47\xc2\x4f\x98\xc6\x4f\xd3\xf4\x8a\x8b\xcd\x15\x62\xfa\xb2\x39\x0d\x8c\xad\x2d\x8b\xc8\x8f\x74\xc6\x92\x96\x7f\x32\x56\xcb\xb5\x07\x2d\x5d\x27\x19\x57\x87\x90\x5d\x40\xbd\x53\xaf\xc7\x53\x9b\x31\x4e\xec\x21\xc9\x2b\x9c\xc6\x91\xd5\x2f\xad\xfa\xd5\xea\x0a\x9e\xca\xbc\xf9\x72\x4a\x2f\x6e\x6f\x7e\x64\xce\x67\x07\x61\x67\x6e\xea\x86\xad\x0c\xda\xaf\x54\x54\xec\xb6\x05\xa0\xf3\x4d\x43\x56\x86\x0a\x6f\x00\x1a\xde\xac\x58\xe5\x65\xdb\xd4\xeb\x12\xaf\xab\x5a\x54\xfd\xd1\x6b\x59\xea\xe0\x56\x7f\xaf\xd7\xec\xae\x64\x4f\x48\xf5\x3a\x4f\x79\x5d\xd4\xdf\x55\xa4\x26\x84\x38\xba\x93\x14\xd9\x5d\x8a\xbe\x05\xba\xc3\x3b\x46\x12\x26\x8e\x9d\x7a\xb6\x3d\x40\x55\xaf\x07\xa1\x23\x26\x59\x96\xc3\xc5\x06\xf0\x3a\x4d\xd1\x99\xd1\xa8\xc3\x0e\xe7\x2a\xca\xe8\xa9\xcc\x52\xe6\x72\xc4\xb3\x2a\xcf\xb8\x15\x26\x0d\x1e\x1b\x27\x2e\xb3\x58\x54\x02\x01\x59\x2b\x35\x3c\xae\xad\x15\x22\x1e\x13\xd6\x07\x48\x91\x6f\x76\x4c\x87\x5e\x30\x13\x31\xce\x49\xe3\xa8\xef\x9b\x78\x76\xbb\x5b\xdb\x6d\x97\x9b\x38\x26\x28\x5f\x10\xf4\x6e\x55\x2c\x21\xce\x34\x59\x96\x8b\x29\x85\x99\xa4\x05\xb8\x75\xe3\xcd\x94\x7f\xf5\xb6\xd5\x2a\xc4\x83\x3f\x9d\x65\xb7\xac\x56\x74\xe9\x4d\x4d\x0f\xe9\xa4\x76\x01\xc2\xde\x56\x7b\xb9\x7c\xef\x5f\x59\x79\xee\xad\x2f\x30\x99\x18\x0a\x7e\xed\x58\x7d\xe1\x22\x70\xe9\x22\x2d\xf8\x19\x6f\xd8\x2c\x8b\xaa\x0a\xd9\x80\x0e\xaf\xe0\xdc\xaf\x3d\x75\x28\xf9\xa2\xee\x7c\x41\x25\xbc\xd7\xd7\x96\xd2\x6d\x47\xc2\xd0\x7b\xae\xc2\xa3\x4b\x32\x00\xb5\xcc\xc2\x38\x5a\xdb\xfb\x86\xa4\x8c\x40\xc5\xc2\xad\x2b\x01\x71\x6f\x97\xd1\x80\xcb\x0c\x52\x0e\xe0\xb9\xad\xb0\x5c\x89\x58\x85\xef\x7b\x9e\x1a\xba\xcd\xc6\x6d\x2b\xa1\x7a\xee\x1e\xa4\xae\x9c\x2e\x4f\x89\xd3\x0e\xf7\xae\x03\xf7\x73\x79\xf4\x14\x94\x51\x07\xcf\xbb\x05\x43\x2d\xbe\x42\x40\x79\x33\x25\xdb\x58\x60\x14\xfd\xf0\xda\x0b\x6d\x44\xb4\x94\x9e\xa7\x70\x3b\xfb\x04\x98\xbd\xe7\xeb\x51\x96\x5e\x24\x28\x79\xe2\x2a\xac\x5b\xef\x98\xb6\xca\xa2\x09\x23\xc7\x53\x2b\x9c\x9b\x87\x47\x89\x63\xe9\xef\x92\x79\x7c\x0b\xae\x1f\xd4\x5f\x93\x0b\x2a\x5f\x75\x05\x09\xa3\x29\x59\xe5\x0f\x2d\x3a\xb5\xa1\x6d\x58\x75\xf5\xc1\xd9\xb6\xd6\xf3\x7c\x61\xfc\x0d\x2a\x87\xa2\x4c\x5d\x5f\x9a\x21\x03\x48\x8c\x1c\xfa\x83\x13\x0b\xaf\x02\xcb\x8c\x57\xd0\xc8\xba\x1b\x4f\xe0\x42\x8a\x96\x24\xbb\x65\x45\x11\xcb\xc4\xb5\xe6\x2d\xf6\x8c\x25\xd9\x5d\xaf\x56\xa7\xf4\x57\xd5\x56\x5a\xe5\x56\xe2\xcf\x9d\x06\x37\x47\xa0\xdd\x89\x7c\x5d\xad\x38\x46\x67\x80\x94\x8e\xeb\x84\x92\x16\x00\x6f\x49\xfe\x69\x38\x8e\x6d\x1e\x8f\x63\x09\xa8\xaa\x2b\x8a\x33\x2b\x1c\x5f\xd1\x94\x8c\x28\xd8\x66\x57\xdb\x82\x50\x0f\xee\x11\xcd\x0b\xfb\x9b\x07\x1e\xa7\x51\xe6\x77\x62\x06\xf4\x08\xbe\xff\x16\xec\xbd\x49\xde\xd1\x93\x2a\xb7\x13\x15\x94\x4a\x79\x3d\xdb\x53\xf9\x3b\x0d\x13\x5f\xd6\x44\x19\x68\x27\x9e\x64\xe6\x3c\x9e\xa7\xea\x55\x8a\xc0\x47\x1e\x97\xa3\x38\x8d\xf9\x82\x99\xb0\xb6\xea\x91\x68\xc9\x96\x79\x56\xd0\x62\x6d\x41\xd1\x4f\xfe\x65\x54\x1c\xbc\xb5\xd2\x8c\x83\x90\xc1\xc7\x44\x5e\x37\xe2\x07\x50\xee\x3a\xbe\xb4\xbe\xa8\x69\x77\x09\x2f\x44\xa2\x4c\x1b\x99\xad\xce\x3f\xc2\x19\x5c\xde\x91\x8b\x6d\x4f\xda\x11\x42\xc6\xc1\xc7\x5a\x7b\x5d\x6f\xd1\x37\x5c\xf1\xd8\xdb\x9f\xf8\xfd\x26\x0b\xdc\x1e\xcf\x22\x9f\x0d\xee\x28\x37\x8c\x00\xde\xf4\x8e\xe8\xb7\x4c\x7b\x16\x18\xad\xa4\x29\x61\xc5\xf0\xd2\xcb\xb2\x7d\xe4\x45\x16\x30\x16\x12\x3c\x02\x24\x6b\xdb\x98\x63\x29\x6c\x0e\x16\xca\x60\x1d\x65\xc5\x9c\x95\x0e\x37\xa2\xff\x7b\x5c\x6a\xc3\x96\x05\x6b\xba\x13\x64\xa9\xa0\x64\x28\x46\xb0\xae\xdf\xbb\x7a\xf5\x63\x77\xc0\x98\x03\x15\x4d\x12\x69\x27\xd5\xef\x33\xd5\xee\x0f\x3a\x24\xfa\xee\x02\xeb\x9a\x77\x86\x0a\x90\x47\x8a\xde\x86\x1d\xfb\x51\xf3\x81\xaf\x66\xb9\x22\x7d\x1a\x85\x72\x75\x6f\xd4\xeb\xc8\x77\x94\x00\xe6\xdb\x45\xcf\x18\x6b\x05\xd9\xf6\x04\x87\x8a\x96\x3f\x1e\xb1\xcd\xba\x51\x56\x73\xed\x7f\x5e\xab\x3b\xc0\x83\x31\x5c\x99\xe0\x6f\x23\x27\x59\x28\x0e\x52\xab\x04\x6a\xde\xc5\xe5\x42\x43\xaa\x61\x2c\x89\xc3\x66\xf9\xb2\x49\xba\x54\xde\x9a\xd5\x38\x88\xf6\xbe\x80\xf9\x01\x8d\x0e\x08\xec\xde\xb1\x37\x19\x25\x5a\x19\x36\xb4\x9d\xc1\xb1\x70\x00\xb6\xf5\x46\x86\x9f\x72\xb5\x01\xfd\x94\x3f\xe8\x76\x65\x3b\x65\x3e\xb7\x9e\x59\xc9\xb7\x13\x52\xaf\x54\xd3\x52\xc2\xe3\x75\x69\x73\x8c\xdd\x2b\x7e\xad\xbd\x4a\x68\xe6\x39\xa7\x9d\xe1\x44\x59\x55\xc5\x8f\xb2\x47\x3e\x65\x4b\xa6\x5f\xa7\xb7\x1a\x9e\x4a\x49\x80\x1a\x9c\x71\x01\x0b\x16\x34\x16\xdc\x22\xad\xbb\xc9\xda\x32\xf4\x60\x4c\x96\x80\x62\x98\x42\x81\x70\xbd\x5f\x3d\x9c\x25\xc0\xe6\x6b\xb8\x54\x9e\x67\x24\xba\x3d\xe5\xb6\xcc\xd1\x4e\x26\x34\x28\xa1\x7e\xe0\xfb\x97\x3c\x67\x78\xea\x87\x5b\x31\xa6\xaf\x50\xe7\x71\xb9\x58\xcd\x7a\x41\xb6\xec\x47\xf2\x01\x72\xdf\xf2\x15\xeb\xc7\x9c\xaf\x18\xef\x8f\x0e\xf7\xe1\x2a\x01\x72\xff\x86\xac\xa4\x71\x82\x1e\xf7\x3f\xe5\x1b\xfc\xcd\x1f\x76\x37\xff\x29\xaf\x0b\xdb\x55\x69\x37\xdd\xb9\x90\x64\xd0\xd4\xb9\x94\x92\xa0\x72\x85\x9f\xaf\xf8\xe2\x1c\xdf\x6a\xad\xdb\x49\x16\x70\xe7\x9c\xc4\x44\x31\x39\x25\x5f\xa4\x09\x64\x22\x76\x19\x7e\x31\xb8\xb4\x0e\xfc\x42\x50\x0d\x05\xbf\x3b\xad\x09\xb6\xed\xc1\xfb\x98\x37\x59\x40\x4e\xb1\xe9\xf0\xb2\x6e\xd7\x1e\x35\xb6\x07\x5b\x51\xb2\xb6\x20\x8c\x4c\x88\x4d\xac\x42\xa3\x92\x15\x56\x85\xbd\x4a\x17\x60\xda\x33\x2f\xd2\x30\x2a\x33\x34\x76\x7c\x6b\x35\x51\x0a\xc6\x59\xa9\xa9\x82\x15\x6d\xb2\x68\x25\x52\x8e\xd1\x3c\x6b\xfa\xfa\x55\xbd\x34\x20\xc4\x51\x12\xad\xfb\x2d\xf9\x59\xbe\xa2\xaf\x68\x7d\x15\x98\x4a\x69\xab\x45\xb5\xe6\x39\xa3\xeb\x9b\x2f\xdf\xae\xe3\x4c\x4a\xb6\x68\xe3\xa3\x1b\x7c\x40\x41\xe1\x31\x94\x7e\x52\x63\x9e\xcd\xe1\xdb\x26\x0d\x0a\x9e\xbe\xca\xe9\x20\xb3\x24\x0b\x6e\x3a\x70\x9a\xe3\x64\xc5\x55\xd4\x43\xb1\xee\x30\x5a\x81\x0c\x69\x66\x5d\xd3\x69\x40\x89\xb6\x32\xdf\x2d\x18\x5a\xf8\x0b\x86\xfa\x21\x61\x69\x90\x60\x72\x02\x07\xa9\x5e\xed\x3c\x92\x53\x72\x61\x38\x73\xba\x23\x06\x3a\xdd\x21\xf7\x6a\xfe\x2d\x9a\x68\x2f\x6e\x9b\xdf\xbb\x00\x50\xa9\xa1\x00\x1c\x66\x1e\x8d\x0e\x75\x5e\xd7\x37\x6c\x6d\x27\x50\x6f\x23\x3d\x1d\xde\x90\x55\xaa\x29\x7f\x6e\xd8\x5a\x70\xb9\xd7\x84\x40\x03\xe4\xc8\x1b\xb6\xee\xb8\x0f\xac\xe1\x5b\xc1\x6e\x59\xc1\x59\xdb\x79\xa0\xfa\x91\xc2\x55\x0e\xbc\xec\xb7\x2e\x73\x52\x2d\xb8\xe1\xf5\x20\x01\x3d\x4f\x9d\x70\xee\x18\xb9\x61\x2c\xb7\x36\xcc\x38\x9d\x73\x6d\x12\xd6\xb7\x2e\xe8\xa5\x2d\x5a\x1a\x21\x0f\xbb\x84\xf3\x16\xdb\x7c\x44\x7b\xa1\x19\x91\x34\xdd\x00\xf2\x98\xc8\xa8\x62\xc1\xc1\x34\xf8\x38\xf4\x2c\x6f\xfb\x97\xc3\x4d\xb4\x12\xff\x88\xde\xb4\x63\xdc\x0d\x5b\x9f\x54\x3e\xc2\x3d\xd6\xa9\xe5\xb6\xad\xfe\xd1\x6e\x59\x9f\xcb\x86\x6b\x38\x4b\xe5\x39\xcf\x08\x05\xc7\x0a\x70\x45\x96\xd4\xb5\xde\x39\x22\x72\x40\x55\xb0\x80\x8b\xc3\xbc\xe5\x1a\x68\x41\x02\x3f\x04\x40\xca\x7a\x2a\x96\x45\x51\x0d\x9d\xd5\x33\x7d\x24\x37\xec\x51\x36\xa0\x84\x67\xee\x96\x05\x0f\x42\xd5\x13\xb0\xbb\x38\x49\xe4\x21\x2b\x4b\xd7\xf0\x8c\x17\xcd\xc7\xd2\x28\xa3\x20\xd9\x44\x12\xac\xee\x9f\xb3\x2c\xfa\x34\xf8\x09\xcb\x27\x49\xb0\x97\xcd\x12\x2f\xb6\x81\x5f\xe8\x06\x8c\x78\xab\x34\x54\x55\xcf\xdf\x11\x1d\xa7\x5f\xb7\x55\x9d\x8f\x9d\x5b\x03\x1d\x68\x35\x0a\x4d\xb6\x5b\xe9\x99\xab\xea\xc9\xe3\x90\xf7\x16\xa2\xb1\xb7\x59\xc2\x9a\x00\x3f\x8a\xf9\x3b\xfa\x4e\x23\xa0\xd8\xbf\xc2\xff\x31\x39\x25\xbb\xc3\x2e\x91\xe7\xb0\xc6\xa5\x64\x2d\xa7\xa7\x4f\x63\xf2\x27\xe2\x43\xae\x33\x37\xda\xbe\xc4\xaa\x7e\x97\xc4\x75\x21\xda\x9d\xc5\x64\x66\xc4\x8f\x62\xfd\xd0\xc2\x6a\x5e\x5c\xc4\x0f\x29\xec\x19\x23\x1c\x04\xea\xef\xeb\x6a\xd8\x75\x8b\x45\x7d\x52\xe3\x42\x9c\x5a\x47\x5f\xa7\xbe\xef\x33\xaa\xdf\xb2\x8a\x35\xaf\x75\x54\x90\xa9\x2a\x9a\x2f\x77\x85\xe1\x17\x00\x38\xb1\x4c\xe2\xe6\x3a\xdf\xec\x1f\x72\x57\x54\xd9\x0b\xfc\x65\x65\xdb\xd3\x2b\xfe\xfb\xd2\x40\xa3\x69\xd4\x95\x26\x19\x41\x12\xd7\x74\x20\x75\x02\xe7\x59\xc5\x17\x7d\x12\x52\x8e\x7d\x13\x55\xaf\x6b\x7c\x2e\x38\x2b\x27\x66\x77\xe3\x37\x71\x7e\xce\x96\xf9\x47\x51\x6e\x31\x0f\xec\x94\x79\xc1\x6e\x09\x86\x6d\xb2\x4a\x25\x71\x4d\x29\x5e\x5c\x7c\xbf\x61\x79\x5b\xa3\x32\xf4\x2e\xad\xc7\xe8\xc9\x25\x7f\x54\x79\x0a\xb3\xc2\xd6\xb1\xb2\xcc\x17\xdb\x74\x89\x2e\x83\xdb\x36\x9d\xb0\xe1\x73\xf5\x70\xed\x7c\xb6\x94\x50\xa5\x91\x38\xca\x66\xc7\xbb\xb3\x7f\xd4\x34\x07\x96\x62\x91\xca\x64\x66\xa0\xcc\x54\xae\xe7\xdf\x65\x25\x81\x10\x09\x18\xde\x40\x25\x7c\x5a\x8a\x1d\xac\x08\x59\x61\x1e\x08\x07\x59\x8a\x9b\x1b\x9f\xd8\x30\x04\x1a\xa2\x8b\x5e\xb0\xa0\xc5\xf3\xb2\x3d\x50\x6f\xa6\xea\x9e\x31\xb8\x0f\x19\xf0\xb8\x86\xef\xac\xaa\x35\xa5\xac\x7c\x0a\xc0\x79\x12\x07\xac\x3d\xec\xd4\xe5\x62\x8b\xf9\x45\x2a\x2f\xc7\xea\x25\xc4\x7d\xfd\x66\x4e\x64\x8a\x46\xfc\x8b\x97\x59\x3e\xa9\x39\x34\xb9\x0c\xe1\x09\x18\xd0\xf6\xb3\xac\x7c\x25\x0f\x42\xde\x24\x5e\x0c\x8c\xa4\x54\x55\x3f\xaa\xc3\x81\x6e\x67\x29\xf3\xee\x8b\x16\x5d\xfb\x21\xfb\x28\x5a\x95\xac\xfa\xf6\x25\x71\xf5\x22\x1c\x55\xd9\x5b\x6a\x12\x94\xaa\x2a\x15\x93\xa7\x45\x91\xba\x2c\xeb\xb0\x59\x2a\xf2\xd4\xa0\xa4\xdb\xd4\x61\xe3\x06\x5f\x71\xa2\x5f\x5b\xce\xce\x69\x98\x30\x71\xf2\x84\x73\xfd\x7c\x51\x7a\xdb\xae\x7b\x86\xaa\x9a\x1a\x6c\x0b\x79\x0d\x3a\x95\x2b\xcf\xc4\xb9\xe5\x94\xf7\x6c\xd5\x8e\x1d\xd3\x96\x24\x1a\x0b\x2d\x83\xf3\x1d\xe5\x12\x61\x32\x5b\xab\xc3\x12\x9e\x8b\x7c\xff\x5c\xf0\x32\xd7\x76\x1a\xab\xa2\x65\xa9\xb5\x20\xeb\x4b\x50\x1b\xcc\x36\x17\x7c\xdb\x98\xbf\xea\x5e\xd6\x3c\x7a\x24\x47\x52\x37\x89\x5a\xcc\xc4\x55\xf6\xb7\x12\x01\x9f\x90\x18\xa3\xf8\x91\xdd\xdd\xb8\x9a\xb1\xb4\x61\xf9\x38\x8a\xc6\xc6\x93\x75\x65\xce\xb0\x02\x1e\xf1\x94\x2b\x0c\x9c\xff\xaa\xd3\xa8\x99\x5d\x1d\x47\xb3\x55\xc9\xe3\x90\xa9\x67\x82\x02\x37\x9c\x0f\x9c\x20\xb8\x25\xc3\xa9\xf1\x20\xc5\x25\xdc\x46\x72\x79\x8d\x6d\x1d\xd2\x9d\xe7\x40\x2c\x2d\xe3\x82\x59\xb1\x48\xb2\x0a\x47\xa8\x97\x35\x7a\xda\xeb\x5e\xc2\xc8\xc5\x31\xdd\x61\xa9\x63\xfa\xaa\x71\xf4\x72\xc8\xf1\xa7\x53\xb3\x47\xd7\x78\xbe\x2d\x28\x07\xd3\x17\xc4\x44\x34\xd2\x9a\xe1\x99\x78\xba\xa3\xee\x6c\xdc\x2e\x75\xdb\xd7\xf2\x0e\xa0\xa1\xb5\xb9\xb1\x51\x91\x0d\x0d\x04\xa9\x9d\x62\xef\x8f\x1f\x5b\xd0\xea\x73\xa8\x6a\x45\xe3\x4f\xde\x75\x52\x8d\x2a\xeb\xd2\xcc\xad\xde\x25\xe6\x48\x6f\xfe\xb1\xdc\x54\xaa\x3d\x99\x61\x6c\xd9\x97\xd5\xa0\xaa\xff\x3a\xbb\x95\xe9\x56\xd1\xe2\x7f\x64\xf4\x9b\xb0\xfa\xb6\x59\xf9\x97\xd3\xaa\xa2\x12\xf8\x3e\xbc\xf5\x57\x58\x28\x6a\xb3\x42\x5d\x5b\xf9\x0c\xbd\x95\xde\x80\x1e\x74\xd6\x3e\x89\x01\x31\xbc\x17\x62\xff\xcb\xa4\xe4\xc6\xc5\xbe\xf1\x59\x69\xfd\x0a\xad\xbe\x5a\xdd\x7e\x7a\x21\x25\x1b\x7e\x54\x0a\x12\xb4\x70\x88\x0c\x01\x7d\x1e\xb8\x6e\x11\x83\x72\x00\xb9\x48\xb5\x2d\xf5\x08\xc0\x4d\x77\xfc\x6c\xf1\x56\x0d\x65\x1d\xaa\x0e\xce\xee\xc2\x22\x9f\xd8\x2d\xdd\x8a\xa2\xe4\x4f\xa7\x6e\xfd\x06\x2a\x08\x35\x61\x9e\x9a\x97\x4a\x28\x1b\x71\x2a\x63\x34\x22\x16\x59\xa2\xcc\xdf\xbf\xae\x96\xe0\xa3\x56\x66\x5e\xca\x56\x6d\xbd\x55\x7b\x13\xd8\xa0\x75\x84\x36\xd8\x9e\xac\x2d\xc2\xa3\xba\x63\x2d\xf7\x34\x30\xbd\xa5\x3a\x6d\x9e\xb9\x83\xb3\x76\xb2\x89\xb9\xc1\xf6\xf5\x2f\x27\x64\x80\xa3\x78\xb9\x8e\xba\xfe\x74\x7a\x8a\xe3\xc6\x53\x94\x7b\x90\x6c\x98\x81\x93\x8a\x0e\xd3\xe8\xcb\xd2\xa0\x1d\xab\xf8\x55\xd2\x95\xa3\x53\xd1\x94\x55\x05\x6b\xe1\xab\x98\x65\xca\xe0\xe0\xe9\xc9\xdb\xb9\x3a\x4a\x55\x7e\xa3\x1a\x5f\x0f\xad\x9e\xf3\xab\xf5\x6c\xfe\xf7\xe9\x2e\xc9\x5a\xd7\xfd\x26\x9f\xcd\x5a\x9b\xb3\x3e\x65\x28\x91\xb5\xc1\xd5\xd1\x9f\xf4\x1a\xe7\x2d\x1b\x3f\xa9\xf1\x6c\x87\x9c\xb2\xab\x08\x85\xa2\x66\x6a\x5c\xc8\xaa\xc2\x77\xb8\x11\x69\xd6\x40\xcb\xb4\xc5\x18\xb5\xa2\xe1\x7f\x62\x4b\xb0\xad\x65\xa7\x7a\xf5\x54\x05\xb7\xbb\x04\x7c\x5d\xbb\xeb\x19\xd6\x3a\xfe\xab\xf3\x8a\x71\xac\xee\x96\x7d\x83\x77\x59\xf3\x66\x2b\x95\xcf\xe9\x8e\xbd\xdf\x16\xff\x06\x94\xb5\x0e\x1a\x15\x7c\xc8\x16\x87\x17\x53\xf3\x5b\xbc\xa2\x65\x90\x63\x3c\xb5\x34\x2c\xad\xad\xe6\xe4\xbe\x66\x82\x10\xec\x16\x86\x90\x85\x09\xeb\x89\xbb\x91\x5c\xc8\x90\x9e\x06\xc2\x3f\xce\x98\xf2\x01\x90\x76\x27\xb5\x9d\x59\x60\x54\x0c\x49\x75\xc8\x2a\x0a\xc6\xf3\x2c\xc5\x00\xee\x94\xdc\xa4\x62\x8c\x75\xbb\x5d\x55\xdb\x8b\x93\x84\xcd\x69\x22\x6b\xd3\xb2\x64\xcb\xdc\x72\x28\xb3\xae\x3b\x6c\x2f\x28\x8b\xa5\xcc\xad\xb8\xf1\xbd\xc2\xcb\x78\x77\x66\xfd\x0b\x41\xdb\x49\x56\xde\x0a\x4f\x2a\xc6\x90\xae\xbd\x39\x29\xe8\x13\xbb\x27\x53\x41\x76\x39\x51\x7f\xe8\x19\xf0\x76\x53\x47\x7e\x36\x3d\xe2\x01\x2f\x95\x24\x9e\x41\x9c\x63\x4c\x26\x3f\x97\x27\xd5\x84\xf2\x92\xc0\x8d\xa8\x4c\x1b\x97\xe9\xb8\x87\x10\x4f\xcf\x01\x42\x83\x00\xe2\x44\x83\x26\x93\x53\xce\x49\x5c\xe2\x8b\x50\xc7\xcf\xa7\xe7\x49\xd8\x07\xfd\x8a\xb6\x70\xe4\xc3\x91\xdf\x77\xc0\x4b\x54\xa8\x56\x29\xe1\x49\x96\xe7\xe0\x66\xce\xba\x64\x95\xce\xc0\xaf\xff\x5a\xf4\x78\x8d\xe9\x20\x78\x6d\x2e\x88\x2e\x89\xcc\x53\x7c\x09\xad\x2e\xd2\x14\xb1\x03\x3d\x4b\x08\x18\xa3\x1d\xba\xec\x91\x73\xf9\xec\x98\xd3\x10\xac\xe5\x51\x56\x2c\x25\xbc\x2c\x22\x71\x8a\x51\xe1\x21\xf6\xb5\xcc\xc9\x7f\x1b\x67\x09\xf8\x6b\xc3\x05\x7b\x5a\x92\x4f\x2c\x58\x15\x71\xb9\x26\x1f\xb2\x24\x0e\xf0\x62\xa7\x92\x5a\xe2\x7b\x93\x4b\x10\xb2\x45\x7a\x89\x69\xda\x39\xf1\x13\x21\x52\xf4\x89\xac\xc9\x83\x28\x2b\x3d\x21\x94\x93\x8f\x8c\xaa\x18\x9e\xad\x42\xfc\xdd\x32\x15\x16\x59\xcc\xcb\x77\x59\x0a\x75\x3e\x95\xb4\x8c\x03\x7e\x25\xeb\xc2\xb7\xdd\x34\x4b\x77\xa1\xd5\x2e\xc7\xcf\xa2\x75\xbf\x2f\x1f\xf1\x17\x59\x92\xac\x72\x12\xd0\x54\xe8\xc6\x21\x13\x14\x04\x1b\x0b\x5d\x32\x9e\xd3\x80\x91\x19\xc3\x37\x0a\x3a\x86\x13\xb4\x2e\x65\x24\xc9\x32\xc3\x18\x71\x59\x8e\xed\xce\xd7\x39\xfb\x14\x14\x71\x5e\x4a\x17\xc0\xeb\x38\x05\x9f\xcd\xb4\xbc\x86\x86\xda\xc1\x58\x26\x36\xa2\x44\x26\x4e\x81\xaf\x35\x5e\x3e\x88\xa1\xfa\x8f\x74\xef\x19\x8e\x0e\x0e\x65\x76\x8c\x1a\x02\x90\xd3\x7a\xba\xe8\x74\x2d\x5f\xbf\xd6\x57\x30\x74\xfd\x42\x34\xde\x67\x69\x99\x48\x3b\x8d\x9a\xa9\x56\xaf\xd7\x5f\x95\x71\x02\xb4\xd4\x77\x4c\x73\x56\xbe\x34\x41\xce\xda\x2f\xb2\x65\x9e\xa5\x2c\x2d\x7d\xee\xd2\x1f\xfc\x98\x68\xe6\x43\x2a\x4b\x5a\xba\xa8\x85\x89\x34\xc5\x66\xf0\xfe\xe5\xfb\x09\xf9\x85\x29\x67\x32\xe5\xa9\x1d\xa7\x71\x19\xeb\xb8\x39\x0b\x56\x30\x95\xb6\xcd\xe0\x7f\x8a\xcc\x24\x63\x7b\x29\xcf\x15\x71\x76\xe9\x9c\x38\xb5\xf9\x6a\x09\xcf\xb5\xad\xc6\x3d\x55\xdc\x85\xd2\x0f\xd8\xad\x5f\x49\x15\xbb\xb9\x3c\xbd\xca\xf5\x95\x0c\x92\x16\x40\x53\x45\x4d\x9e\xf5\x20\x59\x2c\x45\x51\xb7\xfd\x0b\xc6\xe6\xd1\xd4\xd2\x89\x01\x1d\xc7\x90\x2b\x4a\x4e\xd5\x07\xf4\x13\xea\x92\xab\x19\x39\x25\x57\xb4\x17\x23\x5a\x39\xee\x43\xf6\x2f\xf1\x7d\x06\xab\x1f\xf3\x37\x90\x67\xa4\x25\xbe\xb7\xc8\x84\x5c\xcd\xba\xe4\x2a\x40\x08\x51\x56\xdc\xd1\x22\xfc\xc8\x22\xf0\x88\x95\x7f\x8b\x6f\x81\xdb\x1a\x2c\x5e\xa2\x71\xd0\x25\x57\x21\x36\x66\x69\x94\x15\x81\x9a\x11\xa1\xfe\xd9\xbf\x21\xbf\x90\x0b\x04\x6c\x8e\x13\x72\xa5\x84\xbc\x18\xdf\x2f\x71\xb9\x80\x24\xa1\x76\x18\x83\xbc\xc8\x72\x6e\xa5\x16\x6f\xdb\x1c\xa0\x32\x2d\xdb\xb3\xde\x95\x6f\x80\x0c\x08\x31\xda\x6a\xb2\x4d\x5a\xd1\xd2\x6c\x94\xeb\x22\x52\x55\xd6\x13\x42\xae\xd3\x7f\x94\xc7\x3c\x4e\x03\x39\x25\x6d\x98\x3c\x98\x31\x7a\x61\x4f\x0f\x3a\x6c\x97\x89\xf8\xd0\xa9\x9e\x4a\x6b\x87\x5b\x65\x17\x25\x8b\xdb\xa2\x07\x20\x99\x61\x82\x2e\x10\x2f\x9a\xd8\xb3\xfa\x0c\x2b\xa9\x49\x67\x50\x38\x01\xca\x91\x7b\x93\x41\xf7\xbe\xd3\x39\xd1\x61\x24\xd5\xf4\x54\x62\x7a\x5a\x8c\x0c\x99\xe8\x3c\x41\xe2\x63\x8b\x29\x23\x3b\xfa\x70\xa6\xe1\xfa\x15\xc9\x29\xf1\x8b\xac\xc7\x54\x66\x34\x75\x6e\x16\x75\xf2\x51\xd2\xd2\x34\x6c\x7b\x6c\x26\x94\xb9\xe8\x21\x5e\x53\xe8\xd6\x13\xfd\x0b\xb1\x49\x2a\x74\xb6\x08\x09\x4a\xee\x3b\xdd\xca\x70\x3c\x67\xad\x4d\xb8\x9b\x6e\xeb\x80\x60\xda\x9b\x96\x49\x0f\xd3\x02\xf5\xcf\x84\x9d\x5a\xb0\xe0\xe6\xe5\x8b\x57\x4a\x55\xe8\x3f\x51\x9a\xca\xd5\xd5\xc7\x57\xcf\x5f\x9c\x5f\xbd\x7c\xf5\xf7\xf3\xf7\xef\xdf\x7c\xba\xfa\xe9\xcd\xfb\x1f\x9f\xbf\xb9\xfa\xeb\xfb\xf7\x7f\xbb\xba\x82\x84\x34\x48\x6f\x44\x51\x6a\x14\x0f\xb4\x82\xa4\xf8\x5a\x8f\x6b\xe9\x0b\x87\xad\x5a\xf7\x14\xb2\xe0\xae\xde\x52\x63\x68\x09\x10\xde\x5e\x64\xfc\x23\x04\x86\xf0\x06\x80\xf3\x1e\x4b\x6f\x7b\xef\xde\xbf\x7c\x75\xf5\xea\xdd\xdf\x11\x06\x86\x08\x01\x28\x95\xb8\xc3\xb3\x82\xa6\xc1\x02\xc2\xc2\xa4\x42\xd1\x58\xc0\xfb\x0c\x95\x2b\x0b\x33\x8f\x58\x9e\xca\x70\x5a\xc1\xa3\x8a\x86\x13\xa7\xc4\xf4\xd0\xd5\xaf\x1a\xb4\x39\x1c\x83\x45\xae\x18\x36\x8e\x53\x12\xb2\x5b\x96\x64\xb9\xe5\x98\x88\xa7\xa4\x02\x23\x16\xc9\x60\x8e\x06\x33\x5e\xc6\x49\x02\x7b\x62\x57\x28\x39\x98\x81\x84\xb0\x24\x86\x77\x7d\xd2\x98\xa8\x95\xf0\x7e\x5f\xba\x89\x09\x6d\x13\x93\x3b\x9b\x5e\x30\xdd\x0a\x3e\x1c\x93\xd9\x00\x20\xd9\x63\x4f\xea\x69\x2f\xd9\xed\x79\x96\x25\x9c\x14\x2c\x01\x2f\x33\x74\xc9\x7e\x9e\xf0\x0c\x73\xc2\xf0\x55\xc1\x34\xb4\x12\x13\xad\x61\xc6\x49\xe5\xfd\x9c\x05\xc1\xaa\x80\xfb\x16\x74\xcf\x54\xc9\xe3\x4d\x18\x4d\xa1\x34\x97\xe8\x6d\x06\x64\xd6\xf0\xa8\xdc\x5d\xf2\x8c\xc7\x65\xac\xdf\xcd\xfa\x07\xb8\xd6\x7f\x5d\xfd\x57\xab\x63\x66\xdf\x0a\xc6\xdf\xef\x93\xbf\xb3\x22\x8e\xd6\xc6\xbd\x0d\x88\x05\xcf\x70\x4d\x9c\xb2\x2a\x15\x59\x48\xda\x2f\x5f\xbc\x6a\xe9\xb7\x2e\x5b\x72\x69\x5b\xfd\x21\xf1\xa9\x0b\xe8\x0f\xe7\x2a\x49\x57\x54\x7b\x60\x12\x0a\xca\x17\x48\xf6\x2e\x49\x05\x79\xcb\x92\x15\xe4\x6e\x41\x2d\xae\x30\x8a\x12\x32\x41\xc1\x30\x58\xb9\xcc\x61\x76\xc7\xf0\x7a\x5c\xfa\xa5\x8b\xf3\x86\xba\x7d\x4c\x79\x96\xb0\x1e\xc3\xe4\xee\x45\xa1\xc9\x75\xaf\x72\x85\xd5\xae\x97\xd3\xfa\xf5\x22\x46\xf0\xe2\x95\x0c\x97\x2b\x11\x42\x2f\x77\x15\x66\x0b\xc6\xf1\xf2\xfd\x5b\x32\x5b\x81\x49\x5a\x86\xe2\xe2\xea\xa4\xa8\xa0\x28\x3a\x04\xe0\x77\x0a\x83\x99\xd1\x50\xfa\x20\xca\x2b\xec\x70\x55\x60\x78\x37\x19\x34\x10\xc6\x64\x64\x18\x8c\xa4\x31\x33\x5a\xab\xd7\x0f\x7e\xe5\x7d\x3c\x34\x84\xd9\xb2\x67\x46\xd3\x5b\xc6\x69\xef\x57\x0e\xac\x63\x1b\x86\xb6\x87\x65\xaf\x5c\x05\xc8\x3e\x16\xe9\xe4\xf0\xf2\x48\xf4\x97\x19\x9d\xb1\x44\x65\x6a\xeb\xe3\x6b\x0d\xde\x67\x7c\xd9\x97\x35\xed\xf3\xd2\x15\x1e\xcf\x7e\x41\xeb\xd3\x07\x2b\x2d\xc0\x83\xd0\x1a\x5a\x02\x74\x71\x5c\xca\x0a\xc1\xe1\xcf\x3f\xbd\x20\xb3\x35\xe1\xf1\x3f\xe5\xb9\xb4\x65\xc5\xad\xeb\x41\xcd\x33\x88\xb3\xd8\x82\xa7\x0f\x3a\x61\x40\x28\x0e\x72\x90\xb3\x1d\x62\x67\xe1\x51\x0c\x4e\xf7\x11\x3e\xbd\xc8\xc5\xc9\x89\xf7\x1c\x85\x58\x39\x32\xb7\x3e\xf3\x56\x97\xb4\xf8\x52\xfc\x7b\x19\x8a\x7f\x27\x73\xf1\xef\xcf\x49\xeb\x12\x12\x8e\xfd\x8d\x31\x88\x3d\xb7\x8c\x53\x19\xa5\xeb\x2f\x10\x26\x0f\x73\xd2\x07\xc9\x8a\xc7\xb7\x4c\xbd\x12\x7a\xf1\xe9\x93\x4e\x2a\xaf\x5c\xb8\x9a\xb5\x6c\xdc\xbc\x7f\x14\x6b\x24\xcf\xe2\xb4\xe4\xed\x99\xf9\x5b\x32\x37\xe8\x83\x56\xf1\x0f\xda\xcb\xce\x2a\x94\xae\x77\x5d\x63\x19\x91\x75\x6a\x5b\xda\xba\xae\x14\x02\x9f\xf9\x84\x0c\x64\x73\xbe\x9c\x90\x83\x81\xfa\xb5\x0c\x27\xe4\xf8\x40\xfd\x4a\xe6\x13\x32\x1c\x1d\xa9\x9f\x9f\x93\x09\x19\x1e\x8f\x06\x28\x5c\x26\x75\xdd\x69\x9c\x9c\x6f\xab\x34\x2e\xbd\x21\x88\x22\x5d\x59\x7e\xaf\x69\xe3\x9c\x15\xf2\xcf\x2d\xbf\x57\x07\x8c\xf3\x85\x97\x2c\xf7\xfa\x14\x45\xba\xb2\xfc\x5e\xd3\xc6\xee\x73\xec\x77\xe8\xc0\xc0\xe0\x1a\xa7\x8d\x8b\xc5\x9e\xe0\x2e\xb9\x98\xee\x20\x91\x30\x2a\xbb\x40\x1d\xff\x12\x30\xa7\x3b\x3a\x69\x93\x66\x98\x55\x0e\x6e\xf4\xf6\xc1\x4b\x79\x97\xda\xe1\x78\xf9\xc5\x0d\x5b\x5f\xa2\xb8\x4c\x57\xcb\x19\x2b\x5a\xe4\x99\xf3\x69\x62\xf9\x96\xeb\x77\x35\x92\xaf\xdb\xcb\x38\xdd\xbd\x8b\xc3\x72\x31\x99\xee\xf4\x82\x2c\x0d\x68\xa9\xe2\xd1\xca\x5f\x40\x64\x54\x94\xeb\xdf\x98\x84\xd9\x5d\x5a\x41\x95\xa5\xe1\x59\x1a\xb2\xcf\xca\x37\x5e\xe5\xcd\x84\x7a\x4f\xc9\xd0\x3a\x6e\xad\xf2\x9c\x15\x78\x19\x76\x6a\x21\xce\x2f\x14\x8c\xcb\x4b\xe7\x89\x8e\x01\x7d\x2a\x81\x57\x3c\x88\xfb\x7d\xf2\x39\x01\xc4\xa4\xe2\xc1\x65\x7a\x1d\x90\x38\xdc\xbb\xc4\x5b\xe5\x6d\x21\x1a\x2a\xa1\xfc\x6a\x48\x6e\xe3\x6a\x53\xfc\xf1\x63\x33\xe2\x3f\x03\xef\x58\x35\x37\x4f\x00\xfd\x5c\x3f\x01\x64\x17\xb9\xb4\x4f\x86\x83\xc1\xf6\xb3\x31\x63\xe5\x1d\x63\x69\x9b\x97\xb4\x80\x03\x70\xb8\xd5\xbc\x88\x7a\x5b\x51\x99\xec\x92\x61\x35\x41\xd0\x2a\xc7\x0e\x2b\x34\xdc\x8a\xe1\x5c\x7e\x06\x40\x4d\x1c\x2d\x3f\x4e\x08\x76\x57\x21\x0b\x3c\x51\x10\xff\x15\x67\xbb\x5a\xe2\x9a\x91\x09\x95\x7c\x77\x28\xe6\xae\xb2\xa0\x0c\xf3\x09\x66\xbd\xdc\xb0\xbe\x2a\x35\x27\x48\xf3\xef\x9b\x3d\xa1\x98\x3b\x6b\x49\xd2\x4f\xcd\xea\x0d\x5b\x77\x89\x7e\x5d\xe3\xb7\x86\xa1\xd6\x35\xb7\xc4\x81\xf3\x18\x48\xe6\x8a\x57\xf9\xe9\x65\x23\x31\x2a\xe0\x59\x25\xd0\xb1\xb9\xb2\x0f\xc8\xc2\x55\x3e\x21\x2b\x25\x0d\xc5\x52\x9b\xc0\xbf\x65\x81\x44\x78\xa2\xfe\x90\xc5\x62\x7c\x13\xf8\xb7\x2c\xc0\xd9\xc1\xff\x00\x66\x5d\x94\xab\xa0\xd0\x58\xea\x8c\x9b\xb5\x7b\x0b\x3d\xc4\x6d\xe0\x28\x37\xdf\xa7\x1a\x6d\xde\xd8\xdf\xc6\x9f\xe3\xd4\x13\xf9\x3c\xa7\x01\xc4\xb7\x5b\xc2\x47\x7b\x93\x2f\xb3\x2c\x99\x51\x15\xd7\xb2\x61\x1e\xe6\x2b\xa1\x87\x73\x63\xed\x51\x25\x6d\xef\x45\x0a\x2f\xd7\x09\xa8\x00\x3a\xbb\x99\x5a\xac\x42\x16\x3d\x7e\x6c\xca\x2f\x06\x97\xc0\xf6\xfa\x4c\x4c\x9e\xb9\x1f\x1d\x9f\x09\x7c\x3b\x14\xb2\xbc\x60\x01\x3c\x6a\x4e\xc9\xed\x7e\x6f\x68\x7d\xc6\x7f\xee\x28\x3c\xda\x6a\x57\x3e\x10\x3c\x46\x75\x6b\x3e\x5c\xd4\x94\x11\xd2\x7a\x4b\x4b\x56\xc4\x34\xd9\xfd\xf9\x6c\x22\x4e\xa2\x4b\xd6\x43\xea\xf5\xcc\xd8\x21\x8f\xa8\xc4\x29\xec\xb5\xea\xa0\x13\xd2\xfa\x47\xb6\x02\xdd\x1e\x4f\xcf\x4c\x65\xb8\x95\x8e\x8d\x00\x54\xe6\xc1\x4d\xd6\x93\x06\x20\xd7\x56\x69\x4e\xc3\x30\x4e\xe7\x6f\x58\x54\x4e\x04\x88\x25\xeb\xc9\x09\x6e\x8f\x3a\xdd\x6a\xc5\x8f\xf1\x7c\xf1\x40\xcd\x0b\xfc\xe8\x68\x46\x79\x5b\x28\xa8\x9d\xcb\x89\xb3\x9b\x91\x4d\xdd\xef\x75\xba\x75\x55\x6b\x11\x70\xeb\xde\xdb\x3f\xae\xeb\x68\x70\xd9\xfb\x35\x8b\xd3\x76\x6b\x3a\x4d\x5b\x9d\x6a\x85\x8e\xff\xe2\xca\xe7\x61\xe2\xa3\x5e\x43\x09\x1f\x63\x53\x45\x1b\xde\xba\x92\xc7\xbb\xbe\x24\x80\x3b\xaf\x3a\x02\x76\xb7\x47\x65\xef\x61\x54\xf6\xaa\xa8\x5c\xd4\x4e\x9b\x75\x67\x29\x81\xca\xa5\x3e\x21\x6d\xb5\xea\x6d\xf3\xeb\x32\x4e\xff\xca\xb0\xaf\xf1\x81\x6a\x58\x19\xa4\x6a\x29\xf6\x0e\xb3\x93\xf9\x08\x08\x1d\x46\xd4\x80\x3d\xb0\x9d\x15\xb1\x7a\x5b\x32\x21\x09\x4d\x43\x1e\xd0\x9c\x89\x9d\xa7\x5b\xdb\xfd\xfe\x91\xba\x6b\xdd\xd4\x7f\x3d\xa9\xeb\xe0\x1d\xec\x5b\xf0\x64\xfb\x8e\x14\xf1\x52\x20\x4a\x19\x8f\xde\xf5\xcb\x25\xbc\x10\x06\x50\xb3\x84\x06\x37\x13\xd2\xfa\xc3\x60\x30\xc0\xa5\x79\xb7\x88\x4b\x26\x4a\xa2\x28\x6a\x4d\xd3\xfb\xaa\x40\x46\x08\x27\x12\xde\xbc\x80\x77\x99\x00\x6d\x3c\x80\x86\x54\xfc\x0f\xa1\x0d\x07\x58\x34\x16\xff\xc3\xa2\x11\x16\x31\xf8\x07\x8b\xf6\x64\xd1\x40\xfc\x0f\x8b\xf6\xb1\x68\x16\x8a\xff\x61\xd1\x18\x8b\x8e\x99\xf8\x1f\x16\x1d\x60\xd1\xe1\x58\xfc\x0f\x8b\x0e\xb1\xe8\x60\x28\xfe\x87\x45\x47\x58\xb4\x3f\x12\xff\xc3\xa2\x63\x2c\x1a\x0d\xc5\xff\xb0\xe8\xb9\xc4\x35\x1c\x8b\xff\xc9\x32\x89\x2c\x85\x7f\x64\x99\x44\x6d\x6f\x20\xfe\x27\xcb\xdc\x5e\x6b\xc9\x26\x08\xa5\x88\x16\xa7\x61\x3c\xcf\x5c\xb2\xb1\x23\x46\xa3\x03\x87\x6c\xc1\x38\xa0\xec\xd8\x21\xdb\x71\x44\x8f\x42\xea\x90\xed\xf0\xf8\xe8\x20\x98\x39\x64\x1b\x07\x07\xb3\x60\xe0\x90\x6d\x2f\x1a\x0f\x67\x63\x87\x6c\x7b\xc7\xfb\xc7\x74\xe6\x90\x6d\x6f\xb0\x17\x1d\x47\x0e\xd9\x46\x47\x7b\xe3\xe3\x3d\x87\x6c\x43\x3a\xda\x3b\x64\x2e\xd9\x8e\x82\x63\x16\x45\x2e\xd9\xc6\x7b\x07\x61\xc4\x3c\xb2\x85\x63\xaa\xcb\x74\xaf\xfb\x51\xc4\xea\xc9\x86\xa4\x52\x84\xcb\xe3\xf4\xc6\xe3\xb6\x80\xed\xb3\xc0\xe5\xb6\xa3\xd9\x2c\x1c\x38\x64\x8b\xf6\x8f\xa2\xd9\xd0\x21\x5b\x34\x38\x18\x1d\x8f\x1c\xb2\xb1\x60\x7f\x70\x48\x1d\xb2\xb1\xe3\x21\x3b\xd8\x73\xc8\x16\x1e\x0d\x67\x07\x03\x87\x6c\xc1\x68\x78\x34\x9e\x39\x64\xa3\xe1\x70\x7f\x7c\xe8\x90\xed\xe8\x68\xc0\xf6\x23\x97\x6c\x51\x74\x34\x50\x73\xa0\xc8\x16\x45\xfb\x83\xa3\xa1\x4b\xb6\x68\x3c\x18\x28\x70\x8a\x6c\xc1\x78\x38\x3c\x18\xd5\x93\x4d\x10\x4a\x11\xad\x80\x04\x9c\x36\xcd\x22\x36\x53\x6b\x4f\xe3\x11\x84\xe1\xc8\x5d\xa1\xd1\x31\x3d\x76\x59\x8d\x8d\x0f\xf7\x0e\xf7\x5c\x9a\x45\xe3\xbd\xb1\xcb\x6a\xd1\xfe\xfe\xde\xde\x81\x43\x33\x36\xde\x3b\xde\x73\x57\x68\xb8\x37\x8a\x46\x2e\xab\x05\x07\xa3\xa3\xd1\x91\x43\xb3\xd9\xe1\x30\x18\x06\x15\x9a\xd1\xa3\x81\x4f\xb3\xf1\x68\x3c\xf2\x68\x16\x0d\x0f\xf7\xf7\x5d\x9a\x85\xe3\x81\x10\x75\xb5\x34\x2b\x58\xa8\x48\x96\x15\x70\x5d\xee\x51\x2d\xda\x53\xe2\x49\x63\xc2\x06\x33\x97\x6a\x51\x14\x04\x0a\x39\xc5\x69\xd1\xec\x70\x3f\x74\xa8\x16\x45\xf4\x70\x74\xe0\x52\x2d\x3a\x3e\x52\x42\x58\x52\x2d\x9a\x1d\x05\x03\x97\xd3\xa2\xf1\xa1\x2e\x3a\x52\x33\x70\xa0\x8b\x24\xd5\xd8\xc1\x78\xa8\x8a\x0c\xd5\xc2\x61\x95\x6a\x74\xb6\x3f\xf0\xa9\x76\x6c\xda\xaa\x5e\xa3\x83\xb0\x89\x6a\x48\x2a\x45\xb8\x19\x9e\xe2\x6d\xb9\xb6\x17\x8d\xa2\xd0\x21\xdb\x6c\x16\xb2\x68\xe6\xca\xb5\x41\x40\xa3\x63\x87\x6c\x07\xfb\xb3\xb1\x12\x88\xfb\x4a\x84\x53\xbd\x8f\x8c\x95\x08\x3f\x3e\x88\xdc\x05\x3a\x64\x47\x47\xcc\x65\xb6\xe1\xf1\xe1\x81\x62\x6f\x49\xb6\xe1\xf8\x60\x1c\xb8\x64\x1b\x84\xfb\x87\xd4\xdb\x0e\x8e\x46\xb3\xa1\x2f\xd7\xf6\xf7\x8f\xa8\x2e\x93\xa8\x8d\x8e\x0f\x8f\x75\xd9\xa1\x2a\x3b\x18\x35\xed\xa2\x82\x50\xd6\x1e\xca\x52\x7f\x37\x88\xc6\x4a\xf4\xab\xdd\xe0\x88\x1d\x04\xee\x6e\x40\xc7\xe1\x01\x3d\x74\xa8\x76\x34\x0c\x0e\x8f\xf6\x1d\xaa\x1d\x1c\xcc\x66\x07\xae\x58\xdb\x0f\x68\x34\x76\x99\x6d\x7f\x8f\x0e\xf6\x0f\xdd\xdd\xe0\xe8\x88\xed\x05\xee\x6e\xc0\x0e\xc3\x3d\x77\x13\x1d\xce\xc6\x6c\xe4\x31\xdb\xec\x38\x3a\x08\xa8\x4b\xb5\x83\xe3\x68\x40\xbd\xdd\x60\x30\x60\x07\x87\x07\x2e\xd5\x06\x83\xe0\x68\xbc\xd7\xb8\x89\x32\x50\x3d\xfe\x9d\x6f\xdf\xb5\x4b\x4e\x94\x15\x4b\x5a\xbe\x5d\xc5\x60\xc4\x7a\x2b\xad\x66\x94\x93\xab\xfa\x2f\xda\xaf\xea\x2f\x4b\x75\x3a\x5b\xc5\xe8\xb8\xe3\x02\x0e\x19\xcb\x97\xac\x30\x4d\x5a\xd5\x16\x96\xd3\x95\xd4\xf9\xb4\x2b\x50\x90\x25\x59\xc1\xfb\x58\x6c\xd5\x03\x5d\xce\xaf\x25\x0a\xad\x3a\x52\x75\xf1\x6b\x61\xb1\x55\x0f\x76\x6a\xbf\x96\x28\xb4\xea\x14\x2a\xc6\x92\x55\xa5\x60\xa1\x55\x43\xca\x61\xbf\x12\x16\x5b\xf5\x40\xec\xf8\xb5\x44\xa1\x3b\x3a\x56\x25\x02\x94\xb6\x1c\xe2\xd2\xe2\x86\xa5\x5d\x32\x67\xe5\x8b\x2c\x2d\x0b\xca\xcb\x8f\x42\xbb\xef\x92\x44\x28\xdc\x2c\x35\x5e\x55\x08\xe4\x2d\x4d\xe3\x7c\x95\xd0\x32\x2b\x5a\xae\x87\x10\x34\x50\x0b\x5b\xfb\xc5\x8a\x7e\x75\x4a\x12\x38\xe3\xc8\xf0\x81\x9f\xd1\x0c\x58\x42\x58\x00\x37\x22\xcf\x32\xe3\xa5\x9d\x56\x46\xd5\x25\x24\x2f\xe2\x25\x2d\xd6\x13\xd2\x2a\xe6\x33\xda\x1e\x74\x89\xfc\x7f\xef\xe8\xb0\xd3\x32\x29\x4e\x3e\xb1\x20\x4b\x43\x5a\xac\xed\xc6\x5c\x15\xd6\x34\x1f\xef\xdb\xcd\x5f\xc6\x9c\xce\x20\x52\x1f\xfb\x2c\xf3\xbd\x43\x22\x9b\x24\xbb\x63\x05\xb9\x8d\xf9\x8a\x26\x24\x2f\xb2\x65\x9c\xb2\x34\x50\x46\xc9\x50\xb6\xaa\x01\xbf\x77\x64\x83\x3f\x07\xa8\x70\xda\xc1\x32\xf1\x77\x43\x2b\x3c\xdb\xf8\x24\xd5\x14\x0d\x63\x70\x2f\x0b\xe3\x28\x62\x90\x2f\x8d\xa1\x23\x07\x42\xc6\xaf\x45\x0d\xe8\xe1\x48\x22\x24\xa1\xce\x68\x70\x33\xc7\x98\xd0\x8d\x73\xc6\x57\x90\x6d\x96\xab\xc8\x5f\x2f\xb2\x94\xc7\xbc\x64\x69\xb0\x56\x17\x72\xf2\xa9\xbc\xb4\x13\xc5\xae\xf9\x8d\x58\xbd\xe8\x29\xcf\x69\x2e\x10\xc4\xe5\xd9\x83\x03\x99\xba\xfd\x43\x31\x38\x81\x95\x7a\x31\x1e\x5c\xd6\x93\xa2\x0e\x53\x2a\xb3\x96\xd9\xb4\xc0\x32\x9f\xd5\x90\x9a\xf0\xd0\x15\x6a\xdc\xea\xc6\x49\x7c\xc3\x20\xbc\x45\x90\xa5\x64\xb6\x2a\x4b\xfd\x06\x15\xeb\x3d\xc8\x44\x3e\xf8\x45\x86\xd9\xb9\xa8\x1d\x6d\x06\x0a\x6b\x40\x0d\x0c\x28\xa8\xf2\x3e\xa7\x41\x5c\xae\x27\xf0\xa9\xa9\x0f\xc2\x59\x82\xf9\xea\x9c\x3e\x54\x69\x5d\x37\x86\x2f\x55\x2d\xbb\xa7\xa3\xc6\x9e\x14\xaf\xbb\x3d\x6d\x58\x01\xa3\x03\x9f\x36\x3e\xcb\x6d\x03\xf8\x47\x8b\x81\x9a\x79\xda\xd4\xb7\x06\xb3\xa7\x06\x13\x65\xc1\x8a\x6f\x6e\x0e\x55\xac\xb6\xc3\x51\xd7\x9a\x7a\xea\x52\x69\x38\x9a\x4a\xd7\x03\x57\x1e\x86\x98\xfc\xf6\x4b\x45\xca\x69\x21\x56\xc3\xf4\x15\x19\x35\x1a\x8f\xbb\xc4\xfc\x6b\xd0\x3b\xac\x0c\xb2\xb1\xea\xd8\xf0\x90\x25\x60\x36\x54\x13\xbc\xbe\xa9\x9a\x59\x81\x9e\x64\xa9\x54\xd6\xc4\x6c\x5e\xf2\xb0\xac\x8f\x06\x83\x4b\x7f\xbd\xeb\xeb\x06\xd3\x9d\xb7\x78\xd5\x0a\xac\x21\xa0\xb3\xa0\x2a\x68\x59\xfc\x5e\x59\x56\x47\xdd\xfa\xe5\x52\x1d\xdb\xc1\xa6\x45\x33\x3c\xd8\x76\x7a\xf6\x2a\x33\x59\x65\xef\x66\xc2\x7e\x03\x93\x6f\x02\xf2\x4d\xac\x3e\xda\xb7\x58\xdd\x72\xc0\xa3\x61\xf8\x46\xec\xfe\xef\x8b\x97\xb4\xb8\x69\xc7\xe0\xd6\xdf\x95\x17\xe1\xe0\x13\xc5\x17\x34\x64\x5d\x52\x66\x29\x4d\xde\x47\x91\x09\xd6\x02\x0f\x78\x4c\xe9\x1b\xa9\x44\x58\x45\x3d\x54\x2c\xbe\x7e\xb5\x0b\x4f\x6a\xda\xbe\xc4\x05\x67\x37\x85\x35\xe8\xb6\x24\x4f\xc8\xb0\x37\x96\x36\x12\x8c\x49\x05\xe8\x5e\x68\x6c\x2f\xdd\x78\x5d\xf0\xb5\x87\x2f\x85\xf5\xdd\x25\x8c\xc7\x0e\xc6\x52\x01\x82\x9e\xaf\xa2\x0c\xea\xea\xa0\x8b\xe6\xa9\x9e\xae\x8b\x76\x40\x18\x66\xab\x02\xb2\xa7\xf4\x2a\xa9\x90\x29\x84\x96\x34\x4e\xbb\x15\xd2\x75\x1e\xec\x46\x90\xa4\xa6\x17\x29\xad\x50\x1f\x6c\xec\x43\x90\xd8\x71\xeb\x54\x1e\x57\x9b\xed\x58\x1f\x68\xc2\xca\x92\xb5\x73\xfc\xaf\x6d\xb3\x92\x45\x3f\x48\xa1\x48\x4e\x89\x2c\xe9\xc9\x92\xae\x42\xd4\xd4\xa8\x36\xaa\x71\x48\x49\xf0\xc2\x18\x75\xf5\x8b\x3d\x23\x67\xc4\xa0\x74\xf9\xd8\x92\x3f\xb4\xb8\xd1\xe5\x87\x03\xa9\x6f\x90\x49\xa5\x3b\x8d\x91\xfe\xa0\xa5\xb6\x85\xbe\x2e\xd3\xd5\xed\x5a\x75\x4d\x9b\x07\x21\x8e\x12\x3d\x71\xb4\x74\x86\x80\xa5\xfb\xba\x14\x07\x80\xa5\x87\x83\x41\x05\xfd\x2a\x46\xfa\x13\xf8\xd1\x59\xc8\x63\x46\x59\x55\x4d\x7d\xf5\xab\x37\x23\x5c\xb0\xb0\x4a\x72\x51\x58\xa1\xb7\x28\xac\x25\xb6\x8b\x82\x2e\x96\x56\x41\x0b\x57\x59\xa2\xab\x9a\x1a\xd5\x46\xcd\x18\xe3\x29\xab\x8a\xb4\x2c\xaf\xe0\x2d\xcb\x6b\x51\xf7\x31\xd2\x1f\x64\x90\x79\x85\xb9\xf8\xd9\x35\xeb\x10\xbe\x79\x75\x9b\x11\x16\x07\xbe\x2a\xba\x50\x5a\x41\x16\x4a\x6b\x51\x75\x50\x30\x9c\xb2\x0a\x02\xc6\xb9\xcd\xcd\x58\x62\x78\x59\xd7\xa8\x36\x6a\xc6\x19\xce\x9f\x55\xa4\xb1\xb8\x82\x35\x16\xd7\xa2\xed\xa3\xa3\x3f\xc8\x97\xf8\x0a\x6d\x88\x45\xa1\x2a\xc9\x6f\x5e\x5d\xc7\x1d\x0c\x65\xb0\xdd\x93\x03\x41\x97\x06\xf2\xac\x7c\xbe\x28\xec\xee\xec\x62\xbe\xc8\x92\x50\xb7\xac\x7c\xb1\x11\x71\xa1\xd9\x08\xed\xd9\xa8\xd8\xd5\x6a\x46\x6e\x6d\x71\x16\x01\x4c\xa9\xa1\x83\x53\xb3\x1e\x80\x8d\xc4\xa0\x37\x72\x28\x52\x03\xf2\x41\xaf\x35\xd9\x18\x3c\xd6\xa4\x18\x95\x8e\x6a\x4a\x28\xe1\x4f\x58\xf5\xf8\xa7\x5c\x45\xf8\x43\xf0\xa9\x6c\x80\x53\x8f\x3f\xc4\xec\xe0\x5f\x15\x02\xcb\x0a\x06\x59\x70\x87\x13\x87\x8f\x9f\x95\xed\x9e\x2e\x19\x49\xb2\x79\x1c\x10\x8c\x5d\xdf\xef\x93\x1f\xb3\xac\xe4\x65\x41\xf3\x49\xdd\x73\xb7\xf2\x6e\xc6\xfb\x33\x55\xa5\x3f\x4b\xb2\x59\x7f\x18\x1e\xb0\xbd\xc3\xe1\x20\x0c\xf7\xf7\x0f\x43\x36\xa4\xa3\xc1\x20\x1a\x1d\xb3\xa3\x88\x8e\x47\xc3\xe8\x88\x0e\x8e\x07\x47\xd1\xe1\xa0\xcf\x03\xce\xfb\x57\x3a\xa7\x68\x4f\xfc\xfe\xc3\x9b\xf1\xb1\xec\x99\xa6\x21\xd1\xf7\x5a\x81\x7a\xfe\xc0\x77\xef\xd8\xac\x0e\x95\x9a\xaa\x75\x65\xa2\x39\xe2\x49\x83\xfd\x83\xd9\xd1\xd1\xc1\x5e\xb0\x1f\xd2\xd9\x71\x14\x8c\x46\xc1\x7e\x70\x70\x30\x0a\x83\x83\x59\x38\x9c\x1d\x8c\xc3\xf0\x60\x3c\x8a\xfa\x39\x0d\x6e\xe8\x9c\xf1\xfe\x32\x0c\x76\xc1\xce\x5f\x83\xf5\xbe\xd8\xf4\xa7\xb6\x9b\x90\x75\x83\x74\xce\x3e\x97\x6d\xa3\xf8\x3b\xae\x62\x81\x55\x87\x9c\x56\xee\x9d\xac\x66\x5d\x10\x03\x3d\x19\xaa\x11\x58\xa6\x43\xfe\x7c\x5a\xb3\x94\x9e\x55\x6b\x92\x09\xca\x1c\xa7\xd0\x71\x45\xfb\xb6\xf7\x14\x2e\xf2\x0f\x21\x6e\x0f\xd2\x0f\x59\xa8\x61\xfc\x89\xec\xf9\x39\x0a\x2c\x9f\xf6\x8b\xe9\x8e\xef\xb5\x62\xba\x87\x8c\xf8\xe2\xbc\x6c\xcc\xf6\xea\x9b\x60\xfa\xc9\x10\x1c\x97\xa7\x3b\x1d\xff\xeb\x39\xbc\x5f\x9b\xee\x90\x2c\xb5\x3f\x5b\x73\xd5\x25\xad\x88\x26\x09\xc7\xc4\x38\xb0\x4e\x7e\x79\xf1\xfc\x27\x78\x5b\xbf\x5c\x42\x32\x36\x42\x67\x3c\x4b\x56\x25\x86\xd6\x5d\xae\x96\x35\x88\xed\x4d\x86\xbd\x56\x97\xb4\x14\xe7\xde\xdd\xdd\xf5\xee\xf6\x20\xa9\xe6\xf9\xc7\xfe\x68\x30\x38\xea\x7f\x7c\xf5\x62\x57\x80\x1e\x0d\x76\xc5\xef\xe1\x68\x38\xec\xff\x01\xef\xd6\x76\xe9\x2a\x8c\xb3\x5d\x05\x56\xff\xd1\x72\x1c\x47\x9a\x73\xda\xab\xec\x12\xd6\xa8\x6d\x0f\x35\x31\x95\x74\x35\x5f\xb2\xb4\x7c\x01\x37\x0f\xd6\x93\x3c\xbb\xbc\x0d\xf7\x12\x6e\x66\x2c\x1a\xa7\x9f\x84\x3e\x5f\xef\x17\x35\x74\xfd\xa2\x86\x9b\xfc\xa2\x86\x97\x64\x42\xc6\x83\x81\xe5\xb4\x0a\x2c\xbb\x01\xfc\xc8\x05\x3f\xda\x04\x7e\x24\xc0\xef\x39\xe0\xc5\x2a\xd9\x00\x7d\xcf\x85\xbe\xb7\x09\xfa\x9e\x80\x7e\xa8\xa1\x07\x92\x8c\xc6\x3b\xe6\xbe\x8b\x85\xae\xff\xe7\x23\x28\x83\x73\x85\xe8\x0c\x7e\x5d\x68\x9a\x5e\x3a\x09\x76\x74\xc5\xd3\x4a\xbd\xba\x18\xf9\x16\x68\x27\x42\x81\xfb\xb6\xa6\x71\xd5\x8b\x6d\x49\x2d\xfb\xe9\x0e\x79\x46\x6a\xd7\x5f\x82\xef\x01\x6e\xe3\x10\xaf\x1c\xeb\xb8\x05\xbc\xfa\x6f\x69\x12\x87\xbd\xe9\x34\xb5\xee\xcd\x30\x76\x75\xca\x18\xc6\x74\x80\x6b\x65\x4a\xae\x05\xc6\xd7\x2a\xf4\xf5\x1a\xe3\xc8\x5f\x9b\x85\xad\x47\x2d\xd6\xad\xa9\xd7\x9b\xee\x74\xc4\xae\x5c\x6b\x5c\x69\xef\x77\x0d\xa7\x76\x2a\xee\xb3\x56\x88\x67\x8b\xcc\x20\xfb\x38\x64\x4f\x68\xfd\x3b\x51\xf0\xda\xe0\x78\xad\x1e\xe7\xcc\x04\xe5\x10\x57\x7c\x91\x66\x11\xec\x3f\x3e\xbd\x7f\xd7\xc3\x6f\x71\xb4\x6e\x5b\x6c\x81\x14\xbc\xa3\xdc\x60\x10\xa7\xbc\x64\x14\xfa\x99\x4e\xd3\x97\x71\x48\xd6\xd9\x0a\xcf\xc4\x80\xde\x8a\x33\x92\xa5\xda\xc1\x2f\xca\x92\x24\xbb\x83\x37\xf7\x79\x5e\x64\x34\x58\x30\xfe\x0c\xdb\x2a\x93\xca\x74\xfa\xf9\xf9\x00\xcd\x2f\xca\xc4\x35\xf5\x8c\x5c\x41\x56\x30\x69\x92\x11\xdf\x4e\x10\x00\x04\x5d\x40\xc7\xba\xa1\xe0\x79\xf4\x00\x5d\xc5\xe0\xaf\xd8\xfe\xa2\x54\xba\x89\xe8\x22\xb5\x6e\x11\xa1\xaf\xee\x74\x9a\xde\x43\x22\x6a\x1f\xd6\xe8\x5b\x60\x7d\xa9\x68\xe4\xe4\xde\x80\xde\xc4\x71\xe3\x2e\x69\x26\x7c\x95\x05\xbd\x1b\x23\xa8\xdb\x55\xfa\x77\xd7\x12\x84\xee\x9d\xd1\xc9\xc6\xd6\x70\xb5\xd1\x35\x62\xae\xd2\xb6\x22\x2d\x9c\x8d\xda\x17\x3e\xcd\xaa\x0a\x28\x38\xd6\xf8\x1a\xfc\xd3\xa1\x86\x13\x21\x1e\x6e\xac\xd6\x39\xb8\xd5\x7e\xb1\xcf\x3a\xe2\xdf\x5d\xe7\xac\x04\xff\xb1\xdb\x7e\xbb\xd2\x02\x03\x85\xee\x2e\xc4\xbf\x5d\xf1\x6a\x2b\x1b\x35\x2b\x55\x72\x08\x1e\x9a\xae\x5d\xaf\x7a\x5c\x47\x32\x64\x9b\x8c\x4d\xcd\x42\x21\x91\xfc\xbb\x21\x35\x66\x09\xed\xfd\xaa\xcc\x57\x98\x58\x4b\xda\x74\xdb\xbe\x3f\x25\xe4\xe4\x09\xb2\x24\x91\x77\x56\x20\xa3\xc0\xa2\x8b\x0b\x46\x3f\x00\x14\x65\xea\x06\xd8\x35\x2c\xd8\xa8\x77\xc1\x5b\x77\xc6\xa4\x75\x32\xc3\x4d\x50\x3d\xbc\x5c\xe7\x6c\x42\xac\x13\x5e\xbd\x5d\xa9\x60\x79\xc1\x20\x38\x8c\x52\x2e\x21\xaa\x46\x44\x03\xa6\x4d\x4c\x98\x1a\x57\x34\x29\x7c\x53\xa5\x23\xe1\x94\x22\xbb\x65\x87\xe6\x76\x68\x9b\x2e\x2d\xe3\x81\xd3\xa9\xb9\xf8\x21\xad\xe7\xfb\x83\x81\x50\xcc\x9e\x8f\xe4\x7f\x0f\x07\x83\xd6\xb6\xe8\xd4\x20\xa1\xdf\xa1\x0a\x3c\x2c\xf1\xbc\x14\x6a\x06\xbd\xa3\x85\x90\x9d\x12\x3f\x60\x36\x0f\x37\x28\xdb\xb6\xff\x3c\x2b\x59\x5a\xc6\xf0\x34\x2f\xa4\xe9\x9c\x15\xd9\x8a\x4b\xe3\x00\x87\x77\xb7\xda\x68\x2c\x9f\xed\x2a\x7e\x91\x87\x49\xaf\x73\x59\xba\xb9\x7b\x33\x78\x94\x7c\xb1\x09\xf5\x03\x63\x2e\x65\x00\x9c\x94\xad\xca\x82\x26\x70\x90\x13\x0b\x23\x65\x62\xa9\xd2\x22\xc6\x14\x4d\x96\x19\x14\x2f\x7b\x3c\x5c\x20\xc1\xe0\x46\x44\xe2\x34\x8c\xc1\x63\x1e\x8d\xb1\x70\x0c\x8e\x56\x89\x1d\x66\xd7\x18\x32\x21\x9a\x2f\x2d\x25\x8a\x45\x3c\x9f\xb3\x42\xbf\x94\x96\x8d\x7d\x36\xc1\x52\x0f\x09\xf0\x93\x70\xd6\x9e\x28\x41\xf3\x8d\xa9\xf9\x33\xc7\x44\x67\xd7\xbe\x94\xec\x5c\x0b\xd4\x97\xf4\x73\xac\x13\x6e\xe8\xd3\x82\x34\x1a\x6b\x20\xa5\x6b\x15\xa4\x69\xe8\xfa\x0a\xd4\x5c\xa3\x4c\xaa\x45\x16\xfa\xf4\x86\x71\x42\xab\x96\x46\x93\xcb\x85\xeb\x1e\xe4\x27\x20\x9a\x42\x97\x3b\xf8\xaa\xe1\xbb\x23\x9c\xf8\x05\xa6\x7f\x99\x5e\x4a\xe8\x2a\x45\x1c\x2c\x1c\x3d\x50\xd9\x92\xad\x09\x70\xa7\xa3\x4a\x5b\x3b\x59\x89\x3e\x9f\x65\x84\x2f\xe2\x08\xd2\x11\x89\x56\x2d\x4e\x92\xd5\x32\x4e\x21\x5b\xec\x6c\x8d\x6a\xca\xe7\x78\x09\x11\xaf\x0c\xa1\xef\x80\x9b\xd8\x67\xc6\x21\x32\x50\x0c\x19\x6c\x70\xb7\xd4\x57\x47\xba\xf6\xab\xde\xbc\xd7\x95\xdd\x80\x42\xf3\x91\x85\xe2\xe0\x22\x3a\x17\x7f\xee\x0d\x06\x62\xed\x89\x3f\x0f\x07\x03\x25\x5b\xcd\xce\x3b\xb1\x7f\x4c\xd1\x57\xdb\xde\x95\xac\xc7\x39\x7a\xeb\x74\x36\x0c\xef\xd5\xce\xbf\xb5\x1b\xd4\xb6\xde\x4a\x96\xf5\x0c\x38\x53\xbe\x8f\xc4\x1d\x5a\x12\xe1\x2d\x2d\x17\x3d\xeb\x2b\x79\x42\x86\x6c\xdc\x21\x7d\xf1\x9f\x13\x69\x79\x81\x7b\x09\xca\xd9\xf3\x24\x79\x41\x73\x6e\x5b\x9c\xcf\x0b\x9a\x72\x21\xb4\x26\xa4\x05\x2f\x07\x45\x3d\xe9\x6b\x06\xe7\x41\xb4\xd6\xbc\xce\xd2\xf2\x35\x5d\xc6\x10\xb3\xba\x35\xdd\xf9\x98\xcd\xb2\x52\xde\xb6\xfd\x95\x25\xb7\xac\x8c\x03\x8a\x3f\x9f\x8b\x71\x88\x3f\x39\x4d\xf9\x2e\x67\x45\x1c\x41\xc4\xaa\x27\x4f\xa6\x29\x79\x42\xfe\xc2\x19\x23\x7f\x49\xe2\xf4\xe6\x8b\x3a\xf8\xab\xc1\xf7\xe2\xac\x1f\x32\x1e\xcf\xd3\x7e\xb9\xce\xb3\x79\x41\xf3\xc5\xba\x5f\x2e\xd8\xae\x60\x82\x5d\xbe\xe6\x25\x5b\xf6\x16\xe5\x32\xb9\xff\x3e\x50\xe2\x9c\x5a\xf0\x92\xa6\x61\x9c\xce\x77\xcd\x07\x03\xb3\xff\xb0\xa1\xea\x5c\x37\x33\x37\x96\x06\x94\x6d\xb7\x2a\x20\x7a\x90\x3c\x45\x99\x2a\x68\x63\xd3\x51\x3d\xc8\x33\xeb\x9b\x31\x7f\x4d\xac\x52\x73\x93\x5b\xb0\xe8\x87\xc8\x9e\x0b\x51\xd2\x33\x25\xba\x66\xa5\x92\xd3\xcc\xbe\xba\xad\xce\xf0\xc4\x6f\x50\xed\xff\x93\x10\xd4\x56\xef\xe2\xb7\xd3\xb7\x55\xc1\x6a\x60\xf7\x3b\xdc\xb7\x3b\x72\x00\xe8\xd2\x5f\xe0\x49\x87\x32\xf8\xea\xde\xac\x62\xa7\xd3\x6a\xf5\x2a\x14\xe7\xea\x7c\x30\xb0\x71\xa8\x03\xeb\x7d\xfc\xc8\xe6\xab\x84\x56\x71\xc1\xf2\xa2\x06\x1b\xf9\xa5\x8a\x8f\x02\x65\x23\xb4\x5f\x87\x10\x56\x6c\xc2\xe8\x2d\x0b\xe3\xd5\xb2\x8a\x11\x96\xd7\x20\xe4\x34\xa8\x01\xe4\xbc\x43\xaf\xc3\xc7\x83\xec\x7d\xfd\x51\x1a\x2e\x5c\x6c\x7e\xb4\x0d\x1d\xb5\x95\x2b\x20\x6c\x3c\x0e\xeb\xf0\x70\x60\xc2\x37\xb1\x8c\x5f\x7b\xdc\x69\x97\xe9\xda\x35\x15\xbd\xc6\x0e\xa7\x1e\xa8\xce\x6b\x81\xd1\x24\xf9\x3b\x46\xc6\xe2\xaa\x53\xab\xc8\xd8\xa6\x3f\x9f\x67\x1f\xd9\x72\xa4\xea\xc8\xdf\xdb\xdb\x47\x44\x2b\x30\x8e\x98\x85\x89\x12\x57\xad\x1f\xf3\xcb\xe2\x64\xbf\x50\xf2\xa3\x5f\x8c\x93\xea\x97\xfe\xa8\x8d\x24\xf6\xc8\xb1\xc4\x1a\x23\x16\xc8\x01\x59\x21\x05\xbe\xef\x38\x2a\x05\xa6\x96\x1a\x8f\xac\x17\xd0\x8d\xc7\x53\xf7\xfd\xe6\xb5\x6a\x0c\x47\x50\x19\xcb\x04\x14\x64\xb8\x15\x42\x60\xbd\xea\xc3\x7b\xab\x7b\x87\x1d\xbe\x07\x05\x1b\xc0\xd6\x68\x38\x27\xe2\x20\x83\x0d\x44\x13\xa2\x4f\x86\xfb\xd6\x25\x81\xa4\x37\x39\x35\xac\xf5\xf5\xab\x15\xf5\x8d\xc7\xff\x64\xd5\xbc\xa6\xe6\x98\xce\x11\xa6\x33\xd0\x27\xd0\x69\x17\xc2\x4b\x2f\xf5\x5b\x71\xab\xd3\xd9\x2a\x4e\x42\x39\xef\xf6\x9d\xb8\x5d\xde\x36\x0c\xd4\x85\xb8\x07\x5d\x92\xc4\x29\xfb\xab\x2c\x81\x0d\xae\xf8\xa4\xde\x28\x07\x94\x8b\xf3\x95\x87\x68\xf5\x0d\xa5\xe1\xfa\x09\x69\xd8\xf0\x7e\x91\x2f\x00\xad\xfe\xfd\x3d\x69\xa2\x88\x85\xe4\xd1\xdf\x85\x0e\x9d\xc6\x65\xc2\x38\xb7\x6e\xf0\xb4\x5a\xc1\xd6\xac\xb8\x63\x68\x56\x63\x45\x1c\xf4\xc5\xe2\x9c\x2f\x4a\xde\x1f\x0d\x06\x07\xfd\xc1\xa8\x3f\x38\xea\xaf\x24\x80\x5d\x31\xda\xdd\x05\x20\xc0\xfb\xaa\x07\x43\x82\x89\xf5\xb7\x9c\xf9\x2e\xf1\xb6\xe7\xea\xae\xfc\xcc\xf0\x9d\x43\xc1\x89\x33\xa9\xa8\x0a\x3a\x15\x48\x9f\xe0\x58\xc9\x74\x07\x26\x55\xf6\x09\x4f\xae\x15\xfd\xbb\xb6\x18\xab\x4e\xfb\xad\x11\x70\x12\x8b\xc5\x70\xd2\x34\xe9\xb8\x83\x92\xe3\x83\x2e\x19\xf6\x86\x07\x87\x5d\xb2\x3b\xec\x8d\x15\xad\x17\xa3\x87\x1a\x1e\x0c\x44\xc3\x51\x97\xec\x0e\xac\x66\x7b\x8d\xcd\xd4\xe6\x4b\xf6\x8f\x74\x8f\x03\xdd\x6e\xff\xe1\x76\x7b\xfb\xd0\xe1\x1e\x38\xbe\x8d\x4c\x97\xe3\x87\x9b\x8e\xa0\xe9\x9e\x80\x60\xba\x3c\x68\x6c\x27\xf7\x4e\x32\x82\x21\x1e\x80\xa3\x9d\xee\x8f\xaf\x66\xa5\xe0\xa0\x66\xca\xea\x6e\x87\x40\xdb\xc3\x71\x3d\x80\x66\x0a\xab\xfe\x87\x80\xf6\xf8\x10\xda\xab\xe6\xb3\x2c\x5c\x6f\xdd\xb7\xd7\xb5\x68\xdb\xdc\xad\x69\x0b\xfd\xee\xef\x79\x8d\xc1\x75\x7a\x4b\xa4\x71\xd0\xfb\x5d\xfb\x44\xa3\x00\x05\x54\x66\xe4\x7a\x10\x8f\x11\xd0\x1f\x26\x60\x5f\xb5\xce\x6e\x59\x21\x56\xe6\x76\xcd\x47\xd0\x7c\xe8\xe2\xa1\xd6\x8d\x96\x63\xcd\xb7\x98\xb6\xdc\x9d\x90\x1a\xcd\x42\x0a\x2a\x2d\xb1\x64\xb1\xf4\xfd\x44\x33\xb2\xb9\xc7\x78\xff\xf2\x3d\xb9\x1d\x4f\x48\xc1\x96\xd9\xad\x8c\x27\xb7\x51\x64\x1a\x89\xe8\xe9\xdf\xde\x7a\x9c\xf8\x05\x95\x6a\x92\x2c\x93\x6a\x51\xa5\x2a\x4e\xe5\xa4\x52\x52\xa9\xf8\x23\x5c\xdc\x78\x9a\x08\xde\x0b\x28\x59\xa4\x2e\x05\xf4\x2b\xf0\x20\x81\x6c\x8e\x18\x40\x0f\xf2\xf6\x81\x25\x4d\xec\xb7\xf0\x09\x26\x03\x65\xda\xbd\xfd\x04\x9c\x2f\x68\x98\xdd\xfd\x8d\xad\x7f\x5e\xce\x0a\x2a\x7d\x59\xc9\xa9\x90\x05\xf2\x14\xac\x6b\x7c\x60\x62\xd3\x76\x2b\xc1\xa6\x6c\x6a\x3d\x5f\xce\x62\x96\x82\x65\x22\xbb\x73\xea\x8d\xbc\x90\x94\x70\x9c\xc4\x7a\x6d\xf7\x54\x7f\x61\x8b\xf4\x8a\x19\xf6\x4f\xa7\x18\xe8\x47\x5b\x5d\x27\x4e\x28\x0d\xd4\xc5\x6c\xdb\x7d\x1d\x84\x61\x23\x84\xe1\x96\x10\x46\x8d\x10\x46\x5b\x42\xd8\x6b\x84\xb0\xa7\x20\x48\x0f\x7c\xf1\x3f\x0b\x58\xed\x8c\xa9\xf8\x36\x6e\xac\x82\xba\x7e\xf7\x1b\xfb\xdd\xdf\x12\xf3\x71\x23\x84\xf1\x96\x10\x0e\x1a\x21\x1c\x6c\x09\xe1\xb0\x11\xc2\xe1\x96\xd4\xf3\xb8\x79\x7b\x02\x1e\x35\x76\x7d\xb4\x25\xf2\xc7\x8d\x10\x8e\xb7\x65\xe0\xe6\x35\x30\xdc\x7a\x11\x6c\x58\x05\xc3\x6d\x88\x58\xb7\xd8\x15\x19\x95\x23\x4a\x57\x46\x5b\xec\xf7\xc9\xdf\xf1\xd1\x13\x5c\xfa\xfd\x1e\x0e\x5b\x33\x76\x74\xb8\x7f\x18\x1d\xef\x8f\x0f\xf7\x0f\x0e\x8e\x83\xd9\x98\x1d\xd2\x30\x1c\xd2\xc3\x60\xbc\x1f\xd1\xfd\x21\x3d\x3a\x0e\x58\x70\xe8\x3a\x6c\xb1\x84\xdd\x82\x8d\xa2\x7f\x05\xb2\x74\x96\x30\x74\xda\x42\x87\x2d\x23\xca\x30\x78\x61\x9a\xa5\xac\xd5\x75\xc5\xd5\xa0\x4b\x46\xb0\xf9\xed\x0e\xe1\x69\xcc\x10\xfe\x3f\x50\x7f\xef\x81\x36\x54\x69\xb2\x87\x4d\x46\x50\x6d\x04\xff\xd7\x4d\xc6\x8d\x4d\xf6\x74\x93\xbd\x2e\xd9\xb7\x9a\x1c\xd5\x37\x19\x41\x2d\x89\xd8\x3e\x42\xd6\x48\x0e\x1a\xbb\x19\xeb\x36\x63\x04\xad\xdb\xec\x6f\xd1\xe6\x40\xc2\xd6\x8d\x1a\x90\x43\x7c\xe4\x78\x0e\xb1\xd1\x50\xd1\x03\x34\xab\x9a\x46\x63\x6c\xb4\x07\xf5\x8e\xec\x46\x7b\x88\xde\xa8\xbe\xd1\x81\x6e\x74\x2c\x55\x1e\xdd\xe8\xa0\xbe\xd1\x81\xdd\x08\xba\xd9\x57\xad\xf6\x71\x50\x7b\xf5\xad\x84\x92\x8f\x73\x33\x14\xa3\x1f\x5b\xad\x84\xae\x5b\xd7\xea\x10\xc6\xa2\x5a\x09\xec\x0e\x15\x4b\x8c\xbb\x64\x24\xa6\xf1\xc1\x56\x62\x28\xc7\x76\xab\xfd\xc6\x56\xc7\xa6\x95\x40\x6a\x68\xb7\x3a\xa8\x6f\x75\x84\xad\x90\x81\x86\x12\xa9\x91\x9a\xef\xd1\x51\x97\x8c\xeb\x5b\x09\xca\xa9\x66\x07\x88\x95\x6e\xb6\x37\x68\x6e\x36\x34\xcd\x0e\x11\x2d\xd3\x6c\x54\xdf\xec\xd8\x6d\x76\x84\x78\x69\xfe\x12\x07\x93\x83\x86\x66\xe2\x84\x75\x80\xcd\x04\x0d\x8f\xed\x66\x07\xf5\xcd\x86\x92\xe8\xb2\x1d\x4c\xad\x5c\xef\x30\x82\xbd\xa3\x2e\x39\xdc\xa2\x9d\x68\xb3\x67\xb5\xdb\x1f\x6c\x68\xb7\x6f\xda\x8d\xba\x44\x9c\xd2\x4c\xbb\x51\x43\x3b\xb9\x6e\x77\x0f\xb1\xdd\x1e\x0e\x49\x2f\x86\xfd\xfd\x2e\x39\x6a\x6a\x37\x36\xed\xf6\x71\x48\xa6\xdd\x81\x68\x77\x59\x7d\x88\x2f\x05\xe6\x89\x51\x29\x4d\xce\xf0\x19\x64\x89\xfe\x48\xc3\x78\xc5\x27\x64\xbf\xf6\x21\x3f\x34\x10\xad\x9b\x8c\x0f\x57\xb4\x28\xe8\xfa\x4d\x7c\xc3\xce\xb3\xe7\xe2\xcf\x36\x2d\x8a\x2e\x49\x98\x72\x65\x8b\x23\xd2\x4e\x58\x4a\x4e\x31\x97\x1d\xf9\xfa\x55\x7c\x24\x7f\x26\xb4\x28\x74\xa0\x4a\xa8\x60\x95\xa8\xd8\x9f\x76\x3a\xa8\x41\x57\x54\x18\x41\x82\xf7\x3b\x82\x7d\x89\x6e\x4e\x48\x4c\xfe\x24\x20\x9c\x90\xf8\xe9\x53\x7d\x61\x23\xea\x5e\xc4\x97\x08\x56\xe5\x7e\x72\xe3\xfc\x89\x2a\xae\x81\xce\x1f\x8c\x32\xad\xf5\xfa\xfe\x97\x8d\x21\xf0\xae\x56\xa9\xf6\x2d\x39\x93\xc9\x83\x14\x79\xb2\x2e\x59\xc6\xe9\x1b\x87\x3e\x8f\xb2\x8e\x1d\x38\xdd\xba\xee\xcb\x64\x7a\x18\xf4\x4d\x9a\xee\x74\x2c\xdc\x5d\xb2\x1b\xb8\xfa\x81\x99\xa0\xe9\x7b\x34\xd9\xea\x84\xf1\xbd\x32\xfb\x04\xb0\x30\x73\x64\xd6\x91\xf9\xb9\x85\xf0\x1a\x76\x74\xf7\xa9\xec\xf7\xbd\x95\x96\x26\xeb\x59\xc9\x75\x3a\x00\xdd\x29\x82\xec\x22\x15\x08\x6f\x69\x0e\x99\xed\x88\x2a\xf8\xc4\x4a\x6b\x1c\x80\x7c\x4f\x90\xb9\x9d\x55\xbb\x7f\xae\xf4\x1e\x04\xd1\xff\xaf\xf6\xb3\xc9\xcf\xf1\xd7\xb3\x4e\x5a\xb6\x9f\x4d\x8e\xbe\x0e\x0f\xbe\xee\x8d\x3a\xed\x67\x93\x17\x09\x5d\xe6\x2c\xec\x3c\x03\x78\x3f\xf4\x7b\x25\xe3\x65\x3b\xed\x6c\x49\x2f\x9f\x05\x7e\x89\xcb\xc5\x5f\xb3\xc4\xd8\x56\x25\x03\xe8\x72\xdb\x72\x1a\xbb\x33\xfc\x26\x5e\xc6\xa5\x69\x57\xf7\xd5\x6e\xdd\xcc\x2a\x06\x46\x73\x1d\x1b\x52\x9a\xa5\xea\xeb\x47\xc6\x2d\x14\xbc\x0f\x9b\x59\x17\xd8\x21\x74\x16\x73\xec\x9e\x02\x5d\x4a\x88\x2a\x90\xa3\xa8\x6e\xa0\xba\xfd\xd7\xaf\x1b\x06\x6a\xd7\xf2\x70\x6d\xab\xd9\xd9\x2c\x7f\x3c\x6c\xf4\xc2\x42\xee\x8a\xb9\xee\xc6\x61\x88\x87\x40\x6f\x1c\xd1\x17\x6f\xa5\x7e\x5a\x2f\x67\x59\x22\xf9\x56\xeb\xee\xc8\xb7\x8f\xda\xf8\xb5\xa7\x52\x8b\x91\x38\x95\x2b\x13\x91\x72\x96\x3f\x66\x41\x29\x0a\xa1\xe5\x5e\x9a\x92\xd4\xe4\xb0\x97\x25\x90\xfa\x93\x26\xdc\x2a\x62\x5e\x9e\xae\xa9\x1b\x84\x5f\x0b\xd4\xab\x58\x0a\x46\x0f\xb1\xcb\x76\xa7\x4b\xae\xf8\x09\x79\xd4\x86\x0e\xdb\x57\x60\x3c\x8a\x21\xc9\x62\xbb\xd3\xc1\x6c\xf1\x27\x06\x1b\xcb\xec\x20\x70\xee\xe5\x2b\xbe\x68\x5f\xc9\xa0\xdc\xfe\x03\x82\x58\x88\x91\x2b\x23\xe6\x81\x5a\x71\xc7\x49\x24\x8b\xd6\x86\xba\x60\xfd\x30\x5e\x4d\x01\x82\x83\x65\x85\x74\x53\xd4\x09\x5a\x65\x6d\x6b\xd4\x52\xc8\x5e\x81\xe3\xf6\x55\x7c\x61\x92\x54\x5e\x92\x47\xb8\x2d\x75\xbc\xf2\xb6\x79\x8d\xea\xc1\x45\x60\x57\x61\x47\xba\x17\x5f\xb1\x1a\x33\x89\xb2\x16\x6c\xc1\x64\x15\x86\x97\x4e\x10\xda\x77\xf9\x7c\x9d\x33\x95\x1e\xef\x0c\x7d\x8b\x55\x62\x3c\x08\xa3\xc1\x50\xfe\xae\x0a\x26\x16\xcf\xae\x62\x5a\xf0\x0f\xa6\x10\xe2\x63\x9a\x9e\xa5\x04\x36\x7b\x69\xe3\x31\x49\xf2\x44\x0b\x58\x41\xd2\xb7\x87\x63\xea\x3f\xe9\xe0\x5d\xc3\x1d\x32\x43\x60\x0f\x8d\x30\x1b\x47\x86\x0b\xa3\x9d\xcd\x7e\x95\x63\xd2\x2e\x2a\xd2\x35\x85\xec\x4a\x2f\x04\x90\x48\x9b\xd6\x93\x02\x8a\x1b\x91\x53\xc3\xac\x29\xb9\x53\x42\xa9\x95\x3f\x4f\xe2\x61\x5b\x85\xaa\xa8\x59\x26\x1e\xb5\xf3\xce\x7e\x55\x13\x2b\x19\xcc\xce\x57\xfd\xad\x40\xb3\xd9\xaf\x15\xcc\x6b\xc7\x96\xcd\x7e\xb5\xf7\x54\xa8\x23\xab\xe3\x57\x30\xfa\xc9\xa1\xeb\x5d\x1d\x5c\xd6\xd5\xc8\xd1\x47\xa3\x76\x0c\x2e\x77\x5a\x08\xbb\x7b\xe0\x77\xf9\x02\xe1\x75\x32\x0d\x82\xae\xe0\xaf\xa5\xad\xde\x58\xbf\xcd\x2e\x12\x04\x35\x38\x99\x7b\x69\x0d\xe8\xdb\xee\x51\xbb\x98\x0d\xe1\x4e\x6c\x9f\x94\x97\xe0\x60\x6a\x6e\x56\x6b\xdc\x68\xa0\x37\x3b\x54\x55\x99\x61\xc6\x2a\xb1\x40\x9c\x7d\x78\x83\x7f\x55\xa5\xcd\xef\x10\x5f\x59\xe3\x23\xed\xce\x0f\x23\x61\xd6\x92\x6c\xfb\x41\xe5\x7f\x90\x73\x98\x17\x59\x0e\x4e\x4b\x76\xd4\x29\x9c\x66\x15\x29\x09\x7e\xb5\x4e\x74\xa4\x13\x1d\xde\x94\x3c\x79\x02\x21\xc6\x9f\x3c\x21\xe0\x36\x1b\x73\x8c\x95\x83\xc9\x29\x5e\xc3\x9e\x86\x02\x07\x33\xf6\x61\xce\xec\x82\x97\x36\x8c\xcf\x7c\x42\x2e\x3e\xf3\x2e\xe1\xcb\x8b\x9e\xba\xd4\xd1\x09\x1b\x60\x9e\x4d\x36\x06\x3b\x17\x83\x9d\x89\xc1\xc9\xc3\x60\xb2\x30\x78\xae\x61\x56\x66\x09\x2b\xb2\xd3\x96\xe9\x36\x30\x43\xe5\x6f\x4b\xb8\xa1\xe2\x86\x6f\x4e\xb3\x01\x83\x58\xe5\x93\xc6\x3c\x07\xdb\x67\x28\xc0\x78\xe6\x78\x3b\x68\x07\x54\xb7\x8e\x75\xba\x13\xcc\xd9\x6f\x67\xdf\x90\x79\xb2\xc4\x7f\xe0\x3a\x50\x86\xf5\x7d\x5d\x64\xcb\x0f\xaa\xcc\x5a\xd3\xdf\xe1\xce\x8f\x99\xcd\xe0\x65\xc7\x96\xce\x0a\xff\xc8\x56\x84\x16\x98\x81\x16\xb3\x45\x62\xa0\x24\x2b\xc0\x3b\x78\xa3\x10\x8a\x0f\x46\x24\x47\xd6\x7a\x2e\x54\xd5\x41\x3d\xd4\x8e\xf3\x4e\x0e\x20\xb9\xdc\x63\x61\x6e\x07\xa7\x16\xaa\x5d\x95\xdb\xdc\xc4\x06\xba\x93\x5e\xc1\xc2\x55\xc0\xac\xd4\x66\x96\x84\x03\x8f\x56\x8b\x28\x34\x08\x2e\x7c\x3c\x7a\xab\xbc\x5d\x29\x83\x80\xfb\xd0\xfa\xb2\x23\xce\xba\xd5\x39\x33\xc3\x54\xf5\xfc\x10\xd5\x4a\x12\x83\x15\xeb\xcb\xbd\x13\x4a\x1f\x74\x1d\xb9\x4f\x18\x7a\xa1\xab\x20\x6a\x0c\x2d\x37\x15\xe2\xef\x40\x3d\x87\x7e\xf2\xfc\x2a\xc6\x69\x21\xd0\x40\x4c\x03\xdd\xa3\x65\x05\x2d\x41\x4c\xab\xf6\x83\xa4\x33\x75\xbf\x8d\x7e\x10\xa4\x54\x3d\x1d\xd9\xd4\x83\xe3\x42\x9c\x69\xdf\x61\x67\x87\xb5\x88\xd7\x46\x58\xf2\x8b\xe5\xdd\x99\xb2\xbb\x4f\xf6\x27\x5b\x43\xf1\xbf\xe9\x1c\x8e\x66\xfe\x66\x94\x33\x8d\xa9\x5b\xed\xe4\x77\x5f\x22\x90\x7f\x03\x76\x3c\x88\x7c\x5b\xcb\xdc\x0d\x33\x6d\x4b\x48\x2d\x90\x72\x94\x80\xce\xd3\x64\x1a\x04\xe2\xa4\x13\x04\x98\x98\xf3\xc4\xf9\x52\xbb\xc6\x04\xe8\xcb\x0a\x0d\xea\x82\xa7\x13\x44\x79\x62\x0f\xde\x7c\x55\xb9\x07\x11\xa7\xce\x86\xa4\xc9\x0e\x03\xa9\xa4\xa9\xd6\x77\x54\x88\xc4\xd4\x74\x35\xbd\x5c\x5f\x18\x7f\x66\x7b\x7a\x23\xc2\xa9\x79\x58\x54\x93\x67\xc6\xb7\xc9\x79\x0a\xcb\xeb\xe1\x76\xba\xe0\xa5\x63\xa5\x50\xd2\xca\x46\x4f\xa6\x69\xc6\x4f\x62\x17\x6f\xf8\x24\x36\xf5\x86\x4f\x62\x8f\x6f\xf8\x24\x76\x7c\xff\x13\x6a\x78\x26\x59\x43\x85\x1e\x51\x9c\x94\xac\x10\xcd\x1e\xce\x7c\xa5\x36\xd5\xaa\x26\xe8\xae\x3a\x1b\x68\xc7\x59\xbf\x7e\xf7\x0d\xaa\xa7\xb5\x4e\x6c\x05\xd4\xb9\x81\xd9\x42\xef\x73\xea\xdb\xea\x1f\xa6\x61\xe7\xf1\x2d\x53\xf4\xd2\x6a\x5e\xf5\x93\x13\x5b\xb3\xa2\x1e\x58\xb1\x34\x2d\xac\x1f\xd2\x22\xad\xaf\xcb\x2c\xfe\xa7\xfd\x1d\x7e\xb7\xa4\xca\x96\x9b\xb7\x0c\x52\x55\x5b\x4e\x48\x6b\x49\x8b\x79\x9c\x62\xb4\xaf\x7c\x42\x5a\x32\x13\x81\xfd\x0a\x40\xc5\x87\x32\x6f\x07\x26\xa4\x75\x9e\xe5\xd8\xa8\x98\x90\xd6\x47\x7c\x96\x09\xf7\xdd\x13\xd2\xfa\x31\x2b\xcb\x6c\x89\xbf\x93\x09\x69\xbd\x61\x91\xfc\xfa\x59\x68\x6a\xf8\x53\xb5\x42\xe5\x6c\x2d\x3e\x00\x4c\xdd\xfc\xd2\xa0\x40\x93\x98\x72\x0b\x6f\xc0\xf9\x3f\x05\xf6\x9f\x11\x2e\x96\xfc\x43\x94\xac\xe5\x58\x70\x1c\xa2\x52\xfe\xd9\x29\x12\xb5\xf2\x35\x0c\x50\x28\xa0\x92\x4a\xed\x8e\xd0\x4d\x69\x50\x4e\x50\xd5\x16\x34\xdc\x1b\x0c\xba\x83\xc1\x80\x64\x39\xef\x73\x16\x60\x02\xe7\x8c\xec\x8d\xbd\x62\x44\x72\xce\xca\x17\x9c\x7f\xb0\xa9\xac\x60\xbb\x99\x56\x4d\x52\xc1\x33\xa1\xe2\xa6\x99\x50\xad\xf8\x22\x2b\xca\x85\x7c\x1b\x46\x75\x68\x43\x25\x74\xad\x37\xfe\x8e\xbe\x27\x29\x73\x21\xea\xd8\x32\x39\xc7\xc4\xbb\xce\x67\x37\xf4\x97\x7f\x78\x76\xeb\x78\xbb\xeb\x95\xf8\xf8\x03\xcf\x13\x48\x9a\x06\x08\xc1\x8f\x76\xcb\xca\xcf\x61\x55\x02\x47\x67\xf7\x92\xd3\xfa\x0a\xe6\x47\xad\x39\x40\x8c\x19\xd3\xf2\x42\x47\xf9\x21\x64\xe6\x7f\x1b\x5e\xda\x3e\xb0\xea\x49\xfc\xa9\xc5\xdb\x17\xd4\xdc\xe6\x59\x91\xcd\x2c\x2e\xbe\x98\x5d\x42\x76\xee\x96\x2d\x4c\x5c\xa5\x55\x57\xee\x90\x67\xa6\x65\x6f\x49\x73\x6b\x2a\xc3\xb8\xf0\xcf\x0f\x1a\xa3\xa7\xa2\xd5\x89\x16\x98\x17\xee\x07\x19\x01\x0e\x32\xf5\x2b\xf7\x21\x74\xd7\xfc\x9b\x4a\x1a\x88\x32\x13\x96\xc9\xb2\x80\x7f\xcf\xe0\xdf\x09\xfc\xfb\x33\xfc\x7b\x2d\xfe\x0d\x2b\x26\x87\x8a\x39\x54\xcc\xa1\x62\x0e\x15\x73\xa8\x98\x43\x45\xb5\xd0\xd5\x5f\x72\xb1\xe1\x0f\xb9\x80\xd5\x4f\xb5\x80\xd5\x6f\xb5\x62\xe5\xc2\x33\x7f\xfe\x03\xe0\x4b\x91\x61\xfe\x94\xb0\xed\xac\x26\xd6\x6f\x03\xdd\x4a\x8c\x62\xfd\xfc\x4f\xeb\xef\x7f\xb4\x2e\x6b\x0e\x56\x68\xb9\xfb\x39\xa5\xc5\x5a\xfa\xb9\xb6\xed\x13\x8f\xd6\x9e\x94\x13\xec\xa9\x9b\x8f\x46\x4c\xff\x51\xf5\x32\xcc\x6d\x52\xe7\xf5\x2d\xa7\xd9\x52\x93\x66\xbc\xaa\x21\x7d\x53\xd8\x18\x07\x03\x3a\xe3\x4d\xee\xe6\xd5\x53\x9c\xf7\x28\xfb\xd5\xe7\x1c\x63\xbb\xaa\x41\x2a\x77\x16\xcf\xe5\xbc\x4b\xe6\x59\x69\x05\x86\xa1\x33\x2e\x4e\xb3\xf6\xeb\x6c\x62\x27\xf3\xae\x6a\x52\x0e\x9d\x9e\x08\xa4\xeb\xee\xbf\xaa\x47\x41\xbb\x5d\xe7\x5f\x4f\x53\x41\xcc\x3f\x3b\xc8\xd6\x27\x93\xab\x52\xb6\x2e\xb6\x0e\x3e\xb0\xd3\x71\x21\xda\x15\x02\x76\xc0\x85\x34\x4a\xb2\x3b\xde\x93\x7e\x54\xe7\xf0\x0e\x57\x9a\x63\xd4\x0d\x0c\x2d\xd8\x84\x34\x46\xa3\x70\x68\xa4\xe6\xc5\xf3\xc9\xc2\xfe\xc8\x9f\x6d\x07\xa7\x86\x61\x8a\x8a\x5d\x08\x59\xa1\x2e\xf1\x68\x18\xca\x54\x54\x9c\x8b\xf9\x43\xac\x7a\x96\xcb\x92\x17\x3b\x67\x6b\x56\xb8\xa0\x33\x7e\xd9\xc4\x09\x8d\x4b\x4c\x3f\x85\xf3\x19\xc2\xae\xea\x43\xfb\x36\x86\x78\x78\x72\xaf\x1d\xf1\x70\x2d\x27\xdb\x9a\x63\x1b\x19\x9c\x6c\x3b\x06\x89\x98\xa1\xd6\x59\xe9\x04\x1f\x51\x8b\x8d\x4a\x53\x1e\xc6\x6d\x51\xa3\xed\xd5\x45\x2a\x72\x2f\x69\xcd\x82\xf0\x29\x63\x9b\x9e\x90\xd4\xee\x09\x76\xce\x4a\x3c\xf7\x96\xea\x7d\xa7\x40\x24\xaf\xb9\x5f\x92\xb3\xa2\x3f\xe1\x94\xf8\x31\x5e\xfc\x4b\x96\x4a\xa8\xa4\x99\xd8\xb3\xe0\x31\x2a\x9d\x71\xff\xb4\x0d\xc2\x58\x23\x82\xd6\x25\x8d\x16\x2c\x76\xf7\xc1\x90\xc4\xe4\xcf\xa7\x64\x50\x61\x09\x03\xa6\x89\xbf\xec\x8e\x36\x48\xf0\xdd\x06\x50\xfa\x1e\x70\xd7\x9a\x7b\x53\xb5\x53\x47\xeb\x4f\xd5\x0b\x87\xc0\xd6\x03\xbb\xf6\x80\x5d\x23\xaf\xab\x17\xda\xb3\x63\x62\x84\xd8\xa0\x1a\xce\xe9\xa6\xce\xda\xbb\x92\xb1\xbe\x5c\x62\x88\x92\x8d\x9c\xb1\xdd\xa5\x4b\x85\x08\x2a\x5f\x99\x7d\xd3\xa1\xf7\x60\xf7\xda\xa2\x86\x25\x0a\x1d\x80\xa6\x66\x43\xb7\x75\x34\xff\x96\x8a\x77\x3c\x8d\xcc\x52\xae\xe5\xc3\x78\xbc\xcf\x5c\x50\xbe\x80\x28\x08\x2b\xd4\xac\x41\x52\x9b\x95\x89\xb6\x2d\xd0\x2b\xd4\xfa\x45\xab\x06\x86\x0e\x82\x8b\x76\xc8\x5d\x3f\x3a\x82\x9b\x44\x6e\x3c\xef\xe1\x8e\x5a\x65\x7e\xbf\x13\x1a\x3c\x06\x29\xc0\x24\xe0\x70\xf3\x6d\x74\x75\x4b\xc7\xd3\x19\x50\x11\xe5\x53\xc8\x09\x5a\x35\x68\xa5\xab\x24\xa9\xcb\x0f\x1b\x78\xe7\x0c\xff\xe8\x81\x60\xad\x0b\xa0\xea\xa5\x18\xb6\xfa\x36\xde\xb5\x00\x5a\x22\x43\x5e\xc0\xd8\xc7\x07\x89\xfe\x77\xde\x7f\x4b\xbd\x59\x31\x3b\x1c\x73\x15\xfb\x01\x19\x24\x21\xbf\xeb\xfe\xc5\x9e\x84\xca\x6a\xca\x66\xbf\xda\xb7\x5e\xd9\xec\x57\x99\xe7\xb8\xe6\x94\xef\x5c\x25\x82\x09\x10\xd7\x88\xba\x1f\x51\x48\xba\x97\x22\x56\xf7\x35\x7e\x60\x72\xb7\xdb\x60\xef\xd5\x27\x4a\xfb\x3a\x32\xa0\xc1\x02\x1c\xce\x9c\xd7\x27\x96\x90\x28\xe6\xce\xa1\x11\xea\x5f\xd0\x62\x8e\x19\x66\xf5\x7e\x62\x1b\x0c\xac\x2a\x24\x4a\x01\x44\x53\x14\x23\x5d\xd5\x88\x07\xdb\xca\x59\x5d\xdb\xf5\xe6\x4e\x7c\xe2\xaf\x6e\x2b\xee\x68\x91\xbe\x4f\x03\xf6\x60\x0e\x54\x25\x2f\x2c\x7a\x48\x3a\x9e\xa5\x78\x23\xfc\x7b\xe4\x27\x55\xc7\x85\x7e\x9f\x3c\x4f\x0a\x46\xc3\xb5\xbd\xd7\xe8\xa3\xba\xdd\x73\x6f\xb9\x8a\x7d\x69\x6e\x7f\x97\x06\xef\x7e\x9f\x28\x7d\x84\xbc\x84\xa8\x05\x24\xa1\xeb\x6c\x55\x82\xaa\x28\x93\x89\x24\x6b\x32\xa3\x09\x4d\x03\x16\xf6\xc8\xdb\x8c\x97\x64\xc9\x28\x5f\x15\x32\xc8\x0e\x4d\x44\x33\xa1\xdd\xa5\xe4\x28\xcc\xc9\xbc\x88\x43\x99\x83\x3a\xec\x92\xbb\x45\x1c\x2c\xb0\x0e\x27\xb3\xac\x5c\x98\x23\x82\x8c\xa0\x22\xe4\x21\x4d\x12\xd9\xb1\x32\xcd\x7d\x5a\xd2\x24\x61\x90\x25\x51\x3a\x9f\x77\x09\x5f\x09\x50\x1c\x32\x01\x70\x6c\xaf\xa3\x28\x19\x2c\xc8\xbe\x44\x42\x81\xda\x10\xa2\x01\xfb\xf4\xc2\x33\x48\x44\x16\xe5\x32\xf9\xc3\x8a\xd3\x39\x53\xe1\x44\x9d\xad\xa3\x7e\xe3\x90\x14\xe7\xea\x85\xa4\x4d\xf3\xa9\x32\x52\x7b\xac\x62\x5f\xe0\x73\x97\xa1\x6c\x7f\x1e\xe5\x41\xe9\xf2\x53\x57\x94\x70\xc7\x65\x52\xd4\xec\x74\xc9\xd5\x0d\xe4\x83\x1c\x9c\xe0\x5f\x7f\x02\x08\xf8\xc3\x72\xa2\x24\xd0\xfe\xe2\x4a\x8a\x1a\xc3\x79\x57\x3a\x75\xb2\xf7\x4c\xf9\x5b\x0f\x44\x60\x19\x14\x6b\xd8\x79\x08\xd3\xd9\x10\x5e\xd4\x57\x92\xb3\x8c\x2c\x69\xba\x36\xc8\xe9\xa3\x50\x97\x30\x75\xf2\x54\x49\x5e\x06\xc0\x18\xfb\x95\x93\xa6\xe9\x7f\x43\x6c\x4e\x38\xba\x59\x98\x0a\x09\x35\xa8\x71\x20\x51\x4c\xd0\x1e\xd6\xbe\xe4\xf6\x41\xd4\xec\xae\x06\x04\xd0\x7f\x70\xd9\x24\xe1\x00\x96\xab\x6a\x28\x3a\x78\x44\x56\xe7\x78\x75\xf4\xae\xd5\xa7\x5d\xc8\x50\xb1\xce\x6e\xe1\x58\xb5\x1c\x5c\xb1\x67\x5f\x59\x53\xee\x28\xb2\x89\x9b\x3a\xdc\x3e\x40\x62\x0d\x34\x61\x63\xcc\x3e\x6d\x0a\x03\x14\x3a\xf2\x68\x42\x5a\x4a\xe1\x83\xc8\xc7\x34\xb8\xb9\xa3\x45\x08\xe2\x80\x96\xf1\x2c\x4e\xe0\xbd\x0b\x04\xe0\x5a\x66\xb7\x98\xa8\x79\xdc\x53\x2b\x55\x6a\x6b\x5e\x4e\x57\x9d\x9d\xba\xb5\x4a\xe3\xb2\xa5\x6d\x1b\x73\x56\x4e\x9c\x58\xc1\xed\xdf\xe5\x0e\xe0\x91\xda\x46\xc8\xd7\xaf\xf5\x2a\x02\xd0\xa9\x64\xbc\xdc\x7c\xd9\x72\xe1\xda\xcc\x9d\xf3\x62\x4f\x0c\x85\x80\x98\x12\xaa\x26\x99\x89\x35\xe0\xe4\x8a\x86\xd3\xe1\x5d\x9c\x24\x42\xb7\x44\x6a\x85\x92\x5c\xe2\xa3\x4a\x1a\x5d\xb0\x3c\xa1\x81\x7f\x1c\x45\xf0\x4f\xc8\xfa\x1a\x55\x51\xf7\x6b\x7b\xdd\xb9\x06\x20\x36\x20\x95\x7d\xfa\xba\xee\x9d\xd1\x2a\xde\xcd\x8a\x79\xdf\xde\x7a\xcb\x82\xb1\xfe\x12\x74\x5e\xeb\xb5\x90\xa9\xb0\x1b\x64\x21\x5b\x66\x61\xff\xe3\xab\xe7\x2f\xdf\xbe\xea\x2d\xc3\x3f\x00\x12\xbb\x12\x89\x5d\x9a\xc7\xd7\x64\x19\xcf\xa5\x1e\x8d\x86\x13\x0c\xec\x75\x83\xa8\x48\xe2\x13\xbe\xcc\xe0\xe1\x66\xed\x09\xb8\xb2\x06\x88\xd6\x03\x5c\xaf\xc4\xba\xbb\x88\xca\xde\xaa\xae\xb1\x11\xb6\xa2\xe6\x72\x15\xdb\xb0\xdc\xc6\x5e\x24\xa9\x7f\x4d\x2c\x28\xf0\xe4\x49\x92\xec\xae\xba\x2d\xce\xb3\x6c\x9e\x30\x9c\xa7\x0c\x5e\x69\x85\x2b\xa4\xe9\x2e\x83\xa7\xfa\xb8\x25\x7a\x85\xbb\x29\x2d\x57\x05\x4d\xd4\xcf\x60\x55\xdc\x32\x0e\x1d\x95\x19\x49\x18\xc5\xeb\x14\x08\x54\xc6\x3e\x97\x82\xf3\x50\x27\x60\x14\xfe\x05\xc7\x24\x73\x79\xb1\xe2\xa0\xd1\x58\xa9\x8a\x64\x15\x3b\x77\x5b\x0c\xe9\xbb\x4a\x95\x8d\x4d\xc6\x60\x94\x15\x01\x01\xd8\xfb\x19\xe5\xec\x2c\x7d\xbf\x2a\x27\xa4\x15\xac\x66\x71\xb0\x3b\x63\xff\x8c\x59\xd1\x86\x57\xdc\x98\xf9\xa9\x4b\x86\x26\xd9\xd8\x7b\xe9\x21\xc9\xd2\x12\x62\xe7\x31\xc2\x03\x08\x96\x4a\x85\xe6\x97\x24\xe4\x96\x25\x59\x10\xab\x6c\xfc\x59\x14\xed\xaa\x0a\x69\x28\x61\xf0\x24\xbb\x4b\xd6\x24\x64\x01\x4b\x30\xc0\x1a\x28\x25\x05\xe3\xa5\xc0\x0e\xce\x22\x1a\xbb\x5a\xdc\x06\x1b\x71\x4b\x18\xbd\x65\x9b\x70\xeb\x91\xf3\x05\x5b\x93\x30\x03\xe3\x8e\x85\xc7\xdd\x82\xa5\x16\xce\x16\x89\x9a\xe8\x33\x74\x30\x80\x1b\xc5\x05\x2d\x72\x24\xb1\x98\x82\x95\x8c\xfe\xa6\x5c\x4b\x65\x80\xba\xb5\xde\x16\x32\x0f\x53\xb1\x8d\x0b\x7e\x85\xce\x01\x58\xf3\xdc\xc0\x9b\x34\x6d\x2a\x6b\xe2\xda\x38\xeb\xcf\x57\x71\xc8\x92\x38\x15\x72\xe3\x1b\x18\x17\xd9\x66\x57\x15\x7b\x3c\x0b\xd4\x12\xb2\xec\x0e\x82\x48\xc6\xcb\x38\x9d\x5b\x16\x5e\x30\xf1\xc8\x96\x8a\x37\xc1\x8c\xc6\x78\x39\x21\xc3\xb1\x74\x70\x83\x92\x62\x42\x54\x7a\x14\x28\x98\x90\x91\xfc\xde\xef\x23\x07\xcf\x28\x8f\x03\x27\x8c\xb9\xea\x90\x10\xd0\x4b\x69\x11\x42\xc0\x6c\xd5\xaa\x54\x6b\x20\x53\x8b\x46\x2c\x2c\x0c\xb6\xf8\x99\xd0\x34\x5e\xaa\x31\x11\x55\x3a\x21\x7b\x87\x63\xd5\xde\xee\x0a\x46\xca\xb3\x25\x2b\x17\x82\x43\x63\xc9\xff\xb0\x2e\x61\xe2\x80\x51\x64\xd1\x27\x28\x99\x90\xd1\x68\x4b\x58\x82\x5f\x5d\x50\xb2\x44\x41\x1a\x1e\x8f\x2b\x39\x9b\x64\x18\x5f\xde\x5e\xc6\x49\x12\x63\x88\x50\xee\x5e\x5f\xd9\x4a\x85\x15\x8b\xce\x69\x20\xd4\x8c\x25\x97\x8e\xcc\x56\x24\xb8\x9c\x16\x74\x49\xbe\xa0\x6e\xf4\x15\xb4\xe6\x7b\xbc\x49\x70\xbe\x23\x57\xdf\x13\xf8\x59\xd3\x52\x7e\x81\xab\x00\xe7\x33\xaa\x3e\xea\xb3\x62\x93\x0d\x10\x90\x23\x37\xc1\x60\x09\x5d\xeb\x38\x71\x95\x63\xe9\x17\xb9\x96\xe1\xcc\x81\xff\xc5\x4c\x68\xb2\xeb\x89\xfe\x0b\x8a\xf1\xe0\x32\xf1\x4f\xb3\x6d\xc7\x51\x28\x97\xb7\x06\xbf\xc7\x09\xf6\xa2\x45\x93\xa4\x75\x69\xdd\xe1\x64\xb9\xb2\xea\xff\x1e\x91\xea\xbf\xdc\x9f\xd8\x57\x54\x57\x12\xfa\x0f\xd6\x0a\x95\x45\x3d\x87\x10\xf8\x8f\x2a\x7a\x9f\xcb\xba\x35\xed\x9d\xc0\x75\xb2\xb4\xa7\x96\x26\x99\x54\x9b\x58\xf0\xf5\x37\xbd\x95\x29\x64\xac\xa9\xc2\x7f\xb0\xa0\x8a\x88\x6a\x69\xa3\x21\x65\x9b\xde\xe5\x6c\x2c\x2a\x80\x0d\x7e\x82\x93\x6c\x7a\x88\xdf\x36\x31\xe4\x77\xbf\x81\x93\x74\xc5\x19\xb0\x07\xe0\xc1\x70\x62\xb2\x21\x44\x14\xd3\x6b\x03\x13\xac\xe0\x32\x80\xbf\x91\xe3\x4d\x48\xaf\xef\x4f\x8c\x11\x73\x7c\x0f\x67\x9f\xb3\x55\x99\x13\xd9\xb2\xee\x44\x73\x5b\x31\x4d\x18\x2d\xf0\xc4\x3d\x2f\xc5\xfc\x1d\xac\x59\xb7\x1f\x2c\x6b\xee\xe7\x51\xcc\xdf\xd1\x77\xed\x9c\x16\x9c\xbd\x4e\x32\xe5\xea\x6b\x1f\x52\xbd\x37\x36\x8f\x34\xf2\xf2\xce\xfb\xf1\x63\xf2\xa8\xea\xf8\xca\x37\x1d\xb1\xdd\x13\x85\x7a\x84\x87\x61\xf2\x73\x3e\xdd\xc1\x47\x22\x56\x24\x7b\x92\x15\xd2\x4f\xa1\x55\xeb\xe8\x26\x11\x93\xa3\x75\x57\x14\x62\xa8\xb1\xf6\x3e\x6e\x7f\x11\x60\xd0\x9c\x5a\x9c\x33\x75\xb0\x45\xb1\x89\x06\x2f\x89\xf9\x6c\x55\x92\x08\x02\xec\x9a\x1d\xc3\xc5\xa1\x6a\x83\xae\x8e\x4c\x22\x6f\x2f\xd0\xef\x22\xb0\xe2\xf1\x0a\x85\xb7\x23\xac\x58\x15\x3e\x3d\xa1\xec\x7b\x70\x91\x6b\x6c\x23\xf9\x36\xa0\x65\xdb\x44\x30\x4a\xae\x12\xe1\x8f\xbc\x7b\x93\x07\x26\xf6\xe7\x54\xe8\x10\xf3\x34\xfe\x27\x0b\xb5\x68\x6f\xf3\x8e\x90\x10\x6a\xc6\x6a\x3a\xd3\x51\x2e\xc4\xfc\x5d\x56\x26\x90\xd4\xdc\xa6\xd4\x38\x88\xf3\x0e\x79\x26\x37\x3b\xe9\x2c\xc3\x2f\x7d\xe3\x0e\x2a\x54\x2c\xfc\x60\x1b\x79\x6a\x55\x11\xbb\x26\x58\xca\x6d\x3b\x39\x8a\x14\x7f\xbb\xb1\x64\x8b\xb5\xb9\xc8\xaf\x13\xa3\x0b\x79\xeb\xc6\x87\x6e\x73\x66\x53\xcf\x5a\x94\xdb\x1d\x42\xa1\xdd\x0f\xf2\x93\x7f\x23\xd3\x55\x37\x32\x20\xeb\xe7\xac\x7c\xbe\x2a\x33\x8c\x25\xf7\x52\xab\x19\xf6\x2d\x4a\xf5\x7b\x1b\x43\xd3\xb9\x8f\x06\xbc\x32\x4d\xd5\x41\xad\xf1\x29\x83\x27\x28\x25\x39\x25\xd8\x8e\xf4\xc9\xde\xc1\x89\x7d\xcd\x0b\xd9\x7c\xb2\x24\x2a\xe8\x92\x26\xf9\x82\xc2\x81\x36\x16\x07\xf3\xfe\xb3\xf8\xb4\xbd\xff\xf4\x8f\xa3\x1f\x9f\x0e\xc7\x4f\x9f\x3c\x6d\x7f\x7e\xfa\xc7\xd1\xeb\xa7\x7b\x07\x4f\x3b\x4f\x9f\x3c\x79\x3a\xe8\x8d\xc6\xf0\x51\x97\x77\xe0\xbf\xe3\xce\xd3\x27\x4f\x87\x03\x8f\x93\x2c\x9d\xb3\xbd\x4f\x9e\x92\xe1\x98\x3c\xc1\xc2\x3c\xbb\x6b\x2b\x3c\x65\x5c\x37\xf2\xd4\x60\xde\x27\xe3\x0e\x79\x42\x86\x03\xeb\xf9\xc6\x4e\x77\xa7\xdf\x27\xbf\x30\xf3\xdc\x89\xa5\x65\x41\x13\x15\x95\xfc\x9f\x67\x69\xc8\x3e\x13\xd0\x7f\x62\x54\x9c\x28\x1c\x80\xd7\xe4\x2e\x2b\x6e\xe0\xe4\x02\x39\xa1\xe7\x49\x36\xa3\x89\xce\x71\x8d\x47\xef\x59\x91\xdd\x61\x20\x7e\x41\x42\x09\x4b\xb9\x33\x66\xb3\x38\x61\x9f\x4a\x96\x43\xde\xdb\xe1\x40\x1d\x54\x72\xc6\xc2\x97\x31\x4d\x44\x99\x3c\xad\xd0\x3c\xff\x91\x8a\x4a\x43\x59\x29\x2c\xe8\x1d\xb4\x52\xc7\x9b\x65\x16\x42\x0b\x75\x52\xe1\x29\x0d\x6e\x66\xd0\x46\xa5\x82\x2c\xb3\x2c\x29\xe3\x1c\xce\x48\x83\xda\x88\x04\x88\xa0\xed\x2f\xeb\xde\xe3\x6d\x71\x03\xe2\x36\xf8\x77\x0c\xb1\x2d\x1b\xa0\xe2\x6d\xbb\xe1\xea\x84\xf6\xfe\x97\x4a\xab\xb7\xf1\xe7\x38\xf5\x1b\x60\x61\xa5\xae\x4c\x72\xea\x55\x96\xa5\x95\xda\x26\xd2\xb4\xd7\xc0\x7c\xb0\xda\xa8\x90\x3d\xaa\xaa\xfc\xed\xd6\xb0\x3c\x93\xe1\x57\xa5\x4f\x65\x9e\x73\x3b\x94\xa5\x56\x6d\xb8\x8c\x96\x6b\x40\xd5\xb5\xca\xac\x9a\x92\xd1\x55\x25\xfc\xd9\xaa\x0b\x85\xa6\x93\xcf\x58\x76\xbc\x8d\x07\x94\x6f\x3e\x00\x7d\xb1\x63\x5a\x6a\xd5\x79\xe6\x3c\xb0\x50\x1a\xb9\x55\x6a\x9c\x51\x4d\x99\xb2\x2c\xd6\x43\x71\xf2\x5b\xde\xdb\x7a\x7a\x1d\x58\xfd\x71\x89\xbc\x64\x90\xc0\x02\x5d\x11\x7f\x56\xba\x56\xcd\x9a\x7b\xf5\xe0\xe8\x72\x95\x07\xc5\xf4\xa8\x62\x9a\xab\xaa\xf2\x77\xa5\x4f\xdd\xb2\xb9\x53\x1f\x94\x67\x93\x55\x3d\x2a\x7b\x40\x05\x39\x3b\x64\xba\xae\x5d\x13\x15\xdd\x14\x55\xb0\xf4\xa2\xae\x37\x20\x5a\x03\xf3\x9b\x8e\x4f\xd6\x9c\xe2\xa9\x09\xc9\x2d\xc3\x22\x23\x15\x64\x66\x4a\x1c\xab\xce\x4c\x29\xbb\xb5\x0e\x58\x56\x2a\x1c\x6d\xdb\xf4\x72\x23\xc3\x28\x8d\x67\x95\xcb\xbe\x15\x81\xd5\xf6\x99\xd6\xb4\x34\x96\x4f\xd7\x8e\x6e\x4f\x94\xa9\xbd\x94\xcb\xd3\xc9\xcd\x23\xd5\x05\xab\x8f\x09\xa9\xb2\xb8\x76\x78\x9e\x90\x56\x52\x16\x2a\xb1\x38\x92\x69\xe2\x08\x52\x1b\xdd\x2e\xd1\xb6\x22\x8b\xf3\xed\x70\x9d\x45\x1c\x32\x0e\x71\x6c\xa7\xca\x1f\xe7\x2c\x85\x1c\x6a\xc1\x8a\x97\xd9\x12\x7d\x4b\x38\x7e\xd4\x19\xad\x5c\xc6\x04\x5d\xd3\x85\xf1\x01\x0d\x9b\x7a\x2f\x54\x97\x52\x84\x28\x31\x3b\x51\x7f\xc8\x46\x66\x2e\x27\x5b\xe5\x09\x70\x46\xe2\xdb\xa9\xbb\xba\xab\x9c\x4d\xf0\x3f\xaa\x1b\x23\x62\x27\xf6\x0f\xf9\x19\x85\xeb\x44\xfe\x17\xd5\x44\x93\x39\x63\x9a\x7e\xb7\x21\x1b\x6e\x83\x9e\x61\xa3\x5d\x32\x24\x13\x08\x6e\x26\x6d\xdb\xc3\xcd\xb6\x6d\x6d\xd9\x16\x2d\x9b\xac\xdb\x52\xbd\xb4\x78\x0c\x2c\xae\xf5\xce\x6e\x15\xcb\x6b\xfd\xa3\x76\xd7\x4c\x7a\xdf\xd5\xd0\xbf\x3f\x3e\x39\xac\x4e\xce\x56\x61\xf6\x22\xa1\x1c\xdf\xa3\x5c\xb4\x82\x05\x0b\x6e\x18\xbc\x6e\x52\x09\xf7\xc5\xdf\x70\xc8\x12\x7f\x40\x02\x7d\x2c\x83\x3f\xff\x1e\xf3\x78\x96\x30\xf1\x5b\x05\x05\x87\xfa\x9f\x73\x9a\x86\xf8\x37\x67\x09\x18\xd4\x5b\x97\xce\x95\x5a\x59\xd0\x5b\x56\xc0\xd3\x41\x4d\x13\x55\xd6\x4e\xb3\x90\x75\x49\x4e\x0b\x96\x96\x7f\x73\xde\xed\xe1\x73\xed\xbc\x5c\xfc\x4e\x39\x23\x87\x27\x36\xe4\x1b\xb6\x06\xd5\x9f\xf1\x24\x4e\xcb\x5d\x49\x82\xdd\x94\x7d\x2e\x21\x14\x36\x99\xaf\x68\x11\xee\x46\x59\xb1\x1b\xa7\x5d\x92\x66\xbb\x05\x13\x07\x1f\x31\xbe\x5d\xbe\x4e\x4b\xfa\xd9\x9c\x68\x81\x41\x05\xb3\xc4\x29\x11\x03\x72\x8e\xaf\x70\xf6\x58\xc4\x90\x34\x40\x7c\xbc\x90\xfc\x33\x75\x2c\xbe\x72\xa4\x9e\xc5\x5f\x7d\xbd\x61\x6b\xed\x7a\xd7\x7a\xbb\x8a\x5b\xe8\x7b\x07\xba\x04\xc0\xf6\xda\x10\x43\x60\xf8\x0c\xde\x61\x5d\x49\xce\xa7\x64\x68\x9b\x2d\x2d\x47\x69\x27\xbf\xbe\xc3\x32\xba\x77\xf0\x32\x7b\x04\x7e\x7f\xa2\x73\xfb\x68\x8d\x88\x58\x9a\x4e\xcd\x40\xbe\xdd\x1c\x5e\xbd\x01\xa8\xf5\x84\x36\xc7\x68\xcd\x4b\x98\xce\x4d\x7b\x01\x91\x38\x15\x42\x4e\xf0\xff\x74\x47\x1c\xab\xa6\x3b\xe2\x84\xf3\xe2\xd3\x27\x71\x62\x09\xe2\x28\x06\xf3\x9c\xcc\x88\x68\x01\xbc\x51\xa0\x20\x4d\x58\x4a\x13\x78\xd8\xcf\xa4\xff\xb4\xb2\x5d\xa7\x59\xa9\xa5\x3b\x89\x4b\x3c\x53\x95\x8b\x98\x4f\x48\xab\x92\x43\x10\xb9\x3e\x5d\x25\x09\x86\x34\x04\x2b\xf8\x19\xe6\x6c\x74\xfd\xde\x95\x49\xfc\x87\x62\x95\xb0\x77\x74\xc9\x08\x32\xdf\xa4\x0a\xd4\x23\x1a\x21\x45\x96\x95\x13\xff\x08\x04\xef\x36\xa7\x3b\x8f\x7f\x70\x06\xd8\xe9\x4a\x3e\x72\x61\xdc\x57\x90\xf4\x8d\x68\xbb\xab\x18\x4e\xc9\x45\x1f\xf9\x65\x37\x40\x86\xd9\x05\xcb\x5a\xb3\xb1\x5c\xba\x90\x7d\x44\x17\x0c\xb0\xf4\xc1\xeb\x7d\x4c\x4c\x76\x2b\xe6\x4b\x1e\x48\x83\x2c\x8d\x92\x38\x28\xb9\x76\xd1\x50\xff\xe8\xd5\x64\x7c\x08\x3d\x86\x56\x57\x39\x7a\xb9\xe9\x65\xa1\xc4\x6a\x4f\xef\xc8\x75\xce\xec\xaa\x56\xc3\x1b\x4d\xf7\x08\x60\x1f\x3b\x0b\x36\xc7\x24\x59\x59\xf1\x11\xcf\x83\x0d\xa7\x44\xab\xa2\x32\xb2\x9f\x81\xcf\xba\x5c\x0c\x5d\x72\xc7\x48\xc1\xe6\x31\x2f\x19\xdc\xac\xb1\xe2\x36\x0e\x18\x9c\xdd\xd1\x55\x41\x94\x30\x22\x88\xae\x8e\x80\x49\x16\x08\xba\xd1\x60\x21\x03\x70\x80\xd9\x3b\x61\x25\x1a\xbe\x69\x9e\x93\x24\xa3\xa1\xf4\x16\x26\x59\x4a\xf8\x6a\xc6\xd9\x7f\xaf\x04\xd5\x6f\x63\x1e\x97\x70\xfe\xb7\x91\xa0\x69\x48\xe6\xb1\xb2\xce\xc7\x25\xc9\xa2\x08\xc4\x64\x40\x73\x0a\x2e\x35\x31\xc3\x09\xea\x3f\x71\x45\xaa\x10\x9d\x72\xfd\x3e\xe9\x5b\xa7\x5d\x35\xa6\x1f\x59\x94\x15\x0c\xc2\x83\x24\xc9\x87\x22\x5b\xe6\xa5\x79\x4f\xda\xeb\xe7\x77\xd4\x79\x7c\x9a\xb2\xbb\x17\x59\x5a\xb2\xb4\xec\x12\xf0\x67\x7c\x9d\x15\xef\x11\x97\x9f\x39\xeb\x4a\xb0\x78\x67\x04\x81\x91\xdc\xa2\x4f\x32\xc1\x3e\x89\xb9\x6c\xf5\x36\x0b\x99\xf5\x80\x55\x26\xdd\x53\xee\x9c\x31\x7f\x23\x88\xb9\xc8\x20\x39\xf6\x8f\x59\x96\x30\x9a\xb6\xef\xe2\x34\xcc\xee\x7a\x82\xce\x60\xcc\x11\x9f\x53\xb1\x36\xe1\x7e\x2c\x51\x2d\x5a\x10\x96\xae\x4f\x2e\x26\x93\xe1\xa5\x72\x3b\x38\xfb\x70\x7b\x40\x74\x15\x42\xc3\xb0\x10\x02\x71\x9a\x6e\x06\x0a\x30\x14\xc0\xe1\xe8\xb0\x37\xe8\x0d\x7a\xc3\xfe\x91\x00\x2b\xc8\x1b\x87\xac\x60\xa1\x05\x58\xec\x49\x67\x1f\x6e\xf7\x37\x40\xee\x2d\x69\x19\x2c\xda\xfd\xff\x1a\x8e\x0e\xdb\xcf\x26\xd3\x69\xaf\xfd\x6c\x32\x1a\x5f\x0c\x76\xc7\x97\x5f\x47\x17\x83\xdd\xfd\xcb\x8b\xc1\xee\xf1\xe5\xd7\x8b\xc1\xf0\xf2\x19\xfc\x09\xff\x7a\xd6\xe9\x7c\xd9\xbb\xff\xa1\xdf\xe9\xe8\x50\x30\x26\xfd\x84\x3a\xfc\x2a\x01\x36\x63\x4e\x5e\x5c\x93\xdf\x2f\x59\x1b\xbe\x2e\x17\x0c\x18\xcb\xe5\xee\x1e\xf9\x99\xb3\x68\xa5\xef\xa4\x82\x4c\x2d\xa3\xda\x6d\x44\xf0\xa8\xf5\x01\x00\xda\x15\x3f\xfc\xfc\xe3\x9b\xb3\x17\x57\x3f\x7f\x7c\xa3\xa3\xcb\xc8\x85\xfc\x5e\x1f\xd8\xd1\x1a\x9a\xde\x4e\x8c\x26\x81\x6f\x70\x57\xb3\x24\x0e\x7e\x2e\x12\xeb\x43\xed\x0d\x94\xc9\x7e\x26\xc7\xd6\xe6\x65\x56\xb0\x6d\x6f\x07\xbe\xd9\x7c\xe9\x8e\xc0\x7b\x67\x2e\xce\x04\xcb\x98\xdb\xba\x68\xc1\x78\x96\xdc\x32\xe7\x1e\x55\x9b\x14\xd3\x5b\xd7\xb1\x5a\xb0\x9b\x3e\x63\x2b\x0a\x34\xfa\x5e\xfb\x19\x95\x5b\xf2\xa1\x91\x2f\xb3\xe2\xf4\x56\x72\x62\x57\x3f\xe7\x12\x5d\xc3\xfc\xe9\x5e\x64\xbf\xf5\xf9\x6e\x1e\x29\xac\xd2\xec\xcc\x96\x1c\xce\x55\x70\xa3\x7c\x91\x53\x52\x07\xb8\x25\x71\xfd\x05\x50\x6d\x81\x42\x47\x6f\xe3\x39\x2d\xad\x84\xe9\xda\xa5\xe5\xe7\x8f\x6f\x88\x1d\x8f\x2b\xe6\x84\xde\xd2\x38\x91\x21\xd6\x08\x4d\x12\x75\x83\x2a\x1d\x5c\xe4\xb3\x3a\xf2\xe9\x97\x9e\xad\x8d\x5a\xc4\x05\x02\xfe\xfc\xf1\x4d\xbb\x42\xf8\x2e\xf1\x16\xb2\x1f\x41\x4f\xd7\xec\x65\x45\x3c\x97\xa9\xaf\xfd\xc5\x8f\x9f\x1c\x15\xab\xdf\x27\xef\x57\x85\x3f\x4d\x77\x99\x7c\x1c\x72\x23\x80\x9b\xc5\x23\x46\x99\xa5\x84\x92\x30\x8e\x22\x26\x74\x2d\x82\x30\x1d\x80\xb0\x4c\xc1\xff\x25\x5b\x15\x24\xa7\x73\x70\xfa\x81\xbd\x2a\x24\xf2\x91\xb8\xab\xdc\xdd\xd1\x22\x6d\xb7\x60\xab\xba\x63\x33\xd8\xa5\x16\x94\x57\xb6\x3c\x7c\xdc\x12\x43\x6a\x52\x75\x70\x91\x37\xda\x12\x0f\xfc\x22\x71\xb3\x6d\x50\x82\x29\x80\xfb\xdb\x76\x1c\x0d\xa2\xcf\x62\x75\xc6\x2a\x49\x3e\x1a\x86\xaf\x84\x52\xf2\x46\xf0\x54\xca\x8a\x76\x4b\xec\xa0\xad\x6e\xdd\x73\x37\x35\xa9\xfc\x0e\x27\xd4\xf1\x61\xad\x4e\xea\x74\xa7\x2f\x47\xb8\x2b\xc5\xde\xaf\xd2\xef\xc4\x3d\x21\x58\x5b\x91\xa7\x20\x5b\x8e\x6d\xc5\x2a\x4d\x41\x0a\xa7\x66\x2b\xe8\x91\x37\x62\xeb\x87\x03\x9f\x80\x54\x51\x22\x78\x19\x27\x09\x61\x9f\x63\x5e\x42\xb6\xd9\x34\x2b\x7b\x36\x7c\x45\x35\x80\xf0\x77\xb1\xa4\x3f\xd9\xab\xa4\x0d\x03\xed\x12\x5c\x55\xb8\x27\x3c\x0f\x43\xf0\xe5\x11\xfb\x1b\x9c\xf6\x69\x42\x92\x6c\x3e\x17\xb8\x95\x99\xc1\xad\xeb\x69\x74\x6a\xad\xf5\x9c\x75\xd8\x83\x9d\xbe\x57\x2e\x58\xda\x6e\x20\xb8\xcd\x49\x71\x1a\x65\x1e\x27\xc5\x9c\xcc\x18\xf8\x12\x21\x07\x82\x72\xb4\x2b\x43\x90\xad\x2b\x24\x71\xb9\x46\xfb\x62\x2a\xc5\xd5\x0d\x44\x20\xa7\xe0\x0c\x43\x22\xa0\xf2\x85\x74\xff\x8f\x15\x2f\xcd\x26\xe7\x76\x51\x47\x60\x55\x15\x69\xfc\x8b\x4f\xd8\x3a\x05\xb7\x53\x71\x19\x75\xdf\xb8\x6d\x04\xe9\x78\x45\x35\xd3\x5e\x6d\x64\xa2\x69\xc7\x9b\x85\xab\x80\x26\x09\x53\xa8\xa3\x92\x55\xc9\x8b\x55\xd5\x86\x7b\x94\xaf\xd3\xa0\x02\xe6\x87\xf6\x95\x74\xf6\xb4\x26\xf7\x6e\x11\x27\x8c\xb4\xdd\x73\x31\xbf\x8b\x21\x06\xa8\xaa\xdf\x13\xa7\x06\x72\x4a\xf4\xef\xd4\x05\x02\xfc\x41\x39\x23\x83\x89\xcb\x34\x36\xe2\xbd\x2c\x5d\xe5\x21\x2d\x19\xda\xfc\x4f\x9b\x56\xb7\x59\xe3\x72\x5f\x89\xd3\x39\x52\x0b\x9e\x5c\x59\x00\xcd\xf7\x13\x97\xd3\xf5\xaa\xae\x00\x38\x55\x41\x47\x2b\x1d\x56\xe4\x94\xc5\x0e\x15\xd8\x1e\xdc\x1e\xd8\x10\x4b\x16\x2c\x68\x3a\x67\x0f\x0d\xad\x1e\xb7\x1e\x40\x40\x7d\x54\x7e\x63\x61\xf5\xb4\x6e\x00\x34\xb1\x14\x64\x1e\xce\x92\x84\x15\x0d\x8d\xf1\xc1\x92\x8c\x24\x08\xf7\xaa\x5d\x4c\x4c\x0d\xb3\x23\xd4\x3c\x06\x2b\x38\x44\xdf\xe0\xb4\x34\x0e\xec\x11\x2b\xc5\x87\x6e\x23\x58\xb1\x7d\xa0\x67\x37\xbb\x8d\xb3\x15\xaf\xec\x7b\x42\x18\xa2\x48\xc4\xa3\x15\xec\x2c\x49\xe8\x2e\x59\x07\xa4\x42\x42\xf0\x76\x02\xbb\x7e\x90\xc4\x10\xc2\x80\xce\xf0\x39\x54\x90\x64\x5c\x6c\x7c\x05\xa1\x91\x90\x05\x31\x60\xdc\x08\x50\x27\xb6\x26\xfc\x26\xce\x7f\xa1\x71\x19\xa7\xf3\x5e\x7d\xf5\xca\x2c\xe5\x19\x2f\xdf\x62\x9a\xf0\xea\x9d\x80\xfa\x07\x73\xc4\xb7\x3e\xfd\xed\xec\xc3\xd5\x2f\xcf\xcf\xce\xcf\xde\xfd\xd4\xaa\xaf\x7b\xdf\xa9\xf0\x1b\xfe\xa3\xc4\x6d\xc8\x66\xab\x79\xbb\xf5\x8e\xdd\x69\x42\xd8\x8a\xd0\x09\xc9\x13\x26\x56\x5e\xc1\xa2\x82\xf1\x85\x2f\x5b\xcd\x3f\x20\x94\x7a\x61\xcc\x73\x38\x97\x98\xa3\x5e\xbb\x53\xdf\xa4\x4e\x12\x3b\x74\xf4\x58\x88\xdd\xb2\x62\x8d\xee\xa5\x9a\x5f\x34\x2b\x35\x90\x57\x85\xbb\x01\x96\x61\x45\xc4\x02\x70\xe9\x85\x9b\x0a\x81\x6a\x42\xd7\x84\x36\x36\x9d\xee\xbc\x30\x24\x91\x2c\x2b\x4e\x66\xea\xf8\xbc\xe2\xac\x37\xdd\x51\x59\xdd\x1b\x50\xf0\x08\xfd\x30\xc4\x6d\x29\x5c\x3d\x40\x37\x52\xba\x5a\x58\x29\xba\xf7\x5a\xde\x57\x44\x9e\x23\x9c\xc9\x29\xd9\x3b\xf1\x65\x71\xf3\x7e\x71\x57\xd0\xbc\x5d\xc1\xbf\x72\xb2\x77\x37\xa2\x4e\xc7\xc3\x01\xb6\x80\xbd\xca\x16\x80\xdd\x2a\xec\xe8\xac\x58\xe5\x65\xdb\x44\x7c\x76\xef\x10\x6a\x61\xee\x4f\x2a\x45\xd3\x1d\x96\x86\xd3\x9d\x07\x3a\xe3\x65\x96\xb7\x9b\xc2\x56\x10\xb3\xfe\xee\x3b\x17\xd3\x1d\x08\x7c\x3d\xdd\xb9\xb4\xb4\x20\xb8\x13\x6d\x88\x19\xd1\x82\x83\x18\x09\x57\x85\x52\x7d\x2c\x39\x67\x0f\x69\xd2\xea\x12\x04\x24\x11\xd9\x40\x68\x3c\xdc\x61\x6d\x85\x5a\x45\xed\xd8\x4a\x55\xd4\xcf\x32\x5e\x28\xd5\x14\xee\x01\x5d\x34\x03\x9a\xc2\xcb\x76\xb1\x23\xf7\xc8\x59\x24\x44\x27\x46\x5e\x2d\x18\xdc\x62\xc1\xc2\x54\x8b\x47\xbd\x21\x16\x9b\x40\xbd\xc2\xd2\x96\x4f\xa2\x99\xfd\xe2\xfe\x55\xca\x57\x45\xa5\x6b\xd4\x88\xbb\xf2\xb9\x29\x2d\xf1\x2a\x0e\x5e\xb5\x0a\x99\x3e\x67\x65\x89\x0f\xf5\xff\xe3\x13\x89\xe2\x44\x2d\x5f\xe9\x6c\x24\xd6\x28\x84\x55\xd3\xaf\xb0\x59\x6f\xc1\x68\xc8\x0a\xde\x9b\xb3\xb2\xdd\x92\x75\x20\xe6\x6e\xcb\xf5\x55\xd5\x0d\xc4\x8e\xbb\x42\x2b\xf9\xfe\x60\x5f\x9c\xc7\x6d\xc8\x8f\x54\xde\x8c\xc7\x8f\xed\x72\x63\x2a\xf8\xf5\xff\x61\xef\x5d\xb4\xda\x48\x92\x45\xd1\x5f\x49\xd3\x7b\x5b\x92\x5d\x94\x00\xb7\xfb\x01\x4d\x7b\x68\x8c\xdd\xac\xb1\xc1\x17\xf0\xf4\x9e\x2d\xb1\x20\xa5\x4a\x49\x65\x4a\x95\x9a\xca\x12\x58\x63\xb3\xd6\xf9\x90\x7b\x7f\xee\x7c\xc9\x5d\x19\x91\xef\xaa\x12\xc2\xed\xee\x3d\x67\x0e\x7d\xce\x6c\xa3\xac\xcc\xc8\x57\x64\x64\x44\x64\x3c\xe8\x35\x15\xc3\x22\x9d\x95\xad\x1a\x6f\x7d\x0c\x93\x1c\x4c\x5a\x2d\xf4\xbb\x82\x0f\xe8\x40\xce\xd4\x91\xf3\xe8\x6c\x16\x93\x93\x9a\x65\x27\xf7\xe5\xdd\x6b\xd9\x45\x12\xb2\x63\xf3\xdc\x30\x9f\x95\x6d\x0c\x38\x87\x50\xcc\x45\xe4\xf0\x0f\x96\x63\xe2\xd7\x69\x08\x2a\xd6\xed\x92\xd3\xa6\xf5\x18\x32\x94\x34\x73\x5e\x4c\x69\x16\x5b\x45\x03\xa0\xdc\x52\x46\xdb\x67\xd2\xeb\x0f\x72\xe5\x0c\xeb\x7b\x95\xab\x87\x07\x56\xca\x4f\x39\xd3\x7e\x0e\x30\xae\x3d\x14\x6e\xb4\xdc\x97\xe6\xe6\x22\x98\xf2\xc4\xb9\x09\x82\x03\xed\xa9\x3f\xdb\x95\x73\x1c\x06\xae\x72\x37\xc2\x13\x1a\x56\x60\xed\x6d\x5b\xcb\xdd\xdb\x60\x70\x35\xcc\x7d\xc8\xda\x6f\x85\xbc\xfd\x56\x95\xb9\xaf\x61\xed\xd1\x79\x78\xa9\x42\xa7\xc2\x7d\xfa\x3d\x90\x5d\xb2\x15\xdc\x50\x6e\x32\x02\x43\xa5\x7d\x51\xce\x23\xef\x5b\x75\x97\xc9\xd7\x39\x29\x4b\x4f\x4b\x20\xbd\xfa\x57\x16\x2c\xd6\xd6\x76\x50\x50\x77\x5d\x55\x66\x13\xdc\x56\xb7\x15\xe1\x53\xe5\x12\xba\xe2\x33\x9a\xf3\x5f\x30\xd0\x06\x0c\xfa\xf9\xc6\x36\x69\x7d\xc3\x9e\x8f\xbe\x1f\x25\x68\x4b\xb1\xb9\x01\x45\xc3\xe1\x68\x63\x34\xc4\xa2\x2d\x2c\xfa\xf1\x47\xb6\x39\xfa\x11\x8b\x9e\x61\xd1\x77\xdf\x25\x9b\xa3\xef\xb0\xe8\x5b\x2c\x7a\xf6\x6c\xb8\x35\x7a\x86\x45\xcf\xb1\x68\x63\x63\xf0\x6c\xb4\x81\x45\xdf\x61\xd1\xe6\xb7\xf4\x47\xf6\x3d\x16\x7d\xaf\x8a\xd8\x8f\x3f\x24\xaa\xe8\x07\x55\xf4\xc3\x0f\xc3\xe1\x0f\x58\xf4\xa3\x82\x95\x7c\xff\xed\x40\xf5\xb8\xa7\xc6\xfa\xe3\x77\xec\x87\xd1\x48\x95\xa9\xc1\x7e\x97\x24\xd4\x94\xa9\xa1\x3d\xff\x6e\x38\x30\x65\xaa\xd7\x6f\x7f\xa0\xc3\xd1\x46\xab\x56\x6b\x6c\x97\x6b\xa7\x1a\x82\x42\xbf\x2f\xd5\x9b\x05\x0e\x79\xc1\xba\x68\x31\xe2\x3c\x94\x0c\xb2\x39\x7b\x5d\xb0\x45\x63\x8b\x21\xcf\x78\x21\xba\xba\x9e\xd3\xd4\xd9\x3a\xf3\x0a\xa3\x6a\xdb\x4f\x2d\x37\x90\x68\x72\x57\x2f\x05\x4b\x6c\x34\xcf\x74\x4a\x8b\xc5\xbe\xfc\x40\x76\xdd\x89\xab\x80\x82\xe0\x7f\xe5\xd4\xd0\x23\x54\xdf\x81\xef\xd0\xdf\x0a\x96\xa0\xb6\x29\xcb\x30\xa4\xbc\x79\x85\xb8\x62\x0b\x14\xbc\x50\xe1\x06\xe4\x1a\xcd\x64\xcb\x62\x01\x2a\xc9\x01\x13\x25\xbe\x36\xa2\xd9\x0c\x25\x63\xb9\xda\x66\x4b\x74\xfc\x7a\xec\x56\x87\x04\x0a\x8c\xfe\x00\xb3\x8d\x89\x8e\x3a\x9c\x6a\x8a\xdb\xde\x5c\xb5\x79\x8c\x9e\xde\x76\x30\x53\xf5\x1d\xa6\xb7\xed\xcc\xd2\xda\xf7\xbc\x57\x0e\x93\x97\x63\x56\x4a\x11\xa0\xa0\xa2\x3c\x83\xc4\x2b\x97\xe8\xb1\xfc\x31\x9d\x6a\xa3\xdf\xa1\xfa\x6e\x42\x1b\x80\x2d\x2f\x1d\x5e\x8d\xc1\xec\x58\xfb\x9c\x2a\x7f\x40\x46\x80\x13\x35\x25\x47\xc7\x67\x07\xed\x8c\xe7\x63\x91\x31\x36\xeb\x6c\x93\xbf\x5a\x94\x00\xc7\x41\x4e\x32\x30\xa0\x46\xc6\x68\x8e\x8f\x3d\x82\x6c\xc5\xdf\x9a\x9e\xcf\x26\x52\xd6\x53\x09\x70\xb1\x1f\xe5\x55\x0d\x9c\x96\xec\x54\xaf\xf4\xf3\x8d\x0d\x02\x88\x02\x1a\x62\x10\xbc\xe7\xf0\x28\x70\x33\x49\x4b\x35\x36\xa2\x1c\xd1\x0d\x34\x31\xe1\x37\xe0\x64\x9d\xe6\x63\x78\xad\x4c\xd8\x35\xcb\xf8\x0c\xdc\x13\xe4\xd5\x87\x1c\x9b\xb7\x18\x7a\xec\xfc\x46\x5e\xe3\xbf\x3d\xdb\x37\xd0\x8c\x1f\x22\xca\x79\xa5\x1e\xbc\x7a\xc0\x7a\x26\x05\xf7\xa9\xbc\x40\x51\xd1\x3a\xa4\x79\xce\xc1\xed\x01\x8c\x7c\xb5\xe8\x58\x99\xfb\xb6\x5c\x92\x60\x07\x4b\x4e\xc4\x24\x1d\x95\x84\xe2\xa4\x5b\x82\x64\xf3\x69\x9a\x43\x72\x84\xc1\x42\xf2\x58\x05\xff\x08\x9e\x00\xd9\xc2\x2e\xde\x0d\xc7\x38\xf0\x4c\x80\x37\x7d\x9a\x93\xb4\x94\xd3\xc9\x69\xa6\x11\xd0\x6e\xe0\x41\x3c\x8e\x23\xd5\x0d\x1c\xcd\x13\x96\xc0\x32\x97\x1c\xfe\x7c\xb6\xb1\x21\x67\x24\xff\xfc\x7e\x63\x43\xb5\x03\x58\xc7\xa3\x91\x60\xe5\x36\xd9\x88\xb7\xfa\xc6\x60\xdf\xb5\x13\x53\x38\x3e\x17\xec\x88\x7d\x2c\x75\xf2\xf5\x6d\x70\x4c\x0f\x32\x63\xdb\x87\x21\xf6\xb1\x3c\xd3\x81\x20\xb6\x89\x4a\xce\xa9\xbf\xda\x9c\xce\xad\xcd\x82\x4d\x5b\xee\x95\xa2\x22\x8d\x06\xd4\xb2\xd4\xaf\xed\xaa\xfc\x93\xf9\x42\x05\xd1\x34\x48\x62\xeb\xbb\x34\xbf\x3a\x61\xc9\x7f\xb3\x82\x1f\x49\x96\xc8\x3e\xf3\x2e\xa9\xd5\xf2\x6d\xb2\x0d\x60\x24\x55\x90\x4d\xfa\xc2\x81\xe4\x14\xb7\x76\x3c\x1f\x5f\xe7\x8b\xa1\x74\xd8\xdc\xaf\xa7\xfa\xd0\x36\x64\x4e\xc5\xea\xd4\xdd\xba\xde\x55\x71\x71\x41\x85\x48\xc7\x79\x44\x2e\x2e\xc4\x4c\x72\x12\x60\x08\x67\x62\x33\xf7\xd7\x4a\x91\xa5\x03\xdf\xe2\xfc\x30\x2f\x33\xa5\x29\x7a\x05\x2e\x1c\x66\x5e\x69\x5e\x66\xeb\x4a\x2b\x81\xde\x1d\xce\xb2\x3c\x81\x75\xf6\xa2\x36\x8f\xa8\x28\xd7\x9d\xc0\xcd\xa6\x8b\xf7\x36\xb1\x17\x76\x51\xb2\x02\xa5\x52\xbb\x84\x68\x73\x56\x13\x2f\xd5\x89\x41\xa5\x43\x70\x01\x4d\xc8\x52\x51\x46\x7a\x2d\x84\xf7\x96\xa9\x0b\x1d\xd3\xd9\x8e\xdd\x47\x81\x96\x22\x9a\x6f\x51\xec\x8d\x81\x59\x35\xdd\xc3\x11\xb0\x44\x32\x6d\x53\x56\x89\xd3\x01\xef\xf3\x68\x2a\x31\x13\x15\xee\x4c\x37\xee\xc9\x6a\xe7\x26\xe2\x18\xfc\xaa\x13\xf8\x89\x35\xbe\xd2\x80\x2b\x73\x6c\x84\xad\x6b\x2e\x03\xaf\xa5\x63\xd5\x36\x8c\x91\x77\xeb\x3d\x8a\xc3\x2e\xfd\x0a\xa1\xd0\x3c\xbf\xc4\x40\xe3\xf0\x65\x56\x5d\xbe\x9e\xc2\x53\x3d\xf8\x49\x49\xe4\x80\x5e\x1e\xbc\xda\x7b\xff\xe6\xec\xe2\xf0\xe8\xec\xcd\xc5\xfe\xf1\xd1\xab\xc3\xd7\x9a\xab\x24\xca\xf7\xc8\xb5\x85\x55\x68\xeb\x16\x49\xb9\xe4\xbf\x21\x41\x90\xff\xac\x4f\xf4\x64\xe1\x69\x4d\x92\x20\x96\xb7\xfc\x2f\xaf\x2a\xf0\x95\x0a\x64\xbb\x6e\xa1\xa2\xfa\x8c\x2a\xc8\x36\xc8\xe3\xb6\x4f\x87\x13\x56\x09\x8d\xe9\xac\x4c\x42\x4b\x76\x96\x4e\x99\xd3\xa1\xfc\x0f\xbd\xeb\x82\x42\x35\xd3\xa0\xb4\x60\x19\x2d\xd3\xeb\x3a\x28\xb3\x6c\x5e\xd0\xec\x64\x9e\x79\xab\x23\xff\x93\xe8\x1f\x14\x29\xed\xe6\x11\x9d\x7a\xb5\x55\x1c\xc5\x60\x6e\xaf\xa8\x28\xdf\xe2\xf9\xc7\x29\xba\x2a\x9e\xba\x79\x56\x1c\xc9\xab\xef\x10\xd5\x46\xfa\xbf\x09\x15\x6e\x4b\x3f\xe1\x83\xff\x9f\x02\xa2\xac\x33\x61\x54\x35\x1a\xce\xdb\x9a\xf7\x02\x3f\xb6\xcf\x2a\x9d\x00\xf4\x9e\x13\xfd\xea\xae\x2e\x44\xa5\x8b\x88\x54\xdd\x7d\xbd\x16\xa6\x0b\xb2\x8b\x55\x57\xe8\xca\xb3\x8d\xf3\xb7\xb1\xdb\x25\x7f\x29\xc5\x7a\x3a\xce\x79\xc1\xdc\xd8\x10\x09\xa3\x19\x06\xee\x29\x78\x96\xcd\x67\x2d\x61\x2e\x21\xe3\x9a\xc3\x72\x9a\xa7\x63\x9a\x0b\x24\x1c\x17\xea\x02\x90\x78\x6e\xa3\xc8\xc7\xba\xd9\xe7\xcf\xba\x48\xf1\xf2\x7e\x75\xb7\xf5\x8e\x8d\xb8\xb0\x0f\x78\x42\xe4\x85\xa4\xce\x7a\xc9\x0a\x0c\xe1\x36\xe3\xb3\x79\x26\x3f\x82\x1a\xdc\x0d\x81\x80\x91\x05\xd9\xc7\x59\x96\x0e\x41\x5f\x28\x7f\x3a\xa6\x85\x19\xa3\x57\x92\xc3\x94\x5d\x16\x3a\x38\x42\xfd\xa1\x35\xb7\x96\xc0\xf8\x83\xd5\x88\x84\xc1\x55\xa3\xa3\x1a\x56\xce\xbc\xb9\x76\xe4\xdc\x4f\x9c\x43\xaa\xee\xde\x5d\xb8\x8f\xe3\xea\x17\x27\xf6\xc1\x9b\x54\x94\x7e\x75\x5b\xe2\x54\x7b\xe9\x1c\x5d\x5d\xd1\x2d\x73\xaa\x8e\x59\xf9\x52\x91\x1c\x03\xd8\xd9\x89\x26\x8d\x1b\xe6\xa1\xdc\xf1\x0b\x94\x19\x7e\xcf\x45\x7f\x3f\xab\xe4\xc6\x8e\xfc\xf7\xa7\x8a\xe9\x93\x2c\xf6\x42\xcb\xe1\x7f\x68\x86\x9f\x06\x06\xf8\xe9\xf2\xeb\x2d\x67\x37\xa4\xdd\xbe\xa0\x66\xe2\xde\xf4\x3a\xf1\x20\xcd\x93\x98\xce\x66\xd9\xa2\x7d\x41\x43\x7e\xa9\xdd\xc3\x9d\x3c\x47\xa7\x82\x4e\xa7\x63\xb3\x3d\x46\xbe\xc6\x69\x38\x61\xdb\x4d\xd4\x0f\x8d\x2f\x35\x2d\xef\x38\xe7\x11\xd4\x35\x6c\xbc\xd8\x76\x57\x39\x56\xa5\x29\x13\x31\xa4\xb7\x4f\xd2\xa1\x3e\xa7\x1d\x7f\xb3\xd0\x9b\xfb\xdf\x74\xab\xdc\xc9\xfd\x99\x1b\x85\xb7\xeb\xd7\xdc\xa6\x77\xf6\xa6\xfd\xb7\xdb\x25\x67\x6e\x7f\xe6\x26\x39\xcc\xcb\x57\xd9\xa9\x2a\x7b\x51\xa1\x85\xdb\xd5\xa2\xc8\xab\xee\x22\xec\x76\x58\xe0\x57\xf5\x04\xad\xed\x06\x94\x50\x1c\x5d\x84\x66\x44\x4c\x44\xc6\xa7\x40\xf1\xa1\x11\xe1\xb3\x1a\x71\xc0\xd9\xa9\x8a\x50\xb7\x0a\x50\x2d\x3e\xb6\x3f\x39\x97\xec\x76\x13\x13\x72\x8f\x89\x07\xcd\xee\xb3\xbc\x41\xd3\x77\x2e\xef\xea\xff\xae\x69\x74\x2b\x11\xac\x2d\xd7\x0a\x73\x7b\x75\x7c\xfb\xa9\xa8\x62\x3b\xb6\x02\x02\xaa\x75\xec\x04\xdd\xdd\x17\x01\x11\x09\x7d\xe4\xa8\x5e\xfa\x4d\x18\x52\xd9\xfa\x26\x3a\x41\x7e\x2f\xad\x20\xab\xd1\x0b\x52\xb5\x05\x70\xe9\x46\x75\x66\x2e\xc9\xa8\x7e\xbd\x07\x09\xf9\xf2\x9d\x74\x45\xa4\x3f\x62\x3b\x57\xc3\xd5\x31\x2b\x2d\xf7\xf6\xef\xb2\xdf\x76\x46\xee\x3e\xdb\xd2\x3f\x65\x7f\xa5\x34\xfb\x47\xec\xeb\x4b\x4f\x24\xfe\xf7\xd8\x30\x77\x4e\xee\x96\xb9\xe5\x7f\xca\xa6\xb9\xfa\x86\xaf\xba\x79\x4a\xd4\x0d\xe5\x3b\x79\x69\xd1\xa9\xd6\x4b\xb6\x47\xfa\x2e\xc4\xc8\xe0\x39\x9d\xb2\x48\xeb\x7a\x3c\x5f\x5a\xac\xa8\x4c\x3b\x54\x2b\xf2\xf8\xb1\xfe\xb3\x27\xdb\xbb\xf1\xea\x46\xae\x74\x26\xa5\x46\x0b\xc0\xdb\xd2\x91\xe6\xe9\xed\x77\x4f\x99\x77\x1b\x42\xa8\x8b\x09\xe6\x75\x76\xeb\x29\xac\xda\xe0\x59\xd0\xa4\x8f\x6d\xf7\xd7\x8e\x38\xe9\xaf\x91\xa7\xb0\x00\xe0\x1f\xa9\x87\x24\x47\x91\x6c\xe3\x47\xd0\x83\x2a\x6d\xa1\x55\x40\x9f\x30\x3a\x54\x6f\x0d\xad\x42\xfe\xdd\xba\x67\xa2\xe9\x4f\x44\x0f\x27\x51\xcc\x8b\x51\x10\x03\xbc\xf5\x34\x2f\xb3\x20\x02\x07\xe6\x69\x38\x61\x65\xb1\x68\x83\x5c\xaf\x16\x04\xfe\x8e\x95\xac\xff\x12\xb5\x0f\x0a\x3f\x97\x98\x89\xdc\xea\xb7\xbe\x8b\x82\x8d\xc8\x6e\x3f\xef\x3e\xf9\xe6\xe2\xe2\xdd\xfb\x93\x83\x8b\x8b\x27\xdd\x7e\x0e\x53\x8c\x11\x83\x0f\x32\x88\x60\xdf\x0e\xc7\xac\xf0\x3e\x85\xc5\xba\x9a\xf1\x59\x2c\xc1\xb3\x02\xf5\x9c\x9a\x81\xe8\xaf\x61\x08\x1c\x1c\xd9\x5b\xad\xc4\xeb\xaf\xc1\x46\x3c\xea\xaf\xa9\x67\x0f\x3b\x9c\xad\x15\xc7\xd3\x5f\xa3\xfd\x35\x35\x88\x49\xc1\x46\x12\xe8\x37\xaa\x3b\x9e\xef\x67\xe9\xf0\x6a\xdb\x5d\x36\x48\xfe\xf0\xbb\x26\x56\x00\x98\xa6\x09\xa9\xaf\x72\x3e\xfe\x84\x9e\x7d\xed\x05\xce\x78\x3e\x06\xeb\x93\xbb\xd6\xf8\x0c\x35\x3f\x94\xc8\x16\x18\x50\x36\x8e\x6b\x96\xfc\xdb\x7f\xb7\x25\x7f\xfe\xf5\x97\x9c\x26\x10\x99\xfa\x8e\x15\x7f\xa3\xea\x55\x96\x59\x7d\x20\xbb\x6a\x3d\x46\xbc\xb8\xa1\x45\x72\xc2\x46\xf6\x3a\x55\x75\xf4\xf3\x4f\xc1\x46\x4e\x1e\x28\x4c\xd0\xb3\xd4\x02\x52\xf7\xa1\xe3\x1a\xb8\x4d\xea\x02\x00\x80\xe9\x94\x75\x59\x45\x98\xdd\x2e\xf9\x6d\xa2\x5e\xd1\x71\xf2\x60\x3f\x0c\x50\xe0\xf5\xd7\x13\x28\xeb\xb1\x24\x49\xaf\x0d\x9e\x00\x19\x87\xf5\x44\x68\x6a\xe9\x10\xc6\x68\x5b\xfe\x1f\x23\x24\xcb\xad\xc3\x98\x6c\xfd\xf9\xd6\xc6\xe6\xb7\x90\x19\x0d\x68\x82\x32\xda\x72\x3c\xf6\x31\x5f\x51\x3a\x65\xc9\xf1\xbc\x74\xed\x1b\xeb\x46\x5f\xd2\x2b\x96\xc3\x29\x00\x07\x4c\x8a\x15\x64\x6b\x9d\x4b\xe3\x0f\x9c\xd1\xb3\xda\x29\x7d\xdb\x30\xa5\x19\x15\xe5\x4b\x0c\x5f\xf8\x25\x73\x82\xa8\x74\x7f\xf4\x8c\x9e\x7b\x63\x5f\x3e\xcc\x0f\x73\x51\x12\x51\x52\x79\x0b\xfb\xe3\x32\x99\x93\xf4\xd3\xb7\x3e\x3c\x6e\xce\x20\xeb\x9f\xf9\x68\x77\x17\x03\x6f\xaa\x47\xb6\xfe\x1a\x79\xa1\xee\x40\x7c\xa2\xb2\xb9\x90\x07\x9c\x67\xf8\x9a\xaf\xf0\xa3\xf6\xa3\x59\xe9\xf0\x6b\x3f\xbf\xd5\xb1\xa8\x82\x27\x69\x35\x42\x08\x44\xa7\x75\xf6\x68\x1f\x91\x70\x8c\x6a\x97\xf1\x71\xfb\x63\x87\x74\xed\xaf\xcd\x8d\x0e\x19\x0c\xe5\x0e\x1f\x1e\x1c\x1c\x90\x51\xc6\xa9\x0d\x71\x4e\x52\x21\xe6\x9e\x3a\xff\xa3\x7a\xfe\x6a\x50\xd4\x8f\x59\xf9\x96\x8e\xf3\xb4\x9c\x27\xac\xfd\xd1\xc5\x11\x35\x90\x21\x9f\xe7\xa5\x8e\xe9\xa9\x7c\x6d\xaf\x53\x4a\x50\x67\x11\x97\x5c\x45\x79\x1d\xb0\x21\x9d\x0b\x08\xdf\x30\xa5\x0b\x88\xbd\x20\x86\x29\xcb\xcb\x74\x94\x0e\x4d\x82\x5b\x03\x5d\x32\xef\xd7\xac\x58\x10\x31\xa5\x59\x46\xf4\xaf\x8c\x16\x63\xa6\x46\x2c\xfc\xed\x85\x05\x18\x65\x9c\x17\x6d\x77\x65\x54\xf4\xbf\x37\xc7\xaf\x37\x37\x0e\x3a\xf5\xdc\x6a\xc1\x66\x8c\x96\x6d\xc9\x9f\xa6\x92\x41\x76\x9f\x21\x54\x8c\x46\x11\x63\xa5\xa6\x0c\x85\xce\x40\x74\xd5\x36\x02\xf3\xf9\x45\x14\x58\x0a\x2f\xa0\x8e\x57\xcf\x48\x2d\x4a\x68\x41\x99\xa5\x30\xd2\x4a\x28\xac\xd0\xa2\xe8\x81\x88\x22\xfc\x8e\x4c\x36\x91\x42\x85\x89\x68\x35\x4c\x5e\xb0\xf2\x50\x05\xdf\x38\xcd\x78\xd9\x9e\xd2\x59\x44\x66\x59\x44\x46\x29\xcb\x92\xf0\xcd\x0c\x2c\x3f\xa7\x74\x06\x66\xd6\xb3\xcc\x37\xf3\x94\xe5\x02\xca\x23\x1d\xbd\x44\x85\xb0\x06\xaf\xab\x9a\xa5\x10\x19\x07\xc3\x01\x07\xa2\x36\xaa\x95\x5f\x7a\x30\x06\xf7\x39\xae\x7e\x02\x6f\xe7\x59\x99\xba\xb3\x10\x76\x1a\xbe\xfd\x40\x20\x14\x46\x04\x54\xaf\xd5\x34\x72\x4a\x5a\xbc\xa0\xcd\x62\x22\xd8\xa1\x90\x5d\x72\x41\x03\xa1\xb0\x71\x45\xaf\x4c\x66\x7a\x37\xaf\x4c\xbd\xf8\xb4\x64\x4f\xc2\x97\xdf\xf1\xf2\x05\xc0\x36\x6a\x29\x1b\xc5\xb5\x66\x08\xbe\x80\x26\xa1\x78\xe2\xb6\xbf\xa2\x5b\xab\x8b\xd9\x08\xaa\x77\x91\x92\x75\xb2\xd5\x24\x64\xaf\x84\x2b\x80\x94\xf0\xd9\xeb\xc0\x3a\xcd\x4b\x5a\x8b\x92\xd8\x2c\x43\xe9\xcb\x9d\x29\xdc\x1b\x68\x74\xc6\x72\x02\xa1\x3c\x21\xc6\x67\x82\xae\xc2\xd5\x43\x85\x23\xaf\x09\x46\x95\xc9\xe5\xf6\x8f\x67\x96\xf5\x46\x70\x3c\x11\x9f\xcf\x2b\x9e\xd1\xb2\x8a\xd5\xdb\x37\x1c\x9b\x9a\x3d\x4b\xc5\x1b\xc8\x52\x98\xbd\xa3\x45\xd9\x9e\x81\xb4\x99\xcb\xbf\x2b\x49\x3a\xed\xa7\x18\xc4\x4f\x8c\xa4\x81\x8d\x5b\x3a\x06\xbf\x6c\xb2\xf9\x3d\x39\xd8\x7f\xbb\x77\x0a\x5e\x0d\xe4\x54\x87\x51\xff\x65\x9e\x66\x52\x48\xd4\xc9\x2e\x94\x19\xf3\x01\x50\xe4\x81\xfe\xa8\x73\xee\xab\xac\x13\x11\x49\xf3\x61\x36\x07\x06\xd1\xf1\xe3\x97\x34\x76\x42\xc1\x5e\x30\xe7\xa5\xda\xbe\x04\xaf\x01\x74\x01\xa0\x39\xa1\x39\xcf\x17\x53\x3e\x17\xc4\x91\x47\x05\xa1\x20\x20\xdb\x8c\xda\x37\x13\x2e\x54\x16\x5e\x05\x48\xd6\xc1\xfb\xc6\x30\x8e\xef\xf3\x8c\x09\x81\x41\xcf\x6e\x52\x79\xeb\x60\x40\x22\x96\xa0\xdb\xa3\x0f\x92\x8f\x08\xad\x4e\x49\x89\xfa\x7a\x5e\xe0\x27\xa3\x1d\x58\x26\xca\x3f\x9e\x96\x65\x91\x0e\xe6\x25\x13\xe4\x13\xe9\xf5\x7e\x2b\xd2\x52\x32\xbd\xe7\xe7\xdb\x64\x44\x33\xa1\x0d\xf8\x7a\xbd\x83\x7c\x3e\x65\x85\xff\x8d\xf4\x7a\xfb\x3c\x1f\xa5\xe3\xb9\xf9\x50\x16\x73\x46\x6e\xe3\x7e\x5e\x77\x2b\x07\x61\x87\x4a\x79\x2b\x96\x5a\xaf\x72\x41\xbd\x13\xab\x42\xa5\x4b\x52\xe6\xda\x34\xd4\xe7\x62\xf2\x21\xf9\x46\x45\x66\x78\x9e\x45\xa2\xfc\x8f\x99\x29\xf9\x93\x95\xff\xdd\xa8\x85\xa8\x34\x82\xc1\x6c\xe3\x3f\xee\xf3\xd1\xad\x67\x9f\xf4\xfe\xe8\x70\x1f\xac\x9e\xfe\xeb\xec\xe0\xe8\xf4\xf0\xf8\xe8\xe2\xf4\xe0\xff\x79\x7f\x70\xb4\x7f\x70\x71\x72\xf0\xfa\xe0\xbf\xc8\x2e\xe9\xae\xcf\xdb\x2f\xb6\xd7\x7b\x1b\xeb\x3f\xd2\xf5\x7f\x9e\x7f\xda\x8a\x7e\xb8\xed\x3c\xed\x8e\xd3\x1a\x63\xa1\x34\xbf\x46\xb3\xca\xf6\x90\xe7\xe8\x3d\x1f\x11\xf3\x86\x73\x50\xf8\xb6\x57\x07\x45\x11\x18\x20\x40\x09\xc6\xe0\xd8\x71\x95\x46\x8f\x0c\xb8\x06\x0a\x74\x50\x14\xfa\xad\xc8\x27\xfd\xc0\xda\xf5\xf3\x7d\x3e\x5b\x14\x60\xce\xd8\x1e\x76\x88\xe4\xdc\x23\xf2\x77\x3a\xe1\xfc\x11\x39\xcc\x87\x31\x98\x61\xc3\x77\x41\x0a\x86\x8e\xf6\xb1\xd3\x4a\x90\x2c\x1d\xb2\x5c\xb0\x04\x38\x58\xcc\x92\x73\xc4\x6e\xc8\x2f\xa7\x2f\xc9\x1b\xfc\x14\xf7\xf3\x53\x86\xe6\xc1\x74\x08\x19\xbb\xf2\x85\x3c\x9d\x6f\x0e\xf7\x0f\x8e\x4e\x0f\xc0\xcd\x0a\xa8\x79\xc9\x8a\xa9\x50\x98\xf7\xfb\x8c\x20\x21\x7c\xfe\x12\xc3\xc7\x75\xa8\x50\x7c\xa1\xfd\xa3\xd2\xe5\x71\x49\xd9\x44\xe4\x18\x3d\xda\x67\xb6\x16\x86\x7d\x5a\x5f\x27\xbe\x2d\xe6\xfa\x17\xfe\xe7\x68\xc8\x20\xb0\x20\x9e\xda\xf6\x70\x33\x22\xc3\x2d\x9f\x49\x72\x7e\x3b\xc4\x78\xb8\x59\x7b\xa3\x98\x37\xc2\xea\x1f\x9f\x6e\x23\xd2\x1e\x6e\xea\xa7\x36\xf9\x63\xcb\xfe\xf0\x82\xc4\x6d\x76\x1a\xee\xa4\xab\xca\x9d\x74\x25\xef\xa4\xfa\xce\x86\x9b\x92\x3f\x81\x7e\x64\x35\xd5\xd5\x1d\xf7\x96\xaa\x72\x5b\xbf\x40\x42\xdb\x8e\xe2\xcf\x48\x91\x13\x11\xac\x58\x50\x48\xdc\x48\x8e\x4e\xf3\xda\x15\x74\x17\xc2\xab\x7d\xcf\x35\x71\xb7\xd5\x83\xd3\xbb\x3a\x37\xe3\x76\x18\xb8\xa6\x05\xf1\x96\xd4\x1f\x50\xb8\x50\x0f\x56\x7e\x0f\x56\x7e\x7f\x80\x95\x5f\x80\x5f\x2f\x5d\x9b\xdb\x2f\xb0\xb9\x73\x96\xb3\xd6\x60\xb6\xc1\xb8\xb6\xde\x2c\xb6\x62\x27\xee\x5b\x8a\xf8\x16\x10\xf7\x78\x0b\xf4\xac\x7c\xc8\xbf\xfe\x03\xe1\x57\xb7\xcf\x22\x5f\xfc\x44\x58\xb5\xd3\x22\x5f\xeb\x65\x37\x30\x4c\xf9\xbf\x63\x3f\xbf\x96\x69\xe4\x97\xef\x68\x9d\x89\xe4\xd7\xda\x53\xcf\x0a\xe3\xff\x8e\x0d\xfd\x2a\xa6\x79\x5f\xbe\x9b\x0d\x26\x7a\xbf\x7b\x43\x6f\xad\x77\x4a\xd5\x67\x69\x97\x74\x9f\x3c\x21\x7f\x81\xc0\xb3\xe4\x49\x97\xd4\x6d\xaf\x29\xfa\x22\xeb\xb8\x8a\xc9\x1d\xec\x37\x5c\xa3\xbb\x70\x9b\x3a\x0b\x27\xaf\x28\x05\x29\xb8\xa4\x4c\x69\x75\x10\xb1\xe7\x86\xb2\xe3\x6e\xb6\x04\x1f\x1b\x61\x61\xbf\x7a\xd1\x91\xa6\xcb\x8e\x34\x5f\x78\x64\xa9\x2f\x88\xcb\x48\x38\xdd\x7b\x4e\x40\x18\x92\xb3\xf6\xf8\xcc\xa4\xa8\x23\xaf\x7a\xa7\xad\x12\x80\x74\xb3\x00\xb7\xbb\x5d\xf2\x2b\x2f\xc9\x8c\x96\x13\x38\x4f\x12\x2b\x40\xce\x14\xe9\x74\x96\x31\x32\x15\x63\x0c\x1c\x9f\xd9\xd4\x94\xf6\x3f\x78\x27\x92\xd0\x9b\xf2\x66\x57\x4e\x0d\xd4\xee\x6d\x9c\xc7\x75\xac\xd5\x6d\x75\x46\x05\x13\x92\xb5\xd9\xc5\x86\x0d\xbc\xfa\xcc\x55\x6b\x85\xe3\x7b\x44\xb3\x4c\x0f\xef\xf3\xe7\x7a\xa6\x6f\x66\x94\x5f\x90\x03\x8b\x74\x9f\x10\xa5\x00\x93\x58\xdd\xd4\x4a\xa7\xee\xce\xb2\x9e\xd3\x07\x44\xad\x7f\xd4\x94\xc5\xdb\xfd\x4f\x36\x9a\xcd\xc5\x04\x96\x10\x17\xa4\x2e\x04\x50\x4d\x00\xa0\x65\xb1\x97\xea\x86\xf3\x14\xd7\xaf\x76\xd1\x1b\xba\xa8\x08\x2d\xa6\x6e\x44\x7a\xe7\xe1\x38\x55\xe4\x94\x79\x56\x3a\xe9\xe2\x97\x22\x02\xd6\xee\x6d\x80\x04\xd9\x6a\xad\x44\x72\xb1\xcd\xce\x9d\xc7\x45\xa1\xfc\x2a\xa7\xc6\xb3\xdd\xd1\x47\x05\x8f\x0f\x15\x65\xa4\x4e\x92\xa1\x4f\x17\x3e\x4d\x08\x4a\x84\x12\x2e\x44\xe4\x38\xbb\xa9\x1a\x81\x76\xa7\x76\xf4\x2a\x18\x61\x62\x83\xe2\x7a\xf4\xd4\xa4\x43\x0b\xe6\x90\x29\x0f\xba\x0a\x9f\x18\x1b\x83\x23\xa4\x6e\xe2\x78\xd4\xf6\x26\xd4\xe9\x6d\x9c\x7b\x44\x7f\xa7\x3a\xa8\x31\x2b\xf7\x44\xd9\x34\x16\xb3\x54\x7e\x4b\xe7\x69\x4c\x4d\xbc\x39\xb1\xbd\xe9\xc9\xd4\xd4\x6d\x6a\x90\xec\x51\x95\x80\x5f\x5c\x80\x9a\xa8\x16\xd9\xea\x74\xfc\xad\x46\x10\x26\xa5\x9e\x60\x3a\x40\x01\x64\x20\xbf\x54\xe3\xb9\x84\x10\xf5\x92\x4c\x5c\xe2\x44\x2e\x2b\xe1\xbe\x6e\x2b\xe4\xf5\x1d\x40\x56\x2f\xa0\xda\x41\x92\xa4\x79\xc9\x09\xcd\xc9\xde\xe9\x59\x5c\xb3\x14\x54\x94\xb5\x97\x95\x1a\xa8\xbd\x39\x6b\xe6\x8c\x41\x72\xd2\x7f\xb2\x5f\xa9\x98\x94\x74\x7c\x98\x23\x6b\x52\x55\xbe\x9a\x85\x05\xe1\xf4\x8c\x8e\xb7\xe1\xbe\x35\x81\x10\x55\x10\xe2\x20\x55\x90\xfa\x03\xeb\xc6\xa6\x6d\x28\x12\xd7\x06\xd6\xaa\x27\x5d\xce\x94\xab\x3b\x7f\xeb\x63\x55\x90\x33\x53\x37\xad\x06\x94\xa9\xdd\xfa\x3d\x83\x8e\x7a\xab\x4d\x84\x6c\x6a\x5f\x07\x20\x6d\xe6\xe9\x99\x1f\xcc\xcd\x19\x47\xb7\xab\x7c\xe3\xe0\xd1\x81\xdd\x28\xdd\x3f\x4a\xf3\x10\x48\x4b\x3f\x22\x90\x4b\x45\x19\x2e\x51\x73\x94\xd8\x3a\x8a\xef\xf0\xa0\xaa\xca\x71\x2d\x55\x13\xbe\xfa\x49\xb4\xab\xe8\x61\xc8\x50\xc0\x47\xb9\xf3\xe8\x76\xc9\x4b\x65\xc3\xa0\x82\xb0\x9a\xa7\xf7\x96\xca\x0d\x5e\x72\x78\xe4\x48\x54\x64\x0f\xe0\x40\xd4\x33\x51\x38\x34\xcb\x59\xa9\xbf\xea\x29\x32\x38\x0e\xee\xfa\x1b\x84\x2e\x02\x8f\x1f\x23\x1e\xd9\x7a\x1d\x88\xb5\xd5\xa0\x94\xa8\xe1\xc9\x82\x47\xb8\xfa\x97\x8b\xca\x5a\x61\xb6\x5a\x87\xf5\xf3\xcc\x4f\x2a\xca\xa9\x0a\x7a\x35\x10\x23\xc5\x61\x27\x2f\x5d\xd0\xb5\xa4\x69\xc5\xb6\xca\x14\xa0\x42\xdb\xdb\x9d\xf0\xba\x68\x77\xd4\x6e\xac\x74\x97\xae\xd8\x7d\x8d\x62\x8b\xdc\xf1\xa4\x53\x7d\x0b\x52\xfb\xa3\x37\xea\x1e\x33\x9f\x1b\xf6\xa3\x99\x68\xef\xe2\x3b\x82\xaa\x87\xe8\x8d\x01\xe1\x11\x73\x75\xd4\x77\x40\x6d\xf5\x1c\x37\x2b\x78\xc9\x81\x92\xeb\xa4\x23\xe6\x9c\xba\x21\xf3\x21\x38\x3e\x31\x91\x46\xf5\x2b\x25\x24\xeb\x17\x0c\xa2\xdc\x00\x54\x48\xa0\x6e\x2a\x40\xa4\xe5\x09\xb3\x49\x4b\x2a\x9b\x67\x80\xd2\x3c\xa9\x53\x07\x60\x64\xd1\x7c\xc8\x34\x29\x68\x3c\xea\x0d\x9a\xb7\x40\x7e\x9c\x17\x05\xcb\x87\x8b\x5a\xaf\x22\x08\x60\x04\xf9\xfc\xb1\x52\x2b\x24\xe4\xa1\xf0\xc2\x8a\x21\xcb\xcb\xa5\xb0\x54\x9d\x65\xa0\x42\xdd\x60\x05\x9e\x4a\xba\x5f\xd3\xcb\x94\xe7\xe5\x64\x9b\xb4\x00\x07\xd3\x61\xd8\x0b\x42\x5c\x2c\xaf\xb0\x60\xb4\xd8\x26\xad\xad\xf5\x24\x1d\xa7\x4b\x07\x0a\x3d\xb2\x24\x9d\x4f\x97\x0e\x06\x86\xfb\x7b\x86\xd2\x50\x23\x1c\x4a\xc6\xf3\xf1\xd2\x81\xc8\x0a\x7f\xc2\x38\x46\xf3\x2c\xab\x1d\xc7\x0d\x63\x57\xd8\x57\xd3\x48\xfe\xc4\x91\xba\x7f\x97\x28\x8c\xaf\x8a\x65\x13\x3e\x5f\xd2\x09\xcc\x23\xcd\xe7\x12\x71\x57\x5d\xb2\x25\x58\xf4\xfb\x3b\x23\x26\xc4\xd5\x57\xc0\xa5\x3f\x67\x38\xc4\x09\x0f\x72\x44\xe5\xe6\xd4\x9f\xa2\x95\x51\xef\x5f\x77\xd8\xee\xa3\x10\x59\x72\x09\xef\xf4\xf3\x5b\x8c\x09\x69\x02\x2c\xd5\x44\x0a\xda\x71\xfd\x3f\x2e\xd8\xc7\x12\xc2\x67\xdd\x9d\x0b\x57\xd5\x74\x1f\xe1\xbf\x82\xf7\x08\xfb\x48\x87\x90\xea\x72\xb5\xe4\xb9\x10\x40\x69\x1f\xa3\x1a\xda\x30\x77\x73\xc1\xe0\x43\xd7\xfd\xec\xb4\xd2\xdf\xab\x2d\x9c\x4a\x39\x13\xa5\x09\x89\x17\x77\xf1\x67\x0b\x33\xe5\x70\x93\x00\x04\xd2\x92\x61\x22\x44\x75\xfb\x4f\x31\xda\x9c\xff\x34\x7d\x3c\x2f\x59\x01\x9c\x08\x06\x9c\xe3\xf2\x37\xfc\xa9\xf4\x95\x98\x1b\xd0\x9a\xc4\x2b\x79\xd7\x7e\x6b\x32\x06\xc5\xa7\x39\x29\x0d\xe8\xc0\x53\x59\x5d\x37\x7e\x5c\xda\xfb\x06\xfa\x41\x4b\x4c\xdb\xcb\x92\x18\x40\x3d\x3f\xd5\xfc\xdf\xf9\x5c\x92\xc5\x79\x96\x18\x25\x90\xb6\xda\xc2\xa5\x5d\xf0\xb9\x0e\xcb\xa7\x27\x17\x91\x34\x66\x71\x2b\x22\xad\x9f\xa0\x37\x95\x11\x53\x55\xdb\xfd\xd4\xee\x90\xdd\x9f\x49\xfb\xd3\x6d\xe7\x96\x74\x7f\x6e\xca\x4d\xd6\x90\xfe\xdd\x99\x85\x36\xd0\xee\x3b\x71\x50\x15\x56\xb7\xcd\x1f\x9f\x6e\x23\xe2\x2c\xa3\xb7\x5d\xda\x9e\x0d\xad\xa5\x31\xa4\x9c\x49\x53\x57\xd2\x2b\x10\xe9\x2e\x61\xd4\xc0\x0a\xce\x62\xa8\x78\x58\x42\x04\x3d\x64\x1e\xf5\x67\x9b\x70\x26\xe1\x37\x68\x69\x8e\xc7\xa9\x2c\xc0\x90\x86\xe6\x57\x02\xe3\xbe\xc9\x42\x1d\x75\xba\xae\x63\xb5\xdc\xb3\x82\x8d\x80\xab\x5e\x48\xc9\x14\xf9\xd5\x92\x3c\x79\x22\x21\x17\x9c\x97\x12\x5d\x61\xf1\x9d\x21\x17\x8c\x3d\x79\x12\x2b\xf3\x6c\x0f\x8b\xbd\x8d\x68\xbb\x76\xae\x26\x2f\x62\x01\x49\x3d\xd1\xd2\x5f\x17\x18\xaa\xe5\x22\xb2\xaa\x53\x9a\x3d\x80\x74\x4a\x66\x8d\xc9\xae\x39\xa0\xed\x2f\xcf\x96\x09\x09\x91\x1c\x98\x4e\x88\xe5\x95\xcf\xd6\x0a\xb8\x2d\xb9\x76\x64\xf2\xd1\x1b\xc9\xc7\x64\x98\xa9\xe2\xfd\xfd\x25\xb4\xab\xbe\xdd\x8c\xe8\xee\xf8\x7f\x76\x56\x08\xd0\x5e\x25\xf2\xfb\x95\xdf\xb0\x6b\x56\x44\x24\xe7\x58\x43\x0d\x21\x15\x12\x03\x04\xa4\xce\x89\x48\xeb\xad\x09\xd9\x48\x6d\x05\x9a\x41\xa8\x5a\x92\x42\xda\x5a\x96\x90\x49\x3a\x9e\x40\x66\xa7\x10\xff\x5a\xe4\x29\x69\xf1\xc2\x89\xb2\x89\x40\xf0\x24\xc7\xf5\x67\xf0\xd6\x39\x5f\x6e\xf0\x4d\x74\xda\x98\x0b\xf6\x96\x4d\x79\xdd\x2b\x8f\xc2\x07\x95\xaa\xb9\x66\x13\x5f\xb8\x9b\xb7\x7d\x2f\x12\xeb\xd1\x41\xd5\xc9\xa3\x4a\xaa\x0e\xfc\xd0\x43\xa2\x7f\xee\x8f\x42\x47\xeb\xde\xa9\x27\x30\xd8\x14\x69\x4b\x44\x7a\xb6\x6b\x97\x8e\x28\x9d\xb7\x6a\xe2\x79\x73\xd5\xb9\xb4\xb8\xf7\x58\xac\xb1\x24\xb2\xcb\x05\xd6\x8d\xb0\xbc\xaa\x5b\x7d\xfe\x8c\x43\x64\xe3\xe1\xa9\xb8\x9d\x78\x98\xe8\xf9\xab\x40\x77\x48\xed\x08\x79\x22\xd1\x3f\x24\x1e\x28\x60\x4a\xe2\x41\xcc\x10\x5c\x0f\x94\x9c\x27\x2c\x4e\xc5\x89\x4a\x3c\xab\xb2\x06\x59\x90\x7b\x3e\x5a\x11\x9d\x94\xd3\xa2\x9d\xcd\x3c\xcb\x09\x92\x68\xcc\xeb\x61\x31\xdf\x1d\x03\x14\xb8\x03\xe0\x39\x3b\x1e\xc9\x3f\xdb\x3d\xa7\x50\x19\xdb\xda\x12\xd9\xcb\x79\xc7\x19\x29\xba\xcd\xa0\xb2\x12\x30\xe8\xbe\x04\xe9\x6b\xac\xbf\xe1\x8d\xda\x0d\x75\x3a\xee\x18\xeb\x12\x5d\x7a\xed\x76\x56\x73\xfb\xad\x63\xb1\x2a\x8c\x55\x53\xf6\x3c\x4b\xc8\xed\x65\x51\x21\x03\x0a\x8e\x87\xe5\x5f\x4e\xf8\x97\x25\x03\x46\x17\xe4\x09\xe7\x57\xa2\x5b\xcc\x33\x26\xd6\xf9\x08\x7f\x62\x5b\x33\xa4\x97\x6c\x30\x1f\xff\x4d\x9e\xab\x76\xa9\xc9\x46\xc8\x2b\xe8\xfb\xeb\xd6\xf1\x98\xfa\x6d\xef\xe4\xe8\xf0\xe8\xf5\x36\x79\x09\x59\xd7\xd4\x12\xc2\x0b\x33\xe6\x21\xcf\x16\x78\x67\xbf\x17\x8c\x5c\xbe\x9d\xa7\xa0\x4a\xbe\xc4\x75\xbd\xac\xb2\xba\xdd\x29\x1d\x16\x5c\x74\x75\xcd\x18\x7e\x5f\x82\x4a\x87\xd1\x24\x76\xbd\xab\x3e\xa1\xc2\xe6\x96\x0c\x79\xc2\x7c\x17\xab\xca\xbe\xa0\xc2\x47\x43\xd5\x59\x66\x86\x36\xe7\x71\xb7\x4b\xf6\x66\x33\xc9\x3b\x48\x01\x60\x7d\x96\xcd\xc7\x69\xbe\x5e\xea\xe8\xaf\xeb\x25\x9b\xce\x32\x5a\xb2\x75\xf5\xb4\x09\xb1\x7b\x33\xce\x05\x06\xac\x57\x20\x6c\x01\xc4\x04\xa6\x23\x46\xd2\xd1\x88\xdc\xb0\x56\x01\xf1\x7c\x87\xb4\x64\xb9\x72\x19\x2b\xd2\x69\x5a\x62\x6a\x52\x8c\x0c\xcc\x18\xd1\x59\x6a\x61\x10\x1f\x44\x9c\xf2\x6e\xc2\x87\xa2\xcb\xf2\xee\xaa\xe3\xfa\x06\xc6\xa0\x09\x4d\x80\x1a\x8a\x49\x32\xad\x14\xd9\x90\x58\x3a\x87\x9c\x6f\x8d\x79\x72\x2d\xe6\xad\x03\x6f\xd0\x7d\x21\x17\x6f\x57\xde\x93\xf2\x8f\x30\xe3\x79\x8a\xa9\xca\xeb\x4d\x4a\x52\xf2\xd4\x7d\xdf\x84\x38\xc6\xa2\x24\xb0\xab\x02\xb4\xef\x38\xc1\x99\x31\x9a\xc6\xe0\xc5\x82\xdd\x8d\xf1\x6a\x82\x12\xe0\x3a\x02\xc4\x36\x72\x7a\x4f\x77\x49\xeb\x31\x98\xad\x9c\xc3\xc0\x59\x2e\x87\xfe\xfe\xe4\x70\x5f\x13\xf5\xb6\xb5\x64\x49\xcf\xeb\xce\x40\xeb\x6d\x9a\xe3\xdb\x84\xc3\x19\xa1\xd3\x22\xf9\x46\x2f\x86\xe4\x1d\x76\x30\x21\x2d\x30\x12\xd0\x37\x69\xa9\xa9\x30\x10\xc1\x4d\xea\x1c\x7c\xbc\xb5\x3b\xc5\xf2\xc6\x8d\xba\xb5\xa1\x83\x2b\x08\x6e\xf8\x77\xb5\xac\x46\xb0\x35\x0e\x58\x68\x32\x4b\x3e\x7f\x76\x14\xf3\xe8\x92\x50\x75\xe0\x5a\xbe\x7d\x9e\x41\x10\x78\x0f\xf1\x79\x31\x64\x9e\x21\x50\xea\xa6\x0a\x37\x70\xb5\x9d\x2b\xd4\xaf\x44\xa5\x55\x03\x35\xea\xe5\x78\x42\xc5\xf1\x4d\xae\x9f\x21\xe2\x21\xcd\xb2\x36\xb6\x85\xc4\xe0\xe1\xb3\x15\xce\x46\x9b\x9f\x62\xc5\xd0\xde\xb5\x92\xa5\x26\xe0\x66\x10\x06\xee\xfc\x4e\xad\xa8\xa4\x2c\x93\x24\x4e\xda\xb4\xf7\x42\x27\x11\x68\xdc\x1f\x64\xc2\xdb\x7c\xf0\x41\x8d\xda\x28\x1b\x94\x92\x81\xac\x2b\x46\x1d\x34\x0c\x81\x5c\x7c\xba\x98\x0e\x38\xa6\x30\xed\xaf\x69\xa0\xfd\x35\x87\xbb\xc7\x1a\x31\x50\x81\x92\x17\xaa\xaa\x80\xd2\xfe\x9a\x59\x29\x35\x0e\xf7\x45\xba\x3a\x34\x77\x3d\xb0\x3a\x1f\x7c\xd8\x71\x95\x30\xbe\xbb\xf0\x7d\x81\xf2\xc1\x87\xca\xc8\x6b\xe7\xc6\x07\x1f\x62\x37\x51\xa9\xac\xa3\xaa\xe3\x57\xb8\x16\xd5\xd4\xed\xb3\xc4\x0b\x67\xe6\x64\xbb\x71\x0e\xfe\xf6\x3a\x03\x56\x7b\xf9\x55\x74\x44\x7a\x6d\xee\x6e\xec\xec\x7e\xd5\x1f\xed\x5d\x46\xd3\x1c\x0f\x48\x3b\x2d\xd9\xd4\x4f\x67\x22\x4b\xe4\x8a\xe8\x49\x60\x0d\x90\xf2\x90\xd9\x6b\xc9\xaf\xb2\xb4\xb2\x9c\x08\xd3\xf3\x0d\xaa\x20\x6f\xc2\xd8\x0c\x64\x0e\xe3\xc3\xe4\x9d\xe0\x3b\xb3\x03\x6f\xf9\xd9\x81\xb7\x96\x65\x07\xde\x3a\x27\x46\x3d\x39\xcc\x20\xf6\xb1\x7e\x05\xbb\x75\x85\x67\x25\x2c\xa9\xbc\xa4\x50\x93\xbc\x20\x9e\x1a\x43\x53\xb7\x6d\x7b\xaa\xf5\xb1\xf2\x17\x54\x57\x94\x6b\xe4\x7d\x50\xd3\x34\x18\xec\x3a\x42\xa8\x6f\xf1\x88\x17\x07\x74\x38\x69\x37\xd9\xe2\x4b\xce\x02\x98\x54\x8b\x9f\x33\x9e\x65\x73\xeb\xfc\x86\x43\x92\xb4\x11\x76\xec\xe2\x02\x6a\x5e\x5c\xd4\x79\x40\xbb\xea\x1e\xb7\x75\xdd\xb8\x81\xf6\xc1\xac\x14\xdd\x0d\xc8\xbd\x23\xf8\x29\x9a\x19\x6e\x34\x94\x47\x2e\x29\x8d\xf4\x92\x3b\x8a\xa7\x8a\x59\x82\x0f\xb4\x8e\x10\x07\x39\xc2\xbc\x93\x68\x04\x4a\x9d\x94\x05\x73\x50\xea\x6c\xb1\x37\xbc\xb8\x02\xee\x2b\xe7\xf9\xba\x28\x8b\x74\x58\x2a\x16\x6c\x4c\x76\xad\x11\x25\x5e\x84\xfd\xd2\x30\xaf\x60\xed\x78\xdb\x51\x2a\x96\xb2\x58\xe0\xf7\x00\xec\x88\xb0\x6b\x9a\xa1\xb2\x20\xe3\x37\x2c\x21\x6d\xc9\x98\xed\x9f\xbe\xeb\xc8\xda\xb2\x8b\xb1\xbc\x43\x73\x76\x63\x5c\x18\x4d\x92\x1c\xe8\xa5\xbf\x86\x7d\xdc\x12\x48\x96\x44\xda\xac\xd3\xd0\x93\xe4\x05\x30\xb0\x0f\x81\xdb\x9e\xe5\x43\xe6\xa5\x20\x94\xad\x9c\x4b\x40\xd5\x45\x42\x89\xe7\x5a\x52\x76\x39\x26\xfc\xa4\xa5\xa0\x6e\x97\x8c\x41\x8e\xc4\xac\x14\x03\xe6\x5a\x54\x0d\xe6\x25\xc9\x39\x66\x13\x2c\x39\x49\x38\xa1\x03\x0e\xa9\x89\xe3\xd8\x64\x1b\x51\xf3\x71\x9a\x29\x0e\x9c\xf0\x91\x69\x3d\x61\x05\x93\xc8\x01\xc6\x0f\xd0\x92\x51\x91\x62\x76\x7f\x8c\x1c\x63\x39\xb7\x98\xa4\xa3\xf6\xa3\x71\xc6\x07\x34\xeb\x90\x4f\x24\x8e\x63\x18\xea\x94\x27\xf3\x8c\xc5\x48\x79\x24\xf9\x18\xa3\x7e\xfe\x81\xcf\xf9\xd7\xe6\x73\x02\x47\xc1\x40\xb2\x22\x54\x90\x8b\xfa\x2f\xc6\xa5\xb1\x2a\xfc\x29\xc6\xa7\x2a\xb5\xe4\x7c\x7d\x2e\xd8\xfa\x00\x52\xa2\xaf\x23\x4a\x2a\x95\xad\x16\x44\x4f\x60\xf0\x60\x52\x04\x52\xa1\xeb\xc0\x2c\xcf\x54\x26\xa5\x2d\x63\x97\x40\xc6\xe9\x35\xcb\x49\x41\x73\x4c\x04\xf7\xa4\x56\xae\xc4\xc6\x67\x13\x0d\x06\x93\xaa\x0c\x33\x3a\x9d\xb1\xa4\xb6\xc5\x34\x05\xcd\x31\x91\x94\xa3\x20\x03\x3e\x87\x44\x39\xda\x4c\x42\xdd\x5a\xd0\x6b\x7d\x73\xfa\x11\x9a\xcf\x67\xb3\x95\x9a\x17\x6a\xd2\x06\xc0\x9e\x9e\xbd\xd2\x68\x42\x5d\xd2\x9b\xa6\x79\x24\x81\x9f\x2b\x29\xd9\x7a\x2f\xc9\xb9\xb4\x5d\x9f\x2e\x78\x5e\x49\xf3\xaf\x94\xe5\x7f\xc3\xdc\xd8\x72\x6a\x5f\x87\x37\xd8\xfc\x5d\x2a\x72\xdc\xc9\x9f\x60\x8e\x9f\x3f\xab\x8d\xfd\x59\x0e\xaf\x51\x0b\xde\x5f\xf3\xb4\xe0\x16\x1f\x8c\xb1\x8b\xcd\x93\x8e\x1e\xd7\xa4\xbf\x06\xd9\xe6\xe7\xf0\xe8\xa0\x36\xa1\xbf\xd6\xd1\xb5\x60\x3f\xfa\x6b\xf2\x7f\xb6\x8c\x7e\x94\xbf\xcf\xe3\xfe\x5a\xad\x42\xd9\x8d\xc4\x32\x4d\x73\x8c\xc3\x32\xa5\x1f\x11\x18\x6e\x21\x6c\x72\xf0\x4a\xb3\xcf\xf3\x6b\x26\x49\xab\xca\xdb\x83\xc7\x6f\xff\xf4\x94\x4c\xd8\x47\x6d\xe5\x53\x72\x28\x29\xc6\x03\x55\x52\x3d\x14\x68\x83\x79\xab\x80\xac\x93\x5f\xd9\x47\xfc\x1b\x5f\xaf\xc8\x37\x79\x9e\x13\x29\x05\xe7\xf0\x5f\x80\xa0\xba\xf5\x9e\xe9\x07\xe1\x60\xb9\xf3\x00\x13\x72\xbe\x13\xf6\xf1\x8c\x9f\x8c\x07\x6d\xa8\xaf\xf6\x68\xa8\xf2\x68\xc1\xbf\xb1\x98\x0f\x44\x59\xb4\x37\x3b\x06\xd9\x0a\x6d\xf8\x75\xc2\xc6\x07\x1f\x67\xed\xfe\x5a\xfc\x69\x33\xb2\xbb\x84\xed\x34\x0a\xee\x92\xef\xc8\x0b\xb2\x25\x51\x4b\xee\xc0\x6d\x7f\xad\x13\x91\xd6\xb8\x65\xe1\x61\x3a\x30\xd3\xe1\x54\xe5\x16\x75\x75\x76\xaa\x0a\x24\xb4\x94\x7f\xf5\x36\xce\xeb\xcd\xfa\x7d\x58\x22\x9e\xd2\x99\xc3\x3a\xe6\x55\x61\x29\x27\x4f\x89\x66\xfb\x6a\xf9\x25\x05\x51\x0a\x3d\xc5\x78\x10\xcc\xd2\x73\x2e\xf8\x96\xbc\x20\x2d\xda\x22\xdb\xf0\x94\xd2\x5f\x6b\x3b\xf8\x57\x3f\x9c\x08\xb3\x37\x85\x9e\xb2\x50\x48\x7e\x22\xcf\xc8\x0b\xb4\x1f\x3b\xcc\x4b\x59\x79\xf3\x3b\xc9\x6d\x03\x6a\x42\xc2\xae\x76\xf8\xb1\x4b\xb6\x9e\x3f\x27\x4f\xc8\xe6\xc6\xc6\x86\xfc\x25\xff\xc5\x29\x75\xd4\x8b\x4a\x44\x5a\x1d\x38\x18\x92\xb5\xd9\x46\xe3\x76\x3f\x47\x6b\x9a\x97\x67\xfc\x57\xf6\xb1\x9d\x9a\xc8\x89\x72\x93\x24\x3a\xef\xca\x8f\x26\x2e\x52\x7b\xf3\x3b\xef\xd9\x61\xc2\x3e\x7a\x7b\x02\x4b\xb6\x61\x17\x6c\x22\x27\xba\x2d\xab\xad\x7a\x84\xec\x81\xd1\x47\xc8\x1e\xaa\xbb\x8f\xd0\xc9\xeb\x5f\xbc\x23\x54\x8c\x07\x72\x9d\xe4\xff\xef\xdc\xeb\xfc\x38\x47\x50\x1d\xbd\x86\xd3\x54\x8c\x07\xb8\x74\xee\x69\xea\x76\xc9\x61\xc2\xa6\x33\x5e\xb2\xbc\xf4\xf0\xd9\x26\x64\xfd\x46\xe5\x61\xdd\x08\x31\x01\xea\xed\x04\x0f\x5f\x17\x09\x43\x3b\x01\xa6\x33\xde\xf9\x05\xaa\xfb\xc8\xf2\x56\xd9\x1c\x34\xfe\x41\x43\x74\xb9\x10\x3e\x7f\x02\x61\x0a\x3d\x7a\xdb\x7c\x88\x0c\xba\x2a\x8c\xc9\x3b\x3e\xb2\xb5\x3a\x2b\x51\xcb\x89\xc8\x9c\x6d\xbe\x17\x95\x3c\x7d\xa3\xfe\xc6\x91\x36\x6c\xab\xdd\x50\x5b\xad\x5b\x4b\x0e\x45\xd6\x4c\x0e\x6b\x17\xd9\x10\xb1\x0b\x8f\x6a\xd6\xac\xfd\xd0\x5f\x72\x75\xaa\xb4\x23\xb7\xa4\x68\xa6\x54\xd8\xd2\xcd\x73\x3c\xc6\xe6\x5b\x66\xbf\x6d\x85\xdf\xa8\xe4\x57\x75\xd8\x30\x79\x8b\x65\x11\xd9\x24\xeb\x24\xd3\xa4\x14\xc2\x20\xb9\x7a\xa4\x91\xb3\x9b\x3a\x28\xd4\xd7\xe0\x4c\xda\x92\xac\x4e\x48\x97\x3c\xdb\xe8\x90\xff\x24\x9b\x5b\xbe\x6d\x51\x46\xd6\x09\x35\x03\xa5\x1f\xdb\x66\xc4\x57\x64\x9d\x3c\x8b\xc8\x8f\x64\x9d\x5c\x45\x64\xb3\x13\x91\x75\x75\xf3\xdc\x3a\x73\xc0\x58\x40\xa4\x55\x8c\x07\x2d\x7b\x2d\x8d\x07\x64\x97\xf4\x1c\xf2\x38\x6a\x6f\x74\xc8\x13\x49\x13\x3b\x11\xf1\xca\x7f\x68\x28\xff\x56\x97\x9f\x87\x97\x8f\x13\x7f\x68\x22\x32\x6a\xd9\x1e\x0c\x8b\xbb\x2b\x29\xbf\x9e\xe4\x78\x80\xbe\x53\x6a\x9f\x9e\xd5\xea\xba\x0b\x1f\x9d\x1c\x68\xa8\x52\x8b\xfa\xf6\x35\x56\x6c\x4b\xa0\x7d\x27\x19\x6f\x85\x31\xcf\x2b\x86\xfe\x30\x30\x9a\x27\x1a\x07\x21\x40\x10\xce\xc5\x1c\xac\x23\x5e\xb2\x6d\xf2\x92\x33\x8c\x22\xa5\xcd\x90\xe4\x52\xfe\xa7\x6a\x77\xf7\x29\x94\x34\xd3\x25\xb4\x3c\x67\x84\x8f\xb6\x81\x60\x46\x9a\x6c\x46\x40\x7f\x3b\xf0\x0f\x95\xff\x4e\x44\xa6\xfe\xa1\xed\x90\x1e\xe3\x54\x6e\xc9\x3a\xd9\x23\x6f\xdf\x1f\xaa\x9e\xb0\x74\x9b\x7c\xc2\x45\xd2\xc4\x59\xaf\x10\xf2\xe6\xbd\xf3\xdb\xc6\xe3\x5d\x7b\x82\xef\xa4\xd2\xa5\x1b\x91\xb9\x89\x2e\xdb\xea\xc3\x09\x2d\xf6\x4a\x89\x79\x80\x2c\xdf\xb4\xc2\xb6\xc1\x28\x02\x16\xac\x13\x52\xfb\x29\x85\x84\xd3\x9a\x3b\x32\x77\x46\xdb\xe1\xa0\xd4\x79\x70\x19\x36\x79\x41\x6f\x44\xaa\xb5\xcb\x4a\xf5\xe0\xd4\x44\x70\x78\xa8\xfc\x77\x22\x32\xf5\x0f\x6d\x9d\x1b\xf8\x38\xeb\x20\x39\xb8\x17\x14\x88\x17\xcd\x02\x42\xe5\x19\x3a\xe0\xf2\x9d\x78\xd3\xe4\x32\xe0\xa9\x24\x7b\x72\xa9\x11\xb5\x9f\xff\xc6\x0c\x5a\xfa\xc9\x5c\x4d\x8a\xb7\x7b\xe0\x59\x8c\x6c\x4f\xbd\xf0\xdc\x7e\x16\x91\x86\x4d\x30\x64\x3c\x5c\x62\xb5\x3b\x4f\x25\x73\xeb\xf1\xbd\xeb\x64\xb3\x13\x8b\x59\x96\x96\xed\x56\x64\xb6\x4a\x41\xa9\xbd\x57\xfd\xd8\x1f\xd6\x27\x55\xb0\x57\x19\xd7\x97\xb1\x93\x92\x3b\x0c\x40\xd1\x48\x3a\xcc\xa5\x67\xe2\x7e\x34\x5d\xc7\x1e\x09\x09\xc8\x47\xc9\x09\x55\x67\xae\x4a\x12\xf4\x81\xd5\x24\xe1\xa5\xc6\xf1\x04\x8b\x9a\xe9\x07\xd2\xd5\x75\x72\xac\x88\xc6\x32\xec\xf4\xa0\xd0\xa2\xa0\x0b\x0d\x44\x8d\x71\x9d\xf4\xf2\x28\x8f\xf2\x73\x29\x2a\xe1\x9f\x51\x7e\xbe\x94\xd9\xab\x15\x94\xaa\x51\x36\x1b\x09\x47\xe5\xf8\xc9\x1f\x3b\x0d\x78\xe3\x31\x5c\x5a\xf5\x68\x8f\xb4\x9c\x7a\x07\xce\xcf\xba\xf7\x7e\x7b\x9c\x67\x0b\x29\x35\xcb\xcd\xc2\x43\x00\xce\x51\xcf\x9c\xad\x49\xf3\x92\xb4\x81\xfa\x4a\x3a\x4e\xb3\xd9\x84\x76\x5c\x2c\x68\x42\x3a\x29\x82\x54\x85\xa2\xb4\x4e\xf8\xd8\x90\x27\x27\x14\x95\x6c\x4c\x5e\x7f\x2a\x72\xdb\x2a\x53\xb1\x3c\x8d\xa4\x10\x21\x9b\xd9\xdb\x3c\x97\x47\xff\x3f\x6d\xe8\x42\xcb\xe7\xd4\xd6\xdf\xf2\xeb\xdf\x06\x7c\xac\xad\x8f\xa1\xfb\x7d\x81\x4c\xad\x46\x55\x2a\x0a\x8e\x08\xcd\x86\x90\x4d\x4e\xf8\x49\x83\x21\xb9\xba\xcd\xa3\x7c\xc3\xb5\xc0\x69\x8e\xc6\x2b\x5e\x4c\xe7\x19\xdd\x36\x56\x07\x37\x37\x37\xf1\xcd\xb3\x98\x17\xe3\xee\xd9\x49\xf7\xb7\xfd\xbd\xd7\x5b\x1b\xeb\x67\x07\xfb\xbf\x9e\x76\x5f\x6f\x7e\x1f\x4f\xca\x69\xf6\xcd\xeb\xcd\xef\xd7\x4b\x26\x4a\xd1\x78\xe9\x8e\x78\xc1\x54\xba\xe6\xaf\x78\xf3\x06\x9d\x38\x39\xa1\xff\x88\xeb\xdd\xea\xd3\x82\xf5\x54\xfa\x44\x57\xbb\xb6\x41\xd6\xc9\xd6\x66\xdc\x78\x34\x9d\xb4\xd7\x27\x12\x46\xdb\x2e\x50\xe4\xcc\xc3\x39\xad\xd9\x7c\xba\x47\x76\x21\xcd\x8a\xce\xb0\xec\x34\xb2\x97\x6a\x36\x9f\xfe\x12\xd6\x73\x00\xba\x14\xd8\xaa\x8b\x24\xf0\x08\x9a\x76\xc8\x53\xb2\x11\x6f\x3c\x97\x72\xb8\xe5\x6f\x6b\xbe\x87\x66\xbf\xcc\xa4\xea\x24\x03\x88\x90\x97\x43\x14\xc8\x11\xa1\xf9\x42\x87\x42\xce\x0d\xc9\x16\x33\x3a\x04\x82\xff\xc4\x3a\xd7\x82\x1e\x76\x03\xf4\xe5\x89\xbc\x9f\x44\x49\x06\x19\x1d\x5e\x01\x39\xdf\x84\x72\xc8\xd4\x2d\x3f\x40\x96\xdb\x3f\x1c\x6b\xff\x38\x56\x51\xe3\xd2\x92\x75\xc3\x83\x0b\x99\xc4\x43\xcc\xda\x5c\x86\x57\x76\xdb\xef\x2f\x0e\xa2\x30\x52\x23\x39\xb4\xc8\x8b\x0a\x07\xe8\x4b\x9d\x1d\x7d\x9b\x6d\x87\xb7\x06\x51\x60\xa5\x80\x51\xe1\x1d\x5c\x2a\x4b\xba\xbb\x52\x8a\x01\xef\x02\x8b\x15\xc1\x1b\x85\xac\xf7\xd3\xae\xc4\xc1\x67\x3f\x6e\xfd\x40\x5e\x60\x43\xb2\xb9\x15\xff\xb8\xa5\xd5\x4c\x33\x7e\xd3\x96\xc0\x15\xae\x02\x32\x6f\xca\x3f\x22\xb2\x15\x7f\x6b\x98\x11\xf0\x62\x28\xe6\x60\x80\x45\xa8\xbc\x99\xc0\x75\x4d\x78\x14\x19\x9d\x0c\xdb\xed\x8d\x78\x6b\x73\xeb\x3b\xf2\x44\x4e\xa3\xb7\x71\x0e\xa0\xbf\xdf\x7c\xbe\xa5\x4a\x36\xb1\x64\xe3\xfb\x2d\x5d\xb2\x75\xde\x89\x4b\xfe\x2a\xfd\xc8\x92\xf6\xb3\x50\xa5\xf0\x52\x22\x38\xa8\x46\x11\xa5\xcd\xc9\x88\x48\xc2\x66\x2c\x07\x43\x6a\x8e\x79\xd1\x4d\x46\x75\x34\x74\xc3\x1c\xdc\x4a\xbf\x47\x0b\x86\x87\x05\x9e\xe3\xe4\x5f\xee\x17\x05\x1b\xe3\xb2\xff\x49\x28\x5e\x31\xc3\x63\xa3\x51\x0a\x71\xc7\x77\x37\xe2\xcd\xe7\x64\x9d\x4c\xe7\x59\x99\xce\xb2\x34\x7c\x91\x30\x98\xbd\x12\xd7\x13\x83\xb2\x39\xcd\x67\xf3\x52\x33\x0b\x72\xca\xd8\x12\xdd\x52\x51\xf8\xac\x3f\x28\x6c\x3a\x9b\x50\x91\xfe\x93\x55\xd8\x22\x67\xc4\x5f\xeb\xc1\x23\xde\x7c\xee\xd2\xdd\xba\x43\xfa\x33\xd9\x88\x9f\xcb\x43\x06\x9b\xa9\x45\x0a\x67\x2c\x92\x8d\x51\xfb\x59\xf7\xd5\x47\xaf\x53\x86\x1c\x17\x1d\x08\x9e\xcd\x4b\x86\x01\x67\x66\x14\xdc\x51\x43\x91\x9a\xec\xe5\x0b\x8c\xae\x0b\xd6\xfb\x92\x09\x73\x57\x94\x5f\xb3\xe2\xa6\x48\xcb\x92\xe5\xff\x73\x68\x84\x57\xec\xba\x7d\x73\x13\x7a\x86\x30\xdc\xe1\x84\xe6\x39\xcb\x90\xa5\xf4\x51\xea\x4f\xc3\xa8\x11\x4d\x98\xde\x19\x57\x28\x5a\x85\xf2\x62\xc0\x60\xf7\xe1\x6d\x89\x22\x47\xf2\xdb\xe0\xd0\x5f\x43\xa6\xfd\x17\x85\x38\xd4\xf2\x28\x66\xd3\x25\xd0\xbd\x67\x7e\x58\xc6\x7a\x3d\x8f\x19\x6d\x85\x86\x89\xaa\x7a\xe6\x7f\x90\xc6\xfc\xab\x90\x97\x25\xc7\x78\x45\xa4\xf0\xc9\x10\xa2\x46\x70\xe0\xab\x08\x72\x87\x24\xe3\xed\xfb\xd6\x39\x79\xb2\x0b\x8a\x56\x07\x6c\x28\x1e\xd5\x81\xae\x95\xf7\xea\xb2\x28\x3c\xab\x58\xf5\x06\x43\x48\x1b\x87\x50\xfb\xcc\xb9\x02\x4e\xbe\x41\x0a\xf9\x80\x94\x75\x48\xb9\xe4\xfa\xf8\x57\xc2\xca\xa7\xbb\xa4\xbd\xb9\xb1\x01\x58\xe1\x7d\xe9\x90\x27\xff\xa3\xb8\x2a\x07\xb6\xf5\xfc\x79\x38\xb0\xb4\x76\x60\xf7\xc3\xe0\xb5\x68\xad\x35\x57\x41\x8d\xd0\xf1\x04\x03\x04\x82\xaf\xc6\xa1\x90\xdc\x33\x3a\xe1\xb4\x75\x06\x39\xd1\xea\xec\xb8\xb6\x2e\x36\x9e\xf9\xd6\xc6\xe6\x73\x2f\x96\xb9\xff\x7d\xa5\xc8\xe5\xe4\x7e\x81\xcb\x01\xe1\x20\x13\xfc\xc1\xde\xfe\xd9\xc5\xe9\xd9\xde\xd9\xe1\xfe\xa9\xf6\x96\x02\x27\x28\xe5\xd2\x02\x2e\x3a\x4e\x68\xfa\xa1\x2d\xae\x2f\x75\x2b\x2b\xc3\xaf\x77\x05\x9f\x79\xc5\x36\xd7\xa2\x53\x3a\x66\x3a\x5d\x5e\x58\x1f\xbe\x14\xe9\x35\x4b\x4e\x4b\x5a\xb2\x57\x05\x9f\x1e\x60\x86\xa1\x65\x55\x42\x28\xd3\xf4\x63\x9a\xbb\x05\xc6\x03\xc9\x29\x2b\xcd\xbc\xfa\xf9\xad\x8a\x21\xfc\xd7\xa3\xe3\xdf\x8e\xc2\x35\xca\xfd\xc1\x23\xb3\xe9\x03\x47\xbb\x30\x77\x95\x68\x96\xb1\x22\x2c\x70\x6b\x18\x46\xd4\x2b\x4b\xcb\x45\x38\xa6\x57\xc7\x27\xbf\xed\x9d\xbc\xbc\x38\x39\x78\x15\x8e\xac\xf5\x1f\xff\x81\xa6\x86\x2d\x07\x48\xc1\x24\xea\x7c\xe9\xd6\x04\x2b\x65\x87\xf1\xf6\xe0\xed\xf1\x4a\xfd\x03\x52\x16\xec\x2b\x0d\xa0\x71\xab\xce\xfe\xfe\xee\xc0\x1d\x8f\x2c\x77\xcb\x7a\xea\x7c\xc6\xaf\x4c\xb6\x37\xc9\x4d\xd5\xac\x66\x53\xc3\xb7\x6c\xca\x65\x13\x77\xe6\x7e\x62\xc8\x31\x2b\x25\x0e\xa6\x43\xd1\x36\x7e\x86\xf6\xf9\x07\x9d\xd6\xae\x37\xbf\x8b\x37\x37\x41\x51\x32\x60\x19\xbf\xd1\x34\x58\xf7\x92\x0a\xf0\x32\xb5\xed\x43\x85\x7d\xd0\xbd\xa4\xab\x3e\xf0\x2d\x00\x4e\x07\xfc\x9a\xa1\x15\x81\x69\xea\x4d\xcb\xf4\xd0\xb3\xdb\x76\x0e\x01\x09\x3d\xca\xe0\x66\xa8\xf4\xc3\x4a\x59\x93\x4d\xbf\x5c\x6d\xc8\x98\x95\x8e\x51\x24\x64\x57\xb5\x2d\x6a\x3e\xd6\x36\x43\xd7\x80\xc6\x86\xea\x73\x6d\xd3\x97\x4c\x40\xae\x16\xb8\x26\x6b\x5b\xdb\x1a\x16\xc0\x3b\x7d\x78\x8f\x47\x5e\x33\xa7\x5c\x55\xc6\x17\x09\x53\x6e\x6b\x9b\xf3\xef\xc6\x19\x9f\xf0\x54\x94\x47\x1c\x33\x1f\x6a\x24\x41\x23\x4e\xe3\xbd\xa4\x0d\xb5\x9d\x02\xd0\xaa\x41\x56\xe1\x4a\xa8\x85\xa0\x6e\x7d\xd4\xcd\x6e\x97\x24\xe0\xd9\x07\xfd\x83\x80\xa8\xa3\xf1\xb5\x27\xe5\x34\xeb\x58\x87\x58\xe5\x68\x05\x6e\xc6\xfe\xd4\x02\x2b\xda\x34\x9f\xb0\x22\x2d\x59\x62\xfb\xde\x0d\x96\xae\x1d\x0c\xae\xb3\x13\x58\xbb\x57\x41\x3c\x7e\x5c\x07\x58\x4e\xaa\x79\x34\x64\xc5\x65\xad\x02\x76\x57\xb6\x31\x02\x83\xb2\x04\x16\x38\xbd\x10\x5f\x9b\xe7\x28\x67\x58\x8b\xa7\xce\xd0\x15\x5c\xf9\x8f\x7e\x30\xa8\x6d\x52\xe9\xa5\x13\xba\x71\xc3\xfb\x10\xcc\x58\xcd\x1f\x87\xdb\xb0\x18\xf6\xe5\x43\x9b\x43\xd7\xb6\x6a\x9c\x5b\x1d\x43\x06\x93\xd0\x56\xd7\x4f\x9f\xa6\x01\xbe\x80\x63\x04\x54\xf2\xad\xad\x21\x48\x87\x77\xc3\xa2\x49\xf4\xe3\xc7\xe4\x51\xdb\x6c\x8f\xfc\x69\x7e\x58\x8f\x88\x47\x6d\x7f\xf4\x8f\x1f\xfb\xd3\x71\x6b\xfa\xab\xf3\xf8\xb1\xbf\x5c\x58\xb3\x12\x66\x39\x71\xc9\x47\x13\xdd\x08\xd7\x09\xcd\xbd\x9d\x39\x12\xa2\x1c\x15\xac\xf5\xb7\xf1\x27\x19\xd1\x34\x9b\x17\x3a\xc0\x4c\xc1\x68\xb2\xce\xf3\x6c\xa1\x13\x2e\xa5\xcc\x8b\x37\x5c\x9b\x8c\xc8\xef\x38\x72\x06\xed\x05\x6f\x74\x3d\x19\x6a\x0c\xcb\x2b\x8e\xc2\x3e\x6c\x7d\x03\x54\x4c\xfd\xeb\x0e\xdf\x8e\xca\xda\xf3\x88\x3c\xf9\x9a\xff\xf5\x8b\x30\x0d\xd0\xdb\x74\x58\x70\xc1\x47\x25\xd9\xe7\xc5\x8c\x17\x98\x57\x59\xd6\x93\xff\x7b\xc7\x8a\x69\x2a\x84\x72\xbc\x9f\x0b\x26\x65\xa8\xd9\x22\x22\x53\x9e\xa4\xa3\x45\x24\xaf\xc8\x2e\x2f\x24\xcf\xa1\x52\x53\xa1\xab\x83\x04\x78\x23\x05\x35\x89\xe7\x34\x5f\x48\x58\xb3\x79\x21\xe5\x00\x7c\xb4\xe6\x05\xfc\xcb\xe7\x25\x19\x31\xb0\x4c\x9f\xb0\x82\x0d\x16\x64\x5c\xd0\x1c\xd2\x6a\xaa\x11\x9c\xfd\x7a\x40\x4e\x8f\x5f\x9d\xfd\xb6\x77\x72\x40\x0e\x4f\xc9\xbb\x93\xe3\xbf\x1d\xbe\x3c\x78\x49\xfa\x6b\x7b\xa7\xe4\xf0\xb4\xbf\x46\xf6\x8e\x5e\x12\x59\x6d\xef\xfd\xd9\xaf\xc7\x27\xe4\xe5\xe1\xe9\xfe\x9b\xbd\xc3\xb7\xa7\x64\xef\xcd\x1b\xf2\xdb\xde\xc9\xc9\xde\xd1\xd9\xe1\xc1\x29\xf9\xed\xf0\xec\x57\x09\xf2\xe4\xe0\xf5\xde\xc9\x4b\x72\x76\x4c\xce\x7e\x3d\x3c\x75\xa0\x1f\xed\xbf\x79\xff\xf2\xf0\xe8\x35\x34\x3c\x7c\xfb\xee\xcd\xe1\xc1\x4b\x17\xc0\xf1\x2b\xf2\xf6\xe0\x64\xff\xd7\xbd\xa3\xb3\xbd\x5f\x0e\xdf\x1c\x9e\xfd\x5d\x82\x93\xdd\xbf\x3a\x3c\x3b\x3a\x38\x3d\x8d\xc9\xe1\x11\x39\x3a\x26\x07\x7f\x3b\x38\x3a\x23\xa7\xbf\x4a\x38\xce\xc8\x7e\x39\x20\x6f\x0e\xf7\x7e\x79\x73\x20\xd9\x25\xb2\x77\xf4\x77\x72\xfa\xee\x60\xff\x70\xef\x4d\x44\x5e\x1e\x9e\x1c\xec\x9f\x45\x12\xde\xe1\x91\xfa\x41\x8e\x4f\xc8\xfe\xf1\x11\x26\xa3\x3a\x3b\xdc\x7b\x43\x5e\xee\xbd\xdd\x7b\x2d\x07\x82\xad\xf5\xcf\xdf\x7e\xdd\x3b\x3b\x3d\x3e\xf8\xdb\xc1\x09\x39\x39\x38\x7d\xff\xe6\x4c\xce\xe1\xd5\xc9\xf1\x5b\x09\xee\xcd\xf1\x29\x8c\xfc\xfd\xe9\x41\x44\x5e\xee\x9d\xed\xc9\xd6\xef\x4e\x8e\x5f\x1d\x9e\x9d\x46\xe4\xb7\x5f\x0f\xce\x7e\x3d\x38\x91\xe3\xde\x3b\x22\x7b\xfb\x67\x87\xc7\x47\xb2\xf6\xfe\xf1\xd1\xd9\xc9\x9e\x1c\xc4\xd1\xc1\xeb\x37\x87\xaf\x0f\x8e\xf6\x0f\xc8\xf1\x89\x04\x78\x0c\x0d\xce\x8e\x4f\xce\x0e\x8f\xdf\x9f\xaa\x36\x11\xd9\x3b\x39\x3c\x95\xfd\x1e\xbf\x3f\x93\x00\x8e\x01\xe6\xfe\xf1\xd1\xd1\x01\x02\x95\xab\x0f\x8b\xf1\xfe\x54\x43\x7a\x77\x70\xf2\xea\xf8\xe4\xed\x1e\xc0\x7e\xe5\xef\x06\x20\xc0\x57\xc5\x7d\x29\xb1\x15\xe0\x56\x81\xee\x37\xe4\x84\x8d\x32\x1d\x00\x62\x9a\x0a\xa6\x2a\xc8\xff\x49\xca\x85\xfe\x1f\x96\xac\x1b\x8f\xaa\x24\x22\x03\x49\xe7\x0a\x3c\xf9\x61\x3d\xc5\xbe\x08\x9f\x09\xfa\xfc\x59\xd7\x97\xff\xb5\x3f\x11\xe3\xde\xb6\x4d\x7a\xe7\xe4\xd6\x44\x6b\xe4\x23\x4c\xd9\x09\x29\xe9\xcd\xbb\x91\xea\x93\x24\xb1\x69\x47\x76\xc9\x60\x87\xdc\x76\x02\xd0\xd5\x36\xe6\xae\x99\x91\x34\x97\x45\x2b\x3b\xdf\x0c\x22\x32\xeb\x74\x48\xd2\x9b\x49\x86\x7d\xd0\x9b\x9d\x43\x84\xe6\xc2\x63\xa4\xbd\xf9\x63\xa7\x50\x05\x2b\xca\xff\x85\x5a\x99\x0b\xe3\xbd\xb4\x6c\x29\x1d\x50\xde\xbc\x2e\x2e\x20\x76\x34\x04\x71\xf5\xbc\x38\x49\xb2\x43\x6e\x75\xf5\xc4\xf1\x83\xdd\x25\x03\x37\x86\x8c\x9f\xff\x70\xd0\x21\xdb\xa4\x7d\x71\xe1\xd7\xb7\xbf\x22\x30\xa3\x92\x9d\xaa\x69\x05\xb3\x02\x9b\x52\x95\x88\xc9\xc5\x12\x67\x5a\xce\xe7\x66\xe7\x2c\x93\xcc\xa9\x74\x5a\x7a\xac\x82\x88\xd0\x51\x2b\x22\x75\x7e\x29\xc8\x43\xe4\xc6\x5f\xab\x70\x6f\x3d\x42\x44\xc5\x5d\x2b\xa8\xe0\x63\x89\xb8\x07\x96\x08\xc4\x92\x12\xb1\x44\x48\x2c\x71\x81\xdf\xba\x3f\xf4\xd5\x68\x6a\xdc\x06\xd8\xa4\x97\xa1\xd1\xed\xaa\x66\x0b\x9c\x35\x2c\x98\x80\x24\xbb\xcc\x59\x02\xe0\xec\x94\x2c\x5b\x04\xec\xd7\x97\x4d\x56\x9e\x4d\xab\x72\x9b\x75\xc8\x4f\x64\xa3\xe3\x4e\xb3\x6e\x2d\x64\x17\x42\xc7\x1c\x72\xfc\xbe\x97\x49\x64\x15\x6f\xf0\x4e\x2d\x66\xa8\x3c\xb3\xb3\x3b\xe4\xbb\xb6\xe8\x20\x96\xcc\x42\xe7\xbe\x00\x17\xe4\x50\x9d\xf9\x81\xbe\xef\x27\xb2\x21\x07\x5d\x59\x24\x9d\xd7\xf2\x50\xd8\xac\x93\x76\xa9\x64\xd3\x4e\x08\x5e\xad\x50\x2f\x3d\x57\x8b\x24\xff\xaa\xc7\x19\x0f\x5f\x96\xec\x7b\xc2\x86\x92\x77\x61\x6d\xf5\x07\x66\x01\x55\x5e\xda\x86\xa7\x0b\x90\x62\x58\x73\x8c\x22\x02\x26\x9c\xca\xae\x0a\x21\x90\x6d\x68\xed\xd2\x10\xfc\x7d\x97\x3c\xdc\x76\x46\xd0\x51\x50\x22\x92\x78\x28\xa1\xb0\x40\x5d\x46\x81\x57\xab\x83\x26\xaa\x42\xac\x67\x5a\x45\x0d\x18\x79\x58\xed\x8e\x05\x31\x43\x01\x9d\xb2\x87\x50\xb6\xa1\x63\x2a\x29\xf1\xe7\x67\x94\x58\xd6\xd7\xf1\xd8\x24\x5e\x5d\xc0\x15\x39\x90\xb6\x5e\xc3\xa4\x5d\xc8\xb9\x0f\xc9\xcf\xea\xa7\x37\x0a\xf8\xe6\x95\x75\x20\x76\x77\x11\x5e\x33\xd8\xfe\xf1\x63\x52\x38\x68\xd8\x90\x5a\x54\x41\x8e\x14\x94\x25\x78\x03\x4f\x18\x6d\xf8\xbf\x87\x12\xdd\x23\x3b\x15\x07\x59\x74\x82\x87\xc0\x91\x56\xed\xeb\x27\xdb\xc6\x1f\x81\x05\xdb\x51\x37\xd3\x92\x91\x4c\x59\x49\x13\x5a\xd2\xb6\xfe\xe3\xaf\x12\x84\xfe\xf1\x37\xfd\xbc\xfa\x3b\x30\x47\xc3\xaa\xc3\x1c\x9d\x56\xdf\xaf\xb9\x6c\x2c\x77\xad\x2c\xbd\xa1\x69\xc9\x0a\xa0\xe0\x7b\xc5\x38\x22\x17\xe6\xa8\x45\xe4\x5d\x44\xc6\x2c\x67\xe1\x3a\x9b\xe6\x34\xe1\xb3\xd2\x18\xda\x3a\x86\x30\x60\x75\x66\x18\xa5\x77\x68\x0c\x33\x67\x64\x1b\x6e\xe9\x77\x8e\xa5\x8d\x0a\x6c\x8e\xcd\xe1\x4f\xfd\xce\x8c\x29\x2a\x82\xbd\x85\x4c\x4c\xef\x24\xe6\xb5\xdf\x91\x5d\xcd\x12\x76\x3a\x55\x88\x11\x29\x98\x5c\xe3\xf0\x9a\x36\xaf\xe2\xf3\x6c\x94\x66\x19\x4b\xec\xf8\x41\x78\x25\xa2\x64\xb3\xb6\x99\x76\x9c\xb3\x8f\x7a\x8a\x72\x3c\xae\x70\xa9\x7a\x68\xc3\x60\xfd\x0b\xd4\x31\x75\xc5\xe0\x7d\xcb\x7b\xe9\xf5\xd7\xc0\x16\xbc\xbf\x76\xfe\x3b\xfa\x02\x98\x98\x38\x45\xad\xe7\x3c\x2b\xe3\x04\x63\x4d\xe8\xd5\x55\xa5\x6a\x38\xdb\x6a\x0f\xbd\xd2\xb8\x9c\xb0\xbc\x6d\x16\x28\x32\x93\x70\x37\x04\xb8\x15\xd9\xa1\x9d\x05\xa8\x0e\xf4\xba\x59\xc6\x20\x40\x2b\xb9\x79\xbd\xf3\x4e\x07\x57\xb6\x63\x69\xdb\xed\x9d\xc8\x6a\xa0\x5b\xb8\x03\x9e\x2c\x82\xfb\x42\xb2\xdc\x9f\x48\x46\x07\x2c\xdb\x96\xf7\xad\x80\x10\xe6\x2e\xc7\x87\xe7\xb2\xb7\x71\x4e\x1e\x93\xcd\x8e\x32\xc3\x2f\x7b\x9b\xe7\x3b\xe6\x26\x83\x1f\xb7\x91\xdc\x2d\x21\x59\xff\x88\x80\xfa\x5e\xca\x00\x11\x19\x45\x64\x11\x91\x32\x22\xe3\x90\xfc\x8d\xa1\x6f\x39\xb3\x6d\x72\xcd\x8a\x41\x7b\x03\x0c\x61\xd5\xe6\xaa\xb2\x4d\x28\xc3\x16\xa6\x70\xab\x03\xdd\xdd\x19\x64\xa6\x3d\xee\x05\xc1\x73\xce\x03\x7e\x96\xb8\x41\x24\xc8\x6d\xc7\x1d\xa6\x59\x4c\xe8\x33\x77\x6a\x3b\xc6\x6f\x4e\x29\xec\x70\x2f\x8f\xc8\xf5\x39\x24\x8c\xb1\xfb\xef\x63\x1d\x9f\x05\xe7\x4c\xae\xf0\xa8\x53\x9b\x99\xa3\xbf\xf6\xda\x60\x8c\x13\xe6\x92\x7d\x64\xc3\x79\x09\xe6\xf0\x6b\x1d\x8f\xcd\xb8\x99\xa4\x19\x23\xed\x8b\x8e\x52\x2f\xd5\xb0\x41\x23\xe4\xb8\x41\x1c\x6b\x63\xa8\x15\xdc\xde\x2d\xf2\x82\x2c\x7a\x76\xb5\xcf\x21\x99\x89\xfc\x86\xe5\xfa\xd8\x01\x49\x81\x96\x5e\x6d\xe0\x21\x4b\x64\x94\x16\x9d\x88\x80\xd1\xf6\x02\x50\x57\xab\xdb\xc8\xae\xa9\x20\x91\xa4\xb7\x29\x71\x5b\x1e\xba\x4e\x95\x8d\x76\x87\xbc\x40\x6e\xb0\xec\x10\x2e\x39\xc2\x9e\x19\x71\x44\xd4\x41\xac\x72\xff\xe2\x26\x05\x8a\x00\x75\x6b\x38\x42\x02\x19\xe4\x04\x23\x1b\xdb\xf8\xef\xe6\x36\xc1\xd5\xd8\x21\x83\x82\xd1\xab\x0a\x44\xd3\xe2\xdb\x6d\x72\x11\xc3\xa1\x79\xfa\xd4\x1c\x83\x4f\x3a\x7a\x25\xcc\x2b\x22\x09\x44\xb8\x81\x2c\x10\x8e\x84\x59\x81\xf5\xdc\x83\xb5\xc0\xed\x90\x07\x0a\x67\xba\x71\xbe\x03\x0f\xa9\x69\x3e\x67\xcd\x40\xbe\xdf\xc6\xea\x17\x31\x9f\x89\x78\xc6\x67\xed\xce\x0e\xb9\x88\xe5\x81\xd4\xbf\x96\x02\x51\xef\x6e\xdb\x75\xdf\xf4\x1e\xe0\xf6\x21\xd0\x88\xe0\x56\x1a\x73\x3a\x60\xa4\xcb\x5e\xe9\xa6\xd7\x82\x4d\xc7\xe5\x87\xd3\xf9\x1d\xe6\xcd\xd1\x3f\xb7\x3a\xf2\xec\x5c\xa0\xb2\xd8\x8c\xce\x27\x9a\xe1\x18\x6c\x6b\xe0\x9b\xda\x8f\x20\xbb\x6b\x1b\x56\x8c\xfc\x4c\x90\x4c\x3d\xc6\x15\x24\x3f\x91\xb2\xf7\xec\xbc\x83\xdd\xe0\x12\xdb\xd5\xc5\x1d\x5e\xb5\xb7\xef\x20\x04\x93\x82\xf1\x13\x50\x3c\x1f\x2a\xd2\x40\x1f\x7d\x96\x03\x2f\x43\x90\x5b\x15\x90\x5b\xe7\x3b\x7a\x47\xe7\x62\x22\xe9\xc6\x8a\xa0\x01\x96\x8b\x0b\x4d\xb5\x57\x44\x91\x4a\x6f\x80\x6c\xf2\x3a\xc1\xc3\x6c\x6f\x2e\xbf\x2b\xff\x56\x46\x84\xfe\x2e\x22\xec\x1c\x11\x7d\x43\x5e\xcf\xa3\x34\xa7\x59\x26\xaf\x79\x49\x97\x4a\x55\x1c\x92\x47\x7d\xe0\x9f\x6b\x32\xa9\xb6\xb1\xe6\xec\x01\xb9\x42\x0c\xd0\x31\x44\xf5\x61\x2c\x8b\xb9\x7b\x16\x6b\xf9\x57\x54\x7e\xa0\x26\xe5\x97\x14\x6d\x78\x77\x7d\x05\x0b\x79\xe1\x04\x23\xe2\x11\x99\x46\xe4\x2a\x22\x57\x5b\x01\x33\x7b\xb5\x05\xb8\x63\x6c\x4a\x3b\x44\x96\x10\x4b\x57\xea\x39\x7e\x2e\x41\x45\xe4\x93\x97\x4c\x06\x1e\xb8\xfd\xe4\x3b\xee\xf5\x35\xed\x5d\x9d\x03\xaf\xa3\xd8\x02\x50\x00\x7d\x8d\x21\xf2\xde\x15\xb8\xc0\x40\x07\x08\x7a\xa9\x0e\x4c\x96\x9c\x96\xb4\x68\x4f\x23\xc2\x5d\x36\xd8\xd3\x4e\x4c\x51\xcc\x9a\x29\x7f\x3d\x9d\xf2\x09\xee\xec\x47\x2b\xe9\x2c\x38\x2a\x68\x82\x8d\x52\x33\x9d\xdd\xc9\x1c\xa1\xd1\x4f\x9b\x07\xdc\x10\x24\xcf\xbc\x93\xab\x08\x58\x8a\x88\x4c\xc1\xf7\x59\xd2\x9d\x9e\x38\x8f\xd4\xfb\x97\xbb\xcc\x53\x73\xbd\x4d\xd5\xf0\x3b\xde\x77\xee\x88\x36\xdc\x0d\x64\xd0\x5f\x43\x4b\x34\x47\xa0\xf1\xee\x31\x64\x9e\xfc\xb8\xd3\x35\xd7\x27\xc0\x07\x29\x57\x43\xef\x10\x4e\x76\x4d\x84\xdd\xa0\x49\xe5\x50\xe1\xdc\xd2\xa7\x4f\xcd\xb5\xf6\x88\x07\x77\x9a\x39\xb1\xb6\xb8\x8e\x9f\xc1\x60\x16\xb8\xc5\x92\xa1\xc9\x79\x49\x60\x21\x07\x19\x8b\x21\xa4\x5f\x7f\x2d\x8c\x77\xa8\xaa\x29\x14\x35\x1c\xcf\x52\x95\x19\x4d\x24\x2e\xe4\xc1\xfe\x4e\x57\xda\x5f\x5e\x61\x1a\xbd\xcd\x7a\x64\x77\x93\xef\xb8\xd0\xe5\xbe\x9b\xfd\x8d\x48\x11\x11\x5a\x40\x7e\xde\x88\x58\x92\x5a\xe1\xca\x14\xc3\xd6\xce\xdd\x6c\x72\x9f\x3f\x93\x7c\x7d\x5d\xde\xab\x8a\x73\x92\x80\x52\x2d\x05\x28\x8e\x89\x16\x78\x2f\x14\x26\x47\x66\xa8\x80\xd4\xd4\x57\x2e\xbd\xa4\x16\x90\xa7\x15\x63\x9a\x6e\xab\xd0\xa6\x1e\x9b\xaa\x49\xb1\xa7\xf7\x6b\x62\x23\x41\x69\xf1\xa8\x40\x99\x49\x5e\xc6\x72\x75\x53\x8f\x21\xec\xe8\xf5\x48\x3b\xcd\xfa\x53\x7b\x01\x80\x8e\x4e\x13\x78\x15\xa3\xc7\x19\x5e\x28\xdf\xd2\x3b\x55\x21\x98\x5d\xb8\x5d\x47\x87\xcc\xd6\x38\xaf\xd5\xf5\x81\xc2\xdc\xb1\x42\x2b\x5a\xe8\x77\x79\x85\x69\x5e\x68\xd9\x4e\x28\xe6\xac\x3a\x4c\x95\x04\xb9\x6e\xb0\x02\xd9\x5f\xa5\x13\x4d\xb3\x46\x5d\x79\x9a\x29\xfd\xa7\x20\x4f\x7d\xe5\xb8\xae\x56\x81\x2d\x67\x84\x39\x03\x45\x27\x82\x20\x0c\x1b\xde\xa2\x68\x90\xb5\x5a\x5a\x1a\xa8\xe0\x23\xf2\x01\x01\x7c\x80\x31\x9a\xb1\x7d\x20\x3f\x91\x0f\xd9\x0e\xf9\xf0\xf4\x69\x44\xae\x02\x68\xb0\x56\xbd\x2b\x48\x37\xdd\xfb\x70\x1e\xae\x5f\x71\xe7\xd3\x0b\xe8\x65\x40\x14\x0b\x75\xac\x93\x54\xb8\xca\x15\x55\x55\xde\xdf\xf0\xd6\x72\x2d\x69\x60\x04\xd5\x3a\x4a\xdf\x62\xa1\xdd\xa9\x0d\x12\x8b\x7c\xf8\xba\x2a\x65\xbb\x4a\xa1\x3a\x8d\x10\xd0\x10\x45\x61\x00\xc6\x61\xa9\xeb\xd4\x4b\x80\x75\x75\x9b\x88\xa2\xa6\x45\xe3\x7b\xe9\x17\x22\x92\x46\xe4\x1f\x2a\x97\xb8\xbf\x84\x29\xbc\x32\x44\x28\x03\xf7\xd7\x24\x05\x82\x28\x4a\xea\xb7\x12\x09\x6d\x81\x3e\xfc\x12\x66\xaf\x6e\xe4\xe7\x4d\x29\x53\x95\x08\x1e\x91\x74\x99\x04\x0e\x16\x34\xbd\xfc\xbc\x43\xd2\x5e\xee\xc3\x72\x65\x71\x50\x9d\xa1\xc2\xcb\xcd\x8a\xac\x9e\x0f\xff\x81\x84\x13\x64\xf5\x88\xc8\xd2\xf3\x0e\xf8\x04\x7d\xfe\x0c\x9a\xa0\x29\x6b\xcb\x4f\x5a\xaf\x56\x27\xc9\xbb\xd5\x02\x45\x55\x2f\x3f\x6f\x5f\x57\x95\x52\x82\x95\x65\xc6\xda\xff\xe8\x6d\x9c\xf7\x9e\xc9\x3b\xc1\xd7\x4e\x05\x9a\x29\x98\x4b\x5c\x51\x0f\x5a\x0c\x56\xb3\x8b\x8d\xae\x0a\x2b\xc7\xd7\xbe\x4a\xca\xaa\xf6\xb6\xbd\x11\x6c\x9d\x47\xa4\xe8\xd4\xcd\x4c\x35\x74\x55\x95\x30\x55\xbd\xf9\xda\x31\xa6\x7e\x55\x40\xf1\x56\x6d\xaa\xf0\x64\x59\x5b\x35\xba\x91\x5a\x51\xd0\x54\xb4\xaf\x3b\x11\xf9\x47\x2c\x26\xe9\xa8\x6c\xc3\x9f\x9a\x7d\x51\x90\x61\x2e\x1b\xe7\x11\x81\x3f\x36\xcf\x57\xd0\x4a\x03\x36\xbe\x64\x19\x1b\xc3\xb9\x0d\x79\xc0\x34\x22\xb3\x2f\x3b\x04\x91\x83\x8b\xa8\xbd\xc4\x8b\x0c\xf5\x4a\x4b\xce\x47\x9d\x72\xea\x9e\x47\x23\x22\x23\x58\x34\x3c\x13\x5c\xfe\xf3\xa2\xe1\x68\xb4\xa5\x18\xf6\x68\xd6\x21\x2f\x2c\x87\xa7\xa9\x1e\x57\xb8\xab\xd9\xbc\x5c\x31\x48\x7a\xd4\xe4\x96\x6c\x93\x91\x04\x2d\x41\x6e\x93\xeb\x1d\x2c\x59\x71\xd5\xff\x56\x65\xbb\xff\x14\x6a\x38\x85\x35\xa9\xa5\x46\xee\x9a\x6a\x1e\x9d\xbc\xb0\x7c\x9c\x14\xa4\xb8\x65\x1b\xb5\xe8\x50\x65\x1c\x5f\x78\x62\xc5\x76\x0d\x17\x29\x11\xf8\x7f\x82\x9c\xd6\x18\x1c\x38\xf4\xd4\xc1\x18\xcf\x3c\xe3\x6e\x6a\x5a\x7d\x3c\x20\xd7\x0a\x14\x9c\x5b\x75\xa0\x83\x6a\x11\xb9\x06\x96\x51\xfe\xeb\xbd\x5e\x2c\xa1\x09\x15\x10\x89\x22\x12\x21\x11\xb4\xc4\x4f\x89\xbe\xd7\xee\x63\x89\x41\xf7\x6b\x8d\xdf\x09\x76\x6d\xa6\xb0\xc2\x9b\x16\xbd\x62\x67\x2a\x74\xbf\x0a\xc9\x3c\xe4\xfc\x0a\x34\xff\xf4\x26\x40\xec\x5a\x01\x5f\x8e\xa8\x5e\xf2\xd7\x80\xfa\x6b\x05\x05\x7a\x62\x06\x5c\xd0\x1b\x1c\xa9\x0a\xc8\x4c\xb0\x6a\x2c\xcb\x77\xe5\xd7\xea\xeb\x0f\xd6\x08\x78\x27\x54\x6e\x08\x56\xbe\x05\x8b\x3d\x9d\x11\xf6\x0e\xfd\x86\xcb\x59\x35\xea\x2c\x1c\x31\xbe\x5e\x79\xa1\xd7\xde\x53\x52\x34\x75\xc3\x7b\x0e\x3c\xf0\x6d\xbc\x93\x0b\xc4\xb8\xb5\xa8\x7c\xe0\x49\xb0\x13\x53\x9e\x48\xf4\x9e\xf2\x24\xbe\xb8\x60\x02\xa7\x6f\xa5\x72\x9e\x78\xf4\x02\x5f\x78\x7c\xfb\x0a\x0d\xc5\x64\x58\xb2\x21\x81\x41\xa5\x21\xbb\x04\x95\x4a\x9d\x52\x63\x25\x9d\xc6\x94\x27\x11\xb9\xaa\xd1\x6a\xe0\x70\xc0\x42\x51\x56\x30\x43\xaa\xee\xa4\x5b\xb5\x22\x88\xe0\xb7\xbb\xd8\x5a\x5c\x46\x0d\xcf\x5f\x49\x7d\x83\x34\xac\xe6\x0b\x59\x42\xb6\xe1\xf5\x18\xf5\xc9\x50\x70\x7b\x57\x97\xc3\x8c\x0a\xf1\xae\x48\xaf\x69\xc9\x5e\xa5\x2c\x4b\x5e\x33\x39\x93\x21\x4b\x21\x1d\xd8\x0c\xbf\xbc\xa5\xb3\xf0\xde\xb0\x5f\xe4\x82\x9a\x26\x9d\x40\x0d\x52\x7f\x91\xd0\xb2\x64\xd3\x99\x8a\x1c\x3c\x66\xa5\xee\x87\x8c\xe4\x10\x08\xc7\x30\xe4\x9a\xf7\x72\xaf\x94\xf0\xa8\x39\xc3\x18\x3b\x23\xbf\x53\x82\xa8\xcc\xfb\xb4\x61\xde\x8e\x2f\xf2\x1f\x33\x7d\xf1\x45\xd3\x77\xfa\x17\xde\xc8\x03\x7d\x84\xfb\xd6\x6d\xd7\xc4\x0d\x35\x6d\xcc\xc9\x4c\x0c\xe9\x52\x64\xe9\xc0\xcd\xb6\xf0\x84\x50\xb1\x34\xbb\xd3\x27\x92\x4a\xfa\x96\xd2\xbc\xb4\x19\x37\x31\xd8\xd6\x07\xd1\x65\xc3\x29\xfd\x76\x63\x6b\x9d\x0e\x44\x59\x84\x0d\x5f\x1e\xbc\xda\x7b\xff\xe6\xec\xe2\xf0\xe8\xec\xcd\xc5\xfe\xf1\xd1\xab\xc3\xd7\xb2\xb7\xfd\xe3\x93\x83\x8b\xba\x6f\x55\xf0\x69\x5e\x66\xad\xba\xf4\x0e\x7a\x48\x87\x79\x99\xe9\xec\x50\xb2\xb2\x0d\x5d\xac\x6b\x40\x71\x44\x5a\x3d\x9c\xa4\x6c\x70\x4e\xf6\x21\x01\xa2\xe4\x6d\x46\x69\x9e\x68\xff\xc1\x84\x5c\xca\xca\x97\x26\xbb\x58\x8b\x3c\xb5\xfb\xdd\xfa\x49\xb6\xd5\xb9\xb1\x7e\x26\x39\x63\x89\xc0\x2c\x63\xa9\x28\xb5\xeb\xaa\x4d\x77\x06\x09\xb5\xcb\x62\x81\x79\xfd\x6f\x3d\x4d\x78\xdd\xec\x77\xad\x61\x9f\xf9\x43\xf2\x34\x4d\xcb\xd5\x91\xf7\x81\x9c\xb8\xb1\x1b\xdf\x56\xe9\xa9\x5e\x15\x74\x2c\xe5\x50\x0c\xe9\x64\xc2\xd0\xe8\x74\x93\xb8\xba\xff\xf5\xf6\x8d\x4a\x1e\xf7\x2a\xbf\x04\xf3\x6c\x95\xaa\x94\x09\x92\xc2\x74\x6c\xb6\xcd\x9b\x49\x3a\x9c\x90\x19\x15\x42\x05\xe4\xd4\x92\x2e\xb9\x9c\xd1\xa2\x14\x97\x70\x18\xe6\xe3\x49\x44\x70\xe0\x69\x3e\x26\xf3\x3c\xfd\xc7\x9c\x81\x33\x82\x5c\x24\x0a\x10\x8a\x32\x92\xbf\x66\x05\xbb\xc6\xa8\x7c\x4f\x48\x7f\xed\x40\x7e\x03\x47\x48\x0c\x83\x03\x5e\x08\x2a\x49\xe5\x84\x5e\x33\x42\x35\xb0\xfe\xda\x15\x5b\xf4\xd7\xfa\x6b\x0a\x65\x41\x97\xe5\xe5\xb8\xaa\x4e\xce\x4f\x74\x65\x0d\x47\x60\xa0\xef\x01\xee\x5f\xd9\x42\x9c\xf1\x77\x72\x2a\xed\x2a\x80\xd0\x1f\xcc\xb2\x6a\x30\x79\xcf\x91\xe1\x4b\x32\x2d\xb9\xa0\x2b\x9d\xb7\x71\x4b\xf7\x55\xae\xbc\xb8\xe4\xa8\x55\xc2\xae\x3b\x4e\x7e\x96\x5b\x38\xfb\x15\x4f\xd9\xc6\xa8\xdf\xbb\xf5\x51\xbf\x2b\x4e\x07\xc6\xb9\x36\xee\x0e\x3f\x88\x2e\xd0\x87\xd8\xb6\x8b\xa7\x69\x1e\x7f\x40\x8f\x5b\x37\xb1\xc5\x6a\x70\x12\x76\xcd\x32\x3e\x93\x73\x35\x40\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\xbe\xe6\x7f\x0f\x0e\x0d\x0f\x0e\x0d\x0f\x0e\x0d\x0f\x0e\x0d\x5f\x61\xb2\x0f\x0e\x0d\x0f\x0e\x0d\x0f\x0e\x0d\x0f\x0e\x0d\x0f\x0e\x0d\x4b\x1e\x65\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\x1e\x1c\x1a\xaa\x0e\x0d\x7f\x8e\x51\xf3\x7a\x2a\xbe\x96\x5d\xb3\x04\xd5\x68\xda\xec\x28\x90\xcf\xfe\xfe\xee\x60\xa7\x9f\x3b\x97\xa5\x2c\xb1\xc9\x24\xc0\x74\x5f\xfe\xf7\x84\x9c\xd0\x1b\xb0\xf6\xd7\x05\x5d\xfc\x43\xd6\xef\xc1\xff\xe9\xaf\x65\xc0\x42\x64\x48\x08\x37\x30\xc5\xb2\x29\xdb\xa9\x82\xfc\x1b\x2d\x52\x49\x79\xc9\x4d\x97\x43\x2a\x5a\x34\x3f\x8f\x08\x8b\xc7\xe4\xf2\x9a\x16\x97\x92\x62\x5d\xa2\x74\x2c\x08\x25\x9f\xae\x69\x71\x7b\xb9\x64\x04\x5a\x60\xc4\x21\xa8\xac\xd0\xb6\x70\xf9\x18\x54\xba\x7f\x35\x8a\x25\xbd\x68\x5d\xa7\x04\xaf\x32\x49\xeb\xa2\x3b\x7a\x48\x00\x71\xef\x82\x2f\x6b\x21\xf4\x67\x08\x1d\x0b\xee\x80\x5d\xa6\xd3\x15\x60\xcb\x5a\x08\xfb\x5b\x84\x8d\x05\x77\xc0\x16\x0c\xec\x5c\xee\x84\x8e\xf5\x10\xfe\x73\x84\xaf\x8b\xee\xe8\x61\x96\xcd\x0b\x9a\xdd\xdd\x03\xd6\xc3\x1e\xbe\xc3\x1e\x74\x51\x4d\x0f\x90\xe6\x7c\xc6\x85\x48\xa1\x9b\xb4\x9c\xa4\xb9\xee\x4a\xa3\x45\x6c\x6a\x9f\x29\x44\x2b\x27\x8c\x5c\x7e\x73\x49\x04\xea\x5e\xcb\x09\x2d\xc9\x4d\x9a\x65\x64\xc0\x08\xe4\xe9\x4f\xcb\xb9\x24\x48\x98\xd4\x1e\x9c\x6e\xe6\x0e\x9c\xba\x51\xf3\x79\x9e\xe0\xa0\xbf\x57\x83\xc6\x92\x9a\x31\xff\xd7\xdb\x37\xeb\x59\x7a\xc5\x48\x49\xc7\xcb\x36\x92\x8e\x11\xe0\x0f\x6a\x1f\xe5\x6f\x79\xc6\x3b\x70\x86\xe1\xbd\x11\xfe\x90\xdc\x01\x38\x6a\x38\xe7\xfe\xf4\xaf\x07\x6f\x0e\xce\x8e\x8f\x2e\xaa\x04\xc0\xfb\x64\x28\x81\x57\xda\xf3\x7f\xf9\x07\x62\xa3\xf6\x40\x2c\x6f\x2f\xf1\xfb\xcc\x20\xe6\xa6\x45\xfa\x33\x8d\x9c\xb7\x1d\x7f\x60\x30\x3d\xbf\xc4\xcc\xd3\x38\x1c\x2d\x66\x8c\xbc\x9e\xd3\x22\x11\x0d\x3e\x38\xa9\x78\x83\xe4\x49\xb9\xbb\xb4\x59\x16\x3a\xdb\xb0\xcc\x66\xf1\x94\xdd\xc4\x8a\xa0\x79\x2e\x55\x0e\xc0\x3d\x85\x55\xf7\x80\xa8\x11\xb1\x09\x24\x66\x39\xbe\x07\x40\x5c\xfb\x26\x70\x2f\x69\xc9\xee\x01\x4c\x6e\x43\x13\x28\xb9\x3d\xf7\x00\x25\x49\x4d\x13\xa8\x53\x20\x13\xf7\x00\x86\x74\xa5\x09\xdc\x3b\x38\xe3\xf7\x00\x87\x44\xa1\x11\x9c\x3c\xad\xf7\x81\x26\xeb\x37\xae\x1a\x1d\xdf\x67\xd1\xe8\x78\x39\x62\x9c\x5e\xb1\x8c\x95\x3c\xaf\x01\xf6\xe8\x51\x9b\xb9\xf6\xce\x0c\x1f\x92\x5a\x68\xa9\xd8\x02\x5b\x6a\xa7\xbf\x0d\xd2\x7d\xa2\x2f\xc1\x27\xdd\xce\x32\x04\x92\x3b\xff\xf5\x3a\xde\x94\x1d\xeb\xf3\xde\xdc\x35\x4a\x1b\xc1\x91\x75\xd3\xf9\xda\x27\x41\x87\xab\x84\xd4\x71\xee\xd1\x8d\xec\x47\x2d\xeb\xc9\x7f\x22\xf3\x2e\xd8\xdc\xb7\x7f\x14\xb1\x19\x11\xe5\x22\x5b\x71\x04\xb8\xb8\xcb\x07\x40\xc0\x08\x6f\x21\x05\x52\xf8\xc7\x1f\x17\xb8\xa6\x85\x59\x25\xdb\xc3\x0e\xd9\xda\xd8\x7c\xb6\x3e\x2b\x98\x80\xe4\x40\xaf\xe8\x90\x0d\x38\xbf\x8a\x4c\x92\x49\x24\x89\xe8\x21\x36\x2f\x86\xf2\xd2\x4a\xc0\xfb\xab\x26\xe3\xe4\xdb\xc3\x33\x5d\x4c\x46\x12\x95\x95\x77\x29\xa6\x71\x75\x13\x4d\xea\x84\xa9\x9c\x97\x24\x49\x0b\x36\x2c\x79\xb1\xc0\x0c\xf9\xb6\xa7\xb2\x60\x2c\x36\x99\x4f\x1b\x79\xe7\x47\xf5\xbc\x33\xa4\xae\xbc\x33\xd5\x26\xb8\x3e\xfe\xb2\x20\xec\xe3\x2c\x4b\x87\x69\x99\x2d\xc8\x5c\xa4\xf9\x98\x5c\xce\x0a\x3e\x5b\x97\x7b\x20\x2e\xc9\x82\xcf\x31\x6f\xf6\x0c\xf2\x69\xa7\x79\xc9\x41\xe0\x70\x78\x65\x32\x60\x13\x7a\x9d\xa2\x5b\xa7\x04\x3a\x29\xcb\xd9\x76\xb7\x3b\x1a\xc4\x53\xd6\xb5\xc0\xd6\xd3\x7c\x5d\x0e\x56\x0f\x11\xa4\x97\xe3\xfc\x25\x2c\xc2\xde\x50\x4e\x8f\xec\x82\x4a\x61\xe7\x2e\xb6\x7d\x44\x61\xd9\x7e\x4b\xcb\x89\xbc\xb3\xf6\x27\x6c\x78\xc5\x0a\xd1\xea\xb4\x4f\x4c\x8e\x40\x85\x73\x51\x5d\x3f\xa1\x88\xf0\x7b\x56\xc2\xae\xff\x97\x2c\xc4\xaa\xb3\x94\x73\x48\xf3\xf1\xe9\x24\x9d\xca\x69\xba\x6e\x97\xfd\x1c\x89\xc4\x3a\x3a\xa3\xf4\x73\x89\xdc\xa7\x69\x9e\x14\x8c\x9c\xf2\x62\x32\x17\xfd\xfc\x2f\x1a\x39\xdf\x1e\x9e\xf5\x73\x44\xab\x40\x46\xeb\x3e\x09\x1c\x61\x49\xce\xd7\xe7\xf9\x5c\xb0\x64\xfd\x9a\x16\xc2\x64\x45\xfd\x1d\xe9\x07\x7d\xe5\x48\x4d\x3e\xc0\x40\x7d\xa2\x9a\xc9\xa5\x73\x5d\x36\xea\x1a\xd6\xb9\x76\xf8\xa9\x27\x4b\xae\xd4\x7a\xd7\x14\xc9\x6f\xbf\x94\x27\xeb\x9a\x66\xd6\x59\xe2\xf3\x67\xa2\x7f\x3b\xa6\x33\x50\xb7\x5f\xd6\x89\xdb\x2d\xdf\x49\x6a\x48\xf3\x9c\xcb\x13\x81\xd9\x4b\x15\xc7\x0b\xa0\x79\x61\x41\xe2\x11\x2c\x21\x67\x58\xbf\x54\x04\xd0\x19\x9d\xce\x27\x66\xd5\xa5\xe0\x5b\xfd\x5e\xb0\x23\x5a\xa6\xd7\xac\xad\xc6\xa4\x32\xa7\xc9\xc1\x81\xde\xc0\x1b\x8c\x19\xb7\xe9\x01\x4c\x16\x77\xb0\x50\xf5\xdd\x2f\xbb\x5d\xf2\x92\x95\x52\x58\x19\xcc\xc7\x63\x93\x5b\x6d\xa1\x15\x7d\xd0\x3f\x2f\x12\x4c\xf6\xcc\x33\xf9\xc7\xdf\x7e\x20\xd7\xac\x10\x29\xcf\x45\xec\xc0\x91\xf8\x2e\xb6\xbb\xdd\xc1\x7c\x2c\xe2\xe1\xa4\xe0\xd3\x74\x3e\x8d\x79\x31\xee\xce\xba\xd7\x3f\x74\x53\x21\xe6\x4c\x74\x13\x56\xd2\x34\x7b\x91\x26\xbb\xdf\x6e\x6e\xfe\x80\x8d\x81\x1e\x30\x51\x6e\x92\x5d\x58\xe0\x53\x48\xc0\xd8\x6e\xd1\xc1\xb0\xd5\xd9\xa9\xf3\xd2\x06\x07\xed\x9c\xaf\xe7\xec\x66\xfd\xa6\xa0\xb3\x19\x2b\x84\xda\x26\x09\xa7\x07\xc2\x54\x2b\x61\xad\x1d\xbb\x3e\xcd\x99\x35\xdb\xd0\xa8\xa3\xad\x02\x5b\xcf\x5b\xab\xaf\xde\x7d\x67\xfd\x6c\xe3\xf9\x77\xfe\xac\xb7\x74\x36\x56\x59\x58\x97\x3e\x70\x73\xc3\x78\x3f\xa9\x31\x41\xb3\x5e\xeb\xa2\x45\x9e\xaa\xc5\x8a\x47\x05\x9f\xee\x4f\x68\xb1\xcf\x13\xd6\x4e\x3b\x72\xfe\xa9\x33\x5c\xd5\x1f\xec\xe4\xd6\xd2\x34\xa3\xb0\x18\x5b\x9d\x78\x4a\x67\x8e\x98\x53\x83\x4f\x38\x88\xfc\x5c\xf7\xd2\x71\xd6\x1a\xfb\x89\x3f\xf0\x34\x6f\xb7\x54\xd6\xea\xd6\xc6\xe6\xd6\xb3\x6f\x9f\x7f\xf7\xfd\x0f\x3f\xfe\xa9\xeb\xfb\xcc\x5d\x5f\x89\x53\x09\x1b\x8d\x27\xe9\x87\xab\x6c\x9a\xf3\xd9\x3f\x0a\x51\xb6\x62\x31\xcb\xd2\x52\x8e\x34\x1e\xf1\xe2\x80\x0e\x27\xce\xd4\x33\x56\x96\xac\x08\x56\xff\x59\x0f\x8b\xe5\x3a\xe3\x5f\x75\xcb\xa0\x56\xf9\x8a\x2d\x44\xdb\x3b\x9d\x10\x29\x02\xe0\x74\x3a\xde\x2a\xe9\x3e\x9a\x46\xba\xe2\xc2\xe9\x2d\xc2\xeb\xb4\x5f\xde\x3a\x36\x43\x06\x44\xb7\x4b\x7e\x63\x2a\xfd\x29\xfb\x38\x93\x44\x80\xe6\x8a\x1b\x61\x98\x1f\x97\x94\x1c\x6f\xd0\x88\x0c\xe6\x92\xb2\xc9\x99\xca\x42\x29\xda\xd3\x91\x64\x53\x6a\x87\x72\xdb\x94\x12\xb1\x4a\xca\x5e\x04\x9e\xa6\xdb\x35\xce\x4b\xc8\x18\xa9\x81\xcb\x7d\x95\xd8\xbe\xa3\x7f\x94\xf0\x90\xa7\xe9\x3b\xb6\xe9\x98\xaf\xc2\xdc\x41\xb2\xc4\xb3\xbd\xd9\xdc\x21\xa2\xd6\x3e\x48\x38\xa7\x0d\x62\x9c\xe8\x03\xe3\xd8\x04\x89\xf3\xce\x8e\x5e\x6e\xfb\x66\xc0\x16\x10\x8a\xa3\xe0\x53\x67\xa7\x24\x2a\xd4\xbd\x0c\xc8\x6a\xda\x91\xec\x93\xdd\xf9\x92\x63\x9e\xcf\x5d\x80\x03\x7f\xef\xe8\xaf\xb7\xc1\x46\x2f\x4f\xa5\x8a\x6d\x84\xb9\xa4\xeb\x7d\x2d\x61\xb4\xa6\x87\x3a\x0a\xa4\x20\x84\xbe\x98\x66\xc4\x8a\x47\x9d\x55\x3d\x2b\x71\x8a\xaa\x3d\xd8\x51\xb9\xed\x60\xae\xf6\xa3\x99\xb2\x53\xb4\x63\x6b\xdf\xd6\x2c\x42\x70\x8b\x96\x7c\x07\x33\x5e\x5b\xbd\xad\x7a\xb3\x70\x14\xf4\xe1\x23\xd7\xe0\x83\xf2\x82\x73\x65\x23\x78\xf3\xc1\xdd\xe4\x83\x0f\x46\x5c\x69\x78\x27\x33\x20\x9c\xc4\xae\x35\x92\x4a\xe5\xf5\x4c\x7f\x18\xf2\x7c\x94\x8e\xe7\x75\x9f\x6e\x8a\xb4\xb4\xc5\x4a\xb8\xe9\xa8\xc4\xd6\x96\x89\x25\x72\x98\x1a\x6f\x94\x4a\xbe\x92\xb8\x94\x0f\x3e\xa8\x0c\xfd\x8d\x9c\x67\x7f\xad\x60\xc6\xc2\x68\xbd\x98\xe7\xa8\xf0\xec\xdc\xb1\xa6\xda\x4d\x5e\x2d\x94\xfe\xbd\xd4\x8f\x5c\x1f\x55\x3d\x01\x0f\xf3\x36\x97\xd9\xee\xf9\xf9\x73\x95\xd8\x14\x7a\x8d\x9b\x1c\xb3\xe1\xe9\x74\xa8\x89\x16\x20\x57\x77\xaa\x86\xb6\xce\xa1\x25\xe6\x3f\x9c\x8d\xde\x02\xac\xa8\x0f\xaf\xae\x53\x93\x5c\xd6\xb7\x6c\x03\x18\xb8\x73\x3b\xde\xd6\xe9\x15\x6d\xf4\x36\x87\x6d\x55\xb1\x9c\x50\x24\xf8\x0d\xc3\x96\xbc\x33\xe9\x72\xdf\x70\x2e\x25\x54\x0c\x2d\x15\x77\x97\xd5\x02\x2d\x62\xe3\x6e\x37\xb4\x34\xab\xc3\x3e\x0e\xb3\x79\xa2\x98\x67\xe5\x4f\xae\x36\x49\x3f\xb3\x6a\xb9\xff\x76\xc7\x48\x84\xe8\xc1\xbc\xbb\x74\xf4\xd5\x2e\x4c\x7b\x38\x7f\xa9\x5a\xb5\x46\x86\x2f\xcc\x34\xed\xe4\x79\x86\x2f\x7f\xc5\xbc\xd3\xcb\x9d\xd3\x11\x81\xfc\x9c\xcf\x2e\xb9\x0c\xe0\x35\xe0\x2e\xe6\x7d\x0e\x2b\x23\xee\x5a\xb4\xd4\x13\x35\x4e\xee\xe0\xc9\xfb\xf3\x2e\xd9\xe8\x38\x9e\x1d\x4e\x83\xaa\xa5\xfd\x12\xc7\x77\x0f\x9d\x2b\xe0\xee\x42\xe9\xc6\xdc\xc8\x0a\x1d\xef\x8b\x40\x0d\x5b\xfc\x45\x58\xe4\x94\x61\x2b\x7f\x67\x81\x27\xb3\x1b\x59\x83\x42\xf5\xbb\xda\xb8\x9f\xee\x6e\xfa\xfb\x78\xcf\x5d\x5c\xbe\xe8\x4b\x56\x5b\x1d\xfe\x51\xc1\xd8\x6b\x8c\x1b\x83\xf1\xd9\xe2\xee\x85\x2d\x8b\x3f\x08\x7c\x93\xed\x3e\x79\xa2\x45\x3f\xf9\x95\x5c\xeb\xd7\xa5\x4b\xc1\xb2\xd1\x65\x6c\x24\x7e\xf9\xf5\x94\x65\x23\x6b\x2d\x25\xe0\x97\xaf\x9f\x84\x32\xf5\x6f\xac\x1c\x01\xa4\x30\xa5\xfe\x54\x5f\x4c\xcf\xef\x05\x4b\x08\x15\x84\x12\x88\xb2\xc5\xf2\xa1\xe2\x35\x99\x8e\x79\xa3\x83\xba\xe9\x61\x80\xce\x6c\xd7\x9d\x9d\xbc\x4b\xf4\xd8\x3e\x7f\x26\xaf\xb4\xcd\x49\xcb\x31\x95\x52\xda\x92\x0a\x2d\x93\xd0\x76\xdc\xe8\x7b\x00\xde\xac\x97\xfc\xe5\xad\xd4\x2f\xf3\x34\x2b\xd7\x53\xed\xd9\x6d\x06\x2d\xec\x00\xb5\xeb\x01\x80\x8a\xf1\x57\x5d\xd7\xe6\x8b\xed\x5c\x35\x35\xdd\x2b\x8b\x30\x77\x00\xb0\x60\x12\x25\x07\x7a\x24\x53\x56\x4e\x78\x52\x3b\x14\x5c\x3b\x08\xea\x53\xa3\x2d\xf1\x61\x96\x9c\x0c\x27\x6c\x78\xa5\x1a\x09\xe8\x84\xdf\xe4\x4e\x9a\x75\x0b\xb8\xa2\xc2\x71\x7a\xaa\x6a\x6f\xec\xdb\x92\xee\x49\x99\x6c\x19\xe5\x68\xef\xb2\xe4\x28\xc0\x9e\xd1\xf1\xe5\x79\x5b\xe9\xcc\xd8\x70\x4a\xd7\xd3\xbc\x64\x45\x0e\x1a\x08\x9a\x81\xc4\x07\xc5\x5b\xdf\x6d\x75\xbf\x8f\x37\xba\xdf\x08\x36\x5c\xe7\x21\xa9\x2b\xb9\x00\x70\x1d\x00\xcf\x47\xb8\x5f\x42\xab\x53\xe5\x1c\x72\x90\x3c\x70\x51\xce\x54\xef\xc1\x4c\xf4\xa0\xee\xb3\xfd\x62\x31\x3d\xb3\x73\x21\xbb\x7a\x53\x5f\x68\xc7\x22\x67\xa6\x64\xdb\x6a\x83\xbc\x75\xda\x23\x62\xc6\x86\x29\xcd\xd2\x7f\xb2\x44\x6b\x59\xe4\x34\x2e\x07\x54\xb0\xd7\xac\x94\xcb\xa4\xe2\xfb\xa5\xe3\x9c\x17\x4c\x90\xcb\x2a\xfc\x4b\x77\xda\x2a\xdc\x1e\x1a\x75\xb8\xb1\xf7\x3e\x3d\xb9\x55\xf3\x39\x9b\x30\xf5\x57\xc9\xc9\x3f\xe6\xac\x58\xa8\x20\x7d\x78\x92\x04\xf9\x84\xab\x7a\x4b\x4e\x54\x01\x68\xb1\xe9\x0d\xf1\xf6\x4f\xaf\xb2\xa1\xf3\x63\x56\x9e\xd0\x9b\x33\x3a\xf6\x9e\x1d\x80\xc5\x93\xa8\x42\x76\x49\x1d\x8f\xa5\xdf\x09\xbc\x05\xed\x44\xf6\x52\x1a\x6b\x16\xb7\xe7\xd7\xd1\x4c\x9f\x52\x8c\x19\x36\x3c\xac\x46\x76\xbd\xe5\xd7\x6c\xc0\x3c\x9f\x52\x71\xc5\x12\x57\x0f\xed\xd9\x7a\x2b\xda\xeb\x99\x92\xd5\x61\x93\x33\x0d\xbc\x5b\xe4\x0d\xa0\xa1\xdb\x90\x97\x23\xd2\x86\x65\xe8\x04\x52\x43\xcd\x70\xf1\x55\x0b\xae\x5c\x8f\xe7\x27\x24\x61\x19\x2b\x59\xe3\x72\xb8\xb7\x74\xc5\x62\x0c\x65\xf4\x80\x3c\x99\x3d\xdb\xd1\xaf\x27\x7f\x04\xed\xf9\x77\xa0\x0a\xea\x55\x29\xbf\x66\x52\x84\xba\x04\x98\x97\x72\x3e\x94\x60\x77\xfa\x21\xa1\xc2\x90\x69\x48\x97\x5f\x74\x40\x87\xd8\xe5\x2a\x47\x54\x55\x65\x89\x1a\x51\xe5\x84\x72\x6f\xc2\xde\x31\xd5\x46\xc2\x77\x23\x78\x1d\x1a\xf9\x80\x57\xbf\xed\x54\x1d\x83\x85\xb6\x9a\x29\xf2\x6b\xfa\x1d\xd9\xea\x7e\xb9\x77\x97\xaa\x0d\xf9\xc6\x6c\x83\x3e\xce\x75\xf8\x2c\x19\x4d\x24\xe8\xad\x1e\xc2\x24\x47\xf3\x2c\x3b\x6f\x29\x82\x64\x28\x49\x50\xe9\xbd\x2e\x3f\xbf\x17\x17\xf1\x55\xae\x11\x89\x2e\xf2\xc2\x20\xe9\x74\x86\x0f\x61\x4a\x91\x3f\x22\x97\x63\x7d\x89\xe8\xa0\x96\x34\xcb\x06\x74\x78\x25\xd4\x09\x1f\x8f\x17\x84\xe5\xd7\x69\xc1\x73\x14\xbc\xff\xd0\x3b\x64\xf9\xfd\x61\x2f\xbd\x76\xa8\x9b\xc1\xae\x8c\x20\xe0\xbf\x26\xeb\x8f\x0e\x9d\x27\x2f\xfc\x9d\xda\xd6\x1b\xbb\x13\x52\xc7\x76\xb0\x05\x92\x75\xf5\x4b\x52\xf7\xb9\x66\xce\x3a\x1d\xec\xfc\x45\xe5\xbe\xc3\xf2\xed\xfa\x53\xd6\x70\x70\xec\x9c\x77\xfc\xe7\x6b\x78\x51\x17\x10\x5c\x97\x16\x0b\x2b\x4c\x81\xbd\x55\x9a\x5f\xf3\x2b\xc9\x0c\xc8\x62\xdc\x5c\x92\x96\xc2\x46\xfe\x2d\x0b\x9a\x8b\x11\x2f\xa6\x2c\xb9\x63\x47\x35\x1f\x7d\x0b\x5d\xc0\xbe\x3a\xaf\x68\xe4\xa6\xa0\xb3\xb8\xa1\x81\xe9\x04\x5a\x55\xfb\x0e\x31\xc2\xb6\x74\x71\x22\x67\x37\xa6\xc7\x2a\xc1\xba\x66\xc5\x5e\x31\x06\xfd\x7c\x64\x21\xfb\x34\xcb\x98\x9f\xd3\x62\x5c\x17\x0e\xb8\x6d\xda\x41\x8d\x8e\x51\xb8\xd4\x52\x32\xec\xd1\x23\x61\xaa\xcc\xa1\x36\x58\x70\x5f\x99\x61\xec\x84\xde\x94\xb7\x8d\x9a\x9c\xd5\x3e\x38\x81\x39\x23\x85\x74\xb5\xf2\x8c\x5b\x35\xc0\x1b\xc9\xdc\x0b\x79\x66\xf4\x0d\x95\x0a\x85\x90\x60\x37\x17\x93\x3d\x1d\xae\xca\x2b\x97\x2d\xd2\xb2\x85\x1e\x38\x97\xf2\xb0\x5c\x62\x2c\xe9\x3c\x91\x5c\x1b\xa1\xe4\x12\xc5\x41\x43\x3d\xf9\xc8\x89\xea\xe5\x20\x99\x80\x28\x99\xf8\xf7\x94\x4d\x07\xac\x38\x1e\x91\x0b\xf5\x2d\x95\x92\xdf\xb7\xf1\x46\xbc\x81\x05\x43\x5a\xb2\x31\x2f\x16\xe4\x0d\xcd\xc7\xab\x5c\x86\x72\x7a\x21\x5e\x0d\x38\xcf\x18\x75\xd0\xea\x52\x32\x74\x97\xcd\x8b\x10\x21\x57\x75\x09\x2f\x18\x97\x0a\x1c\xfb\x48\x25\xf9\x34\x13\xb9\x88\x53\x81\x5b\xf0\x26\xbd\x62\xed\x4f\xa8\x85\x7d\x42\xba\x5d\xb2\xfb\xb3\xd6\xce\xd6\x56\xed\x6d\x46\x64\x2b\x22\xcf\xce\x57\x6e\x71\x11\xe7\x9c\xcf\xbc\xea\x30\xb6\xa6\xfa\x40\x05\x6b\x6b\xbb\x87\xc7\x6b\x52\x73\xd7\xe3\xaa\x56\x03\x3f\x1a\x62\xab\x25\xfe\x86\xa3\xe2\xc2\xf7\xce\x8b\x25\x6a\xf6\xc8\xd8\xb2\xca\xd5\x6f\xcf\x84\x7b\xfb\x9b\x52\xbf\xbe\xdb\xa9\xa9\xef\x16\x7e\xf9\xdd\xaf\xe8\xb6\x7f\xb1\x23\x80\xf3\x2f\x14\xcd\xe5\x5e\x68\xe6\x58\x93\x3f\x27\x84\xab\x51\xe5\xdf\x47\x7e\x77\xf8\x67\x08\xf0\x37\x9d\xa5\x99\x64\xf9\x50\x59\xc6\x47\x86\x1e\x06\xe3\x70\xf8\x5c\x33\xac\xaa\xec\xfb\xa7\x68\x09\x4c\x2f\x69\x3e\x52\x56\x55\x6a\xa7\x2e\x89\x13\x3a\x37\xdc\x9a\xfd\x92\x17\xde\x1c\x7c\x0e\xd5\x25\x98\x4b\xe9\x21\x25\xb3\x8c\xa6\x9a\x1d\x8e\xd4\x9d\x2a\x22\x42\x75\x99\xb2\x68\x4b\xc8\x60\x61\xe4\x94\xba\x11\x12\xf9\xff\x73\x15\x3b\x9c\x92\xcb\x5e\xcf\xa0\xed\xf9\xf9\x25\x70\x60\x40\x4b\xef\x45\x1f\x37\xe2\x1f\xfe\x07\xe8\x63\xb8\x28\x2b\x90\x48\x43\x69\x5e\x71\xae\xde\x82\x9e\x80\xab\x4a\x2a\x62\x0a\xaf\x3a\x50\x72\xeb\x91\xb1\x77\xb2\x17\xc5\x50\xc9\xbb\xff\x15\xe7\x77\x10\x3e\xb7\x45\x3d\x6d\x5d\xde\xe6\x13\x69\x7d\x6c\x41\x60\xbc\xd6\x42\xfe\x4b\xee\x20\xe5\x6e\x5b\x3f\x26\x33\xd0\xdd\xda\xc6\x3e\xdd\x75\x21\x84\xac\xec\xa3\x3a\xb2\xfc\xf9\x73\x0d\xf7\xfb\x68\xd7\x92\xa4\x0a\x5f\xa3\x1e\xdf\x15\x33\xab\x2c\xa7\x80\x80\xb8\xb4\x33\x54\x4b\xa8\x3a\x0d\x8c\xb4\xd5\x83\x68\x98\xfb\x18\xe4\xb0\x4e\x6f\x03\xa0\x22\xd2\x72\x4e\x43\x0b\xe2\x9c\xc0\x07\x37\x02\xf6\x8e\xab\xc2\xc6\x2b\x06\xe1\xee\x92\x96\x5e\x34\xd0\x2a\x43\xa9\xe3\x27\x0f\xbf\x1f\x3f\xee\x1b\x77\x52\xff\xbc\xef\x83\x83\xf1\xee\x6e\x85\x3a\x34\xde\x57\xce\xbe\x78\x17\x96\xf7\x45\xdd\x2a\x19\x4f\xa8\x98\xac\x33\xd1\xf5\xbe\x3a\x57\xd1\x7f\xfc\x07\x1f\x08\x56\x5c\x83\x1e\x1d\x1b\xe1\x53\xf6\xba\x2d\x6f\x85\x92\x9a\x60\x60\x59\xa8\xfd\xb4\xa8\xe2\xb4\x17\x33\x26\x24\x65\x67\xc5\x35\x52\x9d\x13\x96\xcc\x3f\xe2\xb9\x7b\x85\xb9\x0a\xc8\x3c\xbf\xca\x25\x11\xc6\x36\x22\x02\x33\xc5\xe9\x5c\x94\xd6\x5b\x98\x91\xe1\xbc\x28\x24\x17\x2e\xc9\x0c\xda\x95\x92\xc3\x51\xf5\x8b\x3c\xf1\x46\x42\xaa\x87\x94\xe6\x69\x99\xd2\xcc\x85\xf4\x92\x03\x7f\xe8\x28\xf1\x71\x42\xee\x24\xd0\xd0\x35\x83\xb7\xd7\x05\x9f\x17\x60\x4a\x1b\xfb\x3e\x06\x12\xb5\xf6\xa0\xd1\x19\xb4\xd9\x45\x44\x3c\x3c\x3a\x3c\xdb\x26\xad\xbf\xfc\xa5\x90\x93\xef\xca\x9f\x2d\x65\xbe\xaa\x5c\x40\x5c\xc1\x08\x56\x88\x88\x92\x17\x0c\x29\xf8\x84\x67\x09\xca\x14\x38\x45\x6d\x59\x4b\x94\x8c\xcc\xf3\x6c\x41\x6e\xe8\x02\x09\x25\xcd\xc7\xea\x0e\xa5\x25\xd5\xa6\xba\x08\x2d\x85\xcc\x31\x12\xc7\xc8\x65\x92\x8a\x19\x2d\x87\x93\x76\xe7\x92\xc8\xb3\xad\x3c\x59\x9e\x58\xb8\x05\xd3\xe9\x50\xa0\x83\x01\x23\x94\x88\x34\x1f\x67\x06\x9c\x5a\x08\x3a\x9b\xc5\xe4\x8c\xa3\xd2\x77\xb4\x20\x13\x7e\x43\x92\x74\x04\x6b\x59\x2a\x78\x90\x39\x44\x1b\xe5\xd8\x69\x48\xd4\x98\xf1\x1c\xee\x4c\x7f\xfb\xe9\x82\x0c\xf9\x74\x90\xe6\x8c\x08\x76\xcd\x0a\x9a\x11\xb9\x7a\x43\x30\x91\x03\x90\x60\xbd\x6a\x86\xa4\x3e\x5a\xda\x3d\x30\x16\xb0\x0a\xce\x89\x6a\x7e\xe9\xcf\xb4\x2a\xff\x69\x50\x7b\x81\x74\x5a\x78\xd2\xdd\xc7\xd2\x99\x47\x44\xc6\xe9\x35\xcb\x15\xc8\x2a\x56\xc2\x5c\xa5\xcc\x01\x36\x49\x46\x0a\x9d\xd0\x3c\xc9\x58\xfd\x78\x68\xbe\xb8\x25\xbd\x59\xc1\x32\x4e\x13\x06\x41\xfa\xd9\x39\xec\xb7\x8f\xc0\xe4\xef\x6a\xb9\xf8\x0c\xd5\x89\xd9\xc2\xec\x44\xaa\x97\x5f\xf6\xb5\x48\x20\x8c\xb5\xdd\x00\x38\xda\xf0\x53\x9e\x4e\x30\x8d\x9c\xe7\xe9\x35\x2b\x04\xcd\xe4\xa6\x8a\x48\xb2\x01\xc8\x99\xc1\x86\x53\xbd\x99\x05\xbb\x4e\xf9\x5c\xc8\x9e\x58\xa1\xf5\xfc\x73\xc1\x0a\x22\x18\x64\x2f\xd1\xe8\x79\x38\x82\xdd\x9c\xcb\x2b\x37\xdc\x06\x4c\xc9\xc3\xe5\x2f\x6b\x4e\x1e\x6e\x23\xc6\xbf\xc1\x33\x3c\x60\x0a\xaa\x65\x67\x8c\x33\x96\xa0\x53\x89\xae\x74\xc6\x08\x15\x35\x7d\x5d\xb1\x85\xb8\x6b\xdf\x7b\x2c\x9f\x48\x0a\x5d\xe0\x32\xe3\x9c\x75\xd9\xca\xeb\xac\x1a\x38\xc7\x4e\x0d\x32\x2d\x92\x75\x79\x0c\x16\x64\x48\x67\x74\x90\x66\xa9\xe4\x37\x89\x98\x0f\x27\x72\xcc\xd3\x34\x49\x32\x76\x43\x0b\xc5\x3e\x3f\x41\xdf\xbe\xb2\xa0\xd7\x2c\x8b\xc8\x8c\x15\x22\x15\xa5\xa4\x4e\x11\x61\xe5\x30\xb6\x47\xdf\x1f\x28\xe2\xaa\x98\xa4\x33\x81\x3d\x03\x3d\xd1\x67\x46\x90\x4b\x30\xbd\x78\x6b\x7a\x6b\x77\xc2\x03\x61\x18\xac\x53\x09\xf8\x96\xec\x55\x49\x52\xc6\x4a\x01\x3b\x5b\x30\x9a\x58\x94\x8a\x88\x26\x2b\xfa\x34\x9b\x1d\x4b\xc0\x89\x6e\x58\xa4\x03\x66\xe9\x94\xde\x92\x6e\x3f\xbf\xdd\x69\x7a\x66\x47\x1e\x05\xc6\xd2\x56\xe8\x11\x11\xff\x5c\x44\x66\xf6\xce\xe3\xcc\x45\xc1\x46\x5b\x8e\x21\x85\xba\xa2\xfd\x96\x68\x2a\xeb\xdd\xd6\xda\x7b\x45\xaf\x27\xd4\x70\xcc\x9e\x35\x73\x61\x2b\x04\x30\xd5\x83\x45\xd8\x51\xf0\x5a\x73\x5b\x19\x99\x01\xf8\xa8\xa1\xc7\xc6\xba\x66\xfc\xce\x23\x8c\xb5\xf4\x56\x56\xde\x07\x60\x1c\xc9\x70\xbb\x2c\xb6\x70\xa4\xec\x46\x55\xd5\xea\xec\xd4\x5b\xf5\xe8\x26\x6d\x67\x43\x3a\x4d\x3b\xd2\x69\x98\xa3\x3e\xdf\x0d\xc3\x5e\x3e\x68\xdd\xb8\x69\xcc\xce\xcb\x96\x22\xbf\x8a\x00\x80\x65\x18\xfc\xb5\x13\x54\xd0\x7b\x53\xb3\x83\x4e\xad\x37\x70\xf2\x58\x21\x54\x14\x2a\xf5\x55\x5e\x02\xee\xa7\xb0\xf6\x8e\x7d\x27\x7c\xa9\xce\x85\x92\xf1\xb4\x89\x69\xee\x84\x13\x61\xb9\x98\x17\x6c\x9f\xe6\x6f\xe7\x72\x0c\x47\x2e\xf0\xb6\x87\x03\x41\xbf\xbb\xd5\x9e\x1d\x3c\xb8\x6b\x90\xb1\xc8\xd2\x21\x6b\x77\x6a\x8c\x61\x2c\x77\x72\xc2\x68\x85\x05\x21\x53\x9a\xd3\xb1\x91\x25\x91\x3c\x34\x91\x12\xb8\xcd\xce\xea\xef\x45\x3e\x32\x7c\x44\x96\x0e\x69\x69\xef\x8f\xae\xb7\x40\x63\x86\xdb\xd5\x0e\xf9\x7b\x77\x2f\x77\x6a\xc7\xbf\x97\x24\x92\xb5\x52\xdc\x51\xa6\xe6\x1e\x93\x43\xeb\xe3\xab\x9c\x1d\x24\x43\x0a\x84\x97\x6a\x86\x54\x12\x4d\x4d\xd6\x58\x12\xb9\x14\x8d\x4f\x19\x70\x36\x35\x8c\x8d\xbc\x29\x66\xbc\x64\xb9\xbc\xaa\xb3\x05\xa6\x94\xc3\xfe\x13\x7b\x97\x94\x13\xc3\x34\x20\x5b\x66\xe7\x78\x89\x37\xaf\x22\xaf\x35\xcb\x96\xe6\x22\x4d\xf0\x9e\x19\xaa\xd7\x0f\x7f\xf5\x75\x27\x55\x86\x0f\x6e\xfe\xca\x72\x44\xf6\x3a\x1d\xf1\x2c\x03\x67\x1d\x33\xb8\x6b\x46\x4b\xb1\xed\xc1\xdf\xc4\x3b\x48\xd1\x75\xb8\x15\x05\x08\x01\x22\xa7\x33\x31\xe1\xa5\x3c\xb7\x1f\xf0\xe6\x1e\xc1\x15\x75\xcd\x8a\x85\x3f\x12\x39\xb6\x80\x59\xb0\xf7\x04\xb8\x9b\xd8\x9f\x18\x8c\x52\x0e\x2f\x33\xf8\x2c\xbb\x1b\x30\x74\x66\xba\xc6\x00\x35\x92\x61\x50\x10\x61\x6f\x25\x67\x8f\x09\xfd\xf2\x05\x61\xa3\x91\xe4\x1b\x38\xb2\xc5\xde\x50\x94\xb6\x44\x2f\x35\x72\xfa\xb3\x82\x8f\x0b\x26\xf4\x45\x45\x7e\xe5\x37\x0c\xa2\x48\x18\x26\xb0\x32\x9d\x88\xdc\x4c\x58\x39\x61\x92\x3e\x08\xb9\x04\xbc\x90\x63\x88\x70\x34\x92\x15\xa2\x64\xca\x0b\xcd\xcc\x14\x6c\x08\x1b\xab\xd6\xcc\xa0\x92\xb3\xaa\x30\x5f\x7f\x6f\xb7\x70\xed\xf5\x42\x68\x4e\x5d\xce\x55\x19\xc1\x43\xe0\x0c\x46\xe4\xde\x23\xd2\xa8\x2b\x37\x92\xcc\x86\x41\x56\x05\x6e\x0a\x1e\x85\xb0\x4a\x03\xc6\x72\x32\x9f\x25\xa0\x26\x9a\xce\xb3\x32\x9d\xc9\x55\x4f\xa7\x52\x06\x9a\x83\x92\x8a\xea\x99\x79\x73\xc7\x4d\x76\x58\x60\x33\x38\xb9\xa8\x70\xba\xe0\xc0\xa5\x22\x92\x22\x02\x2e\xe3\x78\x4e\x21\x01\x1d\x50\x78\x5a\xe2\x70\xf5\x8e\x1b\x56\xbf\x60\x63\x09\xab\x90\xc4\x06\x51\xa9\xb2\x7b\xa2\xa4\x05\xba\xe7\x7b\xc7\xd9\x60\x74\x26\xa5\x2b\xcd\xa6\xe1\x82\x28\xba\x05\xa7\x3d\x95\xeb\x96\x96\x77\xf2\x88\x66\x4e\x7b\xe6\xd0\xa9\xeb\x48\xe1\x9f\x44\x2d\xc4\x73\x3d\xba\xb8\x42\x0c\x2d\xb8\x3d\xef\x51\xaa\x60\x53\xf0\x56\x90\x1c\x6f\x48\xaa\xea\x08\xa2\x59\xa8\xb6\xae\x56\xc7\x2a\x98\x21\x7f\x01\xab\x60\xda\xae\xc0\x26\xe0\x45\x77\xaa\xc7\xe4\x18\xa0\x68\x7e\x69\xd9\xfd\xa6\xa0\x79\xb7\x15\x06\x42\x34\x73\xdb\x09\x18\x12\xb3\x0e\x0e\x91\x68\x3b\xd3\x52\x5a\x29\x3b\x22\xcf\xd4\x19\x81\x18\x23\xd1\x5b\x6b\x69\x1d\x4c\xc2\xbd\xac\x57\x9e\x87\x5a\x8e\x3c\x61\x1f\xc1\x1d\xcc\x9d\x95\x36\x9e\x74\x27\x56\x73\x57\x83\x3b\xcf\x90\xb5\x53\xcc\x93\xb3\xe9\xa6\xdd\xac\xb9\xe2\x34\x87\xc1\x84\xbd\xba\xd4\x79\x03\x34\x77\xb5\x04\x65\x91\x8e\xc7\xac\x00\x13\x0f\x4b\x1a\x2a\x1a\x00\x72\xa9\xb8\xa6\x4b\x47\x1e\x9b\x6b\x45\x3a\x46\xe3\x32\x37\x7f\xd4\x74\xf4\xf4\x15\xd2\x2c\x10\x83\xec\x4c\x2e\x71\xcc\x97\x72\xd0\xc2\x7f\xcb\x91\x90\x15\x98\x01\x98\x83\xc8\x9b\xaf\x50\x5c\xe1\x93\x27\x72\xd9\x9e\xe8\x53\xad\xe8\x27\x4a\xe5\xba\x87\xe0\x34\x79\xf7\xc3\x80\x49\xb2\x99\x8e\x52\x7c\x53\xf6\x57\xa0\xd6\xfe\x00\x84\xae\xf9\x0c\x9d\x0e\x5c\xed\xb2\x96\x7a\x62\x7d\x97\xdd\xd0\x5c\x52\x62\x05\xd0\x0a\x47\x3a\x36\x1c\xa8\xe6\x8f\x8d\x56\x2d\x22\x94\x94\x93\x79\x7e\x05\x92\xb7\x64\x2f\x4a\xe0\x18\x59\x26\xab\x4a\x80\x39\x50\x4a\x0d\xf0\xa6\xa0\x33\xe4\x9d\x50\x36\x83\x3d\x01\xfb\x11\xa3\xb3\xcd\x95\x3d\xea\x90\x17\x4a\xd7\x22\xbf\x5b\x61\x33\x26\xaf\x78\xa1\xc0\x29\x3d\x78\x04\x17\x07\xa8\x90\xf8\x70\x6e\xe7\x3d\xe2\xea\x49\x03\xd4\x58\xeb\x30\xd0\x4b\x32\xa3\xc3\x2b\x3a\x66\x31\x39\x90\x9b\x68\xf7\xdb\x76\x81\xcb\x0c\xb9\x77\xe7\xc0\x0b\x99\x75\xa8\x5b\x3b\xa5\xb5\x41\xb1\x1f\x5e\xa0\xea\x69\x32\xaa\x2d\x6f\x35\x93\xb6\xe7\x03\x2b\x98\xf2\x8a\x97\xb0\xfe\xf7\xff\xfa\x7f\x6f\xe4\xe5\xa2\xd8\xaf\xff\xfd\xbf\xfe\x3f\x75\x30\x34\x2f\x47\xc6\x9c\x27\x24\x4d\x18\x95\x98\x7d\xc5\xd8\xcc\x8c\x46\x2b\x38\x40\x19\x2a\x38\x6c\xc2\x90\xe6\xf2\xda\xe6\x45\x02\x08\x56\xb0\x59\x46\x17\xa0\xff\xd0\xf7\x0b\x6a\x41\x50\x81\x22\x6f\x7c\x73\xcf\xa0\x38\x9f\x81\x5e\x0a\x97\x31\x61\xd7\x25\xe7\x99\xb8\x8c\xc9\x9e\x61\x39\x41\xdf\x21\xaf\x63\x33\x42\x78\xa6\xbe\xb4\x9e\xad\x68\x3d\x29\xd9\x3b\xe5\xac\x7b\x69\x04\xc6\x4b\x7d\xec\x83\x79\xcd\x05\x33\xf7\x1f\xdc\xe3\xa0\xcb\xa6\xb9\x7a\x07\x73\xb5\x9d\x4d\x6c\xbc\x5e\xf4\x57\xbc\x40\xab\xac\x3c\x45\x8d\x84\xd1\xc1\x50\xd7\x22\x0b\x56\xcb\xf2\xce\x3e\xd4\x23\x5e\xa2\x36\x21\x92\x94\x5a\xab\x89\x28\x19\xce\x45\xc9\xa7\xae\x3e\x44\xde\xce\x72\xa6\x80\xee\x3e\xcf\xc6\x0d\x87\x80\x59\x6e\xbc\x23\x43\xda\x72\x5e\x06\xab\xcd\xa9\x33\x9b\x08\x71\x45\x3b\xb5\x77\xab\xe9\x05\x27\xe4\x5d\xac\x8f\xfc\x97\x10\x55\x63\xd9\x85\xba\xa7\xb0\x49\xe9\xb1\x3c\x5c\x15\x90\xf2\x9b\xb4\xde\x0b\x56\x9d\x3b\xee\x8c\x58\xe4\x43\x43\x5b\xaa\x37\xaf\x73\xd9\x2b\xba\x6f\x82\x6c\xd4\xa9\x11\x96\x8d\x4f\xe1\x93\xe2\x97\x1d\xc3\xa3\xfe\x9a\x84\xd9\x5f\x33\x18\xa8\x46\xfd\xab\xac\x09\x1a\xdb\x54\x88\x19\x43\x19\xca\x60\xd6\x8b\xfa\xc1\x7a\xf2\xf0\xb2\x71\x69\x05\x9e\x19\x58\xa8\x5f\xaa\x59\x0d\xc7\x6e\x96\x54\x24\x6f\xf3\x14\x24\xff\x0b\x74\x00\xbe\xce\xa0\xed\x7e\x8d\x54\x7f\xa6\x33\x27\x1c\x7d\x43\x4f\xf6\x25\x2b\xe0\x91\xb2\x25\xc2\x78\xc8\x2b\xa8\xf6\x75\xde\x8c\x06\xcc\x12\x9f\x32\xc3\xbe\xed\xda\xea\xae\x67\x8e\x2e\x6c\x37\xe9\x7c\x70\xd6\xf5\x0c\xc7\x89\x24\x7b\x43\x26\x3c\xd5\x8c\x15\x9e\x80\x4f\x70\x55\x03\xea\xed\x61\x38\xcf\x3c\x35\x74\x8d\xcc\x0a\xc2\x08\xde\x74\x10\x9c\xcb\xea\x07\xec\x55\x2c\x30\x94\x09\xb8\x3c\x03\x91\x97\x94\xb8\x7a\xe5\x66\x9c\x2a\x39\x5d\xf1\x05\xfa\x11\x81\x24\x8b\x9c\x4e\x53\xc9\xab\x2c\x62\xa7\x5b\x9a\x09\x5e\xe9\x5b\x01\x33\x9d\x13\x4a\x26\xa0\xac\x96\xe0\xe1\x3e\x65\xf2\x6e\x49\x05\xa4\x82\xb7\x6f\x5c\xcb\x24\x09\xb9\xcf\x5a\x3d\x75\xe6\xac\xa0\xbe\x65\xcd\x9a\x49\xaa\x98\xe6\xa2\x64\x34\xa9\x8a\x12\xd7\x3c\x4d\x6e\xeb\xe8\x57\x81\xbb\xa3\x91\xd9\xe9\xad\x4e\x46\x70\x07\xf3\x85\x1a\x45\x17\xc4\x0a\xd2\x42\x45\x41\xe7\xb4\x57\x75\x0d\x09\xfe\xa4\xa2\xe9\x38\x4f\x6b\xf1\xe1\xd1\xe1\x99\xf1\x20\x0d\x51\xf3\x30\x2f\x19\x90\x29\x54\xb3\x2f\xc8\x8c\xa7\x79\x89\xd6\x1e\x86\xd9\xc2\xa0\x89\xe9\xb5\x64\x0b\x07\x05\x2d\x52\x73\xed\x39\xeb\x6b\xab\x4b\x61\x6d\x9a\xe6\xe9\x14\xbc\x7a\xcc\xfb\x28\x1f\xf9\xe2\xb5\x06\x21\x6f\xc8\x29\xbe\x92\x61\x78\x3b\x60\x9e\x35\x63\xe5\x00\x90\xf4\x94\x0b\x9a\x29\xdd\x8a\x09\x15\x30\x4e\xcb\xc9\x7c\x10\x0f\xf9\xb4\x5b\x0e\x9f\xfd\xd8\xd5\xf5\x9c\x47\xd8\xba\x7d\xb7\x5f\xdb\x9e\x77\xe0\x45\xc1\x46\x3b\x2e\x19\xe2\xf3\x92\x15\x46\xd0\x21\xbb\x56\x9a\xdc\xf1\x48\x80\x6c\xa8\x1f\x32\x89\x17\xb5\x4e\xf3\xc8\x35\xab\xe2\x69\x2f\x5c\x2e\x8e\xd4\xf2\x70\xd8\x52\x4a\xd5\xf9\x42\xb3\x0e\xa0\x0e\x90\x97\xf4\x80\x21\x2d\xa1\x02\x1f\x7e\xb0\x6a\x1c\x0c\xc2\x80\x50\xcd\x95\x42\x04\x2f\x32\x72\x29\xb1\xeb\xb2\x6e\x24\xd6\xae\xd7\x19\xf2\xad\x64\xc5\xdc\x27\x26\x9a\x4b\xfe\xca\xac\x90\x86\x64\x06\xe9\x40\xd4\xc3\x95\x27\xd7\x51\x5e\x05\xbb\x6e\xdf\xde\x50\x76\x92\xd4\x6b\x56\x00\x8f\x4c\x46\xf3\xa2\x9c\xb0\xc2\x81\xc9\xe4\xe5\xaa\x4c\x9f\x55\x88\x6f\x03\xc0\x02\x75\xe6\xd5\xd5\x7f\x9a\x01\x6c\xd7\xa9\x0d\xf4\xa2\x55\xbc\x88\x75\xba\x1f\xbd\xa8\x8f\x1c\xab\xb9\xd0\x61\xb8\x2e\xa2\x8c\x47\x19\x0c\x14\x45\x16\xf4\xd2\x5a\xaa\x10\x08\xe0\x15\x74\x66\x81\xde\xd7\x0e\xd4\xa0\x03\x26\xf2\xf3\xbe\x13\xe2\x7d\x6d\x5b\xdd\xaa\xdb\xaf\xe3\xce\x1c\x0c\xc2\xef\xdb\x69\x82\x6e\x36\xc2\x39\x3b\xfe\x61\x6a\xbb\x2d\xdd\x86\x26\x77\x91\xd3\x7a\xdb\x03\x75\xeb\x2a\x24\xe0\x9f\x08\x4e\x60\xcf\x35\xca\xa8\x84\x55\xd7\x6d\xdc\xe8\xea\x5e\x73\x8f\x4c\x76\xc9\x6f\x13\x96\x83\xf0\xaf\xac\x02\x94\x55\x18\x48\xa3\xfd\x35\x49\x5a\xfb\x6b\xb5\xda\x6f\x29\x01\x01\xce\x83\x8a\x4b\x41\xd3\x37\x97\xf3\x3e\x9e\x16\xe1\x2b\x35\x04\x21\x43\xed\x6b\x7a\xcd\x20\x40\xe7\x0c\x38\x01\xa1\xa0\x54\x4c\x33\xac\x9d\xc3\x8a\x17\x41\x3f\xf7\x88\xd6\x96\xa5\x5a\x1a\xc0\xb6\xf9\x4b\x99\x28\x3a\xbb\x60\xfe\x54\x9f\x34\xb6\x6c\x9b\xbf\x22\x4d\x17\xdd\x9b\x75\x3b\xf8\x0d\x0b\x8d\x8b\xbe\x55\xd9\x34\xee\x48\xfa\xfa\x79\xd2\xf1\x79\xfd\xe4\x19\x8f\xdc\x1a\x33\x50\xe7\xc1\xcd\xb3\x18\xfd\x12\xe3\x9e\x1b\x5a\xe4\xae\x87\xc9\xbc\x4c\x33\xd1\x55\xa5\x2d\x3f\xda\xd4\x98\x95\xc6\xff\x03\x56\x00\x4e\xf7\x5b\x26\x04\x1d\xb3\x36\xb8\x19\x7b\xd2\x11\x24\xdd\x31\x33\x20\xbb\x1a\x85\x1e\x3f\x76\xe5\x92\x1d\xbf\xea\x91\x94\x1a\x77\xdd\x76\x8f\x1f\x93\x56\x7f\x4d\x4a\x17\xb6\xd0\x18\x74\xb6\x3b\x52\xea\x90\x9f\x3f\x7f\x26\x2d\xa3\xe9\x6a\xf9\xfb\xdf\x7a\x0d\x2a\x25\xd5\xbf\x05\x05\x9d\x3d\x25\xad\xc8\x20\x2d\x76\x74\xc5\x16\x08\x56\x01\x50\x81\xf1\x30\x61\x03\x0a\x3a\x67\x5c\xf9\x2a\x5a\xf5\x9a\x63\x5f\xe4\xc4\x5d\x73\x4c\x8d\xb4\xa1\x84\x3e\x04\x00\xc8\x53\x0d\xc9\x53\xe1\x3c\x6b\x4e\x38\x28\xf1\x55\xc0\x0d\x47\xd9\x80\x4e\x4c\xf3\x2c\xd3\xac\xa0\xbc\x0a\xec\x10\x5b\x95\x68\x5b\xb0\x77\x4c\x91\x61\xd8\xbc\xd3\x09\x9d\xb1\xdf\x70\xa3\xf5\x1e\xa6\xf9\x6c\xae\x25\x1c\xcd\x19\x47\x66\x76\x73\x03\xe0\xaf\x6c\xb1\x4f\x87\x13\xd7\xf7\x51\x55\xaf\xf1\x47\xd7\x80\xac\x47\xba\xf6\xa1\xf0\xf6\x3a\x40\x0b\x10\x57\x2b\x07\xfb\x05\x69\x05\xef\xe8\xc6\x1f\x63\x46\x85\xa7\x8a\xc4\xf3\x41\xb6\xa1\x85\xb3\xec\x44\x85\xfe\x36\xd2\x88\x1a\x5f\xcb\xb1\x0d\x70\x26\xe3\x66\xb8\xdb\x08\x5f\x1a\x5b\xd0\x09\x49\x38\x13\x8e\x9c\x2c\xb7\x2b\x4d\x34\xdc\x98\xbc\xa5\x57\x92\x05\x52\xcf\x14\xe1\x80\x01\x09\xc0\x01\xce\xb3\x51\x01\x85\x8d\xe5\x3a\x26\x5c\x30\x7d\xd7\xd3\xc2\xca\x2d\xb0\xd5\xde\xcb\x7a\xa0\x8d\xb0\x5b\xda\xa9\x8c\x5e\x32\x4a\x70\x18\xdc\xfd\x78\x4a\x5a\xe0\x0a\x61\x77\x1b\xa8\x2c\x3a\x42\xc8\xda\x9f\x6e\xcd\xe9\x53\x09\xd3\x6c\x17\xf1\x14\x08\x73\xb7\xdf\x17\xed\x1e\x5d\xff\xe7\xe7\xbd\xf5\xff\x3e\x7f\xda\xe9\x76\x7a\x9b\xe7\x78\xa2\x62\x62\x98\x01\xeb\x4a\xe3\x33\x02\x35\xef\x8e\x30\xcc\x76\x4b\xe2\xd3\xb6\x1a\x86\xbb\x47\x18\x6c\xaa\xbf\x16\xc9\x6f\x9a\x22\x54\x8c\x00\x3c\xfc\x0d\xb1\xd4\x9d\xc4\x28\xcd\x4a\x56\x38\xd1\xb2\x30\xcf\xbc\xb7\x78\x8f\xcc\x0e\xf8\x56\xa3\x58\xf7\xf1\x63\xf2\xa8\x7a\x5c\x9c\x80\x07\xfa\x82\xf2\xc7\x54\x13\xa8\xcb\xed\xba\x01\xa2\xe7\xda\xdb\x71\xd0\x38\x00\x6e\x13\xe0\x56\x30\xc1\xd2\x06\x5c\xe9\xa6\x96\x9b\xf2\x04\xca\xf5\x82\x83\x75\xc5\x16\xb8\xda\x6a\x7b\x70\x63\x82\xb6\x75\x7b\x63\x03\x8a\xd6\xa1\x5f\x4c\xb0\x9e\xe5\x1a\x39\x19\xa5\x79\x02\x26\xe8\x4a\x6e\x47\x13\x51\x4d\x2a\xe5\x88\x34\x25\xdc\xf6\x06\x73\x17\x96\xc4\xc4\x99\x3a\x80\xd1\x8f\x00\x48\xdd\x13\xc7\x98\xc4\xa7\xa8\xf2\xf4\x16\x5a\x44\x05\x62\x6a\x29\x1d\x2e\x6f\x2d\x11\xbc\x63\x8b\x1d\x52\x6a\xad\x54\x84\x1b\x9e\x04\x1f\x92\x80\x31\xd2\x9a\x2a\x55\xad\xed\x58\xba\xde\xcd\x1a\x79\x9c\xbd\x0f\x70\x75\x45\xe1\xc9\xca\xd7\xa6\x7e\x2c\x56\x3d\xa5\xff\x44\xc3\x0e\x73\x07\x5a\x7b\x09\x4b\xc8\x5d\x4d\x52\x83\x21\x2f\x34\xaf\xbf\x6d\x2b\x1c\x67\xc8\x50\x4e\xe9\x02\xdb\x2b\x95\xb9\x73\xc5\xab\x4b\x39\xe1\x79\xbf\xdf\x2a\xb5\x12\x09\x52\x4f\x50\xf5\x08\x85\x8a\x19\x7b\x5f\x47\x08\x4b\xdf\xd1\x73\xc1\x96\x5d\xd0\xb5\xcf\xa5\xca\x61\xce\x58\x06\xbf\x3b\x39\xfe\xe5\xe0\xe2\xfd\xd1\x5f\x8f\x8e\x7f\x3b\xba\xd8\xdb\x3f\x3b\x3c\x3e\x82\xf0\x88\x6f\x69\x39\x89\x0b\x9a\x27\x7c\xda\xee\x58\x5e\xe8\xd9\x77\x9d\x18\x62\xd3\xc3\xaf\xef\x3b\x4e\x04\x40\xc4\x7d\xdb\x6f\xd5\x06\xab\x0e\x7b\x60\x40\xb7\x9d\x3f\x08\x23\x6e\xa4\xd8\x31\x2b\xf8\x40\xbf\x0e\x52\x82\x73\x82\x7e\x63\x75\x8e\x5f\xaa\x3d\x28\x8b\x85\xb5\x91\x85\x6f\x15\xdc\x96\x94\x88\x17\x84\x83\xb5\x85\x7e\xb1\x49\x73\xc8\x09\x26\xd7\xf3\x49\x7f\x4d\x91\x96\x9c\x4e\x99\x98\xd1\x21\xe2\xc5\x02\xae\x54\xe7\x1d\x51\x99\xad\xc7\xe4\x10\x37\xaf\xde\x72\x1c\xf6\xdb\x7f\xc7\x1c\x35\xd9\xb0\xcf\xf3\x8c\x09\x41\xd2\x32\x40\x64\x80\x91\xe6\xea\xfd\x06\xf2\xa3\xdf\x69\xa4\x2e\x79\xb3\x31\x2d\x12\x80\xa8\xe8\x21\xc0\x71\x9e\x6c\x9a\xf0\x3d\x44\x75\x0c\x81\xa8\xf4\x2a\x12\x5f\x3d\xd4\x54\xf7\xc9\xad\x67\xdc\x0f\x42\xdd\x12\xd6\xc4\xd8\x7a\x57\xac\x77\x45\xe4\x5b\x69\x03\xbc\xb0\x92\xb5\xc2\x02\x43\x25\x34\x9e\x18\x4e\xd2\x2c\xb1\x27\x8d\xe6\x09\x19\x53\xd8\x66\x94\x2e\xd1\xdd\x0d\x42\xfc\x07\x86\xe0\xea\x15\x58\x79\xfb\xe0\x60\x81\xce\xdb\x17\x50\x4d\x6a\xa0\x58\xad\x27\x12\xa1\xda\x01\x7a\xce\xe3\xbe\xe2\xca\x68\x93\xf7\xea\x97\xc7\xef\xd3\x35\x8a\xaf\xe9\x06\x25\x6b\xf5\xc2\x8b\x0f\xdd\xc0\x21\x26\x38\x43\x9e\xb3\x98\x1c\xe7\x0c\x4e\x84\x79\xca\xe7\x83\x92\xa6\x39\xae\x43\xa9\x2c\xfc\x25\x29\x3a\x38\xfd\x8e\x5c\x2a\x99\xef\x09\xa1\x86\x6a\x89\x4b\x22\x16\x79\x49\x3f\xc6\xae\xd6\x59\x3d\xb0\xc8\xb5\x57\x58\x08\x10\xed\xd1\xd5\x78\x6e\xec\x0a\xf4\x39\x29\xe5\x69\x52\xca\x36\x8b\xbf\xa1\xfc\x8f\xe3\x6b\x24\xfa\x53\x72\x43\xbd\x53\x62\xde\xed\xeb\x0e\x9b\x1a\x5a\xc1\x86\x7c\x9c\x83\xe9\x39\xb5\x5e\xd6\x8d\xbe\xd9\x7b\x55\x17\x01\xcf\xe7\x1c\xf1\xce\xdc\x3e\xc6\xb8\x0e\x00\xaa\xd1\x6a\xac\x92\xc3\x1b\xcc\xd3\x0c\x8c\x0a\x5d\x84\xab\x33\x48\x0f\x7c\x44\xaa\xf6\xcd\xbe\x1c\x10\x32\x15\xf7\x95\xb5\xe0\x61\xca\x08\x15\x26\x82\x58\xdd\x13\x52\x55\xea\xf1\x1f\x91\x74\xb4\xc1\x5d\xb7\xa6\x1b\x95\xf0\xbe\x51\xdd\xeb\x2f\x22\xa1\x98\xda\xc6\x3b\x87\x68\xad\x45\xbb\x75\xc4\xcd\x16\xcd\x0a\x7e\x9d\x26\x0a\x37\xe5\x30\x83\x1b\xc8\xd1\x2e\x86\x71\x0a\x97\x8f\xa1\xee\xed\xc3\x5b\x55\xcd\x84\xd7\x71\x6b\x36\x4c\x4d\xb8\x19\x35\xbb\xe7\x41\xd5\x7c\x5a\x45\x72\x01\xc6\xdf\x49\x88\x9e\x7f\xc9\xc2\xd7\x42\xfc\x74\x1b\x8a\x4c\x80\xb1\x7b\xc0\xe9\xa6\x3c\x87\x2b\xde\xef\xd9\x79\x5d\xad\x61\x88\x2b\x13\x0a\x62\x0f\x29\xad\x5b\x6d\x27\x75\xa1\x3e\x83\x43\x02\x2c\xa4\xff\xae\x21\x14\x4b\x1c\x86\xd8\x94\x52\x0f\x68\x18\x4c\x34\xcd\x8d\x73\x58\x1d\x37\x96\x86\xf7\x71\x5b\x2f\x87\xab\x9d\xf2\xe2\x71\x6e\xfa\x98\x5f\x33\x8d\x0a\xa3\x54\x53\xa7\xee\x41\xfc\xbe\x87\x48\x0e\xf0\xc6\x53\xe5\xa0\x83\xe4\x0a\x2a\x1f\xc5\x51\x78\x3b\xb5\x54\xe5\xe3\x85\x65\xf4\x3b\xad\x3d\xa3\x41\x95\xc6\x43\xa8\x7c\xac\xf7\xd1\x28\x27\x78\x31\xd7\xe6\xf5\x5a\xe2\x31\x5b\x63\xe8\xd8\x85\x22\x64\x17\x92\x92\x85\xe7\xcc\x90\xb3\x8b\xea\xa3\xf8\x05\x92\xb4\xb0\x49\xef\xc2\x79\x18\xf7\xa5\x32\xff\xf0\x5f\x78\xd1\x50\xd1\x43\x15\xf5\x4d\x30\xd8\x57\x5c\x82\x23\xbb\x88\x99\x35\xb5\xcd\xb4\x4c\x4d\xcd\x90\xd7\xc0\x09\x0d\x0f\x2a\xaf\xb6\x1e\xa4\x25\x14\x54\xf6\xcc\x1c\xf5\xad\xc6\x97\x46\xf5\xee\xc5\x55\x5d\xef\x55\x01\xc0\x05\x5a\xd9\x6c\x62\xc7\x88\x2b\xa1\x1e\x7a\x9d\x51\x9b\x26\x1e\x2e\x38\x3f\x3e\x7f\xae\x4c\x54\x9e\x8c\x9a\xc5\x72\x49\xb0\x21\x21\x0e\xa4\x17\x0e\x4a\x6d\xe3\xfe\xd8\x98\x29\x6b\xd1\x9a\xf5\x1d\x4c\xf3\x04\x85\x0d\x70\xcb\xe4\x85\xb2\xf1\x51\xbf\xac\x9b\x53\x7d\xc0\x16\x52\xf1\x50\x08\xac\x89\x14\x1c\x15\x05\xd7\xe5\x7b\x4c\x28\xdc\x20\x9a\xcb\xca\xcc\x38\x75\x9c\xa6\x78\x61\x18\xf0\x8a\xaa\x0d\xa0\x01\x93\x22\x6f\x22\x94\x0a\xe0\x1b\xf2\x41\x66\x2a\x98\x97\x20\xd1\x4c\xb6\xb1\xbe\x42\x5b\x77\x7c\x0f\x62\xc8\x92\x49\x16\xd2\x31\x84\xd6\x0e\xb3\xb1\x49\xb1\x06\xbe\x00\xd4\x35\x1c\x53\xef\xa8\x60\x93\xae\x05\x69\x09\x17\x03\x13\xa0\x47\x89\x59\xbb\xb7\x0b\x6f\x4f\x44\x9c\xf0\x53\x6d\xef\xd5\xee\x74\x20\xbd\x49\x01\x11\x3c\xa1\x23\xb9\xa4\x96\x25\xac\x58\xac\x19\x1b\xb0\x4c\x70\xe0\xef\xac\x08\xe1\xa8\x7c\x50\x2b\x99\x16\x72\xe0\x6a\x6f\x22\x13\x40\x66\x0c\xda\x01\xc7\xd6\x52\x6d\x77\x55\x5e\xd0\x6c\xe8\x67\xdf\x6a\x51\xcf\xa4\x49\x7c\xb0\x1b\x0a\xd0\xd4\xa6\xba\x81\x30\x1a\xe4\x81\xe5\xb2\x00\x86\xc0\xd1\x62\x80\x76\x13\x59\xb2\x10\xcd\x13\xba\xb5\x16\x59\x67\xae\x49\xfe\xa5\xb3\x88\xd7\x34\xcd\xd0\x56\x42\x39\x0c\x6b\x8f\xc4\x27\xd6\x67\xa8\x89\x6f\x37\x0b\x86\x6f\xfc\xb0\x44\xd3\x74\x9a\x0e\xaf\xd0\x48\x94\x11\x5e\xa4\x63\x49\x9f\x0d\x73\xae\x31\x19\x20\x22\x36\xfb\x87\xc2\xc7\xe9\xd2\x1f\x36\x38\xa4\x68\x75\x90\x62\xfb\xa9\x1f\x15\x82\x0a\x6d\xab\xac\xf7\xef\x32\x52\xaa\xab\xc0\x66\x19\xd7\xd4\xf1\x9c\xf6\x00\xdd\x25\x18\x54\xa8\x90\xf0\xc9\x87\xa8\xd0\xa1\x8a\x21\xa0\x41\xb0\x06\xc6\x56\x8d\xf8\x0e\x7a\xe7\x76\xd4\xe0\xd7\x17\x74\xe7\xda\x0b\x48\x02\x5e\x33\x1a\x2f\x50\x43\x45\xab\x54\x9d\x3b\x31\x5a\x5b\x4b\xcc\xa4\x3c\xe8\x98\xa6\x6b\xcd\x9b\x79\xf0\x01\x85\x52\x43\xdf\xe4\x05\x69\xc9\x7f\x5b\x64\x9b\xd4\x4e\xa2\xa3\x54\xd3\xf2\x9f\x97\xa9\x32\x2e\x2b\xd2\x92\x91\xbe\x7e\xb0\x0d\x46\x38\x2a\xf8\xb4\xbf\xe6\x2a\x00\x4d\x4d\x10\xc1\x6b\xab\xbf\xa8\xbe\x5b\x5c\x55\x25\x85\x60\x68\x46\xda\x1b\xf0\x79\x65\xa1\x96\xca\x7c\x57\x77\x0b\x7b\x57\x5e\xdc\x67\xcb\x0b\xab\x0e\xcc\x03\x9e\xee\xd0\x15\x7f\x9a\x50\xa2\x59\xb2\xaa\x99\x81\x96\xaf\x56\xbf\x86\x9b\x62\x84\xd6\x00\x57\x77\xbd\x8d\x7c\x39\x9d\x71\xc1\x84\x3a\xa0\xeb\xe6\x8d\xca\xaa\x65\xe0\xa9\x1c\x73\xae\x95\x9c\x64\x6c\x54\x2a\xdd\x89\x2c\x9a\x72\x51\xfa\xe4\x41\x5e\x2a\x25\xbd\x62\xd6\x79\xca\xdc\xea\x12\x09\xd2\x52\x4b\xae\xca\x0d\x2b\x1d\xe7\xb4\x9c\xa3\xa9\x2f\x40\x42\x52\x22\x64\x6b\x30\xd2\x96\x03\x94\x68\xd7\x4c\x8d\xe3\x38\xf6\xe3\xdd\x09\x2f\xe0\x1d\x86\x7d\xc0\x89\x36\x07\xaf\xdb\x73\xad\x6e\xe4\x25\x82\x2f\xa6\xaa\x7f\x45\x6d\xab\xcb\x83\x93\xaf\x59\xa2\x57\xae\xed\xb5\xea\xbd\x3d\x8a\xc8\x38\x22\x93\x8e\xbc\x9d\xd2\x84\xe5\x65\x3a\xa4\x19\xe8\xc6\x78\xaa\x22\x01\xb5\xe3\x38\xa6\xc5\x58\x74\x20\x02\x4e\x7b\xdc\x9e\x98\x92\x4e\xc7\x66\x94\x5b\xa2\x4e\x81\x9e\x14\x8a\x59\x79\x21\x63\x79\x8d\x9c\x18\xa9\xf5\xda\x25\x7b\x45\x41\x17\x6d\x59\xad\x13\x69\x21\x41\xca\x17\xf2\xaf\x9f\xa0\x39\xfe\x70\xce\x0c\x34\x35\x8c\xad\x15\x14\x2f\xc2\x40\xe7\xf2\x58\x40\xe5\xa5\xaf\xcb\x96\x7f\x74\x23\xfe\x59\x63\xdc\x62\x5c\xe7\x02\x54\x0b\x7b\xb3\x0e\xb6\x14\x73\x1b\x84\x6c\x11\xa3\x10\xe2\xbc\x52\xd1\x88\x0c\x9a\x47\x58\x33\xbc\xf6\xe0\x6e\x86\xd6\x8c\x5d\xe7\x7a\x80\xad\xb9\x5f\x9e\x8d\x7b\xa5\xd8\x58\x92\x5b\xa3\x39\xa5\xc6\x17\x67\xd2\x58\x12\xf6\x9e\xdc\xc2\xff\xf3\x43\xde\xab\xfc\x18\xea\x92\x50\xa8\x6b\xed\x7e\xf0\xb7\x1f\x6b\xc7\x06\x8a\xa9\x8b\xfb\x00\x3e\xd4\xcc\x8d\x26\xa1\x95\xdd\x86\x4f\x43\x96\x5b\xc7\x10\x96\x9f\x9c\xf0\x0e\x96\x59\x47\xae\x12\x54\xae\x10\x55\x9f\x95\x98\x54\x89\x8a\x2b\x11\x99\xa8\x15\xec\xe3\xac\x60\x42\xe8\xb3\x0b\x9e\x0a\x93\x82\xe7\x7c\x2e\xdc\x07\x19\x60\xfa\x87\xa9\x00\xa7\x71\x70\x35\xe6\x05\xc9\xf8\x78\x0c\xae\x1a\x2e\x8f\x36\xa3\x8b\x8c\x53\x27\xba\xe7\x29\x6b\xf0\x38\x52\x06\xa1\x8a\xc4\xf8\x73\x71\xfc\x9b\x0c\xa0\x5f\xd8\x90\x4a\x6e\xd8\x59\x9a\x54\x78\x3e\xda\xee\xe8\x55\xe0\x11\xa5\xd9\x56\x06\x9c\x20\x08\x58\xc6\xd5\xae\xbd\x0a\xb3\xa3\x69\x35\xd0\xa1\x09\x4d\x1d\x52\x6d\xbc\x5d\x08\xa3\x72\x13\x02\xef\xa8\x81\xf6\x82\x0b\xd8\x51\x29\x66\x18\xa7\xf0\xcb\x80\xea\x52\x41\x72\x3a\x75\x0c\x2b\x6a\x5e\x2a\xbc\xab\xc1\xf6\x2a\x94\xe5\xae\x19\x05\x0c\x57\x1b\x66\x00\x12\x25\xcb\xae\x8a\x60\xfe\x70\xee\xf5\x1d\x11\x2c\xfe\x12\x0e\xb7\x12\x8a\x64\x55\x9a\xed\x4e\xe4\x8b\x28\xb7\x03\x60\x15\xfa\x5d\x21\x7f\x6e\x0c\x8c\x46\x1a\xb9\x6a\xb4\x12\xab\xcb\x94\x8b\xba\x7b\xcf\x88\x27\x9e\x72\xe9\xc2\x1c\xf3\x5d\xe2\x8b\xcf\x5e\x35\xdc\x6d\x15\xcc\xc2\xfd\x60\xd7\x65\xef\xdd\xa1\x6b\xf6\xed\x1a\x44\x22\xe0\xc0\x2c\x92\x78\x76\x96\x77\xfa\x51\x79\x57\xc7\x45\x58\xab\x36\xd9\x90\xf5\xdb\x51\xa3\x77\x36\x31\x48\xf4\x67\xbf\xd4\xf8\xfc\x3a\xed\xda\xde\x7c\x1d\xf5\x95\xfd\xd3\x5d\x51\xcd\x43\x55\xae\x39\x18\x51\xa7\xed\xaf\x78\xc7\x59\xdb\x20\xff\x11\x64\xce\x53\xa6\xdf\x9f\xea\xd6\xcf\xf4\x5a\x19\xd1\xad\xa7\xb2\xd2\x37\x87\xc5\x98\x3b\xac\x46\x43\xab\x33\xe7\xae\x71\xcb\x9d\x16\x35\xa2\x98\x6e\x54\xfd\xe4\xb4\x0b\x0e\xb7\x69\x14\x94\xfb\x63\x6b\xba\xff\x56\xb7\x5e\xed\x3e\xe9\xe7\x36\xab\x3f\x25\xc9\x7c\x3a\x5d\x78\x6e\xf6\x18\x02\x54\xbd\x46\x9a\x0f\x92\x92\x82\x1d\x1c\x04\x40\xa0\x99\x0a\x37\xb0\x00\xf7\x86\x91\x8d\x4b\x62\xe2\xce\x99\x96\xa6\x11\xd6\x64\xe8\x15\xda\xa8\xc6\x8f\x60\x16\x00\x62\x2e\xc0\x91\x21\x88\xb2\xb8\x5f\xcc\xc5\x84\x25\x6d\x9d\xab\x61\xe5\x07\x02\x27\x7a\x91\x81\x12\xc3\xbc\x40\xfa\x42\x33\x11\xa8\x15\x7c\x06\x40\xa6\x4c\x4b\x67\xe6\xd1\xed\xef\x2a\x6d\xb0\xeb\xdc\x85\x5e\xc4\x6a\xbe\xe0\x8a\xc5\xe7\x25\xbc\x99\xf2\x91\x9d\xbb\xec\xb7\xdf\x77\xc6\xd8\xef\x6b\x91\xfa\x0c\x1d\x7c\xa9\x7e\xf7\xd6\xb9\x89\x8b\x79\x9e\x63\x90\x09\x91\xf1\x1b\x56\xf8\x69\x9a\xe7\x69\x06\x82\x35\xba\x58\x21\xa4\xbf\x3b\x16\x38\x19\xe7\x82\xad\xb3\xfc\x3a\x1d\x2d\x48\xbb\xc6\x97\xe6\x9f\xac\x28\xb9\x98\x74\xdd\x8a\x1d\x8c\x7b\x5b\xf0\x1b\xc1\x0a\xd9\x10\xc0\xf2\x82\xbc\xc4\x04\x79\xd9\x7c\x9c\xa2\xfb\xf3\x0d\x1b\x48\xee\x83\xe8\x64\x0e\xa2\xa4\xc3\x2b\x7e\xcd\x8a\x51\xc6\x6f\x00\xfe\x3f\xe6\x4c\xc0\x0d\xdd\x7d\xb6\xb1\x21\xff\xff\x66\xc7\x58\x7c\x62\xe4\x00\x98\x29\x18\x8e\x1a\xbf\xec\x61\x89\x4b\x28\xbb\x00\x0d\x99\x9b\x90\x59\x4e\x19\x8d\x34\xdc\xe0\x8f\x9f\xdc\x33\x1f\x85\xc7\x3a\xaa\x39\xb5\x51\x78\x22\x8d\x54\x46\x6e\x77\x5c\x23\xf4\x8b\x0b\xc5\x7e\xdf\xea\x2c\x6b\xa5\xc8\xd2\x01\x24\x53\x33\x95\xd2\x1c\x52\x2d\xe5\xa5\xb1\x53\xff\x0b\xfa\x39\x7d\x10\x90\xcb\xe2\xdb\x8d\xad\x75\x3a\x10\x65\x41\x3d\xf3\xf3\x4f\xe4\x30\x2f\x33\xf5\x5c\xf0\x0a\x1a\x44\x06\x42\x9a\x97\xd9\xfa\x14\xbf\x21\x30\xaf\xe5\xdb\x14\x18\xcd\xb3\x82\xe6\x22\xa3\xe6\x3d\x2d\x22\x1e\x38\x7c\x4e\xb4\xc6\xf3\xf0\x3e\xe1\xc1\x39\xfb\xfb\xbb\x83\x25\x7d\xae\xcf\x68\x21\xd0\x3c\xd8\xba\xcc\xb0\xf2\x2c\x9d\xb2\xff\xe6\x39\x3b\xcc\x8f\x31\xd4\x4d\x9b\xcf\x4a\xc9\x26\xaa\xf2\x90\x0d\x70\xb5\x37\xb2\x66\xa7\x46\xc2\xca\xb2\x88\x5c\x79\x37\x14\xcd\xb2\xde\x95\x64\x46\xf4\x26\xb4\x3f\x99\x1e\xb6\xcd\x5f\xe4\x36\x22\x12\x66\xef\xea\xbc\xc6\xbd\x84\x66\x99\xf5\xfe\xf8\xa4\x0d\x7a\xec\x8d\xcc\xd8\xec\x2d\x2b\xc6\xcc\x9d\xc7\x26\x02\xdc\x0a\xd5\x41\xa1\x1e\xca\x0c\xcb\x8e\x4f\x8d\x65\xb3\xa3\x41\x74\x7c\x07\x32\xd0\x38\x7d\xd9\xdc\xbd\x4e\x70\x9c\xb2\xc6\xe7\xcf\x72\x5a\x1d\x55\xb4\xe5\x14\x7d\xf9\x62\x20\xf2\x88\xbd\x3c\x39\xb5\x7b\xdd\x1e\x6d\xd6\x6c\x30\x18\x5d\x57\x4a\x5d\x0e\x70\xd3\x7f\x89\x02\xc6\x6a\xa4\x7a\x20\xbb\xd5\x23\x10\x23\xe6\x89\xc0\xf3\xae\xb2\x0c\xde\x7a\x18\x88\x9d\x88\x8c\xe4\xea\x7f\x22\x09\xb0\x67\x95\x0d\xae\xc5\x5e\xd3\x3c\x4e\x80\x9f\x34\x13\x8a\xea\xb1\x7d\xb4\x09\x15\x71\xa5\x9d\xea\x1d\xfc\xfb\xfe\xdd\xca\x56\x2b\x75\x0b\x81\x13\x2a\xdd\x1a\x4b\x35\x45\x10\xcd\x96\xe2\x5a\x9a\x67\x4c\x1a\x69\x23\x3a\x75\xca\x5f\x32\xf4\xf3\x93\x94\x03\xdf\x59\x3c\xa4\xcf\xf8\x90\x42\x7a\xf6\x0b\x1a\xe3\xdf\x91\x02\x29\xb0\x50\xfd\x30\xf0\x54\xb1\xfe\x15\x69\x31\xe7\x8d\x03\xc8\x2b\x32\x35\x5e\xb9\x60\xfd\xb2\x88\x58\xc3\x88\x0b\x1a\x1b\x52\x67\x28\x00\x14\xeb\x5f\x06\xe2\x49\x3a\x9c\x9c\xb1\x8f\xe5\x81\x76\x92\x76\x41\x87\x1f\x1d\x95\x6d\x65\x69\xe0\xe6\x46\xb3\x8f\x0e\xf9\x54\x5d\x3a\x29\x1a\x90\x34\xd9\x26\xad\x16\xb9\xdd\xf1\x10\x5d\x8c\x0f\x13\xc9\x9c\x87\x4d\xe2\x34\x31\xe3\xb4\x8f\xd0\xd5\x6a\x7e\x15\x35\xc8\x6e\x97\x5c\xa6\x89\x0a\xe8\xad\xb2\xbc\x26\x64\x94\x32\x64\x07\xa8\xbe\x03\x88\x03\x48\x4d\x4f\x5f\x54\xed\x47\x8f\x60\x6c\x11\x69\xf5\xec\x5d\x25\xe9\xff\x39\xd9\xcb\x11\xbc\x89\xcf\xa0\x6d\x8b\x4a\xae\x36\x9f\x50\x3d\x54\x6b\x30\x09\x2a\x28\x39\x57\x65\x8e\x0b\xe0\xdd\x8f\x53\x33\x4d\x33\x8b\xc3\x1c\x8d\x3e\x0d\xf2\xa4\x82\xd4\x04\xe3\x36\xf5\x59\x3c\x26\x78\x73\xb5\x5b\x23\xce\xe3\x0f\x02\xd4\xe7\x70\x79\x29\x6e\xc4\x56\x3e\x65\xac\xce\x7f\xd8\x4c\xd6\xce\x1a\x13\x8e\x6f\xfe\xb8\xf9\xad\x92\x87\xf5\x70\x74\x58\x6a\x62\xd3\x04\x2f\xd7\x80\x59\xbc\x4f\x93\x8e\xd7\x5c\x7f\xe9\xa5\xc9\xb9\xdd\xc6\xc3\xb7\xef\x8e\x4f\xce\xf6\x8e\xce\xb6\xc9\xaf\xbc\x24\x33\x5a\x4e\x20\x62\xbb\xaa\x0d\x5b\xbc\x77\x7a\xa6\x0d\x84\xd5\x4b\x64\x96\x96\x10\x03\x38\xe7\x09\xb3\x68\x0b\x82\x7f\x9c\x0a\x54\x00\x4c\xb5\x51\x4a\xcd\x20\x3c\xdd\x68\x5d\x85\xde\xc6\xb9\x75\x43\x92\x1c\x42\xac\xba\xac\x15\x20\x6d\x1b\x9b\xa4\xd8\x90\x7b\xb8\x1f\xd4\x0b\x6e\x4d\x4f\x5e\x99\x62\xd7\x0d\xa2\xf8\x7c\xba\x23\x19\xd6\x1f\x61\x6f\x70\x43\x9e\x0b\x9e\xb1\x18\x38\x9e\x76\x7f\xad\x82\xe5\xfd\x7e\x7f\xad\x01\x90\xfc\x04\x46\x98\x18\xd2\x56\x32\xf5\x83\x79\x09\x2d\xd4\xd8\x4c\x8d\x5c\xee\x5a\xc1\xd6\x75\x86\x86\x98\xf4\xfb\xf9\xbb\x8c\x49\xac\xd6\x26\xd5\x4a\x40\x90\x6d\xec\x20\x86\x59\x0a\x40\x20\xee\xaf\x69\x8f\x0c\xaf\xc1\x3f\xc9\x02\xcf\x58\x01\x8d\xf2\x21\x8b\xfb\xfd\xdc\xb8\xd2\x63\x7e\x7c\x01\x5e\xf4\x1a\xcd\x35\xf4\x38\xe5\xdd\x84\x0f\x45\x77\xcc\x20\x1e\xc4\xba\x0a\x08\xd7\x55\x90\xd7\x93\x54\xae\xeb\x60\x0e\x52\xc8\x5a\xc7\xdf\xb2\x06\xbc\x94\xec\x2b\x3c\x6a\x64\x9c\x5f\xcd\x67\xe1\xe0\xfe\xb8\xed\x7e\xb4\xca\x7e\xfb\xc8\x18\x2b\x3f\xd4\x76\xb7\xd5\xef\x7f\x6a\xc7\x4f\x5e\x74\xfa\xfd\xdb\x56\x77\x9c\x46\xa4\xbf\xf6\xe9\x3f\x36\x6f\x2b\xb3\x56\x83\x6e\x62\xb8\x9a\xc6\x10\xa9\xbc\x55\x22\xe0\xba\xec\x2d\x79\x17\x57\xa5\xef\x38\x73\x9b\xeb\x88\x0f\xe1\xbd\x78\x07\xa0\xf0\xce\x0c\xe1\xc1\xd6\x4c\x6b\x6c\xd5\xe0\x43\x70\x17\x7d\xfe\xec\x6a\xa6\x08\x69\x2b\x4e\xe0\xf1\x63\xc5\x13\xc4\x25\x7f\x23\x25\xd2\x7d\x0a\xcf\x4b\x52\x68\xf6\xee\x75\xff\x7b\x98\x58\x1b\x90\x0c\x84\x5e\xe5\xe7\x2f\xb4\x80\xad\xf4\x29\x59\x5a\x96\xac\xd0\x4a\x54\x75\x98\x49\x9a\xbb\x02\x70\x05\x20\xb8\x54\xe4\xdc\x90\x4f\x71\x89\x61\xf8\xd1\x70\xc1\x18\x38\xfc\x24\x59\xce\x77\x78\xa9\x15\x3f\xeb\x18\x23\x15\x68\x5a\x41\xab\xe6\xeb\x7f\x57\x3c\x08\x24\xb7\x68\x10\xc5\xaa\x7c\x44\xa4\x60\x75\x6a\x55\x7a\xb8\x11\xfe\x3e\x54\x96\xcd\x8b\xe7\x63\xff\x03\xf3\x5a\xd8\xf8\x12\x8c\xf4\xd0\xeb\x67\xcc\x4a\x8f\xb3\x0e\x80\x07\xcc\x59\xc8\x89\xf9\x71\x01\xbc\x53\x66\xba\x52\xfc\x9f\x3a\x02\x61\x8b\x5b\xff\x67\xc5\xf4\xb5\x71\x41\x2b\x22\x6c\xbb\xbf\x86\x0c\xa0\xea\x59\x22\x86\xde\x1f\x4d\x3f\x46\xbc\xd8\x06\x22\xdb\x5f\x23\x4f\x25\x2b\xf2\x94\xf4\xd7\xe4\xef\x88\x14\x2c\x4f\x10\x9b\xc2\x46\xd7\xac\x18\xd0\x32\x9d\xca\x5a\x9a\xc1\xad\xd9\x37\xd6\x59\xb2\x1a\x8a\x8e\x85\xdc\x9c\x4b\xce\x5e\x84\x5f\xb7\x49\x9a\x34\xaf\xd6\x6d\x85\xae\x99\xda\x96\x46\xff\xc6\xac\xe2\xa4\x54\xb8\xc7\x12\x3d\x7a\x65\x4a\xe2\xa3\xcb\x8a\x68\x32\xd5\xf8\x11\xb0\xfc\x51\xb8\x71\x06\x96\x50\x16\x84\x8e\xfa\xfb\xb6\x46\xfe\xbc\x03\x6f\xd4\xdc\x6a\xf1\xe4\xfe\xf8\xa1\x66\xd1\x84\x13\xea\x52\x96\xe5\xc1\xb9\x20\x2f\x48\x2b\xc0\x13\x70\xf8\x4c\x13\x70\x9f\xea\xaf\x11\x2a\x4c\x8e\xc5\x78\x65\xcc\x71\x18\xa2\x25\x87\xbc\xe6\x80\xff\x19\x87\x7b\xf5\x83\xed\xe0\x66\xe3\x81\xbe\xff\x66\x61\x9e\xab\x2f\x38\xd0\xbf\xeb\x20\xdf\x56\x76\x66\x09\x4f\xb2\x84\xdd\xa8\xee\xf0\xdd\x34\xa1\x0e\x5c\xad\xb4\xe7\x5b\xf0\x02\x21\xb8\x75\xf3\xda\x7c\x22\x63\x06\xde\xc3\x89\x56\x21\xa2\x07\xb7\x94\x4c\xdc\xc0\x19\xf0\x3c\x50\xd1\x3e\x36\x6a\x08\x25\xd6\x1d\xbd\x7f\xfb\xcb\xc1\xc9\xc5\xab\xe3\x93\xb7\x7b\x67\x17\xc7\xef\xce\x0e\x8f\x8f\x4e\xc9\x2e\xe9\xe1\x90\x5a\xb8\xd0\x6f\x21\x1c\x4a\xa1\xb3\xa7\xb6\x44\xb9\xc8\x98\xf9\x85\x7a\xf2\xe1\xa2\x52\xf0\x32\x15\xb3\x8c\xda\xf2\x79\x9e\x96\xde\x8f\x4a\x05\xc1\x5e\x17\x7c\x3e\x93\xab\xa7\xcb\x20\xdc\xd2\x7c\x7a\x98\x97\x6c\xcc\x8a\x97\xe9\x38\x2d\x45\xf8\xf1\x55\x81\x0f\x69\xe1\x57\xfa\x71\xd9\x57\x6c\x7b\x9a\x8e\xf1\xc1\x23\x2f\xeb\x9b\x37\x56\xe8\x76\xc9\xc1\xe9\xd6\xc6\xd6\x06\x39\x9a\x4f\x07\xac\xc0\xcd\xd1\x6b\xc0\xa7\x33\x3a\xac\xcc\xb0\x69\x69\x74\xb9\xec\xcc\x14\xe6\x1c\x43\x91\xda\x75\x4f\xc7\xf9\x7d\x16\x55\xca\xa1\xa1\xbe\x68\xcc\x14\x85\x28\x59\x01\xea\x22\x89\x5b\xce\xf8\x23\x95\xf1\xe3\x4b\xd5\x44\x75\x8a\x1c\x87\x3f\x55\xc0\x03\x85\x8b\x29\x25\x9f\x7c\xf5\x8a\xd2\x46\xec\xea\x1a\xaa\x1f\x47\xe9\xa0\x4e\x94\x6c\xdb\x56\xac\xb6\x27\x5b\xf8\x47\xc7\x32\xe3\xad\x1c\x26\xdd\xd2\xf3\x30\x23\xef\x74\x3c\xde\xf8\xd3\xad\xab\xe2\xc0\x83\xc7\x92\x63\x33\x60\xe7\x28\xea\xc9\x45\xf5\xc7\xca\x50\x68\x11\xa8\x8c\x83\x1d\x68\x9b\x05\xf6\x3b\x5b\xaa\x00\x44\x00\xed\x21\xcf\x47\xe9\xb8\x66\x53\x55\x88\x95\x70\x6f\xef\xb9\x25\xc1\xdd\x65\xc7\x6f\x51\xaa\x71\x04\xba\x6b\xef\xe2\x59\x85\x31\x40\x88\xb1\x7b\xe5\x18\xba\xd6\xee\xaf\xa9\x45\x3e\x38\x39\x39\x3e\xe9\xaf\x91\xee\x13\xe2\x96\x90\x27\xdd\x88\xb4\x2a\xb7\x11\x6e\x7e\xdc\xaa\xb9\xbe\xd5\xa4\x6a\xd2\xfe\x2e\x5b\xf9\x33\xfe\x8e\x16\xa5\xf8\x3f\x68\x03\xf4\x88\xff\xc5\xf7\x01\x6c\x36\xbe\xd2\x75\x58\xf7\x64\x76\xd7\x2b\xdc\x4a\x8f\x6d\x92\x34\x9c\x1c\xbc\xd9\x3b\x3b\xfc\xdb\xc1\xc5\xd9\xe1\xdb\x83\x9a\x1b\x55\x12\x1c\x56\xa4\xc3\x56\xa4\x2f\xd0\xf3\x1d\x3f\x82\x51\x85\x2e\x9f\xb0\x0c\x12\xb9\x9f\xa5\x53\xf6\x7f\x3e\x75\x7e\xf4\xc8\x90\xe7\x66\xaa\x5c\xa8\x29\x37\xd0\x65\xdf\x69\x71\x45\x6a\xbc\x6c\x67\x96\x11\xe5\xea\xf2\x7f\x11\x69\x76\xc1\xb8\xa7\xb3\x6e\x77\x15\x95\x90\xf7\xf8\xef\xa6\x15\xa0\xf5\x91\x90\xbc\x53\x2c\x0b\x88\x64\x52\xd9\x90\xe7\x49\xab\xfa\x74\x57\x1d\x96\x7a\xc3\x8b\xab\x5f\x5c\xc5\x53\xf5\xeb\x5d\xd4\xc3\x97\x18\x1a\xba\x20\x29\xea\x60\xad\x5f\x4d\x8a\x21\xff\xdc\x84\xf7\x71\xbf\x9f\x9f\x15\x0b\x32\xe3\xd9\x62\x94\x62\xc0\xf1\xb4\xac\x55\xcb\xc2\x79\xd7\x58\x56\xa6\x53\x75\xe8\x41\x0a\xe9\xe7\x18\x3d\xe7\xed\xe1\xe9\xe9\xe1\xd1\xeb\x8b\xc3\xa3\xb3\x37\x17\x7b\xef\x0e\x91\x9c\x85\xa5\xe4\x49\x37\xa4\x59\xf7\x23\xcf\xcb\x8e\xb7\x77\x4b\x22\x42\x7c\x21\x8d\xae\x11\xcf\xaa\x74\x58\x2f\x08\xe8\x14\xef\x79\x2d\xde\xdb\x98\xc2\x39\xa4\x51\x40\x09\x7e\x9f\x34\xf3\x72\xef\xac\x91\xfc\x2e\x15\x68\xd4\x23\x6a\x50\xaa\xf5\xab\xa6\x60\xc2\xe7\xc5\xe6\x96\xf9\x79\xc3\xd8\x55\xe2\xb0\xe2\xac\xa0\xe6\xef\x05\xa3\x16\xd0\x94\xe7\xe5\xc4\xfc\x72\x9b\x48\x88\xae\x44\x32\x2f\x6d\x6f\xea\x84\x86\xa3\x91\xab\xe5\xb5\xdf\x5f\x0c\x1d\x69\x2c\x01\x2b\x19\x57\x3e\x93\x0d\xfd\x92\x91\x92\x88\x68\x76\x0a\x7d\x04\x82\x8f\x5c\xa1\x3c\xb1\xe3\xef\x76\x61\xd0\xef\x58\x91\x72\x3b\x1e\xbc\xba\xd3\x7c\x7c\xba\x10\x25\x9b\xae\x2c\x6f\x40\xca\x6c\x59\xfc\x92\x96\x7f\xf0\xcd\xd6\xf4\x80\xfc\x27\xdd\x78\x0d\x86\x1d\x66\x4c\x8f\x1f\x93\x7a\x73\x17\x30\xf6\xb8\xfb\xb2\xc4\x95\xac\x5c\x93\x5f\x20\xaf\x34\x1d\x9c\xea\xed\xa8\x55\x1f\xa8\xe9\x90\x43\x0e\x9e\x72\x82\x1e\x63\x89\xa1\xcb\x6b\x20\xda\x2f\xaf\x83\x67\xc1\x23\x75\xdd\x2e\xd9\x4b\x12\x6b\x65\x6d\x89\x99\xde\xbd\x74\x44\x64\xef\x11\xc1\x1e\x30\xcb\x08\x00\x22\xa9\xc8\x5b\x60\xa1\x0d\xe1\xaa\x2c\xd0\xea\x7a\xd5\x6f\x62\x78\xff\x47\xe4\x13\xf4\xb5\x4d\x1c\x36\x0f\xbb\x75\x8a\x1c\xb3\xd6\x90\xd7\xf0\x0f\xc3\x17\xf1\x19\x12\x84\x7b\xbd\x84\xe7\xeb\xeb\x48\x20\x80\xe3\x18\xa5\x40\xa9\xc0\xd0\x01\x34\xd0\x86\xcb\x9b\x07\x06\x84\x5f\x3f\x7f\x96\x20\xb7\x89\xfb\x7e\x7c\x8f\xcb\x12\xa8\x5a\x6b\x29\xd5\xd0\x17\x66\xe2\x04\x21\xfe\xb3\xa5\x19\xd9\xf7\x0a\x97\xa7\x1e\x62\xe3\x4e\x86\x9c\xe2\xbf\xd3\x4e\x02\xc9\xf8\x97\xdf\xc9\x15\xd9\xa0\x3b\x77\x12\xe6\x58\x55\x0d\xfc\x3b\x6d\xe8\xca\x47\x53\xaf\xc3\xbf\xf2\x09\xd5\xda\x86\xe6\x73\xf9\x6f\xbe\x9b\x2b\x1f\xcf\x7f\x85\xdd\xbc\xeb\x94\xd6\xe9\x8e\x56\xd5\x15\xdd\xd3\xca\x7a\x75\xd5\x92\xdc\xd7\x77\x6f\xde\x9f\xec\xbd\xb9\xaf\x94\x22\xd1\xa0\x89\xcd\x46\xf8\xef\xb2\x79\x41\x33\xad\x3e\xc2\x5f\x27\xf3\x8c\x89\x46\xa4\x6c\x62\xb2\xbf\x9e\xa2\x08\x94\x03\x20\xdc\x3b\xe3\x69\x7c\xf9\xad\xd1\x09\x38\xcd\xfe\x10\x65\xc0\x0c\xe0\x17\x12\xfe\xd7\xd1\x02\xdc\x83\xf1\xae\x45\x84\xce\x5d\xe7\xd6\x59\x91\x46\x4e\x31\x16\x2c\x63\xc3\x7b\xa8\xd9\xef\xad\x33\xc0\x75\x5b\x76\xfe\x5a\x10\xaa\xb4\xf5\xe5\x87\xf0\x0b\x14\xb6\x77\x2a\x09\xde\x1c\x9e\x9e\x7d\xe9\xc9\x23\xde\xeb\xe7\xb9\x82\x98\xf3\x1b\xb2\x0b\x44\x38\xce\xf9\x0d\xe4\xce\x70\xc4\xdf\x9c\x15\xc0\x04\x5c\xb1\xbc\x9d\x86\x6e\x13\xb2\xe9\x53\xd2\x5f\xbb\xc0\x17\x70\xe7\xef\x9c\xdf\x2c\xbb\x8a\xde\xa4\xa2\xd4\xe7\x5c\xfe\xed\xdd\x3d\xe2\x7f\xe2\x9c\xc3\xda\x9a\x91\x68\x9d\xa1\x2d\x71\x75\x85\xb6\xf4\x3e\x84\xc0\x81\xfe\x47\xd0\x81\x2c\x15\xe5\xd7\x54\x06\xde\x83\x0c\xd4\xe0\x64\x03\x11\x80\x50\x6d\xe9\x70\xf2\x37\xd8\xe7\x8b\x4d\x37\x58\x9c\xfe\xae\x93\x38\xb2\xe4\x6f\xda\xe4\x11\xd1\x22\x70\x1b\xbd\x8e\x48\x5a\xb1\xec\x70\x6c\x1b\xae\x91\xd7\xa8\x4f\x84\x63\xbb\x03\x9b\xf0\x10\xcf\xeb\x8c\xa9\x9c\x61\xf7\xd2\xe4\x5c\x0e\xab\xd9\xe6\x6a\x99\xf5\x14\xa9\xea\x23\x3d\xa3\x0f\xf7\x07\xe0\x9b\x17\x43\xd4\x19\x46\x47\x19\x4a\x57\xe6\x66\x69\xad\x45\xba\x66\x52\xab\x04\x96\x70\xdd\x1b\x8c\x6a\x20\x86\x9e\xe4\x9d\x30\x28\xdd\xea\x1d\x68\x96\x6b\x59\x3f\x6a\xe0\x00\xbf\xc1\x0d\x89\x65\x95\xe9\xca\x21\x5d\xd3\x8c\xec\x12\x96\x79\x36\xde\xee\x2a\x7a\xfb\x77\x4d\xb3\xf3\x5a\x8c\xa0\x59\x86\x89\x8c\xab\xd5\x97\x6f\x28\xa4\xb0\x74\x03\xea\x64\x59\x4f\x02\x53\xa6\xec\xeb\x64\xf3\xbc\xd9\xbc\xc6\xe9\xbd\xd2\xe8\x29\xa0\xff\x0a\x9d\x2f\x9b\xcd\x35\xcd\xee\x18\x7f\xc5\x03\x8b\xa0\x17\x56\xef\xfc\xbe\xb7\xef\xef\xe6\x8b\x21\x81\x7a\xdd\xbd\xdc\xed\x92\xbf\x94\x62\x1d\x63\xff\x7b\x17\x11\x12\x88\x7f\xad\x9b\xfa\xe5\xe1\xe9\xbb\x37\x7b\x7f\xbf\x38\xda\x7b\x7b\x70\x2a\xe9\xe2\xfd\x6d\x93\xbc\x8b\x5b\x5b\xf4\x2d\xe7\xa1\x95\xfd\xcc\x11\x9d\x32\x7d\xc1\x3a\x45\x5f\x95\x93\x86\x49\x3a\xb0\xf5\xa5\xe9\x96\xb9\xd7\xa6\x5b\x7e\x9f\x8b\xd3\xeb\xe3\x8f\xb8\x3a\x13\xec\x00\xc2\xce\xff\xe9\x97\x67\x1d\x9a\xdc\xc9\x42\xbb\x4b\xd2\x4c\x77\xf9\xe8\xcb\xf8\xe7\xdf\xaf\xa7\xc0\xe1\x81\x9b\x7e\xe5\x24\xff\xff\xec\xbd\x0b\x5f\xdb\xc6\xd2\x38\xfc\x55\x26\xe4\xbc\xb1\x1d\x84\x6f\xdc\x9d\x52\x4a\x08\xb4\x3c\x4f\x1a\xf2\x00\x69\x4f\x8f\x4d\x89\xb0\x17\xa3\x20\x4b\xae\x24\x27\x70\x12\xfe\x9f\xfd\xfd\xed\x4d\xda\x9b\x6e\xb6\x49\x48\x6b\x9d\xdf\x69\xb0\xb4\x3b\x3b\x3b\x3b\x3b\xb7\x9d\xdd\xa5\x53\xb4\xc1\x4f\xf4\x1a\xdf\xd1\xa3\xa8\xda\xcd\xd6\xba\x05\x7f\xd8\xd7\xbe\x0f\x47\x5e\xbf\x2e\x7f\x0e\xc1\x75\xfa\xc8\x0b\xd9\x15\x05\xf4\xd6\xcd\x37\xe8\x13\xbc\x3c\x7d\x05\xaf\xe9\xa7\x7a\x7c\x04\x0d\x39\xfc\xaa\x4f\x92\xd8\x3c\x72\xd2\xc9\xeb\xa3\xfd\x83\x37\xa7\x07\x98\x44\xec\x6e\x08\x14\x8c\x42\x7e\xe2\x89\xb6\xfe\x67\xc1\x05\x3f\xfc\x01\xff\x19\xa0\x30\xca\x58\x12\x24\x67\xbb\x9c\x20\x3b\xbe\xd8\x8b\xdc\x55\x29\x09\x0b\x9e\xcd\x2f\xc8\x0a\xc7\xc3\x4a\x1d\x93\x5a\x2a\xf9\xea\xe0\x70\xef\xdd\xeb\x33\xca\x5c\xfb\xc7\x6f\x0e\x8f\x7e\xb6\x92\x6d\x71\xb8\xf8\xbe\xef\x45\xe8\x36\xb2\x80\xe2\xfa\xce\x73\xfe\x9a\xa0\xff\x45\x77\x21\x53\xb0\xc9\x16\xed\xba\x49\xd4\x49\x3b\x2e\x31\xe6\x7d\x3f\x60\xae\x52\x9c\x9a\x4b\x37\xb7\xe1\xc6\x78\x81\xfd\xf8\x8d\xf8\x95\x9c\x39\x6c\x19\x36\x95\x3b\x72\xb7\x08\x85\xc2\x6b\xdb\x75\xfd\x4f\x07\x7f\x4d\x6c\x37\xbc\x60\x55\xd8\xcb\x15\x84\xdf\x36\xd8\x1d\xcb\x12\xbe\x4e\x48\x91\xfb\xf7\xaf\xaf\xd9\xa6\x96\x43\x2f\x6f\x17\x3a\x3b\x1c\x3b\x69\x0e\x76\x94\xe6\xf9\xc6\x45\xf8\xf2\x45\xf9\x22\xba\x3f\xec\x20\x07\x46\xf5\x2b\x67\xc8\x22\x4d\xaa\x1f\x24\xcc\x23\x3a\x19\x3b\x3c\x60\xc4\xe6\x66\xf2\x3d\x59\x30\x63\x25\xe2\x6d\xa1\xc2\x32\x0e\x5d\x22\x8b\x8b\xf0\x25\x33\x01\x0a\xba\x8d\xc8\x61\x78\x1e\xf2\xa2\x04\x94\xf8\x56\x28\xcd\xb7\x9b\xc4\x05\xe3\x6d\x80\x49\x19\x29\x1b\x3b\x2e\x28\xe7\x68\x6b\xa5\x0f\x15\x44\x95\x2d\x3e\x9a\x74\xe9\x28\x71\x34\xa1\xc4\xa7\xc0\x1e\xf3\xcd\x4b\xfb\xd7\x13\xef\x26\x3c\xf2\x0e\x03\x7b\x38\x12\x3b\x98\x55\x48\xc7\x4e\xdd\x0b\xa5\xa2\xa9\x7e\x67\x10\xee\x95\x5d\xe7\xfa\x34\xd3\x19\x72\x8f\x9d\x46\x54\x55\xf6\x28\x0b\xdb\xcd\x4c\xf9\xd4\xb1\xd9\x02\x5a\xf0\x41\xb4\xf9\x19\x00\x83\x41\xdc\xef\xab\xfb\xf2\x89\x2d\x1c\xbb\x4c\xdd\x9b\x73\xc1\x9c\xb3\xfb\x7d\xba\x67\xdf\x34\xa7\xaa\x1f\x6b\xb2\x45\xb8\x9b\x26\x60\xb4\x92\x1d\xc9\x13\x8a\x6f\xa3\xee\x1b\xf6\xf2\x27\xab\xd0\xc9\xae\x62\xe1\xa0\x26\x16\xc7\x4d\xf6\x6d\x58\x30\x10\xb2\xe3\x03\xfb\xd3\x6f\xfa\x26\xf0\x78\x67\x5c\xa9\x91\x4a\x60\x09\xe6\x4c\x9f\x30\x15\x39\x3c\x48\x11\x8a\xb9\xb8\xc9\x3b\x11\xf4\x0d\xaf\x14\x74\xcd\xc4\x06\x44\x77\xd4\xf7\xaf\x1d\x77\x10\x20\xaf\x1e\xf9\x52\x0d\x23\x7b\xd0\x6f\x98\xa6\x2f\xd4\xd3\xe6\x00\xcb\x44\x76\xe8\xaa\x78\xba\x18\xed\x00\xfd\x4a\xff\x96\xbe\x92\x5b\x06\xe8\x7f\xaf\x7c\x71\x43\x87\x43\x6e\x87\x27\x77\x87\xfb\xf1\xb5\xb7\x23\x34\xf2\x83\x3b\x70\x91\x7d\x23\x1f\x1b\x46\xa8\x98\xa8\x0f\x71\x74\xb1\x39\xda\x17\x2e\x26\x64\xe1\x00\xfb\xd3\xab\x29\xf6\xc3\x5b\xbc\x3f\x3b\x4c\x41\x13\xf0\xdd\xf4\x3d\xb3\x4b\xe7\x35\x3d\xcf\xc1\xd0\x64\x59\x26\x4a\x41\x5e\xe2\x2a\x3f\xe0\xd4\x90\x75\x69\xca\x61\x11\x06\x1b\xa0\xc6\xfb\x5b\xe3\x34\xcc\x3b\x7e\x02\x03\xe2\x0d\x93\x05\x7e\x69\xda\x75\xe4\x9f\xf5\x4b\xc7\x1b\x90\xcd\xec\xda\x1e\xaa\x44\xa1\x51\x58\xba\x4a\x53\xd5\x1a\x2b\x67\x50\x6c\x8a\x72\x63\x05\x75\xf5\x66\x54\x48\xac\x74\x9a\x4a\x32\xab\x25\xb9\x92\xae\x98\x40\x51\x8f\xac\xbc\x41\x41\x82\xac\xc6\x58\x41\x5d\x91\x41\x96\x02\xca\xd6\x3c\x4c\x58\x2a\x84\x89\xc8\xf5\x32\x54\x80\x32\xdb\x46\xdc\x20\x0a\x3b\xd0\x78\xfe\x1c\x7e\xea\xbb\x76\x18\xc2\xf3\x06\x08\xfa\xe1\x22\x9c\x8c\x85\x83\xeb\x62\xa3\xb6\x2a\x02\xb0\x80\x15\xe3\x3b\x83\x79\x75\xb1\x50\x55\x53\x32\x17\xc4\xeb\xda\x61\x95\xc9\x06\x5b\x72\x52\xf3\xb3\x67\xec\x15\x3b\x78\x0d\x17\x13\x8f\x16\xc5\x16\x97\x70\xe7\x31\xc1\x0b\xff\xae\xf7\xd9\x3d\x27\x8a\x79\x29\x5d\xe6\x4c\x4b\xf2\x6b\x44\x14\x4e\x25\x00\x3a\x22\x34\x65\x58\xb0\xe8\xeb\x08\xf0\xab\xba\x7d\x47\x2b\x8f\xb1\x8b\x56\xb3\x44\x50\x35\x05\x16\x16\x84\xb4\x4e\xc7\x60\x26\x4a\x60\x84\xc1\xd5\xd5\xe4\x85\x78\xff\x33\xfd\x47\xa4\x7b\x1d\x3b\x7b\x28\x70\x3e\xb2\xa3\x04\x0f\x03\x7f\x44\xc3\x19\xa2\x64\x1d\xd3\x64\xc4\x0b\x5b\x1b\xa5\x04\x4d\x2a\x4d\x93\xdf\x4c\x8e\xd0\xd7\xe4\x4f\x25\x0e\x1b\xcb\x57\xbd\x7b\xb4\x63\x6a\x98\x52\xb2\xa3\xab\x52\x4b\x54\x74\xa5\xc5\x29\x0d\x91\x2b\x6d\xa8\xfa\x22\xd2\xea\x60\xa8\x03\xc2\x0a\x2b\x01\x2f\x73\x3c\x53\xb8\xae\x57\x3a\xb4\x4f\x19\x87\xe4\x5c\x0d\xba\xb7\x2f\xed\x56\x6f\x30\x3a\x6b\xd5\x84\x6f\xeb\xb8\x6b\x86\x98\x27\x35\x02\x68\x8f\x99\x5c\xa8\x26\x53\xf4\x33\xb5\x2f\x3a\xa0\x00\xc2\xf2\x22\xe1\xb5\x7a\x9f\xd9\x10\xb5\xac\xae\x0c\x92\xe0\x01\xec\x40\x45\xfc\x56\x31\x96\xa7\x42\x8b\xb3\x9d\x41\x3b\xc9\xba\x48\xac\x8c\x85\x56\x95\x76\xed\xed\x24\x40\xb1\x77\x42\x02\x02\xca\x49\xa3\x4a\xbd\xd2\x89\xb9\x94\x76\x87\x82\x7d\x66\x40\x35\x27\x45\x97\x5c\x0e\x4c\xd9\x88\x9f\x57\x46\x77\xcf\xbf\xb2\x23\x3b\x7f\x1d\x5d\xdc\x53\x63\x99\x76\xd8\x08\xb5\xd9\x0e\x2e\xbd\xba\x98\x58\x2d\x94\x0f\x84\xd7\x86\x5a\xaf\xe8\x4d\x41\x6a\xde\x8e\x25\x24\x7f\x58\x7a\x22\x88\x10\x2c\x68\x0c\x58\xca\x84\x01\x38\x5d\xb2\x15\xca\xd2\xd5\xd3\x8c\xc0\x42\x52\x94\x6f\x51\xd6\xcb\xbe\x76\x42\x31\x65\xda\x75\xc2\xc8\xd4\x31\x81\x5d\x05\x64\x93\xb7\x95\x47\x66\x02\x27\xa7\x9b\xa7\x89\x2f\xd1\xfe\x4d\x94\x7c\xac\xfb\x12\x16\xae\x4a\xb6\x1e\xbd\xe8\x28\xf4\xdd\x8f\x68\x90\x08\xf5\xf2\x26\xe4\x0b\x43\xc8\x57\x86\x1b\x87\x7f\xd5\xe3\xb1\x94\x62\xca\x1e\xee\x24\x58\xac\x94\xd3\x97\x66\x9f\xb0\xa3\x26\xd4\x83\x3e\xf4\xbb\xb9\xe8\x23\xc7\x27\xd5\x69\x5a\xa5\x1b\xaf\x29\x4c\xe9\xf0\x1b\xda\xe5\x49\x80\x06\x96\x10\x00\x26\x6b\xd4\x72\xdf\xf8\xe6\x6d\x69\xf3\xbc\x74\x48\x93\x76\x7a\x0d\x89\xf3\xad\x60\x6e\x6a\xd8\x63\xe7\x29\xfe\x83\x5c\x21\x46\xb8\x47\x3c\x04\xa7\xb7\x94\x76\xa4\x46\xa3\x01\xa7\x8e\xd7\x27\x21\xcb\x00\x55\x30\xce\x10\xa0\xa1\x13\xd2\x13\x4d\xd9\xf0\x0c\xec\xc8\x26\x40\xdf\xd3\x17\xef\xd9\x81\xd7\x9f\x1c\x72\xfb\x4e\x02\x8b\x23\x0e\xf1\x5d\x29\x62\x1f\xdf\xe3\xd7\x23\xe1\xbe\x73\x72\x9e\x09\xbd\xb3\x1e\xeb\xb4\xba\x04\x8b\x5c\x11\x23\x9f\x54\xe2\x7f\x44\x41\xe0\x0c\x06\xc8\x53\x1b\x20\xca\xe1\x3d\xa0\xd1\x38\xba\x4b\x26\x5e\x02\x8c\x34\xec\x78\xe4\xba\x9b\x00\xd1\x8b\x35\x1d\xdb\x05\x12\xf7\x73\xa2\x3b\xb0\xfb\x81\x1f\x86\x10\xa0\x15\x8a\x4b\x58\x87\xa3\xa8\x12\x62\x77\x6c\x32\x22\x77\x7d\x26\xc0\xc8\xa1\xdc\x3f\xf0\x59\x32\x60\x22\xe7\x47\x3c\xd6\xb8\x81\x90\x5c\x7d\x24\x6d\x55\x7f\x8f\x8d\x98\x71\x5d\x54\xba\x06\x76\xcf\xe1\x6f\x6c\xb9\x56\x90\xa7\x6c\x3a\x8a\x17\xfe\x68\x96\x90\xb8\x69\xb1\x1e\x4e\xc6\x58\x22\xa0\x01\x05\x10\x1e\x5f\xb1\x60\x3d\x5f\xb9\xc5\xd6\xb2\x89\xe3\x0d\xc7\xb7\xc4\x0a\xa8\xda\x5b\x62\xaf\x34\xf6\xe0\xbe\x5a\xcc\xe2\xae\xc2\xdb\x0e\xd5\xce\x32\x96\xf0\x2e\x14\x8f\x1e\xd1\x80\xcc\x71\x9e\x3c\x0d\x26\x1e\xf6\x0b\x57\xd8\xa9\x70\xd4\xe9\xce\x98\x2e\x66\x22\xcb\xc9\x7d\x85\xc8\xac\xd1\xf6\xab\xd2\x5b\x41\xf8\x3b\xa0\x78\x66\x5c\x41\x9e\x25\x42\x74\x81\x1e\xb5\x22\x86\xc8\x44\x1b\xa8\x23\xfd\x12\x63\x0e\x32\x40\x31\xc8\x56\x57\x36\x02\xd7\x8c\x66\x55\xc7\xf4\x72\xc6\x06\x44\x33\xac\x63\x78\x57\x1c\xbc\x61\x6f\xa1\x68\xa9\x75\x84\xbf\x8b\x03\x95\x59\xaa\x66\x30\xfd\x3a\xfa\xab\x99\xc1\x8b\xc4\x28\x47\x84\x0c\x80\x0a\xbe\xc2\xab\x99\xc1\x53\xc3\xb5\x23\xfd\x2a\x0e\x54\x4c\xf9\xb4\x0a\x07\xd0\xd2\x61\xc6\x40\xb0\xe5\xdb\x11\xfe\x2e\x8e\x92\x90\x7b\x66\xe9\x06\x72\x47\x7f\x55\x82\x84\xd2\xfa\xfc\x7d\xb2\x3f\xb2\xf1\xfc\x09\x3c\x9f\xe7\xd3\x0b\x7a\x5e\xb2\xf2\x5b\xed\xd7\xe0\x57\x07\xeb\x7f\xff\x2a\x82\x7d\x3f\x18\xfb\x01\x3b\xc0\x3d\xe8\x79\xf8\xff\x6f\x51\x30\xc2\x22\x98\x1e\x09\x3f\x09\xc9\x69\xd8\xe3\x3b\x0b\x46\xfe\xc0\xb9\xba\x23\x77\x3c\x37\xfc\x00\xe2\x63\x03\x11\xbb\x10\xc4\xbf\x8a\xe8\x71\xf6\xec\x32\xea\xa0\xe7\x8d\x27\x01\x39\x46\x9b\x1c\x59\xe9\x07\xe4\x5f\x7f\x12\xc1\x15\x22\x57\x8c\x60\x33\xec\xf2\x0e\x86\x81\xed\x45\x68\x10\x63\x70\xf6\xcb\x01\x9c\x1e\x1f\x9e\xfd\xbe\x77\x72\x00\x47\xa7\xf0\xf6\xe4\xf8\xb7\xa3\x57\x07\xaf\xa0\xb7\xb4\x77\x0a\x47\xa7\xbd\x25\xd8\x7b\xf3\x0a\x70\xb1\xbd\x77\x67\xbf\x1c\x9f\xc0\xab\xa3\xd3\xfd\xd7\x7b\x47\xbf\x9e\xc2\xde\xeb\xd7\xf0\xfb\xde\xc9\xc9\xde\x9b\xb3\xa3\x83\x53\xf8\xfd\xe8\xec\x17\x0c\xf2\xe4\xe0\xe7\xbd\x93\x57\x70\x76\x0c\x67\xbf\x1c\x9d\x0a\xd0\xdf\xec\xbf\x7e\xf7\xea\xe8\xcd\xcf\xa4\xe2\xd1\xaf\x6f\x5f\x1f\x1d\xbc\x12\x01\x1c\x1f\xc2\xaf\x07\x27\xfb\xbf\xec\xbd\x39\xdb\x7b\x79\xf4\xfa\xe8\xec\x0f\x0c\x0e\x37\x7f\x78\x74\xf6\xe6\xe0\xf4\xb4\x0e\x47\x6f\xe0\xcd\x31\x1c\xfc\x76\xf0\xe6\x0c\x4e\x7f\xc1\x70\x04\xcc\x5e\x1e\xc0\xeb\xa3\xbd\x97\xaf\x0f\xe0\xf0\xf8\x04\xf6\xde\xfc\x01\xa7\x6f\x0f\xf6\x8f\xf6\x5e\x5b\xf0\xea\xe8\xe4\x60\xff\xcc\xc2\xf0\x8e\xde\xb0\x1f\x70\x7c\x02\xfb\xc7\x6f\x4e\x0f\xfe\xef\xdd\xc1\x9b\xb3\xa3\xbd\xd7\xf0\x6a\xef\xd7\xbd\x9f\x31\x22\xb4\x36\xff\xf9\xfb\x2f\x7b\x67\xa7\xc7\x07\xbf\x1d\x9c\xc0\xc9\xc1\xe9\xbb\xd7\x67\xb8\x0f\x87\x27\xc7\xbf\x62\x70\xaf\x8f\x4f\x09\xe6\xef\x4e\x0f\xc8\x86\xbd\x3d\x5c\xfb\xed\xc9\xf1\xe1\xd1\xd9\xa9\x05\xbf\xff\x72\x70\xf6\xcb\xc1\x09\xc6\x7b\xef\x0d\xec\xed\x9f\x1d\x1d\xbf\xc1\xa5\xf7\x8f\xdf\x9c\x9d\xec\x61\x24\xde\x1c\xfc\xfc\xfa\xe8\xe7\x83\x37\xfb\x07\x70\x7c\x82\x01\x1e\x93\x0a\x67\xc7\x27\x67\x47\xc7\xef\x4e\x59\x1d\x0b\xf6\x4e\x8e\x4e\x71\xbb\xc7\xef\xce\x30\x80\x63\x02\x73\xff\xf8\xcd\x9b\x03\x0a\x14\x53\x9f\x10\xe3\xdd\x29\x87\xf4\xf6\xe0\x84\xe4\x34\x10\xd8\x87\xf2\x68\x10\x06\x98\x2b\xef\x63\x4f\x31\xc0\x0e\x2b\x0c\x5d\xff\xd2\x76\xe1\x04\x5d\xb9\xe4\x2e\xc4\xb7\x81\x3f\x72\x42\xc4\x0a\xe0\xff\x93\x7b\x60\x49\xc8\xf6\x34\xb2\x23\xa7\x2f\x46\xfd\xaa\x03\x76\xe5\x53\xc0\x4c\x24\xa5\x1c\x5b\x40\x0c\x11\xb6\xcd\x69\xe8\xea\xf8\x0a\xbe\x7c\xe1\xe5\xf1\x53\xfd\x0c\x17\x17\x24\xb2\x75\x71\xd1\x81\xee\x39\xdc\xc7\xae\xae\x7f\x45\x6f\x6a\xc1\x16\x6a\x12\xe8\x62\x6d\xc2\xa0\x1e\xd7\x83\x1d\xb8\x7c\x01\xf7\x35\x05\xb4\x5e\x27\xbe\x28\x66\x8c\xcd\xa2\xcb\x5a\xf1\x7b\x9b\x2e\x2d\x18\xd7\x6a\x30\xe8\x8e\xc9\x45\x73\xdd\xf1\x39\xb9\x8b\x29\x90\x2c\x15\xa9\xff\xb4\x51\x52\x84\x16\xc4\xff\x57\xdd\xf3\x24\x1c\x9e\x45\x4a\x01\x94\xd4\xaf\x8b\x8b\x2a\xb9\x43\x8a\x44\x88\x7d\x2f\x8c\x82\x49\x9f\x9e\xb5\x3c\x78\x01\xf7\xbc\xf8\x20\xe9\x1a\x46\x5d\xbc\xd0\x50\x3e\x48\xf8\xb2\x06\x1d\xa8\x5e\x5c\xc8\xe5\x93\x5f\x16\xd9\x2a\x83\x1b\x65\xdd\x52\x7a\x45\x42\xf2\x3c\x4a\x26\x70\x89\xd0\x2d\xe1\x73\xfa\xcd\x5d\xb1\x9d\x17\x09\x35\x41\xbc\xcb\x39\xb4\xe8\x55\x5e\x16\x98\xae\xfb\xa1\x17\x7c\x79\xf1\x75\x85\x81\xec\xc6\x87\xea\xbd\x5e\x6a\x01\x99\x4b\xc2\x12\x5c\x12\x52\x2e\x89\x28\x97\x84\x98\x4b\x44\xe0\xf7\xe2\x0f\x7e\x32\x62\x5c\xe2\x5e\xe1\x26\x4e\x86\x94\x45\x0c\xe3\x10\x08\x34\x24\x0b\x92\xa1\x05\x48\x20\x01\xee\x54\xc4\x12\x9e\x39\x33\xcd\xd6\x59\x3c\x37\x51\xdd\xf1\x06\xe8\xf6\xf8\xaa\x3a\xae\xc1\x0f\xd0\xac\x89\xdd\x34\xd1\x82\x5c\x86\x0e\x4f\x92\xd5\x1a\x96\xb0\xca\x9a\x1d\xa2\x48\x68\xec\xf4\x6e\x74\xe9\xbb\x34\x81\xbe\x17\x5f\xb9\xdc\x5b\xaa\x19\x39\x83\xdc\x5c\x69\xc1\x38\x61\x30\x23\xb4\x6a\x58\xa3\x5c\x32\x56\xef\xb6\x54\x78\x01\xa3\x2a\xf4\xaf\xeb\x9c\x93\x2e\x62\xa4\x35\x22\x8d\x59\x1b\x47\xe1\x01\xd9\xaf\x6c\x5f\xba\x28\x21\x15\xae\x5a\x53\xc1\x33\x0a\x75\x9d\x73\x46\x24\xfc\x97\x99\x67\x24\x7e\xc9\x18\xf7\x01\xea\x63\xdb\x05\x55\xd9\x1f\xe4\x26\x0f\x7a\x7d\x1c\xb9\x76\x8e\xa6\x0c\x28\x4c\xd1\x37\xde\x9a\x85\x25\x49\x1f\x7e\x80\x55\xd8\x65\x10\xa0\x43\x6a\x8b\x32\x84\xfe\x36\x53\x3b\x39\x56\xb0\x2a\x60\x50\x63\x50\x2c\x18\x48\x2c\xc1\xb8\x80\x29\x23\x36\xe0\x2c\x90\xb3\x24\xb0\x09\x2b\x50\xe7\x3d\xd5\x59\x83\x60\xae\x16\xcb\x21\x48\x8c\x0a\x71\xf4\x25\x86\x4a\x2a\x0a\x69\xd1\x98\x7f\x7e\xa4\xd7\xa4\xae\xac\xd0\x69\x33\x90\xca\x12\x5e\xc1\x88\x54\x39\x0d\x07\xd5\x00\xf7\xbd\x0f\x3f\xb2\x9f\x12\x16\xe4\x9b\xf4\x8e\x1e\xd8\x13\xa8\x6a\x86\xd6\x7f\xf6\x0c\x02\x81\x0d\xe9\x4e\x7c\x4e\x78\x15\xb2\xc5\xa0\x64\xf0\x0d\x09\x40\x57\xc9\x7f\x8f\x30\xbb\x5b\x49\x57\x04\x66\xd1\xee\x2c\x93\xc6\xf5\x73\x52\x47\xc6\x20\x01\x5b\x63\x9a\x29\x03\x93\x11\x8a\xec\x81\x1d\xd9\x55\xfe\x07\xb9\xd7\x9e\xff\x20\x19\x33\x02\x46\xd3\x70\x0e\x87\x65\xe2\x1c\xbe\x14\x26\x97\xcc\xc2\x25\x8f\xb2\xf6\x27\xdb\x89\x50\x40\x24\xf8\x5e\x30\xb4\xe0\x22\x9e\x6a\x16\xbc\xb5\xf8\xce\x0f\x89\xce\x49\xea\xd7\xc0\x1f\xf3\x3d\x68\xf0\x59\xbe\x32\x5a\x30\x94\xde\xc2\x2e\x7b\xd9\x21\x5a\xfa\x6d\x55\xbc\x56\x8e\xb8\x5c\xb4\x3a\xf9\x93\xe7\xe4\x62\x0f\x4b\x93\x30\xb8\x7a\xf5\x2d\xe6\xbc\xea\x5b\xd8\xe1\x26\x61\xad\xa6\x43\xc4\xde\x1c\xa6\xb1\xaa\xa6\xe3\x74\xf0\x89\x7b\xe5\xb8\x2e\x1a\x24\xf8\x93\x74\x62\x08\x23\x34\xae\xc6\xdd\xae\x7b\xe8\x96\x77\x11\xe3\x23\x66\x07\xb3\x16\xaa\x04\x59\x59\x81\xc6\xcd\xd0\x22\x79\xad\x74\x7b\x4b\xe4\xd6\xe8\xde\xd2\xf9\x0c\x6d\x11\x98\xf4\xb2\x5d\x46\xcf\x89\x1b\xd5\x07\xbe\x87\x60\x37\xa6\x2e\x7b\xcb\xd0\xe9\xb0\x31\x94\xde\xd6\xa3\x6b\xe4\x55\x63\x02\x59\x71\x27\xc4\x01\x21\xd6\x0a\x6e\x30\xe9\x45\xb2\x51\xc8\x17\xb3\x1b\x14\xb6\xc2\x83\xd7\x3d\xaf\xd5\x28\x65\x6b\x89\x6c\xbb\xcf\x65\xd6\x18\x7a\x02\xf7\xd2\x1f\xdc\x29\xfa\xe2\x82\xdc\xe7\xe1\xda\x97\xc8\xed\x60\x7d\x1b\x92\x14\x49\xd1\xe2\xa3\xf3\xb2\xdb\x3c\x87\x67\xd0\xaa\xb1\x0b\xbb\xa3\x6e\xeb\xfc\x45\xac\xc9\xc8\x8f\x7b\x0b\x8f\x56\x88\x4d\x7f\x0b\xfc\x71\x48\x7d\x00\x0b\xae\x2c\xb8\xb3\x20\xb2\x60\xa8\x8a\xbf\x21\x69\x1b\xf7\xac\x43\x8e\xb4\xad\x36\x6b\x16\xc4\x83\xcb\xde\xb5\xc8\x3b\x5a\x23\x7e\xd9\xae\x91\xe6\xa8\x2c\xa0\x96\x80\x26\x01\xb0\xb4\xa8\x0e\xbb\xf4\x6b\x9d\x5c\xe9\x10\xf9\xc1\xb9\x62\xcf\xc6\x7d\xb8\x76\x42\x3c\x8b\x44\x34\x63\x62\x92\x36\x3d\xa1\xb4\xb0\x71\x4c\x78\x4b\x46\xb8\xeb\x59\xf0\xf1\x1c\x0f\xbe\x30\xfe\x32\xd7\xf9\x63\x65\x9e\x91\x8b\x7c\x6b\xc2\x5d\xe8\x67\x77\x63\xc4\xe3\xc5\x3f\xc7\x1c\xe3\x84\x60\xbb\x01\xb2\x07\x77\x80\x6e\x51\x7f\x12\x39\xde\xb0\x4e\xce\xf6\x17\x60\x7d\xba\x76\x5c\x04\xd5\x8b\x1a\x4b\xf8\x37\x98\x41\x57\xd4\xe2\x26\xee\x58\x95\x9e\xe0\x43\x87\xb7\x0d\xbb\x70\xd7\x4d\xa8\x7d\x0e\x1d\xf6\x8d\xbe\xe7\xd3\x8e\x88\x14\x52\x53\x2a\x4d\x6c\xc8\x88\x1a\x4a\x77\x35\x8b\xee\xbe\xbf\x23\xac\x4b\x3e\x3d\x21\x55\x78\x01\xcc\x24\xdd\x16\xe6\xed\x01\xb9\x4d\x49\x33\xa3\x45\x94\xef\xa8\x35\x18\xd5\xc0\xc7\x16\x61\x37\xc6\xd8\x02\x36\x11\x75\xeb\x3f\xfc\xe4\x10\x89\x40\xca\x1a\x2c\x42\x20\x69\x3e\x21\x82\x66\x87\xfe\xdb\xea\x00\xa5\xc6\x0b\xb8\x0c\x90\x7d\xa3\x41\x8c\x6b\xac\x75\xe0\xa2\x4e\x26\xcd\xf2\x72\x3c\x0d\xe2\xb4\x0a\xd2\x2f\x0b\x06\x24\x85\xed\xca\x76\xc9\x3d\x6b\xa9\xb0\xd6\x25\x58\x77\x74\x38\xf0\x84\xa2\x3d\x6d\x9e\xbf\x20\x6b\x51\x8e\x37\x41\xe9\x40\x36\x3b\xb4\xf8\x45\xdd\x1f\x87\xf5\xb1\x3f\xae\xd6\x5e\xc0\x45\x1d\x4f\x48\xfe\x2b\x13\x08\x5b\x24\xe8\x98\xbe\xf1\x31\xa0\xc3\x47\x81\x5a\x40\x87\x92\x59\x51\x3f\x52\x43\x3a\xea\x46\xe2\x76\x33\x32\xe8\x94\xfc\x64\x76\x6e\x60\xbe\x49\x7e\xb6\xc9\xbd\xc9\x17\xf4\xca\xd6\x18\x3b\x59\x68\xaa\x38\x24\xb5\x89\xdd\x54\x7d\x42\x92\xee\xab\x84\x62\xf0\x23\x50\x31\xf5\x8c\x52\x10\x7e\x80\xa8\xbb\x7a\x5e\xa3\xcd\x50\x12\x27\xd4\xa5\x23\x5c\xb4\xb5\x0d\x92\x8a\xc6\x60\xfc\x40\x24\x9e\x0c\x95\xca\x40\x99\x7d\xb2\x81\x47\x2a\xc8\xb6\x06\xb2\x7d\xfe\x82\x8f\xe8\x24\xbc\xc6\x72\xa3\x20\x68\x02\x4b\xe4\x85\xb4\xd2\x05\x59\x44\x6b\x8d\x30\x1b\x56\x27\x74\x32\x27\x9a\x4b\x6e\x4a\xd6\xca\x94\xa1\x37\x2c\x40\xe7\x94\xd1\x9b\x58\x3d\x5f\x39\x1e\xb9\x83\xf9\x33\x60\xb9\x14\xb1\xd7\xaa\x78\xe4\x13\x7e\x9d\x8b\x49\x36\x8c\x86\xb9\x47\xc4\x15\xe5\x80\x0e\xdb\xa9\xcd\x27\x63\x14\x4c\xc4\xb9\x68\xb4\x5f\x69\xf0\x83\x46\x52\x5e\x3a\xde\xc0\xf1\x86\x89\x57\x44\x5f\xc3\x6e\x92\x18\x59\xf5\x2d\x18\x59\x70\x63\xc1\x4d\x5b\x31\x66\x6f\xda\x84\x77\xe2\xdb\x62\x6b\x80\xdf\x40\x22\x57\xcc\x16\xbf\x8f\x41\x59\xf0\x19\x50\xec\x7c\x52\xcc\xc9\x06\xbc\x8e\x51\x7d\x8d\xba\x37\xf4\xa2\x71\x66\x16\x90\x00\xd0\x3c\x50\xf4\xbb\x37\x6d\xac\x33\x49\x03\x14\x74\x66\x0c\x0c\xbf\x39\x8d\xec\xa0\x3a\xb2\xc0\x17\xcd\x60\x29\x3a\x31\xa2\x6e\xd6\x98\x64\x7a\xc6\x69\xd6\x54\x67\x3f\x29\x14\xb3\xf0\x69\x80\x46\x19\x28\xd6\xd3\x71\xae\x71\x44\x13\xec\xab\xbe\x62\x0d\x85\xc9\x09\x33\x19\x56\x85\x62\x52\x58\x30\xc2\x2e\x3f\x91\x3b\xdd\xf0\x9c\x46\xb4\x9a\x92\x43\x3c\x8a\xd5\xdb\x88\xa1\x5f\x93\xbe\xfb\x82\x6b\xe3\x8b\x37\x56\xf5\x96\x68\x66\x97\xe0\xd0\x48\x7a\x8c\x1a\x4f\x72\xf2\xa0\x41\x7d\x12\xf8\xc4\xcb\xf5\xe3\x6d\xde\x3e\xf0\x73\x0c\xb4\xe9\xae\x4d\x2a\xda\x37\x67\x79\x39\x56\x6b\x4f\x7c\x45\xa7\xc5\x33\x36\x79\x6d\xb2\x67\x42\xd8\x85\xde\x12\x1d\x62\xbe\xff\x92\x10\xf2\xd2\x45\xf5\xde\x12\x74\xa0\xb7\xa4\xd0\x97\x17\x8b\x8f\xa8\x5b\x2a\x10\x32\xb3\x07\x98\x17\x3c\x65\x7c\x47\x85\xc6\xd7\xd7\x8c\x46\x69\xb0\x9e\x24\xa3\xe9\xbf\x10\xa1\xe3\x71\x8f\xc7\xd7\x82\xc0\x02\x3b\x20\x57\x6d\x5b\x90\x88\x54\xcd\x2a\x63\x06\x5b\xd5\x13\x4e\x96\xc0\x4a\xcd\x5b\x59\xc1\x7a\x95\x59\x4e\x18\x90\xc3\xbd\x00\x66\x31\xd9\x01\xdb\x5e\x5e\xff\x98\xb8\xaf\xd2\x58\x70\xe9\xcb\x72\x14\x80\x24\x3a\x03\xa2\x79\xe7\x88\x66\x20\x8a\x66\x2a\x17\xc5\x52\xdc\x2f\xcd\x8c\x24\x41\x8b\x27\x01\xf5\x99\xb0\x32\xc6\xd4\x75\x24\x83\xb0\xc6\xe9\xe1\xd4\xd2\xe3\xa7\x89\x02\x20\x31\x3a\x2e\xe0\xd9\x75\x66\x02\x7a\xaa\x7f\x6b\xe7\x86\x42\xc2\x31\xe1\x04\x93\x1c\x8a\x87\x86\xce\x56\x12\x43\x34\xc4\x9f\x97\x97\xa5\x50\x1f\xa9\x65\x07\xf5\xbe\xef\xf5\xed\xa8\xca\x38\x4d\x0c\x42\x0b\x3e\x5a\x49\x34\xc9\x12\x49\x68\x44\x36\xa4\xe6\x2f\x8b\x89\x3a\x6e\x6a\xac\xdc\x71\x59\xfc\x33\x84\x65\x39\x38\xce\x8b\x69\xb0\x83\xf8\x1e\xfd\xb0\x66\xc1\x8d\xd0\x92\x0c\xd2\x18\xa5\xb5\x95\x10\xbc\x05\x1f\x28\x80\x0f\x04\xc7\x18\xb7\x0f\xf0\x03\x7c\x70\x5f\xc0\x87\xe5\x65\x0b\x6e\x14\x68\x84\x56\x74\x33\x99\xdd\xfd\x70\xae\xd2\x2f\xc8\x5d\x7a\x21\x71\x19\xe2\x8a\xa9\x31\x56\x72\x19\x78\x12\x5c\x61\x45\xb1\xfe\x26\x6b\x2d\x64\x73\x1b\xcd\x7f\xab\xb1\x78\x4b\x02\x2d\x37\x1a\x14\xde\x79\xfd\x9f\x75\x2f\x5b\x0c\x0a\x99\x22\x42\x44\x86\x30\x09\x43\x60\x1c\x45\xbc\x8c\xd9\x03\x34\x95\x4d\x13\x8a\x5c\x16\x0d\x4b\xc5\x17\x2c\x70\x2c\xf8\x8b\x4c\x08\x95\xfa\x0e\x59\x65\xb0\xa8\x0f\xdc\x5b\xc2\x12\xa8\xb7\x54\x8b\x7f\x33\x97\x30\x79\xc1\x27\x3f\x86\xd9\x35\x61\x7e\xae\x66\xbb\x2b\x2e\xb8\x05\x4e\x96\x07\x8e\xa9\x37\xec\x7a\xe7\x35\x70\xba\x9e\x0c\x4b\xf4\xc5\x49\xe8\x8c\x06\xbc\xc4\x3d\x8e\x6c\xf9\xf0\x2f\x2a\x38\x89\xaf\x6e\x01\x7e\x7b\x5e\x83\x1f\xa1\x45\xa2\xb4\x28\x9c\x8c\x50\x15\x7f\xe2\x71\x35\x93\x27\x2f\x16\x53\x02\x55\x5d\xef\xbc\xfa\x51\x0f\x4a\x85\x28\x8a\x5c\x54\xfd\xab\xdb\x3c\xef\xae\x62\x9d\x20\x47\xa7\x94\xc8\x14\xe9\x4b\x5d\x0b\x0f\x26\x1c\xcc\x7a\x57\x8f\x63\x55\xb4\x70\xfd\xa3\x1c\x92\x4a\x42\x7b\x1d\x09\x83\xf6\xb9\x05\x41\xcd\xd4\x33\x56\x51\x0c\x55\x92\xae\xf2\xc1\x67\xdb\x13\x8d\x75\x59\xe0\x4d\xaf\xca\xf8\x24\xab\x2e\xc3\xee\x8a\x51\x94\x44\x2a\xaa\x1f\x6b\x16\xfc\x55\x0f\xaf\x9d\xab\xa8\x4a\xfe\xe4\xe6\x0b\x83\x4c\xfa\xd2\x3c\xb7\x80\xfc\xd1\x3a\x2f\x10\x95\x26\xdc\xf8\x0a\xb9\x68\x48\xe6\xad\x6a\x03\x3a\x16\x8c\xa7\x9b\x04\x96\xc0\x8b\x34\x7a\x49\x15\x19\x8d\x2b\x65\xcc\x0f\x53\x70\xaa\xe4\xd4\xb0\xe0\x8a\x10\x8d\xce\x09\x1f\xff\xb3\x9b\x32\x35\xaa\xd8\x0d\x7b\x32\xae\xc1\x6e\x62\xe1\x71\xa9\xe7\x33\xde\xe5\x66\x9e\xc7\x0c\x24\x8e\x35\xdc\x43\x07\xae\x30\x68\x0c\xb2\x03\x1f\x5f\xd0\x37\x05\xa9\xfe\x9b\x6e\x76\x7f\x15\x69\x38\x22\x34\x31\x4a\x23\x91\xa6\xdc\x46\x87\xdd\xc4\x8e\xc3\x8e\x94\x9f\x98\x8d\xdc\x75\xd0\x0d\xc7\x5d\xc9\xad\xe8\x18\xac\x48\xcc\xc0\xdf\x42\x9c\x1a\x12\x0e\x04\x79\x2a\x70\x8c\x94\x9e\x91\x2f\x4d\xf5\xc5\x03\xb2\x5b\x9c\xf1\x90\xc5\x27\xb4\x52\xcc\x82\x8f\xc4\x64\xc4\xff\x4a\xab\x17\x19\x32\x41\x03\x31\x60\x42\x42\x15\x82\x89\xf0\x63\xae\xef\x47\x71\xb1\x24\x66\xf7\x8f\x9c\xbf\x07\xb4\xe9\xb8\x0b\x05\xd6\xb4\xec\x1b\x74\x86\x46\x63\xd7\x8e\x10\x75\x63\xaa\x7d\xdf\xbf\x21\x91\x7f\xfb\x93\xc2\xd8\x46\x07\x1f\x63\x64\xf6\xfc\x39\xa0\xde\x52\x60\x13\x79\x12\x23\x1c\xd8\x9f\x28\xa6\xec\x78\x26\xa0\x45\xeb\xf8\xfd\x0e\xfe\xaa\xaf\xfe\xd0\x12\x8a\xed\x44\x83\x1b\x21\x8a\x7e\xf5\x07\x13\x17\xb1\xfd\xc6\x79\xf1\x0d\xd1\xb2\x4a\x8d\x59\x08\x6e\xbc\x39\x78\xc1\x69\x2f\x05\x29\xd2\x9a\xf1\xbb\x02\x3c\x76\x3e\x5a\x8e\x15\x48\xb7\xfa\xd0\xe0\x83\x3f\x50\x46\x62\xe4\x0f\x30\x7b\x8f\xfc\x41\xfd\xe2\x02\x85\xb4\xfb\x89\x57\xee\x0f\x24\x79\x41\x57\x78\xe4\xfc\x0a\x0e\x85\x65\x3b\xd4\x12\x23\xf8\x86\x84\x34\x70\x93\x24\xa4\x62\x0a\x6a\x14\xbb\x50\xdb\x1f\x58\x70\x63\x88\x6a\x50\x74\x48\x86\x22\x2e\x10\xa3\xa4\x8f\xa4\x58\x54\x73\x44\xe8\xb7\x3c\xb3\x96\x92\x91\xc3\x93\x29\xc9\x35\x48\x0a\x35\x77\xf1\x1b\xe8\x90\xd5\x63\x1a\x4f\x26\x2f\xee\xf3\x9a\x24\xdb\x8d\xdf\x06\xce\x47\x3b\x42\x87\x0e\x72\x07\x3f\x23\xdc\x93\x3e\x72\x3e\xa2\xc0\x82\x31\xfd\xf2\xab\x3d\x56\xf5\x46\xf2\x05\x13\x34\xae\x52\x53\xc2\x20\x66\x45\x62\x47\x11\x1a\x8d\x23\x7a\xd7\xfb\x10\x45\xbc\x1d\x7e\xb9\xbc\x07\x9e\xef\xad\x70\xdb\x4b\x54\x29\xea\x54\x13\xd0\x18\x0a\x98\xe7\x7a\x10\x5a\xbf\x4f\x53\xfa\xcd\xcd\xa6\x07\xeb\x7e\x38\x55\xf7\x85\xf6\x43\x09\x73\x25\x1e\x21\xae\x75\x27\x34\x29\xba\x27\x93\x6f\xc7\xe3\x1b\x14\x26\x9e\xd3\xf7\x07\xa8\xee\x07\xc3\x46\x80\x30\x80\xb0\x11\x05\xab\xeb\xe4\x3f\x2b\x03\x3b\x42\x61\xfd\x3a\x1a\xb9\x4f\x5f\xd9\x11\xba\x20\x74\xbd\xa0\x9a\xf3\xe2\x0c\xcb\x23\xbe\xb7\x6f\xe0\x44\x1d\xd3\xa5\xf9\x7d\x3b\x70\x06\x77\xec\x34\x2f\x3b\x12\x6e\xc6\x59\x19\x93\x04\x67\xaf\x71\xe9\xfa\x97\x8d\x91\x1d\x46\x28\x68\x90\x94\xa2\xfa\x87\x90\x80\x25\x89\xc0\xa1\x3f\x42\x10\x7d\x42\xf6\x4d\xc8\x36\xf3\xc9\x37\xb2\x9c\x1c\xfc\x7c\xf0\x6f\xd8\x81\x46\x75\xb7\xd3\x3d\x40\xfd\xf3\xcf\x2d\x6b\xe3\xfe\xcb\xcf\x9f\x5b\xd6\xfa\xfd\x97\xee\xff\xfd\x75\x4e\xff\xc2\x9f\xef\xfe\x98\x04\xe7\xcb\x5f\xde\x91\x37\xb5\x2f\xdd\x5f\x5f\xb3\x8f\x83\xcf\x2d\xab\x7d\xff\xe5\xd5\xe7\x96\xb5\x7a\xff\xe5\xf0\x73\xeb\xfe\x4b\xd7\xbe\x7c\xc9\xbe\x76\xaf\x6f\x7e\xf9\xdf\x73\x5a\xe4\x13\xfd\xe7\x77\x5c\x64\x44\xff\x0e\xe9\x3f\xdd\xff\xfe\xe7\xf8\xe3\x6f\xb7\xff\xc6\x05\xd7\xee\x6b\xd5\xdd\x9d\x6a\xf7\xcf\xca\xf9\xf3\x0a\xfd\x6f\xed\x39\xf9\xf7\x5f\xb5\xc6\x50\x18\x86\xb7\x76\x10\x22\x72\xc4\x2b\x39\xa8\x01\xc2\x1b\xe4\xa2\xc8\xf7\xe8\x9d\xd3\x86\x1d\x2a\xec\x08\x31\x52\xf9\x04\x5d\x75\xe6\x3b\x90\x3f\x8d\x27\x97\xae\xd3\x17\xf7\x5e\xc6\x18\x25\x7f\x90\x73\x12\x53\x76\x56\x8e\x71\x87\x38\xca\xa7\xac\x4a\x95\xd7\x95\xcf\x17\x11\xf5\x02\x79\xcb\x8b\xc5\x97\xb0\x2b\xc3\x2c\xfa\x04\x23\xec\x0c\x6a\xbb\xea\x5d\xe4\xc1\x0e\x90\x6f\x71\x8c\x26\x49\x1a\x60\x6b\x98\xe4\x33\x5b\xc6\x94\xe2\x26\x8d\x06\x1c\x04\xb6\xfc\x8e\xac\x08\x56\x7e\xae\x74\xf4\x35\x1f\x96\xba\x80\x02\x1b\x76\x68\xcb\x3b\x3b\xb0\x06\xbb\x50\x71\x7d\x6f\x58\x81\x4e\xfc\x72\x1d\xbf\xf4\xec\x20\xf0\x3f\x91\x0b\x81\xc3\x6b\x3f\x88\x2a\x86\x43\x4a\xd9\x52\xa9\x8a\xd5\x1f\xc8\x0e\x4c\x68\xdd\x65\xa0\x75\x87\x48\x7c\x8d\xa3\xd0\xc6\x28\xb4\x57\x06\xce\xd0\x89\x08\x0e\xfc\xf2\x90\x82\x58\xd0\x06\xff\x50\x1b\xa4\xaf\x27\xe6\xd7\xef\xcc\xaf\x03\x13\xd6\x89\x5c\x3d\xb1\xbd\x21\x13\xac\x95\xf7\x7f\x34\x26\x8d\x77\x8d\xe0\x3d\x54\x71\x7f\x6a\xc0\x84\x46\x48\x76\x3d\x62\x2f\x25\xde\x62\x66\xc1\x24\x44\xf0\xfe\xee\x3d\xf1\xf0\x91\x3d\xa8\xa8\x07\x6b\x36\x1a\xf0\x7f\x13\x3b\x88\x90\x91\x96\x7f\x99\x91\xfd\xbf\x12\xc8\xfe\xd5\xf8\xbf\xf7\x50\xfd\x8b\xb6\x91\x85\xab\x09\xb5\x5f\x7d\x2f\xba\x36\x61\xf0\xab\x19\xb1\xd7\x19\x63\x4f\x2e\x86\x52\x2f\x07\xe4\x83\x6f\x71\xfe\xb3\x18\xa3\x5a\x31\x6f\x9e\x77\x31\xbb\xac\x40\xeb\xbc\x38\x6f\xfe\x8e\xd0\x8d\x09\xbf\x4f\x66\xb4\x7f\x2f\x41\xcf\x4f\x8d\xdf\xdf\x43\xf5\x13\x42\x37\xa5\x88\x49\x1b\x1a\x64\xd0\x67\x60\xdf\xa5\x51\xa7\x34\x09\x68\x6b\xaf\xcc\xbd\x3d\x34\xbf\x1e\x96\x20\xc2\xab\xc6\x61\x63\xf8\x1e\xaa\x03\xfb\xae\x00\xfb\x0f\x32\xd9\xff\x77\x7a\xb3\x98\x09\xa5\x83\x0c\x72\xb1\x0b\xc9\x54\x29\x47\xb9\x68\x5e\x62\x8e\xa2\x81\x4c\x68\x60\xfb\x0c\xb7\xf1\x03\xac\x19\x4f\xe7\xcd\xa0\x1e\xaa\xd7\x11\x42\x8c\x8b\x72\x48\xa8\x51\x0c\xf4\xd3\x78\x8d\x54\xe9\xa6\x4e\xa8\x78\xae\x71\xb6\x5a\x2b\xc7\x56\xfd\x39\x93\xa3\x5f\xaf\xf7\xfb\xfd\xef\x90\x1c\x8d\x06\xd0\x7b\xe2\x4c\x54\xb2\x2b\x1d\x72\x6d\xd7\xaf\x16\xbc\xfd\x35\x15\x41\x7a\xcb\x1e\xec\x10\x0f\xba\xd4\x28\x5c\x52\xf8\xf6\xc8\x82\xf1\xc8\x02\xcf\xf7\x3d\x0b\x46\xce\xc0\x73\x86\xd7\x91\xa9\xc2\x4b\x5a\xe1\xca\x45\xb7\xce\x25\xd9\x97\x7c\x07\x63\x82\x7e\x58\x78\xde\x5f\x36\x5e\xbe\x87\x2a\xad\x55\x60\xe2\xdb\x99\x13\xff\x17\x7f\x62\x54\x7a\xd7\x19\xb3\x3e\xbe\x03\x10\x76\xa0\x72\xdd\x6a\x9b\x26\xb2\x50\x74\xce\x02\xf5\x97\xc2\x98\xb5\x57\xbf\x2e\x66\xff\x5b\x9c\x66\xad\xaf\x8b\xd9\x4d\x71\x9a\xad\x7d\x5d\xcc\x3e\x98\xf5\xe0\xff\x98\x5f\xef\x97\x50\x8f\x1f\x1a\xff\xd3\xd8\x7f\x0f\x55\x8c\x74\x81\x69\x72\xdd\xf8\xa5\xf1\xbf\x8d\x9b\xcc\xc9\xf2\x2b\xb9\x5f\xcf\x84\xd8\x28\xcb\xe6\xa2\xd7\x0d\xce\x8b\x6e\x8d\x06\xd0\x4b\x34\x4d\x78\x84\x19\x78\xb0\x9b\x08\xe7\x3b\x7e\xa7\xe6\x81\xda\x2b\x31\x50\xa7\x8d\xbd\xf7\x50\xe5\x17\x2e\xe6\x0e\x54\x98\x39\x44\xff\xf1\x3d\xe3\x00\xfd\x97\x0a\xde\x56\xbd\xbe\x6a\xc1\x5a\x07\xc2\x31\xea\x3b\x57\x4e\x9f\x84\x5f\x5c\xbf\x6f\x0b\x07\xb2\xa7\x52\x50\xbc\x11\x95\xd9\x3c\x3f\x28\x16\x0f\x55\x6c\xa5\x48\xf8\x1f\x09\x35\x0b\xd6\x3b\xe4\x20\x97\xa3\xd3\xe3\xad\x8d\x66\x0b\x7b\xaf\x8e\x1f\xf2\x43\x18\x4d\x00\x8e\x19\x00\xd2\xb1\x91\xe3\x3a\x94\x96\x21\x38\x1e\x51\x30\x04\x39\x0b\x30\x66\xa6\xea\x1f\xc5\xea\x64\x35\xbb\x08\x59\x68\xdd\xdf\xe2\xba\x6d\x0b\x28\x65\x49\xb8\xe2\xbf\xbe\x87\xe0\xe8\x15\xf8\x01\xf4\x9d\xc8\x68\x57\xfe\x5b\xaf\x5a\xae\xdb\xb7\xd3\x03\xc8\xe0\xc6\xff\x34\x8e\x1b\x1f\x1b\xbf\x35\xfe\xdd\xb8\x7d\x9f\x5c\x9d\x5a\x80\x2f\xff\x6b\xe6\x4b\xfd\xdc\xba\x4a\x7c\x1c\x8d\x72\x22\x28\x8f\x1c\x4b\x67\x19\x3b\xfd\xc9\x3b\xcf\x89\xce\xfc\x83\xfe\xc8\xae\x4a\xb7\x6b\xb3\x6a\xf8\x5d\x1c\x18\x69\xfc\x59\xad\x3f\xdf\xad\xad\x34\x2c\xa8\x54\x84\x13\x7c\x0f\x4f\xe8\x76\xeb\x8b\xb7\x27\x07\xfb\x47\xa7\xf8\xaf\x38\x40\xf6\x67\xaf\x57\xaf\xee\x76\xaa\xcd\xe5\x5a\xb5\xd7\x7b\x5e\xdb\xfd\x52\x7d\xba\x5c\xfb\x42\x7e\x3f\x5d\xae\xd5\xfe\x45\x22\x53\x18\xca\xe9\xd1\xcf\x6f\x8e\x0e\x8f\xf6\xf7\xde\x9c\x19\x01\x55\x7f\x5a\xae\xed\x56\x7b\xbd\xe5\x2f\x4f\x97\x6b\xbb\xb4\x9e\x1c\x01\x3a\x75\x86\x1e\x9e\x77\xb6\x17\xbd\x0d\x50\xdf\x09\x1d\xdf\xab\x86\x51\x90\x17\x00\x8a\x82\xb8\x8b\x19\x48\x88\x71\xa0\x0b\x0b\x86\x2d\x0b\x86\x6d\xf5\x12\xd7\x9f\x7e\xfa\x89\x70\x50\xf2\x52\xd8\x13\x35\x6c\x93\x85\x85\xd4\x3b\x3f\x12\x99\xee\x8c\x26\x23\xa1\x37\xf4\x4a\x63\xd8\x81\x61\x4b\x0f\x30\x89\x35\xed\xdb\x32\x35\xef\x55\xd4\x97\x15\xdc\xe3\x73\x76\x86\x34\xc9\xb4\xb2\x3c\x2f\xa4\xe5\xa6\xeb\x4f\x9f\x3e\x4d\x6d\xba\xc5\x33\xb8\x2b\x4f\xd3\x5b\x9f\xa5\xe3\xf5\x9f\x7e\x7a\xfa\x14\x4b\x93\xba\x3e\x7a\xa6\xab\x54\x1e\x70\x98\x74\x49\x12\x83\x82\x65\x91\x8f\x94\x7b\x13\x87\x6d\x5e\xaa\x03\xcd\x79\x4a\x88\x78\x5e\x49\xf3\x88\xc7\x34\xc5\x77\x90\xd8\x09\xce\xd0\x5b\xb1\x27\x91\xaf\xea\xe9\xf4\xf3\x3d\x71\x15\x76\xde\x48\x07\x2a\xa4\x6e\xc6\x71\x9d\x62\x33\xfd\xbe\x3f\xf1\x22\x4c\x86\xc2\x8d\xf5\x27\x41\x80\xbc\xfe\x1d\xee\x16\x6e\x2d\x01\x51\xb0\x4d\xf7\x93\x7d\xa7\x19\x43\x85\x3b\x47\x6b\x97\xed\xde\x83\xb4\x3a\x0f\x6a\xa0\xdb\x3e\x1a\x47\x2b\xff\x45\xc1\xd4\xe3\x4d\x41\xfc\x07\x43\x28\x4d\x96\x07\x6d\x7e\x1e\xf4\xf1\xd0\x47\xa4\xc5\x9e\x8b\xa2\x46\x2b\xa7\x34\x74\x6f\x98\xaa\x6f\xfc\x88\x98\x55\x6c\xc5\xa6\xea\x8f\xa3\x1c\xed\x47\x92\x53\x9d\x21\xae\x81\x45\x57\x32\xe1\x71\x55\xe1\x84\x46\x5e\xc6\x74\x62\x3d\xff\x66\x3c\x33\x4c\x94\x2b\xea\x42\xa0\xb0\x66\xc7\x96\x92\x56\xfc\x60\xd8\x70\xfa\x13\x69\x81\x8e\x1c\x62\x36\x09\x51\x30\x9c\x38\x03\xc4\xce\x37\xbb\x20\xa8\xb2\x73\x53\xc3\x06\x5f\xc6\x09\xeb\xa3\xc1\x53\xfe\x63\x25\x8c\xd0\x28\x5c\xb1\xbd\xc1\x8a\x9f\xac\x61\xa5\xad\x20\xd1\x73\xbf\xe2\xf5\xa3\xc8\xbf\x41\xca\x95\x48\x3a\xf9\xe2\x14\x82\x0b\x96\xda\x4b\x6b\x91\xbb\xec\xe8\x9f\x2f\xf0\xa7\x1f\xe2\xf7\x71\x42\xed\x05\x3b\xe5\x20\x26\x26\x39\x11\x02\x97\x8a\xab\x5e\xb4\xba\x17\xce\xb9\x61\x31\x89\x7c\xae\xe3\xce\x69\x1a\x91\xb2\xde\x18\x05\x7d\xe4\x45\x59\x1e\x5b\x74\x47\xdd\x72\x5e\xd4\xe0\x57\x24\xbb\x89\x0c\x4d\xf0\x89\x51\xa4\x8d\xb8\x6c\xba\xff\xcf\x8b\xf0\xce\xd7\xd9\x80\x75\x9b\x26\xa7\x31\x13\xb3\x61\xe0\x4f\xc6\x2b\xfe\xd5\x55\x06\x6a\x93\x10\xfd\x8c\x8b\xd1\xbd\x41\x64\x8b\x5f\xd9\x66\xc6\xdc\xc6\x5c\x71\xbc\x08\x0d\xf5\x59\x4e\x8b\xd5\xb3\xdc\x77\x6a\x09\x1c\x06\x36\x61\xc3\xd8\x80\x68\x96\xc5\x65\x84\xec\x70\x12\xa0\x15\x6c\xaf\x17\x19\x10\x52\x2e\x7d\x30\xf0\x67\xd8\x51\xfc\x03\x75\x58\x4c\x91\xda\x6c\x8e\xf1\x47\x63\xbb\x1f\xad\x50\x87\x36\x1d\x4b\x8f\x09\x31\xc2\x39\xb4\x4e\x16\xe3\xd0\x12\x4c\x68\xe2\x3a\xa9\x2b\x00\x85\xb0\x23\x4e\xf6\xc3\x21\x97\xe6\xc3\x67\xe2\x16\xf6\x1d\xe4\x45\xd8\x58\x4c\xc7\xcc\x78\xf8\xaf\x7a\x4e\xe3\xc4\x8d\xc8\xf9\x8c\xbc\x17\x1d\x09\x36\xc9\x72\x95\x86\x39\xe5\xd6\x45\xaa\x56\xe2\x64\x22\x73\x73\xb6\xeb\xd6\xac\x74\xb5\x54\xa3\x69\x7b\x9f\xef\x6b\xa5\x19\x09\x79\x43\xc7\x43\x28\x30\x98\x7d\xb3\xd3\x43\x04\xfe\xbd\x10\x84\xa3\xbf\x12\x3a\xa3\xb1\x6b\x5c\xce\x32\xb0\x6f\x18\xd9\xde\xc0\x0e\x06\x25\xd8\xb1\xd1\x28\xab\xbb\x9d\xfe\x64\xad\xdf\x08\xfd\x49\xd0\x47\x0d\xa7\xb5\xe5\xf1\xd2\x8d\x09\x55\xdd\xf1\xa9\x83\x75\xe3\x42\x34\x16\x45\x2b\x9f\x9c\x41\x74\xbd\xc2\xd6\x73\xd2\x3b\xc7\x75\x88\x30\xdd\x68\x1d\x9a\x73\x92\x23\xf0\xb4\x5a\xa5\xa7\xa9\x80\x6b\x9e\x8c\x33\xa0\x8a\x89\x52\x1c\xc5\xe9\x84\x9c\x80\xe1\xd5\xc4\x75\x57\x3c\x7b\x94\xc5\x2d\x46\x82\x8e\x4a\x60\x39\x95\xb4\x13\x90\x74\x42\x7f\x85\xd0\xa5\x14\x8e\x61\xea\x70\x1b\xda\x95\x83\x01\x71\xe0\x48\x7a\xfb\xd0\xf6\xea\x15\x33\x00\x56\xc6\xc6\xe6\x35\x4b\xc3\x10\x63\x4a\x0b\xc2\xd5\x23\x14\x46\xa2\xc1\x68\xbe\x24\x59\x92\x71\xf1\x99\x00\x2d\xe3\x52\xaf\x39\xba\x79\xa8\xf5\x01\x88\xf5\x0d\xbe\xe7\xde\x81\xdd\xc7\x4e\x16\xd8\x10\x3a\xde\xd0\x45\xec\xc2\x51\xdb\x65\x7f\x68\xe1\x76\x65\xc9\x37\xc1\x3f\x0e\xd5\xa5\x75\xd8\x18\xa7\xb3\x60\xb8\x6a\xc1\x70\xcd\x82\xe1\xba\xb1\x4f\x8d\x06\xd4\x9b\xcd\xe6\x73\xca\x82\xd5\x4b\x74\xe5\x07\x08\x8e\xf6\xdf\x6d\x6c\x82\x13\x91\xf3\xe3\xf1\xf7\xe5\x9a\x5e\x55\x0c\x90\x3d\x37\xdf\xe4\x0b\x5a\xd8\x48\x33\xf9\xd2\x62\x46\x06\x62\x40\x6a\xd4\x8c\x3f\x49\xf4\x8c\x1c\xb2\x30\x5c\xcd\x8a\xa1\xa9\x08\xa6\xd8\xa4\xc3\xd5\xd2\x08\x36\x9b\x05\x30\x5c\x23\x18\x9a\x47\xa5\x08\xdd\xd6\xd2\xd1\x2a\xd2\xab\xb5\x24\xbe\x36\x5c\x2f\xd5\xc3\xb4\x6b\x96\x8b\x20\x9d\x31\xd8\x45\x90\x2e\xc7\x2b\x6a\xe4\x2f\x2e\xaa\x4e\xba\x34\x49\x60\x1c\x9b\x0c\x2b\x4b\x32\xae\xd2\x43\xf3\x9a\x43\x91\x23\x04\xb2\x85\x37\x46\x3e\x23\x7c\x9f\x2f\x07\xe7\xd5\x21\x0a\x5d\xd5\x6c\x99\xb8\xa7\x06\x61\x04\x88\x2f\xe4\xae\x1a\xe3\x31\x65\xba\x11\x03\xd0\x51\x4a\x0f\xe0\x2c\x59\x4b\xec\xda\x6d\xcf\xef\x5f\xa3\xfe\x4d\xf6\x75\xb9\xc6\x64\xf0\x06\xfc\xc4\x2f\xd8\x1f\x08\xd5\xcf\xfe\x78\x7b\x20\xde\x3f\x13\xdd\x8d\x91\x7c\x1f\x8f\x31\xcd\xd7\x32\xc5\x6e\x04\x30\x5c\xcf\xf2\x8b\x60\x4f\xef\xbc\xc8\xbe\xe5\x17\x93\x94\xbf\x2b\x4d\xa8\x9f\x7a\x55\x9a\x50\xa6\x3a\xe2\xb7\xe8\xa2\xdb\x31\x39\x55\xcc\x82\x2b\x7f\xe2\x0d\x2c\xe0\x4b\xa0\x39\x77\xa9\x25\xe7\xb3\xa4\x5f\x96\x36\x8a\x6f\xcf\x64\x7f\x69\x25\x78\xeb\xb0\x13\x23\xa2\x95\x21\x78\xc1\x0e\xc5\x4f\xfb\x1a\xaf\xd8\xee\xc4\x98\x6b\x65\x3c\xba\x78\xdd\x5b\x12\x28\x40\x06\x5d\x92\x30\x74\x15\x83\x7c\xac\xf7\xed\x71\x34\x09\xd0\x69\x64\xf7\x6f\xce\x02\xbb\x6f\x3a\x41\x52\x61\xf0\x94\x8a\xf4\x96\x35\x4b\x24\x7e\xf6\x4a\x88\xe1\xae\x35\xa1\x6e\xfd\x72\xe2\xb8\x03\xd3\xb5\xa4\xca\x40\x4a\xf8\xc5\xa5\xae\xd1\x6d\xb5\xaf\x0b\xce\xf8\xbe\xce\x7a\xff\xda\x0e\xf6\xfd\x01\xda\x8b\xaa\xcd\x5a\x3d\xf2\x4f\xc9\x62\x4e\xb5\xb5\x81\x7f\xbc\x1b\x8f\x51\xb0\x6f\x87\xf2\x75\x77\xf7\x86\x76\x5c\xb2\x37\xd1\x3d\x08\xfb\xf6\x18\x55\x4d\xd2\x80\x46\x68\x75\xf9\x9d\x2c\xeb\xf6\x7a\xbd\x5e\x63\x68\xd1\x7b\x25\xe8\xb3\x64\xb0\x73\x84\x0a\x4b\x52\xf1\xa5\xbc\xe2\xbd\x66\x52\xbe\x99\x5b\x38\x4a\x0a\x47\xb9\x85\xbd\xa4\xb0\x97\x5b\x38\x48\x0a\x07\x39\x85\xbb\xbd\xde\x6d\xb3\xb9\x82\xff\x7b\x78\x8e\xab\x09\xd7\xd2\x5e\x0b\xae\x3e\x85\x76\xdb\x24\x17\x75\xb0\x41\x7f\x01\xf7\xb9\xb0\x5b\x04\x76\xeb\xb0\xd7\xbb\xdd\x3c\xc4\x7f\x6e\x17\x69\x46\x6d\x25\x87\x39\x88\x60\xfb\xca\xac\xd1\x3b\x4f\xca\x9f\xe7\x16\xfe\x33\x29\xfc\x67\x4e\xe1\x95\xa4\xe8\xca\x82\xe1\x1e\x27\xc3\xd1\x1b\x90\x2f\xd1\x01\x11\x91\x44\x47\x30\x71\xa9\x6b\x3a\x10\xd6\x33\x84\x32\x75\xac\x1e\x8c\x06\x27\xf1\xcc\x7a\x4b\x4c\xe2\xf5\x96\x0c\x21\x01\x48\xd8\x9a\x5e\x92\x43\xaf\xe1\x91\x64\xa4\xd4\x16\x39\xd8\x70\x39\x2e\x6c\x8a\x18\xd0\x56\xc9\x54\x4a\x6d\x93\x9c\xcc\x4f\xc0\x0f\xe8\xbd\x7e\x5c\xcb\xd2\x66\xc6\xe4\xf2\x92\x91\x3d\x16\x0c\x0c\xfc\x2e\xd5\xe7\x11\xfa\x21\x5f\x1b\x4d\x6a\xa5\xd7\x01\x72\x51\xb7\x38\xed\x71\x05\xb2\xeb\x08\x77\x72\x85\x90\x43\xfb\xdc\x3a\xcf\x01\xd9\xd1\xea\x98\x22\x94\x60\x72\x29\x94\xde\xf4\x96\xba\x04\x07\x69\x14\x1c\xef\x23\x0a\xb0\x6d\xb2\x0b\xbd\xa5\x3f\xd9\x11\x52\x58\xf1\x2f\xcb\x44\xc5\x5d\x38\xcf\x1a\x24\xdb\xbb\xcb\x67\x0b\xdb\xbb\x03\xac\x7c\xed\x7e\x84\x82\x2c\x68\xc8\x1b\xe4\x43\x43\xde\x00\xfc\x2b\x70\xbc\xf1\x24\xca\x02\xe6\x47\xd7\xb8\xb5\x6c\x70\x22\x51\xf8\x65\xe2\xb2\x99\x05\xf2\xc4\xcb\x9f\x83\x68\x10\xdb\x2b\x7a\x30\x87\x5e\x7d\x1d\xb7\x13\x0a\xc6\x61\x8b\xb0\xab\x61\x3e\xab\x03\x4c\x0e\xdc\x30\xbc\xfb\xa0\xbc\x13\xdb\xa9\x87\x7e\x10\x55\x4d\xde\xa7\x54\x2a\x39\x9a\xd2\x38\x51\xc8\xd2\x2b\xbb\x7b\xe0\x03\xfe\x87\x9e\x76\x64\x00\x11\x9f\x28\x6f\x24\xbe\xda\x6e\xd7\x21\xa9\xaa\x24\x57\x4b\x7e\xaf\x6f\xde\x4b\xeb\x61\xf7\xc3\x39\x68\xb5\x53\xa6\x06\x7e\x3e\x2c\x2f\xa7\xcd\xa8\x42\x2e\xbe\x89\x6e\x3b\xda\x18\xdc\x9b\xa5\xaf\xa1\x72\xba\x00\x6e\x65\xb3\xb0\xd4\x65\xf3\xd2\x2d\x86\xd2\x2e\x05\x85\xcc\x7c\xf0\x03\x60\xd7\xa1\x09\x1f\x8d\x29\xc5\xf1\x59\xa8\x45\xdb\xa8\x87\xae\xd3\x47\xd5\xa6\x05\x2b\xad\x5a\xfd\x83\xef\x78\xd5\xde\x12\xd6\xdc\x19\x82\x11\xe3\x64\x51\xa4\xb2\x0a\x49\xd8\x9a\x86\xc9\x90\x16\x5d\x70\x86\x1f\x62\xf7\xa3\x4a\x9c\x10\x7d\x6e\xf3\x73\x8e\xc9\x57\x22\x59\x53\xf4\x21\xaf\x9f\x68\x41\x22\x7f\x53\x05\x9b\xee\x48\xf5\x96\xb8\xac\x11\x07\xc8\x20\x81\x68\x23\x70\x39\x89\xe4\x82\x42\x47\x58\x11\xf2\x77\x3d\x6e\xf7\x5e\x4e\x55\x13\xdc\x34\x72\xa3\x30\x75\xf6\x84\x3b\x84\x3f\x4b\x6e\xfe\xbd\x94\x29\x8a\x86\xff\x22\x11\x83\x2a\xe9\x9a\xc5\x02\xd0\x89\x79\xec\xc7\xb2\x90\xff\xf5\x44\x3c\x5f\x93\x9c\x4c\x4a\xdf\x77\xe4\x2c\x1a\x0c\xf9\x70\xef\xe8\xf5\xc1\x2b\x35\xbf\x06\x7f\x09\x23\x3b\x88\x4e\x26\x2e\x3a\x64\x98\x84\xe4\x24\x3f\xf2\xba\x93\x60\x45\x7e\x43\x6e\x65\xd8\x51\xaa\x28\x15\xfa\xcd\xb4\x43\x65\x9e\x38\x43\xcf\x0f\xd0\x99\x3d\x7c\xa1\x35\xd3\x6f\x49\xb5\x6e\x85\x6a\xb7\x86\xd2\xed\xb4\x36\xb2\x9a\x58\x25\xf1\x81\x1f\xe2\xa1\x8d\x3f\xac\xb1\x3e\x71\xee\x14\x4c\x48\x52\xde\xa2\x59\x1a\x35\xb5\xde\xba\x7c\xf7\x39\xb6\x14\x4c\x39\x4a\xd4\x06\x23\x53\xbb\x52\x51\x2f\xc4\x8e\x81\x6d\xa4\x75\xa9\xf2\x43\xc5\xd0\x99\x4d\xa9\x38\x8b\xbd\x9c\x11\xa3\x52\xc7\x20\x09\xc3\x91\xa3\x88\x3a\x24\xe2\x55\x67\xdd\x8d\x0f\x57\x11\x80\x90\xa3\x7f\xbc\x10\x05\xe4\xea\x47\x42\x89\x5a\x2a\xe6\x5b\x84\xae\x4f\x75\xba\x6e\x67\xd1\xf5\x69\x3a\x5d\x5b\x1a\x0b\x15\xec\xd1\x98\x84\x91\xca\xe0\xde\x6a\x31\x1c\x89\x95\x24\x63\x18\xd9\x43\x76\xff\x39\x39\xc0\x42\xa9\x28\xb3\xa0\x3f\x46\x9e\x05\xfc\xd6\x73\x0b\xfa\xae\x1f\x1a\xee\x14\x1e\x23\x8f\xcc\x69\xfd\x33\x7e\x50\x72\xcb\x27\xd9\xb3\x0f\x91\x2d\xdc\x12\x4c\x2a\xc7\x57\x70\x92\x73\x62\xf8\x27\x02\x4e\x10\xa3\x49\x84\xaf\x9a\x76\xdf\x6f\x26\x1d\x23\x7b\x68\x25\x87\x22\x8b\x3d\xeb\xc4\x7f\x95\x23\x33\x9d\x7b\x8d\x1f\x75\x26\x69\x65\xce\x3e\x5c\x23\x95\x4d\xe4\xf9\x17\x9f\x72\x32\x1d\xf7\xd3\x03\xf0\xf8\x2c\x2d\xd7\xbb\x0d\xd2\x3b\x53\xe7\x36\xb3\x3a\x97\xd5\xb7\x2d\xa9\x6f\x91\x3d\x14\x4f\xe7\x32\x4b\xd0\x6d\x2a\xdf\x1a\x3a\x1a\xed\x66\xa6\x84\x6b\xa4\xe3\xd1\xce\x98\x1f\xfc\x20\xc8\xf4\x49\xd2\x6e\x13\x94\x3e\x1b\x30\x5a\xcd\xc2\xe8\x73\x06\x42\x6b\x04\xe4\xbd\x01\xe4\x7a\x16\xc8\xfb\x0c\x90\x1b\xb3\xf0\x11\xa7\x82\xcc\x48\xa5\xf8\xa7\xbd\x99\x4e\x64\x4f\x5a\x5d\x38\x1a\x98\xa8\xbc\x45\x76\xa9\x74\x2b\xbd\x5e\xe3\xf3\xfd\x79\x43\xfb\xce\xe5\x30\x75\xa5\x05\xf0\xdd\xde\x52\x85\x5a\x9b\x0d\xfa\xcf\x67\xfa\xcf\x7d\x6f\xe9\x9c\x51\x2b\x8d\x68\xab\x9c\xa5\x6c\xef\x4e\x04\xa9\x17\xcc\xe0\x20\xb9\x73\x67\xfe\x0d\x62\x69\x49\x86\x5e\xae\x52\x5e\x32\x70\xf7\x6a\x26\x2f\x65\x30\xf7\xea\x9a\x22\xc3\x59\xa4\x28\x3e\xa1\x99\xfa\xc0\x06\x4b\x62\xbd\x54\x9f\x4c\xbd\x91\x79\x2e\x8c\xd0\x48\xb7\x07\x41\x3c\x4e\x1b\x17\xe9\x80\x54\xb0\x13\xdb\x83\xf7\x69\xac\xb5\x2a\xdb\x09\x4a\x62\x71\x16\x73\x37\xa1\xf1\x1c\x68\x67\xe0\x79\x83\x67\x17\x77\xd8\xbf\x6c\xed\x6b\x70\xcc\x31\x09\xaf\xfd\x89\x3b\x20\xe7\xfb\xc4\x4b\x61\xbb\x99\xc9\xcd\xd8\x86\x2d\x35\x4d\x56\xa9\xa1\xd1\xe9\x18\x58\x20\xd3\xd4\xc0\x35\xd2\x78\x60\x4d\xb6\x35\x84\x93\x7b\xe2\x28\x35\x7b\x65\xe0\x83\xb5\x96\x66\xb4\x31\x23\x6a\x3f\xba\xa5\xc7\xc4\x56\x28\x09\xf7\x82\xe1\x69\x74\xe7\xa2\x4a\x2d\xb9\xf9\x26\x20\x37\x56\x68\x30\xdb\x0a\x67\xdc\xb9\xb2\x34\x12\x5b\xa0\xf7\x33\xa8\x63\x49\xea\x88\xc1\xe0\xf0\xf9\xbf\xe2\x9d\x73\x46\xd2\xae\x51\xfd\x6c\x19\x6c\xe3\x4c\xf5\x6c\x65\x10\x76\x1d\xc4\x23\xe8\xb5\xcf\x1b\x59\x70\x79\xad\x54\xe0\x9b\xba\xc8\xa6\x77\xfa\x58\xa0\x53\x2c\x8d\xc5\xe9\xe5\x96\x3b\x3b\xc0\x06\xa9\x02\xbb\x54\xa6\x33\xb6\x17\x4b\x0c\xec\x08\xc5\xdf\xf1\x0f\xe0\xb6\x92\x33\xe2\x8d\x76\xe8\x3f\xf0\xec\x19\xfd\x83\x9c\x93\x3b\xb5\x56\x58\xa3\xec\x5e\x31\xd0\x2e\x93\xdb\x2b\x19\x0e\x4b\x93\x6a\x8a\x3f\x2b\xba\x96\x58\x6f\x65\x6b\x89\x73\x8b\x1d\xc5\x98\x02\xba\xcd\x40\xdb\x2b\xff\xdd\x5b\xf9\x4f\xc5\xa4\x88\xd6\x57\x53\x9b\xe8\xf6\x96\x6c\xaa\x7b\xfe\x4b\x9a\xea\xf6\x96\xf6\xe8\xef\xff\x90\xdf\xb1\xa2\x92\x34\x54\x26\x42\x6b\x14\x21\x8a\x8f\x01\x99\xf5\x29\x91\xc9\xd3\x8c\xeb\x1b\x8a\x5b\x48\x76\xd8\x16\x62\xc8\x16\x96\xb9\x03\x96\x66\x40\xa4\x2e\xab\xdd\xe1\x7f\x94\x91\xbb\xda\xb1\x64\x31\x2a\xa5\x45\xef\xfa\x66\xbe\xa0\xc3\x78\x1f\x07\xb8\xc1\xe2\xc2\x6e\x9d\xf2\x38\xae\xaa\xb3\xf9\x7a\x26\x9b\xd3\x3a\x69\x83\xb0\xd1\x24\x80\xf1\xe4\xd4\x01\x6f\xb4\xb2\x00\xd3\x3a\xa9\x80\xa9\x19\x32\x26\x17\xb2\x1b\x40\x67\xda\x22\xbc\x56\x2a\x70\x6a\xdc\x86\xc8\x45\xfd\xc8\x0f\x06\x8e\x67\x6c\x23\xd3\xd0\x55\x2a\xa7\x36\x45\x7d\x16\xff\xea\x2a\x44\x91\x41\xa3\x6e\x64\x7a\x2e\x71\xb5\x54\xf0\x5b\x26\x01\x4d\xfb\x7f\x46\xc4\x34\x05\x91\x69\xf4\xa4\x38\xf9\x04\x88\x08\xac\x23\xfc\x4d\xa5\x35\xfd\x8d\xe5\x75\xa5\x6f\x53\x52\x90\x63\x0c\x18\x59\x2a\xb2\x58\xe6\xc8\x74\xd8\xbf\xb0\xcb\xfe\xe8\xb6\xcf\x81\xdc\x6c\xa7\x1a\x5c\x29\xb9\xf8\x17\xb6\x31\x7a\x4d\x16\x2a\x06\xb0\x03\x17\x76\xdd\x19\xb0\xb6\xe9\x4f\xde\x3e\x01\xfb\x3a\xc9\x73\xb9\xb0\xeb\x86\x54\x17\xfe\x38\x57\x50\x75\x06\xe0\x78\x24\xb1\x3f\x6d\x65\x80\x87\x13\x5e\x4d\xc6\xae\xd3\xc7\x2a\x8b\x36\x93\xc4\x0d\x9c\x41\x12\x50\x70\x3c\x46\x45\x40\xd4\x9f\xeb\x24\xe5\x22\x72\x75\x48\x81\x00\x03\x7f\x0c\xeb\x04\xb6\xeb\x76\x9d\xc1\x39\xec\xa4\xa1\x2b\x8d\x88\xb9\x08\x6f\xb4\xa3\x10\xcc\x80\x80\x01\x29\x7e\xa5\x86\xeb\xaa\x41\x6f\xb2\xf5\xa1\x94\x40\xdc\xd8\x16\x66\xaa\x3e\x7b\x36\x33\x1d\x6e\x5e\x2b\x6d\xf2\x6c\xb6\x4c\x93\xa7\xf4\x44\xa1\xcd\x68\xac\xfe\x8f\x60\x65\xda\xf7\x05\x2b\x17\x60\xe5\x4d\xaa\xd1\x76\x0c\x5c\x9c\xa9\xcc\x76\x32\x18\x58\x76\xac\x9d\x81\xd1\x60\xa0\x63\x94\x6f\x24\x6c\xae\x2b\xd0\x84\x13\x8d\x4b\x78\x45\xc2\x24\x71\x06\x1d\x70\x06\xca\xc8\x4c\x6d\xa8\x6f\x6e\x14\xe9\x2d\x53\x49\xf9\xbd\xdd\x7c\xe4\xbd\xdd\x4a\x8f\x7d\x7c\xba\x76\x22\x14\x8e\x6d\x76\xe4\xb3\x52\x71\x9b\x1a\xe4\xbd\x5e\xb4\xd2\xeb\x05\xd0\xeb\xdd\x6e\xad\xf7\x7a\xb7\x7b\xcd\x5e\x6f\xd2\xda\xd8\xc2\xff\xb4\x9b\x24\x11\x09\xff\xbb\x47\xfe\x69\x6f\xd1\x7f\xb6\xe9\x3f\x87\xe4\x9f\x75\xfc\xcf\x6a\xb3\xd9\xd4\xad\xfa\xad\x66\x96\x55\x4f\xb2\xac\x68\x5a\x54\xc0\xdc\x0a\xe0\x2f\x30\x32\xfc\xcf\xbd\x26\xff\x93\x22\xb6\x44\x7c\x00\x86\x5f\xfc\x89\x20\x49\xa1\x70\x5c\x93\x4f\xed\x6d\xf1\xc7\xa1\xf0\x63\x3d\xf9\xb1\x4a\xc0\xe5\x39\x14\x5b\x19\x11\xb4\x90\x2c\x36\x72\xef\xc0\x40\xf5\x2d\xe6\x97\x3d\x59\xe9\xf5\x1a\x9d\x95\x9f\xba\x2b\xbd\xde\x9f\xef\x3f\xaf\xfc\x3f\xdc\xcd\xd6\x0a\xfe\xef\x26\xfe\xcf\x36\xfe\xcf\x4b\xfc\x9f\x7d\xfc\x9f\x83\x5e\xef\xf6\x65\x13\xff\xa7\x85\xff\xb3\x81\xff\x83\xbf\xbe\x3c\xec\xf5\x6e\x5f\xe1\x1a\x87\x9b\xa4\x37\x2d\x36\x5e\x6d\xfa\x73\x95\xfd\x5c\x3d\x20\xff\xac\xb5\xe8\xcf\xf5\x55\xfa\xcf\x3a\xfb\x49\xbe\xb6\xb6\x69\xe1\x35\x32\x9e\xed\x75\x36\xf4\x9b\x9b\xeb\xe4\x9f\xed\x35\xf2\xf3\xe5\x21\xf9\x7a\xc0\xbe\x1e\x6c\xb2\xc1\x27\x90\x57\x9b\xcd\x55\xfa\xcf\x16\xfd\xd9\x6e\x92\x7f\x56\xf1\x3f\x87\xaf\x08\x16\x87\xaf\x56\x71\x95\xc3\x83\xb5\x75\xfa\xcf\x86\x81\x6d\x32\x3d\xd3\x27\x71\x8c\x94\x3a\x83\x1d\xfa\xfb\x27\xfe\xbb\x4b\x7f\xff\xc9\x98\xe1\x3d\xe3\x17\xe6\xaa\xfe\x3f\x5e\x8c\x50\x3c\xe1\xb1\xcd\x98\x77\x30\xf5\xe3\xd7\x2f\x93\x3f\xf7\x93\x3f\x0f\xe2\x3f\x5f\x36\x93\x3f\x13\x68\x2f\x37\x92\x3f\x13\x08\x2f\x63\x56\xc3\x63\xc6\xff\x3c\xdc\x14\x19\xba\x25\x32\x74\x7b\x33\x41\x96\x8c\xa6\xf0\x6d\xf5\x40\xfa\xb6\xd6\x12\x79\x7a\x55\xfa\xb6\xbe\x2e\x7e\x93\xea\xb5\xb6\x05\x98\x78\xe4\x85\x6f\xeb\xe2\xe4\xc2\x6c\x20\x7c\xdb\xdc\x5e\x4b\xbe\x61\x9e\x10\xbe\x1d\x88\xf5\x30\x83\x24\xdf\x30\xa3\x88\xd3\x6d\x55\xfe\xb6\x25\x7c\x6b\x37\x93\xc9\xbc\x2a\x76\x9d\xf0\x91\xf0\x23\x99\xbf\x84\xa7\x84\x1f\x1b\x05\x26\xf3\x5a\xfa\x64\x8e\x77\xa6\x65\xca\xd1\xad\xdc\xe0\xb3\xa9\x12\x75\xf7\x56\x74\x25\xbf\x95\xe9\xe8\xad\xa4\x2b\xf9\x2d\xd9\xc5\xf3\xd0\xd0\x8e\x9c\x8f\xc8\x02\x6f\x32\x32\x19\xa9\xde\x64\x24\xab\xa0\x5d\xe0\x75\x74\x03\x67\x17\x56\xb4\xf2\x40\xf2\x01\xb5\xd7\x9d\xf8\xcc\x02\x7d\x65\x7a\x3b\x63\xf5\x6a\xec\x87\x51\xe0\x8f\xaf\x4d\x34\xde\x6e\xa6\x57\x1c\xf8\x93\x4b\x17\x41\x52\x3f\x34\x01\x68\xd1\xe0\x9d\x21\x7a\xb7\xdd\xce\x8c\xde\x65\x84\xef\xb6\x57\xd3\x72\x04\x68\x98\x50\x27\xc0\xb6\x6c\x88\xb1\x9c\xc6\xfd\x6b\x3b\xb0\xe0\xaf\x89\x1f\xd1\xbf\x8d\x3e\x85\x50\x16\x96\xc5\xc2\x71\x60\x99\x23\x4b\x1a\x4f\xb5\x17\xb6\xd7\xb5\xcc\x0e\xad\xad\xea\x2d\x3d\x9e\xec\x87\x0a\x3c\x7b\x26\x8f\x2e\xfb\xf2\x59\xff\xf2\xa4\xea\x84\x47\xde\x5b\x62\x56\xd1\x70\x58\x95\xdc\x77\x79\x9b\x6c\x37\x34\x55\x79\x83\xc2\x08\xf1\xdd\x15\x67\xd4\x1b\x48\x6a\xdd\x57\xd2\x2d\x9f\x6d\x3a\x87\x48\xf6\xb5\xf6\x2d\x73\x16\x91\x2a\xa9\xa3\xba\x95\x4f\x20\x86\xdd\x0f\x15\xf8\xf2\x85\xff\xf8\x51\xfc\xf1\x59\xfc\x71\x4f\x7e\xe4\x92\x27\xb5\x9f\x59\xb3\x26\x18\xbe\xb1\x47\xe8\x38\x78\x93\x26\x69\x5a\xcd\x8c\xb9\xf3\xd1\x76\x9d\xc1\x99\x3d\x34\xd6\xcb\x5e\x6a\xce\x68\x90\x3a\x30\x4d\xc3\xf2\x7b\x33\xd3\x83\x69\x66\xa5\xa0\xac\xa5\xcd\xb5\xa6\x69\xed\xbd\xb9\x4e\xcd\xac\xd6\xca\xb6\x6e\x5d\xb4\x9a\x1b\x59\xe6\x05\x53\x50\xdb\x05\x62\xcb\xad\xe6\x26\x6d\xa7\x69\x6e\x67\x2b\xab\x9d\x66\x99\x76\xb6\xa5\xee\x93\xc3\x54\xd3\x92\x9b\x42\x74\xe4\x45\xac\x48\x9c\x40\x61\x41\xab\x99\x91\x75\x93\xc1\x23\x8c\xc5\x4c\x23\x9d\x93\xad\x93\x52\x6d\x12\x04\x6f\x7d\xf1\x6c\x9b\x38\xb7\xcd\xfe\x88\x06\xe6\x4f\x63\x3f\x7c\x85\x22\xdb\x71\xc3\x7d\xbb\x7f\x4d\x8e\xb9\xfd\x0c\xae\xe3\xa1\x0e\xb4\x2c\xe8\xfb\xee\x64\xe4\x75\xa0\x05\xf7\xe7\x4a\xc5\x91\x7d\x7b\x68\x3b\xae\x19\x2a\xfb\x78\x90\xec\x88\xeb\xaa\xf5\x43\xc7\x45\x5e\x84\x4b\x99\x00\xc4\x1b\x22\x21\xce\x28\xa2\x41\x9c\x38\x4d\x4f\x4e\x19\xd4\x32\x90\x9e\x18\x6a\x38\x34\x35\x51\x4f\x13\xd4\x37\xaa\x26\xfb\xef\xf9\x4d\x40\xfb\xb6\x57\x89\x68\x2e\x21\xe1\x05\xc7\x1b\xd2\x0d\x90\x01\x06\x2d\x24\x2f\xa9\xad\xf2\x08\x4c\x3d\x19\x31\x90\xc3\x2d\x46\xa4\x18\x03\xe8\xc8\x76\xb5\x26\x38\x69\x19\xc8\x98\x9b\x59\x08\x48\xe7\x65\x92\x96\x59\x0f\x27\x97\xf4\x78\xc3\xaa\xc8\x23\x96\xc8\x4b\xb5\x14\xc8\x49\x24\xc9\x34\x53\x70\x7d\x7f\x34\x9e\x44\x28\x76\xb3\x4b\xb7\xc0\xf3\x59\xc5\xcc\xe9\x24\x82\x25\xe7\xe2\xc6\x6f\x85\x7d\x93\x2d\x99\x3f\x54\x83\x2c\x2e\xa6\x9a\x58\x53\x21\x9f\x70\x0c\xfe\x48\x76\x35\x9e\x46\xc1\xa4\x1f\x4d\x02\x34\xa0\x0c\xd4\x35\xce\x66\xa1\x73\xb5\x73\xab\xc4\xb8\x88\xa4\x48\xa3\xa0\xbc\x37\xf6\x3b\x22\x1d\x39\x60\xe7\x20\x0d\xfd\x94\xee\xa6\x28\x3f\x3c\x07\x5a\x16\x4b\x97\xdd\xb7\x43\xe3\x82\x39\x8f\x26\x0b\x3b\x9f\x2c\x32\x7b\x3a\xa0\xd5\xef\x08\x7f\x8b\xe7\x04\x6a\xc8\x68\xaa\x89\xa4\xc7\xe2\x41\xa6\x5b\x71\x8a\x23\xc5\x36\x46\x59\x34\xc1\xb6\x03\x0a\xa0\x8e\x11\x64\x61\x3c\xd5\xbc\xa6\x4c\x54\xc8\xf6\x9f\x4c\x70\xc8\x1b\x14\x07\x47\xf6\xff\x64\x82\xcb\x9c\x32\x99\xb0\xd9\x76\x20\x4b\xdc\x1e\xd0\x11\x7f\x64\x8f\x1e\x65\xe4\xb7\xb1\x7a\xac\x8e\xfd\x50\xdb\x46\x3e\xa0\xdf\x78\xaa\xb8\xac\x4b\xbb\x63\x3f\x14\xb7\x1d\x10\xdd\xf6\x42\x56\x53\x0c\x40\xda\xd6\x02\xf6\xd9\xac\x36\x4c\x87\x63\x8c\x31\x2a\x7e\x08\x2b\xd0\x52\x02\xe6\xec\x06\xfd\x27\x46\x44\xcd\xbb\x6e\xc6\x2b\x2b\x6a\xd4\x5d\xfe\x99\xd3\x7d\x75\xcf\x45\x52\xdc\xd0\x18\xb5\x39\x58\x91\x3a\xfe\x65\x3a\x29\x94\xd9\x23\xbc\x18\xfd\xad\xe0\x68\xee\xf8\x18\x7e\x00\x75\x08\xf9\x43\xd6\x66\x88\xec\x15\xb6\x8c\x8f\x6b\xc4\x81\x68\x99\x77\x46\x09\xfd\x21\xc8\xa6\x6e\x2e\x92\x51\x25\x7b\xa8\xf4\x82\x25\x8f\x3e\x91\x61\x1a\x9b\x36\x40\x1c\x6b\x05\x95\x42\x69\x3c\x4c\xb6\x59\xa9\x8c\x08\x05\xb8\x34\x63\x62\xc5\x1a\x82\x58\x31\x44\x3b\x20\x0f\x6b\x09\x6d\x8e\xf1\x02\xaf\x24\x66\xd3\xe7\x27\x2f\x57\x53\xa6\x1c\x05\x9b\x57\x9b\x35\xae\xaf\x2f\xa8\xdb\x69\xe9\x66\x12\xc3\xc0\xf0\xa5\xf5\xb8\x43\x69\x3c\xae\x74\x28\x8f\xd7\xd5\xe2\x46\x9e\x57\xea\x23\x6f\x90\x89\x23\xed\x6d\x2a\x86\x12\xc9\xf2\xf0\x93\x0b\x1b\xb1\x13\x18\x23\x43\xe4\x5e\xd9\x8e\x9b\xb2\x93\x12\x4f\x50\xd1\xc5\xf9\x41\x71\x41\x52\xe4\xa7\x59\x6e\xaa\xc0\x7e\xcc\x03\xa6\xb9\x3b\x42\xed\x17\xa9\x45\x4d\xce\x0f\xe8\x86\xbf\x52\x9a\x2e\xa2\x25\x54\xc8\xa0\x57\x11\x63\xc9\x14\x9e\x44\x9f\xcc\xa7\xa7\x74\x69\x50\x78\xa9\xa0\xb1\x65\x34\x73\x63\xc4\xb5\x23\x58\x0a\xe1\x92\x76\x38\x88\x06\xb7\x96\x1c\xf6\x62\x6a\x2a\x03\xed\x64\x3f\x57\x55\x17\x35\xe2\xa1\xb0\x61\x53\xdc\x01\xc6\xa8\x64\xcc\x42\x6d\xe6\x35\x17\x57\xd6\x1b\xb4\x20\x6c\xa9\x8d\x4a\xec\x12\xb6\x0c\x68\xb0\x9d\x08\x12\x36\x4c\xcf\x85\xd4\x7c\x1f\xc7\x3b\xe5\xf4\x13\x01\x9a\x94\xc9\xc2\x96\x9a\x06\x50\xb8\x2d\x7d\x7f\x4d\x61\x22\xc4\xe0\xcc\xb4\xb0\x20\x6c\x9b\x06\x41\x9f\x6e\x4a\x60\xc3\x5c\x28\xee\x51\xbf\x59\xd5\x8e\x77\xd2\x77\x74\x92\xe2\xb1\xe7\x53\xdc\xec\x8a\x9b\xa1\x24\x4f\x97\x3b\x05\x46\xa7\x2d\x8e\x41\xb2\x35\xcb\xb8\x97\x3b\x6c\xe7\x81\x33\x50\x2a\x34\x1d\x7d\x9c\x10\xaa\x55\x0d\xdb\xa6\xfc\x10\x32\x14\xa1\x6a\xbd\x28\x26\x44\x9a\xd5\x22\xc7\xa7\xcc\x18\x34\xd3\x68\x08\xa9\xfb\x75\x8d\x26\x70\x76\x53\xe9\xcd\xa8\x43\xd5\x24\xf6\x5f\xe6\x44\x12\x87\x8a\x3b\x9f\x59\xc3\x95\x0b\x52\x07\xab\x6c\x3e\xd2\xe0\x96\x83\xad\xc3\xa7\xc7\xd9\xd2\x4b\x88\xb3\xda\x28\xdf\x8e\xde\x16\x4d\x0d\xc9\x6b\x65\xba\x96\x0c\x3d\x23\x69\x37\x45\x5a\x9b\xbe\x45\x43\x1f\xb1\x2e\x2a\xda\xa8\xc1\x4a\xcf\xf9\x94\x7f\x56\x81\x79\xa6\x94\x15\xd3\x67\x5a\xec\x50\x96\xd1\x16\x84\xab\x0f\x22\xa7\xdb\xdf\x93\x9c\xee\xaa\x2e\x6e\xb8\x2a\xf2\x02\x5d\x41\xdd\x4b\x16\x50\xcd\x52\x61\xb5\x90\x54\x90\x20\xd3\x65\x4a\x76\xa0\x59\xaa\x48\x28\x04\x58\x07\x3e\xf1\x72\xc1\x97\x6f\x02\x52\xfd\x6c\x21\x28\x48\x80\x6d\xa4\x7b\xdc\x1a\xbe\xfd\xd5\x9c\x19\x26\x40\x4f\x75\xd1\x21\x7b\x26\x66\x79\xe2\x1a\x42\x46\xe5\xa5\x3e\xdc\x03\x91\xd6\x40\x76\x76\x52\x0e\x61\x31\x75\x89\xf8\x4a\xa4\x6f\x6b\xdf\x58\xc6\x40\xc2\x09\x05\x4c\x11\x6e\xa4\x16\x2a\x0c\x64\x9a\x31\x63\x75\x35\xad\x9f\x65\xa7\x9c\x82\x74\x19\x65\x56\x6e\x0a\x4e\xdf\x90\xde\x58\xc1\x29\x39\x5b\x93\x30\xcf\x29\xaa\xf5\x23\x77\xaa\xf2\xa7\xe8\x94\xe5\x4f\x06\x83\xf3\xa7\xc8\x14\xd6\x10\x2e\x34\x95\xf9\x33\xdb\x94\xe6\x4f\xc9\xa9\xcd\x9f\x02\x14\xc8\x29\xf2\x15\x84\x44\xda\x18\xc4\x0e\x4f\x9e\xdd\x0f\x0f\xe8\xf4\xac\x2f\x9c\x9e\xb2\x4e\x8f\x39\x00\x46\x48\xaa\x9b\x45\xed\x29\xcc\xa2\x76\x21\xb3\xa8\x5d\xde\x2c\x2a\x04\x58\x07\x5e\xc6\x2c\x2a\xdc\x84\xde\x8c\xe7\x7b\x67\xf6\xf0\x34\xb2\x83\xc8\xf1\x86\x7b\xde\xd0\x45\x2f\x03\xbb\x7f\x83\xd2\xdd\x89\xe9\x14\x76\xa1\x69\xc4\x15\x76\xa1\xc2\xa4\x33\x2d\xa6\xb0\x8d\xf3\x49\xef\x6e\x49\x85\x3d\x03\x61\xcb\x29\xec\x52\x0d\xe9\x8d\x4d\xa3\xb0\x4b\x37\xa9\x37\x3b\x05\xf3\xf0\xe7\x5b\xaa\x80\x54\xb7\xcc\x00\xa4\x98\x7b\x06\xd3\xa8\x00\x2d\x20\xaa\x9e\xe6\xa7\x69\x83\x69\x3c\xec\xac\x31\x9a\x35\x28\x9a\x74\xc7\xec\x87\x27\xd6\x89\x64\x5a\xc9\x4c\xe4\x8f\x91\xe7\x78\xc3\x33\x7b\xa8\xfb\xe2\xb9\x3c\x2a\x83\xea\xbb\x7e\x68\x00\x55\x1c\x9c\x0e\x32\x44\xee\xd5\x7e\x3a\x58\xb3\xce\x54\x3a\x2f\x2d\x6c\x17\xec\xd7\x94\x21\x07\x45\x33\xab\xa6\xc4\x1c\x23\x12\x33\x99\xee\x31\x8d\x8d\x66\x7a\x96\x49\x3e\x17\x33\x0f\xa6\x32\xa1\x0b\x98\xcb\xf3\xd2\x83\xe5\x64\xc9\x86\x51\xda\xfe\x93\x8c\xc9\xc2\xd2\x50\x0d\x9b\x17\x5b\x22\xcb\x91\x7e\x7a\x24\x53\x8b\x29\xe6\x0d\x7a\xde\x80\x27\x83\xbd\xa9\x28\x8e\x7b\x05\x57\x09\xfb\xc2\x74\x91\xe3\xc8\xb3\x50\xa5\x98\x5c\x58\xd5\xaf\x07\x4a\xba\xb8\x65\x58\xe6\x36\xc9\x83\xa9\xc3\xaf\x50\x7a\xfe\xcb\x73\x7f\xbb\x98\x1a\x98\xf7\xd0\xb7\x9a\x69\xcb\xa2\x33\x8c\xbc\xb8\xe6\x57\x38\x00\x9f\xa9\xdd\xd5\x65\x91\x34\xfd\x39\x3f\x0f\x30\xcf\x96\x28\x3e\x18\xa0\x19\x00\xa6\xa5\x78\x09\x66\x71\x5f\x65\xb5\xa0\xad\x22\x81\x2f\x1c\xbb\x84\x82\x7a\x43\xa3\x5c\xbf\xd5\xae\x26\xa3\x9c\x65\xb8\x9b\x55\x0a\x7f\x52\xec\xf6\xbc\x68\x58\x01\x55\x23\xb5\x9f\x1b\x2c\x2b\x76\xc0\x76\x16\x5a\x05\x51\xca\x47\x67\x3a\x07\xe5\x81\x94\x6f\xae\x55\x9a\x3f\x17\x1f\x4c\xa2\xb6\xb2\x9c\xa1\x69\x14\xbd\x2a\x77\xb2\x45\x9b\x05\xe1\x9a\x05\xe1\xfa\xcc\x6e\xcf\xd4\x56\x71\xba\x45\x3c\xad\xf6\xcb\xb4\x80\x67\x19\x2b\xcd\xf2\xcd\xd0\x7e\xb9\xc2\x51\x16\x8a\x7c\x23\x5b\xda\xca\x65\x11\xe9\xbd\x26\x02\xbc\x48\x97\xdb\x6b\x45\x05\x6b\x32\xa6\x74\xaf\x84\x38\x9e\x16\xb4\x6b\xf1\xac\xe9\xb7\x56\xb3\x03\x44\xf1\xd9\x68\xad\xac\xd5\x09\x71\xfa\x2f\xef\x40\x7b\xbe\xe2\x36\x46\x22\x77\xc1\x61\xfa\x45\x06\x65\x6e\x67\xae\x2c\x14\x8f\xf6\x70\x9c\xc2\xf5\x32\x2a\x91\xae\x9c\xcb\xd3\x3c\xeb\xe2\x06\x32\xb9\xc3\x39\x13\x3d\xc7\x2d\xd7\xda\xff\xfa\x3a\x2e\x0d\xa5\x7c\x74\xe6\xa2\xe3\x4c\xcd\x17\x8e\xd3\x3d\x9a\x98\x48\x09\x53\x5e\x8d\xff\xcd\xc7\x98\x17\xed\xdf\x79\x64\xd3\x4c\xaf\xce\x5a\xf3\x56\x67\x0f\x66\x7a\x94\x51\x67\x25\xf3\x29\xb3\xd5\x59\x21\xc7\xa1\xe0\x08\xb4\xf3\xbd\x8e\x7e\x6b\x23\x65\x8e\x67\xc5\xdb\xa0\xbc\x64\x29\xb6\xa4\x3d\x9d\x76\x51\x34\xcb\xe6\xf4\x6b\x54\x50\xda\xc1\x2a\xea\x5c\x09\xb3\x7c\x2b\x6b\x61\x2a\xd5\x99\x5a\x78\x2b\x8f\x21\x54\xd8\x2f\xec\x3d\x94\x95\xa5\xb9\x66\xe4\x76\x86\x3c\x6d\x6d\xa7\x0b\x54\xd5\x5c\xfc\x66\x32\xb5\xdd\x5c\x08\xd5\x85\x50\x5d\x08\xd5\x85\x50\x55\x84\xaa\xb6\xbf\xa0\x74\x5c\xa6\x50\xe8\x79\x5a\x4b\xb6\xd5\xd6\x3d\x78\x21\x59\x5c\xf5\x0a\x1f\x9d\x2d\xdb\xd6\xc2\xb7\xf3\x93\xbb\x7a\x28\xa5\xb8\xc0\x95\xa3\x3c\xca\x69\x47\x59\x19\xe5\x45\x43\xeb\x05\x82\x3e\x50\x3a\xf0\x03\x25\xf8\x46\x5f\xcf\xd2\x70\x8c\xa3\x3f\xed\xb5\x0c\xff\x1f\xbe\x62\x1a\x79\xe1\x50\x10\xcc\x39\x8d\xbc\xbd\x3e\xff\xfc\x20\x98\x2a\x3c\x04\x25\x57\x4d\x40\x96\x08\x1b\x19\xa9\xe2\x71\xf1\xcc\x55\x93\x9c\x1e\x15\x19\xc7\x82\xba\x4a\xc2\xa7\xd0\xb0\x97\x8b\xcd\x2d\x16\x7a\xd2\x7e\xfe\x4d\xb4\xfc\xf8\x11\x2f\x20\xb5\xe7\xbd\x80\xa4\xde\x10\x56\xc4\x54\x99\xdd\x4c\xd1\x13\x9a\x93\x85\x21\xbd\xf0\xea\x74\xe9\x77\x92\xb2\x24\x87\xa2\x9e\x8e\xed\x3e\xd2\x17\xe7\xd7\xf2\xc6\x33\x3e\xdc\xa0\xbd\x55\x8f\x50\x18\x09\xaa\x52\x51\x93\xfa\xa1\x67\x31\x2a\xa9\x75\x0c\xd3\x21\x4b\x33\x16\x4d\x0d\x5b\x7b\xe8\xd4\xb0\xb6\x96\x1f\x62\x40\x6f\xca\x35\xda\xdc\x21\x21\x4c\x31\x7b\xe6\xa0\x1a\xb6\x4d\xf7\x3f\x55\xb3\x32\xd7\x68\x4b\x4c\xaa\xf8\x3e\x70\xc9\xa0\xfa\xc7\xf0\xc9\xaa\x16\x25\x31\xa0\x67\xca\x21\x2c\x64\xc1\x92\x11\xeb\x52\xc1\x64\x5a\xf0\x22\x82\x45\x1b\xe7\xe9\x34\x97\x69\xb9\xac\xf0\x4e\x9b\x72\x8c\xa9\x36\x95\xde\x4c\xe9\xb5\xe8\x52\xbb\x0f\xb2\x77\x1e\x64\x48\xed\xb8\x48\xba\xf4\x16\xbb\x9e\x26\xc5\x63\x30\x45\xa4\xb9\x44\x87\x5c\x11\x22\x96\x9e\x45\xba\x4b\x28\x96\x99\xbd\x62\xff\xf3\xfc\xa0\x69\x97\xc1\x73\x67\xb7\x4a\x85\x59\x97\xc1\xcd\x5a\x21\xa7\x1b\xc5\x4c\xdc\x2c\xad\x21\x76\xa3\xf8\xd0\xa7\x6a\x91\x0c\x2c\x4a\x18\xda\x69\xe9\x0f\xf9\x51\xce\x99\x03\x8e\x53\x68\x9f\x18\xbb\x05\x1f\xa7\x6a\xad\x9c\x6e\x64\xa5\x73\x94\x8a\xc7\xe4\x69\xb5\xb8\x9c\x51\xbb\xe5\xa0\x53\xd2\x83\x4d\x4b\x12\x81\x42\x1b\x10\x52\xf0\x98\x6d\x62\xa5\xa1\x94\x8f\x4e\x21\xf3\xf4\xa1\x4f\xb9\x68\xc6\x13\x2c\x39\x96\x16\xbb\x59\x29\xf3\x2c\x0f\xb3\xac\x0d\x54\x8f\xda\x99\xd5\x96\x60\xe6\xea\xcc\x0a\x37\x42\x17\xdc\x03\xf6\xa0\x41\xf7\xb5\xcd\xac\xf4\x91\x47\x1f\x73\x5f\x7d\xc0\x98\xbb\x1e\x84\x98\x3a\x04\x5f\x24\xc8\x29\x90\x7d\x6d\xb1\x45\xfd\x51\x8b\x88\xd5\x87\x8d\x77\x11\x11\xf1\x15\x43\x5e\x63\xf3\xda\xcd\x37\x9e\x33\xd4\xd8\x30\x3a\xcf\x6b\xe9\x4d\x4a\xe2\xd5\x50\x97\xbb\x99\x85\xed\x9e\x70\x95\xb9\x9a\xa9\x89\xb4\xb3\xa0\xf3\x0d\x96\xf0\x57\x37\xaa\xd9\x9b\x4d\x16\xcb\xf8\x7a\x3b\xff\x74\x81\xa7\x2d\x19\xce\x55\xe0\xcd\x69\x33\xbc\x39\x74\x9f\x2e\x60\x55\x02\x7f\x93\x18\x55\x21\xf4\xd2\x29\xfe\xc0\x4e\x41\x9e\x78\x11\xc4\xca\xc3\xec\x8d\xa5\x94\xe1\xb7\xaf\xcf\xce\x28\xc5\x13\x01\x57\xb7\xb2\x2c\xe3\x8c\x6d\xb2\x8f\x26\x11\x70\x75\xae\x5b\x65\xb3\x38\xf6\xab\x99\xc6\x6b\xcd\x85\x69\x3c\x9f\xbd\xbb\xe3\x22\x67\x75\x82\x4c\xfc\x56\xca\xc6\xde\x14\xf9\x97\x11\xc5\x2c\xba\x0c\xf4\x30\xa7\xc5\x18\x37\x19\x6b\x87\x07\x48\x70\x0b\x6f\x34\x2e\x6f\x90\xad\xb5\x17\x39\x95\xf9\x4d\xcf\xc5\xe0\x50\xce\x3e\x2e\x96\xff\x68\x41\xb8\x61\x41\xb8\x69\x41\xb8\x65\x41\xb8\x8d\xcb\x90\x82\xb8\x64\xab\xb4\xde\x59\xa4\x40\x2e\x52\x20\xe7\x9d\x02\xb9\xb6\x56\x22\x03\x72\xed\xb1\x1c\xa4\xfb\xcd\x32\x20\xd7\x1e\xe0\x24\x5d\x98\x3a\x03\x32\xdc\x28\xc6\x3c\x52\x2b\x1b\x65\x5b\x81\x5c\xe3\x77\x43\x30\x7e\xd7\xf2\x53\x6a\x63\xf4\x37\x63\xc6\x5a\xcf\xc1\x9c\x3f\x8a\xb1\x9c\xb6\x8b\x43\x7c\x32\xa8\xce\x9f\x52\x27\xbf\x6e\x96\xe1\x3d\xfe\x3c\xc8\xc9\xaf\x1b\x5f\xef\xe8\x57\xde\x87\x70\x73\x1a\xee\xc1\x4f\xb8\x55\x8e\x57\xa5\x56\xb7\xa6\x6d\x95\xb4\xbc\x9d\x9b\xb1\x91\xd5\xf8\x5c\x64\xa8\x86\x53\x7c\xe7\x6b\xbe\x50\x55\x9f\xa2\x42\x56\x7d\x0a\x0c\x31\x7f\xca\x4c\x08\xfe\x24\x5d\x2a\x35\x33\xf8\x33\x9f\x19\xc2\x9f\xb2\x52\x5b\x7d\x4a\xd0\xaa\x44\x51\x6a\xbc\x34\x67\x61\x66\x20\x94\xce\x88\xbd\x17\xc7\xa3\x90\xc3\x93\x8f\x8b\xc1\xb9\x4f\x82\x2e\x25\x11\x4b\x90\x2b\xec\x35\xe5\x23\x48\x6e\x4b\x92\x0c\xef\xac\x0c\x84\x4c\x58\xdb\xc4\xa5\xca\xcb\xd4\x37\x3d\x25\xb8\x84\x3f\xd3\x4c\x42\xfe\x28\x4e\x93\xba\xf9\xb4\xe8\x13\x8b\xce\xa9\xa6\x34\x94\xef\x77\xc9\xe2\xd3\x92\x68\x0e\xe4\x99\x8d\x34\x0f\x23\x5f\xa6\x21\xc7\x8c\xa4\x98\x9e\x0c\x65\xe5\xe6\xf6\x34\x07\x1f\x6b\xa8\x7a\x13\xd7\x7d\x50\x24\x67\x96\xed\xcd\x79\xc8\xf6\x99\x75\x0c\xcc\x75\x13\x5d\xda\x93\x68\xb2\xfc\xdd\x75\x69\xcf\xb4\xe6\x10\x7f\xbe\xb2\x64\x4e\xba\x3c\xb5\x4c\x85\xb9\x9b\x4b\xfc\x19\x97\xdc\xee\x97\xf6\x4c\x41\xd3\x29\xaa\xcc\xd1\x8c\x81\x29\xf6\x13\xa6\x3d\x42\x7c\x76\xb3\x4a\x82\x81\x9b\x16\x84\x99\x69\xc4\x99\xe0\x72\xf7\x21\xa6\x3d\xdf\xd6\xe6\x98\x9a\x7c\x33\xb9\x11\xf0\xbd\xd8\x1c\xd3\x90\x67\x36\xd2\x3c\x5a\x9b\xa3\x2c\x29\xa6\x27\x43\xc1\x7e\x15\x2c\x56\xb6\xeb\x33\x74\x7b\xba\x2e\xcf\x27\xee\x53\xa6\x9b\x53\x76\xb1\x7c\xf7\x72\xf0\xce\xf9\x5c\xb4\x4b\x53\x74\xa7\x5c\x57\xa6\x8b\x16\x2f\x76\x97\x2f\x76\x97\x3f\x96\x94\x82\xc2\xeb\xa8\x03\x3b\x42\x67\xce\x08\xf1\xcc\x8f\xd7\xf4\x4c\xff\xaf\x79\xe2\xe1\x6a\xd6\x09\x5d\x6b\x8f\xfe\xfc\xfa\xb5\xf9\x67\xe5\x7c\xc5\xbb\x49\xe3\x6d\x89\xeb\xcd\xa9\xb7\x25\x12\xec\xca\x6e\xe5\xca\x73\x10\x4b\x8a\x87\xaf\x77\xa4\xd7\xba\x96\x2c\x9e\x81\x72\x81\xfd\xc7\x7f\xff\xcb\x37\xe7\xc1\x63\x12\xd6\xd3\x6c\x1b\x84\xaf\xb8\x10\xfe\xcd\x6e\x94\x4d\xe7\xcd\x02\x5d\x9b\x7a\xd7\x6c\xd1\xe4\xaf\x87\xb9\x2d\x72\x6a\x25\x13\xe3\xb5\x9a\xaa\x6c\xf8\xf3\xdd\x0a\x2b\x5d\x39\x65\xa0\x3c\xf3\xe6\x05\x9a\xb5\x9d\x58\x09\x69\x2b\x3a\x8b\x24\x38\xbd\x9d\xc7\x95\x67\xaa\x5b\x20\xad\x29\x2c\x90\x56\x39\x0b\xa4\x3d\xbd\x05\xd2\x7a\x04\x16\x48\xa1\x08\xf2\x5c\x2c\x90\x54\x9d\x3e\x9d\x05\x52\x28\x56\xcb\x2d\x90\xc2\x81\xdd\xb0\xc9\x2c\x90\x54\x9d\x54\x96\xa7\x14\xa4\xa7\xb2\x40\xa6\xe7\x31\x09\xeb\xc7\x6e\x81\x94\x5a\xcd\x98\xab\x05\x92\x7b\x82\xdf\xb7\xb4\x40\x1e\x32\x23\x59\xf5\xa4\xdf\xda\x51\x84\x82\xd4\xbd\x50\xaa\x07\x2d\x49\xdc\x84\x5f\xd7\x4a\xf3\x6b\x29\xfe\x7c\x74\xde\xf4\x7a\xc1\x9d\x69\xc5\x04\x57\x29\xa1\x95\x2d\xb0\x66\x19\x92\xa9\x86\x46\xa4\xcf\xf7\xa9\xa6\x52\x17\x2a\x4b\x4d\xe8\x3c\x56\x7c\xd0\x70\xd8\x7c\xe2\x60\x19\x77\x5c\xe9\xf1\x1e\xc5\x2f\x4f\x8b\xcf\x29\xd2\x22\xdf\x23\xcf\x86\x1b\x4b\xab\x0c\xd3\x31\xd7\x0f\x28\x15\xa5\xc8\x8e\x50\x94\xa7\x42\x39\x6a\x4c\x4f\x15\x03\x75\xa0\x1c\xc7\xce\xef\x90\x35\x41\xa0\x08\x67\xbc\xb4\xa6\x3e\xe3\x45\xbb\xae\xe9\x01\x37\x98\xae\x6f\x3c\xc8\x06\x53\x3c\x84\xc7\x01\x1e\xc4\xc5\x26\xd3\xc7\xb6\xc9\x54\x97\xae\x26\xaf\x71\xb1\xcd\xf4\x9b\xbb\xff\xe6\x69\x00\xd3\x6d\x33\x5d\xdf\x5c\x6c\x33\x5d\x6c\x33\x7d\x54\x11\xb6\x29\xb4\xc9\x62\xab\x29\x2c\xb6\x9a\x2e\xb6\x9a\x3e\x92\xf8\xd6\x62\xab\x29\x79\x1e\xcb\x56\xd3\x35\xc1\x04\x5e\xd7\x4d\xe0\x54\xf4\xe3\xad\xa6\xeb\x69\x2b\x6f\xea\xa3\x98\xcc\x45\xd2\xd3\xff\xb6\x5b\x4d\xd7\x0b\x67\x2f\xcf\x75\xab\xe9\x94\x1b\x3e\x8a\x73\x90\xe1\x0a\xd4\xac\x27\xe1\xa2\x8d\x32\xc9\x9b\x53\x70\x12\x3c\x5c\x16\xea\x74\x5c\x05\x73\xdd\x73\x20\x73\xd7\x46\x6e\x2e\x81\xf8\xcc\x2f\x87\x77\xb1\xe7\x39\xad\xf1\xc5\x9e\xe7\x62\xcf\x62\xcf\x73\xee\xf3\xf7\xdf\xf3\x6c\x8a\x03\x96\x44\x0e\x16\xfb\x9e\x93\x67\xb1\xef\x39\xf7\x59\xec\x7b\x96\x9e\xc5\xbe\xe7\x5c\x54\x17\xfb\x9e\xcb\x81\x5a\xec\x7b\x36\x3c\x8b\x7d\xcf\x39\xcf\x62\xdf\xf3\x78\xb1\xef\x79\x96\xfe\xfe\xfd\x6d\x8e\xc5\xbe\xe7\xc5\xbe\xe7\x12\x71\x8c\xc5\xbe\xe7\x52\x78\x2f\xf6\x3d\x97\x44\x7d\xb1\xef\xb9\x2c\x4a\xdf\xd9\x02\xfc\x37\xdf\xf7\x1c\x3a\xa3\xb1\x9b\xbf\xa8\x6f\x5a\xa1\x4f\x3f\x7f\x5a\xcd\xc9\x2c\x9e\x6c\x93\x9d\x6c\x30\x63\x5f\xc7\xee\x24\xb0\xdd\xf9\xa6\x2e\xe0\xff\xe0\xb2\x2d\x5c\xb8\xb5\xbe\xc8\x64\x58\x64\x32\x2c\x32\x19\x94\x67\x91\xc9\xf0\xfd\x65\x32\x88\x87\x66\x6f\xb4\xa7\xc8\x64\xd8\xc8\xba\xc8\x54\x7c\x94\xf5\xe7\x7f\xf4\xa1\xd9\x1b\xb9\xbb\xc6\xf8\xf3\xf8\x33\x19\x5a\xab\x22\x0b\x95\x5b\x90\x15\xd8\xa8\x4c\x00\x52\x61\xa5\x56\xd1\x75\xdc\x7f\x4e\x2e\x43\xa9\xd8\xe1\x22\x97\xa1\x20\x84\x87\x49\x48\xd8\xfe\xdb\xe5\x23\xcc\xb4\x38\xf7\x8f\x49\x47\xf8\x5b\xad\x56\x09\x6b\x49\xa5\x73\x7d\x44\x74\xd2\xf5\xcc\xa6\xa8\x66\x36\x66\x58\xf4\x6a\xc7\x3a\xa7\x88\x0d\x62\x7a\x14\xfd\xb3\xf9\xf8\x57\x07\x92\x5e\x3f\xfa\x75\xaf\x0d\xed\xfe\xf2\xa2\xcf\xd7\x5c\xf7\x9a\x63\x86\xcc\xea\x6c\x93\x58\xc6\xab\xb0\xf7\x5a\x0c\x37\xc3\xd5\xc0\x53\x23\x98\x20\x59\xca\x19\x2e\x86\x68\x9b\xa6\x19\x09\x71\x9a\x69\xd3\x8c\x12\x98\x64\x77\x68\xab\xa8\x7f\x63\x7a\xa6\x60\x2f\xfe\xcc\x32\xdb\xf9\xa3\x44\x18\x5b\xd3\x2c\x63\x8a\xcf\x9c\x56\xcf\x61\x7a\xca\x4c\x59\x6d\x56\x62\xce\x93\x90\x73\x22\xe2\xd7\x11\x76\x73\x5c\x91\x9e\x9a\x68\x73\x20\xd8\x0c\xe9\x0d\x33\xa6\x3d\xf1\x87\x76\xa2\x64\xfe\x13\x7f\xbe\x7d\x76\x86\x92\x6c\x3a\xab\x96\x9a\x9b\xf6\x84\x58\x83\x1a\x6f\xda\x2f\x0e\x42\x52\x74\x74\x01\x21\xe3\xda\xfb\xa2\xcf\x03\xa9\xbb\xf8\x98\x97\xb9\x43\x06\x4a\x4f\x7e\x30\x4c\x69\x77\xc9\x0c\xef\x61\x88\x0b\xb3\x29\xd8\x6f\xac\x9b\x13\xbb\xef\x5b\xe9\x52\x78\x18\xa3\x11\xf4\x21\x9f\x5e\x5c\xc8\x78\x3e\x08\xbb\x3f\x7c\x9e\xa5\xfa\x84\xad\xf5\x99\xf3\x2e\xd5\x67\xd6\x3c\x4c\xf5\x99\x81\xa7\xf8\x33\x8f\x59\xc2\x9f\x84\x64\x33\xcf\x16\xf1\x79\x18\x7f\x56\x7d\xe6\x95\xd7\xa9\x3e\x73\x18\xa3\x39\x80\xa0\x53\xb3\xf4\x02\x58\xd1\x67\x5e\x79\xa1\xea\x93\xac\xb0\x6f\x6c\x25\x79\xa2\x74\xb5\xbf\xf0\xea\x4c\x6e\x23\x53\x67\x8f\xaa\xcf\x23\x9b\x8f\x73\xca\x36\x55\x9f\xd9\xb3\x4f\xd5\x67\x46\xba\xcd\x58\x7d\x5e\x24\x7f\x00\x72\xcf\x97\xd4\xdf\xaf\x1d\x36\x67\xd2\xce\x8f\xac\xdf\x75\x84\x64\x16\x32\xce\x87\x84\xdf\x5d\x7c\x64\x91\xb1\x2f\x3f\x73\x20\xcf\x22\x63\x9f\x3c\x8b\x8c\xfd\x45\xc6\xfe\x22\x63\x7f\x91\xb1\x5f\x14\x8f\x45\xc6\xfe\xa3\xc8\xd8\x47\x2e\xea\xcf\xf9\x00\x3e\xe2\xdc\x2e\x72\xd7\x17\xb9\xeb\x8b\xdc\x75\xe5\x59\xe4\xae\x7f\xe7\xb9\xeb\xe9\xf7\x5d\x69\xe8\x27\x49\xc7\x45\xcf\xdb\x58\xe4\xae\x27\xbc\xb8\xd9\xfc\x26\xb9\xeb\x8b\x84\xe1\xb8\x4b\x8b\x84\x61\xe9\x59\x24\x0c\x17\x7d\x1e\x5f\xc2\xf0\x54\x59\x1b\x4a\x32\x0a\x35\x94\x67\x48\x28\x98\x73\x4e\x4a\x9c\x9d\x31\xe7\x2c\x97\x16\xcf\xca\x48\x3d\x05\xbd\x18\x9c\xf9\x12\x0f\xbe\x8b\x58\xeb\xb7\xcd\x21\xfb\x07\x24\x61\x7d\xbd\x2c\x8a\x24\x71\x66\xf6\xec\x89\x79\x65\x4d\xfc\x7d\x72\x89\xe0\xc1\xb3\x22\xe6\x9d\x0d\xf1\x6d\x96\x1e\x1f\x28\x71\x6a\xde\xd9\x0e\x49\x2c\x66\xb3\x45\xb3\x1c\x5a\xa5\x8e\x39\x36\xc2\x9c\x39\xa9\x61\xb1\xe4\x6b\x7e\x16\x4b\xbe\x8b\x25\xdf\x22\xcf\x62\xc9\x37\xf5\x59\x2c\xf9\x92\x67\xb1\xe4\xbb\x58\xf2\x5d\x2c\xf9\x2e\x96\x7c\x8b\xe2\xb1\x58\xf2\x7d\x0c\x4b\xbe\x74\x6b\xcc\xc9\xc4\x45\xa7\x24\x2c\xf3\x9b\xed\x4e\x32\xaf\xf3\x9c\xcb\x95\xbc\xc5\x5c\xf7\x0d\xfd\xfa\xc2\x78\xb9\xb3\xbf\x39\xaf\x85\xde\xcc\x5d\xea\xb3\x2c\xf4\x6e\x96\x59\xe8\xcd\xbf\x87\x76\xb5\xc0\xbe\xe8\xe2\x2b\xb2\xf4\x52\x64\x3a\x9c\xa6\x80\xa8\x7e\x4f\x2d\x4c\x3d\x59\x4c\x7e\x5b\xe1\xfb\x23\xcb\x4d\x16\xb5\xa9\xf4\x66\xca\xaf\xb4\x37\x4d\x17\x01\x37\xa7\xbe\x08\x58\x73\x69\x55\x8c\x4a\x1e\x6d\xc8\x56\xec\x67\x3e\xca\x50\x0e\xcf\x96\xcb\x01\x29\x29\x18\x0c\x31\xc5\x69\xb2\x1e\x4c\x3d\x87\x19\x72\x1f\xcc\x51\xce\x72\xd9\x0e\xd3\xe7\xb2\x48\x78\xad\xa5\xe6\xb5\x88\x4f\x91\x98\xe2\x94\x96\x40\x8c\x41\xae\x05\x32\x7d\x08\x2f\x2f\x3f\xa6\x40\x37\x52\x5e\x97\xcf\x25\x19\x17\xbd\x7c\x57\x7c\x92\xbc\x91\xcd\xb5\x8c\x1b\x63\x63\x8c\xf2\x23\xd2\x04\x62\xda\x15\xbd\x05\x3a\x0e\x73\xcf\x2f\x79\xe0\x94\x0e\x76\xd5\xef\x57\x49\xec\x98\xd7\x72\x41\x92\xd5\x51\x78\x55\xa0\x6c\xf4\xff\x6f\x9b\xd2\x51\x3c\x08\xff\x18\x52\x3a\xa6\x8d\x91\x0b\xb1\xf0\xf5\x2a\x51\x99\x1b\x45\xbb\x5d\x3c\xe4\xbd\x08\x16\x64\x3d\x8b\x60\x41\x61\xbc\x16\xc1\x82\x45\xb0\x00\xf2\x83\x05\xdf\x93\x6b\x90\x12\xde\x58\x38\x0a\x0b\x47\x41\xc3\xe9\xeb\x3a\x0a\x1b\x0b\x47\x61\xe1\x28\xa4\x3f\x0b\x47\xe1\x9f\xea\x28\x6c\x2e\x1c\x85\x72\x78\x2f\x1c\x85\x85\xa3\x90\xf5\x6a\xe1\x28\x14\x68\x6a\xbe\x8e\xc2\xa7\x6b\x27\x42\xa7\x63\xbb\x9f\xba\x94\x28\x34\xa0\x68\x0c\x49\xdd\x71\x8d\xd2\xdf\xdc\xae\x47\x28\x8c\x04\xc5\xac\x28\xe5\x5a\xd6\x82\x8d\xa1\xfc\x9c\x56\x0f\x33\x47\x67\x96\xd5\xc3\x2d\x6d\xcf\x93\x79\xac\x15\xf8\x2b\x2b\xaa\xc7\x94\xbf\x8c\xf4\x60\x5b\x5d\x37\xb7\x8a\xf5\xa1\xb8\x03\x6a\x47\x11\x0a\xbc\xd3\x3b\x2f\xb2\x6f\xe7\xc5\x5a\x5b\xed\x7f\x1a\x6b\x15\x5c\x98\x7e\xcc\xac\xb5\xa5\xe5\x14\xcf\xc8\x5a\x17\x59\x01\x8d\x82\x2c\x95\x17\xd8\x90\xb6\x1e\xc9\x81\x0a\x51\x62\x0a\x85\xf8\xc6\x9e\xfc\xf4\x00\xbe\x55\x47\x73\x2a\x0b\xb5\xf3\xa8\x57\xc3\x1f\x35\x1f\x6a\xbb\xf5\x66\xe4\x43\x9e\xd9\xf1\x90\xcc\x58\x70\x9f\xa8\xee\xe0\x26\x6e\xca\x96\xba\x21\x79\x5a\x29\xf7\x70\x23\xa3\x5d\xea\x90\x79\xce\x42\x11\x0e\x52\xce\xd2\x9e\xf1\xb0\x06\x3b\x18\xa6\x1c\xae\x50\x3c\x1e\x59\xc4\xdf\x14\x06\x6d\xab\x4a\x59\xc8\xe4\x5b\x9a\xfd\xc8\xbf\xa7\x21\xfb\xa8\x25\x8a\x16\xf0\x98\x51\xa2\xd8\x63\x3f\x8c\x02\x7f\x7c\x3d\x0f\x63\x3c\x5f\x6c\xac\xea\xc7\x22\x24\xa2\x68\x6d\xeb\xb1\x1b\x47\x6b\xda\xbd\xfd\xdf\xa1\x71\x54\xb0\x0f\x85\x59\x68\xe0\x4f\x2e\x5d\xb4\x17\x33\x52\x38\x23\x27\x15\xd2\x4d\xa6\xf3\x37\xda\xc2\xf9\x1b\xdb\x86\xf4\xd0\x58\xd4\x6d\xab\x82\x6c\x2c\x9f\xa7\xd1\x7e\x0c\x2a\x6a\x5b\x13\xc4\x99\x2a\x2a\x47\x1f\xe4\xe9\x02\x81\x38\xab\x69\xc6\x9f\xae\x04\x1e\x33\x9f\x6f\x17\xf4\x91\x0b\xf3\xf9\x5f\x13\x3f\x42\x83\x53\x6a\xcd\x16\x5c\xe0\x9c\xa7\xc9\x65\x92\x9d\xad\xb9\xcb\xce\x07\x1b\x8f\xa2\xb2\x73\x1a\x6b\x09\x85\x7d\x7b\x8c\x06\xfb\xd7\xf6\x2c\xf6\x52\xbc\x7e\x9b\xbe\x56\x47\x16\x32\x8d\x87\x44\xcc\x24\x9a\x62\xf0\xeb\xa9\x22\x4a\x24\x6a\x8a\xa8\x32\x10\x93\x3f\x59\x61\xce\x62\xab\x77\xd3\x2d\xdf\xe4\x89\xb4\x0c\x94\x0d\xaf\xd8\x12\x61\xc1\x2b\x70\xe2\x18\xce\x7a\xb3\x74\x0c\x47\xa3\x4f\xd1\x78\x8e\xda\xf9\x87\x5a\x50\x2f\xbc\xe2\x3a\xaf\x05\xf5\xf5\xcc\x7d\xda\xc5\xd7\x02\x0c\xaf\x78\x1c\xa3\xf0\xe2\x6f\xb8\xc6\xe2\x19\xa9\xcb\x7f\x73\x99\x8d\x50\x6c\x46\x42\xb1\x59\x99\xd2\x79\x78\x94\xa3\x9d\x3e\x53\x33\xba\x91\x95\x3e\x51\x78\xd6\xc2\x1c\x67\x2e\xcc\x32\x7b\xe1\x9f\x70\x90\x5f\xf6\xac\xce\xe9\xda\x4c\x93\xbe\x5c\x52\x0d\x51\xcd\x5a\x44\x71\x35\x35\xa2\x98\xd1\x70\xa6\x2a\xc4\xcd\x84\xa6\x34\x8c\xb4\x1e\xcc\x39\x95\xcb\x60\xe3\x49\xf8\xad\xa5\xda\x7b\xe2\xf3\x90\x8a\xe7\xab\x67\x72\xe9\x76\x63\x81\x6e\x64\x67\x72\x95\x10\x45\xa4\xbf\x19\xd7\xe4\x3d\x54\xca\x58\xf6\x02\x78\xe2\xac\xad\xd1\x84\x90\xcc\x6c\xb7\xec\x24\x90\xc5\x7a\x7d\x5e\xbb\x7f\xcf\x30\x67\x61\xbf\x77\xe2\x95\xf1\x7c\x4b\xac\x78\xe5\x39\xc3\x2e\xf2\x86\xd1\x35\xfc\x28\x09\x79\xa3\x23\xf8\xd0\xab\xad\x0f\xb6\x0d\x78\xb5\x60\x90\xa2\x98\x13\x3b\x2e\x9a\x76\x9a\x78\xba\xdb\xeb\x86\x55\x41\xaa\xd9\xd2\x7d\xe4\xb4\x94\xd2\x82\x13\x25\xcc\x3c\x1d\xec\xde\x84\xcb\x62\xd7\x72\x81\x66\x4a\xaf\x5b\x15\x4c\x66\x35\x33\xb2\xa0\x84\x4c\xe7\x0f\x67\xd9\x20\x45\xf9\x24\xf7\x8c\xc4\xf2\x36\x86\xe2\xe6\x18\xef\x76\x4f\x17\xff\x8f\x7a\x25\xbc\xb0\x40\x97\xa2\x65\x0b\x69\xfe\x77\x92\xe6\x5b\x0b\x69\x5e\x04\xe7\xef\x53\x9a\x7f\x8f\xb2\x46\xbb\x2a\xe2\xa1\x96\x06\xe5\xcd\x61\xe6\xf4\x89\x12\xd9\x1c\x6a\x07\x16\x09\x51\x22\x8c\x69\x05\xe4\xf6\xbc\xd7\x9e\x3f\xda\xae\x33\x38\xb3\x53\xbd\x92\xc7\xcb\x57\x91\xbd\xe0\xab\xb9\xf1\x55\xab\x39\xef\xc5\x5e\x61\xa0\xf3\x57\x7a\xe7\x99\xd8\x90\x99\x74\xb7\x95\xb1\x02\xdc\x6a\x3e\xfa\xdb\x8d\x5a\xcd\xb9\x5e\x6f\x94\x17\x32\x13\x69\xb3\x56\x3c\xa9\xa1\xe4\xf9\x4a\x29\x36\x59\xba\x49\x2c\x52\xb1\xdf\x6a\xae\x4f\xb5\xc4\x51\xca\x50\x86\x39\xf9\x63\x99\x86\x33\xcc\xc1\x1f\x6b\x35\x8d\x3b\xdb\xb2\xe3\x71\x25\x17\xf8\x53\x57\xef\x19\x06\x9b\x53\x2f\x39\x91\x58\x71\xd9\xa5\xa6\xbc\x58\x7d\xd9\x15\x8c\x42\xf1\xf9\x79\x2c\xe6\xb7\x9a\xda\x06\x8e\x0c\x9c\x33\x96\x7d\x4b\x2c\x02\xb1\x65\xdf\xd4\x4b\x50\xe6\x32\x8c\x30\xed\x50\xc2\xdf\x6d\xe9\x25\x63\x88\x33\xfa\x51\x62\xfd\xaf\xf8\xfd\x70\x39\xde\x20\xa4\x7a\x84\x29\xcd\x97\x58\x47\x48\x5b\x38\xc9\x0f\x4f\xcd\x65\x1d\x61\x26\xe7\x14\x0a\x2b\x53\x28\x9d\x30\xde\x6a\x6e\x57\xc3\xac\x9d\x36\xf0\x7d\x9b\x94\xf3\xde\x44\x14\x7b\x92\x5f\xc3\xa0\xcc\xd8\x52\x64\x28\x9c\x9e\xf8\x96\xd9\xfc\x5a\x81\xcd\x43\xc5\x96\x5c\x65\x50\xca\x4e\xbe\x29\x99\x27\xbf\xd1\xb4\xe8\x57\xb9\x90\x8e\x7a\xe9\x59\x7a\x40\x4c\xb5\x70\x73\xc5\x5f\xc9\xe8\x29\x4c\xa3\xb9\xe6\x61\x18\xe6\x6a\xa6\x59\x0d\x43\x3d\xb2\x6a\x40\xcf\x24\xf7\x0a\x19\x17\xd4\x2e\xa4\x53\xcf\x18\x6b\x6c\x9b\xc6\x79\x3a\x71\x6e\xd2\x4f\xd9\x86\xf5\xd4\xb1\x46\xb5\xa9\xf4\x66\x4a\xc7\xa6\x0b\x6f\x3d\x84\xcc\xed\x87\x90\x2d\x97\xe2\x22\xf9\x89\xb9\x59\x72\x2a\x06\x53\x44\x5e\x49\x74\x28\x9c\x2a\x52\x54\x7e\x19\x08\x9e\xd2\x03\x49\x9e\x4d\x89\x54\x56\x74\x3f\x05\x8b\x12\x76\x51\xda\x65\x8f\xd9\x0b\x02\x29\xed\x4e\x9b\x4c\x55\x58\x2e\xc6\xd8\x2d\x2c\xfb\x54\x79\x9a\xd3\x8d\xb9\xe5\x3a\xe5\xc9\xdb\xb8\x9c\x51\xee\xe6\xa0\x53\x32\x71\x29\xeb\x44\xb4\xfc\x80\x47\x0a\x1e\xb3\x4d\xac\x34\x94\xf2\xd1\x29\xb4\x72\x5d\x2e\xe6\xb7\x88\x49\x4f\xeb\x40\xb4\xe6\x1d\x93\x8e\x97\x0c\xbe\x8d\x03\x31\xfd\xc6\xf0\xf6\xdc\x37\x86\x3f\xd8\x12\x7e\xa9\x8d\xe1\xed\x5c\xee\xca\xb6\x6d\x72\xec\x9a\x3c\x9b\xa6\xb0\x3d\x53\xdc\x6c\x28\x63\xc7\xdc\x67\x62\xab\xd9\x2f\x25\x90\x98\x43\x56\x42\x01\x5b\xe5\x81\x12\x17\xa6\xb4\x4d\xfe\x59\xc1\xe3\x74\xfb\xe3\xc1\x76\x0f\xe4\xd8\x1b\xe9\xb6\xc6\xe3\x53\xe6\x59\x28\x3c\x90\xbb\xf9\xd5\xdd\xc2\xa9\xb5\x8d\xd6\x4b\x5d\xeb\x18\x68\x35\x97\xe9\x53\xc8\x5c\x9c\xc7\xf4\xd1\xb5\x54\x06\xca\x69\xd3\x27\x57\x7b\x69\xfd\xca\x3e\xc3\xb6\x80\x97\x0e\x05\x3d\x75\x28\xeb\xad\xc3\xf4\x9b\x3b\x4a\x78\xed\x90\xee\x75\x14\xf1\xde\xa7\x44\x32\xcf\x8b\xcf\xc0\xaa\xa4\x2f\x94\xe6\x69\x41\x21\xaf\x3e\x03\x8f\x72\xde\x3d\xcc\xe6\xe1\xc3\x2c\x5e\x3e\x7c\xc5\x5d\x7f\x85\xbd\x7e\x98\xf3\xae\xbf\x6c\xef\x3f\xa7\x6b\x19\x9f\xca\x47\x02\xa0\x44\x34\x00\x72\x23\x02\x39\xe8\x4d\x71\x5a\x6a\x56\x74\x00\x0a\x8b\xfc\x0c\xbc\xbe\x9f\x20\xc6\x22\x98\xf0\x4d\x83\x09\xb3\xad\x46\x7e\xb4\x03\x60\x87\xa3\xef\x47\xb7\x78\xbe\x55\x02\xdf\x8f\x2a\x7c\xbe\xc5\xc1\x06\x27\x7c\x83\xc2\x08\x0d\x7e\xa5\x85\xcf\xd0\x6d\x24\xc7\x1b\x58\x03\x09\xb0\x44\x40\xb7\x52\x02\x18\x4e\x78\xe4\xbd\x4d\xbd\x1d\x42\x03\xd8\xd5\x61\xaf\x40\xeb\x9c\xd0\xaa\x42\xef\x6c\xa8\xa4\xb5\xe4\x85\x28\x88\x5e\xfb\x7d\x3b\xb5\x1d\x9f\xa0\x10\xc2\xb3\x67\xfc\xcf\x7a\xdf\x1e\x47\x93\x00\xf1\x6a\xb0\xab\x8e\x87\xcb\xbe\x74\xe2\xbf\xaa\x35\x81\xfa\xd0\x81\xcf\xf7\x3a\xbd\x9d\xa1\xe7\x07\xe8\xcc\x1e\xc2\x8e\xa9\xd5\xf8\xf3\x8b\xa4\x4a\x78\xed\x4f\xdc\xc1\x5b\x6c\x8d\x9c\xde\x20\x17\x45\xbe\x67\xae\x6c\x28\xc8\xc0\x60\x76\x09\x50\x38\x71\x23\xc6\x8b\x61\x64\x07\xd1\xc9\xc4\x45\x87\x8c\x4a\xb1\x69\xc3\x19\x92\x15\x97\xa7\x22\x6e\x4d\x92\x32\x3b\x7c\x22\xd2\x31\x31\xd1\x36\x01\x26\x53\x43\x9d\x8a\xa5\x1a\xfe\x21\xbd\x59\x6d\x9e\x20\x6f\x70\x70\x3b\x46\xfd\x88\x0d\x52\x8a\x68\x88\xae\x03\xff\x13\xa9\x79\x39\x71\xdc\xc1\x69\x14\x4c\xfa\x98\x03\x06\x07\x41\xe0\xd3\xb3\x22\x46\xf6\x2d\x9e\xa1\x14\x1a\x1a\x50\x81\xc3\x5e\xea\x58\xc1\xae\x6e\x6c\x24\x85\x6b\xd0\x21\x5b\x88\x73\x80\xc8\xfd\xda\xa5\x44\xf0\x47\xe3\x49\x14\xb3\xa6\x02\x58\x03\xb8\x0c\xad\x9a\x0c\xa6\x33\x05\x98\x98\x6c\xf7\x3d\xef\xbe\xe7\xa1\xdb\xb1\x1f\x44\x84\x3f\xc7\x68\x48\x78\x4e\x34\x9b\x5f\xf4\xbc\x25\x6b\xc9\x19\x91\x42\x9f\xe1\xe2\x22\x1c\x07\xc8\x1e\xec\x05\x81\x7d\x17\xc2\x3d\x5c\x05\xfe\x08\x7a\x4b\x51\xe8\x3a\x97\xbd\xa5\x17\x3d\x2f\x2e\xea\x84\x54\x2a\x1c\xb8\x68\x84\xbc\xc8\x02\x27\x7c\xed\x44\x48\x7e\x43\xaf\x66\x89\x5f\x30\x78\x95\x7a\x23\xba\x1b\xa3\xb0\x22\xc2\x8b\xb1\x4b\x0a\x11\x0c\x03\x5c\x0a\xa3\xff\xf6\xf5\xbb\x93\xbd\xd7\x17\xbf\xec\x9d\xfe\x72\xb6\xf7\xf3\xc5\xc9\xc1\xcf\x07\xff\x86\x1d\x68\x54\xff\xfc\xd2\xfd\xb3\xd7\xeb\xf5\xce\x6b\x4f\x1b\x78\x3e\x36\x9e\x3f\xef\x79\xf0\x1c\x7e\xbf\x46\xd1\x35\x0a\x20\xf2\xa1\xef\x7b\x1f\x51\x10\xc1\xfb\xa7\xef\xc1\xf1\x80\xca\x21\x08\x26\x2e\xe2\x93\x92\xd4\x88\x7c\x78\xff\xf9\xa3\x1d\x58\x40\xcf\xea\xbc\x7f\x4f\x5e\xff\x34\xb6\x03\x7b\x04\xc8\x85\xbd\xd3\x33\x60\xbd\x11\xbf\x50\x78\xa7\x91\xdd\xbf\x01\xcc\xf9\xc8\x8b\x78\x1b\x21\x7e\x89\xcb\x36\xe2\xb1\x88\x05\x9e\xe7\x07\x23\xdb\x75\xfe\x8b\x7e\xb1\xc3\xeb\xc8\x1e\x72\x41\x5b\x45\x6e\x62\x24\x23\x37\xac\x5f\xf9\xc1\x81\xdd\xbf\xae\xc6\x35\xab\xc8\x95\xe6\x52\xa3\x01\x47\x57\xf0\x09\x55\x02\x04\xc8\xeb\xfb\x13\x2f\x42\x58\xdb\x82\xcd\xf1\x40\xae\x3c\x83\x9f\x28\xe3\x47\x20\x3e\x7b\x06\x4f\x94\x41\xc3\xef\xb5\x69\x4b\x25\x86\x79\x7a\x36\x1a\xf0\xb3\x0f\x03\xff\x93\x07\xd1\x75\x4c\x5e\xb0\xbd\x01\x84\xc8\x0e\xfa\xd7\x70\xe5\x07\xf0\x14\x0f\x83\xed\xdd\x81\x4b\x79\x06\x50\x4c\x55\xf6\x1c\x5f\x7e\x40\xfd\xa8\x7e\x83\xee\xc2\x2a\x72\xeb\x0c\x4e\xcd\x40\x0b\x67\xa0\x21\x88\xf9\xe5\xc2\x7e\xa1\xbf\xf4\xc7\x58\xb2\x26\xf0\xba\xce\x40\xb5\x5a\x39\x2d\x61\xe8\x47\x60\xc3\xc8\x8e\xfa\xd7\x16\xfe\x7d\x6d\x7f\x44\x98\x45\xc2\xb1\xeb\x44\x10\x5d\x3b\xa1\x56\x11\xf7\xd2\xf1\x30\xe2\x60\x03\x4d\x41\x67\x74\xc4\xfd\xc5\xf4\x18\x39\x83\x81\x8b\x74\xc4\x48\x33\x8e\x37\x8c\xe7\xd0\x91\x37\x40\x58\xd7\xaf\xa8\x29\x64\xb8\xb4\xcb\x4b\x65\x78\x97\x98\xcc\x55\xa2\xca\x60\x07\x9a\x2f\xc0\x81\x1f\x70\xf7\xeb\x1f\x6d\x77\x82\x98\xd4\x7a\x01\xce\xf2\xb2\xd1\x82\xc1\x15\x91\x7b\xd1\xa2\x1a\x8c\x56\xea\x3a\xa9\x67\x67\x29\x73\xbf\x8a\xab\x12\x7e\x32\xcd\x5a\x9a\xdc\x89\x8b\x50\xb8\xe9\xd9\x9c\xa9\x54\x71\x52\x2c\x61\x91\x30\xb8\x81\x94\x62\x97\x01\xb2\x6f\xa6\xca\x49\x89\x1b\x48\xa5\x9a\x87\x3e\x91\xbb\xa8\x60\x27\xc1\x86\x11\x3d\x40\x63\xd7\xee\xa3\xaa\x89\x28\x16\xf4\x96\xfe\xd5\xfa\xdc\x5b\x82\x65\xcc\x9f\xa4\x02\x2c\x43\x6f\x29\x16\x46\xbd\x25\x93\xe3\xc7\x9a\x3c\x70\xd9\x36\x43\x22\x44\xab\x1c\x09\x53\x8d\xea\x85\x2d\x8e\x6a\xad\x8e\x19\xba\x8f\xea\xf6\x78\xec\xde\x55\x2f\x6c\x4b\x51\x03\xd5\xae\x79\x18\x2c\x68\x9d\x5b\xac\xed\x5a\xce\xfa\x42\xaa\xa8\x4b\xd0\x10\xc5\x49\xac\xc3\xf0\x1f\xf7\xaa\x8e\xb2\xc3\xd0\x19\x7a\x99\xda\xc9\xa0\x4d\xc2\xa0\x2f\x68\x94\xb8\x64\x1a\x66\x4a\xcd\xb8\x18\xae\xcc\x04\xf9\x73\xa9\x44\xac\xd2\x8c\x5f\x93\x96\x55\x2d\x40\xbe\xd0\x70\x89\x85\x47\x25\x11\xfd\xf8\x07\xec\xc4\x1d\xae\xa6\x23\xdb\x81\x28\x98\x20\xcb\x64\x82\xd2\x4f\x70\x6f\x41\x95\xc0\xfb\xf2\x05\x3e\xdf\xc7\xc3\x45\xa7\xb9\xc4\x3a\x22\x26\x82\xad\x89\x7f\xd7\xd3\xda\x97\x26\x43\xa6\x5a\x93\x6d\x4b\x66\x7a\x22\x37\x8c\xc7\xb9\x32\x09\x11\x60\x5f\xb1\x1f\x71\xcd\x4f\x7f\xbd\x0b\x9c\x03\xaf\xef\x0f\xf0\xc4\x0a\xd0\x5f\x13\x27\x40\xd5\x0a\xfd\xb4\x32\x09\x9c\x15\x44\x3e\x56\x6a\xac\x92\x4f\xf4\xc7\x1e\x65\x15\xa1\x06\x7d\xbf\x42\x49\x1a\x97\x1e\x20\x5c\x79\xdf\x1f\x8d\x7d\x0f\x4b\x6b\xa1\x02\xfd\x44\x9a\xe8\xf3\xef\xa4\x5e\xcf\x8b\xc7\x90\xb6\x1d\x1c\xfa\x01\x99\x32\x87\x98\x02\x51\x35\x1e\xcc\x5e\x14\x7e\x72\xa2\xfe\x35\xa3\xa2\x9d\x94\x61\x9f\x7b\x51\xdf\x0e\x11\x54\x1c\x3c\xaf\x2a\x1d\xfa\xaa\x17\x31\xf2\x24\xaa\xee\x06\xdd\x59\x40\xa6\x8b\x05\xa4\x6c\x5c\x5f\x28\x4e\x45\x07\x36\xf9\xb1\xdd\x0a\xbb\xd0\x4d\x8a\xf4\x22\x8a\x2a\x85\x44\x10\xb4\xc4\xaf\x95\x6e\x45\xfa\x4d\x1a\x91\x4b\x9c\x57\x92\x9f\xe7\xf5\x0f\xbe\xe3\x55\x2b\x15\x6c\x25\xcf\xd0\x0c\x2b\x4d\x5b\x33\x95\x3f\xdf\x31\x56\x60\xa4\x20\x15\x4c\x58\xbd\xe0\x2f\xef\xc9\x78\x25\x84\xbe\x0c\xec\xfe\x0d\x8a\x0a\x91\xba\x10\x8d\xb5\xfe\x96\x25\xc8\xfc\x7a\x38\x40\x57\xf6\xc4\x8d\x1e\x4d\xd7\xe6\xd1\xb1\x88\x7a\x33\xc2\x94\xa3\x02\x35\x7d\xc6\xe1\x59\x1d\xbb\xb3\x0f\x34\x05\xed\x7e\x7f\x32\x9a\xb8\x76\xe4\x07\x0a\x25\x99\x0b\xdf\xe8\xf5\xba\xd5\x5e\x6f\xf0\xbc\xd6\xeb\x9d\xff\xab\x51\x47\xb7\xa8\x8f\x21\xd4\xe2\xc1\xc2\xff\xbb\x41\x77\xb0\x03\x37\xe8\x2e\x36\x10\x70\x3d\x5c\x8d\xd4\xb2\x80\x91\x23\xae\x40\x0c\x78\xda\x88\xd4\x6e\x2f\x12\x30\xea\xde\xa0\xbb\x73\xd8\xa1\xb8\xbe\x10\x0b\xc5\xe6\x3b\x7f\x71\xaf\x02\xd7\xc1\xec\x08\x86\x66\x7e\x9b\x9f\xef\xd3\xa0\xab\x85\xbb\xb4\x1b\xdd\xd6\xb9\x8e\xeb\x2c\x93\xb6\xc8\xe0\x54\x09\x95\xcf\x6b\xea\xc0\xe4\x0c\xcb\xd7\x19\x12\x1a\x77\x99\xc7\x60\x74\x49\x73\xe7\x25\x58\xc0\x04\xe4\xbc\xde\xf7\xbd\xbe\x1d\x69\xe8\x70\x51\x32\x9b\x24\x4a\x1f\xaf\x79\x90\xa0\xec\x1c\x98\x03\x01\x74\x89\x65\x10\x7c\x14\xf1\xd8\xbc\xa2\x25\xe2\xee\x24\x41\xcf\xb0\x4e\x0d\x1d\xd8\x55\x8d\xa1\x2a\x93\xe3\x1d\x06\xfe\xdd\xc9\x51\x6c\xc5\x54\x05\xbc\x58\xf7\x44\x19\xff\x42\x45\x10\xfb\xda\xa7\x7e\x10\xa1\x80\x1a\x81\x02\x7a\x44\xc8\xd6\x9d\x90\xfc\xcb\xbe\xaa\x78\xb2\x48\xbf\x1f\x44\x55\xd6\x66\xc2\xc3\xd8\x38\xf6\xaf\x68\x11\x1a\x0b\xa6\x76\x58\x45\x05\x22\xe0\x20\x46\x00\x58\x8b\x14\x7a\xc2\x3f\xb6\x05\x97\xc2\xe8\x33\x18\x6c\xef\xb7\x5d\x83\x15\xfe\xf7\x25\x1f\x9d\xfb\x5a\x7d\x64\x8f\xab\x12\x0b\xea\x10\x48\x73\x64\x70\xe3\x6a\x06\x2a\x92\x52\x1a\x15\xd1\x6d\x14\xd8\xfd\xa8\x1a\x46\x81\xa0\x8a\xfe\x9a\xa0\xe0\xee\x34\xb2\x03\x2c\x79\xc2\x28\xa8\x13\x3d\x73\x7c\x55\xad\xec\x32\x5d\x87\xc9\x24\x96\xda\xc1\xbe\xbf\x4a\x9e\x4a\x25\xc6\x83\xbf\xc2\xc0\x42\xec\xc0\x89\xb5\x97\xa1\x55\xd3\x30\xa3\x9e\x46\x18\x05\x12\xf7\x31\x2f\x43\xb4\x97\xab\x9f\x05\xfd\xd8\x81\x8a\xe7\x7b\xa8\x72\x9f\xf8\x04\xbc\x53\x57\xa4\x40\x84\x02\xec\x3f\xa4\xea\x63\x56\xa1\xd1\x80\xfd\x00\xd9\x11\x02\xdb\x63\xad\xc1\x27\x27\xba\x06\xcf\x87\x71\xe0\x47\x3e\xe6\x11\x56\xf0\x3a\x8a\xc6\x61\xa7\xd1\x18\x3a\xd1\xf5\xe4\xb2\xde\xf7\x47\x8d\xd0\xf1\x06\x01\x0a\xfd\xe0\x7a\x12\x36\x48\x4f\x57\xe8\x8a\x52\xc3\x09\xc3\x09\x0a\x1b\x6b\x9b\x89\xda\xc7\x44\x66\xec\xd3\x27\x6d\x56\xb1\x2d\xc3\x31\x11\x18\x32\x8c\x02\x12\xc1\xae\x50\x58\x1a\x3b\x06\x28\x12\x07\x1e\x17\xa7\xc3\x17\x05\xce\xa8\x5a\x4b\x34\xc3\x9f\xdd\xdd\xa7\xcf\xce\x25\xc5\x40\x54\x42\xc2\x05\x19\x30\x89\x07\x1e\x55\x2b\xcf\x2a\xa6\xf8\x16\x89\x31\xc6\x40\x48\x24\xd7\x0e\xc8\x98\x91\x2f\xa2\x76\x5a\x6e\x0c\x2d\xa8\x40\xa5\xc6\x21\xee\xc4\x86\x54\xa3\x01\x87\x4e\x80\xae\xfc\x5b\xa8\x8e\x03\x04\x6b\xcd\x1a\xf3\x7a\x42\x78\xff\xff\xad\xbe\x7a\x4f\xa2\x9f\x3b\xef\xe3\xd2\xa5\xc6\x60\x3c\x71\xdd\xc6\xea\x66\x82\x22\x55\x9e\x04\xd1\x7a\x78\xed\x5c\x71\x99\x40\xbf\x7e\xb4\xdd\xf8\x6b\xbc\x02\xd5\x84\x5d\xf6\x8a\xda\x80\x3b\xc4\xab\x10\xc3\x5b\x31\x6e\x23\x27\x0c\x1d\x6f\x88\xf1\x65\x3e\x2f\x5c\x22\x78\x8f\x07\xf9\x7d\x47\xea\x41\xa7\xd1\xf8\xb4\x5a\xf7\x83\x61\xe3\xec\xa4\xd1\x6e\xb6\xda\x8d\xdf\x5f\xad\x4c\x02\x77\x05\xff\xdd\x5c\x6f\xaf\x35\x9e\xf6\x7d\xd7\x45\xc4\x89\x74\x57\x08\x45\x51\x84\x82\x90\x23\xeb\x52\xf5\x21\x6b\x1c\xd8\xa5\xc6\x71\x47\x75\x1c\xb1\xc8\x4d\x0c\x83\x78\x7e\x54\xd5\x62\x58\xea\x10\xbd\x61\x61\x76\x60\xc2\x85\x57\x64\x7c\x22\xca\x3f\x5c\x88\x89\xd6\x7a\x80\x06\x93\x3e\x12\x18\x84\x9a\x1d\x16\x88\xa2\x2c\xa1\x72\x80\x24\x49\x86\xb9\xf2\xa5\xef\xbb\xc8\xf6\x08\xb2\xf0\xec\x19\xb0\xc9\xc0\xbb\xc9\x65\x33\x89\x07\xcb\x92\x1f\xd7\x10\xc4\x65\xa3\x01\x58\x58\xf3\xe9\x8c\x51\xb5\xc0\xf3\x23\xaa\x60\xc2\x44\xaa\x12\x1b\x8f\x69\x52\x41\xc4\x73\x6a\x25\x06\xcf\x67\x73\x9d\x8f\xb6\xcb\xcb\x71\xe2\xc6\xb3\x89\xdb\xf8\xd1\xbd\x65\x9a\xf4\xb1\x1c\xa4\x81\x97\xb0\xce\x04\x34\xec\x70\x51\xfd\x22\xf9\x36\xe6\x0b\x24\x6c\x71\x24\xf9\x42\x19\xdd\xb9\xc2\x6c\x9d\x90\xde\xbf\xfc\x20\x09\x53\x1a\x4b\x20\x56\x0f\x9e\xa0\xac\x37\x54\x35\xb3\x20\x0d\x7d\x45\xd5\xb8\xf4\xca\x20\x73\x49\xaf\x18\x57\x98\xe4\x34\x6f\x4a\x16\xcd\xb1\x3d\x81\x19\x86\x8c\xe8\x95\xed\x86\x89\x5d\x21\x7c\x13\xba\x52\xe3\x56\xfb\xbd\x59\xc0\x67\xc4\x38\x64\xbe\xf5\x2f\x3f\xc0\xae\xc4\xbd\xfe\xe5\x07\xc6\xbd\x71\xd3\x59\x6a\x38\xe1\x5d\xff\xf2\x43\xcc\xbb\x31\xf7\x6a\xb3\x51\xd7\xdf\x4c\x4d\x0a\xdc\x22\x56\x24\x6c\xa1\xd5\xd1\xbc\x58\x13\x88\xcc\xd9\x90\xb8\x9c\x3c\xfb\x3e\xf9\xe2\x32\x1d\x6d\x12\xf0\x1f\x6d\xb7\xad\x99\xbc\xf8\x65\xa6\x99\x9b\x6d\xc1\x52\x3c\x68\x8e\x66\x22\x86\xb8\xbd\xdd\xb6\x18\xa2\x7c\x61\x56\x30\x5e\x45\xbf\x46\x9a\x63\x4c\x2c\x3f\xab\x68\x94\x49\xa3\x20\x2c\x43\x65\xa7\x02\xcb\x82\xe9\x2b\xd2\xf6\xbe\x56\xbf\x72\x5c\x8c\x57\x42\x8b\x5b\x55\x5b\x0a\x29\x0a\x4d\x5e\x2b\x46\x04\x3a\x74\xa8\xef\xa5\xa9\x4a\x26\xef\xbb\xc0\x95\xd8\x5b\x35\x7b\x18\x78\xd6\xd8\x24\x70\x3b\x20\x68\xe2\xdd\x4a\xad\xdb\x3c\x87\x2f\x5f\xa0\xc2\xa3\x17\x44\xdf\x75\x98\x11\x25\x1a\x79\x42\x10\xe3\x9e\xe1\xb2\x64\x2d\x35\xe8\x22\xe4\xbe\x3f\xbe\x0b\x9c\xe1\x75\x04\xed\x66\x6b\xdd\x82\x3f\xec\x6b\xdf\x87\x23\xaf\x5f\x97\x3f\x87\x80\xd9\xc3\x0b\xd1\x80\x0c\x78\x40\x16\x8b\xde\xa0\x4f\xf0\xf2\xf4\x15\xbc\xa6\x9f\x68\x95\x53\x84\xc8\x47\xbb\xdf\xf7\x47\x63\xdb\xbb\xc3\x8a\xf0\xf5\xd1\xfe\xc1\x9b\xd3\x03\xb8\x72\x5c\x44\x56\x7e\x22\x14\x8c\xc2\x3a\x5b\x78\x14\x62\xe7\xe8\x36\x42\xde\x20\xb4\xe0\xe2\x22\x40\x61\xa4\xc6\xfa\x33\x82\xea\xcf\xc1\x0e\xe1\x04\x61\xc9\x49\x03\xdb\x01\xfe\x5b\x8a\xa5\xef\xfb\x5e\x84\x6e\x23\x21\x74\x4e\x17\xc3\x8e\xbc\xc8\x95\x0a\x3a\xde\x47\x3b\x70\x6c\x8f\x7c\xd1\x6a\xd5\x1b\x93\xc8\x71\xc5\xe5\x61\xd2\x76\x78\x6d\xbb\xae\xff\xe9\xe0\xaf\x89\xed\x86\x17\xac\x30\x7b\xb9\x82\xf0\xdb\x06\x15\x8e\x61\x1c\x38\x16\x6b\x60\xc3\x4d\x82\x50\x67\xd2\x13\x8f\xb2\xfc\x85\x55\x3f\x64\xf3\x86\xe7\xd3\xc0\x0e\x34\x9e\x3f\x87\x9f\xfa\xae\x1d\x86\xf0\xbc\x01\x02\xdf\x5e\x84\x93\x31\x0a\xe2\x38\x78\x4c\xe8\xaa\x0a\xc4\x02\x56\x54\x4d\xde\x51\x0b\x1a\x13\x60\x68\x5d\x62\xb2\x12\x03\xe4\xd9\x33\xf6\x8a\xad\xde\x44\xd7\x4e\x68\x81\x1d\x0c\x27\x23\xe4\x61\x5e\xff\xf2\x85\xac\x54\xca\x61\x77\xb5\xa9\x7a\x6c\x7f\xb3\xdc\x94\xd8\x50\x79\x37\x1e\x60\x8b\x5d\x9c\x48\x1e\xba\x8d\xde\x06\xfe\x38\xd4\x76\x32\x91\x75\x25\xdc\x1a\x86\x37\x0e\x99\x5f\x4c\x96\x30\x6c\xba\xc8\x83\x15\x55\x74\x8d\x02\x52\x9f\x2c\x6d\x60\x26\x24\x6b\x4e\xdd\xde\x12\x33\x1a\x96\xce\xc5\xb5\x20\xba\xbe\x75\x1b\xfd\xc6\x61\xc5\xed\xc7\x20\xf1\x9b\x63\x03\xd8\xb8\x64\x3a\x74\x46\xd6\xea\x13\x89\x01\xaa\x49\x83\xbc\x13\x98\x92\xf2\x92\x96\x52\x25\xe9\x97\x8a\x50\x92\x91\xf1\x22\x97\xfc\x01\x22\x93\x5f\xd1\xcb\x0a\x99\x31\x89\x19\xa5\x0d\x5d\x21\x53\x94\x59\x40\x7c\x39\x96\x4d\xb1\xfa\xbe\xef\x85\x93\x11\x22\x09\x0e\xae\x6b\x09\xad\x38\x5e\xa4\x2f\x69\x9a\xa6\x29\x2d\x69\x58\x93\xa6\x5a\x26\x99\x2a\xb8\x5c\x5d\x7a\x69\x51\x0e\x21\x1f\x30\xa8\x98\xcb\x2c\x38\xc3\x02\x60\x87\x7c\xdf\xd9\x81\x8f\xbe\x33\x20\xee\x00\xed\xcb\x61\x60\x0f\xc9\x1a\x7a\xc7\xbc\xa8\x7f\x71\x89\xab\x8a\x8c\xe7\x0c\xf0\x9b\xcb\xba\x33\xb0\x60\x80\xc2\x7e\xe0\x90\xe5\x7e\xfa\x52\x78\x61\x71\x63\x2d\x41\x9b\x14\x10\xdf\x89\x6c\x7c\x19\xf3\x5c\xff\xda\x71\x07\x01\x62\x20\xf9\x2f\x0b\x2e\xfa\xf4\x0d\xdb\xee\x67\x81\xb8\xa6\x84\x3f\x8a\xdd\x23\xbd\xee\xc0\x45\xdf\xd0\x29\x8e\xa5\x8f\xb9\xe1\x33\x38\x83\x0e\x28\xbd\xe9\x40\x46\x4f\x3a\x6a\xcf\xee\x0d\x6d\x78\xc4\xfb\xdb\x91\x87\xae\x9a\xb4\x1c\x33\xbf\x21\x19\x52\x71\x0c\x08\x28\xf3\x42\x3e\x6f\xa5\x4b\xfe\x50\x53\x08\x0c\x6b\xec\xcc\x1d\x49\x48\x8c\x7d\x12\xce\xaa\x15\x63\x1b\x8c\xf9\x79\x15\x86\x4e\x7e\x53\xf1\xe8\x18\xa1\x36\x1a\xf0\x06\xa1\x41\x88\x5d\xe3\x49\x88\xe0\xbd\x3c\xab\x6a\xef\xc1\xf1\xc2\x08\xd9\x03\xf0\xaf\xe0\x7f\x4e\xff\xcd\xa4\xdb\x27\x27\x44\x4c\x53\x7e\x72\x5c\xd7\x08\xf7\x93\x1d\x78\x60\x5f\xfa\x13\x92\x63\xc2\xdd\xd9\x1b\x74\xf7\x1e\x30\x0f\xd3\xc8\x48\xe0\xf4\xaf\x57\x88\x6e\x64\x59\x95\xdc\x20\x77\xbc\x61\x3d\x95\x08\x06\x01\xc0\xb4\x03\xf9\xa2\x2f\xef\x0b\xf3\x10\x8b\x85\x73\x0b\xd8\x68\x66\xd3\x8f\x35\x47\xca\x4a\x8b\xf7\xb9\xf2\x6e\xe0\x84\x63\xd7\xbe\xc3\x13\x04\x76\xa0\xa2\x7e\xe7\x09\xa2\xac\x01\xf5\x33\xb6\xb1\x98\x94\x4b\x86\xaf\x96\xac\xac\x73\xb5\x6e\xa8\xb7\x74\x6e\x2d\x85\xfe\x24\xe8\xa3\x13\xdf\x8f\x96\x3a\x4b\x4b\xf7\xff\x7f\x00\x00\x00\xff\xff\xe4\xf8\xc4\xf6\x66\x24\x0e\x00") +// FileIdentifierStaticJs9F59f1e79ChunkJsMap is "identifier/static/js/9.f59f1e79.chunk.js.map" +var FileIdentifierStaticJs9F59f1e79ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\x69\x77\xe2\xbe\xd2\x38\xf8\x5d\x72\xfa\x5d\xf3\xbb\xd9\xb7\x67\xde\xfc\x8d\x31\x84\x00\x81\x00\xd9\x7a\xce\x9c\x1c\x07\x04\x38\x18\xdb\xf1\x42\x20\xf3\xe5\xe7\xd4\x22\xa9\x0c\x24\xe9\xee\x7b\xef\x73\xe6\x45\x14\x5b\xd6\x52\x2a\x95\x6a\x53\x49\xfc\xbf\x7b\x4b\x95\x66\x41\x1c\xed\xfd\xcf\x71\x65\x2f\x8b\x8b\x74\xa4\xb2\xbd\xff\xf9\xbf\xf7\xfe\xf5\xaf\xfd\x7f\xfd\x6b\x3f\x8a\xc7\xea\x79\x11\x8f\x8b\x50\x65\xfb\xd9\xcc\x0f\xc3\xf8\xfd\x1f\xf5\x56\xf8\xe1\x7e\xfc\xf2\xaa\x46\x79\xb6\x1f\x44\x63\xb5\xfa\xd7\x6b\xb6\x57\xd9\x55\x67\xe2\x67\xf9\x3f\x0b\xb5\x88\x83\x0f\xb5\x9f\xa5\xa3\x6f\x8a\x07\x51\x1e\xfe\xb3\x50\x59\xe6\x4f\xd5\x24\x4e\x17\x7e\x5e\xfe\x9e\x67\x61\xf0\x42\xe9\xbf\x54\x76\xf6\x69\x3b\xff\x67\xe1\xe7\x2a\x0d\xfc\xf0\x9f\x22\xd8\xcf\xf2\x35\xe4\xa9\x6c\xb1\x5f\x64\x6a\x38\x53\x0b\xb5\x8f\xa9\x1b\x47\xb9\x5a\xe5\x7f\xdc\x0a\x56\xee\xa5\xf1\x32\x18\xab\x74\x3f\x52\x59\xae\xc6\x9f\x36\x92\x2a\x7f\x94\xef\x8f\x5e\xf9\xe9\x5f\x49\x1a\x8f\x8b\x51\x1e\xc4\xd1\xbf\x16\x41\xf4\x75\xb5\x7f\xc6\xf1\xc2\x56\x85\xb7\xdf\xad\x9e\x8d\x66\x0a\x9e\xd2\x6f\x10\x6e\xcb\x41\x37\xe6\xed\xcf\xa0\x0c\x63\x7f\xec\xbf\x84\x6a\x1f\x26\xe7\xeb\xfe\x92\x34\x4e\xfe\xc9\xd7\x09\x92\xc6\x28\x8f\xd3\xf5\x43\x90\xcf\x86\xb3\x34\x7e\x0f\xa2\xe9\x60\x16\x2c\xb2\xdf\xa9\x0b\x1d\xf5\xa1\xef\x5e\x1a\x27\x43\xc8\x1a\xa8\x51\xaa\x3e\x9f\x4a\x02\x34\xc8\x04\x36\x83\xec\x77\x47\x19\x44\x4b\x3f\x0d\xfc\x28\xdf\x7f\x49\xe3\xf7\x4c\xa5\x9f\xa3\x73\xbd\x78\x89\xc3\x7f\xe2\x97\x4c\xa5\x4b\x44\x89\xfa\x6e\x85\xbc\xab\x97\xc4\x1f\xcd\xf7\x5f\x8a\x20\x1c\x07\xd1\xfe\xcc\x4f\x17\x71\xb4\xfe\x87\xbe\x7f\x33\xa0\x54\x8d\x8b\xd5\x06\xd1\xbe\xf8\x2f\x2a\xdc\x4f\x8b\x28\x0f\x16\x6a\x7f\xa6\xc2\x44\xa5\x44\xb7\x41\x34\x53\x69\x90\x67\xed\x38\xce\x7e\xaf\x65\x95\xed\x17\x79\x10\x66\xfb\x06\xcf\xbf\x5b\x6d\x14\x2f\x92\x38\x52\x51\x8e\x75\x71\xa5\xfc\x47\xc7\xe2\x67\x99\x4a\xf3\xe1\x2c\xc8\x9a\x51\x90\x07\x7e\x18\x7c\x7c\xb7\x08\xff\xb0\x07\xb5\xca\x55\x34\xfe\xbd\x01\xff\x6e\x9b\xc4\x34\x81\xe4\xe3\x02\x69\x57\xa5\x79\xa0\xfe\x66\x42\x06\xc5\x4b\x36\x4a\x83\x04\x89\xf7\xcf\xe7\x64\x14\x47\x91\x1a\xe5\xce\x78\xe9\x47\xa3\xdf\x44\x9c\xe9\x9b\x05\x81\x07\x72\xe0\xf7\xfb\xc6\x0e\xf7\xdf\x53\x3f\xe9\xf8\xc9\x30\x86\xd1\xff\x01\x35\x51\xed\x85\x9f\xd4\x82\x2c\xf1\xf3\xd1\xec\xef\x5b\x18\xe4\x7e\xae\xfe\xb6\xba\x4a\xa7\xea\xaf\x6a\x66\x2a\x54\xc0\xf0\xea\xc4\xf6\xfe\xb4\x3a\xff\xff\xdd\x6a\xdf\x70\xfd\x5d\x6c\x2a\x89\xa3\xf5\x24\x08\x3f\x9f\xd1\x30\x1e\xfb\xd9\xec\x1f\x95\xed\x3f\x4f\x52\xa5\x1a\x61\xfc\xf2\xe5\xfc\x8f\x8b\xd5\x3f\xf9\xac\x88\xe6\xdf\x03\x44\x85\xc3\x78\x3a\x55\xe9\xfe\x38\xc8\xf2\x52\xce\xe7\xe3\xc8\xd3\x60\x94\xff\x53\xa4\xc1\x3f\x2a\x1a\xc5\x63\xf5\x4d\x37\x63\x05\x85\xb0\xbc\x59\x0b\xdf\x54\xf9\x3f\xa4\x86\xbc\x92\x6e\x82\x82\x07\xd4\x18\x95\xa6\xf1\xe7\x70\xed\x50\x63\x74\x45\x7a\xcd\x55\xfa\x39\x01\x7d\x51\xfb\xeb\x6e\x4b\xfa\xca\x28\x4e\xd5\xfe\x28\x0e\xe3\x34\xdb\x7f\x09\x0b\xd5\x48\xd5\xe7\x44\xf7\x69\xcd\xf4\x0b\xde\xb0\xc1\xe7\x36\x26\x74\xaa\x22\x95\xfa\x79\x9c\xfe\xa3\x0b\xf0\xff\xef\x24\xdb\x5f\x36\xfb\x9d\xe8\x97\xb3\x27\x18\x61\x10\x01\x47\x6e\x46\xf9\x77\x9c\x0c\x54\xb1\x6f\x48\x65\x0b\x89\xc0\xf2\x59\x6f\x1c\xa5\xca\xcf\x55\x35\x55\xfe\x3c\x89\x83\x28\xff\x7c\xfa\x7f\xa3\x99\x4e\xb0\x0a\xa2\x3f\x6d\x81\x67\x74\x14\x2f\x16\x5f\x88\x8c\x2f\xeb\x4e\xff\x8c\x86\x44\xcd\x20\x1a\x07\xd3\xf8\xef\xea\x26\x41\x34\xff\xbb\x9a\x5f\x52\xef\x57\x15\xe3\xd4\x8f\xa6\x5f\x90\xe8\x57\x75\x61\xb1\xfd\x35\x7a\xd5\x9f\xce\x4c\x89\x2e\x7a\x7e\xa8\xf2\xfc\x4f\x7b\x2f\x35\x31\x5c\x27\xf1\x34\xf5\x93\xd9\x9f\x4e\x34\xb7\x92\xcd\xfc\x71\xfc\xfe\x97\xd4\x9d\xcd\xfc\xe4\x37\xa1\xcf\xd6\x59\xae\x16\xbf\xaf\x2e\xa6\xa9\xbf\x6e\x07\x73\x35\x8c\x1d\x78\xfc\xaf\x74\x52\x44\x59\x91\x24\x71\x9a\xab\x71\x33\x57\x29\x08\xd6\xff\x66\x77\x59\x18\x8c\xd4\xf8\xbf\xd9\x03\x62\x0d\xb4\xd5\xab\x38\xfc\x42\xf5\xff\x77\xba\x08\xca\x88\x6a\x07\x8b\xe0\x77\x0d\xf2\x3f\xeb\x28\x8a\x23\x3d\x29\x7d\x95\xfd\x77\xfa\x00\xe3\x34\x9e\xfc\x51\xd3\x50\x0d\x95\xca\x3f\xae\xf5\xf2\xa7\xb2\x44\xd4\xcd\x12\x7f\x14\x44\xd3\xbf\x80\x14\x3d\x39\xff\x0e\x83\x19\xfc\x49\xd7\x9b\x4d\xe4\xa9\x1f\x65\x01\xd8\x3c\x7f\xc9\x61\x3e\x9a\xff\xae\x08\xef\x14\x01\xfa\x7f\x3e\x6d\x63\x9e\xc4\x09\x68\xbc\xa0\x5b\x07\x23\xf5\x10\xa7\xf3\x6f\xdd\x30\xba\x0e\x0b\x82\x79\x9c\xf8\x51\x5c\xfd\x4a\x90\xe8\x1a\x39\xba\xb3\xa8\x42\x3b\x98\xce\x3e\x27\xec\x72\x8d\xbf\xd2\x7a\xd1\xfc\xfb\xb6\x83\x76\xec\x8f\x83\x68\xaa\xff\xff\x46\x27\x6a\xb4\xf0\x4f\x0e\x8e\xfe\xf1\x5f\xb2\x3c\xf5\x47\xf9\x6f\x76\xf8\x85\xa2\x0c\x73\xf7\x6f\xfa\xf5\x4a\x6f\x7f\xef\x69\xd4\x0f\xbf\xd7\x02\x19\xd8\xd0\x00\x0d\xa8\x53\x04\x1e\xe8\xfc\x1d\x1a\xe5\x9f\x34\xf2\x9f\xf2\x73\xfc\x1b\x4d\xff\x09\x3f\xb4\x23\x1f\x2b\x95\x7c\xcd\x12\x37\x7d\x66\xd3\xaf\x4d\xd1\x5d\x73\xf4\x5f\xc1\xce\x16\xc7\x80\xe5\xdc\xf1\xa3\x20\x29\x42\xb0\x59\x3e\x6d\x65\x16\x07\x59\xfe\x4f\x14\x47\xff\x90\xb1\x91\xe5\x7e\x1e\x8c\x32\x32\x85\x3f\xf9\xf8\xaf\xd1\xeb\x77\x4e\x08\x5c\xbc\x7f\xe5\x40\xdf\x61\x34\x7d\xbd\x16\xc9\xcd\xfd\x47\x5c\xe5\xdf\x01\xec\x3b\x87\xc2\x36\x6b\xf8\x27\xf1\xd3\x4c\xa5\x66\x38\xf9\x97\xde\x4c\xe1\x6b\xfe\xba\x23\xf2\xe8\xfd\xe3\x67\x59\x30\x8d\xfe\xd8\x40\xfc\x5d\x2a\x1c\xab\x49\x10\x29\x76\x18\x7e\xa1\xeb\x95\x5b\x10\xd6\xf2\x7f\x0d\xb2\x3f\x5f\x1f\xff\xa6\xaf\xf4\x7f\xaf\xa7\xaf\xbd\xb2\xc2\x1b\x96\xc6\xf1\xe7\x62\x57\x94\x1b\xa0\xdb\xed\x77\x4a\x4e\x55\xde\xf7\xdf\x87\xfe\xe7\xc2\x53\x14\x26\xf0\x87\xf1\x20\x4f\xbf\x12\xb7\xa2\xc6\x8b\x9f\xa9\x86\xca\x7f\xb7\xfd\xa5\x4a\x9d\xf4\xb7\x8a\x4e\x15\xe0\x2f\x8f\x61\xe5\xfc\x46\xf9\x20\xeb\x22\xec\x60\x98\xfd\x56\xf1\x5e\xe8\x07\x11\xd5\xf9\xda\x97\xb8\x6f\xf5\xcd\xfc\x2b\x55\x40\xfa\xc6\x5f\x82\x48\xf5\xd5\xb8\x18\x7d\xe5\x9c\x33\x15\x5e\x82\x68\xec\xe0\xde\x91\x0b\xfd\xc4\xbf\x53\x07\xfd\x4e\x5f\x7a\xfa\xb9\xa0\x9f\x24\xe1\xba\x13\x8c\xc7\xa1\x7a\xf7\x7f\x07\xfc\xbf\x52\xe7\x16\xdf\x29\x15\xbb\xab\x45\xc5\xe2\xe5\x2b\x8d\x68\x77\xad\x54\x85\x7e\x1e\x2c\xd5\xf0\x2b\x5f\xdd\x27\x75\xc7\x7e\xfe\x57\xf5\x92\xb0\x48\xbf\xd2\x0b\x76\xd7\x0a\x83\xaf\xcc\xc3\x4f\x20\x0c\xb2\x24\xf4\xd7\x37\xfe\x5f\x3b\x22\x93\x6f\x35\xcd\xdd\x3d\x13\x95\x63\xb3\x7f\x21\x0d\xff\x4a\x06\x7f\x2f\x5c\xb3\xb9\x0a\x55\xfe\x85\x9b\xf1\xfb\x26\xe8\xf5\xdf\x68\x20\x82\xdc\xf0\x2b\x6b\xf5\xeb\x36\xbe\x5e\x52\x6f\x85\x4a\xd7\xff\x64\xc8\x72\xbf\xdd\xdc\xf8\x6a\xde\xc5\x22\xfc\x7f\x2a\x7b\x91\xbf\xa0\xf8\x0b\xaa\xbc\x57\xd9\x53\xab\x24\x4e\x73\x68\x3a\x7e\x79\x75\xe8\x5f\x75\xaf\xb2\xe7\xb7\xd4\x1a\x72\x89\x1b\xee\x55\xf6\xe6\xf4\xfe\xc2\xf9\xa1\x8a\x28\x9d\xe6\xb3\xbd\xca\x5e\x40\x25\xf6\x2a\x7b\x89\x66\xd0\x7b\x95\xbd\x99\x9f\x75\xdf\x23\xad\x57\xec\x55\xf6\x46\x7e\x18\xee\x55\xf6\x16\x71\xe4\x8f\x83\xd1\x5e\x65\x6f\x12\x61\xee\x68\x06\xc5\x33\x94\xaf\xc1\x87\x4a\x01\x80\x74\xba\x57\xd9\x5b\xfa\x61\xa1\x74\x91\x16\x76\x00\x83\x2b\x72\x35\xbe\xe7\x4f\x53\x05\xe0\xe5\xb3\x20\xc3\x26\x72\xac\x95\x06\xdc\x81\x9f\x4e\x21\x1f\xbd\x3f\xf0\x3d\x0c\x46\x8a\xb2\x8b\x05\x20\x08\x9e\x81\x1b\xc2\xff\x2c\x53\x8b\x17\xc4\xca\x88\x42\x37\xa0\x42\x9e\xfa\xb9\x9a\xae\x25\x78\x80\x86\x20\x1a\x8b\xaf\x35\x35\xf1\x8b\x10\xca\xc7\xb8\x65\x0a\xcd\xd2\xca\x29\x0d\xcb\x16\xbb\x1e\x74\x6f\xa8\x7e\x10\x4d\x83\xc9\xda\x60\xda\xaa\x09\x84\x45\x97\x71\x33\xf3\x33\x8d\x06\xdb\x0a\x77\x1f\xa8\x0c\x67\x12\x54\xa5\x01\x69\xef\x7b\x95\x3d\x80\xef\x85\x50\x62\x5a\xeb\x4e\xf6\x2a\x7b\xcf\xcf\x38\x47\xcf\xcf\x30\x5b\xf8\xce\x5a\x16\x3e\xd3\xe8\xb3\x3c\x2d\x46\x79\x9c\x62\x16\x69\x9f\x84\x21\x7a\xc0\xce\xf7\x2a\x7b\x11\x7e\xcf\x92\x54\xf9\x63\x44\x31\x64\x06\x30\xc5\x50\x73\x0e\x55\xf6\x2a\x7b\xaf\xf0\x07\x99\x32\x2c\x66\xaf\xb2\x87\x21\x16\x06\x53\x36\x7f\xe6\x67\xa4\xcb\xec\x55\xf6\xcc\xc3\x04\x81\xc1\xa6\xd5\x5b\x11\xa4\x80\x94\xb7\xbd\xca\x5e\x01\xf3\xbd\x57\xd9\x7b\xdf\xab\xec\xad\xf6\x2a\x7b\x80\xca\x0f\x98\xf1\xbd\xca\x1e\x10\x32\x7a\x00\x69\x24\x2e\xf4\x05\x98\xc2\xcd\xbc\xbb\x7e\xd3\xd5\xeb\x64\xaf\xb2\x57\x83\xb2\x59\x27\x2e\xa2\x5c\x8d\xb1\xd0\x5b\xa1\x0a\x55\x8f\xd3\x91\xba\x4b\xc6\x34\x95\x9c\xd9\x57\x49\xe8\x8f\x14\xee\xf4\xda\xdc\x81\xca\x75\x8e\xb7\x57\xd9\xab\xd3\x62\x48\x32\x04\x79\x02\xff\x0a\x6c\x07\x40\x69\xec\x55\xf6\xae\xb0\x47\x44\x82\x04\x24\x13\xcd\x80\x6d\x4e\x63\x17\x40\x34\xb1\x5e\xaf\x48\xd5\x56\xdd\x6b\x18\x61\x91\xa6\xf4\xd6\xda\xab\xec\xb5\xa9\x77\x9a\x27\x15\xf2\x03\x06\x62\xed\x55\xf6\x3a\x00\x3d\xac\x21\xe8\x04\xea\xce\x82\x70\x9c\xe2\xd2\x86\x55\xbd\x00\x32\x22\x6a\xeb\xf1\x48\x7e\xfc\x20\xab\x1b\x88\x80\x16\xf9\x73\xfc\x1e\xe1\x98\xba\x7b\x95\xbd\xde\x5e\x65\xef\x16\xa6\x16\x06\x1f\x27\xd8\x79\x46\xc4\x3a\x57\xeb\x5e\xaa\x26\x01\x4c\xd2\xa4\x88\x46\x48\x68\x05\x02\x3a\x80\xd2\x45\x06\x5d\xde\x03\x99\xec\x55\xf6\xee\x70\x90\x7a\xd9\x46\x44\x18\xe3\x38\x82\x1e\x5f\xe3\x20\xc2\x96\x71\x16\x60\x08\xd9\xc8\x47\x58\x72\xd6\x52\xf7\x2a\x7b\x0f\x40\x7c\x40\x7d\x8f\x7b\x95\x3d\x58\x6b\x4f\x7b\x95\xbd\x5f\xb0\x26\x7c\x4d\x7a\x2e\x61\x4a\x6f\xf9\xe3\x20\xe4\x87\x2a\xe4\xba\x71\x34\x09\xa0\xc1\xac\xc8\x12\x15\x65\x6a\xa3\x50\x97\x47\xdf\xcc\x06\xf1\x42\xf5\x55\x34\x56\xa9\x4a\x41\x75\x43\x30\x5c\x8b\xd1\x85\x9f\xd0\x5c\x7a\xfe\x68\x86\xc0\xea\xe1\xc5\x11\x32\x20\x39\x93\xf5\xd4\x9f\x2e\xe8\xb1\x97\xc6\x93\x20\xc4\x4e\x60\xd2\x65\xa9\x01\xee\x50\x77\xe2\x31\x40\x35\xb0\x00\x3e\x3f\x0f\x3c\xb7\xef\x0d\x9f\x9b\x37\x43\xaf\x7f\xe3\xb4\x07\xcf\xb5\xee\xf3\x4d\x77\xf8\x7c\x37\xf0\x9e\xbb\xfd\xe7\xa7\xee\xdd\xf3\x43\xb3\xdd\x7e\xae\x7a\xcf\xf5\x66\xdf\x03\xea\x1f\x85\x71\xa4\xbc\x50\x71\xb7\xcf\x23\x3f\x1c\x15\x21\xac\xcc\x99\x1f\x4d\xd5\xb8\x1a\x20\xbb\x7c\x66\x02\xd3\xfc\xb7\xf4\x7e\x04\x19\xf9\x0c\xf8\x81\xcb\x93\xab\x7d\x5c\x38\xc0\x28\x2b\x16\xf8\xf8\x6c\x59\x2c\x2d\x7f\xdb\x31\xbd\x73\x20\x83\x79\xef\x23\x11\x4f\xe2\xf4\xdd\x4f\xc7\xf4\x92\x22\xb2\x91\x50\xee\xfd\x30\x18\xdb\x26\x42\xff\x63\x8d\x9d\x30\x0b\xcb\x72\x3f\x2f\x10\x78\x43\x8e\x0b\xb5\x88\x59\x9a\xf8\xc8\x4c\x8a\x4c\xb9\x7e\x18\xbe\xf8\xa3\x39\xbf\x19\x08\x8b\x4c\xd5\xd4\x4b\x31\xd5\x43\x2e\x32\xe5\x4d\x26\x24\x17\x8b\x4c\x35\x17\x09\xf0\x98\x60\xa9\xae\xfc\x68\x1c\x72\x89\xb6\xbf\x8e\x8b\x5c\x96\xeb\x50\x97\x45\xa6\xed\x00\xfd\x32\xa1\x07\xbd\xec\x75\xcc\x24\x10\x86\x66\x01\x63\xa0\x5a\x05\xc9\xc4\x47\x16\x09\xc3\x46\xe6\xea\xe3\x78\x91\xbe\x60\xa5\x40\x12\xfb\x96\x0f\x0c\xfd\x94\x24\xe4\x1c\x32\x13\x48\xde\x20\x49\xb1\x05\xd0\x2c\x50\x28\x64\x3e\x89\x90\xd4\x1f\xe5\xde\x92\x25\xa3\x82\x07\x8c\xcb\x02\x72\xc5\xfa\x33\x3f\x53\xe3\xbe\x9a\x06\x28\x7b\x82\x38\xba\x41\x95\xa2\xb2\x57\x60\xa3\x1b\x1f\x50\x16\x03\x73\xf6\x91\x93\x24\x30\x61\xd1\x88\xe4\xd5\x0a\xf2\xd6\xf8\x35\x88\xc6\xf1\x3b\xae\xef\x51\xc1\x33\xf8\x01\x1f\x1c\x48\xaa\x90\xb8\x3e\x8a\x3b\x3f\x57\x37\x44\xec\x35\xc8\xf0\x20\xa9\x43\xd2\x80\xe4\x0a\x92\x26\x24\xd7\x90\xb4\x20\x69\x43\xd2\x81\xe4\x06\x92\x2e\x24\x3d\x48\x6e\x21\xf1\x47\x23\x95\xe4\x59\x35\x8e\x43\xe5\xa3\xd4\xf6\xf3\x3c\x0d\x5e\x8a\x5c\x31\xf8\xa5\xf7\x2c\x21\x7e\xb3\x28\xb2\xfc\x2e\x53\x42\xb1\x49\xf8\x91\x6b\x65\x7e\x14\xe4\xc1\x87\xba\xeb\x03\xff\xcd\x92\x30\x40\x1d\x25\x6e\xc7\xef\x2a\x75\x7d\x5c\xa3\x77\x00\xc0\xbd\x8f\xf9\x77\x49\x62\xf2\x57\x61\x10\xcd\xaf\x88\x67\x3f\x20\x03\x83\x64\x80\xd3\x95\xdd\xf8\xc0\xca\x86\x58\x4b\x65\x28\x44\x09\xef\x8b\x78\xa9\x1c\x0d\x2b\x49\x91\xcf\x5e\x6f\x80\xdd\x3e\x41\xb5\x5f\x90\xfc\x40\x44\x80\xa6\xf0\x02\xc9\x08\x92\x31\x24\x0a\x92\x09\x24\x53\x48\x66\x90\x04\x90\xbc\x42\x32\x87\x24\x84\x64\x01\x49\x04\x49\x82\x75\xad\xad\xb2\x47\x1a\x27\x90\xdc\x0b\x52\x10\x70\xc4\xe7\x31\x2c\x25\xcd\x36\xe9\x6d\xa0\x05\x12\x30\x3a\xae\x19\x06\x91\xba\x41\x5b\x10\x07\x98\x17\x29\x32\x7d\x54\x69\xb0\xc7\x78\xac\x8b\xae\xe0\xfd\x19\x75\xc5\x61\xea\x8f\xe6\x58\x65\xaa\x72\xa1\x7c\xd6\x14\xc5\xb3\xd1\x62\x2a\xf9\xbb\x48\xe3\x99\x04\xd3\x02\xb7\xef\x50\xa0\x03\x97\xe2\x97\xa9\x32\xac\x2e\x13\x8f\x79\x9c\x60\x5f\xc4\xe6\x73\x80\x60\x8d\xf8\x9b\xa9\xd1\x1c\x35\x88\x8f\x17\x2b\x3e\x5d\x93\xcb\x19\x86\x7b\xbe\xa7\x3e\x4c\xbe\x5e\xfb\x01\x85\x1b\xda\xf2\xce\x8b\xcd\xd5\x95\x80\x77\xa6\x71\x18\x62\x81\x2a\x14\x70\x21\xa9\x41\xe2\x41\x82\x22\xb9\x66\x57\x93\x3f\x02\xee\x64\xf9\x63\x03\x0a\xd5\x21\xb9\x22\x15\x31\x54\xa3\x5c\x82\x37\x10\x39\x41\x06\x98\x80\xc7\x26\x8e\x08\x84\x41\x1a\x17\x59\xb8\x1e\xa8\xbc\x19\x45\x2a\xbd\x1a\x76\x80\xce\xaf\xe1\x73\x0b\x92\x36\x4e\xb7\x5a\xe5\xc8\x43\xb1\xcb\x0e\x64\xdd\xbc\xa0\xa2\x0b\x6b\x10\x92\x5b\x48\x3a\x03\x27\x49\x90\xf9\xa8\xd1\x5d\x94\xf9\x13\xd5\x8e\x47\x7e\x58\x2f\x22\x74\x7f\x30\x0d\xe1\xd2\xbb\xeb\xa3\xee\x23\xba\xc4\x39\x47\x06\x36\x09\xd2\x2c\x47\x69\x6b\xd6\x83\x7e\x03\x04\x47\x63\xfd\xd6\x47\xc2\xf5\x6d\x61\x20\xa4\x21\xe9\x32\xf0\xa8\x91\x3c\x80\x72\x43\x48\xfc\x28\x58\x20\x4b\x53\xa8\xf4\x9b\x57\x52\x2d\x09\x46\x93\x99\xe5\x7e\x8a\x8b\xdd\xec\x25\x52\xad\x3b\x68\xe9\x1e\x92\x07\x44\x79\xbe\x46\xea\x32\xf5\x4a\x55\x60\xd5\x43\xa9\x27\x48\x7e\x41\xf2\x03\x01\x01\xa5\xe9\x05\x92\x07\xe5\xcf\x3b\xa8\x4f\x50\x3a\x82\xcc\x31\x1a\x3c\x61\xae\xd2\x88\x15\x53\x14\x3e\x43\x5c\x76\x6a\xc4\x42\x2f\xf8\x50\x63\x4d\x6d\x63\x35\x5b\x8f\xc1\x86\x00\x08\x27\x50\x62\x36\xd2\x6a\x20\x00\x19\xbc\x84\x44\xdf\x53\xc8\x0e\x48\x67\x8b\x46\x3e\x0c\xf0\x15\xde\xe6\x90\x84\x23\x5c\xc8\xac\x46\xb5\x83\x2c\x57\x91\x4a\x33\x99\xd9\x04\xbc\x44\x23\x64\xfc\x41\x06\x2b\xcf\x9f\xe2\xb0\x07\x79\x9c\x24\xd8\x7d\x90\xf5\x40\xee\x65\x4c\x2f\xa9\x0a\x15\x31\xc4\x05\x34\x8f\xfa\x62\xae\x65\x59\x96\x8e\x84\xbe\x10\xa7\xa9\xca\x92\x38\x1a\x07\xd1\xf4\x2e\x13\x64\x0e\x92\x3d\xca\x59\x62\xc4\xd0\x42\x02\xc9\x1b\xb6\x15\x27\x6d\xb5\x54\xa1\x9e\x79\x94\xdf\x28\xf9\x4c\x47\x00\x34\x4e\xd1\x48\x65\x79\x8c\x03\x4a\x47\x5a\x2c\x0e\x70\xdb\xba\x1e\xfa\x68\x5f\x66\x8c\x9a\xdc\x0f\x22\x95\x36\xa3\x09\x08\xfa\x1c\x32\x0b\x48\x96\x90\xbc\x43\xb2\x82\x64\x0d\xc9\x07\x24\x0e\x24\x55\x48\x5c\x48\x6a\x90\x78\x90\xd4\x21\x69\x40\x72\x05\x49\x13\x92\x16\x4e\x7f\x18\x03\x67\xe8\x46\xb2\x43\x58\x72\x48\x01\x2a\x54\x38\xb1\xb8\x71\xaf\xd2\x26\x20\xb6\x03\x5f\x6e\x20\xe9\x21\x40\x30\x15\x2f\xa1\x7a\x4e\x8b\x08\xac\xcd\x5e\x1a\xc4\x69\xc0\x52\xcc\x3c\x32\x5d\xc0\x22\x85\x4a\x7d\x48\x06\x90\x0c\x21\xc9\x66\xc1\x04\x50\x73\x57\x6a\x50\xc7\xf7\x4b\x35\x4a\x7f\xbb\x41\x77\x89\xe8\xeb\x1e\xc9\x18\x92\x27\x48\x7e\x41\xf2\x03\x09\x18\x0d\xd7\xe2\x85\x79\xce\xc8\x4f\xf2\x22\x25\x93\x0c\xf0\x2e\x9a\x78\xc1\xef\xc8\xa3\xc6\xb2\xaf\xbb\x4c\xa5\x55\x40\x53\x10\x4d\x45\x71\x22\x72\x48\xa6\x90\xcc\x90\xe8\x70\x41\x8f\xc7\x38\xf1\x9a\x72\x81\x47\x01\x24\xaf\xa5\xd5\xde\xd4\xab\x5d\x2b\xb6\x2f\x71\x3a\x56\x69\x73\xe1\x4f\x55\xb7\xc8\xc9\xf3\x20\xf2\x06\xec\x6a\x10\x59\x0f\xc1\x18\xbd\x25\x2f\xf1\xaa\x1e\xaa\x95\x7d\x6a\xa4\x71\x91\xd0\x6b\x37\x1d\x07\x91\x1f\xea\x9c\x51\x1c\x16\x0b\xd3\x25\xbd\x01\xc1\x4d\xa8\xfe\x84\x2a\xbf\xf3\x63\x2f\x06\xfe\xb1\x54\xfc\x3a\x98\xa5\x41\x34\xe7\x97\x1b\x35\xf5\xc5\xb7\x6e\x4a\xba\xf3\x34\x0d\xc6\x4e\x8a\x9a\x25\x3c\xf6\xb1\x2d\x7e\xf2\x90\x73\xf1\xcb\x20\xf1\x23\xf1\xc6\x6c\x0e\x5e\x5d\x84\xaa\xf4\x62\x6b\xd2\xbb\xa8\xcc\x19\x5c\x7f\x12\x47\xf9\x83\x0a\xa6\xb3\x9c\x45\xbe\x1b\xfa\x8b\x84\x9f\xaf\xf4\x87\x38\xf1\x47\x34\x89\x31\x83\x1d\xa7\xc9\x8c\x34\xb6\xdc\x7f\x19\x90\x53\xe6\x3d\x18\xc7\xef\x90\x45\x61\x18\xf0\x10\xc7\x0b\xd2\x2a\xc2\xae\x69\x62\x12\xc6\xf1\xd8\xbe\x82\x24\x97\x6f\x69\x3c\x57\x35\x3f\x9b\xf9\xda\x65\x64\x72\xe2\xc9\x84\x66\x99\xb2\x3a\xc0\xff\xc3\x60\x11\xd8\xac\xcd\x76\xf4\x84\xcf\x01\x1b\xc8\x52\xf3\x34\x00\x88\x16\x63\xe3\x99\x31\x3a\xc8\xcc\x4f\x1d\x6c\xaa\x78\xc9\xb4\x15\x8b\x68\x5c\xa8\xa8\x08\x72\xb5\x40\xbf\x15\xce\xd4\x0b\x71\xc6\x97\x94\x68\x02\x88\x7b\xf1\x82\xf4\x3d\x43\x7b\x68\x31\x45\x39\x99\x14\x6c\x78\x4f\xc9\x5b\x47\xc4\xb0\x50\xa4\xca\xfb\xa9\x0f\x4d\x1a\x67\x00\xe8\xfe\xf0\xfd\x1d\x9b\x8d\xa1\xb5\x84\x18\x33\xf0\x4c\x14\xab\x08\x35\x0e\x03\x17\x69\x3c\x06\xc0\x0b\x78\x5e\x6a\x49\x0a\x55\x35\x9e\xc0\x6c\x1f\x18\x19\xb2\x82\x22\x20\xb7\x9b\xf5\xd4\x5f\x48\x83\x8f\x94\x84\x07\x6d\x06\x84\xf1\x48\x8b\xc4\x19\xe9\xc1\xeb\xb1\x2d\xe6\x8d\x83\x9c\x55\xb3\x1a\x64\x7b\x90\xd4\x71\xa9\x16\x79\x5c\x8f\x47\x68\xe8\x35\xc6\x68\x06\xcf\xf2\x05\x60\xe7\x8a\xd1\x3d\x0c\x16\x2a\x46\xa4\x20\x67\x1c\x85\xca\x4f\x6d\xde\x35\xe4\xb5\x70\xdc\xa9\x5a\x06\x71\x91\x59\xe0\xc7\x3e\x22\xad\x8d\x0c\xd5\xc7\x49\x4d\xfd\x68\x8c\xe4\xd5\x81\xcc\x1b\x48\xba\x90\xf4\x20\xb9\x45\x55\x03\x92\x01\x24\x43\xd6\xa4\x92\x92\x4b\xe1\x0e\x81\x2c\x09\x9b\x7b\xc8\x7a\x80\xe4\x11\x92\x27\x48\x7e\x41\xf2\x03\x47\x88\xb3\x8e\x2a\x20\x7a\x82\x80\xc7\x4f\xc8\x26\x09\xb2\x9a\xf6\xd4\x20\x9f\x94\xda\x9c\xcc\x22\x4d\x5a\x2b\x39\x4a\x19\xbe\x1a\x93\x9b\x8d\xd4\x02\xe1\xff\x1b\xb3\x12\x0c\x05\x94\x46\x8e\x8a\x72\xe9\x86\x8c\x13\x21\xd2\x91\x69\x47\x23\x15\x56\x91\x89\x43\x0d\x12\xec\xa6\xab\x19\x93\x2f\x7e\xcf\x4c\x79\x9e\xd5\x3c\x58\x80\x29\x8c\x5c\xa0\x46\x32\x28\x42\xba\x08\xb2\x61\x5a\x64\xec\x9e\x43\x97\x25\x42\x06\x64\x82\x18\x40\xdf\x90\x42\x8a\x17\xc6\x24\x7b\x47\xb0\x69\x32\x49\x14\x7b\x4e\x70\x62\x27\x69\xbc\x70\x67\x7e\xea\x32\xed\x12\x86\x27\x71\xaa\x9a\xbc\x7e\x68\x5b\x0d\xf5\x32\x62\x6b\x22\x43\xb3\x31\x91\x65\xfc\x74\xa8\x57\xbc\x11\x3c\x6b\x6e\x3e\x25\xf4\xe6\x3e\x3a\x49\x33\xb2\xf6\x99\xe4\x11\xc2\xf7\x59\x40\xce\x21\x9c\xe4\x3c\x0d\xc9\xe9\xed\x87\x39\x3d\xc0\xe2\x65\x3f\xf8\xcc\x47\x07\x02\xd6\x22\xab\x20\x64\x57\x01\xe9\x76\x7e\xae\x00\x95\xc8\x1c\xa8\xbf\x45\x1c\x21\xe5\x46\xda\xac\x4a\xfc\x2c\x7b\x8f\x71\x59\x63\x48\x32\xc2\xe4\xa7\x0c\x41\xc8\x4a\x3c\xcf\x09\x74\x96\x86\xd8\x9b\x02\x3e\xb1\x82\x9c\xb5\x22\x50\xa8\x32\xb2\x61\x07\x92\x2a\x24\x2e\x2e\x52\xf4\x64\x42\x52\x87\xa4\xa1\x31\x30\x9a\x69\x6d\xeb\x0a\x69\x99\xad\x6d\x91\x7f\x0d\x59\x2d\x48\xda\xe8\xac\x44\x7b\x29\xc8\x70\x5e\xb0\xcc\x40\xc7\xc3\xc2\xfa\x43\x5c\x06\x0a\x08\xa5\x8b\x60\x20\x6d\xba\x64\x2a\x61\x75\x5c\xc1\x03\x56\x5d\x7a\x4c\xd6\x9d\x78\x1c\x4c\x02\x6b\x80\xdd\x92\x83\x0f\x4a\x42\x32\x44\x53\x1d\x92\x7b\xc4\xce\x28\x55\x2a\x7a\x34\x4f\x4f\xc8\x45\x02\x15\xe5\x8f\xe6\xe9\x09\x11\x3b\x55\x8f\xfc\xff\x49\x2b\x4c\x34\x6f\x2f\x45\x9e\xe3\x22\xa1\x07\x72\x0f\x87\xa0\x83\x1b\x57\x0d\xd0\xa4\x65\x8f\x79\x6c\x9f\xc1\xac\x59\x70\x6f\xfa\xf9\x09\xed\x01\x92\x7f\x38\xbd\x33\x2d\x36\x93\x54\x65\x59\x81\x34\x97\xc3\x0c\x45\x60\x44\xf6\x44\x66\x10\x62\x4b\xf0\x1f\x5a\xc9\xdf\x69\x95\xb2\xf6\xc8\xaa\x31\xe8\xeb\xc1\xc2\x47\x5f\xdc\x23\xae\xa2\xb8\xc8\x94\x17\x91\x27\x1b\x5f\xda\xca\x5f\x0a\xb5\x53\x7f\xe3\x57\xfd\xf5\x49\x09\xfb\x97\x66\x8a\x34\x74\xc3\xf9\x7f\x20\x11\x00\xc7\x7f\x41\x77\x34\x24\xe3\x89\xb1\x50\xd1\xa4\x01\xfc\x40\x32\x85\x64\x06\xc9\xeb\x84\x9c\x43\x69\x6e\x4a\x8a\xa5\x49\x6c\xc2\x64\x7b\x6c\xc3\x8d\x66\x71\xca\x96\xc1\x54\xb1\xbd\xab\x4d\x39\xf8\xd6\xd5\x42\x6c\x02\x12\x85\x4b\xe2\xb3\xf9\x32\x9f\xa0\x8b\x6e\xa0\x61\x43\xef\xba\xd1\x17\xd9\x37\xa1\x42\x3f\xc9\xd4\x78\x48\x0b\x28\xc9\x54\x31\x96\xf3\x39\x21\xb2\x49\x5e\x62\x3f\x1d\xd7\x48\xc8\x44\xd8\xee\x84\xd7\x38\x73\x8e\x04\xde\x3d\xb4\x33\x06\x60\x0b\xbf\xe0\xea\x6f\x2b\xd2\xc3\x81\x57\xf6\x79\xd6\x6b\xf1\x7b\x84\xeb\x0e\xa8\xfe\x01\x5d\xe5\x1d\x15\x15\xb0\x24\x12\xf4\xe1\x0f\x46\x69\x8c\xfb\x70\x9d\xf8\xa3\x97\x06\x11\x8a\x53\x22\xce\x37\xe8\xe5\x62\xaf\xb2\x77\xb9\x57\xd9\x3b\x3c\x82\xe4\x18\x92\x33\x48\xce\x21\x81\x8f\x87\xf0\xf5\xe8\x00\x12\xc8\x3b\x86\x72\xc7\x50\xee\xf8\x04\x92\x53\x48\xa0\xc6\x31\x7e\x85\x1a\xc7\x50\xe3\x04\x6a\x9c\xc0\xd7\x13\x6c\x8f\xda\xa7\x0e\x0e\x4f\x30\x3d\xc5\x94\xbe\x62\x77\xd4\xdf\x21\x81\x73\x80\xe9\x21\xa6\x58\xf7\x08\xeb\x9e\x60\x5d\x6c\xf8\xe8\x08\x9e\x53\xf2\x0e\x27\x0a\x0d\xd5\x6c\xc2\xf2\x7b\x08\xf6\xf5\x04\x29\x33\xc7\x0d\x8c\xb8\x18\xcd\xd8\xb7\x09\x2b\x6f\x68\xde\x89\xa1\x8d\x6d\x46\x01\xe5\x97\x13\x32\xb1\x72\xff\x11\x39\xb5\x52\x61\x4d\xbf\x61\xf6\x53\x29\xbb\xfc\xa6\xcb\xfc\xd2\x0f\x2c\x97\xde\xa1\xd1\x41\xb0\x48\x42\xb2\x3e\x7b\x61\x31\xc5\x39\xf3\xcc\xd2\x29\xe7\x93\x37\xbe\x9c\x47\x24\x58\xce\xab\x5a\x21\x56\xfe\xb0\x86\x1e\x3f\x20\x71\x20\xa9\x42\xe2\x4e\xec\xae\xa7\x76\xf8\x3e\x3f\xe3\xd6\x32\x2a\x19\x91\x1f\x76\xd8\x77\x70\x17\x2d\xfc\x6c\xae\xc8\x9f\x62\x7d\xe4\x9f\x94\xee\xec\x2a\x3b\x12\xaf\xba\xb7\x1a\xd2\x37\x24\xf5\x09\xad\xc9\x8d\x4a\x8d\xc9\x17\xbd\xa8\x74\xba\xd5\xcb\x15\x54\x68\x42\x72\x0d\x49\x6b\x22\x6d\x44\xd2\x38\x84\xa5\xda\x2e\x7d\x4e\xd5\x5b\xa1\xb2\xbc\xe7\x07\xe4\xbc\x2a\x7d\x24\x6d\xe4\xa6\x94\x07\xf0\x92\xc3\x5d\x5b\x9c\xe8\x5d\x00\x61\x54\x2a\xd7\x5c\x2c\xd4\x38\xf0\x73\x25\x0c\xd3\x1e\x94\xb8\x85\xa4\x5f\x2a\xdb\x8e\xdf\x45\xa9\x41\xb9\x9d\x71\x28\x9b\x18\xc2\xc7\xbb\x52\x89\x6c\x16\x17\xe1\xf8\x29\x50\x68\x77\xdc\xa3\x3b\x19\x92\x47\x48\x9e\x20\xf9\x05\xc9\x0f\x64\x5a\xa0\x09\xbd\x40\x32\x42\x65\x17\x1d\x46\xa8\x1d\xa1\xf3\x07\x92\x19\x9a\x14\x90\xbc\x42\x32\x87\x24\x84\x04\x6d\x0d\x54\xa5\x62\x48\x92\xa9\x9e\x60\x6f\x95\x04\x64\x31\x33\xf3\x7b\x9b\x1a\x3f\x9d\x99\x24\xb5\x59\x08\xb7\xfd\x33\x6c\x0e\xcf\x8f\x9a\x7d\x27\xf6\xf1\x90\x63\x29\x87\x02\xc5\xd4\xec\xa9\xde\x16\x0a\x15\x21\x30\x8c\xb4\x24\x87\x67\x9d\x0f\xe6\x1c\x29\xaf\x0a\xdd\x44\xc6\x39\x06\x8d\x2d\xe1\xf5\x5d\xee\xf1\x19\x0d\x3d\xf1\xd7\x61\xec\x8f\x39\x74\x81\x49\x65\x05\x5f\xd6\x90\x7c\xe0\x60\x71\xab\x02\x9e\xaa\xb8\xe3\x07\x49\x0d\x12\x0f\x92\x3a\x24\xd7\x53\xda\x7b\x12\xa4\x5b\x0f\x48\x05\x6b\xc0\xa7\x2b\x48\x9a\x90\xb4\x10\x0c\x9c\x3a\xb3\xd1\x67\x34\xca\xf6\xb4\xbc\x4a\xf5\x9e\x08\x50\xe8\x54\x6b\xa1\x11\x0a\xd4\x30\xec\xab\x91\x0a\x96\x4a\x6f\xdc\xde\xdd\x0c\x9c\xba\xf7\xfc\x55\x91\x9b\x29\x2d\xbc\x9a\x4a\x83\x25\x3b\x09\xeb\x69\xbc\xd0\xdf\x41\x4e\x46\x7e\x92\xcd\xe2\x9c\x98\x8b\x01\x6c\x57\xe3\x1d\xe3\xb3\xf8\x2a\xb3\x16\x8c\x75\x5e\x17\xba\xef\x4d\x69\xbf\x0e\xb4\x73\xda\x18\xbb\x85\x9c\xfe\x94\x9d\xb6\x66\x3f\x0d\x6c\x4b\xf3\x82\x44\x65\xde\x02\xb6\xfe\x07\x50\x69\x88\x34\x4a\xbc\x56\x91\xdc\x65\xd4\xdd\x21\x45\x03\xe3\x85\x4c\x6d\xba\xdc\xe3\xe6\x31\x24\x8f\x90\x3c\x41\xf2\x0b\x92\x1f\x90\xf8\xe8\xbe\x99\x21\x89\xc3\x42\x99\x09\x43\x43\x68\x6c\xfe\x54\x4b\x7f\x28\x30\x81\x64\x8a\x9a\xd9\x4c\x38\x61\x7b\x26\x38\x60\xa9\xfc\x50\xfb\x63\x82\x99\xa4\x75\x58\x6e\xe8\x40\x80\x24\xc4\xda\xa8\xc0\x43\x12\xcf\x70\x43\x0e\x16\x16\xd6\x99\x21\xe5\x60\x2c\x0c\xe4\x31\xe5\x17\xf0\xb2\x9c\xa1\x2c\x62\x1c\xf2\x26\xf5\xd8\xee\x42\xfa\x5a\xf7\x51\xfe\x54\xa5\x36\x1f\x5f\xf5\x7a\x92\x55\x8d\x03\x99\x4d\x5a\x58\x15\x90\xac\x21\xf9\x80\xc4\x99\x69\x43\x32\x5e\xd3\xe6\x1f\x8c\xb5\x3a\x43\x09\x06\x2b\x04\x12\x0f\x92\x3a\x24\x0d\x48\xae\x20\x69\x42\x72\x0d\x49\x0b\x92\x36\x24\x1d\x48\x6e\x08\x33\xfe\xb8\xb4\x31\xdb\x17\xa8\xc2\x7d\xda\x89\x4a\x53\x1b\x1d\x54\x64\x6a\x28\xdd\xea\x5d\x68\xa4\x07\xc9\x2d\x24\xfd\x19\x9a\x04\x18\x9b\x62\xb9\x83\x59\x33\x18\x91\x00\xc9\x03\x24\x8f\x90\x3c\x41\xf2\x0b\x92\x1f\x90\xf8\x01\x46\x03\x01\x41\x04\x88\x0f\xc0\x5a\x80\x24\xf9\xc9\xba\x30\x8b\xe6\x9b\xdc\x5a\x30\x36\x99\xd3\x60\xf7\xca\xd4\xbb\xc3\xb3\xc0\x02\x6f\xb1\x13\x61\x2e\x24\x6f\x90\x04\x01\x99\xff\xe9\x9a\x59\xed\x2b\xc2\xb9\xc3\x59\xeb\x2f\xe3\x60\x3c\x9c\x05\x59\xdd\x7e\x9c\x07\xe8\x41\x42\x7b\xa0\xea\x8f\xe6\xef\x7e\x3a\xce\xcc\x26\x3c\xb1\x54\xf3\x8c\xba\x37\xf7\x02\x64\x83\x6b\x02\x4d\x50\xf8\x67\x05\x03\x67\xb0\x2a\xb4\x40\x00\x03\xdc\x78\xc0\x4d\xe3\xac\x53\x84\x79\x90\x90\xe9\x6e\x1f\xe3\xc8\x0d\x03\x04\x2a\x8e\x46\xfc\x94\x91\x0b\xb0\x14\x4b\x80\x1b\x9d\x7c\xee\x54\xad\xf4\x3e\x40\x0e\x6d\x17\x01\x5a\x8b\x68\x34\x01\xed\x42\xb2\x86\xe4\x03\x12\x27\x20\xce\x8a\x2d\x57\x03\xde\x6f\x19\xa0\xd2\x4f\xa9\x1b\x70\x9c\x54\x4c\x1b\x86\x3c\x0f\x75\xc8\xf6\x20\x69\x04\xdb\xda\xca\x27\xcc\xf3\x0a\x8a\x36\x21\xb9\x0e\xb4\x8d\x01\xd4\x0f\x2f\xed\x60\x8b\x50\xa2\x05\xf3\xcb\x1a\x7c\xeb\x40\x72\x03\x49\x17\x92\x1e\x24\xb7\x38\x4b\xbc\xe3\x42\x8f\x2a\xe5\x5e\x8d\x1c\xea\xc7\x31\x8a\x61\xbd\x7f\xd0\x0f\x50\x0f\x85\x95\x10\xd8\x5d\x5c\xa0\x61\x78\xbd\x0f\xc8\x4f\x8e\xdc\x05\x9d\x89\x0f\x90\xf3\x18\x58\xae\x0a\x6b\x03\x5e\x7f\x41\xf2\x23\xd8\x20\x65\x97\xb9\x84\xff\x2a\x3f\x0c\x18\xc7\x7d\xc8\x7d\xc1\x4f\x0a\xc9\x64\x04\xcf\x63\x48\xe6\x90\x84\x90\x2c\x20\x89\x20\x89\x21\x79\x83\x24\x85\x24\x83\x24\x87\xa4\x80\x64\x09\xc9\xfb\x2b\x7b\x2d\xe2\x22\xef\x60\xb8\x01\x64\xac\x21\xf9\x78\xd5\xb2\x04\xe8\xd0\x98\x66\xce\xab\x16\x24\x3d\x5a\x48\x82\x7e\x7b\x01\x9a\x03\x01\xfb\x8f\x56\x79\x2b\x8a\xdf\x23\x2e\xa7\x15\x3d\xad\x21\x6c\xe9\x3d\xfa\x83\xd0\xd7\x74\x16\xd3\x64\x55\x40\x0b\xd4\x05\xaf\x35\x48\x3c\x48\xea\x90\x34\x20\xb9\x22\x18\xa3\x20\x9b\xa9\xf1\x43\x9c\xce\xc5\xeb\x56\xb7\x00\x38\xc5\x04\x8d\x0d\xec\x4d\xd1\x91\x09\x56\xb9\x46\xec\x17\xd9\xba\x13\x44\xb5\x82\xda\x40\x9c\x41\x5e\x4d\x85\xfe\x1a\xdf\x5a\x50\xac\x03\xc9\xcd\x2b\x32\x96\x68\xaa\xa3\x13\xbb\x88\x7c\xdc\xd7\x85\xa7\x47\xb0\x52\x6f\xe1\x69\x60\x90\xba\x09\x09\xfa\x9b\xf4\xbe\xc6\xfb\xcb\xe6\x26\x75\x0d\x3d\x44\xb4\x65\x03\x0b\x42\x61\x74\x8f\x34\xe4\xfb\xec\x73\x1a\xe2\x74\x8f\xed\x76\x58\x66\xc3\x7a\xf4\x16\x78\x2f\x36\x02\x60\x81\x36\x10\xc7\x14\x19\x9f\x57\xae\xbd\x05\x1c\x49\x11\x86\xf8\x2d\x23\xaa\x17\xe5\xc8\x7d\x10\x92\xd9\x9d\xa1\x21\xcd\x36\x78\x8e\xe1\x6e\x94\x35\xc4\xe7\x25\x8c\xea\x0e\xc0\xbb\x87\xe4\xe1\x15\x39\xf5\x78\x8c\xeb\x67\x6c\x43\x46\xa1\xd8\xe3\xab\x64\xc0\x1b\xaa\xef\xaf\x57\xc1\xde\x6d\x40\x99\x0f\xd3\xff\x02\x09\x2e\xa2\x31\x24\xe8\x99\x9b\x40\x72\x8d\xbb\xb2\x01\xf3\x1e\x58\xee\x20\x43\xe0\x4b\x30\xa7\x20\x4b\x19\x20\x32\x83\xbc\x57\x64\xf4\x24\x0a\x34\x97\xc1\x48\xe4\x01\xdf\x2e\xe3\x84\x1c\x8a\x09\x33\xd1\xc6\x75\x04\xa5\x4d\xc0\xd0\x24\x88\xc6\xa8\xd8\x56\xd7\x57\x71\x96\x37\x2d\x0f\x7a\x7e\xee\x7b\x8e\x3b\x7c\xae\x79\xf7\xc3\x6e\xb7\x3d\x78\x6e\xb4\xbb\x55\xa7\xfd\x7c\xd5\xed\xb6\x30\xe8\x34\xc8\x6a\x36\xd0\x80\x0f\xba\x67\x5a\x49\xa6\x6b\x34\x88\xf5\xc7\x8b\x45\x90\xe3\x07\x1e\x53\x29\xcf\xb2\xc7\x27\xe4\x14\x4b\x95\xa6\xc1\x58\x5d\xc5\xf1\x5c\xeb\x2c\x3a\x4f\x4b\x79\x98\x7d\xd6\xfb\x69\x49\xa4\x38\x8f\xb4\x97\x69\xe5\xf2\x66\xb0\x20\x07\xa4\x05\xd1\x58\x0e\xb5\xba\xd6\x30\x6f\x7e\xc9\xea\x31\xd4\x49\x15\xea\x68\xba\xfd\x1d\x39\x34\xaa\x4c\xe5\xfc\xcd\x02\x65\x8d\x4c\xdd\xc9\x4b\x01\xdf\x58\xa1\x4d\x39\xf8\xb0\xe7\x8f\xe6\xfe\x54\x07\xc7\xf0\xdd\x0d\x71\x9a\xfb\x21\x83\x55\xeb\x76\xb4\x43\x2b\x2c\xb2\xd9\x60\x1d\x8d\xec\x9c\x1b\xb3\xc3\xd1\x12\xd3\x90\xe5\x0b\x8e\x9c\xd5\x92\xac\x64\x4e\x97\x3b\x11\x76\x34\x80\x34\x28\x5e\xf2\x54\xa9\x66\x94\xc7\x52\xe4\xf0\xa9\x53\x77\xe6\x47\x91\x2a\x55\xc3\x80\x57\xdc\x25\xea\x6b\x5f\x7a\x8a\x21\xf4\x44\x4c\x64\xbc\x3b\xda\xd3\x86\x05\x39\x30\x58\x65\xf9\x56\xfe\x24\x8c\x63\x72\x47\xa6\xf9\x11\xff\x3f\x44\xc2\xe1\xe8\x78\xcc\xcb\xf2\x8e\x79\xcb\xe2\x34\xd7\x7b\x88\x99\xd0\x65\x92\x0d\xdb\xde\x00\x4c\x31\x9a\xa4\x05\x59\xa4\xc4\x51\x1e\x44\x85\xf2\x56\x6a\x54\x30\xfb\x91\x0e\x83\x3a\x9a\xc2\x65\x49\x60\x9d\x0c\xac\xe1\xea\xf7\xc4\x2f\xb2\x52\x4b\x63\x45\xf2\xd9\x94\x78\x4f\xfd\x44\x38\x34\x9e\x4d\xa0\x6e\x8c\x92\xf5\x79\x14\xfa\x59\x06\x05\x30\xb8\x88\xc3\x31\xed\x3e\x0f\x10\x91\xd6\x27\x9f\x93\x38\xcb\x82\x97\x50\x89\x22\x7d\x1d\x82\xc5\x61\xc4\x7d\xd0\xb4\x55\x34\xb2\x95\xf4\x05\x70\xb4\x87\xe9\x42\x77\xb4\x96\x55\xaa\x5f\xde\x53\xb3\x79\x67\xee\x7c\x03\xd9\xdb\x6e\x3f\x37\x6f\x9a\xc3\xa6\xd3\x6e\xfe\xf2\xfa\xa0\xb7\xf5\x3d\xa7\xf6\xb4\x99\xc9\xb6\x38\xfc\x23\x07\x73\x1a\x2f\x82\x4c\x71\x16\xa1\x1f\x3f\x92\xc5\x4e\x2a\x87\x4a\x53\xce\xa6\x58\x19\xae\xc4\x3e\x05\x82\x84\x5b\xa1\xe3\x09\xcf\xcf\x2a\xeb\xe8\x03\x12\x44\xd9\x6d\xbe\x83\x50\x06\xdf\x42\x8b\xf5\xc8\x60\x16\x51\xae\x70\xd7\x2a\x4e\x10\x09\x7c\x8e\x98\xec\xcf\x82\x76\xba\x82\x08\xb7\x8b\x69\xe3\xa1\x08\x55\x93\xc3\xee\xb9\xac\x3e\xd5\x81\x2c\x51\x2d\x15\x3a\xdd\x17\x5c\x12\x0a\x62\xe8\xf1\x0f\x09\xc6\x2e\xd0\x9e\xf9\x38\x04\x6a\xfb\x2c\xf1\xc7\x5d\xd4\x2d\x9e\x11\x11\x7a\x74\x89\x9f\xe5\x35\x26\xa4\x24\x55\x8c\xdf\xe7\x85\x09\x83\xc7\x96\x8e\x78\xb4\x3c\x73\x04\xcf\x8d\x5e\x74\xb0\x9c\x28\x92\x8f\xda\x79\xb6\x8a\x4c\xa1\xb9\xe7\xb3\xdc\x6a\xa5\x20\xa0\xb6\x99\x31\xbc\x97\x85\x83\xe1\x31\xb4\x7f\x2c\x86\x85\xc1\x9f\x18\x02\xb2\x63\xf8\x47\x9a\x85\xd9\x5b\xfa\xd2\xcc\xc6\xcb\xe9\xd7\x44\x90\x1a\x8f\x92\x24\x59\xaa\xb2\x38\x5c\xd2\x30\x58\xc2\xf0\xf7\xbe\xf2\x71\x73\x7b\xd7\x35\x90\xb8\xa3\x96\xe4\x6b\x11\xa2\x56\x7a\x7f\x08\xf2\x59\x5f\xd1\x1e\x41\x0a\xff\x1f\xfc\x34\x12\xda\x52\x36\xc3\x18\x00\x80\x4a\xf3\x68\x3d\x20\x7e\x87\x4f\xf5\x22\x0c\x75\x38\xa9\xee\x76\xaa\xf2\x01\x55\x2e\xc3\x85\x91\x01\x14\xae\xf0\x42\xfb\xb8\xb1\x3e\xb7\x63\x42\x09\x32\x7d\x92\xc2\x8f\xd6\xba\x3c\xfa\x26\xb5\xa5\xd0\x9d\x98\x7a\xf4\x18\x29\xfb\x9f\x45\x8c\x5a\xf1\x91\x0d\x60\x21\xa5\x15\x9c\xad\xa3\x11\xdb\x71\x6e\x1c\xb1\xb4\xb4\x19\x1c\x0c\xa8\xc3\xbf\x39\x47\xc4\x86\x5b\xef\x49\x5d\xc6\x78\xb7\x29\x92\x9b\x43\xa7\x8d\x80\x09\x32\xd9\x61\x90\x6d\x75\x89\x59\x1b\x9d\x9a\x3c\xd1\x6d\x90\xd9\x8e\x83\xac\xd4\x75\x90\x89\x20\xfc\x20\x63\x48\x82\x8c\x61\x09\x32\x01\x8d\x88\xd1\x0f\xb2\x52\x54\x7e\x90\x89\xb8\xfc\x72\xa0\x3a\xe3\xd4\x1c\xcc\x19\xc5\xd1\x58\xab\xa9\x74\x60\x0c\xd9\x3b\x45\xab\x8e\xe9\xd4\x92\x96\x4a\x13\x90\x6d\xd9\x30\xee\xd1\x21\x0b\xd6\xee\xf0\xa2\x02\x94\x66\x74\xd9\x1e\x06\xca\x04\xd3\x20\xf2\x43\xb3\xe4\x99\xd3\xf4\xe2\x50\x17\x79\x2e\xdd\xdc\xc9\x11\x28\xfa\xf6\xc7\x01\x2f\xce\x3c\x5d\xf3\xa5\x90\x2f\xfc\x7a\x17\x65\x22\x23\x8a\xf3\x60\xb2\xbe\xc1\xdb\x6a\xa1\x20\x0f\x9d\x0b\xd0\x61\xa9\x38\x55\xba\x39\x59\x75\x6a\x4f\xbc\xb0\x1e\x61\xe7\x07\x2b\xd1\xde\xd4\xb3\xce\xfe\x21\xf6\x0f\x36\xa0\xe5\x92\x25\x5e\x88\xa7\x9d\x74\x53\x64\xff\xe2\x56\xc2\xce\x3b\x3e\xe1\x83\x38\x0e\xf5\xd5\xd9\x6d\x5c\x0e\xa3\xb0\x20\x69\x43\x61\x34\x7c\x3a\x2e\x2a\xc2\x50\xc6\x41\x12\x72\xf0\x8c\x86\x85\xd5\x6c\x7f\x0e\xd0\x72\xc2\x1d\x4b\x7d\xd8\x82\xe4\xba\xc0\x51\x28\x5a\xf3\xc7\x63\x83\x67\xf1\x09\xec\x48\x0a\x64\xd7\xa1\x2d\x1c\x7b\x3e\x12\x72\x8c\xcb\xba\x71\x68\x37\x3c\x13\x3c\x96\xc3\xb1\xb7\xc1\x44\x8d\xd6\xa3\x50\x75\x54\x3e\x8b\x11\x09\xb3\x38\xef\x2b\x96\xaf\xf7\xe6\x68\xc2\xb8\x58\x2c\xd6\x7a\xda\xa2\x38\xa6\x60\xb5\xd2\xb5\x9f\xc6\x5a\x33\xd7\x52\x8a\x83\x1f\x66\x97\x69\xd7\x66\x10\x4c\xd1\x91\xfe\xff\x63\xaa\x50\xed\xb6\x41\xe5\x5b\x19\x54\x6e\x81\x20\x73\x56\xe9\x85\xbe\x93\x32\x8a\x36\x27\x4c\xa5\xd1\x98\x65\x0e\x95\x24\x07\x3c\x29\xde\x03\xdc\xbb\xdb\xc8\xd1\xf3\x94\xd9\x2a\x82\x50\x31\xe3\x1d\xa5\xc0\x04\x5d\x4c\xfa\x89\x11\xd4\x35\x87\x04\x1f\x30\xfa\x7b\x2c\xe9\xd5\x5c\x07\x8c\xea\x52\xf9\xb3\x91\x07\x25\xac\xda\xe6\x5c\x6a\xbf\x3c\x32\x7d\x0e\x8d\x19\x12\xc8\x23\x6a\xb6\x29\x5d\x44\x41\xae\x8d\x3c\xfd\x5a\x26\x55\x18\xd4\xf1\xc6\x6a\x13\xa0\x40\x97\x45\xc4\xde\x11\xb1\x61\xb0\xdd\xd5\xfb\x56\x0e\x2d\x1d\xd1\xfd\xc2\x9f\x9b\x57\x44\xf6\xa4\x08\x77\xb0\x98\x6e\xe4\xee\x72\x96\xfa\xe3\xb1\xb7\xca\x53\x5f\x43\x01\xe8\xc7\x0c\x22\xe6\x20\xcb\xed\x21\x49\x3a\xa1\x4a\x3a\x88\xb9\x74\x96\x4f\xbb\x3a\xfc\xbf\xca\x40\xdb\x7b\x65\x51\x2b\xa6\x19\x02\x93\xcc\xbe\x8d\xb6\x1f\xc5\xb0\xe8\x00\x4c\xd6\x8d\xf8\x5c\x42\xa6\x9d\xba\xdb\xd9\x0b\xd3\xd7\x56\xe7\x75\x3a\x3b\x97\xa4\xf1\x6a\xad\x37\x80\xba\x69\xcd\x3a\xe2\xe3\x52\x33\x1b\x17\xda\xf2\xd9\xd5\xf2\xd5\x02\x54\x52\x5e\x5c\x6b\x1d\x14\x1d\x73\x25\xad\xee\xcc\x14\xe0\x96\x4d\x67\xb2\x24\xbe\x98\x2d\x8e\x84\xd4\x37\x3f\x55\x1d\x9b\xaf\x71\x3d\xf3\xb3\x7e\x11\x75\x89\x16\x80\x7c\x3a\xa5\xba\x38\x7a\xd3\x34\x8f\x3e\x58\x40\x93\x75\x10\x6c\x98\x3d\xd8\xe2\x33\xdf\x7d\xf7\x53\x5a\xc7\x06\x0c\x3f\x55\x7a\x02\x44\xd6\xc0\x8c\xb8\x0c\xae\x93\xb7\x95\x9f\xe5\x0c\xf5\x8c\xf8\x42\xf1\x92\x81\x09\x1a\xa1\x51\x97\xe9\x00\x48\xcd\x23\xd5\x2a\x17\x33\x8c\x4b\x92\x4f\xd6\x69\xcc\xda\x57\x53\x71\x1b\xf3\xb6\x10\xf5\x7a\xa3\xde\x75\x17\x93\x2f\xc6\x0b\x4b\xba\xb3\x35\xc9\x9c\xbb\x4d\x24\xf8\xa1\x34\xa1\x4c\x5d\x74\xaf\x3a\x1d\xe1\xa2\x0b\x72\x35\x62\xcc\x31\x5e\x66\x41\xc0\x31\x7e\x30\xc7\xbb\xea\xba\x96\xfd\xd1\x0b\x7e\xde\x20\xbb\xfa\x36\x25\xd6\x45\x7f\x9a\x24\x3f\x2f\xa1\x1b\x2d\x0d\x68\xe7\x42\xd8\xdd\xee\x17\x85\xa8\x69\x4b\x88\xbe\x66\x56\x1b\x59\xe5\x26\x77\x7e\xc4\xa6\xb6\x45\x63\xe9\xec\x4d\x49\x66\x02\xef\xfd\xc1\x8b\x88\x5e\xb6\xc8\xd7\x64\x4b\x22\xde\x2a\xce\x5f\x64\xbe\x5c\x91\xfa\x0c\xa0\x95\x28\x64\x35\x74\xcd\x55\xce\x3d\xa1\x59\x9a\x4c\xd4\x47\xf5\x95\xcd\x76\xcf\x65\x56\x44\x73\x7b\xcb\x88\x6e\xdb\xe1\xa3\xf7\xb8\x95\x50\x60\x44\xb2\xe1\xd0\xe2\x1b\xba\x0d\xc0\x0a\x8e\xb5\x86\x12\x52\x50\x99\xb9\x78\x01\x77\x44\xd1\xca\x9d\x91\xef\x91\x0b\xcc\xe9\x6c\x7e\x42\x51\xba\x1c\x38\x3d\x4d\xe3\x22\x01\xad\x07\xa3\xb1\x74\x06\xda\xb5\x53\xfd\xc6\xbe\x5d\xbc\x14\xda\x6c\x8a\x52\xd0\x50\x9c\x92\x09\x91\x07\x79\xa8\xea\xfa\x92\x65\xb6\xac\x33\x0e\x56\x1d\x17\x76\x57\x2b\xae\x07\x2b\xf2\x42\x88\x3e\xe9\xfe\x3d\xf4\x1f\x93\xff\x68\x1c\x4c\x4c\xec\x9a\x66\x03\xf0\x64\xdc\x4d\x6a\xa9\xd7\x76\x1e\xc7\x73\x0d\x00\x4c\x9f\xe6\x09\x65\xf8\x70\x23\xaa\x9c\x95\xa4\x6a\x1c\x8c\x78\x0b\x37\x9e\xa2\xb7\x26\xe3\xbe\x7b\xe2\xdb\x54\xe5\x57\x71\x91\xb2\x50\xea\x04\x51\x41\x3e\x3e\x8c\x8e\x03\xd3\xc4\x7c\x09\xc3\x20\x33\x39\x93\x14\x63\xa0\x6b\x4a\x25\x35\x1a\x4d\xe9\x74\x1d\x11\xbc\x25\x15\x2e\x83\x77\x2e\xc8\x67\xa3\xf6\xa6\x6a\xa9\xd2\xdc\xbc\xa2\xcd\x36\x09\x03\xda\xf3\x8f\xc5\x4b\x5e\x1a\x25\xaf\x9d\x4c\x78\x6c\x78\x1a\xb3\x3c\x15\x91\x74\x14\x61\x1f\x44\xd3\x50\x75\xc4\xa1\xef\xa9\xb7\x4a\xf4\x26\xa3\xcd\xa7\x0b\xbd\x8d\x92\x91\x49\x4b\x3d\x33\xdf\x37\x2e\x12\x48\x39\x0c\x8f\x3e\xe2\xcc\xcd\x15\xae\x25\xba\x77\x60\x4c\xa7\xd8\xf8\xf4\x3a\xb9\xa4\xd4\x4a\xd1\xc5\x04\x39\x73\x88\x51\x91\xe5\xf1\xa2\xb6\xab\xfd\x66\x94\x87\x38\x89\x1c\x18\x68\xde\x31\x70\x02\x56\x0d\x82\x49\x3b\xaa\xc6\xa3\xa9\x56\x23\x95\x98\xe8\x6c\xf4\xa7\xe0\xe6\xdb\x30\xa5\xf0\xf1\x3b\x7b\xb9\xac\x21\x6f\xdd\x6a\x33\x5a\x82\xd5\x4a\x41\x31\x3a\xb3\x13\x64\x80\xc6\x9a\x9f\xfb\x26\x8b\x7a\xa3\xfa\xe6\xe0\xf2\xc6\xc1\x4b\xe2\x8a\x1a\x2c\xfd\x95\x00\xe3\x36\x91\x7e\x43\x5c\x4a\xba\x95\x9e\xd3\x1f\x3e\x0f\x9f\x7a\x9e\x36\xd3\x17\x7e\xfe\xd8\x69\xb3\x21\x8d\x5e\x38\x15\x1a\xb3\x79\x18\xf7\x7c\xba\xd4\x44\xa1\x18\xa6\xe8\xea\xcc\x7c\xcf\xc9\x8e\xa2\x97\x4c\x1f\x23\xcc\xac\x97\xbf\x87\x37\xfb\xe8\x18\x02\x63\x42\x1b\xb0\x83\xac\x8d\x87\xff\x42\x71\x5c\x9e\xb6\x42\xb3\xe7\x43\xf6\x0d\x14\x91\x38\x90\x3e\x55\x39\x9d\x65\xad\x6b\xbb\x7e\xe9\xa7\xac\xcd\xf3\xa8\xb1\x37\x3d\xde\x20\xd3\xac\x50\xba\x27\x6a\xa5\x73\xf2\xf4\x0e\xac\x62\xc0\xf7\xe1\x90\x45\x99\xa9\xb1\xe5\xdf\xa0\x5f\x72\x29\xd3\x75\x90\xc1\xab\x6c\x88\x60\xdb\xce\x11\x0d\x07\xd9\xd0\x9f\xda\x12\x88\x31\x1c\x2b\x61\x11\xa7\x80\x09\x05\x47\x22\xdd\xc9\x23\xe0\xf3\xec\x11\xa0\x48\x45\xd3\x4e\x9c\x60\x9a\xd3\x82\x93\x0d\x58\x54\xd0\x6c\xd8\x3a\x40\xf1\x40\x13\x98\xdd\x67\xc7\x6a\x99\xea\xd2\x42\x9f\xdd\x2d\x97\xa2\x2b\x9b\xd8\xf1\x92\x30\x91\xa4\x18\xef\xc2\x19\x7a\xc7\x97\x1e\x51\xb8\xf3\x5c\xeb\x0b\x39\x78\xdd\x2d\xb2\xa9\xbe\x6a\xe6\x45\x7b\x67\xed\xa6\xde\x29\xc6\xaa\x1e\x60\x8c\x2c\xa6\xc7\x98\x9e\x60\x7a\x8a\xe9\x19\xa6\xe7\x98\x5e\x60\x7a\x89\xa9\x43\xd5\x1c\xaa\xe7\x50\x15\x87\xca\x09\x97\xe3\xcc\x1f\xf7\xe9\xb6\x39\x3a\x78\xaf\xef\xe2\xb3\x99\xe5\x13\xd0\xfa\xa0\x7e\x1c\x8a\x7a\x5d\xe0\x3e\x3f\xcc\x25\x2b\xfa\xb2\x14\x93\xe1\x67\xeb\x68\xd4\xfc\x32\x57\x5c\xbb\x31\xf4\xa7\xa6\x8c\xc8\x43\x75\xd2\xf8\x9f\x52\xd3\x39\x68\xf6\xec\x0b\x0c\xa2\x42\x0d\x14\xfc\xc7\x65\xac\xdb\xee\x89\xcb\x84\xf4\xe5\x6f\xe2\xd1\x78\xce\x6e\xf0\x64\xdb\xae\x5a\x8d\x04\xcf\x1c\x30\x6e\x34\xfa\x4a\x25\xf4\xc7\x5d\x05\x91\xfe\x76\xe5\x4e\x55\x54\x47\x7b\xd7\x98\xac\xb8\x19\xef\xf3\x98\x9e\x9f\xfd\x77\x3f\xc8\x8d\x34\xd4\xa0\x59\xaf\x8a\xb3\x81\x43\xc4\xa9\x3e\xdd\x8c\xab\x29\x2e\x72\x7e\xca\xd3\x75\x3b\x1e\x65\x6d\x8a\xce\x0f\x72\x3e\x12\xbf\x54\x69\x26\xdc\xab\xda\xdb\x0c\x02\x6e\x1e\x24\x43\xb5\x48\xb4\x17\x1a\x14\x09\x34\xd6\x89\x55\xf1\xff\xb1\x0a\xd5\x94\x84\x3f\x79\x4b\xa8\x2b\xcf\x48\x21\x6c\x6e\x48\x39\xfa\xa8\x1c\x7b\x1b\xfb\x6a\x44\xe7\x46\x40\x20\x86\x8a\xb1\x92\x2e\xfd\x50\x58\x86\x9e\x10\x3a\x33\x1d\x6d\x10\xe2\x41\xdc\x91\x5f\x90\x98\x4c\x75\x43\x8a\x3b\xa1\xc1\x92\xa1\xa5\xa3\x46\x66\x7e\x86\xb6\x5c\xb8\xd6\xfb\x3a\x54\x64\x42\x99\xf4\xe2\xbf\xa4\x45\x92\xdb\x5c\x0d\x35\x43\x88\x06\xe8\x24\x57\xa9\xa9\x1a\x70\xb4\x5c\x4a\x01\xf3\x1a\x1d\x3a\x64\x56\xdf\x1d\x6e\x2e\xb1\xd1\x57\x1a\xa8\x55\x4e\x6d\xa0\x67\x51\xd2\xcf\x54\x3c\x3f\x07\xd1\x32\xe6\x93\x48\x91\xea\xeb\x7b\x47\x74\x2f\x26\x63\xe1\xaf\x5f\x54\x13\xcb\xd6\xec\x84\xe4\xe9\x5a\x0f\x7e\xe1\xcf\xf9\x7b\x47\xcf\x92\x3e\x9f\x66\x77\xae\x46\x7e\x18\x52\xa1\x87\x20\x9f\x51\x41\x27\x1a\x3b\x29\xad\x3e\x86\xa4\x88\xd8\xfb\x82\x99\x78\x48\x39\x29\xb2\x99\x98\xe2\x30\x46\xbf\x48\x50\xa2\x57\xed\x37\xb9\x89\x23\xdc\x77\x10\xfe\x93\x1d\xd9\xcf\xcc\xa2\x2d\x59\xf2\x9b\xf1\xc3\x9b\x1f\xc5\x40\x37\x2c\x24\x74\xc9\x41\x8e\xc6\xab\xf6\xd9\xd1\xa9\x72\xa4\x0c\xdc\x0f\xb6\xed\xc1\x10\xb9\x7a\xa0\xff\xb1\xd3\xac\xdc\xb1\x6e\xd2\xde\x1c\xa3\xd8\xb9\x8f\x1b\x18\x35\xd7\xa3\x59\x1c\xa9\xcc\x6a\x8e\xe2\x57\x34\xf0\x8c\xa5\x7c\x7b\x16\xaf\x3f\x8c\xd6\xb0\x42\x4b\x69\x81\x97\x77\x6c\x16\x2a\x68\xc3\x8f\xff\x95\x3e\x65\xb9\xc2\x90\x11\xfa\xf7\x99\xaf\x19\xb7\xd1\xf0\x50\x5a\xfe\xae\x30\xee\x43\x45\x63\xbd\x0d\x30\x26\xd2\x2d\x92\x44\xa5\x2f\xa0\x72\x98\x51\xd0\x8f\x78\xa0\x07\x18\x6f\x44\xc7\xd0\x17\xce\x7a\xce\xe3\x38\xa4\x03\x24\xd3\x42\x6b\x43\x74\xa9\x30\x4a\xc1\x31\x85\x35\x61\x58\x0b\xbf\xe9\xc3\x25\xcf\x5b\x77\x67\xd8\xb6\x16\x41\x64\x4e\xec\xd2\xef\x80\xe0\x79\x75\x3e\x55\x3a\x0b\xc8\xcc\x48\x15\xb9\x23\xc6\xc1\x34\xa6\x30\xa2\x39\xc9\x60\xd4\xb4\x58\xed\x7f\xe1\xbb\xdd\x52\xc5\x27\x57\xf5\x81\x26\x7d\x10\x89\x0c\x10\x7a\x9e\x51\x90\xfe\x38\xd0\x9b\x06\x2f\xfe\x68\x0e\x16\x1d\xdb\x81\x89\x31\xe7\x70\xab\x6f\x16\x2f\x31\x03\xff\x8b\x13\xbb\x7c\xe5\x85\xcd\xd1\x37\x5f\x54\x65\x73\x3a\x53\x9c\x27\xc6\x43\x41\xe6\x15\xfb\xf1\xcb\x0d\x91\x70\x08\x46\x74\xbe\x68\x3c\xc6\xab\xd4\xbb\x69\x8d\xf3\xf5\x1d\x19\xe3\x20\x35\x4e\xf9\x6c\xe6\xb3\xf5\x10\xf9\xa1\x39\x72\x24\xde\xda\x8c\x13\x91\xc5\xed\x21\xb6\xf8\xca\x29\x8c\x76\x82\xfe\x95\x0d\x7b\xe2\xdf\xf1\x40\xdc\xe8\xa7\x67\x7e\xfc\x61\x51\x6c\xb2\x24\xae\x4d\xa6\x32\xa1\x02\x9c\xf1\x4e\x9b\x9c\x18\xb8\xa9\x9f\xcc\x47\x66\x36\xb6\xc9\x62\xc4\x6b\xce\x3e\x99\x8f\xfa\x62\x31\xfd\x8e\xd7\x9d\xf8\x59\x3e\x9c\xa5\x4a\xdf\x7e\xc2\xaf\xd9\x2c\x46\x5e\x6d\xeb\x96\xd0\x45\xde\x59\x2a\x4d\x1c\x41\xe4\xf4\xc1\xc2\xc0\x63\xc3\xb8\xc9\xe7\xf2\xf1\x49\xc0\xd9\x80\x91\x8f\x98\xd4\x2f\x80\x45\xfd\xfc\xbc\xf3\xfe\x74\x09\x1c\x9f\x9b\xe4\x0d\x0d\x73\xe9\x38\x8a\x4f\x5e\xa7\x7e\xa6\x9c\x30\x74\x7d\xf4\xaf\xe1\xf6\x87\x36\x69\xad\x0f\xc5\xfc\x5e\x0a\x35\x66\x5f\xd0\x87\x34\x89\xa3\xbc\xee\x2f\x82\x70\xcd\x47\xe9\xcd\x8b\xf9\xcc\x67\xe3\xc5\xa3\xf9\x44\xe7\xee\x35\x1d\x6d\xe7\x6c\x14\xec\xab\x69\x81\x17\x4d\x6d\x66\xa5\xdb\x65\x3b\x6a\x1c\x14\x8b\x52\x59\x93\xb5\x51\xb4\x4a\x33\xb8\x95\x81\xc5\x66\xf9\x22\xac\x5b\xd0\x37\x5e\xfd\x30\xbc\x27\xb6\x8f\x7c\x6b\x35\x8c\xfb\x6a\x71\x64\x1f\x71\x3e\x90\xdd\xe3\x55\xee\xf7\x66\x5f\x05\x69\x25\x1d\x18\xce\x38\xf2\x33\x7a\x58\xda\xe6\x66\x60\xdc\xcc\xa0\xb5\xd9\x31\x24\x27\x90\x9c\x42\x72\x46\xdb\x20\xe8\x8a\x39\x14\xcf\x47\x7c\x26\xfe\x90\xff\x1f\xb1\xad\xcd\x77\x79\x2d\x55\x1a\x06\x78\xf8\x18\x6f\x5a\x33\x73\x3c\xc0\xdf\xb4\xe1\x25\x4f\x17\x18\xd0\x9d\x11\x7d\x7f\x1c\xd0\xad\x65\x9b\xbf\x2f\x43\xfb\xf7\x94\xe2\x3e\xd9\xe7\xbf\x0d\x43\x7c\xb9\x8d\xcb\xff\xb9\xf4\x9b\x2e\xdc\x30\xfc\xc3\x8f\x48\x1b\xc6\x77\x4f\xb7\x63\x59\x9b\xbd\x2c\x15\x13\x29\x9e\x0c\xdb\xc2\xcd\xc9\x30\xf0\x29\xb8\x66\xe1\xa7\xd3\x00\xcf\xca\xd2\xd3\x93\x95\x26\x8f\xf6\xf1\x89\x17\x65\x96\x95\x44\x1e\x1f\x92\xe0\xae\x78\x1b\x37\xf9\x81\x57\x69\x1d\x89\x0b\xb7\xa8\x7b\x2b\xe6\x78\x03\x96\x30\x7b\x17\xf9\xe9\xda\xce\x32\xfe\x34\x85\xfe\x6f\xb3\xfd\x17\xed\xe6\x02\x09\xa8\x0f\xbc\x98\xbb\x96\x36\x00\x4b\x76\x7e\x5b\x97\x1c\x52\x63\x2d\x4e\x37\x1b\xc3\x9e\xcb\x98\x7c\xde\x91\x67\x95\x04\xa3\x38\x97\x0b\x90\xaf\x53\xbb\xe6\x4b\xbf\x7c\x62\x51\xa1\xcf\xaf\x2f\x30\xd8\x3d\x17\xbc\xe5\x99\x6e\x6f\x7d\xa6\x1b\x5b\x7d\xeb\x74\x8d\x8b\x9c\xea\x28\xbd\x20\x94\x9f\xa9\x66\xd4\xd5\x99\xca\x3e\x35\x59\x4a\xa5\x09\x6d\x8f\xa6\x7c\x21\x19\x3d\xa6\xfa\x89\xfc\x94\x20\x3e\xac\xb5\xb0\x22\x75\x9f\x8e\x0a\x8c\xb4\x8c\x57\xfe\x52\xbe\x33\x87\x45\x62\x28\xbb\x1c\x9f\xf9\x92\xd5\x1f\xc2\xe1\xaa\x1f\xbb\x66\xbf\x52\x17\x92\x43\x09\xa2\xe9\x76\x01\x1d\xb7\x44\x27\x77\xc9\x15\x4e\x04\xe1\x14\x79\x4c\x1a\x4d\xcd\xf6\x94\xe0\x5a\x5d\xc4\x2f\x41\xa8\x06\xb9\x4a\x48\xbb\xc8\x12\xa5\xc6\xb5\x80\xb6\x8d\x92\xa4\x8a\x4c\x71\x9c\xfa\xef\x7c\x48\x7a\x8c\x5f\xb2\xc8\x1f\xcd\x49\x59\x02\xb5\x29\x0f\x12\xab\xaf\xf1\x0f\xbf\x48\xc8\x5e\x3e\xd3\x44\xf5\xd4\x9a\x92\x46\xb5\xa3\x87\xad\xef\xc9\xa6\xc8\xdf\x2a\x91\xef\x96\x34\x82\x88\x34\x78\x3a\x7e\x36\x2b\x5d\x59\x45\xd6\x40\x96\xf3\x85\x6f\x45\x44\x77\x01\x2a\x16\x0e\x3b\xdc\x13\x3a\x12\xe0\x08\xaf\x5f\x5a\x06\x53\x36\x9c\x4a\xbf\x6c\xc3\x47\x7e\xd6\x1b\x97\x0b\xee\x55\xf6\xec\xaf\xd8\x58\xc5\x50\xcb\x70\xa3\xb1\xe8\x0c\xfd\x13\x85\xda\x45\xae\xf3\x8b\x4c\xdd\xa8\x55\x2e\xa4\x08\xb3\x3b\x3d\x58\xf1\xd3\x37\xcf\x5a\x8b\x0d\xc9\x0e\xa7\x45\x88\x8b\xbd\xe6\xd5\x9d\xbb\x36\x5e\xb7\xd9\x7e\x76\xbb\x37\xf5\x66\xc3\x7a\x5f\x33\xde\x26\xf8\x45\x4c\x9f\x3b\x68\xeb\x1b\x1f\xf8\xbd\x6e\x9c\x91\x44\x0f\x68\xc8\x70\xc0\x98\xbe\xa0\x5c\x5f\x15\xc0\xf7\x9c\x1b\x7f\x96\xf6\x6e\x31\x60\xe2\x06\xbe\x4c\xdc\xa7\x99\xe5\x7c\x5c\x56\x37\xcb\x3c\x96\x2d\x29\x2e\x26\x1d\xa4\x7d\xd1\x99\xf1\x1e\xb6\x83\x2c\x37\x2f\xb5\x72\x57\x5b\xae\xc6\x0d\xa7\xe7\x54\xe5\x25\x27\xb1\xa0\x26\x3b\x7e\x80\x67\xb3\xd4\x54\xe5\x3b\x81\x99\xaa\xbc\x04\x4f\x39\x32\x84\xf9\x3a\x3c\x8e\x4d\x11\x76\x11\xeb\x1b\xaa\x81\xb9\xf6\x39\x4c\x52\x2d\xcd\xdd\x63\x14\x08\xa9\xb1\x31\xb6\x0a\x1e\xa8\x25\x27\xfc\xff\x94\xe3\x14\x89\xbf\x78\xa9\xd9\x0e\x24\x57\xb9\x20\x27\x73\xa0\x74\x64\xbe\x8c\x40\x4d\x18\x1d\x49\xa7\xb4\x9e\x18\x3a\x31\xc5\xc1\x89\xc2\x99\x6b\x64\x3c\x11\x4f\xd6\xe5\x93\xd2\x0e\x96\x7f\x7e\x46\xe7\xaf\xdc\x22\xbb\xf2\xb3\x59\xee\x4f\x9b\x11\x79\x41\xf1\x04\x6f\x14\xa7\x8a\x9c\x72\xfa\x20\x62\x6d\x83\x22\x75\x33\xe4\x0c\x1f\xad\x29\xfe\x7a\xc4\x36\x0a\xf2\xca\x35\x45\x17\x2d\xb4\x4e\x17\xc6\x74\x99\x4a\x11\xea\x0b\x42\xa8\xdc\x2c\x2e\xd8\x32\xd4\xf7\x50\xc2\xc2\x14\x0b\x82\x8d\xfd\xd2\xaf\x21\x69\x8f\xbd\x61\x38\x45\xae\x52\xfd\xa2\x7f\xf0\x48\xa3\xba\x5b\x90\x4b\xc7\x16\xa7\x5f\x4c\xb7\x12\x64\x4b\x47\x2f\xfd\xd0\x03\xaa\x63\xb4\x7f\xb7\xf0\x57\xbc\x6f\x83\xbf\xa3\x60\x98\x09\xde\xc7\xa4\xf1\xd2\x24\xa1\xac\x40\xc3\xc4\x7b\x31\x17\x3e\xf3\x29\xfc\x5c\x0f\x63\x5f\xbb\xb5\x4a\xad\x4c\xe2\x54\x19\x23\x32\x2c\x16\x0e\x53\x6f\xb1\x08\x22\x8e\x83\x09\x8b\x45\x15\x4f\x40\xe3\x75\x9b\x59\xa8\x7b\x20\xa7\x9a\xb9\x0b\x73\x42\x26\x08\x68\xb6\x93\x60\x14\x68\x92\xf5\x47\x79\x33\xa3\xc0\x69\x77\xf8\x3c\x18\x3a\xc3\xa6\x3b\xd0\x11\x26\xa5\x3b\x9c\x5b\x37\xdd\x87\x1b\x51\x62\xe4\x87\x14\xba\x88\x0f\x14\xa8\x41\x86\x6b\xc7\xeb\x74\x45\xc1\xe1\x53\xcf\x2b\xb7\x6c\x3d\x41\x23\xb1\x45\x55\x76\x3c\x93\x4b\x38\x33\xc1\xa5\xd2\xf9\x4a\x17\x2f\x94\xae\xbf\xc6\x60\x20\x99\x83\x1e\x04\x66\x6d\x1c\xa9\x58\x8e\x98\xa2\x46\x2c\x28\x1c\x4f\x64\xde\x9f\x9f\x53\x52\x4d\xb4\xd2\xd8\xcc\x3c\x79\xc3\xa7\xdb\xed\x7b\xcf\xbb\x59\x38\x45\x90\xda\xae\xe8\x06\xf4\xbb\x28\x78\x2b\x30\xd6\xcf\xee\x34\x4d\x76\xed\x49\xf1\x8e\xd5\xa0\xe5\xb5\xbd\x61\xf7\x46\xef\x60\x85\x66\x43\x21\xd1\xeb\x32\xd1\xde\x8a\x34\x4e\x36\xc0\xcb\x63\x43\xa9\xa0\x62\x1d\xf2\xff\x23\xfe\x7f\x6c\xec\x19\x13\xa6\x76\x97\xa9\x1b\x7d\xd7\x5b\x66\xb0\x4f\x41\x90\x84\x1b\xcc\x64\x5d\x79\x92\x2a\x35\xa0\x98\x7e\x31\x41\xe6\x4e\xc4\x6e\xe9\xf7\x5f\xa8\xc5\x61\xc9\xb9\x6f\x7e\x4e\x06\xd7\x16\xc5\x53\x15\x7c\x4b\x84\x69\x54\x34\x60\x7f\x1f\x86\xf9\x3f\x79\x29\xa5\x57\x9f\x5a\x32\xbf\xde\xc2\x57\x86\x6b\xc0\xe0\x59\xb4\x47\x1d\xb8\x18\x2c\xc6\x59\x3a\xe6\xd3\x25\x95\x82\xc2\x9d\x74\x74\xa1\xf8\xe5\x16\xb3\xfb\x93\xda\xd0\x6f\x7b\xba\x59\x45\x33\x58\x9a\xa9\xdd\x18\xb4\x47\xa3\x39\xc3\x04\xae\xd2\x6b\x29\xe8\x53\xad\x4a\xef\x78\xc2\x09\xfd\xe2\xac\x8f\x46\x59\x91\x2a\xd7\x8f\x3a\x05\x5e\x6c\xbc\x51\x9c\x37\x88\x6d\x8f\xd0\x9e\x7d\xfb\xf1\xa3\x14\x7f\x81\x3c\x52\x06\xe8\xf2\x11\xb2\xd4\x3e\x6a\x50\xa7\x2a\xbf\xd3\x41\xc5\x98\xb7\xc1\x1e\x7d\x83\x2c\x5a\xd6\xf2\x87\x6b\x2c\xbe\xc4\xa3\xa6\xa3\x20\xf2\x43\x51\x50\xbe\x73\x11\x8c\xf4\x77\x30\xee\x56\x6c\xee\x52\x20\x2e\x97\xd4\x01\xc2\x33\x5f\x44\x3a\x99\xfb\xd8\x72\x52\x51\x28\xce\xd2\x04\x49\x99\x1c\x55\x1e\xc9\x56\xa4\x9b\x19\xdd\x27\xef\x64\x7b\x17\x3b\xe2\xe3\x98\x9b\x33\xf1\x65\x3a\x6c\xa1\x14\xde\xb2\x30\x2f\x19\x45\x1c\xa0\xf3\xed\x59\x9c\x91\xb7\x25\x9c\x5e\xb3\xf4\x6e\xef\xa7\x03\xa9\xd8\x8c\xac\xd0\x1f\x2b\x45\xf1\x6f\x36\x2b\x4e\xf2\xec\x90\xff\x1f\xc9\x22\xac\x44\x39\xd1\x78\x60\x1b\x03\x98\x0f\xf1\xae\x21\xab\x63\xb1\x68\x34\x98\x62\x55\x75\xf3\x96\x64\x90\x1a\xfd\x60\x34\x1b\xaa\x95\xde\xb3\xcd\x68\xeb\x13\xf7\x3b\x6f\xee\x3a\x55\xaf\xff\x5c\xef\xf6\x3b\xce\xf0\xb9\xdb\x1b\x36\xbb\x37\x2c\x18\x64\x8c\x0c\x75\x66\xe4\xd7\x48\xeb\x42\x32\xdf\x32\xd2\xbe\xd7\x76\x86\xcd\x7b\xef\x79\xd8\xec\x78\xdb\x6d\x53\xa5\x7e\x59\x0d\xae\x39\xc3\x4f\xcb\xb3\x96\x6e\xb1\x47\x2d\xf0\xcd\x72\xac\x0d\x52\x33\xf6\xcb\x26\x5f\x87\x02\x36\xaf\xd7\xbe\xeb\x3b\xed\xcf\x60\x33\xba\x56\xbb\x39\x18\x7e\x56\x88\xf7\xf2\xd2\x60\x34\x43\xe7\x00\xc5\x0d\x98\x9f\x0a\xa1\x2d\xf0\xcc\x6e\x29\xa9\x61\x4c\x2e\xdc\x5a\x73\xd0\x6b\x3b\x4f\xcf\x37\x4e\xc7\x1b\x40\xb3\xb2\xd5\x72\x54\xb4\x8c\x69\xcd\x36\xdf\x9f\xed\xce\x07\xef\x99\xd0\xa4\xbc\xa7\x7e\xa2\xa7\xdc\xc5\x7d\xfb\x66\x24\xce\x41\x6c\x0b\xc0\xed\x60\x0c\x11\xc5\x95\xfa\xef\x66\x24\xa3\x38\x65\x02\x15\xee\x52\x63\xeb\x50\xe1\xda\xa7\x34\x37\xc2\xcb\x8c\x72\x71\x6a\x67\x2c\x94\xea\x54\xb9\xb2\xa5\x26\xed\xfb\x68\x6d\x12\xd8\x87\x29\x6c\x69\xa5\xef\x35\xbc\x47\xad\xb8\xed\x88\xa5\xc8\xec\xa3\xc2\xeb\xf2\xf1\x1c\xb0\xb9\x73\x21\x2e\x52\xbc\xc1\x0a\x1e\xdc\xf5\x08\xd9\x70\xbd\xef\xb8\x30\xd1\xcf\xbd\xbe\xe7\x36\x07\xf0\xa4\x7b\x19\x34\x1b\x37\xcd\x7a\xd3\x75\x6e\x86\x3b\xbe\x22\x0c\x83\x60\x1a\x05\x93\x60\xe4\x47\x79\x2f\x55\xa3\x80\x43\xed\xa7\x40\x1a\xd3\x23\xd2\xa3\x83\x45\xb1\x10\xe5\x6a\xc1\x94\x4e\xdc\x2d\xfc\xd5\x67\x9f\x4c\xdb\x18\xfa\x34\x8d\x6a\xe6\x6c\xbf\xd6\xf0\xf9\x23\x16\xbc\x89\x73\xe1\x49\xc9\xb8\x4e\x37\xb1\x4d\x6d\xc5\x86\x50\x84\x13\x52\x70\xce\x64\x9a\x51\xd8\x5d\x91\x29\xbc\xc9\x96\x37\xa0\x08\xc6\x7a\x4a\x4c\xd7\x00\x18\xc5\xe6\xfa\x15\x3c\xb8\x3d\xca\xb7\x41\xb4\x39\x45\x14\x88\xef\x53\xd0\x7f\xa6\x60\x91\x4d\x4f\x2d\x86\xb6\xba\x18\xac\xa3\xdc\x5f\xe9\xb9\x53\xab\x44\x5f\x6f\x3e\x61\xc5\x0b\x3d\xc4\x96\x30\x67\xe8\xa4\x62\x45\xcd\xd3\xbf\x2f\x82\x07\xfd\xcc\x1b\x05\x2f\xbd\x28\x0f\x5b\xd3\x23\x50\xe5\x37\x2c\x3c\xd6\x9c\x23\x88\x96\x2a\xd5\x37\x58\x12\x0c\x87\xe5\x30\xa8\x8c\x8f\x9f\x6e\xb5\x6f\xa1\x3d\x44\x83\x6c\xda\x63\x33\x2d\x51\xd3\x1f\xe6\x67\x2d\xe0\xa5\xee\x34\xdb\xf8\x8b\x1e\xf0\x82\x11\x85\xfd\x22\x54\x3a\x78\x21\xe3\x0f\x38\x95\xfa\xd6\xbc\x9d\x25\x39\x7f\x74\xc2\x0f\x1a\x1b\xa5\x01\x62\x89\x53\xfd\x70\xa9\x1f\x0e\x19\xc8\x1f\x18\xda\xb3\xa3\xca\xe1\x89\x79\x3a\xd7\x4f\x78\xc1\x1b\x3d\x1d\x9a\xa7\x63\xf3\x64\x7a\x39\xb2\x35\x2e\xcc\x93\xe9\x1a\xe7\x68\xbb\xc3\x63\xd3\xf8\xb1\x69\xfc\xd8\x34\x7e\x6c\x1a\x3f\x36\x0d\x9d\x1c\x59\xc9\xe8\xe6\x2b\x93\x6d\x20\xc7\x6b\xec\xe8\xe9\xdc\xdc\xb3\xd1\xb6\xb7\xd7\xd2\x27\xd3\xde\xa9\x81\xe0\xd4\x40\x70\x7a\x64\x9e\x0c\x2c\xa7\xa6\x83\x53\x03\xd5\xa9\x69\xe5\xcc\xd4\x3d\x33\x35\xce\x4c\xb9\x33\x83\x9a\x73\xd3\xdb\xb9\x29\x77\x6e\xd0\x75\x6e\xda\xbb\x30\xe5\x2e\x4c\xcb\x17\x06\xaa\x0b\x53\xf7\xc2\x40\x75\x61\x7a\xbb\x30\xbd\x5d\x9a\x56\x2e\x4d\xdd\xcb\x53\xd4\x7a\xb5\xf7\xc1\x78\x5e\xe9\xa3\xad\x6a\x89\xe6\xe0\xc0\x3e\x1e\xda\xc7\x63\xfb\x78\x6a\x1f\xcf\xec\xe3\xb9\x7d\xbc\xb0\x14\x68\x1b\x33\xd4\x08\xdc\xa4\x17\xeb\x25\x90\xf9\x4b\x35\xb6\xaf\x49\x9c\xd5\xf0\x6a\xd6\x4c\x3b\x62\xf4\x7e\x8d\xbe\xe0\x1a\x4a\x2d\xfc\x55\xdd\x0f\x42\x5b\x8d\x33\xc4\x2a\xc5\xb6\x83\x10\x84\x21\xb4\xa6\xe3\x7a\xfb\x7c\xe6\x16\xe0\xa0\x1f\x31\x13\xb4\xa2\x2f\x3d\xd6\x90\x22\x3f\xe2\x7b\x01\x99\x6b\x81\x31\x7a\x68\x7c\x38\xfc\x73\x21\xa2\xb5\x9e\x81\x1f\x0d\xca\xcc\x5c\x35\x6b\x20\x20\xa0\x55\xc4\x83\xd6\x79\xb6\x16\x7d\x12\xad\xa8\xe9\x8f\x09\xdd\xdc\x63\x81\xc2\x03\xe1\x45\xaa\xc6\x1a\x30\xc3\x4e\x6c\xbc\x69\x06\xc8\xcf\x0e\x77\x7c\xb4\x71\x7c\xa8\xbb\x66\xc7\x25\x7e\xa4\xc2\x89\x1b\xc6\x99\xb1\x2d\xcd\x97\x38\x51\xd1\x76\xee\x48\x96\x85\x22\xb4\xbb\x66\x30\x83\x85\x72\x19\xb8\xb8\x09\x0e\x6f\xd4\x96\xdf\x4c\xa1\x70\x33\xcc\x33\x3b\x95\x9f\x9f\xe5\x8b\x9f\xe2\xad\x5f\xdd\xd4\x68\xba\xf2\xd3\x46\x30\x67\x06\x24\x9b\x5d\x22\x92\x08\x55\xa8\xff\x1d\x1e\xc9\x6a\x51\x49\xd0\x6a\x0d\x90\x6c\x7c\xe4\xfe\x32\xf0\x73\x77\xa5\xed\x2f\x4e\x3a\x1d\xf0\x8f\x4f\x6c\x7c\xe1\x10\xca\x6d\x54\x8d\x37\x74\x23\x1b\x10\xf9\x69\x91\x1e\x2a\xff\xa4\x54\x98\xa7\xcf\x0a\x6f\x7e\xeb\xe2\x49\xf1\x5d\x80\xda\xaf\x9f\x02\x9b\xe1\x9a\xd9\xfc\x9c\xe1\x35\xa3\x19\x4a\x9d\xec\xf0\x74\x7b\xf0\x32\x27\x29\xf3\x2b\xda\x22\xd9\xe4\xeb\x67\x17\xdb\x55\x76\x81\x83\x61\x25\x65\xde\x77\x7e\xb8\x5d\x62\x47\xd5\xa4\x1c\x43\x6c\x91\x10\x17\x2f\xa1\x72\x92\x38\xcb\xd3\x38\xa1\x0b\x4a\xcd\xc7\xb7\x22\xce\xc1\xae\xd7\x8e\x10\x9d\x5f\x44\x9f\x7d\x89\xe2\x68\xe8\xd3\x95\x5d\x41\x34\x75\xa2\x69\xa8\xaa\xf8\x2b\x3a\x88\xb7\x13\x59\x14\xa3\x73\x37\x96\x60\x99\xde\x9a\x63\xf9\x0d\xb7\x4b\x06\xfc\xab\x49\x5f\x91\x75\x19\x3f\x78\x79\x6c\x76\xb6\x63\x71\x6d\xa3\x1c\x98\x2a\x05\x15\xeb\x4d\x56\x5b\x80\x28\x8f\x54\x3f\xf4\x17\x98\x5f\x40\x88\xd0\x6b\x5d\x6a\x7d\x8b\x0a\x58\x75\x73\xe9\x9e\x6d\xc9\x4d\xf4\xa9\x7d\x8a\xa3\x17\x84\xc1\x86\xe1\x95\x33\xb8\x1a\x3a\x0d\xa3\xdc\x2f\xd8\xe9\x63\x82\xc6\x75\xf8\x96\x61\x2f\x18\x3b\x8e\x0a\x74\xa4\xde\xf5\x40\x22\xf5\xee\x31\xef\x4e\x83\x51\x7e\x97\x06\x5e\xc4\x81\xfd\xe4\xf2\x72\xf4\xef\x31\x6e\x1c\x54\x30\x67\x0d\x4c\x5d\xfb\xe3\x5e\xe6\x4a\x1f\xf3\x03\x0c\xd6\x50\xc7\x30\x03\xb3\x51\xe2\x8f\x46\xc5\x82\x7e\x59\x5e\x6b\xfe\xc0\x22\x9c\x52\x21\xba\x97\x60\xae\xd6\xd9\x40\x6f\xfb\x52\xd7\xdb\x45\x97\x7e\x78\xa4\x1b\xba\xc3\x8b\xc4\x11\x10\x1d\xfe\xad\xbd\xd3\x11\xee\xc7\xb1\xcd\x88\x87\xe6\xe4\x57\x66\xd0\x51\x3c\x56\xf8\x8b\xa6\x0b\x3f\x01\xe3\x22\xdb\xfb\x9f\xbd\xff\xeb\xa0\xe1\x5c\x54\x1d\xa7\xe2\x39\x4e\xd7\xad\xdc\x3a\xa7\xd5\x5e\x65\xe0\x38\x67\x55\x17\xb2\x3a\x6e\xa5\xe1\xb8\xaf\x90\x3a\xcd\x5a\xa5\xe9\x38\x03\xc8\x77\x1f\x2b\x5d\xc7\xe9\x56\x3c\xa7\x31\x84\xcc\x96\xf8\xf4\xab\xfc\xa9\x89\xed\xdc\xba\x98\xeb\x56\x5a\x8e\xd3\xba\x86\x36\x93\x6a\x0b\x3f\xd4\xc5\x87\x2b\xf1\xa1\x73\x8d\x69\xab\xd2\x75\xbc\x59\x15\xfb\xaf\x63\x8e\x07\xe0\x3d\xd4\xa0\xab\xa8\xba\x01\x06\x76\xe8\x41\xb1\x26\x24\x0d\x1c\x16\xd5\x6b\x79\x54\xc2\x75\xdc\xd3\xaa\x05\xac\xd3\xc3\xb4\x53\x69\x98\x6e\xfa\x58\x7c\x00\x10\x0d\xe8\xf9\x16\x9f\x6f\xb0\xb3\x6e\xe5\xce\x71\xee\xdc\x8a\x72\x1c\x45\x50\x3f\x62\x0b\xb7\x00\xfb\x87\xa7\x01\x6a\x32\x86\x9a\x95\x79\xd5\x6d\x0e\x01\xe6\x01\xc2\x84\x48\xe2\xce\xbb\x98\x3e\x21\x8e\x97\x6e\xa5\xe9\xb4\x63\x44\x7b\x6b\x86\xff\xae\x9f\x2a\x5d\xa7\xd6\x84\xa1\xb6\xba\x80\xe1\xeb\x51\x65\x5e\x75\x9c\x7b\x9c\x8e\xc2\xad\x2c\xe0\x05\xc6\xd8\x3c\xac\xd6\x10\x0a\x4c\x1f\xe0\xbb\xb7\xef\x36\xe0\x65\x5a\x6d\xf3\x08\x9b\x88\x8a\x86\xd3\xb9\xac\x56\x3a\x4e\xfb\xac\x5a\x79\xab\x3a\x4e\x58\x85\x8e\xdd\xa1\x43\x85\x6f\x10\x6f\x75\x1c\xd8\x1d\xa4\x9d\x36\x40\x77\x59\xad\xf3\x28\xa1\x15\x9c\x9a\x3b\xa8\xd7\x98\x38\x84\x7d\x33\xbe\xbb\xfb\xd2\xf8\x1a\x06\xdd\x03\xce\xe9\x38\x4e\x67\x56\x45\x2c\x06\x55\x7c\x9b\x60\x6f\x53\xcc\x7b\x80\x1a\xe7\xee\x10\xc7\x71\x85\xe9\x00\x46\x93\xd3\x30\xfe\x6a\x34\x0a\x7b\xe9\xe1\x68\x1a\xd0\xfe\x7e\xf5\xfe\xfb\xd1\xdc\x61\xf6\xac\x8a\xc3\x09\xaa\x76\xee\xee\x5e\xf1\xa5\x3b\xaf\x62\x5b\x44\xd9\x88\xf8\x81\x57\x69\x39\xee\x18\xc0\x76\x1d\x2c\xe5\x3a\xb8\x26\x1c\x2c\xdb\xbc\xc6\x86\x91\x3e\x83\x6a\x4a\x2d\x67\xf0\xa5\x71\x4a\x94\x0c\xf0\xba\xed\x19\xd5\x04\xaa\xbb\x3e\x42\xe4\x8d\x91\x0e\x1b\x3d\x28\xa4\x3a\x08\xc4\x43\xc5\x73\x3a\x1f\xee\x13\x2e\xa2\x94\x10\x99\x55\x2b\x03\xc7\x1d\x23\x2c\xb7\x49\xb5\xf2\xe4\x4c\xdd\x5f\xd8\x67\x06\xcd\xb8\x3d\xb1\xd6\x5c\x9c\x81\x5f\x95\x07\xa7\xbb\xaa\x62\x19\x1f\x8b\x44\x55\xfc\xdc\x83\x06\x6f\x69\x2d\xcf\x69\x88\x95\x8e\xd3\x38\xaf\xe2\x24\x9f\x54\xf7\x69\x06\xa7\x80\x36\xa7\x03\xf5\xef\x90\x4b\xb8\x49\x0d\x0a\xdf\x3a\xd0\x4a\xd7\xe7\xb6\xba\x4e\x23\xaf\x1e\x54\x4b\x55\x1f\x6c\xcd\x5f\xb6\xa2\xa9\x02\xe3\xb9\x81\x39\x49\xaa\x53\xb7\x54\xd1\xb7\x15\xc7\xbc\x54\x61\xe9\xd5\x9a\xa5\x9a\x0d\xc7\xe9\xc2\x87\x46\x42\xe4\xb7\xc6\xde\x15\xac\xff\xd7\x2a\x2e\xe5\xdb\xca\x83\xe3\xde\xf0\x32\x75\x9c\x66\xb3\xd2\x74\x6e\x27\xc7\xae\x61\x85\xcb\x26\xb2\xc2\x79\x55\xd9\x99\x72\xb9\x39\x9a\xbd\xdb\x37\x64\x19\x0f\x8e\x9d\x05\xf7\xb8\xfa\x56\x15\xaf\xfd\x13\x78\xf3\x9c\x63\xcc\xf4\x63\x59\x21\xa9\x02\x08\x33\x37\xae\x8a\xd7\x7e\x06\x6f\x9d\xeb\x4a\xd7\xb9\x56\x75\x51\x1a\xa8\xc7\xbd\xa4\x09\xa0\x97\x3e\x50\xb3\xf7\xc4\x94\x04\x43\x03\xfa\xef\x38\x4e\x17\x6a\xb8\x3d\xb7\xf2\xe0\x38\x4f\x30\x15\xeb\xab\x59\x35\xac\x9a\x91\x39\xb7\x67\xf8\xcd\x87\x3a\x87\xd5\x04\x08\x60\xe6\xd5\x61\xb4\x47\xb4\x36\x98\x2e\xcf\x3f\xa3\x4b\x1f\xa8\xb8\xf3\xf2\x25\xf9\xf9\xce\xba\x76\x7f\x55\xb9\x75\xd2\x1a\x36\x7d\x40\x32\xe5\x3b\x92\xf7\x87\xd8\x74\x51\xfd\xaa\x6d\x55\x09\x5c\xf7\xb5\xf1\xab\x92\x35\x9c\x69\xd5\xc1\x39\x39\xab\xd2\xaa\x47\x6a\xc6\xae\x1a\x40\x92\x4d\xec\xe9\xca\xa9\xd3\xd7\x43\xa2\xe6\x33\xb7\x32\xad\x02\xc2\x2a\xae\xe3\x78\x2e\xf1\x9e\x11\x14\x58\x22\x60\x03\x24\x30\x9a\x19\x6c\x06\x84\x9c\xe7\x38\x5e\x03\x8a\x3e\xd5\x61\xb1\x2c\x51\x16\xdd\xd5\x44\x19\x2b\x86\x1a\x2c\xd2\x00\xe7\xa7\xee\x27\xb2\x63\x41\x60\x62\x59\x62\x44\x5e\x13\xdb\xb9\xe2\xbe\x80\xa0\xbc\x6b\xee\xa0\xe9\x34\xd2\xaa\x60\xb5\x6d\xd3\xb1\xf7\x41\xf9\xd8\x75\xf7\x92\xd6\xf0\x4f\xe0\x00\xce\x08\x24\x5c\x2d\x72\x11\xca\x91\x45\x8b\xf7\x4a\x32\xc3\x4b\x70\xf0\x73\x1c\xf5\xcd\x1b\x16\xf0\x19\x60\x5e\xf9\x77\xb8\xe2\x50\x2c\x37\x0e\xb1\xf4\x13\x95\xf3\x52\x46\x1c\x0c\xf8\xc0\xc5\x69\xf5\xac\x10\x7e\xa8\x3c\x38\xb7\x21\x34\xdc\x23\x0d\xe3\x21\xa2\x45\x1e\xd7\x80\x08\xef\x68\x75\x21\xdb\x38\x74\x2d\xe6\x08\xc6\xd7\x9a\x95\xe3\x73\x7a\xbe\x24\x06\x90\x22\xa8\xb7\x44\x4c\xf4\xa9\x11\x82\x7c\xf4\x4e\x45\x2b\x07\x80\xe1\xda\xb0\x8b\xa5\xce\xa9\x66\x82\x4b\xb8\xdb\xfe\x64\x36\xce\x5c\x66\xb3\x30\x1b\xc8\x66\x3d\x64\x24\x2d\x6c\xc4\xeb\x41\x17\x97\x24\xe2\x41\x00\x79\xad\xe3\xaa\x10\x2d\x9d\xca\x93\x13\x7b\x57\x1f\x55\x8b\xba\x9f\xee\x79\x55\xf0\xdf\x5f\x16\xba\xba\x1d\x9c\x1c\x68\x8c\xcf\xad\x99\xbb\x3d\x50\xfa\xd4\x4c\x50\xd5\x6a\x05\x35\x04\x4c\x8e\xcb\x69\x00\x72\xdd\x15\x4d\x40\x46\xc5\x23\x12\xb8\x3f\x49\xb5\x69\x99\x9e\x8e\x91\x8d\x5d\x54\xf3\xda\xa6\xb6\x24\xfb\x71\x3f\x04\x42\x0b\xd3\xa2\xed\xb2\xf9\x2e\xea\x23\x9c\x2d\x1c\x99\xb7\x22\x31\xb0\xae\x59\x6d\x80\xf4\xc7\x16\xae\x9c\xc3\x1a\xd1\x1e\x2d\x1a\xd7\x3c\xbb\xaf\x84\x3d\x20\xff\xcc\x1d\x1d\xd6\x34\x2e\x6f\x61\xbd\x47\x9d\x19\xb0\x2d\x97\x56\x7a\x0d\x58\xa4\xbb\x30\x8a\xea\xc8\x71\x46\x95\x8e\xd3\x59\x55\xeb\x95\x2e\x14\xef\x4d\x78\x21\x7a\x30\xd2\x4a\x5c\x75\x9c\x47\xe4\x7e\xeb\xaa\xc3\x92\xb0\xe9\xb8\x2b\xb7\x0e\x28\x7a\x72\x4d\x96\xd3\x24\x46\x50\x89\xab\xd0\xcc\x2d\x21\xa1\xa9\xa1\x04\x0e\x04\x19\x41\x75\x82\x39\xd8\x70\x5c\x7d\x42\xbe\xea\x88\x56\x88\x2f\x7b\xb7\x98\x3e\xc9\xe6\x83\x2a\x54\xc7\x99\x41\xe8\x3c\x52\x33\xca\x85\xa6\x55\x04\x02\x0a\x21\x4b\xf6\xae\xb6\xcb\x80\x3a\x38\xd7\x5a\x14\x7c\xf5\xb6\xcb\x80\x5e\xf4\x46\x65\x70\x9e\xbc\xd7\x1d\x9d\x89\x86\x90\x48\xbc\xf0\xeb\x42\xb4\x3a\xa2\x1d\x85\xc4\xd8\x68\xd9\x24\x3b\x0a\x09\x98\x08\x3d\xe9\xd7\xdd\xa1\xf2\xe8\xe5\x3b\x0a\xf1\xac\x3b\x1d\xd4\xd7\xbc\xe5\xce\x22\xee\x8a\x74\xc0\x07\x39\x61\xbf\xc4\x84\xf9\xb8\x4a\xad\xe0\x00\x78\x60\x45\x51\x03\x90\xf0\x0c\x55\xd6\x35\xc7\x59\xd7\xa6\xf4\x96\x71\x26\x24\xb8\x7a\xbc\x8f\x9a\x58\xb9\xdd\x0b\x5a\x8b\xb9\x4b\x8d\x3d\x38\xce\x03\xab\xed\x8b\xea\x21\x95\x5c\xd7\xa8\x0f\x00\xaf\xb2\xae\x02\x71\xf2\x30\xb1\xb8\xee\x36\xb8\x72\xdc\xfd\x1e\x16\x7d\x27\x08\x41\x6e\xb9\xb4\x16\xb1\x24\x74\xd8\xc1\x35\xa9\x7b\xa8\xf8\x8e\xe3\xbb\x3c\x5a\x7e\x61\xa2\x1a\x69\x51\xe0\x11\x64\x76\xe0\x97\x55\x49\x90\x19\x41\xbe\x5f\x43\xfe\xf8\xee\x21\x98\xfb\xf4\xed\x83\x98\xe6\x00\xd1\xc8\x08\xf9\x20\xc9\xb3\xf6\xac\xf0\xf3\x72\x7a\x39\xf0\xb0\xe0\x23\x36\x08\x28\x73\x93\x1b\x56\xb4\x5b\x60\x6f\x0a\x18\x22\xf7\x7f\x0b\x86\x5a\xd6\x60\x4a\xae\xd3\x6c\xd4\x35\xfd\x42\x89\x1b\xf9\xe9\xa0\x6e\x69\x24\x35\x00\x22\xf6\x30\x21\x6a\x9d\x72\x16\x21\xdd\xa1\x17\x00\x98\xc8\x83\x74\x19\xe2\xc9\xbc\x0c\x11\xb0\xcb\x9a\x84\xaf\xcd\xd3\x94\xd2\xc7\x75\x09\x1d\x38\x91\x17\xae\x04\xed\xa4\x0e\x82\xfe\x09\x41\x5b\x12\xb6\x18\x31\xdc\x60\x8f\x29\x22\x2a\x35\x88\x0a\x50\x34\x9e\xd3\xdb\x92\xda\x5a\xd4\x45\xcb\x59\x9d\x14\x2b\xca\x6b\x13\x67\xa7\x72\x24\x12\xe8\x03\xa1\x30\xac\x21\x14\x24\x44\xbd\x43\x82\xf6\x27\xfd\xbb\xd7\x8d\x02\xa5\x72\x73\x6e\x25\x23\x2e\xe0\xe9\x85\x56\x22\x6c\x80\x1b\xf1\x44\xb9\xab\xc6\x96\xd0\x0e\x1a\xb6\x7c\x44\x2a\x14\x09\x51\xf1\x8c\xed\x74\xf9\xf1\x0e\xe6\xaf\xe1\xb8\x33\xb9\xd2\x49\xfc\x6e\x10\x1b\x82\x73\x42\x59\x91\x67\x17\x4a\xec\xd9\x39\x4b\x6a\xf6\xd9\xce\x33\xcb\x04\xa8\x3f\xf7\xa0\x47\x14\x9e\x83\x90\x2a\x5e\xd4\x88\x7a\xa9\xeb\x89\xce\x33\xc5\x2e\xa9\xcd\x9c\x28\x64\xdd\xb0\x3d\x33\x14\x39\xcd\x6b\x46\x0d\x9c\x50\xf1\xfd\xba\x50\x26\xbd\x39\x81\x44\xb3\xf5\xda\x40\x54\x65\xa4\x8d\x72\x23\x0b\x6a\x92\x61\x9a\x7b\x96\xcb\x79\x92\x14\x52\xe3\x5e\xd1\x6c\x02\xb1\x42\x40\xa5\x54\x34\x43\x15\x78\xb0\xcf\x45\xb1\x14\x0e\xaa\x6a\xe7\x66\xb3\xf9\xe3\x3a\x8d\x0e\x8d\x9b\x46\x63\x93\x85\x6a\xd5\xb7\x89\x2a\x83\xd1\x12\x1a\x87\x66\x1d\x1a\x80\x56\x25\x20\x04\x43\xcb\x51\x3d\x22\x8d\xc6\x7b\xaf\xe1\x9a\xc1\x06\x6f\x10\x0f\x54\x8d\x27\xf0\xbd\x86\x6b\x57\xe1\x04\x7c\x18\x0c\x6d\xe3\x8b\x5e\xea\x82\x5f\xc3\xe8\xba\xd8\x77\x4e\x1f\x0b\xaa\x77\xc8\xd3\x48\xbc\x9d\xa7\xb1\x8d\x2f\x3c\xf5\x53\x76\x84\x50\xc1\x13\x52\x2a\x99\x23\xb8\x60\xea\xac\x50\x3b\x1e\x90\xe3\xc1\x3b\xad\x59\x0a\x63\x4e\xc3\xbc\xa5\x8b\xd6\x9e\x1d\xec\xba\x86\x6b\x8c\xe0\x39\x20\x2c\x1e\x30\xd5\x76\xb5\xcb\x69\x8b\xeb\xef\x6f\x2e\x02\x84\x4a\xb0\xb7\x27\x1a\xd0\x15\x4d\xb3\x99\xd5\x82\x4a\xfe\xf4\x58\xf9\xe8\x38\xce\x05\xea\x6c\xab\xda\x2b\xcd\xd3\x9c\x1c\x7c\xaf\x9e\x54\x3d\x16\x34\x95\x21\x15\xa1\xbe\x63\x22\xe2\x73\xe6\x46\x7a\x85\x00\x1b\x98\xd7\xe5\x42\x7c\x23\xf2\x81\xe7\x41\x5a\xb7\x6c\x15\xa1\x2a\x77\x47\x2b\x50\xf7\xb3\x28\xf5\x90\xd7\x64\xdb\xac\x67\xa0\xbf\xea\x45\xea\x01\x9e\xc0\x6d\xc0\xee\x3d\x68\xa5\xdc\x03\x66\x85\x25\xda\x91\x04\x34\x63\x76\x86\x7e\x2e\x6a\x38\xf6\xcc\x28\x3c\x21\x6c\xf2\x2b\x2c\x99\xd1\x22\xa0\x1a\x39\x14\xf0\x8e\x48\xfe\x14\xbc\x44\xbd\x5d\x5c\x8b\xdd\x34\x4e\x27\x37\x8a\x49\x2d\x24\x02\x7d\xa7\x0a\xab\xcd\x7a\x72\xa2\x61\x46\x23\x4f\xd0\x5d\x0b\x15\x85\x57\xfe\xfc\x84\xce\x84\x26\x20\xa2\x6a\xd0\x4e\xb6\xc1\x02\xe9\xd3\x23\x56\x6e\x40\x89\x68\x66\xf5\x47\xf4\xb9\x40\x7e\x62\xd9\x49\x8b\x84\xaa\x79\x8a\x3d\xd1\x10\x22\xc8\x16\x12\x4d\xae\x6b\x16\xed\xb9\xe0\xc9\xef\x04\xd8\xbb\x4b\xad\x80\x36\x24\xe6\x0f\x5b\x38\xaf\xea\x31\xb3\xd0\x32\x95\xb5\x80\xc5\x35\x4b\x64\xf1\x21\x78\xbf\x96\xf6\x1e\xe8\x68\xf0\xb8\xac\x2e\x3c\xcb\xbc\x22\x01\x86\x63\x1b\xb2\x8f\x5d\x76\x65\xfc\x6c\xe0\x14\x1f\x7a\x1b\x1a\x66\x6d\x93\x11\xb2\xe0\x23\x1b\xa8\x60\x3d\xd1\x65\xeb\xa3\xf9\xc6\xd6\x3b\xd5\x20\x78\x27\x87\x04\x36\xcf\x0f\xe2\x5d\x11\x77\x88\x89\x83\xbc\xb1\x8e\x44\xe5\xde\xa8\xf2\xa5\x41\x09\x52\xa9\x99\xbf\xb0\x26\x55\x1b\x02\x2a\xb6\x08\x0b\x5c\x1e\x1c\x28\x3b\xe7\xfc\x9d\xf6\x0a\x1a\x6c\x19\x2c\xc8\x5b\xc6\x6f\x20\x8a\x32\x57\xb4\xd0\x31\x7a\x92\xc1\x17\x33\x65\x2e\xb4\x24\xb9\x45\x14\xd4\x40\xa7\x7f\x32\x91\xfa\x38\x8f\xf4\x88\xf4\x1c\x64\xaa\x67\xd5\x8f\xaa\x18\xeb\x61\x95\x07\x4b\x9d\x9c\xd2\x24\xb0\xee\x50\xc2\x9e\xc7\xd8\x9b\xa2\x02\x39\x2a\x76\x60\x05\x58\xab\x9e\x68\x68\xa6\x90\x32\xc7\xac\x29\xa9\xdd\x09\x6d\x90\xcb\x92\xed\x13\xca\x8d\x8f\x23\x1a\xdf\x19\x73\x0e\x4d\xf7\xcd\xa5\x54\x31\xd0\x6b\x85\xad\xbe\xb9\x6f\xe4\xb6\x5a\x95\xc9\x53\xb2\x02\x58\x31\x8b\x9a\x24\x62\x4d\xbf\x42\x86\x68\x6d\xd5\x0a\x11\xa1\xab\xa2\xf4\xba\xba\x6c\x42\x53\xd3\x6a\x56\xb3\xe4\x3a\xdb\x12\xee\x2d\xcd\x08\xa8\x75\x4c\x8c\x5e\xc4\xbd\x5c\xd0\x1c\x41\x73\x98\x0c\x2e\x3d\xdb\x3b\x37\x89\xf6\x6e\xe3\xa7\xfb\x13\x1b\xef\xee\x7b\x1a\x12\xa1\xf4\x4c\x1b\x86\x67\x34\xa5\x1e\x57\x97\xa3\x64\x5b\x80\x79\x71\x7e\xa5\xc9\x48\x70\xe3\xa9\xe9\x92\xf9\x31\x48\xdd\x47\x6c\x71\x84\xfc\x27\xac\xef\xe2\xb1\x42\x33\x64\xe6\xc1\x62\x21\x2c\xad\x3d\x2d\x7a\xe4\x82\xfe\x43\x68\x9c\xc1\x47\x63\x07\xc7\xb0\x1a\x3a\xf6\x53\xd3\x64\x8d\x1c\x0f\x75\x91\xd2\xac\xb6\xf4\xac\x90\x93\x94\x55\xc6\xd3\x9a\x61\x54\xd7\x39\xee\x4b\x90\x97\xb9\x4c\x25\x30\xc1\x6b\xef\x73\x05\xe7\x80\x5a\x99\x5d\x91\xcb\x89\x26\xe2\x82\x38\xd5\x25\xbf\x11\x85\x4c\xa4\xd5\xf6\x93\xd6\xe0\x09\x29\x8d\xc7\xd4\xd6\x11\xc8\xe3\xe6\xc2\x5b\x13\x69\x27\x34\xbc\x57\x62\x20\x8c\x54\x4b\x08\x96\xa9\xb3\xae\x9c\x95\x54\x2e\x4a\xa0\x90\xcd\x87\x9a\x71\x13\x31\xa9\x17\xa7\x91\xe6\x4b\x57\xce\x6b\x5c\xd5\x82\xc5\xd0\x58\x19\xe9\x5b\xe2\x93\x05\x80\x21\x90\x58\x2c\x4c\x04\xef\xbc\xaa\x5d\xd4\x46\xa5\x3a\xa7\xe7\xf7\xda\x4e\x90\xe6\xd5\x3b\x29\xe8\x49\x4d\x79\xad\x86\xc4\xb7\x58\xe1\xda\x37\x1a\x87\x67\xf4\xa8\x08\xa1\xf6\x33\x82\x34\xad\x5b\xa0\xde\x84\xbd\x74\x28\x0c\x2c\x1c\xe0\x91\x50\xd3\x73\x96\x0e\xcc\x15\xdd\x0d\xb1\x70\xec\x5a\x06\xb8\xc1\xed\xb0\xb9\x2e\xc9\x3a\xcf\x71\x57\xbe\x30\x13\x1b\x6c\xd8\x15\x55\xc7\x29\xaa\xa4\xe0\x34\x2b\xef\x55\xc7\x79\xaf\xf2\x27\x5c\xd7\x64\xf3\x11\x83\x62\xe3\x6c\x5e\xd3\x1e\x23\x28\xf7\x5a\x23\x1e\x02\xd2\x9d\x1d\xca\x6c\xb0\x13\xa7\xbb\x3d\xa3\x8d\x36\x6e\xd4\xcc\xe1\xe5\xce\xf5\x6c\xa6\x28\x17\x33\x20\x04\x12\x2f\x30\x28\xb7\x40\x82\x9d\x55\x03\x77\xc7\x0a\x94\x2a\x20\xb5\x7d\xc7\x7a\xd5\x99\x6b\x18\xdf\x60\xff\x0f\x61\x78\xab\x96\x15\xbe\x00\xeb\x2f\xab\xaf\x25\x3a\xb0\x0a\xe7\xbe\x01\xa0\xe9\x38\x4f\x3f\x5d\x4d\x04\x48\x94\x75\x3b\xdd\x89\xe0\xbd\xb6\x87\x86\x76\x3b\x11\x19\x76\xf5\x6c\x4e\x1b\x76\x04\xb3\xc6\xb6\x20\x68\x80\x4c\x82\x92\xa1\xbb\x68\xec\x58\x28\xa4\x28\x42\xed\xe9\x26\x6f\x7a\x60\x86\x13\x10\x53\xc4\x42\xaf\xa2\x0b\xcb\xaf\x0c\x92\xbe\xa0\xb9\xa6\xe3\x5e\xaa\x19\x51\xc1\xbc\x45\x8e\x6a\xd6\x71\x10\xa0\xdb\x05\xf5\x90\x12\x94\x64\x6e\xdf\xc6\x94\xb9\x22\x98\x4f\xa9\xfa\x1b\x29\xbf\x3c\xa3\x11\x56\xb8\xcd\x5a\x88\x9e\x73\xaa\xfe\x41\xd5\x0b\xaa\xbe\xe4\x21\x53\x47\xef\xad\xca\xa2\xe6\x38\x8b\x1a\xed\x03\xa7\xed\x25\xee\xe2\xdc\xae\x5b\x64\x8c\x32\x7b\xff\x8c\x18\x60\x3c\x39\x6a\x1e\x88\x86\xc1\xe7\xee\x23\xf6\x34\x9b\xc5\xcb\xe4\xf8\x21\x34\x93\xa1\xe6\xba\x28\x69\x6b\x52\x4c\x95\x4d\x54\xd6\xae\x99\x67\xef\x0b\x8f\x37\xb0\x67\x6b\xe1\x43\xff\xc7\x9e\xe1\x26\x31\x4a\x76\x62\x3c\x0c\x29\x3b\x3a\x5a\x9a\x25\x09\xc1\xc0\xcd\x1e\xe9\xd6\x47\x2c\xcc\x07\xc7\x25\xe7\xc7\x9b\x18\x80\xab\x3f\xb4\x60\x0e\x8c\xec\x81\x62\x65\x49\x54\xb7\x96\x3e\xed\xa6\x25\x9f\x7d\xae\x4b\xdb\x61\xa7\x1f\x25\xa3\x65\x45\xc8\x63\x3f\xca\x41\x83\x23\x58\x88\x79\x99\xe9\xc9\xa5\x23\x02\xe7\x61\x20\x95\x4e\x56\x10\x4d\x21\x33\x59\xec\x34\xfe\xca\xdf\x72\x41\x53\x43\x5d\x36\x76\x7b\x5b\xa6\xc2\x73\x56\xd7\x4d\x02\x76\x8e\xea\x1b\x46\x06\x17\xb4\xa0\x69\x0f\x0b\x7c\xd4\x9e\x97\x4f\xbc\x2d\x6d\x01\x42\x4d\xac\x3d\xe8\xb5\xf5\x8d\x92\xe0\xae\x26\xac\x25\xf0\xbc\xfe\x24\x62\x20\x02\x49\x48\x21\x58\x10\x4d\x92\xa5\x77\xca\xd4\x42\x6b\xec\xcd\x23\x4f\x3f\xf4\xd2\xae\x58\x45\xe5\xa2\x05\x66\xe9\x71\x8b\x49\x4f\x58\x5c\xc0\xbc\xa6\x42\x51\x5d\xa3\xd4\x18\xb0\xf0\x3a\xa9\xa3\xf7\x31\xab\x1e\xd2\xa0\x8f\xae\xb0\xfd\x63\xc2\xe7\x09\xcd\xf6\x29\xbd\x9d\x35\x88\x6c\x3c\xf6\xcd\x38\x03\x8e\xa0\xd0\x56\xe9\x6d\xcd\xca\x9b\x94\x9e\x4f\xa9\x9b\x05\x61\x6b\x76\x85\xf2\x80\x20\xfb\xc9\x93\x48\x78\x66\x66\x15\xb4\xb1\xff\x19\xbb\x49\xae\x88\x83\xb5\xed\xa0\xc3\xab\x2d\xb6\x1b\x30\x67\x13\xec\x9f\xf4\x0b\xdc\xfd\x18\x72\xa9\x03\x39\x19\x03\xe6\xb6\xc4\x04\x6e\x17\x6d\xb1\x7f\x60\xe6\x72\xc5\x8a\x3a\xca\x7a\xe2\x7b\x71\x9b\xca\xa0\xe8\xb8\xda\xd4\x10\x69\xc8\x87\xbc\x6c\x88\x79\xa5\x34\xdb\x3c\xbc\xac\x8d\x08\x45\x20\xdc\x63\x75\x4a\xe3\x2b\xda\x96\xe7\x2f\x3f\x69\x75\x69\x5a\x85\x2f\x2b\x9a\xad\xf5\x15\x21\x9c\x66\xc4\x00\x7b\x88\x94\x71\x7b\x24\x9a\x3d\xbe\x12\xc4\xb2\xad\xd5\xae\xa8\xf5\xb5\x2b\x09\xf6\xe4\x0a\xe6\x1b\xad\xec\xc1\x69\xd3\x0a\x58\x22\x2f\x46\xdd\x59\xdb\xfa\xdc\xcf\xcb\x9d\x00\x28\x59\x43\xfb\xc7\xa0\x94\x2d\x20\x5a\xb8\x10\x38\xbd\xfc\xb4\x85\x77\x0c\xd4\x78\xb8\xdc\xd5\xc2\x4f\xa6\x0f\xa0\xce\x7d\x1a\xfb\xb4\x43\x33\x8a\x54\xd7\xfc\xac\xd1\x03\xda\x37\xb2\x05\x44\xa3\x81\x36\xca\x49\x14\x37\x77\x89\x28\xd4\x09\x88\x8d\x1d\xe9\x0d\xa6\xad\x92\x4d\xc7\xcd\x47\xa4\x4a\xde\xce\x3b\x7a\xe7\x09\x69\xf9\x53\xc0\x4e\xf4\x0e\x55\xb8\x0b\xb4\x45\xc7\xaa\x21\xd1\xa7\x6d\xb0\xba\x15\xed\x6a\x21\xee\x08\x3a\xfe\x6e\x68\x17\x84\xfa\xad\x72\x56\x45\xbe\x7d\x23\xcd\x83\x74\x8a\xa6\x00\x85\x34\xae\x9f\xb4\xa9\x9c\x36\x4b\x6b\xa1\x63\x37\x92\xf2\xed\x3a\xd3\x9a\xfe\x22\xea\x14\x3c\xf2\x87\x4a\xe0\xba\xbf\x56\x64\xfc\xa6\x14\xfa\x40\x4e\x00\x54\x87\x07\xb4\xa3\xa0\x2a\x76\x8f\xfa\x17\xe6\x50\x9c\x0e\x50\xb1\x6f\x63\xd0\xbc\x5f\x95\xff\xbf\xed\x71\x3a\x01\xb1\x8d\x39\xb2\x1d\x5a\xaf\xa7\xa4\x0f\x1c\x1a\x75\x0f\xcc\x0a\x34\x59\xc8\x4d\xb8\xdc\x65\x93\x31\xdb\x58\x68\xc7\xb4\x15\x75\xc4\xd3\x97\xc2\x9d\x41\x86\xd6\xe5\x77\xa1\x89\x77\xb6\x06\x0b\xaa\x90\x0a\x51\x0c\x84\xf7\x62\x59\xcc\x05\x21\x63\x46\xda\x42\xd0\x26\x0b\xaf\x2e\x94\xb4\xba\x11\xde\xa4\xdc\x34\x58\xa4\xec\xce\x35\xd6\x53\xdb\x2e\x80\x15\x91\xce\xba\xb9\x59\xe7\xb0\x69\x4d\x9e\x0b\xda\x05\xbb\xdc\x24\xe1\x3f\x40\xd1\xc1\x56\x07\xe4\xd9\x26\xe2\xfb\xb8\x22\x0f\x05\x05\x07\xcd\x90\xa5\x2d\xae\x69\x8c\xed\xad\x21\x94\x1e\xdd\x99\x2f\x22\xb5\xc2\xeb\x5d\xab\x11\x9d\x60\x04\x27\x2b\xac\xac\xf6\x31\x9b\x60\x8e\xbd\xb8\x46\x46\x48\x66\xe6\x31\x48\x92\xda\x59\x1b\x1a\x7f\xca\x37\xb7\xb3\x7f\x7f\xe4\x64\xbd\x7d\x54\x7f\x36\xf5\xd8\x4c\xac\x4f\x0b\xd9\xc8\xe8\xa4\x65\x67\x06\x40\x25\x8f\x04\x6f\xed\x44\x8d\x0d\xb2\x75\x0e\xa5\x96\x15\x50\xab\xb5\x5d\xc8\xbd\xa8\x52\xd8\x8d\xb3\xf9\x31\x6a\xa2\x85\x33\x3c\x42\x3f\x70\x23\x6d\xb1\x04\xec\xf2\x02\xed\xb2\x79\xe5\x48\xac\x58\xe7\x9c\xb7\x35\x0b\x0d\xc7\x3d\xbd\xe2\x59\x68\x6a\x7f\x1d\x5b\xeb\x86\x58\xd3\x6b\xf2\xba\x5c\x97\x47\xdb\xcc\xa9\xfb\x8c\xb0\x90\x5f\x93\xbf\x85\x5d\x3c\x38\xca\x06\xd9\x8d\xab\x6b\x21\x7d\x99\xa7\x98\x0c\x0e\x71\x39\x14\xfe\xd2\x5f\xb6\xef\xf5\xb5\x1e\x78\xa3\xdc\x37\x4d\xe1\x41\xcb\x06\x80\x24\x57\xbb\x1b\x3a\x12\xc6\xd1\x2b\x7a\x76\xf6\xab\x07\x2d\xd9\x2c\x37\x96\x19\x33\x03\x35\x42\x34\xf5\x0e\xaa\xb6\xcf\x8f\x86\x41\xf4\x43\xc9\x71\xce\x7b\xee\x71\x69\x23\x20\x2b\xd9\xed\xe4\x08\xe0\x55\x72\xa3\x6d\x09\x83\x84\xd9\x36\x12\x0e\xa8\xd3\x8c\xe6\x3f\x6f\xd8\xa9\xf1\x04\xf7\xf7\x78\x1b\x60\xdd\xd0\x9e\x14\x28\x76\x49\x8b\xc9\x82\xbe\xa8\x89\x45\xcb\x6c\x3c\xaa\xe9\xad\x61\xbb\xad\xdb\xd8\xa7\x9a\xec\x70\x77\x2b\xd6\x20\xb8\xb6\x9b\x38\x34\xa4\x23\xbd\x31\x40\x9c\xe0\xb0\xa1\x73\x29\x82\x82\x95\xe7\x52\xe5\x06\xaa\xe7\x76\x83\x47\xa8\xeb\x30\xfc\x5f\x5b\x48\x38\x37\x5e\xfe\xae\xe3\xbe\x92\x26\x7c\x41\x24\x71\xb9\x93\x61\x30\xc7\x42\x34\xb7\xb6\x5c\x06\x87\xc2\x66\x26\x22\x9b\xb6\x64\x59\xad\x58\x13\xe7\x7a\x2d\x65\x12\x3d\x3c\xb0\x94\x3f\x69\x5a\x53\x72\x58\x31\xdb\x5e\x0d\xfb\xd8\xb4\x8f\xae\x7d\xb4\xd2\xb7\x11\xb5\x0c\x8f\x1b\xd0\xaa\x69\xe7\xae\x41\x4e\x4b\xbb\x54\xd1\x4c\x15\x28\x21\x7c\x25\x34\x79\x07\xde\xc6\xba\x28\x33\xcb\x4c\x6c\xec\x4d\x09\xa0\xc3\x8e\xae\x28\x32\x67\x4d\xed\x05\xb5\x64\x03\x15\x8b\x96\xfe\xfc\xd9\x72\x25\xf9\x59\x6e\x0a\xca\x2e\x6d\x4c\x9f\x9c\x77\x68\xd1\x04\x14\xfa\xf4\x48\x9e\x3d\x56\xe3\xe9\x45\x47\xd1\xa1\xd4\xa5\xac\x1a\x67\xa1\xa6\xc5\x94\x5b\xfb\x46\xc0\x5c\x4a\x01\x73\xd8\xb2\x14\x42\x38\x9c\x12\x21\xcd\xae\x05\x0e\xc5\x76\x0d\x0f\x9e\x9c\x2d\xcd\x4d\x66\x4e\x1b\x34\xa7\x25\xaf\xfd\x11\x79\x9c\x8e\xdb\x82\xb0\x7f\x5e\xeb\x75\x85\xc3\x27\xca\x5a\xb6\x4a\xe5\x5b\x5a\xb2\xa1\x11\xe2\x59\xeb\xe5\x84\x8a\x9f\x12\xe8\xef\x2d\x21\x0a\x1c\xa2\xa1\x86\xdd\x21\x76\x1a\x6b\x21\x8f\x3e\x4a\x75\x56\xd4\x05\x36\x7a\xd6\xb2\xac\xbe\xbd\xc1\xd2\xb9\x9c\xae\x45\x96\xf6\x1a\xff\x51\xe4\xfa\x2b\xed\xd5\x35\x04\xea\x3d\x81\xde\x8e\xdc\x43\x9d\x6e\x69\x8e\xfc\x75\x45\x6a\xf1\x3b\xa9\x85\xcc\x8b\xc9\x78\xe3\xcd\x37\x1a\xfe\x05\x7d\xb9\x6c\x55\x36\x55\xfd\x69\xb5\x94\x05\x85\x7f\xd2\x58\xf6\x5b\x95\xaf\x04\x7e\x43\xec\x6d\x7e\x5b\x0e\x61\xb8\xa2\x8d\x4a\xe3\x3c\x69\x90\x64\x2b\x69\x45\xe6\xd1\x8a\x52\xb2\x48\x51\xc3\x6e\xda\x60\xc4\x06\x1e\x35\x68\x5d\x21\x75\xd2\xd1\x0c\x8c\x7f\x6c\xa4\xed\xcf\xb8\xd9\x19\x8b\x5d\xdc\xfd\xde\x55\xea\xec\x5a\xf4\xdf\xd4\xdd\x91\x10\x7f\xdd\x51\x21\x44\xb7\xe2\x59\x55\xd6\x73\xed\x20\x99\x35\x5f\xdc\x3b\xce\xc5\x3d\xab\x1d\xbd\xad\xd8\xab\x93\xee\x0e\xf6\xe6\xed\x93\x6a\x7a\x4a\x73\xf0\xf2\x25\x86\x3d\xe3\x17\x3b\x67\xb7\x5b\x57\xdb\x88\x00\xc6\x61\xc7\xb2\x2e\x47\x3e\x7a\x36\xc4\x2f\xee\xa2\xf4\x3f\x25\xa5\x62\x45\x99\x6f\x5d\x6d\x7c\x90\xd2\x7b\x4c\xad\x67\xba\x75\x5e\x7b\x1c\x4e\x58\x74\x91\x8f\x5f\x12\x9e\x38\x6a\x6e\xd1\xd0\x2b\x51\x74\xf6\xde\x45\x53\xfe\xb8\x69\x09\x7c\xdf\xb0\x65\x77\xf5\xab\x52\x34\x1d\xa7\x68\x1e\xb5\xec\xee\xe7\x6b\xc3\x6e\x76\xee\x93\xc6\xcf\xfb\xef\x32\xbc\xd4\x17\xc8\xb2\xb2\xd1\x8a\xc5\x96\xf5\x5a\x50\xc2\x58\xe2\xf0\x58\xcc\x32\xae\x08\x7a\x45\xbe\x69\x23\x75\xf0\x2b\xcc\xda\xcf\xfa\x16\x40\xd2\xf0\x9b\x0a\x31\xa3\x01\x15\x8a\x38\x6d\x3e\x7b\xe7\xd5\x0d\x50\x65\xb5\x4d\x80\x19\x48\x84\xc0\xf8\xbd\x77\x80\xf1\x87\x78\x09\x3a\x46\xef\x83\xde\xdc\xcb\x31\x75\x87\x99\x27\x55\x54\xde\xb1\x4f\xd2\x45\xc2\xff\xe4\x44\xbc\xdf\x38\xce\xfb\xcd\xb4\xf3\x9f\x9c\xe7\xcd\xf1\x7c\xfc\x12\x13\x89\x1e\x0b\x94\x8e\x30\xa4\xff\xe8\x58\x6c\x27\xd0\xf4\xbf\x3f\x2f\x9b\x4d\xeb\x6d\x24\x4e\x60\x10\xff\xf9\x4e\x8c\xc3\xeb\x3f\x4e\x57\x25\xbe\x2f\x3d\x58\xcc\x17\x3b\x15\xb1\x99\x65\xd6\x40\x0c\x8d\xb8\xfb\x8f\x95\x83\x57\xd7\x71\x0e\x5e\xdd\xeb\x2f\x49\x65\xc7\x0a\xe4\x50\x89\x18\x4f\x12\x7e\x2c\x5c\x3a\x7f\xcb\x72\xf0\x4f\x96\xa4\x1d\xc7\x91\xe7\x38\x47\xde\x37\x54\xfb\x0d\x28\x2c\xea\xfe\x06\x90\xa9\xeb\x38\xbc\xed\x4f\x93\xf6\x40\xc7\x83\x9c\x07\x64\x0b\xbf\xc7\x98\xfe\x43\xb0\xbc\xbb\x78\x7a\x76\x03\x96\x4f\xf8\xe3\xbf\xb9\x90\xa3\x11\x0b\xc3\x69\xdb\x86\x4d\xb3\x5e\x45\x1c\xca\x5a\x43\xc8\x1f\x19\x51\x0d\x8e\xf5\x72\xed\xf6\x26\xf1\x77\x68\x7d\xfe\x5f\xa2\x73\x52\xb7\x12\x42\x6f\x56\xad\x2c\x6a\x8e\x1b\x75\xf4\xd2\x42\xc5\xb5\xb3\x5b\xa6\x5b\xcf\x98\x27\x71\xff\x81\x21\x5f\x2a\xa6\x02\xf6\xcc\x98\x96\x14\xb4\xcf\x3c\xf7\xac\x48\x25\xf0\x30\x2e\xa1\x75\x4c\x61\x73\x15\xcf\xc6\xc2\x89\x10\x01\x7d\x0c\xa2\x69\xe3\x5b\x34\xc9\x97\xde\x37\xbf\xdf\x3a\xbd\x08\xe3\x03\x9e\xa6\x9f\xf8\x86\x1a\xa5\x5d\x58\x7e\xd7\x86\x49\xc3\xa9\x9d\xd4\xfe\xa0\x7a\xe1\x6e\x2a\x2f\xb1\x6b\xe2\xb9\x3a\x34\xf1\x30\x15\x87\x32\x26\xf2\x81\xcf\xd4\xd9\xc0\x47\x2e\x89\x79\x5a\xba\x37\x50\x7f\x1e\x89\x6e\x78\xf3\x35\x6e\x21\xaf\x5a\x60\x28\x70\xe4\xb2\x66\x5d\x9a\xf9\xb4\x2b\xc2\x4f\x5b\x8e\x93\x91\x8b\x33\x66\x83\x4d\x6f\xa9\x60\x40\x6c\x34\x7c\xc7\x85\xd2\x58\x7d\x35\xfb\x16\xc8\x46\x29\xe0\x52\x64\x6a\x48\xbd\x72\x98\x45\xec\x8a\x80\x31\xf3\xed\x50\x86\x36\xd8\xc6\x9a\x36\xbc\xb2\x5c\x7e\x7d\x83\xad\x7c\xdc\x50\x57\x9f\x7d\x6c\xf2\xc9\x00\xaf\x0c\x61\x37\xad\x1d\xdc\xe0\x20\x0f\x6f\xe4\xe8\x6c\x6c\x0f\x6a\x8b\x22\xf2\x45\x8c\xbb\x8b\x54\xdf\x9f\xe1\x52\x79\xd2\x51\x93\xb7\xd6\xde\x3b\xa4\x28\x23\x56\x9a\x3f\x70\x7f\x4a\x95\xbf\x1d\xd1\xb7\x15\x7d\xcb\xe8\xdb\x1b\xa9\x9e\xc7\x28\x67\xee\xc8\x0e\x83\xea\x4d\x8d\xd1\xf7\xb6\xae\xa5\xb3\x06\x95\xa6\x73\x3b\xaf\x9f\xd0\x8c\x9d\xde\xd8\xd8\x41\xed\xde\xa2\x11\x9d\x69\x17\xea\x39\x21\x4c\xb3\xd8\x0e\xe9\xc3\x37\x56\x9c\x65\xa5\xd8\xa8\x23\x7d\x30\xed\x9c\xa8\x8a\xc3\x0d\x4e\xf8\x24\x16\x74\xa4\x8d\x4d\x51\x0b\x17\x34\x85\x10\x25\x84\xb7\xdc\x1c\x56\x80\x7f\xeb\xa6\xd4\xe4\x99\x89\x1c\x34\xf5\x41\x26\x8c\x86\x68\x7d\x06\x3e\x86\x3b\xb9\x86\x26\x1e\xb9\x4f\xcd\x4a\xba\x00\x57\x13\x2f\x76\x68\xea\x35\x74\x2a\x55\x56\x4b\xaf\x65\xef\xc9\x4f\x72\x95\xcc\x24\x07\x62\x9b\x2b\xdf\x85\x2d\x74\x32\xd5\xf2\xee\x94\x27\xb6\x87\xd5\x59\x1d\x3d\xc0\x8b\x26\x1a\x97\x0d\x8e\x7f\x42\xe6\x7e\x2e\x36\x2f\x8f\xae\x4b\xb5\xce\xaa\x60\xa3\x71\xad\xf3\xc6\x8e\x38\xa9\xae\xe3\x85\xe4\x80\xa2\x68\x71\xe2\x23\x6c\x22\xb2\x0f\x83\x42\x48\x4a\xa7\x12\xd7\xa4\xb4\x24\x6d\x8d\xce\xdd\x67\xf7\x0e\xa8\x58\xba\xab\x98\x38\x99\x78\x44\xc5\xf2\x5d\xc5\xc4\xf9\xbd\x13\x2a\xb6\xdc\x55\x4c\x9c\x05\x3c\xa3\x62\xab\x6f\x5a\xbb\xa0\x62\x1f\xdf\x14\xfb\x49\xc5\x0e\xbf\x19\xe9\x94\x16\xc0\xf1\xae\x62\xb4\x59\x45\x11\xc3\x54\xec\xf4\x9b\x21\xcc\xa9\xd8\xf9\x37\xb0\x2d\xa8\xd8\xe5\xae\x62\x45\xd5\x71\x97\x74\x60\x31\xa6\x62\xfb\xbb\x8a\x19\xc7\xf7\x1b\x15\x9a\x75\xbe\x2a\x94\x51\xa1\xd7\x5d\x85\x90\xe0\x30\x9c\xf9\x46\x3a\xc0\x56\x37\xbb\x4f\x48\xf2\x64\xce\xba\x86\x01\x96\x22\x88\x45\xb4\x38\x06\x4a\xbc\xd3\x0e\x71\xc4\xd1\xe2\x3f\x89\x07\xef\xdf\xe8\x37\x0c\x5b\x63\x7e\xa3\x1c\xe7\xc0\x35\xec\xdd\xfd\xe8\xd3\x61\x04\xea\xe9\xb5\x2b\x64\xab\x90\xe8\x26\x8a\x53\x02\xef\x6c\x4a\x99\x39\x59\xfa\x21\xad\xe6\x45\x77\x23\x48\x99\xc1\x8e\xba\x9b\xf5\xe4\xd0\xd0\x39\x70\x63\x01\x20\x41\xdd\xc2\xbb\x01\x6c\xa6\x89\x10\x69\x7c\x57\x12\x35\x3e\xda\x4f\xda\x51\xd2\x15\x99\x38\x45\x02\xce\xe3\x9b\x4d\x38\xe5\x91\x88\x0b\xb9\xe1\xc2\x3c\x74\xb3\x6f\x91\x2d\xc2\xed\x3e\x68\xfc\x2c\x0d\xde\xf0\xbc\xcf\x02\xed\xb8\xd3\x6a\x2a\x05\xe7\xbc\x47\xe8\xec\x11\x3a\xe9\xda\x0d\x14\x53\x8c\xc2\x79\xd7\xee\x3e\x71\x29\xcc\x30\x6a\x99\x1b\x4d\x6c\x89\x13\x4b\x4c\xdd\x96\x9e\x6d\x4f\xec\xf7\xa1\xbf\xa7\x65\x0b\x35\x64\xa1\xb7\x2b\x7b\xbe\xe6\xbd\x61\xa9\xe4\xfc\x66\x53\xb3\x5c\x53\xc9\x0f\xda\x84\x3b\x10\xf5\x48\x39\x69\x94\x28\xcd\x52\x16\x9e\x4d\xa1\xdc\xa4\xbb\x65\x9f\x54\xb4\x23\x8d\x7c\xe7\xd3\xad\x48\xd2\xb7\xae\x8d\xd1\xd9\x54\x5e\x3e\x7d\xda\xd0\x63\x70\xd5\x88\x03\x43\xa5\x80\xd1\x5b\x7d\x2c\xe4\xb5\x2a\x45\x58\x46\x4e\x2b\x66\xf6\xec\xf3\x64\x9f\x17\x4b\x8a\xb3\x5d\xe8\x4e\xac\x38\xd5\xb1\xd1\xac\xfb\x30\xc3\xe7\x19\x3d\xa2\x41\x72\x2c\xe0\x9b\xf4\xf5\x62\x31\xda\xaf\xf2\x2c\x8c\x94\x91\xb5\x29\x62\xe8\x9a\x8e\x60\xf1\x56\x89\xd9\xa5\xe3\xad\x9d\xa2\x6d\x14\xe1\x66\x44\x5c\x43\x1f\x2b\x24\x09\xc4\xdb\x6f\xf2\xc8\x0d\x0c\x6c\x29\x42\x11\x18\xa4\xc4\xa8\x32\x42\x87\xa0\x2a\x07\x84\x8d\x43\x31\xe5\x74\x1b\xc9\xab\xa2\x28\x83\x1e\x89\x07\xfe\x4e\x24\xdc\x28\x2b\xe3\x3b\x0e\x32\x6d\x3e\x3d\x71\x58\x56\xd7\x11\x13\x66\x2c\x2f\xe2\xab\xd4\xc5\xe9\x36\x7d\x4d\xcd\xde\xb7\xa1\xd4\x43\xb9\x95\x77\xd6\x25\x4c\x01\x30\xe7\x34\x91\x81\x89\xb8\x81\xd1\xbd\x32\xd3\xba\xc3\x28\xb4\x86\xe3\x7d\xd0\xd9\xeb\x0b\x1a\xdc\x65\x57\x28\x41\x3f\xb5\xa7\x74\xbf\xab\xdf\x47\x4e\x6d\x49\x46\xcf\xfe\x36\x70\x27\xbd\x12\xd8\x88\x10\x3c\xc3\xc6\x41\x12\x74\xd0\xe5\x64\xc0\xc2\x74\x46\x94\x73\x4f\xde\x54\xf2\xde\xbc\xd1\x8c\xd9\x48\xeb\x46\x50\x76\xf0\x8b\xed\x04\xde\xf9\x8a\x4b\xa2\x37\x73\xb7\x79\xff\x8c\x97\x11\xe5\x4d\x79\xc7\xd6\x1e\xa3\xa2\x06\x38\xc0\x91\x15\xc2\x19\x47\xfe\x50\x26\xd3\x17\xd5\x09\xf0\xd6\x90\xf3\x56\x42\xa2\xf3\x6c\x80\x60\xbc\xf6\x34\x9c\x66\xf5\xcf\x6f\x81\x48\xd0\xfa\x6e\x9c\xf6\xa9\x3b\x13\x53\x7d\xc2\x61\xf9\xb4\xb0\xef\xa4\x14\xc6\x53\x7a\x34\x0e\x79\x78\x88\x31\x51\x3e\x10\x45\x6c\x7e\x4d\x86\xd3\x69\xed\x1b\x88\x16\xb7\x14\xb5\x4c\xdc\xf0\xec\x06\x48\x62\x51\xd2\x25\x0d\x7c\x29\x29\xe9\xd9\xad\x15\xf7\x69\x6f\x17\x4c\x58\x8a\x64\x00\x1d\x38\xed\x59\x62\x71\x57\x13\x9c\x5d\x26\x20\xda\xdc\x2e\x6a\xc5\x2d\xda\x24\xcb\x9e\x18\x2f\xb5\xbd\xea\x6d\x1a\xc9\x65\x9b\x77\x63\x1d\xfc\x64\xd1\x82\x1c\xb1\xb7\xab\x7c\x79\x2b\x3f\xc6\xf1\xab\xf4\xd6\x8c\xe0\x0d\x51\x16\xd6\x82\xaa\x64\x9a\x67\x25\x4a\x66\x81\xd1\xb3\x2a\x3a\x89\x0e\xea\x90\x54\xf7\x2e\x9f\x76\xa7\xb8\x02\xbf\xa0\x4d\x1e\xee\xf6\xed\x56\xe3\x4f\x1b\x67\xe4\xc3\x39\xa0\x6e\x0e\x7b\x5b\x24\x5e\x06\x7b\x7d\x6b\xbb\xbe\xec\x59\xec\x3f\xda\x99\x3d\xba\x45\xf2\xc6\x80\xaf\x2e\x79\xdb\x91\xf0\xba\x1f\x38\xa7\x88\x91\x6e\x36\xb0\xdc\x86\x85\xb3\x23\xf9\xe0\x59\x8f\xef\x83\x08\xaa\x8e\xfb\xf1\xc4\x0e\x4e\xd4\x3b\x3f\x05\x91\x84\x0f\xdb\xc8\xb7\x44\x06\x88\xbb\x5b\x99\x75\x7e\x6b\x0b\x97\xc6\xf4\x71\xbb\xe3\xed\xe8\x16\x09\x38\x65\x99\x2e\xf4\xac\x63\xc6\x39\x5b\x09\x55\xf9\xb6\x28\x9d\xbe\xe3\xb1\x30\x6d\x43\x73\xfb\xd4\x78\xd0\xd7\x6c\x1e\xbb\xea\x5a\xdf\xe3\x6b\x9f\x98\x2b\x6f\xeb\x02\x3f\x62\xdf\xc3\x81\x38\x8f\xc7\x59\x7a\x4e\xd0\x9b\x70\xab\xe1\x30\xee\xb9\x9f\x03\x92\x8e\xb7\x02\x6f\x0a\x3e\xff\x72\x04\xde\xd7\xb7\xd0\x4b\x50\x25\x79\xac\x9d\x6a\x14\x92\xc9\xe7\xb8\x1a\x8e\xfb\x4a\x4e\xed\x45\x1f\x9b\x8c\x64\x93\x8d\x79\x7f\xbb\x9f\xd2\xfc\x30\xf6\x2c\xe2\x90\xf9\x10\x8e\xdc\xd2\xe0\x0c\x92\x49\xe6\x93\xf3\x89\x44\x68\x47\x0b\x7e\xa3\x89\x30\x96\xcf\xcd\x1d\x5a\xe2\x8d\x4e\xb7\x79\xb6\x88\xd6\x08\x1b\x34\x45\x5d\xfb\xc5\x9c\x27\x5a\x70\xf0\xe0\xce\x3a\xe5\x63\x97\x5a\xaa\xdf\xe9\x40\xea\x0b\xdc\xe2\x39\xae\x06\x1b\x1e\x81\xca\x80\xfd\x02\x1e\x5d\x6e\x85\xaa\x33\x32\x9b\x21\xe9\x6f\xb7\x92\x41\x32\x1a\xca\x5e\x09\x5d\x8b\xac\xc4\xaf\xea\x05\x6d\x89\xe7\x93\x5b\x6b\x4b\x9d\x1a\x12\x37\x2e\x4b\x4b\xe7\xd4\x30\xd7\x3a\xea\xe9\x77\xf3\x1d\x6f\xe6\xa0\xfd\x61\x0a\x3b\x4c\x4b\x9d\xcb\xfd\xe1\x0d\x90\xd9\x8b\x27\xb3\x18\x2d\x36\x18\xc8\xdd\x41\x06\x2d\x3d\xf5\xc7\x9e\xc4\xb3\x39\xe1\xe0\x96\x68\xdd\x9e\x45\xdd\x95\x25\x1d\x4a\xbc\x20\x1b\x52\xc9\xca\x5d\x29\xd0\xcf\xcd\x8d\x74\x82\x06\xce\x4a\xc7\x38\x4f\x48\xd0\x10\x4a\x31\x52\x7d\x58\x56\xe5\x16\xc8\x9b\x47\x91\x31\xee\x4c\xcc\x1b\x67\x59\x1c\xf7\xca\x3c\x0f\x31\x04\xa5\x57\x5d\x49\x8a\xdc\xc4\x39\x3a\x40\x97\xf7\xa4\x2c\x75\x77\xd0\x41\xc6\x2b\x05\x65\xa0\x2b\x81\xce\x6e\xb9\x0b\xde\x77\x46\xfd\x9c\x8f\xf0\x54\x25\xf0\x3c\x3a\xe2\x9f\xbd\x6d\xac\xcd\x6e\x75\x31\x63\x05\xe6\x25\x60\x65\x03\xf4\xe5\x9d\x2e\x0b\x98\xb3\x78\x95\x6c\xe2\x0c\x45\xdf\xa1\x0e\xef\x6d\x5b\x61\x72\x50\xa3\xb3\x38\x0d\xc7\xb9\x4d\x71\x61\x92\x85\x1d\x36\xb5\xbf\x7b\x97\xdd\x53\x60\x7b\x49\x8d\x43\x76\x1f\x38\xc2\x09\xa6\x94\xf6\x26\x28\xea\xa4\x74\xbc\x98\x9b\x60\x64\x75\x1c\xe7\x89\x1a\x0c\x6a\xeb\x3e\xea\x08\x1f\xc4\x93\xdf\x50\xa1\xbf\xb3\xa1\x6e\x28\x4f\xb1\xdb\xc1\x94\x94\x74\x9a\x9a\x03\x62\x14\x87\x9b\x53\xe3\x19\x07\x35\xe2\xed\x57\x20\x35\xff\x63\x74\x8e\x3d\x3c\x58\x0c\x08\xcb\xc5\x5a\x23\x73\x71\xc8\xdf\x9c\x21\xf7\x1c\x73\x15\x1c\x5f\xb2\x11\x8a\x5d\x0c\xeb\x3c\x36\x17\xd1\xc8\x70\xa1\x6d\x11\xcc\x87\xfc\x2f\x4a\x4e\x53\x6e\x51\x2f\xe3\xa6\xb9\x9c\x4d\xc7\x75\x45\x9e\x64\xc3\x9c\xf9\xd6\x43\x5a\x64\x57\x77\x58\xdb\xf8\x86\xe7\xce\x6e\x58\xc1\xe1\x46\x9a\xf6\x84\x6d\x66\x34\xbb\x80\xb8\x06\x5e\xda\xe0\xa2\xbe\xd8\x74\x9c\xb0\x9a\x0b\x45\x84\x85\x4c\x7a\x23\x19\x11\x0c\x79\xb0\x8d\x33\x06\x84\x07\xca\x38\xb3\x31\x57\xa1\x39\xe8\x89\x7a\x47\x1d\xe9\x87\xfc\xc0\x01\x56\xb9\x74\x19\x55\x5c\x64\x7d\x43\xd7\xf9\x74\xad\x96\x1d\x94\x0a\x1c\xdc\xe8\x21\x34\xb5\x72\x7b\xda\x97\xeb\x93\xcb\x1d\xdd\x90\x72\x4c\x14\x67\xbf\x99\x48\x9a\x50\xfa\x0f\x8e\xfa\xd4\x6d\xd3\x71\x13\xd2\x94\x88\x0b\x5f\x96\x25\xf1\x86\x8b\xea\x67\x5f\xfb\x6f\x51\x0c\x74\x4b\xc1\x64\xc6\xa4\x93\x1a\xb6\xd0\xf1\xce\xab\x56\x95\x5b\x0f\x84\x8e\xb7\x64\x57\x13\xce\x41\xad\xcc\x37\x8c\xd0\xe3\x55\x3b\xeb\x7f\xa6\x29\xe4\xae\xd4\xa6\x2c\xe4\x0b\x7b\xbe\x8f\xf6\x23\x2f\xab\x8e\xac\xf0\xe6\xe9\xd5\x68\x27\x99\xd4\x3e\x76\x0d\xe7\x5d\x3b\x06\xe1\xb0\x90\x87\x87\x6b\xdb\x88\x68\xd0\x8d\x88\x1d\x7b\xec\x3d\x61\xaf\x15\xb6\x63\xca\x38\x7a\x09\x1a\x75\xec\xa2\xbe\xd5\xda\x9d\x80\x4d\xd2\xe8\x86\x12\xdb\x2c\xdd\xd3\xb1\x81\x98\xe9\xb6\x62\x49\x6c\x99\xf7\x5a\x53\x58\x68\xee\xfe\x93\x74\x16\xbc\x7e\x8a\xed\xaf\xf4\x32\x36\xa4\xad\x2e\x61\x9c\xb7\x39\x4a\xa3\xa6\x18\x08\x9e\x9d\xed\xe4\x5f\x48\xd0\x85\xb7\x85\x74\x6e\x92\x65\x0c\xcb\x93\x9d\xa2\x84\x33\xf5\x46\x97\x58\x5d\x52\xd6\x9c\xb3\x7a\x86\x6a\x2a\x6b\xbe\xfd\xcf\x9c\x17\x8b\x3e\xda\x84\xd1\x40\xca\x7e\x43\xaf\xc6\x11\x38\xeb\x5b\x3f\x8c\xb3\xa1\x26\x08\xc5\x80\xb8\x21\xf6\x39\xa8\xfc\xac\x3a\xce\x10\xb9\xd9\x7b\xbd\x72\x56\x75\xdc\xcb\x47\x61\xc4\xa4\xa5\x16\xad\xe7\xa6\x63\x6e\xaa\xa0\xbd\x16\xca\xed\xea\x2b\x74\x2a\x6f\x2e\x9e\x6a\xb6\x8e\x9a\xa9\x8b\xc1\xfd\xd0\x72\x46\x6d\xe6\xe5\x79\x36\x75\xb5\xa8\x0c\x5c\x7b\x4b\xca\x1b\x55\x49\x09\x4f\x08\xf3\x4f\x73\x01\x07\x39\x75\xb5\x54\x35\xdf\x3c\xc7\x3d\xe6\x9b\xd6\xa8\xb6\xb8\xdc\x63\xd5\xb7\xf3\xcb\x5e\x90\x75\x9f\x07\x49\xf6\x16\xb3\x1c\xf4\xb4\x0d\x36\x24\xa2\x67\xc3\x1c\x8b\x2e\x97\x5f\x53\x79\xe3\x0b\x38\xec\x6f\x48\xd3\xae\xe3\xdc\x11\x9d\x9c\xa2\x87\xee\xe7\x35\x8b\xf6\x4d\xd6\xa7\xe3\x61\xfb\x48\x61\x68\xff\x12\xe9\x25\x7d\xc9\x2d\x90\x97\xde\x9d\x0e\x4c\x28\xc6\x11\xc6\xea\x1d\xd6\x8b\x01\x13\x39\x1a\xe7\x57\x3a\xe8\x17\x89\xe4\xd6\x71\xee\x38\x70\x16\xe7\xe6\x94\x86\x76\x36\x20\xef\x97\x3d\xe0\xe5\xcf\xc8\x25\xcb\x8d\x91\xc5\x77\x49\x00\x5c\x10\x31\xf2\xdb\x4f\x7a\xdb\x2f\x7d\x43\x6a\xbc\xa4\xc6\x2f\x06\xb2\xf8\x94\xde\x66\x43\xfd\x0d\xb4\xf5\xd7\x17\x21\x0d\x5e\x07\x5b\x28\x71\x04\x33\x94\x4c\xa6\xaa\xfb\x7c\xa0\xcb\xcf\x51\x5b\xb3\x83\xd7\x42\x6f\x60\x5d\xa1\x6c\x58\x9c\xa1\x61\xf1\x8e\x46\xd0\x98\x0d\xed\x8b\x5b\x3a\xf2\x8e\x06\xcb\xdd\xd6\xc2\xf3\xb4\x32\xf6\x36\xd4\xb4\xf8\x09\x9b\x82\x0c\xba\x4a\x6b\xbf\xac\xa8\x04\xb4\x15\xf1\x4a\xd6\x55\x70\x43\xa7\x66\x45\x74\x71\x2e\x42\x72\xcb\x7a\x98\xf6\x57\x1b\xaa\xa5\xcf\x83\x4c\x04\x72\x4c\xfb\x96\xd7\xbb\xc8\x68\x38\x18\x08\x67\x84\x14\xe9\x06\x6f\x5d\x5c\x89\x2f\x74\x96\x97\x76\xb2\xae\x45\x3e\xad\x2b\x3a\x24\x42\x96\x1a\x71\x2f\xca\xef\xd8\xe9\x31\x06\x95\x7b\xd8\x11\xbc\xe3\x7c\x60\x8b\x1c\xd1\xf3\xf1\xc0\x2e\xf6\x8d\x2c\x44\x20\x3d\xe7\x03\xc9\x74\xf4\xf8\x9e\x48\xf1\xef\x6b\x31\x34\x14\x65\x39\xe0\x9f\xaf\x1e\x71\x25\xab\x17\x5a\xe0\x81\x56\x46\x30\xa6\x55\x70\xb6\x9a\x84\x64\xc7\x99\x46\x9a\xbf\xcb\xc7\x98\xa2\xbf\xdf\xf9\xe4\x4b\xb3\xb4\xb6\x50\x9b\x6c\xcb\xfd\xa1\x0f\xbd\xdb\x1b\x34\x19\x4f\x80\x3f\x6d\xc0\x12\xfc\x1e\x97\xed\x96\x72\x49\x07\xe1\xe5\x48\x3e\xd8\x43\x9a\x20\x6e\x8a\x36\x27\x3b\x95\x27\xc7\x65\xdb\x8b\xc0\xe5\xf9\xa3\x6e\x75\x98\x3a\x66\xd1\x2c\xd3\xac\xdd\x48\xc6\x49\x86\x19\x3b\x11\x09\x08\x16\x4d\xd9\x8d\xe3\x64\x37\xe9\x95\xdd\x44\xca\xae\x84\x0c\xd0\x17\x33\xd1\x3e\x27\x5d\x21\x65\xf6\x7b\xf8\x26\xcd\xe1\x96\x44\xcb\xc8\x26\x9f\x89\x7b\xaf\x1d\x3a\xe9\x9b\xe0\xe2\x1e\xf0\xa1\x53\xa1\x53\xbc\x13\x1b\x27\x6a\xbe\xbc\xa7\x3c\x57\x2f\xbf\x26\x5f\xbf\xe3\x26\x74\xc4\xe5\x80\x3a\x38\xdc\xee\xba\x7c\x28\x73\xfb\x5c\xc8\xd1\xd0\xee\x02\x1e\x93\xfa\x73\x40\x1e\x4c\x76\x37\x3a\x3a\x0f\xe7\x05\xaf\x82\xe9\x4a\x36\x5f\x69\xf0\x9e\x17\xed\x8e\xa7\xac\xf4\x91\xa0\x1a\x9c\x0c\x61\xfe\xe7\xd5\x7c\x20\x55\x24\xdd\x43\xa9\xa1\x83\xde\xd6\xbe\x8a\x1c\xc8\x5b\xaf\xb4\xa1\x65\x90\xce\xdc\xfa\x7c\x28\x14\x69\xbb\xbf\xf3\xd6\xdd\x70\xdf\xa7\x3d\x89\x96\x8b\x21\xd0\x54\x86\x83\x60\x4b\xe3\x12\x11\x3f\x47\x53\x6f\x3c\x95\xe6\xdf\x11\x8e\xe5\xad\xca\x68\xb2\x4d\x4c\x6d\xd0\xc9\x25\x7d\x13\xcb\xf8\xe7\x9d\xb8\x20\x65\x83\x54\x66\x77\x16\xe8\x83\xa1\x9e\x42\xb1\x3b\xb5\xe3\x28\x52\xc7\xf1\x66\x2d\xc9\x94\x5f\xb1\x11\xdc\x01\xee\x43\xb5\x5a\x8e\x5b\x35\x4f\xce\x67\xb4\xa0\xa7\x1c\xbe\xf0\x58\x00\x3f\xcc\x80\x6e\x1d\xe7\x91\xe7\xdc\x10\x55\x53\xfb\xa8\xb6\x60\xe1\x50\x43\xfe\xc9\x8e\xe9\xf6\xfe\x9a\xb1\x8a\xcb\x14\x68\x6e\xae\x2c\xcf\x0e\x9b\x81\x6c\xf6\xc6\xfc\x63\x0b\x86\x1e\x74\x1c\x64\xa7\x74\xf6\xc0\xa3\x2d\x12\x72\x92\xde\xd9\xd2\xcb\x5b\x33\xb6\x27\x33\xb6\x71\x5a\xba\x02\xe9\x1d\x0f\xc8\xf2\xde\x46\x72\x23\xb5\x1d\xeb\x86\xc3\xca\x5c\x61\xda\x47\xd2\xbd\x34\xf2\xd3\x46\x85\xe2\x4e\xe4\xad\x80\x68\xda\xc7\xaf\x97\xb7\xc2\x1e\xb1\x92\xfa\x52\x6c\xfa\x1e\x0c\xb4\x51\x28\x6c\x5b\x7c\x8e\xc9\xb0\x64\xa8\xb1\x70\x70\x5f\x2a\x4c\x5f\x62\x69\x56\xfd\x14\x4e\xe7\xf3\xfe\xe6\x94\x11\x42\xef\x34\x8a\xf1\xd6\x03\xe3\x58\x84\x0e\x18\x0f\xe5\xeb\x6c\xdf\xbc\x8d\xa1\x62\x22\xae\x71\x94\xd7\x8e\xf0\xc8\x4f\x77\x8f\x7c\x26\x8e\x8d\x9d\x55\x6d\x0b\xe5\x9b\x16\xa3\xd2\x1e\xb1\x9d\x08\xa2\xa9\xa5\xb5\x36\x5d\x79\x07\x64\x52\x9a\x5e\x26\xa4\x0b\x41\xaf\x12\x4f\x67\xb7\x76\x1f\x9c\x0d\x5e\x3b\xbe\x86\x98\x49\x9e\xe7\x9d\xe3\x71\x4f\x27\xdf\x0c\x88\xbb\x2f\x53\x9e\x1d\x50\xf3\x77\x06\xb4\x75\xf3\xa2\x69\xa3\xf9\xcd\x80\xa0\xcc\x4b\x89\x06\xba\xda\x4f\x4e\x34\xf0\x46\xea\xe9\xe9\x9d\x2d\x5f\xd4\x76\x13\x0d\x36\x4c\xe5\x7e\x76\xac\xc5\xb7\xdf\xde\xcd\x16\xb8\xfd\x6b\x7d\x79\x04\xdf\x02\x20\xf8\x00\x71\xa6\x45\x35\xbe\x47\x37\x5e\x82\x5c\x69\x20\x98\x65\x73\xe3\xae\x01\x3e\xed\x23\x9c\x04\x65\x19\x61\x2a\x31\xa3\x67\xb1\x41\x7b\x95\xbd\x4d\xe9\x37\xbf\x47\x60\xc3\x7b\xf9\xb6\xa2\x0d\xe8\x92\xfc\x33\xc5\x91\xc5\x58\x2f\xd4\x7d\x89\xef\x19\x0b\x91\xe1\x59\xdc\x8b\x33\x36\xe8\x5c\xbe\xdf\x21\x61\x0f\xc8\xc9\x76\x28\x22\x89\xc8\xb2\xad\x96\x05\xb0\x00\x6a\x71\x4f\xfb\x60\x25\x48\xcb\x45\x9c\x12\x04\xdc\xa8\x7b\x3a\x62\x77\x2b\xaa\xf3\x77\x7a\x0e\x1a\xbb\xc2\xa4\x3e\xf3\xb8\x74\x75\x39\xbc\x2a\x82\x95\xf6\xd6\xae\xcb\x4a\xbb\xa9\x5b\xca\xc4\x0b\x0d\xb4\x99\xc1\xd7\x25\xad\xa8\xad\xb9\x2b\x61\xa1\x59\xe6\x31\x70\xc1\xbc\xae\x8d\x94\x06\xdd\xa8\x5e\x6e\xd9\x2c\x4c\x36\x91\x33\xda\x2b\xcf\xef\x4b\x5f\xbc\x8d\x43\x80\x05\x7d\x5e\xde\x49\x4d\x84\xd5\xe0\xe3\xda\xf6\x88\x74\xc8\x03\xf9\x1b\xf7\x1b\xb2\x3c\x9b\x2a\xdc\x48\x44\x8a\xe1\xda\xd3\xe4\x6e\x88\xf5\xfd\x4e\x6b\x29\x2e\x9f\x7f\x63\xc5\xf1\xee\x73\xeb\x6f\x23\xae\xe3\x8e\x35\xe8\x64\x28\x17\xd3\x91\xce\x26\x38\x1e\x77\x61\xa8\xf9\xdd\xed\xb1\xe4\xaf\xe0\x2b\x2a\x4e\xee\x38\xfa\xf4\x9c\x08\x7d\x41\x11\xff\xe5\xbb\x17\xc8\x92\x28\x8c\xab\xc0\x8e\x68\xbe\xab\x78\x39\x22\xd6\x0c\x85\x4e\xd0\xdd\x6d\x0c\x44\xa8\xa5\x67\x77\x3a\x82\x97\xde\x29\x20\xe4\x9d\x56\x02\x69\x6d\x64\x9c\xfc\x24\x3c\xee\xe3\x3f\x0a\x90\x48\x5d\xe1\x1f\x62\xfc\x5f\xb1\xd5\x81\x26\xf4\x9d\xd0\xbf\xf9\xbb\x0d\xe1\xbb\x5d\x59\x2d\x09\xbf\x0d\x8b\x3b\x49\x36\x6b\xac\xdd\x15\xc1\x72\xe1\x60\xb7\xa3\x92\x6f\x39\xa0\x3d\x6a\x62\xdc\x27\x5f\xdc\xeb\xd0\x3a\x6d\xe2\x8f\xa9\x91\xaf\x70\x4a\xb4\x3a\xc3\x7f\x67\xb8\xf4\x0f\xeb\x92\x3d\x05\x84\x8b\x57\xc3\xcd\xf0\x2a\xa1\x16\x64\x0e\x2e\x5a\x95\x83\xaa\xe3\x1c\x54\x99\x05\x19\xf6\xb0\xae\xa2\x93\x4a\x70\xa7\x05\x85\x71\xb0\xfd\x1f\xdf\xd3\xa5\x36\xf4\x8d\x14\x4f\x02\x24\xbd\xb7\x24\x15\xf3\x49\x62\x1d\x55\xf1\x84\xb9\x09\xda\x61\x2f\x65\xb5\xb0\xe5\x38\x7e\x86\x1a\xec\x1b\x96\x3f\xad\xe7\x6d\xe1\xad\xe4\x50\x2f\xe1\xbd\x19\x9c\xd1\x35\x6c\x97\xac\xfa\xcb\x2b\x60\x64\xfc\x0e\x7b\xee\xe5\x89\xe2\xec\x41\xb0\x36\x4b\x97\xcb\x7b\xb1\xc8\xde\xef\x6d\x58\xe5\x8a\x46\xb9\xbe\xb7\x1e\x9d\x0f\x66\xd9\xf7\x36\xce\xf2\x90\xb2\x8e\x48\x1a\x44\xe6\x07\x0c\x59\xb4\x5c\x90\xb6\x79\x49\x3f\xf0\xc2\x6f\xb3\xbe\x3d\x78\xed\x9e\x52\x70\xec\x09\x81\x71\x7a\xbf\xb1\x3c\xbc\x8d\x73\x21\xc5\x83\x6e\xb0\x5b\xba\x4c\xfd\x80\xd8\x4f\xcc\x1e\x04\xd4\xb9\x28\xc0\x2e\xf5\xc6\xd4\xd8\x00\xc7\xc6\xc3\xe2\xd0\xfb\xa3\x01\x9b\xbc\x97\x0f\x52\x21\x29\x48\x0d\xf8\xa0\x4c\xd6\xc4\xdf\xc9\x8f\x94\x20\xa1\x0f\xa4\xda\x81\x60\x94\xdb\x3f\xbb\x2f\x37\x7c\xf0\x20\x5b\x3c\x78\x10\x4d\x79\x6f\x77\xda\x08\x71\x2f\x3b\x72\x5f\xe4\xfe\x33\xb3\x85\x67\x80\xeb\xe7\xe2\x62\xba\x2d\x27\x19\x66\x68\xa6\x48\xb3\x94\x12\xfe\x67\x32\xa2\xb5\x69\xef\x3f\x90\xf7\x32\xcb\xfc\x8c\xd4\x87\x5c\xca\xd4\x13\x3a\x99\x15\xb7\x4b\x27\x6a\xb1\x75\xda\x85\x39\x22\xf1\x7e\x2c\x2b\xb1\x6a\xcd\x79\x82\xdb\x70\x0f\x44\x1d\xbd\x8d\x0e\x4c\xd4\x12\xb7\x0c\x70\xa3\xdb\xbb\x5f\xda\x97\xf8\x89\x5a\xc7\x83\xd6\x7b\x1a\xc2\xa3\xba\x6b\xf4\x25\xf3\xee\x95\x5c\xdf\xdb\xc7\x8e\x04\xf0\x65\x54\x32\xc1\xf3\xde\x23\xe1\xba\xb4\xf5\xa1\x3b\x15\x17\x20\x9d\x18\xb7\x25\xb3\x30\x5e\x66\x68\xf1\x13\x7d\xf0\x7e\x81\x5e\x8e\xc8\x3f\x88\x05\xf1\x9d\x8c\xbc\x2a\xd9\x95\xc0\x57\x93\x18\x9a\xa3\x59\x23\x3e\x7e\xb6\xf9\x63\x3c\x42\xa1\xa7\x10\xd5\x2d\xe9\x77\x40\xa7\x29\x5e\xc9\xe4\x2c\x36\xa3\xfe\xd8\xe4\xe7\x23\x17\xd7\xac\x3d\x5b\x64\x31\x03\xbe\x96\xee\x4d\x8e\x25\x93\x36\x2a\x29\x2d\x0d\xba\x96\xfc\x27\x29\xe1\x1c\x6f\x74\xce\x14\x4c\x48\xfb\xe8\x5b\x79\xc6\x4e\xc3\xd7\x87\x1d\x52\x54\x80\x70\x4c\x0d\xbc\x55\x85\x8d\xb2\xb9\x85\x81\x7b\xfc\xc4\x4d\x42\xa6\x28\xfe\x8d\x13\x7d\xdb\x16\x16\xd3\x36\x04\xed\x6e\xcc\x1f\x4b\x15\xcc\x55\xba\x1b\xf9\xb7\x6c\x24\xe8\x45\x78\x29\xb6\x44\x69\xbf\xad\x56\xca\xb7\xfb\x24\x9d\xf2\xb5\xfd\x06\x84\xb3\x47\x2d\x67\xd0\x37\x50\x82\x7b\x6a\xe2\x9e\x4a\x90\xef\x8a\xae\x2d\xdf\x5b\x4c\x48\x22\xd7\xc9\xf9\xb5\xbe\x6e\xa8\x49\xb1\xc2\x8d\xd2\x0f\x1a\x35\x6c\x04\x30\x03\xfd\x6e\xce\xa2\xb9\x39\x6b\x44\x04\x95\x5b\x4a\x9b\x4e\xf9\xa6\x07\xfb\x4d\xc6\xe9\xef\x7e\x6c\xd2\x25\xc5\xbc\x79\x6f\xb2\xe8\x67\xdc\x9a\x6f\xb5\xad\x16\x0f\x6e\x1d\xe7\xe0\xf6\x52\x5c\x23\xf0\x93\x83\xb4\xa6\x57\x8e\x33\xbd\xda\x37\x5f\xdc\x63\x5a\xeb\xd3\xb6\x56\x10\x77\xca\x1d\x4f\xdc\x68\x61\x38\xfd\x4f\x72\x1a\xbd\x3e\xca\x45\xba\x22\x92\x3c\x7b\xc0\x35\x48\x7a\x67\x9d\x94\xa2\xd6\x82\x8e\x88\x2f\x69\xb5\x4e\x89\xdd\x47\x4f\xc2\x63\x1e\x93\x64\x8c\x1e\x25\xbe\x2b\x5d\x7b\x2b\xd5\x2e\x62\x7c\x7f\xb0\x18\x13\xf3\xfe\xc4\x2a\x07\x3d\xb9\xdf\x94\x79\xe0\xdf\xbc\xdd\x2e\xa3\x19\x6e\x8b\x7f\xfe\x0a\xca\x90\xf5\x94\xd0\x2f\x9a\xbc\x3d\x89\xcb\x2f\x85\x4b\xb8\x22\xae\xa6\x21\xe2\xba\xdd\xa8\x66\xae\x5c\x60\xfd\xf7\x6b\xec\x7b\xe6\xb6\x0b\x7b\x5e\x26\x91\xec\x7b\x7d\x4f\xe7\x32\x69\x4b\x93\x59\xe4\x94\x56\xcc\xec\xe9\x77\x1a\xed\x26\xb4\xc7\x00\x18\xee\x53\xa3\x05\x4d\xc9\x12\x55\x1f\x3f\xa6\xd6\x92\x47\x6d\xe4\x5a\x9b\xec\xec\x9e\x85\x1f\x89\xfa\x01\x06\xf8\x7a\x33\xb2\x2e\xdf\xa9\xde\xea\x71\x5b\x94\x33\x7c\x0f\x52\x5f\xb5\x00\xbd\x3e\xec\x96\xe7\xac\xe1\x1c\x0a\x03\xa9\x22\x4e\x28\x56\x1a\x3c\x23\xfd\x7c\x87\x58\x7c\xa2\xcf\x30\x48\x76\x00\x9c\xb1\xf6\x8e\xbc\x20\x46\x45\x7a\x69\xf6\xab\x1e\x89\xce\x51\xd7\xf2\x46\x24\xcf\x1e\x39\x14\xfd\x83\xe6\xec\xe0\x91\xb8\x26\x5e\xef\x54\xd5\xc6\xc6\x83\x43\xbf\xda\xcb\x23\xe6\xd8\x2e\xbd\x8d\x4f\x3e\x90\x29\x9e\x90\xba\xc0\x1f\xbe\x4a\x6b\xc7\x8f\xb2\x4b\xf2\xc7\xde\x6b\xc8\x85\xb3\x9b\x2b\x6b\x7d\xa0\xe3\x38\xfe\xfe\x7d\xa9\xaa\xf1\x2b\xd3\xea\x38\x7d\xdc\x40\x94\x53\x2a\x5d\x0e\x7d\x7e\x25\x62\x39\xa3\xa9\x3f\x2f\x2f\xf0\x0d\xc5\xee\x9c\x15\x49\x6a\x88\x59\x31\x8b\x71\xdb\xdb\xc7\x27\xd3\x18\x3c\x68\xea\x6a\x38\x4e\x80\xd2\xe9\xb2\xaa\x27\x12\x35\x67\x9a\x98\xcb\x3b\x69\x21\xda\x19\x69\x00\xb1\x48\x33\xc3\x3d\xa4\x98\x15\xad\x71\x6f\x2e\x29\x9c\x00\x83\x12\xe1\x85\xbe\xb8\xd7\x8b\xd3\x58\x06\x3f\x9f\xac\xef\xe8\xa3\x6a\x59\x38\xcb\x6d\x9c\x64\xfa\x05\x40\x3b\x2e\xb6\x92\x0b\x69\x65\x18\x2c\x2c\x1f\x4a\x48\xa7\x90\xa8\x5b\xc7\x09\xab\xcc\x44\x0b\x9a\xa5\xa5\xa1\x02\xdc\x5d\x18\x13\x53\x7c\xd8\xd0\x53\x79\x50\xff\xfe\x2c\x89\x09\x9a\x6e\x22\x58\x40\xb5\xae\xda\x58\xf2\x15\x29\x57\x74\xa1\x53\x83\xef\x5e\x16\xf1\x79\xe2\x50\x02\xfb\x1e\xa2\xaf\xca\xf0\x2a\x09\xb7\xca\x10\x96\x4f\xc9\x87\xf9\x93\x34\xa0\x90\x0a\x9f\x97\x32\xe5\xce\xf9\x93\x94\x1e\x76\x44\xc0\x6d\x5f\x9f\xa4\x77\x4e\xae\x95\x47\xb6\x45\xcd\x2c\xb3\x24\x8b\x9f\xd8\x4a\xb6\x6c\x9b\x82\x22\xae\xf1\x92\x15\xa2\x36\x92\xae\x92\x76\x8c\xa7\xce\x4c\x7e\x40\x57\xa5\xbe\xfe\x12\xca\x0a\xd3\x86\xa0\x98\xfd\x5f\xd6\xa2\x5b\xd3\x75\xa0\x87\xa2\xe8\xf2\x61\x43\x8d\xdd\xbe\x5a\x95\xf7\x02\xf6\xb7\x55\x72\x69\xc5\x30\x43\x7e\x65\x67\x17\x9f\xa4\x26\x91\xf4\x4a\x0b\x83\x37\x64\xe6\x4f\x86\x45\xfc\x44\x6f\x1d\x3b\x43\xe9\xa7\xf9\xd7\xfc\xab\x09\xf4\x6f\xf5\x60\xc7\xbb\x26\xe3\x83\xaf\x13\x5c\x71\x39\x51\xe0\x80\x0a\x14\xf4\x65\x49\xff\x0e\xa9\xc0\xd1\x83\x9c\x78\xbe\xe7\xfa\xe4\x51\x4e\x3c\x65\x1a\x86\x6f\x11\xc0\x0e\xbc\xd4\xd7\x08\x68\xd9\x61\x5f\xf0\x02\x43\x4d\xad\x75\x74\xff\xc5\x78\x3b\xa5\xfb\x04\xae\x75\x9b\xb7\x68\x59\x80\xe8\xb8\xf0\x64\x77\x28\x37\xf1\x94\xce\x13\x39\xc6\xc3\x87\x4d\x66\x7b\x44\xe6\x2a\x35\x85\x2b\xdf\xdd\xa7\xae\x5b\x5b\x2a\x1c\x6e\x07\xd1\xdc\xfd\x14\x36\xe8\x3e\xc7\x38\x08\xe7\x26\x2d\x4a\x48\x96\x9c\x4b\xbf\x46\x8c\x8f\xfa\x62\xbc\x86\xdd\xd5\xa6\xd1\x61\xc2\x19\x3b\xff\xd9\x52\xa8\xa5\x3c\xb1\x56\x70\xbb\x99\xb0\xae\xc3\xff\x4c\x18\x37\x71\x16\x4c\xca\xed\xda\xd6\xf8\xc4\x33\xff\xb3\xfd\xd9\x6b\x5d\xee\xf0\xa7\x9a\xec\x97\x8d\xc4\x74\xc1\xe3\xe3\x20\x75\xdb\x08\x7a\xa6\x08\x29\x1f\x25\xa6\x20\xd6\xcf\x16\xf9\x6c\x85\xd3\x9a\x25\xfa\xcd\x15\x89\xe5\x5f\xf4\xc9\xc4\xbe\xba\xdc\x6c\x12\x97\xe1\xcf\xc9\x36\x64\x5f\x68\x5e\xb7\xac\xfd\xbd\x6e\x3b\x5c\x97\x0e\xee\x9f\xd1\x09\xa2\xfc\x5e\xd3\x1e\x8c\x71\xc9\x9e\x38\x18\xf4\x05\x87\xa7\xe0\x2f\x5a\x92\x56\x7f\xf6\x8b\x62\xf6\x88\x01\x15\xf4\x6f\xdf\xd7\xab\xcf\x4a\xb3\x8c\x3e\x5d\x96\x3e\xbd\xf1\x79\x2d\x22\xf3\x88\xfe\xa1\xcf\xea\xe3\x9e\xdd\x7e\x95\x33\x98\xdc\xb3\xa0\xfa\x51\xfe\xdd\x26\xf7\xf8\xb5\xca\x77\x05\x54\xe2\xbe\xe3\xc4\xfd\x8f\xcd\x1f\x76\xe2\xcf\xc2\x86\xb1\x73\xc3\xab\xe2\xad\xee\x38\x6f\xf5\x73\x51\x93\x0f\xef\x0b\x0e\x4b\xf5\x53\x0a\x3f\xc9\x28\x0c\xb0\x27\xc7\xf9\xf6\xc2\xab\xab\x49\xbf\xea\xe3\x5e\xbe\xe0\xa3\x2b\x99\xf2\xfc\x57\xe5\xa2\x4a\x77\xe7\xe2\x58\x7f\x95\x75\xbd\xb5\xd4\x01\x00\xef\x09\x72\x93\x0d\xf3\xb0\x6c\x03\x97\x8c\x52\x69\x6b\x7f\x6a\xba\x6b\x06\xcd\xe2\x82\xc0\x3c\xb0\xbf\x9f\x87\xe1\x0b\x83\x92\xb7\xa2\xe1\xc8\x53\xbe\x7c\x23\x0a\x69\x5f\xb3\x17\x7b\x36\xc3\xb7\x75\xa6\xf2\x32\x7b\x53\x93\x39\xe0\x9b\xaf\xbb\xfe\xb6\xaa\xf8\xd9\xa1\x8c\x6a\x85\x5f\xd6\x2a\x6f\xf9\x67\xbf\x98\x2b\xe4\x54\xb2\x66\x71\x15\x7c\x5b\x82\x0c\x46\x5f\xce\xd4\x4e\x7f\xe9\x82\x7e\xd1\xb8\x5e\x31\x97\x86\xf2\x45\xf8\x6c\xa7\xb3\x85\x71\x41\x7e\x78\x71\x5f\x32\x96\xa5\x5c\xbe\x7c\xff\xb3\x0b\x1f\x1b\x8e\x33\x01\x70\x8e\xaa\x0b\xd2\xa2\x2f\xe9\x0a\xf2\x29\xfa\xf0\xc8\xb4\x9d\xf2\xc9\x8f\x2f\x20\x9d\xd3\x60\x88\x61\x75\xb6\xb0\x79\x56\xdd\x5d\xb5\x69\x62\x7e\x78\x0a\xd2\x2f\xfa\x20\x94\xf8\x1b\xca\xc7\xb1\xd1\x66\x07\xfa\x37\x11\xb8\xad\xfc\x46\x5e\xbf\xcc\x5e\xf5\x47\x4b\x71\x9f\x79\x0c\xa0\x80\xd6\x31\x06\xda\xcf\x5d\xf6\x55\x6b\xdf\xf3\x9d\xd4\x5f\xbf\xb9\x0a\x89\x2d\xd6\x80\xea\xb0\x9f\xe0\xb5\x6a\xb7\xb8\x31\xe3\xe7\xe3\x77\xb0\x5f\x0e\xbf\x9b\xd0\x6d\xe8\xb9\x8f\xe1\x65\x9b\x83\x69\x76\x56\xf5\x36\x2f\x09\x95\x97\x32\x19\xfd\x99\x1b\x1f\x61\x3a\xd6\xba\xd3\x57\x0d\x36\x25\x59\x8a\xb3\xe0\x05\xb9\x16\x68\xb6\x5e\xb4\x92\xf5\x37\x2d\xf1\x19\x35\x52\x62\x7f\x69\x6d\xec\x0f\x5a\x32\xae\x69\xe9\xdf\x5c\xa0\xb0\x9e\xd3\x2f\xba\xba\xf7\x7a\xb9\xa2\x07\x98\x7f\xfc\x8a\x26\xf3\x51\xd3\x6e\x93\x4e\x4f\x1b\x17\x78\xf2\xf5\x35\xab\x2d\x10\xf7\x16\x08\xa1\x88\x6c\x83\x71\x37\xd4\x8b\x70\xbb\x7f\x02\x2d\xff\x9b\xfe\xf9\x78\x0e\x9b\xa0\x83\xf3\xeb\xb7\x07\xba\x5c\xfd\xe1\x5b\x2a\xa3\xe0\x8e\xa7\x0d\x72\x6e\xd8\x43\xdb\xe5\x1d\x21\xf9\x83\xdf\x42\x66\xbc\x11\xdb\x59\x93\xc4\xa4\x0d\x13\xf4\xa4\xbc\x55\xf5\x76\xf6\x3d\x98\x2b\x21\x6d\x2e\xb3\x17\xf5\x8b\x25\xc7\x46\x1b\x86\x7e\xf1\x46\x08\x6d\x0e\xdc\xf3\x7e\x2c\xc7\xa6\xbd\xe2\xf6\x57\x21\x4f\x06\xf2\x2e\x11\xdf\xd4\x34\xd8\x58\xc0\xac\x24\xe9\x53\x4c\xe5\x58\x08\xd6\x93\x78\xc6\xda\x5a\x56\x33\xab\x79\xb5\xe7\xcc\x44\x60\x1a\x0b\x5f\x8e\xf9\x3b\x46\x2e\xa0\x74\x04\x9a\x15\x87\x1b\xbf\xbe\x50\xfa\x6d\xe9\x86\xb9\x65\x62\x7d\x25\x7c\x32\xb7\x36\xe0\xf0\xe3\x4e\x82\xc4\xb7\x5e\x70\x61\xed\x83\xc1\x9d\xc1\x3b\xdb\xd9\x09\x99\xc8\xa7\xa5\x38\x4e\x1b\x46\xbb\x7b\x62\x0b\x73\x6e\xe4\xcf\xe6\xd6\xe0\xb7\xd2\x72\xdc\x84\x4c\x33\xd6\x20\x38\x10\x9a\x23\xf3\xc9\x05\xbd\xa0\x5d\x2a\x7a\x99\x93\x62\xbe\xe3\x65\xa0\xbd\x2b\xae\xbd\x8e\xc0\xd5\x47\xa2\x3c\x1d\xca\xfb\xb4\x5d\xba\xc3\x1a\x85\xfe\xc1\xf4\xad\x36\x9e\x40\x3d\xdf\xca\x7d\xd0\x4b\xb9\x54\x4d\xb4\x2b\xaa\x89\x8e\x77\xb7\xab\x60\x52\xe8\x71\xaa\xcf\xb7\x6f\x42\x2f\x8a\x8b\xbe\x45\xae\xe8\xdb\xb8\xc8\x4a\xb9\xe2\x51\xfc\x4a\xbc\x78\x14\xa8\x60\x90\xdd\xc3\x49\x09\x66\x31\x92\x12\x70\x9f\xcf\x8b\x18\x9a\xcf\xde\xcc\xa6\x60\x27\xf6\xf6\x20\xa3\xdf\x9d\x5d\x09\x3f\x73\x32\xaa\xec\xd0\x3d\xcd\xa6\x8c\x26\x3e\x8a\xb7\x10\xda\xa5\x38\x3b\xa4\x2b\x91\xc7\x37\x2f\xed\x3c\xa1\xf0\xe4\xa3\xa8\x23\xba\x68\xa3\x26\x09\x72\xf5\xcb\x2e\x6c\xd6\x99\xdf\xc6\x14\x8d\x35\xd6\xdc\x4d\xdf\x6c\x9d\x91\x6c\xcc\x0d\xc4\x0d\xbd\x11\xa8\xad\xb7\x16\x9e\x28\x94\x4b\xfd\x02\x23\x2d\x16\x55\x96\xf1\x42\xf8\xdb\x00\x78\x8b\x2b\xa1\x72\x93\xd5\xc3\xae\x10\xb1\x1b\x95\x93\x92\x34\x37\xd6\x91\x67\x77\x9b\x19\x11\xf2\x64\x79\x51\x3a\x0d\x86\x3b\x1e\x25\x73\xb1\x18\x91\xd7\x81\xae\xd5\xe4\x1f\x78\x2c\x1f\xb2\xc4\xcc\xda\xf0\x52\x5f\x1f\x89\x97\x46\x8d\x89\x15\x0d\xb7\x2e\xee\x5c\x90\x1a\x91\x3c\x88\x2f\x32\x66\xc8\xc4\x42\x20\x63\x1e\xd9\x08\xda\x84\x4f\xd4\x90\x4f\x79\x3d\xb2\x4c\xf2\x95\x0c\xaa\x95\x2f\x67\x73\x05\x73\xe2\xa6\xfc\xfb\x4f\xd4\xe9\xfe\xc8\x32\xd2\xe9\x58\x6c\x1d\x12\xd7\x11\xd4\x2f\x1e\xc5\x66\x98\x91\x9e\xa5\x05\xf6\x6d\x81\xdd\x0b\x4c\x3c\xee\x2e\x2b\x72\x5b\x44\x43\x6e\x38\x14\x2b\xe3\x78\x2c\xe8\x6c\x3b\xec\x0a\xde\x0f\x88\x22\x0f\x47\x76\x81\xcd\x8c\xa1\x6c\x1c\x47\x1c\xd8\xf9\xb3\x2f\xaf\x7f\xdb\x38\xb4\xd9\xc4\x5f\x90\xf0\x4a\xd1\x40\xb2\x3d\x7b\xe2\xb3\x7c\xfc\x71\xdf\x1c\x6c\x36\xe1\xc8\x93\x9d\xb1\x45\x2d\x5e\x9e\xa7\xa6\xbd\x23\x02\xe6\xc1\x71\x1e\xf6\xfb\xdf\x43\xd8\x2a\x9d\xe6\xd4\x91\xb3\x43\x22\x20\xde\xec\x19\xea\x4c\xb3\x6f\xbb\xba\x2d\x35\xc2\xf5\xdd\x90\xfc\x31\x53\xc2\xdf\x69\x19\xd3\x66\x45\x6b\x2a\xbd\x16\xb7\x6a\x75\xec\xaf\x4d\xf3\xbd\x90\x67\xca\xf2\xac\xf3\xb1\x50\xb0\xed\xc6\x7f\x4b\xdc\x04\x2f\x37\xfa\x64\xae\x7c\xe6\xe8\xb2\xcf\x5a\xb1\x1b\x24\xf2\x5e\x53\x06\xfa\x82\x69\x02\xb3\x68\x01\xf2\x1d\x57\xfb\x72\x98\x1c\x42\xc0\x8a\x16\x9d\x76\x3c\xac\x7d\x0c\x2d\x39\x38\xfa\x8b\x71\x4b\x73\xc8\x55\x39\x00\x8b\xc3\x44\xf0\xa6\x88\x83\x2a\x9f\x20\xd4\xbf\x38\xd2\xde\xc0\xe8\xe7\x51\x7d\x5d\xba\x4a\xb5\x69\x37\xee\x79\x1b\xa2\x26\x15\xd0\x4c\xc4\x46\x1e\x8c\x60\x26\x4f\x7d\xb1\x64\x5e\x71\x2a\xde\xd9\x81\xf3\x56\x75\x9c\x55\x4d\xb3\x9d\xa6\xb8\x5d\xa9\xc5\xe7\xfc\xf4\x4f\x75\xce\xdd\xcd\x90\xde\xae\xbd\xa1\xb3\xa0\x4b\x30\x38\x5c\x7f\xae\x2c\x1d\x84\x13\x3b\xf3\xfa\xa0\xb5\xb2\x5b\xf9\xec\xb8\x51\x52\x68\xd9\x55\x5c\x3e\xb2\x67\xf2\xcc\x61\x0c\xfe\x40\x9e\x05\x6a\x23\x51\x9b\x74\xfa\x4e\x3f\x56\x93\x54\x59\x52\x9c\x8d\x44\x9f\xa8\x2e\x5e\xdb\x68\x99\xa7\x4c\xc6\x5e\x08\x21\xe9\x99\xe3\x77\xa8\xff\x1e\xf0\x0f\x45\x71\xf4\xa6\x45\xbd\x47\x27\x5c\xf1\xa2\x2b\xf4\xc1\xdf\x31\xaa\x19\x22\xf9\x23\x3b\x76\x6b\xfe\x8d\x7e\x74\x8c\x99\xf3\x94\xa4\x6b\x3e\xd1\x72\xc0\x62\xa4\x7c\xd5\x9b\x0d\x5b\xda\x02\x9b\xf7\x16\xc6\xb4\x92\xf0\x27\x94\xc7\x02\x8b\xfa\x03\x1e\xf6\x55\x12\x78\x47\xf3\x07\x3c\x3a\x89\xbc\x83\x7e\x67\xca\x91\xd8\x3b\x07\xc3\xd1\x3d\xa6\xb0\xe7\xf9\x78\x23\xd0\x7b\x45\x2d\xbe\xd1\x7e\x3f\xdf\x27\x1a\xd0\x18\x5f\x27\xe8\xef\x64\x5a\x58\x2b\xbd\x90\xcb\x87\x12\x22\xd6\x2c\x8c\xbe\x82\x36\xcc\x84\x6f\xd7\x20\xca\x31\x34\x76\x4e\x34\x56\xd8\x5f\xd2\xc1\x59\x23\x1c\x30\xa7\xe4\x26\x82\x09\x7c\xd9\xaf\xbe\x2a\xa9\x52\x1d\x4c\x80\x7c\xa7\x6e\x72\x67\x7f\x46\x01\xaf\x37\x75\x4f\x69\xbf\xff\x8c\x7a\x38\x57\x96\x24\x6c\x64\x9b\x45\xf7\x59\x57\x5e\xc7\x76\x46\xf7\x03\x9d\xba\xf6\xa0\xdd\x2b\x5f\x46\x4c\x17\xad\x98\x7d\x30\x7b\xd7\x5b\x47\xdf\x2b\x72\x58\xfa\xc5\x5b\x8a\xff\xfd\x36\x0b\x43\xb1\x4c\x96\x71\xeb\xff\x7f\xe4\xbd\x57\x77\xdb\xbc\x12\x2e\xfc\x83\xe4\xb5\xd4\xdb\x25\x49\x51\x8c\x22\x3b\x2e\xb2\xe3\x38\x77\x49\x2c\xab\xf7\xae\x5f\xff\x2d\xce\x3c\x03\x0c\x48\xca\x76\xde\xfd\x9e\x7d\xf6\x59\xdf\x4d\x62\xb1\x80\xc0\x60\x30\xbd\x14\x55\x6f\x13\x49\x79\xea\x2b\xa2\x89\x62\xf3\xa9\x70\x16\x4d\x35\xde\x9c\x63\x95\x8a\xf0\x48\x84\xea\x24\xae\x99\x6e\x06\x00\xda\x44\xac\xfe\xe2\x04\xae\xeb\xe4\xed\xb9\xfb\x2d\xb3\x32\xf9\xe0\x33\x65\xce\xd1\x9f\xf1\x65\xa7\x04\x69\x82\xb5\xf3\xc5\x75\x78\xf9\xa2\xe5\xa7\xf1\x9a\x32\x99\xac\xbd\xc8\xec\x7d\x75\x6b\x15\x4d\xa7\x06\x5d\x80\xa9\xc5\x2c\x88\x14\x92\xdb\xc4\x6d\x9e\xae\xad\xe6\xa0\x23\xc7\xdf\x14\xdc\x6d\x04\xbf\xfe\x77\xd7\xb7\x87\x99\xc5\xe0\x37\x2d\x28\x82\xe5\x58\x0c\x9d\x3f\x26\x09\x98\x75\xe3\x72\xa2\xf9\x14\xa9\x87\xfc\xed\xe2\x5b\x4a\x06\x2d\xbd\xe9\xfe\x2c\xf4\x4f\x59\xb7\xf8\x19\xbc\x43\x2d\x65\x3e\x66\xba\x48\x58\x16\x75\xfa\x4d\xe4\x9e\xf6\xe0\xeb\xd5\x8d\x17\xd6\x3b\xdb\xf8\x78\xb5\x17\x31\xd5\x08\xab\x5f\x3d\xfa\xf1\x95\x7e\xf0\x90\xb7\x89\xef\x6c\x4d\x28\x97\xee\x0e\x74\xef\xb5\x0b\x31\x86\x86\x63\x68\x3d\xf7\x6e\xed\xa1\xe4\xca\x5c\xae\x26\xcd\xa7\xbb\xa6\xdb\x6f\xfe\x97\x0d\x3a\x43\xbf\x39\x7a\x66\x81\x8a\x78\x24\xa4\x95\x90\x9a\x0c\xf3\x87\x78\x9c\xe3\x1f\x5d\xcb\x69\x57\xfe\x35\xd5\x16\x62\x11\xb6\xce\xf7\x87\xcf\x59\x44\x85\xfe\x13\xb8\xd3\x63\x12\x14\xed\xa6\x17\x3b\x5e\x31\x80\x16\xf1\xde\xcd\xc7\xc4\xe6\xb8\xa1\x35\x15\xe6\xd2\x55\xa6\x84\x85\xbe\xf1\x3b\x13\x91\x7b\x2d\xf2\x75\xe9\x8c\x47\x94\x91\x3d\xb4\x08\xe6\x9f\x7c\xb7\xde\xc3\x6a\x2a\xf5\xb9\xd2\xb3\xde\xb1\xe9\x93\x50\x59\x85\x66\x3a\xb0\xd1\xcc\xd0\x75\x37\x98\xf5\x53\x4e\x4c\x5f\xdf\xca\x18\x8b\xe1\x73\xc3\x7b\xfe\x75\xab\x85\xa1\x1b\xb0\xb3\x44\x06\xe7\x0c\xba\x20\xc9\x52\x9c\x2e\xfa\xe6\x68\x60\x68\x4c\x35\x1c\x58\xb2\x75\x23\x36\xd3\xa9\xd4\xcb\x55\xc8\x23\x65\xec\x54\xe5\xd7\xc4\x25\xf7\x29\x63\xb2\xc4\x25\x9e\x15\x0e\xd5\xdc\x09\x39\xb0\xe7\xea\x9d\xa1\x88\xdb\xa2\xf8\x55\x57\x29\x37\x9d\xb4\x96\x40\x41\x5e\x0c\xbd\xa5\xdb\xa0\x9f\xd8\xa4\xb4\xe4\xea\x7a\xc1\x94\xab\x1c\x30\x16\xae\x07\x29\x55\x2b\xb3\xa4\x6a\x7a\xba\x98\x5b\xc4\x4b\x0e\xaa\x5c\xd8\x69\x83\xf1\xb6\x89\xc4\x9e\x34\x52\x97\x6c\x64\x68\x67\xfd\xd5\x1e\x05\x0b\x0c\x68\xed\x68\xef\x77\x56\xcd\xb3\xf7\x41\xe2\xf9\x9d\x63\x14\x76\x4a\x78\x09\x2e\x59\xde\x66\x03\x52\x2f\x69\x2b\x28\xef\x9e\x08\x3f\x84\xa3\xfc\x9d\xab\x56\xcb\xd1\xda\x0c\x8f\xdc\x4a\xc9\xc1\x2b\xbf\x89\xd8\x99\x17\xcf\xfb\xed\x94\xb5\x62\x6e\xbf\x63\xae\x5a\x6c\x5d\xe0\x93\xd6\xdc\x33\x56\x0e\x6e\x91\x25\x39\x1f\xde\x4a\x50\x91\xd3\xd2\x41\x55\xdb\x16\x59\xd3\x29\xba\x7d\x93\xd5\x27\x30\x18\x0f\x62\x65\xb6\xc7\x15\x1f\x0c\x8a\x7a\x16\xd9\x47\x8c\x82\xfb\x54\x63\x8d\x8e\x95\xd9\x36\x43\x17\x47\x40\x24\x26\x24\xb4\xf5\xcb\xcf\xa0\xb6\x75\xc2\x31\x13\x6f\xf8\x08\x98\xb2\x7a\x95\xef\xb9\x57\x8b\x6c\x82\x95\xd0\x3e\xb9\xfc\x4d\x3f\x6c\xae\x72\x3d\x16\x96\x9f\x4e\x40\xd8\xb3\x7b\x10\x2c\xb0\x0e\x03\xdf\x9d\x57\x42\xb2\xad\x77\x35\x89\x2f\x0c\x38\xc2\x62\xc9\xac\x5c\xc8\xb4\x9a\xdb\xa0\xa5\x52\xe7\xf0\x8d\x15\x20\xb2\xd6\xc7\xc5\xd3\xc4\x1d\x75\xca\x78\x46\xcc\xcd\x76\x78\x18\xa2\x9c\x6e\xde\x9c\x55\xe6\xcd\x22\x97\x3b\xe4\x01\xa5\xa1\xb3\x47\x7b\xe2\xf4\xbe\x8e\x17\x6c\x51\x1d\x09\x63\x97\x53\x3b\x1c\xd9\x7c\xbb\x8d\x16\xa2\xb1\xaf\xe7\x67\x40\x1f\xdd\xfd\xde\xc7\x82\xf3\x33\x0e\xd6\xb9\xf3\x7f\x68\xfb\x51\xaf\x19\xcb\xa9\x1a\xb9\x3f\xbd\xf3\xe7\x67\x88\x98\x95\x67\x67\xe9\xb2\xd7\x9c\x80\x34\x50\x6a\x7a\x0d\x3f\xea\xf8\x3f\x91\x9b\xa6\xc5\xaf\x6e\xa6\xa4\x6e\xfe\x0c\x8e\x4f\x5a\x3b\xb2\x1a\x67\x22\x8f\xa0\x03\x71\x62\xe2\x33\x29\x18\xfa\x88\xb7\x05\x94\xcf\x6f\x9a\xfb\xb3\xed\xa1\x87\x64\x25\xf6\x96\xbc\xaa\xf5\x97\xc7\xe8\x0c\x01\x57\x58\x99\x15\x60\x54\xf8\x67\x57\x4d\x51\xd5\x83\x38\xa4\x6c\x1c\xc0\x00\x9b\x84\x12\x4f\x1f\x0e\xe7\xa9\x90\x42\x43\xe9\x67\x7c\xa3\xee\x48\x0b\x57\x2a\x26\x0c\x23\x47\xdc\xa1\x37\xe2\x92\x77\xa1\xe3\x34\x23\x13\xad\xee\x06\xbd\x0e\xf5\x67\x28\x02\x10\x12\x5e\x93\x95\x51\x04\xfc\x2c\x54\x04\x92\xfb\xb9\x5b\x9c\x60\x36\x13\xcc\x46\xbe\x19\x0a\xa6\x28\xb5\x33\xa2\xf9\xc0\xc3\x37\x26\x3a\x18\x4e\x83\xc4\x21\x09\x8d\x87\xaf\xa2\x5a\x89\xb3\x17\x73\x1c\xa1\xcf\xe1\x68\xcc\x88\x77\x04\xa2\x49\x4b\xc3\x31\xe3\x5b\x11\xc3\xa1\xa9\x21\x82\x06\xe7\x4f\x1a\x78\x78\x25\xc7\x6f\x34\xb8\x23\xfa\xc9\x5f\xe2\xd5\xa5\xe9\x1b\x4c\x36\x9d\x50\x93\x30\xd4\xcd\xc3\x5c\x4a\x4c\xa7\xa6\xa1\x3e\xe6\x44\x64\xe0\x49\xc4\x73\x85\x1f\xec\x6d\x67\x8f\x2b\xfa\x38\xe2\x65\x18\x2e\xd9\x21\x37\x20\x9e\x51\xfd\x82\xf7\x1a\x63\x13\xbb\x46\xba\xd9\x9b\x91\xd4\x98\x39\x0f\x95\xec\x3c\xb1\xec\x5a\x2e\x8f\x50\x1c\xfd\x1a\x62\x3e\x7d\x6e\x8c\x2e\x92\x3f\x40\x43\x76\xdc\xd4\x80\xaf\x47\x6b\xae\xab\x39\x42\xcc\xeb\x71\x78\x21\xac\xc3\x70\x03\x2c\x66\x32\x61\x76\x3c\x9e\xfa\xd9\x49\x7f\x58\x91\x3c\x77\x7e\xa5\xe4\x3f\x7a\x78\xed\x9f\xf9\x60\x7f\xe7\x99\x45\x72\x10\x2e\x7d\xf9\x69\xa6\xaa\x4b\xe8\xfd\x38\x5d\xc4\x28\x51\xba\x4b\xc0\xf2\xa2\x30\x13\xb6\xc2\xc5\x50\x3a\x07\xd6\x4a\x9c\x0b\x53\x05\x02\x10\x6e\x35\xf4\x6d\xf0\xf8\x72\x92\x5e\x7c\x2c\x58\xf4\x9d\xab\xf3\x57\x9b\x49\x89\x63\x51\xc1\xd7\xab\x43\xcd\x0b\x4e\x43\xd5\x86\xff\x2c\x01\xd4\xb8\x78\xed\xec\x47\x83\x4b\x83\x51\xa3\x92\x2f\xd3\xeb\xfc\xd0\x38\x68\xe3\x83\xb5\x6f\xdb\xb4\xff\xd9\x94\x8f\x0b\x97\x18\xc6\x84\x73\x63\x5f\xfb\xec\x58\xbf\x1c\x3a\x87\x03\x07\xe7\xfc\x5d\xb1\xdb\xf8\xa4\xc4\x63\x35\x65\x16\x43\x13\x38\xc9\xcc\x43\x6e\xc4\xfc\x32\x16\x02\xf7\xea\xb7\xf1\x05\x0e\x31\x89\x18\xb9\xa5\xd0\x15\xc7\x63\x41\xca\x34\x85\xc0\xf2\x1f\x4f\x29\x26\xe1\x28\xe6\x2f\x8e\x89\xa1\xe9\x1c\x0a\x96\x2a\x7a\xe6\x88\x67\x3f\x1c\xd9\xdf\x7f\xb0\x95\x9d\xf3\x24\x71\x2c\x36\x1c\x79\xd6\x67\x13\x0f\x19\xa9\xf0\xc8\x86\x02\xdf\x7f\xad\x58\xdd\x5b\xb3\xb9\x66\xc3\x6a\xf2\xbd\x8a\x0f\xed\x78\xc1\xf2\xb5\x4c\x1f\x6b\x1d\x5e\x07\x97\x49\x4f\x70\x66\x75\x74\x09\x1a\xea\x3e\x7a\x52\x88\xea\x12\xb5\xe9\x8b\x43\xf9\xe6\x38\xd9\x42\x20\xd9\x00\x99\x3c\xee\xeb\x1f\x09\xe0\xb7\x1d\xb2\xb0\xf8\x21\x99\xfa\xfc\xdc\x4c\x7e\x73\xb0\x12\x69\xbe\xb1\x18\x62\xf0\xab\xf8\x6a\xd5\xbf\xdd\x83\x15\x9e\x9b\x08\x3c\xb0\x9a\x28\x9d\xab\x17\xdd\xfd\xc5\x38\x51\x02\x7d\xd5\x74\xbb\x5c\x8f\x52\xaa\xda\x6a\xe4\x23\x19\x8a\x9f\xbd\xe5\xaa\xa2\x40\x42\x82\x8d\x2f\xaa\x60\xd0\x7c\xd9\x22\xc0\x71\x37\x50\x25\xcc\xcf\x23\xb7\x82\x9b\xd1\x90\xb5\xd4\x0e\x65\x09\xac\x9e\xcb\x74\xdc\x58\xcc\xe4\xf0\x04\xa1\xe4\x27\xfe\xb5\x0e\x12\xc5\xa9\x8d\x0a\xb7\x8b\x2c\xd3\x66\x66\x31\xa3\xc6\x33\xe3\x2f\xcc\x11\x76\x4c\xeb\xc0\x0a\xca\x1c\x2b\x5b\x0a\xe5\x17\xf9\x6d\xa3\xc4\x23\xf1\xc5\x12\xb7\xbe\x1d\x04\x4a\xb8\x68\xf0\xe6\x9c\x75\xe7\x96\x9f\x06\x78\x54\x3d\x6f\xe8\x84\x3b\xce\x86\x0c\x9c\x22\xf8\x7b\x61\xcc\xbf\x7f\x1b\x09\x34\x42\x53\x0d\x2f\x12\x0d\xb6\xf8\x16\xa3\xf7\x1e\xa5\xbf\x70\xf1\x98\x84\x36\x3a\x80\x19\x11\x23\x17\x68\x6d\xe2\xf2\x73\x03\x5d\x10\xd5\x2c\xc2\x8a\x73\x18\x86\xc9\x89\x89\x22\xa7\xb0\xfe\x17\x7b\x58\x8a\xb8\xcf\xc8\xc1\x30\x3d\xf0\xfd\x23\x8b\xeb\xa7\x97\xab\x3f\x5e\x80\x9a\x28\x60\x8f\x78\xc9\x9a\xde\x31\x24\xfa\xed\xd0\x91\xbb\x39\xbd\xe0\x95\x8e\x6d\xb6\x67\xe4\x15\xfe\x53\xaa\xc9\xb1\x8b\xdc\x64\x08\xab\x40\x88\xc0\x1a\x38\xcf\x3f\x33\xa2\xa8\x41\xd7\x10\x30\xc1\xf7\xcf\xb7\x36\x7e\x5a\xb0\x9e\x90\x92\x86\xa2\x4e\x23\x3f\xf9\xf0\xd3\xd9\xcc\x1c\x96\xcf\x33\x86\x65\x73\x9e\x0c\xbb\x6b\x79\xde\xae\xd5\xf0\x2d\x23\x3c\xfc\x90\xcf\xc4\x43\x94\x33\x07\x5c\xf9\x5e\x50\xef\x63\x40\x2e\x35\x2a\x03\x9e\x5a\x9e\x77\x72\x06\x3c\xfd\xd0\x59\xe8\xd5\xcc\x01\xb9\x0c\x1e\x06\xe4\x98\x67\x19\xb0\xd0\xf2\xbc\x82\x19\x90\x12\x35\x7e\x88\x43\x3e\x18\x3e\x69\x6f\xf9\xd8\x35\xb2\x64\xe7\x69\x1a\x09\xa2\x02\xaa\xb0\xe4\x9c\x29\xb8\x72\x2b\x13\x5f\x59\xf6\x6d\xd7\x69\xf2\x38\x83\x08\x54\x26\xbe\xf2\x03\xd8\xce\x96\xd6\xde\x21\x96\xc3\x6c\x1f\xad\x2a\xc6\xc8\x1a\xc5\x1f\xeb\x53\x46\x37\x7a\x39\xda\x63\x9a\xcd\x84\x21\xd3\x1c\x6b\xa3\x88\x58\x98\xad\xda\x60\x22\x20\xc3\xe2\x7d\x12\xf7\xd6\xdc\xd3\xa4\xc0\x41\x23\x65\x0e\xc1\xe7\xaa\x3e\xc9\xda\x27\x61\x76\x03\x54\xba\x50\x7a\x33\xf3\x0e\x8d\x87\x2e\x05\x68\x6b\xee\x91\xf2\xde\x23\xdc\x8f\x74\x9b\xba\xe3\xc4\xaa\x36\x62\x7d\x42\x32\xba\x3c\x1f\xda\xee\x03\x7b\xe7\x69\x16\x92\x13\x4f\x3b\xfd\xe8\xce\x78\x7e\x11\xb2\xe6\x72\xeb\x79\x2f\xa2\xae\x7f\x75\x10\x06\x15\x2a\x1b\x7e\xe2\xd3\x90\x4e\x28\x64\x66\xac\xdc\x35\x20\xa3\x1b\x50\xd7\xe3\xc0\x4f\xac\x71\xe2\x7b\xc1\xf4\xfa\xea\xd6\x6b\x2d\x6e\xc4\xfc\x58\x7b\xb3\xbc\xa6\x0c\x60\xc7\xb2\x69\xbc\x05\x6d\xe3\x7a\x88\xff\x4f\xc2\x6a\x99\xb8\x2e\x13\x63\x4e\x5a\x97\x0e\x32\xe4\x55\x7d\x69\x1b\x43\xc5\x03\x0a\x8f\xf3\x71\x98\xf8\xa2\xfb\x5e\xd0\x66\x2b\xbd\x2b\xd3\x4b\x52\x54\xfa\x0d\xef\xf6\x6f\xe6\x2f\x7d\x6a\xdd\xfc\xb6\x4c\xaa\x9a\x91\xad\x3d\x87\x60\x4b\x0e\x46\x29\x92\xbb\xf7\x59\x25\xef\x0a\xf8\xf7\x8c\x00\x7f\x1a\x7e\xe2\xf9\xf8\x78\x94\x58\xf5\x3e\xf3\x7f\xd2\x6e\xcb\xfe\xcd\x3a\x1a\xb2\x89\x69\x0d\x5f\x76\xdc\xa6\x74\xf8\x11\x01\x00\xee\xc5\xd7\x6b\x58\x7d\x7d\xa2\x1f\x10\xd9\x45\x07\x98\x4d\x38\x0d\xf0\x17\x85\xf3\x3c\xc8\x11\xf3\x9e\x54\xef\x4d\x1b\xb4\x3c\x1d\x3b\xea\x53\x65\x40\x94\xa2\xb7\x61\x25\xf2\x5e\xf1\xaa\xb1\xb2\x4b\x0a\x89\x89\x86\x2f\x33\xa6\x93\xd1\x7c\xa2\x2c\xfc\xed\x26\x99\x13\x5f\xb6\xee\xfa\xe2\x7f\x72\x13\xed\x47\x84\xfc\x3b\x66\x84\xa9\xa1\xe6\xc4\x9f\x24\x79\x54\xee\xa2\xd1\x50\xf7\xd1\xd3\xff\xb2\x68\xd9\x32\x0b\x8e\xf2\x63\x25\x98\x5e\x25\x0b\x37\xd8\x75\x08\x41\xea\x5a\x19\x0f\xe0\x58\x4c\x19\xdf\x97\x53\x38\x17\xa0\x3e\xad\xf1\x7b\x33\xe5\x13\xb5\x9d\x5e\x7e\xfe\xd6\x71\x94\xc9\x9b\x3b\xe4\x6a\x32\x4e\xaa\x8b\x14\x77\x30\x57\x99\x60\x28\x90\x20\xf7\x18\x1f\xf1\xc2\x64\xaa\xd8\xcc\x9b\xe2\xe4\xcb\x89\x7d\xc0\xe6\x94\xd9\x85\x2a\xc4\x1a\x2b\xa7\xce\x18\xaf\x8d\xa6\xca\x0f\x37\x9e\x5a\xdc\xe8\xba\x90\xbb\xf1\xc2\xf1\x63\x25\xe4\xce\xc4\x16\x01\x6e\x6c\xf9\x5c\x39\xb4\x14\xda\xf6\x84\x64\x46\x96\x2b\xb6\x93\x24\x05\x8f\xa7\x56\xc3\x57\xaa\x6c\x49\x30\xa6\x38\xb7\x9e\x6b\x57\xf0\x17\x45\x75\xa6\x4a\xdd\xc6\x29\x50\x85\x6c\x3c\x79\x86\x44\xe1\xa9\xaf\x25\x1c\x15\xd2\x96\x15\x75\xeb\x06\x8e\xaa\x87\xb3\x03\xe4\x54\xd8\x6d\xf6\x03\x2a\x1c\x2f\x3b\xf0\x2e\xf9\x40\x82\x01\x1f\xa7\x69\xdb\xf0\xe7\x63\x1e\x6e\xa4\xbb\x12\x02\x1f\x04\x16\xc2\x7a\x9c\xc0\x85\x90\x02\x2e\x38\x7f\xea\x34\x4b\x02\x0d\x32\xf1\xef\x2c\xe9\x88\xf5\x1f\x92\x4a\x50\xc2\x18\xb2\x51\xa3\xe5\x79\x0d\x47\x36\x62\x93\x07\x98\xfc\x34\xc3\x26\xdd\x20\x57\x4a\xb9\x25\x55\xb8\xd9\x7e\x50\x62\x15\xa2\xd2\x52\x32\x6c\x31\xf5\x7a\x8c\x4f\x0b\x55\x4d\x78\xc2\xd9\x48\x5b\xe6\xa6\x3b\x88\x06\x46\x7d\x30\x0a\x50\x65\xaa\x08\x47\x76\x00\x46\x13\x8f\x38\x95\xd1\x90\xf6\x8e\x5b\x79\xfe\x9f\x63\x54\xb8\xcb\xda\x63\x89\x29\xea\x9c\x39\xe4\x4b\xd2\xfd\x32\x90\x42\x73\xb3\x34\xe1\x14\xcf\x40\xa8\x9c\x62\x66\xc6\xa3\xb9\xc9\xad\x93\xda\x66\xbc\xee\x6f\x2a\x88\x8b\x1b\x51\x1a\xe9\x3a\x7e\xef\x4e\xd3\x4f\x13\x05\x86\xdc\x83\x99\xfe\xba\xe9\xf9\x14\x36\x58\x6f\x1e\x49\xb6\x95\x71\x89\xd7\xb1\x01\xa5\xa9\xf0\x7d\x7d\xd5\xd6\x5a\x23\xf5\x94\xa3\xed\x6a\x5f\x05\x7c\x06\xa5\x26\x08\xc0\x33\x66\x1f\xae\x10\x34\xf8\xad\xe1\x8e\x00\x7e\xfd\x2c\x6a\x6a\x92\x6d\x90\x9f\x5d\xcf\xb2\x7c\x1c\x4c\xb0\x91\x6b\xc8\xf5\xf0\x60\xba\xda\x33\x6b\x7a\xd8\x80\x45\x55\x19\x00\x4f\x9b\xb9\xaf\x21\xd7\xb6\xb8\x20\x20\xc2\x38\x5d\x95\xcc\xbe\x77\xa0\x27\xbe\x39\x05\x4a\xfa\xf3\xc5\x24\x42\xb1\xfa\x09\xc8\xb5\xad\x87\x03\x05\xe9\xb3\x10\xe2\xc9\x56\x7e\x74\xde\xce\xcf\x94\xf9\xe0\x34\xc7\x11\x7f\x67\x84\xc8\xba\x27\x2f\x0c\xd6\xca\x87\x8b\x6b\xa6\xcf\x0c\x5b\xa9\xdb\x4a\x7e\x85\xae\xd5\x55\x39\xb0\x3e\x3c\x1b\xf5\xb5\xef\x85\x45\xf6\xd0\x97\x94\xce\x9c\x67\xb3\x4b\x83\x07\x9b\xf8\x70\xd9\x22\x1f\xe3\xcf\xdf\x0b\xfb\x60\x00\x33\x2c\x6f\x2e\x81\xf1\xd7\xcc\xd7\x38\xff\x90\xe5\xb1\x12\xd7\x02\x43\xb3\xe9\xd2\xb5\x43\x21\x0d\x28\xea\x9d\xd4\x66\xb1\xe4\x1b\x52\x47\x73\xa3\xc4\xa0\xfe\xc9\xc8\xb7\x85\x57\xd0\x98\x62\xa4\xa5\x1e\x71\x5d\x48\x64\xe2\x58\x09\x06\x5b\x08\x3a\x8b\xb1\xa2\xed\x63\x5c\xcc\x61\x64\xf9\x6d\xd6\x60\xba\x8d\xa2\x07\x77\xad\xa3\xbb\x8d\xe6\x3b\x98\xa8\x21\xf9\x0f\xb8\x10\x0f\x86\x42\xae\x63\x15\xcf\xb2\x1e\x6b\x06\xcb\xff\xce\x5b\x5a\x00\xa3\x09\x97\x80\x5b\x47\x2c\x04\x3e\x1f\xec\xc8\x4e\x67\x0b\x6c\x4d\x3f\x21\x6c\x50\xa4\x82\xde\xec\xa7\x24\x8d\xd1\x74\x93\xe7\xc9\x8d\xee\xf9\xcc\x51\xac\xf5\x8d\x5a\x0c\xba\xa2\x4f\xbf\x59\xb2\xc9\x03\xe5\xd9\x31\x70\x5a\xc2\x00\x34\xc9\xb0\xe1\x2c\x54\xab\xb5\x7c\x20\xa2\x51\xb0\x7e\xd3\x06\x1d\xd5\x0c\x14\x16\xc0\x18\x7e\xe0\x23\xfc\x27\x41\x35\x51\x7e\x68\x3e\x4f\xb3\x66\xd7\x1c\x4a\xdf\x43\x76\xe1\x62\x21\x46\xc1\xe5\xc2\x4f\x5e\xe1\x62\x1f\x62\xd3\x06\xc8\x9b\x5c\x10\xfd\xc6\xe1\xfa\x4c\xb0\x57\x73\xeb\xdb\xba\x8d\x35\xaa\x60\xce\xb6\x5f\x95\xa3\x1a\xe8\x3f\x55\x82\x40\xa2\xb2\x16\x8a\xa5\xa8\x64\xd3\x49\x5b\x9b\x41\x3f\xfc\xd3\xa4\x44\xab\x3f\xab\x2d\xfb\x44\xad\x65\xf3\x6b\xd0\x36\x35\x39\x48\x43\x2c\x47\x3c\xa5\x5f\x99\x0f\x05\x96\x48\x2c\x17\x29\x33\x6c\x0c\x4c\xc6\x27\x01\xef\x6a\xc1\x16\xff\x35\x7e\x4f\x38\x2a\x0b\x85\x8a\x37\x0b\x48\xf2\x89\xa7\x43\x6b\xec\xdd\x2f\x34\xe9\x54\x7d\xb4\xed\x57\x77\x18\x85\xa3\x5c\x96\xbe\x19\x3a\x92\xd0\xb6\xdf\x4c\x4b\xb6\x73\xb0\xca\x39\x9d\xee\xfe\x17\x3b\xe8\x71\x6e\x64\x31\xd2\xbb\x5a\xfa\xc1\xfb\xf2\x42\x19\x4d\x0f\x0b\x9d\x51\x0f\x25\xc9\xcc\xf7\xf8\xf1\x7c\x0f\x34\xdf\xa0\xcc\xaa\xfe\x11\x13\xde\x65\x4c\x78\x8f\x59\x55\xd2\x13\x3e\x67\x4e\x18\x0f\xde\x57\xf5\x84\x4f\xce\x84\x6f\x6c\x9b\x1e\x16\xc5\xc6\x6d\x8b\x75\xcb\x6b\x1b\xc4\xbf\x7a\xd0\x58\xa5\x90\xc1\x20\x52\xa0\xab\xdb\x66\xe3\xa0\xf3\xa7\xf1\xfb\x07\xd6\x64\xe6\x18\x3e\x4d\x6b\x86\xf5\x9b\x28\x4b\x7d\xcf\xeb\xab\xe2\x10\xfc\x48\x0c\x80\xd9\x9b\x7d\x7c\xfb\xf1\xe3\x8b\x37\x7b\x75\xff\xe6\x96\xf7\xd0\x2f\xd0\x5f\x8c\xc3\x2b\xf5\xca\x51\xbf\x12\x8c\x87\xe9\x77\xf8\x36\x6c\x21\x2c\xa6\xf3\x0c\x11\x60\x76\x7e\xfb\x98\xbf\x86\x2a\x0d\xbb\x63\x52\x92\x39\xdd\x09\xa4\x92\xa7\x86\xe0\x52\x44\x10\x50\x53\x73\xdc\x8f\x01\xa0\x52\xde\x16\x56\x4b\xa7\xb0\xb3\x36\xc9\x51\xf7\x92\x15\x33\x83\xe3\x0e\x62\x4a\x0e\xbf\xa7\x53\x1f\x96\x41\x83\xba\xa4\x17\xf1\xc0\x08\x1a\x46\x81\xdb\xed\x35\x78\x17\x71\xfe\x50\x3f\xb1\xe3\x36\x48\x60\x1a\xab\x19\x33\x49\x11\x10\x37\xf2\x9b\x54\xe8\xa7\x29\x55\x1f\x40\xc4\x2f\x07\x2a\x0c\x88\x80\x35\x03\x1d\x5f\x02\x60\x25\x67\x3e\x98\xb3\xc1\x1b\xed\x67\x86\x48\xf6\xbf\xf7\xbc\x86\x4f\x86\xf7\x47\xe9\x02\x41\x64\xe2\x97\x62\x85\xd9\xc5\xd6\x6f\xed\xaf\xf8\xef\x67\x31\x6f\x1a\x6b\x00\x9b\xf3\xe7\xda\xe3\x6c\xee\x39\x91\xda\x7f\xbc\xe0\xcc\x5b\xc2\x9b\x6a\x49\x4b\x14\x0b\x49\x72\x8e\x17\x22\xbe\x3f\xc7\xcb\x12\xed\x7f\x2a\xba\x7b\x7c\x75\xbc\xc2\xa9\x7e\x21\x3a\x11\xaf\xff\x97\x8b\x15\x1d\xca\x83\xd1\xe3\x0d\x17\xee\xf8\x1d\xee\xac\x39\x73\xc7\xe7\x19\xcf\x65\xfc\x67\xcf\x1b\x10\xc3\xdf\x5e\xa3\x1a\x46\x7c\x8a\x81\x6e\x88\x91\x61\xa9\x6d\xf8\x8a\xf9\x99\xa7\x96\x4e\x1f\x07\x3c\x36\x67\x69\x26\x82\x47\x8c\xa9\x3f\x02\x2c\x9e\x24\xbe\xa2\x10\x24\x84\x1b\xaa\x76\x84\x42\xa7\xaa\x95\x3e\x0c\xab\x07\x26\x20\xa8\x12\xdd\x33\x50\x8d\x4f\xcb\x90\xd7\x25\x45\x4e\xf6\xbe\xf3\xc1\x2d\x47\xd1\xee\x93\x26\xca\x0b\xdf\x43\xdb\xd8\x12\xa7\x90\xa1\x5f\x62\xd3\x9e\x20\x3a\x9e\x0c\xe6\x1b\x4e\x8f\x24\x3a\xfd\xad\x25\x80\x88\x95\xce\x21\x0f\x08\x70\x06\x40\xc1\x07\x78\xf8\x00\xb4\x81\xed\x1e\x79\xc3\x62\xe0\xd0\xd7\xe1\x0e\x13\xdf\x09\x78\x5c\x01\xc5\x24\x1e\x75\x46\x66\x38\x32\xea\x7f\x9d\xdb\xe8\x22\x91\x5d\x76\xa1\x5e\x76\x76\x10\x9d\x44\x59\x75\xa5\xba\x0a\x36\x7d\x2e\x36\x3f\x82\x98\x8a\x57\x8d\x6c\x6f\x0f\xfb\x12\x3e\x3e\x6b\x01\xe5\x08\x52\x8c\x09\x4d\xfe\x6f\xaf\x5e\x99\xa1\xbb\xbf\x31\xd7\xa1\x46\x28\x72\x86\x8e\x2d\x1d\x2e\xb5\xb8\xb7\x21\xbd\xe5\x47\x6a\x14\xf7\x96\x3d\x2b\xbc\xe0\x7e\xf7\x08\xb0\x58\xc5\x3a\xfe\x36\x19\xb5\xbf\x1e\x4c\xa7\xce\xd0\x36\x0f\x88\x6c\xd6\x12\xaa\xae\xd3\x7e\xae\x88\xcf\x8e\xfd\xaf\x7a\xfb\x2a\x54\x76\x6a\xe7\x1f\xef\xe1\xea\x8b\x77\x03\x5f\xdc\x01\xaf\x74\x04\xa3\x89\xe6\x4b\x47\x30\x02\x70\xf6\xb3\x8b\x8c\xcf\x02\xa7\x0e\x99\x9f\x05\x09\x66\xbd\x79\xae\x3f\x3b\xc1\xe7\xa6\x19\x9f\xb5\x98\xc1\xa5\xa7\xf6\x2c\x2b\x96\x50\x27\x70\x68\x03\xff\xe2\xbb\x3f\xad\xb6\xb6\x51\x63\xc1\x6a\xf4\x55\xce\x95\x09\xc2\x2c\xb1\x38\x7f\x50\x61\x2e\xf1\xe5\x8e\x55\x00\x67\x3a\xaf\xdb\x30\xad\x0a\xa4\x6e\xf2\x89\x2a\x89\xc1\xc3\x99\xea\x7a\xde\x8a\x4d\x32\x2b\x11\xbf\x58\xf7\xdf\x6f\x59\x0d\x39\x49\x44\xdf\xd0\xf9\x5d\x25\xcd\xe8\xa5\xee\xa6\x75\xc2\x21\x00\x85\xa2\xa3\x92\x3c\x8d\x2c\xef\x59\x0f\xaf\x35\x94\xdb\xc8\xe2\xa1\xfa\xb1\x68\x55\x50\xca\xf8\x88\xc9\xdc\x42\x9d\xe9\x93\x25\x8f\x4c\x27\xb0\x8c\xd4\x97\x69\x73\x41\x09\x6f\x97\x97\x29\xb7\x05\xfc\x86\x91\x67\x32\x7f\xdc\x20\x76\x75\x63\x98\x92\xd5\xaf\xdc\xea\x99\xa0\x82\xd3\xf6\x95\x4d\xde\x86\xed\x00\x3a\x70\x39\xd0\xb7\x54\xa8\x97\x0d\x8d\xed\x71\x01\x6e\xbd\xed\xee\x57\x76\xe9\xba\x77\x4e\x5c\xed\x4e\xc5\x08\xd7\xb0\xf0\x3c\x1c\x6f\xb3\x20\x41\xae\x63\x12\x50\x49\x40\x67\xa3\x99\x47\x27\xf9\x46\x22\x12\x51\xc2\x0f\x97\x7c\x70\x72\x2b\x13\xc4\xe0\x04\x08\x18\xdd\xc2\x13\xf3\x0a\xb1\xf7\x2f\x5a\x72\x35\x12\xf4\x7c\xe0\xff\x95\x71\x76\xd4\xf6\xbc\x51\x5b\x1b\x67\x47\x2a\x0f\xf4\x52\x85\x65\xb1\x3a\x16\x1f\x94\x2a\xbc\x5e\xb9\x18\xd2\x49\xb5\x74\x5d\xa1\x27\xc1\xb5\xda\x00\x88\x71\x7c\x70\xf9\xc6\x8c\x53\x73\xe6\x8f\xfa\xb1\x07\x93\xc0\x17\x35\x50\x0b\x21\x9e\xf2\x17\x40\x86\xfc\x37\x6c\x24\x28\x13\xa9\x25\x12\xcd\xfd\x2f\xae\xe1\xd7\x5b\xd0\x46\x9e\xfc\x25\x2c\x7f\xaf\x8a\x28\x71\x2e\x3e\x6a\x72\x0e\xb1\x9b\xa3\xa5\x8f\xba\x80\x14\x21\x83\xab\xb3\x25\xf1\xdc\x5d\x7b\xbe\x54\xfe\xe5\xc5\x92\xdb\xe2\x87\xcb\xa5\xb6\xcc\x0f\xb8\xd9\xeb\xf0\x4e\x7e\x91\xee\xf0\x93\xfd\x35\x6f\x2c\x4f\x0c\x58\x6b\xcd\xf9\x2d\xda\x27\x16\xa8\xb7\x82\x51\x4b\x1f\xe5\xfa\x62\x3c\x10\xf5\x72\xb7\xf4\x71\x8a\x63\xa5\x46\x74\xb8\x03\x3f\xbb\xf2\xb9\x40\x22\x47\x52\x33\x50\xea\x0b\xe5\x81\xab\xe1\x07\x2e\x86\x99\x66\xf6\x89\x0e\x15\x61\x86\x30\x5d\x69\xe7\x5c\xb7\xa0\xda\xc7\x41\x01\x1c\x71\x3e\x12\xcc\xbe\x4b\x36\xf4\xd6\x07\x96\x81\x05\xc5\x57\x07\xd9\x59\xed\x1b\xb2\xf4\xbc\x50\x02\xc5\x67\x95\x95\x50\x1c\xaf\x33\x69\x8c\xd1\xf1\xbc\x75\x28\x1e\xd9\x8e\x6d\xfa\x95\x54\x18\x08\x8e\x0a\xfb\xf6\x7c\x63\xc1\xd8\xb7\xd4\xd8\xb7\x7b\xa0\xd3\x58\xe0\x43\xb5\xb5\x0d\xd1\x02\x18\xb2\x76\x6c\x04\xdc\xdf\x43\x88\x8e\xaf\xd5\x58\xe3\xcd\x0d\x6c\xac\x06\xb2\x0f\x20\x73\xab\x0f\xf0\x72\xaa\xe8\x6e\x99\x4a\x44\x47\x44\x13\x9a\xe0\xa8\xa2\xfa\xaa\x6f\x98\xf6\x38\x4f\xd4\x75\xc7\x2b\x6d\x67\x67\x58\xdc\x86\xb8\xc2\xd8\xe7\x27\xde\x35\xa9\xfe\x59\x77\xcd\xd1\xa6\x6d\x7f\x3e\x40\x80\xdf\xc2\x89\xab\x2c\x73\x95\xdf\x74\xf8\x06\xfe\x0c\xe1\xff\x4a\x55\x22\x64\x42\x07\xab\xd9\xda\x62\xa6\x2e\x21\x6e\x79\x48\xca\xdf\x7b\xe5\x16\x23\x8f\x12\xe6\x85\xab\x44\xb6\x8f\xcd\x1d\x32\x6a\xbf\x97\xb4\x80\xe5\x17\x8e\x4d\x93\x1f\x47\x9c\x46\x7c\xc1\xe0\xeb\x0d\x29\xe3\x89\x71\x8d\x73\xf4\x36\x73\x30\xe3\x8c\x9d\x40\x4c\xc9\x2f\x32\xcc\x94\xa7\x8e\xad\x89\xe4\x18\x2b\x4c\xe6\x32\x4c\x8e\xcb\x8c\x97\x6b\x1d\x7b\x62\xb6\x6b\xed\x6d\xe7\x45\x68\x0b\xef\x66\xcd\xc7\x6b\x0c\x69\x64\x64\xe2\x65\x11\xa2\x64\xa2\xf5\xcd\xf0\xa5\xb6\x9d\x05\x67\xfa\x43\x38\x5e\x67\x7a\x26\x69\xff\xb9\xc2\x1c\x87\x2c\xef\x99\xa8\x55\x99\x97\xb3\xb7\xf7\xb7\x9e\xd3\x69\x4d\x24\x00\x7e\xe0\xf3\xc6\x6d\x84\xd8\x31\xca\xbf\xf8\xbf\x10\x90\xda\x71\xba\x7d\x3e\x2b\x19\x48\xc5\x46\x18\xd9\x32\x38\x72\x80\x5c\x61\xed\x38\x36\x95\xe1\xd7\x1c\x54\x30\x6b\x55\x05\x5f\xd9\x80\x99\x1e\xab\x07\xd4\x08\x46\xad\xc0\x03\x1c\xb1\xa7\xfe\xbc\x95\x8c\xf0\x40\x4c\xf7\x12\x50\xa7\xa6\x14\x4a\x15\x1c\xa5\xd9\xe2\x01\x6e\x96\xfa\xce\x9f\x3c\x51\x83\x00\xe9\x07\x54\xd9\x7e\xcb\xbd\xaf\x54\x28\x96\xba\xaa\x9e\x55\x83\x29\xcb\x59\x0a\x42\x91\x18\x20\xd2\x0f\xa8\x71\x53\xc0\x7a\xf7\xcf\x60\xf8\xf6\xf9\x87\xb3\xfe\xe4\xb9\xbf\xf3\x27\xcf\x9d\xfe\xe4\xb9\x77\xa4\xb7\x06\x4f\x78\xd8\x49\x9d\x89\xfc\x54\xd1\xbc\x8d\x2a\xc6\x6a\x3c\x21\x1d\xa7\x88\x34\x58\x57\x01\x34\xa0\x28\x1d\xfc\xd8\xfd\xbe\x69\x39\x6f\xd1\x60\xb0\xe9\x29\x33\x98\x4e\x21\x57\x15\x1c\xd8\x0a\x4b\xae\xfe\x07\x70\xe2\x03\x70\x3c\x3e\xa1\x1d\xe9\xd9\x3d\x83\x07\x0a\xf1\x22\xec\x7a\xea\x28\x87\xa4\xc4\x02\x20\x85\xd1\x8e\xdd\x15\x99\x61\xbf\xb1\xc7\x9b\x08\x20\x85\xbe\x91\xf3\xaa\x6d\x4d\xb3\xa7\xf6\x5f\xd9\xfe\x77\x5d\x7b\xb9\xaa\xfe\x9e\xb5\x1c\xc2\xb4\x40\xf5\x1e\x0a\x97\x76\x88\xdc\x2f\x2f\x68\xf6\x3d\x3d\xdf\xc6\xdc\x77\x29\x54\xfc\x4f\x45\xaa\x5e\x92\xf7\x4f\x47\xcb\x7d\x0a\x06\x62\xe5\x1e\x2b\xbf\xdf\x8d\xf5\xa0\x4f\x27\xee\x94\xbc\x5f\xef\xcf\xe8\x9f\x7c\x92\x1c\x4b\xcc\x50\x97\xac\x01\x68\xfb\xf9\xe6\xc6\x16\xa7\x87\x2d\x23\x8d\xb7\x87\x9b\x94\x3f\x85\xff\x34\xd1\xf9\xcd\x6e\xe6\x2e\x5d\xd8\xd3\xdf\x66\x8f\xe2\x5f\x39\x9e\xd5\x74\x9b\xc1\xa4\xca\xcf\xb6\x45\xd8\xea\x2d\x93\xc5\x8d\x98\xf7\x94\xd3\x6b\xab\xa9\xd8\x91\xed\x5e\x43\xda\x3a\xb1\xc1\xdf\xf6\xf8\xe6\xc0\xf7\x82\xe9\x9b\x3c\x0c\x51\x6e\x0f\xbf\xbe\x15\x6e\xd9\x71\xf2\xee\x90\x07\x35\xa4\x37\xf0\x8f\xce\x90\x27\x19\x92\x12\x0f\x9d\x5b\x85\xbd\x6f\x1b\xcc\x3b\x5e\x8c\x2c\x0f\xc4\x74\xc6\x4f\x17\x58\x8c\x28\xdf\xfe\xbd\x4b\x7c\x81\x80\x0b\x54\x40\x56\x0f\x40\x52\x55\xa6\x62\x0a\x05\x6c\x29\x79\xc7\xcc\x94\xad\x2d\xc0\xd3\xe9\x4a\x29\xef\x2a\x9c\xcc\x15\x7f\xa4\xa2\xc4\x4e\x83\xd1\x86\x19\x9b\xe7\xaa\xa8\x90\xbd\x5b\xa7\x1e\xb4\x4d\x4c\x88\x9c\x40\xd9\xa8\xcc\xb2\xa3\xd9\x6c\x44\x73\x56\x6c\xb3\xfd\xcb\x4e\x33\xeb\x39\xaa\x25\x4e\xe2\x5a\x30\x1f\xf9\x85\xf9\x3b\xb3\xb7\x03\xb9\x1d\x70\x3e\x73\x8d\x42\x95\x20\xf6\x37\xd2\x20\xb2\xb2\x6a\xd6\xcb\xd4\xb4\x0f\x60\x1b\x38\x68\x4a\x1e\xed\xdf\xef\xe8\xeb\xd0\xa1\x47\xeb\xe4\x5b\x75\xf4\xa4\xe1\xfb\x8b\x7d\x6a\x4a\xa4\x03\xed\xed\x16\x64\xec\x55\x15\x12\xfd\x2a\xfd\xb6\x85\x9a\xfb\xca\x1a\x23\xae\xd2\xbb\x9f\xee\xff\x73\x95\xca\xf1\xb7\x70\x72\x1b\x0c\x25\xaf\xc5\xb0\x5b\x13\x7f\x0d\xce\x43\xff\xa4\x75\x5f\x9a\xc6\x79\xa1\x35\xde\x1c\x21\xd8\xb7\x12\x19\x3e\xf6\x7e\xdd\x95\x63\x25\xd3\xad\xdc\xd7\x0a\x92\x63\xb5\x1f\xf8\x81\xe5\xda\xab\xae\xd5\x44\xf2\x51\x2a\x5f\xef\xc4\x81\x7e\x45\x6e\xf5\x8b\xb1\x11\x6a\x8e\x58\xf9\xc2\x17\xcf\x2b\x7c\x99\xdd\xd9\xec\x84\x33\x8d\xdf\x27\xd3\x7f\xb4\x32\xed\x84\x42\xcf\x7b\xdc\x11\xad\xe8\x6f\x39\xd6\x70\xa2\x1b\x03\x31\x51\x29\x4d\x25\xf1\xac\x05\xf5\x8f\xf3\x18\xf6\xcc\x12\x0f\xa6\x1e\x25\x02\xe4\xbe\xe2\xf7\x14\x75\x12\xdb\x08\xd3\x99\xde\x58\x3f\xd5\xec\xc6\xf2\x54\x95\x6d\xc2\x59\xb4\x8c\xde\xe1\x5c\xc5\x1e\x2c\x0e\x2c\xd7\x2f\x0f\xf0\x80\x33\x57\x39\x6c\x7d\x35\x44\x4b\x0f\xc7\xd2\xfb\x8d\x17\x6c\x5f\x99\x59\x83\x9f\x1c\x4d\x2a\x25\x09\x04\x47\x1d\x17\xcc\xaf\x26\xbe\x51\x0e\x9c\x5f\x2d\xa3\x2c\x74\x56\x47\x25\x19\x94\x31\x3e\xe4\xef\xf8\xd9\xc2\x96\xe5\xbb\xb3\xbe\x45\x7c\x8f\xfb\xb6\x95\x30\xfb\x96\x95\x68\x99\x79\xed\x0f\x97\x0d\x61\x8e\xd7\xbc\xb1\xf1\x6d\x0a\xce\x74\xaf\xa3\xba\x76\xda\x9e\x7d\x84\x39\x0a\x0b\xeb\xda\x74\xcc\xea\xb5\x66\x36\x47\xff\xaa\x11\x78\x5e\x23\x38\x1f\xd5\x58\x70\xf8\x1d\xfd\xab\x42\xe0\x79\x05\x82\x52\x6f\xcb\x33\xb9\xb6\x76\x01\x29\xbd\x43\x02\x00\xce\xbd\x6f\xcd\x2b\x91\x75\xac\x45\x9e\xb7\x40\x9e\xd8\x9a\x4b\x39\x3b\x6e\xa1\x12\x51\xb1\x97\xc6\xd4\xbf\xaa\x04\x9e\x57\x31\xb3\x11\x61\xf5\x20\x33\x39\x32\x04\x9f\x54\x30\x24\xad\x27\xac\x13\xee\xa0\x1e\x54\xbc\x19\x75\x47\x81\x2d\x1d\x7c\xaa\x0d\x35\xe3\xb5\x94\x09\xde\xc1\xf0\x8d\x93\x58\x81\x6b\x67\xe0\x21\x67\x0c\x50\x19\x9e\xf0\xf6\xca\xd4\x90\x98\x01\xc2\xf5\x43\x66\xbc\x20\x61\x17\x0f\xc0\xbc\xba\xb0\x55\x44\x24\xbf\xf5\x53\x07\x9b\x9d\x04\x0c\xac\x10\xe5\x3f\xd8\x85\xc4\x0e\x06\xd3\xbb\x98\xaa\xbe\x80\x64\x36\xb3\xbf\xde\x49\xb5\xcb\xe0\x4d\x1f\xd0\xfd\xad\x8f\xce\x88\x92\xa0\x71\xe4\x13\xbe\x92\xac\xec\xaa\x00\xfc\xe4\xeb\x02\x4b\x67\xc6\xb0\x83\x72\x2a\x54\x08\x56\x4d\x7f\xae\x8d\x51\xf1\x6b\x14\x01\xcd\x12\x5d\x7d\xcb\x00\x9d\xaa\x88\xd1\x4d\x70\x95\xac\xca\xb9\x62\x73\xe3\xf8\xce\x2a\x54\x13\x54\x47\xa2\xcc\x45\xd5\x8c\xbf\xa4\xa2\x43\xf6\x4a\x21\x1c\x21\xa9\x74\xc8\x27\xf3\x44\x22\xc7\xd6\xa9\xef\x60\x50\x8c\x8a\xfb\x31\x18\x46\x47\xff\xaa\x14\x78\x5e\x29\xf8\x09\x3a\x40\x47\x63\x2b\xdb\x17\x1f\xe6\x2f\x7a\x73\x50\xab\x3e\x50\x9b\xc3\x45\x57\x5a\xf1\xb4\x29\x83\x64\xc9\x9e\x91\x1d\xb0\x64\x7a\xfc\xab\x7d\x62\x7b\x7d\xf5\xda\x62\x47\xba\x13\xfc\x8d\xd3\x9d\xab\x71\xc8\x46\x08\xf4\x8c\xda\xe3\xfb\x93\x93\x9c\x9d\x31\xae\xb0\xc7\x2a\x03\xcb\xdb\xee\x8a\x89\x6c\xeb\x67\xbf\x26\x51\x33\x40\xff\xc6\x1a\x70\x73\x8d\x2f\x98\x56\x1e\x88\xd8\x16\x72\x64\x9a\x3c\xcd\xf8\xba\xcc\xf1\x70\x14\x17\x04\x12\x22\x71\x3d\x26\x4f\x92\x42\x47\x24\x17\xd7\x2b\x47\x5f\xd9\x0b\xea\xb8\xda\x38\xfa\x57\xa3\x20\x46\x42\x18\xe8\x14\x4e\x73\x76\x20\x8a\xe2\xc1\xa7\x6f\xda\x90\x0c\x78\x36\x53\x5c\x37\xad\xa7\x1a\x7c\x7d\x8e\xeb\x8b\x93\xef\x34\xfa\x59\xe3\xfa\xe6\xe4\xce\x52\x61\xd4\x11\x8f\x9c\xd4\xab\xf7\x40\x83\xde\x58\xc4\x7e\x63\xff\x10\x6d\xf0\x92\xf7\x44\x86\x45\x18\xdf\x42\x51\xfc\x96\xdc\x88\xc4\x06\x03\xed\x9f\x94\x62\x2a\xed\xb2\x97\x0e\xf4\x46\x94\x47\xb3\x30\xba\xa0\x7a\x29\xd8\x2f\x67\x5e\x0c\x3e\x7d\x31\xf5\xba\xa9\xf5\x5c\xdf\xbb\xe4\xf0\xd6\x94\xdf\xc0\x81\xce\x9f\xd2\x8e\x41\x1b\xad\x42\x99\x4e\x47\x3f\xeb\x72\x98\x75\x31\xf8\xf4\xc5\xf0\xb3\x13\x5d\x08\xe5\x39\x6b\xd6\x4d\x50\x7f\x90\xd4\x35\x77\x2d\x4f\x33\xcc\x78\x7e\x74\xb9\x3d\x11\x32\xb4\x9e\x19\x9f\x33\xc8\x06\x8f\xba\xcd\x1e\x75\x81\x51\x97\xd9\x04\x87\x18\x1c\x1e\x99\x72\xff\xb0\x06\xa9\x95\xf0\x8e\x9e\x4e\xda\x0f\xcc\x0e\x6b\x7c\xa1\x80\xff\xc1\x86\x38\x50\x09\xbe\x4d\x74\x98\xd8\xf1\x2f\x2e\x09\xf1\xb4\x3a\xa9\x15\xf5\x13\x90\xfd\x6e\x3f\x40\x1f\x2c\xe2\x6c\xc8\x57\xd4\x26\xaf\x2d\x39\x21\x81\x92\xc2\x63\x83\x7c\x1f\xbe\x02\x23\x54\x3e\x58\x66\xa1\x3a\x75\x25\x1a\x66\x74\xca\x27\xe5\x3c\xb1\x8c\x0c\x70\x3a\xa1\xa7\x9a\xad\x80\x16\xa9\xfc\x2e\x77\x37\x50\xcc\xf7\x90\xb2\xd3\xc1\x2e\x67\xca\xe0\x18\x32\x60\xaa\xb3\x46\x10\x57\xc4\x99\x70\xeb\x79\x37\x33\x07\x83\x63\x2c\x9b\x1f\xb5\xde\x11\x3f\x39\x83\xbc\xea\x29\x18\xd5\x0b\xbe\x53\xd2\x86\xa2\x2d\x8e\x7a\x93\xb8\xaa\x59\xa7\xc9\x28\x51\xa6\x2a\xcf\x9b\xee\xea\x88\xb0\x4a\xa3\xae\x31\x43\x59\x67\xe1\x1c\xf7\x5e\x8d\x99\x26\x67\xc8\x1c\x11\xae\xe6\x3c\x1a\x4f\xad\x18\x28\xde\x56\xe3\x12\x60\x3a\x57\x45\x90\xe8\x9c\x8e\x14\x70\x32\x92\x0e\xad\x98\x06\x9e\x94\x3f\x7d\x4a\xd2\xc4\x5c\x7a\x5c\x3f\x5b\x11\xe0\x87\xbc\xae\xec\x2d\x2d\x92\x40\xb8\xfa\x4c\xef\x68\x74\xae\xae\x4d\x32\xb3\xd5\xab\x42\x76\xbc\x1b\xec\xd9\xea\xca\xf4\x05\x65\xea\xaf\x1e\x7c\x4b\x0b\x6a\x87\x4b\xf4\xd9\xee\xa2\x4d\xa9\xc9\xcc\x3c\x0c\xa6\x7d\x55\x96\xaf\x7a\x4e\xfb\x42\xe4\xf3\xf2\x65\xca\x12\x08\x17\xc2\xd5\xcf\x8e\x3a\xb0\x69\x41\x04\xa6\xe6\xd7\x5f\x2c\xd4\x6b\x18\xa5\x9e\x80\xba\x21\xfd\x4e\x09\x50\x8d\xc3\xe0\xe0\x8f\x56\x63\x28\xa3\xf6\xf8\x59\x84\xc5\x66\xc1\x91\xce\xd3\x37\xe8\x0b\x80\x36\x76\xe7\xa4\x9f\x51\xea\x8d\x7b\xe3\x16\xa0\x8e\x3e\x1a\x81\x75\xf0\x9b\x58\xcc\xcf\x1c\x28\xb4\x96\x6e\x53\xe8\xd0\x98\x71\x57\x92\xb3\xe2\x02\xe7\x00\x98\x1d\x05\xc6\x67\xdf\xdd\x3c\x6f\x83\x60\xa6\xf3\x59\x0f\x3d\xe9\x5e\xf5\xa9\x8a\x1f\x59\xc7\x50\x27\xae\x80\x12\x2d\x80\x48\x4c\xde\x59\xae\x1e\x17\x79\xfd\x93\x22\x0e\x63\xac\x18\x4e\x05\xa2\x05\xa8\x77\x37\xa6\xca\x2b\x9f\x94\x79\x21\x7d\x7a\x0a\x05\x26\x0d\xc5\xb3\x3a\xd6\xa9\x08\xa9\x19\x3d\x5c\x6f\x1b\xaf\x9e\x91\x36\x38\xf8\xb2\x80\x55\x17\x5d\x22\x40\xdd\x39\x54\xa0\xc3\x90\xb1\x11\x05\x3a\x16\x98\xe7\x12\x6c\xb1\xd4\x36\x34\x8c\xe9\x86\xb1\x58\xd9\xd2\xaf\xac\x58\x1a\xea\x16\xcb\xc7\x49\xf9\xb6\x26\x6d\x2e\xb1\x5a\xd9\x91\x2d\x22\x1a\xb8\x1f\x36\x42\x2c\xe8\x89\x16\x07\x87\x62\x90\x55\xd1\xb7\x65\x6b\x7e\x2a\x8a\xd9\x04\x9f\x2a\xb7\x2d\x7e\x4a\xcb\xfc\xc8\x36\x54\x2a\x6d\x93\xad\xe7\x50\x6a\xb4\xe0\x10\xaa\x82\x6f\x0b\x5e\xb0\xaa\x27\x13\x6e\x3c\xd2\x60\x15\x89\xaf\x57\x91\xe8\xd6\x4a\x00\x27\x12\xfe\x0c\xce\x3f\x75\xbe\xa0\xbb\xcf\x2e\x85\xc3\x77\x8f\x58\xed\xa1\xc8\x4e\xd9\x63\xc1\xd7\x04\x24\xbe\x7c\x61\x7a\xa7\x82\xc4\x80\x90\xdb\x00\x57\x0b\xe6\x6a\x3c\xd1\x32\xae\x96\x0a\xd2\xdd\x29\x9e\x68\x1d\x57\x6b\x05\x95\x39\xc0\xb4\x38\xef\x4c\x99\x9b\x3a\x8f\xdb\xe2\x87\x8d\x27\x31\xc2\x61\x18\x0b\x96\x17\x71\x38\xa0\xd5\xad\xee\xac\x41\xa8\x32\xf3\xb5\xaf\xc1\xb8\x0c\xf6\x07\x9b\xba\xd2\x67\x11\xa0\x1c\x5a\x7a\x37\x43\xf7\xd6\x79\x51\x4f\x46\xb5\x57\x9a\xfb\x29\x58\xfe\x92\x98\x27\x76\xf1\x42\x38\x7a\x73\x9a\x9c\xc4\x50\xb8\xa7\x78\x1e\xe3\xb0\x17\x46\x26\x99\xcb\x6d\xc1\x2c\x8b\x21\xb8\xb6\x66\x05\x76\xd5\xca\xf8\x85\xe7\xc5\xf3\x5d\x40\x16\x04\x2d\x23\x58\x72\xbe\xd0\xa2\x04\xc9\xae\xf8\x91\x75\x48\xc8\x75\x3c\x3f\xee\x4b\x1e\x1d\xce\x2e\x35\x63\x21\x6e\x44\x0b\x79\x65\x87\xe2\xd0\x6d\xe8\x02\x98\x0c\x7c\x3a\xfc\x0b\x3f\x89\x1f\x45\xf7\xb0\xe3\x2c\x79\x89\x6b\xd6\xbf\xfe\x59\x28\x04\xd3\xaf\x4c\x96\xb1\xdc\x75\x31\x29\x8e\x84\x17\x92\xf9\x5a\xce\xb9\x68\x27\xe4\x3e\xd1\xc0\x79\x9e\xb1\x8e\x49\xf1\x50\xb8\xca\xef\x9e\x8e\xe2\xde\x74\xfb\xa1\x1b\x73\x98\x4b\xbf\x02\x75\xb1\x93\xe8\xc0\x06\x12\x03\x9b\x1c\x7e\x89\x82\x9b\xf5\x6b\xad\xa7\xd7\xba\x3c\xa9\xae\x54\xad\x7a\x15\x3d\x1a\x29\x73\xa5\x47\x8a\xdd\xa2\xc7\x86\xfe\xfa\x5e\xf3\xa4\xa3\xcf\x4c\x49\x80\xb0\x50\xcb\xb7\xee\xe2\xc4\x9a\x32\x96\xc3\x66\x09\x84\xf8\x20\x72\x09\x43\x09\x6f\x63\xca\x17\x18\x81\xb0\xbb\x54\x99\x07\x15\x2b\x28\x2a\x5d\x80\x63\x28\xc9\x6d\xc1\x32\xfc\x1a\xe1\x7e\x81\x91\xac\xd9\xb0\x3f\xf7\xd1\x12\x12\xa2\xf5\x99\xd9\xe8\xc2\x9f\x16\xfd\xc4\x5e\xec\x98\x9a\xa0\x2c\x0c\x28\x0c\x90\x3f\x7e\x2f\xfe\xdd\xa7\x7f\x85\xef\xe7\x70\xb5\x8c\x9a\x2e\x4b\x4e\xfb\x58\x70\xd2\xbb\x50\xa2\xa1\xe2\xcd\xec\xdd\x27\x9b\xb5\x62\xec\x94\xf5\x25\xf4\xc9\x48\xee\x55\x66\x76\xb6\x2a\x62\xe8\x05\xf3\xb7\x1d\xbf\x67\x8c\x13\xc7\x56\x9a\xd0\x57\xf8\x70\x94\xd0\x47\x4c\xec\x0f\x45\xdd\xf0\xa8\xa0\xd8\x0a\xfd\xb5\xd4\x77\x9d\x71\xd8\xcf\xbb\x57\xd5\xf3\xfe\x0b\x60\x88\xa7\x54\x81\xbc\xbc\xc4\x02\xb0\x89\xb9\xb3\xc8\x42\xc3\xd4\x26\xc2\x96\x05\xe0\xdc\xc9\x71\x09\xa1\x03\x3f\x4e\x78\x08\x29\x0b\x8a\x2d\xc7\xdc\x7a\x48\xc4\xa8\xa8\x42\xde\xf1\x05\xa4\xeb\xc6\xd2\xe1\x5b\x9d\x73\x44\xf3\x96\x57\xf6\x88\x2a\x92\x33\x15\xd3\xc1\x74\xcb\x28\x04\xc1\x28\x1c\xed\x71\x77\xa1\x84\x98\xb9\x73\x6c\x95\x24\x73\xd4\x68\x6f\x17\x11\x2e\x7a\xf1\x06\xf0\xd9\xfa\xbd\xec\xc9\xb5\x27\xb2\xb8\x5a\x09\x3d\xa4\x2e\x36\xc2\xbb\xaa\xc1\x19\xf1\x83\xf1\x12\x5e\xcb\x7e\xc6\x12\x06\x81\x08\xa5\xef\x4f\xbb\x4c\x4f\x53\xf8\x45\xaf\xa4\x26\xec\xac\x04\x75\xba\x23\x93\x0a\x91\xb1\x66\xbb\xb4\x4d\x41\x49\xb2\xcc\x82\xce\x16\x2b\x9e\xbd\xa0\xda\x17\xc8\x56\x1e\x8d\xc7\x98\xea\x11\xfe\xc4\xc2\xac\xc3\x21\xde\x0d\x5f\xec\x7c\xf1\x05\xd3\xf7\x5f\x94\x25\xa0\x00\x92\xf8\xd6\xa4\x8b\xff\x32\xb0\xfa\xe9\x54\x37\xa7\xd8\x91\x89\x5f\x64\x85\x7d\x65\xb5\x3c\x96\xe4\x85\xba\x24\xc9\x6e\x4f\x4a\x39\x3d\x97\xb1\x12\x84\x72\x7f\x9e\xaa\x7f\x75\x98\xce\xd6\x61\x3a\x99\x54\xfe\x46\xe2\x19\x44\x65\x43\x41\x17\x64\x63\x88\xa0\xc0\x47\xfa\xc8\x34\x3a\xe7\x12\x64\xa1\xf5\xd7\xce\xb7\x65\x09\x27\x08\xb1\x79\xfc\xff\x68\xb6\x88\x8a\xd0\xe2\x29\xd3\x67\x2a\x96\x2c\xf3\x8f\x64\xe4\xe5\xf0\x99\x02\x44\xac\x73\x8a\x3d\x47\x9e\xd7\xa0\x7b\x65\xdf\x35\x0f\xd4\x8a\xbc\x7f\xf5\xa2\xfb\x3b\x5e\x03\x0b\x53\x22\x57\x6a\x01\x56\x6d\xe0\xc0\x10\xc9\x5b\x5b\xc3\xda\x52\x0b\x44\x10\x3b\xd2\x11\x0a\xba\x80\x42\xcc\x4a\x08\xa5\x35\xac\x67\x78\xb2\x34\x87\xd5\x8d\xa3\x9f\x7c\x38\x06\xf1\x1c\xa7\x63\xa6\xe7\xc3\xc4\x5c\x3c\xcf\x7b\x15\x6a\x97\xb0\xd6\x53\xd0\xae\x0e\x36\x64\x5b\x46\x77\x15\x59\xae\x7a\x80\xb6\xb3\xe4\x58\xec\xa8\x2e\x0d\x28\x26\xda\xdf\x72\x06\x17\x40\x39\xd1\xa9\x8a\xa0\xae\xe0\x44\x54\xdf\x11\x98\x1a\xd2\x3f\x89\xba\x78\xea\xc3\xc1\xb3\xdf\xfa\x81\x86\x74\xe3\x91\x4c\xd9\x70\x93\x1d\x99\x40\x65\xd9\x5f\xc2\x94\x3d\x05\x38\x83\x77\xd8\x0d\x69\xc9\x00\x07\xfc\x8c\x95\x62\xc7\x51\x7e\x54\x57\x96\xd6\x11\x94\x7f\xa6\xed\x2f\x4b\xad\x6f\x9c\xad\x75\xf1\xd6\xa9\x26\x57\x64\x03\xfc\xca\x5f\x4a\x51\xdc\x47\x6b\x34\xbb\xa9\x18\x97\x16\xb9\x85\x33\xb0\x37\x72\x1b\x1b\x16\x7d\x15\x5a\xd0\xc9\x03\x11\x06\x65\x3e\xe0\x75\x20\x90\x6c\xdf\xf0\x40\x53\x5c\xf9\x70\x34\xc3\x2e\xfd\x2a\xda\xcd\xa8\x0c\xcb\x2e\xe8\x36\xd0\x95\x03\xae\xb9\x9d\x50\x37\x07\x42\x37\xe6\x3a\xc2\x04\xbd\x9e\xee\x18\xe9\x89\xef\x2d\x84\x43\x83\x96\x02\x80\xd4\xce\xae\xf2\xc3\x43\x47\x62\x28\x1e\x63\x22\xa8\xdc\x50\x09\x64\x75\xf1\x18\xe5\xff\x45\x70\x48\x4f\x5a\x3a\xc8\x4c\xcd\xfe\x9b\x10\x2a\x99\x34\x71\x8a\xa3\x72\xc8\xcb\xe0\x1d\xd0\x1c\x95\x9a\x4d\xd6\x63\x2c\xb1\x54\xd2\xa0\x09\xf6\xfd\x32\xc7\x38\x0c\xf8\xfa\xab\x70\x6e\x63\x8a\x29\x18\x95\x2d\x34\x8d\x8a\x01\x9a\xcd\x9d\xb1\x5a\x32\x0c\xd6\x77\x49\x18\xb4\x1c\x62\x36\xc5\xc7\x67\x25\x17\x04\xf0\x3e\x4d\xca\x2e\x08\x36\xaa\x42\x4d\x05\xf3\x99\x96\x2e\xd0\x97\x50\x27\x54\x84\xd2\xd1\x0e\xa1\x29\x04\x99\xa5\x0f\x71\x41\x3b\xfa\x37\xc1\x61\x2d\x2e\x33\x43\x66\x4b\x72\x65\x09\xa8\xad\x54\xea\x82\xd4\x81\x5f\x73\xd7\x58\x30\x72\x94\xa9\x6d\xb4\x89\x6e\x6e\xfc\x05\xdc\x5f\x7b\x1b\x4c\x4f\x31\x13\x92\x71\x85\xe0\x23\x6a\x71\x51\x67\x53\xe0\x00\x88\xb1\x4c\x2d\x31\x52\xde\x5a\x93\x19\x81\xc5\xce\x58\x99\xbe\x1d\x63\x87\xa0\xf0\xac\xca\x44\xd5\x1a\xcf\xf1\xfa\xa7\xd2\x4e\x60\x7c\x76\x3c\x59\x16\x18\x39\x88\xc7\x79\x90\xfb\x36\x98\x37\x85\x33\x30\x82\x6e\x60\xd5\x77\x3c\xd3\x27\x9f\xd9\xd9\xda\x66\xfc\x6e\x7d\x9d\x14\x12\x73\xfe\x85\xb5\x85\x9f\x31\xc8\x01\xff\x4b\xb0\x09\x0e\xc1\x0c\x41\x2b\xe2\xbc\x55\x4c\x4b\x52\xd7\x01\xa3\x96\xa6\xf3\xb4\x9c\x26\x57\xa3\xdf\xf0\xc2\x6f\x39\x4e\x04\xfb\x17\x5f\x8c\xf1\x20\xf9\x9b\x2d\xf2\x72\xfa\xb9\xe2\x87\x70\x32\x11\x14\xe0\x13\x2f\xeb\xc4\x9b\x46\xc9\x18\x78\x2d\x0a\x7f\x1c\x4a\xb2\xc7\x1e\xc1\x58\x60\x43\x49\xb6\x08\x25\xa1\xcd\x93\x46\xb8\x3b\x1c\x87\xfd\x25\x94\x8f\x6c\xc7\xc6\x61\x62\x5d\x3c\x39\x59\xd9\xa1\x2c\x5e\xe7\xa3\xba\xc2\xee\x6f\x11\x87\xc5\xa6\x21\x8d\xc6\x88\x78\x94\xfd\xab\x49\xe0\x79\x93\xe0\x8c\xf7\xe2\x2b\xec\xd7\x9e\xbb\xef\x05\xe6\xfb\x14\x4e\x89\x03\x5e\x83\x9c\x36\x2d\x08\xbc\xca\xba\xaa\xb2\x99\xee\x8d\x17\xe4\xef\x94\x33\xa2\xf8\xde\x92\x33\xcc\x2e\xd8\xa3\x33\x8b\xd0\x70\x25\xb3\xf8\x08\x2a\xbc\x38\x03\x03\x4a\x8e\x84\x50\x65\x99\x1f\x85\x0a\x4b\x72\x02\x7d\xc7\xd4\xca\x4e\xad\x56\xc6\xf1\x7a\xb9\x7c\xae\x90\x90\xc4\x51\xc7\x42\xf0\xe4\x78\xf1\x23\x77\x1f\x1e\xaf\xfb\x5b\x3d\xca\xee\xe4\x1e\x1a\x64\x8e\x4b\xdc\x89\xd8\xaa\x24\xc4\x9d\xff\x9b\xb3\x94\x24\x01\xb6\x99\x60\x28\x31\x1b\xae\xfb\xc5\x7b\xbd\xc8\x52\xd9\xbf\xaa\xc4\xb2\x52\xeb\x2d\x4b\xb6\x43\x91\x82\x26\x7f\xfd\x32\x9c\x49\xd5\xc7\x69\x79\x32\x03\x33\xf6\xe1\xfa\x59\xb9\x39\xd0\x36\x8f\x6f\x88\x27\x20\xde\x19\xc6\x60\xc1\x23\xdc\x88\x4f\xeb\xca\xf7\x82\x6d\xbf\x09\x14\x9d\xb8\x2b\xc5\xf3\x4b\xf5\x3c\xc2\x8c\xdc\x11\x54\xfc\x51\xea\x9b\x65\x75\xa5\x42\xc4\xac\x5e\x86\xe7\xc4\x7e\x2c\xde\xfa\xc7\x04\xb6\xef\x34\x39\x30\x33\x8a\xff\x19\xff\x47\x7b\xa6\x40\x0a\x0c\xae\x99\x75\x89\x50\xa4\xf4\x5b\x60\xb0\x7c\xb3\xca\xe3\xe5\x62\x25\x35\x28\x73\xc2\xa0\xe0\xd6\x38\x4b\x08\x7b\x36\x2a\xed\x8f\xad\x33\xdf\x03\x8d\x34\x32\xc4\x10\x07\x54\x27\x6d\xa5\x3a\xb3\xad\xac\xb5\x88\xc2\xd8\x7f\xac\x35\x49\xe0\xbb\x2f\x89\x36\x7d\x78\x24\xc7\x15\xa2\x38\x88\xed\x3a\xe5\xb2\x11\x4d\x27\xb4\x99\xd1\xab\xaf\x9f\x0a\x68\xea\x50\x5f\x66\xa3\xe7\x4c\x54\xb4\xd7\xd4\x06\x9e\x9b\x26\x71\x89\xa3\xde\x80\x6d\x0b\x40\x68\xe9\x8b\xf6\x17\x6d\x01\x7c\x55\x62\x24\x42\x38\x6e\x83\x66\xd3\xc1\xb3\x52\x6f\x2c\x4a\x78\x63\x5b\xc2\xa5\x48\x9e\xe3\x01\x63\x71\x8e\x8c\xd7\xa5\x8c\x67\xac\x4f\x79\xc8\x16\xb2\xa1\x39\x21\x91\x6d\xb0\x32\x31\xeb\x8c\x65\xba\x58\x06\x8b\xd1\x46\xcd\x30\x12\x50\xd8\x34\x79\x03\xc7\x44\x24\x9d\xd9\x85\x27\x67\xab\xe3\xcb\xeb\x64\x67\x2f\x40\xbc\x6b\x00\x19\x0c\xd9\x1f\x3d\x03\xdf\x9b\x97\x1d\x69\x97\xff\x49\xa5\x0d\xb1\x95\x73\xe9\x8e\xae\x38\xd9\x31\xbc\xb2\x65\x03\x56\x9c\xee\x34\x47\xe9\x0c\x60\x18\x9f\xfe\x6a\x46\x86\x7e\xad\xad\x0c\xa9\x84\x5d\x70\xda\x75\xbd\x60\xc9\x82\xe9\x02\xdd\xdc\x97\x65\x15\x6f\x32\xd4\xe7\x5e\x07\x65\x6e\x7d\x75\x28\x3a\xb6\xdb\x10\xb0\xb5\xe2\xdb\x70\xa9\x6d\x45\x3b\xfa\x76\xb8\x25\xaa\xcb\xd6\x7d\x23\x0f\x46\x8b\xcb\xf1\xd3\x54\x52\x1b\x04\x45\x3f\x66\x27\x16\xcb\xfc\x36\xbc\x44\x84\xee\x9e\xf5\xb6\x73\xb6\x8a\x6e\x40\xad\x59\xb0\x74\x7d\xb3\x99\x0d\xc6\xda\x0a\x4a\x93\xac\x20\x10\x25\x02\x21\x17\xdf\x93\x25\x8d\x29\x6e\x9f\x6b\xd2\xb8\xa6\x14\xfa\xa2\x4a\xa8\xec\x1c\x1e\x2d\x7a\x1f\x9f\x92\x47\x12\xfd\x3a\x91\x96\x76\x74\x0c\xba\x5b\x93\xd0\xa6\x94\x28\xf7\x91\x43\x05\xd5\xd3\x9d\x3d\x40\xdd\x28\x35\x69\x74\x40\xa2\x69\xdb\x56\x53\x76\xda\x1b\xc2\xa9\x79\x30\xb0\xd2\x13\x99\xad\x2c\x66\xc7\x27\x40\xbe\xc6\x13\xc1\xbd\xd9\x93\x31\x4f\xbd\xe8\xcf\xb8\x72\x88\x03\x5b\xca\x9c\xfa\x1e\x38\x2b\x38\x33\x06\xa0\x45\x5f\x05\x41\x03\x0e\xd6\x95\xa8\x02\x4a\xcd\xaf\x3e\xa9\x55\x9e\x2a\x1c\x01\x21\x2a\x1b\x10\xab\xf2\x14\x6b\x8d\x53\xb4\xf6\x62\xd9\x1f\x4a\x89\x7a\xc0\xa3\x91\x7a\x74\xbf\x35\xf9\xc5\x87\x9b\x7b\xa0\xd6\x34\x87\x63\xc7\xc1\x3e\xd0\x85\x37\x24\x2a\xf8\x49\x1a\x60\xeb\x51\xa9\xa7\x92\x02\xc6\x86\xa1\xb0\xbd\xdc\xd5\x28\xb2\x84\x5b\xa1\xae\xa9\x5d\x75\xe3\x79\xcf\x28\x54\x55\xa8\xb8\xea\x97\xb8\x33\x61\x5b\xa8\xb2\x06\xd3\x2d\xdd\x71\x3a\xcc\xad\x7c\xb2\x6b\x1d\x5d\x4e\x5d\x4f\x29\xe6\xfb\x4d\x3d\xdf\x63\xb4\x08\x11\x94\x66\xf7\xe0\x53\x53\x87\x27\xa5\xc2\xae\x76\x11\x07\x16\xcc\x31\xe1\x81\x9e\x25\xe7\x10\x52\xc8\xec\x3d\x7d\x8f\x04\xe7\xc2\x3b\x8c\x3e\x82\x22\xed\x2e\x72\xac\x17\xd9\xa8\xb8\x5a\x09\x8a\x15\x2f\x51\x03\x00\xd5\x88\x43\x7c\xd7\xe6\xf9\x64\x43\x33\xd7\xfa\x87\x93\x42\xc4\x2a\x43\x12\x36\x8a\xc7\x7f\x8a\x05\x64\x2b\x67\x2c\x40\xa5\xd5\xc5\x35\xec\x74\x67\x34\xd0\xe3\x4c\xd1\xfc\xb3\x7e\x28\xd6\x56\x47\x24\x7b\x1e\x01\x8c\x43\x89\xad\x8b\x1b\xbf\x09\xca\x9b\x03\xb8\xce\xff\x1e\x56\xd1\xb0\x36\xa8\xe3\x06\x05\x63\x33\x30\x4c\x6a\x56\x5d\x38\x1e\x21\x5b\x36\x5c\xf8\x2c\xc3\xf7\x8f\xc9\xa0\xea\x3b\x2a\x5a\xc6\x82\x30\x2e\x99\x88\xae\xff\xad\xd3\xc2\x66\xaa\x5f\x19\xe8\xa1\x65\x93\x6d\x96\x04\x6a\xd9\x82\x9c\x71\x5e\x81\x18\xe8\xdc\x15\xac\x4b\x7e\x7a\x2a\xa1\x6e\xfc\xe3\x86\x2f\xa9\xc4\x66\xe3\x00\x05\x0d\x0d\x6d\xe4\xcd\xe1\xab\x7d\x1a\xa6\x84\x1d\x48\x6b\x1d\xf3\x40\x41\x92\x62\x98\xe0\x52\xb4\xdf\xc1\xc5\xa3\x24\xf3\x85\x6a\x99\x3c\x4a\xcc\xdc\xf9\x9a\x34\x36\x75\x56\xb6\x51\xcf\x55\xae\xed\x2c\xa7\xb7\x0e\x02\xe7\xff\x29\xb4\x06\x18\x60\x58\xe1\xc8\xef\xb7\x01\x5b\x09\x87\x77\x49\xf8\x09\x6a\x0d\xab\x17\x3f\x25\xfb\x79\x9f\xf9\xbd\x59\x25\x5b\x72\x74\xe5\x8b\x1c\xdf\x7c\x7b\x87\x5a\x28\x0b\x03\xc3\x42\x3b\x5e\xb6\x2a\xc9\x4b\xe3\x43\x25\xbc\x80\x7b\xec\x80\x56\x60\xee\x64\x70\x2d\xbd\x41\xfb\x34\x62\xef\x82\x8f\xb0\x6d\x16\xbc\x8b\x6d\x55\x96\xce\x0f\x4e\xc7\xab\x05\xe2\xae\xf9\xf1\xea\xd7\xcb\xe4\x82\x49\xf9\x86\xed\xb8\x5b\xc3\x6b\x08\xda\xad\x0f\x19\x99\x91\x0e\x67\xb7\x76\x62\xd5\xac\x89\x9d\x83\x0f\x49\xb9\x81\xfb\x08\xdb\x5d\x44\x18\x23\xca\x2c\x17\x6f\xd4\xae\x27\x41\xdf\xfd\x90\x22\x72\x38\x73\x02\x93\x36\x99\x98\x74\x2d\xec\xf1\xe2\x60\xb3\x30\xb5\x93\xf3\x6c\x34\x09\xaa\x7d\x90\x6b\x82\x6e\x6b\xf4\x86\x06\xfb\x52\xaf\x14\x21\x17\x83\xd0\x60\xdf\xb3\xe6\x8e\xef\x7c\xe9\x32\xce\x14\x2e\x50\xa8\xf1\x37\x85\xef\x45\xd5\xc1\xcd\x36\x65\x53\x6c\x7e\x6f\x4c\xe0\x86\x46\xc1\x2a\x5e\x0a\xb3\xf0\xcb\xe9\xfd\x09\xe8\x0d\x5a\x1a\xc1\x60\xc7\x33\x86\x76\x1a\xb2\xa5\x8e\xad\xfb\xf2\x4c\x25\x5a\x0c\x6c\x68\x4f\x29\x38\xb3\x4c\xcd\xe6\x9b\x6d\xe0\x38\x4c\xfe\xc1\xb2\xc4\xd8\xaf\x61\xdd\x80\xe9\x6f\x5c\x41\x07\x21\x26\x6b\x63\x4b\xdd\x0e\xfe\x41\xd7\x8e\x4c\x44\xff\x65\x6c\xab\xeb\xcd\xa0\xaf\x4b\x4a\xc6\xbc\x22\x7a\x7e\x06\x3a\x4a\xd4\x91\xc4\xb8\xf0\x30\x91\x60\xbc\xa1\x6c\x4a\x43\x17\xee\x60\xfe\x6e\xe8\xa8\x8b\x79\x20\x94\x25\x14\x5f\xf8\x58\xc5\x56\xd1\xe7\x57\x8e\x8c\x26\xd5\xec\x78\x6a\x87\xd0\x3a\xc9\x61\x90\x19\x21\x5f\xe0\x08\xe6\x07\x73\xaa\x36\x01\xb1\xb9\x20\xd0\x37\x2a\xf7\xa6\x19\x58\xe7\xc8\xb4\xa1\xa3\xa7\xd6\x05\x50\x42\xdb\x47\x7a\xac\xad\x06\xf1\x64\x5e\x12\x27\xa0\xa2\x83\x94\xd6\xaa\x4a\x0c\x45\x64\x07\xdb\xb7\x9d\x02\x72\x15\x9e\x69\xb6\xa9\x41\x2b\x81\x04\xc3\x08\xf7\x55\x81\x1c\x44\x0c\x51\x13\x73\x45\xba\xf7\x0e\x67\x83\x04\x04\xf6\xcf\x0a\x1f\x96\x27\xdd\x72\x60\xcb\x33\xa8\x68\x58\x45\x5b\x8b\x07\x4d\x45\xed\x1a\x28\xa7\xe9\xab\xc9\x35\xd5\x8b\xfc\x90\x8e\x1e\xa4\x50\xc1\xcb\xfb\xc7\x9d\xd8\x5e\xb1\x81\x50\x3c\x11\xee\xd1\x49\x80\xfc\xc6\xf3\xfe\x2c\x5a\x29\xec\xfb\xfa\x01\x20\x30\x1d\x18\xc0\x00\x09\x58\x36\xad\x05\xcd\xbc\xdc\x54\x29\x12\x78\xf5\xe8\xa8\x3f\xdd\x8f\x70\x92\x63\x6e\xa6\x7e\xa8\x10\x07\xcf\x31\x51\x9f\x3a\xef\xba\x0b\x54\xcb\xc0\xfe\x9c\x28\x94\xea\x79\x09\x5b\xec\xa3\xdd\x0d\xe9\x4e\xcc\x93\xdd\x68\x07\xe5\x11\xc1\x51\x91\x02\x17\x3e\x3b\xfa\x08\x73\x7a\x8a\xae\x09\xbc\xc6\x8f\xfa\x22\xdb\x73\x2b\x84\xeb\xe7\x00\x59\x06\x28\x98\x7b\x08\x38\x0f\x3c\x26\x1a\xf9\x76\x4a\xf7\x9e\x18\xdf\xca\x8d\xe7\xbd\x20\x86\xc2\x6a\xac\x85\x34\x75\xa9\x2b\xb9\x09\xd6\x1b\x66\xf4\xc5\xae\x3a\x85\x88\x54\x69\xd9\x53\xbe\x4b\x9a\x0f\x83\x7d\x5f\xa6\xd3\x2a\xf4\x51\xd3\x78\x6f\x2c\x2b\x80\x57\xc7\x0b\xca\x7d\xa9\x40\x90\x69\x7f\x14\xdf\x79\x68\xa3\x96\xe8\x65\xe6\x6b\x85\xd6\x67\xc8\x1b\x14\x42\x10\x22\x55\xc6\x63\xca\x67\x4f\x1a\x4f\xf1\xd3\x55\xd6\x64\xaf\xb3\x5e\xa2\x80\x3e\x84\x49\x95\xb3\xe8\x9f\x93\xc3\xc1\x85\x16\xfc\x8c\x1d\xa6\x2f\x94\x79\x43\x1e\xf5\xdc\xcf\x2d\x4d\x2d\x8e\xa6\x26\x93\x4b\x01\xfb\x09\x0a\x98\xd7\xce\x28\x49\x97\x33\x14\xd0\x8b\x94\x80\x0e\x99\x79\xd6\xcb\xa0\x7f\x67\xfe\x4e\x41\x1f\x7b\xc8\x97\x90\xd8\x35\x1e\xef\x9c\x4d\xc1\x32\x31\x3c\xc8\x3c\x56\x88\x8b\x79\xe7\xbf\x93\x92\x96\xef\x34\xfc\xd9\x66\xda\xd2\xb4\x0f\x13\xbb\x49\xd0\xbe\x6f\x0a\x0c\xf1\x6a\x3f\xbb\x8f\x07\x18\xcf\x50\x38\x18\x2e\x6a\x10\xc2\x7d\x90\x00\x7d\x4c\x28\x80\xbf\x1f\x31\x05\x17\x24\x2f\x9a\xe2\x03\x22\x60\x0a\xb8\x58\x55\xef\xfe\xb4\x94\x90\xd7\xf5\x5d\xd3\xc1\x73\xeb\xaf\x30\x95\xcd\x83\x6b\x59\xe1\x8d\x5e\xe7\xa9\xa5\x09\xd4\x75\xc6\x6a\x1f\x65\x56\xc1\xf0\x8d\xa9\x1e\xd8\xe5\x14\x5e\xbf\x1f\xf6\x08\xa1\xa3\xc8\xd8\x21\x8b\xd7\x72\x2d\x45\x16\xff\x6d\xd8\x09\x59\xfc\xa1\xf0\x68\x13\xfd\x05\x51\xd4\xd5\x88\x38\x63\x26\xb4\xe2\xe8\x4a\xd5\xf5\x44\xdc\x06\x9e\x67\xb9\x7c\xd5\xd2\x72\xb9\xb5\xec\xdd\x88\xb0\x6c\xe4\xd2\x3c\x33\xce\x22\x8f\xb2\x6a\xc9\x7f\x96\x58\xc0\xad\xb2\x51\x4d\x3c\x20\xab\xe0\x63\xa5\xb4\xe2\x18\xff\x86\x1f\x9e\x2e\x97\x44\x88\x4a\xea\x02\x63\x7b\x54\x28\xeb\xfe\xa1\xa7\x71\x86\x67\x75\xbf\x72\xd5\xd8\xdb\x64\x42\x9f\x5d\xdf\x9a\xd1\x05\x27\xc6\xd2\x21\xb4\x33\x49\x44\x4a\xf3\x3c\xc7\xd7\x2e\x68\xcc\xb8\x75\xbe\xb1\x15\x79\x38\xfe\x77\x41\x66\x62\x71\x20\xe0\x0c\xcc\x4d\x96\x87\x0b\xaf\x67\xcf\x7b\x71\x4c\x67\x80\xe8\x58\xf1\x92\x91\xe6\x2b\x26\x2b\x83\x47\xaa\x95\x6d\xca\x13\x4f\xd1\x04\xb8\xc3\x18\x4a\x73\x0b\xd6\x6f\x7f\x33\xb9\xcb\x86\x5a\xf3\x64\x64\xe3\x6d\x5c\xb3\x61\xe6\xfc\x23\xeb\x79\xdd\x3a\xba\xc3\x8d\xe7\x3d\x3b\xca\x54\x4b\x6d\x95\x27\x53\x8e\x17\x9d\xbf\x77\xf7\xa0\xeb\x79\x9d\x25\x7f\x72\x04\x93\x4d\x15\x40\xb0\xe0\xa5\x52\xc9\x88\xce\x10\x03\x0e\x1e\x6a\x0b\xfa\xdc\xc4\xb8\xd2\xcb\x5c\x42\xfc\x0d\xe8\xc3\x12\x84\x79\x76\x00\xfd\x4d\x9f\x8c\x42\xa4\xbf\x9e\x69\x25\xe3\xc0\x70\x6e\x2e\x9a\x82\xad\x3d\xb8\x96\x27\x2f\x32\x70\x63\xa3\x4e\xee\x17\xd9\x40\xa3\x7a\x4e\xb8\x86\xc8\x54\x33\x18\x1b\x04\x87\x3d\xc6\x8c\xb5\xee\x94\x3a\x27\xcc\x97\xf8\x85\x1f\xdc\xee\x20\x4a\x38\x83\x37\x6c\xb5\xde\x32\xed\xaa\x24\xac\xd6\xe0\xa0\xa5\x1e\x67\x9e\xfc\xd0\x0f\xc1\x6a\xed\x8d\x9c\xa4\x2a\xd3\xde\xfa\xe8\xda\x75\xa5\xcf\xd7\xf7\x2c\xe4\x0d\x35\xb9\x0b\x2e\x58\xa4\x2f\x1e\xab\xdb\x4d\xf2\x4b\x06\x2f\x9d\x38\xe0\xb1\xf5\xc1\x05\xf3\x37\xe3\x39\x8c\x89\x35\xe6\x23\x86\x43\xc9\x17\x5c\xa6\xf1\x8e\x6c\x94\xef\x4c\x2b\xbe\xb1\x08\x9d\x2d\x55\x96\x14\xc9\x39\xb8\x60\x56\x56\x7b\x47\x57\xd7\x29\x1b\x3a\xb6\x0b\x5d\xc1\xfe\x0a\xb6\x69\x33\xba\x99\x79\xc7\x16\x85\xb7\x43\x76\x6c\xea\x1f\x8c\x58\xdb\x7f\x04\x96\x88\x4b\x56\x26\x21\x32\x80\x0f\xb3\xaa\x43\x9e\x26\x2c\x96\x45\xdb\x62\xf2\x3c\x29\x46\x48\x42\x22\xeb\x03\x55\x95\x7f\x05\x51\xf1\x78\xf1\x4d\x4a\x99\xf9\x01\x15\xa3\x50\x72\x0d\x73\xbc\x33\x37\xf0\xe1\x73\xd0\xe9\x5a\x71\x67\x88\x37\x29\xde\x62\xff\x22\x6b\x83\x5e\x3b\xe2\x0a\x96\x59\x01\x0b\xf1\x9f\x13\x2e\x80\x0b\xfb\xf8\x8c\xc3\x1b\x62\x56\xd0\xa7\x2f\xd6\x93\x7b\x6c\xc3\x4a\x80\xa6\x54\xdd\x90\x53\x54\x38\x1d\xe8\xd5\x5e\xe8\x5b\x58\x29\xe2\x70\x46\xb2\xc2\x01\x96\xce\xd0\xde\x2a\x26\x6e\x45\xf6\x56\xd9\xb9\x15\x8c\xdf\x54\x84\xdd\x5e\x7b\x42\x18\x6c\x62\x3d\xe7\x5a\x23\xc5\x0c\xcd\x4a\x09\x9c\x54\x06\x0a\x2f\x1c\x2b\xda\xdc\x7e\x22\xa6\xbe\x0d\x50\x3d\xaa\x21\x91\x09\x58\x3c\x2e\x4b\x64\xe0\x1a\x63\xa0\x9c\x51\x05\x97\x59\xd2\x99\x57\x1c\xd3\xea\x8c\x32\x4b\xa5\x6f\x65\xe8\xa4\xf2\xcd\x1f\x53\xdc\xeb\x54\x15\x42\x77\x16\x75\xa4\x47\x3b\x77\x6d\x49\xb6\x8d\x27\x8a\x21\x35\x09\x11\xec\xb0\x21\xcf\xf6\x3a\x60\x0f\xf7\xde\xd7\x81\x07\x9e\x9e\xd2\x82\xf3\xbb\x97\x64\x8a\xbd\x29\xf5\x6c\x41\xd2\xf2\x83\x46\xa9\x0a\xf7\x98\xf7\xf7\x8c\xbe\xe1\x88\xdd\x26\x1d\x4e\xb2\xb5\xeb\x5e\x56\x55\x14\x49\xa9\x8a\xa4\x9e\xc4\x4b\x63\xfc\x9e\xe0\x37\x7c\xf4\x14\xb7\xdc\x91\x92\xbe\x6c\x04\xaf\x02\xbc\xbb\x8a\xc0\x95\xe8\x64\x51\x15\x75\x47\x51\xb9\x1d\xbe\xcc\xa5\x4b\xcf\xfc\xc4\x2f\x64\x10\x0d\x58\xf0\x01\x74\x6c\xfc\x0d\x61\x48\x28\x96\x28\xa8\x1a\x9f\xd8\xde\xa6\x9e\xa9\xc4\xb9\xd6\xf1\xec\x4a\x99\xf5\x29\xf2\xd6\x29\xff\x94\x05\x04\xb3\x93\x4b\x80\x93\xd0\xff\x9b\x48\x6c\xc1\x92\xab\xf0\x49\x14\x66\xb3\xa2\x62\x4a\x34\x53\x4d\xb4\xaa\x75\x79\x33\xb2\x38\x42\x95\x24\x6e\x38\xbc\xd0\x75\xc4\x28\x3f\xa9\xc6\x9c\x14\x9f\x42\x90\xe6\xe4\xc5\x37\x07\x45\x63\x84\x3c\x87\xab\xaf\x57\xb7\xde\x29\x1c\x76\xce\x40\xbf\xfe\xd5\x8d\x77\x0e\x37\x1d\xba\x5c\xfe\x82\x96\x4b\x74\x19\xd1\x41\x55\xa9\x4c\x9b\x9e\xda\x13\xa0\xd1\x83\xc7\x36\x57\xf5\x51\xbc\xfb\x97\x91\x24\xba\x14\xb5\x17\x79\xde\xcf\x21\x22\x32\x2a\x4f\x31\x26\x73\x28\x75\xf5\x49\x8d\x6d\xd9\xdc\xe4\x3b\x9f\x14\x32\x67\x7c\xd7\x97\x8e\x5c\xe9\xb6\x78\xa7\xd6\xe6\xbe\x63\x12\x9f\xa6\xdf\x9d\x50\x1e\x23\xaf\x69\x5d\x6b\xf6\x9d\x9f\x77\x13\x9e\xe7\xfc\xc9\xc2\x1d\xed\x2b\xbe\x55\xe0\xb0\x61\x30\x2f\x6b\x10\x77\x22\xb0\x0a\x77\x7a\x7a\x08\xe0\x39\x3b\x73\x76\x1f\x49\x47\xfa\x58\x2b\x7b\x03\x95\xb1\xc6\x55\xd7\xc9\x68\x40\x33\xa9\x21\x05\xae\x6a\x8c\x1b\x14\xb0\x18\x2f\x25\xd8\x43\xb8\xaf\x01\xe7\x59\x06\x8a\x9a\x11\xea\x54\x4a\xf4\x79\x13\x37\x4c\x22\x96\xdc\x60\xae\x52\x00\x9e\x23\xe7\xcf\xfc\x1d\xd8\x3f\x4f\xc5\x64\x01\x89\x63\x91\xe5\x6a\xc9\x0a\x4d\xd0\x77\x34\xb6\x96\xf8\x8e\xc4\xf2\x92\x4a\xa4\xdb\x9a\x46\x1b\xa3\x15\x04\x71\x20\x8e\x1c\xcc\x0c\xcb\xf4\xd6\x58\xa9\x60\xae\x36\x03\x48\xff\x21\xd5\x8f\x26\xb2\xb1\x47\x1b\xeb\xb0\x49\xb4\xa0\xc9\xf3\xd4\x27\xc2\x8f\x52\x79\x55\x61\x76\xd3\x0d\x6e\x12\x92\xff\x32\x02\x61\x90\xc4\x13\x2e\x54\x18\x2e\x23\xb5\x14\x39\xd4\x14\xd4\xc9\x06\x0d\x53\xdd\x82\x76\x01\x90\x1c\x15\x55\x49\x90\x09\xdb\x11\x62\x02\x6e\x30\xa9\x9c\x52\xc8\x11\x8b\x5e\x32\xed\xea\x88\xfa\x55\x0d\x0c\xc2\xa4\x3f\xf1\x06\xfe\xe8\xf8\x5b\xcc\xe1\x16\xaa\xe6\x94\xac\x42\xfd\xc3\x39\xec\x91\xe7\xcd\xfd\x65\xe8\x4e\xb3\x23\x07\xbd\x7e\x50\x88\xfc\x9a\x62\xfe\x07\x55\x10\x95\x4e\x72\xd8\xb2\xb8\x86\xa4\x7c\x07\x20\xa5\xd0\x59\xbb\xc8\x8d\xe5\x4b\xeb\xea\xd9\x78\x58\x67\x5d\x9d\x98\x2f\xc7\xaf\x36\x5b\x2e\x34\x25\x7b\xab\x5a\x53\x64\xbb\x82\x8a\x5b\xc6\xb6\x12\x72\xed\x2f\xc9\x67\x62\xd4\x03\x9b\xe0\x15\x1c\xd4\xf9\x99\x14\xec\xa1\xb9\xd9\xd6\xd4\xfa\x37\xe9\x12\x88\x46\x1e\x92\x8c\x8d\x5a\x55\xf1\xa2\x3a\x16\x4a\x7b\x22\x89\x2a\x04\x18\xb7\x22\x8b\xf9\x73\xd1\xb6\xd4\x70\x5e\xb4\x29\xfc\x5c\x22\x0d\xf5\xbe\xa8\xeb\x4f\x88\xe2\xa0\x05\x2e\xb1\x3d\x26\xee\x1c\xd6\x61\x97\xe0\x55\xf1\xe2\x21\x8b\x10\x58\x7b\xb8\xc3\x67\x45\xd8\xa6\x25\xaf\x25\xc5\x3b\x59\x38\x81\xe1\x82\x6b\x31\xee\x38\x84\x16\x15\x98\x14\xfa\x3a\x48\x4c\xcf\x34\x61\x72\x6b\xa9\x0d\x60\x59\x43\xd5\xbc\xa9\x85\x97\x97\xf2\x27\x31\x37\xbc\x87\x57\xea\xf0\x70\xf1\xaf\x6a\xcb\x92\xde\x14\x95\xca\x8e\x51\x7e\xfa\xe9\xec\x4c\xdf\xf3\xee\xa6\xf7\x32\x58\x14\x2b\x12\x72\x24\xb1\x55\x38\x1b\x61\xed\xa0\x8b\xd6\x34\x71\xb5\x81\xab\xd8\xc0\xa9\x92\x4c\x28\x49\xbd\x98\x2c\xc7\xf0\x1f\x6c\x22\x60\x17\xdf\x36\xf1\xd2\x92\xd2\x57\xcb\x60\x48\xd2\xc5\x3d\xd4\x79\xcc\x11\x77\x59\x0b\xbd\x60\xca\x45\xbb\x46\x75\x10\xc0\x5a\x3a\xec\x3c\x57\x43\x45\x5a\x08\xe3\x22\xe4\xd4\x60\x6c\xb1\x52\x4e\x45\x9d\x8d\x41\x5a\x7d\x40\x28\x67\x45\xb2\x05\xa6\x35\x25\x55\x43\xef\xc3\x0e\x33\xa7\x87\x0e\x5c\x2a\xba\x89\xeb\x28\xef\xbb\x39\xfb\x89\x42\x29\xc7\xec\x42\x29\x6d\x75\xb1\x63\xfa\x9a\x19\xff\x03\xad\xcd\xd7\xbf\xdc\xb2\x29\x99\x45\x54\x96\xee\xd4\xe4\xcb\x61\xe6\x04\x5d\x5c\x2e\xea\x59\x3a\xc2\x20\x22\xe8\x74\x2d\x9b\x42\x51\x19\x76\xa5\x56\x23\x5b\x9e\x94\xa7\x6a\x6d\x3a\x46\x3a\x24\x9f\x97\x0b\xdb\x39\xe4\x35\x31\xf5\x44\xaa\x1c\x4f\xa5\xa2\x65\xdd\xf8\x9d\xa6\x2e\x86\x51\x38\xa0\xaf\x2d\xcc\x08\x32\x06\x57\xee\x18\x27\xf8\xde\x8c\xc5\xaa\x25\x36\x77\x51\xd3\x3d\x3b\xd6\xb8\xba\xaa\x49\xd1\x54\xaa\xe3\x87\xab\x9b\x1a\xc7\xa3\x17\x53\x07\x66\x2d\xba\x49\x68\x5c\x8e\x81\x02\x05\xec\x2d\x3b\x2d\x7a\xac\x7c\xd1\xe2\x69\x4b\x4c\x3c\x0a\x1d\xe3\x1d\x07\x6e\x36\xfb\x75\x1c\xc2\xf8\x8a\x2e\x3d\x90\x53\x05\x0a\x7a\x52\x48\xac\x96\x2e\x6b\x82\xaf\x5c\x2a\x6b\xf2\x7f\x12\x38\xb7\xaa\xaa\x89\x94\xea\xfa\x6e\xbe\x86\x02\x6f\x25\x47\xb1\x89\x47\x8e\xa7\x21\xdf\x6f\x39\x23\xcb\xf7\xc7\xce\x3b\xf1\x1c\x63\x2c\x96\x77\x3c\xa1\xbd\x26\x51\xa1\x2a\xf6\x2f\x12\x6c\x95\x85\x94\x83\x03\xda\xb2\x45\xa1\xed\xa2\xba\x72\xab\x55\xa0\x36\x56\x15\x3d\x13\x8c\x16\x05\x19\x60\xa0\xab\xd3\x01\xa2\x10\xc7\xf2\x4f\xea\x8d\x13\x0e\xcb\xda\x3d\xa4\x72\x86\x4c\x51\x52\x58\x17\xab\x52\x59\x7e\x5f\xd7\x4c\xdd\xb6\x30\xc2\x37\x50\x45\x60\x54\xa5\x8c\xe9\xe3\x6f\x55\x22\xed\xf8\x7f\x9b\x5e\x4a\x54\x4d\x15\x06\x77\x58\xc5\xaa\x2e\x05\x3a\xba\x00\x49\xe9\xa7\x55\xd5\x12\xae\x9a\x45\xbc\x88\x8e\x38\x75\x43\x1c\x92\xc5\x0a\x83\x63\x64\x5c\xe8\xf2\x22\x03\xa4\x85\x4a\x12\x3a\x6a\x7c\x31\xda\xa1\x08\x14\xe3\xcd\x09\xa8\xb0\x9f\x25\x67\xfc\x31\x2e\x20\x79\x91\x4f\x98\xdd\xfa\x58\x20\x95\x72\x61\x1a\x43\xe8\xdc\xf8\x09\x54\x98\x96\x93\xa8\xe0\x59\x0a\x13\xcc\x59\x2f\x2d\x80\x5b\x9e\x33\x76\xbf\xc6\xbb\x3f\xa3\xec\xb4\xa6\xe4\x84\xc5\xb2\xa0\x26\x1d\x4a\x43\xc5\xe4\xa1\x52\xc8\x04\xe1\xeb\x58\xb4\x49\x02\x98\xb6\x1d\xa3\x93\x41\x25\xc4\x15\x98\x7d\x2a\xa9\x1e\x46\xd7\xf8\x34\xcb\xcc\xd2\x48\x2d\xa6\x26\xb1\xc4\xbf\xab\xf9\xaa\xa2\xe3\xbe\xe1\x5b\xfb\xe8\x88\x8b\x8d\x2f\xe9\xc5\x9e\x14\x5c\xd4\x53\x85\xa3\x97\xb4\x45\x80\xa0\x5c\xbb\xa0\x72\xc5\x5a\x16\xb9\x7c\xf3\xdf\x46\x8a\xa7\xac\x6e\xd9\x52\xcb\x6a\x7b\x91\xc9\x20\x10\xbe\x8e\x1c\x62\x60\xe2\x0e\x42\x75\x53\x2a\x2a\xd9\x9c\x2c\x8e\xe2\x19\xfa\x10\x0f\x17\xb4\x1a\x6a\x07\xf2\x27\xbe\x79\xd4\x5c\xcc\xe4\x56\x51\xf6\x25\x47\x3b\xd0\xa3\xba\x8c\x21\x88\x3a\x1e\x95\xd3\x84\xae\xd6\xdc\x58\x0e\x56\x1c\xb7\xcc\xee\x8a\xf3\xad\x16\xfe\x3a\x91\x70\x95\x39\x44\xe4\x1e\xde\xec\x6a\x74\x9a\x97\xe1\x6d\x48\x06\x41\xea\x0b\x11\xea\x63\x06\x75\x36\x74\x35\x6a\x8a\x47\x70\x5b\x8e\xf1\x4c\x35\xa5\x1c\xa1\x38\x41\xfe\x9d\x5d\x73\x82\xa0\x25\xcd\xf0\x0c\xbb\xc3\xe1\x96\xbe\x5d\x65\x39\x1f\x99\x4f\x95\x7b\xfa\x42\x6d\xa6\x34\xad\x72\xdd\x0c\x7d\x6b\xec\x33\x1d\xcf\xeb\xed\x95\xf8\xe2\x59\x7c\x1a\x21\xbf\x7f\x58\xff\xe4\xcc\x6a\x98\x59\xfc\x82\xa9\x43\xe1\xe9\xb1\x0d\xc9\x5c\x85\xfc\x44\xe8\x98\xb6\xee\x13\x4a\x0f\x2f\x89\x35\xdc\x09\xad\x88\xd7\xfc\xb3\xa8\xcb\x43\x9d\x98\xa2\x31\x03\xac\x83\x1e\x1c\x70\x18\x8e\xc2\xde\x41\x84\x38\xe4\x67\x46\x28\xf2\x93\xcf\xa3\x82\x4b\xc8\x55\x0d\xac\x1c\xf3\xbc\x8a\xfe\x31\x90\x53\x83\x31\x58\x27\x00\xeb\xb8\xee\xaa\x08\x14\xda\x53\xd7\xd6\xd0\xf8\x6e\x3e\xa1\x48\xe8\x11\xa6\x19\x23\x0c\x1a\xc9\x11\x86\xf5\xf4\x08\x33\x3c\x35\x7f\x6f\x84\x50\xe4\x57\x67\x84\x60\xce\x78\xbb\x90\xea\x0f\xf5\x94\xa6\x13\x19\x4d\x27\xe2\xec\xd9\xd0\x34\x9a\xb6\xc6\x5d\x7a\x98\xb2\x28\x41\x18\xee\x6d\x11\x6c\x53\x0a\xff\xf2\x08\xa5\x96\xee\xc9\xa2\x07\xc2\x9d\x78\x83\x39\x36\xbe\x82\xc4\x24\x48\xd6\xeb\x14\x3a\x47\x54\x9f\xfa\xd6\xf3\x8a\x81\xe3\x4e\x54\xd3\xb0\xe7\x7f\xf0\x68\xe3\xc8\xb6\x4f\x26\x50\xf8\x65\x50\x4f\x82\x8d\x9d\x3b\xe3\xa6\xa2\xe7\xbf\xf4\xea\x37\x6a\x43\x06\xc2\x46\x54\x71\x59\x07\xb0\x12\x25\x03\x9e\xd6\xcd\x4f\x41\x43\xe2\x79\x34\x1f\xed\x79\xd3\x01\xc4\x04\xbe\x27\x31\xef\x92\x9b\x08\xb3\x3c\x26\x76\x4d\x99\x0c\x4f\x15\x7c\xa1\xf6\xe1\x29\x6e\x69\xd2\x79\xe8\xd9\xbe\xca\x1c\x30\xa3\x32\x41\x79\x49\x3b\x1c\xca\xbd\x23\xf3\xc6\x43\x3d\xdb\x51\xa3\xc4\x78\x58\xa0\x9d\xed\x13\xc1\x2f\xc8\x33\x7d\x3d\x89\x00\xf0\x3f\xbc\xa2\x91\x46\x60\x49\xd7\x7f\x7f\x79\x92\x4d\x87\xd5\x15\xb3\x90\xd6\xe9\x1a\x92\x3b\xf3\x22\x95\x83\x57\xaa\x6a\x41\x25\x88\xe4\xa0\x8c\xf0\x01\x92\x75\xcf\xfe\xc7\x2f\x28\x79\x69\x85\x05\x17\xcf\x2c\xb4\x48\x31\xec\xf8\xf7\x1f\xb8\xb1\x7a\xc5\x28\x13\xb8\xb2\xb0\x88\xa1\xd0\xf1\x3c\x32\xea\x6f\xfc\x46\xd9\x1d\xb4\x4c\xcd\x71\xc7\x5c\xdd\xab\x24\x20\x48\x31\xc8\x24\x08\xde\x2b\x3d\xd5\x53\xa5\xa7\xb8\x5c\x34\x6b\xd2\x6f\x22\xb8\xbe\x5b\x7f\x6a\xe7\x37\xb8\x70\x6a\xbf\x79\xb4\x8f\x13\xbf\x81\x90\xd1\xa8\xf8\xb6\x23\x61\x60\x53\xb9\x5d\xfd\x99\x26\xeb\x48\xd3\x15\xf6\x0b\xb3\xad\x65\x1d\x3a\xb6\x13\x16\x31\xac\x59\x24\xb2\x7d\x02\x3f\x36\x8e\xe0\xf9\xa9\xf3\x99\xfb\xa2\x63\x1c\x59\x9a\x7a\xb1\x4f\x9e\xf7\xab\xcc\x59\xdc\x8b\xb6\xb5\xda\x0e\x03\xa5\x4e\xc2\x12\xaf\xcd\xb2\x26\x41\x17\xd0\xec\xc3\xf6\x2d\x3e\x11\x51\xe5\x17\xaa\xfb\xa2\xdd\xb6\x35\xa4\x4a\x5b\x07\x8e\x41\x7a\x50\x47\x98\xd7\x5b\x3b\xf0\x13\x05\x72\x5e\x1c\x7d\x69\xb5\x04\x20\x4e\xea\x5c\x36\xa4\xa1\x1c\xfc\x52\x7a\x43\x4a\x82\xd6\x45\xad\x10\xc5\x47\xd7\xd7\x65\x14\x63\xaf\xe6\x30\xc0\x96\x4e\xca\x28\x10\xe1\xbc\x30\x43\x51\x06\x8c\xdf\x5d\x81\xfb\xaf\x67\x62\x10\x32\x24\x82\xab\x21\x70\x21\xca\x89\xe3\xd6\x08\xa6\x03\x9f\xa2\x11\x02\x06\x6d\xad\xa6\xac\x3e\x39\xc8\xc1\x3c\xd2\x76\xc3\x3f\xf3\x6c\x85\x1c\x80\xd7\xb1\xf1\x64\xc2\x39\x43\x28\x0c\x31\x0b\xc1\x78\x39\xd9\x28\x96\x79\xd8\xf4\xc0\x79\xa4\xe1\x8a\x6b\x76\xb3\x30\x12\x6e\x78\xa4\x2d\x4c\xbf\x8c\x7a\x7b\xfe\x75\x60\xea\x73\xe4\x5f\xa3\x90\xad\xa2\xfc\xab\x01\xb0\x34\xf9\xc0\x50\x14\x35\xef\x5e\x1e\x57\x06\xc8\x8a\xe6\x2c\x43\x2f\x2a\x15\xd5\xea\x26\x41\xd6\xea\x84\x8c\x9c\xcf\x0c\xdd\x15\x98\xe3\x1c\xc1\x94\x23\xdc\x1f\x9a\xd2\x2a\x5c\x66\xb6\xf3\x7f\x82\x95\xe7\x6a\x49\x56\xde\xfd\x98\x95\x53\xb2\x52\xa4\x2b\x0a\x4e\x3b\x97\xe5\x3b\x33\xb2\x92\xef\x48\x92\xfe\x6a\xdb\x11\xcc\x3b\x97\x18\xda\x8e\x18\x5a\xd0\x8c\x59\x53\x6b\xf6\x5a\x7f\x97\xaf\x0d\x3e\xc3\x7c\x82\xf1\xc0\x77\xd8\x4f\xb4\xe8\x30\x11\xa3\x2a\x10\x19\x60\x76\x28\x2f\x94\x1c\x6e\xbe\x3b\xed\x3a\x13\xda\xe8\x7c\xa2\xad\x8e\xad\xe3\xb3\x97\x73\xac\x47\x62\x20\x42\x35\xd1\x59\x9b\xa7\x33\x6e\x3b\x21\x62\xb9\xbf\xd1\xba\xa7\xca\x6a\x07\xcd\xbb\x0e\xcd\xbb\xfe\x37\x9a\xb7\x7c\xdb\x68\xde\xa4\xc8\x74\x6c\xe0\xf1\x9a\x24\x3e\x2e\xd6\xf0\xaa\x92\xfc\x6c\xff\x40\x2a\xae\x0e\xcf\x54\xc5\x17\x19\x0e\x4a\xfc\x86\x43\x30\xa4\xd3\x51\xf1\xc4\x77\x77\x40\x7d\x6e\xc8\x0b\x8f\x65\x25\x10\x8a\x19\xbf\x52\xbf\x2c\xfb\xcc\xaa\xae\x7d\xc4\x55\x77\x79\x2c\xc7\x4e\x15\x8b\x56\xcd\x97\x18\xb1\x46\x3f\x4b\x55\x90\x7a\x23\x04\x88\xc7\x30\xc9\xb1\xff\x46\x0c\xb0\xd1\xdb\x91\xe7\x51\x60\xc8\xc8\x5f\x54\xf5\x78\x41\xb3\xbf\xe4\x76\x80\x7c\x36\xf5\x11\x79\x46\x89\xc6\x86\xd2\xa1\x9b\xf5\xb4\xf1\xe7\x54\x57\xd6\xa9\x79\xd5\x31\x11\x10\x9e\xc7\xbb\x74\xa7\xc9\x81\xdd\xe9\x1d\x74\x1b\xe0\xc5\xc5\x63\xaf\x0d\x32\x68\x21\x8f\x3a\x89\x0b\x6d\xc6\x1f\x65\x92\xbc\x92\x02\x59\x16\xc9\x9b\x48\x32\xa3\x21\x79\x0b\xa9\x56\x69\x0a\x65\x6b\xb2\x18\xa3\xd8\x06\xbf\xd7\x18\x53\x7a\x61\x55\x51\x53\xf8\x04\xdc\x3a\xa2\x0e\xa6\x35\x1c\x97\xf0\x24\x5b\x3c\xc6\xff\x0a\xee\x95\x4c\xa0\x13\x59\x49\xeb\x9f\x40\x3d\xd3\xa9\xaf\x92\x42\xbd\xea\x7f\x05\xf5\xbc\xde\x7f\x88\x79\xc1\x71\xe0\x8b\x0b\x8f\x17\x5e\xac\xfc\x15\xf2\x1d\x80\x7c\xe1\x3f\x46\xbe\x95\x46\xbe\xc1\xff\x35\xe4\x93\x4e\x68\xf3\xd3\x47\xc8\x37\xc1\x9d\x87\x7f\x11\xf9\x24\xc0\xf3\xe1\xff\x4f\xc8\xe7\x85\xa2\xe0\x3f\xfc\xab\xa8\x17\x54\xdf\x3e\x89\x7b\x27\x91\x9d\xba\x17\x7b\x15\x2a\x1b\xc7\xb4\x71\x71\xff\x6a\x8e\x10\x66\x23\x86\xe3\x6b\x75\xe1\xe8\x25\xc4\xb8\x90\x4b\xda\x2d\x82\xc3\x6e\x26\xd8\x67\xbf\xea\xb2\xa1\xef\x55\xde\x90\x8a\x5b\x46\x74\x84\xc5\x4f\x6a\x4c\x8a\x0d\x79\x05\x2d\x20\x70\x0b\x81\xb9\x37\x4d\x21\x30\xe0\x1e\xc6\xd8\x97\xd3\x8f\x85\x5e\x50\xbc\x33\xf6\xe2\xf8\xa5\x65\x23\xc3\x34\x87\x17\x53\x11\xd4\x3a\xee\x91\x9f\xe1\xc0\xe9\x13\xac\xbc\xf7\x9e\x57\x0e\x51\xcc\x44\xa9\x55\x1c\xc4\xfb\x54\x67\x6b\x6a\x49\x3a\x64\x23\xd5\xa8\xc6\x13\xaa\xaa\xce\xfe\xe3\x6f\xe4\x50\x91\x18\x5c\x5b\x8e\x55\xf4\xfa\x5b\x35\xa9\x5b\xcf\x5b\x90\x2d\xae\x1e\x28\xa1\x54\xd6\x20\x88\x4c\x8a\x20\x7c\x3f\xb3\x47\x55\x67\xfd\x91\xcd\x6a\x1f\x7c\x29\x8a\xb7\x5f\xe2\xb9\x6e\x28\x59\xfc\x81\xcb\x51\xa1\x16\xe6\xb6\xa1\x0c\x1c\x62\xd2\x56\x35\xdf\xc4\xed\xd4\x54\x8f\x0d\x9b\xca\x59\xa1\x91\x52\xf7\x83\x5b\x34\xb3\x37\x2a\xa0\xf2\x95\x5d\xcf\x5b\x22\xd4\xe3\x84\x43\x33\xe7\x38\xb4\xd1\x2b\x81\x79\xe5\xd7\x5e\x33\xde\xcf\xa1\x07\xa3\xd4\xf5\x7f\x54\x7d\x21\x80\x8b\x95\x47\xf4\x85\x20\x38\x2e\x7c\xa3\xae\x73\xa3\xd6\x28\xcf\x24\xc0\x98\x89\xbf\x38\x02\xa0\x1c\xd0\x3c\x28\xa2\x98\x7b\xf7\xec\x83\x3c\x4b\x16\x78\x0f\x74\xb6\xf9\xf0\x97\x13\x09\x93\x13\xe1\x03\x2f\x32\xd5\xbe\x91\xd2\xee\x11\x5e\x81\xbe\xfc\x38\x94\x89\x67\x56\xb6\x61\xbf\x78\xaa\xf4\x31\x70\x2f\xb9\x29\x04\x3c\xe4\x6a\xab\xd7\x1d\x54\x19\xd5\x84\xe2\x1d\x35\x96\xb0\xaa\x64\x74\x35\x37\xba\x52\x25\xaf\xde\x38\x0b\x1a\x35\xac\xc0\xa9\xba\x0d\x19\x04\xd3\xe7\xb2\x6b\x97\x57\x6c\x39\x8b\xe9\xa9\xd2\xdd\x3d\x52\xe7\x48\x2d\x14\x14\x1a\x38\x83\xe5\x2a\x36\x70\xb0\x93\xaf\xba\x98\x3c\xc4\xff\x13\xfc\x9f\xa0\xb5\x2e\x6e\xca\xb6\xef\xde\x62\x66\xcb\x26\x8d\x6f\x83\xbe\x5e\xe0\x8d\xe2\x67\x70\x19\xc6\xb8\x3e\xa0\x05\xd5\x7d\xc0\x3c\x3e\x8b\x4b\x3f\x11\x8c\xd6\xf7\xbc\x93\x0f\x23\x67\xee\xd1\xb8\xfe\xd8\xff\x77\x7e\x48\x79\xdb\x6d\x48\xd8\x88\x60\x3a\x74\x06\xdc\xf5\x63\x32\x3a\xf0\xf7\x9c\x31\x97\xe2\x4b\x49\xd4\x99\xf5\x54\x04\x33\x45\x03\xde\x6b\x4a\x59\x79\x93\x1d\x69\xb6\x97\xf1\xc6\x36\xda\xbb\x88\xa3\xbc\x93\x06\xab\xad\xb2\x1f\x0a\x98\xe5\xdc\xbc\xc9\xdc\xd0\xa7\xcf\xbb\xd9\xf7\x05\xde\xf7\x5e\xb3\x5d\xff\x7a\x75\xe3\x35\xda\x9b\x2e\xa9\xcf\xcd\x76\xbe\xc3\x9f\xfa\xea\xf1\xcf\xaf\xfc\x93\x6d\xf6\xf7\xa8\x6b\xe4\x54\x27\xe1\x75\xbf\x9c\x98\x6c\x10\x14\x3d\x88\x99\x44\xe8\x9c\x89\x80\x60\x56\x1e\xad\x55\xd2\x84\xe8\xa2\xbd\xf9\x84\x83\x01\x1f\xd5\x18\xb0\x20\xbb\xfd\xb2\x38\x56\x1c\xcd\xf0\xa3\xb2\xa9\x82\xb4\x4b\xc6\x34\xcf\x11\x83\x97\x7f\xa7\x04\x20\x84\xb3\xef\x36\x9e\x08\x19\xc9\x12\x30\x2c\x91\xda\x34\x15\xf7\x5d\x11\xe9\xc6\x6e\x4d\xaa\xc9\x13\x0d\x56\xed\xe9\x67\xb9\x50\x3d\xf6\xa8\xdc\x48\x9a\x8e\xc3\x54\x59\xa0\xaa\x06\x75\xae\x6d\xbc\xa3\x9d\x31\x6c\xa5\xa6\x3c\x6c\x87\x0c\x8d\xb7\x9e\x57\xf4\x47\xd0\x9a\xa4\xd7\x1d\xea\xb7\xc2\xe6\x28\xa4\xf6\xdd\x18\x68\x64\x57\xb5\xf9\x88\x11\x40\x68\x2f\x3a\xb0\xb3\x56\x22\xd3\x24\xe7\x89\x4f\x4e\xfc\x77\xfd\x2e\x03\xd2\x2d\xb5\x9e\x27\xa9\x28\x4b\x26\xf6\x75\x07\x39\x02\x12\x15\x7c\x4c\x34\xdc\x38\xda\x6f\xbc\x48\xe3\xbb\xaa\xed\x04\xc3\x72\x81\x54\xcc\x46\x59\xcd\x91\x8e\x5f\x2b\xa1\x73\xa9\x0b\x69\x6a\xdb\x1e\x6c\x9f\x4c\x0a\x0d\x49\x6f\x1f\xec\x46\xe8\xa6\xa9\x71\x0c\x49\x2b\xc1\x90\x67\xc6\x70\xab\x65\x3e\xe5\x7c\x24\x00\x75\xe4\x9b\x65\x0e\xca\xe9\x28\x13\x59\xd7\x96\xab\x97\x02\x23\x91\x95\xe1\xb7\x2c\x78\x4e\x82\x78\x89\x9b\xd6\xd1\xe6\x19\x47\xe9\x82\x8b\x4e\x4c\x28\x4b\xbb\x21\xf4\x5f\x32\xcc\x23\xb9\x8f\x1b\x67\xb9\x55\x88\x11\x0c\x07\x26\xc5\x29\x0f\x3d\x27\x5d\x63\x4a\x96\xc9\x62\x04\x70\x49\xbe\x0b\x69\x5a\xc8\x97\xd0\x35\x32\x2a\x58\x71\xde\x85\xf2\xcc\xc1\x62\x03\xe5\x8e\xe7\xed\x08\xd7\xbf\xa3\x0c\x47\x4b\x1d\xa9\xde\xf0\xc1\x3e\xd6\xd1\x01\x0f\x15\x8e\xa1\x2b\xf8\x52\x3d\x95\xaa\xd2\x68\x22\xcd\x19\xfc\x33\x1f\x70\xdc\xb1\x74\xd0\x95\x5e\x0b\x73\x1e\x13\x4e\x96\x06\x47\x05\x3b\xd5\x9a\x5f\x1a\x92\xce\xec\x2e\x64\xc1\xe4\x49\xdc\x27\x4f\xa6\xb0\x76\x08\x7c\x95\xc2\xae\x26\xd3\x92\xd3\x36\x51\xdd\xf2\x1f\x40\x3f\xf2\x82\x39\x07\x9a\xe5\x1a\x99\xb0\x7d\x0f\x83\x8d\x48\xb3\x64\x0a\x5b\x43\x3d\xfb\xfa\xd2\xb2\x70\xb2\x95\xd7\xfc\x77\x21\x42\x85\xd0\x8e\x8a\xe2\x0e\x8d\x27\x87\x92\xad\xdc\x4c\x02\xdd\x7e\x2d\xfe\x9d\x7d\x3a\x17\x28\x10\x5a\xf5\x1d\xa9\xf7\xdd\xda\x94\x12\x5a\x1f\xc1\x1e\x1e\x5e\xe8\x3f\x19\xa8\xad\x64\x00\x34\x55\x18\xb0\x2e\xe1\xb6\xd5\xf2\x08\xd6\xcd\xcd\xad\x43\x5b\xe8\x56\xfc\x69\x6c\x22\x5d\x2c\x3f\x31\xe3\x99\x4a\xfc\x65\xe8\x30\xcd\xdc\xf3\xbb\x03\xfc\xef\xd4\xf8\x67\x2f\xfb\x32\x60\x56\x82\x76\x1e\x91\xb4\x86\x5c\xf0\x88\xa5\x43\x26\xd1\x07\x91\xff\x54\xe2\xcb\xbf\x48\xf4\x31\x30\x7f\xf5\x7f\x89\xea\x97\x7f\x9b\xc8\x06\xe2\xeb\x9f\xd9\xab\xf8\x9f\x6b\xbd\x4b\x96\xe0\xf3\xd1\xa3\xe5\x45\x15\x6c\xcc\xf0\xc4\x96\xa7\x45\x68\xee\x11\x29\x78\xc8\xde\x22\x40\x1a\x61\x54\xd7\xb6\x35\x6a\xb9\xab\xc4\x45\xe9\x99\x4a\x34\x1d\xd5\x52\x9e\x52\x97\x14\xe1\x89\x0e\x28\xed\x20\x1d\x6a\x5c\xa9\xa5\x24\x26\xa3\xd4\x5d\xb5\x72\x78\xec\xae\x6e\x9d\x20\xfa\x51\x52\x0d\x05\xd7\x9b\x3b\x4b\x58\x73\xe0\x35\x0a\x41\x4a\x86\xa1\x34\x88\x40\xea\x34\xba\x1f\xb0\xd3\xc6\x09\x0b\x9d\xb3\xfb\xe4\xc4\xf3\x61\x33\x4f\xae\xe0\xb4\xd4\xa8\x16\xd5\x79\x75\x74\x36\x65\xfe\x8a\x3c\xef\x00\x39\xbd\xb1\x77\x0e\xce\xd9\x3f\x19\x76\xf9\xee\x09\x24\x8e\x41\x53\xe4\xe2\x31\xa8\x00\xb5\x2a\x4a\x27\x0a\x29\xc8\x2d\x36\x49\xa7\xba\x3c\xd7\x67\x39\x9d\x7d\x64\xe9\x9d\xa5\x0a\x3c\xdf\x1e\xc0\x11\x7c\xa6\x3e\x2a\xc1\xf6\x55\x1a\xb3\x20\xcc\x7c\x65\x1a\x4a\x4c\xcf\x68\xaa\x8e\xa2\xa9\xfc\x8b\x1d\x84\x92\x42\x2d\x46\x1c\x97\xaf\x22\x52\xbd\x76\xf6\x13\x32\xb4\xf4\x67\x47\x25\x0c\x44\x6f\x96\x59\x11\x99\xa1\xa9\x84\xb4\x64\xdc\x60\x98\xb5\xd3\x48\x60\x21\xf5\xd1\x22\x5b\xe7\xf3\x4d\x8f\x76\xbc\x77\x66\x1d\x88\x59\x90\x66\xc4\x90\xe7\x0c\x93\x92\xf4\x7a\x45\x93\x0a\x1c\xf0\x15\xac\xb0\xd5\x92\x83\xa8\xa8\x7f\x76\x34\xc0\x70\x3e\xcc\x34\xe2\xc8\x0b\x19\x60\x60\x11\xe5\x5d\x8c\x47\x8f\x70\x29\x39\x19\x68\x72\xc0\x67\x6b\x9b\xb5\x61\x85\x64\xbb\x11\xdd\x87\xc4\x69\x16\xa2\x5b\x83\xa4\xaf\x64\x3e\x6a\x07\x2f\xaa\x2b\x35\xdf\xf3\x6a\xf4\x68\x70\xee\x17\x53\xdd\x4a\xf2\x65\x3f\xc9\x97\x24\xb8\x18\x7d\x2b\x2f\x3f\x4b\x00\x7e\x72\x4e\xaa\xe4\x0a\x39\x81\xee\x79\x56\xcb\xa4\xc2\x3c\x23\xc8\xd0\xc1\x04\x83\x36\x22\x8c\x66\x9d\x67\xa0\xd4\x2e\xd4\x3b\xfe\xe5\x13\x93\xac\x3f\x31\x45\xba\x8f\xf9\x6d\x98\x41\x76\x66\x68\x9f\x95\x68\x4d\xbe\x09\x3f\x41\x8d\xf2\x90\xbb\xd8\x3c\x09\xc3\x64\x05\x8d\x12\x44\x70\x1b\x1c\x5c\x41\x0e\x62\x2e\xd7\x1d\xca\xa2\x61\x07\xf6\xef\x0e\xfd\x14\x2d\xfb\x43\xbd\x5c\xc9\x9e\xeb\x44\x17\xff\xcb\xf4\xeb\xc9\xf3\x46\xa2\x2a\x10\x68\x87\xc1\x22\x4c\x52\xb2\x18\xdd\x66\x2d\x42\xae\xb1\xc9\x71\x89\xa9\x56\x66\x17\x1e\x90\x2b\x6f\x12\xfc\x97\xc8\xd5\xbe\xe0\xa7\x49\x4b\x92\x50\x09\x85\x28\x7e\x4c\xa8\x82\x0c\xba\x97\xa0\x54\xfe\x95\x8d\x0e\x8b\x58\x5c\xf8\x37\x28\x55\xf2\xcb\x4c\xaa\xf6\xbc\x94\xdc\xe1\x2f\x48\x95\x63\x6e\xf8\x76\x99\x54\xc5\xb2\x0e\xef\x09\xae\xcb\xd1\x1e\xd5\xa4\x8b\x1d\x6e\x8c\xd5\x0d\x26\x4c\xfa\x0a\x3f\xb3\xa6\xa2\x7b\xc1\xf9\x0d\xb3\xf9\xa6\xbf\x88\x72\x76\xf6\x8b\xf2\xa9\xf8\x0a\x53\xb4\x25\x8a\xf6\x99\xd7\x15\x24\xf1\xfa\xc4\x7c\x7e\x9d\x4b\x93\x00\x97\xa6\x59\x14\xad\x26\xc8\x05\xe9\x38\xce\xb3\x13\xb3\x88\x3c\xb2\x2d\x50\x0d\x50\x2c\x96\x43\x5c\x06\xcd\x7b\xc4\xe6\x34\xd3\xc2\x55\x7a\x12\x2c\x0a\x6c\xcf\xff\xc1\xc0\x14\xc1\xff\x19\x2a\xcc\xb6\xaf\x45\xf0\x09\x2a\x5c\x34\x34\xe2\x22\x15\xa6\x7a\xa7\xc1\xf4\xcd\x11\x58\xfe\x5f\x80\x95\x30\x03\xd3\xc9\x79\x97\x03\x6d\xfe\x40\x67\x0c\xa1\xe5\x04\x55\x0e\x91\x59\xd4\x3e\xf1\x9e\xa3\x41\xbf\xa7\x6c\xce\xac\xc9\x05\x15\x34\xe6\xda\x2c\xc0\xce\xa5\x3a\x53\xc2\x85\x4a\xd9\x45\x6f\xf5\x1d\xce\xfe\xc9\x4c\xc2\x86\xa7\xd6\x2f\x19\x1f\x22\x5b\xf1\x2d\xd0\xec\x30\x27\xa6\xc0\x2a\xeb\x24\x65\x1b\x0a\x2c\x35\x15\xbf\xe8\x4d\x82\xe5\x6a\xd4\x30\x5d\xd6\x28\x0b\x0f\xc7\x90\x63\x81\x4a\x04\xec\x69\x67\xdd\x71\x76\x24\x54\xce\xc9\x78\x44\xe4\xf9\xcd\x8d\xee\x47\x95\xfd\xc6\xef\x19\x4b\x39\x8b\x87\x55\x8d\xe5\xbb\xef\xb1\x1d\x56\x76\x32\x5e\xcd\x73\x96\x16\xaa\x14\xda\xc8\x4d\x6d\x43\x60\xd7\x0e\xc5\x56\x97\x60\xb9\xef\x40\xff\x79\xeb\x5a\x89\xc9\x9d\x07\x95\xff\xd8\x4c\xfb\xbc\x53\x3e\x42\xc2\xfe\x1c\x23\x79\x95\xbd\x34\x12\x31\x2a\xd1\x41\xb8\x7b\xce\xd9\xdf\xa8\x4f\x94\x33\x0f\xf6\x6c\xee\x01\x7e\xd5\xc0\x78\x12\xa3\xf1\x5d\x82\x66\xc7\x24\x9e\xb8\xf5\x92\x72\xcf\x57\x7d\x2f\x58\xf6\xaf\x3a\xde\xed\xe2\x47\x89\x93\x7e\x6e\xc4\x26\x1e\x79\x77\xe7\x1f\xaa\xc6\x54\x73\xa9\xba\x41\xe5\x96\xbe\x74\xdc\x09\xa6\x81\xf2\x9e\xe7\x53\x87\x48\x20\x93\x0b\x98\xe8\x97\x83\xbd\x83\xaa\x15\x9b\x3a\x14\xda\x7e\x1f\xab\x26\x47\x74\xca\x96\x73\xe8\x1b\x97\xec\xb9\x37\x9a\xf5\x8a\x18\x48\xfe\x26\x4a\x9e\xb9\xad\x39\x73\xb1\x98\xe5\x6f\xef\xcd\x03\xe4\x12\x6a\xb7\xad\x0d\x68\xd9\x4a\xea\x91\x86\xea\x1c\x19\x19\xbf\x58\x2d\xdf\x9e\x65\x63\x9c\xd0\x58\xef\x0e\x12\x1f\x2a\xee\x5e\x8f\x04\xca\x06\x67\xd2\xd2\xe1\xef\x36\x41\xdc\x73\x35\x11\xee\xeb\x35\xe5\xf0\xfb\x49\x1f\xed\x31\x79\x8b\xa7\x4c\x97\xef\x93\x96\x67\x2e\xc9\xca\xdd\x06\xa5\xc5\x54\x03\x05\x66\x8a\x96\xae\xc5\x1b\x3b\xb3\x99\xdf\xac\x7a\x55\x03\x1d\xf3\x88\xb7\x7a\x32\xaf\x46\x41\x45\x4d\x98\x93\x27\xe7\xfc\xbe\xa4\x0b\xe2\x90\xb5\x99\xf4\xe3\x3b\x5b\x5a\xee\xc6\x54\x24\x16\x0d\x59\x95\xf0\x71\xd3\x1a\x71\xaa\x3c\x36\x6f\x3a\xa5\x83\x60\xef\x1d\x3c\x88\xe9\x33\xb4\x11\xb4\xd6\x46\x07\x6b\xe9\x11\xc5\xb9\x75\x0e\x2a\x35\xca\x0a\xca\xbf\x28\x2e\xf5\x77\x9d\xcd\x68\x52\x26\xae\x6e\x0d\xb2\xa1\x0a\xc5\x31\x1d\x44\x82\xf1\x1b\x4a\xfe\x20\x52\x66\xf4\xc0\x5d\xe2\x9d\x6e\xe3\x58\x4c\x4e\xec\xa8\x38\xae\xce\x0a\xd0\xcc\x9b\x3b\x6a\x4c\x03\x97\xad\xb0\x0d\x73\xed\xa6\xdf\xc6\x20\x75\xe1\x33\x98\x64\xf8\xa3\x4c\x7a\x88\xeb\x9d\x70\x3b\x9d\xc7\x9b\xce\xc4\xed\x27\x27\x8c\x7c\x77\x3a\xd1\x4e\xc8\xe6\xf4\x44\xf6\xc6\x67\x40\x1c\x8e\xd4\xc8\xf3\xf2\x81\x86\xa7\xe0\x49\x11\x6c\x48\xca\x4b\x9c\x9d\xe4\xdd\x55\x83\x88\xd9\xc0\x2f\x6f\xfd\x8f\x10\xe5\xde\xf3\x9e\xc4\x0c\x48\xcf\xce\xc3\xcf\xe3\x48\xcf\xf3\x9e\xc4\x5d\xf7\xc4\x65\x8a\xc8\x64\xc8\x1b\x54\xe1\xbe\x24\xf9\xfb\x6c\xb4\xd9\x71\x69\xc3\x25\x82\x4b\xf4\x02\x06\xb4\xd1\x0d\x72\x44\x6c\xdb\x28\xbe\x28\xf9\x5a\x12\xc3\x34\x63\x3b\xfe\xe1\x5a\x2d\x51\x04\x87\x5a\x8f\xf3\xe2\xbf\x6b\xcc\x3a\x98\xce\xa5\xf4\x53\xf4\xd4\xf7\x11\x88\xd7\x82\x94\xc8\x05\x95\x45\x9a\xb6\x30\xa0\xf4\xeb\xce\x66\xa9\xd8\x4a\x46\xaf\x3c\xc8\x41\xf0\x2e\x96\x05\xf3\x37\xfe\x1e\x35\xdf\xfc\xbe\x4d\xa0\xc9\x4d\x3c\x90\x4d\x07\x6f\x10\x73\xac\x87\xff\x16\x21\x91\x63\x96\x79\xdc\xad\x3d\xd4\x1e\x77\x09\x02\x60\x9c\x12\x3b\xea\xff\x18\xf5\xf1\x16\x5f\xe2\x07\xaa\xd1\x5f\x52\x9f\x24\x54\x5c\xe2\x03\xa7\x56\xcf\x0a\x60\x48\x41\xad\x1c\xfe\x01\x92\x39\x54\x6a\x47\x67\x76\xed\x7f\x80\x2b\x97\x25\xba\x56\x12\xef\x82\xe2\x0f\x76\x7f\x4b\x9e\x68\xce\x11\x9d\xf1\x9e\x18\xf2\xc7\x45\x5f\xc7\x1a\xe8\xcb\x29\xaf\x0e\x04\xad\x47\x6b\x3a\x5f\xf7\xd4\xde\x94\x4e\xee\x90\x12\x07\x7c\x72\x87\xac\x01\x49\xeb\x62\x72\x33\xee\xb7\xc8\x24\xa8\xe2\x00\xcd\x73\x9f\xd5\x13\xae\x6c\xfa\x1e\x8c\xa3\xba\x21\x39\x0c\x18\x89\x3b\x54\x29\x64\xc5\x56\xa7\x25\x0c\x05\xab\xbc\x53\x11\x0a\x0d\xff\x43\x92\xa1\x48\x42\x97\xe2\xf7\x79\x96\xa5\xc4\xaf\x31\x6b\xaa\x5a\x63\x2c\xa5\x49\x92\xe5\xac\xc0\xd2\xdc\xb8\xe0\xab\x59\x8e\xea\xee\x87\x67\x36\x97\xc9\x7c\x5f\x32\x7c\x67\x75\x5f\xcf\x44\xd2\x76\x17\x75\xdf\x99\x13\x74\x9c\x55\xdd\x9d\x9a\x44\x4b\xd6\xd5\x0c\xb7\x12\x10\x8b\x14\x08\x99\x2b\x24\x6f\x35\xe3\xc8\x0b\xce\xec\xca\xd9\x41\x29\x2a\xa7\x36\x25\x4a\xe4\x83\x40\xff\x83\x5c\x29\xd1\xf7\x60\x35\xa3\x1a\x2f\x5c\x4c\x71\x60\xc5\x00\xe8\x0a\x49\x58\x88\x57\xcb\x0c\x71\xd8\x84\x8a\xc8\x4e\x7c\x96\x2f\x23\xcf\xdb\xfa\xf8\x3e\xfb\x7b\xc2\x6f\x31\x24\x57\x3e\xd7\xce\x62\xc9\xce\x33\x7f\x86\xae\x73\x31\x91\x9f\xa6\x05\x4d\x2b\xea\xa2\xe0\x0a\x85\x30\xfd\x81\xa7\x4c\x91\xca\xa1\x73\xca\x25\xba\x25\xf2\x2e\x95\xae\xbc\xb5\x42\x2d\xc2\xa7\xd0\x4f\x7a\xb1\x72\x4f\xee\x46\x97\x57\x82\xf9\x49\x8d\x50\xdb\xbf\xf3\xb8\x12\x50\x44\xf9\xa3\xac\x19\xcd\xc7\x4d\xd1\x48\x1d\x38\xe7\x39\xef\xd8\xa2\x91\x4f\x5a\xf7\x92\x82\x29\xa1\xa7\x1b\x11\x19\x7a\x9c\x55\x3a\xf2\x49\x0e\x3d\x25\x24\xde\xca\x2f\x2a\x1d\x79\x97\x1a\x34\x23\x44\x10\xef\xa0\x2b\xeb\xd9\x99\xba\xfb\x88\xe6\x0b\xb1\x74\x10\xc1\xca\x49\x2b\xb9\x3b\xb5\xac\xdc\x1f\x4e\xc3\x04\x7f\x0b\x1c\xf6\x56\xae\x28\xc2\x1e\x0c\xdf\x2c\x05\xac\xde\x1b\xf4\xef\xc6\x78\xb1\xe2\xcc\x56\x37\xe3\x84\x51\xe2\x49\xc4\x3d\x03\x28\x36\x6e\x8c\xb8\xab\x8f\xdb\xcf\x7b\xd5\xe3\x32\x16\xf4\xdc\x0c\xf5\x08\x9b\xd0\xe0\x40\xf4\xab\xda\x77\x8e\x54\x49\x12\x85\x28\x26\xf6\x2b\x98\x17\xa7\xe1\xbd\xf0\xfd\xa9\xa3\xed\xbb\x1c\x98\xd9\xf6\x83\x0c\x6d\x87\x13\x36\x88\x5f\xbc\x3f\xc0\xd1\x79\x5e\x79\x66\xc1\x3c\x25\x5a\xde\x61\xb9\x28\xcc\xf1\x62\x52\x61\xbb\xdc\xeb\x36\xfe\x73\xec\x4b\x3b\x64\x5a\x5e\xc5\x4f\xcf\xf5\x29\x31\x57\x03\xc3\xe1\x83\x39\x62\xa8\xd8\x4c\xad\x41\x20\x1a\x00\x52\x27\x2a\x08\xb0\x4b\x43\x33\x4a\x84\xb3\xbb\xc2\x08\x03\xc9\x19\x09\x82\xc1\xf8\xe1\xea\x92\x98\x50\xd1\x98\x8b\x97\x67\xb9\x0c\x68\x6d\x54\xe1\x8d\x0f\x61\x15\x53\xa9\x46\x94\x1e\xc4\x44\xbb\x53\xd8\xf5\xad\x97\xf1\x3e\x65\x7d\x56\x1c\xc9\xc4\x82\xcf\x11\x48\xf3\x1c\x1a\x58\x58\x64\x9a\xbf\x36\x81\x43\x52\x14\x19\x98\x5c\x73\x1d\x6e\x0e\xfd\x9e\x74\x6d\x6c\xf7\xfc\x5a\x11\x5b\xc4\xa7\x30\xd8\x7f\x73\x58\x01\x84\x82\x93\xa8\x36\x25\x31\x8d\x84\x90\x67\xd1\x3b\xfc\xa4\x44\x4b\x15\x43\xab\x42\x48\xec\x0e\xc6\x0b\x76\x09\x1c\x0b\xf7\xe9\x50\x53\x45\xed\x5d\xe2\x1d\x50\x34\x48\x8c\x9a\x01\xf4\x1b\x28\x5f\x3f\xcf\x6e\x63\x5c\x7e\xe1\x17\x3e\x27\x71\xed\x12\xd2\xee\xa8\x15\x37\xbc\x39\xae\xbc\xa9\x23\xfb\x41\x31\xe7\x4f\x2e\xf5\xea\x25\x31\x0c\xe7\x70\x33\xfe\x0b\x75\x30\xa1\x2b\x59\x04\x98\xab\x73\xd5\x45\x5c\x74\x01\x87\xbb\xea\x8a\x8e\x7a\xae\x85\x9c\x2d\x87\xc7\x71\xcb\xc5\xbc\x23\x98\x1e\x72\xaa\x02\x27\xef\x75\x33\xc9\x28\xb6\xa9\x32\x91\x68\x36\xbd\x36\x4a\x7f\x92\xc0\xe9\x4a\xc0\x62\x1a\x48\x7c\xd0\x11\x7e\xf4\x72\x1d\xca\xf3\x72\xe1\x6d\x33\xdd\x73\x3e\x39\xdd\x74\xe7\x4f\xa6\xd2\x2f\x70\x26\xec\xd2\xd3\x95\xef\x93\xee\xfb\x1d\x67\x21\x09\x4b\xf9\xb6\x98\x7f\x9d\x95\x24\x2f\xae\x57\xaa\x1c\x18\x86\x94\xee\xed\xf1\x11\x7e\x76\x76\xb0\xfe\x97\xc2\x1a\x4b\x23\x00\x1e\xfa\x31\xab\xa4\x0e\x7b\xf0\x12\x7f\x65\xdd\xb5\xd7\xde\xbf\x6b\xc0\x91\xfc\x9a\x55\x3c\xa5\x18\x27\x5c\xc6\x93\xad\x02\x50\xe2\x85\xdc\x17\x06\x1b\x4a\x7f\x52\x3c\x67\x44\xa2\x5c\x48\x1f\x88\x96\x0e\x6b\x2e\x5d\x53\xfb\x99\xc6\x49\x2c\xc0\x73\x10\xbd\x2d\x17\x92\x41\xdf\xfa\x19\x9f\xaa\xbe\xdc\x95\xdf\x96\x71\x9e\x9b\xa9\x28\x99\x09\x4b\x1e\x9b\x85\x35\x5e\x5b\xf1\x4f\x79\x6e\x7a\x89\x75\x8c\xc0\xa0\xea\x60\xf0\xe2\xe0\x44\x44\x4b\x46\xe5\xf8\x5b\xcd\x30\x0b\x49\xb8\x16\x6d\x9f\x99\x1b\x29\x93\xc3\x6e\x0b\xa9\xff\x51\x76\x6d\xc9\x13\xc7\xe3\x0f\xb4\x16\x33\x57\x56\x6c\x22\x7e\xc9\x9a\x12\x01\xf7\xd0\xe5\x5d\x41\xd0\x71\x9f\xd0\x20\xeb\x4e\x82\x3e\x07\x47\x29\xad\xde\x25\xe7\x69\x14\x33\x76\xce\x0e\x90\x2a\xfa\x4e\x8d\xfc\x17\xf1\x16\x19\x37\x41\xfc\x49\xdd\x0c\x0d\x9f\x3b\x7f\xc9\x82\x57\xc7\x74\xee\x5a\x3a\xe1\x0b\x1c\xee\x3d\xb4\xee\x5c\x64\xeb\x0f\x1d\xad\x64\x82\xab\xf5\x3f\xf1\xcf\x5e\x5b\x89\x85\xb2\x4d\xfa\x2f\x12\x49\xc1\xc7\xa9\xb8\x8c\x6a\x7b\x69\x9f\x70\xff\x92\xf0\x50\x4d\xed\x59\x49\xa9\xb3\x06\x73\x68\xe9\x60\xb9\x1d\x4b\x46\x6b\x7e\x44\x35\x75\xb9\xb1\x93\xc9\xc1\xef\x42\xcd\x85\x52\x53\xc8\x9a\x0c\x9d\xb1\xf4\x5b\x72\x29\x7b\x2d\x1f\xbc\x44\xea\x5c\xea\x25\xf2\xab\xbd\xfb\x04\x55\xb3\xe6\x55\x42\x62\x43\xa0\x2a\x62\x32\x68\x08\xbc\x36\x78\x63\x54\xf9\xc3\x20\x4c\x88\x57\x3d\x5b\x08\xad\x71\x1f\xcb\xf8\x65\xee\xc1\x33\xe2\x0a\x76\x7f\xa4\x02\x4f\x09\xfa\xf9\xb8\xf9\xb7\x5f\x88\x0f\x46\x01\x1d\x69\x7b\x7f\x3d\xd7\x92\xaa\x6d\xc2\xd5\x16\xf6\xfe\x81\x3b\x08\x9c\x39\xd0\x85\x07\x5b\xda\x0e\x8b\xd4\x2b\x27\xf4\x9c\x9e\x38\xc7\x88\xa8\xd6\x4e\xb5\x26\xa1\x21\xd9\xab\x23\x35\x51\xe8\x5e\xcc\x0d\x90\xb8\xc7\x61\x80\xe8\x5e\xcb\xd8\xb7\xe0\x12\x12\xf5\x6f\xda\xb3\xcc\xe3\xc5\x0b\xdd\x30\x22\x3a\xed\xd9\xdd\x37\x19\x6d\x2f\xbc\xce\x54\x8f\xc7\x28\xa0\xd4\xcc\x37\x99\x79\x47\xea\xe6\xf3\x22\x4e\xbf\x34\xac\x6a\x8a\x08\xb7\xd4\x11\x8c\x31\x05\x2d\xd5\xf3\xbc\x09\x1b\xc6\x9b\xad\xc6\x1b\xb8\xb8\x13\x9b\xe6\xbc\x36\x63\x35\x78\xde\xcb\x3a\x4d\xea\x2f\x23\x79\x43\x80\x85\x37\xbc\x42\xf8\x13\x14\xdf\xc6\x88\xcb\x98\x0c\xb8\x3c\xc4\x18\xe4\xa3\xf8\x47\x4b\x25\x92\xd6\x8b\x08\xde\xe9\x59\x49\xc1\x6c\xa5\xdd\x66\xdb\x31\x76\x2f\x64\x4d\x7f\x41\x30\x00\x53\x26\x88\x44\x5c\x5f\x04\x69\x50\x30\xc1\xdf\xd1\xa6\x6c\x99\xcc\x34\x5e\xd9\x41\xfc\xca\xa0\x61\x40\xcd\x6f\x25\x0e\x18\x8f\x44\x92\x86\x54\xfd\x45\x3c\x76\xea\x94\x3e\x6e\xb4\x78\x9b\xef\x3d\xaf\x07\xd7\x2c\xc5\x9a\xec\xfc\xaa\x6e\xc7\x92\x7b\xe0\xf2\x36\x7c\xad\xf1\xc0\x42\x08\xa3\x4d\x9e\x8f\x49\x83\xd5\xba\xfa\x6b\xc6\xf0\x79\x85\x39\x25\x46\x84\x66\x5f\xde\x8a\xb7\xe0\xd2\x5b\x91\xcd\xa1\xb2\x31\x10\xb0\x0f\x4a\xd5\xdd\x01\xdb\xf1\xaa\x52\xed\x92\x8f\x3e\x4d\x2a\x1a\x62\xfb\x66\x03\x34\xf0\xc4\x43\x39\x18\xdf\xe6\xea\x3e\xa9\x23\x62\xe6\x43\x19\xd6\x86\xc4\x57\xcf\xf3\xc6\x8e\x1b\x59\x20\x0e\x06\x2e\x8b\x11\xeb\x2c\x2e\x4f\x85\x8b\x43\xad\x2c\x3a\xd1\x11\x48\x61\x00\xaf\x2b\x77\xf5\x87\x71\x5a\x8a\xbf\x84\xc1\x47\x9e\xf7\xa4\x62\xe5\x3f\xc3\xac\x82\xe6\x1b\xf8\x2b\x84\x23\x9c\xec\xf7\x79\x17\xea\x0d\xeb\xbd\xbf\xd3\xbc\xab\xc1\x27\xfb\xe8\xf0\x2e\x1c\xba\x6d\xeb\xfd\xcf\x25\x39\xd9\x47\xd3\xfb\x0c\x5f\xc3\x18\x0d\xc5\xa3\x3f\x1a\xf6\x83\x21\x28\x69\xff\x83\x21\x92\x3c\xef\x33\x80\x1e\x18\x58\x85\xb6\x5f\x18\xc0\xbd\x40\x23\x7e\xe7\x9e\x7c\x80\x2a\xe7\xe3\xd2\xeb\x47\xdc\x51\xe8\x15\xc7\xa1\x21\xe4\x37\x5b\xa8\x80\x98\x52\xbb\xb3\x76\x76\xe1\xa3\xf9\xbc\x3d\x5c\x24\x89\xe1\xdc\x94\x15\xab\x52\x2d\x01\xaa\x64\x88\xa6\xa1\x7b\xa8\x18\xfe\xf9\x59\x2b\x8e\x4b\xd2\x41\xb0\xa5\xb2\x5b\x0a\x3a\x07\x5e\x4c\xf3\xfe\x9f\x42\x87\xc0\xef\x44\x0b\x56\xfa\x9a\x29\x77\xae\xac\xba\x05\xef\xb1\x0a\x0c\xe2\xf2\xb9\xeb\x14\x97\x9e\xb7\x88\xd7\x1d\x92\x5c\x1a\xe5\x2e\x59\xe7\x93\xd6\xa5\xf1\x34\xa1\x6e\xfc\xe4\xc3\xc2\xb3\x04\x83\xe2\xf0\x40\xee\x13\xca\xf6\xaf\xa5\x5f\xd6\x35\x99\x40\x2c\x28\xbb\x94\x48\xfc\xc0\xaf\x62\x8f\x1f\xec\x40\x1d\x22\xcc\x68\x37\x0a\xfa\x2c\xed\x53\xe2\x3b\x27\x65\xde\x3e\xf3\x6c\x0f\x0f\x5a\xd8\xc1\x74\xb4\x40\xe0\x3e\x40\x7f\xe3\xa9\x59\xe0\x79\xb3\x40\xfa\xa5\x72\xc8\x06\x4a\xd3\xc6\x48\xc4\x34\xbb\xe2\x08\x06\x02\xac\x78\x5b\x30\xb1\x8d\xb3\x6b\x0d\x3f\xf5\x40\x83\x8c\x53\xd1\x9e\x4b\x27\x40\x5a\x02\x70\x0a\xb6\xc5\xcd\x25\x41\xa2\xc9\x69\xea\x2b\xb6\x00\xaf\x35\x12\x71\x8d\xea\xb7\x04\x32\x82\xe0\xe1\xbd\x09\x2f\x7f\xfa\x90\x29\x49\x50\x6d\x64\x3e\x1b\x55\x56\x82\x6a\x10\x4f\xb9\x20\x8a\x35\xf1\x43\xe4\xa9\xde\xc9\xc3\xc6\x46\x6b\x87\xc3\xbb\xb9\x1c\x3b\x76\x84\x7b\x81\xc5\xcd\xe8\x03\xdf\xcf\xe0\x22\x90\x83\xf9\xb3\x7f\x76\xac\x3e\x14\x99\x8a\x27\x78\xe3\xb9\xe9\x27\xe4\x26\xbc\x5c\xe3\xe2\xb8\x7f\xde\x79\x57\x26\xc1\x8f\xfe\x52\xa2\x97\x12\x9b\xb6\xbc\x37\x05\x88\xdd\x43\x90\x8f\x51\xde\x77\xa4\x26\xa4\xe0\xe4\x7f\x0b\x5b\xb3\x69\x98\x4e\x84\xe4\x2d\xb7\xd4\x0a\x2f\x6a\xae\xc6\xd6\x93\x34\x2d\x10\x88\x1f\xaf\x2e\xe8\xd1\x52\x0c\xa7\xea\xea\xd1\x2a\x51\x5f\x82\x4c\x13\x8e\x26\x7d\x1e\x3e\xad\x16\xef\xdf\x78\x09\xd9\x06\x01\xe9\xec\xe6\xa8\xc6\x3d\xad\x1a\xa7\x33\xf5\xf0\xbd\xaa\xb6\xd6\x4a\x68\xac\x98\x17\x0b\x7d\x47\x24\xd9\x18\x6d\x89\x0c\x76\x8f\x4a\x8e\x12\x60\xde\x78\x5e\x77\xdb\xb3\x24\xd0\x7b\x4f\xfe\x8c\x0f\x71\x03\x05\x23\xd7\x9c\xbe\xd2\x4d\x6a\xda\x8e\x60\xb3\xfe\x6a\xa1\x76\xe5\x54\x88\x29\x10\x98\xf7\x3e\xe1\x54\xf8\x87\xa5\x53\x1d\x09\xd7\x40\xb0\x9a\xf2\xed\xd9\xb0\xd7\x17\x72\x1a\x02\xc2\xc8\xa8\x2c\x9f\x8c\xd1\xa8\x63\xd7\x4e\x9f\xde\x0b\x31\xb5\x26\x79\x24\x6f\x25\x8b\xf2\x0a\x40\x47\x6d\xee\x54\xe2\x6c\xc8\xc6\x07\x1b\xa0\x0a\x0a\x33\x53\x2c\x28\x54\x35\x14\x8e\x3d\xbb\x62\xb6\x7f\xb0\xab\x6f\xea\x3b\xce\x06\xd8\xbc\x49\x95\x9a\x05\x5c\x97\x1d\x81\x24\x12\xfe\x50\x41\x5d\xf6\x3d\xdc\x02\x3b\x38\x0c\xa4\x2f\x30\x2c\xd5\xf0\x03\x4f\xe1\xb9\x56\x6f\x53\x25\x1b\xa7\xc2\x7a\xb0\x7d\x9b\x67\xbe\xcd\x71\x9f\x92\xc5\x71\x6f\xac\xc6\xf7\xdb\x9e\xd8\x21\x85\x75\x24\x5d\x6f\xa6\xae\x77\xb9\x8c\x1c\x85\x8e\x2d\xd7\x2f\xe0\x9c\xb4\x25\xea\xbe\x0b\xf7\xf6\xf7\x21\xbb\xaa\xc3\x6f\x31\xa6\x3d\x17\xb8\xd7\xda\xa0\x6e\xeb\x93\x47\xf0\xc0\xc7\xdf\x1c\xd7\xed\x7d\x42\x36\xfc\xc6\x7d\xaa\xd4\x1d\xc1\x35\x2f\x73\xe8\x28\xee\xa0\x9f\x8f\xd4\xf3\x5c\xf3\x48\xae\x4e\x71\x75\x80\x9a\xfa\x53\x88\xee\x7b\x8a\x2b\x08\x53\xb4\x8a\x38\x40\xca\xb6\xc9\xde\xee\x67\x17\xdd\x51\x9d\x18\x34\x4a\x87\x00\x25\x1e\x41\x2b\xa3\x0f\x6d\xa9\x91\x54\x5a\xdf\xfb\x67\x74\x65\xa1\x43\x74\x40\x53\xfa\xe4\x59\xea\xcb\x91\xa3\x73\x58\xa0\xfd\x5c\x07\x55\x1b\x09\x8a\x33\x36\xd5\xe1\xd9\x39\xf4\xf0\x87\x24\x89\x30\x80\x4d\x9e\x70\x4b\xea\x91\x41\x3a\x94\x3a\xc8\x75\xf1\x7c\xdd\x8b\x3b\x7a\xd3\x76\xf6\x8e\xcd\xd7\x79\x03\x82\xa0\x19\x8b\x63\xad\xd9\x9b\x72\xdd\x07\xe3\x37\xd6\x34\x9c\x23\xa1\x7d\xa0\x88\x8c\xe6\x66\xeb\x11\x5c\x8a\x3f\x60\x5a\x69\xa8\x9e\x98\x1d\xb4\x6a\xe6\x46\xf1\xc7\xaf\xe9\xb4\xf4\x68\xb0\x4e\x4c\x3d\x22\xaf\x2e\x1d\x4a\xf7\x94\x1f\x38\xf4\x66\x67\x9a\x25\x88\xd6\x2f\xdd\x96\xa6\xe9\xd1\xd9\x0d\xc2\xb4\x6a\x83\x1a\xc4\xeb\xc4\x99\x66\xb6\x9c\xe8\x86\xb0\xc5\xef\x0d\xff\xee\xcb\xef\x20\x05\x8c\x39\xf9\xcd\x6f\x61\xbf\x60\x7e\xff\xad\x62\x42\x3a\x22\xcf\xbb\xaf\x3d\xa5\x02\xa3\xcc\xe1\x27\x2f\x05\x0e\xff\xaa\xa0\x9a\xd2\x09\xa9\x99\xa9\x27\xb9\xa3\xc3\xab\x94\xd9\x72\x9c\xb7\x36\xbb\xce\x8d\xb9\xaa\x22\x18\x5b\x6a\x10\x4b\x70\x36\x1b\xb3\x10\x4e\xc6\x07\x9f\xe5\xd9\x5a\xd1\xb7\x3e\xd0\xba\xe4\x40\xdf\xdb\x6b\x40\xdc\xcd\x51\xcd\x56\xf6\x60\xf0\xc5\xba\x49\x86\x5f\x12\xf3\x69\xc2\x3c\xd3\xe0\xd4\xba\xa0\xdc\x4f\x4e\x2e\x99\x99\x9f\xc7\x7d\x37\xea\xcd\x0d\x29\x94\xf9\xe6\x2b\xae\x34\x91\x98\x3a\x0a\xec\x20\xb8\x29\xb1\x86\x64\xea\xb7\x34\xe0\x01\x4e\x4f\xba\x5c\xea\xf8\x4b\x6a\x8d\x4d\x5d\x81\x2d\x16\x5b\x6a\x09\x30\xcb\xef\x16\xbd\x23\xeb\x8d\x61\x12\xff\x66\xb9\x77\x2c\x55\xb3\x8f\x7c\x75\xeb\x64\xe1\xb1\xf3\xaa\x44\x04\x64\xee\x97\x49\x1c\x66\x75\x81\xd8\xc1\x77\xef\xca\xc4\xa3\x53\x34\xcd\x13\x74\x45\x20\x69\x53\xcb\x11\xb9\x7b\x9e\xba\x2d\xf0\xf5\x60\xc4\xb7\xe7\x78\x84\x87\x69\xfa\x14\x77\xa5\x17\x6b\xc6\xf1\x2d\xda\x08\xf8\x19\x4e\xad\x84\x76\xf8\xef\x9f\x5a\xb1\xd5\x6d\xd3\x62\x68\x16\x4d\xe8\x28\xbf\xd1\x29\x8f\xfa\xb6\xf1\x1b\xe2\x86\x2c\xe5\x71\x72\x25\x74\xeb\x5e\x82\x50\x82\x79\xff\xea\xde\x6b\x15\xfa\x94\x9c\x1e\x2c\x07\xbe\x77\xf1\xac\x13\xd7\x5f\xbb\x87\x9f\x39\xb4\xad\x7c\x77\xe6\xed\x16\x6c\xde\xe5\x25\xfa\x6c\x8f\xa9\x14\xf2\x62\xbd\x62\x2a\x00\x91\x32\x63\xa5\x0a\x7c\x51\x8a\x88\x47\x46\x60\x34\x85\x2b\xa4\x8d\x50\xda\xef\x0f\x5e\x19\x22\x46\x8f\xd0\x55\x6c\x6e\xf7\xc4\x51\xe7\x4e\x80\x88\x1b\x2e\xd2\x24\x0d\x84\x94\xa6\x47\x57\xcb\x39\x30\xac\xff\x8c\x5d\x87\x71\x3e\x8b\x39\x34\x1d\x56\x75\x40\x08\xe0\x5c\x55\x0a\xe3\xf0\x23\x15\xd2\x66\xea\xbe\x9f\x15\xec\xd0\xf3\x5f\x5d\xa1\x54\x95\x6b\xcb\x82\xa5\xe6\x04\x26\x29\xd1\x86\x32\xc8\x06\x51\x8a\x52\x89\x24\xf1\x58\xc2\xf9\x0d\x27\xb1\xec\x76\xb2\x31\x8e\xa0\x87\xdd\xe7\xf3\xb5\x33\x09\xed\x43\x07\x90\x47\xa1\x3d\x94\xf7\x5f\xec\x89\x65\xfe\xc1\xb1\x76\xcc\xae\x3a\x57\x2a\xf8\x2e\xe2\xa2\x4e\x56\x3e\xb9\x49\xf7\xdb\xea\x78\xc1\x7a\x20\x87\x6c\x75\x77\x65\xda\xe1\x6e\x20\x30\x97\xf3\x29\x47\x6b\xaa\x24\xa2\x78\x8d\xa1\xcb\xb7\x5c\x49\x87\xa2\xd6\x8f\x8e\x8a\x56\xb1\x41\xad\xe4\x8d\x6d\x57\x89\xd6\xdc\x3b\x85\xf8\xa8\x90\xd6\x17\x56\x0d\x58\x44\x18\xa4\x84\xad\x90\x24\x9b\xc8\xf3\xea\xbe\xe4\xdb\x64\xbb\xa2\x3b\xc4\xc1\xba\x30\xba\x1c\x7d\x54\x82\xb3\x1f\x7c\x21\x81\x2b\x06\xcd\x36\x15\xb8\x52\x83\x86\xf3\xf3\xbd\xd9\x3d\x39\x81\x79\x46\x88\xac\x81\xf4\x49\x93\xef\x2c\x49\x11\x1d\xbe\x49\xea\x9b\xd1\x24\x86\xfe\x38\x4c\x4f\x70\xe2\xdb\x62\x80\x9f\x04\x50\xe6\x37\xa2\x2c\x4f\x7e\xa1\x98\x25\x99\xba\xd2\xee\x59\x8f\x6f\x5b\x44\x9b\x98\xc5\x0a\x90\xa5\x9a\x77\x23\x59\x4c\x20\x64\x9d\x41\x0c\x03\xc9\xe1\x95\x83\x0e\xd8\x87\x50\x1b\xb0\xaf\xfb\x0c\xcc\x5b\xde\x5d\x75\xbc\xb1\xbf\x7f\x2d\x40\x78\xe7\xb8\x97\x8c\xd4\xc4\x0c\x15\x5b\xcb\x54\xd5\xde\x55\xe4\x5d\xa8\x57\x97\xbb\xb1\x48\x8a\xa2\x9e\x39\x26\x21\x08\x12\x1d\x70\xcc\x09\x04\xad\xd5\x57\x21\xc5\x66\x9c\xf5\x57\x67\x20\x02\x17\x0f\x84\x1c\x0d\x36\xad\x3a\x69\x1b\x88\x00\x45\x7a\x86\xb6\x0c\xca\x3b\x26\x02\xb4\xda\xd3\xd4\x3e\x11\x8d\x67\xa3\x8c\x32\x62\x3f\x11\x71\xb3\x60\xb2\x81\x6f\x2d\xbe\x39\xb1\x9f\x6a\x10\x27\x5c\x4a\x12\x47\x7a\x3a\xea\xd3\x0e\x91\x9a\x7c\xad\x77\xf5\xe4\x05\xc3\xde\x61\xa9\xb6\xaa\xfc\x77\x15\x83\x96\x2d\x47\xe0\x32\x56\x16\x02\xb2\x4d\xf1\x22\x49\x63\xf3\x0c\x9b\x32\xdb\x79\x97\xcf\x8b\x8c\x62\x2d\xec\x2c\xda\xfa\x52\xc1\xc6\x35\xd1\x94\x6d\x3c\xe0\xcb\xc6\xee\x27\xe3\x35\x28\xfd\x06\x55\x27\x79\x3f\x19\xb6\x98\x4a\xe9\x5e\xdf\xe2\xa6\x0f\xd2\x7b\xe6\x2a\xc3\xc4\x88\x09\x2e\xd8\xd8\xbb\xfe\x96\x1e\xf1\xf4\xa0\x6f\x7d\x7a\xc4\xb3\x32\x68\x9f\x94\x83\x6e\x1c\x59\x63\x3e\x78\xce\x8b\x7d\xf2\x82\xd5\x1f\x07\x33\xf9\x39\xaa\x30\x0d\x3d\x96\x17\x50\xce\x58\x40\xee\x41\xdf\xba\xb8\x00\x65\x6f\xc4\x98\x15\xc4\xc5\x4b\xbe\x3e\x4c\x95\x23\x78\x2d\xa4\xf0\x74\xa3\xee\x98\x21\xe1\xa4\x2f\x12\x19\x2c\xfb\x2b\x96\x2a\xd7\x7f\x04\xcb\x62\x21\x74\x67\x37\xf9\x4f\xc3\xb0\x3c\x83\x4f\x73\xaa\x38\xd7\x2f\x44\x70\x10\x84\xd6\x69\x5f\x50\xae\x6f\xbe\xa1\xcb\xe4\x3d\x79\x41\xbe\xaf\xca\x4d\xef\xb9\xd2\xe8\x42\x47\xbf\xd0\xf3\x5d\x16\xf2\xf7\x3c\xe8\x8c\x1f\xdb\xe9\xa6\x88\xea\x4f\xa9\xc3\x44\x10\x62\x2b\xcb\xce\x89\x0f\x50\xe6\x7a\xfc\xb8\x60\xad\x77\xdd\xf8\x05\x9e\xf5\xb6\xa5\x3f\x6b\x63\xa3\x3c\x7b\x12\x37\x7c\x7d\xa8\x1c\xdf\x78\x87\x44\x94\xc4\x29\xec\x40\xcf\xb1\x75\x4f\x22\x4a\xae\xa6\xec\x80\x2f\x96\x60\x69\x02\x13\x72\x7b\x90\xd0\xf3\x9e\xf6\x59\x9b\x50\xc7\xc8\x81\x05\x7f\x51\x45\xa2\x14\x02\x67\x17\xbc\xa7\xc8\xa2\xd7\x97\xc4\xec\x96\x66\x53\x22\xe3\xec\xb1\x1b\xc1\x75\x3b\xec\x9d\x7a\xeb\x6f\xb6\xc8\xb0\x1d\x86\x8c\x8e\x21\xb5\x03\x51\x2a\x7c\x4b\x88\x9b\x7d\xee\x7b\xe6\x27\x82\xe5\x9b\xf3\x0d\x79\x96\xb2\x41\x20\xf3\x5f\x98\x95\xbb\x6d\x43\xdd\xae\xf7\x37\x1f\x3a\xc6\x26\x4e\x8f\x8d\xea\x97\x3d\x52\xa1\xe7\xdd\x8e\xff\xa4\x6e\x8f\xfe\xd8\xdb\xec\xd3\x61\xc7\x1b\xb6\xa9\xa8\x5b\x08\x5e\x44\x27\x6c\x2d\xe1\x32\x08\xcd\x17\x79\x3d\x6d\x9e\x97\x1f\x9f\x18\x58\x16\xa5\x8e\x47\x2d\xe1\xcd\xca\x3c\x14\x06\xc3\xea\x8e\x0b\xab\xae\xbd\x89\x70\x86\x63\x37\x9d\x85\x22\xb9\xee\x33\x6b\xfe\x25\xdb\x97\xfd\x30\x9d\xf8\x21\x7f\x49\xc2\xf1\xe9\x57\x77\x98\x36\x4e\x75\xd3\xc6\xa9\xae\x17\x54\xff\x48\x8e\x00\x87\x51\x5c\xe2\xbd\x11\x37\x7d\x83\x29\x38\xed\x45\xe8\x78\x7f\xb0\xc8\x89\x70\x45\xa6\xca\x1c\x59\x41\xdd\x7d\xee\xb1\x91\x36\x3b\x7e\x6c\x2b\x4c\xd9\xb5\x39\x02\xd9\xa1\xcf\x71\x9b\x7d\x45\x21\x45\xe2\x63\xdb\xc7\x40\xc9\x2e\x76\x86\x21\xeb\x25\xf1\x9d\xe6\x8d\xb5\x3a\x32\x0c\x4b\xcc\x9f\xcb\x70\x29\xa2\xdf\xbd\x8e\x7a\x80\xc0\x29\x2e\xbd\x84\xf4\x07\x4d\x86\x5d\x1b\x63\x24\xb5\xb4\xac\x1a\x79\x68\xf8\x58\x6f\x7c\x69\x3e\x54\x84\x08\x85\x08\x17\x74\x30\x9e\x95\xe9\xfd\x4f\xfc\xdf\xe6\x0b\x57\xfd\x95\xb2\xe5\x03\xf5\x69\xd7\x5b\xd5\x00\x2c\xcd\xd2\x9b\x8a\x9f\x3b\x5d\xec\xf5\xd1\x37\x51\xf6\xd0\xef\x72\x10\x91\xd7\xd8\x07\x24\x25\x89\xbf\xa9\x25\x2a\x65\x30\xe5\x46\x7e\x25\x29\xd8\x9e\xd8\x37\xa5\xe4\x7d\x3e\x1a\x39\x72\xfd\x42\x32\x7b\x72\x60\xfd\x44\xd9\x54\x46\xaf\xbe\xa4\x7a\xb9\x84\x7a\xe3\xd8\x78\xb4\xff\x2e\xb4\xcd\xe1\xd8\xd4\x56\xf1\x9b\x44\xb4\x5f\x07\x0e\x7e\x73\x5c\xf1\x9f\xd1\x46\xea\xd1\x99\xb2\x39\x18\xac\x8a\x63\x85\xe8\x53\xf4\x2a\x18\xa0\xc4\x44\xa2\xea\xd5\x32\x10\x03\x88\x92\x60\x76\x83\xe0\x6a\x11\x78\xde\x22\xd8\x0f\x95\x43\xea\x72\xf0\x75\xd6\x5f\x16\x54\xb4\x79\xad\xa4\xaf\xb1\xfe\xe4\xe8\x51\x47\x67\x7b\x06\x2d\x23\x1e\x0c\xa5\xca\xbf\xf2\x47\x79\x86\x52\xfc\xd2\x16\x32\xdd\xff\x77\xe4\x5b\xa0\x4b\x0e\xd0\x56\x33\x83\x52\x5b\xcd\xd8\x3c\x8a\x98\x09\xab\x18\x59\xd9\x41\xd9\xfe\x00\x26\x20\x60\xd5\x6d\x66\x1c\xff\xfe\x65\x14\xc6\x0e\xda\x89\x44\xa6\x00\xfc\x4e\xcf\x62\xd5\x62\xd3\x49\x4b\x54\x1f\x43\x6d\x4e\x38\x82\xe7\xff\x67\x01\x33\x64\xeb\xc8\xa0\xe5\x80\xa9\x0e\x8f\xca\x47\x60\x08\xb6\xe8\xc4\x0d\x38\x14\xdd\xca\x7e\x9b\x54\xca\x84\xa8\xa5\x9f\x3b\xc6\xcf\x31\x31\x7b\x90\x5e\x32\x2c\x9d\x31\x2a\x3e\x99\x11\x58\xf7\x4d\xe6\xcf\x51\xd3\x0f\xb6\x1e\xfe\x84\x46\xcc\xed\x3d\x5e\xec\x8c\xe0\xe5\x15\x37\x7d\x49\xce\xaa\x05\xd5\xb0\xe2\x22\x51\x89\x0f\x6f\xa2\xdb\x48\xd1\x2d\x77\x77\xe6\xe0\xef\xe1\xe9\xd2\x43\x64\xfa\x17\x33\x5c\x53\xcc\x6e\xdb\x9c\xf6\xc1\xd8\x16\xdf\x72\xd6\x57\x01\xb5\xf4\x78\xf1\xbc\x25\x4c\xd1\x72\xee\xa5\xe9\xcd\x19\x06\x5e\x84\x43\x88\x3f\x16\x78\xc3\xc1\x83\x16\x6e\x13\x2b\xdc\xcf\x7d\x97\x2d\xc7\x23\xfd\x12\x48\x90\x5e\x79\x67\xca\x46\x74\xe5\xd0\x00\xd2\x62\x20\x80\x61\x43\x5d\xaa\xb7\x13\x5b\xbd\x76\xba\xad\xe0\xa9\xfd\x57\x1b\xeb\x60\x1f\x45\xd8\x62\xe6\xa3\x8d\xd5\xa5\xf5\x61\x67\x83\xe5\x9b\xb5\xc6\x11\x55\x94\xba\x09\x16\x3b\xfa\xa6\xfc\xeb\x35\xf3\x86\x18\x51\xb0\x7c\xce\xf4\xff\xb5\xe2\x38\x9f\xf2\xab\xde\x46\x10\xea\x53\xd9\x54\xc8\xc5\x46\x96\x38\xae\xa5\x6f\xbe\xdc\x4b\xfe\x95\x60\x4b\x11\x55\x2b\x78\xf1\xbc\xf1\x17\xe3\xb7\x0c\xb9\x3d\x1f\x8a\xe2\xe8\xa4\xaf\x55\xcf\x49\xbb\xef\x24\xfa\x67\xa8\x6e\xb5\xb7\xc7\xf4\xed\x93\xea\xb7\x74\x66\x3b\x4e\x83\x4d\xf4\x4d\xba\xf8\xeb\x03\x66\x9a\xc1\x2b\x12\x76\xdb\x1b\x2f\x28\x73\xf6\xd8\x00\xb2\x45\x35\x8b\x14\x70\x21\xc6\xa6\xd8\xf7\x77\x79\x51\x20\x48\xce\x65\x22\xf2\xf4\xcf\x18\xbe\xfc\x35\xd3\x78\x0d\x94\x53\x52\xeb\x1f\xcf\x3b\x91\xe8\xf8\x76\x74\xe2\x15\xd0\xe4\x67\xa5\x4e\xbf\x98\xc6\xc1\x70\xd1\xfc\x7d\x85\xda\x55\x4c\xef\x8e\x4a\xe2\x4f\x36\xcd\x05\x49\x02\xbd\x4d\x50\xe1\x9d\x53\x55\xa1\x52\x43\xe0\x96\xe9\x55\x29\x8c\xca\xbe\x01\xf1\x03\x26\x25\x11\x69\x8d\xce\x00\xb0\x4b\x99\x72\xf1\x02\xa0\x79\x85\x2e\x95\x51\xe2\x39\x96\x43\x61\x07\x37\x26\x2a\xd6\x00\x7b\x05\x82\xbe\xe4\xff\x47\xbc\x63\xaf\xa9\xb8\xa1\x67\xcf\x1b\x04\xb3\x12\x55\x38\xbc\x3e\x92\xac\xff\xd2\xcc\x10\xbe\x41\xfd\x59\x70\xcd\xbb\x82\x95\x34\x2f\xd9\xa0\x4a\x98\x90\x57\x38\x33\x11\x9b\xd3\x18\x06\x57\x3b\x0a\x21\x67\x93\x25\x44\x92\x0c\x49\xb3\xe3\x75\x27\xfe\x29\x4f\x3b\x19\xe5\x2d\x91\xb4\x26\x1f\xb3\xcc\x06\xde\x5e\x0e\x33\x6f\x0f\x46\x7c\x79\x38\x4c\xe2\x72\xc7\x0b\xe6\xbf\x58\x74\xc5\x44\xc6\xc3\x8b\x32\x35\x6a\x66\x94\x99\x98\x4b\xaf\x1b\xe2\x0a\x8c\x9f\xba\x30\x1b\xbc\xc0\x52\xa6\x82\x7c\x71\xfc\xe2\x41\x3b\xd0\x05\x7b\xe1\xbc\xe5\x57\xbb\xfa\x73\x74\x09\xdf\x94\xf6\x53\x6c\x36\x49\xf4\xa0\x62\x87\xbc\x5c\x6c\xa8\x5e\xc6\xeb\x86\xbb\x53\x74\xd1\x50\xbc\xae\xfd\x8c\x22\xa5\xd1\x08\x40\x1b\x8f\x54\x37\x8e\x09\x7e\x4c\x87\x4a\x24\x48\x6b\x3e\xda\xd2\x9d\x7d\xa9\xe3\x05\x45\x36\x2f\x37\xa4\xc5\xdc\x50\x27\x5e\xda\xf3\x92\xb1\x11\x4e\x9b\x21\x54\x1c\x31\x46\x6a\x33\xc5\x91\x2a\xc6\x96\xa1\x39\x5e\xa9\x02\x05\x4e\x64\x5a\xe1\xce\x92\xc7\xe5\x4d\xd2\x69\xb3\xe2\xd6\xa0\x55\x87\xd3\xb2\x9c\x32\xf2\x13\x46\x7b\x4b\xf3\xe8\xf0\x72\xe9\xf7\xab\x30\x85\xa0\x92\x29\x6a\xe5\x06\x9c\xb3\x67\xd6\x58\x7e\x24\x5f\x34\xc1\xa1\xbb\xa4\xa8\x0f\xba\xf9\xf3\x49\x58\xe0\x8b\xe7\xf5\xa5\x2d\xf6\xa3\x43\x72\xec\x03\x4e\xd5\xf8\xa1\x9f\x7a\x0a\xf6\x21\x86\xa4\xf5\x12\x18\xc7\xe2\x87\x5e\x02\xe9\xe2\x2d\x0e\x1c\x5c\xa6\x77\x60\xf0\xb7\xae\x44\x57\x04\xd4\xfe\x83\x11\xed\x63\xd1\xff\xd8\x8d\xf0\x9c\x74\x23\x98\x0c\x06\x4c\x2c\xdb\x41\x63\x76\x2d\x71\x49\xd6\xc6\xf2\x05\x6e\x8a\x20\x4a\x76\x11\x72\xda\xef\xdf\x2c\x00\xa4\xa6\x7f\xcf\x1e\x91\xaa\xf9\xb4\x51\x3c\x58\x8d\x55\x0f\x7f\xce\x8d\xc3\xd1\x58\xf1\x5c\x30\x26\x64\x1d\xee\x39\xe8\x08\x1c\x4a\x2e\x2b\xa3\x05\xb2\x4f\x01\x06\x6c\x4a\x58\x71\xc1\x5d\xa2\x9c\x29\x36\xef\xa4\x18\x83\x7d\xa2\x5c\x09\x4a\x02\xf0\xdf\x61\x92\x41\xb0\x6d\xcb\x09\x8c\x42\x18\x10\x7e\x49\x9d\xc7\xae\xfe\x55\x28\xb1\xbd\x7e\x8d\x22\xc0\x1a\x05\xdd\x78\xd3\x06\x37\xa0\x9a\x6c\x10\x8a\x32\x74\x38\xd5\xc6\xc6\x45\x27\xee\x26\xbd\x7a\x35\x0e\xbf\x98\x3f\xea\xc3\xdc\x20\xa7\xe8\xaf\xe4\xe0\xdc\x1f\xba\xbb\xd5\x7c\xa8\x53\xe0\xc0\xd9\x21\x09\x63\x1c\xeb\x78\xf4\x1d\xcc\x1d\x0d\x02\xaa\xe5\xcb\x9d\xc5\x7a\x63\x6d\x8e\xda\xba\x0e\x09\xed\xa0\x10\x87\x04\x8a\x46\x4a\x23\x32\x42\x30\xca\xc7\xca\x2a\x48\x87\xc4\xa2\x09\x9f\xa0\x0b\x7b\xea\x54\x28\x43\x59\x15\x8e\x11\xe3\x0f\x2d\x86\xef\x61\x44\xfa\xed\xd6\xf1\x61\xb4\x65\x26\xbd\xb4\xa0\x0a\x25\xf1\x3f\xac\x33\xa2\x1d\x80\x68\xc7\xff\x41\x44\xbb\x8c\x30\x0a\x9d\xec\x56\xdb\xba\x3c\x10\xbc\x3e\xb1\x27\x1b\xec\x49\xf6\xf2\x3f\xda\x93\xc3\xf0\x3d\xe0\xa5\xdf\x6e\xaf\xdb\x2b\xec\xc9\x31\x63\x4f\xa2\x3d\x53\x9f\xcb\x72\x91\xe3\x8c\xf8\x05\xf1\x81\x20\xfa\x63\xa9\xe3\x46\x51\xa4\x89\x50\xdb\x32\x5a\xc5\xc2\x91\x0b\x03\xe7\x26\x4a\xd7\xa1\xcd\xdc\x6d\xba\x5c\x13\x36\x8f\xc8\xd5\xcf\x24\x6b\xe3\x3a\x3a\xaf\x07\xfe\x34\x7b\xcf\x4e\x5f\x98\xf3\x22\x19\x7c\x76\x9d\xe0\xbc\xd3\xeb\x04\xef\x9c\xb7\x14\xbb\x09\x89\xa7\x98\x87\x17\x8e\x78\xcd\xba\x18\x7b\xf9\xd3\x03\x4c\xf4\xb3\x28\x68\x78\xd4\x1f\x33\x20\xc4\xe2\x37\x77\x96\xe3\x6c\xef\xe4\x92\xe1\xab\xd2\x7b\xcf\x92\x28\xfe\x00\x44\x7e\xa7\x82\x16\x64\x46\xf6\x27\x48\xc5\xf4\x96\x35\xf8\xd6\x40\x64\xa4\x42\x33\x3f\xa1\x9b\xf7\x34\x20\xf9\x5b\xc3\x59\x07\xe5\xd5\x1a\x3c\xc3\x66\x57\x1e\x50\x1c\x09\x67\xd1\x71\xf0\x20\x80\xcd\x6c\x63\x99\xd9\xec\x51\x6d\x64\xa0\x20\x4e\x56\x78\xb8\x67\xef\xb3\x04\x07\xc4\x3c\xce\xae\x39\x1c\xec\x5a\x7e\x91\x6f\xfd\x36\x39\xe8\xce\xa9\x1d\x78\xad\x67\x59\xb9\xd7\xd2\x81\x1d\x28\xb5\x10\x3c\x88\x12\x44\x51\xcc\x1c\xd7\x6f\x8c\x5d\x6b\x07\xec\x95\x6b\x13\xf6\xde\x41\xc3\x96\x1a\x47\x35\xd5\x51\xf9\xeb\x41\x2c\x6b\x96\x29\x44\x98\xe2\xe9\x56\x2e\xc6\xaf\xaf\x40\x9d\x70\xf1\x51\xc6\x4f\x46\x81\x20\x97\x43\x70\xc7\x72\x0e\x46\xa0\x99\x2d\x74\x13\xb8\x71\x6d\x98\xeb\xe2\x3a\x85\xc4\xd2\x3e\xec\xbb\xde\xd9\xf2\x5d\x6a\x67\x65\x6c\xd3\x28\xa8\x00\xc7\x8d\x58\x04\xac\x01\xd2\x4c\x4b\x82\x30\xd4\xb4\x10\x6b\xf6\xe9\xcf\x99\x08\x95\xf9\x77\xe5\x46\x4a\x04\xa8\x20\xe8\xe1\x7b\x16\x02\x21\x50\xae\x74\xc7\x25\xbc\xef\xe4\x57\x22\x3e\x85\x83\xf0\x7f\x38\x27\x9e\x5e\xf9\x75\xcd\xc7\xdc\xb6\xa9\x95\x13\x8c\x02\x2d\x67\x67\x0d\xa0\x69\xce\x8a\x68\x62\xc1\x92\x15\xcb\x0d\xc2\x44\xce\xc3\x7f\xcb\x27\xe2\x9a\x55\x67\xda\xac\x7a\x84\xed\x25\x11\x84\x95\xd0\x44\x32\xd3\x86\xac\xe2\x0c\x2d\xc6\xd2\x73\xa7\xc8\x8c\xd8\x47\x25\x72\x99\x3e\xe0\xd4\xf0\xbc\xe0\x69\x19\x3a\xce\x10\x1a\xd8\x29\xd4\x01\x67\x24\xab\xf2\xf3\x54\x28\xae\x35\x59\x4a\xdc\x33\x55\xdc\xa5\x7a\xe6\xf9\x10\x94\xae\xc4\xe9\x4d\x92\x5a\xcd\x69\x5d\x80\x0f\x89\x58\xc6\x06\x64\x5c\x5d\xe8\xf9\xb7\xa0\x20\xc5\x1b\x18\x12\xaa\x7c\xa0\xe1\xaa\xa9\xf1\x01\xa8\xbe\x0a\xe5\x8f\x6c\x2e\x52\xc5\xb9\xc7\xc2\xc0\xed\x2c\x95\x26\x8d\x9a\x6a\xbc\xed\x05\xdb\x60\x56\x41\x59\x03\x99\x6d\xcf\x1d\xc5\xe8\xf8\x5f\xbb\x12\x9c\x34\xce\x16\x1d\x72\xca\x9c\xc8\x96\xec\x95\x67\x0a\xb5\xe2\x3c\xc5\xe9\xbd\xf3\x44\x2c\xe6\xf0\xfd\xc6\xad\x90\x6d\x75\x7f\x44\x18\x10\x8d\x99\xfa\xd4\xc4\x04\x15\x72\x53\x18\x83\xbe\x83\x64\x7c\xd3\x8c\xe5\xa2\xba\x03\xbd\xab\x1b\x2a\xb6\x67\x22\x7e\x26\x7c\xbe\x71\x62\xf6\xa9\x7a\x20\xec\xfe\x0d\xad\x5c\xb6\xbb\xe5\x8c\xab\x3d\xc2\xe0\xb1\xd7\xea\x72\x32\x29\xd9\xa6\x43\xe6\x73\x8e\xf5\xce\x4d\x87\x5c\xde\x69\xf4\x96\x94\xc6\x7c\x4e\x85\x36\x0f\xd9\x4c\xd5\x32\x4f\x18\x8f\xac\xca\x7c\x8c\xa1\xf9\xe7\x9d\x11\xb3\x92\x24\x3f\xf3\xbc\xfc\x36\x50\x8e\x38\x90\x36\xed\x14\x45\x3c\x65\xde\x77\x4e\x74\x66\xe2\xa1\x57\x09\x62\x30\x6e\x83\xaa\xf3\x30\x0b\x52\x4f\xcb\x47\x73\xc8\xfb\xd2\x04\x9b\x3e\xd3\xa0\xdc\x80\x6a\x2b\xef\x34\x59\x45\xe1\xa5\xc1\x37\x96\xb2\x39\x12\xac\xf4\xc2\xa5\xf4\x43\x93\x0b\xbc\xe4\xb8\xb0\xdc\x33\x45\x4d\xef\xfc\x0b\x96\xf4\xe0\xfc\xfb\x2a\xf2\x5a\x95\xdf\xe7\x27\x4d\xa0\x14\xa9\xe4\xd2\x8d\xfb\x7e\x5e\x35\xb3\x50\x49\x7b\xbb\xac\x60\xcd\x03\x08\x70\x9d\x4c\x3a\xac\x8f\x4b\x54\xf4\x56\x19\x3b\x8c\x6f\xc1\xda\x3a\x0c\x1f\x76\x6b\x75\xe2\x5c\x2c\x1d\x15\x83\x59\xf5\x2f\x32\xb0\x7e\x5f\xe9\xb3\xcf\x06\xa5\x8a\x7f\xfa\x4a\xf8\x3b\xff\x29\x47\xd7\xf4\xbd\x67\x28\x50\x9d\x55\x54\x46\xca\x59\x43\x72\x6f\x0f\x1c\x76\xbe\x37\x09\xce\x5f\x38\x39\xb1\xeb\x79\x45\x37\x77\x50\x08\xf0\x98\xb3\x1d\x50\x7f\xb2\x7a\xa7\xec\x6b\x5b\x0e\x58\xe2\x3a\x2f\x7c\xb2\x4f\x39\x55\x93\x4c\xbe\x59\x60\xb2\x58\xdb\xf1\xbd\xfd\x54\x11\xd3\xe9\x4f\x17\x3b\xa5\xbd\x20\xa0\x04\x89\x16\xe0\x01\x7e\xad\x1f\x2d\xce\x8e\xac\x55\x72\xe2\x4b\xdb\xb8\xc8\x31\x4e\x8a\xf1\xf0\x36\x55\x5e\x95\x83\x1a\x9c\x74\x99\xc0\x24\x30\x05\x20\x67\xcb\x44\x2e\x65\xcf\xf3\x9e\xce\xa9\x32\xa9\xc1\xfc\x4d\x8a\xec\xf4\x24\x42\x94\x19\x8d\xf3\xfa\x3f\x2a\xb9\xfa\x94\x28\xb9\xba\xf1\xb3\xe4\x19\xa0\xd7\xdf\x17\x5b\x15\xe3\x99\xb2\x9b\xe9\x59\xfc\x47\xc5\x56\x29\x04\xe5\xdb\x09\xa7\xa7\x3a\xd2\x92\x05\xe5\x36\xc6\xb7\x2b\x50\x21\x53\xb7\xdf\x8b\x47\x40\x2e\xc0\x00\x16\xdf\xea\x65\x93\xbb\xb1\x95\x9b\x11\x45\x2c\xe0\x06\xde\x89\xa7\x8c\x60\x61\xf2\x76\x5c\x1b\x37\xa1\xd1\x57\x75\xda\x13\xf7\xe3\x1b\x33\xc4\x06\x8b\xfb\x23\x17\x31\x35\x23\xd6\xa0\xd4\x3a\xa4\x20\x61\xfd\xc5\xb1\x6a\x23\x5c\x33\x02\x8f\xb2\x1f\x94\x99\xcb\xf3\x13\xb8\x76\x40\x87\xbf\xe6\x48\xdb\xbe\x73\xd0\x49\x87\x63\x31\x06\xdf\x7b\x41\x9e\x4b\x71\x8e\xc6\x80\x15\xda\x04\xe1\x5c\xa6\xe2\xa7\x4e\x70\x6f\x8d\x47\x69\x97\x87\x69\x1c\x8f\xb8\xfb\xb3\x2a\x48\x74\x2f\xd6\xc9\xf8\x02\x0c\x9d\xa5\xb3\x6f\xcd\xb5\xa3\x6f\x6e\x69\x82\xce\x7c\xac\x05\x17\x0e\x8c\xda\x50\x34\xc2\xb0\x05\x39\xa8\x72\x46\x20\x6e\x7c\x3e\x47\xdf\x10\xce\x60\xda\x95\x21\xda\x17\x2b\x9b\x0c\x53\xb1\x5f\x9d\x98\x48\x05\xa4\x98\xb1\x22\x98\x83\x9c\xb2\xfe\x4f\x56\xa7\x35\x71\x90\x22\x74\xf6\xaf\x55\x4d\x43\x1f\x05\x6b\xa9\xe1\xa8\x5a\x79\xc2\xf0\x14\xaa\xa5\x4b\xdb\x10\x03\xb4\x67\x91\x45\x1e\x06\xd7\xc9\x85\xc5\x27\x06\x05\x97\x94\xe6\x1f\xa6\xa9\x7d\x83\x4e\xe9\x92\xcf\xea\xde\x69\x42\x04\x7a\x93\x37\xfd\xca\xa0\x67\x38\x40\xc7\xbd\x79\x49\x65\xd8\x1e\xc6\x82\x74\xda\x02\x67\x98\xdf\x19\xdd\xf6\x06\x53\x7e\x8c\x6b\x03\xec\x27\xec\xfb\x2b\x8c\xb2\x76\x29\x2b\x65\x42\xa2\xf1\xb6\xc0\xea\xdc\x24\x40\x10\xe6\x76\xac\x71\x86\xe9\xeb\x6a\x1a\x58\xf2\x3e\x1d\x6a\x6f\x08\x49\x6e\x44\xaf\xeb\x3f\xaf\x3a\x5e\xce\xcf\x3d\xce\x08\x57\xf2\x7e\xf9\x51\xa8\x10\x8b\x16\x35\xfc\x0f\x33\x08\x3b\x22\xa3\x66\x04\xcf\xe3\x4a\xfa\xfe\xe3\x06\xfa\xe1\xef\x82\x42\xd5\xea\x52\x2f\x81\x15\xd2\xed\x9f\xb7\x5b\xae\xd4\x31\xa6\xdd\x59\xb5\x38\x11\x88\x3e\xf6\x6c\xff\xfc\x6e\x44\x92\x90\x82\x00\x29\x61\x3c\xe2\x48\x7a\xa3\xc2\x61\xd0\x78\x7b\xd2\x7f\xc6\x0f\x9c\x5b\x76\x06\x85\x96\x3d\x2f\x47\x3b\xc9\xde\x5a\xea\x12\xc5\x2f\x34\x1a\x7e\xf2\x54\xd1\xf5\xc8\xfe\xf9\x92\xf9\x80\x8a\x7e\x4e\x5f\x55\x00\x48\x5c\x65\x9d\xfa\x9b\xe1\x63\x47\xe2\xd6\x03\x92\x33\x5a\xcd\x03\x52\xab\x63\xca\x5c\xd9\x6a\x99\xcf\xe0\x5b\xe5\x5e\x61\x20\xf0\x90\x4a\xb1\xde\x3b\x4f\x07\x4d\x6e\x86\x80\x26\x59\xc3\x92\x9f\x38\xf5\x91\x61\x11\x52\x46\x7e\xee\xbb\x71\x56\x15\x1f\x4a\x3f\x71\x25\xe3\xdb\x97\xf8\xbd\xdc\xd9\x77\x15\x6c\x6e\x7b\xd4\x64\x1a\xa2\x8a\x89\x40\x4e\x78\x36\xc1\x99\x91\xd7\xca\x13\x62\x53\x6f\xa7\x53\x30\x89\x38\x3e\x27\x7e\xe3\xc1\x08\xa9\xe0\xe4\x2d\xcd\x74\x56\x20\x50\x6b\x26\x50\x14\x1d\xfd\x13\xf2\xc1\x62\x14\xb0\x43\x87\x0e\x95\x6d\x72\x3c\x09\x12\xc6\x00\xc9\x83\xb0\x19\xa0\xe6\x96\x97\xf5\x15\x90\x99\xae\x1b\x2a\xe0\x8e\xf9\x97\x2f\xe2\x74\x5a\xb1\xc6\xf0\x87\x4d\x90\xd2\x3d\xd0\x28\x83\x56\x53\x61\x9c\x3e\xf2\xd0\x27\x7a\xa0\x7b\xa6\x91\xa8\xfa\x59\x30\xe5\x6d\x1f\x49\xcf\x96\x92\xc3\x57\xed\x3f\xbb\x89\x52\x22\xbd\x4c\xac\x8d\x49\x49\x62\x2e\x03\x1b\x61\xf2\x9b\xa5\xee\x12\x28\x62\x79\xac\x89\x5a\x3f\xe5\x41\x3e\x1c\x81\x2d\xb1\xc4\xce\x19\xb6\xed\xa9\xb1\x23\x87\x83\x60\x14\x7f\xb4\xbd\x8e\x2f\xc1\x5c\xd0\x22\x7e\xd7\x97\x5a\x6f\xd5\x31\x06\x24\x45\x3f\xdc\xc6\xff\xb5\xcf\x31\x20\xc2\x4a\x38\x22\x9b\xc6\xed\x0c\x21\x12\x4d\xd4\x96\xe4\x87\xca\xed\x78\xd0\x11\x2d\xb0\x3d\x6a\x33\xe6\x51\x88\x80\x22\x2d\x9e\xa5\xf2\x83\x51\x8a\xca\x37\xf7\x5a\xc7\x89\xff\x39\x1a\xd7\x2f\x73\xab\xae\xe7\xfd\x16\xa7\x88\xf8\x08\x66\x26\x83\x22\x3e\xe3\xbe\xf5\x27\xd0\x3a\xb0\x03\xcd\x29\xca\x46\x19\x00\x76\xbd\xe0\xcc\xc2\x53\x69\x92\x82\x6e\xf4\xbf\xd0\xca\x44\x49\x73\x23\x27\xbe\x00\xfd\x69\x12\x22\xad\x76\x42\x65\xba\xaa\xac\xe7\xa9\x6f\x02\xc9\x48\xff\x62\xf6\x1f\x03\x3c\x47\x1c\xbc\xf9\x05\xfa\x2a\xd4\xff\x0a\xb7\x28\x97\xa6\x96\x26\x7d\xba\xe9\xf4\x1c\x71\xaf\x47\xca\xdf\x6c\x57\x6e\xdb\x26\xc9\xbb\x82\xb9\xa7\xc4\xcb\x37\xca\x9e\x0a\x93\x29\x7b\x03\xd2\x1e\x0a\x2c\x6f\xee\x18\x98\x09\x43\xab\xda\x9c\xce\x06\x51\xce\xd6\x9d\xb7\x04\x90\xd0\x7d\xba\x36\xdb\x64\x03\xe9\x0a\x89\xb5\xd1\x8a\x8b\x80\xa0\x40\x4b\x07\xc9\xe2\x70\x3d\xed\xdc\xea\x2c\x47\x5c\x9e\x12\xe9\x78\xa6\x4a\xc7\xc1\xfa\x0f\xa3\x19\x64\xc3\xfa\xf8\x72\x70\xfc\x38\x48\x59\xda\x9b\x93\xa4\xb1\x01\xc9\x31\x39\xa0\x6d\x9e\xd1\xb6\xea\xbb\x63\x0d\x20\xce\xa0\x2a\xd4\x70\x9a\xf6\x5d\x03\x4f\x47\x13\x12\x6d\x66\x2d\xe3\x73\x19\xfb\xe3\x89\xf1\xce\x45\xf1\xd8\x6e\xfb\xa8\x09\x87\x4a\x55\xfc\xea\x48\x07\x62\xf4\x87\xce\x11\x31\x6f\xc4\x3b\x44\x16\x67\x45\x54\x34\xb7\xf5\x12\x8b\x6f\xe2\x20\xce\x26\x26\x24\x2b\x66\x23\x73\xcc\x69\x31\x09\x90\xe4\x4e\x43\x2c\x71\x79\x35\x61\x2f\xe9\x9c\xfd\x25\x05\x66\xe1\xe7\xa9\xab\xff\x18\x7d\x41\x83\xbf\x36\x71\xb7\xc6\x0d\xd0\x97\x81\xed\x84\xd7\x53\xb5\x27\x08\x92\x4b\x3e\x4c\xf1\x4d\x93\xd4\x42\x08\x53\xd3\x0b\x71\xa7\x25\xe3\x0f\xca\xdc\xb6\x86\x4e\xe5\x90\x0b\x67\xe4\x9d\x7e\xc8\x76\x4e\xa9\x64\x0f\xfb\x40\x21\xb0\x19\x15\x47\xf5\x77\x47\x0b\x76\xe6\x77\x8b\xe5\x04\x45\xb3\x43\x27\xa1\x51\xff\x8e\xc4\xea\x27\x89\x87\x66\x09\x36\xad\xe7\x9d\x2d\x8b\xe1\xc2\xfa\xcc\x1c\xc2\x3c\xd2\x4c\xe6\xb6\xaf\x98\xe4\xc6\x48\x53\x65\x50\xe7\x3c\xb2\xc6\xc4\x42\xc1\x10\x0e\xe6\xfd\xf9\x34\xd0\xc7\xc0\x7e\x59\x80\x8a\x99\xda\x0a\xc4\x13\x90\xab\x0b\x18\x43\xf4\x14\x32\xc7\x14\x1e\xce\x1d\xa6\x3b\x9f\xb9\xcf\x0a\x1d\x0d\x62\xce\x6f\x68\x16\x81\x75\x8f\x57\x6a\x67\x3e\x90\xf5\x93\x8b\x30\x6b\xe2\x50\xc1\x94\xd5\xe4\x0d\x9e\xde\x4e\x34\x4f\xa2\x09\x5e\x9f\x26\x56\xd4\xed\x9e\x15\x79\xf8\x73\xc0\x5b\x47\xbe\xf8\x5d\x6a\x59\x95\x88\x61\xff\x3a\x1f\x7c\xe7\x00\x1a\xab\x04\xf0\x7d\x37\x4a\x50\x28\xcb\xd8\xac\x86\xc9\x71\xdd\x63\x7f\xeb\x80\x99\x57\x71\xf7\xfb\xaa\xeb\xdd\xb2\x28\xd1\x5a\xe6\x21\xa5\xdc\x70\x4d\xc4\x84\x94\xc3\xdf\x2a\xfb\x35\x18\x28\xe2\x85\x10\x87\x26\xd4\x8c\x50\x09\x98\xf3\xd0\xa2\x11\x68\x67\xd1\x21\x4b\x48\x73\xe2\xba\x53\x2a\x0f\x92\x85\xac\x09\xcd\x3f\x8c\x45\x8e\xbb\x7d\xfc\xf7\xed\x81\xd2\xef\x7e\xd0\x43\xd2\x69\x6b\x48\xca\xe4\x3d\x8e\x90\x95\x22\x49\x33\x84\xc6\xbf\xc3\xff\x75\xf9\x3a\x7d\x91\x77\x61\xeb\xaf\x0e\x2c\x74\x15\x51\xcc\x6a\xca\x9f\xaf\x8d\xad\x22\x1a\x63\x42\x2c\xb8\xdf\xed\x63\x78\xdf\x56\xba\x1c\x0c\xc7\x56\xa8\x75\xdb\x90\xbf\x88\xf3\xe1\xd2\x2b\x8d\xa4\xc5\x8b\xa9\xd1\x01\x19\x25\xd4\x1b\xaa\xd3\x03\x09\x34\x33\x06\x01\xfd\x0d\x9a\x2a\x15\x6a\x80\x75\xc2\x5d\x4a\x81\x14\x7b\x55\x91\xa4\x39\x43\xb6\xce\x63\x47\x20\x00\x21\xc7\xe8\xb4\x7b\x0a\xa5\x36\x03\x23\xdf\xde\x91\x21\xf4\x76\xc3\xec\x38\xdf\x48\x06\x75\x93\xb8\x7e\xb7\xfe\x1e\x3f\x54\xfb\x5e\x19\x3b\xe8\x1b\xca\x4a\x15\x33\x89\x9c\x18\xc5\x01\x41\x25\xd8\x93\x75\xbe\xf0\x3b\x4a\x83\x28\xd8\xf6\xbd\xab\xae\xd7\x3a\xf5\xdd\x20\x9e\xc1\x34\xb8\x5a\xf9\x5e\xb0\xee\x0b\x63\x8c\x99\x1a\xb7\x51\x67\xc7\x59\x9e\xd3\x4a\xd9\xfa\x5d\x63\x5c\x9e\xd0\xbf\xbf\xeb\x12\x4a\x4f\x9f\x7f\x58\x7d\xbd\xea\x78\xf7\xf9\x0e\xdb\xf1\x9f\xad\x95\x74\x65\x2b\x7d\xc1\x9c\x96\x77\x0c\xe6\x60\xbc\x7d\x7b\xce\xea\x03\x2d\x14\x37\x95\x5d\xc7\xe5\xd5\xfd\x32\x18\xef\x62\x9c\x75\x30\x68\xf7\xfb\x66\x47\x7e\x40\x2a\x39\x29\x09\xa4\xeb\x79\xbf\x16\x7c\xc6\x9a\x7a\x3b\x22\x65\x72\x89\x92\xe9\x4a\x59\x33\x99\x4e\x95\x27\x1c\xd0\x9d\x4c\x03\x76\xc5\xc2\x2a\xdf\xc0\xff\xc3\x79\x9a\x5c\x4e\x54\xfb\x08\x09\xed\x15\x6e\x60\x77\x7a\xc7\x51\xd0\x07\x42\xee\x35\x72\xd3\xdd\xc3\x70\xf2\x29\x37\xd9\xf4\x69\x73\x77\xda\x2b\xf8\x1f\xed\xf4\x60\x40\xb3\xe3\xe3\x3c\xf7\xc5\xd9\x35\xb5\x9b\x35\xa2\xb7\xf2\x92\x81\xa0\xe8\xfd\x5f\x6e\xcf\x8d\x31\xe7\xc7\xdb\xa3\x52\x3c\xf4\xf6\x4c\x78\x7b\xaa\xff\xc1\xf6\x04\x47\x67\x7f\xd8\x02\x52\x64\x9c\x1e\x81\x8d\x88\xa8\x67\x59\xd5\x08\xa4\x78\x7e\x6f\xb5\xc9\x09\xe3\xf2\x50\x1e\x56\x0a\xb6\x79\x6f\x30\xb1\x91\xd1\x1c\x7d\xf1\x6d\xc8\x1f\xa9\x4b\x35\xba\xd2\x9e\x48\x40\x8e\xaa\x99\x75\xc9\x40\x2c\x63\x2c\x83\x5d\x72\x22\x9e\x50\x44\x2a\x14\x93\x11\x65\xd7\xb1\x69\xe9\xa1\x63\x0a\x50\x49\xff\xa9\xdf\x9f\x79\x3e\xa9\x71\x43\xfa\xb6\x33\xde\x81\x3a\x44\xb6\x72\x14\x9b\xa1\xff\xfe\x04\xe8\x32\xd7\x8b\x59\xf6\x09\x78\x24\x55\xa6\x87\x82\xdb\xb4\x23\xb9\x91\x2a\x13\x19\x5a\x54\xac\xab\x92\x5e\x06\x5e\x12\xe0\xdc\xe0\x8b\x3b\x92\x28\xab\xa4\xcf\x1f\xfd\x29\x6f\x2a\x53\xda\xa5\x8f\x4e\x8f\xf1\x61\x9c\x91\x70\xb6\x9e\xa9\x4d\xe7\x8d\x64\xb6\xff\x8a\x03\x35\x22\xcf\x6d\xa3\xb5\xe5\xd9\x0f\x5b\x70\x33\x9e\xf6\xaa\x46\x15\xd7\x1b\x63\x15\x9f\x5f\xff\x89\xa2\xd5\x03\xd8\x94\xee\x3d\xef\x59\x52\x40\xaf\xac\xba\x01\x61\x70\x85\x26\x7a\x91\xad\xc0\x41\xeb\x2d\xe0\xd8\x24\x58\xe3\x56\x6f\x44\x90\xef\xff\xcd\x4e\xc4\x10\xcd\xde\x89\x77\x4c\x48\x64\xe8\xbb\x2e\x68\x8e\x0c\x59\x79\x05\xaa\xe0\xaa\x0d\x17\x44\x48\xb3\xa5\x57\x5d\x2f\x18\xb2\x34\x28\x8c\xb1\xfa\xb1\xea\xc8\x2d\x2e\xd7\x7e\x53\x9f\x6a\xed\x7a\xbb\x7a\xf6\x7e\x90\xd6\xfa\xcc\xe6\xd0\x51\xf4\x1f\x48\x69\x47\xee\xda\x7f\x6a\x67\x4a\x69\x43\x25\xa5\x89\x28\x62\xfb\xf6\x40\xb7\x6f\x19\x29\xed\xc7\x38\x86\xdd\xf3\xa4\x6d\xa5\x34\xc8\x52\x95\xa9\x92\xd2\x9e\x13\x52\xda\x12\x4c\xa3\x94\x90\xd2\x26\x8e\x94\x76\x4a\x48\x69\x28\xf3\xb7\x19\xba\x52\x1a\xb5\xf3\xfc\x31\x8e\x89\xca\xf3\x06\x56\x30\x16\xd3\xf2\x30\x54\x0c\x33\xc5\x34\x68\x25\xa7\x04\x2e\x8a\xa7\x2d\xd2\x62\xda\x26\x29\xa6\x89\x04\x8b\xd2\x0c\x49\x11\xe9\xe7\x3f\x91\xd8\xf2\xc0\xb5\x43\xdb\x0a\x69\xc2\x60\x04\xa5\x13\xfa\xb8\x20\xdd\x99\x53\x07\x44\xc7\xd9\x4f\xdd\xf8\x30\x6d\xb1\xb2\x9b\x27\x96\x77\x83\xbe\xe3\xb6\x7a\xeb\xf7\xd5\xbd\xf7\x93\x2c\x74\x2f\x53\x7f\x14\xc9\x0e\x74\x3c\xaf\xd7\x38\xfa\x36\xc0\x6e\xc1\x66\xb2\xe3\x27\x3e\xd9\x15\x77\x59\xfc\xf5\x9f\x64\xeb\x7c\xc9\xf9\xef\x7d\x7f\x49\xdf\xaf\xb4\xb2\xbe\x1f\xe4\xa1\x77\x3d\x64\x6d\xab\x9c\x31\xad\xdb\xcb\x3e\xe4\x5c\xdd\x9e\x26\x20\xe2\xb2\x43\x83\xbc\x11\x7d\x10\x86\x48\x31\xb4\xaa\x47\x4c\xff\xdc\x32\x48\xd4\xb8\xcf\x3c\x46\xe3\x88\x3a\x3a\xb8\xb4\xfb\x6a\x93\x8e\x96\xdf\x12\x12\x27\x58\x93\xea\x48\x2d\xb1\x90\x9b\x44\x70\x1f\xdb\x46\xca\xfe\x56\x07\x0c\x22\x27\x71\xb4\x65\xbf\x23\x73\xe2\x5e\x15\x8e\x9e\x9a\x98\x9b\xdd\xac\xb6\x77\x7b\xa4\x75\xbc\x54\x16\x9c\x34\x9e\x6f\x56\xfd\x84\xd4\xc7\x87\xbf\x9a\xfa\x4a\x64\x9a\x4c\x46\xd6\x50\x27\xb5\xde\x5c\x27\x40\xe9\x80\x20\x1b\x28\xf9\x4e\xc6\x39\x4a\x7b\x4d\xe9\xd1\xf0\x88\x00\x54\x3e\x15\x62\x06\x94\x02\xe5\x38\x6f\x34\x3c\x7c\x5b\x67\x46\xb1\x15\xbf\x90\xe5\x4a\xe3\x43\xae\x1a\xc2\x84\xf6\x5e\xb6\x17\x2d\x98\xc3\x5a\xe8\x3b\xc4\x4c\x05\x67\x5a\x1a\xba\x43\x44\x62\x89\x6b\x50\x77\xf9\xac\x13\x3c\xe2\xa9\xa2\x80\xfb\xcd\x37\x7b\x88\x98\x71\x48\xb7\x4e\xc6\x9f\xc2\xad\x93\xdb\xfb\x1e\xfe\x1c\x2a\xaa\xbc\x48\xbe\xa6\xab\xf3\xd4\x8a\xaa\x35\xc0\xf6\xac\xcd\x85\x2b\x72\x5e\xf3\x82\xb6\x7e\xa1\xa0\xc3\x42\xd9\xd4\xcd\x5d\xa1\xc2\x83\x72\x19\x4e\x0a\xd6\x65\x88\x52\xc1\x72\xc5\xd4\x43\x71\x50\x7f\x1d\x6f\xe2\x6b\x3e\xde\x92\x3f\x8b\xe8\x04\x7d\xd9\x98\x12\x95\xae\x3a\x6f\x5b\xe1\x81\x56\xe0\x66\x66\x20\xe4\x06\xc1\x76\xf8\xc4\x9e\x2d\xc9\x4c\x40\x43\x14\xe8\xda\x12\xc2\x1c\x68\xf2\xdb\x16\xbc\xfb\xa0\xa9\xd0\xb8\xee\x6d\x06\xe4\xd9\xd6\x2e\xa6\x22\xb9\x92\x60\xa9\x2a\x14\x73\x18\x69\x5e\xca\x0e\x3a\xf5\x81\xb4\x53\xfd\x24\x89\x79\xd6\x90\x39\x72\xe2\xce\x0d\x96\x71\xcd\x73\x8e\xa8\x3c\x14\xd0\x4d\xdf\xbc\x35\x95\xe2\xfb\xd8\x5e\x8e\x99\x9f\x72\x10\x22\x2e\xae\x50\xe4\x37\x7f\xb6\x1e\x49\x2a\xe6\x8e\x48\xb5\x12\x17\x08\x46\xfc\xd4\x8a\x23\x9e\x24\x66\x1f\xe5\x7b\x8f\x78\xf7\x70\x96\xf2\xa4\x4d\x94\xf2\xe5\xd1\x83\x3d\x67\xd4\x27\xc6\xb4\xb2\xe3\xde\x56\xfb\xe6\x1a\xec\x84\xd3\xa8\xc0\x8e\x90\xfe\x91\x8a\x6d\x55\xa6\xd4\xb4\xbe\x12\x7f\x49\x1a\xb2\x2a\x37\x02\xdb\x8e\x38\x6e\x49\xa2\x76\x9f\x6c\x69\xbe\x2b\x95\x3d\xd8\xb6\xd4\x94\xbf\xd7\xe8\x21\x2a\xd1\xe6\x5f\xb3\x78\x16\xcd\x61\xae\xad\x20\x3a\x79\x58\x51\xa5\xfb\x77\x8c\x03\x51\xa1\x63\xb2\x1d\xbb\x45\xe2\x6a\x51\xa9\x43\xb5\x9c\x1a\x7e\x91\x8f\x19\x18\x63\xd2\xcc\xca\xf3\xc1\x22\x57\xc5\x64\x50\xd2\xf0\x9c\x0c\x0d\xc9\x2b\x36\xb5\x43\x94\xcf\x1e\x32\xf7\x0a\x1a\x45\x1e\x32\xce\x4f\x67\xd4\x3c\xaa\xb0\x4b\x1f\xf0\x81\xfb\x70\x02\xe5\x7e\x6a\x82\x41\x28\xb7\xa0\xe7\xe6\xc1\x11\xe4\xe7\xa4\x2a\xf9\xe2\x6c\x70\x2d\x6e\x44\x54\x13\x23\xe5\xeb\x13\xf6\xd3\xd8\x75\x4d\xaf\x35\xc2\x1e\xdd\xa7\x6c\xfa\x0e\x21\xc0\x37\x83\xb6\x86\x0a\xb3\x40\x07\xd8\xac\xb8\x4d\x1c\xef\x23\xb2\xfb\xa5\xb8\xc6\x9c\xd7\x06\xfd\x47\xd0\xf9\xea\xd9\x0b\xa6\xdc\x7e\x45\x4a\x6e\x73\x60\x11\x21\xc3\x2d\x9f\x36\x9d\x47\x0f\x22\x0e\x30\xef\x46\x94\x56\x97\x23\x90\xad\x91\xa0\x30\xd1\x6e\x32\xf7\x41\x0e\xff\x02\xbb\x28\xe6\xd4\x06\x16\x1a\x08\x09\xc3\xc5\x62\x4b\x9b\x03\x76\xad\xf8\x78\x0c\x38\x9f\x80\x07\x46\x79\x89\x2a\x3f\x77\x0a\xd8\xdd\xac\xbb\x06\x7d\x38\x64\xd7\xb4\x00\x43\x82\xff\x41\xe9\x9e\x4c\xd5\x0f\x90\xc3\xca\x39\x25\xbf\x1d\xad\xb8\x44\x52\xa5\x56\xbf\x72\xa8\x8c\x67\x08\x70\x64\x9b\x0d\x0e\x10\x9e\xb3\x34\x31\x37\x11\x87\x9a\x68\x1c\x22\xfa\x8a\xc4\xf6\x82\x5b\xed\x59\xa7\x53\xff\x56\x5c\x69\x77\x67\xeb\x90\xef\xd1\x7d\x2f\x14\x5e\x1b\x5f\x2c\xa1\x0f\x0f\x4b\x21\x08\x6e\x5e\xf9\x74\xcc\x0f\xd7\x9e\x77\xb8\x2e\x20\x6f\x35\xc6\xbb\xa1\x9f\x8f\x55\x96\x81\x3f\x7b\xa1\x0c\x8e\x60\xfd\x16\xcf\x74\xec\x13\xe7\x19\xf9\xf5\xf6\x1b\x23\x0a\xea\x27\x6c\x61\x93\xe3\x90\xa9\x61\x78\x81\x84\x91\x24\x1b\x0a\xad\x72\xb3\x31\xb6\xb7\x9a\xe4\x03\xdf\x3e\x86\xc8\xc4\x5f\xb8\x71\x0b\xbf\x25\x56\xb0\x09\x26\xc2\xd1\xd2\x14\x19\xff\xac\xc1\x67\x3f\x9d\xee\x36\x85\xed\x05\x43\xd9\x41\x6e\x94\xdc\x4a\x1c\xa0\x83\xce\xe8\xb0\x9d\x1b\xe0\xcf\x3e\x3d\xc5\x3b\x32\x30\x8e\x60\xa6\x6d\xa7\x86\x7f\x55\xf0\x4d\x0f\x88\x05\x51\x81\x8e\x66\x87\xd1\xba\x25\x25\xfb\x6f\xa9\xc7\x0d\x1b\x74\x22\x15\xce\x30\x60\x6c\xe3\x50\x2e\x99\xcd\xc7\xa0\x9a\xa5\x40\x35\x81\x06\x3e\x1d\xa7\x40\xf5\x22\xa0\x8a\xef\x7f\x80\x69\x03\x16\x47\x8c\xba\xc8\xb4\x14\x25\x1f\xf9\x62\xa7\x8e\x69\xd6\xf8\x7f\xae\x73\x40\x0d\xf2\x7e\xd3\x9f\x53\x55\x6f\xba\x0c\x0a\x53\x19\x39\xea\xec\x86\x13\x13\x45\x2f\x17\x25\x17\x82\x21\x47\x26\x54\xab\x96\x41\x11\xc8\xc4\xde\x48\x3a\x20\x42\x11\xf6\x45\x47\x9f\x95\x92\x46\x62\x81\x8a\x7f\xe4\xf1\x23\x87\x29\xe4\x47\x2a\x54\xd8\x7d\x6f\x30\x56\xef\x0d\x65\x8b\x00\x59\x09\x2e\x95\x80\xd2\xb1\x78\xbb\x28\x59\x17\xdb\x01\xb9\x51\xa2\x0a\xf2\xbe\xda\x73\xa9\xdc\x61\xfc\x68\xf6\xd4\x90\x18\x39\x90\x60\xcc\x48\xd9\x5c\xcb\xb2\x03\x14\xa3\x9a\xf7\x13\x2f\x9d\xf9\x4a\x67\xb6\x65\x01\x78\x8e\xd0\x97\xcc\xd7\xe5\x62\x73\x9a\xb6\xd6\x9c\xb0\xaa\x33\x8e\x9a\x5b\xba\xe3\x44\x67\x69\x43\x92\xc5\x3c\x3c\xa3\xa4\x53\xc5\xed\xd0\x60\x2a\x68\xdc\xa2\x99\xb6\x15\xc2\x2b\xb0\x59\x55\xa1\x64\xd6\xa4\xe4\x04\x36\x9e\xd8\x33\x59\x3e\x82\x2d\xf7\x51\xd6\x6f\x10\x09\x64\xf1\x55\x44\x64\x57\x76\xc0\x1a\x20\x4b\x1f\x6e\xe3\xa9\x73\xb1\xa4\x1f\x58\x00\x5e\x67\xa1\xf9\x09\x47\xbc\xeb\x79\x3f\xf7\x1c\x6e\x78\xa2\x10\xb7\x01\xc9\x49\xe4\x4f\xff\x89\xa0\x92\x1a\x36\x4d\x8c\x97\xf8\x06\xa5\xda\xdd\x60\x85\xa6\x3d\x0e\xe7\x58\x94\x76\xa6\x53\x87\x5b\x93\xc3\x54\xf5\x0f\xad\xc7\x6a\xc1\xe3\xe5\x6e\xad\xfe\xc2\xad\x47\xa2\x54\xd4\x2c\x08\xe9\xa4\xe8\xb6\xa2\x90\xa2\xbf\x26\xca\x45\xba\x51\x54\x9d\x1d\xe0\x65\x98\x76\x26\x2a\xbc\x01\x51\x6b\xda\xb2\x89\xc4\xbd\xe1\x5d\x62\x41\x4e\x5f\x82\x2b\x95\x91\xaf\x32\x4e\x9c\x44\x27\x0b\x68\x4c\xe3\x31\x46\x11\x44\x15\x56\x6d\x8d\x96\x18\x8f\xa4\x3c\x8b\xd4\x6c\x59\xb2\xa2\x1b\x2e\x4e\x0a\xaf\xe4\xe2\x44\x5f\x5c\xab\xc2\x2e\xe4\xb2\x4e\x14\x7a\xe1\x3c\x87\x79\x62\xbc\x64\x39\x98\xa9\x1a\xfa\x05\xe2\x62\x28\x17\x91\x8d\x4a\x7d\x27\xde\x30\x71\x79\xf1\xfd\xcf\x01\x65\x93\xab\xc2\x65\xfd\xf1\x1e\x04\x52\xd5\x7d\x67\xce\x82\x8b\x9c\xdc\x63\x0d\xed\x9e\x08\x4f\x60\x83\x54\xdc\x02\x48\x2b\x5b\x60\x37\x59\xbe\xfe\x6e\x09\x1c\xae\x66\x4f\x9c\x55\x15\x49\x7b\xc3\xa0\xc0\xfc\x01\x25\x86\x82\xa5\x49\xae\x6a\x24\x4b\x32\x79\xf8\x33\x32\x96\xf2\x46\xbf\x51\x63\xdd\x44\x27\xaa\xa5\x3f\x8e\x39\xe6\xc2\x6f\x20\x46\x92\x4e\xbd\x30\x84\x0c\x0a\xe5\xc6\xb7\xed\x20\x82\x30\xbd\xcd\xfb\x03\xad\xd8\x37\xce\x3e\x09\x44\x39\x0a\xda\x52\x2f\x73\x50\xec\x34\x61\x40\x57\x1f\x69\xb0\xf7\x87\x7b\x9f\x9f\x7d\x55\x6a\x3a\x87\x32\xf0\xf3\xcc\xb4\x85\x0e\xaa\xbf\x8e\x39\xc3\x27\x07\xea\x95\x4f\xd8\x0b\xc9\x0c\x33\x0d\x6c\x51\xb2\xb5\x2f\x0a\xc4\xda\x6f\xc4\x9f\x5e\xf9\xac\x0f\xb4\xe6\xb9\x77\xa3\x14\x6e\x40\x70\x42\xab\xd3\x8b\x15\x50\x3e\x2a\xd9\x42\xd6\x0e\x68\x4e\xed\x59\x7b\x8f\xe2\xa5\xb0\x68\x9b\x0f\xb6\x9f\x36\x28\x76\xcf\xae\xa1\x50\x9b\xa1\xae\x2f\x98\x8a\xff\x61\x0c\x52\xa4\x22\x73\xac\x8f\xd4\x8a\x78\x12\xc0\x9f\x1b\x5a\xdf\x58\x44\x11\x2b\x91\xd7\x5a\xc9\x04\x07\x66\x40\x49\x54\x99\x3b\x59\x55\x83\xa9\x84\xd9\x8b\x3f\x76\x30\x0b\x50\xa3\x70\x08\x91\x27\xfd\x4c\x62\x3e\x82\x53\x32\xe6\x2c\x80\x64\x6e\x46\xe0\x31\x83\x79\x7f\x3c\x77\x2c\x00\xea\xad\x91\x99\xa9\xb8\x40\x1d\x87\xfc\xd4\xfd\x46\x63\x2c\x73\x12\x9b\x52\x22\x5a\xaf\x39\x36\xae\x91\x2e\xb9\x29\xe2\xb3\xfa\xc3\x9a\x9d\xd8\x74\x74\x65\x6c\x5f\xd0\x76\x36\xaa\xf2\x1e\x2a\xe4\xe4\x44\xe3\xc6\xd6\xc6\xbf\x2d\xc1\x93\x28\xf3\x8a\x61\x3f\x34\xf5\x12\x68\x72\xc1\xb9\x9c\x7e\xe8\x45\xe8\x9a\x3c\x69\x19\x20\xb3\x26\xf6\x85\x91\x59\x7d\xeb\x0f\x63\xbe\xbd\xf1\x37\x5f\x2b\x48\x4d\xd0\xa2\x44\x77\x81\x46\xeb\x6d\x7b\xc0\xf3\xe8\x1f\xfb\xdb\x9a\x60\xf9\xdf\xe2\x6f\xc5\x6e\xe9\x2f\xde\x73\xe5\x89\x55\x89\xc7\x83\x39\x04\xad\x39\x4f\x72\x31\x67\x6e\x0c\x9d\x1e\x57\x37\x73\xd3\x54\x66\x65\x17\x83\x12\xc3\x74\xd4\xc6\xad\x9d\x2e\x87\x8e\x62\x1c\xdf\xb0\x6f\x43\xb6\x0d\xcc\x66\x0c\xbb\xe5\x5b\xbc\xb4\xfe\x66\xc0\x8c\x52\xbe\xb2\xc2\xb7\x99\x30\xad\x94\x4e\x8b\xf8\xb1\x19\x28\x4d\x3c\x71\xf1\xfc\xa3\x21\x6f\x69\xe5\xdb\xa0\xfe\x31\x26\xc9\x20\xaa\xad\xe2\xaf\x06\xcd\xbe\x7c\x07\x76\xac\xc6\x8a\xab\xeb\x34\x57\x9a\xd6\xe6\x56\xbe\xad\x88\x75\xc4\x1b\xa8\xf2\x80\xa4\xf0\xca\xad\x6d\xee\x0a\x73\x47\x47\x02\x34\xad\x05\x7d\xab\x94\xb6\xdf\x56\x4e\xaa\x28\xab\xac\x42\xd2\x15\x2c\x54\x2c\xcf\x9c\x95\x60\x25\xfd\x85\xa0\x7d\xaa\xcf\x38\xe5\x82\x5d\xd1\x8c\xcf\x59\xf7\xcc\xe4\xb8\x66\x5b\xdf\x76\xea\x69\x26\x51\xe0\x14\xa1\xe5\x83\x46\x61\x78\x77\x11\x69\xda\x50\x23\x1c\xd5\xdf\xdf\xf4\x00\xd3\x07\x91\xc6\x42\xd2\xd8\xb2\x9f\x1a\xb2\xd5\x13\x99\x65\x7c\x28\xab\xdf\xb9\x49\x64\x8c\xf0\x05\x5e\xb6\x18\x8d\x7a\x2c\x60\xa1\xb8\xc5\x5e\x6f\x95\x08\x6f\xb7\x4e\x19\x19\xac\xb9\xa0\xea\x8f\xb0\xa4\xc9\x1d\xa1\xeb\xc1\xc0\x84\xf2\x53\x68\xd3\x89\xcb\x3a\xd5\x11\x27\x7d\x23\x40\x88\xb8\x29\x2f\x8c\x32\xf1\xa3\x28\x72\x89\x0f\x4c\x7c\x59\x6d\x24\x0e\x6b\x98\x72\xa4\x7f\x5c\x9f\x99\xc3\x8d\xe7\x3d\xed\xa9\x02\xfc\x57\x4c\x9f\x59\xd7\xcd\x82\x25\x9d\xf2\x77\xbd\x9a\x85\xda\x9f\xbd\xda\xd1\x50\xa1\x17\xe5\x49\x2d\xf9\xe0\xee\x97\x50\x78\x96\x3c\xad\x3d\x57\x95\xbd\x5f\x29\x44\x11\xb7\xb4\xa1\x0b\x72\xea\x81\x85\xf4\x11\x6a\x67\x49\xf8\x1e\x6c\xd9\x4a\x5c\x50\x94\x64\x36\xf7\x85\x2f\x30\x8d\x8d\xcf\xc8\x18\x04\x3a\x56\xd6\xa9\x18\x2e\xd4\xa0\xca\x77\xe3\x52\x88\xea\xec\x90\xd2\xcc\x81\xbe\xb7\x18\xab\x28\xc0\xaf\x6c\x6b\xb0\xe6\x5f\xd8\xff\xc5\x21\x9c\x64\xbf\x27\x68\x31\xd2\x04\xb4\x26\xaa\x3c\xde\x63\x9d\x73\x74\xe2\xbc\x62\x6e\xe2\x7a\x3b\xe6\x9d\x86\x42\x9a\x9a\x10\xfd\x13\x38\x1c\x03\xd9\x3a\x2a\x46\x76\x85\x2c\x7c\x73\xda\x50\x0e\x18\xd1\x08\x3b\x52\xd5\x58\x58\xe2\xb8\xd9\xf6\x98\xd6\x7f\x03\x7f\x67\x95\xc2\x2a\xc2\x4d\xdb\xd8\x1b\xc9\x6b\xd7\x1e\x92\xb9\xe7\xc6\x8e\x0b\x4b\x2b\x0f\xbb\xb9\x55\xe6\x1c\xb8\x8f\x5c\x8e\xc2\x86\x1d\x94\xec\x51\xce\x59\xb4\x6c\x70\x9c\x1a\x9e\x85\xa3\x27\x8c\xc8\xf6\x5c\x32\xad\xb3\x58\xf8\xb8\xb7\xb6\xa8\x83\xa8\xdb\x75\x0d\xc7\xdd\xad\x55\x2e\x12\x0e\xc5\x1d\x32\x87\x2f\xbf\x50\xc3\x13\x4b\x38\xfa\xb0\xd0\x6d\xca\x7d\x69\xac\x0e\xe6\xf5\x84\xa7\x32\xfe\x67\x7f\x6b\x9f\x08\xea\x8c\xc3\x9f\xfe\x02\x9d\xbd\xc6\xe7\x1f\xbe\x29\x49\x23\x3c\xa6\x77\x77\x45\x58\x86\x68\xcb\x7a\x40\x50\xa9\x87\x7f\x04\xec\xf8\xae\xc2\x4f\xd3\xda\xb3\x72\xfb\x5f\x3c\x03\x13\x88\xc7\xe8\x94\x32\x61\x96\x5b\xe7\x12\x26\x2b\x52\x6f\xba\xf8\xc5\x1c\x69\x33\xe5\x13\x2f\x96\x4b\x58\x21\x77\xec\x4d\x9f\xf8\x53\x18\x42\x1e\x94\xf4\x67\xb2\x41\xfa\xde\xf0\xfa\x78\x67\x32\xb9\xa8\x59\xfb\xcc\x55\x24\x7a\x46\xc1\x8b\x86\xdc\x89\x62\x60\xa2\xd0\x89\x4a\xa7\x84\x81\x19\x17\xae\x9c\x3f\xa6\x6e\x70\xf9\xe2\x45\x21\xf5\x25\xda\xe2\x67\x06\x39\x89\x21\xdf\xd5\x79\x38\xcc\xb8\xd4\xc6\x91\x15\x22\x31\xa1\x9d\x66\x01\x55\x53\x61\xe7\x63\xdd\x3f\x8b\x4d\x73\x16\xa0\xca\xf8\x79\x1e\xef\xcd\xe0\x7a\xd6\xde\xcd\x29\x99\x8a\x6c\x3c\x58\x7a\x2c\xde\xcc\x16\x52\x63\xba\x59\x56\x91\x8c\x6c\xfb\x46\xe0\x33\x53\xda\x29\x27\x0b\xa1\x00\x16\x04\xec\x39\x09\x36\xe4\x86\x7f\x38\x82\xd8\x23\xbb\x6a\x32\xa7\x5d\x1d\xf9\x45\x5c\xef\x6a\x81\xef\x41\xed\x42\x65\xc9\xa2\xd5\x12\x0f\x32\xa7\x6e\x2c\x59\x1e\x2b\xf3\xf9\xa9\x70\x01\x86\x8e\xcc\xff\x8b\x48\x4b\x31\xba\xfd\xa0\xa3\xb0\x09\x21\x69\xda\x41\x4a\xdc\xf4\x7b\xc8\x1e\x9f\x39\x6a\xb4\x2f\xb4\xa4\xd7\x8b\x25\xbd\xbe\x17\x8c\xdf\xea\x4b\xcd\xc0\x6b\x98\xd5\x14\x12\x18\xca\x00\xb1\x73\xaa\xcc\xa2\x7a\x09\x16\x83\x3f\xce\x14\x97\x63\x0b\x1d\x8a\xe6\x41\x7f\xb0\x5a\x60\x9d\x7e\x9e\x81\x91\x16\x65\x2f\x0c\x24\x8f\xe5\xc1\x46\x41\x4a\x87\xe8\x36\xf0\x86\xb3\x00\x09\x8a\x26\xaf\x03\x1c\xbe\xa8\xbf\x8b\xda\xc3\x54\xe2\xd6\x2f\xe7\x57\xd9\xb7\xc8\x94\xf5\xa9\xfd\xd2\xb7\x80\x09\x10\xcf\x1a\x8a\xf3\x9f\xa1\x57\xe2\x08\x4a\xde\x45\x05\x9b\x27\xc2\x6e\xe5\x95\xe5\x81\x57\xb3\xb5\x31\x68\xe7\xb8\x5b\x7b\xa5\x85\x1c\xf9\x6e\x6e\x89\xb6\x2f\x00\x4a\xe3\x97\x7e\x77\xb0\x82\x01\x0b\x77\x73\xbf\xe2\xad\x7d\x9a\xbf\xea\xe3\xc2\x27\x7f\xe0\xf3\xa9\xf9\xff\xc8\x7b\xb3\xe5\xc4\x99\xa6\x5b\xf8\x82\x20\x82\x79\x3a\x54\x15\x42\x96\x31\xa6\x31\xc6\xd8\x7d\xe6\x76\xdb\xcc\xf3\xcc\xd5\xff\x51\xb9\x56\x49\x25\xc0\xfd\xf4\xf3\xee\xef\xfd\x62\xef\xf8\x4f\xba\x8d\x86\x52\x0d\x59\x59\x39\xae\x9c\x93\x5a\x8b\xe0\x1d\x04\x43\xba\xf8\x68\xa4\x6c\xe6\x38\xe9\x30\x20\x1c\x63\x4d\x52\x30\xde\xa8\x0e\x3e\x44\x2b\x20\x8e\xc8\x2f\xdb\x51\x51\xe1\xdf\x6d\xc7\x7a\x71\xc7\x18\xbc\xd6\x3e\x5a\xb5\xf1\xf2\x59\xa7\x2f\xee\xc7\xda\x71\x74\x6c\xc4\x4a\x1e\x9c\x55\x0d\x9c\x61\x6f\x7a\xb1\x72\xb0\x85\xb5\x62\x85\xc0\x30\x96\xf9\x65\x99\x27\xd9\xe1\x46\x95\x93\x12\x79\x14\xd4\x27\x8c\x40\x9c\x72\xb2\x66\xa2\xcf\xe8\xf3\x17\x5d\xe2\xbc\xbc\x9a\xc9\x42\x23\x23\x63\xaf\xad\xa9\xd2\xf2\x03\x54\x9f\x6b\xbb\x10\x41\x1d\xcf\x7b\x1b\x5e\xc7\x73\x82\x8f\x14\x20\xb9\xcc\xa0\x2d\x07\x8e\xa0\xf0\x24\x82\xef\x6e\x08\x45\x33\x85\x1c\x62\xbb\x92\x97\x9d\x5d\xf0\x31\x96\xbd\xb7\xa1\xaa\x0b\x66\x85\x0e\x89\xe9\x53\x86\x8a\x8a\x25\x74\x02\x74\x32\x9f\x96\xca\x4d\x23\x6b\x12\x56\xfd\x0f\xa2\x18\x0d\xca\xaf\x8e\xf0\xd5\xb8\x10\xbe\x36\x18\xb3\x54\x9b\x89\xc5\x2f\x44\x66\x22\x74\xea\x2e\x85\xff\xdb\x63\xf4\xcb\x02\x24\x65\xfd\xeb\x03\x5e\x24\xb1\x3b\xb6\x09\x85\xe2\x38\xd1\xb1\xbb\x59\x3e\x39\xa2\x93\x88\xde\x78\x7f\x7f\x59\x66\x67\x33\xa1\x17\x29\x0e\xed\xc1\x41\x44\x11\x20\x92\xfd\xc4\x0e\xc1\x88\xa6\xfb\x0b\x8f\xe3\x94\x1a\x93\x6d\x2b\x0a\x89\xb5\xf1\x72\xd1\x1d\xe2\xef\xe3\x13\xf0\xd2\x8d\x69\xac\xb3\x5d\x3d\x33\x45\x8a\xc1\x64\x93\xff\x3b\x44\x10\x11\x12\x6c\x85\x87\x19\xd1\x01\xf6\x74\xf7\x54\xf0\xa8\x45\xc0\x48\x10\x0d\xf8\xfc\xd0\x09\xcb\x77\xd1\x0c\x2c\x3f\x5f\xd1\xff\xb3\xc6\x0a\x62\xf1\x56\x41\x82\xde\xda\x28\x5f\x6a\x5a\x58\x53\x0b\x0f\xa2\x1e\x4b\xc5\x6b\xda\xb6\xed\x6f\xe9\xa3\xbd\x88\x57\x66\x32\x5d\x25\x21\xf2\x35\x05\x6c\x27\x31\x74\x21\x71\xdd\x67\x37\xde\x4e\x4c\xf5\xf6\xf8\xc2\x61\x63\x81\x38\xea\xb7\xf3\xd7\x8f\xbc\xbd\x1b\xc7\xf9\x68\x3e\x57\xbe\x6a\x6b\xef\xb9\xe6\x59\x62\x3e\x33\xdf\x78\xe7\x06\xc5\xb6\x66\x23\x27\xcc\xda\x99\xbe\xb9\xcd\xa4\x48\xa6\x8b\x4b\x44\xc0\x28\x9a\xb0\x92\x2a\x44\x22\x70\x51\x65\x5b\xc8\x3f\xdf\xa8\x19\xb6\xff\x03\x7e\x01\x29\xfe\xf9\xc2\xb7\x37\x1e\xea\x8b\xfd\xbb\x4e\xc4\xf5\xed\xda\x11\x0e\xbd\x2c\x57\xa3\x24\x88\x23\x1d\x9b\xe6\x34\xae\xdc\x94\xca\xa3\xc7\xd7\xc2\x1e\x3a\xb3\xb1\x75\x4c\x47\x63\x9b\xc6\x68\xbd\x01\xfd\x62\x6d\xcf\x7b\x38\x3c\x21\x8c\xa6\x6b\x78\x74\x46\x5d\x6d\x0b\x5d\x43\x88\xe0\xec\x31\xb6\xb1\x61\x42\x5c\x31\x4e\x06\x32\x76\x58\xd8\xca\xcd\xea\x93\xf6\x04\x72\xec\xd1\x8b\xae\xf6\xd6\x4c\xf2\x38\x5b\xf3\x9a\x8e\x7d\x06\x9e\xf3\x31\x39\xf9\x62\xef\x54\x0b\x7b\xde\x95\x5b\x98\xf8\x22\x46\xd0\xa7\x68\xcd\x2a\xaa\x60\x5a\x2c\xab\x15\xb0\x07\xfe\xca\xf8\x6e\x6d\x97\x01\xf4\xbe\x50\xba\x1c\x7a\x15\x25\x55\x7a\xcb\xea\xd4\x60\xa8\xaf\xe7\xee\xca\xa2\x85\x5e\x12\xaf\x7b\xe1\x72\x66\xc0\xa7\xd1\xf2\xd6\x75\xb6\xc1\x93\x16\xc6\x88\x17\x40\x30\xff\x4c\xd8\x67\xff\x55\x91\xa1\x20\x01\x84\x39\x25\x6f\x9a\x65\x9c\x8b\x73\x9a\x70\x20\xed\xb8\xf1\x54\xe6\xab\x23\x67\x46\xae\xd3\x0e\x22\x6e\xb7\x8e\xe1\x4f\x03\x07\x72\x8e\xa3\xa0\x23\x6a\x5b\x48\xfe\x96\x5e\x46\x17\xe5\x3f\xf1\x98\x3c\x33\xce\x7a\x8c\x0e\x2e\x10\x3a\xd8\x4f\xfb\x9e\x2e\xc1\xf7\x32\x83\xde\xbf\x9f\x27\xf4\x18\x64\xfb\x4f\x74\x99\xbc\x65\x8e\x9e\x1e\x6d\x72\x7a\xe4\xd5\xc7\xde\xfd\xb2\x08\xb6\x16\x18\x98\xa6\x2a\x41\x83\x86\x3a\xb4\xd3\x28\xb5\x62\x6b\x5d\x5c\x26\xe6\x48\x49\xa2\x8b\x48\x76\x01\x90\xb7\x50\x4c\x83\x6b\xdf\x90\x4c\xb6\xcd\x5c\x05\x0f\x9e\xd0\xb4\x66\xc7\xe3\xd9\x97\xe2\x2c\xde\xf0\x2a\x73\xde\xad\xf7\x90\x08\xbd\xbe\xd0\xfd\x2c\xba\x93\xb9\x67\x3f\x34\x9e\x25\x9a\x72\x4a\x47\xf7\xe3\xd7\xf9\x39\xf7\x7d\xc8\x78\x08\xd2\xde\x25\xf8\x2a\x5e\x03\xff\x25\x54\x2a\xab\x0a\x95\x4b\x51\x0c\x4d\x12\x32\xca\xb0\xee\x7f\x08\x9d\x09\xa3\x4f\x0f\xb4\x8d\x86\xa9\x9c\xb9\xaa\x36\xe9\xdd\xc6\x7c\x60\xae\xbf\x6c\xd5\x19\x5b\x1e\x7b\x10\x1d\x2b\x97\xab\xba\x49\x36\x10\x21\xec\xcb\xaa\x32\xbb\x75\xe8\xf8\xc1\x5d\x53\x91\x14\x6b\xd0\x47\x44\xc3\x0c\xb8\xc5\x73\xd3\x1b\xf4\x78\x0b\xc6\xfd\x34\xd5\xb1\xc0\x93\x9b\xb9\xca\xd1\x0a\x5c\x63\x09\x53\xf1\x01\xf8\x0f\x47\x96\x1c\x86\xbc\x4a\x53\x5c\x4a\x66\x2c\xc2\x86\x98\x56\x62\x38\x88\xd0\x96\xfe\x3c\xe1\x28\x9c\xc2\x64\x55\x6e\x0b\x30\x94\x18\xec\x52\x2a\xd3\x60\x2d\x37\x2b\x40\x21\x02\x44\xc2\x97\xa3\x63\x02\xfa\x18\x61\x1e\x7c\x58\x3a\x6d\x92\x62\x32\x0b\x3b\xce\x51\x1c\x73\x1a\x92\xe0\x04\x97\xe9\x89\x71\xfa\x70\xc4\xe6\xad\x04\x53\xb9\x40\x05\xbe\x26\xfe\x0b\xec\xba\x78\xfa\xaa\x2f\xce\xf4\x89\xdb\xf3\x3e\x8e\xbc\x1d\x59\x61\x04\xeb\xf5\x3c\x24\xef\x49\xe5\x65\x44\x91\xcf\x0b\x06\x04\x01\xaf\xf7\x6e\x6e\x7c\x58\x60\xde\xdd\xd4\x1a\x7d\x7c\x3e\xb9\x45\x61\xce\x57\x28\x6c\x97\xb4\x40\x8a\xc8\x39\x0e\x1e\xc8\x04\x57\xbe\x31\x1b\x23\xce\x5c\xb4\x9a\x8a\x21\x21\xdc\x2a\x36\x30\xa8\x54\x18\x9e\x84\x28\x65\x54\xa3\xdc\x1d\x55\x3a\x46\x4a\x8d\xb8\xc4\xdc\x16\x13\x8e\x23\x7b\x85\x9f\x3c\x16\x4f\x31\x09\xf4\xa6\xb6\x86\xdf\x65\x0c\xe0\x8c\x30\x08\x47\x86\x5a\x9e\x6a\xb7\x52\x32\xe4\x58\x7f\xac\x80\xd4\x4a\x60\x40\xa2\x7e\xfe\x88\x51\xa8\x5a\x96\xcf\xad\xb9\xc9\xe9\x3a\xdc\x58\x49\x55\x74\xd8\x45\x72\xc6\x6c\x90\x65\x35\xe2\x2c\xce\x79\x98\x34\x62\x8e\x8f\x94\xa1\x59\x57\x9b\x59\x70\xdb\x38\xe0\x36\xb8\xb6\x7c\x1e\xc8\x2c\x8f\x97\xe0\xae\xc4\x10\xff\xb4\xc2\x43\x7c\xda\x0e\x5f\x9d\x95\xb5\x98\xd0\x25\x42\xb9\xa5\x1a\xee\x2a\x12\xf1\x79\x53\x87\x85\x0d\x9b\x21\xc5\x84\x91\x35\xc3\x7b\x4e\x28\x6f\xcc\xb2\xe3\xa7\x3a\xda\x73\xaa\x3d\x3b\x47\x7e\x44\x3f\xd4\xf4\x05\x14\x76\x2c\x55\xff\x8d\x3c\x50\x2f\xff\xce\xf4\x9c\xde\x11\x07\xb6\xf8\x95\xde\x28\x4f\x0f\x3f\x33\x89\x1c\x95\xee\x89\x66\xdf\xcc\x55\x6d\x5b\x43\x17\x13\x9b\x5d\x13\xd0\x6a\xfd\x02\x19\x51\x62\xe2\x51\xc7\x75\xae\x98\xe5\x66\x9d\xb7\xa5\xea\x8d\x96\x66\x96\x89\xcc\x5e\xa2\xd0\x82\x66\xe1\xe9\x0f\xad\x5f\x00\x7a\xa1\x9b\x05\x55\x72\xab\x81\x1b\x8a\x80\x4b\x9e\xc1\x4c\x4d\x27\xe0\x73\xeb\x06\xc2\x7c\xc4\x9b\xa1\xe2\xc4\xd5\xd8\xc3\xa3\x90\xba\xec\xb3\x08\x0a\xb4\xeb\xc4\x31\xe4\x65\x59\xbe\x63\x1d\x95\x30\x73\x1d\x77\xa1\xab\x3d\x61\x8b\x27\x65\x41\xfc\x2b\x2a\xae\x2d\x35\x67\x36\xc7\xa6\xe2\x6c\x9d\x61\xd5\x99\x5e\xdf\x8e\xbd\xe7\x79\xef\x1c\x65\x14\xd2\x01\x25\xa2\xfc\xed\x0c\xcb\x56\xb2\x7b\xb9\x23\x82\xb4\xdd\xd6\x08\xcf\x9c\x2b\xbb\xbb\x23\x3e\x64\x56\x7f\x7c\x7b\xcb\xeb\xa1\x40\xbb\x4d\xfa\x14\x01\xb4\x4b\xc9\x38\xcb\xdc\xb2\xe7\x89\x5a\x5d\x98\xdd\x7c\xef\xea\x92\x33\x8d\x41\xb2\xda\x92\x65\x74\x73\x6e\xc0\x15\xf7\xab\xc5\x29\xce\x42\x4c\x84\xd5\x6a\x41\x55\x3e\x93\x4d\x8e\x9e\xbf\xf2\x51\xb0\x9a\x9e\x7e\x1d\x19\xd4\x93\xc0\xb7\x22\x93\xe5\xa6\xbf\x58\x63\xa1\x21\x1a\xea\x3a\xae\x44\x10\x5c\xa6\xc7\xcc\x7c\xd4\x5e\x0d\x3d\xaf\xcb\x68\xbe\x76\x04\x60\x3b\x92\x1e\x0f\xeb\x8c\xae\x5c\x31\x03\xc4\xfc\xcd\xda\xbd\xac\x8d\x09\x2b\x1d\x26\x28\x81\xf5\x5e\x20\x27\xab\xd5\x2f\x94\x8a\x15\x8b\x8e\x98\x43\xbb\xe8\x30\x36\xb3\xab\x16\xce\xbd\xa5\x9f\xf8\x4e\x3b\xae\x2e\xb1\x40\x72\x0d\xec\x3e\x4b\xaa\x61\xe6\xa2\x24\xba\x5e\xfc\xb6\xce\xdf\x80\x01\xba\xd1\xe1\xc6\x40\x46\x7e\xa6\x58\x88\x40\x43\x29\xfc\x51\x36\x3f\xd9\xe2\x57\x09\x44\xa1\x45\x14\x8b\x1f\x00\x9d\xc1\x87\x4e\x21\x4a\x15\xdf\xac\xf0\x0d\x32\xe2\xb3\x6b\x66\x2e\xc6\x48\x5e\x7c\x2a\x6b\x45\xb3\xc2\x8d\x25\xdf\x24\xd6\x7a\x93\x8a\x03\x1a\x9b\x56\x19\xa8\xc7\x33\xb7\x8a\x02\x2b\x9d\x72\xcf\xee\x12\x6e\x91\xca\x87\xa9\xa1\x17\xc9\xbf\x41\x54\x9e\xcb\x80\xa1\xcf\xbe\x38\x47\x57\x10\x7b\x5a\xd2\xda\xd3\xe7\x9f\x02\x30\xf2\x33\x29\x04\x14\x8b\x8e\x8a\x59\x2a\xa8\xcb\x6d\x67\xad\x48\xff\xf9\xbe\x3b\xb7\x17\xe2\x9f\x7a\x23\x9a\x66\xa2\x0e\xbf\x8f\x2a\x33\x11\x72\x14\x57\xc1\x5e\xf2\xa3\x64\x54\xcc\x8c\x85\x24\xbe\x93\x21\x1f\xe3\xdc\xd9\x48\x13\xca\xe2\xcd\x5c\xe8\xcc\x50\x6a\x24\x0a\x27\x64\xc3\x28\xa4\xdb\x79\x89\xf0\xd9\x67\xf7\xa5\xd3\x02\x3a\xf8\x99\xba\x94\xdb\x25\xf6\x32\xfe\x56\xcb\x22\x03\x7b\xdf\xb6\x7d\x3d\xb0\xab\x56\xda\xde\xa9\x3d\xfc\x95\x5d\xc0\xd3\x75\x44\xcc\x78\xcb\x99\xa9\x9d\x1f\xc7\xcd\xd1\xbd\x78\x90\x4b\x2b\xc9\xdc\xa9\xe8\xa3\x6b\xa2\xc6\x2d\x3b\x15\xe4\xae\xb0\xa4\x27\xf6\x96\x90\x5e\xe7\x5c\xc7\x22\xb5\x1d\x29\x20\x51\xc9\xdc\x10\x48\x95\x4b\x58\xab\x3a\x8a\x3f\xfe\x89\x8a\x72\x7a\x97\x8a\x8e\x19\x8d\xa4\xb5\xfe\x72\x15\x9f\x93\xd4\x71\x19\xa8\x81\x0b\x68\x1d\x7d\xfa\x8c\x7c\xa6\xe2\xe3\xe5\xcd\x36\xd0\x43\x9f\xc6\x0d\x23\x16\x69\x9a\x60\x03\x80\x2d\xc9\xee\xe3\xf6\x5e\x52\xf4\x41\x4d\xfe\xde\xc2\xb1\x97\xbb\x83\x1f\xb8\x9b\x75\xc8\xcd\x3a\x49\xd4\xbc\x72\xf0\x4e\x2c\x0c\x78\xdc\x0c\x49\x7d\xe2\x36\x33\xfd\x77\xcd\x04\x31\xea\x91\x75\x69\x63\x7f\xd5\xfe\xd3\x66\xca\x6e\x33\x95\x64\x33\x8b\x43\x72\x7e\xa0\xd1\xe5\x30\x3d\x17\x55\x67\xdc\x6f\xdc\x30\xdc\x38\xea\x54\xba\x19\xb1\x20\xff\x62\x86\xd2\x31\x06\xa2\xbe\xa6\xc4\xa4\x2e\x92\xd7\xe0\x23\xc3\xa4\xb4\x28\x6f\xaf\x75\x12\x11\xda\x56\x89\xaf\xf0\x68\x9e\x25\xc7\xb7\xcf\x46\x97\x03\x23\xec\xaa\x8b\xf5\x77\xd3\xc8\xff\xa2\x5f\xd0\x92\xa6\xff\x9d\x7e\xb9\xc5\x98\xf1\xd8\x56\x4d\xaa\x49\xa5\xc8\x9d\x41\x9e\xe4\xb0\xe7\x1d\x5d\xa0\xca\xb1\xb3\x5a\xd7\xe5\x2b\x17\x40\xc6\x0c\x28\x2c\x6a\x77\x88\x29\x65\xc5\x23\xb3\x95\x97\xb6\xe6\x41\x74\xca\x7f\x3a\xa2\xe7\x20\xe3\x14\x33\xa0\xcd\xc8\x46\x4f\x53\xd7\x5e\x51\x50\x5a\x27\x91\xfe\xcc\x0b\x40\x9d\x09\x12\x73\x4f\x31\x62\x01\x94\xc4\xcf\x21\x5d\x49\x3b\xa6\xcd\x9f\x39\xef\xdf\xeb\x00\x36\x4e\x6d\xc6\x92\x35\x16\xba\x8f\x88\x3d\x38\xe3\x07\x8f\xa6\xf5\xce\x8a\x11\xeb\x7b\x44\x7e\x9e\x07\x09\x41\x80\x55\x9d\xc6\x52\x46\xfc\x6d\xc4\x50\xc9\x4c\x35\xb1\x8b\x52\x45\x0a\xc3\x86\x43\xdb\xa4\x16\xd7\xd2\x5b\xe4\xf8\xa7\x25\x67\x8f\xd6\xdd\xdd\x95\xac\xa3\x51\xb2\x75\x25\x63\x13\x04\x8c\xb6\x70\x3f\xfd\xda\x46\xa5\x28\x7b\x36\x28\x3a\x51\x8a\xb2\xdc\x45\x4c\x80\x08\x95\x7e\xa6\x7e\x45\xa6\xf6\xb3\xb3\x4a\x72\x4a\xff\x41\x88\x88\xb6\x8a\x9b\x5a\x15\x91\x1b\x43\x47\xa2\x7c\xc0\xda\x35\xad\xfe\x61\x57\xbd\x8f\x4b\xb1\x9d\xc4\x3a\xa4\xbc\x68\x7e\x3f\x3c\x5d\x42\xd0\x46\x29\xe7\x0e\x04\x76\x91\x2a\xc2\x3a\x96\x03\x77\x3b\x05\x6e\xa0\x28\x74\x58\x73\x35\x95\x7c\x76\x85\x07\xac\x68\xd9\x8b\x83\x5b\x57\xf4\x3e\x8c\x6b\x2e\x31\x8b\x9c\xf3\x97\x56\x06\x71\x06\xfe\x9d\x81\xc1\xee\x18\x24\x24\xfb\x37\x16\x6e\x16\x61\xdf\xdf\x92\xfa\xbe\x5f\xab\x3f\xad\x8d\xa3\x88\x45\xcb\x68\xeb\x43\x5f\x2b\xe9\x37\x78\xe6\xa4\xf0\xcf\xe6\x8c\x84\xfd\x22\xb2\x33\x89\x91\x2d\xb9\x73\x49\x77\x29\xda\xfb\xc7\xdf\xee\x96\x93\xfe\x27\xc2\x4e\xee\xa7\x8b\x11\x32\xf9\xe4\x2f\x18\x3d\xb0\x99\x0a\xd5\xff\x9d\x03\xe8\xe6\xb0\xbc\xc4\xb4\x65\xca\xea\xdb\xf1\xf9\x9e\x5e\x7e\x5c\x0e\xf5\x16\x0b\x48\x36\x39\x2c\xc1\x8d\x98\xf9\xbe\xe5\x00\x55\x55\x7c\x6b\x3f\x1c\xab\xeb\x09\xa4\xcd\xa9\x76\xd3\xaa\x68\x19\x1f\x75\x57\x6b\xc4\x2a\x70\x2f\xc0\x86\x95\x69\xc4\x2e\xb2\x59\x54\x02\xeb\xea\x13\x50\x77\x8f\xfa\xc2\xba\x35\xb6\xf8\x0b\xb0\x6e\xb1\x9e\xe0\x0a\xd6\x2d\xc4\xae\xbb\x15\xed\xe4\x1d\x7c\x04\x92\xf7\x50\x24\x9c\xac\xac\xc9\x32\x00\xea\xb7\xbf\x63\xf6\xfc\x7a\x66\x3b\x6a\x05\x5d\x20\x93\xac\x1b\xd6\x3b\xc1\xa3\xe5\x8e\xb1\xbb\x85\xbb\xe4\x6f\xf2\x33\xbe\xff\x61\xb3\x0c\xc9\x1c\x11\x10\x62\x83\x60\xcc\xdf\x88\xe5\xad\xc7\xba\xd0\x3f\xda\xbd\x5c\x19\xcd\x7a\x78\x50\x2a\x35\x19\x5d\x3b\x91\x52\x7e\x23\x7b\x7a\x2f\x50\xa6\xd1\xd6\xf6\x16\x0b\xa6\x7f\x61\x05\xd8\x27\x92\xa3\x8b\x81\x83\x1d\x2c\x59\x6d\xf3\x66\x4c\x1a\x0b\xcb\x96\x7d\xd4\x7b\x8c\xc1\xd2\x44\x73\x83\x4a\x88\xfd\x37\xca\x3a\xac\x60\x7f\x76\x1d\x9a\xf1\xb9\x77\x86\x4f\x23\x86\x7e\x6c\x72\x27\xe5\xcf\x24\xdf\xe3\xa5\x27\x94\x34\x26\xab\xdd\x2a\x21\xc0\x63\x43\xb9\xe8\xdb\x12\x25\x16\x27\xa1\x42\x33\x50\x85\xf9\xa6\x0c\x30\x24\x4e\x42\xe1\x44\x3c\xe8\xeb\xcb\x81\xb5\xee\xff\x46\x0e\x02\xdf\x5c\x49\x8c\xdd\x42\x4d\x59\x91\xfe\x9c\x6c\xe8\xd7\xd5\x55\x31\x97\xf2\xff\x3d\x69\x9a\x8b\x44\xe1\x8a\xb1\xed\x93\x6c\xb2\xa9\x1b\x97\x23\x9a\x70\x93\xb7\x27\xa0\xb6\xa3\xc3\x5c\x03\x3b\x63\x4d\xcf\x0b\x33\x58\x4d\x84\x35\xe7\x12\x1b\x50\xfc\x13\xf7\x89\xa5\x8d\xa8\x26\xd3\x71\xbe\xb1\x63\x87\x1f\xe2\x90\x10\x37\xc4\x4b\xae\xde\x5d\xad\x77\x18\x17\x80\x44\x28\xbc\xab\x3d\x5c\xe4\x16\xba\x5b\x77\xf0\xc4\xcc\x42\x01\x0b\x4c\xd0\x35\x51\x6e\x76\x89\x5f\xec\x84\xe9\xff\xdd\xcd\x4e\x1b\x4e\xfa\x85\x5b\x6f\x37\xf8\x27\xc5\xbe\xe0\x06\xdb\xfc\x5b\x01\x6a\x92\x38\x3c\x30\xbd\x1b\x55\x90\x9d\x37\x56\xab\xa4\x4a\x5e\x13\x6e\x39\x52\x96\x53\x67\x0f\xb7\xac\x92\x33\xbd\x77\xfa\x30\xb5\xb3\x37\xe2\xfe\x18\x73\xc1\x69\x29\x98\x20\xaa\xb6\xaa\x4a\x8b\x2b\xa3\xa4\x5f\xf9\xf1\x7f\x72\xbe\x0e\x6c\x0e\xc9\x04\xfd\x7c\x8d\xb4\x6f\x77\xb4\x6f\xb9\xc4\xe8\xca\x8a\x05\x0d\x2f\x44\x02\x79\x68\xab\x7c\xb7\xc1\x0b\x75\x55\x76\xc5\x07\x39\xf0\xce\x15\x53\x22\xe2\x3c\x55\x92\x82\x7b\xe2\x20\x24\x71\xe7\x92\x47\x96\xad\xe8\x7b\xbb\xc1\xbf\xd5\x15\x23\x33\xf3\x7f\x22\x26\x30\x2c\xe5\xff\xd0\xfa\xcd\xe0\x49\xc7\xa4\xc8\xe2\xc9\x35\x34\x0c\x0f\x06\xac\x91\x83\x63\x6c\xe3\xa5\xd9\x2a\xba\x67\xf1\x66\x2e\x6c\xe1\x55\x72\xd6\x65\xc2\x16\xca\x01\x1c\xce\xb7\x0c\xa5\xb3\x84\xfd\x72\x50\x75\xad\xe8\x37\x4c\xa4\x49\xbb\xea\xc5\x42\xd8\x02\x43\xb7\x9d\x2a\x16\xc0\xe2\xd2\x50\x51\x8a\x3c\x11\x11\x08\xe3\xc0\x95\xc9\x8e\x11\xf8\x8f\x1e\x36\xe0\x8d\x07\xbb\xaa\x5c\x05\x87\xf8\x71\x65\x4d\x82\xc7\x55\xa9\x0f\xb4\xed\x01\x66\x2e\xfe\x82\x09\x8b\x99\x66\x88\x5d\x2d\x22\x0f\xab\x84\x98\x95\x3c\x9c\x50\x05\xfc\x9a\x3d\x41\x7e\x93\xc8\xa9\xe6\x02\x55\x1f\x97\x88\x8f\x9a\xa1\x93\x73\xfc\xb7\x2a\x3b\x25\xd9\xd6\xc8\xf3\x6e\x8e\xca\x4e\xde\xd1\x98\x17\x77\xc0\xb6\x94\xbf\xf7\xf0\x90\x57\x53\x4c\xb2\x24\xb5\xb3\x38\x4f\x1e\xd1\x73\x0c\x41\xdb\xf5\x21\x44\xa1\x67\x23\x66\x84\x8f\x0b\xc4\x68\xab\xa8\xd8\xbb\x70\xa4\x42\xb9\xe0\x27\x6d\xd5\x1f\x4e\xcd\xaa\x0f\x5a\x35\x97\xd6\x68\xae\x5a\x42\xdc\x4e\x8d\xda\xfd\x80\xc3\x19\xb2\x85\x54\xc9\x89\xeb\xc9\xf0\xa1\x5d\xde\x2a\x4f\x7b\x78\xd9\x9b\xd9\x7c\xec\x69\xf2\x73\xbc\xb8\xe8\xc7\x5b\x03\x68\x1b\x0b\x06\xf1\x5c\x89\x4f\xce\x32\xc6\x67\x56\x95\x39\x62\x7f\x58\x75\x9d\x43\xb4\x46\xaa\x96\x30\x86\x8e\xc4\x1d\xf7\xdb\xb5\x71\xae\xa5\xac\xe7\x4e\xb1\x20\xf5\x42\x62\xb4\x75\x09\x8e\xa6\x15\xbd\x1d\x16\x9b\xef\x0f\x41\x0a\x62\x88\x2f\x9a\x63\xa4\x3e\xc5\x61\xb2\xee\xa6\xe3\x62\x6c\xe5\x72\x72\x88\xb6\x44\x24\x3c\x41\x54\x7a\xb7\xd8\xfa\x94\x0c\xf3\x05\x71\xdb\x75\x10\xf6\x5e\xb2\x49\xfd\x5c\x67\xd6\xf4\xb2\x91\x37\x39\x7a\xbb\x41\xc2\xcb\x44\xbc\x4e\xb2\xf6\x3f\x23\x76\x56\x5d\x17\x10\x24\xc1\xc6\xd0\x71\x1b\x52\x54\x4e\x92\x22\x87\x6d\xb3\x89\xa5\xdb\x30\x72\x0c\xf2\x0e\x49\xd8\xe4\x61\x66\x02\x63\x1b\xd8\xfa\x45\x36\xcf\x18\x71\xb5\xb6\xcc\x71\xec\xcf\xb1\x09\x84\xe7\x4b\x9c\x8a\xa8\x72\x0d\x99\xdd\xc8\x91\xaa\x64\x72\x90\x94\x9a\xac\x51\x49\xb3\xcd\xa9\x90\x84\x37\xb1\x70\x27\x76\x6d\x0f\x28\x77\x9f\xac\xa8\xc9\x44\xb3\x09\xb1\xe8\x8e\xfc\xae\xad\xb7\x68\x6b\x31\x72\xfd\x26\x80\xb0\x2e\x81\x9f\x17\xc3\x58\x8e\x9e\xba\x95\x74\x04\xbe\xf9\xc2\xee\x80\xdf\xfa\xfc\x55\x87\xf8\x6c\x1b\xce\x61\xf6\x51\x38\x78\x6d\x5d\xb5\x36\x6f\x9b\xc3\x2e\x77\x51\x2b\x9e\xc0\x0e\xa8\x72\x49\x08\xb9\x09\x6a\x32\xb4\x8e\x76\x98\x05\xfc\x9e\x72\x2d\x58\xed\xa2\x46\x1b\x9f\xc8\xd7\x90\x42\x75\x09\xa2\xd4\xce\x06\x63\x15\xbe\xd9\x9d\xce\xe1\xe1\x04\xb1\x53\xa1\xf3\x29\x8e\xde\x53\x6c\xc2\xb1\xd1\x4c\xf8\x2d\x5c\x97\x85\x70\x52\xbe\xdb\x61\x44\x89\x45\x28\x64\x30\xd4\xcc\xf1\x8c\xcf\x9d\xbf\x9d\x90\xdd\x99\xe3\x94\x28\x53\xa9\xcb\x59\xea\x83\xb8\x76\x97\xf6\x5d\x2f\x4b\xf4\xea\x01\x5e\x8c\x75\x33\xea\xbf\xef\x00\x68\xc6\x82\xd5\x84\xa0\x5c\xff\xf4\xdc\xcc\x39\x16\x89\x11\x37\xb3\x67\xab\x4c\x2b\x1d\xd4\x90\xdd\x84\x74\x1a\x13\x39\x0f\xdb\x59\x92\xd9\x9e\x23\xe0\xeb\xdc\xe4\xf9\x7b\xf7\xa2\xdd\x0a\x16\x46\x66\xe9\x58\x73\xb3\xce\x6c\xe4\xfe\xb1\x0b\x3e\xbe\xde\x84\x18\x47\xdf\x0f\x5f\xb3\xdc\x67\x6a\xe7\xf4\x9f\x3f\x9e\x77\x3e\x5e\xf8\xeb\x8f\xdb\xa1\x8f\xf9\xa1\xc2\x9f\x3f\x74\x49\x29\xd7\x0e\xae\xf8\xcf\x53\x3d\x3e\x7e\xca\x98\xc3\x39\xcc\x34\x5f\xb1\x74\x32\x77\x8d\xe1\x18\xc1\xd2\x59\xe9\xab\x67\x4e\x78\x66\xeb\x56\xa4\xbe\x7c\x86\x9e\xb2\xf3\x9f\x9e\x29\xe3\x99\x9c\xf3\xcc\xf2\x42\xdf\xb2\xc5\x0f\x70\x4e\xe3\xf9\xc2\x77\x6d\x7e\xe3\x12\x72\x40\x3c\x3c\x3a\x45\x6d\x93\x03\x99\xab\x5c\xdd\xda\x37\x79\x82\x0e\x29\x9c\x55\xfe\xb4\x5a\xa5\x24\x8b\xa0\x04\xce\x02\xf3\x49\x83\x2b\x57\xb0\x6b\x47\x27\xd2\x1c\x85\x3d\x0b\x1c\x7b\x4b\x0e\x58\x88\x1f\x61\x6c\xf1\xef\x67\xae\x97\xd3\x1e\xae\x91\x21\xcc\xf4\xcd\x7e\x90\x67\x44\xd7\x3a\xcb\x44\x65\xbb\x88\x18\x48\x88\xa9\x80\xa4\x59\x5a\x0c\x95\x9b\x5f\xc2\x59\xa7\xbe\xff\x90\x5e\x03\xff\x2a\xc5\x2f\x65\x6e\x7e\x49\x8c\x22\xcb\xa6\x8d\x8f\xaa\xb9\x9e\x5b\xe1\x72\xd5\xc8\x8a\x66\x1a\x8b\xad\x68\x51\xf9\x69\x5e\xb2\x12\xc4\xcd\xa1\xdb\x45\xb3\xd5\xd1\xc5\x30\x04\x4f\x0a\xd1\x34\x52\x2f\xf2\x2b\x75\xb4\x01\x86\x18\x5f\x47\x5a\xa9\xb1\xeb\xd5\x02\xee\xee\x54\x4d\xd6\x49\xd7\x58\x93\x96\x62\x59\xe6\x56\xa4\x76\x40\xe1\xda\x4a\xe1\x90\x7b\x28\xd7\x2e\x1a\x8e\xab\x0a\x12\xf0\xe1\xcd\xed\x17\xa5\xf5\xc9\x02\x66\xa7\x29\x85\x9e\xdd\x4a\xbb\xfd\xdc\xaf\x70\xf9\x30\x4f\x20\xd0\x30\xa3\xb5\xb9\x9b\x3b\x68\x35\x16\x16\x32\x3f\x77\xf1\xb0\x79\x71\x32\x60\xc9\x11\x14\xea\x68\x76\xe3\xee\x21\xa9\x63\x81\x64\xba\x35\xf4\x72\x3b\xb4\x99\x0b\xb2\xc3\xf4\xb1\xf2\x2c\x01\x7b\x53\xe1\xe5\xdd\xcc\xf6\x7c\xcf\x2b\xd9\x19\xbe\x99\xe3\xef\xfc\xcc\x02\xd1\x14\x78\xe5\x34\xb7\xf9\x83\x67\xf6\xf3\xb4\xb0\x80\x36\x67\xce\xc8\x29\xfe\x9c\xef\xe9\xfd\xbb\x2c\x0c\x8e\xa5\xcc\xf8\x9f\x02\x6d\x2d\x3e\xce\x49\x08\x7f\x1b\x61\xdc\x30\x90\x96\xe9\x8b\xd4\x41\x73\x89\xe2\xb9\x88\xa3\x0f\xe8\xcf\x18\x3a\x5b\xec\x1b\xa4\xfa\x3f\x7c\x7e\xa6\x2c\x94\xce\x15\x92\x8f\x4d\x9c\x64\xd1\xc5\xc1\xe5\x8b\xc3\xb9\xdc\x68\x59\xe7\x96\xfb\xa5\xa6\xf3\xa5\x18\xf6\x67\xe6\x64\x6a\x05\x17\xd1\xcd\xdf\xe0\xf5\x58\x30\x2b\xa7\x20\xc2\x1f\xf0\x7a\xf4\x14\xf9\xd8\x14\x31\x72\xc9\x69\xb8\x4a\x98\xe2\x38\x2c\x90\x6b\xd4\x93\xe1\x54\xff\xf3\xbc\x61\x61\x58\x39\x81\x4b\xf2\xdd\xb3\x7f\x0d\x81\x34\x4d\x0e\xd7\x3c\xcf\x3a\xcb\xd3\xab\x16\xdc\xfa\x1d\x89\xa1\x4d\x26\x36\x5d\x7c\x7a\x05\xfc\x64\x73\xe7\xa1\x0a\x26\x2b\x8b\xfd\x81\x5c\xcc\x2c\x8f\xe2\x61\x1f\x13\x15\xc4\xb7\x58\xef\xab\x72\x87\x35\x09\x44\xd1\xa5\x17\x9c\x37\x4b\xbc\x33\x5c\xfc\xc1\x7c\xe0\x46\xba\x59\x57\x35\x3c\x00\x10\xb0\x8d\x4e\x22\x3a\x35\x99\xac\xb5\x12\x0f\x0f\x90\x33\x6d\x74\xa1\x0d\x82\x3b\xb9\xce\x15\xc6\x66\x3b\xce\x0f\xa7\x02\xda\xc9\x06\xcc\xc6\xd6\xd8\xac\x24\x5f\xd4\xd4\xd2\xf5\x2b\x1b\x6d\xc4\xf0\xbb\x89\x8e\xe2\x0c\xae\x53\x42\x44\xd5\xba\x06\xf2\x92\x9b\x44\xe0\xb6\x78\x3a\xf1\x27\xc5\x47\xc9\x08\xe7\xa6\xe3\x95\x14\xae\xd7\x74\xba\xb0\x42\x04\x55\xc1\x29\x5c\x72\x85\xe5\x2a\x3d\x63\x2d\x01\x74\x1f\xbd\x92\x4f\xdd\x5f\x37\xb6\x99\xa9\x74\x56\x7b\x5e\x16\xe2\x0b\xf3\x0e\x83\x4d\x02\xd8\xf0\xc1\x81\x12\x7c\x88\xc5\x9f\xe1\x55\x01\xb0\x76\x3c\x31\xbd\xc4\xc4\xc4\xb9\x2e\x84\xb9\x4d\xe8\xd5\xf2\xd6\x2f\x18\xe6\x48\x0f\x52\x76\x8f\xca\x93\x8d\x8a\xa7\x95\xdf\xe2\xdb\x38\xa5\xa6\xb6\x75\x77\x59\x6d\xf2\x32\xe7\x54\x80\x70\x74\xa1\x9f\x6e\x7b\xf5\x2a\x11\xe4\x8e\x11\x83\x90\xb2\x1b\x89\x5f\xd6\x67\xc4\x70\xb7\x14\x73\xdc\x19\x43\xcc\xcb\x29\x1a\x2d\x0a\x47\x6b\xb3\x33\xb2\x40\xf5\x78\x5d\xc3\x7e\x2a\x7b\x46\x2f\x3f\xd3\x1d\xaf\xbe\xfb\x1c\x47\x88\xe1\x7a\xfa\xe5\x60\x98\x4b\x46\xde\x3b\xb7\x6d\x1e\x54\x3d\xa7\x52\x18\xe1\xd6\x9e\x22\x83\xaa\xf9\x39\xb2\xe2\xce\xc9\x9a\xb7\x03\xcf\xeb\x79\xf1\xb1\x60\x2b\x61\x8e\x21\x34\x48\x0c\xc1\x4f\xd7\x2e\x93\x17\x0b\xcc\xc7\xee\x29\xb6\xd9\xc7\x21\x03\x49\x05\xbf\xd2\x48\x92\x66\xde\xc1\x73\xa1\xb9\x8f\x4f\xee\xef\x61\x77\x10\xb5\xd6\x02\x8d\x2d\x5c\x4e\xb3\x52\x88\xeb\x4e\xe2\x0f\x3e\x0b\xfb\x38\x20\x79\x89\x16\x82\xd4\x33\x74\x70\xda\x0b\x6a\x04\xd3\x4a\x25\x4a\x93\xba\x97\x03\x9b\x2e\x32\x23\xdb\x99\x27\xbe\x1c\x4c\x78\xd9\xe9\x90\xd3\x52\x64\xa1\x31\x1f\xdd\x65\x6f\xf4\x5d\x2f\xc1\xd5\x16\x6c\x67\x79\xc5\xd5\x02\xa9\xbe\xe1\xa4\xa5\xe0\x03\xcb\x5b\x72\xdb\x59\xdb\xb0\x31\x27\x51\x36\x8c\xc0\x94\x56\x32\x89\x45\x45\x3c\xe3\x51\xc9\x15\x59\xe3\xd5\x10\xdf\x91\xad\xfb\x16\x7d\xd1\x73\x7e\x07\x91\xbb\xb5\x58\x8f\xea\x17\x46\x01\x88\x77\x36\x91\xd7\x67\x48\x95\xc8\xba\x34\x87\x33\xda\x6e\xc2\x2c\xe2\xb9\xcd\xf1\xab\xdb\x74\xe9\x68\xc7\xcb\x59\x38\x6c\x97\xee\x25\x7e\x72\xf0\xad\x24\x32\x83\x30\x7d\x46\x8a\x5b\xf5\x15\xf3\xd2\x01\x92\xa7\xb8\x95\xe0\x2a\x1e\xc1\x88\x3f\xee\x5f\x4c\x70\xcb\x88\x60\x80\x7b\x1d\x3e\xfd\x8b\xb7\x06\xed\x91\x9f\x9a\x21\xa6\x74\xbd\xd0\x97\x33\x35\xeb\x62\xcf\xb9\x4c\x7f\x03\xa1\x3c\xd3\x85\x39\x76\x85\x32\x60\x7b\xb1\xfc\xe9\xf3\x23\x0e\x53\xae\xec\x7e\xe1\x24\x2b\x79\x97\x27\xc4\xac\x1b\x83\xbf\xf3\x13\xf6\x92\xd8\xb3\xa3\x4b\x51\x08\xce\xc5\x53\x23\xed\x79\x23\xcd\x8b\x8b\x6e\xfa\x2d\xaa\x27\x65\xb9\xc3\xf1\xbb\x03\xd6\x77\xbc\x2a\xb1\x93\x98\x04\x33\x1a\x44\x49\x83\xb2\x5d\x52\xca\x39\x9a\x62\x13\x13\x19\x13\x0b\xa1\xa1\x2d\xbc\xb6\x9c\xea\x8b\x37\x60\x99\x73\x0f\x9b\x78\x54\xb6\xfe\x1e\x27\xab\x46\x0e\x05\x9a\x3e\x07\xd6\x32\x25\x5b\x86\xcf\x0c\x97\x09\xeb\x17\xcf\xf1\x49\x3d\x0e\x75\x13\xee\x3f\xad\xdf\x1a\x57\xbd\x26\xac\xf4\x6d\x9f\xc8\x80\xcb\x8a\x47\x63\x7f\x27\x3b\x2e\x5f\xf7\x0c\x4d\xed\xeb\x09\x61\xea\x5b\xca\x38\x45\x89\x61\x67\x5b\x7a\xe5\x29\xc2\x26\x45\x29\x7d\x82\x9d\xcf\x00\x0d\x3b\x27\x1c\xf4\x92\x9a\xcb\x0a\x88\x3e\x4b\x87\x02\xdd\xed\x41\xd9\x8a\x22\x1d\x41\xef\x98\xaa\xfc\x24\x8c\xe9\xec\x24\x4c\xc0\x56\x3f\x4b\x32\x23\x97\x0c\x64\x59\xf2\xc8\x3f\x37\x5b\x36\x94\x1a\x9b\xcd\xd4\x01\x41\xc3\xcb\x79\x42\x0e\x5b\xf8\xd7\xab\x3d\x52\xdf\xae\x74\xd2\x56\xf8\x97\x6b\xbd\x8c\x0a\xb4\x38\x8b\x7d\x98\x32\x6f\xdf\xbc\x7d\xf8\x87\x85\x6f\xd9\x23\xca\xd6\x1f\xa8\x25\x60\xc5\x29\xdd\x16\x6e\xb1\xe6\x44\xc2\x20\xfa\x81\xc3\x63\xad\xe2\x34\x13\x62\x36\x52\xd4\x4d\x80\xdc\x37\x63\x69\xaa\x08\xef\xd8\x09\xd6\xad\x63\x27\x16\x01\x5d\x58\x3c\x47\x5e\xde\xf8\xae\x61\x81\x66\x80\x0c\x18\x55\xb5\xc8\xe2\x2a\xb2\x99\x83\xe5\x13\x00\xcf\x59\xb2\xa2\xb4\xf8\x56\x50\xc7\xc6\xa9\xff\xbb\x31\x88\x3c\xba\x22\xdf\x5a\x3a\xfe\xc2\xcd\x55\xa8\x2c\xa4\x82\xd4\xfc\xe6\x9c\x22\x34\xc9\xdc\x7a\x58\x46\x54\x78\x5e\xc3\x80\x90\xc5\x1a\x61\xcc\x70\x21\x46\x5b\x9a\xcd\xd0\xe4\x60\x19\x6b\x2c\x7b\x34\x12\x2d\x4d\x36\x84\x29\x8d\x48\xab\x72\xbb\x81\x2d\x29\xc6\x42\xda\x63\x8a\x47\x27\x37\xb4\x7d\x11\x9f\xb8\x30\xf8\x5b\x77\x3b\x45\x81\x74\xd7\x0b\x72\x6f\x99\xfb\x98\xa0\xe6\xcc\xe1\x8e\xda\xe0\xe9\xdc\xbe\x90\x6d\x69\x6f\x59\xd9\x0a\xd4\x3a\x9e\x6c\xf9\x0b\x2c\xd8\xfa\x67\xb8\x96\x37\xe4\x14\x31\x7e\xbc\xc6\xdf\x5f\xf6\x6f\x7c\x5a\x72\x0d\xe7\x2a\xd1\x24\x1a\x5c\x24\x1b\xb4\xce\xc7\xa8\xb9\xf5\xbf\x1b\x0e\x73\x79\x17\x2a\xd1\xfd\x69\x54\xa0\x9e\x42\xa8\x4d\xfd\xb5\xec\xb3\x2d\xa0\x64\x37\xc6\xa6\x73\x0f\x3b\x11\x35\xd0\x9b\x7d\xf3\xd6\x26\x6d\x03\x25\xdd\x12\x7b\xd3\x2c\x3f\x56\x71\xac\x66\xc0\x1c\x9b\x23\xd0\xe2\x22\xe5\x08\xff\x95\xc5\x2b\x80\x7a\x32\x15\x38\x82\x17\x50\x70\x40\xde\x97\x58\xf8\x49\xa5\x97\x6a\x44\x15\x62\x60\xcd\x75\xde\x55\x85\xa5\x6f\xc4\x99\x5c\xf0\x13\xb7\x0e\xf3\xc8\x2a\x24\xa4\x48\x3b\x99\x8e\xf7\x1e\xb5\xa3\x99\x58\xcd\x1c\xf1\xcc\x73\xbb\x5e\x83\x31\xf2\xa0\x2f\x56\x23\x0a\x41\xf1\x23\x44\x85\x80\x72\x5d\x1c\xc9\x60\xf3\x16\x06\x2b\xa8\x40\x19\x4e\x7c\xca\x2a\x5a\x71\xc1\x46\x6b\x87\x00\x74\xd8\xda\xe5\x2c\x33\xc7\xfc\xfe\x33\xc1\x0f\xc4\xc0\x8e\x61\xf0\x10\x5a\x60\x31\x08\xeb\x3a\x73\x93\x85\x43\xbb\xc1\x52\x30\x9f\x8f\x9f\xdc\x05\x73\x9e\xe9\x8a\x7d\xa1\xed\x79\x2f\xc9\x55\x9c\x8b\xcb\xe1\x73\x07\xf4\xbd\x1c\x18\x2c\x17\xe7\x54\x63\xe4\x26\x21\x55\xcc\x77\x5b\x55\xd0\xd5\x49\xdc\xc0\xba\xf6\x93\x69\x89\x0c\x56\xba\x24\xb4\x3f\x4a\x47\x0e\x6e\xf2\x55\x31\xc4\xd4\xd6\xf1\xac\x58\x78\x95\x8a\x53\x65\xe2\xfd\xf6\x27\x42\xcf\x9b\x1b\x46\x56\xa8\xcb\x72\xe4\xeb\x7d\x96\x25\x03\xc0\x40\x77\x40\xdd\x67\xb9\x60\xb7\xfb\x5e\xa1\x3e\xc4\xa3\x65\x59\xf1\xba\xc4\x89\x0e\xeb\xd9\x27\xe4\xda\x46\x7b\x65\x95\xba\x8c\x04\xdc\x5a\x84\x81\xf1\x15\xd4\x8e\xbd\x95\x6a\x24\xa4\x67\x67\x71\x2e\x0b\xa3\x70\xc0\x04\xe6\x18\x82\x79\xa2\xd6\xe2\xa0\x5e\x78\x29\x8a\x34\xde\xdc\x83\x74\x19\x0f\x8d\x59\x1f\x3f\x7c\x77\x70\xfd\xab\x72\x93\x85\xba\xc8\x86\xf9\xfa\x28\xbc\x2e\xf8\xd8\xf6\xbc\x2a\x44\xa8\xb2\x53\x05\x22\x4e\x85\xd0\xcc\xf1\x0c\x8a\x80\x9d\xd2\x8e\x86\x10\x08\x93\x0b\x46\x0e\xbb\xad\xd0\xc0\xba\x23\x26\x0a\xe3\x8a\xac\x9d\x1e\xaf\xc9\x18\x02\xba\x31\xb7\x20\x9f\xec\xde\x59\x84\xda\x50\x63\x76\x5b\x9e\x9e\x4a\x9c\x44\xaf\xe0\x48\x20\x49\x7c\x7e\x73\x08\x9c\x94\x37\x57\x03\x11\x11\xde\xe6\x4b\x17\x36\x06\x99\xd7\x46\xe3\x4c\x09\x3e\xff\x25\x4a\x0f\xc5\x8d\xc5\x2a\x7a\x40\xb6\x24\x2f\xaf\x56\x90\x3b\xd7\xfc\xbd\xb1\x87\x6d\xb2\x15\xf4\x6a\x11\xf1\x17\xe1\x36\x64\x23\x56\x44\x58\xcd\x1d\x31\x6b\x3d\xbf\x1e\xce\x61\x65\xad\x94\x56\x69\xde\xd2\xdc\xe1\xb3\xf2\x2a\xce\x46\x9b\x55\x43\x78\x9f\xd1\x13\xb2\x78\x84\xd5\xc0\xb0\x15\x25\x80\x61\x45\xae\x3f\x75\x5a\x59\x94\xf8\xf9\x22\x41\xa4\xf2\x3a\x84\x44\x70\xfb\xb9\x21\xd7\x99\x5a\xbe\xe6\x57\x50\xfe\x32\x4b\xc7\x82\xea\xc4\xef\xe6\x97\xb6\xf7\xe4\xdc\x91\x4c\x12\xd9\x7e\xf1\xe3\x93\xb6\x94\xa6\xed\x02\x73\x48\x82\x5a\x40\x9f\xc8\x21\x32\xc5\xca\x00\x86\x2b\x02\x28\x09\x49\x76\x3c\x8f\x96\x9f\x11\x48\x6c\x2c\x7a\xe1\x4c\x39\xa7\x71\x1e\xac\xf3\x90\x52\x6e\x3b\x11\x5d\xb4\x51\x86\x27\x3e\x3d\x06\xce\xe0\x47\x2b\xc0\x89\x16\x6d\x7f\x1d\xf7\x8d\xe3\x3d\xb9\x18\x2c\x1f\xea\x78\xde\xf9\x97\x68\x55\x48\xe5\x9f\xda\x0e\xcc\x19\xcf\xb6\xb1\x25\x0e\xcd\x67\x33\x04\xec\x43\x82\xec\x60\x14\xe9\x92\xa2\x27\xe3\xb4\xea\x1c\x9a\xe9\x59\xdd\xa8\x69\x16\xcf\x63\xbc\xe5\x8d\x1d\xba\x63\x33\x6a\xc0\x19\x3a\xa7\x1d\xa2\x71\x00\xfb\xb1\x72\xb7\x42\x8c\x27\xec\x18\xab\xae\x55\x6d\x16\x57\xf2\xda\xd4\xd9\x6e\x6c\xb9\x6a\x2e\xca\x41\x89\x32\x36\x6d\x8e\xb3\x03\xfb\x83\x47\x6c\xbe\xcc\x1d\xbe\x2a\x66\x5e\xff\x5a\x52\x36\xff\x64\xaf\x23\xee\x8e\x7e\x3a\xc6\xe3\xc9\x8b\xda\x93\x95\x8d\x55\xb2\x52\x40\x0c\x8c\x62\x29\x42\xc0\xad\x41\x7c\x36\x2b\xcb\x50\x84\xde\xf7\x0b\x62\xbb\xe9\x64\x77\x94\x2c\xcc\x58\x73\xab\xa4\x7e\x10\x78\xb5\xfa\xc1\x7c\xaf\x5a\xc7\x2e\xfd\x87\xc2\xd0\x6e\x61\x8c\x3f\xf1\xe5\xbf\x38\xf9\x42\xcf\xab\xc8\x94\x9e\x74\xcc\xa9\x65\xc2\x8f\x3c\xdd\x20\x28\x76\xf2\xbf\x40\x39\x82\x90\xf9\x7a\x4b\x08\x14\xb9\x66\xfe\x2f\xb4\x94\xe2\xdc\x09\x58\x3d\x26\x74\x26\x84\x53\x5a\x00\x1d\x39\x5e\x3a\xab\x87\x84\x82\xf2\xbf\xd7\x03\x3d\x7f\x66\x17\xf2\xbb\xc8\x8b\x2a\xf3\xb0\x72\x3e\xbc\x5b\x5c\x18\x96\x6e\x84\x19\x34\x29\x1b\xb7\x11\x66\xb0\x1b\xc2\xdf\xb3\x52\x23\x3f\x56\xa7\x07\x6e\xca\xaf\xed\x58\x5c\xbe\x02\xb5\xf9\xed\xeb\xdc\x13\xe2\xbe\xb5\x90\xa2\xb4\xfd\x99\x4d\x29\x51\x6b\x9d\x29\x70\xe9\x3b\xc5\x9d\x65\x73\xeb\x46\x34\x49\xe6\x46\x79\x17\xb9\xb7\x84\x81\x5f\xd0\xa7\x4c\xd5\xf2\x4a\xb7\x8d\x24\xe2\xf9\xdf\xeb\xe4\x6d\x4f\xef\x5f\x10\x2f\xd1\xa9\xee\x74\x7a\x81\xe2\x94\x92\x8f\xb3\xfa\x27\x8f\x93\xb5\xdd\x8d\xe7\xdf\xc7\xcc\xc6\xa1\xfe\x90\x87\x9d\xfc\xee\x0b\x3e\x22\x11\x60\x67\x75\xbd\x40\x2e\x65\x5c\x5b\xe9\x22\xda\x20\xcc\x27\x6a\x93\x77\x76\x74\xf3\xf4\xd3\x23\xad\x87\xdd\xcc\xc3\x51\x4e\xeb\xb6\x30\xdc\x1e\x0a\x18\x74\xd2\x2d\x73\xb7\xf5\xdb\xf5\x30\xb9\x59\x28\x4c\x5f\xe9\x89\xbd\x52\xb9\xe2\x44\xf1\x1e\xcd\xa3\xef\x59\x3a\xe3\x63\xf9\xb1\xb4\x76\xd4\xc7\x83\x33\x9a\x69\xec\x77\x6e\x08\x93\x78\x8f\xd7\xf4\xd1\xe1\x17\xe6\x1f\x08\xc2\xa8\x87\xd8\xc9\x32\x50\x62\x7f\x72\xf6\x03\x5e\xfe\xe5\x4c\x16\x52\x13\x62\x82\x1f\xe0\xb8\xa9\x7c\xc5\x67\xb6\x40\x36\x36\x69\x7d\xcb\x0e\xed\x09\x26\xce\x07\x64\x2b\xc9\xc7\xe4\xa4\x8b\xaa\x06\x2d\x7f\x38\x8f\x15\x48\x89\xc4\xb8\x86\x9a\x5d\x8f\x07\x82\x0e\xcd\xf8\xed\xe9\x47\x4c\x9a\x4b\xe8\x5b\x78\x80\x82\xfe\x57\xa2\x87\x12\x68\x50\x8f\xdb\x9d\xd7\x5d\xda\xb7\x60\x1b\x9f\x40\xf0\xfb\xb2\xf7\x44\x32\xa6\xe2\x65\xee\x4c\x3e\xa4\xff\x15\xa9\x1a\x1e\xfe\x8c\x6f\x40\x6e\x0b\x22\x7e\x0d\xe8\x93\xce\x60\x1f\x49\x1c\xd4\x42\xe3\xc2\xc0\xdc\x07\xac\x7e\x5c\x1c\x68\x86\x97\x51\x20\xc4\xe5\xd1\x9b\x51\xce\xe7\x5f\x5b\x0b\x5a\xc1\xcb\x2f\x88\x8a\x44\xf0\xc6\x02\x17\x67\x2f\x4e\x1e\x14\xe8\x29\x3b\x70\x5c\x5f\x38\x6f\x6d\xf5\x37\xbc\x53\x1e\x58\x69\x89\x34\x57\xa1\x9f\xae\x3a\xb0\x3c\x70\xfc\x20\x4d\x50\x53\xcf\x87\x9e\x97\xb7\x55\x05\xc6\xcc\x35\xb1\x19\xd7\x7c\x26\x1b\x7a\x5e\x96\x60\xb2\x13\xa9\x10\xb4\xb6\x50\x8c\x89\x12\xcb\x9c\xe0\xef\xa9\xc3\xd6\x7f\x33\x4f\x46\xe5\x5f\x20\x5e\x73\x3e\x60\xcf\x3e\xd0\xe9\xf9\x7d\x4b\x05\xb6\x64\x9f\x5c\xba\xba\x8f\x83\x1b\xe3\xb8\x71\x28\xc2\xf8\x91\xe5\x55\xfe\x09\x1d\x7e\xa8\x93\xeb\xdf\x46\x7a\x8a\x7c\x1d\x72\xdb\x91\xba\x87\xcd\xf1\x32\x7d\xba\xa6\x0c\x91\x45\xd7\x3a\xfe\xdc\x95\x9f\x62\xc2\x8a\x40\x9c\xdf\xc5\x9d\xe7\x2d\xee\xd6\x29\x87\x37\xd3\xbe\x5e\x45\xa6\xfe\x66\xad\x62\x01\x62\xb9\x76\x65\x35\x31\x25\x38\x46\xee\xe2\x02\x3c\x66\x4f\x0e\x08\xcd\x70\xb2\xc4\xa7\xa6\xd6\xd8\xcb\xdf\x46\xba\xd1\xf3\xaf\x38\x99\x03\xe3\x5e\x5e\x9a\xa0\xad\x27\x37\xc9\x63\xac\xaf\x98\x56\x8e\xaa\x23\x8d\x3d\xc6\x4b\x70\x4c\x30\x81\xc1\x52\xc7\x08\x30\xf3\x95\xbe\x5a\xaa\x48\xc6\x3b\x3a\xa7\xc5\xa1\x9e\x7c\x59\xee\xc3\x5e\xd9\x5d\xc5\xc7\x6c\x98\x52\x57\x9c\x86\x84\xc2\x11\xac\x2c\xe4\x4c\xf4\x59\x26\x5e\x46\x4d\x8b\xc3\x6d\xa1\xbf\xe3\x2c\xcc\xba\x83\x1f\xdd\xb5\x6c\x3a\x73\x03\x88\xe4\xdc\xe9\x9a\xdf\x90\xdd\xbf\xb9\xc6\x82\x48\x01\x03\x9f\xcb\xfd\x53\xb4\xc8\x11\x3e\x19\x4e\xc9\x06\xc4\x4d\x18\x4f\xc7\x2e\xe8\xd4\x11\x8a\x71\x36\xe2\x83\xc3\x8f\x2b\x5d\x4d\x23\xc0\x22\xf9\x62\xcf\x1e\xbd\x33\xa7\xa8\x11\xce\x1c\x18\xf9\xa6\xd2\x04\x45\x70\x7c\xb1\x42\x16\xc0\x36\x12\xf6\x61\x5a\x3b\x92\x65\xb5\x20\x1f\x0c\xb0\x59\xaa\xe8\x00\x00\xf3\x7b\x40\x73\x6a\x5e\x24\x37\x98\x4f\xae\x62\xdd\xcd\x02\xfa\x8e\xd8\xf7\xfa\x77\x4a\x3f\xae\x47\xe2\xc4\xf0\xd2\xf1\x76\x11\x54\xe4\x48\x22\xb9\x28\xf8\x28\x7a\xc3\x6d\xf3\x02\x09\x37\x3a\x8d\xc7\xce\x2e\x9e\x25\xb0\x54\xb8\x70\xbb\xa4\x35\x2c\xea\x89\x13\x5a\x72\x74\x3c\xca\x24\x18\x3f\xc2\x7a\x67\x48\x06\xe9\x24\x9b\x74\x50\xf8\x51\x20\xf8\xfb\xc5\xc8\xa7\x8e\x5b\x3b\x9e\x35\x1f\x55\x66\xa2\xa7\x8e\xce\x53\x55\xda\x4a\xf1\xdf\x9d\xd3\x49\x2e\xf3\xe7\xd5\xe7\xba\x76\x71\xc9\x0f\xe2\x43\x9c\xaf\xdc\x18\xc8\x38\x61\xc1\x3b\x20\x73\xd6\xec\x16\xf4\xe8\x5c\xff\xae\x47\x88\xf7\x27\x1d\x6e\x6f\xd1\xe1\x5f\x75\x10\x10\xd2\xed\x8a\xbb\x75\xa2\x7c\x9e\x22\xe1\xd5\xfe\x69\x53\x9e\xe8\x44\x39\xf3\xf2\x69\xe3\x40\xa5\xc2\x8b\xb7\xba\xe1\x79\x5c\xfd\x94\x06\xd7\xd8\xfa\xab\xf7\xb8\xf9\x71\xcf\x21\x07\x87\xec\x9c\xe5\x76\x44\x47\xe7\x6a\xcb\xe5\xa8\xd1\x9f\x11\x9f\xd5\x63\x44\x52\xc2\xf6\xb7\xbf\x84\xea\xb7\x90\x3e\x18\xb6\x03\xef\x59\x72\xc9\x35\xba\xca\xe3\x8c\x91\x34\x36\x72\xa6\x8f\x25\x6c\x19\xbd\x83\x19\x99\x1b\xd4\x7b\xcb\xe1\xec\x1a\x88\x62\x57\xd3\xa4\x43\xe6\x11\xfa\x89\x99\xb3\x33\x69\x23\x7f\x23\xf8\x3c\x5c\x5e\xca\xe0\x3e\xbc\x64\x77\xa3\xe0\x3b\xd6\xca\x40\xad\x00\x99\xd6\x97\x93\x23\x16\x44\xa3\x0f\x0d\x27\x75\x77\x9b\x08\x17\x11\xbf\x0c\xa4\xa4\x7f\x8c\x42\x47\x8f\x97\xba\x60\xb0\xac\x77\xfa\xed\xac\x91\x0f\xd8\x98\xee\x20\x9a\x13\x33\x50\x33\x27\xa1\xa7\xb7\x28\xab\x33\x43\xd7\xe6\xae\x6d\x36\x00\x16\x80\x5d\xc9\x8b\x03\x6c\x0e\xae\xf8\x19\x5f\x71\x14\x1c\xff\x14\x33\x7d\xd1\x2a\x1f\x58\x7d\x4d\x5a\x6c\x57\x7d\xbb\x5d\x9c\x01\xc3\x2f\xa4\x1c\x33\xd0\xec\x10\xa7\xf8\x30\x90\x07\xde\x92\x56\xa2\xd2\x15\x89\x87\xa5\xe9\x17\x47\x15\x07\x75\xe3\xb8\x77\x2d\x3f\x97\x4f\x49\x80\x46\x14\xe7\x25\xd3\x39\xa7\x71\xd0\xb4\x7d\x5e\x44\xee\x0a\xe7\x1b\xa6\x63\x10\xcd\xc6\x89\xf2\xd6\xc3\x58\x72\x13\x85\x8b\xb9\x57\x8c\x75\x7b\x4b\x7c\x79\x78\xb2\x57\x93\x67\xa5\x2c\x2c\x79\xb5\x76\x14\xa8\x3d\x42\xbc\x59\x78\x9e\xb7\xb8\x9f\x2f\x26\xd2\x9d\xcd\xe8\x94\x40\xea\x73\xba\x95\xa0\xa0\x52\xe4\x76\xbf\xa0\xa0\x31\xf3\x5c\xeb\x2e\x05\xc1\xae\xe1\xa7\xc8\x74\x72\xb4\xa4\xec\x1c\x0a\x8f\xb7\x67\x45\x92\xa8\x76\x2f\xed\x4b\x76\xc1\x6a\x34\xa9\x48\x7e\xd2\x4b\xe0\x94\xf3\x98\xa3\xb5\xe1\x32\x21\xc9\x61\x93\xbe\x77\x0d\x06\x13\x39\x62\x9d\x6b\x51\x2e\xdd\xe5\x73\x71\xb1\xb2\xc8\x89\xbb\xc1\xd8\x2a\x3c\xd2\x20\x55\x2d\xf2\xca\x0d\xe4\x5d\xe6\x69\x8a\xc8\xa9\x74\x5e\x49\x98\x9c\x9c\x0b\xb0\x07\x74\x0c\x3f\xa2\x12\x24\xc7\x2f\x9f\x9e\x7d\x58\x09\x5d\x08\x49\xd4\xcd\x4e\x71\x9f\x30\x3b\x97\x70\x34\x74\x06\xbf\xd3\x55\xc9\x5e\x07\x39\x49\xa9\x99\xce\x26\x97\xb0\x13\x6f\x8f\x2e\xc9\x4d\x72\x2a\xae\x25\x49\x38\x92\x4e\x79\xaf\x6d\x07\x45\xfc\xa3\x79\x02\x67\x69\x70\x8b\xb1\x34\x3d\x7d\xfc\x40\xe9\xa5\x4e\x31\xa7\x18\x91\x14\xeb\x24\x15\x1a\x07\x33\x77\x98\x81\xbd\xb6\x1d\x8d\x1e\x19\x53\x7c\x27\x0d\x2f\xd1\x58\x6a\xcf\xdd\x24\x8e\xa8\xb5\xb3\xd5\x53\x97\x60\x75\x37\xff\x12\x9e\xe2\xc7\xe7\x0c\xf6\x7e\x27\xaa\xb8\x93\x72\xa2\xe2\xce\x09\xde\x83\xfb\x19\xe7\x7e\xba\x1d\x15\x09\x7b\x15\xe2\x54\xa9\xba\x25\x49\xc7\x74\x38\x38\x44\x3a\x95\x64\x12\x1e\x68\xd0\xce\x59\x62\x98\x5a\x21\x0c\x43\x3c\xfd\xb2\xa8\x9d\x62\xd3\x7e\x4d\x9c\xd9\xed\x64\xed\xef\x3f\x8c\xf4\xd6\x5f\x17\x83\x8d\x87\x62\x3d\xa5\x89\xa1\xd6\x2f\x86\x3a\x4c\x0c\xd5\x8f\x87\xaa\x87\x9f\x1c\xeb\xe4\xc3\xc2\xcd\x9b\xbe\x4f\xdf\x6c\xdf\xfd\xdb\x41\x35\x34\x5f\x65\x13\x30\xdc\xf0\x34\x2c\x0f\xea\xf2\x80\x8e\xf9\x4c\x52\x0a\xcf\xaf\xa0\x06\x5a\x0f\x76\x32\xe5\x2c\x1e\xd0\x3c\x21\xce\xce\x23\x20\x84\xc4\x3b\x3e\x6b\x15\x98\x59\xb2\xe5\x24\xed\xef\x69\x26\x62\x29\x12\xfc\x4b\x72\xaf\xbb\x7c\x86\xbc\x0f\xad\x9f\xc4\xd2\x3b\x8e\x12\xc4\xa4\x4e\x26\x84\xa5\xa3\x58\xed\xc3\x15\xd9\xb7\xcd\xfe\xcc\x6f\x40\xdf\x05\xea\x58\x59\x32\x47\x6b\x0a\x4c\xe1\x0c\xdb\xd7\xa3\x0c\x5b\x77\x2a\x16\xfe\x6c\xa5\x63\x35\x78\x1f\x9f\x36\x41\x0c\x10\x60\x85\x3c\x7b\x17\xae\x76\x56\x0f\x2d\x39\x86\xad\x72\x72\x03\x22\x2b\x9e\x17\x3f\x1d\xe7\x35\x2b\x95\xcd\x1c\x53\x9d\x4d\x09\xc0\x7f\x9c\xb6\xb9\xef\x66\xcb\xd9\x6e\x58\x89\x72\x91\x14\x8c\x30\x9b\x07\xff\x9f\x39\x8d\xf7\x36\x17\x0c\xf8\xc2\x3b\x95\xd7\x5d\xcc\x38\xa3\x20\xa0\xfd\xe9\xa6\xee\x3f\x67\x47\x5d\x09\x32\x29\x3c\xba\xd2\xc4\x12\x0f\x54\xfd\xab\x13\x45\xc2\x90\xaf\xaa\x15\x18\x0e\x2e\xe9\x51\x16\x0f\x37\x29\x3f\xda\xb4\x1c\x2b\x1b\xce\xc9\xd3\x63\x71\x60\x9a\x05\x3f\xa7\x09\x67\x72\x48\x58\xca\xa7\x9b\x6b\x57\xa7\xe5\x5f\xf1\x81\xf5\x6f\x38\x99\x0f\x33\x88\x59\x25\x58\x40\x5b\xa6\x0d\x04\xaa\xe7\xf5\x24\xb0\x5b\x5e\x2c\xc9\x53\x95\x79\x06\x49\x60\x05\x8b\x30\xd6\xbd\x96\xd6\xb2\x5b\x16\x75\xd9\x53\x4b\xe5\x49\xeb\x22\xaf\xe3\xc8\xe9\x0d\x30\xfe\xb6\x50\x3a\x0b\xd2\x74\x25\x1c\x3d\xb0\x40\x6c\xf2\x27\x13\xd0\x5f\x2b\x68\xf1\xa4\xca\xd8\x15\x61\x0d\xbb\x64\xa0\x00\x25\xd4\x2b\x8b\xf0\xe9\x75\xcc\x83\x22\xb0\x4a\x8c\xdb\x9b\xcc\xe2\x44\x9d\x44\x4d\xf7\xb7\xf0\x1f\x49\x0b\x03\x35\x14\x93\x52\x6f\x24\x39\x0a\x42\xcd\xad\xb1\xe4\x2e\x2c\x14\xae\x0d\x1c\x63\x15\xb5\xa0\x95\xf6\xfc\xe1\x5d\xdc\x4a\x5e\xc9\x7f\xad\x12\xec\x00\x1d\x98\x9a\x79\xf6\xba\x6f\x0b\x73\x2b\xd7\x6d\x2e\x67\xbb\x82\x17\x58\x87\xea\x59\x06\xbb\x82\x3f\xe5\x59\x56\xa7\xaa\xd8\xcc\x0f\x1c\xe5\xfe\x14\xae\xa7\x2a\xae\xf6\xec\xbf\x01\x23\x3b\x08\x92\xf7\x25\x2d\x15\x65\x12\xe0\x36\xde\x39\xa3\x00\x38\x46\x7a\x22\x8c\x42\x14\xac\x4f\xa1\xab\xee\xf8\x20\x03\x7c\x13\x98\x8f\x36\x61\xff\x77\xa0\x7c\xe8\x26\xfd\x29\x1e\x11\x5b\xa7\x9f\x17\x23\xd3\xbb\xfc\x2d\xc5\x26\xbd\xf6\x89\x1d\x3b\xd7\x54\x54\x4d\xb5\x9d\x67\xb0\x3d\x26\xa9\x16\xe3\x5f\x7c\x9a\x3b\xa1\xe7\xbd\x9d\x0f\xda\xb2\x9a\x4f\xcf\x1b\xa9\x8a\xfb\xf3\x33\xbf\x75\xc7\x89\xbe\xe6\xb6\xe8\x6b\x5e\xe2\x9a\xfc\x31\xb4\x25\xaa\x59\x9d\x56\x9a\x45\x0f\xf4\x50\xad\x70\xed\x6d\xcd\x7b\xe6\xf1\xa5\xda\xe0\x97\x30\x2b\x3d\xc7\x02\x4a\x4a\xf3\xdb\x59\xc5\x2b\x2b\x35\xdb\xf5\x4f\x2e\x9f\xe9\x43\x3d\x1d\x7a\xfe\x4b\xa5\x8f\xa6\xb4\xa7\x5f\x52\x48\x5b\x30\xda\xe8\x33\x8a\xf6\x19\xb1\xe7\x69\xfe\x08\xa1\xb8\xe5\xbd\x3f\xa7\xdb\xde\x8b\x57\x91\x63\xbd\x55\x15\x14\x13\xa4\x5c\x74\xd6\x0f\x69\x0b\xae\xdc\xdb\x19\x72\x0b\x84\x72\x1b\x1e\x40\x00\x5b\x68\x5b\x5c\x31\x43\x85\xb0\xcf\xd6\xe0\xd5\x7c\x44\x5c\x49\xfa\xc9\x33\xdf\x7a\xd4\x30\xf0\x77\x39\x47\xc1\xd8\xac\x76\xc3\x9b\x7e\xdf\x48\xf9\xde\x7c\xb8\xb3\x7a\x8c\x5a\x09\xea\xf2\x78\x80\xac\xb8\xd9\x2b\xfa\x27\xd3\xf3\x25\xe3\xaf\xbd\xfc\x71\xcc\x41\x62\xcc\xc1\xc3\x4e\x8c\x6c\xe6\x00\xf2\xcd\xfb\xda\xdf\x1e\xb5\xe3\xd3\x4e\x81\xf4\x9b\xeb\x99\x8e\x22\x8a\x7a\x52\x45\x44\xb3\xee\xcc\x4e\x64\xc2\xee\x08\xf2\x5f\x53\x84\xd6\x30\x27\x0e\x2f\x7f\xac\x70\xb7\xbd\x58\x1a\x96\x10\xbe\x70\x58\x76\xa8\x81\x77\x77\x31\x5f\xed\x12\x22\x84\xdb\x7c\x71\xb5\x34\xbd\xd1\x05\xc5\x99\xe6\x84\x4c\x71\x54\xb5\x27\x55\xa3\x15\x37\xf7\x0a\xc3\xe8\x2e\x97\xe8\xb6\x70\x8b\xf6\x6c\x69\x3a\xed\xaf\xd5\x1c\x9d\x93\x0b\x9d\x8b\xf5\x2c\x3e\x48\x46\x9b\x5a\xbf\xde\xea\xc6\xe8\xa8\xc5\x77\xa2\xee\x93\x6b\xa7\xc7\x6a\xfa\x7a\xb1\x44\x1d\x2f\x98\xca\xfe\x15\x76\xa8\x7f\x5c\x3d\xe0\x8b\xdd\xb6\xed\x3d\xd9\x25\x27\x91\x75\x68\x97\x0f\x05\x50\x2c\xf0\xbc\x5e\xe1\xb2\x83\xfe\xbc\x9e\x6e\x7b\x75\x6f\x7d\x45\x2b\xcf\x2d\xa1\xad\x8b\xfe\xf9\x42\x5b\xf5\x1b\xb4\xf5\x12\xc4\x54\xd4\x06\x15\x8d\x61\x52\x6f\xb3\xe2\x5f\x67\x2f\x0c\x5f\x23\xc0\x87\x86\x89\x56\x39\x48\x7f\x7a\x0f\x52\x46\xd4\xf7\x9a\x0b\x35\x31\x2c\xe1\x7e\xad\xe0\x34\x0c\x11\x3a\xf2\x0e\x65\x28\x2c\x48\xe0\x43\x2f\x6f\x0e\xad\xb0\xbe\x16\x6b\xf9\x43\x4d\x46\x38\x52\x2b\x39\x80\x3a\x63\x6c\x60\x1c\xb6\x07\x6c\xed\x4e\x01\xf0\x33\xf4\x97\x5a\xe6\x2c\x3c\x55\xb6\x77\xb3\x62\x75\xa5\xbd\x59\x4a\xfd\x1a\xf3\xcb\x0c\xe5\xca\xf4\xa8\x2e\x0b\x21\x67\x1d\x4e\xa0\x76\x86\x44\xbd\x88\x52\x0b\xf4\x5e\x19\x9e\x14\xf1\x01\xe9\x70\xd7\xfc\xf9\x8c\xca\xe8\x46\x59\xd4\x3f\x72\x77\xf1\xf5\x69\x0d\x80\x32\xd8\xd2\xa9\x99\x8e\x6f\xf1\xcf\x96\xa7\x9f\x86\x42\x39\xbe\xde\xa0\xa3\x66\x75\x7c\x24\x16\x99\xc3\x3d\x34\x4c\xfb\xae\xf9\x6a\x1a\xbf\x13\xe6\xd2\x12\x61\xbf\x2d\x87\x75\x73\x68\xe6\xc4\xff\x25\xe6\x92\xf0\x47\xba\xe3\xbd\xff\x12\xa6\x24\x3c\x69\xa4\x72\x0c\xf6\x1c\xc8\x84\xfa\x2d\x39\x45\xc6\xea\x8e\x3c\xb0\xeb\xe9\xdf\xa8\xb9\x3a\x53\x85\x85\xb6\x71\xd0\x5a\xb4\xb7\xf1\xdd\x44\x8d\x64\xe6\x47\x77\x48\x17\x6c\x9a\x5e\x0f\xef\x36\xe2\x25\x98\x6a\x48\xcf\x1d\x99\xc5\x70\x8c\xb4\xb7\x4f\xff\x82\xec\xe1\xc2\xa1\xc4\xf6\x0b\x27\xa1\x2f\x3f\xa6\x5a\x24\xce\x85\x32\x62\x63\x31\x18\xe3\xe8\xbc\x4f\x87\xde\xf4\x4e\x38\x93\x59\xe2\xa6\xb7\xbb\xfb\x92\xcd\xd9\xc1\xf9\x20\x2d\x1b\x46\x10\x20\xa8\x0e\xfc\x7c\xa2\x2a\x22\x2c\xe9\xb3\xda\xac\x28\x01\xd4\x50\x45\xbf\xb5\x3a\x42\x3c\x50\x31\xb7\xef\xac\x79\xbe\x8f\xf7\x78\x66\x81\x9a\xb0\x23\x55\x3b\x62\xc2\x24\x15\xa7\x75\x30\xe2\xd3\x48\x9d\x4d\xd7\xbe\xbc\x2a\x8e\x96\x96\x8c\xa8\x63\xe6\xe9\xa7\xf4\x49\x7c\x3c\xb6\x0a\x85\x64\xa0\xb5\x68\x2b\x68\x4d\x1e\x2d\x3f\x95\x68\x20\xa6\xfd\xe8\x7d\x1d\x02\xee\xe5\x52\x76\x3c\x3d\x55\x80\xbc\x69\x99\xdd\x13\x3c\x19\x2d\xc2\x87\x0d\xa3\xb5\x7f\xc3\x87\xb5\xa7\x7f\x82\x47\xb4\x0f\xc2\xc5\xc2\xa3\xe1\xcf\xfa\xb5\xda\xb6\xd1\x58\xfa\xb5\x61\x4f\x66\xfd\x92\x13\x21\xaa\x2b\x67\x67\x28\xa5\xb5\x7e\x81\x8e\xe5\xeb\xe1\x43\xba\xe3\xf9\x3f\xc4\xe8\x74\x68\x98\x23\xad\x16\x78\xf0\x95\xf5\x46\x3c\x4b\x8d\xd2\x70\x52\x15\xc5\xb9\x16\x1d\xb3\x67\x26\x20\x87\x1d\xff\xd3\x70\x88\xe7\x16\xee\x8e\x4f\x10\xa7\x66\x65\x25\x36\x0b\x11\xd3\x75\x46\xef\x09\x5a\x55\x3c\x52\xd4\x90\x73\xab\xc4\x09\x3f\x1d\x8d\x4c\x10\xfc\xb8\x4f\x36\xb2\x3a\x89\x2c\xf2\x61\x9a\x38\x3a\x29\x45\xdd\x8a\xbc\xd7\xf9\x95\x0e\xbc\xc7\xd0\x73\x50\x03\x56\x68\xfe\x2d\x77\xc4\xee\x4e\x89\x77\xa1\x73\xe2\x71\xe3\xa7\x7b\x9e\xae\xe9\x06\x7f\x48\xb5\x89\x85\x73\x54\xed\x24\x0c\x44\x57\x94\x3c\xd1\x5e\x1e\x75\xd4\xaa\x59\x49\x8b\xdc\xde\xf2\xc2\x9a\x02\xa3\x93\x29\xf5\x9e\xd3\x5a\x78\x9a\x11\xf8\xbe\xc4\x68\xd3\x9c\x0a\xc3\x11\x7b\xd1\x17\xb2\xab\x9b\x22\x7c\xeb\x1f\x39\x90\x66\xb3\xea\xc7\x74\x53\xa4\xf2\x60\x16\xbc\xa0\x72\x9c\x96\x11\xb0\x01\xba\xd3\x83\xc8\x5d\x7d\x89\xfb\x52\x55\xf2\xdf\x8c\x4b\x78\x51\x03\x2d\x73\x3a\xfd\x8e\xbb\x10\x0e\xd0\xad\xb1\x62\x2f\x4a\xf7\x66\x12\x7e\x0f\x2d\xfa\xc2\x49\x5a\xe9\xcf\x9d\x6f\x9c\x6f\x7f\xc3\x5a\x83\xcd\x37\x0a\xea\x67\xdc\x5a\x00\x75\x77\xf6\x80\x4d\xda\xf7\xf4\xa3\x90\x66\xbb\x9e\xee\x7b\xe1\x4f\x7d\xd9\x94\xfe\x6d\xf7\x49\x92\x84\x67\x8f\x09\xca\x6c\xcb\x1e\x73\xa9\xb7\xe7\x05\x5f\xf0\x9f\xb6\xdb\x86\xbc\x82\x67\x44\x26\x09\xf3\x8b\x0f\xea\xbe\xa7\xbf\xf2\xa6\x2d\xad\xe7\xfa\xea\x24\x9e\x98\x7e\x84\xf7\xbf\x2f\x08\x76\x82\xa8\x04\xc1\x5b\xd7\xe3\xfa\x9e\x85\x3d\x6f\x13\xec\xe2\x24\x41\x93\xc1\x8f\xaf\x64\x2b\x83\x33\x65\x5d\xd3\x48\x41\xcf\x69\x16\x1a\x8f\x54\xb4\xa0\xb2\xcd\x87\x17\x37\xcc\x2a\xf4\x8d\xe6\xfb\x2b\xd9\x1e\x52\x67\x64\x4a\x31\x92\xb0\x86\xea\xbd\xa9\x22\x4b\x5f\xc9\x51\xdd\xaf\xed\x75\xe2\xb2\x70\x08\x5d\x52\xac\x40\x6c\x8e\x63\x23\x9e\x4f\xe6\x56\xec\xea\x70\x25\xf6\x1a\xe1\x83\xfd\xf5\x49\x5f\x36\xdc\x31\x67\x41\x51\x18\x57\xdf\x92\xa4\xbd\x9d\x7f\x33\x54\xb4\x55\x12\x39\xde\x3b\x5e\xdc\x3d\xbd\x99\xd3\x65\xad\x4a\x12\x22\xd9\x2e\x8d\x6e\xf5\x6e\xaa\xf2\xb8\xbd\xe7\xdb\x3b\xd9\x6e\xfe\xc3\xfe\xa2\x35\x11\xb2\xf4\x2f\xb1\x47\x08\xd4\x87\x28\xe4\xf7\xd7\xcf\x78\x9d\x0c\xe7\x41\x5c\x74\xbe\x1c\x3f\xe1\x7d\x59\x58\x77\x26\xf8\x4c\x6b\x6f\x70\xb7\x55\x47\x98\x85\x5a\xd5\x86\xd9\x32\x6f\x29\x4c\x4a\xfb\xfc\xdb\x2c\x89\x79\x48\x1f\x75\xf9\x53\x06\x46\x1d\xa5\xaa\xad\x1b\x41\x1f\x15\x88\x14\x67\x46\xaf\xc4\x33\x36\xbf\x36\x4a\xab\x7f\x54\x62\xab\x09\x80\xd1\x82\xac\x83\x2e\x2a\x1a\xb0\xb4\xf8\x3d\xe4\x17\x59\xe7\x96\x24\x6b\xf4\xf7\x1a\x76\x9e\xee\x5e\xbc\x7d\x4f\x22\x66\xad\x54\xbe\x4c\x35\xc6\x1c\x9b\xc4\xfa\x1b\xc2\x88\xc5\x59\xd0\xbf\x1d\x79\x86\x06\xc0\x3c\xc4\x19\x01\xfc\xc4\x41\x77\x50\x90\x76\xcd\xe1\xd3\xa4\xc7\x18\x3d\xeb\xc5\xca\xc5\x56\x11\xbc\x24\xf4\x82\x1f\xa2\xac\x20\x5a\x33\x3e\x49\x4f\x82\xcc\xed\x7f\x1d\xeb\xc9\xd3\x33\x7b\xe2\xc1\x30\x3f\x39\xc6\x85\x56\x2b\xfd\xe6\x7d\x4a\xc0\xeb\x52\x79\x55\xcc\x78\x0f\xb0\x7f\x5d\xd3\x50\x67\xae\x60\xf7\x58\x13\xdd\x78\x91\x55\x54\xe9\x0d\xb5\xc3\x50\x21\xa2\xd7\xc3\x06\x6b\x61\xfe\x7e\x82\xeb\x75\x78\x8a\x96\x59\x42\x2f\x44\x6d\x6c\x9e\x55\x37\xd1\xa2\xb3\x79\xce\xac\x06\x2d\xb2\x4f\xeb\x84\x84\x3d\xf8\x00\x72\xa1\xdb\xd4\xc6\x7c\x3d\x18\xeb\xbc\xd0\xcc\x5a\x35\xd3\xda\xdb\xa8\x9f\xb4\xb9\x83\x64\x3e\x90\x93\x37\x58\x71\xe0\x32\x81\x67\xb3\x74\x88\x83\xa3\x45\x46\xb4\xa4\x27\xcc\xce\x7b\xe1\xac\x6d\x54\x94\xa6\x87\xaa\x0a\x12\x6a\x63\x2d\xde\xe7\x12\xd1\xa9\x8f\x2a\x8b\xc3\x2a\xd2\x4e\x06\x92\x40\x14\x90\x7e\x5e\xbe\x95\xfe\xfb\x9e\x46\x95\xc7\x70\xd1\x8e\xbe\xd9\x36\x8a\x9e\x79\x2f\x7b\x8e\x7a\xdb\xf2\xb6\x2a\x03\x31\xb0\x13\xc2\x96\xa2\xcd\x76\xfc\xf5\x1d\x61\xbf\x79\xfe\x19\xe8\xb3\x9d\xf5\x97\x9c\x26\x82\x33\xac\x73\x2a\xfb\x1f\x6c\x93\x77\xc3\x37\xbc\xf4\x9b\x17\x3e\x68\x92\x83\xd5\x9d\x47\x8a\x54\xd1\x15\xdb\xd4\xbb\x19\xd3\x52\xc5\xce\x98\xb3\x73\x56\x67\x75\x44\x4b\x7a\xa9\x1f\x30\x38\xd4\xb6\x99\xa8\xf1\x03\x38\x4a\x9b\xcf\xb4\xbd\x70\x5b\x17\x5b\x68\xb7\x8b\x5d\xde\x8f\x34\x16\x38\xb7\x6e\xb7\xec\x47\x2d\x23\x7c\x63\xa1\xa6\x89\x96\x3d\xd3\xf2\xb1\xbe\xc7\x2b\x0c\xc9\x4c\x9d\x75\x3a\x48\x8f\xb4\x9e\xf7\xc6\x58\x6a\x31\x92\xec\x54\xc6\x5a\x8f\x9a\x62\x5a\x11\x22\x92\xe8\x6c\xfd\x4c\x69\xd6\xfc\x49\xd3\x8e\xe6\x44\x1b\x51\xc4\x2f\xe8\x42\xe2\x13\x72\xc4\x81\xc7\xe0\x7a\xb3\x86\x2d\xd6\x4e\xed\x1c\x23\xd2\xe7\x12\x96\xd1\xde\x0a\xff\x7f\x60\xb6\x10\x88\x24\xb4\xda\x97\x49\xf9\x32\xf2\x0b\x68\x17\x01\x17\xe0\x29\xd3\xb5\x90\xe4\xcf\xf4\xec\xc1\x6b\x36\x44\x43\x9c\xd0\x48\xb7\xce\xc8\xc1\xd5\x96\x1a\x87\x0f\x2b\x89\xb5\x0b\xb0\x2f\xb2\x75\xd1\x85\x64\x6e\xcd\xe4\x35\x30\xa2\xa6\x84\x70\xbd\x7f\xa6\x7d\xaf\x45\x7d\xab\x05\xb1\xdb\xd0\xcb\x5c\x61\xc3\xff\x30\xe7\xec\x0f\x41\x7f\x6a\x99\xae\xe9\xc7\xdc\x86\x7c\x46\x76\xa4\x7e\xac\xad\xa1\x57\x55\xa5\x42\xbb\x7e\x92\xf8\xfe\xce\xb3\xfc\x2d\xb1\x0c\x9d\x17\xf9\x1b\x1e\x7e\xa3\xb7\xfa\x4f\xe2\x37\x6d\x1a\x89\x45\x3f\x08\x98\x54\x57\xda\x7e\x1e\x8a\xdc\xd0\xcd\xb7\xe5\xd7\xf8\xa7\x58\xbe\x46\xf2\xdc\xaf\x0f\x39\x1c\xa4\xdd\x9f\x15\xa0\xce\xb4\x0e\x32\x8d\xfa\x11\x54\x2f\xdf\x79\x11\x5c\xcd\xf6\xab\xf4\xfb\x4d\xce\x4a\x79\xff\x15\xf1\x70\x6d\x71\xf0\xe9\x1f\xef\xf2\xc3\x70\x7d\xff\xc7\x87\x11\x11\x06\x0a\xfd\x1f\x72\xa1\x67\xaa\x91\x0e\xbc\xa6\x0c\xae\x01\xa5\xe1\x73\xe9\xcb\xee\x94\x5c\x6c\x7f\xa9\xbc\x74\x28\x54\x55\x7f\x5e\xe6\x62\x62\x68\x2c\x54\x7a\x50\x37\x37\x3c\x44\xff\x0e\xe8\xda\x89\x8a\xf5\xc3\x27\x04\x2b\x8d\x79\x00\x41\xac\x36\xb5\x47\x39\x77\x6c\xc4\xa8\xd9\xc5\x0c\x20\xbc\xf5\x14\x33\x44\x24\xcb\x01\xf7\x09\xd5\x93\x7c\x8c\x59\x25\x92\xa0\x4a\xc3\xff\xad\xc7\x68\xcd\x17\xa9\x22\xe1\x40\xff\xb6\x35\xc6\xd8\x6c\xff\xe1\x31\x24\x65\x7e\xfd\x79\x98\xf4\x33\xab\x1b\x4f\x39\xd1\xdc\x29\x06\x00\xdd\xfa\x22\xfd\x79\xad\x08\x62\xfe\xf5\xcf\x83\x5c\xe3\x5b\x77\x7f\xee\x3c\xcc\xf1\xa2\x64\xe8\xe5\x57\xf2\x31\x26\x0a\x98\xc7\x80\xd8\xf6\xfb\x46\x5b\x62\x8e\x35\x8f\x60\x02\x9e\xff\xf4\x08\x3c\x88\x95\x5b\x93\x10\xd5\x62\x45\x60\x5d\xed\xd6\x33\xce\xe0\xe0\x70\xcf\xdc\x7a\x8a\x2e\x6c\xf3\x14\x02\x3c\x86\xb7\x68\x8b\xdf\xd3\x53\x18\xf4\x11\x0c\x35\x76\xb2\x4d\xbe\xc5\x9c\x8c\x1c\x88\x70\x4c\x22\x52\xfa\x54\x8f\x73\x80\x2a\x4e\x4a\x86\x53\x92\x94\x5e\x22\xe2\xa0\xd7\xa1\x66\x9b\x67\xc6\x0e\x52\x64\xd5\x89\x64\x72\xd0\x65\xaf\xe3\x9b\xe4\x45\xc7\x4f\x03\x2f\x5a\x1c\x45\x60\x03\x06\x63\xaf\xfc\x89\xfe\x8c\x66\x0c\x2c\x2c\x7f\xdf\xc7\x7f\x36\xe2\x3f\x1d\xb7\xef\xc1\x41\x63\xdd\xd6\x2f\xbe\xf3\x16\x8f\xd5\x0d\x1b\x2b\xab\x38\x00\x89\xa1\x92\x8e\x2b\x76\x14\x85\x88\xc8\x19\x87\x36\xf7\x90\x14\x46\x79\x3a\x2b\x8f\xdc\x32\x10\x08\x26\x79\x16\x9f\xa6\xaf\x95\x4f\xcf\xf2\x36\x91\x6c\x49\xc7\x14\xdd\x5c\x8b\xe8\x46\xcd\xe6\x30\xe3\x8d\x15\x73\x00\x33\x8c\xc2\xa5\xd3\x79\x93\x87\x62\x5b\x60\x33\x10\x4b\x3b\x33\xc4\xbe\x71\x89\xa6\x68\x62\x97\x87\x94\x51\xe3\xb3\x08\x36\xec\x1c\x78\x39\xc7\xcb\x28\xcf\xd2\x39\xe5\xa1\x49\xe4\x44\x32\xd2\xc3\x2f\x3a\xac\x17\x89\xa6\xe7\x68\x7a\x83\x34\x3c\x86\x49\x2e\xf9\x3d\x3c\x89\x5f\x84\xa5\xe8\x64\xf3\x4e\xd2\x5a\xee\xe4\x78\x18\xe9\x85\xe5\xe1\x97\x9c\x6b\x42\xe1\x60\x4e\xf3\x79\x9b\x41\x7e\xe6\x64\x4f\x31\x19\xc5\x7c\x94\xab\x67\x5a\x2f\xb9\xad\x27\xdb\x23\x0a\x21\xba\x54\x4e\xbe\x56\xf9\xfe\xb5\x0d\xde\xe3\x92\x54\xf3\x4e\x6a\x59\xed\xe4\x04\x3b\xdf\xda\x84\x09\x8a\x16\xbc\x13\xc6\x1d\xa1\xef\xa9\x3c\x53\x0e\x25\xb8\xe3\xfb\x2e\x00\x57\x8c\xcb\x3c\x28\xe8\x18\x43\x6a\x78\xfe\xf6\xa5\x09\xfa\x4d\x3a\x18\x15\x98\xf3\x2b\xeb\xf8\xfd\x5b\x3f\xc4\x68\xf8\x9b\x64\x32\x71\xdf\x9a\x7e\xff\x16\x9c\xd7\x24\xa2\x59\x81\x56\x0d\x09\xc3\xfe\xfe\x25\x72\x30\x4b\x62\xee\xb0\x96\xdf\xbf\x05\x40\x9b\x80\x34\xb8\x2a\x38\x33\xb8\xfe\xfe\x2d\x56\x76\x24\x91\x6e\xdc\x6f\x6d\xbf\x7f\xeb\x97\x4c\x06\x21\x9e\x3b\xbb\x42\x14\x73\x24\xe0\x0c\xe7\x6f\x17\xdf\xa6\x57\x04\x51\xf9\x12\xbb\x18\x48\x90\x61\x08\xed\x1e\xbf\xec\x88\xf0\xcb\xf6\xd4\xa6\xd2\x04\x92\x08\x64\xfe\xee\xbb\xbc\xfe\xd5\x25\xb3\x38\x45\x81\x64\x36\x84\x6b\xbe\xed\x5e\x2b\xa0\x61\xdf\xbd\x86\x5c\x22\x32\x4a\x5e\x63\x95\x47\xed\x5e\x63\x01\xe0\x66\xa2\x3d\x0c\xff\x77\xe2\x5d\x5c\xfb\x72\xaf\x9d\x13\xbe\x7f\x5e\x2c\x11\x69\x01\x9b\xfb\x40\x32\xdb\x9f\xa8\x25\x4c\xf4\xbc\x87\xfd\x2d\xf2\x5c\x49\x81\x98\x4e\x05\x68\x91\xa0\x18\x30\x29\xdb\x32\x71\x26\x59\x31\x90\xb1\x9b\x81\x99\x87\xf6\x19\x00\x74\xab\x03\x75\x50\xed\x69\x88\x85\x5b\x11\x65\x25\xd9\xeb\xf3\x20\xbe\xfd\x57\x33\x15\xba\xb1\x17\xd1\x00\xa0\x0a\x15\xb1\xcb\xe9\x97\xf4\x2a\xf4\x82\x40\xb4\x6f\xa8\x47\x4c\xdc\x36\x67\xec\xe6\xef\x7a\xa2\xf7\xea\x70\x88\x14\x61\xfd\x75\xbe\xf1\x19\x5a\xde\xdb\xa5\x9d\x76\xe2\xec\xfa\x11\xc6\x20\x5c\x15\x13\x61\x43\x7e\x41\x9f\xa7\x3a\x52\x3a\xc2\x2f\xd1\x47\x06\x50\x6c\x5a\xd9\x67\x58\x8a\x7d\x4f\xff\xce\x3d\xa7\x9b\xe9\x89\xd6\x25\xfd\x22\x46\xba\x30\x6f\x3e\x7d\x77\x9f\xee\x7a\x2d\x39\xe6\xeb\x13\x78\x24\x9e\xd7\x77\x46\xe3\x6a\x88\xbf\x75\x81\x6b\xaf\xcb\x91\x68\xcd\xcf\x46\x62\x8e\x2e\x42\x27\x87\x6e\xe6\x7b\x43\x11\x67\x9b\x08\x90\x98\xc0\x24\x9d\xda\x0b\xdb\xef\x4a\xb4\xca\x8f\xca\x5e\xa7\x3b\xe9\xaa\xd6\x53\xf5\x35\x0d\xd3\x8e\xe2\x26\x19\x01\x45\xba\x2b\xd2\x11\xc4\xdb\x27\x4e\x45\x28\x43\x4b\x46\x76\x42\x6a\xee\x36\x5d\xcf\x7d\x3e\x47\x87\xc6\x14\x77\xdb\x9b\x3b\x33\x61\x3d\xb0\x6c\xf3\xab\x0b\x3b\xb2\x3e\xea\x31\xd2\x94\xcb\x5d\xe0\xeb\x72\x01\xac\x2d\x65\xaf\x17\xcf\xd6\x9d\xaf\x7f\x56\x9e\xd2\xc4\xe9\xd0\x48\xd3\xa2\x05\x58\x50\xa5\x83\xa1\x5a\xfb\xb7\xda\x6a\x52\xdd\x9f\xff\x55\x5b\x3d\x34\xf5\x70\xab\x25\xc6\x1f\xe8\x63\xd4\x52\xe8\xf9\xbf\x96\x72\xb7\x3d\x2b\x6a\x6b\x1b\xf2\x3d\x9f\x7e\x07\x33\x3d\x61\x7a\xa0\xf5\x56\x81\x67\x2f\x30\x23\x9f\x10\x41\x60\xee\xcd\xe8\x7f\x88\x82\xb0\xf1\x0f\x7d\x4f\xd7\xf4\x08\x04\x6b\x9f\xee\xe1\x28\xff\xd8\x88\xae\xa4\xc7\x5a\x96\x2a\x11\xa5\xe0\xa7\x17\x5a\x37\x7e\xc2\xff\xbc\x50\x6b\x09\x66\x72\x0d\x21\x15\x7d\x90\x24\xac\x8f\x2d\x6e\xb9\x96\x90\xbe\xa7\x2b\xea\xe0\x43\x1d\xdc\xdf\xbc\x9f\x51\x27\x5f\x64\x81\x89\x3a\xde\x7c\x60\xac\xb3\x68\xff\x7c\x7d\xfb\xdd\x68\x8d\xe2\x55\xf5\xde\x73\x57\x3d\xdb\xea\xb2\xe8\x97\xfd\xc2\xcd\x86\x73\x6a\x2f\x8e\xc8\xde\xa1\x7b\xeb\xf6\x59\x95\xc5\x7f\xd1\x2b\xdd\xf8\xae\x7e\xf8\x84\x4f\xdf\x6b\x0d\x0c\x79\xce\xfc\xb1\x3e\x6c\xcd\xa7\xf7\xf5\x27\xc4\x0a\xd1\xd1\x42\xb7\x5c\xdb\xf3\x85\xef\xff\x12\xdb\x41\x03\x61\x29\xe9\xae\x17\xa0\x64\x8c\x0c\x61\x02\xaf\x4c\x3f\xfd\x69\x54\x95\x8c\xac\x89\x2f\x18\x83\xbd\x89\x84\xb3\xe8\x27\xd1\xbf\x3e\xd7\x34\x47\xe1\xaa\x7f\x76\x7c\x7f\xdd\xf9\x8e\xff\x37\xd3\x3d\xaf\x43\xab\xe7\x4c\x78\x7d\x17\x41\x53\xed\x4c\x1d\xdc\x0b\x86\x52\xa1\x88\xf0\x5e\xb4\x72\x84\x77\xa0\x2c\x5f\xdf\x90\x5f\xc2\x59\xc8\x77\x43\xb1\x1a\xb4\x3c\x5d\xd0\x1b\x1c\x1b\x6f\x94\x47\x5b\xb3\xb3\xd8\x53\xc6\x6a\x1d\xc0\x9d\xde\xf6\xa6\xca\x5b\x48\x7b\xed\xe9\xc4\xb5\x7f\xf2\xf3\x0b\x50\xfc\x7d\xac\x3a\xa0\x88\xbc\xe4\xae\xbd\x6d\x0b\xe8\x02\xbf\xd3\x17\x81\xbe\x29\x80\x55\x88\x15\x6e\x85\xe9\xc0\xeb\xcf\x1b\x38\x5d\x4a\xf0\x60\x8b\x41\xf4\xb7\xb4\x78\x14\x37\xfc\x1f\x0c\xa1\x05\x75\x32\xfb\x67\xaf\x9e\xd3\xda\x3b\x28\xff\x67\xfa\x5d\xd6\xa1\xed\x3d\x20\x0c\xa8\xbb\x59\xea\xc8\x84\x38\x57\x55\x04\x8d\xcb\xae\xed\x17\x7c\xb1\xe4\xaa\x33\x3c\x3f\xbd\x2c\xf8\x5a\xaf\xd2\x44\xd9\xf9\xc7\xf4\x9b\x51\x28\x89\xee\xd6\x2d\x2f\x61\xe3\x5e\xa9\xd9\x84\x5e\xfe\xb4\x24\xcf\xc8\x79\xfc\x76\x1f\xb7\xe9\xbd\x0d\x64\x44\x1b\xa1\x22\x6f\xa6\x44\xe3\x9e\xa9\x9e\x59\xb8\x63\x73\x28\x6b\xec\xb7\xaa\x5b\x9d\x0e\xf4\x91\x98\xfb\xa2\x73\xee\x54\x41\x70\xef\x2a\xc2\x8d\x85\xe4\x84\xa7\xeb\xc6\xad\x88\xae\x00\x35\x61\xda\xf5\xb4\xaf\x1f\x5a\x48\xb6\x09\xd3\xa1\xf7\x29\x96\xc3\xdf\xa0\x87\xfe\xb8\x14\x45\x0b\x58\x0e\xdf\x13\x58\x4a\xf2\x71\xc4\x8c\x1f\x65\xba\xe4\x28\x80\x94\x1c\x2e\xa2\xdc\xf6\xb6\xb5\xe8\x36\xa5\x2c\x3d\xb8\x7f\x0a\x21\x7b\xdd\xc2\x17\xca\x1e\x19\x01\xd2\x07\x59\x34\xd9\xcf\xa6\x24\xcd\x8a\x89\xe0\x65\x49\xfb\x70\x5b\x9e\xc6\x18\xb8\x23\xd1\x50\xa7\x26\xc8\x1f\x3a\xa3\x77\x08\xe0\xda\xbf\x21\xbf\x02\xb7\xdb\x35\x09\x76\x6e\x72\xc8\x3b\xc3\x7f\x83\xf6\xfc\x35\x61\xd2\xef\xeb\xaf\x2f\x57\x38\xa9\x2a\xc2\xd4\x77\x80\xb8\xaf\x11\x61\x2a\x46\x85\x17\x82\xef\x0f\xe8\x11\x0f\x3c\x2d\xc5\xf4\xfd\xb0\x86\x2f\x4a\x39\xd3\xc6\xc3\x01\x74\x64\xee\x3f\xef\x00\x7f\xfc\xbe\x2c\xb9\x51\x45\x33\x89\x8f\x0e\xc0\x2c\x9a\x19\xbc\xed\xce\x64\x0a\x8c\xbf\x3f\xc4\x6b\x32\x97\x7a\xac\x69\xb2\xe7\xcd\x0c\x0e\xdd\x5f\xfc\x2d\xf1\xe5\x86\x0c\x6b\xb2\xea\x46\x2e\xd1\x15\xf5\xa7\xa9\x09\xf6\xd1\xd4\xf8\xe9\x94\xd6\x4f\x0f\x87\x01\xa3\x0d\x60\x3f\x67\x7c\xc8\x87\xb7\xd2\x2f\x11\xcb\xf1\xef\xcd\x26\x80\xab\x57\x7a\xfb\xfe\xcc\xb3\x10\xc2\x5d\x60\x18\xf1\x96\xbc\x24\x0f\x44\x0e\xc4\x8c\xfc\x2a\x70\x7b\xaf\x8a\xd8\x62\x72\x75\xac\xd6\x7c\x78\x53\x64\x9c\xa4\x5c\x5f\x2b\xdb\xc8\xae\x48\xaf\xb9\x44\x22\xed\x79\xf5\xc0\x46\x1e\xd3\xbe\xe4\xe3\x98\xfe\xc1\x20\x2e\x3d\x79\x37\x73\xd7\xf3\x52\x4a\x0e\xd7\x8a\xf2\x36\x14\x2f\x3e\x61\x2e\xef\xda\xdd\xe6\xe7\xb4\x84\x16\xe5\xd8\x6e\x55\xf4\x7f\xed\xd7\xf2\x89\xef\x18\xb2\x36\xff\xed\x64\xe6\xa6\x1a\xd2\x62\xfb\xc5\x82\x88\xf7\x3d\x7d\x54\xc3\x42\xf2\x9d\x87\x74\xcf\x0b\xc6\x0a\x13\xf4\x1c\xd9\xe9\xe9\x01\xc8\xc2\x92\x59\x70\x86\xf9\xe1\x05\x5b\xb8\xd2\xda\x3f\xa3\xc7\xbf\x6c\x57\xf0\x84\x7e\xda\x5f\x4c\x8c\xfd\x6d\xe7\x75\x9d\xfc\xdd\x43\x25\xa1\xb3\x33\xcd\xe2\xd2\xbd\x58\xa4\xd6\x13\x22\x9c\x0b\xee\x63\x7a\x78\xb7\x4d\x4c\x78\xa6\xfe\x6a\xf8\x28\x22\x71\x97\x10\xe2\x85\x4d\xbd\x80\x76\x64\x5f\xbc\xc6\xbe\xae\xc3\x91\x8e\xaf\xbe\xa7\x1f\x60\x6a\xf9\x69\xc4\xac\xf7\x27\xb1\x96\xfd\xea\xa4\x5b\xde\xe7\x4b\xea\x44\x5a\xeb\x7b\xc1\x63\xec\x77\x92\x63\xec\xcd\x7e\x45\x3e\xe0\x8f\x15\xe4\x4f\x77\xbf\x6c\x90\x2b\xd8\xdb\xbb\xfb\x65\xa9\xed\xe5\x6d\xc9\xf4\x21\xf8\xfd\x1e\x49\x71\x90\x23\x57\x46\x83\xf2\x9f\x8d\xa4\xdb\xa3\x42\x39\x53\x00\xd5\x2e\x81\xa0\x80\x2c\xf1\x49\x12\x6b\x7b\x8d\xb0\x02\x31\xa0\x3b\xc4\x7f\x1c\x34\x2c\x7f\x9d\x8c\x2f\x6e\x62\x9d\x42\x0c\x0c\x3c\x2b\x79\x89\xd8\xd1\x46\x6c\xd0\x9e\x34\x58\x93\x9d\x55\x55\x9f\x15\x09\x02\xd1\x6b\x55\x46\xe2\xf5\xa7\x18\xda\xff\xcd\x27\x4e\x8c\xec\xa2\x5d\xa5\x59\x86\xc5\xec\xb4\x89\x60\x99\x66\x7a\xad\xcc\x41\x18\xae\x15\xc2\x74\xda\xaf\xb1\x47\x7f\xaa\x32\x49\xda\xfa\xb1\x4f\x50\xa3\x7e\xb8\xa4\xb5\x9b\x9b\xb0\x17\xa6\x3b\x9e\xfe\x2a\x5d\x6d\xcd\xd0\x0b\x7f\x1b\x41\xe2\xa8\x9f\xd3\x81\x9e\xea\x50\x82\x1d\xf3\x75\x51\x42\xd6\x6a\x9a\x77\x64\x2a\x5d\xd2\x33\x68\x5d\x92\xaa\xa0\xb7\x08\xd0\x79\x67\x38\x9f\xf5\x27\xed\x54\x2b\x8a\x94\xfa\x3c\xca\x33\xda\x93\xac\x20\x0d\xa2\x84\x02\xf5\x29\x32\xd8\xa3\x1c\x88\xe2\x9f\xa4\x10\x66\xc4\x0d\xc0\x6c\x84\x4c\x51\x82\x49\xfa\x09\x2e\xeb\x1d\xdc\x75\x2d\x23\xc3\xea\x0a\xa2\xc1\xb3\xd2\xc9\x33\xee\x4c\x70\xf4\x97\x16\x90\xc6\xeb\x20\x6e\x44\x06\xf1\x03\x4d\xc3\xab\x8b\x0b\xf4\xcc\xc7\x49\x0e\x3f\x6d\x08\x41\x53\x5a\x45\x9d\x85\x35\x5a\xad\x2a\x3a\xc7\x84\xf5\x65\x00\xf8\x7b\x50\x62\x98\x6d\xb5\x8c\x18\xa5\x6b\x78\xad\x28\xaf\xe5\x94\x44\xf2\xcd\x34\x9c\xd7\x6f\x62\x39\xd5\x63\x9f\xef\x09\xf4\x5b\xab\x93\x3e\xc5\xef\xad\xea\xf6\xbd\xc0\x8c\x08\x2c\x16\xcf\x8f\xc0\xa0\x5a\x63\x09\xa1\xdb\xe3\x79\xe4\xe9\xce\x15\xfc\x21\x45\x15\xb9\x34\xf5\xb8\xce\x43\x42\x4c\xf5\x2d\x86\x55\xa0\x73\xf2\xd2\x14\x1f\x99\xe1\x23\x15\xcd\x8f\x2c\x79\xc2\x22\x6f\x80\x79\x78\xd0\x04\x44\xde\xa7\xd7\x48\x72\xb7\x8a\x22\xc7\xbd\x19\x79\x6a\x7a\x0f\xe3\xbb\x23\x2d\xeb\x8a\xda\x6e\xc8\x13\x24\xdf\x43\xbf\x64\xa6\xcc\x2b\x5e\xcc\xec\x21\x1d\x9a\x77\x80\x99\x01\x59\xeb\x0d\xf1\x9d\x1f\x28\x1b\x1a\x09\x59\x12\xb0\xa8\x6b\x77\x63\x94\x82\x58\xa9\x09\x9a\x00\x6c\xc1\x4e\xd5\x92\x8f\x8b\xa1\x4f\x17\x82\xc8\xb4\x76\x52\x1f\xd2\x80\x82\x30\xb8\xf6\xd3\x65\x19\xc8\xc2\xa7\xdc\x7a\xaa\x7b\x5e\xb1\xfe\x0c\x62\xde\x48\x6e\x95\x3d\x6c\x88\x02\x5b\x42\x5e\x52\x33\xd6\x0d\x76\x18\xed\x48\xd0\x94\xcd\x41\xc0\x88\xaf\x91\x3a\x2e\x19\xb1\xf7\xe6\xe9\x61\x43\x96\xff\xa3\x8a\xe4\x98\x4f\xd9\x2b\x0c\x6c\x3b\x29\xb0\x4d\x31\xc4\x86\x2b\xe7\x60\x3f\xd6\x5f\xa0\xa1\x79\xf0\xd7\x41\x02\x95\x1f\x3f\x7d\x6a\xed\x3c\x9a\x7d\x71\x06\x65\xf1\x33\xa7\xe0\xae\x06\x19\xbc\x14\x11\xf5\x29\x3f\x9e\xf7\x80\x72\x78\xc7\x41\x9f\x5f\x22\xf6\x68\x83\x17\xb7\xaa\xc1\x85\x36\x6c\xbd\x35\x54\x61\xac\xe9\x64\x74\xec\x68\x85\x53\xaa\x33\xcc\x6b\x47\x6f\xd9\xba\x7a\xcb\xa7\x51\x1c\x7e\xfd\x6b\xbd\x65\xf0\x10\x93\xef\x50\x6d\x40\x07\x51\x04\x62\xe0\xe9\xdf\x90\x93\x5a\xb3\xfb\xc8\xea\xb2\x54\xc8\x08\x6c\xad\xc4\x48\xd8\x99\x9f\x29\x7e\x9d\x64\x9d\xdf\x2b\xe8\xa5\xd8\xa2\x03\x23\xe4\x0e\xa5\x3b\xad\x85\x54\x4d\x7c\x23\x9a\xcb\x3c\xeb\xbe\xa5\x87\xf6\xa9\xd5\x3d\x79\xc6\xfa\xde\xfd\x3d\x53\x99\x12\x43\xe5\x20\x90\x12\x4e\x75\xa7\xf6\x52\xb7\x74\x1f\xa4\x24\x67\xbc\x97\x09\x9d\xbe\x81\xff\x6c\xc0\x2e\xb6\x2a\x7d\xd0\x9e\x37\x6b\x14\x30\xcc\x79\x23\x9d\x35\x3c\xf5\x21\x3f\xa3\xf1\x0a\x30\xad\xbc\x6d\x44\x5b\xbf\xf2\x23\x8f\x53\xa6\xb5\xb9\x37\xda\xe8\x23\x92\xfb\x5a\x3b\xe9\x95\xaf\xf7\xe6\xe7\x54\x3d\x23\x4f\xf4\x13\x09\xfa\x5d\x59\xba\x95\x3a\xba\xea\x28\xdc\x4a\x9d\x65\xc5\x50\x76\xf1\x4e\x74\x81\xdc\x5d\x24\x7c\xdd\xd4\x09\x37\x12\xb4\xdb\xf2\x40\xc3\x99\x32\x2b\x1a\x95\x75\xe4\x46\x6a\xe7\x78\x31\x55\x96\x70\x8b\x61\xdd\xaa\x31\x34\xc0\xf5\x50\x27\x63\xa6\x60\x9c\x1d\x28\xdb\x0a\xa2\x28\x53\xb2\x46\xde\x44\x89\x3b\x20\xa8\x34\x80\xd4\xdd\x9e\x7e\xda\xe0\x0f\x91\xca\x76\xc2\x35\xda\x0f\x76\x0d\xf0\x35\xef\x7d\x2c\xa7\xc1\x54\x59\x39\x6c\x50\xb1\xc1\xba\x12\x60\x50\x71\x42\xb4\xf4\x5c\x1d\xfd\xc4\x43\xcb\x91\xa2\x7f\xb3\x44\xd8\xc2\x41\xc3\xcc\x41\x38\xac\x33\xd2\xa8\x7d\xfe\x94\x3c\xc4\xa2\x1c\x72\x33\x3d\x1a\xa1\x1e\x83\x3f\xad\xdc\xfa\x9e\xf9\x37\x58\x2a\x70\xfe\x76\xed\x93\x2c\x05\xc6\x17\x44\xef\xdb\x0f\x25\xbb\x10\xec\x55\x55\xd0\x19\xda\xf3\x9e\x13\x1a\x78\x54\x36\x34\xd0\x8c\x57\x90\xbb\xcb\xc9\xf1\x0f\xc5\x62\xa3\xcf\xda\x0a\x0b\xbc\xf1\x69\x48\x72\x19\xcd\xf5\xa0\x60\x4b\xea\x48\x64\xa6\x3e\xaa\x69\x29\xa9\x06\x98\xe7\x23\x2d\x20\x31\xaa\x56\x06\x8e\xe1\xe8\x95\xcb\xe9\x93\x04\xcb\xe0\xa8\x39\x82\x53\x3d\x8e\xc6\x85\xfd\xac\x8e\x68\x81\x1e\xf2\x31\xd2\x07\x43\x06\x77\x3f\xc0\x74\xdf\x3c\x7d\x0e\x0b\x6c\x79\x51\x91\x6e\x06\xbf\xe1\x9b\x6c\x8f\xa2\xa6\xa4\x24\xc5\x32\x07\x1d\xa6\xce\x62\xba\xe6\x71\x90\x6c\x25\xc7\xc0\xa8\x19\xd7\x6d\x52\x77\x45\x7a\xb3\x36\x5d\xf0\xe8\x31\xb9\xed\x32\x39\xfe\x56\xe1\x1d\x51\xb9\xbf\xa5\xc6\x6c\x7d\x5f\x76\xc7\xba\x6c\x0a\x98\x6a\x55\x35\xf1\xb2\x98\xf2\x7d\xda\xda\x11\x68\x26\x06\xc5\x5f\xd4\xac\xe5\xd9\x33\xb8\x8f\x24\xa3\x50\xfe\xc9\x82\x31\xbd\x09\xa3\xf9\xc4\x20\x5b\x3f\x84\xc7\x97\x84\x0b\xf9\x15\x9d\x85\xe0\xf5\x21\xfb\xb9\x7b\x84\xe3\xb0\x7b\xc8\x33\x50\x4b\xa2\x1d\x0b\x7a\x01\x4d\xd6\x59\x02\x31\x1a\x2e\xe0\x67\x91\xd7\x5a\x74\x10\xca\x69\xd1\xb0\x6f\xb7\x90\x51\xe6\xcf\xdd\x7c\x90\x7f\x68\x8d\xaf\x79\x46\x54\xa5\x62\x2a\x6f\x4c\xee\x3f\x05\xee\x60\xa5\x18\xbf\xb7\xae\xc4\x93\xda\x36\xd3\x78\x93\xa0\xdc\x6d\xd9\x31\x8b\x36\x01\xff\x6e\xcf\xea\x09\x95\x4d\xd2\x7b\xc4\x0d\xf2\x90\xd6\xd6\xe1\x03\x5c\x83\x77\xab\x47\x59\x56\x64\xb9\x10\x2c\x4a\x1d\x6e\x74\x78\x37\xc0\x62\x74\xa5\x7e\x2c\x5c\xec\x11\xd3\x60\x81\x66\x80\xa4\xc6\x45\x9d\xf9\x42\xff\xfd\xc8\xb1\x85\x9f\xe9\xb6\xd7\x5e\x36\xbc\x8b\xcd\x35\x4c\x7e\xe0\x3d\x53\xa7\x6f\x75\x99\xb7\xef\xd9\xdb\x03\xb3\xe9\x7d\xc0\xf2\xb7\xdf\xa0\x5c\x9b\x61\xc7\xba\xf5\x1f\x58\x99\x3f\xfd\x86\x95\x05\xe3\x88\x95\x55\x33\x36\x2a\xbe\x96\xa1\x8f\xbd\xa2\xd3\x2b\xed\xe9\x8c\xda\x57\x12\x61\xe1\x33\x11\xa3\xef\x7e\x8f\x4b\x31\xb7\x58\x28\xaf\xfd\x2c\x93\xd0\x2e\xd7\xcd\x6b\xde\x4e\xa7\xfb\x5e\xab\xa4\xa3\x97\x33\x48\xff\x5f\xa9\x4d\x1f\x32\x88\x1d\x25\xdf\x0f\x7e\xf4\xfe\x4a\xbb\x4e\xd9\xa4\xbd\x4b\xe6\x56\xab\xcb\x34\x9d\xeb\xb2\x77\xdb\xd5\x3a\xa7\xa9\x6b\xf8\xe3\x50\x0c\x91\x1a\x9b\xb0\x99\x45\xb0\xe9\x9b\xe8\x75\x2b\x55\x29\xc5\xe4\x61\x64\x1f\xf7\x90\xfa\x30\x9d\x11\x4f\x81\x6c\x8e\xe6\x1c\xf9\xc8\x3c\xd5\xdf\x0b\xf5\x58\x34\x83\x0b\xb3\x29\xd9\x35\x77\x21\xbf\xd1\x05\x6c\x46\xdf\x6a\x48\x64\x46\xf9\xb2\x0c\x5a\x67\x94\x30\xbb\x91\x82\xd6\xd2\x2f\x51\x46\xb5\x5d\x3a\xc9\x68\xf5\xb2\x7e\x76\x4e\xd3\xfe\x45\x1f\x3f\x3d\xef\x03\x14\x38\xa6\xa8\xea\xd2\xee\x87\xd1\x0f\x24\x35\xe5\x19\x5e\xf7\x0b\x73\xab\xb8\x8a\x8e\xb4\x53\x25\x0e\xaa\x40\x4c\x7b\xb4\x2e\x27\xf7\xbb\x5f\x51\x89\xfd\xce\x04\x26\xcb\x1a\xcc\x25\x1f\xe1\x9d\xd3\x12\x16\xfe\x23\x0b\x17\xc6\x44\x2d\xed\xee\xab\x60\x9b\x3c\x45\x4c\xa8\xeb\x85\x43\x7f\x20\x13\x3d\xbd\x7f\x4e\x6b\x6f\x76\xef\x1b\xd5\xfa\xdd\x9b\xd5\x1b\xe9\xb6\x37\xae\x87\x0b\x81\x9d\xf7\x1b\x50\x0e\x29\x9f\x78\xbd\x6a\x09\x68\x0f\x33\xbd\x19\x26\xef\x94\x71\x47\x0f\xfd\xdd\x8d\x3b\x79\xe5\x35\x0b\xca\xde\xb9\xe7\xce\x14\xf9\xb2\x20\xd2\xad\xd7\xa9\x40\x22\xfe\xa0\x04\x5c\x26\x7e\xe8\x72\x9e\x50\xf5\x4a\x6a\x81\x94\xa5\xce\x7e\x2e\x6a\xd0\xa7\x5c\xde\xab\x1d\x2f\x17\xa4\x86\xd1\x5b\xe9\x2b\xed\x7b\x2b\xfd\xeb\xb4\x90\x83\xe6\x1d\x69\x67\xdd\xfb\x74\xa8\x2b\x5d\x9b\x8a\x88\x6b\xb5\xaa\xbe\x30\x9c\xfa\x84\x94\x1f\xd1\xc5\x59\x93\x80\xb9\x00\xe6\x43\x09\xc2\x17\x69\x59\x42\xc7\x90\xe1\xf1\x28\x62\xd4\x48\xbe\xf5\x48\x53\x82\x1f\x3d\x27\x7f\x8a\x31\x66\xa9\x71\x45\xbc\xe5\x4d\xcd\xbf\x7d\x2f\x44\xfd\xf4\x19\xc4\xbe\xf7\x29\xd0\xa3\x5a\x94\x94\x85\xec\xf3\xec\x4c\x09\xff\xb7\x74\x9c\x4e\x2d\x01\xa2\x0a\xe1\xa9\xc8\x39\x96\xee\x48\xb2\x23\xf3\x8f\x47\x08\x00\x79\xd6\x89\x1b\x66\xfa\x23\x98\x14\x6a\xf9\x93\x1a\xb5\x8a\x9a\x6b\x82\x95\x14\xce\xa5\x5a\xf0\xe6\x38\x71\xf3\x4e\xcc\xee\xd2\x01\xfb\x7a\xab\x54\x45\x5a\x49\x19\x12\x6e\xab\x52\xa5\xc5\xca\x76\x38\xa7\x5d\x4b\xf6\x85\x81\x2a\x5f\x8d\x5b\x89\x0c\x54\xb0\xef\x34\x4f\xb8\xd7\x5e\x57\xf1\x75\xa4\x2c\xda\xef\x16\xe0\xe0\xea\x2c\x92\xd3\xd5\x9c\x39\xf7\x43\x09\xfd\x10\xcf\xb2\x73\xb5\xe9\xe9\x71\x34\x19\xe1\x2b\xff\x4a\xbf\xe9\x1c\x92\x1c\xba\x1c\xca\x0e\xae\xab\x75\x1c\x2c\x52\x55\x43\x09\x02\xe8\x4d\xa5\x34\x9c\xae\x80\xbe\x66\x15\xec\x76\x98\x1c\x12\x8f\xf8\x6b\x9c\x10\x0b\x79\x94\xb1\xb2\xe6\xb9\xf0\x59\x44\x33\xea\xae\x08\xc1\x10\xec\x04\x5d\x13\x2b\x41\xef\x9e\x89\x48\xa2\x70\x4b\x47\x90\x17\x72\x60\xa1\x5e\xb8\x24\x1a\xc2\x0b\x52\xf5\x8c\xb0\xd1\xb1\x1e\x05\xbc\x3c\x41\xe1\x42\xd4\xec\x02\x36\x69\xbf\x21\x5f\x01\xe3\xdc\x22\xcc\xbb\xbf\x94\x05\xfe\x28\x10\xa9\x0a\xd3\x34\x83\x48\xf1\x06\x89\xaf\x12\x4f\x40\x5e\x15\x64\x8b\xf4\x8a\xef\x20\x05\x04\xfc\x8e\xe7\xb2\xa5\xf7\xb0\xfa\x17\x11\x39\xdc\x81\x0d\x20\x1a\xa1\xa1\x2b\xa8\x27\x22\x0e\xb5\xee\xb9\xdd\xa1\xb0\x49\x86\x46\x3f\x88\x1f\xf6\xde\x1a\x89\x1b\xa1\xb7\x52\xd3\xc0\x30\x2d\xe5\xd5\xd9\x40\x34\x69\x7e\xce\x6d\x46\x84\xc9\x81\x76\x1a\xd3\x53\xdf\x69\x0d\xca\xf8\x1c\x33\x10\xf5\x43\x3b\x53\x9d\x61\x20\x07\x4e\xa5\x4e\xaa\x60\xb7\x69\xd4\x62\x57\x32\xe6\x7f\x10\xda\xf4\x65\x2c\xe6\x27\xfd\x6c\x9f\xc4\x77\xf0\xbe\x9e\x2b\x7b\xf9\xe2\x5b\xa5\x02\xbf\xe6\xdd\xfe\x4c\x68\x24\xae\xb1\xb8\x33\x82\x86\xb9\x1b\xe8\x92\x0e\xd3\x6d\xef\x4b\xec\x02\x59\x1d\xb0\xb3\xad\x08\x78\x60\x8f\x25\x59\x20\x95\x73\xa6\x04\xd6\xa8\xa8\xb7\x81\xc8\xcc\x82\xed\x78\xd2\x1b\x79\x0f\x5b\x5b\x02\x86\xc3\xbb\xad\x99\xad\xfb\x83\xca\x4b\xd0\x13\xc0\xa9\x7b\x99\x4f\xba\x7a\x22\xab\xb5\x47\x3b\x47\xdb\x10\x70\xd7\x50\x63\xf6\xcb\xa1\x11\x61\x41\x84\x8c\x60\x4f\x26\xfa\xf5\xaa\xc5\x35\x8c\x44\xf9\x2f\x43\x35\x24\xb6\x85\xca\x7d\x21\x97\x6a\xf1\x33\x1d\xea\x47\xc3\x40\x9e\x64\x98\x3b\x7d\x08\x28\x6c\xb4\xc4\x3c\xb8\x50\x51\x3d\x81\x91\x7e\xc4\x38\x25\x59\x71\xa3\x8f\x32\xce\xb9\x8c\x73\xc3\xf7\x0a\xf1\x38\xfd\xbb\xa3\x19\x67\x63\x15\x8f\xb3\x6f\x27\xb0\x9d\xee\xe8\x7b\xec\xba\x8f\x34\x13\x28\xcc\x26\x80\xf6\xfd\x28\x2d\x81\x7e\x51\x78\x1b\x42\x0a\x9c\xee\xbd\x26\x1f\x0d\xbc\x01\x94\x4d\x74\x7d\xa2\x6d\xda\x72\x4b\x6a\x04\x12\xdd\x01\x7e\x56\xd1\xaa\x3c\x6a\x29\x76\x87\x95\xd5\x10\xbe\x28\x6e\xb1\xdc\x8d\x2d\x16\x86\x80\x3f\xb8\x03\xfb\x68\x23\xee\xae\xb9\x31\xa2\x90\xfe\x49\x4b\xf1\x1e\x17\x77\x0d\x91\x8b\x0a\xd8\x53\xef\x70\x14\x38\x26\xba\xc7\xcb\x31\x22\xac\x08\xa1\xb5\x13\x58\x4e\xfa\x8d\x8b\x87\x7a\x25\x33\x11\x4f\x62\xb4\xd6\x81\xcc\x24\x12\x74\x17\x8a\x36\x4d\xc9\xd9\x02\xe8\xc4\x47\x68\xb8\x42\x06\x55\xfc\xdf\xc5\x0c\x76\xc7\xeb\x81\x17\x3e\xdf\xa7\x43\xaf\x99\x92\xf4\x1b\x6f\xa6\x24\xc9\xf2\xa3\x24\xab\xb8\x15\xf9\x78\xa4\x8b\x01\x7c\x67\xf1\x2a\xde\x97\x64\x15\x61\xaa\x9f\x33\x07\x2a\x48\x37\x75\x4d\x61\x01\x45\x7a\x1b\xe8\x57\x74\xa6\x81\xae\xb5\xc0\x9e\x51\x3e\x38\xd3\x88\x26\x61\xa2\x11\xc6\xdb\xce\x8e\x55\xbc\x2f\xda\x12\x66\xd6\xbf\x87\x6e\x55\x19\x2b\xe7\x11\xc6\x6a\xcd\x0c\xc9\x9a\xa5\x3a\x49\x85\xfb\xbe\xd1\x91\x82\x33\xce\x10\xd1\xc6\xab\xc8\x9d\xbc\xd1\x83\x78\x81\xf7\x81\xac\x68\x45\x5c\x1c\x5e\x56\xbe\xa3\x05\xe9\x49\x7b\xb1\xa5\xfc\xc9\xeb\xa0\xa5\x0a\x96\xb5\xdc\x30\x62\x2c\x3d\x01\x33\x55\xc3\xd5\xaa\x98\x13\xf5\xd1\xf2\x17\x94\x78\x69\xa6\x84\xf1\xeb\x1c\x68\x40\x18\xe6\x4e\x1f\x1d\x9c\x8c\x0d\x5e\x80\x93\xf2\x68\xad\x29\x62\x2f\x7a\xc4\x67\x85\xbe\x3f\xb6\x98\x3a\x0d\x50\xa7\x81\x12\x49\xf3\x53\xee\xf5\x33\x13\x31\x44\xd4\xb4\x13\x40\x91\x9a\xc0\x85\x80\x40\xf8\x3e\xdc\x17\x3f\xd8\xb2\xf9\x2f\xa7\x96\x0a\xf2\xdc\x7b\xe3\xd6\x44\xeb\xa1\xe6\x08\x7f\xc8\xde\x99\xa9\x37\x3c\xf6\x70\x39\xff\xa1\xa7\xf7\x0d\x99\xa3\x8f\xfa\x0d\x9a\x0d\xbd\x93\x1a\xd6\xc5\x85\xb5\x54\xde\x92\xa6\xf0\x67\x36\xda\xff\xae\x07\xa6\x55\xff\x7f\xaa\x07\x33\x35\xac\x8b\xb0\xff\xf5\x08\x4f\x71\x24\x11\x8d\xd4\x56\xdd\x1c\xfe\x51\x67\x59\x3e\xf5\x09\x9f\x6b\xe3\x31\x51\x24\x02\xd9\x85\x9c\xeb\x77\x08\x0f\xcf\xb2\x78\x33\xa2\x2f\x7c\xd3\x11\xbd\xf4\x4d\x3f\x7b\x13\x05\xfc\x94\x29\xd6\x20\x78\x8e\xb6\xc4\x40\xbf\xc7\x04\x41\xa3\x22\x03\x9f\x2e\x08\x26\xf4\xce\xba\x54\x1f\xc7\x6b\xd8\xf8\x85\x31\xe4\x75\xb1\x81\xf5\xcf\xe9\x52\x43\x28\x20\xab\x77\x81\x00\xf0\x1e\xf5\x9e\x51\x85\x37\xe6\x51\x4e\x93\xef\xe7\x51\xc4\x88\x99\x8a\x28\x59\xff\x7a\x4d\x87\x5e\x59\xb3\x32\xa6\xb4\x9a\x55\x6b\x34\xdf\xdb\x7d\xc0\xa2\x84\x40\x0b\x1f\x7d\x47\xf8\x4f\x2b\x25\x99\x33\xba\x64\xdd\x02\x43\x88\x08\x83\x86\x51\xcb\x74\xc6\x4a\x2e\xa8\x4c\xd4\x1a\xc9\x8e\xdb\xab\x1c\x44\xa4\xde\xa8\x70\xcb\x6d\xb3\x81\xf5\x10\xce\x01\xb1\x11\x8f\x03\x98\xa8\x26\xcc\xf8\x5f\x28\xc2\xad\x5b\x21\x72\x58\x2f\x56\xb8\x5f\xcb\x74\xb5\xed\x93\x4f\x6c\xeb\x13\x48\xa4\xef\xf8\xd6\xe7\x31\x71\xbf\x0d\x47\x3d\x7c\x0a\x5e\x67\x01\x71\xb9\xdd\x02\x0f\xac\x83\xa5\x7d\xc7\x0a\xa3\x66\x74\xa9\xbe\x04\xeb\xca\x53\x56\xae\xc1\xed\xd0\x4c\xe1\xff\x7e\x6d\xeb\x84\x72\x41\x9e\xcf\x09\x59\x86\x07\x44\x3b\xf7\xce\x19\x2a\xc2\x11\xca\xab\xf0\x06\x18\x8f\x24\xe4\x05\x58\x1f\xe1\x01\xc6\xc8\x01\xd4\xa0\xde\x31\x83\x68\xda\x2e\x4e\x3c\x39\x58\xe1\xc7\x8d\x53\x29\x82\x75\x7c\x6c\xf5\x36\xf9\xc4\x04\x9d\x1d\x78\xa4\x11\xd3\x63\x07\xda\x70\xf6\x25\x16\x4f\xbc\x1c\xa3\x27\x2c\xd4\x4e\x1b\x19\xa8\x26\x8a\x41\xe7\x50\x8a\xb2\xc1\x5b\x5e\xb8\xc6\xf1\xb1\x12\x02\x79\x9b\x62\xd6\x03\x94\x01\x66\x12\x21\x1c\x68\x2d\x59\x81\x62\xdd\x33\xea\x46\x14\xec\xb6\x53\xe3\xb6\xe3\x24\x1f\x89\x37\x1d\xca\xe2\x0b\x32\x52\x41\xb8\x40\x8d\xce\xa8\x49\x1b\x94\x31\x66\xf8\xeb\x1d\x8c\xff\xe2\x32\x1c\xc9\x4c\x2d\x21\x1c\x95\x55\xae\x41\x22\x6a\x88\x76\x6c\x1d\xa1\x08\x18\x6f\x2e\xee\xc4\xa5\x59\xb9\x74\x69\x9a\x2f\xc2\xcd\x38\x11\x2c\x04\x3d\x04\xb2\xf9\x41\x21\x8a\xb4\xb9\xbb\x4b\x17\xe3\x17\x0f\x37\x5e\x5c\xe1\xc5\xad\x7d\xf1\x8c\x17\xb3\x77\xb2\x79\xf8\xe2\xe0\xc6\x8b\x65\x85\x17\x1b\x01\x88\xba\x84\x17\x81\x8a\xa6\x4b\x78\x31\x4f\x17\x32\x42\xe3\x26\x9a\x5b\xb1\x2e\x72\x4a\x7c\x44\x8f\x54\x49\xdf\x20\xe0\xb3\x51\x6f\x28\xb1\xbc\x78\xb1\x2f\xbb\x63\x0e\xe2\x17\x47\xf7\xef\xec\x71\x10\xc1\x33\xf6\x8e\x20\xe7\xd6\x82\x18\x3e\xd2\x93\x8d\x2c\xd3\x17\xf0\x7d\x52\xf4\xcf\x69\x2a\x82\x88\xe8\x6e\x21\x02\xe6\xc2\xfb\x0d\xb4\x85\x09\x03\x5f\x3e\x10\xa5\x35\xc6\xa9\x71\x50\x35\xbc\x59\x14\x23\xa5\xf5\x39\x97\xe9\xab\xc6\xab\x33\x0d\x38\xbb\xcf\x81\x0f\xe7\x33\x5f\x25\x9b\x2a\x8b\x72\x68\x5f\x4d\x5d\xbc\x0a\xd1\xe5\x53\x00\x60\xed\x59\x75\xb0\xac\x0c\x3a\x81\x7d\xd5\x2e\x52\x9e\xaf\x22\x95\xef\x73\x22\xaf\x1e\xf1\xea\xe7\x30\x04\x57\xc3\x9e\x6f\x47\xf5\xea\x3b\xd6\x23\x4d\x9d\x0b\x5e\x4c\xa3\x7d\xfa\xe7\x3b\xe4\x27\x6d\x14\x5c\x78\xc8\x42\x1a\x29\xf8\x5e\xc1\x06\xf5\x1e\x79\x69\x27\x2a\x5d\x19\xf2\x42\x38\x0c\xca\x82\xa1\xa9\x87\x0d\x72\x29\xf0\x1f\xa4\xea\xbd\x6d\xc8\x1c\xd3\x1f\xa2\x8a\x18\x92\x90\x8d\xdc\xcf\x35\xdc\xb3\xb3\x9b\xd6\x9e\x9f\xd3\x65\x3a\xc8\x7b\x9e\xff\xb3\x01\x6f\x2e\xc2\x50\x2b\x0b\x86\x60\xd9\xa8\x1b\xa8\x81\x12\x96\x10\x54\x14\xeb\xb1\x79\x59\x73\xb6\x12\x52\x37\xf0\xfc\xa9\xce\xda\x58\x45\x06\x5f\x69\x1a\xed\x3c\x78\x72\x74\xc2\x63\xbc\x45\x30\xa6\xfc\x7a\x6c\x27\x6e\xe9\xc8\xd3\xeb\x23\x84\x6c\x16\x1b\xbb\x96\xea\x29\xfa\x88\x98\x5f\xc4\x36\x1b\x74\xe6\x86\x2f\x8f\x83\xaf\xf4\xca\x97\xb4\xcf\x4f\xe7\x8c\x3b\xa9\xf3\x3d\x4f\x67\x51\x55\xf7\x10\x16\xe1\xd6\xe8\xee\x60\xd4\x6f\xee\x25\x33\xfc\x5d\xf0\xa7\x5e\x37\x04\xe2\x43\xf7\x30\xfa\x51\x4d\x82\x7c\x5f\xf6\xd8\x60\x5d\xeb\xfb\xa9\x49\x32\xf8\x50\x5d\x5c\x37\x8b\x40\x68\x02\xbe\xea\xbd\x9b\x47\x02\xc3\x9f\x61\xd7\x4c\x7f\x7a\x81\x40\x18\x7d\x3d\xa5\x67\x3a\x3d\xd1\xda\xf3\xd2\x6f\x9e\x86\x07\xe1\x50\xe2\xb1\x29\xd3\xf1\x92\x93\x18\xd6\x0d\xb2\x4a\x80\xaa\xd6\x2e\x20\xd3\xa6\xef\x01\x2b\x4a\xce\x59\x7f\xed\x67\xef\xd3\x9d\xf4\xac\xae\xef\xbe\x92\x82\x6b\x10\xb9\xf7\x80\x50\x11\xc6\x98\x67\x25\x48\x31\x45\x00\x4a\x94\xde\xd3\x5d\xd3\xfb\x05\xae\x8a\x88\xd1\x34\x7c\x3b\xca\x3c\x37\xef\x03\xa7\x89\xb9\xf4\x08\x8b\xce\x11\x46\xad\x25\x24\x1f\x4f\x21\x03\x67\x64\xc7\xf4\xd0\x6a\x6f\x70\x8f\x08\xc6\x21\xc6\xd9\x34\x2f\xb7\xbc\x16\xdd\x60\x27\x08\x4a\x9d\x86\xe1\x55\x3f\xb1\x15\x6c\xfa\xb7\x61\x8f\xfe\xab\x9f\x6e\xa7\x57\x4a\xcf\xd5\x97\xa0\x18\x02\x5e\x22\x57\x66\x52\x4e\x94\x14\x74\x8e\x92\x5b\x98\xfe\x66\x6e\xf3\x57\xb1\x0c\x05\x66\xcd\x5c\x56\x5e\xde\x4b\x35\x85\x5e\x22\x2e\x9e\xf5\x26\x6a\xcc\xfe\x92\x92\x78\x4c\x6a\x33\x7f\xcf\x89\xad\x83\xac\xc4\x51\x0b\xb8\x31\xe6\x48\x24\x26\x20\x4e\x7a\x62\x02\xbe\x23\x49\x40\x1c\x22\x28\x24\xbb\x48\x74\x6f\x5d\x77\xd3\x01\x72\x4f\x62\xd4\x4b\xb7\x2d\x97\xb9\xbf\xf5\x2d\x23\x37\xe4\x7e\x38\x19\x67\x63\x58\xb4\xee\xff\xa2\x29\x62\xb6\x67\x7f\xc4\x4d\x49\xe7\x8e\xe8\xdc\x2e\xea\x9c\x2f\x55\x00\x80\x50\x2a\xc8\x9d\x29\xcc\xce\x78\x58\x8f\x03\x28\x20\xf0\xe4\x99\x13\x16\xdc\xfa\x7e\x04\x40\xfe\xed\xf7\x33\xdd\xbf\x78\x8f\xb9\xd1\xab\xcb\x7e\x17\x99\x46\x59\x21\x78\x2b\xa7\x75\xc3\x65\xae\xff\x97\xfa\x0c\x0a\x64\x25\xf4\xc0\xfd\x32\x80\xcd\xfd\xd5\xf0\xbf\xfa\xe9\x39\x96\x6b\x72\x63\xb9\x88\x64\x5f\xfb\xcf\x96\x2b\xaa\x5d\xf4\x2f\x97\xeb\x82\xcc\xbe\x5b\xae\x0c\xb2\x87\x1b\xd7\xdd\x4e\x03\xd2\xc3\x21\xc2\x6d\xc3\xee\x4a\x73\xff\x21\xce\x81\xe6\xde\xcd\x05\x71\xd6\x54\x36\xb0\x97\xda\x70\xd2\xfb\x16\x03\x3a\x7e\xd8\xb9\xe3\xb9\xb7\x58\xe6\xed\x88\xf4\xbe\x05\x2b\x0f\x60\x35\x77\x4e\x01\xab\xb8\x2a\x6f\xd4\xdf\x73\x02\x6c\x80\xed\x09\xab\x80\x28\xe2\x4f\xdd\xc4\x41\x49\x91\xbb\xe8\x80\x20\xf7\x39\x15\xbf\x11\x92\xc1\x42\x5b\xe2\x12\x6c\xb8\x50\x5e\xb6\xfa\x87\x0c\x1c\xe9\x81\x5c\x47\x38\x70\x56\xd0\xf8\xe6\x48\x66\x58\x39\x00\xf7\x8c\x18\x62\xb5\x36\xe2\xb1\x49\x96\xcf\x9d\x3c\x7b\xbe\xb7\x77\xa2\xf4\xdd\xf8\x1f\x66\xfe\x27\x12\x8b\x59\x23\x84\xc0\xbe\xc4\xab\x46\xf2\x7f\x48\xcb\x4f\x9c\xeb\x1d\x4f\xd9\x40\xbc\x87\x4b\x15\x4d\x84\xbd\x33\x53\x35\x6a\x2c\xf1\x0b\x98\x57\x32\xe4\xb8\xb2\x85\x05\xb6\x8e\x4b\x5d\xd8\xc1\xc5\x3c\x11\x6a\xa3\xbf\x74\x90\x8b\xf1\x97\x0c\x8f\xe8\x10\x3a\x5e\x30\x96\xb8\xa9\x61\x49\xe2\xa6\x99\x18\x5f\x25\xbc\x31\x33\xe1\xcd\x6f\xa9\xaa\x4d\xb6\x73\xf5\x19\x36\x9d\xaf\x3a\xa7\x08\x9c\xfb\x7c\x63\x98\x7c\xa0\x16\x37\xe4\xc7\x40\xde\xe4\x29\x65\x74\xea\x9e\x93\xeb\xdb\x5a\x18\x15\x96\x61\x20\xdd\xa1\x64\x9c\xbc\xce\xca\x85\xac\x0f\x60\x7a\xce\xf9\x60\xe9\x47\x54\x5d\xc3\x27\x59\x9e\xe2\xe4\x52\x26\xd1\xea\x61\x2f\xe5\xb5\x5d\xc3\x66\xa6\x79\xe1\xd0\x77\x09\x7f\xa2\xbf\x23\x7c\x5b\x3d\x0f\xcf\x11\xda\x5a\x9e\xcb\xa3\xe9\x02\xba\x08\x7c\x06\xf1\xd4\xb2\xc8\x6d\xc5\x85\xee\xc7\xbf\x36\x43\xd9\x5c\xcf\x92\xaf\x65\xc8\xe8\x6f\x3f\x21\x99\x9f\xc3\xba\x70\x2a\xd6\x81\xb0\xb5\x44\x24\x76\x02\x97\x72\x7f\xfe\x54\x9e\x9f\x1a\x66\xbe\xfb\x54\x9e\x9f\xda\x27\x3f\x15\x9b\x0c\x83\x5d\xa2\xfe\x0f\x14\x61\xf6\xbc\xc4\x95\xcf\x11\xab\x41\xc0\x91\x98\x35\x8c\xb7\x3e\xe2\x97\x10\x9d\xe1\x93\xdd\xf1\x8d\x20\x51\xf8\xdd\x74\x35\x5e\xd9\x38\x97\xd7\x61\xb0\x84\x4e\x88\x0e\x8f\xb8\x08\x88\xf8\x61\x13\x94\xe2\xd9\x87\x42\x5b\x94\xea\x5f\x34\x67\x68\x68\xe7\x20\x2c\x4c\x9c\xfc\x6b\x3b\x17\xe6\x02\x8a\x57\x8d\x32\x12\x24\x8a\x74\xc6\x42\xca\x79\x96\xec\x32\x05\xd1\x8b\x01\x04\x21\x79\x7a\x36\xe2\xc5\x7f\x35\xd8\xb8\x3a\x5f\xfc\xe5\x19\x02\x26\xe4\x72\x91\x41\x54\x43\x18\xa0\xfc\x11\x1d\x9a\x39\x68\x99\x21\xb9\xd4\x05\x43\x8e\xeb\xe4\xc1\x2e\x24\xa1\xe4\x44\xa1\x47\x3f\xfb\x1b\xa7\x36\x03\x06\x94\xb8\xdf\xde\xf8\x9c\x70\xd9\x38\xcc\x4e\x87\x14\xb1\x71\xe8\x86\x0c\x82\xc8\xfc\xda\xa1\x0d\x39\x30\x60\xb5\xa7\x4c\xc2\x22\x72\x0f\x2e\xf7\x66\xad\x4f\x7e\x60\xa5\xdc\x94\x6d\x32\x73\xf2\x0a\x36\x5e\x70\x6a\x32\x10\xed\x3d\xee\x9d\x14\x0b\xf8\x9b\xde\x8d\x20\x90\xa0\x7b\x5b\xd2\xfe\x4a\xc5\x72\x75\x6c\xf9\xf5\x0b\x6e\xa5\xe0\x32\xce\x02\x52\xe5\x38\x74\x6e\x31\x81\x9e\xc5\x0a\x06\x4e\x1d\xf7\x25\xc6\xbf\x48\x39\x3b\x71\x4b\xd1\xac\x78\x67\xd7\xdc\x74\xbe\x22\xca\x56\x30\xad\xc7\xc7\xce\x20\x71\xda\x51\x12\x00\xbb\x02\xb9\x06\x37\x26\x0b\x11\x96\xfe\x93\x3c\x30\xc1\xd3\x2c\x36\x43\xa4\x01\xa4\x8a\x86\x57\xad\x77\x58\xca\xa1\xfd\xc7\x66\x5b\x9e\xd7\x64\xb3\x28\x41\x81\x81\x12\xd5\xe5\xec\x4c\x6e\x9c\x7e\x4f\x74\x81\xeb\x56\x71\x0d\xf9\x08\xcd\x04\x3f\xa3\xe0\x66\xb9\x5b\x72\x7f\x45\x27\x07\xf7\xf4\x49\xb0\xd7\x5a\xfb\x7b\x58\x95\x20\xfa\x0d\x25\x8d\x22\xfc\xc7\x7d\xd8\xb4\x32\x21\xfb\xc4\x6a\x0f\x09\xe1\xe2\xee\x92\x05\x38\xd2\xc4\x87\x3b\x8d\xd8\xfc\x90\xd3\x38\x70\x3c\xca\xca\xaf\x79\xc4\xa6\x2d\xe5\xa8\x0b\x59\x78\x30\x02\x2e\x69\x23\xd2\xcf\xce\xe0\x0e\x68\x11\x80\xd0\x99\xf9\xc9\x6e\x45\xdf\x27\xf1\x45\x6c\x27\x3e\x42\x76\x29\x1d\xb3\x13\x4c\x9a\x65\x20\x7e\x2c\xde\x96\xad\xfe\x6a\x7e\x58\xda\x5c\x71\xb5\xd8\xc2\x91\xaf\xd8\xdf\x35\x6a\x15\xf1\xdc\xee\xf8\xa2\x69\xc0\x11\x99\xa8\x18\x04\x89\xb7\x7f\xc8\xfa\x2c\xd9\xe6\xe5\x3d\x07\x1a\x6a\x7c\xf1\xd9\x1f\x17\x32\xdc\x32\x71\xe8\xde\x6c\x48\x74\x0f\x3b\x60\xf2\x6d\xdc\x69\x7a\x5e\x65\xa4\x22\x1e\xef\x90\xc6\xf5\x1c\x7b\x51\xd3\x52\x4f\xf2\xbb\xd9\x88\xe6\x99\x7c\x67\x91\xba\xa9\x14\xde\x9e\xe3\xeb\x39\x9d\xd5\x2f\x19\x35\x81\x6f\x26\xc4\xed\x48\x0c\xff\x72\xb2\x0a\x3c\x27\xa4\xd1\xe0\xc6\x04\x88\x14\x68\x19\x20\xff\xff\xae\x11\x16\x22\x2b\xb0\x9a\x32\xeb\x9e\xd9\x83\xd0\x69\xb4\x6f\xc1\xec\xbe\xef\x4f\xb2\x07\xf1\x3f\x8b\xbf\xea\x83\xe9\x69\x54\x2f\x6f\x7d\x73\x65\xdd\x81\x1d\x12\x56\x8e\xe6\xdf\x0e\x43\xce\x31\x1e\xbc\x58\x80\x86\xdb\xce\xb7\x63\x38\xdd\xf8\xdc\xca\x5d\x88\x31\x1a\x9d\x3d\x1e\xeb\x82\xe6\x1b\x5e\x0d\xf5\x3b\x52\x4e\xee\x97\xbf\x5c\x8a\xd2\x9f\x36\xd9\x77\x83\xf8\xd3\xce\x1c\x3b\x04\xd3\xf2\xbc\x09\x3d\xd5\x73\x56\x5a\x9c\xb8\x7a\x26\x13\xa6\x7d\xe8\xb6\x22\xf4\xb2\x08\xaf\xb8\xe2\x52\xa8\x63\x97\x63\x05\xeb\x89\xff\x2d\xdf\x75\xa9\xe3\x4c\xcd\x27\x66\xd3\x41\x5c\xcd\xd7\x99\x9f\x14\x13\xc8\xcd\xd9\x6a\x39\x5e\xde\x4e\x52\xc7\x16\x0f\xd9\xf3\xdc\xe2\xe9\x54\xb4\x4b\xd5\x21\x68\xa1\xdd\x5c\xc3\xa2\xbe\x3a\xeb\x5c\xcd\x9b\xeb\x3e\x63\x48\x29\x3f\xb8\x7e\x15\x5b\xe9\xae\xfe\x4f\xcf\xef\xd9\x41\xda\xe4\x16\x95\x24\x39\x90\x53\x0f\x2a\xda\x39\xc7\x2c\x53\x89\xe4\x42\xb2\x15\x8a\x5c\x1b\x96\xbb\x3c\x92\x40\xc8\x89\x57\x6c\x5a\x88\xb1\xe6\x8a\x25\x0e\x4d\x18\x3e\x86\x05\x48\xb1\xb4\x95\xf9\x67\x4a\xfc\xb3\x2e\x57\xe3\xbb\x37\x2d\x89\xb8\xef\x4e\x4a\x7f\xff\xfc\x05\x59\x46\xcf\x65\xfc\xab\x66\x41\xae\xa1\x73\x0c\xd5\x1d\xbb\x84\x6d\x68\x72\x8f\x3a\x2a\xab\x9b\x6b\x5d\x42\x8d\xc9\xd6\xc0\x55\xe6\x9d\x0b\x2c\x24\x94\x9f\x42\x3d\x5d\x12\x3f\xcc\x22\x53\x80\x11\x9d\x81\xa5\x37\x95\x44\x56\x72\xdb\x88\x98\x56\xda\x3a\x1a\x43\xbb\x1f\xcb\xa9\x08\x28\xdc\x6b\x9d\xbf\x21\xc2\x83\x16\x6f\x8e\xec\x2f\xf2\xa2\x87\x3f\xca\x26\xd6\x9c\x70\xd3\xfe\x13\xcf\x68\x54\x7c\x2e\x61\x8b\x49\x5a\x9a\xf8\xab\xa2\x5c\x63\x94\x98\x97\xfd\x4c\x84\x1a\xe5\x3c\x18\xb3\x1c\xe9\xc9\x2e\xc1\x07\x63\xfb\x18\x64\xa2\x05\x0c\xd1\x71\xcd\xc4\xcb\x9d\xdc\x74\x06\x3b\xcb\xd0\x82\x48\xb5\x17\x5d\x59\x64\x2c\x98\x1a\xd0\xa0\x22\x49\x3e\x83\x7d\xbf\x1e\x51\x8e\x0a\x3d\xaf\xbb\xc1\xd6\x58\x8a\x1f\xb8\x5f\x29\x7f\xbb\x7f\xcb\x8c\x96\xb6\xdf\xe2\x18\xab\x4c\x25\x88\xdc\x0e\xdd\x5a\x25\x12\x9b\xfd\xef\xe4\x7b\x50\x52\x74\x56\xd1\x1c\x74\x17\x53\x6f\x19\xc1\xf6\x63\x56\x85\xc2\x0c\xb1\x8c\x23\xdb\xb0\x8f\x33\xb2\x2d\xb0\xb5\x5a\x83\x75\xf2\xbe\xc8\x9b\xac\x3d\x3b\x61\xe5\xf7\x68\xe6\x8f\xb4\x36\x2e\xc2\x68\x83\xe5\x1b\x19\x9c\x3f\x6b\x95\xb0\x53\x67\xc8\xc7\x61\xd6\x3d\x65\x68\x14\xe2\x68\x0b\xd4\xfa\xb9\x22\x96\x6b\x21\x48\xc8\xcf\x67\x98\x2f\xc4\xcb\x94\xff\x8b\x19\x70\x1c\xdb\xb4\x2d\x37\xaf\x12\xeb\x55\xe2\x27\xca\x0e\x9f\x65\x04\x82\xbf\x76\x67\x17\x5c\x79\xc0\x05\x22\xae\xea\x7c\x10\x6f\x1d\x1f\x5a\x86\x21\xfe\xa5\x3d\x2b\xc8\x2a\x4b\x8c\xae\xab\x50\x7d\x3c\xf1\xfa\x09\x66\x48\x2b\xd7\xa5\xf8\x5a\x09\xc0\xde\x5b\xe2\x68\x32\x4c\xd9\x67\xc1\x30\x3b\xcc\x11\x2f\xe7\x30\x57\xdb\x72\x82\xaa\x8f\x8e\x75\x61\x65\x8b\xa1\xfa\x11\xa2\xeb\x89\xd2\x8c\x6d\x8c\xc8\xa6\x29\x80\x62\xec\x07\xce\x9e\x60\xb9\xcb\x1c\x1e\x39\x24\xb4\x2a\x6e\x64\x2b\x0e\x46\x15\xc7\x65\xb4\x52\x16\x35\x58\xc5\x53\x61\x5e\xb4\xab\x11\x4d\xa3\xc3\xea\xb2\x89\x8b\x1b\x0b\x56\x24\xa3\xe3\xd4\xd8\x8b\x6b\xf7\x2c\x94\xbf\xe6\x2e\xf1\x6f\xb4\xe7\x6d\xb4\x67\xf7\x92\xd8\x77\xc9\xeb\xd8\x4e\x06\x7c\xb0\x52\xd3\xee\x43\x7c\x91\xa5\x3d\x77\x96\x0c\x6f\x3e\x24\x9f\x06\x00\x2b\x02\x2e\xac\x62\x4d\x13\xe6\x5b\xdc\x41\xb0\x0a\xca\xdd\x1b\x66\x1c\x58\x69\xc7\x56\x0d\xa6\xe0\x90\xfb\xee\x58\xa0\x4d\x2c\x8b\xed\xba\x44\xbc\xfe\x32\xf9\x72\x89\xb3\xfc\xf4\xa7\x2f\x59\x69\xa4\xf0\x9f\x7c\xc9\xbe\x1c\x31\x33\xc0\xd0\xde\x38\x46\x6a\x2e\xbb\xa3\xfa\xcd\xcd\x57\xd0\x2e\xf3\x93\x0f\x7f\xe1\xd9\x77\xcf\x7b\x87\x26\xf2\xf8\xdd\x93\x54\x81\xcd\xc2\x90\x59\x4d\xf4\x77\xcf\x92\x5b\x59\x97\x45\x17\xf5\xc3\xb9\xf5\xbe\x79\xc7\x1e\x2c\xef\x2c\xcb\x1c\x6c\x9c\xea\xcb\xb4\x5a\x2f\xae\xcd\xda\x16\x22\xd6\x5c\x6e\x27\x1e\x9a\x56\xf9\x79\xd4\xf7\xe3\xce\xdc\xd0\x36\x0d\x34\x54\x16\xcd\x44\x02\xee\xc5\x13\x92\x77\xe5\x40\xe0\xb6\xe3\xee\xc0\x6c\x9c\xca\x5f\x96\x7b\x2e\xe4\x54\xdc\x1b\x5b\x50\x91\x4f\xd5\x68\xee\x65\x77\x68\x63\xb5\x25\x56\xd1\x9d\x3e\x4f\x78\x61\x06\xc9\x07\x4c\x6f\x3a\x71\x67\xd6\x09\xab\xa3\xf9\x33\xc5\xcf\x55\x55\x3a\x59\x7c\x79\x5a\x73\x3a\x15\x24\x1e\x9a\x67\x54\x62\xa1\x90\x02\xcc\x79\xb0\x06\x54\x74\x8d\xf2\xb7\x2d\xdb\xa9\x12\x8f\x98\xce\x3d\x5c\x9a\x48\x5c\x1b\xd9\xa8\x78\xb9\x70\x76\x75\xa5\x6c\x26\x17\xd1\x3e\xb5\x2f\x27\x56\xce\xd6\xed\xd7\x6e\x7f\xca\x64\x0e\x15\xf2\xce\x8b\x87\x24\x23\x18\xbd\x43\xc7\x88\x35\xcd\xcf\x1e\x13\x47\x96\xb3\x61\x78\xcc\xfe\x8d\xb8\x76\x8a\xc5\xb5\x75\xd9\x91\xb7\x78\x3c\xae\x1b\x0e\xd0\x54\x3b\x2e\xa4\xbf\xa2\x0f\x0c\x76\x86\xe8\x4f\xf9\x87\x93\x4c\xe7\xbc\x2d\x84\x25\x67\x89\x6b\xa3\x60\x4f\xfe\x24\x2f\xcd\x06\x36\xe1\x92\x7b\xdf\x0a\x4c\x8b\xe8\xc6\x92\x58\xbb\x3c\x4b\x57\x83\x3a\xb8\x6e\xc6\x15\x09\x36\xbc\x6a\xf7\x19\x45\x82\xdd\xa0\x0e\x1c\x6b\xc7\xf6\x33\xb5\x10\xe8\xed\xa8\x50\x66\x24\x3f\x2d\x9c\x1a\xa8\x36\x66\x22\xba\x10\x2b\xd1\x91\x1b\x8e\x97\x4e\x47\x96\x7c\xe7\x7a\xad\x0a\x2a\x16\xcc\xf2\x0d\x16\x65\x90\xb7\x52\x9f\x9e\x97\xfa\xbc\xf8\xec\xb8\xa6\xfe\xfe\xbb\x21\x0a\xae\xfa\x89\x8a\xef\xf2\x92\xeb\x7a\xe5\xdc\x2f\xe2\x0e\x26\x25\xc5\xf3\x51\x5f\x7e\x52\x3b\x66\x2c\x1c\xdc\x43\xdf\xf1\x71\x70\x69\xfb\x4e\xc7\x28\x21\x3b\x9f\x7d\x8f\xfb\x85\xb3\x2f\x4b\xe7\x50\xdd\x31\x58\x0d\xb8\x17\x72\x14\xae\xf2\xc0\x10\x1f\xdb\xa2\xa8\x29\x1d\x7b\xd2\xcc\xd4\x48\x03\xbc\x39\xa1\x64\x52\xc9\x58\x63\x40\x13\x01\x82\xb2\x1f\x8a\xa0\xe2\x1c\xdd\xad\xd2\xc2\x57\x6c\xfa\x95\x3e\xb4\xe2\x5b\x8f\x56\x66\x71\x87\x21\x25\x6a\xf0\x37\x9b\x29\xa7\x88\x53\x8f\x83\xda\x9c\x6d\x0e\x1f\x4e\xbe\x8e\x09\x98\xd1\x38\x51\xb9\x3d\x42\x3b\x01\x43\x2b\xd9\x95\x58\x07\xbd\xe2\x0e\x8a\xbd\x37\x17\x00\x48\x5e\xa4\x24\xcb\xd5\x19\x57\x5d\x3b\xdb\xd6\x5d\x9e\x0b\x19\x57\xae\xd9\x9d\x05\x29\xe4\xe8\x5f\xed\x5d\xe7\x9c\xb7\x2f\x6e\x07\x58\xbe\xd8\x5b\x1c\x99\x02\x59\x79\xdf\xce\x0d\x4e\xfd\x54\x72\xc2\xa0\x83\x0e\x74\x3c\x1c\x1c\x04\x48\xf8\xa8\xdb\xda\xc8\xdd\x08\x98\xc9\x77\xe8\xbe\x52\xb7\xe6\xea\x8b\x1b\x6d\xd7\xcf\x54\x75\x76\xc2\x02\x6e\xaa\x02\x6b\xe2\xac\x95\xa8\x12\x8e\xdb\xc9\x1e\xe4\x74\xdf\x1e\x61\x50\xc9\x82\xe6\x73\x4e\x6f\xb2\xce\x7e\xe4\x99\x3e\x88\x85\xf0\xa8\xca\xb2\x34\x6d\x5d\xac\x7c\x60\x50\xd3\xb1\x6c\x00\x4f\x59\x26\xf1\xc0\xe8\xea\x81\x71\xf2\x01\x23\xd0\x13\x90\xdb\xdc\x3d\x56\x13\x0a\xca\x6a\xce\xd7\xa1\xbc\xc9\x9f\x56\x5f\x36\xbb\x26\x87\xa4\xd6\x30\xbb\x80\xb2\x51\x60\xfc\xc6\x14\xc4\xcb\x67\x2b\x04\x83\x1f\x11\xa0\xa6\x6d\xeb\xf4\x22\xa0\xa1\xca\xf1\x47\x55\x7a\x03\x42\xd4\x05\x49\x44\x6f\xb6\x56\x00\x39\xd3\x39\x52\x02\xcf\x45\x81\xde\x4e\x9e\x22\x87\x5b\x9e\xb7\xc7\xc3\x71\x87\x99\xef\xc7\x13\xff\x1a\xf3\xa0\xdb\x91\x1d\x49\x9f\xc1\xd9\x31\x45\x83\xb4\x18\x7e\xb6\xa3\x56\x82\x97\x47\x09\x6d\x3a\x8e\x75\x71\x75\x7a\x87\x9d\xbb\xb4\xe6\x54\xfc\x67\xd3\xd9\x11\xf6\xc4\x9c\x71\xe9\x15\x87\x02\xb7\x8e\x07\x9f\xeb\x35\x60\x69\x16\x2c\x86\x8d\x7b\x40\xd9\x24\x06\x2f\x32\xa6\x14\xcf\xe7\x96\x36\x2d\xce\x92\x7a\xb0\x6c\x3a\x27\xa6\x39\xd2\xfa\x9e\xf7\x66\x89\x66\x04\x2f\x15\x88\x12\x4d\xac\xd1\x99\xc4\xf3\xfd\x21\xf3\x13\xf7\x2a\xba\x2c\x22\xc1\xc0\xc6\x35\xb4\x19\x23\xd1\x7b\x8a\xf7\xa8\x1f\x50\x34\x91\x33\xd6\x31\x84\xc7\x57\x63\xaf\x41\x7c\xad\xcd\xfe\xca\xb6\xa2\xff\x68\x62\xcf\x73\xdb\x71\x59\xca\x54\xcd\xf1\x05\x4d\x31\x96\x16\x7d\x4a\xe5\x47\x44\x47\x09\xe4\xd2\x91\x76\x53\x11\xdb\xc7\x78\x8e\x8e\xd5\x6c\x3b\x7e\x6e\x73\x74\x04\xb8\x2d\x9e\x9b\xef\x24\x42\xbf\x9f\xba\x0e\xab\x6a\x25\xbc\x54\x65\x4d\x93\x47\xc2\x6b\x16\x95\xf7\x83\x95\x23\x3e\x10\x17\x09\xb7\x0c\xf8\xcc\x2d\xa7\x98\x50\x4f\x76\x75\x7f\xf8\x11\xf7\x73\x77\x74\x42\x26\xf7\x1c\x0f\xc5\xaa\x45\x27\x7e\xee\x70\xe4\x6e\x37\xcf\x1d\xf1\x5c\x66\xda\xfc\x6e\x3c\xff\xde\xf5\x66\x6d\xd0\xd6\x8e\xbd\x4d\x9a\x6b\x61\x4c\x2c\xdf\xf6\x80\x24\x5c\x43\xd7\x5e\x21\xdb\xe4\x32\x95\x28\x99\x32\xbd\xe9\x66\x2a\x50\x71\xfc\xfe\x6e\xb4\xe9\xa7\x6e\x24\xce\x77\x0f\x7e\xe7\x5d\x6a\x7a\xde\x92\x00\x78\x53\x12\x62\xea\xff\x77\xee\x35\x3b\xf2\xe2\xff\x94\x7b\x2d\x94\x78\xfc\xa8\xfd\x3f\x7b\xda\xe2\xd8\x83\x0b\x77\x0f\x70\xf8\xbf\x7b\x35\xb2\x58\xfe\xd3\xa8\x52\xff\xb1\x6f\x6d\xa5\xae\xdd\x6c\x89\x66\x6e\x74\x3a\x74\x62\x61\x6e\xb9\xe4\x62\x09\x7e\xf0\x40\xe3\x66\x4e\xff\x89\x74\xff\xd3\x49\xaf\xdd\x26\xb0\xbf\x9a\xf5\xf3\xf7\xef\x1a\xde\x75\x4e\xf0\x2e\xa3\x4c\xf4\x59\x10\x5e\x9f\xc9\xbb\x62\x3d\x94\xdb\x9c\x56\x8d\x89\xf3\x62\xd6\x7d\x31\x97\x78\x51\xa2\x9f\x5c\x6d\x23\xeb\x5f\x39\xb6\xe4\x88\x6a\xd9\xe3\xb6\x65\x61\x2e\x02\x7b\x4e\x34\xed\x90\xd6\x8f\xf1\x01\xe3\x58\x6e\xca\x2c\xea\x24\x94\xc4\x80\xdf\xb7\x38\xa5\x0d\x0f\x6d\xbe\xae\x9e\x31\x7f\x96\xc6\xce\x33\x93\xf1\xed\x86\xa6\x13\xe7\xa1\xc3\x8d\x87\x24\x66\x70\xe4\x3c\xb4\xab\x3a\xab\xfa\x04\xdd\x05\xbe\xc1\xb2\x14\x44\x13\xb9\x3f\xf8\x65\x8e\x3e\x20\xf3\xbc\xc5\x7f\xfe\x8e\x83\xe9\xeb\xf1\xb3\xef\xb6\x7c\x95\xf8\x30\xab\xfa\x52\x62\xcb\x57\x12\xd5\x5e\x0a\x95\xeb\x27\xaa\xda\x6d\xa3\x70\xdd\xc6\x88\x86\x43\x19\x42\xfb\x72\xf9\xfb\x92\x7e\xd9\x43\x1d\x3a\xf7\xe2\x9a\x95\x27\x2f\x2e\x4f\x86\xea\xd6\xd3\xd3\x5f\x97\x0d\x8b\xdf\xe8\x0b\xd2\x8e\x2f\x62\xa3\x91\x3e\xc5\x88\xd3\xfe\x90\x2e\x8b\x4d\xb5\x63\x8d\xc1\xb6\x66\xae\x17\x6e\xff\x8f\x4d\x1d\x94\x0c\xad\x62\x7f\xa6\x42\x74\xa9\x5e\x3b\xda\xd9\x34\x97\x88\xbd\x05\xff\xd8\x81\xc4\x41\x45\x79\xb4\x55\x63\x5b\x93\x1c\x1a\xa9\x64\x09\xff\x31\xd0\xae\xe1\x60\xf4\xec\x79\xa3\xe7\x31\x8d\x64\xe5\x1a\x1e\x9a\x92\x51\xa2\xf9\x2a\x55\x0b\x6b\x05\xa1\x89\x27\x4b\xa4\x85\x25\x0f\x24\x4e\xc7\x6e\x82\x0f\x8c\xc7\x3c\xa7\x43\x37\x72\x9d\xa1\xe8\xb1\xf4\x81\xec\x77\xd9\x61\xeb\x4d\x6f\xa3\x85\x95\x9d\xeb\xe9\x66\x7a\x56\xd7\x7a\x8b\xc8\x25\xa7\x90\x45\x6f\x24\x41\x63\xb6\x10\x74\x2e\x63\x6b\xc6\x64\x91\xb9\xd9\x9c\x57\x59\xd7\xc3\x46\x54\xf7\x8e\x75\x17\x3b\xc2\xe2\xdf\x40\x8f\x8d\x94\xae\x69\x55\xc7\x91\xa0\x8b\xbb\xf4\x4c\xa5\x47\x5a\x37\x00\xfb\x19\xa6\x20\x6e\x0f\xe2\xda\x01\xf5\x9f\xe9\x4f\x4f\x8b\xdb\x59\x4f\x91\x9c\xf7\x49\x1b\x9a\x90\xc1\xc4\x16\x72\x33\xe7\x6c\x84\x9f\xc2\x84\xb2\xb7\x7d\xce\x02\xba\x84\x9e\x8f\x69\x3c\xe4\xec\x48\x64\xc8\x12\xf4\x4c\xe7\x99\x3e\x23\x55\x2c\xbf\x10\x20\x8e\x67\xd3\xe1\xac\x74\x65\xab\x52\xc0\xbd\xcf\x4c\xea\x28\xce\x6a\x9a\x4a\x89\xfb\x3b\x78\xda\xe3\x48\xe8\xc8\xfe\x32\x7b\x3a\x60\x6d\xc8\x01\xd8\x5d\x7b\x87\xfc\xa3\x82\x65\x9a\x86\xfe\x17\x84\x4d\x3f\xf1\xe5\x46\xe2\x11\xb9\xeb\x33\xcb\x69\x8d\x5d\xca\x9d\x96\x07\x7e\xcd\xf9\x35\x32\x0e\x84\x27\xf8\xe1\x47\x6a\x2b\x7a\x69\x7b\xf3\x8e\x9f\x66\x83\x04\xe3\x46\x9c\x3d\xd5\xde\x4f\xb4\x4d\x96\xd2\x98\x8f\xd5\xc4\xce\xc7\x7a\xa2\xe3\xd4\xda\xf6\xea\xc0\xba\x8f\x11\x04\xf5\x4c\x78\x54\xf7\x08\x8b\x7c\xcb\x9a\x09\x66\x46\x53\xf0\x87\x2a\x87\x4e\xb8\x58\x3f\x13\xc8\x3e\xed\xf9\x54\x56\x4b\xb0\x7e\x82\xa9\x9e\x08\x69\x35\x3c\xb6\xd4\x99\xe1\x7f\x62\x0e\x74\xa6\x0c\x57\xb4\x9e\xc5\xa6\xe7\xe7\xd4\x8c\xb8\x81\xf2\xb5\x80\x99\xb9\x43\xe9\xf1\x49\x3f\x2f\x89\x41\xee\xd0\x6f\x31\xa2\x5f\xac\xe2\xc4\x02\x71\xe8\x97\xf8\xf8\x5c\xbf\x80\x61\x94\xeb\x9e\x97\xaa\xaf\xc4\xe8\xf5\x9e\x6e\x7a\xc1\x58\x30\x1a\xcc\x0c\xdd\x31\xdb\x1e\xe8\x3b\x35\x4b\xf5\xac\x04\x1f\x0c\x75\xb6\x6a\x27\x30\x74\xa6\x6f\xd9\x93\x12\xb1\x02\xb9\xd5\x00\xe6\xc4\x5a\x66\xb4\x23\x10\x55\x8f\x98\xd2\x2c\x46\x6e\xb6\xa8\x1e\x02\x2f\xc5\x90\x3b\x8a\x73\x08\x18\xdb\x0f\xc0\x3f\x74\x56\xf2\xdf\x7b\x17\x27\x3b\x56\x6a\xaf\xcc\x1a\x04\x44\x6a\xf9\x25\x34\x5e\x06\x1d\x55\x98\x05\x6d\x76\xe1\xa1\xc1\xfe\x1d\xa3\x8b\x16\x00\xe5\x28\x44\xf8\x04\xd5\x92\xb5\x1a\x4e\xb0\x79\xb7\x73\xd1\xd3\xfe\x56\x65\x0a\x22\x79\xf4\x2d\x60\x0d\xe0\x2e\x6f\x7c\x2c\x23\x00\x37\xe1\xd9\x02\xe0\xdc\xea\x78\x58\x50\x1c\xb8\x88\x0e\xdd\x74\x57\x3c\x50\x11\xa1\x01\x60\xa5\x00\xa2\x61\x34\xec\x41\x96\xd3\x1f\xab\xe5\xf4\x8a\xcc\x36\xb8\xd4\xd9\x3b\x64\x26\x5a\x92\x7f\x74\x02\x6f\x5b\x2b\x3e\xb6\x05\x65\x4c\x55\x96\xd5\x13\xa4\x95\xd6\xfa\x0d\x2b\x2b\x7e\x03\x9e\x91\xa4\x69\xf1\xac\xb7\x66\x78\xbf\x3f\x97\xea\x57\xc1\x11\xdd\x3b\x49\x23\x9f\xba\x3c\x11\x9e\x7a\x52\xf7\xe9\x56\x7a\xa0\x75\xa1\x31\xd5\xe9\xc1\xa3\xa7\xfb\x86\xaa\xeb\xaf\xe9\xae\x87\x6a\x15\x7d\x60\x40\x82\xaa\x0c\x83\x9e\x29\x41\x97\xd7\xbc\xb2\x01\xfe\xe9\x41\x60\x46\x79\xed\x53\xa4\xdb\x91\x32\x3c\xf0\xdb\x17\x17\x80\x20\xd8\x28\xef\xa1\x60\xfa\xd2\x42\x16\x3e\x12\x50\x3d\x54\x88\x58\x3b\x13\x82\x13\x4c\x6a\xe9\x58\xd0\x2a\x19\x60\xcf\x66\x29\x46\x35\x78\x6b\x84\x80\x47\x3d\x9f\x0d\x40\xfc\xcd\x34\x46\xc9\x57\x2d\x49\xa5\xcd\xab\x32\x26\xac\x2d\x78\x04\xd2\x82\x48\xfd\xe0\x3e\x00\xb0\x95\xde\xf4\x58\x50\x23\x7e\xec\x0c\xf9\x4e\x76\x56\x67\x2b\x55\xc5\x9b\xd3\x66\xba\xed\xdd\x7b\x1b\x18\xe6\x5b\xbb\xe7\xa8\x01\x9b\xa4\x5b\x52\x35\x9a\x55\x47\x03\x01\x2f\xd5\xbf\xc6\xf4\x7c\x9a\x0b\x90\x95\x72\xe8\xf0\xea\x59\x10\x91\xd4\xfa\x59\xf2\x2e\xd3\x6d\xef\xd9\x3b\xa3\xb4\x53\xaf\x0a\x23\x93\xc0\x5f\x74\x7f\x9b\xbf\x5f\xa4\x0e\x72\xbf\xa2\x4a\xe2\xfa\xf0\xfd\x09\x6c\x2d\x79\x00\x3f\x3f\xc8\xac\xe1\xc8\x11\xb6\x95\x05\xb0\x79\xd7\x22\xaa\xb4\x2d\x80\xc6\xe5\x44\x09\x86\x63\xbd\x8a\x89\x02\xda\xe4\x87\x39\x56\x9a\x9e\x7f\x0e\x64\xbc\x65\xb1\xfd\xf5\x16\x70\x9d\xe4\x95\xf9\x56\x58\x13\xee\xf8\xb0\x90\x95\xad\xe8\x47\xf3\x7d\x98\x6a\x16\xe8\x91\x5c\xa1\x60\x21\x47\xcc\x4c\xdd\xc7\x3d\x1a\xff\xa1\x47\x46\xf8\xda\xe9\x9b\x3d\x2a\x34\xdc\x1e\xad\xd0\xa3\x85\x32\xdf\x0a\xf7\x92\x93\xff\x50\x36\xf3\xd4\xda\xea\x1f\xd2\x23\x09\x59\x22\x32\xfc\x0f\xa2\xb6\x9a\x1e\xb5\xc1\xe1\x1f\xe2\x1e\x65\xd4\xf7\x3d\xfa\xf4\xbc\xd9\xed\x0e\xed\x13\x1d\xda\xa0\x43\x13\x65\x3e\x15\xae\x05\x2c\xe5\x21\x2f\x1d\x5a\xea\x27\xe9\x50\xd7\x99\xa2\x27\x67\x8a\x3a\x98\x22\xd4\x4f\x5f\xc2\xf4\xdd\xc9\xe3\xff\x37\x01\x1d\x59\xd7\xff\x99\xea\xdd\x8e\xf6\x00\x97\xc9\xb6\xba\xc8\xfe\x96\x69\xff\x32\xed\x76\x6c\x5c\xc1\x17\x90\x17\xf0\x14\x8e\x95\x3d\xca\xc9\xb4\x90\x69\x8e\x77\x76\x4b\xfd\xc7\x77\xa2\xb2\x59\x92\x56\x8e\x77\xea\x7f\x7c\xc3\x07\x30\x68\x4b\xf2\xe9\x9d\x39\xcd\xbd\x0b\x32\x9d\xdd\x66\xa9\xe7\x18\x32\xed\x67\x26\xda\x2c\x8f\xd1\x66\xd9\x59\x32\x30\xf3\xd9\xda\x2b\x33\x95\x3f\x84\x0c\x3a\x5b\x2d\x9b\xcc\x17\x01\xe4\x84\x59\xff\x29\x00\x5d\xd8\x2a\x02\xa5\x73\xc0\x56\x79\x2b\xa4\x14\x51\x10\xcd\x3c\x17\x57\xea\x0f\x13\x6d\xb8\xe2\x08\xc5\x12\x0e\x8a\x9c\x5c\xa6\x4d\x20\x47\x46\x92\x4a\x5f\x44\xad\x27\x33\xca\x81\xe2\x52\xf6\x89\x75\x1a\x0b\x8a\xcc\x2d\x5c\x28\x7c\xc1\x1f\xff\xf8\x77\xa3\xcf\x63\xf4\x27\x65\xc6\xd5\x2a\x09\x3a\xd0\x0f\x61\xfe\x9d\x82\x39\x84\x8d\x3c\x3b\xf4\x1b\xe9\x83\xef\xf9\x7d\xa3\xdf\x34\x5e\x4d\xff\x0e\xac\x64\x26\x5f\x21\xe8\xdc\x18\x38\x6e\x60\x65\x72\x22\x04\xaf\xf1\x43\x1f\xf2\x6f\xd3\xf2\xe1\x08\x12\x07\x7f\x77\xcc\xbf\xfe\x59\xdc\xca\xc8\x49\x04\x68\xff\x97\x50\x74\x58\x9a\x09\x2d\x0c\xd4\x6c\x5e\x37\xdd\x1e\xa1\x12\x42\x68\x0e\xff\x73\x5c\x80\xff\xce\xfc\x13\xe6\xe0\x30\x6a\x09\x4a\xc0\x1e\x40\xea\xa3\x19\xcf\x59\x23\x8a\x8d\xa5\xb5\xa6\x54\x8f\xa8\xe3\x90\xae\x06\x69\x5b\xdb\xe7\x3e\x0f\xdb\x0d\x14\x3b\xf4\x4e\x16\xb1\xd9\x89\x47\xd0\x5a\x23\x17\xa1\xb3\x98\x13\x3a\x53\x7b\x9a\xb5\x22\x45\xee\x6a\x8a\x23\xa1\x25\xc7\xbc\x04\x8c\x84\xec\xf8\xb3\x4c\x95\xb5\x3c\xb7\x9b\xd6\x06\xaa\x9f\x7e\x5e\xf5\x3a\x05\xca\x08\x32\xd3\x7a\xfa\x5d\x8a\x91\x0b\x64\xdb\x4c\x9a\xfa\x34\x2b\xa6\x67\x8a\x60\x75\x22\xfb\xfc\x38\xfe\x4d\xb3\x33\x4c\x46\xbf\x4b\xd7\x87\xc4\xc4\x74\x0b\xc8\xac\x97\x90\xe3\xfb\x5a\x3d\xad\xcd\x46\x33\xe3\x11\x66\xd7\xfb\x1d\xf5\xa4\x25\xd9\x32\x66\xd0\xab\x99\x50\x75\x4f\xca\xeb\xf5\x9f\x58\x8d\x2c\x92\x47\xbb\x38\xb0\xc1\xf7\x84\xa1\x73\x73\xec\xd1\x81\xce\x0a\xff\xb7\x05\xaa\x1f\x19\x70\xa1\x38\x2c\x26\x0a\x98\x35\xbf\x32\x90\x9e\x29\xf1\xbe\x88\x4e\xb2\xd3\xf6\x47\xe8\xe9\x1a\x8a\x51\xac\x6e\x3f\x20\x70\x94\x83\x19\xe5\x6b\xa0\x45\xfd\x30\x32\xe0\x6f\x2c\xf8\xd5\x3c\xed\xd8\xce\x3e\x00\x61\x83\x1f\x0b\xc6\x45\xdd\x4b\x03\xf3\xba\xeb\xb5\xb1\xa2\x03\x10\xe3\x07\x30\xd5\xa6\x52\x83\x81\xe1\xe1\xc0\xb6\x2d\xa2\xb5\x5f\x0b\xfc\x0c\xcc\xe5\x96\x91\x8d\x4f\xb8\xd0\x29\xa5\x08\xae\x8c\xed\x2d\x0f\xb4\xa5\x94\x01\x6c\xf2\x16\x08\xcb\xde\x98\xaa\x64\x53\x5e\x6b\x77\x04\xbc\xca\x73\xae\x23\xda\x40\x6e\xff\xd7\x04\xa0\x1b\x03\x45\x99\x02\x16\xa5\xee\x1e\xd8\x11\x05\x55\x1c\x30\x7c\x51\x0a\x5a\x86\x4b\x2c\xcd\x82\xe3\x5d\x3b\xe3\xed\xfc\xed\x50\xa7\x1c\x6a\xb9\xf6\xff\xc2\x50\x57\x18\xea\x40\x09\x64\x9c\xb7\xfc\x77\x63\x3d\xa6\x40\x71\xb3\xd4\xc5\x90\xf2\x18\xeb\x48\xed\x2f\x26\xe1\x7f\x74\xac\xf1\xbe\x76\x46\x7a\x4e\x8c\xb4\xeb\xbd\xc8\x98\xe0\x51\x0d\x77\x18\xee\x3b\x61\xd3\x51\x25\x0c\x1e\x45\x30\x94\x7e\x19\xff\x07\xe6\xb7\x20\x58\xc1\x4a\xdb\x43\x8c\x10\xf9\x82\x5e\xeb\x13\x82\x1b\xfb\x2c\x49\x34\x53\x71\xa9\x8f\x26\xbc\xda\x2b\x95\xb7\x17\x5b\x71\x25\xbb\xd0\xf3\x36\xc4\x99\x87\x4b\x51\xd0\x67\x25\x91\x4d\x87\x40\x8c\xe9\x9a\xdb\xf5\x3a\xbe\xf8\xc1\x98\x9b\xde\x60\x50\xff\xf6\x48\x11\xe4\xb0\x02\xdc\x7a\x12\xd3\xdd\x2b\x04\x18\x60\x1c\x6d\x3c\x34\xcb\xae\xe7\xf5\x8e\xeb\xe1\x5d\x48\xac\x81\xfe\x22\x22\x0c\x62\xf9\x0c\xdb\xa8\xe0\x6b\x5c\x07\xe2\x10\x00\x95\xa9\x53\xe6\xbd\x61\xc6\xf9\xe0\xd1\x27\x84\x67\x74\x46\xa1\xfc\x24\xf9\xf6\xa3\xad\xfe\x12\x33\x9a\x61\x7d\x8e\xda\x84\x33\x3f\xdd\x96\xd0\x28\x31\x8a\x8c\x49\x90\x95\x98\x20\xfd\x30\xdd\xf4\xea\x21\xc2\x0e\x5a\xdc\x57\x95\x49\xdd\x86\x9b\x85\x9e\xd7\xb3\x47\x88\xbd\x5c\x94\xe4\x39\x7f\xab\x2f\x26\x7f\xa2\x10\x5b\xc0\x95\xb4\x8e\xe0\x2f\x37\xbb\x73\x16\x37\x65\x86\xb6\x82\x12\x9b\xf3\xcf\x89\x43\x27\x39\x29\x13\xdc\xfb\x80\x61\x31\xac\xcc\xd1\xfa\x64\x76\x6b\xd5\xba\x5e\xb0\x6e\xe0\x8c\x53\x18\xed\x58\xc7\xdb\x0f\xac\x55\x46\xab\xef\x65\xe4\xde\xad\x81\xcb\xc9\x24\xa3\xd7\x63\x79\x4f\x92\x1c\x9b\x23\x86\xc4\x9a\x0d\xa8\x1f\x2f\x46\xff\x96\x9e\xdc\x79\xde\xea\x8e\x00\xc3\x82\xba\xee\xe7\x50\x51\x18\x3d\x6f\x8b\x61\x52\x3f\x4e\xe0\xfb\x45\x5c\xbe\x50\x86\x5f\xa0\xbc\x41\x14\xb9\x60\x27\xa5\x4c\xe6\xfa\x4c\x83\x57\x45\x30\x03\xbd\xae\x5d\x8a\xd2\x84\x86\x9d\xd0\x28\xc0\x59\x16\xad\xb9\x18\xc5\x04\xc2\x44\x77\xad\xaf\x96\xaf\x65\xcf\x51\xa9\x4b\xa8\x9d\x50\x2c\xff\xff\x9a\x95\x34\x2f\xac\x51\x42\xfb\x7a\xdc\xef\x5e\xb8\xbf\x4b\xb7\xbd\x79\x53\x9c\xe1\x1b\xb5\x98\x03\xe4\x58\xe6\x8b\xab\x3a\x05\xd8\x72\x57\x70\xcf\x26\x12\x42\xe6\xdf\xe3\x56\x9c\x7a\xde\xab\x49\xac\x7b\x33\xf5\x4a\x1d\x2c\x32\x07\xf4\x87\x28\x63\x09\x9b\xca\xfa\x48\x60\xbf\x40\xaa\xaf\xb5\xbd\xa7\xe6\x4a\x32\x4b\xf5\x88\x95\xad\xb0\xd3\xe7\xe2\xf5\x07\x54\xfa\xef\x09\xb4\xe8\xe6\x54\x82\x2c\xc2\x87\x19\x7e\x77\x73\x08\x54\xea\x9e\x60\x71\x6f\x9e\x17\xe6\xa5\xbb\xbd\x22\xa2\xbd\xd8\x9e\xcc\xfc\x6d\x24\xd2\xac\xf9\x98\x79\x35\x4b\x6d\x94\x94\xc5\x7d\x38\x12\x3f\xfb\x7b\x45\x70\x08\xf6\x4d\x24\x87\xf5\x53\x12\xc7\x40\x3b\x4a\x8f\x6c\xa7\xc3\x68\xc1\xa6\xe1\x50\x5b\x9d\xb8\xd7\x66\xd4\x4e\x33\xdd\xf5\x1a\x67\x23\xaf\x07\x30\x90\x00\xb4\xf6\x2d\xdd\x32\x92\xfb\x63\x45\xa5\x8b\xa1\xa7\xfb\x62\x9a\xaf\xbf\xa6\x7b\xae\xd9\xc6\xff\xc1\xc6\x3e\x44\x99\x18\x28\xcf\xaf\xa8\xef\x2f\x8d\x00\x33\x38\x53\xc2\xb5\xb4\xd7\x4e\x7e\xb0\x19\x55\xc9\x15\x69\xb9\x0c\x7b\xcc\x5c\x28\x6b\x0f\x2d\x15\xa4\xf2\x26\x96\xd7\x66\x49\x7e\xb4\x36\x6e\x59\xbe\x8a\xdc\xba\xad\x34\x99\xe9\x0e\x3d\xaf\x73\x96\x8d\x1c\x6c\x01\xd4\x7a\xcb\x9a\xf2\x0b\x85\xc2\x5b\xe5\x1e\x95\x4a\x0f\x65\x4c\xa4\xf5\xa6\xd1\x7f\x5e\x22\xfd\x87\xe4\xfb\x2e\xfd\x6c\xef\x15\xbb\x58\x58\xd4\x1d\x90\x96\x3e\x6b\xf0\xb4\x6c\x68\xcc\x46\x9d\x91\x55\x52\x16\x9d\x93\x16\xa2\x0a\x7e\x34\xab\xb2\xad\xfc\x69\x5d\x08\xe6\x75\x63\xb8\xd0\x5b\x46\x0d\x05\x21\xc0\xf7\x8b\xa0\xa3\x19\x0e\x52\x71\x40\xf8\xcc\x9e\x81\x07\x65\xa2\x04\x7d\xf7\xad\x06\x02\x6b\xc3\x95\xd7\xc5\x2e\xd5\x4c\x82\x66\xa5\xea\x0b\xc5\x72\x27\x56\xb3\x2c\x5e\x94\xb8\xac\x3e\x5b\xe9\xb0\x3c\x94\xcb\x07\x10\xf9\xdb\x3d\x30\xc6\x8f\x4c\xc9\x93\xba\x74\xde\x4a\x97\xe1\xa0\x5d\xa8\xf9\x0c\xba\xe5\xa3\x6b\xad\xa8\x62\x5b\xcf\x94\x8c\x20\xdc\x02\x72\xef\xa1\x28\xf6\x8a\xb5\x0e\x45\x73\x96\x85\xd8\x61\xa4\xa8\x07\x3e\x86\xea\x0c\xd7\xc8\x46\xe5\x20\x2f\xb4\x77\xc0\xde\x1b\x48\x3a\x87\xb5\x38\xdd\x1e\xe3\x07\x00\x9a\x65\x4c\xd0\xa0\xf9\x32\xbb\x3d\x00\x50\x60\xd4\xed\x4a\xe8\x76\xfb\x84\x6e\xef\x94\x74\x27\xcc\xa1\x10\xde\xc3\x40\x2c\x51\x67\xdd\x95\x6e\x03\x34\x81\x2b\x24\x01\xb1\x76\x85\xaa\x3c\xa9\x07\x74\xc9\x38\xc8\xf6\xdf\x74\x77\xa5\x05\x66\xdc\x2e\xc9\x4a\xd0\x3b\xf7\x5c\x68\x77\xba\xbd\x44\xaf\x4b\x2d\xb7\xd7\xb4\x44\xce\x50\xb4\x2e\xdc\x2a\xe9\x47\x34\xd9\x2b\x05\x4d\xbd\xa4\x1b\xe4\x9b\xd6\x75\x36\x7e\x4e\x5b\x2b\xc2\x87\x39\x0c\x0b\x9a\xda\x90\x11\x67\x9e\x59\x8b\xe2\x24\x25\xb8\xc5\x6b\x0b\xb9\x6f\xa0\xc2\x93\xa1\xc1\xa1\xb2\x95\x89\xcc\xa1\x6c\xd8\xd0\x3d\xcd\xd1\x3d\x4f\x3f\xfc\xf7\xfe\x6c\xc2\x59\xad\x1f\xff\xf8\x67\xdf\x0b\x9e\x86\xc8\x9b\x90\x21\x18\xfa\x3d\x7d\xa6\x03\x33\x13\x6b\x35\x55\xb5\xff\xd9\xa9\x10\x1d\xff\xe9\xff\xb1\xa9\x58\x28\xfd\x9b\xa2\x7c\x66\x44\x1b\x48\xdf\x08\x40\x12\x01\x29\x61\x8d\x27\xd6\xe2\x98\xec\x69\xc0\xf1\x8c\x70\xb5\x15\x2f\xa3\x77\x60\x24\xe6\x07\x0b\x74\x84\xf7\xf0\xf1\x64\x6c\x24\xfc\xa4\x2e\x18\x9d\x63\x95\x59\x61\xb6\x07\xeb\x3a\xc3\x2e\xc6\x13\xb8\xbe\x56\xcc\x6e\x34\xcc\x49\x92\x59\x82\x4a\x9d\xb9\x08\xef\x92\x9a\xf9\xe1\xb6\x36\x53\x22\x6c\x05\xde\xbd\x37\x9c\xc4\x97\x51\x2c\xe8\x28\x26\xac\xbd\x54\x1e\x70\x5c\x64\x2c\xf1\xef\xaf\xd5\x44\x26\xc1\x6f\x5c\xb4\xe8\xad\x94\x91\xa6\x83\xbd\x40\xae\x77\xa7\x93\xc4\x5d\xfd\x8c\x90\x68\xe9\xaf\x99\xd3\xab\x8f\x86\xe9\x99\xd2\x05\x95\xc3\xa1\x26\xae\xb1\xe7\xf4\xbb\x39\x4c\x25\xa5\x16\xf6\xa1\x29\x93\x10\xda\x66\x65\x7e\xee\xe0\xf8\xee\x2e\xc4\x7e\x12\xe4\x56\xf5\xf4\xa7\xe7\xff\xcc\x23\xae\xa5\x48\x20\xc6\x21\xd8\xf9\x01\x71\xaf\x62\x80\x9a\xd6\x47\x73\x7a\x40\xb1\xa0\x86\x23\x48\xc5\xbc\x77\xa3\x61\xd1\x68\x42\x6d\xa9\x13\xc4\x16\x41\x9d\x81\x4b\x79\x41\xee\xd8\x84\x85\xd4\x1c\xe2\x05\xdc\x29\x63\xa9\x5f\x6b\x32\x4b\x7a\xaa\x52\xa0\x99\x5e\x06\x27\xee\xe2\x59\xa6\x03\x0a\x3e\xe0\xf1\x7d\x71\x0f\x35\x6a\x6b\xd7\xa7\x5e\x95\x91\xde\x0b\x9b\x7c\x87\x4b\x31\xd9\x84\xb7\x52\xa8\x40\x94\x7c\x2f\x1d\x7a\x1f\xb9\xba\xf9\xa8\x3d\xac\x17\xea\x2b\x1d\x7a\x6d\x08\x6d\xa2\x2d\xbe\xcd\x15\x47\xe1\x94\xe8\x98\x88\xdd\x8c\xe5\x05\xa7\xcc\xde\x58\x19\xb9\xcb\xd6\x7c\x65\x21\xb5\x1a\xd7\xc0\x7c\xe3\x13\x40\xa5\xe2\xce\x10\xb5\xe2\x0d\x92\x0c\xfe\xcd\x31\x0e\xbf\xe5\xe9\x4c\xbd\x28\x6a\x9a\x27\xcb\x59\x54\xbf\x21\x92\x2c\x65\xe5\xa2\xfa\x2d\xbb\x75\x64\x2a\x6d\x7a\xc1\x5e\xc3\x16\xaf\x02\xba\x70\x23\xd1\xb3\x49\x7f\x54\x61\x6d\x96\x4d\x4f\x75\x91\x93\x5c\x5a\x63\x1d\x13\x10\x96\x79\xc8\xa1\x5b\x4d\x2c\xe5\x0a\x1f\xca\xae\x69\xfb\x5b\xc0\xe8\x32\x10\x11\xd8\xd6\xda\xc8\xab\xe1\x12\xd7\x21\x1a\xeb\xb3\xc0\x1c\x7b\x79\xf5\x0a\x65\xff\x1d\xad\x6d\xcb\xac\xee\xbb\x50\xde\xdb\x54\x00\x93\x0c\x65\xf4\x29\xc5\xd0\x3c\x1b\x24\x5d\x69\x27\xd2\xa6\xec\xde\x13\xd1\x52\x97\xf2\x3d\x3d\x15\x3d\xa4\x6d\xa4\xe7\xd0\xd3\x77\x32\x61\x5d\xb3\x89\x83\x3c\xca\x41\xcd\x51\xb7\xa4\x79\x66\x99\x34\x26\x90\x36\x8f\x92\xa9\x10\x0e\x75\x9e\x7d\xf8\x80\xe0\xd4\x15\xc5\x3e\xf0\x7a\xe2\x05\x7f\x0e\xb7\x1b\x32\x6d\xc1\x2a\x7e\x66\xb8\x08\xaa\x5a\x7d\x9e\x90\x4a\xd2\xb9\x37\xbc\xa9\x86\x9a\x29\xed\xe3\x12\x33\xb6\xc0\x4c\xfc\x92\x50\x82\x95\xfa\x14\xe3\xb0\xb2\xda\x8f\xa0\xd0\xa7\x37\xca\x0b\x86\x1a\xa5\x06\x33\xb7\x96\x23\xb5\xa4\xa3\xbd\x69\xe4\xc1\x67\x89\xa1\xed\x7c\xc2\xd0\x2e\x21\x48\x92\x45\x46\x33\xa7\x44\x1d\xf9\x66\x79\x3b\x9e\xd7\x2d\x89\x8b\x65\xe3\x2f\x55\x79\xcd\x2d\x0a\x8d\x69\xbd\xa9\x4b\xfd\x32\xbd\x42\x94\xb0\x5c\x90\x2a\x55\x88\x54\x46\x15\x0f\x8e\x74\x2a\x54\xed\x3f\xef\x40\xd0\x9d\x89\x8a\x6b\xa7\x37\x8f\x34\x92\x75\x66\x2a\xee\x92\xa3\x73\x75\x73\x12\x82\xd4\xca\x7f\x38\x55\x60\xc0\x29\xe5\xcf\x07\x99\x20\x98\xc0\x9a\x48\xdc\xb9\x7a\x31\xf4\x02\x3a\xb3\x10\x9b\xd3\xb1\xa1\xdc\x3d\xe8\x58\x02\xb7\x8c\x3d\xdf\xcc\x4d\x98\x76\x85\x0c\x08\x24\x59\xd7\x6a\xdc\xb9\xb1\x95\xa5\x2d\x11\x71\x6d\x51\xd6\xda\x35\xd4\x5d\x9d\x60\x32\xa4\x8d\xbe\xb7\x69\x8e\xeb\x8b\x09\xa7\xed\x45\xca\x67\x60\xe9\x82\x17\x2e\xdd\x9b\xd7\x3e\x2a\x1b\x84\x16\xf1\x02\x56\xcf\xb0\xbc\xa0\x8a\x59\x0b\xd6\x10\x33\x45\x70\xff\x89\xa5\xda\x28\x6f\xa2\x9f\xe9\x1a\xed\x9c\xc9\x83\xa4\xc7\x23\x96\x86\xc4\x26\x1e\xe7\x38\x63\x52\xf0\x3c\x8c\xd3\x45\xcc\xf3\x45\x11\x17\xf5\x6f\x3e\xd4\x1c\x21\xac\xa3\x64\xb6\x40\xeb\xa7\x88\x6c\x0f\xb8\xb1\x35\x6b\x1c\x22\x95\xa0\x20\xf1\xb2\xfa\xb7\x34\xb1\x15\xb2\x6d\x06\x16\xde\xcc\x9a\xda\xe0\xa8\xc6\xdb\xf9\x3b\xc3\x97\x60\x66\xde\xde\x39\x5f\x96\x22\x07\x0d\xaf\xb0\xe1\xae\xba\x93\xb9\x7c\x96\x75\x1d\x85\x64\x3f\x2d\x04\xf1\xea\x07\x33\xd6\xce\xab\x78\x84\xbc\xeb\x7b\xa1\xb7\xd1\xaf\xb3\x31\xe3\x08\x24\x34\x5c\x78\x63\x6b\xac\x10\xcf\xdd\x29\x6d\x78\xf2\x48\x2f\x01\xad\xfb\x3e\x92\x39\xf6\x7f\xb1\x2d\xcb\x42\x3e\x0c\xd7\xfc\xe5\x4d\x37\x90\x7e\x67\x1b\x4e\xb0\xef\xe9\x9f\x73\x5e\x5c\xdc\xd9\x6b\xc1\xcf\x25\x34\xa8\x05\x9f\x5b\xf2\x91\x95\x6c\x96\xda\xd7\x58\x8d\xcd\xf9\x93\xfa\xf2\x6c\x61\xc0\xd5\x5d\xd4\xf9\x9f\x6b\xbc\xbc\xd9\x70\x99\x9b\x9e\x3f\x54\x5b\x36\xb1\xdb\xd0\x74\xd0\xf6\xf4\xef\x3d\x2f\x3e\xa4\xbb\xde\x7c\xa0\x1e\x4e\x92\x19\xb2\x1a\xa8\xa8\xdd\xc3\x86\x59\x09\xb4\xb1\x8c\x64\xb1\xfc\xb9\xf8\x98\xf4\x5d\x4c\x01\x5b\x00\x83\x74\x4a\x22\x6b\x88\xc1\x70\xae\x8a\xf0\x0a\xad\xda\x56\x94\xd4\x3f\xb3\x50\x12\xa2\x83\x03\x8a\x40\x51\xaa\xa4\x8e\x55\x2e\x2a\x63\x28\x00\xd7\x1d\x1b\x74\xa9\xd7\x0a\x75\xe5\x8b\x9d\x74\xc7\xab\x0c\xd4\xeb\x41\x20\x29\x66\x43\xd5\xd8\xf4\xad\x98\xa7\xef\x73\x76\xa2\xa2\xe9\xf0\x7f\x8a\x95\x14\x81\x23\xf5\xb7\x02\x1f\xb0\xe3\x32\x74\xfc\x20\x52\x1f\xb2\x91\x0e\x12\x79\x45\x64\xfe\xfe\x51\xd4\x0d\x8d\x08\xc7\x03\x3d\x43\xc3\xad\x9c\xfa\xdc\x5c\x84\x62\xd8\xc8\x16\xfb\xad\x6d\x3d\x6f\x01\x89\xbd\x73\x4a\x1e\x64\x26\x51\xcf\x9a\x9e\x06\x84\x55\x56\xe4\xbc\x00\x41\x39\x5b\xba\x96\x8d\xae\xae\x7f\x43\xe3\xdd\x58\xf9\x00\xe4\x29\xe7\x7f\xba\xed\xbd\xb2\x36\x50\x66\x46\x32\xea\x78\xfa\x77\x8a\xfe\xa2\xfd\x16\x4e\xb7\xc5\x14\x1c\x9f\xed\x76\xf2\x01\x76\x8a\x5c\xf6\x5f\x25\x40\xab\x71\xc4\x17\x3a\x90\x59\x40\x15\x63\x45\xb9\xa4\x63\x7a\x51\x1b\xa9\x9f\x27\x21\x86\xd1\x58\xbd\x95\xfb\x42\x9e\xf1\xb2\x67\x90\xce\x16\x7e\x24\x66\xd5\xf4\xe1\xb2\x56\x44\x68\x21\xda\x02\xb3\x61\x96\x70\x07\x8e\x76\x94\xe2\xb6\xc9\x65\xd9\x6e\xa1\xea\xaa\xc1\xce\xb1\xa0\x49\x41\x57\xa2\x41\xa2\x72\xed\x18\x45\x53\x5a\xe6\x78\x08\x11\x97\xfb\x00\xfe\xd4\x66\x69\x07\x2f\x0c\xd3\x91\x5d\xac\xb7\xdc\x26\x36\xa0\x68\x2d\x34\xcc\xc0\x90\xd0\x47\xd5\x8b\x88\x3c\xcb\x5b\x46\xb9\xbc\x79\xba\x06\x0c\xfc\xf7\xc2\x37\x8f\x7c\x58\x50\xc2\x50\x72\x50\xde\x18\x09\xa3\x23\x1a\xd8\x26\xbf\xde\x46\x50\x52\x2b\x74\x60\xca\xd1\x74\xc8\xeb\x0c\x71\xd5\x67\xbc\xbf\xbf\xfd\x7e\x93\xe4\xdb\x96\x8a\xa0\xf1\xfb\xe2\x2c\x0f\xe0\x80\x0b\xef\x20\x96\x9b\x3f\xd7\xff\x51\x37\xda\x5e\x50\x00\xec\x9c\x19\x6e\xeb\x39\xb6\xac\xee\x17\x34\xb3\x66\xb5\xf7\xc0\x49\xcf\xf8\xdf\xf6\x74\x79\xab\xa7\x03\xe5\xf5\x6a\x8a\xd5\x08\x04\xa5\x18\x62\x7e\x4b\x8a\x7e\x19\xa1\x3b\x22\xb9\xe7\xff\x22\xc1\xa1\xa4\xa8\x7d\xea\x06\xd1\x08\x2b\x3a\x76\x6e\x13\xc0\xa7\x39\x72\xe7\xdf\x2f\x12\x88\x01\x15\x10\x71\xa2\x7d\xfe\x40\x0d\x39\x43\xbe\x60\x90\x02\x66\xfc\xbc\x17\x93\x9b\x16\x7d\xfc\x59\x7c\xb9\xf5\x1d\x26\xe4\x5d\xaa\x68\xf5\xce\x5b\x8a\x5a\xe2\xa3\x6a\xa7\xd0\x85\xf7\x46\xfa\xdd\xc8\xdb\x68\xdb\x70\x24\x86\xa7\xa2\x6c\xa8\x74\xfb\x13\x31\x64\xbf\x51\x4c\x2f\xf0\x42\x99\xba\x3b\xc4\xaa\x46\x2c\x45\xac\x82\x57\x3c\xc5\x5c\xf5\x9f\x53\xf8\x76\x23\xb7\xfd\xc3\x91\xc2\xd3\x6c\x33\xb3\x1d\x33\xba\x09\xcc\x61\x41\xe3\xbc\xc2\x43\xf9\x2d\x0c\x5e\x46\x4d\x09\xf6\xaa\x8b\x60\x48\x5c\x31\xab\xe4\x10\xff\x42\x18\xf3\x10\x7e\x3b\x76\x93\xaa\x69\xb2\x97\x1f\x5f\xe9\x96\xf7\x6a\x1f\xdf\x71\x6d\x32\xe2\x1b\xc0\x84\x0e\x95\x7d\xc3\x36\x33\x0f\xdc\x3e\xd3\x78\xc7\xf6\xb4\x84\xb6\x5f\xb5\x34\x54\x7c\xa9\xcc\x75\xae\x44\x67\xa9\x99\x29\xfb\x34\xdb\xa8\xa9\x66\x72\xaa\xba\xd7\x53\x65\xa6\xef\x1d\xdf\xb2\x3d\xc0\xb7\xbc\x95\x3a\x89\xc7\x43\xaf\x75\x69\x9b\x78\xe7\x20\x6e\x84\xe0\x87\x90\x4b\xf0\x0c\xe3\x3b\x36\xd0\x43\x54\x2a\x81\x07\xf4\xee\xbf\xc9\xa9\x2f\x36\x4e\x33\xaa\xea\x1a\x48\x59\xeb\x86\x77\xdc\x26\x97\xfc\x29\x1d\x57\xe8\x06\x0f\xef\xc2\x92\x0f\x5b\xd3\x87\x2c\xfd\x0f\xa9\x2f\xda\x94\xf3\x17\x09\xaf\x28\x38\x3d\x74\xd8\xc1\xf4\x7f\x73\x5c\xb6\x78\x85\x4f\xe9\xb4\x80\xed\xd5\xb8\x38\xa3\x18\xaf\x61\x89\x30\xb1\xb5\x26\xca\x79\x31\x8f\x4d\x0d\x8c\x4e\x4b\x2c\x4b\x55\xa5\x2e\xd4\x43\xbc\xb5\xf0\x4b\x23\xaa\xb4\x5e\x63\xae\x9b\x89\xb8\xae\xf2\x82\xa9\x32\x2a\xb0\xd4\x5f\x8e\xb4\x9e\x9e\xf5\x3a\x05\xde\x7b\xc9\x70\xd6\x9f\x9e\x99\xab\x84\x68\xa8\x3d\xfd\xfb\xbc\x80\xa3\x6b\x01\xe9\xbf\x9d\xba\x43\x14\x8e\x84\xf2\xbf\x21\x3a\x4a\x18\xa1\xa4\x15\x07\xb2\x0e\x43\x65\x9b\xda\x49\x53\xc1\x0f\x57\x94\xdc\xaf\xd5\x8f\x93\xac\x54\x76\xad\xda\xab\x5e\x3a\xf4\xe6\x2b\xf5\x1a\xc7\x9d\x7e\xa7\x5e\x05\x72\x82\x4a\x58\x2e\x5d\xbf\x62\x43\xb6\x33\x6e\xa4\x95\x15\xe2\xbf\x20\xa1\xbc\x89\x1f\xab\xf7\x53\x94\x7f\x26\x79\xbc\xed\xf7\x75\x57\x69\x5d\x60\x27\x7e\x66\x76\xa2\x68\x9e\x35\x02\x57\x7a\x30\x4e\x51\xd2\x11\x4b\x9b\x51\x8a\x5b\x67\xb8\x4e\x76\x76\x0a\x3b\xde\xa4\xf5\xd3\xf4\x3c\xab\xa0\xd5\x74\xcf\xe8\xee\x79\x67\xcb\x3f\x4a\x7f\x25\xff\xa4\xd0\xdc\x49\xec\x6e\xb9\x59\x88\xab\x8e\x0c\xd4\x01\x6e\x79\xd1\x18\x50\xd1\x24\xf0\x4a\xcd\x85\x51\x5e\x8b\xcd\xa1\x5a\x08\x7c\x81\x6e\xc4\x6b\x3b\x24\xf8\x5e\x7a\xa0\xcd\xda\xa6\x03\x2f\x83\xc7\x53\xcd\xa1\x1a\x40\x3a\x96\x28\x3c\x9d\x51\xe8\x79\xcf\xf3\x5e\xf1\x19\xb6\x53\x12\x12\x6a\x42\x26\xca\xef\x0c\x61\xb5\x0c\x9b\xbd\xf3\x2a\xdb\xa4\xcc\x47\x07\x50\x2c\xf4\x81\xd3\x87\x9e\x5f\x37\x5f\x78\x05\xa1\x82\x22\xfb\x15\x3e\x55\x96\x80\x58\xa3\xea\x07\xd6\x91\xd8\x33\x4f\xff\xc4\xa6\xe2\xea\xd1\x56\x35\xc5\x64\x56\xd6\xd6\x47\x63\xde\xa9\xa2\x1b\x03\x45\x2d\x0f\xed\x00\x40\x5f\xee\x48\xe6\x93\x06\x22\x70\x5b\xb0\x8c\x42\xa7\xda\xe8\x5c\xd5\x12\xe3\x08\x5e\xec\x00\xf2\xd4\x5e\x0b\xfc\x6d\x68\xc5\xe8\x81\x25\x47\xaa\x25\xae\xfb\x4e\x36\xe8\x5c\x7d\xb8\x13\x22\xd1\xc0\x5a\xb0\xac\x32\xad\x95\xf8\xf4\x52\xad\xb1\x3a\xca\xec\xfa\x66\x76\xa1\x30\x56\x5a\x1f\xe9\x37\xaf\xda\x7a\xda\x22\xf7\x48\x66\x2e\x18\xb2\x31\xa3\xaa\x21\xa8\x66\xbd\x71\xbe\xfb\x68\x36\x95\xfb\xc1\x8e\x3b\xf7\x83\x6d\x3d\x22\x9b\xde\x70\x6b\xdf\x6b\x7a\xc1\x5c\x83\x4a\x8e\x8f\x13\xa3\xed\x67\x1f\xa9\x17\xcf\x40\x0c\x5d\x5b\x06\xfb\x16\x89\xae\x6d\x69\x48\x39\x5b\x4e\x1b\xf7\xec\x33\xba\x8a\xf6\xda\xc2\xe6\xee\xbd\x22\x2b\x85\xdb\x11\x15\xcd\x11\x57\x79\xf4\xd2\x6f\x5e\x43\xa4\xc9\x59\x7b\xac\xca\xce\xf1\x68\xe6\x15\x66\x05\x2d\xc9\xba\xc1\xff\xc7\xde\x9b\x75\xa7\xae\x6b\x69\xc3\x3f\x08\x8f\x41\xdf\x5d\x4a\xb2\x70\x1c\xe2\x10\x42\x08\x21\x77\x84\x10\x3a\x63\xfa\xf6\xd7\x7f\x43\xf3\x99\xb2\x4d\xba\xbd\xf6\xa9\x7a\xeb\xec\xfa\xea\xdc\xac\x15\x6c\x49\x56\x3b\x35\xdb\x67\x36\x62\x5f\x8e\xbb\xea\x1a\x46\xf0\xed\xf5\x55\xf8\x9e\xa3\xab\x2b\x28\x7b\xf6\x13\x81\x21\x2a\x44\x28\x2b\xa9\x7b\x8f\x5c\x7f\xd0\xa1\xa2\x61\xa2\xfa\xa2\xd6\x9a\x48\xdb\xb3\x58\x60\x69\x7f\xdd\xbb\xe9\xbb\xb7\x25\xf2\xed\x87\xcc\x9e\xe2\x39\xa7\x32\xfb\xcd\xf4\xe8\xaa\x2a\x50\x85\xe1\x53\xe2\xe2\xdd\x99\x01\x99\xcf\x5f\xc3\x18\xd5\x0c\x0f\x36\x62\xc6\x17\x4a\x27\xfa\x2d\x98\x07\x03\xb8\xb3\x50\x94\x5a\x93\x3c\x5e\x3d\x40\x5c\xec\x53\xd5\xfd\xd8\xd5\x65\x0b\xaf\xa3\x87\xa4\x99\xfa\x8a\x6d\x15\x86\xcc\x72\x3b\x5b\xca\xde\x3e\x95\x33\x36\x7f\x0e\xc0\xf1\x80\xbe\xc7\x7f\x9a\xef\x94\x90\x70\xb6\x43\xb7\xdd\x56\xae\x62\x32\x93\x24\xf8\x32\xed\x12\x1f\xbf\xbc\x4d\xe2\x35\x33\x33\x17\x0e\x38\x11\x66\xac\xbb\xa0\x4b\x8f\x59\x30\xa6\x56\xc5\xb4\x9c\xbb\xde\x43\x0d\x50\x4f\x08\x5a\x4b\x2c\x55\xc8\xf6\x3f\x2c\xc3\x90\x48\xff\x98\x99\x76\x72\x91\x1c\xab\xdb\x22\x5f\x18\x68\xa2\x2e\x29\xfb\xd1\x54\xd6\xaf\x48\xe3\x81\x73\xb6\x1f\xdc\x24\xa3\x36\x64\x8c\x51\xd2\xed\x9c\x55\xea\xf9\x22\x32\xf4\x81\xc0\xb7\xdf\x68\xc9\x77\x2a\x6e\x8d\x52\xe7\x5d\x52\xa1\x0d\x7c\xb3\xcc\x07\xe9\x03\x73\x07\xca\x04\x27\x14\x78\x6f\xf4\x2e\x84\x02\xaa\x80\xae\xfd\x1d\x23\xd9\x14\xfa\x96\xb6\x78\xe2\x02\xda\x39\x5e\x31\xa1\x94\x13\x8c\xf6\x29\x5c\x29\x49\xad\xc7\xfa\x38\x42\xc6\x57\xd3\x94\x53\xa6\x7a\xc8\x20\x30\x39\x16\x29\xc0\x31\x98\xfb\xea\xfd\x7c\x44\x1c\x52\x0e\xff\x45\x18\x52\x50\xe0\x88\x84\xec\x22\xa5\x5d\x2c\x23\x5a\x28\x74\xa7\x07\x16\x49\xcc\xe2\xf3\x5e\x6e\x2d\xe2\xd9\x08\x28\xd0\x83\xaa\x53\x85\xe7\x12\xb4\xbe\x50\xd5\xd2\xdf\xcd\x5a\x52\xd8\x2f\x5a\xe4\x90\x54\x27\x8c\xd8\x51\x9a\xab\xe4\xe3\x5b\xc2\xe0\xf7\xf3\x6a\xc5\xa6\x79\xab\xcb\xa4\xcf\xab\x8f\x2c\x2d\x51\x7b\xb3\xa5\xef\x03\xbc\x77\x4e\x00\x26\xde\x33\x2d\xf4\x14\xe0\x5e\xe8\xc5\x8c\x7f\x2c\xda\x71\x37\x0e\x92\xa3\x64\x5a\x58\xc3\x16\xe4\xe1\xa9\x7a\x35\x9f\x50\xbf\x2d\x7f\x20\x7c\x0e\x8b\x28\x98\x5e\x0c\xee\xd8\x70\xc2\xf1\x32\xd1\x9a\x42\x66\x26\x6a\x49\xcc\x81\x27\x68\x55\xb4\x70\x9a\x22\xe3\x51\x88\x56\xe7\xf6\xbb\xab\x8c\x0d\x03\xbc\xef\xc1\xdb\x74\x98\x9f\xea\xac\xdc\x34\x91\x3f\x98\x99\xdb\x3c\xe9\xa8\xe7\xf8\x62\xfd\xa4\x17\x3d\x1c\x56\x47\x89\x26\x79\x16\x36\x44\xfd\xea\x6e\x85\xe2\xce\xc7\x05\x65\xaf\xdd\xab\x2b\x0a\x60\x54\xfe\xf5\x57\xb7\xf7\x86\x0c\xaf\x24\xf9\x46\xa6\xe8\x64\xe7\xb3\x62\x27\xfb\xf4\x0a\x75\xdf\xb8\xeb\x2f\xfb\xdf\x8c\x4e\x3f\xe0\xdb\x22\x35\x0c\x5e\x29\x3a\xb4\xfe\xcb\x64\xed\xfe\x25\x31\xa6\x09\x32\x54\xb4\x4b\x6c\xfb\xdc\x15\x1e\xf2\x7b\x9d\xdf\xa0\xb1\x35\xef\x81\xe3\x61\xcf\x24\x7a\xd1\xbe\x1a\x57\x77\x95\x5c\x86\x1c\xb2\xff\xfd\xc9\xa4\xdc\xfb\x37\x02\x21\x6d\x7f\x7c\x4d\x18\xd9\x8a\x2f\xe5\xd4\xec\xab\x57\x8a\xea\xe4\x4e\x02\xea\xad\xc5\x81\x9e\xa8\xa5\xe1\x96\x15\x2c\x69\x8f\xb7\x1a\xac\xf9\x27\xf7\x2f\xef\x81\xaf\x38\xb6\x78\x74\xe0\xb7\x37\xa4\xcf\x34\xa3\x03\x95\x59\x21\x19\xaf\xd5\xce\x71\x18\x65\xa7\x24\x9d\xb6\x99\x01\x62\x16\x2e\x29\x46\xa7\x23\x54\xcc\xe8\xfc\xac\xb4\x8b\x5e\x9e\xc1\x7f\x57\x5e\x1a\x45\x8e\x3a\xfd\x3c\x2e\x4f\xdc\xeb\xad\x76\x3c\x51\x94\x0f\x2c\x1b\xfe\xe9\x42\x8a\xae\xb3\x54\x46\x36\x3a\xec\x7f\x6a\x7b\xe9\x82\xdd\x47\xc2\x98\x01\x08\x30\xee\x03\xa6\xf8\x74\xef\xe1\x76\x02\xdd\x35\x02\x9a\x3e\xc0\x11\x9a\x54\x1e\x0f\xf5\x44\x31\x25\x7a\xb9\xb8\x90\xb7\xfa\xa6\x10\xe9\x57\x06\x67\x2e\x44\xba\x43\x7e\x43\x02\x4b\x6f\x9d\x54\x3f\x49\x43\x11\xd3\xc2\xde\x85\xbd\x52\x96\x10\xa7\xf9\x16\x22\x55\x03\x04\xd1\x4d\x0a\x7a\x35\x96\xf3\xfa\x70\x41\x53\x33\x75\xad\x3b\xa1\x1c\xa8\x0f\xd7\x5a\x09\xf5\x7e\xc4\x2a\x42\xe4\x1d\x04\x9c\xf5\x96\x62\xc3\x31\x21\x46\x06\xf1\x3f\xaa\x9b\xab\xae\x21\xa4\x9b\xe6\xaa\x6f\x65\x7b\x55\x65\x17\xe9\xfe\x86\x33\x97\xf0\xe5\x33\x9c\xd0\xa6\xa2\xc8\x41\xd3\xc6\x14\xda\x86\xc0\xf1\x44\x4d\xbe\xd1\xb7\x26\xb8\x8f\x20\xe3\xbd\x7f\xcb\xbc\x43\x11\x3a\x65\x6b\x5a\x27\xeb\x72\x5c\x20\xc9\xc1\x0d\x48\x18\xb1\xf1\x6a\x54\xe6\xa9\xcc\xd1\xa5\xc9\xe9\x8e\x38\x1b\xbe\xf5\x1c\x2c\x43\xcd\xc2\xb0\x02\x25\xea\x2c\x0e\x55\xb3\xce\x70\x19\x35\x78\x77\x75\xb2\x60\x30\x3a\x29\x19\x99\xa5\x77\xc3\x54\xcd\x61\xd4\x64\x8c\x2b\xdf\xc6\xac\x77\x42\x7a\xee\xd7\x58\x59\x8c\x46\x14\xbb\xab\xe7\x6a\xd7\x77\x6b\x0e\xa5\xba\x75\xf4\xf8\x04\xfd\x04\x9a\xb6\x36\xa3\x25\xb7\x84\x32\x6a\x27\xe7\xdf\x9a\x8f\x5a\x2f\x49\xd8\xb0\xa9\xda\x13\xd1\xe8\xe9\x48\x54\x75\x39\xf2\x27\x07\x75\x5d\x49\xdf\x41\x4d\x93\x4c\x5f\x53\xb0\xb6\xcd\x13\xcd\xb4\xd9\x94\x1e\x07\x73\x12\x95\x7c\x86\xc1\xc1\x76\x4f\xca\xe4\x49\xa0\x8d\x3e\x1e\xf0\xc1\xc5\xc7\x59\x66\xf7\xb1\xeb\xf2\xe9\x83\xfc\x10\xb7\x5b\x92\xe3\x15\x90\xb1\x36\x37\x3f\xfb\xb4\x10\x4a\x96\x6e\x5f\xfb\xb4\x34\x9d\xb1\x52\xd9\xad\x7c\x76\xe6\xb7\xa2\xe5\x9f\x89\xaa\xee\x25\xbb\xa4\x87\x21\x1c\x34\xe7\x24\x8c\x04\x65\x37\x31\xa9\x0e\x8d\xac\x3e\xb6\x81\x58\x2a\x54\x2c\x76\x8c\x20\xa3\x57\x29\x84\x5f\xc1\xce\xe2\x56\x14\x2b\xbc\xfa\x75\x7a\xae\x2f\xee\x19\xca\x88\x2e\x64\x8b\xfb\x24\xde\xbf\x17\x3d\xe3\xea\xde\x95\x11\x58\x65\x3e\xfa\xb4\x94\x15\xc3\x76\x77\x26\x92\xdd\x77\x9b\x79\x40\xb9\x03\xd0\xa4\x80\xe5\x6c\xc2\xfe\x49\xc1\x71\xc3\x54\x62\xe0\x07\x2b\x89\x5a\x71\x98\xb5\xb3\xcc\xca\x17\x43\x97\x55\x21\xb8\x7a\x4d\x8d\x1a\x62\x6f\x90\x2a\xd6\xfa\x36\x10\x8f\xe0\x35\x6d\x6a\x58\x04\xe5\xa1\x7d\x12\x36\x49\xd2\x8e\xee\x31\x0e\xba\xd5\x76\xc0\x5d\x25\x97\xd5\x76\x51\xf2\x8c\xf1\x5c\x0d\xb1\x96\xa6\x1c\xf9\xbe\x9c\x1a\x34\xbf\xa4\x32\x06\x8d\x43\x1a\xb8\xb5\xa4\xeb\xfa\x22\x13\x3f\xe7\xfe\x93\xa5\x76\xa2\x45\xc6\x88\x31\x22\xee\x83\x07\xf0\x87\xf8\x5e\xbc\x44\xfb\x22\xbb\xdc\xad\x4a\x64\xc6\xec\x00\xd3\x0a\xe7\xe6\xcc\x1e\x1a\xd8\x74\xc8\x3f\xdd\xc4\x65\x38\xd8\x20\x1e\x3c\xb7\x71\xe1\x4e\xd3\x17\xfe\xe5\x86\xce\x13\x02\x52\xa3\x2c\xbb\x58\x4c\xa5\x08\xe5\x0d\x25\x20\x9e\xcb\xb9\x3a\x13\xaa\xe5\x4c\x6e\xd4\x65\x05\x57\x08\xe4\x26\xee\x4e\x7d\xd8\xee\x07\x62\x2a\x8f\xc4\x94\xe5\x35\x3b\x57\x77\xf2\xcf\xe4\x66\x0b\xc0\x79\x3d\x93\x99\xae\xd9\x3c\x0f\x3b\x18\xba\x4a\x72\x72\x03\xf7\x47\x9a\x31\x40\x74\xb7\x46\x08\x9a\x37\xc3\xcd\x2b\x1e\xed\x94\xa5\x9d\xfa\xce\xfd\x32\x58\x1a\x24\x0f\x67\x58\x5c\x1b\x3a\xa2\x0f\x37\xf0\x37\x68\xac\xfd\xfc\xb3\xd3\x24\x5f\x42\xb9\x01\xd3\x9b\x79\x36\xa7\x86\x66\xb5\x84\x64\xe3\x91\xda\xcd\xa5\x33\x56\xf4\x80\x02\x97\x95\x70\x32\x52\x88\x8c\xdc\x92\x4a\xa3\x71\x22\x77\x4a\xda\x33\x5d\x72\xd6\xd0\x87\xb9\xbc\x2a\x02\x55\x9b\x3a\x81\x72\x84\x63\x62\x92\x1f\x76\xf7\x29\x9c\x91\xf5\xbd\xd3\x14\xad\x89\x9c\xd3\x4b\x25\x8a\x27\x6b\x2b\x6c\x0b\xd1\xcd\x69\xdc\xb1\x81\xb3\xd4\xaa\x2e\x27\x72\xa3\xe3\xe1\xb1\xa4\xf9\xe9\x9f\x80\x72\x1f\xd2\x95\x7d\x62\xf5\x8b\x8d\x6f\x8e\x0f\xf5\x16\x66\xd1\xfe\xa6\x49\x11\x3b\x2a\x95\xcb\xfc\x24\xb7\xb4\xc1\xa6\x66\x6c\xaa\xac\xd8\x13\x50\x93\x27\xa0\xc7\xd1\x88\xb7\xf9\x53\xea\xc7\xe2\x05\x7f\x37\x85\xba\x3d\x56\x40\xab\x0d\xad\x68\xdc\xd0\x06\xf7\xc1\x92\x92\x80\xd6\x0f\xc0\x9e\x23\xc1\x36\xe3\x74\x50\x5f\x10\x38\x05\x73\x45\x15\xb9\xc9\x97\x88\x7f\xec\xb7\x7f\xa9\x63\xbd\xdf\x55\x5e\x45\xf0\x07\x5b\xdf\x9a\xbd\x70\x96\x74\x70\xf8\xd6\xed\x70\x4c\xbb\xb9\x74\xf5\x06\xde\x0a\x70\xb2\xa8\x02\x01\x05\x69\xc8\x3b\xdc\xa8\x21\xaa\x13\x69\xe3\xf6\xea\x0b\xe6\x52\x6b\xd7\x0f\xd0\x57\x8b\x9d\xc2\xea\x4c\x00\x7d\x44\x34\x23\xad\x05\x7e\x55\xe0\x0b\x64\x86\x3e\x96\x97\x54\xfc\x79\x3b\x04\xa4\x02\x9d\x6c\xeb\x98\x31\x65\x98\x85\xd5\x99\x35\xac\xd8\x2c\x63\xb2\xc7\x99\xa5\x6d\x71\x21\x5f\x88\x81\x2d\xe4\xc5\x51\x04\x3b\x99\xc1\xb2\x7b\x33\x92\x21\xbd\x3b\xee\xda\x84\x80\x1b\xc6\x30\x6c\x87\x72\xce\xb1\x56\x21\x14\xe3\x5b\x39\x07\xf6\xaa\x7d\x00\xe8\xc9\x16\x6a\x25\x43\x20\x3f\x89\xa1\x10\xc3\x2a\x82\xc4\x41\x77\xdf\x17\x00\x66\x3e\x43\x55\x96\x95\x33\x18\x6f\xa3\x88\xe5\x37\x74\xb3\x07\xad\xe0\x2f\x2f\x03\x74\x5a\xb4\x2a\x33\x3e\xc6\xe6\xa2\xcf\x96\xd5\xe7\x89\xec\x4d\xa0\x10\xad\xf7\x71\xf2\x95\x50\xef\x93\x32\x4e\x04\xad\xcb\xfd\x82\x63\x57\xe9\xd7\x63\xa6\x19\xb3\x48\xea\xd6\xb0\xe8\x91\x22\x88\x8f\xe1\x84\x32\x51\x30\xc7\xc4\x53\xf7\x79\xee\xeb\x01\x88\x8f\x16\x2a\x2b\xa7\x78\x37\x88\xbe\x8e\xc2\xb7\xf0\x2f\xd0\x7f\x5e\xad\x8e\x7e\xb3\xeb\x62\x64\x58\xbb\x28\x33\xf2\x17\x73\x03\x40\x9d\xac\x31\x8b\x05\x38\x3d\xf6\x92\xfb\x6b\x30\x43\x2f\xb3\xb2\xc0\xd4\xe1\xfb\x79\x09\x44\x4e\xae\x74\x93\x75\xfc\x5a\xa8\xa7\x03\xc5\x11\xbc\x63\xac\x87\x5b\x0c\x95\xf4\xb0\x68\xa8\x5d\xc7\xff\xc4\x83\x0f\x57\x72\xbc\xa5\x24\xe4\x54\x7e\x34\x41\xd8\xc2\x1b\x2a\xa4\x76\x7f\x53\xf4\xde\xf6\x4b\xd7\xf1\x54\xd6\x85\x8e\xa9\x40\x87\x6f\x40\xe0\xb9\x83\xb1\x35\x0a\x78\x36\xef\x3f\x91\x1d\x0d\x79\x31\xff\x9a\x2c\x59\xe1\x15\x4c\x62\x0f\x11\xab\x4c\x9e\x3a\xab\x93\x9b\x02\x8e\xa2\x18\x91\x2d\xc1\xc9\xf8\x42\xcc\x64\x9d\x33\x2c\x20\x80\x3a\xc1\x8f\x32\x4b\x3c\x95\x33\x30\xb5\xc7\xa2\x4a\x3e\x53\xa1\x4f\x0e\xee\x40\x4b\x49\x0c\x08\xe8\x62\xb8\xc7\x13\x92\x1a\x89\x4e\xb5\x3d\x84\x64\xc1\x4c\x0f\xe6\x9c\xc1\xa9\x88\x82\x27\x7d\x2f\xbb\x7f\xde\x6a\x6b\x75\xd5\x52\x4f\xe8\xa2\x1c\x32\x02\x84\x66\xf3\x4d\x24\x29\x63\xae\x39\x06\xea\xb9\x81\x5e\x40\xa9\x45\x95\x2e\x9c\x2f\x7c\x8f\xb5\x4e\x77\xca\x99\x2a\x42\x2d\x50\x42\x55\x1b\x23\x34\xd2\x14\xea\xe9\xaa\x91\xf0\xcb\x58\x48\x5d\xef\xa6\xca\x3f\x90\xb3\xa3\xeb\x78\xce\x40\x45\xaa\x6b\xc8\xc9\x6d\x83\x2c\x07\xcc\xf8\xb6\x84\x7a\xe0\x3f\xdb\x6a\x48\x68\x23\x13\x49\x0a\xb4\x27\xda\x5a\xff\x40\x8f\x71\xa5\x5b\x05\x9f\xfa\x89\x91\x9c\xfe\xb9\xfd\x2c\xf9\xa9\xf9\xbc\xfc\x73\xfb\x59\x41\x3f\xef\x28\x50\x20\xff\xcf\xed\x67\x2d\xbd\xee\xc5\x7f\x6e\x3f\x33\xe9\x75\x2f\xff\x73\xfb\x39\xbe\xa5\x7e\x12\xfc\xc4\x73\xf5\x1f\xda\x4f\xa7\xad\x5c\x6f\xca\x71\x53\xca\x08\x17\xd5\xb5\xb2\x1e\x62\xfa\xb6\xb6\x86\x01\xdc\xd9\x4a\xa1\x9f\x14\x68\x9f\xf9\xfb\x65\xc7\x21\xdf\xf4\xeb\x79\x6f\xd1\x35\xf6\x52\x78\x8f\x49\x1d\xef\x49\xc5\xee\x3f\xcf\x20\x85\x0c\x63\xa6\x0d\xc7\xfb\x3e\x59\x12\x68\x4c\x67\xba\x64\x2d\x55\x53\x78\x13\x79\x80\x76\x83\x3a\x74\xbf\x2e\xf0\x0f\xf3\xa1\x47\x15\xbb\xed\x1a\xd2\x4a\x41\x3b\xbe\xd0\xef\xd9\x54\x6f\xd4\xf3\x78\x0c\xf9\x8e\xc2\x38\xf5\x8c\xf0\x93\x92\xbe\x66\x18\xe7\x6f\x49\x8e\xdf\x6a\x25\x55\x52\x58\xcd\x64\x78\x94\xa9\x6f\x2c\x8e\xd2\x7e\x45\xbd\x03\x76\x72\x6e\xde\x7b\x2f\xb1\xd8\xa4\x26\xb2\xbc\x89\xe7\x4c\xc5\x73\xf6\x92\x8c\x73\x22\xbb\x98\xba\x82\x14\x2a\x99\x3a\xf3\x2b\x99\x3a\xf3\xeb\x7e\x80\xbf\x4b\x66\xac\x7c\xd7\x97\xa4\x50\x5f\xa7\xf1\xcd\xce\x97\x7a\x9d\xf1\x24\x9a\x7b\xf2\x65\x77\x6f\xa7\x4e\xc5\x53\x37\x4b\x4d\xf9\xc7\x98\x87\x57\xba\x9a\x42\x95\x4c\x61\xe9\xcb\x14\xaa\xd4\x14\x52\x9f\x53\x53\x58\xfa\x6d\x0a\x4b\xbf\x4d\xa1\xbf\x83\xd8\x45\x8a\xb9\x91\x8d\xce\x07\x9e\x0d\x04\x3a\x4f\xa8\x49\x4a\xb5\xb2\xb0\x52\x18\xb8\x1c\x52\x6c\xaa\x13\x64\x9f\x39\x78\xc0\x3e\xc5\x70\x33\x93\x1d\x18\x1e\x6a\xa3\x6e\xb8\xb5\xa6\x50\xf7\xac\x99\xcc\x21\xcd\xf7\x39\xc7\xce\x96\x8d\xf8\x83\x62\xe0\x26\x12\xc6\xad\x59\x34\x42\xca\x52\x4f\x78\x1c\xc2\xc3\x1e\x69\xb2\xda\xc4\x8c\xb4\x88\xb7\x0c\x6e\xc0\xf9\x75\x84\x78\xbf\x31\x23\xe5\x0a\xf0\x56\xea\x99\xe2\xec\x5b\x88\xe2\x0d\xa7\x29\x9a\x17\x4c\x00\xb1\x3c\xc3\xb4\xa9\x2e\x3d\xdc\x76\xd1\xac\xae\x2a\x42\xaf\x92\xa1\xa1\x6d\x38\x8b\x4c\x8d\xcc\x21\x79\x1b\x85\x7a\x6f\x59\x5d\xf5\x0e\xf1\x30\xc8\xca\xf8\xd1\xdb\x1a\x8f\x36\xfc\x28\x10\xea\x85\xa2\xcc\x15\x9c\x6a\xd7\x1c\x3a\x94\x97\x86\x40\x54\xf1\xb9\x05\xf5\xe7\xc0\x9f\xa3\x70\x48\x55\x57\xf0\xeb\x87\xc3\x69\xb3\x4e\x82\xec\x6b\x09\x00\x72\x50\x3d\x37\xab\xf4\xf0\x65\x8a\x87\xe0\xe6\x9a\x65\x92\x72\x9f\x32\xcd\xe4\xa3\x53\xc0\x24\xb5\xf3\x27\xd2\x96\x5d\xf0\xd5\x02\x0d\x32\x92\x15\xe4\x3a\xa2\x78\x46\xb5\x53\x59\x7c\x96\x88\x15\xda\xaf\x60\x48\xb0\x4c\xd0\xa3\x67\x64\xce\x0f\x22\x7e\x14\x08\xf5\x98\x1e\xe5\x22\x8e\x82\xfa\x3a\xa7\x6e\x7a\x4a\x27\x38\x66\x37\xc9\x94\x96\xd0\x72\x39\x35\xa5\x73\x3c\x0a\xbf\x4e\x29\x6d\xca\x31\xa0\xb7\xda\x07\xb3\xda\x14\xb4\xd4\x22\x25\x24\xc5\x96\x57\x38\x34\x87\x5c\xb2\x54\x88\xcf\x35\x92\x53\x5d\x40\xdb\xc5\x98\x30\xaa\x97\x29\x1e\x71\xa4\x06\x4d\xe6\xf2\x6a\x6c\x24\xff\xb7\xdb\x7f\x35\x36\xe4\x09\x68\xb9\x56\x38\x54\x6f\x48\xcd\x16\x00\x8b\x83\x1e\xbd\x8e\xf1\x68\x22\xad\xa8\xa4\x9e\x97\x57\x63\x83\xa7\x62\x44\xd6\xed\xcf\x83\x2b\x41\xef\x58\x20\xc2\xd4\x85\xe0\x8f\x60\xb3\x23\x1c\x19\xdb\x3d\x8a\x4d\x63\x2d\x45\x8d\xb6\x59\x1e\xbd\x04\xf4\x01\x44\xcf\xa2\x8b\x84\xce\x12\x21\x37\x0f\x4e\xdf\x08\x75\x54\x67\x4f\x75\x2e\x12\x1e\x55\x10\x83\x21\xca\xee\xdc\xd3\xfd\x95\x6a\x83\x75\xda\x71\x5e\x41\x3a\x8e\x83\xd8\x35\xa0\x07\x8a\x99\xfc\xb5\x24\x59\xd3\x90\xb4\x66\x11\x59\x1f\x07\x18\x32\x79\x39\xf7\xc8\xb1\xef\x79\x21\xd7\x0c\xdb\xb2\xb1\x12\x06\x6d\x72\x5c\x05\x4d\x73\x0b\x18\xe1\x7f\xcb\xae\x40\x27\xf9\xe5\x75\x9b\x30\x02\xcd\xec\xf2\x9d\xcb\x4f\x07\x45\x24\x1a\x87\xb9\x7f\x04\xb5\x41\x78\xe5\x75\xb5\x80\xfd\xa9\x3f\xc9\xff\x6b\x82\x9f\x2f\xd4\xa4\x31\xcd\x43\x32\x9f\xfd\xeb\x8d\xcc\x1a\x73\x34\xd2\x0f\xff\xe5\x46\x5a\x2b\x73\x3c\xee\x45\x65\xc1\x00\x75\xa0\xae\xd0\x4e\x16\x49\x91\xac\x9f\xc7\xc0\x26\x69\x4f\x60\xe9\x0e\x16\x94\x9f\x42\x1d\x64\x84\x99\x08\x4c\x01\x43\x6a\xaf\x0b\x78\x93\x4f\x05\x54\xca\x7d\x7b\x45\x46\x23\x91\x09\x72\x47\xd2\x87\xc2\x0a\xeb\x99\xc9\xf7\x36\x0f\x29\x84\xa9\x8f\x4f\x6d\x7c\x7c\x69\xa3\x36\xba\x6e\xe3\x94\xb3\xb8\x22\x66\xa4\x53\x8c\x8c\xaa\xb7\x01\x03\xd9\x12\x0f\x82\xee\x83\xd1\x69\xcb\x9c\x84\xd9\x8e\x4b\x5e\x57\x32\x8c\xab\xa2\xba\xbd\x2e\x62\x76\xe7\x1a\x45\x7a\xe4\x1d\xac\x57\xaa\xbc\x65\xac\x83\x3d\x62\xe3\xd8\x34\x49\xbf\x07\xec\x68\x2d\xc6\x72\x92\x1a\x42\x4b\x78\x3b\x65\x26\xca\x13\xde\xdd\x91\x4d\x99\xc4\x5b\x84\x69\x8d\xd0\x07\x03\x85\x78\xe2\xa8\x9e\x9c\x96\xc8\x4a\xca\x4b\xde\x17\xa2\x5b\x7f\xb7\x72\xbd\xde\xa8\xf9\x20\x56\x1c\xe9\x47\x36\xe3\xc1\x63\xfa\xfe\xb8\x85\x55\x0b\x5b\x79\x80\x60\xff\x9d\xc4\x29\x84\xf1\x7b\x00\x5f\x05\x3e\x7a\xec\xb3\xa3\x23\x77\xc2\x4c\xc4\x19\xa6\xcd\xc1\xe5\x8c\x01\xcb\xcc\x09\xec\x0e\x9d\xb7\x01\x47\x85\x95\xc9\xed\x28\xd8\x22\x50\x61\xe7\x11\x1e\x9f\xcc\x50\x66\x2b\x00\x33\x0e\x1e\x50\xb2\x98\x0c\xd1\xbb\xaf\xd9\xb8\x15\xea\x6e\x24\x35\xf3\x31\xac\x68\xb7\x06\x13\x2d\xfc\xf7\x1d\xed\xca\x01\xe9\xa7\x5f\x71\x1f\x06\xa7\x03\xd0\x27\xf6\x13\xd2\xed\xdc\x47\xb8\xd0\x17\xf0\xeb\x9d\x15\xdc\x44\x1d\x54\x00\xf1\x6e\x6e\x81\x4c\x47\xb9\x25\x1f\x51\x82\xfc\x2f\xbd\x88\xbd\x74\x0a\x6c\x02\x51\xf0\xa5\x21\xd7\xd6\x81\x68\xa7\x10\x8e\xa7\x12\x74\xba\x03\xc8\x24\x66\x91\x36\xe4\xbd\xc2\x06\xc8\x8f\xf5\x08\x37\x27\x50\x11\x11\xe2\xd3\x2b\x00\x4a\x48\xb3\xcd\x63\x07\x7f\x97\xfd\xc8\xe9\xc1\xa1\x3e\x56\x6a\xc3\x3c\xf5\xd4\x74\x2a\x4a\x74\x4a\x00\x53\xab\xbb\x4c\xf7\x4f\xa8\x76\x36\x84\x49\x6d\x64\x4a\xcd\x1c\x4a\x4b\xf5\x3d\xf6\x38\x56\x45\xc5\x04\x3c\x8f\x5a\x05\x8a\x3c\x56\x65\xbe\xe8\x99\x86\xbb\x4c\xc2\xad\xab\xbd\xca\xe3\x63\x47\xc9\x3e\x39\x95\x11\x5d\x17\xcc\x95\x7c\xbe\x2e\xe2\x6a\x55\x5b\xad\x8e\x6a\x99\x11\x01\xca\x72\xb5\xca\x4f\xd5\xca\xa8\xb6\x95\x13\xd2\xc7\x35\xa7\x1f\xe6\x24\xf1\x0d\x7a\x66\x35\x3f\xd5\x9a\xa6\x6a\x9d\x5c\xd6\xba\x87\xa8\xb5\xf8\x70\x06\x31\x0b\xb3\x56\xd7\x7a\xf7\x78\x42\x22\xd4\x1a\xae\x50\x69\xf9\x61\xae\x34\x0e\x6e\xee\x6d\xf0\x70\xfb\x61\x6e\xf0\x89\x3c\x3d\x5c\x5d\x63\xd1\x2b\xae\x62\xba\xc6\x88\xa3\x26\x99\x80\x03\xaf\xf8\xd2\x62\xb6\x9c\xb9\x6c\x32\xc8\x61\x0f\xf5\x45\x3f\x82\xdf\xd6\x9e\xbe\xd2\x7a\xc7\xb1\xf3\x84\x0e\x11\x18\xdc\xa5\xcd\x08\xa0\xf3\x1d\x45\xee\x58\xb6\x84\x94\x60\xe5\x35\x9b\xb1\xe1\x51\xd0\x5a\x62\x17\x8e\x10\xc9\xe2\xb4\x85\x57\x54\xe9\x1b\x2b\xcf\x9a\xb7\x29\xec\xea\x41\x16\x7c\x4b\x9f\xd3\xed\x8e\xc0\xf0\x42\xfb\x78\xfa\x48\x94\x8f\xeb\x51\xca\xff\xfa\x52\x4a\x7b\x63\x17\x90\x4d\xbc\x0b\xd7\x91\x03\xf5\x51\x87\xd2\xb4\x8c\x42\x9e\x98\xb8\x81\x93\x51\x62\xea\xce\xe4\x1e\x69\x70\x17\x0a\x2c\xd6\x9c\x27\x82\xd2\x20\x8d\xe1\x6f\xca\xd6\xf7\x00\x18\xa2\x63\x99\xcf\x4b\x6b\x37\x63\x37\x38\xbf\x80\x61\xb6\xef\xcd\x21\x7d\x6f\x39\x56\xff\xc8\xf0\x17\xd0\xe3\xbe\xe1\x5c\x42\xc6\x6f\x01\x77\x40\xd5\xcd\x27\x3d\x0e\xb0\xfd\x54\x86\x53\x41\xa8\xb2\x5a\xe0\x09\x71\x2c\x83\x17\xc7\x06\xbc\x23\x03\x46\x0b\x11\xbb\xdc\xce\xc3\x0f\x65\x9a\xa6\x0c\x3f\x79\xfc\xad\x1d\x64\x93\x47\x20\xd1\xe0\x09\x54\xc0\xda\xa5\xc0\x63\x52\x7f\x0c\x71\x7e\xfe\xda\x0e\xdb\xcc\xd4\xc6\xdd\xa2\xcc\xcb\xd7\x76\xec\xb8\x56\xee\x1a\xe4\xfb\xf5\x6b\x3b\xf6\x5b\x13\x97\x49\xfc\xdb\xcf\xdf\x9a\xb9\xf5\x0d\x7c\x65\xce\xb8\xe7\xbe\xf9\x9c\x39\x5b\x6f\x64\x11\x72\x97\x10\xbd\xdf\x7f\x68\xd0\x37\xe7\x2f\x07\x3b\xe9\xc7\x0f\x65\xcc\xf5\xfd\x62\x78\x8e\x0b\xb6\x48\xe3\xd3\x85\xa7\x4e\x72\xfa\x11\xdf\x0b\xea\xdd\x4b\x59\x0f\x36\x32\xc6\xd6\xd2\x0f\x41\x6a\xe3\x92\x09\x0d\x7c\xf0\x73\xfa\x8e\x51\xe6\x8e\x49\x6e\x20\x65\x6e\xa0\x69\x82\x4e\x14\x4a\x6d\x6d\xea\x9e\x50\x1f\xc4\x32\xf5\xaa\x0f\x8e\xd5\x3c\x44\x92\x73\xdc\x3a\xbe\x3a\x35\x2c\xae\xea\x95\xb7\x04\x72\x3c\xec\x38\x89\xcf\xa5\x67\x99\xb4\x36\x9b\xf8\xfc\x05\x4c\xe0\xfd\x34\x8b\x86\x3c\x0b\xe7\xde\x3f\xb3\x0e\xbc\xcb\xa9\xd6\x5d\xd9\xdc\xea\xcd\xdc\x63\xbc\x13\x90\x84\xe5\x9f\xd7\xe9\xff\xe2\x40\x6f\x8b\xa4\x5c\xf1\x4b\x2c\x72\xfe\xfb\x87\xda\x36\x57\xde\xe7\x3a\xbe\x85\x51\xfc\xbb\x75\x52\x43\xbd\x09\x49\xfe\xf7\xd6\x25\xc4\x82\x5c\x1e\x1c\xce\x91\xe0\xcf\x28\x64\x55\x8d\xc6\x64\x84\x73\xdd\xc4\xcf\x1b\x92\x0c\x1d\x5e\xfc\xe3\x59\xfc\xfc\x3f\xf9\x27\xf6\x06\xfb\xdf\xda\x82\xc7\x28\xc6\xff\x53\x2d\xfc\xf8\xec\xff\x4e\x0b\x71\xc1\xff\xb4\xf0\x3f\xdf\x82\x6f\x1d\x23\xff\xef\xb6\x90\xb0\x52\xff\x69\xe1\xef\xb5\xe0\xab\xfb\xd9\x49\x65\x49\x6b\x7b\x03\xf3\xdc\x74\xc1\x36\x0a\x4f\xb9\x6e\x22\x69\xcf\x21\x97\x35\x2f\xe4\xe1\xc9\xd2\xd0\x03\x79\xfa\x20\x9a\x3c\x38\x03\xb0\xd2\x3f\x21\x6f\x2c\xee\xa1\xab\xa7\x6d\xa1\xb3\x6c\x99\x8b\x55\xfb\xe8\xd7\xb1\xcc\xbe\x29\x14\xa5\x5c\x42\x54\x2b\x7c\x77\x03\x12\x12\x11\x5e\xdb\xd4\x80\x34\xe7\xe2\x4d\xd3\xa8\x61\x79\xf7\xfc\x91\x03\xfd\xf6\x38\x5a\x96\x4a\xa9\xfb\x20\x19\x44\x49\x46\x14\xe5\xe0\x2d\xfb\x9c\xf2\xc1\xd4\x5e\xd1\x33\x32\x4a\xd3\x78\x38\x2c\xe7\x9e\x03\x43\x1c\x9b\xf2\x71\xca\x80\x3b\xa8\x8c\x70\x78\xff\x54\xe0\x4f\x27\xd0\x66\x16\x15\xb3\x13\x01\xfb\x66\xce\x09\xb5\xa3\x71\x92\x8d\x9c\xd0\x1f\x57\xe6\xb7\x4b\xc9\xd4\xee\x21\x18\xcf\xa5\xcd\x18\x79\xc9\x90\xc2\x63\x40\x6b\xe9\xa7\x9f\xf6\x85\xe8\x57\x48\xc3\x5e\x25\x16\xff\x9e\xd2\xfa\x18\x81\xb7\x6d\x3b\xbd\x94\x93\xeb\xfc\xb7\x3b\xeb\xc7\x37\x14\xe2\x7e\x85\x9c\xb0\x6b\xe9\x14\x94\x10\x05\x35\xbe\xa7\x32\x93\x7b\xe2\xa9\x31\x52\xfe\xa0\x19\x6b\x5b\x88\x93\xe7\x78\xea\x66\x90\x4c\xe4\x88\x64\xbd\x26\xe6\x5b\xe5\x95\xd3\x52\x77\xf4\xfa\x2c\xf7\x65\xc6\xeb\xa2\x61\x6e\x78\x2d\x19\x37\x7a\x4b\x3e\x73\x9c\x6c\x5a\x38\xda\xf5\x4f\x14\xa1\x36\x12\x8e\xaf\xef\x28\x82\x2d\x83\x59\xb6\x6d\x53\x78\x9a\xd8\x4a\xf2\x7a\x7a\xa9\x91\x0e\xad\x14\x27\x41\xa6\x94\x80\x90\x9b\x4b\xd8\x0b\x33\x8d\x75\xf4\x6d\xba\x60\xe0\xfe\xc7\x0e\xe4\xea\x2e\xba\x4d\xfe\x5e\x92\x5f\x51\xb3\x4c\xf8\xd2\xfa\x09\x81\x7d\x76\x83\x4e\x29\x0b\xa1\x16\xa2\x2a\xcb\xe4\xdf\xd7\x5c\xd2\x7f\xfe\x85\xf3\xe4\x0e\xcc\x74\x2e\xe4\x3c\xef\x26\x1b\xb5\x89\xa2\xde\x2c\x6b\x33\xc2\xb5\x85\x9a\xe8\x33\xfb\x4a\x65\x4f\x58\x90\x39\xfc\xbb\xbc\x0d\x8e\xc5\x13\x81\x38\x35\x4b\xbc\xaf\xab\x65\xc4\x52\x98\x5e\xdf\xd4\x54\x85\xb7\xb9\xe3\x8b\x66\x1d\x81\x87\x75\xa0\xbf\x3d\x14\x3e\xae\x06\x43\x9f\x20\x03\xb2\xba\x33\x1f\x26\x7f\xf1\x56\x6d\xc9\x8e\x7a\xa6\xea\x44\xe6\xa9\x87\x3d\xd3\x3d\x04\x55\xf7\x9c\x8e\x11\x77\x51\xc1\xac\xda\x9e\x0d\x4b\x94\x9b\xcc\x4c\x97\xcf\x7e\xfb\x0d\xc7\x6b\x44\x72\x4f\x6b\xb6\x86\x7b\x10\x2d\x94\xcf\xe2\x62\x41\xf2\x51\xc4\x53\xef\x6e\x46\xa0\x0f\x6f\x89\x96\xb8\x66\xa3\x47\x2a\xfe\x8d\x3f\x6e\x38\x9e\x7f\x77\x68\x24\xd1\x55\x04\x4a\x3e\xa8\x13\xd4\x19\x65\xa9\x73\x97\x0c\xb6\x56\x06\x6a\xe3\x12\x7e\x82\xab\x54\x1e\x6c\xb3\xd7\x28\x8e\x70\xbc\xb1\x01\x9a\x36\x17\xb6\x77\x8f\x37\x82\x9f\xc7\x79\x11\x2d\x84\x5b\x15\xad\x9e\x65\x05\xa6\x0b\xbf\xbe\x55\xc0\x13\x43\x4a\xec\x6e\x05\xf1\x5d\xed\xea\x26\x9d\x14\xbb\xcf\xc0\xb9\x67\x32\x42\xf8\x75\x4f\x38\x9e\xd3\x54\xa2\xb1\x26\x59\xff\xe5\x83\x9c\xe0\x40\x31\xa3\x7e\x82\xdd\x4c\x8a\x2f\x5f\x97\xba\xc8\xac\xe2\xda\x02\xac\xcc\x52\x79\xb9\x7c\x61\x29\x56\xdc\x8a\x91\xe3\x29\xef\x21\x64\x58\x4e\x25\xd4\xcb\xbe\x69\x69\xf9\xdf\xf6\xa9\xd5\x8d\x1c\xd1\xda\xb5\x59\x3c\xef\x20\x77\x95\x18\xfe\xe6\x47\x77\x60\x95\x95\xf3\x33\x74\x3f\x66\x40\x7d\x76\x79\x7d\xff\xc6\x6f\xd5\x3a\x85\xb2\x87\x6b\xe0\x74\xd4\x3b\xc3\x2b\xcc\x2b\x2c\x92\x28\xa1\x3e\x36\x17\x76\x65\xec\x08\x75\xb3\xd2\xf8\xbb\x27\xb4\x9b\x2b\xa6\x4a\xad\x8a\xb1\xc3\xa3\xba\xe1\xeb\xac\x2d\xd4\xcd\x7b\x52\x17\xba\x70\xcf\x69\x09\x75\x03\x55\x45\x2a\xd4\xb5\x43\x78\x05\xc9\xc3\x00\x91\x94\xfa\xa9\x96\x8f\x1d\xd9\x2d\xa2\x01\x99\x42\xae\xfe\xec\x20\x57\x95\x7a\xe6\x3f\x03\xd1\x7c\x54\x8e\x56\x79\xd9\xc3\x76\x5a\x55\x6c\x40\x4c\x7c\x8f\xb5\x13\xff\x48\xaa\xa4\x8d\x30\xfe\xe1\xf4\xc5\xed\x42\x9e\xa1\xdc\xfd\x28\x22\xe9\x7a\xa0\x4d\xe3\x8f\x0d\xfe\xdb\xb3\xb6\x55\x4a\x58\xed\xbd\xd8\xe7\xbe\xbb\x90\x01\xcf\x1d\x05\xbd\x22\x77\x17\xd0\x10\x70\xef\x37\xab\x95\x14\xc4\x05\xd4\x20\xd4\xa5\x2d\x57\x6b\x21\xb2\x32\xd6\x80\x98\xbd\xdf\x78\x44\x00\xe5\x43\x5c\x22\xa0\x5a\x0a\x03\x19\x11\x33\xe0\x72\xc2\xff\xe6\x66\x13\xe3\xa7\x43\xf7\xa6\x8a\x6a\x42\xf3\xed\x6f\xed\x8a\x11\x54\x84\xb9\xb5\xe9\x69\x29\x7e\xaa\x67\xac\xcc\x25\xd5\x52\xaf\x5c\xe0\x40\x9a\x25\x88\x61\xff\xcc\x09\xe5\x8a\x4c\x40\x92\xc4\x55\xd0\x1e\xd9\x5b\x23\x47\x81\xc1\x9c\x94\x8f\xe2\x25\xe2\xf4\x01\x39\xec\x48\xce\xce\x06\x17\x5c\x36\x4c\xc5\x19\x65\x7b\x91\xd9\x47\xfa\x63\x4d\x9c\xcf\x30\xce\x01\xdd\xfc\x76\xd7\x27\xff\xfc\x41\x11\xda\x1e\x64\x41\x25\x7d\x2a\x74\xcc\xc4\x3d\x91\x09\x35\xf9\x87\x9e\xe1\x35\xbb\x87\x50\x05\xd2\x5a\xf7\x85\xaa\xa6\x90\x0a\x17\x71\xb6\xa0\x78\x73\x21\x62\x26\xa8\x33\xd8\xb6\x26\x88\x8c\x20\x4e\xb4\x31\x93\xe4\x08\x06\xb7\x64\xda\x25\x8c\x66\x8f\x70\x1b\x86\x9f\x0e\x2b\x57\x57\xf1\x9c\x22\x28\x11\x41\xfe\xa5\xce\x80\xc8\x1a\xb2\x80\xcf\x48\x73\xaf\x28\xae\xb1\xd5\x70\x06\xe2\xc8\xa1\xe6\x6c\x29\x40\x0f\x67\x84\xab\xc9\x5e\xc5\xd4\xe6\xfc\x05\xe8\x33\x71\xa3\xc3\x55\x27\x01\xa6\xcf\x00\x16\x6e\x2f\x39\xed\x4d\x4b\xb8\x02\x4e\xb3\x3e\x3d\xdb\x49\x8a\xb9\x9d\xcb\x08\xaa\x55\xb4\x86\xd0\x32\x0e\x5e\x7a\x87\xa6\x31\x8e\xa4\xa2\x70\x32\xe5\xb3\x51\xc1\x54\x73\x1f\x27\x13\x98\x93\x33\x30\xbf\xfa\x5e\x02\xdb\x46\x31\xd8\xc4\x3a\xab\x47\x53\xc7\x9b\x5b\xf7\x7d\xba\x2d\x5c\x6a\x12\xe6\xe7\xf2\x0c\xfb\xab\x44\xdc\x48\xd0\xac\x2f\x49\xdf\xd2\xc9\x01\x5c\x9d\x3b\x17\xc2\x0f\x5f\x19\x76\xca\x47\x6c\x73\x15\x3e\x1d\x75\x44\xb6\x7f\x20\xeb\x29\x58\xab\x61\xc9\x2c\xa4\x7b\x5f\x04\x45\x0a\x4a\xc4\x54\x70\x30\x69\xeb\x50\x4d\xa7\x43\xcc\x11\x3a\x6b\x2b\x93\xda\xf8\x7b\xda\xf8\x1e\xa1\x10\xb3\x05\x27\x0b\x8f\xe1\xfe\x8c\x03\xf4\x2b\x3b\x3e\x6f\x58\x93\xa6\x9d\xa0\x21\xae\x01\x73\x7b\xbb\x77\x2f\xe0\xf7\xc8\xc9\xe7\x2c\x0f\x04\x86\x97\x77\xe7\x2f\x68\x09\xcc\x6d\xb0\xcd\xc7\x2d\xb9\x45\xcf\xd0\x5f\x51\x90\x3b\x74\xbc\x35\x45\xa1\x9e\x11\x29\x5a\x08\x89\xf2\x4f\xd7\x7b\x6d\x7b\x61\x7b\x8a\x8a\x91\xec\x7d\x6c\xf5\x4d\x21\x19\xbd\xa9\x50\xbf\x25\x4b\x2d\x39\x60\x72\x8c\x52\x8b\xc1\x5a\x36\x5f\x77\x0f\xdf\x9c\x59\xd2\x5a\xeb\x22\x76\xd1\x1c\x9e\x3e\x7e\x8e\x63\x18\xe1\x6f\xe8\x55\x6e\xf1\x33\x5b\x65\x6c\xae\x2a\xa9\x0f\x7b\x85\x31\x9f\x3a\x5a\xaa\xee\x69\x4c\x5a\xe3\xac\x9e\x67\x79\x31\x7d\xe1\xdd\x39\xe4\x5b\x6f\x8e\xeb\x41\x1e\x38\x73\x59\x65\x63\x37\xa3\x22\x84\xf3\x98\xe3\x5c\xca\xdd\x2f\xa3\xd2\x16\x9f\xbe\x92\x5e\xe1\x42\x15\xa1\x6a\xdf\x0c\xb2\x04\xd3\x8e\x4b\x83\x83\xcb\x8d\x5f\x60\x94\xf5\x3a\xc6\x96\xb9\x35\x5f\x1f\xdd\xa4\x07\x42\x14\xbb\xee\x96\xe3\x51\xf8\x77\xa6\x05\x0e\x8f\x35\xa5\x3c\xb5\x68\x1c\x24\x5d\x0c\x73\xc9\x72\x4c\x6a\x35\x03\xc3\xd8\x9f\x3a\x30\x0e\xb5\xad\x78\xe6\x45\xb2\x8c\x4d\x7d\x19\x39\x5d\xe0\x2a\xa9\x27\x42\x00\x17\xed\x02\x99\xe7\x86\x1f\x8e\xd6\x07\x3e\x01\x94\xdc\x57\xa5\xe1\x7f\x47\xe6\xd2\xfa\x57\xfc\x23\xb4\xf0\x0e\xc8\x7e\x52\xa9\x24\x54\x2a\x45\x61\x02\x04\x69\x13\x01\xe8\x87\x3c\x4e\xb3\x3a\x33\x55\xf5\xe9\x82\xaf\x98\x89\xf2\x1e\xaa\xb7\x60\x02\x7a\x1c\xbd\x01\x79\x74\x0c\x79\x61\x52\x4d\x77\xaf\x3d\x97\x4e\x2c\x99\x42\xa8\x9a\x63\xad\x5a\xec\x89\xa0\x6d\x66\x52\xf6\x22\xe2\xfd\xb3\xaa\x72\x74\x07\x4a\xb7\x67\xdc\xec\x94\x7e\x77\xc0\x8c\x22\x92\x70\x22\x6d\x61\x3a\xfd\x4a\x2c\x6b\xcc\xa5\x78\x66\x82\xa9\x44\xf8\x7d\x09\xfb\x98\x52\xff\xb2\xe4\x84\x4c\xba\x20\x13\xd3\x0b\xfb\xf5\x39\x00\xb6\xa4\xbc\x4c\xdf\xd1\x4d\x1b\x3f\x81\x99\xf1\x12\x0c\x5f\x26\xb6\x2f\x1c\xfd\x45\xfb\xcd\xc2\xda\xe6\x18\x57\x92\xfc\x51\x04\x65\xb8\x70\x23\xf6\xf7\x70\x02\x31\x97\xcf\x4e\x4b\xbc\x8b\xcb\x55\xb2\xea\x12\x87\xf2\xc5\xce\x99\x1b\x75\x38\x21\xa2\xd0\xe9\x89\xce\x0d\x95\x5d\xd2\x29\xf5\x5e\xb0\x52\xed\xda\xad\xb5\x48\xa9\x87\xfa\xad\x61\xc5\x5c\x04\x42\x2e\x9b\x96\x39\xd6\x21\xfb\x52\x38\x19\x49\x3e\xa9\xc4\xd0\x65\xe0\xac\x4b\x9f\xaa\xa4\xbc\x66\xc7\x4a\xf8\x7a\x83\x44\xcd\x64\x13\x95\xdb\x01\x6e\x73\x9f\xf8\xbe\x36\x92\x56\x1b\x6e\x90\xf3\x5b\xeb\x07\x65\x0b\xe8\xa4\x80\x69\x7c\xc4\x29\xac\x75\xec\xa4\xd0\x24\xd0\xbd\x34\xf6\x30\x00\xcb\x62\x03\xf2\x89\x49\xdb\xf1\x2e\xed\x09\x11\xe4\x48\x2d\x33\x72\x02\xd1\x27\x11\x48\xbd\xbd\xa5\x02\x91\x66\x83\x94\xe9\x2c\x3f\x66\x9c\xb7\x1e\x27\xf0\xf1\x21\x51\xb6\x43\xfd\x2f\x1d\x2e\xe6\x9d\x55\x15\x39\x3d\xbb\x8f\xff\x62\x14\x8d\xae\xeb\x39\xf6\xe6\x52\xe6\xb1\x39\xdb\x85\x31\x45\xfa\x96\xe5\xf8\x2d\x71\x57\x8b\x1d\x02\xb2\x00\x63\x39\xd3\xe8\x7a\xb4\xc6\x2b\xcd\x9e\xac\x65\x6e\xa1\x44\xc4\x52\xe5\x25\xf9\x0b\xf1\x7d\xc7\x08\xad\x15\x19\xa7\x83\x36\x92\xd9\x88\x62\xad\x5c\x4e\x0c\x5e\xb7\x0d\x90\xd3\xd4\x67\xaf\xca\xf9\xde\x7a\x55\xc6\x6e\x76\x13\x55\xbd\x83\x8f\xc1\xec\x98\xf6\x95\xeb\x59\x77\x00\xa7\x2b\xc6\x6a\x43\xb1\xd4\xed\xe7\xf4\x25\x57\x44\xb2\x90\x18\x18\x8e\xb5\x10\xed\xf4\xad\xbd\xcd\x5d\x65\x4d\x37\x5b\xa1\xce\x5b\x81\xc3\x9f\x01\x61\xc7\x0f\xa7\xf0\xc9\x89\x64\x2e\x64\xaf\x45\xe1\x24\xae\xa2\x1d\x8f\xb5\x55\xa6\x46\x9e\x9b\x29\xa5\x9b\x29\x87\x0c\x9e\x0f\x9c\x99\x02\x3c\x28\xd7\x0c\xe7\x51\x02\x7e\x75\xa7\x4c\x1c\x82\xaa\x06\xab\x48\xd9\xa3\xab\x9f\x8f\x79\x97\xd2\x70\x02\x6a\x2b\x23\x21\x63\x32\x64\x1e\x1c\x38\x6e\xac\x6a\x8c\x29\x48\x05\xbe\x03\xbd\x2a\xe7\x21\x35\xdb\x81\x51\xae\xab\x7e\x7a\xa3\x17\xa8\x11\xc0\x79\x90\x76\xb2\xb9\xbb\x30\xd6\x30\x3c\x53\xfc\xfa\x98\x11\xda\x9a\x36\x63\x73\xcf\x09\xd4\xa9\x71\x70\xb3\xe4\x57\xfb\x84\xd8\x8c\x5a\x86\x4f\x9c\xb9\x07\x54\x1c\x8f\xf4\xa2\x62\xcf\x83\xc7\xab\x3f\xad\x8f\xc0\xc3\x95\x90\x47\x67\x39\x50\x19\x4d\xc9\xae\x8a\xfa\xc3\xe9\x89\x39\x29\x82\x66\xac\x49\xba\x30\xb9\xfd\xaf\x9c\x0a\x20\x9a\xed\x65\x1e\x6d\xb5\x8f\x07\x17\x3e\x9c\x0b\xf2\x53\x2f\x7d\x72\x00\x8a\xdd\x64\xd8\x01\x68\x2e\xcb\x5c\xf1\x7c\xe4\xc3\xb0\x24\x3d\xda\xfc\xfa\x30\x24\x15\x27\xa8\xb8\x90\x75\xfb\xc5\x8b\x0b\x7f\xd8\x3d\xa9\xbd\x28\xef\x7d\xca\x21\x36\xae\x18\xba\x70\x44\x1b\x6d\x58\x8c\x3c\x1e\x81\x5f\x23\x8f\x01\x6e\x81\x09\x06\xd3\x5e\xe4\x09\x50\xaf\x2e\x6b\xb4\x17\x72\x9f\x1c\x84\xe2\x16\x4f\xee\x8a\x14\x8b\xb1\x03\xcf\xf5\xe1\xb2\xa0\x85\xdd\x94\xc4\x34\x12\x3a\xdf\x38\x42\x5b\x00\xdf\xd0\xe1\xf1\x16\x77\xd9\x81\x3c\x44\x86\x1c\xa2\xbc\xa4\xf4\xbd\x13\x15\x51\xdf\xba\x25\xba\x31\xe0\x43\x7e\x92\x15\x8e\x88\xf5\x49\xe1\x62\xf6\xcc\x41\xee\x1a\xec\xbe\xa6\x85\x7a\xdb\xbb\xf8\x5c\x20\xd4\xcb\x0e\x7b\x05\x29\xcc\xaf\xe2\x11\xd7\x01\x24\xdf\x00\x85\x3d\xa1\x5f\x8a\xb7\x29\x6f\x87\xfa\x21\x3e\xd1\xfa\xa1\x76\x71\xd3\x8e\x10\xa0\x1d\x98\x12\xeb\xae\x76\xbe\x85\x8e\xf4\x12\xa4\x4a\x4e\x3e\x62\x97\x09\xf5\x50\xda\xc8\x54\x2f\x27\x63\x1b\x91\xea\x09\xf5\x70\x24\xe7\x5b\x1d\x94\x9e\xfe\x9c\x61\xb1\xac\x0a\x14\x07\xad\xf8\xe4\xf9\xbf\x71\x31\xa1\x97\xe6\x62\x58\x99\x2a\x9a\xd7\xac\xcc\x5a\x51\xe4\x6a\xa8\x04\xbc\x18\x7b\x55\x6c\x0e\xca\x28\xf7\x99\x99\x5d\x5b\xdf\x7e\x4e\xaf\x92\x52\x83\x91\xe3\xaf\xda\xc8\xa3\x72\x9a\xce\xd6\x55\x1b\xf7\xce\x99\x2b\x33\x9e\x4d\x48\xba\xb8\x35\x6d\x94\xaa\xb4\xaa\xb8\x2d\xe2\x47\x33\x35\x02\x16\x7a\x33\x5d\xaa\xca\x0d\xab\x02\xae\x5f\x4e\xbe\x7b\x6e\xfe\xcf\xb3\x03\x6b\xc1\x15\x99\x1b\xe4\x1a\xeb\x14\x3e\x80\x45\x0f\xee\x9c\x72\x0e\x15\x89\x5b\x21\x79\x7f\x2d\x4b\x1d\x26\x84\x2d\xc6\xd4\x00\x81\xea\x46\x94\xf5\xbe\xb5\xe8\x80\x33\x2b\x12\x0e\xcb\x8c\x49\x2a\x91\x4b\xe2\x61\xe0\xe3\xb2\x28\xba\x71\x1c\x4b\xa4\xdc\xb8\x8a\x85\x84\x9f\x51\x68\x0d\x54\xdb\x73\x28\x5a\xba\xd5\x76\x22\x5d\xd7\xc8\x4b\xbb\x4b\x53\x32\xc4\x32\xcf\x2a\x09\x0c\x58\x77\x4e\x94\x40\x55\x35\x0c\x44\xf7\x16\x07\xda\x76\xe6\x0e\x0c\x57\x60\xa9\x38\xb2\xf0\x97\x1f\x9d\x81\x33\xd6\xea\xe2\xbf\x4e\x3b\x14\xb3\x45\xea\xf4\x8f\xec\x33\x94\x80\xff\xb8\x98\xad\xb9\x54\xcf\xb7\x0b\xf2\xd0\x22\x25\x89\xfa\xe0\x8b\x5f\x21\xfe\x86\xfd\x6a\x8d\x30\x54\x92\x8d\x9a\xb9\x37\x2f\xf2\x86\x13\x04\x9b\xa1\x5d\xe4\xec\x36\x46\x9b\x79\x28\x72\x0c\x56\x80\x03\x89\xe3\x8e\x5f\x2f\xb3\x1a\x18\xb8\x05\xa1\xd7\xb7\x0c\x1f\xca\xfe\x86\xbe\xf0\x23\x19\xe2\xbc\x1a\x3e\xf0\x63\x9e\x8a\x51\xca\xf8\xe4\xc6\x44\xea\x34\x35\x93\x9b\x9c\x8a\x19\xdf\xfb\xe5\x86\x69\x5f\x4b\xa8\x0f\xd6\x26\xf5\x08\xab\xc1\xec\x7c\x4d\x60\xd0\x3e\x05\x77\xba\x86\xa0\x39\x63\xa5\x1a\x17\xe9\x9c\xef\x85\x0f\x00\x9c\x19\x64\x9d\x0b\x0b\x6f\x05\xd0\xeb\x5e\xf1\x8d\xd2\x15\x2a\xa7\x2f\x5c\x24\xf0\x7b\xa3\x7b\x6c\xcf\x4e\xb0\x24\xa1\x48\x82\x41\x13\xdd\x6c\x2f\x39\xa5\x63\x92\xfb\xbb\x27\x02\x4e\x69\x51\x96\xb1\x7b\x9f\x80\x68\xda\x2b\x9a\x85\xc7\x12\x3e\xd1\x41\x11\x7e\x2c\x82\x65\x00\xff\x43\x94\x2d\x91\xa7\xa8\x7a\x2b\xbd\x5d\x95\x2d\x31\xc6\x57\x99\x5e\xeb\x83\x3c\x12\x26\x29\x65\xfe\xd3\x0f\x8e\x2f\x9a\x3d\x2b\x65\x10\x26\xfb\x86\xc3\xbe\x8c\x84\xb9\x7d\xc5\xf4\x78\x74\x63\x0f\xcd\x71\xa3\x58\x1a\xf5\xbc\x5c\x49\xcb\x75\x1b\x1e\x60\xc4\x31\xd8\x6a\x22\x4f\x39\x43\x80\x5e\xb6\x8c\x06\x52\xe4\x4c\x7a\x47\x92\x46\xfb\x8c\x95\x46\xa1\xcb\xaf\x71\x58\xf3\x8d\x4a\xbe\x13\x95\x78\xad\x3c\xa1\x1e\xb7\x75\x99\xf4\xa6\x36\x60\x1b\x29\xc5\x71\xf5\x59\x09\xfa\xa6\xac\x43\x92\xd9\xa1\x1c\xe8\xe5\xed\x52\x92\xc0\x5e\x6e\x96\x36\x9f\x5f\xfc\xc5\x72\x41\xc5\xac\xfc\x6d\xf2\x18\x60\xc5\xd4\x1b\x4a\xf7\xa4\x5e\x58\x62\x23\xd0\xe7\x92\xc2\x84\x97\x8b\x2a\x29\xf7\x9a\x14\x3b\xc2\xe3\x33\x38\x11\x5f\xa1\x67\x72\x98\x14\x23\x2d\x7a\xb3\x83\x49\xca\x14\x93\x82\x46\xaa\xed\x38\x01\xe5\x97\x32\x5b\x6f\x3d\x36\xfb\xcb\x1d\xad\x08\x99\x0c\x8e\x79\x41\x16\xe3\x81\x36\x75\x2a\x2f\x63\x6d\x78\x03\x42\x99\x7e\xe6\x14\x6d\xa6\x5c\xc4\xd9\x45\x6f\xe6\x63\xfd\xdf\x3a\xa5\x4d\x51\x91\x61\x4a\x89\xb4\x96\xbb\x3e\x98\xcb\x3e\x25\x67\xca\xf3\xa1\x3f\xe0\xe9\xbe\x0f\xd8\x71\x70\x34\x27\x3c\x3c\x52\xae\xa8\x95\xdc\xbd\x42\x52\x99\xbf\x42\x3f\xd5\x13\x1e\x41\xb3\x37\x98\xed\xa3\xe4\xc2\x62\x73\x88\x2f\x3f\xd5\xe0\x84\x88\xcd\xe4\xc6\x6c\x66\xc3\xab\x0b\x18\x29\xcf\xd5\x4a\x85\x5c\x74\xce\x36\x11\x5b\x2e\x13\x5a\xb0\x1e\x56\xcc\x89\x60\x01\xdb\x5d\x11\x69\x3b\xce\x7d\xce\x50\x9c\xcf\x5a\x44\x65\x43\xe0\x19\xd1\xd1\x8f\x76\x4c\xbf\x02\x76\x6a\xec\x84\x48\x93\x4c\x4c\xb1\x82\xbe\x7f\x3f\x66\x77\xf3\x03\xfe\x08\xcc\x3a\x74\x4d\xb7\x66\x59\xc0\xe9\xed\xb3\x50\xc3\x17\x33\x40\x40\x5b\x49\xa7\x27\xf4\x4c\x31\x5e\xfb\x5c\x9e\x93\x59\x21\x53\xc7\xbf\x79\x56\x72\x80\x0f\x29\xfe\xad\x39\xa9\xeb\xdf\xe6\x24\x13\x51\x44\xe1\x4a\xd5\x91\xaf\xe3\xc7\x39\xc9\xd8\x8c\x63\xe3\x7e\x3c\x27\xd5\x7f\xc0\x9c\xd0\x99\x18\x84\xd1\xdf\x99\x92\xea\xaf\x53\xb2\x1c\x6b\x3a\x1b\x2a\xfa\x75\x9b\x6c\x52\x19\x9b\x2b\x0b\xf7\xda\x73\xf7\xe1\xda\xaf\x77\x3c\x60\x4f\xde\x07\x27\xf6\xaa\x8f\x70\x35\x30\x7f\x5d\x18\x60\x76\xab\x04\x26\xad\x0e\xda\x89\x51\x5f\x6b\x07\x3a\xeb\x73\x59\xfe\xb6\xc6\x25\xe3\x5a\x77\x64\xa1\x33\xb3\x84\xa9\xca\xea\xce\x75\x2f\x5a\xd7\x7d\xb4\x21\x01\x64\x22\x7f\xdf\x90\xd1\xd4\xf0\x57\x2a\x22\xb2\xa5\x22\x46\x5e\xfa\x32\x41\x6b\xc6\x2d\x53\xab\xf9\xef\x13\x74\x1e\x6b\x96\xa0\x9f\xed\x9e\xd1\xa4\x54\x76\xb1\x67\xea\xd9\xff\xa7\x9b\xc5\x90\xfb\xda\x2b\x24\xc0\xc3\xd5\x99\x29\x65\x59\x41\x53\xaf\x7f\xbf\x43\x4e\xbf\x12\x92\xc5\x58\x3b\x43\xea\xc8\x5f\xec\x10\x73\x68\x46\x36\x37\x97\x9a\xc8\x02\x1d\xe0\xd1\x4b\x3c\x1b\x87\xff\xd9\xd9\xc8\xd0\x6c\xf4\x4e\x57\x93\x51\xe1\xce\x67\x7f\x9a\x8b\x5f\x4f\x8b\xb9\x21\x03\xda\x0c\x7f\x31\x17\x85\xb1\x75\x76\x8f\x89\x2a\xd0\xda\xfe\xe7\x86\x3f\x1e\x80\x19\xbe\x1a\x7e\x0d\xdf\x1d\x4e\x32\xdf\x0f\xbf\xfc\xeb\xf0\xb7\x76\x2b\x6c\x7e\x1e\x7e\x5f\xf8\x70\xd0\xe8\x94\x50\x6b\x54\x87\xc6\x8f\x53\xe7\x07\x67\xc0\xd2\x15\x1b\x71\x08\x97\xf2\xe7\xe4\x8e\xe1\x0a\x8e\xb0\x19\x64\x29\x99\x33\xe7\x00\xa8\x12\x62\x71\x93\xa4\xe0\x1b\xdf\x70\xa4\xbe\x50\xa2\x8c\xa2\x1d\xae\xd2\x8b\x8e\x04\xab\xb4\x92\xfb\x10\xc1\xba\xb1\xc2\x5b\xbf\x84\x1b\x36\xda\x93\xde\x1f\x3a\x27\xe0\xed\xb7\xeb\x19\x96\x88\xe7\xc0\xe1\x6b\x22\x53\x74\xf5\xb6\xaa\x9d\x92\x32\xf2\xb3\x19\xca\x12\xfa\x8b\x3e\xd2\xdb\x82\xad\x0e\xf2\x35\x8a\xe9\x57\xf7\x97\x97\xb4\xac\x59\x23\xc0\x00\x8f\x79\x96\x1d\xb1\xad\xfa\x36\x0b\x65\x49\x50\xf1\xe8\x56\x3b\xc3\x08\x3e\xe7\x20\xe8\x0d\x1b\xd2\x08\x37\xe0\xd6\x08\xfc\xe0\x6b\x7b\xc2\x7b\xcf\xde\x51\x03\xf9\xc2\x55\x03\x60\xef\x48\xc1\x51\x78\x89\x63\x3c\xee\x97\x63\xf0\x58\x7b\xca\x12\xa0\x1e\xa3\x8c\xfb\xe3\x67\x0f\xc9\x67\x97\x5f\x3f\x7b\x6a\xd2\x67\x67\xa5\x3f\xea\x77\xe6\xba\x81\x9c\x14\xde\x7b\xed\x8d\x5a\x38\x5c\x77\xe1\xff\x79\xc7\x33\xf8\xec\xe9\x97\x06\x52\x1d\xaf\x5d\x37\x30\x12\xde\xfb\x98\x2c\xa6\xdd\x0b\x37\x30\xbe\x31\x27\x85\x5d\x41\x80\x7e\x48\x18\x83\x0a\xc8\xb9\xfe\x07\xee\xd1\x0c\x69\x55\x1f\xdd\x14\x60\x1f\x53\x80\x15\xd0\xe7\xb8\x88\x57\x97\x59\x64\x66\x8f\x67\xc4\xde\xac\x13\xb5\xec\x58\xef\x1b\x75\x7b\xe8\xb1\xea\xd5\x13\xea\x76\x7d\x66\xe0\x2e\x73\xdf\x91\x3e\x5b\xbd\x66\x73\x49\x60\x6b\x47\xe8\xc7\xe2\x5e\xfd\xdd\x66\xf7\x36\xb7\x9f\x69\x76\xbb\x00\x88\x17\x2b\x1e\x83\xf9\x4e\x39\x5d\xa1\x1f\xab\x7f\xbf\xdd\x1a\xa9\x8a\x3c\xdf\x69\x5b\xbc\x90\xf6\x05\x99\x17\xce\x14\x93\x96\x55\x33\xb2\x22\xb5\x4a\xe4\x77\xd1\xdd\x6a\x24\x83\x03\xe5\xe8\x22\x5f\x12\x3f\x5d\xc9\x15\x54\xbd\x61\xfc\x34\x10\xfa\xd1\x88\x75\x2d\x73\x54\x67\x8d\x0f\x23\x3e\x1f\x35\xcb\xc8\x00\x40\xe8\x46\xc0\xdc\x2c\x01\xab\xfd\x3c\x64\x11\xb9\x2d\xdc\xbe\x69\xe6\x51\x60\x3b\xe0\x28\x9f\x6a\xac\xf1\x5c\x90\x89\x5f\xb9\x89\x07\xdb\x1a\xb0\x11\xfe\x65\x08\x1c\xc8\xa2\xde\x49\x67\xde\x20\xce\x82\xa0\xe9\x69\xb7\x0c\x52\x91\x7d\x70\x6a\x21\x4d\xa8\xa7\xab\x53\x9d\xb6\xfb\x4e\xc9\x01\x68\x04\x51\xf7\x2a\x67\x7f\x9d\x5c\x28\xdf\xe0\x5d\xb7\x96\x0b\x50\x56\xd2\xd7\x8d\x66\x92\xac\xc1\x3b\x84\xd2\xfb\x75\x72\x03\x78\xef\xa0\xcc\x10\x1a\xcc\xa1\xe1\xf3\x7d\xf1\x1e\xca\x25\x1e\xdb\x8c\xb8\x21\x3d\x7f\x2e\xab\x47\xe2\x9c\x44\xea\x5f\x52\xef\x15\xb2\xec\xc2\xe5\x5b\x24\x10\xfa\x33\xc8\x5e\xf5\xbc\x82\x9e\xfb\x87\x9f\x7a\xae\x43\x8f\x3a\x59\xdb\xa9\xb8\x93\xa6\xf9\xc7\x4f\xdf\xf3\x0b\x18\x99\x17\x65\x39\x6b\x1d\xff\x5e\xf1\x6f\x02\xf9\x55\x35\x1a\xa3\x7a\x74\x9a\xe2\xae\xbd\x26\x83\xe6\x40\x6c\x4e\xb4\xf3\x1f\x77\xfb\x14\x66\xe9\x99\xea\xdd\x11\xbe\x7b\x8b\x3c\xf1\x3a\x48\xbe\xf2\xff\x03\xe9\xbb\xa4\xe0\xf1\xe1\x57\x48\xfc\x5e\x10\xb0\x6f\xa4\x18\x2f\x54\xff\xcc\x27\x33\x67\x9d\x37\x53\x53\x56\x67\x19\xd1\xbe\x2e\xa9\x8d\xac\xc0\x89\xa5\xbd\x3b\x99\x85\x5d\x2a\xb3\x9e\x91\x22\x8b\xa6\x78\xad\x85\xb4\x06\x5b\x1c\x8b\x6e\x89\xd3\xe6\x86\x86\x30\xaa\x9d\x6b\x59\xa9\xca\x44\x73\x9a\x65\x4a\xe4\xb2\xa9\xa4\xa4\xfc\x45\x29\xa5\x52\xd1\xb1\x92\x6c\x26\xab\x5c\x79\x81\x15\x40\xe6\xaf\x1a\xe1\xa8\x32\x4c\x38\xf0\x2c\xdb\xd5\x1e\x98\x8d\x2e\x91\x1b\xb2\xa7\x4c\xac\x0b\x33\x99\x5e\x50\x2e\x40\x6a\x77\xce\xdd\x8d\xbc\xbf\x1c\x1e\x86\xf4\x74\x9a\x9b\x45\x42\x86\xce\x79\x62\x55\xdd\x9f\x37\x70\xc6\xb0\xa8\x1d\x52\x33\x3f\x36\xb3\xf4\xcc\xdf\x9c\xc8\x41\xb6\x63\x5a\x78\x47\x2a\x5d\xd1\x0c\xa7\xa4\xe4\x65\x70\x84\x93\x5c\xac\x13\xc4\x0e\x54\xe1\xa4\xd5\xfe\x49\xae\x4f\xdf\xbe\xa3\x1d\xcf\xcd\x5d\xa8\x9b\x37\x65\x99\x03\x14\xad\x7f\x40\x4e\x90\xe6\x76\x92\x14\x68\x89\xe6\x4b\xee\xa8\xac\xe2\x0c\xfa\x5b\xbf\xbc\x02\xe1\xbe\xdc\xd8\x8c\xdf\xea\xf9\xcc\x90\x2d\xec\x5c\xa7\x67\xe4\xd9\xa4\x5f\xf2\xc8\x5a\x56\x0a\x5d\xb8\xba\xd2\xd0\x09\x4c\x98\x13\x7d\x90\x05\x74\xb8\x23\x58\x81\xe0\x08\x00\xe3\xe6\x09\x56\xbd\xe0\xd8\x45\x86\x12\xbc\x3d\x93\xfb\x7a\xff\x82\x5f\x39\xbc\xc3\xea\x23\x3a\xb3\x57\x07\xab\x78\x7c\x32\x77\x47\xd5\xab\x73\x12\xcc\xcc\x44\xb3\x13\xad\x69\x60\x08\xc8\x5f\x25\xd4\x45\x6d\x90\xe9\xb7\xbd\x60\xdf\xad\x5c\x9f\x84\xdc\x33\x22\xba\x17\x32\x9f\x74\xa4\x03\xa7\x4d\x3d\xd1\x75\x86\x6f\x9f\x82\x48\x75\xd0\xa8\x19\x4c\xd1\x16\x07\x96\x70\x88\xb5\x7a\x9d\xd0\x39\x24\x55\xa3\x26\xb7\x32\x57\xd8\xae\xd5\x90\xe8\xb4\x4b\x57\xd7\x33\x94\x98\x73\x79\x24\x55\x41\x24\x93\x9b\x20\xbc\x48\x58\xf9\x32\x5a\x78\x27\x39\x39\x30\x74\xc9\x84\x7c\xc8\x19\xeb\x87\x2b\x8a\xf6\x8a\x3e\xd8\x01\xee\xcc\xfa\xdd\xb0\x44\x82\x7c\x94\x48\x63\xd5\x25\x67\x90\x96\x10\x4f\x27\x80\x3a\xe4\x68\xd6\x9f\x88\x6b\x85\x49\x07\x07\xbc\x79\x3c\x51\x4c\xbb\x3f\xd1\xab\xa9\xbe\xfa\x20\x0d\x49\x23\xdf\x5b\x7e\x7e\xe5\x81\x15\xdd\xc4\x25\xe9\x06\x4d\x06\x51\x3f\xf3\x20\xe6\xae\xd9\xa5\x76\x10\xe3\x05\xe6\xe0\x88\x88\xe4\x77\x0c\x25\x0f\xa8\x98\x33\x79\x77\x1e\xdc\xcb\x98\x3b\x10\xba\x09\xba\xcd\x87\x5d\x8a\x0c\x61\x66\x2b\x11\x91\xf8\x0b\x23\x49\x73\xf1\x6c\xa6\x7f\xe7\x19\x3a\xee\x8e\x76\x24\xbd\xec\xbd\xb1\x6a\xc5\x74\x84\x5e\xe7\x95\x19\x9c\x05\xe3\x28\xcb\x4c\x24\x7f\xa7\x28\x4d\xa1\x9f\x89\x70\x6f\x5e\x99\xcb\x4a\x69\xaf\x2e\xff\x00\x4d\xcd\xbf\x4f\x7b\xb5\x51\x89\x82\x26\xa5\xe8\x2c\xfe\x03\x26\xe5\xdf\xa9\xe8\x4c\xe9\x27\x52\x4a\xbd\xd3\x3f\x60\x56\xfe\x3d\x4a\xbd\x81\xc8\xf9\xe4\x88\x7b\xd0\x02\x43\xb1\x1e\x5b\x63\x7c\x7b\x11\xfb\x2e\x2b\x73\xf7\x17\xc7\xda\x3a\x6d\xf9\x94\x3e\xb4\x59\x18\xb3\xa7\x42\x41\x3a\x47\x69\x68\x65\x51\xc6\x0f\xf6\xd2\x42\xe1\xfb\xa7\x41\xea\x44\x8c\xd8\x3b\x65\x2e\x37\x14\xcf\xa4\x67\x8d\x71\x45\xa5\xab\xe9\xaa\xbc\x00\x52\xa8\x4f\x08\x02\xae\x15\x1b\x75\x28\x33\x7b\x37\x2e\xba\xc5\x17\x9a\x86\xbe\x16\xaf\x68\x6f\xd7\x77\x7c\xe1\x97\x65\x59\xa6\xc9\x58\x17\x10\x06\xa7\x4c\x0c\xb1\xa8\x6e\x33\x15\x26\x2d\x4a\xa8\xfb\xc9\x8e\xad\xfa\x7d\xa1\x5f\xa6\xbb\x24\x2b\xc5\xdd\x2c\x79\xe3\x7d\x54\x1e\x6d\x20\x85\x6a\x54\x72\x29\xbd\x68\xde\xfe\xe8\x0a\xf5\x30\xaf\x7e\x35\x70\xf6\xc8\x95\x2c\xfe\xf8\xaa\x6a\x21\x72\x7f\x29\xaf\x93\x8f\x6d\xaa\x29\x74\xdd\x9f\xca\x7b\x49\x79\xf6\x74\x69\x09\xf5\x74\xf8\xab\xaa\x7d\xe1\xbd\x97\x2b\x09\x96\x63\x63\x91\x1e\x59\xcd\x4b\xdb\x62\x99\x7d\xd6\xaf\x77\xc9\x58\xfc\x2f\x05\xba\x89\x33\x0e\xca\xc6\x4d\x7f\x6d\x2c\x55\x16\x7f\x92\xe5\xa7\x63\x56\x3c\x55\x4f\xff\x61\xbd\x9e\xf0\x23\x49\xdc\xd7\xce\x2f\x49\xc7\x37\x52\x5b\xbe\x71\x50\x4e\xcd\x15\x7b\x3d\x22\x6b\xe4\x45\x91\xa4\xb0\x97\xe6\x44\x24\xd9\x5e\x90\x81\xaa\x07\x4f\xa9\x80\x2c\x89\x6a\x26\xb7\xf0\x70\x18\x94\x33\x69\x3f\x5f\x15\x49\xc0\x87\x0e\x94\x33\x14\xed\xb7\x10\xbe\x8b\x07\x0e\x6f\xc8\xdc\x38\x1d\x96\x33\x4e\x92\xfd\xa5\xa8\xfa\x91\xf6\xdf\x47\xe9\xc6\x89\xf1\xf5\x43\x75\xa0\x7d\x58\x83\xd9\xaa\xef\x26\xa9\x00\x72\x0c\x6b\x44\x77\x2d\x58\x02\x8a\x13\xeb\x9d\xe4\x01\x3e\x23\x69\xd9\x6a\x0f\x27\xe5\x01\x39\x6a\xc8\xb6\x87\xc0\xad\x46\xdc\x68\x40\x98\xd7\xb7\xc4\x7e\x3d\x13\xd8\x1a\x1c\xfd\x29\x3d\x4c\x93\xbc\x3f\x4d\xdf\x6e\x8c\xf0\xfe\x5a\xbe\x81\x2f\xb1\x12\x42\x15\x6e\x58\xff\x45\x89\xce\xe0\xcb\x7a\x02\x45\xb0\x7a\x81\x3a\x85\xf5\x0e\x0a\x5e\x7c\xa2\xaa\x6e\x11\x22\xd6\x11\x01\x34\xf7\xbb\x9c\x0b\x21\x7a\xe5\xde\x39\x19\x57\x68\xe4\x2e\x3d\xd6\xcd\x94\xb5\xc9\x2f\xed\xa1\x7f\xe1\x66\x73\x37\x44\xaa\x8a\x37\x10\xf3\xf5\x04\x86\xc8\xca\x98\x03\x11\xca\x23\xc7\x13\xed\x72\xca\x7e\x57\xaf\x31\x64\xdf\xdc\x15\x62\xe9\xd6\xe8\xa7\xde\xb8\xc5\x90\x5d\xcf\x62\x22\xee\x23\x93\x94\xa5\xe1\x71\xb8\xa0\x77\x51\x95\x25\x03\xe1\xf4\x84\x18\x64\x67\x31\x17\x0a\x62\x4e\x22\x85\x17\x31\x39\xc8\x18\xfa\xa8\x0a\x9c\xc2\x90\x6a\xc4\x7d\x38\x4b\x11\xc9\x95\x76\x16\xca\xf4\x9e\xb3\xb4\x66\x48\x05\x3e\xa2\x91\xbe\x23\x89\x4c\x6f\xc6\x51\x14\x70\x9f\x21\x26\xb7\x7b\x7e\x4e\x30\x31\xe1\xad\x7c\xea\xff\xd5\x10\xac\x5e\xed\x02\x89\x31\xc3\x12\x61\xf1\xc3\x76\xdc\x63\x0d\x7c\x1c\x8f\x4b\x99\x8f\xc7\x30\xab\xaf\x38\x8a\xb6\xc5\x7e\x26\x23\xd2\x66\x90\xce\x02\x0d\xb5\xeb\x84\x8b\xa8\xb2\x6a\x4f\x5d\x69\x1d\xe8\x16\xe5\x06\x44\xab\x4e\x22\xa4\xcd\x82\xba\xef\x9b\x79\x6a\x45\xc8\x5e\x4b\x38\x16\x41\xe0\xf4\xd4\x07\x04\xf4\xed\xde\xa2\x9e\xfe\x6f\x0d\xff\x53\x2f\x48\x12\x57\x41\xdc\xc1\x30\x3f\xb5\xaa\x86\xf8\xab\x39\x12\x75\x42\xb9\x22\x0f\xa1\xf6\xb2\x93\x12\xad\x9b\xb3\x2c\x7f\x99\x7c\x36\x35\xa7\xf6\xcb\x14\xd8\x35\x08\x5a\xe9\xf6\xde\x77\x92\x84\x1c\x11\x69\x1a\xff\x45\xa7\x44\x65\xd8\xa8\x5a\x91\x93\x8d\x7a\x42\xdf\x21\x93\x5b\xa7\xc8\x4e\x7f\xdb\x22\x72\x7b\xee\xc6\xb1\x37\xa7\xf0\x57\x63\x3a\x1a\xc4\xe9\x4f\x25\xc9\xdb\x1f\xfe\x98\x73\xd5\x4c\xb6\x44\xe9\x7a\xf6\xf7\x85\x12\xf3\xa8\x8b\xb2\x7b\x09\xfb\x67\x81\xfc\xf0\xed\xcb\x8b\x63\xf3\x39\x76\x37\xb7\xec\x2c\x3a\x64\x4d\x9c\x2f\xf6\x73\x1d\xb7\x62\xf7\x53\x93\xa8\x5b\x13\xfb\x49\x0b\x75\x50\x19\x7e\xbb\xab\xc1\x29\xff\x7c\x3d\x61\xbc\x29\x83\xf4\xa6\x34\xbf\x0b\x1c\x54\xc1\x1e\x33\x71\xf5\x74\xb9\x96\x68\xae\xe4\x96\x74\x9f\x79\xf9\x44\xe7\x56\x2a\x01\xca\x52\xa5\xe0\x17\xef\x16\x6b\x07\xdd\x11\xbb\xb4\x35\x85\x4b\x69\xbc\xee\x0c\x87\xa2\x4a\x0d\x16\xfa\x6d\xfa\x69\xbf\x36\xc3\xd2\x9a\xa1\x12\x56\xd3\x23\xd1\x8e\x2c\xc5\x16\xe9\x21\xbc\xed\x17\x37\xf0\x35\x0b\x89\xcc\xfa\x73\x23\xd5\xb7\x36\x6a\x47\xca\x4b\x4e\xf0\xb2\xb8\x81\x4b\x50\x24\x11\x40\x3b\xa7\x8b\xec\xff\x2e\x2d\x11\x1f\x75\x69\x56\x69\xac\xcc\x2a\xad\x6f\x45\x1f\x0a\xd9\x35\xbc\xa4\x82\xec\x4c\x03\x84\x90\x90\xdf\xa0\x2f\x09\xaa\x4b\xf5\x2f\x06\xa3\xa8\xbc\xde\x72\xcb\xbb\xd9\xbf\xe6\x74\xaf\x45\xbb\x0e\x9d\xea\x94\xdd\xb8\x4b\x0b\xb0\x06\x65\x80\xf7\x36\xd7\x0c\x69\x78\xe1\xfc\x78\x07\x32\x7a\x89\xf6\x78\x6e\xc6\x52\x6b\x70\x62\x58\x28\x9b\xf3\x35\x24\xb3\x4d\x25\x64\x0e\x26\x13\x9a\x58\xa4\x3c\x19\x4f\x38\x97\x21\x82\x41\x02\x10\x52\x52\x9d\xf9\x96\x0e\x70\x3c\x4d\x89\x42\x3b\x8a\x8d\x5b\x44\xe1\xa1\x69\x82\x46\xd4\x56\x96\x0f\x0a\x35\x15\xd7\x62\x7e\xe9\x84\xec\xc3\xd8\x04\xfb\x3a\x8b\x38\x94\x6e\x65\xcb\x3b\xb1\x8d\x0f\x2e\xa5\x55\x54\x61\xe3\x31\x40\x85\x45\x3b\xcb\xba\x05\xa4\xff\xea\xf0\xd0\x83\x6d\x11\x5a\x8b\x88\x02\xa2\xda\x44\xce\xef\xfd\x2d\x46\x6b\xc1\x7d\x85\x95\xd4\x84\x57\x9c\x92\x9d\x7e\x27\x6d\x43\x78\xb7\x41\xaa\x17\xf8\xe3\x47\xde\x15\x8d\xc6\x49\x0d\x84\xff\x78\xb4\x41\x2a\x01\x63\xd2\xa6\xe1\x8a\xa1\xe4\x6b\x99\x0f\xb4\xe0\x7c\x6e\x41\x1d\x48\x19\xc2\xa9\x7b\xb8\xd4\xe7\xef\x99\x51\x56\xe0\x8a\x96\x4d\x25\xd1\xa3\x59\xf1\x6b\x2b\xac\x67\x71\xc2\x91\xd1\x3e\xd9\xdb\xaf\xf0\x32\x83\x79\xeb\x6b\x19\xfc\xd3\x64\x17\x86\xac\x9e\x37\xac\x27\x3f\x24\x4c\x33\x25\x35\xad\x73\x35\x04\x2e\x56\x09\x37\xd2\xe3\x18\xd3\x1a\xe7\x79\xad\xd7\x58\x8f\xfa\x46\x3a\x23\xa0\xca\xd6\x61\xe0\x1a\x33\xfa\xf1\xcc\xc7\xfe\x35\x5f\xce\xcc\x89\x64\x21\x0c\x1a\xb4\x3f\x74\x53\x01\xd7\x2d\x0e\x0d\x22\x40\xd7\xf6\xa4\xc4\x79\x83\xc9\xce\x7b\x51\x29\xe4\x58\x5a\xd8\xfd\xdd\x35\x70\xec\x8e\xac\x4c\x5e\x15\xd1\x2d\x35\xd8\xcc\x3a\xf5\xcc\x55\x3f\x32\x73\xf6\x23\x37\x35\xe2\xfe\x2f\xa5\xd5\xbb\x0a\xef\xf8\x80\x0f\x35\x85\x3f\x8b\x93\x36\xab\xbb\x1d\x04\x14\xe2\xa2\xef\x6b\x59\xb3\xc0\x77\xe0\x7c\x79\x9f\xe4\xeb\xa9\x75\x2b\xfa\xa9\x7d\xb2\x9d\x6b\x62\x44\x77\x73\x73\x76\xc7\x12\x1c\x0c\x5f\x57\xa3\x49\x5d\x71\xa4\x2a\x65\x71\xe7\xd8\x14\x3b\x7d\x7c\x1c\xdf\x6a\xbc\xbf\xec\x70\x6a\x24\x84\xf6\x49\xcb\xf5\x0c\x08\xd1\x0b\x21\xcd\x53\x1a\xde\x06\xd6\xa3\x25\xf4\x07\xcb\xc6\xdf\x75\x92\x37\x57\xc8\xf9\x7e\x52\x7b\x9a\xfe\xa9\xcc\xf5\xd7\x7d\x63\x76\xbb\x76\xf1\x39\x08\x33\xf1\xd7\xe8\xec\xf0\xe7\x5a\x36\x90\x41\x78\xe1\x01\xe7\xd8\x06\xfc\xc7\x60\x03\x33\x25\xfe\xa8\x68\x20\x3c\xe4\x89\x8a\xdf\x97\x41\x12\x40\x00\xdb\x57\x55\x8a\x19\x75\xb5\x91\xfb\x7c\x79\x72\xe6\xf8\xa9\x1c\x23\xd1\xd7\xe6\x11\x0e\xfa\x10\xda\x1e\xf9\x96\x34\xb2\x58\x03\xf6\x04\xe4\xbc\x84\xd8\x76\x78\xe4\x98\x38\xb3\x41\x4f\x47\x75\x45\x69\x69\x2b\x21\x2c\x9f\x36\x6f\x67\xc2\x18\x2a\x96\x34\xcf\x81\xb1\x6e\x8b\x34\x45\x3f\x8f\x3e\xa1\xf1\x88\xd6\x5f\x73\xe2\xca\x35\xe8\xe1\xda\x88\x2a\xee\x45\x6e\xf0\xb3\xcd\xf9\x28\x89\x62\xfb\x42\x3d\x60\x5b\x88\xa9\xcc\x91\x64\x19\xde\x20\x0f\x9b\xa5\xbb\xb8\x5a\x15\x1d\x02\x4f\x34\x6e\x79\xd7\x7c\x6a\x46\xdf\x60\x17\xa9\x89\x0c\xc7\x10\x70\xe6\xe3\x44\x75\xf5\x52\x07\xab\x44\x0c\x48\xb2\x50\x24\xbf\x65\x41\x22\xfd\xcc\xf4\xcb\xab\x13\xd7\xba\x07\x5f\x30\xbe\xbe\xa7\x66\x0b\x86\x59\xb0\x4c\x8e\x3e\xc9\x02\x03\xfb\x74\x84\xe8\x21\xfc\x70\x96\x72\xd7\xf4\xc3\xbf\x7d\xe1\x9a\x8d\x5a\xe3\xc0\x57\x16\xdc\x2c\x5e\x40\x11\x24\x14\xa9\xb3\x81\xe6\xe9\xd7\x3e\xae\x16\x74\x33\xb9\x5e\xbf\xe2\x22\x05\x3c\xe4\xc4\x16\x19\xcf\x32\x2f\x5e\xe8\xb2\x3b\x35\xe5\xa8\x5e\xb3\x8c\x4f\x74\x6d\xc6\x7b\x81\x49\xf1\xc0\xd4\x79\x98\x40\x8c\x27\x21\xb5\x97\x1b\xfe\x57\x0a\x34\x45\xeb\x64\x88\xd4\x1d\x14\xba\x1f\xdb\x14\xd9\x68\x09\xf5\x28\xb0\xe7\x7c\xa1\x1e\xb9\x5f\xfe\xa5\xce\x88\x32\x59\x3e\x64\x4d\xe1\xbd\xcc\x29\x1e\x77\x84\xc8\xc6\x49\xc6\xfd\x42\xeb\x44\x7b\x6f\xee\xad\x5c\x63\xab\x28\xb3\x6c\x67\x57\x87\xa0\x83\x2d\xf4\x99\x30\xb5\x08\x64\xe7\x5e\xec\xa9\xdd\x00\x54\x65\x56\x4b\x45\xb6\x2d\x6a\x88\x47\x47\x26\x55\x64\x80\x33\xb4\x85\x6e\x81\x2e\xf8\x05\x12\x27\x22\x9e\xc2\x63\x85\x39\xc0\x9b\xf8\x5d\xc7\x5e\x16\xde\x4c\x03\x3d\x87\x9e\x82\x05\xc6\x96\x0c\xe2\xec\x9c\x5f\x7e\x93\xc0\x0f\xb1\xcd\xcc\xd0\x51\x1e\x40\xef\xe6\x9c\x24\xe0\x52\x67\x89\x20\x32\x87\xa8\x43\x89\x55\x1e\xc5\x3e\xfa\x7a\x94\x88\xd1\x39\xf0\x8b\xcc\x15\xf7\x88\x0c\x69\x1f\x5c\x8b\xd6\x25\xa0\x50\x27\xf3\x74\x7c\xbd\x5a\x13\x95\x7e\x10\x80\x58\x78\x13\x69\x9f\xf2\x54\xe3\xb0\x6d\x48\x59\xac\x5e\xae\xaf\x91\x2e\x87\x91\x4e\x61\x43\x6f\xcd\xf8\xff\x1c\xbd\xf5\x89\x8e\xde\x88\xfc\x37\x54\x85\xc6\x90\xc3\x8b\x21\x62\xa1\x83\x39\x45\xa9\x12\xbf\x92\x95\x5c\x89\x6f\xa4\xf4\x25\xa3\x36\x72\xfe\x76\xdd\x43\x8b\xef\xe3\x97\x28\x56\x01\xae\x4c\x16\x75\xe0\x97\x96\xca\x29\x91\x20\x1b\x38\x9f\x84\x0c\xfe\x33\xe6\xa7\x25\xe7\xbe\x89\xbf\x9b\x5d\x24\xd0\x42\x7e\x21\x34\x33\xe3\xb3\x0c\xf0\xfc\xcd\x2c\x65\x80\x8b\xdb\xce\x6e\xaf\x66\xa9\xfa\x3f\x35\x4b\x4d\x3b\x55\xd7\x87\x87\x1f\x62\xea\x4e\xea\x7f\x6e\xea\xe2\xfe\xfc\x34\xaf\x3c\xa5\x8c\x6e\x91\x4c\x29\xa5\xfc\x5d\x3d\xb2\x9a\xb2\x80\x4e\x76\x99\x71\x30\x87\x2b\x08\x65\x69\xc2\x20\xe8\x30\xf9\x17\x4f\x8a\x15\x63\x70\xaf\xcd\x35\xc8\x88\x41\xd1\x6b\xd5\x06\x34\xf6\x5a\xa8\xf7\xc9\x4e\x26\x3f\x72\xcd\xa4\xd0\x3a\xe7\x5e\x05\xca\x4c\x42\x75\x65\x22\x2d\x7b\x57\x3f\x17\x25\x3e\xe9\x5a\xa8\xc7\x3c\x21\xa9\xf4\xe8\x00\xe5\xb7\xca\xa2\xac\xe9\xdb\x1a\x88\xa4\xed\xe4\x26\xc7\x7e\x3c\x86\x10\x16\x1f\x93\x06\xbc\xa4\x7e\x2d\xd4\xc9\x73\x95\xfc\x59\x65\xae\x0f\x85\xe6\xda\x1e\xdd\xce\x9d\x8a\x69\xed\x4c\x42\x3b\xa4\x85\x7a\x9d\x54\x59\xcc\xd7\x42\x3d\xad\xf4\xf7\x83\x9e\x4f\xd5\x0f\x3d\x67\x77\x9f\x91\xd9\xc0\x51\x2a\x82\xa4\xc7\x9e\x27\x64\xf4\x47\xfe\x90\xe8\xc0\xd6\x1a\xb8\x78\x3c\x1b\x7a\xe9\x37\xc0\xfd\xd0\x1a\x91\x31\x7c\x4a\x59\x4a\x9e\x27\x2e\x52\x00\x3c\xe2\xa4\x1c\xa4\xd3\x17\x13\xd9\x84\x29\x24\xe9\xfd\x6c\x93\x1e\xba\xfb\x17\xbd\xf7\x44\xff\xcd\x26\x27\x40\xc3\x55\x80\x07\xb4\x97\x64\x7c\xef\x33\x37\x5c\xbc\x30\xd7\x56\xed\x24\xf6\x25\x75\x92\x8b\x12\xc7\xfd\x4c\xe0\x42\xd7\x1a\x6f\x5c\xf2\xe4\xab\x4a\x58\xdf\x8f\xb2\xbc\xc0\x8c\x97\x16\xe4\x54\xad\xb2\x72\x92\xa3\xc6\x0a\xb2\x8c\xc6\x4a\x1d\xe7\x2c\x85\x0a\xd5\x02\xa8\xea\x53\x99\xe5\xd6\x32\x1b\x17\xdf\xa9\xb1\xfb\x4a\x95\x1b\x6b\x39\x5d\xb1\x55\x55\xa4\x54\x21\xad\xca\x46\x01\xb6\x22\x87\x1b\x79\x2d\x8f\x0c\x88\xa7\xec\x7f\x9e\x50\x75\x97\x45\x4e\xa8\x22\xa9\x24\x25\x94\xb1\xe0\x4c\x0d\x14\x4e\x01\x32\x71\xa4\x4a\x48\xa3\x19\x8d\xdf\x90\xb0\x82\x58\xc8\xad\xe4\xd8\x2c\x8a\x09\xcd\xaa\x43\xef\xfa\xcb\xc4\xa3\x2c\x29\xbf\xb3\x5f\x07\x4b\x93\x5d\x20\x95\x6f\x66\xcd\x8e\xdc\x99\x37\xf0\x9c\x50\xe0\x17\xf9\x35\x94\x53\x53\x4a\x1a\xdf\xe2\x94\xe7\x5b\x69\x64\xec\x80\xf8\xad\x1b\xe8\xb2\x3c\x1c\x11\x5a\xb8\x9e\x0f\x37\x90\xa6\x93\x24\xb6\xe9\x35\x91\x2e\x22\x8f\x66\xd3\x64\x08\x66\x4b\x8f\x31\x84\x2c\x08\x55\x3a\x75\x53\x00\x90\x38\xc2\x3b\x84\x67\x42\x26\x84\x5e\xaf\x1e\x92\x38\xd6\xcd\x2d\x88\x31\x62\x74\xa7\x3c\x96\xa6\x57\xc1\x53\xc6\x5c\x1c\xf2\x8a\xf5\x4a\xd7\x8f\xcb\xf8\x49\x22\x5d\x15\x2c\x00\x1b\x68\x07\x65\xc4\x30\x9f\xe5\x22\xc7\x9b\xee\xb2\xa0\x1b\x9c\xcc\x31\x5a\xef\x89\xd1\x1f\x4d\xed\xdb\x13\x46\xc7\xd6\x5a\xc5\xf1\x0d\x79\xe2\x96\x9a\xd0\x89\x8c\xc7\xda\xf1\x49\xe3\xe6\x3d\x39\x47\x9f\x83\x07\x84\xbf\x9a\x5b\x52\x18\x1f\x53\xcf\xde\xcf\x2d\x71\x23\x1a\x78\x9b\xe7\x94\xab\x94\x21\xcc\xdc\xa1\x4a\x08\xcd\x41\xeb\xa4\xf9\x3d\xc8\xc4\x0f\x0a\x14\xdb\x83\x21\x02\xdc\xa1\x47\xc7\xb3\x61\x96\x18\xac\x0d\xc2\xa2\xb9\x4c\x72\x5b\xc0\xbb\x07\xbe\x3f\xac\xfe\xfb\xaa\x78\x63\xbe\x9d\xca\x62\x19\x35\x58\xaa\x1b\xfe\x56\x20\x54\x51\xdf\xf2\x07\x7c\xe1\x6d\x52\x19\xba\xba\x77\xf1\x87\x35\x67\xee\x42\x9e\xf1\x3a\xae\xb1\x0c\xd9\xa1\x86\x46\x34\x73\x39\xb8\x75\x98\x4c\x8b\x06\xa2\x14\x81\x58\x75\xc9\xb9\xa5\x25\xc4\x3d\xd4\x25\x03\xee\xf0\x1c\xff\x81\xf7\x87\xb1\x1d\x92\x41\x1f\xe5\xf4\x86\x27\x8e\xb3\x03\x79\xc2\x2b\xd3\x56\xf0\x39\xb3\x7a\x4f\xb4\x43\xe4\x96\x81\x22\x94\x51\x77\x52\x7a\x50\x4e\x6e\x9d\xff\x8c\x48\xea\xcd\x52\xc6\x21\xa8\x17\xfc\xfa\x27\x75\x28\xc9\x56\x98\x7d\x72\x90\xd3\xe5\x54\x2b\x39\x33\xc3\xee\x13\x62\xac\xab\x32\xd1\x90\xaa\xd6\xdd\x0f\xab\x01\x29\xdb\x23\x55\xa6\x4f\x97\xbd\x26\x34\xce\x26\x35\x42\xb1\x91\x9a\x35\x85\x81\xf9\xbb\xc9\xba\x30\xab\xfb\xec\x93\x8f\x0b\x05\x2f\xe3\x74\xb5\xea\x60\x5b\xbd\xa3\x45\x6e\x22\x2d\x22\x8f\xcc\x83\xeb\x18\xf7\x17\xf0\x9f\xd0\x2c\xef\xdc\xbf\xea\x21\x99\x32\xb1\x7e\x5b\xf8\x16\x6d\x9a\xb1\xb8\x58\xd7\xdf\x77\x5e\xbd\x91\xab\x82\xe9\xf3\x1d\xd0\x4a\x5d\x60\x8b\x29\xfe\xa0\x25\xeb\x3b\xda\x40\xfe\x21\x45\x6a\x48\x5f\x3b\x96\xf0\x6d\xf6\x21\xbd\xd8\xf2\x62\x2b\x77\x33\xf8\xa1\xf2\xaa\xa1\x18\xb0\xa0\xa0\xb8\x56\x45\xf7\xec\x7d\xea\xaf\xf9\x85\x85\x47\xce\x84\xf4\xba\xd4\x16\x9a\xa1\x0d\x0d\x75\xb9\x1a\x3b\x57\x0b\xcc\x01\x84\x64\xad\xef\xd3\x6d\x41\x7a\xd6\x71\xc1\xa6\xd0\xc8\xdf\xd8\xa2\xd2\x47\x77\x2e\xf9\x4a\xa2\xfd\x9d\x51\x55\x2c\xda\x16\xfe\xdb\xc9\x92\x34\x92\x1d\x98\xde\x8d\x4b\x68\x68\x26\xea\xeb\x6e\xc4\x2b\x9f\xe1\x39\xa6\x00\x0c\x4d\x6f\x3e\xe1\xb9\x1c\xce\x42\x2a\x12\xf6\x26\x01\xc7\x01\xf0\x59\xa0\x57\xd1\x97\xa0\xbd\xa8\xc9\xdd\x57\x3b\x69\xea\x3b\x6c\x0d\x60\x65\x6f\xdc\x62\xf2\x49\xff\x98\xaa\x0f\x5d\x16\x8d\x4c\x23\x18\xbf\x7d\x4e\x5c\x9a\x85\x8f\x9e\x13\x79\xcb\xbb\x98\x48\x50\x36\x15\xff\xad\x66\x98\x4d\x43\xa3\xb6\x6a\x98\x8f\xe7\xb2\x4d\x54\x39\x98\x28\x27\xe7\xdb\xd8\x68\xf6\x98\x59\x4b\xa8\x20\x54\xfe\x99\xd0\x06\x72\xc4\x34\x05\xce\xf8\x46\x78\x30\x05\x6c\x1f\x70\x31\x6e\x10\x01\x94\x36\x9f\x2f\xe6\xb4\x03\x0a\x96\x56\x0f\x85\x18\x1d\x66\xda\x19\x90\xa5\x87\x4c\xd5\x33\xce\xb3\x93\x06\x36\x80\x3a\xce\xf0\x6e\x1a\x29\x8f\x16\x24\x37\x2f\xe4\x65\x46\x4c\xe4\xa8\x04\x3e\x3f\x67\x76\xb3\x93\x91\xea\xe3\xe0\x16\xe1\x03\xfa\x25\x79\xff\x58\xa9\x9b\xa2\x74\xb6\x5e\x7c\xdd\x94\xe5\x7f\x6e\x9b\xff\xdc\x36\xff\xd6\xdb\x66\xa9\x6f\xd8\x9c\xfe\x1f\x42\xf6\xdf\x4f\xc8\x26\x41\x5d\xb2\xfe\xfb\x3b\x6a\xc0\x5e\xec\x4b\xa2\x3c\x47\x64\xbc\x6c\x93\x9d\xae\xb3\x1a\x33\xe8\xe1\x13\xdb\x20\x62\x1b\x80\x77\xc2\xcd\xd9\x59\xc2\x5d\xa6\x69\xa4\x5c\xcd\xc7\xac\x4e\x8e\x04\x73\x49\x86\x79\x55\xff\xad\x5a\xb6\xe9\x74\xe2\x7a\x87\x2e\x68\xcd\x4e\x7e\x36\xa3\x7d\xad\x97\x51\xe4\xd6\x80\x8a\x4b\x60\x34\x0e\x67\x08\x4a\xf8\xad\x62\x44\x49\x81\x6d\xc5\x12\x57\xdc\xfc\x75\xc5\x4b\x26\x5d\x31\x97\x65\xaa\x59\xfd\xeb\xbe\xd6\xcb\xe9\xbe\x2e\xaa\x5c\x13\x71\x20\xbf\xd6\xf4\x52\xf5\x22\xac\xc5\xe8\x35\xe5\x58\xff\x7d\x2d\x82\x67\xe6\x5a\x27\xe0\x0e\x21\xeb\xe1\xe5\xd7\xf1\x51\x2c\x47\x3c\xa3\x05\x96\x50\xa1\x04\xc0\x79\x24\x0f\x76\xb1\x84\xa0\x0a\xb0\x7e\x18\x4a\x5f\x93\x26\x03\xe2\x54\x68\x8a\xc6\xec\xe6\x19\x4a\xb6\x20\xfd\x71\x13\x59\x3d\x73\x9d\xe3\xab\x50\x64\x71\xef\x99\x2e\x7a\xc2\x7f\x80\x00\xca\x1a\xab\x36\xd0\x1d\xc8\xcd\xd0\x2f\xcb\xab\x77\x1d\xce\x46\x46\xce\xa4\xd5\xeb\x77\x2d\x40\x41\x50\xf4\x8c\x5f\xbc\x7e\xd7\x84\xf6\x81\x32\xed\xf8\x97\x3f\x7f\xf7\x5b\x9b\xe9\x77\xcd\x4f\xef\x02\x21\xfa\x78\xd7\x16\x7e\xfe\xfa\x9d\x1f\x9b\xf5\x03\xb1\x31\xdb\x44\x89\xad\xf2\xe8\xca\x66\x6b\x9d\xd9\x8e\xd0\xe5\x90\x16\x47\x61\x7e\x86\x40\xe8\xb9\xfa\xae\xaa\xaa\xab\x77\xe9\xf9\x69\x44\xae\xa3\x84\xe7\xa5\xe3\xd5\xc6\xd2\x09\x9c\xb9\x54\x45\x19\xa9\xc9\x52\x7f\x43\x3a\x38\xc2\xcd\x10\x90\x27\x0b\x12\x3d\xb5\x99\x05\xbf\xe8\x56\x56\x0b\x86\xd1\x79\xfc\x74\x85\xa8\x50\xed\x23\x86\x15\xcb\x46\xfa\x2b\xdb\xac\x4f\xd8\x4c\xa4\xbc\xe8\x44\x96\xd8\x91\x7b\x75\x8b\xfa\xd0\x36\x9f\xdc\xed\xa9\x0f\x8f\xdb\x3d\xeb\x0b\x13\x6b\x70\x3e\xcf\x01\x09\x67\x97\xf8\x00\xf3\x89\xe8\xc8\xdc\x4c\x68\x36\x56\x46\x7d\x84\x8b\x64\x90\x65\xf5\xe0\xf4\x84\x22\x5e\x1f\x74\xdc\xb7\xb7\x6f\xcb\x06\x64\x39\x5a\x04\x24\xf2\x90\x19\x34\x0e\xfd\x0d\x39\x19\x98\x39\xb6\x07\x04\x81\xcc\x27\x49\xdc\x10\xe5\x66\x9b\xd3\xd5\x72\x51\xb3\xa5\x4e\xeb\xa6\xc4\x52\x4e\xdf\x61\xe6\x80\xba\x80\x3f\xd3\x7c\x4c\x82\xba\x39\xc8\xd8\x13\xea\xa6\x1a\x7d\x51\x9e\xb0\x97\x86\x61\xb0\x64\x05\xaf\x61\xc7\x8f\x26\x16\x1a\x76\x20\xc4\xa0\x08\xbb\x15\x19\x5d\x9a\x50\x30\x1d\xa5\x33\x12\x37\x2f\x77\x9f\xfa\x33\x47\x7f\x4e\x69\xc4\x41\xf6\x70\x40\x83\x05\x8c\x3d\x28\xce\x29\x64\xf2\xc6\x7a\x09\xc4\x28\xaa\x8e\x16\x3e\xa6\x29\x07\xfd\xa3\xe9\xbc\xff\xea\x04\xe2\x46\x90\x07\xf7\x5e\x1e\x4a\xa9\x58\xc8\x99\x97\xb8\x70\x9d\xe1\x38\x1b\xba\x36\xaa\x0a\x7e\x62\x4d\xe1\x7d\x38\x67\x29\x5c\xbd\x5a\xa6\xe3\x07\xdd\x64\x8d\xd8\x32\x9c\x99\xd3\x95\xde\xb6\xb1\x00\x8e\x2f\x82\x3a\xd4\x30\x85\x25\xb1\x72\x8f\xb6\xb0\xdf\x9e\x22\x91\xe7\x52\x6e\xb8\xd5\xa5\x9b\xb0\xb3\x67\x28\x46\xc9\x59\xae\xb9\xd3\x04\xa6\x8f\xc5\x9f\x9a\x25\xd1\x62\x4d\x11\x35\x2e\x92\x45\x37\x1f\xb0\x57\x0f\x64\xc1\x7a\x3a\x3c\x7f\x5e\xa8\xea\x15\x3f\x36\x67\xac\x52\x45\x4c\x62\xcc\x36\x90\x95\xb1\xf1\x54\x60\xe3\xea\x8c\x21\x52\x39\xba\xa6\x02\x37\x51\x59\xb7\x61\xa1\x64\x02\x43\xd9\xa0\x38\xa3\xc4\xd1\x55\x39\xc5\xd1\xf5\xcc\x56\x33\x2b\xc9\x8d\x35\x8b\xe4\x48\xe7\xe3\x1c\xf9\xdb\x05\x7b\xf7\x23\x63\x00\xfc\x0d\xbb\x40\x96\xdb\xca\x22\xfc\x0e\x27\xa9\xae\x95\x67\x5f\xb8\x1f\xfe\x52\x3b\xc4\xec\x41\x50\xce\xca\x5c\xc4\xe7\x7e\x17\xe9\xab\x2e\x62\xc2\x44\xdb\xf4\xcc\x88\xbf\x6a\xce\x5d\x75\xe3\xc7\x64\xe3\xe0\x0e\x5f\x17\x0f\x42\x66\xb3\x97\xac\x3f\x3b\x35\x20\xa2\x61\xaa\xc7\x72\xc2\x26\xba\x3c\xb8\x1e\x0a\x8e\xec\xd3\x21\x78\xf1\x9f\xc8\x8c\x91\xa3\x37\xea\x69\x62\x09\x01\x22\x13\x16\xf5\xeb\x8a\x94\x94\x5d\x76\x52\x38\x7a\xe3\xce\x97\xc0\x01\x2d\xd4\x7b\x89\x79\x6c\xb3\x2a\xaf\x58\xf0\xfc\xc1\x86\x60\x6a\xe1\xdd\x4f\xa9\xc5\x57\x72\xfb\x5b\x48\x25\xc4\xe6\x98\xe6\xc8\x2c\x3f\x96\x91\x4a\xc0\xef\x73\x5d\xfe\x8f\xf7\x9d\x99\xac\x8c\x54\x0a\xbe\xcd\x67\x30\xcd\x67\x59\xc7\xd4\xb5\x33\x70\x7b\xa2\x73\x86\x88\xbf\xe7\x6c\xd1\x0a\xb3\x36\x35\x67\x11\xae\x0e\x0c\x00\x4a\xc2\xa8\x7b\x77\xec\x3b\x5a\xdd\xd0\xe1\xde\xab\xbd\x9f\x6e\xad\xfc\xd7\xad\xe9\xab\xd6\x1a\xd4\x9a\x85\x9d\xda\x03\xfe\x7b\xb0\xe2\xa5\x4a\xbb\xa8\x02\xe1\x47\x34\xb3\xa8\x9d\x5e\xa1\x0c\x2c\x16\xbd\x49\x39\xa5\x68\x9a\x21\xe9\x6b\x50\xe3\x97\x59\x0a\xea\x55\x6f\xfc\xbb\x93\x65\xa3\x4a\x9d\x88\x27\x99\xf1\xab\xf2\xb7\x29\xf7\x0e\xf1\x94\x6b\xf7\x89\x5c\x10\x2a\xf2\x6a\xf8\x1e\xc3\x16\x44\xe5\x6b\xbd\x18\x88\x03\x88\x80\x5f\x62\x28\xec\xd3\x52\x7f\x52\x9e\x9d\x10\x8a\xc4\xc2\xd6\x37\xe3\x5c\x2c\x99\x20\xac\xd2\x84\xe2\xc0\x03\x9d\xdb\xb7\x11\x11\x2c\x15\xc9\x9f\x86\x4a\xfe\x36\xf7\xbf\x6a\xd9\x3e\x6d\xc6\x93\xfb\xdb\xcc\xf8\x97\x64\x66\xc4\x0c\xde\xb9\x15\xa5\x3d\xbf\x04\xad\x4f\x0e\x79\x7f\x1f\x57\xc8\x9c\xb8\x94\x22\xc6\xa8\x16\x4d\x73\x94\x3b\x84\x26\x62\x4e\xe5\xfa\xa8\x9c\xa6\xd2\x55\x37\xdc\x2a\xc7\x73\xd5\xed\x1c\x4e\x55\xc3\x65\x04\xbe\xa5\xfc\x1e\xfb\xeb\x3e\x09\xc7\x57\x37\x91\xcc\x2f\x5c\xa7\xa5\xc4\xbb\xf5\x51\xce\x2f\x13\x56\xc8\xdb\x58\x63\x11\x4f\x4f\xdf\x10\xd9\x91\x68\x55\x25\xcf\xe6\x1e\x1a\x89\x7e\x9d\x82\xb1\xbc\x48\x8d\xc7\x3c\x8f\x17\xb4\xc7\xfc\xe2\x3a\x82\x49\x74\x38\x33\xf4\xa6\x22\x57\x6a\x7b\x32\xc3\x59\xc1\xe5\x6c\x21\xeb\x91\x4e\xb9\xd7\x64\x40\xbc\xdb\x3b\x7c\x85\xcf\x38\xc9\xf7\xad\x0a\x4a\x46\xaa\xc8\xd0\xf4\x21\x99\x7b\x02\x3c\xd7\x13\x3a\x74\x9a\x99\x14\x7a\xda\xa6\x90\x2c\x02\x18\xb0\xf1\x2a\x47\xc0\x88\x93\xb5\x12\x58\xa5\xb3\xa9\x26\x10\x6c\x7a\x4d\x3a\xae\x4e\x0d\x63\x59\x4b\x33\x6a\x74\xc0\x13\x6d\xf2\xf4\x7a\xf0\xc7\x74\x4f\x28\x72\xed\x57\x8d\x6c\xea\x73\x94\xfc\xca\x74\xae\x23\xf4\x4c\xa6\x7a\xe7\x0b\xef\x39\x6b\xe4\x09\x15\xaa\x3b\x34\xfe\x30\x2c\xa6\xe6\xbb\x35\xa4\x74\x5b\x83\x93\x5c\x12\x18\xcf\x2d\x4d\xce\x51\xe2\x12\xb5\xe9\x0f\x4a\xd1\x97\x6e\xf9\xea\x29\x6b\x19\xaf\xdf\xa7\x7e\x2e\x57\x2a\x47\x53\xff\x44\x8d\x2f\xa9\x95\x38\xab\xcf\xc0\xcc\x05\x45\xea\xaa\xd1\x11\xa8\x2c\xcf\x27\x92\xc7\xde\xdb\x66\x93\xbb\x77\xce\x58\x8a\xa9\xbc\x8d\x07\x4a\xfb\x70\x2e\xcb\x3c\x8c\x11\x2c\x7f\x35\xf4\xa5\xcb\xcb\xfa\xcc\x97\xf4\x88\x6e\x57\xf5\x7c\xbf\xa0\xff\x9f\x0c\xd7\xe2\x7a\x1f\x08\x6d\x58\xc1\x0c\x1f\x9c\x73\x36\x6c\xc9\x2a\x20\x3b\xf9\x2a\x67\xeb\x21\x07\x63\xd2\xb4\x35\xcf\x30\x77\x75\xcd\xbb\xa6\x7a\x78\x58\x2e\xb5\xa1\x2a\xed\x70\xa5\x53\xa6\x52\x31\x26\xdb\x69\x5b\x9d\x65\xa4\x96\xab\x64\x56\xb7\xc4\x6e\x21\x40\xbf\x65\x09\xed\x13\xb2\xa6\x11\xf6\x0d\xfd\x50\x33\x59\x95\x5b\xde\xfc\x27\x5c\x06\xbb\xb5\xeb\x74\x4d\xff\xf8\x0c\x7c\x3e\x32\x19\x1e\x2b\xba\x77\x21\xcc\x40\xef\x22\x57\xfe\x77\x47\xc9\xab\xda\xf2\x0b\x1c\xa5\x41\x95\x57\xf5\xc9\x69\x8b\x82\xca\xcb\x0a\x71\xb8\x6f\x1c\xd3\x55\x87\xe7\x37\x7c\x94\x9b\x6b\x54\x1d\x6c\x68\x33\x96\xd5\xad\xb3\x90\xa2\xa4\x86\xfc\x8d\x1e\xaf\x6d\xc2\xd2\xf3\xfe\x3e\x33\xcf\x84\x1c\xd6\x2b\x94\xba\x48\x5c\x3f\x2d\x21\x9e\x51\x40\x35\x3e\xd5\x63\xd7\x9d\x55\xfa\x54\x72\xf7\x5b\x1c\x48\x02\xff\xa8\xdd\x42\x3b\x7d\x32\x2f\x07\x14\x99\xbe\x30\x14\x6c\xbf\x88\xad\xc4\x83\x38\xff\x71\xe8\xde\x5c\x0d\x7b\xbc\x22\xfe\xab\xd3\x70\x3c\xa7\xa3\x66\x2e\xfc\x1d\xd5\x8d\x33\x12\x05\xd9\x49\x14\xc5\x7d\x50\x67\x85\x5b\x12\x8e\xaa\x30\x29\xaf\x28\xf9\x4a\xeb\xd6\xf1\xc4\x5d\x0d\xd1\x31\x91\x5c\x90\x4c\x24\xd6\x2e\x91\xea\x37\x5c\x72\x2e\x78\x1b\xb8\x2b\x21\x53\xbe\xdc\x9d\xe9\x32\x6a\xa2\xdc\x1e\xae\x00\x39\x9b\x19\x03\x12\xcb\x32\x95\x7a\x20\x16\x20\xca\xf0\xc9\x0d\x9c\x82\x22\x84\x24\x3a\xaa\x50\xa9\xc3\xef\xeb\x89\x42\xd6\x18\xba\x84\x80\xf4\x3d\x24\xbb\xda\xa3\xc5\x57\xf7\x53\x8b\x79\xdb\x62\x4e\xc5\x98\x4b\x95\x19\x1f\xf2\x1b\xf8\x96\xd0\xa6\xa2\x74\x19\xea\x83\x13\x91\xe0\xfa\xe2\x89\x71\x81\x57\x46\x13\x4f\xd7\x8e\x5e\x59\x6d\xbb\x2f\xd4\x4d\x03\x92\x37\xc2\x7c\xd3\x75\x0c\x19\x59\x9a\x9d\xdb\xd9\x28\x0e\xdf\xe1\x1c\xd4\x24\x0a\x10\x31\xcd\x71\xf6\x9c\x3c\xb0\x5b\xba\x94\xed\x86\x45\xe4\x9f\x66\xa9\x68\xbd\xa5\xf7\xc9\x98\xe6\x67\x9a\x06\x43\x74\x9b\x11\x34\xff\x63\xf2\x50\x57\xb0\x00\x0c\x27\x8c\x0e\x50\xa0\xf9\xd2\xaf\x46\x46\xa6\x44\x26\x4d\xa0\xa1\xdc\x39\x4a\xf8\xf0\xd4\x1b\x11\x6e\x80\xad\x0e\x71\x06\x1c\x75\xbb\x86\xc0\xac\x61\x1d\xa9\xf7\x28\xf7\x38\xe5\xba\x59\x03\x56\x61\x18\x22\x7c\xb1\x55\x1e\x39\xac\xe3\xa8\xc8\x09\x8f\x1e\xbb\xed\x16\x50\x27\x74\xf6\x6a\x0b\x6e\x6e\x61\x35\x03\xf1\x20\xab\xac\x65\x76\x0a\x9a\x06\x89\x94\x2b\x6b\xca\xc8\x53\x01\x63\xd7\xba\x14\x88\x37\x98\xc8\xcf\xce\xe3\x81\xb3\x6d\xd8\x5a\xfe\x74\xce\xe7\x30\x91\x53\xe7\xbc\x29\xb6\x76\x02\x95\x9e\xce\x93\xf5\x55\x13\x40\xea\x83\xfc\x20\x71\xdb\x70\x46\x43\x6d\xd4\x0d\x27\xe3\xeb\x25\xfd\x42\x71\x3f\x4c\x21\xb7\x31\x2e\x46\x7f\x7b\x64\x36\x4b\xc1\x43\xa9\xba\xfa\x22\xf1\x6f\xe1\x99\xd2\x3d\xa4\xb8\x46\x72\xe0\xd2\x17\x75\xa4\x77\xee\x88\x16\xaf\xbb\x2b\x9b\x15\xb7\xce\x6e\x39\x12\x73\xe6\xfa\x89\x9c\x2b\x7d\xc7\x22\xa7\xeb\x6a\x01\x39\xb0\x97\xb4\xd6\xfa\x79\x82\x14\x4a\x14\x82\xfb\x76\x18\x3a\x49\xbe\x88\xc5\x80\x2c\x18\xf4\xe3\x45\xa5\x5e\xd4\x4e\xd2\x19\x89\x8b\xdb\xc0\xad\xa9\xf8\xce\xc4\xec\x2f\x39\x1f\xd2\xf5\x76\x5c\xd9\xd9\xac\xd1\x6c\xc6\xa7\x8b\x81\xab\xa3\xad\xfa\xbe\x87\x2d\xb1\x74\x9f\x07\x4e\x53\x14\xd5\x93\xd9\x8d\xd0\xe0\x9f\xe8\x20\x68\x81\xe3\x21\xa6\x32\x24\xf2\x61\xaf\xb2\x8e\xc3\x29\xde\x3b\xaf\x4f\x30\xc2\x10\xeb\xb3\x38\x5b\x3d\xee\xd7\xc4\x26\x71\x47\x77\x15\x96\xf2\x0c\x2d\x60\x1c\xde\x3d\x89\xe2\xea\x06\x71\x03\xe1\x94\xe4\xd9\x97\x39\x74\x61\xf4\x9b\x08\x2a\x79\x85\x07\x21\xdc\x59\x17\x74\x32\x34\xa5\xca\xd1\x93\x93\x74\xfa\xc2\xed\xd4\xb0\xde\x23\x33\x2e\xaf\x2a\x29\x5c\x96\x10\xc7\x2c\xcb\xb1\xa2\x8b\x53\xdd\x97\x28\x33\xc4\x60\xac\x0a\xd2\xd1\x2a\x7c\x40\x68\x6f\x67\x8a\xfa\x35\xb9\x59\x43\xa1\x7b\xae\xcb\xc4\x44\xe4\x57\x38\xc9\x7f\x75\x9b\x44\xdc\xd9\x03\xe0\x85\x1c\x61\x31\x95\xa2\xd1\xdd\xc2\x02\x3e\x8c\xb5\x44\xa2\x67\xce\x7e\x0f\xb0\x18\xa2\xe5\x0c\x28\x46\x83\x8c\x7e\x3b\xda\x3c\x59\xe5\x4c\xef\x44\xc9\x45\x6a\xd4\xfd\x5a\x27\xf7\x01\x32\x4a\x35\x52\xfa\xab\x61\x76\x7d\x85\xfb\xb4\xd6\x50\xbd\x5b\x9f\x17\x4f\xa8\x97\xe2\xfa\xcb\x5e\xcf\xe1\x51\xbf\xb8\xd6\x9f\xa4\xd8\x62\xda\x3d\xe8\xcc\xc5\xf2\xd4\xac\x0e\xe5\x9c\x92\xc3\x05\x1c\xa1\x19\xca\x3d\x39\x67\x75\x4e\x6b\x0d\xf4\x16\x6e\x77\x88\x0a\xa2\x75\xc4\x6f\x2a\xe0\xd3\xcc\x90\xcf\xe2\x9a\xd9\x83\xd9\x26\xdd\xf9\x0c\x55\x6a\x71\xb6\x26\x7a\xb3\x65\x87\x42\xa7\x29\x4e\x38\x04\x25\x78\x62\xe5\x65\xfd\x9b\x81\x8b\x6e\x34\xd1\x9f\xe2\x16\x2d\x26\xd3\x16\x27\xbe\xcb\x70\x2d\x27\xaa\xe0\xe1\x0e\x2d\x11\x29\x6b\x3c\x6d\xc1\x68\xb5\x37\xb8\x23\x7b\xb4\xa5\x66\x88\x41\xa0\x43\xe2\x0b\xaf\x9c\x8a\x8d\x39\xd9\xeb\xac\x2f\xc4\xb0\x4c\xc4\xe1\xdd\x99\x3e\x12\x09\x32\xac\x24\xae\xe6\x83\xfa\xa5\x5d\x77\x23\x9d\xb1\x12\x62\xae\x96\x43\xc6\x97\x30\xcb\x9e\x45\x3e\x57\xb0\x36\x2f\xb1\xd7\xbd\x77\x69\x27\x5f\x67\xd8\x18\x4a\x4c\xe6\x25\x8f\x0f\xea\x6b\x9f\x2a\x46\xd4\xf7\x96\x98\x82\x8b\xe7\xcc\x9f\x44\x4d\x85\x92\xd2\x63\x21\xdd\x94\x55\xf3\xb6\x42\xa2\xbc\xea\x61\x39\xe7\xc8\x6d\x38\x50\x79\x9c\x2b\x04\x17\x15\x99\xb8\x70\x53\xb5\x2f\x25\xf9\x2f\x26\xde\x50\x65\xbd\x45\xe8\x40\x67\x57\x93\xf6\x15\x74\xbd\xc2\x3f\xaf\x52\x17\x85\xd9\xb6\xfd\xc7\x64\xf3\xd3\x6a\xc3\xd1\x31\x02\x0c\x00\x25\xf2\x7c\x80\xfc\x9d\x06\x00\x39\xcf\x98\x72\x55\x79\xaf\x03\x02\x04\x28\x05\x11\x27\xc1\x24\x25\x53\x6b\xcf\x99\x84\x2f\xb0\x7c\x9d\xe4\x12\x79\x16\xd9\x02\x3f\xdc\xb5\xf0\xb8\xd0\xc2\xcc\x00\xa6\x4b\x04\xc7\x29\x1b\x9f\x00\x5f\x37\xe7\x44\x12\x6d\xac\xf6\x5a\xee\x90\xe1\x37\xb2\x9e\x89\x6b\xf2\x4c\xdc\xc3\x5d\x7c\xaa\x00\x3a\x94\x1c\xbb\xd1\x2b\x48\xcf\x8c\x5a\x0b\x8a\x19\xab\x98\xf9\x72\x1b\xaf\x43\x3e\x97\x3b\xcc\x41\xf7\x4c\x4a\xe6\x36\xf5\x43\x85\xe0\xcb\x06\xc4\x45\x0c\x89\x9e\x2f\x89\x13\xd2\xb3\x54\x46\xc6\x81\x9d\xbf\xec\x5c\x3a\x9e\xca\xde\x70\x94\xdb\x16\x83\xe3\xd4\xd2\xa3\x5d\x9c\xa5\x38\xd9\x05\xb1\xf9\xab\xb3\xdd\x31\x35\x5a\x11\x69\x0b\x2a\x40\x2a\xec\x99\xd5\x1f\x88\xb3\xe4\x36\xd7\xf0\xee\x5e\x48\xce\x6e\x33\x96\x07\x34\x8b\x14\x74\x31\x6b\x8b\xa9\xe1\x2c\x58\x0d\x74\x43\xa7\x2b\x78\xc8\xe7\x53\x93\x9c\x82\x67\x0f\xf8\x3a\xa8\x75\x81\xf8\xc9\x88\x0c\x7c\x50\x43\xcb\x77\x6a\x21\x32\x0d\x94\x3a\xc2\x1b\x2b\xc7\xd4\x97\xa6\x69\x77\xe3\xd4\x1a\x94\xc8\x2b\x01\x9a\xd9\x40\x1a\x48\x67\x84\x3b\x6f\x74\x8a\x27\xdd\x32\x97\xb8\xdb\xfc\xe8\x83\x79\x4d\x64\x7f\xf0\xc1\x54\x2f\xcb\x4d\x4c\xed\xcd\xa4\xaf\xf0\x99\x7b\xa6\xb6\x8b\x0d\x09\xe8\x4f\x54\x66\x29\x37\x1b\x10\xd9\xf9\x46\x7f\x5e\x29\x5f\x78\x13\x90\xc7\xa3\x99\x4a\x15\xaa\x20\x61\x91\x77\x29\x65\x64\x44\xea\xf5\xcf\x59\x4a\xce\x1b\x56\x56\xac\x31\x6d\x7f\x92\x54\xad\xac\x17\xd4\x56\x10\x11\x90\xf4\xa7\x94\x6a\x1e\xac\xc1\x16\x13\x8e\x8b\x5e\x88\xfe\x2b\xa0\xde\x74\x93\xf8\x56\xb3\x14\x7e\x17\x45\x33\xb8\x2c\xe2\xb2\xdc\xb7\xc0\x34\xfa\xc8\xa2\x19\x02\x4b\xe0\xd9\xc3\xf0\x11\xde\x44\xa6\x22\xed\x92\xfd\x0a\x45\x95\x46\x94\x87\x0e\xe5\x97\xed\x3a\x96\xaa\x2c\xf9\xa2\x3a\x02\x00\xf0\x67\x55\x31\xe2\x9f\xfe\xa6\xa6\x18\xb1\x46\xdf\x2a\x8a\x6d\x8a\xf8\xcf\x7a\x62\x31\xfc\x53\x3d\xb1\x68\xff\xa6\x99\x83\x9d\xaf\xb5\x37\xef\x96\xf2\xc4\xbe\x58\x17\xf7\xf3\xb6\xd8\x7c\xbb\x2d\x0a\x98\xfa\xe1\xe9\x6f\x6c\x8b\xb0\xb1\xe6\x20\xc0\x6f\xb7\xc5\x24\xe5\x93\x35\xbd\x4f\x76\x40\xe2\xb4\x7c\x25\x0f\x53\x80\x86\x06\xf4\x60\x43\x84\x7c\x03\x71\x6a\xab\xef\xe4\x67\x05\x91\xa6\x1f\xa1\x68\x50\x1c\x00\xed\x37\xb3\xe3\x62\x1c\x20\x01\xd7\xa5\x2e\x28\xee\x83\xd3\x31\x42\xc7\x8a\x93\xce\x91\x83\xd0\x6d\xca\xa5\x61\x0e\xb1\xab\x1b\xee\xcd\x0a\xb4\x69\x76\xee\xc4\x94\x51\x32\xa0\x3e\xdc\x80\x57\x85\x9d\xef\x4c\x70\x9c\x8a\x07\x6b\x45\x74\xc2\x3c\x44\x69\xa2\x01\xed\x70\x7d\x4d\x3d\xcf\xb0\x1e\x5d\xe4\xad\xd9\x35\x63\x55\x3f\xc7\x83\xe8\x0a\x5d\x54\xf0\x98\x87\x33\x1c\xa3\x09\x52\xd2\x94\x22\x3a\x5e\xdb\x29\x27\x50\x45\x15\x4a\xa7\xd0\x74\x2a\x9e\x6a\x22\xe4\xde\xc3\xad\xb4\xe1\xd0\xed\xc2\x5e\xa6\x3a\x97\x1f\xa7\xd9\xaa\x1a\xc4\xf9\xe0\xf8\xf2\x13\x8e\x28\xe7\xf5\xfc\x1e\x47\x94\x36\xfb\xbe\xee\x26\xbe\x0a\xfd\x22\x02\x88\x9b\x2b\x0a\x20\x56\xa7\x04\x3a\x94\xd2\x8c\x90\x1b\x49\x85\x6f\x6c\x6b\xd3\x41\xd8\x7c\x4b\xb8\xbd\xc3\x36\xdd\xbb\xf9\x57\x97\xc0\x15\x02\x3f\x15\xfc\x86\x26\x33\xf9\x53\xbf\xeb\xf2\x8f\xf0\x4f\x9b\x8b\x15\x5b\x65\xd9\x88\x46\xbe\x6d\x25\x28\x88\x82\x72\xf2\x50\x9d\xdc\xaf\x23\xc9\x60\x24\x19\xc9\xee\xb1\x77\x09\x3e\x08\x52\x6f\x71\x08\x04\x61\x46\xbf\x24\x77\x42\xbf\xda\x84\x16\x83\xb0\xb0\x14\x5b\xe8\x26\x57\xe3\x4d\xe3\x08\x61\xd4\x7d\x4e\x44\x6f\x26\x3d\x04\x5a\x62\xc0\xe1\xa4\x53\xc9\xee\x96\x48\xc3\x15\xf1\xdb\x05\x80\x4d\x7b\xb9\x3b\xbc\x05\xdf\x14\x02\x9d\xb0\x8d\x19\x05\xa2\x74\xff\x52\x64\x2e\xf8\xdb\x06\x2f\x33\x34\x78\x2e\x7e\xd7\xe0\x69\x96\x6a\xd0\x14\x09\x84\x3e\x3d\x82\xf6\x50\xfd\xe1\x84\x60\x79\xfd\x0b\x52\xa7\xb6\x72\x67\xe6\x13\x4e\xf0\x76\x41\x06\x4a\xff\x00\x37\xa1\x4e\x6d\x09\x1f\xb9\xfa\x12\x92\xfa\x16\xcf\xbb\x47\xf8\x28\x9e\x90\x33\x68\x0b\x40\xf9\x3a\x91\x1f\xaf\x46\x2b\xd2\xe5\xeb\x75\x42\x41\xcd\xde\xb8\x4d\x4e\xa3\x6c\x11\x98\xe1\xe1\xb4\x0d\x25\xeb\x89\xb5\xb1\x7b\xf6\xee\x3b\x00\x78\xb2\xb3\xc5\xf3\x5e\x16\x0d\x67\xd0\xf0\x22\x00\x2f\x11\xd2\x48\xbc\xf9\xd0\xa9\x48\xa1\xaa\xc4\x2a\xef\x48\x1b\x25\xc6\x70\x1b\x59\xc2\xdb\xb3\x78\x60\x4c\xeb\x26\x29\x15\x49\xaa\x84\x79\xa4\xcd\x1c\x8f\x2d\x71\x5c\x71\x07\x17\x14\xbf\x25\xe6\x32\x5a\x48\x67\x24\xf4\x46\xcf\xee\xcc\x00\xfa\x5b\x48\xe7\x2d\x67\xae\xe3\xa0\x96\xea\x81\x23\xc6\x81\x7d\x02\x5c\x3b\xf5\x5a\xa5\x36\xfc\xdb\x23\x65\x70\xf1\x2f\x63\xfd\xc3\xb5\xc2\x66\x8f\xee\x09\x38\x31\x59\xc5\xd6\xe6\xce\x09\x58\x28\xe4\x34\xee\xe7\xdf\xd2\x40\x96\x05\x8a\x53\x55\xb4\x79\x19\x77\xbd\x5d\x25\xf8\x49\xf5\x58\x09\x63\x9f\x05\xe1\x15\x33\x89\xbb\x94\xcf\xfe\x6e\xd6\xa1\xaa\x38\x91\x49\xc1\x30\x34\x5b\xa7\x43\x77\xd3\x43\x73\x8d\xf0\x0f\x97\x6c\x3f\x6a\xc1\x60\xa1\xc8\xbb\x56\x82\x9a\x50\x64\x97\x2a\x0d\xea\x5d\x68\x0b\xef\x6d\x0d\x86\xfe\x4b\x3d\x5f\xa8\xfb\x12\x82\xe2\x70\x12\xcb\x98\xe1\xf6\xa1\xce\x11\x56\x8c\xa9\xd7\x16\xcd\x32\x01\xda\x8b\x1c\xeb\xcd\x66\x5f\x89\x4f\x0e\xc7\xb0\x20\x2f\x10\xff\x28\x5d\xe9\x4a\x63\x17\xad\x43\x26\x05\x1b\xfc\xd1\xd9\xbf\x42\x57\xcc\xea\x99\xd2\x1d\x5e\x97\xef\xb0\x43\x1b\x70\x8e\xbf\x30\x89\x57\xa2\xfd\xec\x34\xc5\x43\x93\xac\x75\xa2\x0c\x5f\x4a\xd6\x3b\x4c\x2c\xe4\x51\x0d\x46\xdd\x61\xfd\xe8\x9a\x27\x7e\xe8\x5e\x78\xd2\xc9\x77\x12\x50\xfa\x47\x39\x5d\xb0\x32\x2c\x4b\xee\x12\xfa\xe0\x96\x28\x26\x92\xb4\x8b\xda\x37\x84\x71\x2c\x0f\x10\x0b\x82\x73\xa4\x38\xf4\x0f\xf1\x51\x63\x39\xa7\x3e\x01\x3d\x7b\xe3\xee\x60\x6d\x68\x11\x36\xb0\x66\xf0\xe6\xdd\x98\xf6\xc8\x0d\xd1\xd8\x6d\x23\xe9\xc3\x02\x7d\x58\x48\x27\xa7\x84\xa8\xa8\xdd\x8a\x7d\x03\x8e\x4a\x88\x9c\x2a\x11\xc1\x68\x33\x70\xc4\x42\xd6\x43\xe2\x78\x37\x37\xcc\xe7\x17\x10\x47\x1d\xa7\xda\x3c\x51\x75\x8f\xd5\x08\xe6\xa1\xf7\x82\xe4\xe8\x2d\x71\x33\x96\xd3\xf7\x4f\x43\xc8\x03\x7e\x99\x31\xde\x2d\xe1\xe8\x00\xfe\x0c\xe9\x49\x26\xb4\xd7\xb4\x5a\xbe\xff\x34\x2c\x75\xf3\xfd\x88\x6a\x84\x2f\x16\x8f\x88\x0c\x02\xf1\xd9\xe5\x8c\x05\xa0\x83\xd8\x55\x65\xee\xc5\xa7\xd1\xea\x90\x14\xc1\x3e\xc6\xfa\xdf\xbd\x26\x3f\x76\x5e\x09\x31\x75\xe3\xce\x43\x25\xf1\xfd\x72\x78\x79\xc2\x89\xdb\xf3\x31\x5a\x70\x3f\xcd\xec\xeb\x85\x95\xc8\xda\xc9\xb3\x5b\x5a\x25\xa7\xaf\x4e\xde\x43\x0d\x54\xe9\x28\x39\xa6\x71\x2c\xcd\x08\xdb\xe6\x9f\x9e\xf9\x67\x2e\x91\x0b\x42\x09\x67\x18\xff\xb3\xa7\x87\xc7\xd4\xbf\x05\xfb\xaf\x16\x94\xd4\xc1\x56\x1c\xc5\x0d\x0d\xe3\x76\x46\x42\x7b\x89\x91\x65\xb0\xc1\x55\x33\xe1\x8c\xe3\x79\xd0\xc5\x3a\x1b\xe3\xc3\xbf\x73\xc3\x64\xe1\xab\x7d\x75\x43\x0c\xac\x0a\xed\x35\x22\x32\x68\xc1\xb9\x81\x3a\x4a\x1f\x59\x83\xbd\xeb\x6c\xf0\x7f\x7b\x4d\xd1\x00\x6a\x26\xd7\xf7\xe8\x21\xf1\xc1\x6f\x85\x35\xb9\xce\xdb\x84\x1c\x74\xcb\x00\xb5\xb9\x1d\x12\xf0\x99\xca\x13\x27\x03\xfa\xbe\xaf\x32\x43\x5b\xa7\xae\xba\xee\x3e\x47\xa8\xeb\xfd\x88\x73\xc2\xd5\xd6\x6c\xde\x5e\x51\x5e\x6b\x2f\xcb\x29\xd6\xa0\xdb\x00\x22\x7e\xfb\x10\x32\xeb\x55\x46\xa0\x5e\x6b\x4e\x20\xb6\x70\x6d\x21\x82\xf9\x75\x40\x0a\x0e\x7d\x2c\xa7\x21\xa8\x35\x69\x08\xf3\x2b\x3a\x6b\x0e\x79\x38\x14\xe0\xf7\x0f\xb4\x97\x0c\x01\x80\xdc\x2c\xd9\x61\xb0\x3e\xd6\x16\x21\x40\xf8\x39\x38\xd2\x77\xcd\x9d\xb4\x50\x66\xb1\x45\x49\x4e\xb2\x24\x01\x4c\x3c\xd8\x4d\xc7\xd8\xe7\x13\xe4\x98\x7f\x81\xb3\xed\x96\xe5\x63\xf7\xb7\x21\x01\x7f\xe2\xbf\x34\xa4\xda\x1c\x3e\x4b\x13\xba\x95\xf4\xe9\xbf\x3c\x24\xf8\xc5\x38\x03\x35\x73\x1f\xd8\x8f\x2c\x23\x01\xd9\xc3\xba\xf5\xce\x29\x05\x29\xc5\xc9\xe4\xdb\xab\x3b\x2c\x6c\x16\x37\x76\x6b\x7c\x82\xfc\x55\x3f\x20\xa3\xec\x0f\x23\xcd\x4a\x73\x18\x7d\xa1\x5c\x76\x80\xed\x0a\x3d\xcc\x72\x2a\xe0\xbe\xb3\x94\x42\xe7\xf9\x5a\xba\x1e\x45\xad\x06\x96\xd0\x19\x1b\xd2\xe1\x93\x63\xe9\xae\x69\xa7\x2d\x94\x8f\x30\x46\x03\xe0\xdc\x5f\x3c\xa2\x77\x55\x4a\x5c\xa0\xaa\xff\x90\x83\xe6\x0b\x31\xa4\x83\x26\xba\x9f\x0f\x9a\xb9\x05\xae\x0e\x1a\xb9\xfe\xea\x0d\x4c\xc7\xb9\x3c\x87\xea\xce\xa8\x53\xee\xc3\xe7\x83\xb6\x80\x94\x5c\x93\x17\x3a\x68\x83\xba\xbb\x06\xcb\xc7\xfb\xc8\x2e\x17\x26\xe4\xfa\x64\xd8\xe5\xa3\xa4\xc4\x70\xe2\xd8\xb8\x3f\xef\xa7\x84\x7c\xcf\x95\xd9\x51\x17\x6c\xa5\xaa\xfe\x7a\x3a\xd4\xc9\xe6\xe5\xdb\xe3\x7c\x50\xd8\x94\x2a\x5a\x12\x8c\x7f\x7b\x70\x12\x57\xc2\xe9\x9a\x7f\x82\x98\x88\xb6\xaf\x7f\x76\xe2\x7f\x88\xe2\xf6\xaf\xff\x39\x73\x5b\x5a\x38\x0b\x69\xa9\xef\x7d\x9a\xfa\x6e\x18\xff\xbf\x64\xbd\xda\x67\xe0\xec\x76\xee\x7f\xd3\xee\xf8\x9e\x51\x1f\x0a\x45\x37\x98\x78\xe5\x74\x31\x7f\x9f\x3a\xf7\x4e\x93\xcf\x8c\x5f\x73\x8f\x98\xf3\x3e\xf1\xf5\x82\x85\x5d\x5f\x88\xd1\x0a\x4a\x9d\xcf\x3b\xcc\xe6\x56\x1a\xb3\xeb\x1d\x93\xf3\xcb\xcd\x62\xc2\x9a\xbc\xe8\xf1\x6a\x4b\xad\x37\xac\xa9\x2c\x12\xdc\x69\x7b\x63\xf6\xc6\x03\x49\xf9\x4f\x1b\x40\x5a\xa9\xe9\x82\x65\x9b\x8d\xb9\x9d\xd5\x44\xae\x6f\xf1\x7b\x75\x4b\xf4\x4e\x2e\xf9\x77\x74\x0b\x37\x1e\xc0\x5a\xcf\xe5\x6a\xad\x3f\x73\xb2\xcb\x35\xbb\xc2\xd0\x88\x36\xb7\x16\xca\x57\xf4\x18\xbf\x77\x20\x74\xd8\x98\x0d\xd1\xc0\x06\x5e\x7a\xed\x5c\x68\x11\xc7\x12\x40\x04\x9a\xb3\xf6\x24\x64\x86\x33\x8a\xfe\xf8\x5a\x11\xfe\x16\x6c\xaa\x4d\x90\x7e\x8a\x58\x9d\x8e\xad\x1f\x22\xbe\x2c\x02\xaf\x8d\x85\x20\x99\xba\xee\x26\x14\x7c\xba\x4d\x53\x70\xea\x7b\xdc\x17\x6c\xb9\xe4\xfc\x65\x49\x0f\xa2\x8b\x38\x77\x17\xe8\x0f\xff\x88\x8e\x9f\x09\xfa\x82\xe9\x78\xbd\x71\x75\xf8\x8e\xa9\x9b\x69\x0e\x11\xa8\xf7\xf0\x9f\x49\x49\x26\x65\x81\x49\x99\x03\xe2\xe0\xa7\x59\xf9\xf5\xba\xfe\x1f\x9b\x15\x7b\xe3\x9f\x32\x40\x28\x6d\xfc\x97\x67\xc5\xe6\x25\x47\x84\x58\x65\xc1\xe7\xff\xe9\xff\xee\x5c\xa8\x2c\x6b\xc2\x6a\x0b\x8e\x80\xf9\x24\x2a\x5c\x71\xf3\x21\x49\x78\xfe\xe1\x86\x69\xdf\x32\x9e\x28\x64\x01\xff\xed\x36\xb9\xbc\x7d\xc7\x54\xc0\x0f\xed\x1b\xa6\x22\x2b\x33\x80\xed\xa1\x14\x00\xea\xbe\x5a\xe3\x08\x92\x2b\x9e\x68\x7e\x23\xc4\xfa\x86\x78\xa2\xd9\x2d\x2e\x94\xb9\xfc\x96\xa8\x17\x60\xdc\x29\xa6\x18\xce\x13\x8a\x8e\x0e\x93\x34\x45\x15\x53\x59\xe4\xc8\xfa\x2a\x99\x9a\x74\xde\x4d\xb3\x9a\xdf\x0b\x74\x60\x2e\x99\x23\xc8\x32\x04\x76\x5b\xcd\x24\x66\x77\x1c\xb1\x79\x97\xf2\x05\xd8\xd9\xe5\xcb\x5d\x8b\x22\x76\x5c\x60\x07\x1c\x08\x1f\x0a\xbb\x12\x5e\xf4\x90\x30\xc5\x5f\xd2\xa9\x1d\x15\xe9\x62\x6b\x47\x21\x47\x99\xfc\x77\xce\x7b\x14\xcf\xfb\xbe\xef\xf4\x85\x0e\x65\x94\x77\xbf\x99\xf9\xf1\x8d\x10\x0b\xcc\x7c\xd6\xff\x75\xe6\x2b\xd7\x33\x1f\x87\x0a\x93\xa7\xe7\x07\xf3\xd6\x50\x94\x7d\x42\x71\x9c\xd1\x54\x7b\x2b\x5b\xdf\x8b\x45\xfb\xfb\xa5\x75\xb9\xa0\x64\x79\x30\x1f\xf5\x1d\x2d\x3e\xe0\x9d\xb6\x97\xe5\x21\x5b\xd9\x49\x32\x67\x3c\x2b\x52\x1f\xd7\x43\x76\xed\x26\x2c\x3d\xfa\x31\x7c\xcc\x50\x24\x99\x18\x56\x77\x9a\x8d\xe2\x2d\xe1\x8a\xc2\x0e\x27\x33\x7b\x44\xda\x8a\x13\x82\x27\xe8\x4b\x1a\xd1\x54\xac\xf0\xdb\x4d\x8d\xd8\xcf\x60\x44\xcd\xcb\x95\xa3\xc5\x0e\x3e\x29\xe5\x1d\xb9\xc7\x44\xb2\x00\xbe\x63\x18\x56\x3e\xed\xbb\xd3\x02\x80\x50\xf3\x88\x0f\x54\x7e\xfe\x55\xa3\xbe\x7e\x66\x4b\x1b\x59\xb5\x00\x42\x97\xa5\xff\xbc\x2c\xa9\xef\xba\x6f\x4e\x4b\x3c\xf9\x53\xee\x7b\x44\xb6\xce\xb7\x15\xac\x1b\x71\x1a\xa5\x5a\x18\xbf\xf6\x2d\xd4\xf2\x49\xda\x52\xb0\xa8\xa5\x92\x36\xa9\xea\x6f\x49\x9b\xce\xd4\x98\x77\x90\x9f\xbf\x52\x20\x5e\x4d\xdf\xaf\x72\xd2\x2a\xeb\x3f\xda\x5b\xeb\x2e\xf7\x79\xfc\xb3\x02\x96\xab\x40\x90\xd4\x53\x59\xc5\x39\x8a\xe0\x03\x7c\x75\xf2\x7e\x21\x6e\xde\x01\xd7\xdf\xd6\x70\xbb\x6a\xe6\xe2\x04\x66\xb0\xc1\xf6\x76\xc7\xa4\x54\x21\x2d\xb0\xd2\x69\x4a\x37\x97\x17\x9c\xb8\x35\x9d\xb8\xa9\x9c\x61\xcd\x98\xd4\xe5\xff\xf6\x91\x6b\x0b\x15\xca\x52\x8d\x83\x9d\xfa\xce\x50\xe8\x95\x5c\x7d\x7b\xb2\x96\x37\x42\xec\x71\xb2\xa2\xdf\x69\xda\x7c\xfb\x85\xa6\x45\x01\xb3\x9d\x9f\xe7\x36\xca\xd0\xf9\xf1\x36\x60\x31\x0e\x3f\xd2\xb4\x4f\x33\x3b\x25\xd5\x94\x99\xd9\xa6\x93\x91\xea\x31\xdb\xe0\xa0\xc7\xb1\xa4\xc1\xe4\x60\xfe\xaf\xab\xf4\xe4\x21\x24\xf9\x90\x4a\x2d\xb7\x09\x11\x1d\xbe\xe6\x7c\x00\xf8\xad\x3e\x2a\x9c\xbf\xe8\x08\xdf\xfc\x53\x80\xac\x12\xc8\xa4\xd7\xc9\x60\x82\x5b\xd9\x50\x32\x57\x3d\x46\x82\xfb\x02\x90\x78\x8b\x0d\x23\x64\xec\x64\x1d\xb0\x4b\x67\x34\x72\xe1\x46\x08\x68\x6c\xb4\xc7\xc3\x43\x80\xa2\x9c\xcc\x72\x8b\xa7\xbb\xc0\x88\x54\x07\x4e\x8f\x1f\x7b\xec\xf3\x45\x6a\x3e\x38\xd5\x4e\x45\x52\xd8\x3c\xba\xb2\x95\x64\x6a\xd8\x18\x59\xee\x28\x85\x38\xc3\xea\xd2\xba\x33\x7b\xd0\x63\x85\x01\xa2\x4c\x2a\x6a\x83\x83\x8c\xb1\x73\xd2\xc3\x55\x94\x76\x6d\x58\xc0\x4d\xa5\xbd\x48\x65\x5e\xcb\x90\x65\xa4\x59\x2c\xa4\x45\x78\x48\x72\x8c\xdf\xdc\xba\x90\x55\xc0\xff\x20\x5f\xd7\x02\x23\x81\xa2\x82\x68\xce\x67\x24\x33\xad\xe5\x6a\x8a\x64\x19\x32\x33\x25\xa1\xe3\x28\xb3\x30\x8d\x9e\xb0\x68\xaa\x42\x1b\x99\x8e\xe5\x63\x3b\x34\x6c\x50\xf7\x03\x52\x6b\x68\xa3\x87\x62\x3b\x6d\x7b\x82\x13\xd4\x27\xef\x9d\xfe\x7c\x99\x9c\x04\xe5\xf3\xbb\xce\xd4\xda\x4c\xd8\x56\x9c\xae\xe3\xee\x14\x83\xef\x55\x28\x36\x55\x23\xd4\xdf\x8f\x76\x3a\x6d\xd5\x58\x42\x71\xfa\x90\x9f\xbb\x69\x7c\x90\x5a\x86\xb1\x64\x85\xe3\x89\x96\x98\xa3\x61\x98\x5e\x67\x44\xfe\xfc\xec\x01\xf7\x21\x26\x6c\xba\xa7\xa5\xac\xc8\x10\xc4\x71\x3e\x4c\xaf\x57\xa7\xde\x30\x33\xd2\xba\xf4\x70\x17\x90\xda\xa7\x24\x85\xaa\xeb\x39\x4d\x75\x4e\xda\x45\x24\xfa\x79\xd0\xca\xd1\xea\x04\xe7\x89\x25\x67\xcf\x69\xef\x70\x00\x99\x18\x73\xb2\xf8\xc1\x62\x60\x9a\x9e\xca\x0b\x85\x7e\xab\xba\x5c\xec\xd9\xec\x50\xde\x7c\x11\xfe\xd6\xc0\x2c\xdd\xca\x5c\x00\x17\xf4\x4d\xc8\x87\x1b\x57\xff\x28\xc4\x7e\x69\x73\x38\xd1\x58\x2e\x69\x39\x46\xab\x16\x20\x58\xd8\x6e\x56\x80\xd7\xe6\xa8\x38\x35\x3b\x77\x21\x8b\x1e\x69\x87\x9a\xe7\x37\xc7\x13\xbd\xe6\x4f\x09\xe4\x76\x55\x80\xa8\x5f\x22\x60\x90\x8f\x09\x10\xb0\xea\x8a\x84\x20\xcc\xc1\xe4\x4c\xa5\xb3\x54\x42\xec\xd5\x85\xe1\xa7\x29\x93\xc8\xd6\x8d\xfb\xe5\xcc\x3d\xa1\xab\x7e\xf1\xc5\xe1\x74\x56\x23\x21\x46\xb9\xef\x3f\xa4\x36\xee\x98\xc6\x2b\xfe\xe4\x43\x4b\x57\x88\xe3\xf5\x87\x3e\x66\xb7\x07\x84\x79\xa4\x5b\x98\xc6\xfc\xd8\x5e\x09\x51\x52\xdb\x01\xd7\xc8\x35\x44\x2b\xdb\xe0\x99\xe3\x19\x8d\x67\x78\xd5\xe2\x84\x8d\x81\xe8\x6c\xdc\xd3\x57\xe8\x9b\x12\x5c\x7f\xa6\x10\xd0\xab\x11\xb9\xb1\xf4\xe9\xbb\x7d\x43\xa2\x06\x71\x74\x7a\xb8\x81\xcf\x2c\x89\xf0\xe3\x1d\x13\xca\x2a\x84\x82\x5e\x87\x73\xbf\x1f\x43\xb8\x5e\xad\x25\x9b\x28\x57\x7f\x54\x2d\x17\x62\x32\x97\xa8\xb6\x20\x0f\xa8\x9f\xab\x95\x06\x9c\x68\x2a\x77\x97\xf4\xb7\x77\xf9\xb5\xce\xd8\x7e\xe1\xc8\xb9\x01\x91\x6a\x53\xcc\x65\xf1\xcf\xea\xed\xc3\xd4\xe4\xf4\xf2\x7f\x56\xe9\xfc\xf9\x63\xe5\x3f\xab\x57\xb8\x9a\xfb\xfa\xaf\x95\xe6\x8a\xed\x40\xfb\x19\xae\x10\x46\xcd\x5b\xff\x54\xc9\x13\x62\x50\x59\xa4\x47\x33\xd9\xfe\xf6\x81\xca\x00\x37\xcb\x3a\xb8\x1e\xcb\xe6\xd7\x5a\xb5\x81\xb3\x90\xee\x5c\xce\x32\x72\x4c\xd9\x84\x46\xd5\xbf\xa2\x11\xa2\xc3\x64\x27\x02\x9f\xc3\xf9\x5e\xd3\x59\x64\xb1\x5f\xe1\xf8\x1a\xa9\x9f\x86\x4b\x9e\x90\xba\x06\x9e\xb5\x3d\xc5\x69\xe8\xcc\xe8\x74\xa8\x99\xb4\x57\x33\x4e\x4d\x67\x65\x2e\x27\x15\xd9\xab\xb9\x10\xb1\x3f\x15\xce\x73\x28\x8f\xaf\xf4\x9d\x05\x4a\x47\x86\x3a\xa9\x93\xbd\x6e\xe7\x78\x1a\x9a\x93\xa6\x2e\x92\x32\x7a\x74\xd7\x78\xb8\xe1\x86\x37\x7c\x07\xe7\xd8\xff\x3c\x4f\x94\x4c\x85\xf2\x3c\xd6\x4c\xba\x05\xdc\x82\xa6\xd0\x19\x96\x23\xb2\xcb\x4f\x28\x23\x22\x70\x27\x4d\xb3\x21\x82\x80\xf9\x2a\x9e\x13\x44\x0c\x3b\xd1\x9e\x6a\x2c\x56\x9b\x11\xbf\x6c\x9f\xac\x9b\x2c\x71\x24\x9c\x25\x32\x41\xf6\x11\xc3\x7b\xa7\x29\x5a\xe4\xda\x77\x2f\xd8\x43\x33\xa8\xc2\xd3\xb1\x3d\x45\xbe\xf7\xf7\x15\x5c\x6c\x82\x43\xdf\xb1\x79\x3b\x9f\x77\x6c\x04\xac\x5c\xd5\x51\x6f\xdb\x23\x1c\x37\x72\xc4\x5c\xf6\xee\xb0\x43\xea\x8c\xa2\xce\x69\x21\xda\xb5\x6d\x52\xab\x25\xd4\xc1\xdd\xee\xc9\x53\xa9\xff\xf2\xb5\x7c\x5b\xe8\x99\x42\x85\x85\x34\x12\x49\x59\x8a\xcb\x81\x76\x44\x97\xf5\x0a\x43\x4c\x48\xef\x24\xe7\x48\xc3\x39\xc8\xe7\xc0\x31\x17\x30\x61\x65\x30\xed\x84\x9e\x80\xd4\xdd\xc4\x02\xd0\xb5\x39\x38\xe0\xf6\xdc\x13\xac\x6c\x7f\x87\x9b\xac\x9d\x81\x61\xd1\xcb\x12\x1f\xa9\x0e\x6a\x8b\x6f\x75\xd6\x7c\xff\x97\x97\x3a\x71\x08\x6c\xe6\x38\xd0\x8d\xc8\x71\x9f\x12\xd6\x06\x27\xe9\x34\xc5\x9d\x4f\xdc\xe1\x64\x98\x9e\x96\xfc\xd5\xe5\x7a\x91\x76\xf8\x14\xc2\xdb\x3c\xc9\x0c\x8f\x62\x8f\x4c\x23\xb9\xa6\xc3\x59\x4e\x75\x19\x62\xdb\x7c\xc1\x0c\xd0\xe4\xc8\xe9\x37\x11\xfa\x1a\x8c\xc9\x93\x57\x5d\x64\xb8\x23\x93\xbd\x58\xca\x9c\x07\x6e\x97\x9c\x44\x90\x91\xcb\xff\xa6\x8e\x68\x9b\xa1\x12\xf3\x0e\x6e\x65\x4b\x89\x13\x27\x8d\x31\x47\xd0\x45\xb8\x36\x86\x66\x83\x17\xe5\x82\xb3\xa2\x55\x23\x6d\x28\xd4\x68\x49\xa9\xab\xd5\x46\x9e\xcd\x9e\xaf\x4a\x12\x43\x6a\x72\xa2\x66\x1b\x4d\x26\xd5\xc1\x74\xa3\x9d\x96\x33\x56\x3a\x6c\x80\x05\x3b\x6c\xb5\xf3\xff\x77\x6c\xb3\x0e\xa7\x4a\x21\x42\xf0\x7f\x1e\x3a\x2c\xd7\x78\x09\x13\x10\x36\xa7\xaf\xaa\x77\x65\xc9\x62\xfc\x5c\x3a\xa5\xa6\x4d\xe1\xcd\x6e\xd0\x2a\xc5\xed\x9e\x20\x94\x19\xfa\x9f\xf3\xde\x9c\x96\xb8\x78\xe2\xc8\xcf\x8a\x0b\x68\x05\xcf\x0b\xcb\xc6\x98\x65\x3e\x00\x1d\x89\xf3\x67\x5d\xd8\x48\x72\xe6\xff\x81\xb0\xc4\xe9\xec\xda\x9c\x02\x86\x86\xf1\x6c\x27\x4d\xb9\x59\x38\xec\xb6\xce\x14\x9b\x8c\xa8\x9b\xc7\xe8\x80\x28\x16\x44\x43\x3a\x00\xdb\xa1\x07\x1d\xb3\xc6\x6d\x72\x3f\x0f\x84\xbe\x4d\xda\xc9\x61\x5b\x8d\x01\xa2\x4f\x70\xe3\x8f\xf9\x19\x37\xd3\xc5\x3f\x6a\x47\x24\x34\xa9\x75\xf7\xeb\x5f\x29\xf7\xfd\xe5\x81\xd1\xaa\xc7\x9a\x40\xf3\x7e\x2d\x2c\x50\xb4\xa6\x7e\x2a\x9a\xc7\xa4\xb6\x2a\x63\x69\xe9\xbd\x35\x18\x77\x31\x3e\x4a\x2b\x49\x59\x17\x45\xf7\xc0\x68\xe3\x10\x21\xae\x87\xfd\x7b\x67\x0b\xe4\x5b\xfa\xf5\xbb\x99\x6a\x1c\x4f\x61\xbf\x6b\xca\x5f\x66\xb1\x9f\xb6\xca\xff\xc1\x4c\x7d\xf7\xc9\x8a\x7b\x35\xe8\xf8\x93\x4b\xc4\x3b\xce\xb1\x98\x75\xbb\x30\xc9\xa3\x4f\xeb\x4b\x41\xbb\xa9\xef\xc3\xaf\x0e\xce\xe3\x04\x37\xfe\xcd\xb7\xa7\xf4\xed\x4f\x5f\xec\x62\x90\xc9\x94\x5a\x07\xe1\x4e\x3d\x35\xdc\xf2\xbf\xe1\x73\xdf\xec\xde\x02\x80\x02\x3a\x08\xa1\xfc\x69\x05\x52\xf3\xee\xf2\x56\xfb\x61\xd6\x4b\x91\xc6\xde\xa7\x6c\x9a\x65\x7e\xba\xae\x31\x96\xfd\xf5\xf2\x67\x53\x1d\x2c\x7e\x5a\x7e\xdb\xc1\xff\x43\x0d\xfe\xe9\x8e\x5f\xea\xef\xe7\x7e\x5b\x63\x04\xa5\xeb\x4f\x4e\xe6\xc9\x27\x29\x69\xec\x37\xdb\x60\xff\x7d\xd5\xd9\xe7\xaa\x7f\xb5\x3b\xe2\x3e\xfe\xb4\x3f\x8e\x35\x97\x58\x8b\xd0\xb6\x6c\x91\xe5\xba\x86\x70\xff\x09\x0d\xf8\xfb\x14\xf4\xa8\xc9\x37\x3c\xe0\x84\x26\xb7\xe8\x4b\x13\x1a\x56\x86\x8f\x28\x48\x67\x41\xae\x0e\xec\x3b\x68\x64\x35\x73\x4b\xc5\x17\x57\x4e\x66\xd7\x32\xa5\x36\x99\xd4\x95\xbd\xba\xf6\xd2\x5c\x5d\x3b\x29\xc6\x78\xe6\x47\x35\x78\x86\x4e\x81\x16\x51\xc1\xd5\xb5\x82\x63\x9e\xb7\xc5\xff\xbe\xa2\xf8\x0a\xca\x43\x1c\xca\x79\x0a\x9f\x4f\x3d\xcc\x18\x5c\x60\xbe\xd4\xcc\xf2\xc2\xa6\x70\x39\x50\x7c\xcb\x46\xc1\x6f\xa6\xb5\x88\xdf\xdf\xc4\xef\xdb\x84\x24\x1d\x08\xf1\x90\xa3\x3b\x4d\xdd\xfd\xde\x9a\xb7\xa3\xd2\xcf\x67\xdc\x80\x84\x36\xf6\x68\x21\xe8\xbe\xff\x80\x1f\x77\xe0\x0f\x3b\xa8\x6e\xd2\xd5\xad\xd9\x91\x3b\x68\xd1\x13\xbc\xfc\x41\x5b\xe5\xbc\x8e\x40\xaf\xa8\x19\xeb\xb3\x85\x3e\x75\x57\xd0\xd3\x52\x0c\x48\x9b\xe6\x8b\x37\x4c\x9f\x97\x1f\xba\xdb\x35\x72\xe9\x0e\x18\x25\x93\x4a\xcc\xe5\x55\x11\xce\x2e\x3c\x14\xda\xc6\xb5\x0c\xaf\xde\xbb\x68\xa0\x9b\x34\x70\xbe\x6e\x40\xa0\x40\x47\xa8\xb7\xaf\x6d\x2d\xe4\x77\x8d\x0d\x93\xc6\x6a\xdf\x36\x36\xf8\xb6\xb1\xc1\xf7\x1d\xf3\x19\xb6\x95\x66\x66\x2d\x4f\x91\x45\xd5\xf4\x85\xf2\xcf\x2c\xad\x13\xe7\xda\x65\xad\x2e\x58\x37\x7a\xe7\x89\x86\xd9\xbe\xdd\xe7\x64\x97\x2f\x79\x97\x6b\x92\x5a\x38\x3e\x3e\x9f\x6c\x75\x75\xcb\xde\xb5\x70\xda\xcf\x80\x51\xe8\x4d\x36\x10\x7e\x20\xe2\x36\xf9\x71\x27\x3a\x7e\x8d\xa6\x2c\x43\x4e\x1b\x43\xa8\x43\x20\x4c\x27\x0b\xb5\x2c\x33\xbd\xfc\x2e\x20\x62\xc0\x8c\x5b\x57\x28\xb7\xcc\x9b\xb2\xd2\x02\x0f\xd3\x15\x94\xf2\xd9\x2e\x7f\x4f\x28\xb7\xda\xba\x2a\xd1\x13\xea\xc3\x3e\x42\x36\x8f\x5e\x8d\x48\x4e\x70\xd8\xb3\xcd\x19\x51\x2d\x9d\xab\x4d\x84\x94\x9f\xad\xca\x52\x63\x1d\x10\xcb\x9e\x94\x59\xca\x2b\x92\x53\xe5\x7e\xd5\x96\xda\xa6\x30\xd7\x8c\xbe\x69\x6b\x8c\x84\x72\xeb\x9f\xba\xdf\x4a\x3a\x37\x5f\xd3\x65\xb1\x96\xe7\xd1\xe7\xde\x4d\xbc\xbc\x3a\x43\xc7\x6c\x11\x8c\xa7\x5e\x94\x6e\xdb\x48\x50\xee\x1b\xd8\x2c\xc2\xae\x20\xa6\x4e\x85\x32\xcb\x1f\x1c\xaf\x34\xab\x0a\xdb\x64\x24\xbf\xee\xd6\x64\xa5\xff\xa8\x6e\xeb\x53\xdd\x41\x52\xb7\x93\xc7\x7f\x22\xf5\x2f\xbc\xdd\x35\x1c\x08\x8c\x74\xc7\xed\x77\xd1\xdc\xed\xd5\x38\xb7\x91\xfb\xc5\x62\xb8\x78\xa1\xb8\x31\x98\xa6\x58\xbb\x9c\x6a\x7a\xbb\x47\xd4\x51\x21\x23\x93\xbd\x1f\x98\xfe\x37\x29\xa4\x22\xe9\xa8\x39\xd3\x59\xf8\x90\xfd\xbd\x8e\xc2\x5f\xfe\xff\x6d\x4f\xeb\xe9\x9e\x12\x79\xe2\xae\x26\xeb\xd1\x23\x01\xb9\x13\x5f\xdb\x4b\x2a\xc5\xeb\x33\x5d\x69\xee\x27\x74\x54\x0c\x52\xd3\x9a\xaf\x34\x04\xfb\xce\xa7\xbd\x4b\x54\x29\x5c\x7d\xa9\xdd\xfa\xb6\x76\xfb\x53\xed\xfd\xdf\xaa\xdd\xfa\x54\x7b\xfb\x43\xed\x0e\x91\xa5\x8e\x68\x3e\xd2\x84\xe1\xf8\x9f\x65\xc4\x30\x92\x53\x98\xb7\x88\x1e\x88\x13\x85\x42\x03\x7a\xd3\xbd\x5a\x9a\x2a\xab\x0c\xb4\xb5\xe1\x81\x0d\x58\xc4\xdc\x33\xb1\x4d\x53\x4b\x5b\x4c\xcb\x59\x70\xbf\xed\x31\x2e\xea\x1c\x2e\xea\xe8\xcb\x45\x4d\x42\x78\xfa\x87\x59\xd1\xb9\x24\x13\xd0\x44\xf6\xe8\xb6\x5d\x21\x3a\xc2\x5e\xb6\xdb\x95\x25\x06\x30\xc1\xd9\xdb\xb6\x2a\x4b\x47\x0b\x5b\x62\xae\x5d\x11\x5f\xba\xef\xd1\xea\x33\x1d\x01\x95\x2d\x1f\xb9\x66\x05\x35\x09\x99\x53\xbd\x6c\x56\x9f\xbf\x84\x3b\xb8\x4a\xc5\x55\x68\xef\xe0\xa4\xb9\x20\xf5\x5e\x74\x6a\x47\x5c\xf8\xf5\x23\x41\x35\xd5\x6d\xf9\x1f\x7a\xfe\x5d\x83\xef\xa9\x5b\x5d\x67\xc9\x97\xe0\x61\x89\x66\xd3\xcb\xd2\x11\xea\x1d\x75\xaf\x0f\x60\xfa\xe8\x31\xf6\x59\x4e\xf6\xaf\x29\x60\x4f\xf8\xa7\x06\x0a\x42\xa7\x50\x92\xab\x6f\xf6\x85\x3a\x28\xbe\x1e\xfe\xf8\x13\xca\xe9\x09\xb7\xac\x09\x44\x87\x76\xca\x6d\xea\xb6\x6c\x25\x2d\x17\xe5\x2d\xa1\xea\x9c\xfe\xaa\xfd\x23\x61\x39\x79\x8c\xfd\x4a\xc5\x55\xd4\x01\x9b\xb9\x5f\xb1\x5d\x0f\xa0\x13\x1b\x98\xb3\x39\xe2\x1d\xb7\x67\x3f\xc2\xff\x9d\x25\xfe\x47\x68\x6b\x2b\xbb\x77\x9d\x24\x33\xe6\xfc\xc8\x51\x29\xe4\xfd\xd5\xda\x85\x98\x8a\x2e\xad\xa8\x70\x9a\xa2\x33\x53\x94\x16\xcf\x2a\x7e\x8f\x4f\xc4\x5d\x0b\x08\x78\x27\xaa\x16\x94\x32\x92\xf1\xf3\x08\xef\x85\x83\x4c\x82\x4a\x46\x32\xc8\x9e\x16\xea\xbd\xca\x4f\xc3\xe3\x55\x61\xee\x41\x90\x1f\x23\xf8\xd8\xd0\xd7\x1c\x2c\x43\x65\x59\xbd\xa3\x83\x37\x1d\xbb\x44\x68\xde\x66\x63\x37\x7e\x30\xa7\xc3\x9e\x47\xc7\x0b\xf0\x08\x2b\xcb\x22\x7d\x25\xa3\x5f\x9c\x56\xe3\x02\x67\x86\x85\xac\x1f\x12\xcd\xe1\x3f\x25\x63\x80\x5e\xc9\xac\x26\x77\x9b\xee\x12\xfa\xe4\x01\x96\x71\x70\x90\x76\x05\x3d\x92\x6d\x68\x89\x1b\xbc\x84\x58\xba\x98\x47\xf3\x37\x14\x90\xc1\xb0\x05\x38\xfc\x85\xa5\xb4\x59\xb8\x84\x17\xd6\x54\x82\xea\xb1\xbc\x31\x3c\xe0\x05\x4f\xce\xec\x80\x13\xed\x75\xca\x49\x88\x56\xa5\xb1\x6c\xc4\xd9\x16\x5b\x86\x68\x7f\x08\x9b\x00\x58\x04\xe6\xec\xbe\x8b\xd4\xfb\x56\xf2\xfe\xef\xfe\x36\x04\x9b\xcd\xeb\x67\x00\xa7\x05\xb6\x0c\xfc\x41\xed\x10\x03\xc3\xe9\x5d\x2e\x9c\xe2\xed\x4c\x76\x90\x6f\xaa\x05\xec\x3c\x9d\x54\xd3\x55\x24\x7d\xdc\xe3\x69\x7f\xb5\xb7\x08\x89\x7f\x3d\xda\xbf\xea\xfd\xff\xde\xd9\x38\xe6\x99\x3d\x57\x09\x0f\x8f\x1c\xde\x7d\xe0\x2f\x58\x78\x2e\x62\x94\xd1\x9a\x39\x2e\x0b\xc6\xda\xa1\x70\xee\x7e\x79\xc9\x31\xb6\xbe\xf5\x7b\x6c\x9a\xe9\xe3\xc0\x52\xb8\x45\x02\x40\xab\xbf\x43\x18\x5a\x50\xce\xa6\x3c\xdb\x6a\x59\xfa\x3c\xfb\x19\xce\xd0\x9a\xf5\x80\x98\x4f\x88\x4e\x7d\xcc\xc1\xfc\xf7\x43\xfc\xdf\x74\xe2\xec\xd6\xdf\xbc\x51\x75\x95\x7e\x1a\x90\xc0\x13\xa7\xbc\x5e\xf2\x2b\x66\x84\xe2\x86\xd0\x51\x44\x4e\x62\x14\x41\x3c\x6a\xc3\x0d\xbf\x7c\x7e\x38\x8a\x9f\xb5\x6d\x14\x27\x86\x19\x6e\xa4\x33\x10\x19\x99\xe5\xaf\xf6\x45\x59\x52\xac\x6e\x8e\xce\xb4\x4d\xbc\xa4\xfc\xfc\x89\x64\x69\x41\xc1\x93\x0d\xc1\xbe\x11\x0c\x76\x08\x1c\x42\x60\x32\x7b\xc2\xa7\x34\x03\x2e\x44\xa4\x01\x29\xa4\x9f\x60\x57\x29\x9f\xb4\x65\x51\x90\x67\x8d\x35\x24\x58\x71\x87\xb3\x3d\xc5\x7f\x23\x44\xc7\x2f\x9c\x74\xba\x36\xe2\xd6\x57\xca\x3e\x2e\xe2\x7f\x32\xff\xb4\xd2\x0f\x9b\x46\x0e\xb7\x0f\x40\x34\x44\x93\x3b\x4e\x05\x48\x99\x41\xb6\x26\xef\xd1\x3e\xb7\x5d\xa4\x7c\x18\x9c\xfb\xa8\x9d\x7e\xd9\xa6\xb3\xd8\x84\x04\xc8\x73\x59\xe2\x8f\xc0\x49\xe7\xd3\x4b\x61\x5f\x89\x26\x5f\x52\xb6\x28\xb1\xd2\xec\x01\x86\xa7\x27\x36\x53\x21\xe8\xd9\x90\xc3\x29\xe3\x17\x05\x24\xa6\xb5\x85\x12\x7c\x93\x22\xdb\x5c\x32\xa5\xbe\x08\x26\xaa\x76\x22\x30\xcc\xa9\x7c\x43\xac\x45\x4f\xdc\x14\xa5\x91\xdf\xbc\x85\x6b\x1e\x35\x10\x3b\xd2\xa2\xe3\x30\xec\xc6\xe0\x1c\xb4\x6d\xf4\xd9\x90\xe1\x9b\x88\xc0\x01\xf7\x64\xb5\x6d\xae\xe4\x07\x25\xd1\x27\x17\xd8\x52\x23\x2b\x43\x0a\x23\x5d\xd7\x1a\x30\xc0\xcc\xc9\xdc\x15\xd5\x1a\x2f\xb8\xb8\x36\x58\xb3\x56\x7d\x84\xbd\x43\xe8\x8a\x5b\xb9\x85\xe9\xe7\x75\x87\x63\x7c\xb4\x9e\xab\x9e\x50\x64\xce\x59\x06\x3e\xd8\xa6\x55\x00\x44\x73\x9a\x9f\x37\x05\x3e\x18\x01\x16\x30\xf4\xb6\xb6\x14\x8e\xab\x42\xc5\x2d\x99\x43\xd7\x3c\x01\xf9\xa6\x63\x71\x15\x9b\x8c\x9d\xb4\x51\x2c\xb9\x9b\xd3\xbb\x5b\xc9\x4f\xf7\x86\x08\xaa\x63\xd7\x5a\xd6\x5b\xa1\x5c\x32\x12\x57\xe3\xba\x19\x7f\xa3\xbc\xf8\x36\x13\x6b\xe9\x0c\x45\x3b\x0b\x45\x59\xf7\x8e\x8b\xf2\xaa\x35\x0f\x0a\xc1\xfe\xf7\xd7\x4d\x78\x3b\x45\x1c\x55\xf7\xe1\xba\xbc\x3a\x28\x72\x1b\xeb\xde\x72\xd3\x0b\x69\x18\x49\x3a\x3a\xdd\xa7\xeb\x36\xf4\x4e\x11\x6a\x77\xf7\xf9\x53\xf7\x76\xaa\x97\xb4\xbd\x26\x56\x44\x65\x25\xda\x35\xd2\xd3\xb3\xba\xea\x3d\xa9\x38\xfd\xb4\x99\xb0\x19\x6f\xba\x16\x74\xe5\xa6\xc2\xf2\x0e\x68\x71\x2b\x78\x42\x98\x8b\x23\xba\xfb\x58\xc3\xbe\xd9\x7d\xe5\xc6\x2a\xd4\x5f\xb2\x10\x77\x01\x01\x79\xd5\x61\x08\x0d\xdd\x77\x2e\xbd\x97\x66\xe6\x48\xc6\xef\x46\xf2\x7a\x2a\xbc\x83\x02\xb9\x03\x74\xcc\x06\x3e\xa8\x2b\xd8\x86\xb7\x88\x1e\xea\x99\xce\x04\x42\xdd\xd6\xc0\x9f\x4e\x5a\x36\xdb\x2c\x52\x13\x57\xe5\x1e\x51\x40\xdd\xdd\xd7\xbe\xc0\xe2\xdf\x3d\xd8\x37\x0c\xa5\xa5\x8a\xea\x98\xfa\xee\xea\x02\xa9\x62\x4f\x4b\x1e\x2c\x1f\xe8\xf6\xe5\xe8\xb3\x27\x27\x86\x05\x04\xe6\x33\xd9\xd7\x9f\xd8\x1f\xc8\x06\xea\x23\x53\x0c\x04\x3b\xf1\xb4\x99\xb0\x71\xdd\xbe\x46\x3e\x18\xd1\x5a\x64\xb1\x0c\x48\xf3\x22\x82\x83\x45\x7d\xf7\x2c\x95\x00\x1d\x28\x3e\xa7\x9e\xaf\x2f\x90\x85\x20\x87\x75\xf3\x9f\x86\xa9\x76\xaa\xc0\x83\x69\xc7\x0b\xff\x9e\x5e\x78\xbb\xd2\xb0\x8a\x28\xac\x05\xdd\x1a\x5c\x7a\x22\xd3\xc5\x93\xcd\xd2\x8c\xcd\x57\xc9\xcf\xaf\x1b\x88\x9a\xad\x6b\xc6\x04\x73\xfa\x71\xb3\xe1\x9f\x35\x6b\x73\x29\x98\x7f\x82\x89\x86\xbf\x60\x77\x66\x0f\x36\x2b\x85\xf4\x45\xcd\xb9\xd9\xaf\x6f\x60\xce\xee\x46\xea\x7a\x9d\x75\x51\xc1\xe1\xb7\xbb\xb2\x6f\x38\x5b\xaf\x27\x74\xe8\x82\xeb\xed\x6e\xec\x3b\x66\x48\x47\x65\x05\xbf\x8e\xee\xee\x53\x7b\xa3\xa2\x62\x88\x9b\xc3\x27\xb2\x33\xd8\xa9\x63\xfa\x4b\x44\x31\x54\x56\xf2\x27\x9c\xb5\x8e\x67\xa5\xfc\x75\x56\x9a\x31\x3b\x64\x27\xa4\x9d\xb2\x6b\x51\x11\xfa\xcb\x22\x49\x76\x3f\xff\x63\x59\x69\x3a\xcb\xd5\xdb\x8a\x4c\x75\x72\x4d\x9a\x67\x73\xed\x71\x5f\x72\xad\xb8\x2f\xd9\xbf\xb1\xf0\xdf\xed\x83\xef\x8a\x50\xc7\x13\xd3\xdc\xdf\xff\xe7\xd3\x78\xff\x21\x3f\xff\x72\xda\x37\xef\x63\x3e\xa0\x2a\x21\x7d\x2a\x2b\x0b\x80\xc2\x2c\xda\xa7\x5d\x43\x3d\x01\x30\xd3\x25\xfe\x31\xb5\x8d\x3a\x3b\x35\x35\x77\x9d\xdb\xad\xa6\xb6\xd1\x06\x18\x6c\x68\x51\x67\x65\x0d\x95\x43\xf7\xcb\x45\x84\x18\x24\xf4\x2e\x3a\x59\xd0\xeb\x80\x53\x0d\xdc\x93\xe5\x40\xf3\x9f\x4d\xa1\xf4\x12\xc1\xd9\x70\xa0\xb9\x5f\xd1\xaf\xe9\xb1\xb1\x91\xeb\x03\x1c\xd3\xca\x17\x6d\x03\x0b\x26\xc7\x46\x97\x8a\xed\x09\xec\x20\x2b\xd7\x27\x60\x4b\x6e\x3e\xf5\xc3\x3f\xa8\xad\x9b\xea\x21\xae\x38\x95\x95\xe8\x5d\x2f\xb2\x4f\xfb\x86\xc1\x59\x32\x95\xb7\x0f\x07\x42\x4f\xd4\x1a\x0f\x2f\x9f\xa6\x47\x1f\x54\x0e\x6f\x9c\x0e\x21\xc2\x9a\x3f\xab\xea\xfb\x3d\x9c\x26\x2b\x6a\xe3\x62\xd2\xd2\x15\xb3\x7f\x50\xd1\xdf\xb8\x63\x7c\x31\x6f\x3b\xd8\x33\xbd\x86\x03\x77\xaf\x78\xf5\xb0\xc4\x59\x1d\xb4\x50\xef\x31\xce\xb1\xfa\xa0\x3f\xb7\xc9\x67\x34\x1f\x78\x88\xee\x2d\x16\x4e\xf2\xca\x86\xcd\x90\xca\xc1\x56\xf2\xe0\x0a\x8f\xa8\x53\x4d\xb2\x42\x9b\x22\x5e\x61\x93\xdb\x49\xe6\xaf\xda\xf3\x3c\x99\x64\x89\x75\x32\x97\x97\xf9\x44\x08\xbd\x0d\xbd\x1b\x18\xce\x51\x27\xde\xfe\xd0\x14\x6e\xb6\xcc\x7d\x2e\x94\x10\x6b\x35\xd3\xe9\xb6\xfa\x90\xc6\xf2\x1c\x6f\x46\xe2\xfd\x5e\xee\x8e\x49\xa1\x1e\x65\x26\xa6\xc4\x61\x7b\x4a\x07\x03\x17\x9c\x19\x31\xf3\xc1\x33\xd1\xcd\x3d\xe6\x6a\x48\x9e\x3c\x2c\xd7\xaf\x72\xa9\xd2\x15\xac\xe9\x52\x3e\xc6\xe5\xda\x55\x94\x2b\x03\x2f\x3a\x98\x4f\x59\x4d\x44\x60\xfe\x80\x4f\x3e\x23\x38\xb0\x26\x57\xa7\xf4\x4b\x15\x31\x74\x9a\x8f\x54\x3f\x69\x2d\x53\xcc\x63\xfb\x28\x9b\xd7\x86\xa7\x54\x84\xfa\x45\x8d\xdc\x14\xe5\x12\x80\x9e\x39\x02\x8c\xf0\x85\x78\xaf\x51\x70\xb5\xba\x27\x39\x5c\x7c\xea\x6a\x93\x80\x4f\x4d\x57\x27\x1a\x7b\xb5\x04\x5e\x42\x71\x57\xd8\x7e\x25\x74\x78\xd4\x49\xb8\x70\x0e\xa9\xf3\x83\x3d\xf2\xf6\xb5\x14\x3b\xaf\x22\xde\x83\x80\x4e\x79\x67\x45\xf0\xd3\x6b\x1d\x99\x51\xca\x35\x62\x33\xfa\xe7\x86\x0d\xcd\x1d\x4f\x5d\xc7\xe6\x91\x41\x25\x0b\x9a\x4c\x55\xed\x57\xda\x79\xc8\xd8\x17\x8d\xaf\x6c\xb6\xd6\x88\x16\x37\xbb\xca\xaa\xa4\xd9\x65\x96\x1c\x15\x09\x32\xd3\xae\x61\x86\xa2\x55\xad\x77\x13\x67\x40\x29\x52\xea\x2e\x57\x94\x90\xc2\x0b\x7c\xc8\x52\x12\x50\x00\xee\x6d\x9f\xd1\x5b\x2c\x43\xee\x3f\x90\xd5\xad\x8c\x0a\x7e\x21\x97\x98\xdf\x1b\x6f\xa8\x5d\xbf\x10\xda\xcd\x89\x52\x89\xb6\x6e\x29\x33\x92\xfd\x80\xd9\xed\xf7\x6f\x4e\x20\x1a\xb7\x83\xf4\x17\x51\x47\xbf\x66\x2e\x24\x15\xbe\xe3\xa0\x91\x16\xb4\xfd\xea\xb4\x85\x7e\x9b\xa4\xbe\xe8\x09\xb5\xa6\x15\x39\x49\x9b\x6b\x22\x33\x43\x9e\xf8\x2c\x85\x95\xaa\x99\xe4\x2f\xb6\xdf\x8c\x74\xfb\x38\xe0\x96\x98\x38\x7a\x33\x69\xdb\xee\x08\xfd\x6a\xda\xf6\x85\x77\x0b\x2c\x35\xcc\x32\x66\x01\xa8\x80\x6a\x45\xe2\x10\xf2\x21\x74\x1e\xf0\xba\x1d\xb3\xec\x2a\x4a\x01\x61\xce\xe5\x1d\xe6\xd9\x83\x17\x18\x67\x3e\xbf\xc7\x43\x3f\xf6\x23\x62\x3b\x69\x71\x95\x32\x9a\x4e\x02\x1a\x36\xb0\x19\xd4\xe3\x3b\x5c\x9b\x39\x62\x84\xf6\x20\x51\x17\x53\x66\x84\x87\x1f\x66\x6e\xca\xb2\xb8\x8c\x13\x46\x29\x37\x44\x2b\x05\x6e\xe5\x83\x5a\xc1\x89\x1c\x92\x60\x4c\x80\xf2\x64\xc6\xc4\xc3\x89\xd9\x76\x3e\xbb\x12\x4c\x11\x51\x3b\xa3\xee\x3f\x97\x10\x62\x67\x18\x06\xef\xfd\x2e\xfe\x5b\xbd\x23\x1f\x03\x8d\x55\xcd\x64\xc0\xe4\xcf\x37\x02\x39\x67\xf3\xcb\xee\x39\xb3\x31\x69\x40\x9a\x6c\x06\x9e\x9b\x76\xc5\x59\x86\x34\x2f\x3d\xa8\x5a\x11\x2d\x65\xf3\xa4\xa5\x28\x01\xf4\x47\xa4\xb3\x1c\xb4\xb9\x82\x27\x44\xbb\xf3\xb9\xb2\xbe\x20\x55\x6e\x95\xf4\xdb\x86\x50\xb9\xcd\x5c\xc3\xfc\x0d\x24\x7c\x01\xfa\xe5\xa7\xcc\x23\x5a\x78\x40\xe2\x05\xc0\x98\xe9\xc1\x1d\x8c\xc3\x8a\x2e\x5b\xc8\xe1\x75\xea\xda\x73\x05\x86\x8b\x19\x0e\x6f\x73\x4e\x66\x0e\x05\x07\x2d\x2a\xaf\x13\x94\x57\x76\x06\xd0\xc9\x27\x11\x05\x66\x86\x54\x52\x66\x0f\x16\x95\x40\xaa\x0c\x90\xc0\x3b\xdc\x3e\x86\x3c\x5d\x9e\xc6\x72\xf5\xe4\xb4\x45\xe9\x69\x27\x27\x64\xdd\xf1\x44\xa6\x62\x56\x4d\x6b\x42\xfa\x7a\x18\x9b\x76\xa6\xad\x47\x73\x89\x21\xea\xf3\xc6\x49\xcc\x3e\x3a\xfe\x5b\x4d\xe4\x86\xdc\xa5\x70\x49\x89\x26\xa9\x96\x82\xd0\xa3\x56\x30\xa0\xe6\x09\x4e\xdc\xe7\x74\x89\xc8\x4b\xbe\x23\x9a\x04\xbb\x10\x94\xc9\x91\xf5\x61\x8a\x67\x1e\x3d\x5b\xd1\x16\x79\x20\x6f\x62\x31\x22\xd9\xad\x3a\x91\x77\x21\xa9\x5a\x6a\x13\xd9\x02\xc7\x51\x9f\xc8\xb7\x26\x9e\x74\x1e\x9c\xc0\xfc\x6e\xb5\xf1\x9b\xa6\xa7\x3c\x91\x33\x75\xca\xe1\xe6\x20\x86\x7f\x29\x4b\x48\xb1\x4d\xbe\xa1\xc3\x24\x3e\x39\xd8\x14\xcc\x69\x29\x4d\xe4\xcc\xad\xd0\xf6\xce\x4f\xe4\xd3\x8c\xcd\x1d\x29\xa1\x2f\xb0\x92\x1c\x12\x58\x8a\x66\xf8\x48\xa7\xac\x54\x04\xb9\xca\x9f\x74\x0a\xcc\x71\x41\x56\xb2\xc2\x44\x6e\x5c\x64\x1d\x6f\x9a\xf3\x3c\x78\xe3\xbc\x1b\x30\x96\xbf\x63\xad\xab\x66\x22\xaa\x53\x79\x63\x9a\xed\xae\xbd\xb8\x39\x8a\x15\xa2\xff\xc7\x33\xb9\x02\xd8\xb7\xf2\xe1\xa8\xd9\xaa\x62\xfa\x6a\x98\xf4\xba\xf9\x4f\x21\xe5\xde\xca\xdc\x40\xbe\x50\xc8\x5b\xd9\x09\x4d\x41\x8f\x55\xc9\x6b\x53\xee\xd0\xd6\x86\x8f\x53\xc1\xe1\xeb\x74\xeb\x0f\xd3\x29\xb7\x6f\x16\xac\x33\x91\xc5\xef\xfb\xeb\x09\x7d\x57\x69\xa4\xfb\x41\x8b\x3f\xbf\x4b\x6d\x21\x91\x6c\x9b\x47\xf7\x9b\x9d\x41\xc2\x6a\x70\xc2\xce\x48\x77\x61\x32\x96\x94\xf9\x6c\x3a\x96\x37\x64\x6b\xa6\x9c\x9d\x93\xb1\xf4\x7e\x5b\x16\x78\xf4\x55\x17\xc0\x63\x18\x83\xca\x8c\x8a\x86\x79\x75\xe1\x89\xd1\x2d\x98\xda\xcb\xb1\x8c\xa0\x5e\x78\xe5\x75\xd1\x22\x7f\xe7\x93\x23\x5b\x90\x4f\xed\xe4\xf1\xeb\xeb\x77\x83\xc1\xa1\x13\xed\x2e\x32\x0c\x65\x69\x51\xec\x79\xc0\xe1\x9b\x12\x31\x0e\x55\x39\x7f\x7d\x91\x54\x48\x4d\xa8\x66\x92\x66\x60\xb7\x95\x86\x03\xdb\x6f\xe5\x3d\xa9\xb6\x3d\xc1\x13\xf3\xcb\x5a\x52\xfa\x66\xef\x6d\xdc\x48\x11\x92\x46\xc9\x33\xf7\x51\x50\xf6\xd2\xe7\xa9\x4f\xb3\x5b\xf5\x3e\x95\xf0\x84\x82\xb9\x2b\x54\x87\xd3\x0f\xbd\x23\xd1\x77\xb3\x93\xcf\x8e\x2f\xb6\x3b\x69\x64\x60\xd3\x3b\x48\xc4\xcd\xa2\xf7\x63\xef\x8a\xe8\x5d\x09\xbd\x2b\x7e\x73\x96\x77\xf2\x63\x45\xe7\xa5\xb6\x93\x83\x23\x4e\xce\xdb\x0d\xde\xbc\xfd\xb6\xba\x94\xbf\x57\x74\xcb\x55\xf7\x93\x5a\x24\x30\x4d\x45\x2a\x75\xc8\xbc\xbb\x1f\x0e\x59\x53\x2c\xe4\x46\x02\xc0\xe5\x9b\x1d\x7d\x38\x48\x44\xd3\x1e\xe8\xc8\x9d\x0f\x72\x25\x17\x05\xfd\x2f\x9d\xb9\xaa\x4e\x9d\xb9\xb1\x29\x17\xbd\x07\x14\xb5\xa6\x82\x7a\x6a\x8f\xad\xcf\x6a\x22\xd3\xbb\xcc\x13\xea\xd6\xf4\xe9\x34\x93\xb7\x7f\xb5\xfb\x44\x1b\x29\xd5\x92\xdb\x87\x95\xea\xf4\xaf\xda\xb9\xbb\x7f\x61\x53\x4e\x15\x6d\xca\xe9\xff\xc7\xde\xbb\x70\x35\x8e\x23\x0d\xc3\x7f\xc5\xe4\x9b\xc3\xc4\x8b\x09\x01\xba\xb9\x24\xe3\xe5\xb5\x1d\x03\x19\x08\x77\x9a\xe9\x21\xbc\x1c\xd9\x56\x12\x13\xc7\x0e\xb6\x13\x08\x97\xff\xfe\x1d\x55\x49\xb6\x9c\x84\x4b\xf7\xcc\xee\xb3\xcf\x7b\x76\xce\x34\xb1\xee\xa5\x52\xa9\xaa\x54\x2a\x49\xd6\xbf\x9d\x28\x0f\x3e\x26\xca\xa7\x1e\x78\x46\x55\x7b\xd6\xe7\x89\x72\xa5\x21\x43\xb7\x3e\xdb\x76\xe0\x5b\x31\x1b\x83\x81\x6f\xf5\x4d\xd1\x7e\x9f\xbf\x83\x59\x05\x35\x9f\xc0\xf2\xcc\x04\x09\x32\xf4\xd1\x31\xe5\x9e\x65\x47\x0b\x37\x65\x2d\x74\x50\xbe\x1c\xac\xbc\x0d\xca\x36\x82\x32\x40\x50\x56\xe6\xa0\xe1\xa4\x8b\x42\x1c\x4c\x05\x6c\xc8\x0e\xde\x1d\x32\x38\x65\x39\xbc\x43\xd7\xb7\xfb\x3b\xab\x6a\x7e\x45\xb4\xe0\xf1\xcb\xd6\x1d\xbc\x15\xd4\x7f\x07\x2d\x09\xc0\x72\x7a\xb7\x0f\x67\x8b\xfb\xd0\x7a\xeb\x08\xe5\x33\x0c\xdd\xd9\x80\xc5\xa5\xfb\x5f\xad\x9c\x1c\x53\x73\x4a\x3b\xb0\xfe\x94\x74\x8f\xe1\xb6\xc9\x56\xd0\xf7\xdb\xe6\x91\x00\x7c\x2e\x36\x91\xde\xb6\xcd\x96\x76\x60\x8c\xb6\x81\x09\x66\xb8\xfc\x98\xe8\xf0\xbe\x45\x27\xb1\x05\xd1\x65\xfa\x45\x68\xbd\xa3\xc7\x34\xff\x84\xbb\x4a\x0b\xaa\xd2\x24\xdf\x98\x3b\x04\x0e\x74\x10\x99\xa8\x8d\x00\xfa\xe0\x0c\xc8\x71\x17\xce\x1e\x1d\xf7\x50\x87\x45\x0e\xb0\xc7\x17\x5e\x07\x51\x41\x77\x83\xcb\xcd\x9b\x17\xa9\xd4\x07\xfb\x70\x6b\x57\x06\x54\x66\x8a\x78\xaf\xc6\xca\xd6\x7c\xf1\x86\x3a\xb9\x0f\xc6\xe5\x06\xae\x19\xba\xdb\xe6\xfe\x06\x00\xbd\xb2\x65\x8e\xac\xf0\x01\x0f\x49\x56\x1f\xf9\x6a\x2c\x06\x67\x0e\xe1\xd4\x88\x7b\x3d\xad\x8d\x11\x08\xbd\x31\x2a\x19\x9b\xd0\xf2\x60\xdb\xe4\x96\xf6\x2f\x1c\x07\x0c\x12\xdf\x6c\x3e\x20\xa7\x4a\xf7\xdf\x52\x0f\xf8\x7e\x0d\x43\xfe\xf9\xdd\x0f\x2a\x09\x33\x2a\xea\x9e\xb1\xbd\x64\x1e\xf0\xfb\x91\xb3\x93\xa1\x03\xd3\xf0\x57\xcc\x9e\x85\x7a\xf1\xee\xef\x8c\x37\xae\x2c\x99\xe0\xfe\xef\xaf\x98\x71\x63\x13\x8c\x6d\x73\x55\x59\xe3\xe0\x54\x28\x17\xd3\x1d\xe0\xb7\x98\x1c\xf0\x7b\xfc\x71\x9f\xdd\xd9\xcf\xa4\xc7\xe9\xc5\x9b\x2a\x1a\x9c\xd5\x31\x8e\xa1\x13\x5b\x8d\x91\x55\x45\x2c\xc1\x0d\x3b\xf6\x19\xcc\x5c\x8e\x18\xb4\x83\x1a\x05\x8e\xdc\x34\xdc\x27\x13\x6e\x24\x33\x5c\xb8\xcf\x4e\xd4\xdd\xdb\x07\x4c\x75\xf7\x91\xc0\xf6\xb1\x1b\x08\x91\xd6\x32\xec\x43\x43\x4e\xc0\x07\xf1\x5a\x87\x62\x8a\xee\x19\xd6\xd6\x47\x02\x1d\x4e\x3f\xa5\x21\x9e\x3f\x1a\x85\x56\xdf\xda\x44\x36\x81\xc7\xa2\x5a\xc1\xdb\x6c\x82\x8b\xf4\x01\x50\xff\x69\x00\x04\x71\x36\x0f\x9f\xdc\x6e\x84\xde\x42\xfc\x06\x04\xbc\x73\xd5\x0c\xcd\xcf\xc8\xe6\x73\xe7\x0d\xc9\xfc\xb3\x49\xef\x0a\x7b\xbe\xb6\xc2\xb1\xfc\x73\x77\x0d\x87\xf2\x71\x3f\x27\xd3\xaf\x07\x73\x75\xd9\x7f\xb5\x00\x1e\x6e\x82\x00\xbe\xdf\xfc\x8f\x14\xc0\xe3\x0d\x10\xc0\x0f\x1b\x7f\xa7\x00\x5e\xf9\x8a\x0e\x93\xdd\x8d\x4f\x09\xe0\xbb\x0d\x7c\xbf\xb2\xbf\xf1\xc3\x02\x78\x88\xa0\x4c\x6c\x21\x80\x9b\xc6\xe3\x06\x7a\x61\x4e\x36\xac\xe4\x13\x8d\xaf\x6e\xe0\x33\x59\x6b\x2c\xfb\x8f\x35\x1e\xb2\xc5\x78\xf3\xce\x7c\xb0\xff\x56\xf1\xbf\xbd\x85\xe2\x7f\x69\xeb\x5f\x27\xfe\x83\xe6\xe7\xc5\x7f\xb0\x66\x31\xf1\x3f\x58\xb3\x3e\x21\xfe\x87\x6b\x16\x13\xff\xf7\x6b\xd6\xdf\x26\xfe\x7b\x8d\xcf\x98\x31\x7e\x9f\xa3\x00\x3c\x61\x68\x4d\x52\x07\x70\x50\x1f\x50\x1d\x78\xda\x97\xa7\xd2\x04\x1c\x77\xc0\x76\xd4\x44\xd8\x8f\xc1\xc2\xc4\xf5\x05\x7f\x4f\x44\x31\x7d\x01\xa5\xd2\xde\x90\xeb\x0b\xf7\x40\x03\x42\x5f\x78\xab\xfa\x2b\xe3\xc0\xc1\xf3\xd5\x07\x3d\x16\xb9\x77\x08\x6a\x47\x03\x5f\x49\x39\x86\x38\x6b\x57\xd0\x2c\x9a\xda\x97\xd6\xd1\x7d\x06\x20\xda\x1b\x9a\xd0\x19\xfb\xf0\x03\xe5\x23\xac\x5a\x6f\x2a\x1f\x7d\x73\x6d\xc2\xd6\xd6\x8d\x14\x94\x8f\xa8\x6a\xed\xc3\x99\xf6\xb0\x6a\xad\xcd\xea\x1e\x63\x70\x62\x48\xcc\x8d\x03\xdc\x6b\x61\xaa\xc7\xe6\x2e\xd3\x31\xb6\x51\xf3\x00\xde\x3a\xaa\x5a\x5c\xf1\xd8\x2e\xe8\x1d\x5b\xc8\x86\xbf\xfe\xbb\xf4\x8e\x78\xcd\x9a\xd1\x3b\x46\xa6\xf1\xb0\x66\x15\xf5\x8e\x74\xcd\xea\x33\x1c\x3c\xac\x59\x4f\xff\xb3\x7a\x47\xd5\x1e\x59\x5d\x70\xad\x6b\x6d\xfe\xef\xd0\x3b\x7a\xbd\x06\xe8\x1d\x7e\xaf\xf1\x5f\xbd\xa3\xa0\x77\xb4\x6c\xdf\xc2\x67\xa8\x61\xc7\x8c\xf5\x67\x7d\x62\x5d\xf6\x71\x78\x57\x24\x5d\x64\x6d\xc2\xe6\xcb\x8f\x68\x23\xe8\x77\xcb\x89\x80\x4c\x6b\x26\xb1\x1d\x5b\x3f\xae\x99\x0c\x1a\xa0\x99\x0c\x1a\x3f\xaa\x99\xa0\x8b\x50\x33\xd7\x4f\x6c\xc3\x3e\xd1\xf6\x8c\xc6\x41\x2e\xfd\x6c\x3c\x85\xdf\x30\xa6\x35\x95\xb9\x79\xaf\x58\xd4\xb7\xc4\xfa\x94\xce\x12\x34\x40\x67\x09\x1a\x7f\x41\x67\x99\x0b\xc5\xc8\x64\x71\xc1\xa0\xe1\x69\x57\xc6\x97\x7e\xe3\x33\xda\xcb\x66\xbf\x01\xe6\x83\x2d\x96\xfd\xc7\x14\x88\x00\x81\x1a\x49\xda\xcb\x30\x68\x3c\x81\x73\xc7\x7d\xd0\x78\x5b\x7d\x39\xc8\x5a\x4f\x83\x06\xde\x68\x39\x62\xf9\x45\xf3\x07\x9f\x6a\xfe\x8e\xeb\x2f\x49\xd6\xfe\x5f\x19\x1a\x60\x45\x9b\x61\x03\x74\x97\xad\xb0\x51\x35\xd7\x71\x70\xf0\xae\x6f\xc6\x9d\x3e\x18\x9c\xfb\x5d\xc1\x9f\x04\x1c\x2d\x19\x8e\x7b\x8b\xf5\x7e\x68\x19\x5c\xab\x01\x27\x81\xed\x41\x63\x68\x69\xdf\x8d\xa5\x41\xa3\x6f\xbd\xab\x9e\xc0\x15\xa6\xbd\x90\xf1\xae\x4b\xc3\x0f\x1b\x7d\xfe\x10\x02\x0e\x16\x5e\x70\xda\x0a\xdf\x66\x60\x3d\x59\xd5\x3c\x0d\x51\xc1\xea\xe2\xae\xf8\xd0\x94\x35\x2c\x1f\x23\x6d\xdc\x28\x69\x02\x53\xef\xbf\xc1\xd4\x89\xcc\xd4\xbf\xe2\xae\xfa\x86\xc4\xd4\x5b\xc0\x29\xed\xa3\xfe\xbe\xe0\x9b\x92\x5e\xc7\x98\xfa\x91\x21\x12\x58\x33\x30\xe1\x06\x98\x7a\x22\x60\xb2\xf1\xbe\xee\x3d\x70\x9c\xdc\x35\x38\xcc\xac\xa2\x23\x84\x87\x6f\xd5\x34\xc1\xb2\x8f\xca\x4e\x13\xd5\x48\x7c\xaa\x0f\x4b\x34\x87\x13\xae\xec\x4c\x40\xd6\xa1\xbf\x5c\x6b\x4f\xbb\x34\x9a\xdf\xf0\x78\x59\x0f\x3a\x7b\xd4\xc5\xd2\xbd\xa6\x8c\x8e\xd8\xfc\x21\x49\xc3\xe2\xd7\xd3\x06\x4c\x91\x2f\x69\xa3\xdf\xd8\x6c\xa0\xa4\xc1\x02\x41\xf3\x43\x49\xc3\x31\xd6\x7c\x43\xd2\x6c\xde\xb3\xca\xc1\x47\x71\x9d\x9f\x40\x42\xd7\xf1\xef\x61\x88\x9c\xf8\x0e\x1f\x95\xe5\x7e\xe2\xfc\x31\xd5\x79\xb6\x6c\x7c\xf3\xf0\x11\xbc\x08\xd7\xc0\xe7\x0c\x94\x1b\xa3\x6a\xe2\xe3\xb7\x97\x86\x71\x95\x46\xf2\x2e\xfe\xa0\x27\xf9\xbe\xf3\xa7\xfe\xb5\x3d\x71\x1e\x95\x35\x7c\x2a\xe2\xe7\x9e\xd5\xeb\x77\x60\x33\x14\x77\x0e\x57\x9f\x70\x86\x55\xf1\x77\x8f\x85\x19\x7b\xc6\xf7\x99\x4e\xbf\xf0\xeb\x82\xbe\xf2\x6b\x27\xbf\x7c\x85\xee\xfa\x66\x0f\xfd\x10\xf6\x86\x23\x4b\x3b\x37\x4e\x53\x86\xe0\x93\x66\xba\x0b\x7d\x7b\xa8\x42\xe7\x8f\x56\x8f\x70\xcf\xed\x1e\x4e\x4a\x6d\x0f\xb8\x2e\x3d\x31\x0d\x63\xc3\x5c\x3a\x64\x79\xf1\x1a\xd2\xa7\x3d\x46\x8e\xe1\x6e\x1f\x9f\x7e\x6e\x3e\x56\xf9\x99\x00\xcb\xb0\x8e\x02\x37\xeb\xbc\x75\xf2\xd0\x43\x17\x86\x08\x9c\x6b\xec\x93\x60\xc8\x1f\x13\x03\xd7\x6f\x90\x5d\xfd\xfb\xc6\xa0\xf1\x00\x4f\xae\x9f\xa2\x64\xe3\x9a\x00\xca\x12\x17\x3d\x1b\x42\xeb\x2f\xe9\x03\xa7\x46\xf3\xe2\x8d\xa4\xe3\xff\x26\x7d\x2e\xc9\x2e\x28\x40\xbd\x6e\xc3\xad\xa2\xb6\x33\x6e\x4a\x1b\x6f\xdd\xc6\xe3\x5f\xd4\x76\xac\xf5\x46\xf8\xe3\x1a\xce\xfa\x13\x68\x38\x5f\x9e\xfe\x97\x69\x38\xdb\x13\xd0\x70\x96\x26\x7f\xbb\x86\x03\x50\xac\x3e\x82\x82\xd3\x7d\xfc\x94\x82\x73\xf7\x88\x0a\x4e\xff\xf1\x87\x15\x1c\xbc\x12\xd8\x89\xfe\x3e\x05\xe3\xb1\x8a\x0a\xc6\xa4\xfa\xf7\x2b\x18\x05\x29\x29\x44\x6c\x2e\x25\xef\x51\x80\x3d\x4a\x62\x92\xcb\x98\x10\x56\x33\x7f\x60\x91\x66\xfa\x88\x62\x72\xf4\x28\x8b\x49\xf0\x12\x6d\x7e\x4b\xcd\x7c\xa1\x34\x2d\xd5\xa7\xe5\xf6\x67\xe4\x24\x78\x36\xad\xac\x37\x60\x5c\xba\x5f\x1a\x55\x6b\x1d\xe5\x24\x77\x79\xea\x7d\x28\x27\xfd\x7d\x21\xac\xe7\xcb\xc9\xa0\xca\x2a\x97\xe5\x24\x5e\xc3\xbc\x6e\x7e\x24\x16\xb7\xf1\x8c\xe2\xe9\x66\x62\x4a\xa2\xaf\xff\x39\xd9\x06\x4e\x0e\xff\x4f\xca\xb6\xd1\x53\x63\xcd\x5a\x43\xd9\xc6\x6f\xf5\xf6\xf9\xab\xca\xf1\x5f\x5b\xe0\xfe\x57\xa0\xbd\x2d\x9a\x1e\x87\x8d\xbe\xb9\x81\xb2\x69\x55\x92\x4d\x83\xc3\xaf\x73\x45\x93\xe4\xe2\xf2\x19\xcb\x2d\xc8\x95\x71\xd7\x3c\x60\x0b\xd3\xae\x79\xf8\x69\x71\x13\xa2\x41\x68\xf4\xd1\x6e\xe2\x07\xce\x32\x70\xfc\xec\x3c\x69\x69\xc7\x46\xbf\x67\xa6\xf8\x52\x6d\xe6\x43\x61\x1b\xc3\xd6\x83\x09\xf7\xf3\x1e\xa7\x26\xdc\x83\xc2\x1d\xd0\xae\x72\x07\xb4\x3f\xb4\x79\xa6\x55\x3c\x48\x72\x61\x14\xec\xab\xc2\xe0\xd6\x34\xf6\xfe\x98\x98\xdc\xaa\x66\x1b\xe3\xab\x2d\x73\xf3\x52\x3b\x37\x26\x57\xf1\x1c\xc7\x34\xce\x61\xef\x4d\x38\x33\x34\x34\x0d\x6e\x62\x93\x0c\xb3\x6b\x16\x32\xbf\xa6\x6c\x39\xfd\x82\x91\x9b\x85\xc8\x0d\x8c\xdc\x86\xc8\x0f\xf7\x3a\xe0\x3a\xe9\xf4\x8f\x3f\xb4\xa6\x31\xfa\xe3\xea\x2b\x0e\x0e\xde\x31\x7d\x70\xf7\xb6\xfc\x02\x7e\xd1\x7a\x32\xb9\xf1\xf1\x27\xcd\xc1\xff\xd2\x4e\x7d\xfd\x0e\x8f\xa0\x6e\x7c\x1f\x98\x3f\xd2\xad\x4b\xe3\xfc\xce\xc2\x0b\x62\xd0\x16\x6d\x1f\x16\x36\xc4\xdf\xb6\xd5\x1e\x3c\xe2\xb5\x32\xe0\x39\xd9\xfc\xf3\x0d\x93\xed\x3b\xac\xc8\x16\x46\xf6\xdc\xa4\xcb\x29\x83\x00\x61\xfc\x69\x14\xad\xbb\xb3\xbb\xf9\x5f\x0a\x08\xed\x16\x70\xb7\x59\x88\xdc\x92\x11\x2a\x22\x97\xe0\x8d\x0f\x07\xcf\x6d\x71\xab\xfb\x27\x7d\x02\xf2\x41\xfd\xeb\x30\x5c\x19\xc7\xb1\x89\x57\x67\x7e\xd6\xa7\x20\x43\xfe\xc3\x2e\xbc\xa3\x67\xe6\x13\x9c\xf3\xba\x46\x3e\xb5\xfb\x8d\x7c\x6e\xe3\x75\x2e\xd2\xe4\x9e\xef\x63\x5a\xdc\x37\x39\x06\xc7\x50\x7e\xca\x79\x6f\x8e\xdb\x67\x53\xb8\x78\x4a\x71\xb6\xd6\x32\xf6\x9c\x14\x3d\x1b\x23\x53\x46\xf1\x16\x5c\x99\x7c\xb0\xd9\x65\xec\x63\xef\x30\xc2\x93\x4a\xee\x44\xa6\x8f\x6d\xb4\xf6\x6f\xc9\x3b\x9f\x1f\x4e\x04\xd8\x13\x79\xa4\x6c\x3c\x27\xb4\xb1\x8e\xd3\x60\x4d\xda\x68\x79\x73\x1a\x48\xde\x6d\x1f\xd0\xfd\x36\x05\x2d\xa6\xdf\x49\xcd\x37\x05\xf3\x9b\x24\xbf\x67\xd8\xbb\x40\xd4\x13\x3e\x36\x07\xf9\xd0\x1c\xce\x65\xbb\x46\x13\x1f\xdf\x6d\xc2\xea\x37\xb8\x33\x7f\x0f\xe0\x14\x42\x75\x80\x1e\x1e\xe3\x86\x11\xa1\x3a\x36\x77\xec\x3e\x94\x57\x80\x9d\xcd\x3e\xc8\xab\xad\xbe\x79\xf8\xf3\x48\x93\xd8\x57\x17\x4e\x42\xb7\xe0\x31\x20\xeb\xa4\x8b\x22\x63\x68\xe5\xfa\x6c\xdc\x37\x19\x99\x26\x7d\xb3\xf5\xee\xba\x03\xcd\xbc\x7d\xf3\x48\x3b\x30\x1e\xfa\x66\x2b\x95\x56\x1d\x1f\xaf\x84\x7a\x08\x22\xe7\xd0\x7c\x25\x94\xed\xb4\xd9\xe2\x90\x9b\x31\x17\xd9\x4d\xa3\x19\x98\x78\x48\x70\x86\x32\x0f\x0c\xf7\x4e\xec\x04\xbc\x4f\xb5\xd3\xd3\x37\x1d\x98\x16\xfa\x49\x8e\x06\xe6\xfe\x3d\xf7\x93\x34\x30\xe5\x07\xbc\x60\x71\x2d\x51\xdd\xcf\xee\x11\x3f\x5e\x83\x93\xdc\x0f\x03\x73\xa5\x21\x89\x7b\xee\xd1\x2e\x91\xd9\xd1\x5c\x32\xfb\x82\x97\xcc\xae\x5b\x05\xf9\xfe\x49\x6d\x27\x42\x6d\x27\xfa\x01\x6d\x87\x53\x4f\x75\x77\x66\x97\xd7\x38\xf0\x33\xea\xf9\xcc\x9c\x07\x29\xb7\x1a\xc2\xe3\xd1\x6b\xa1\x69\x7f\x5a\xf8\xad\xd8\xd2\x46\x39\x97\xdf\x1f\xec\x4c\x36\x9d\x37\xa4\xdc\x3b\xba\x78\x36\xe5\xf9\x8c\x3f\xce\x87\xe2\xe4\xf3\x43\x31\x1e\x82\xeb\xdd\xc3\xf0\x33\xae\x77\x4f\x43\x70\xbd\xab\x0e\x7f\xd4\xf5\x6e\x1b\x51\xd2\xff\x9b\x46\xe5\xe9\x1e\x46\xa5\x7a\xff\x1f\x3c\x2a\x23\x3e\x2c\xf7\x92\x90\x8c\xa7\x85\x64\x81\x3b\x44\x0d\xb0\x0c\x84\x0d\x63\x68\xcf\x7a\x88\x67\x5a\xca\x5e\xa6\xa5\xac\x63\x02\xef\xfb\xd7\x82\x4c\xb5\x65\x99\x0a\xec\x72\x1f\xab\x3b\xed\xdd\xa1\xb6\xf1\x00\x47\x59\x5a\xf8\xce\xd5\x08\x8e\x34\x58\xab\xe6\x1a\x16\x1c\x73\x2b\x78\x9e\xda\x34\xac\x00\xae\x69\xd8\x33\x78\x1e\x78\xf5\x79\x3e\xb2\xc1\x40\xd1\x8c\x4d\x3c\xb1\xd7\xe4\xe6\x19\x2c\xc0\x78\x39\x93\xd2\xbd\x5e\x51\x4a\x7f\x91\x31\x09\xe3\x63\x1f\x16\x74\xe0\x7d\x41\x14\xeb\xf8\xf2\xe1\xf9\x68\x0d\xda\xec\xfc\x3d\x30\xa7\xdc\x15\x7d\x3f\x87\xd5\x46\x1a\x15\x7a\xa9\xc4\xd4\x97\x80\x8f\x7f\x5b\x47\x22\x58\x93\x41\xef\xed\xc9\x82\x7a\x3a\x69\xaf\xa0\x07\xff\x8c\xaf\xe8\x7f\x47\xfd\x7f\xdf\xa8\x9f\x1a\x07\x8e\x7c\x04\x80\x32\x25\xe5\xcf\xe6\xc6\x2e\x6f\x27\x33\x01\x4f\x3b\xe7\x6c\x71\xe7\x9c\x47\xee\x9c\x03\x4c\xc0\xbe\x08\x7e\xee\x5c\xcf\x2a\x74\xf6\xdb\x86\x9d\x4b\x8d\x91\xc4\x9e\xc6\xd3\xec\x29\x02\x1d\x3e\xb4\x8c\xe1\xfc\x23\x2b\x9f\x90\xe1\xeb\xeb\x70\x64\xe5\xcb\xfa\x0f\x1c\x59\x19\xe2\x98\x3c\xcc\x7a\x6a\x19\x07\xf8\xd8\x5a\x2b\xf8\xfd\xaf\xfa\xfb\x5c\x7c\xf9\xb9\x73\x1a\x31\xe2\xf0\x41\xc6\xa1\x29\xe1\x10\xa7\xdb\xde\x34\x73\x6f\x02\x6f\xdf\x9f\xcb\xda\x8d\x91\x35\x63\xf1\x9f\xe9\xae\xb0\x1e\xc3\x62\x7c\x57\xec\x08\xc0\xe4\x47\xdd\xf2\xa0\x09\x07\x06\x7f\x17\x84\xcc\x18\x09\xe6\xda\x8b\x05\x23\x79\x92\x19\x09\xcb\x6f\x1f\xe2\x41\xa7\xb7\x05\xe2\xea\x86\x09\x87\x1a\x2f\x57\xd1\x78\xfc\x88\x7e\x48\xf2\xa9\xdf\x07\x3c\x63\xd9\x32\xb2\x0c\x68\x7f\xdd\x33\x1e\x36\x4c\xa7\x0a\x57\x07\x1a\xa7\x99\xf0\x03\x97\x80\xaf\x3f\xbc\xaa\x7f\xd7\x10\x77\x7e\x01\x0f\x4b\xcc\x1b\xd3\x5d\xe3\x6d\xd3\x18\x8e\x25\x5c\x55\xb3\x71\xfc\x87\x78\xdc\x2d\x1b\xcc\xaf\xd3\x6e\x8b\xf8\xfd\x1d\x2c\x56\x7f\xfc\x84\x46\xbb\x39\x04\x57\xdd\xad\xe1\x0f\xb8\xea\xae\xe3\xd6\xc2\x52\x23\xe7\x12\x40\x09\x14\x6c\x19\xde\x47\x36\xae\x7d\xfe\xa0\xf4\xca\xbb\x02\x80\x4b\x93\xc7\xf5\x77\x98\xe9\xc7\x3a\xd6\x13\xf7\xf7\xc0\x95\xc5\xdf\x62\xcd\xfa\x37\x83\x7f\x69\x1c\x3f\x99\x7c\x99\x33\xcf\x6a\xf5\x49\x93\x59\x62\x31\xd2\xdb\x48\xac\xcf\xeb\xa7\x7c\x98\xfb\x12\xea\xec\x93\x4c\x40\x4c\x09\x22\x41\x8b\x4d\xa3\xe9\xbd\x31\x93\xde\x31\x16\xfc\xa8\xe9\x8c\x9e\x00\xa1\x71\xa3\x99\x44\x68\x5b\x85\x91\xea\x73\xa7\x86\xfe\x7b\x23\xc5\xe9\x3d\x7e\x6f\xa4\x3e\x9e\x13\x63\x4e\x68\x6b\xd2\xa4\xe0\x84\x56\x30\xec\xcc\x3b\x31\x9d\x13\xda\xff\x24\xf8\x40\x68\xf8\xb8\x1f\xe2\x5d\x76\xd9\xe4\x72\x65\x43\x62\x45\x9b\x39\x2b\xfa\x7e\x06\xdc\x27\x3f\x30\xde\x78\xc2\x87\x46\xc3\x7f\x03\xe8\x31\x77\x52\xfa\x09\xc4\xef\x19\xd6\xef\xab\xff\x56\x48\xcf\x8d\x56\x6c\x3e\x34\x0a\xc4\x9d\x21\x79\x74\x6f\x22\x9a\xd7\xac\x1c\xcd\xeb\xb2\xd3\x00\x5e\x30\x7d\x8a\x6f\x2f\xc0\x4d\xab\xbd\x8d\xc6\x9f\xc3\x2d\x14\x64\xb0\x41\xb8\xb4\xd4\x80\xab\x3f\xb6\xed\x29\x6b\x99\x24\xd3\x25\xed\x65\x84\xe2\x7c\xfc\xfb\x4f\x9c\xb1\x05\x5d\x36\xec\xda\x47\x5a\xd3\x88\xba\x76\x0b\xce\x29\x7f\x46\xc5\xe5\x67\x3d\xfa\x4d\x49\x33\x10\x82\xbe\xa1\xed\x19\xc3\xcd\xc6\xe1\xb4\x4b\xf3\x77\x7e\x1b\xec\x68\xb3\x11\x5a\xf7\xe3\x79\xee\xcb\x09\x8a\xbf\xd5\x86\x38\x9a\xff\x99\x4e\xc0\x8e\xfe\xb8\x67\x07\x0c\xd0\x87\x9e\xdd\xc7\x17\xae\xf6\x8c\x8f\xb7\xfa\xf9\x6e\x32\x67\xc7\x2b\xb3\xfa\xca\xd3\x56\x63\x6c\x06\x9b\xac\xe5\xea\x56\xe3\xde\xbc\x87\xcf\xd5\xad\xc6\x9d\x39\x86\xb1\x81\xd8\x0d\xd0\x7e\x9f\xb6\x1a\x9b\x16\x38\x8d\x8b\xbb\xe2\xaa\x5b\x0d\xdf\x1c\x3d\xf0\xc4\xd8\xec\xc9\x26\xb3\x2d\xb8\xc6\x0e\x36\xef\xac\xc0\xcc\xf6\x63\xc5\x89\xe2\x53\x63\x6d\xab\x71\x8a\xd7\x97\xff\x98\xe7\xef\x9b\x8c\x58\xb6\x04\x7e\x64\xf9\x19\x49\x04\x3c\x7e\x9f\x80\xbf\x2e\x4d\x11\xf0\xda\x9d\xfd\x79\x02\x5e\xd9\xff\xf0\xa0\xc4\x3d\x1a\x99\x86\x45\x7b\xdf\xcf\xd8\x8e\x57\xd6\xc1\xb5\xa6\xfb\xa5\x71\xf4\x69\xdb\xf1\x36\x77\x07\x69\xcc\xb1\x1d\xf7\x2d\xc9\x5d\xf2\x1d\x6b\x6d\xd3\x38\x17\x32\x75\xda\x04\xdb\x34\xf6\x0e\x7f\x6a\xcd\xc6\x66\xcd\x76\xe1\x60\x41\x15\xde\xed\xd8\x05\x0c\x4c\x76\x6d\x64\x7d\xad\xc7\x9f\x66\x0c\x71\x00\x8c\x21\x09\xfe\x46\xc6\xd0\xeb\xda\x6f\x32\x86\x41\xd7\xfe\xfb\x19\xc3\xd3\x00\x19\x43\x75\xf0\xb7\x32\x86\xb8\x67\x0b\xc6\x90\xf4\x6c\xc1\x18\xd2\x9e\x2d\x18\x03\xc4\x22\x63\x88\x7b\xf6\x14\x63\x48\x7a\xb6\x60\x0c\x71\xcf\xfe\x51\xc6\x30\xea\xd9\xff\x73\x8c\x21\x91\x16\xf7\x69\x03\x1e\x91\xfc\x1d\xde\x0d\x36\xf0\x06\x9e\x26\x9e\xa5\x39\xdd\x7c\x57\x1c\xe3\xad\x97\x07\xc3\xf7\xc4\x31\xcf\xb3\xf9\xce\x32\xc6\x42\xaf\xb7\x8d\x39\xa6\x8b\x77\x96\x68\xf0\x3e\xf6\xde\xb7\xae\xb4\xed\xf8\x45\xea\xd5\xd7\x79\xbd\x5a\xe7\x26\xaf\xe0\x5f\xdf\xab\x47\xde\xab\xea\x8f\xf5\x6a\x15\x7b\xb5\x21\xf9\x49\xd0\xbc\x53\x9d\x29\xce\x7a\xf0\x27\xdc\x5e\x35\xcf\x08\x33\xc7\x2a\x3c\x00\xf4\xd8\x61\xe3\xd3\x16\x45\x28\xc1\x4d\x52\x40\x26\xff\x46\x93\xd4\x18\x31\x51\x95\x30\x91\x48\xe2\x2c\xb5\xa6\x70\x31\x0c\xed\x53\xfe\x26\x36\x8b\x5c\x1b\xda\xdb\x8c\x1d\xa5\x96\xb1\x32\xc7\xb2\xf2\xb9\x55\xf9\x6a\x68\xb7\x60\x93\xc7\xfe\xfc\xaa\x3c\x66\x35\xef\x39\x13\x4b\xb6\x51\xf1\xee\x4a\x47\xa1\x8a\xc6\xab\x2f\x9c\x25\xce\x1a\xaf\xc6\x91\xbd\x0f\x86\xcc\x87\xc8\xb6\x80\xa8\x2d\x47\x8c\xc4\x9e\xf1\x18\xd9\x89\x29\x92\x0f\xe1\xfe\xc0\x34\xb2\x43\x13\x9f\xc8\xc6\x03\x3a\xf0\xa6\x37\x3c\x20\xf2\x25\xb2\x77\xd3\xdd\xbf\xdb\xee\x95\x42\x87\xbf\x4d\x58\x63\x0f\x5c\x73\x5e\x92\x46\x6a\x25\x1f\xa9\x89\x79\xa6\x1d\x1b\x8f\xa6\x11\xcc\x52\xec\xe6\xbd\x7d\xa0\x1d\x1b\x5b\xf7\xf6\x27\xf6\x9b\x56\xee\xed\x96\x76\x60\x74\x63\xfb\x07\xf7\x9b\x42\x1c\x9d\x91\xf5\xbe\xb7\xc3\x63\x6c\xaf\x31\x10\xd7\x62\x7b\xc5\x0c\x98\x88\x6a\x08\x60\xe1\x36\xad\xd6\xf6\x67\xb1\x33\x44\xec\x8c\x24\x32\xee\x4a\x6c\xaa\xf7\xee\xc6\x0f\xdf\x83\xff\xfe\x88\x66\x25\xef\x87\x09\x78\xf3\x11\x08\x78\xeb\xf1\x07\x08\x78\x8e\x59\x49\x36\x3d\x4e\x7e\xff\x6b\x67\x62\x1b\x02\xe2\x19\xb3\x3d\xe6\x1a\xbf\xc7\x77\x3f\xe1\x24\xc0\xcd\xf6\xf6\x1c\xcf\x0a\xf4\x1a\xfb\x92\x7b\x8d\x6d\xaf\xd9\xe7\xda\xb1\xd1\x38\xfe\x0a\x77\x36\x2f\xad\xd9\xfb\x6b\x70\xd3\x1f\x24\xb4\x0c\xe3\x68\x1d\x6f\xdb\x1b\x98\xd9\x8d\xa7\x85\x6f\x77\xf6\xca\xd3\x53\xa3\xbb\x6e\xc7\xf6\x97\xc9\xb4\x06\xf4\x91\x72\xd9\xfc\xf6\x86\x72\x29\xc9\xfc\xd9\xad\xff\xbb\x2f\x36\xde\x34\xb4\x0e\x8f\xbb\x44\x5f\xec\x9e\xf9\xf0\x64\xff\x24\xaf\xce\x1c\x79\xc2\x96\xdd\xb5\xf1\x68\x68\x66\x61\x9e\x98\x60\x62\x7e\x34\x85\x8d\x99\x6f\x31\x71\x7d\x52\xdb\x33\xc6\xa9\xbd\xaf\x1d\x1b\x0f\xa9\x6d\x8b\xdd\x97\xb7\x9d\x2c\x9e\x52\x9b\xf5\xad\x9a\xda\xf6\x8f\x39\x59\xf0\x39\xcc\x75\xf9\xf5\xbd\xcf\x5b\x03\x79\xdd\xc1\x97\x77\x48\xec\xe3\xf6\xd1\x98\xe9\x55\x6d\x2d\xbf\x84\xe0\x1b\xba\x9c\xec\x0d\x9f\xb0\xfd\x25\x90\xa3\x2b\x23\xfb\x9b\x76\x6c\x74\xc7\x76\x4b\xb4\xf9\x36\x3e\xee\xc6\xf6\x91\x76\x60\xf4\xc7\xf6\x0f\x3a\x9d\xfc\x07\xe0\xa3\x65\xb4\x62\xb3\x8b\x54\xb7\x64\x49\xbb\x7b\x53\x64\xd7\xc7\x96\x9a\x5f\xc5\x91\x72\x1b\x26\x47\xef\x73\x5b\xfc\x40\x68\xc1\x1a\xac\x67\x06\x6b\x3f\xb0\x9e\xe1\x2c\xcd\xcf\xf6\xf2\x24\x27\x21\xf9\x78\xf2\xc7\x7b\x47\x82\xc5\x3d\x3d\xda\xc6\xe6\xd8\x2e\xbc\x8a\xb2\xf1\x68\xaf\x98\xfe\xe8\x87\x15\xf7\x9f\xdd\xda\x90\x6d\x56\x5c\xb4\xf8\x92\x68\xb9\x9b\x2f\x5a\xee\x1b\xb8\x0e\x6f\xbc\xb3\x0e\xff\x4f\xe2\xd1\xc6\x01\xfa\xdd\x9f\x3e\x58\xf0\x84\xdb\xca\xcc\x91\xf9\x7f\x0d\x63\x9d\xf2\xa9\xfa\x90\x38\x51\x2f\xa9\xda\x8c\xa2\xbb\xab\xf6\xee\xa7\xe5\x6d\xcf\xd2\x5a\xc6\xc1\x9d\x09\xb7\xce\xff\x38\xd3\xee\x36\x9c\xe9\x65\x42\x2f\x37\x09\x47\xa0\x71\x85\x73\x34\x2e\xe9\xf6\xc4\xad\x4c\xfb\x94\x74\x9a\x09\x9b\xd5\x7b\x87\xab\xff\x66\xb5\x1f\xee\x40\xdc\xfb\xd6\x97\xf4\xa5\x48\x22\xea\x61\xe3\x2f\x77\xad\x7b\x24\x29\x30\xef\xaa\x5f\xd6\xd0\xfc\xc8\xe1\x46\xa8\x61\xc2\x24\x3d\xdf\x62\x35\x1e\xee\x32\x35\xec\x61\xb8\xfb\x79\x8b\x15\x5f\x47\xac\x59\xb2\xc5\x8a\x2f\x17\x7e\xcc\xd3\x43\x70\xba\x73\xb8\x64\x64\xd3\xfe\xaf\x0f\x46\x31\x09\x6e\xc5\x80\x23\x77\x3f\xe7\x7e\xb3\x25\x58\xc3\xbb\x34\xb0\x99\xec\xb2\x39\xb0\x95\xec\xda\xff\xa5\x81\xff\x38\x1a\x38\x37\x5a\x77\xa6\xcc\x9d\x7e\xd2\x9e\xfb\x17\x38\x1f\x38\xae\x8b\x7b\x3e\xa1\xaa\xde\x37\xdb\x87\xde\x1f\xde\xfd\xac\x42\xff\x93\xb0\x6c\x23\x17\xf6\x25\x2e\xbc\x24\x71\xe1\x95\x77\xd9\x66\xdf\x04\x97\x96\x3b\x73\xae\x4f\xcb\xe7\x16\xae\x8f\x9b\xf6\xb1\xd6\x34\x26\x9b\xf6\xc9\xe7\x8f\xcf\x02\xd0\x4e\xf7\x83\xb5\xfd\xdd\x96\xfd\x85\x15\x1f\x6c\xd9\x3d\x4b\xf8\x2d\x1f\x18\x56\x6b\xfb\x73\xa7\x41\xb8\x8a\x74\x84\x88\x7a\xc7\x94\xb8\x6e\xfe\x3d\xea\xd2\x6a\xa1\x5f\xbd\xec\xbc\x28\x1e\xbf\xf9\x43\xf6\xf8\x69\xc0\xe4\x35\xce\x7b\x83\x77\xc1\xfa\x7b\x9c\xfa\x90\x46\xb6\xec\x8f\xfd\x8a\x7e\x5f\xb1\xff\xbd\x60\x35\xef\xcc\x25\x53\xf6\x97\xf8\x29\xfd\xf0\xf4\x6d\xfd\xf0\x33\x47\x66\xc2\x15\xbb\x11\x5c\x68\xe7\xc6\x60\xc5\xa6\xfd\x0b\x8c\xb1\xd6\xc7\x7c\xc3\x84\x3f\x74\x73\xbf\x62\x6f\x9a\xfc\x1d\x77\x30\xd8\x71\x8f\xa5\x9f\x9c\xb9\x9b\x38\x2a\x5d\x69\xe6\x56\xa5\x99\xbb\xfa\xee\xcc\x5d\xb3\x60\xe6\xae\x5a\xff\x1a\x47\xe3\xff\x0a\xa1\xff\x2c\x17\xe0\xff\x8e\xc7\xff\x0a\xe7\xdc\x31\x4e\xe9\x2a\xab\x24\x6a\xe2\x6b\xc8\xf8\xdc\x36\xc1\x57\x80\x4e\x8d\x66\x80\xcf\x57\x2c\x71\xc7\xa0\x96\x61\x6c\x80\x58\x4d\x2d\x1c\xb1\x2b\x30\x57\xca\x0f\x30\xd9\x78\xb4\xfe\xbc\x5b\xb5\xf3\xc7\x73\x42\xb8\x5f\x07\x5f\x2a\x36\x4e\xa3\x8d\xec\x81\x71\xcb\xb0\x1e\xad\xed\xaf\x0d\xfe\x2c\x41\xcb\xb0\xbe\xb1\x3a\xce\x00\x98\x2e\x3e\x3c\xf5\x3d\xed\xc9\xa5\x93\x9e\xad\x5d\x1a\xd6\x8a\x19\xc1\xab\x56\x89\xb9\xba\x2e\x27\x57\xd7\x6d\x2d\x32\x0d\x1b\xf6\xf1\x1a\x46\x0a\xa6\x64\xd2\x84\xfd\x6d\xd8\x65\x75\xef\x81\xc2\xbb\x66\xd1\x18\x61\x85\x68\x40\xf3\x27\x8c\x4a\x5a\x27\x5a\xcb\xd8\xc7\xe7\xa7\xa9\x25\x8a\xb1\x1f\xb9\xd4\xa9\x61\xdd\x35\xbe\x40\xf3\x61\xba\x0b\xe7\xdf\xed\xd5\xfc\xa1\x9b\xfb\x74\xf7\x62\x0d\x5f\x06\x9f\x98\xe2\xf5\x3a\xe8\x92\x6f\xde\xad\x15\xe9\x78\x0d\x1f\x25\xe1\x84\xfb\x05\xfd\xcc\xfa\x26\x77\x73\x9d\x53\xc4\x5a\x6d\x76\xb1\xe3\x91\x09\x6f\x34\x76\x4d\x9e\x0f\x6e\x96\x6b\x34\xa7\x92\x5a\x56\xcf\xdf\xdb\xb6\x12\x20\x8b\x91\xa9\xb9\xc6\xf1\x10\x07\xb7\x07\x8f\x0c\x4c\xcc\x14\xee\xa0\x89\x39\x75\xc7\xdb\x30\x8e\xf8\xba\xdb\x00\xfc\x1c\x6c\xc7\x87\x07\x76\xba\xe6\x1d\x10\xe9\xe9\x86\x89\x41\x10\x0e\xcd\x4d\x6b\x7b\x80\x38\xc4\x37\xdc\x37\x06\x78\x93\xc1\x66\x1f\x1f\x0b\xaa\xee\xe7\x15\x26\x17\xda\x9e\x71\x0c\xf6\x48\xbc\xee\xa9\x89\xd7\x21\x58\xc6\x0a\x7a\xfd\xe2\x46\x31\x94\x85\x77\xe0\x1d\x7c\xbe\x26\xc1\x17\x87\x80\x66\xad\x55\x7c\xcf\xe5\xfb\x5d\x00\x45\x4f\x02\x74\xa6\xc2\x37\x5a\xb1\x17\x23\xbc\x00\xa9\xb9\x19\xe2\x93\xb8\x80\xde\x53\xfe\x84\x96\x65\x58\x63\x7c\xc2\x26\xda\xc2\x7b\x20\x36\x9f\xcc\x42\xf6\x6f\x78\x4b\x1f\xac\xe2\xfa\x61\x83\xf5\xd6\x37\xfb\x70\x5d\x87\x71\x0e\x80\xde\x9b\x2b\xdc\x53\x01\x5f\x1c\x35\x0e\x56\x37\x6d\xf1\x42\x9c\x75\x67\x3f\x6c\xda\x88\xdd\x00\x9a\xb0\x9e\xcc\x01\xb6\xf5\x1d\x60\xfe\x93\x31\x26\x7c\x5c\x1f\x00\xbd\x62\xa5\x70\x2a\x42\xae\x2b\x18\xae\xcb\xa7\x4d\x7c\x00\x6b\x6d\x1f\xb0\xf1\x05\x9f\x82\xc4\x4b\x28\x4e\x1f\xf1\x02\xce\xbd\x95\x80\x3f\x22\x4c\x0c\xeb\xab\xfd\x05\x1b\x3e\xc7\xdb\x2e\xcf\x13\x70\xa3\x8c\xcd\x15\x7e\x21\x03\xa2\x19\x3a\x0a\x54\xcf\x1f\xdf\x4e\xbf\xe0\x43\x8c\xfe\xb8\xa1\xd9\xfb\xf7\xfb\x63\xb8\x53\x75\x5f\x13\xef\x29\x36\xe3\xb4\x91\xe3\xf8\x4e\xfa\x8e\xb8\x0f\x2b\x3c\xce\x7d\x19\x9b\x1c\xd1\x2c\x9d\x8f\x01\x7f\xd8\xd8\x87\x11\x3c\xd8\xc4\xf7\x0a\x41\x31\x30\xf6\x18\x14\xd6\x23\x88\x88\x66\x82\xd9\xf1\x59\xaa\xd6\x12\x62\xff\x20\x6b\x09\xde\x70\x32\xb6\x4c\x19\x10\x63\xa6\x1d\xeb\x29\x7f\x4a\xb4\x39\xca\x6a\xcc\x9b\x6c\xca\x0f\xfa\x22\x6f\x07\x5c\xdb\x8f\x80\x91\xd3\x89\xac\xd1\x20\xe4\xc0\x58\x57\x1b\x90\x60\x03\x53\xc0\xeb\x7c\xe0\x5b\x3c\x84\xbd\xaf\xd9\x7b\xab\xfb\x23\x6b\x97\x71\x03\x0a\x8c\x74\x09\x5f\xdb\xc2\x97\xa8\x9a\x4d\x36\x93\x82\xdd\x98\xcf\xba\x55\x92\x0d\x04\xb1\x7a\x16\x7f\x8e\xa8\xea\xf3\x17\x5b\x7c\x68\xed\xb8\x8b\xaa\xd2\x13\xbe\x4f\x7b\xfc\x15\x1f\x78\xe4\xc7\x2b\xbb\xb6\x56\x35\xf9\xa4\x30\x5a\xf7\x57\x70\xfb\x07\x5e\xac\x7e\xfe\x15\x5f\x9b\x84\xc7\xdb\x1e\xf1\x02\x12\xff\x1b\xe4\xe3\x8f\xd9\x9f\x8b\x97\x71\xb1\x89\x26\xbc\x2c\xbc\x8f\xd7\x46\x1c\x8c\x1e\x4d\x56\xb5\x75\x68\x48\x2c\xc2\xc6\x5b\x56\xff\xf8\x43\x1b\x58\x5a\xd7\xb2\x2c\x9c\xc0\x5f\x90\x0c\xfb\x66\x8a\xdd\x3d\xc5\x3b\xfd\x46\x18\xa2\x63\x11\xdb\x34\xac\xb1\xf9\x80\xa1\xbe\xf9\x98\x67\xae\xee\x6e\x23\x43\x9a\xf0\xd7\xc9\x7a\x7c\x56\x76\x1f\x01\xc1\x70\xa9\x31\xbf\xd0\xe2\xa0\x1b\x83\xb7\x58\xa3\xc7\x6f\x89\xf4\x21\x6c\x9c\x83\xe6\xd1\x35\x37\x37\x71\x65\x10\xd9\xda\xc0\x34\x8c\x81\x39\x64\xe1\xbd\x75\xd8\xb4\xf6\xcd\x33\x3c\x4e\x8e\xf5\x9f\x0e\xc1\x2c\xcc\x1f\xea\x6e\xde\xa3\x96\x43\x62\xfc\x6d\x3e\xad\x5b\xc2\x1c\x6f\x6d\x02\x08\x78\x06\xbc\x67\x6e\x81\x76\x6d\x31\x4e\x6b\x37\x44\xf6\xf8\x0e\x59\x47\x15\xe7\x1f\x61\xcd\xae\x60\xbf\x9e\x60\xc8\x5b\x5f\x29\x4a\x66\x78\x91\x2b\xc4\x46\x23\xe8\x46\xb8\x7b\xc8\x1f\x8b\x83\xd7\x3e\x59\x73\x70\xd4\x1d\xde\xe7\xb4\x7f\x07\xba\xec\xe3\x63\x9d\x07\xf7\xb1\xc5\x26\xfa\x9f\x9a\x78\x3d\xfb\x77\x7c\x46\x0a\xae\x9d\xc1\x8e\x1d\xc0\x7b\x51\xc7\xc9\x16\xa8\x72\x5f\xcd\x47\xe1\x48\x44\x0c\x83\x6c\x6c\x23\x97\x1e\xc2\xf3\x87\xf6\x3a\x52\x56\x8b\xcf\xa4\x26\x76\xf9\x8a\xad\x08\x9b\x86\xfd\x64\x3a\x4c\x6b\x89\xcc\x2a\x32\xcc\xd8\xdc\x02\x9e\x6b\x7c\x5f\xd9\x02\x31\xdf\x59\xe2\x5c\x6d\x05\x1a\x83\xe7\xac\xf6\x86\xe6\x54\xec\xc1\x08\xb8\x0e\xbc\x75\xd5\xda\x66\x0a\xdd\xd9\xa6\x99\x4c\x95\x64\x68\xb9\x82\xc7\xbd\xf1\xd1\x74\xa9\x5f\x17\xef\xf6\x8a\xcd\xed\x62\xaf\xe0\x31\xb6\xd9\x5e\x9d\xe2\x25\x38\x76\x6a\x3a\x8c\xfd\xae\xcd\xef\xd5\x9e\x71\x30\x9e\xee\x00\xdc\x68\xb7\xf7\x05\x85\xf4\x20\x28\xa4\xb5\x18\xe0\xbf\x6f\x5b\xd3\xfd\x01\x16\xc0\xd2\xf6\x87\x73\xfb\x7a\x09\x8f\x25\x5a\xd6\xdb\xdd\x3c\x35\xac\xfd\xed\x60\x3e\x88\xbd\xbf\x03\x44\x86\x8d\xaa\x75\x32\xda\xb2\x35\xcb\xd8\xed\x99\x63\x9c\x54\xc7\x5b\x48\x6b\xa8\x0e\x1e\xc3\xdb\x7a\x80\xbc\x18\x4e\x95\xb7\xc6\xd6\x03\x66\x6c\x8d\xb7\x6d\xbc\x3a\x89\xf7\xa2\x65\xd8\x8f\x20\x9c\x06\x70\xf3\xa7\x71\xb6\x06\x7c\xcc\xda\xaf\xc2\x54\xdb\x3b\x5b\xc5\xd9\xc2\x07\xe6\x2b\x2f\x37\xfe\x03\x07\x08\x9e\x2d\x6d\x19\xad\xd0\x1a\xe0\x2d\x96\xcd\xbb\x55\xfe\x40\xf0\x01\x2e\x0c\x32\x45\xe2\xe1\x0f\x98\xba\x28\xc6\x07\xf8\x8e\xee\x69\x88\xbf\xad\xa7\xef\x58\x9f\x78\xb7\xfe\xa0\xbf\x2f\x6a\xd9\x7b\xb4\x52\x38\xb5\xdc\xea\xa2\xed\xbf\xb5\x9a\x82\xbf\xe6\x9f\xfe\x3d\x86\xc7\x70\x1f\x53\x2b\x18\x36\x34\xf1\x34\x7c\xb3\xcf\xf3\x66\xaf\x73\x5f\x32\x2c\x01\x33\x6e\xae\x58\x09\xbc\x5f\x61\xb8\xe9\x08\xa8\xf7\x2c\xc1\x87\x9d\x23\x13\x0f\xa4\xfc\x81\xac\xe9\x8e\x41\x6c\xdf\x35\x12\x08\x5f\x1e\x62\xec\x23\x1f\xa1\x11\x8e\xd8\x41\xf5\x0f\xad\xc5\x18\x87\xc0\x2c\x92\x75\xb2\x8d\xf3\x28\x45\xb5\x7a\x15\x1e\x01\xe1\x54\xb3\x8a\x3e\x1f\xa7\x63\xb8\xba\x6b\xdc\x40\xc9\x87\xd5\xb5\xaa\x78\x15\xce\x1d\x94\x3f\xf5\xe0\xea\xa8\x87\xaf\xc8\xd8\x96\x62\x00\x77\xc4\x87\x0a\xb8\xf9\xbd\x99\xf6\x51\xe5\x58\xda\x83\x4c\x23\x7c\xf5\x7a\xb3\xd1\xc3\xc3\x2a\xc7\xd0\xcc\x7a\xe3\x1b\x72\xd2\x6d\xd4\x56\x9e\xb6\x60\xda\xe1\x4b\xe6\xcd\xc7\x8e\x5c\xc3\xe4\x3b\xac\x33\x71\x42\xf6\x41\xca\x5a\x2e\x34\xf9\x2d\x00\x11\x64\x7d\x9b\xa0\xa3\xf0\xd5\x63\xa1\xd3\x5b\x5d\x80\xef\x94\x95\x69\x31\xa4\xc3\xcd\x5d\xf8\xf2\xfd\x1e\xa8\xd5\xac\xb7\x40\x7e\x77\x58\x2e\xf0\x11\x4d\x7d\x9f\x87\xef\xc0\xe7\xe0\xd1\xdc\x62\xeb\x32\xa3\x89\xef\x69\xff\xce\x99\x3e\xd8\x45\xb9\xfa\xfd\xd4\x65\x64\xdb\x3c\xc3\x70\xb7\x71\xce\x40\xb2\x0c\xe3\x6a\x1d\x46\xed\xc9\x2c\x74\xdf\x38\x46\xfc\xee\x9d\xf5\xc0\xad\xc5\x3a\xdc\xdc\x2f\xcc\x83\x53\x63\xdd\xbc\xb8\x07\x49\xb0\x65\x5e\xac\x23\x96\x4e\xef\xb7\x61\x83\xf7\x92\x3b\x71\xc6\x3c\x7a\x03\xa0\xc4\x1b\x34\xed\x9e\xb9\xc9\xaf\x8d\x9e\x58\xf8\xca\x29\x83\x79\x0d\xdd\xd3\x0e\xc0\x08\x75\x0e\x4f\x23\xee\x06\x5c\x27\xc0\xc9\x7a\x04\x7a\xa7\xc7\x77\x90\x6d\xc3\x3a\xb3\xf2\xcf\xa6\x98\xc2\x7b\x5d\x13\xe7\xb0\x1d\x9b\xfd\x2e\x48\xd2\xb3\x00\xb7\xf6\x0f\x58\x98\xd1\xab\xe6\x1a\x7b\x0e\x10\x51\x9f\xd1\xe8\xf0\x10\x64\xd3\x92\x90\x4d\xdb\xd2\x75\x9f\x3f\x20\x8c\xee\x37\x4c\x64\xdb\x2c\x83\x0f\x7f\xbf\xc5\xf8\x12\xb4\x0f\xcb\xc1\xb1\xd9\xe5\x62\xff\x89\x17\x9c\xa0\xf8\xff\x13\x96\xae\xeb\x57\xb0\x4a\x60\x32\xc7\x5a\x9f\x98\x99\xc9\x0b\x2e\x2e\xfb\x33\xa9\xbe\x53\xb4\xcb\xb9\xda\x3a\x4e\x94\xe3\x35\xb6\x7e\xb4\x3c\x30\x48\x89\x34\x59\xe5\x68\x1a\x96\x93\x0e\x2d\x71\x31\xc5\xde\xc5\x3c\x91\x04\xde\xdd\xac\x73\xb8\x50\xc8\x3b\x65\x60\x97\xe6\x77\x06\x57\x07\xeb\x96\x68\x76\x06\xde\xd6\xa7\x61\x2a\x8a\x8e\x7f\x11\x38\xcd\xcf\x80\xd3\x32\x06\xbf\xb7\xba\xab\x70\xf8\x32\x31\x57\x81\x4c\xec\x14\x81\x5b\xc1\xe9\xd5\x7b\xb0\xa4\x89\xbd\x84\x4f\x7f\x1f\xf8\x68\xbb\x3f\x90\x29\x90\x31\x8e\x71\x64\x4f\x4f\xd7\xf5\x22\x5b\xdb\x44\x9d\xb3\xb9\x0a\x35\xd9\x1e\x23\xf5\xef\x3e\x78\xfe\x0a\xf6\x6b\xed\x23\xfb\xdf\xe3\xeb\xac\xef\x0c\x00\x30\x6b\x59\x7c\xae\xfe\x31\xa7\xcf\x7b\x7c\x91\xf0\xf8\x60\xcd\x72\x41\x24\xb6\x31\x2a\x67\x9c\x21\x80\x24\x67\xea\xc4\x99\xd1\xc5\x98\x66\xdc\xc7\x59\x38\x68\xe6\xe2\x6a\x09\x7c\xb4\xad\x9e\x19\x0e\x00\xc8\x8b\xc1\x80\x35\xd7\xfc\x7d\x13\xb5\x98\x63\xb8\x02\xe5\xc0\xc7\xd0\xe5\x26\x07\x2a\xda\x16\xfd\xe5\xc3\xb7\xaf\x7d\x37\xf6\x02\x6b\x82\xfa\xd4\xf7\x8c\x1e\x86\xc8\xce\xe6\xcf\x03\xfe\x9a\xa4\x18\xc8\x00\x2f\x27\xdc\x7e\x82\x17\x0d\xd6\x2d\xff\x34\x17\x26\xf1\xb6\x95\x33\x72\xbc\xa3\xc5\x1e\x73\x1b\xcf\x01\x83\xff\xbe\x99\x5f\xd8\xc2\x74\xbd\x9e\xb9\x89\x97\x9d\x2e\x6d\xc3\x1b\x93\xf8\x14\xf9\x36\xb7\x18\x82\xae\x6b\xdd\xe5\x0f\xc0\x1e\x6d\xa2\x12\x7d\xb0\xc6\xcf\x99\x15\x04\x3c\x4e\x68\x38\xf4\xdb\x1d\xe1\x35\x31\x21\x2c\x93\x5a\x0f\x7f\x4a\x1a\xbb\xd1\xda\x3e\xd7\x5a\x6c\x09\xb2\x79\xb4\x69\x6a\x5f\x2c\xe3\xb2\x99\x6c\xb1\xfa\xbe\xb1\x19\x7a\x19\xe1\x93\xd4\x55\x60\x90\xd6\xaa\xd5\xc3\xc7\x22\xf0\xea\xc7\x31\x2c\x65\xf8\xb3\xc8\x23\x17\xb8\x37\xeb\x1f\x1c\x36\x30\xfe\x80\x64\x63\xc0\x79\x6b\xdc\x47\xa5\x1e\x0c\xa7\xad\x16\x63\xa3\xee\x91\x76\x60\x2c\x99\x2b\x4c\xf2\xdc\x59\x06\x9a\x42\x2e\x13\xdc\xc2\xea\x9b\x50\xbe\xf9\xd5\x1c\xb9\x38\xf1\x56\xc0\x6a\x65\x5c\x3e\x7c\x35\xb5\x04\x2e\x67\x44\x3b\x08\x9a\x6b\x9e\x90\xac\x13\xb8\x35\xf6\xe0\x71\x8c\xda\xc5\x03\x76\x7d\x82\xfc\xea\x7c\x84\xae\x60\x63\x5c\x07\x4c\x70\x83\x87\x3c\x5d\xb1\x86\x8f\x9f\xae\x00\x8d\x68\xb8\xbb\x32\xac\xed\xc6\x20\xe5\x19\x7a\x30\xdc\x97\x4b\xf8\x64\xff\xda\x1a\x67\xb6\xeb\x58\x70\x05\xaf\x95\xbc\xca\x4a\xf2\x61\xee\xa2\x55\xde\x9d\x80\x96\xf4\x7d\x15\xfc\x56\xad\x6d\xd3\xc7\x27\x0b\xdc\x07\x8c\x67\x4b\x76\x3b\xb4\x9e\x9c\x62\x37\xab\x07\x48\x2b\x57\x99\x6e\xf6\xc0\xaf\xa0\x4e\x1f\x61\x57\x0c\xde\x24\x3e\xdd\xb0\xc0\x10\x18\x99\x03\x34\x0e\x9c\x3e\xfa\x0d\xa1\xfd\x19\x2d\xf8\x1a\xc1\x7b\xec\xd6\x6a\x03\x4c\x4f\x68\x3f\xb3\x50\x63\x69\x4e\x1c\x54\x9e\xb0\xf5\x83\x89\x03\x0f\x7d\xf4\x00\xe5\x07\xc7\x28\x99\xae\x20\x6e\x72\x05\x9a\x19\x2b\x75\x12\x23\x62\xba\xe6\x7a\xd2\x60\x2b\x1c\xdf\x5c\x03\x93\x83\x15\x73\x3b\x40\x08\x0b\xb4\xd6\x76\x82\xf4\x8a\x8a\xda\xc1\x1a\xbf\xaf\x73\x9d\xdf\xd7\x39\x19\x42\xd8\xed\xe3\x0d\xd7\x01\x1c\x55\x21\x0d\xc4\xc3\x00\x23\xc3\x03\x8d\xb2\x96\x60\x70\xce\x1f\x70\x00\x1f\x71\x00\x43\x3c\x2c\x75\xb5\x86\x3a\xe5\xde\xfa\x10\xbb\xbe\x81\x61\xb4\x46\xec\xa5\x55\xbc\x5c\xf4\x71\x02\x74\x89\x86\xdc\x93\x6e\xd8\xc0\x2e\xf4\xb1\x2f\xc7\x01\xfc\xda\xbd\x16\x1f\xf5\xd3\xf4\x4c\xb3\x8d\xc6\x01\x9a\x24\xc7\xc0\xb5\xf8\x55\x90\x93\xa1\x78\x25\xdb\x06\x78\xa9\x30\x1d\x5a\x2b\x26\x93\x88\x4d\x60\xd9\xfb\x07\x9b\x68\x4e\x12\xac\x6f\x6d\x15\x17\x7a\x68\x65\xe5\x66\xf0\xa6\x61\x5f\x69\x91\x69\x18\x4e\x0f\xce\xb5\x58\x06\x24\x9f\xa3\x65\xd2\xee\x99\x21\x30\xa2\xbd\xe3\xed\x5d\x3e\xd0\x29\x4e\x73\xf4\xfe\x3b\x3e\x63\x90\xa0\x91\x24\xd9\x43\x32\x64\x18\x1f\x80\x0f\xa4\x3d\xb6\x0d\xa6\x04\x77\xd6\x39\x71\x3d\x3e\x80\x05\xce\x85\x87\xfa\x1f\xcd\x07\xb0\xe0\x04\xd6\x1a\xd3\x1b\x06\xd6\xd0\x4a\x97\x1a\x4c\x0b\x21\xc9\x52\xa3\xa4\x95\x3a\x7e\x40\x4b\xb5\x52\x92\x92\xd4\x77\x57\xee\x92\x95\xed\x4a\xe7\xeb\x76\x67\x95\x6e\x6e\x57\xdc\xde\x28\xec\x57\xee\x92\x92\x56\x4a\xa2\x51\xec\xd2\xc4\x8a\xc2\x94\x86\x69\xa9\x76\x5d\xfa\x75\x94\x50\x25\x49\x63\xdf\x4d\x7f\xad\xb7\xc3\x76\xd8\x19\x85\x6e\xea\x47\xa1\x92\xf4\x48\x10\x44\x0f\xf6\xfd\x88\x04\xc7\xce\x1d\x75\xd3\xa4\x1c\x39\x77\x86\xa6\x44\xce\x9d\xa9\x2a\xcf\xed\x50\x51\xfc\x8e\x02\x91\x8a\xae\xeb\x72\xbc\xa2\xc4\x34\x1d\xc5\xa1\x92\xc6\x23\x5a\x67\x31\xaf\xac\x72\x2c\xb0\x00\x25\x5e\x5e\x94\x85\x79\x25\x3a\x24\x48\x0a\x45\xc6\x24\x56\xc8\x01\x9d\x24\x8a\xae\x20\x20\x95\x3e\x9d\x20\x30\x6a\x5d\xe4\x70\xe6\xe7\x30\xf3\x1c\x01\x0d\x15\x1d\x6b\xaa\x04\x34\xec\xa6\xbd\x7a\x0e\x93\x23\x45\x2b\x0b\xba\xce\x72\x7f\x08\x59\x27\x8a\x95\x32\xab\xda\x57\x74\xa5\x5a\x57\x7c\xe5\x37\x56\xae\xae\xf8\x4b\x4b\x59\x61\x96\xde\xa7\x13\xd1\xf4\xb5\x7f\xc3\x9b\xcd\xb1\x77\xdd\xa7\x93\x1b\x68\x95\x41\x8c\x21\x86\x1e\xde\x97\x61\x1c\xa5\x51\x3a\x19\xd2\x4a\x8f\x24\xc7\x0f\xe1\x49\x1c\x0d\x69\x9c\x4e\x2a\x2e\x09\x02\xe8\xa4\xc6\x5a\x50\xb3\x26\xe7\x40\x0c\x30\x67\x80\x17\x07\x07\x22\x07\x91\x37\x0a\x68\x85\x3e\x0e\xa3\x38\x65\x88\x9c\x33\xfe\xf5\x76\x58\xd2\x4a\x2b\x2b\xed\x70\x65\x45\x69\x11\x3f\x64\x1f\x05\xa2\x19\xd0\x41\xe4\x3f\x51\xa5\xdc\x09\x35\x25\x1a\xb2\xb8\x84\x83\xc5\xf0\xe0\x12\xb7\x47\x15\x5d\xa4\x28\x8b\x8b\xe2\xb3\x02\x49\x08\xe9\xce\xbc\xc8\x1a\x16\x6e\xd0\x0e\x19\x05\x69\x4e\x19\x09\x8d\x7d\x12\xf8\x4f\x34\x9e\x5f\x6f\x9e\x3e\x5d\xf9\x74\x4a\x4d\xaa\x6b\xb6\x99\x34\x26\x29\xed\x4e\xde\x68\x84\xa7\xce\x34\x51\x88\xaf\x65\xb5\x14\xaa\xe7\x83\x21\xd2\x00\x75\x7c\x20\xa1\xcb\xbc\xe7\x1a\x46\xe5\x30\xca\xf0\xc2\xd8\xaa\x7c\x28\xf9\x00\x9d\x67\x8d\x4f\x0d\x92\x9f\x9c\xc4\xfe\xc0\x4f\xfd\x31\x65\xe4\x1b\x8c\x28\x1f\x22\x0e\x09\x44\x29\xba\xae\x84\xa3\x20\x60\x84\xc8\x68\x2f\xea\x64\xf1\xba\xf2\x6b\x38\x1a\x38\x34\xfe\x75\x7e\xa2\x13\x45\x01\x25\xe1\xaf\xca\xca\xca\xdc\x0c\xed\x12\x63\x38\x61\xb7\x5d\x52\x7e\x1d\x85\x09\xe9\xd0\x5f\x95\x61\x06\x11\x9b\x54\xd1\x28\x56\x42\x4a\xbd\x84\xf7\x28\xa7\xaf\x28\x24\x9e\xef\x22\x7d\x21\x5a\x24\x2c\x68\x0a\x89\xbb\xd3\xe4\x76\x00\x73\x4f\xea\x73\x19\x32\xed\xb0\xbc\x85\x31\x87\xf8\x7c\xc4\xdd\x68\x30\x1c\xa5\xd4\xfb\x86\x70\x63\x65\x95\x2e\x4d\xcb\xa2\x5a\x55\x30\x0f\xde\xc3\xa9\x12\x0c\x15\xa3\xd0\xa3\x1d\x3f\xa4\xde\xaf\xd9\xe4\x9c\xae\xb7\x13\xe2\x3c\x4e\x7b\x7e\x82\x1d\x90\xc6\xbe\x92\x48\xed\x69\xc5\xb2\xea\xec\x84\x2e\xa4\x4f\xe3\x6e\x4c\x62\xff\x1d\xe4\x49\x78\x23\x71\x97\x71\x00\x23\x8e\xc9\x44\xe2\x3e\x49\xe0\xbb\x14\x81\x25\x71\x77\x34\xa0\x61\x9a\x68\xca\xba\x3a\x07\xdd\x45\xac\x26\xff\x33\x68\x25\xc3\x61\x30\xc9\xf1\x9a\xfc\xab\x10\x4b\x92\x84\x0e\x9c\x80\x73\x3d\x97\x09\xd7\xc7\x54\xcb\x26\xf4\x2c\xae\x8b\xd3\x4d\xe4\xab\x38\x7e\xe8\x95\x45\x6f\xb0\x12\x0c\x75\x42\x4d\x02\x7d\x9a\x11\xb0\xa0\x3a\x0d\xd3\x14\xa7\x79\x8b\x21\x4b\x6c\xad\x13\x0a\xf1\xc7\x50\xbc\xaa\xec\x64\x93\xad\x96\x91\x4e\x01\x27\xa2\xdb\xe5\x29\x20\x01\xe1\x1c\x46\x81\x02\x0c\x16\xd8\x7a\xc5\x8d\x29\x49\x69\x59\x9d\x4a\x2c\x32\xb5\x37\x3b\xf6\xad\x40\xcd\xef\xf6\xec\x3f\x10\xfa\x96\xcc\xc7\xde\x05\x9e\x0f\xc2\xff\x1c\xec\x42\x9a\x48\x89\x53\xf2\x64\x46\x6c\x2a\xe5\x22\x85\xff\x7e\x7e\x7c\x54\x41\x9e\xef\x77\x26\x39\xf3\x98\x6a\xc2\x42\x69\x3f\x55\x3b\xea\x1e\x57\x7e\xda\x8b\x46\xe9\x89\x60\x46\x90\x37\x6b\x87\x75\xbc\x22\x94\x0b\xae\x35\xf1\x4e\x32\x19\x26\xda\x79\xa7\xaa\xa2\x92\xc5\xa6\x83\x68\xbf\xcc\x54\xab\x42\x77\x58\x8c\xe2\x87\x52\xab\x3f\xd6\x40\x97\xa6\xef\x37\x90\x57\x0c\xba\xe0\x0f\x55\x9e\xcc\x56\xae\x29\xb2\x90\x9f\xaa\x1c\xe6\x47\xce\xd4\x32\x3e\x2e\x86\x52\xc7\x52\x88\xcd\x5a\x5e\x31\x46\x64\x23\x90\xc1\x1e\xd2\x87\xf7\x86\xac\x2c\x98\xab\x3c\xf0\xc6\x49\x53\x0c\xfb\x8c\x1a\xca\x35\xca\xe9\x14\xa1\x5a\xf9\x34\x11\x20\x8a\x69\x5e\x9b\xe1\x11\x40\xe7\x7c\x22\xd5\xa6\xe7\x20\x80\xc2\xd4\xda\x7f\x2c\x28\xff\xf8\x3b\xff\x6b\xc7\xed\xd0\x8a\x86\x93\xd8\xef\xf6\x52\xa5\xec\xaa\x4a\xcb\x77\xe3\x28\x89\x3a\xa9\x62\x45\xf1\x30\x8a\x09\xc3\x64\x85\xe5\x63\xff\x4e\x68\x3c\xf0\x93\x84\x21\x37\x8d\x94\x51\x42\x99\x2c\x19\x4e\x34\x65\x10\x79\x7e\x67\xa2\x29\x24\xf4\x56\xa2\x58\xf1\x7c\x36\x95\x9c\x51\x4a\x61\x2c\x15\x56\xe1\x03\x89\x51\x73\x22\xe1\x84\xd5\x35\x1c\xc5\xc3\x28\xa1\xca\x83\x9f\xf6\x94\x28\x86\xdf\x68\x94\x2a\x1d\x4a\x15\x3f\x51\x7a\x34\xa6\xce\x44\xe9\xc6\x24\x4c\xa9\x97\x41\x70\xb1\x6f\x2b\xe7\xc7\xbb\x17\x57\xc6\x99\xad\x34\xcf\x95\x93\xb3\xe3\x6f\xcd\x86\xdd\x50\xda\x25\xe3\x5c\x69\x9e\xb7\x4b\x8a\x71\xd4\x50\x58\x36\xe3\xf2\x62\xff\xf8\x4c\x69\x34\xcf\xad\x43\xa3\xd9\x3a\x57\x8c\xc3\x43\xe5\xca\x38\x3b\x33\x8e\x2e\x9a\xf6\xb9\x72\xd5\xbc\xd8\x67\x55\x9e\xd9\x7b\xc6\x59\x43\xb9\x38\x56\x2e\xf6\x9b\xe7\x52\xed\x47\xd6\xe1\x65\xa3\x79\xb4\x07\x05\x9b\xad\x93\xc3\xa6\xdd\x90\x2b\x38\xde\x55\x5a\xf6\x99\xb5\x6f\x1c\x5d\x18\x66\xf3\xb0\x79\xf1\x9d\x55\xc7\x9a\xdf\x6d\x5e\x1c\xd9\xe7\xe7\x15\xa5\x79\xa4\x1c\x1d\x2b\xf6\x37\xfb\xe8\x42\x39\xdf\x67\xf5\x48\x90\x99\xb6\x72\xd8\x34\xcc\x43\x5b\xd9\x3d\x3e\x53\x8c\xa3\xef\xca\xf9\x89\x6d\x35\x8d\x43\x4d\x69\x34\xcf\x6c\xeb\x42\x63\xf5\x35\x8f\x78\x40\x39\x3e\x53\xac\xe3\xa3\x73\xfb\xf4\xd2\x3e\xba\x68\x1a\x87\x4a\xc3\x68\x19\x7b\x0c\x10\x2c\x2d\x82\x57\xfb\xc6\xc5\xf9\xb1\xfd\xcd\x3e\x53\xce\xec\xf3\xcb\xc3\x0b\xd6\x87\xdd\xb3\xe3\x16\xab\xee\xf0\xf8\x1c\x20\xbf\x3c\xb7\x35\xa5\x61\x5c\x18\xac\xf4\xc9\xd9\xf1\x6e\xf3\xe2\x5c\x53\xae\xf6\xed\x8b\x7d\xfb\x8c\xc1\x6d\x1c\x29\x86\x75\xd1\x3c\x3e\x62\xb9\xad\xe3\xa3\x8b\x33\x83\x01\x71\x64\xef\x1d\x36\xf7\xec\x23\xcb\x56\x8e\xcf\x58\x85\xc7\x50\xe0\xe2\xf8\xec\xa2\x79\x7c\x79\xce\xcb\x68\x8a\x71\xd6\x3c\x67\xed\x1e\x5f\x5e\xb0\x0a\x8e\xa1\x4e\xeb\xf8\xe8\xc8\xc6\x4a\x19\xf6\x01\x19\x97\xe7\xa2\xa6\x13\xfb\x6c\xf7\xf8\xac\x65\x40\xdd\xbb\xc5\xd1\x00\x02\xf8\x5b\x69\x5f\xf9\xc7\x0a\xab\x73\xe5\x1f\x4a\x37\x88\x1c\x12\x28\x67\xb4\x13\x50\x37\xd5\x94\x93\x38\x1a\xf8\x09\xe5\x19\xd8\x3f\xc6\x72\xe8\x63\x4a\x43\xef\x1c\xcc\x17\x32\xf7\x2d\x7b\x9a\xe2\x30\x16\xc3\xd7\x68\xd3\xf9\x38\xaf\x4f\x68\xce\x66\x8e\x3b\xca\xcb\x8b\xc8\xcf\xfe\x2b\x3f\x2b\xb7\xb7\xc0\x20\x6f\x6f\x6b\xca\xf5\x8d\xf2\xaa\xf8\x61\x92\x92\xd0\x65\xda\x25\x28\xb9\x6c\x2d\x97\xb3\x4c\xde\xa6\xe2\x55\xb2\x72\x8a\xae\x38\x75\xe5\x55\x9d\xaa\x7a\xb6\x4c\x66\x12\x18\x32\x09\xe1\xa8\xa0\xc8\x7e\x6a\x1d\xef\x68\xca\x50\x55\x15\xef\x7a\xc8\x78\xb2\x73\x3d\xbc\xa9\x2b\xaf\x75\xd1\x1a\xe7\xae\x85\xfe\x63\xa3\x90\x05\x33\xb2\x7f\xc8\x1f\x73\xc8\x6e\x6f\xb1\x4c\xf2\x2e\x2a\xa5\xaa\x0a\xfd\xba\xbd\x65\x0c\x9e\xcb\x8c\x28\x4c\xd2\x78\xe4\xa6\x11\x5b\x6a\x7b\x75\xe5\x55\x64\xf7\xf2\xae\x31\xd0\x41\x81\x84\xb5\xe3\xce\x94\x30\x76\x54\xa5\xa6\x94\x6f\x6f\x8b\xf9\xf3\x90\x06\xe2\x83\x35\xca\xbb\x35\xd5\x2b\x86\xd8\xdb\x5b\x92\x24\x7e\x37\x94\xa9\x44\xea\x96\x94\xcc\xdb\xe6\xe1\x97\x17\xb9\x5b\x18\x59\x4e\xa5\x92\xd0\x71\x31\x7c\x89\x06\x46\x9d\x55\x4d\x01\xa3\x91\xd0\x58\x84\xe1\x08\x4c\x3d\xb9\xa1\x47\xaa\x01\x94\x2f\xb9\x08\x18\x7c\xa6\x32\x14\xa9\x24\xf9\x01\x2a\x49\x90\x4a\x52\xa4\x92\x84\x51\x89\x5c\xf9\xab\x1c\x10\xda\x44\x96\xe3\x75\x8a\x9a\x04\x1a\xa6\x57\x4a\x5c\x3b\x9b\x3b\x04\x12\x0e\x63\x9a\xa4\x0c\x20\x2a\xa1\x80\x75\x0a\x94\x86\x9c\x74\xff\x62\x67\xd9\xdc\xa4\x15\x3f\xf4\xe8\xe3\x71\xa7\x3c\x54\x95\xdf\x94\xaa\x2a\x77\x73\x1e\x2e\x58\x13\x89\xb2\xc0\xc9\x70\x71\x51\x18\x21\x78\xb3\x5d\x9a\x4a\x8d\x9d\x4f\x06\x4e\x14\x24\xdc\x36\x21\x3a\xd8\x2e\xa9\x73\x29\x03\x6c\x7d\x9a\x32\xcc\x09\x6c\x6e\x6d\xe5\x44\x45\x2a\x19\xe6\x34\x33\x97\x58\x18\xa8\x52\xff\xae\xfd\x1b\xe8\x22\x03\x7a\x06\x49\x43\xde\x46\x33\xb1\xc3\xd1\x80\xc6\xc4\x09\x68\x8e\x2a\x56\x54\x9d\xae\x9e\x63\xe8\xda\xbf\xe1\x48\x62\x5f\xf3\x69\xa6\x40\x2f\xef\x8c\xbb\x47\x5d\xa6\xbb\xd0\x32\xff\x88\xe2\x44\x53\x52\x12\x77\x69\x0a\x86\x48\x4d\xf1\x68\xe2\x4e\x11\x85\x3b\x67\x1a\x69\x0a\xe3\x24\xae\xf2\x9b\xb2\xae\xec\xf0\x1a\x94\x1a\x94\x96\x79\x08\x86\xe7\x63\xbb\x41\x13\x37\xf6\x87\x69\x14\x97\x25\x08\x54\x5e\x8b\xa6\x78\x05\x92\xe0\x54\xc0\x85\x11\x1f\xf0\x08\xea\x6d\x97\x24\x32\xe1\x19\x2a\xa2\xa7\xb3\xa4\x01\x90\x4f\x67\xfb\x00\x21\x19\x28\x34\x48\x68\x91\xa0\xf2\x82\x62\x11\xbe\xac\xac\x32\xfa\xf9\x27\x1a\x96\x97\x97\x71\xda\x78\x85\xbc\x40\x2b\x0c\x90\xb2\xc0\xa1\x57\x8e\x59\xdf\x5d\xe5\x9f\x3c\x58\x80\x02\xd2\x0a\x71\x2a\x93\x68\x4a\x3c\x2d\x66\xb0\xfc\xe2\xa2\x12\x4b\x64\x88\x26\x17\x81\xf8\xe9\x9a\x35\x5e\xcb\x3b\x74\x33\x24\x31\x19\x94\xe1\x6f\x93\x91\xbb\x96\x77\x45\x22\x16\x61\xba\xce\x44\x6b\x61\x5c\x9f\xf3\x32\x45\x08\xf2\x6a\x55\x2e\x99\xde\x81\x64\x40\x53\xe2\x91\x94\x94\xc5\x07\x18\x81\x44\xe0\x9b\x58\x2d\xfd\x05\xca\x11\x75\xcd\xa3\x1c\xec\xe0\x74\xce\xf7\x60\xf9\x08\xb3\xe4\x81\xf8\x29\x8d\x81\x83\x1b\x71\x57\x53\x6e\x25\x03\xdd\x89\xa6\x74\x69\x48\xa7\xf1\x9c\x9b\xaf\xbc\x68\x98\x66\x76\xe0\xa2\x11\x58\x52\x94\x4e\x94\x1d\x1e\x59\x03\x29\x7d\x52\xce\x87\x28\xa6\x49\x14\x8c\x79\x71\xf8\xe4\xf5\x31\x9d\xa9\x3e\xc3\x61\x58\xf1\xf2\x09\xa3\xbc\xf2\x89\xa2\x0b\x95\x50\x55\x67\x6b\xd4\x94\x98\x32\x1c\x4f\x8b\x69\x91\xaf\x33\x0a\x3a\x7e\x10\x50\x2f\x87\x3f\x8d\x27\xca\xb3\x92\xa4\x74\x58\xce\xba\x5d\x09\xe9\xa3\xe8\x22\x83\x47\x71\x49\xea\xf6\x94\x32\x87\x98\xb5\x50\x06\x60\x8b\x02\x34\x6b\x06\xb3\x7c\xd4\xca\x75\xbb\x94\xf6\xe2\xe8\xa1\x5d\xba\xf9\x0b\x6d\x41\x9d\x31\x4d\x46\x41\xca\xf1\x39\x0a\xd2\x8a\x17\x85\x54\xd9\xc9\xb0\xcb\x63\x39\x38\x35\x3e\x86\x85\xd8\x4a\xda\xa3\x61\x39\x43\x90\x96\x75\x42\x1e\x10\x34\x15\xd1\x61\x39\xef\x85\xa2\xe7\xe4\x22\x29\x06\x53\x64\xc5\x06\xef\xfa\x46\x55\x11\xb3\x6a\xce\xdb\x5e\x3f\x24\xd6\xac\xf6\xbc\x5e\x27\xf2\x26\x53\xf2\x82\xa9\xdc\xcf\x4a\x40\x1c\x1a\xd4\x98\xbc\x4d\x68\x98\xd6\x0a\x1a\x1f\xce\xcb\xeb\xea\x8d\xb2\xa8\xac\xaa\x0a\xa0\x5e\x49\xaf\x57\x6f\xea\x99\x24\x83\xc0\xab\xc6\x46\x2b\x61\xaa\xbf\xa6\x44\xc3\x04\xd7\x00\x9a\xd2\xd1\x94\x89\xa6\xa4\x9a\xd2\x9d\x66\x7f\x5d\x68\x9b\xf5\xac\xa6\x8c\x69\xec\x94\xab\xaa\xa6\x64\x83\xcb\xe3\x56\x21\x0e\x4b\x64\x91\x6b\x2a\x34\x87\xbc\x00\x35\x81\x19\x0e\xc0\xb8\x45\xb9\x7b\x8d\xa9\x15\x36\x6f\x19\x32\x6e\xa6\xf4\x59\xd9\x16\xc4\x66\x91\x0c\x66\x6e\xd2\x67\x6d\x86\x52\xee\x7c\x02\x8d\xa5\x58\x18\xe1\xeb\x50\x53\xc6\x37\x6c\xf0\xa5\xf1\x2f\x52\x5d\x34\x9c\x9a\x67\x0c\xc3\x1d\x81\x5a\x36\x6b\x2f\x26\x43\x6a\xc7\x71\x14\x97\xdb\xa5\xbd\x8c\x62\xfc\x44\x21\x41\x4c\x89\x37\x51\xe8\x23\x75\x47\xa9\x1f\x76\x2b\xed\x92\x5a\x50\x33\x1e\x7a\x7e\x40\x95\xf2\xad\x8a\x73\x67\x9e\x1a\xd4\x41\x8d\x1b\x96\x63\xe5\x14\xb6\xda\x70\x78\xd7\x94\x1d\x65\x72\x9d\x63\xfb\x46\xa9\xf1\x34\x8c\x17\xd3\x0e\x58\x0a\x94\x2c\xe4\x06\x1d\x32\x45\x45\x69\xa2\x6a\x4a\x95\x4d\x99\x09\x90\x2e\x24\x2d\x40\x11\x91\x81\x11\xc9\xf5\x2a\xa3\x6d\x36\xe9\xd4\x59\x35\x5a\x06\x79\x82\xda\x60\xaa\x2a\x11\xd3\x08\xaf\x33\x88\x35\x85\x4f\xc4\x59\xed\x3f\x79\xf0\x81\x23\x40\xde\x39\x1a\xa1\x02\x96\xfe\x84\x2a\xd5\x1a\xfe\xae\xd6\x14\xc4\x46\x5d\x71\x62\x4a\xfa\x33\x35\x66\x25\xbe\xd4\x94\xdb\x0a\x4c\x9a\xa5\xa5\x6c\x1a\x3c\x23\xdf\xae\x61\xbf\x34\x85\x75\xab\x86\x7b\xc3\xd2\x0a\x73\xa6\xae\xaf\x85\xba\x70\xe7\x13\x26\x14\xf6\xb4\x7a\x53\x87\x6d\x0a\x3f\x1c\xd1\xb7\x2b\xd9\xac\x61\xf6\xdb\x4a\x34\x4c\x2a\xc3\x68\x58\x56\xeb\xca\x6d\x85\x4d\x48\x11\x7a\xb7\x12\x0f\xcd\x90\xb5\x79\x69\x62\x0c\x70\xf8\xb0\x52\x4d\xc1\xa1\xe4\x5a\xd4\x3f\x51\x91\x4e\xaf\x53\x49\xaf\x42\x7a\x40\xf4\xc3\xec\xdc\x60\x74\x93\x07\xd7\x54\x36\x77\x6e\x71\x4f\x3f\x83\xae\xc8\x34\xa7\x61\xc8\x4b\x83\xde\x54\x5e\x48\x81\x16\x01\x63\xca\x3f\x15\x64\x53\x8b\x88\x41\xe5\x37\x25\xbd\x5e\xbf\x51\xb1\x19\x44\x71\x8e\x5d\x1c\xe1\xcf\xb6\xb6\xc1\x6a\x15\x75\xfc\x06\x1c\xaf\x58\x2b\xf2\xc0\x22\xf9\xbc\x5f\x79\x3a\x5d\xe5\xda\x4c\x95\x6b\x37\x75\x31\xa2\xa3\xa4\xc7\xf8\xc6\x27\xab\x86\xba\x64\x5a\x78\x2b\xf7\x27\x49\x64\xa6\x35\x20\x36\x26\x4e\xf2\x4d\x55\x94\x5c\xc5\xa6\x8a\x52\x19\x09\x7a\x43\x53\xe8\x0d\x12\x7a\x95\x89\xe7\x8e\x1f\x92\x20\x60\x62\x9e\xf1\xa5\x94\x47\x4f\xb3\x47\x31\xe1\xbf\x0a\x36\xc9\x87\x71\xce\xdc\x03\x76\x85\x14\x50\x53\xc6\x91\xef\x31\xce\x81\x93\x31\x8d\x47\xf2\x5c\x9c\xab\xbf\xa2\xf1\x03\x2d\x29\xa6\x1f\x7a\x7e\xd8\x9d\xde\xed\x50\x76\x94\x4c\x87\x2a\x47\x9a\x32\xd0\x94\xbe\xa6\xf4\xd7\xa6\x94\xd9\xfe\x1a\xd0\x4e\xb6\x8b\xaa\x2a\x2c\x46\xc9\xf9\xca\x7c\x8d\x3f\x62\x55\x69\xca\xb3\x42\xb3\xc5\x27\x42\xce\x14\xcc\x69\xe1\xcc\xfb\x3f\xb8\xee\xdf\x80\xae\xc3\xd5\x02\x30\x00\xfd\x1d\x20\x46\xd7\xfd\x35\x26\x33\xa1\x01\xac\xfa\x5d\x1b\x18\x8b\x39\x4f\x49\x5c\x1e\x68\x4a\x24\xab\xc1\x05\xeb\xc4\x00\x97\x59\x43\x70\xc6\x69\x97\x38\xf7\x41\x99\xfd\x49\x77\x1c\x34\xd0\x4c\x0d\x14\xef\xe9\xf0\x43\xe5\x08\xa8\x25\x29\x47\x53\xda\x50\xc2\x28\xf0\x43\xad\x62\x4a\xa5\xd0\x94\x01\x5b\xf2\x03\xdf\xb9\x4e\x6e\x34\xee\xa6\x24\xa3\x79\x90\x89\xb7\x01\x07\x5f\x2d\xa4\x47\xd2\xd2\x26\x92\xf7\x87\xdb\x25\x74\x01\x91\x16\x34\x05\x39\x86\xca\x53\xae\x8e\xbc\x61\xf8\x80\xfa\x61\x95\x2b\x6a\x57\x95\x48\xd1\xf9\xec\x98\x99\xee\x33\x93\x0a\xfb\xe6\x2f\x2d\x65\x62\x6d\x21\x9a\x92\x69\xd9\x8c\xcd\xa3\xe7\xe9\x33\x89\xb2\xa3\xb4\x4b\x38\xc4\x4c\xa1\x09\xa3\x54\x01\x44\x3a\x01\xad\xb4\x4b\x4a\x4d\x69\x97\xa6\xf0\x2b\xb2\x71\x12\xcd\x34\x9e\x77\x4d\x66\xc4\x63\xb4\x10\x4e\x8d\xef\xe0\x53\xe3\x1b\xcd\x28\x8d\x85\xc1\x5a\xc8\x47\x33\xaa\xcb\xb5\xb3\x71\xcf\xc6\x57\x53\xc0\x4f\x86\x71\xbc\x1b\x4d\xc9\x59\xea\x8c\x56\xc6\x15\xb6\x72\x08\xb0\xe0\x88\x30\xa1\x16\x2e\x2f\x33\xb9\xca\x35\x27\x56\x91\x2f\x56\x01\x5c\x63\x22\x31\xca\x85\x98\x2f\x45\x66\x0d\x90\x82\xfb\x32\xd4\x33\x6e\x41\x41\xe3\x86\x60\x0d\x7f\x8a\x6a\xaa\x60\xc5\x05\xbb\xdf\x5b\x6a\x24\x18\x2d\x16\x62\x5c\x33\x31\x61\xcc\xb0\xeb\x17\x14\x42\x55\xe0\xc3\x57\xdf\xb6\x9f\xe6\x02\x00\x6c\x74\x82\xc1\xd3\x0a\x00\x28\x81\x37\xbd\xbe\x25\x1f\x9a\x42\x92\x21\x50\xc2\x3c\x3e\x94\x0d\x8d\xe4\x54\x38\xc7\xfe\xbc\xb4\x54\x30\xf5\x41\x29\x12\x57\xdc\x28\x74\x49\x5a\xe6\x94\x26\x1b\xa1\xa5\x35\xda\x0f\x82\x09\x5b\x24\xc9\x5c\x60\x13\x54\x7f\xb9\x4d\xd4\x0f\xde\xb4\x95\xfb\x01\xb7\x7f\x26\xca\x52\xd1\x38\x9e\xf9\x62\x4e\xd7\x1d\x0b\x17\xa4\x72\xa2\x6a\x4a\x5f\x6a\xa9\x58\xe5\x5c\x2b\x2d\x99\x32\xc1\x6b\xca\x1d\x56\x70\x07\x30\x66\xb0\xdd\x29\xbf\x29\x77\x41\x5d\xb9\x5b\x5a\xd2\x94\xfe\x54\x6d\x80\xab\xeb\x3e\x13\x33\xe4\xfa\xee\x66\x1a\x7f\xf1\x87\x5b\x2f\x60\x97\x81\xa5\xd8\xb4\x8d\xb5\xe7\x27\xb2\x71\x85\x67\x65\xf2\x1b\xf6\x5a\xc6\x8c\x07\x6a\x90\x4d\xe5\xf6\x96\xbc\xb6\x0f\xad\x41\xc9\x24\x74\xf7\x66\x57\xd9\xb2\x51\x68\x9e\x45\x08\x78\x08\xe7\x30\x50\x47\x33\x15\x79\xe6\xaf\x00\xe7\xe5\x7d\x8b\x29\x0a\x5e\xd4\xfd\x21\xfb\x82\xa6\xf8\x9a\x72\x0f\x13\x62\x1a\xfb\x3e\xec\x32\x68\xb8\x06\x6e\x97\x18\x07\x6a\x97\xd4\x2c\xcc\x97\x84\x79\x84\x98\xfc\xac\xce\xeb\x79\x90\xdf\x14\xfc\x26\x66\x97\xe0\x9a\xe2\xbf\xb7\x02\x67\xd8\xeb\x5e\x87\x37\xaa\xe2\x5f\x87\xc5\xba\xe4\xb5\x38\x98\xce\xd0\xe0\x25\x99\xbb\x08\xdf\x3e\xbc\x47\xc6\x09\x6b\x75\x4d\x61\xb1\x37\xaa\xf2\x4f\x65\x15\xac\xb4\x34\x19\x0d\x68\x99\x25\x09\xbb\xda\xbc\x95\xbc\x9c\x6d\xca\x50\x75\x1d\xde\x94\xc7\xb3\x46\xa9\x84\xa6\x69\x40\xcb\xf7\xd7\xd5\x9b\xeb\x75\x26\x13\x8a\xd6\xa9\x29\xcb\x14\xf4\xa5\x32\x63\x1e\xcc\x29\x98\xf7\xae\x92\xd9\xaa\x30\x73\x65\x5c\x34\x49\xe5\xa6\xbd\x5a\x01\x82\xb5\x1b\x4d\x89\xd5\x79\x3d\xe3\x05\x65\x53\x25\x74\x55\x0c\xbe\xf0\x73\x99\x8f\x15\x30\xbc\xcd\x16\xe5\x74\xf2\x5e\x59\x0e\x5d\x87\x63\x14\x2c\x15\xe5\xb1\xaa\x29\xf7\x95\xa4\xe7\x77\xd2\x32\x7c\x0a\xf5\x85\xd7\x0c\x7d\xa9\xde\x68\x0a\x7c\xac\xde\x7c\xc2\x2a\x0d\xd4\xd8\xa0\x01\xed\xc2\xbc\x9d\xd6\x01\x7d\x4d\x19\xfe\xdc\x24\xd0\x24\x5a\x44\xeb\x25\x0a\x32\xb4\x2b\xbd\x33\x3f\xe6\x19\xa7\x7e\x70\x6a\x68\x4a\x07\x90\x86\x73\x22\x62\x3f\x3b\x6f\x4c\x8d\x32\x5b\x86\x2d\x0c\x55\x65\x27\xd7\xf0\x04\xd7\x8b\x38\xed\x0a\x35\x2f\xe4\x0a\x92\x80\x5a\x79\x55\x6a\x4a\x87\x55\xcd\xaa\xac\x29\xe3\x3a\xc6\x7c\x12\xeb\xdf\x66\xd5\xee\x7f\x0b\x37\x1c\x00\x4e\xe6\x72\x23\x19\xa7\x42\x47\x57\x76\x72\x3d\x8e\x2d\xa4\xa2\x5c\x6d\x14\x4b\x87\x59\xc5\x71\xa7\xb0\xac\xa8\xcd\xd1\x22\x19\x01\xff\x4f\xb0\xd3\x39\x0e\x07\x12\x3f\x95\x28\xa6\xe0\x9e\xf1\x31\x37\x9d\xdd\x3c\x50\xc6\xbc\x2a\x98\xb7\x7c\x42\x4f\x65\xd3\x94\x31\xa8\x8c\xec\xb7\xb0\x7b\xf1\x0e\x4f\x98\xa9\xc2\xe3\x4c\x62\x9a\x09\xe6\xcc\x8f\x2f\x7d\xc7\xf2\x66\x49\x46\xee\x63\x41\xdf\x1e\x36\x9d\x75\xe1\x13\x7b\x5a\xa4\x4f\x2f\xe8\x60\x18\x90\x94\xe2\x32\xa6\xec\x46\x51\x1f\x2c\xff\xe4\x61\x8a\xb0\xe7\x2e\xf0\x19\x44\xf3\x57\xfe\xa2\xa2\x76\x29\x26\xc0\x4f\x32\x80\x63\xf2\x80\x90\xe2\xa6\xe6\xb3\x82\x59\x2b\x2c\x5e\x67\xa9\xb3\xbb\x3f\x98\x63\x4a\x77\x42\xe3\x46\x42\xd3\x16\xb8\xf9\xe5\xde\x87\xef\xda\x37\x64\xcd\xea\x4d\x9b\x85\xb4\x8c\x9f\x6f\xbc\x10\xb8\x2f\x18\x29\xde\x6a\x26\xba\x96\xea\x03\xef\xc9\x0f\xb5\x40\x7f\x90\x1b\x1f\x22\x6f\x6a\x24\x06\x91\xc7\xc8\x7b\x10\x79\x95\xdb\x5b\x9a\x60\xf7\xf3\x55\x79\xe4\x15\xf8\x05\xee\xf0\x14\xfd\x2b\x44\x2d\xdc\xdb\x41\xcd\x95\xe0\x3e\x98\x34\x58\x93\x60\x52\x99\x67\xd4\xf8\x94\x4d\x63\x10\x79\x9a\xd2\x9f\x63\xd5\x40\x70\xc0\x43\x91\x65\xc8\x40\x9a\x1d\x49\x39\xeb\xcc\x42\x04\xd3\x3e\x52\x6b\x11\x8d\xa2\xbe\x22\x26\x85\x04\x79\x03\x9b\x3b\x2c\x46\xa9\xc1\xee\x31\xda\x93\x21\xe2\xf5\xa3\x26\xdd\x80\x24\xc9\x49\xec\x8f\x49\x4a\x77\x7d\x1a\x78\x7b\x94\xf5\xc4\xa5\xfe\x98\xc6\x9a\x32\xc4\x94\x16\x19\x4e\xcb\x8d\x3c\x85\x21\x34\x2b\xa2\x4e\x99\x41\xe6\x0b\x12\x92\xa6\x74\x30\x4c\xa9\xa7\xa4\x91\xd2\xa5\xa9\x68\x47\xe9\x30\x10\x94\x28\x54\xc2\x28\x5c\x16\xba\x97\x2c\x52\xa6\xa7\x9a\x04\x46\x57\x82\xfc\xc3\x15\xc4\x4c\xbf\xcf\xdf\xe8\xb7\xe4\x5a\xfc\xaf\xe9\x7e\xf2\x53\xdd\x97\xda\x4f\x0a\x90\x4f\xd9\x23\xe4\xbd\xee\x1c\x27\x25\xad\x84\xb4\xa6\x9c\x51\xe2\xa6\x4a\x27\x8e\x06\xca\xaf\x31\xfb\xfe\xb5\x8e\xac\xea\xa2\x47\x07\xd4\xc2\x43\x1a\xe0\x08\x42\x32\x1e\xc5\x63\xd1\xf1\x1c\x8e\xfa\x81\x45\x31\x8e\x5c\x9a\x24\x15\x1a\x8e\x2b\x47\xc7\x0d\xfb\xd6\x3e\xfa\x06\xf3\xf1\xd7\x61\x1c\x79\x23\x40\xbc\x38\xcc\x22\x57\x5e\xf1\xfc\x64\x18\x90\xc9\x11\x19\x50\x45\x57\x7e\x95\xd3\x7e\x15\x67\xf7\xf8\x00\x72\xda\x2e\x94\xaf\x97\xb4\x12\x03\xb8\x47\x12\x61\x58\x9a\x63\x68\xfa\x55\x8c\xfd\xaf\x92\x19\xb1\x13\xc5\xf5\x99\xba\xf3\x7a\x76\xa4\x7c\xe5\x5f\x07\x23\xbf\x12\xd2\x24\x85\x23\x39\x35\xe5\xd7\xdb\xdb\x8b\x7d\xbb\x65\xdf\x1e\xd9\xe7\x17\x76\xe3\xf6\xf6\xd7\x3a\xb8\x58\xff\x43\xf9\x3f\x81\xef\xd2\x30\xa1\x1c\xb7\xe3\xd5\x8d\xca\xea\x7a\x65\xb5\x1d\x2a\xff\x50\x00\xc5\x95\x1c\x21\x95\x81\x1f\x56\xee\x12\x96\x06\xe9\x45\x6f\xea\x5d\xe2\x52\x27\x8a\xfa\x9a\xd2\x0c\xdd\x8a\x42\x42\x4f\xf1\xd3\x44\x21\x9d\x8e\x1f\xf8\x24\xa5\x49\x25\x2b\x78\x81\x7e\xd2\xa3\xd8\xa5\x8a\x1b\x79\xe0\x03\xcd\xe1\xf0\xc0\xc6\x1c\x2b\x69\x8f\x2a\xad\xe6\x85\x88\x56\x3a\xd1\x88\x55\xc8\xd4\x15\x0a\x75\x1c\x36\x2d\xfb\xe8\xdc\x56\x3a\x7e\x40\x79\xbc\x12\x47\x4c\xb7\xf3\x63\xea\xa6\x51\x3c\x51\xa2\x8e\xf0\xc8\x86\x96\xd2\x98\x52\x80\x01\x3c\xdb\x0b\x27\x6d\xe1\x3c\xaa\x1e\xd3\xfb\x91\x1f\xb3\x55\x08\x7a\x92\x2c\xa3\x3b\x1e\x53\xaa\x42\x5d\xd6\xe1\x74\x5d\x2f\x0c\xda\xe2\x62\x8e\x7b\x6d\xa8\x87\x3b\xd2\x50\x30\xd5\x8c\xa1\x91\x06\x94\xad\xa4\xdb\x25\xb5\xb6\x51\x5d\xad\xae\x6b\xf7\xf3\xf3\xb1\xe1\x25\x81\xc8\xb6\xa1\xc5\xf3\xb3\x75\x62\xd2\x95\xeb\xdb\xd4\xd2\xf9\x19\xb1\x8b\xb7\x83\xc8\xa3\x22\xef\x96\x36\x7a\xa3\xed\x38\x62\xe8\x8c\x79\xc6\xd5\x2f\xda\xf8\xcd\x8c\x63\xdf\xcb\x32\x56\xb7\xb5\x87\xf9\x19\xf9\xc1\x29\x51\x61\x55\x7b\x7c\xa3\x3b\x51\xfc\x40\x62\xef\x36\xa6\x1d\x91\x77\x4d\x9b\xbc\xd1\xa3\x51\x32\x64\x34\x21\x32\xae\x6b\x4f\xf3\x33\x0e\xe8\x20\x12\x99\xbe\x6a\xc6\xfc\x4c\x01\x79\x9a\xb0\x4c\xed\x90\x65\xdb\xd0\xcc\xcf\x8d\xb4\x50\xd6\xeb\x19\x9b\xb6\xca\x44\x7d\x66\x35\xc3\xf1\x67\xbd\x5d\xea\xa5\xe9\x30\xa9\xad\xac\x40\x3b\x77\x49\x25\x8a\xbb\x2b\x5e\xe4\x26\x2b\x60\xaf\x5c\xf6\x28\x23\xfd\xb8\xd2\x4b\x07\xc1\x8e\x1f\xc2\x71\x89\x30\xd5\xdb\xa5\x25\xa2\xb9\xfa\x6a\xdd\xfd\x6d\xc6\x74\xe7\x2e\x2d\xa9\xce\x92\xde\x2e\x2d\x92\xb8\x9b\x5c\xdf\xb0\xcc\x34\x64\xd5\x5c\x9e\x35\xad\x68\x30\x8c\x42\x1a\xa6\x92\x99\xd1\xbd\x51\xeb\x62\x65\xd0\xf2\x43\xbf\xe3\x53\x8f\xcf\x74\xb4\xea\xfe\x7f\xac\xb9\xa5\x76\xa9\xae\x8c\xfd\xc4\x4f\x95\x76\x69\xc9\x59\x6a\x97\x40\x67\x61\x33\xaa\x33\x0a\x02\x65\x40\x93\x84\x74\xa9\x12\xc5\x0a\x9b\x34\x2c\x9e\xb1\xfc\x81\xa8\xd0\xa3\x63\x85\x86\x63\x3f\x8e\x42\xd6\x2c\x14\x86\x82\xd0\x46\x02\xac\x80\x78\x9e\xcf\xd0\x44\x02\xa5\x47\x83\x61\x67\x14\x28\x0f\x24\x0e\xfd\xb0\x9b\x54\xda\xa5\x57\x64\xe3\x0d\xfd\xd9\x4f\x5a\xd1\x28\x4c\xa9\x57\xcb\xb7\xaf\x9e\xb1\x0b\x0b\xab\xaf\x1a\x0d\xef\x47\x74\x44\x77\xa3\xd8\xa5\x97\x43\x8f\xa4\x54\xce\x97\xa5\x9f\xd1\x61\x40\x5c\x7a\x9e\xbe\x95\xe1\x9c\xa6\xb3\x89\xaf\x9a\xad\x3f\xbf\xe6\x23\xba\x5b\x26\x9a\xa3\xb9\xea\x33\xd8\x00\x87\x71\x34\x4c\x74\x52\x17\xce\xd7\x8c\xae\x75\x07\x83\x31\xed\x24\xba\x8d\xdf\x23\x00\x2b\xd6\xdd\x97\x97\xc6\xeb\xae\xa4\xca\xf9\x09\x60\x3e\x1b\x27\xd6\xd6\x6e\xf1\xa8\x10\xc0\xa4\x67\x30\x11\xcd\x51\x9f\xfd\x4e\x39\x77\x6d\x5b\xc8\xe8\x91\x2c\x2e\xca\x84\x5a\x48\x60\xb2\x6e\x41\x27\x2a\x0a\x74\x14\xe4\x56\x79\xeb\xab\xaa\x16\x40\xac\x4c\x21\x03\x3d\x8e\x59\x9f\xdb\x25\x01\x4c\xbb\xa4\x16\xa1\xec\xe4\xa8\x97\x00\xe5\x38\x9a\xaa\x58\x1a\x26\x51\x77\xbb\x24\x55\x00\x95\x4b\x67\xcb\xf6\xd8\x28\xec\xe5\x8d\xe9\x52\xc3\xf9\xb0\xec\xff\xf5\x61\x61\xc4\xd6\xd4\xf7\xa5\x96\x98\xd6\xb3\x57\x6f\xca\x5e\xf5\xfa\x7e\x3d\x28\x37\x35\x09\x06\xb5\xde\xac\xf8\xc9\xc9\x28\xa6\x53\x23\xb9\x50\x05\x11\xf2\xbb\xfe\xec\x8e\xe2\x98\x86\x69\x8d\x0d\xc1\xab\x76\xa0\x7f\xa0\xd0\x6b\x87\xfa\x73\x9f\x4e\x6a\x0b\x55\x2d\xa6\x1d\xf6\xc3\x74\xf5\x40\x7c\x81\xe0\xaa\x2d\x54\x0b\x58\x6a\x89\xfe\xc3\x49\x0d\xcd\xd3\x9f\x5f\xb5\xae\xce\x1a\xd4\xfa\xf0\x53\xf7\x3b\x65\x24\x01\x47\x65\x0c\x09\xe4\x23\x6e\x18\x2d\xe8\xba\xc3\xd0\xb2\xb8\x58\xee\xe3\x97\xaa\x49\x29\x7d\x3a\x59\x5c\x2c\x77\xf5\x76\x89\x31\x02\x16\x54\x35\x47\x3d\x10\x27\x22\xa8\xba\xb8\xb8\x70\x38\xd5\x85\x32\x8b\x2d\x7b\xd7\xf4\x46\x77\xae\xe9\x8d\x0a\x98\xe8\xe8\xd3\xcc\x6b\x79\x8d\x81\xb5\xaa\xeb\x7a\x47\xf5\x2a\x6e\xcf\x0f\xbc\x98\x86\xba\x5b\x87\x85\x2a\x4b\xfa\xad\x93\xf3\xcf\x9e\x8e\x5b\x0d\x1d\x55\x1b\xe8\xd5\xfa\xe0\xb7\x4e\x7d\xb0\xb4\xa4\xf6\xae\x07\x37\x79\xcd\xd7\x83\xa5\xb5\x9b\xba\x54\x59\xef\xd5\xef\x94\xc9\xe2\x22\xa9\x70\xfd\x88\xc1\x98\xe4\x38\xe8\xe8\xc5\x14\xad\xa3\x62\xe7\x75\x5d\x67\x1d\x10\xfd\xe8\x40\x3f\x90\xeb\x3c\xff\xf2\x0b\x4e\xac\xda\x50\x63\x1f\x35\xa2\xb1\x01\xeb\xc2\x78\xf5\x35\x20\xbf\x9a\xa7\xdd\x46\x0f\x21\x8d\x6b\xbf\x57\x38\x01\xbc\xbe\x4a\x23\x76\x84\x33\xf9\xad\x0a\x2b\x70\xd6\x82\xd5\xea\x40\xad\x84\x8d\x0b\xaf\x99\x20\x81\x8b\xfa\x49\x05\x3f\x5e\x5f\xf3\x03\x99\x6c\xf6\x09\x26\x2f\xf8\x84\x3e\xcb\x0e\x74\x40\x8c\x68\x5c\xd7\xf5\x61\x5e\x07\x4d\x5c\x32\xa4\xac\x22\x14\x5e\xcf\xed\x92\xde\x2e\xd5\xda\x25\xbd\xda\x2e\x69\xf0\xc5\x02\x6b\xed\xd2\x6b\x26\x4f\x7e\x69\x97\x96\xca\x40\x28\x44\xad\xc4\xc8\x70\xcb\x2b\xd7\x7a\xed\x66\xa5\xab\xc9\x9c\x81\x6b\xf5\xce\x35\xb9\x79\x55\x61\xea\x9d\xe8\x2b\xed\xf6\xca\xd2\x4a\x57\x3b\xd5\xaf\x6f\xf2\x99\x7d\x86\x94\xad\x51\xe0\x7a\xa7\xc2\x86\x0b\x40\x79\xfa\x29\x77\x3f\xf1\x2a\xb8\x40\xd5\x49\xdd\x63\x24\x7a\x12\xd3\x8e\xff\xa8\x3b\x75\xaf\xc2\x6a\xd2\x5d\x46\x12\x9c\x11\x50\xf8\x1e\x85\xa9\x5e\xe5\x80\x2b\xde\x2b\x1f\x07\xac\x05\xc7\x13\xeb\xa8\x39\x00\x78\xcd\xd5\x78\xf9\x1a\xd5\xa0\x74\xad\x5a\x18\xcf\x73\xd6\x2d\x22\xc0\x80\x29\x47\x24\x48\x78\x04\x00\xc3\xbf\x05\x3c\x59\x10\x41\x5a\xad\xfe\x53\xf4\x72\x71\xf1\x14\x37\x1b\x88\x2a\x37\x75\x91\xa3\x04\xb1\x20\x86\xb5\x0e\x72\x21\x73\xc8\x80\x21\xf7\x5e\x5e\xda\x25\x7e\xdd\x03\x46\xa8\x04\x9b\x84\xad\x1e\x7d\x61\x55\xb0\x06\x5d\xd7\x89\xda\x65\x7c\x0b\xa6\x1f\xba\xc0\x95\x3d\xf5\x19\xbc\xc4\xf2\x1b\x21\x6a\x3c\x2c\xbc\x0b\x6a\x50\x06\x7d\x8b\x78\x92\x20\xb9\x1a\xaf\x24\xa7\x31\x5e\xdb\x10\x2b\xb9\x87\xb2\xaf\x6c\x8a\x76\x55\x61\x7b\x2a\x53\x90\x09\x00\xac\xb3\xd3\x2e\x55\xda\xa5\xa5\xcb\x32\xd1\xaa\x6a\xcd\x51\xb5\xd5\x7a\x57\xaf\xd6\x1d\xbd\x98\xa1\xc6\x34\x94\x5a\xbb\xc4\xfa\x82\x77\x22\xf8\x09\x72\x0b\xa2\xaa\x82\x81\xf4\xf5\x6a\xbd\xff\x5b\xb6\xb1\xd8\x5f\x5a\x52\x9f\x3d\x9d\x5c\xf7\x6f\x38\x7f\x72\x96\x2e\xcb\x9e\xd6\x57\xeb\xdd\x25\xfd\xa2\xec\x69\x1d\x40\xf2\xab\xe0\x46\x02\x49\x0c\xa3\x73\x84\xef\x4e\x07\xf0\x5a\x2b\x77\x74\x73\x71\x91\x5c\x9b\x37\x2f\x2f\xe4\xba\x5d\xfa\x3f\xff\x47\x28\x86\xed\xd2\x8d\xd6\x79\x43\x97\xec\xec\x74\x40\x40\xa8\xda\x1b\xe9\xd0\x0d\xa2\x77\xf8\xed\x0e\xaa\xd6\xd7\xdb\x61\xb5\xbe\x50\xf6\x74\x52\xd8\xdc\xaf\xab\x9e\xee\xa1\x79\x54\xcb\xfa\xb4\xb4\xa4\x6a\x85\x5e\x65\x3c\xb6\xc0\x20\x3c\xae\x1f\xb8\xc8\xee\x89\x26\x14\x85\xf5\x55\xad\x5d\xba\xc6\x9c\xdc\x22\x75\x03\x25\xdc\x1d\x51\x01\x9e\x64\xed\xd3\x49\xa2\x3c\xb7\x4b\x4b\xf2\x2d\x3f\x44\xad\xdc\x45\x7e\x58\x6e\x97\x34\xa5\x5d\x52\x97\x98\x76\x57\xaa\xb9\x30\xca\xaa\xe0\xaa\x4a\x37\x67\x3e\xdf\x84\x3c\x13\x46\x64\x40\x3d\xd9\xa9\xd6\x18\xf1\xb3\x62\x90\x9c\x17\xb8\x94\xd9\xe9\x87\x3c\x8f\x2b\x43\x0c\xb8\x1d\xc1\xe7\x40\xb2\xd5\x9c\x4a\x1a\x9d\x03\xa1\x97\xd7\x37\xa4\xfa\xaf\xb0\x7e\x9c\xc1\x7c\x08\xc4\x0c\xd6\x1c\x8d\x4f\xdf\xa5\xa5\xc2\x44\x25\xa4\x20\x96\x75\xc1\x1e\x34\x4f\x97\x78\x43\x9d\xe8\x1f\x57\x5b\x9f\xa6\xea\x9d\x3f\xca\x44\xa3\x9a\x3b\x8f\xad\x92\x57\xb5\xc6\xbb\xb8\xb8\x58\x66\xc2\x60\x71\xb1\x4c\x74\x26\x72\xbc\xa5\xf2\x02\xb4\xfd\xf2\xe2\x2c\x2e\x82\x38\x67\x24\x0d\x98\x60\x68\xad\x71\xf6\x0d\xd8\xc8\x58\xf8\x89\xd6\x2e\xfd\xb2\xb8\x82\x43\x07\x3f\xae\xaa\x6a\x54\x30\x27\x09\x4f\x7f\x08\xde\xa4\x79\xd8\x6b\x54\x1c\xea\x08\x8e\x0b\x9a\x04\x36\xe1\xbe\x53\x7d\xdd\xd1\xcf\xca\x8e\xd6\x85\x6a\xea\x8c\x18\x08\x43\x7f\xfd\xbc\xec\xa0\xb4\xf8\x3e\xa5\x55\xe5\xf2\xe2\xcf\x32\xb6\x4b\xf4\xef\x42\xee\x16\x18\x5c\x51\xff\x5d\x5f\x5b\xcd\xe9\x8f\xf0\x25\x87\x43\xf4\x67\x54\xe6\xb0\x7c\xc3\x4f\x86\x24\x75\x7b\x34\xae\x7d\xd7\xe4\x04\x93\xc5\x5a\x51\xd8\xf1\xbb\xb5\x67\xb1\x04\xe5\x6a\x9e\x9c\xef\x18\xf5\x00\xad\x99\x9c\x47\x03\x7a\x46\x43\x8f\xc6\x34\x36\xdc\xd4\x0f\xbb\xb5\xac\x23\x6c\x2d\x83\xd6\x85\x5a\xf0\x5a\x17\x87\xe8\x2d\xa1\xc8\x3c\x0f\xc8\xb0\x26\x2f\x03\x18\x5d\x65\x3d\x23\x82\x7d\x92\x3a\xd2\xda\xf5\x4d\x1d\x29\x04\x94\x40\x96\x59\x74\x93\xbe\x6a\x9d\x28\xb6\x89\xdb\xfb\x54\x75\x6c\x28\xa0\x8e\xbc\x22\x36\x20\x57\xd9\x78\x70\x71\x38\x87\x0e\x59\xbe\x99\x25\x9b\x82\xf8\x01\x5e\xf7\xaa\xa5\x11\x10\x74\xa1\x34\xea\x1b\xbc\x03\x0e\xb6\x3b\x9f\xca\x45\x97\x9c\x57\x2d\x0a\x83\x62\x2d\x7e\xa7\xbc\xc0\x48\x7f\x6a\xc4\x57\xbf\xac\xcb\x23\xfe\x9a\xd9\xcf\x92\x4a\xae\xbb\xef\x66\xe8\xdf\xe5\x36\x15\x3d\xce\xa2\x4e\xb8\x45\x44\x1f\xe5\x51\xa3\x98\xe6\xa5\xf7\xb3\xf8\x73\x30\xb4\xb4\x22\x8f\xea\x69\x1e\xc9\x09\x45\x9f\x64\x51\xb7\xb7\xe7\xb6\x75\x66\x5f\xdc\x36\x8f\x2e\xec\xb3\x23\xe3\xf0\xfc\xb6\x71\x7c\x7b\x74\x7c\x71\x7b\x79\x6e\xdf\x1e\x9f\xdd\x7e\x3f\xbe\xbc\xbd\x6a\x1e\x1e\xde\x9a\xf6\xed\x6e\xf3\xcc\x6e\xe8\x0e\x91\x20\x77\x83\x28\xa4\x36\x5a\x93\xf4\x37\x07\x95\x49\xae\x4c\xb7\x9d\x9e\x09\x6b\x1b\x9b\x1a\x51\x55\x4e\x3d\x41\xf9\xf9\x55\xe3\x7a\xa6\x2a\xd8\x95\xd6\xd5\x51\x0d\xed\xeb\x42\xe7\x94\x97\x15\xcf\x33\xcb\x89\x2e\x7e\x69\x7d\x3d\xd3\x81\xd5\xfa\xcc\xd2\xc2\x93\x97\x16\xac\x42\x54\x7e\x99\x66\x0a\xab\xa3\x82\xde\xce\x17\x12\xb3\x29\x75\x26\x1e\x7b\x78\xa2\x3b\x5b\x9c\xf4\xe6\x2e\x4e\x58\x6c\x99\x5e\xf7\x6e\xf4\x0c\x1b\xce\x75\xef\x66\x71\x31\x03\xad\xb3\xd3\xb9\xee\xdd\xd4\x58\x2c\xf2\x9b\xde\x3b\x6b\x97\x9e\x4a\xe7\xaf\x5d\x7a\xea\x73\x87\xaf\x59\x7a\x6a\x5d\x68\x21\xb8\x76\xe9\xc1\xda\xa5\x33\x67\xed\x22\x55\xd6\x79\x7d\x7f\x79\xd0\x0e\xd9\x02\xc1\x83\x05\x42\x97\x2f\x0e\xa8\x58\x16\xf4\x5f\x73\x26\x52\x30\x7b\x4f\xd9\x12\x72\x1c\x2c\x2e\x96\x1d\x1d\x6d\xe2\x44\xcf\xdb\x7c\xd0\x6e\x5d\x12\xb8\xa3\x80\x55\xd1\x23\x61\x97\x7a\xa6\x9f\x26\x35\x47\xbb\xe5\x83\x0a\x5b\xf3\x35\x52\x0c\xaf\xb1\x88\xb4\x17\x53\xe2\x59\xa8\x2f\x6b\x27\xdc\x44\x08\x2c\x52\xb3\xa2\x30\x19\x0d\x78\xe8\xb5\x4e\x2a\x22\x59\x6a\x7b\xac\xdd\x0a\xb5\x9b\xbc\x66\xb3\xb6\x22\x8a\xea\x64\xba\x8f\x62\x12\xb4\xa6\xe2\x77\x09\xd8\x7f\xf5\x59\x3e\xd3\xc2\x4b\x9d\x00\x24\xa2\xd6\x1d\x40\xad\x4e\x72\xd6\x32\x55\xd3\x19\xed\xe8\x33\x4c\xad\x28\x8d\xf2\x22\xdc\x86\x59\x28\x43\x66\x57\x7d\x8f\x5a\x0c\x42\xa1\x46\xa4\xb2\x7e\xf2\x8d\x04\xbe\x27\x7a\x74\x2c\xcd\xf7\x80\x3c\x4d\xde\xad\xd0\xd0\x6e\x59\x7f\xd9\x10\x24\x29\x49\x47\x49\x6d\x79\x55\xbb\xe5\xab\x9b\x29\x18\x07\x74\x10\x4d\xd1\xc4\x74\x75\x4f\x62\x99\xeb\x46\x83\x21\x89\x69\x2d\x27\x9a\x1d\xd0\x79\x1d\xa9\xbe\x51\x42\x2d\x12\x04\x0e\x71\xfb\x73\xab\x65\x22\x5a\xce\x04\x69\xc5\xe2\x73\x09\x75\xaa\x34\xdf\xc3\x99\x29\xdc\xa0\xce\xa8\x0b\x14\x28\x0f\x53\x21\x8b\xdd\xe9\x50\xf7\xfd\xea\x31\xcb\x6c\xed\xcd\xc1\x90\xe9\xf2\xfe\x98\xee\x93\xd0\x0b\xe8\x0c\xb7\x2d\x56\x33\x9d\x9d\xe7\x92\xa5\xce\x28\xa1\x87\x64\x12\x8d\xd2\x4f\x40\x25\x67\x9c\x85\xad\xf5\xd6\x40\x8a\xe2\x2c\xc3\x6c\xb1\x33\xea\x8d\x5c\x1a\x7f\xd0\x13\x9e\x2b\xeb\x40\xa1\x82\x79\xd4\x9d\x17\xec\xb0\xf5\xab\x5c\x60\xda\xa4\x39\x5d\x04\x2d\x8f\x72\xa1\x31\x8d\x13\x3f\x0a\xf5\x76\x49\x6c\x46\x95\xf8\x4d\x97\x9f\xd9\xaf\x5a\xf6\xa2\xc1\xff\xab\x7b\x56\x2b\x0c\x14\xa6\x61\xc4\xa1\xff\x14\x2b\xeb\x95\x6a\xa5\x3a\x8c\xa9\x52\xb6\x46\x49\x1a\x0d\x14\x73\xe4\x07\x9e\xaa\xbc\x30\x28\xda\x21\x2b\x33\xb3\xcb\x45\x88\xb4\xcd\x05\x08\xc3\xed\xad\x77\xf6\xbe\x62\x29\x31\x71\x7b\xd4\x1b\xe1\x16\x51\xae\x87\x8f\xfe\xbb\xf5\xf1\xf3\x5b\x1f\x4c\x77\x25\x45\x0d\x6d\x54\x5e\x5b\xdb\x54\x55\xd9\xe8\xeb\xf0\xe5\xa5\xe6\x69\x54\xeb\x68\x5d\xad\xa7\xf5\x51\xaa\x05\xfa\xa7\x2e\x86\x5c\x57\xeb\x69\x3c\x79\x76\xb8\x8f\xaf\xab\x05\xea\x2b\x78\x9d\x96\x07\xdc\x92\x1e\x85\xd8\xfa\x40\x7d\x05\x3d\xc8\x23\xfa\xc2\xaa\x46\xd1\x82\xa4\x75\x20\xd4\xe3\x21\x9f\xe8\xcf\x3c\x7f\x41\x11\x67\x65\xaa\x75\x4a\x74\x26\xdc\x32\xe0\xef\xe6\x02\x0f\xf5\xd7\x79\xfd\x75\x87\x70\xc8\x7c\xa2\xe5\x77\x9e\xe4\x8b\xcd\xfe\xdc\x3a\xee\x88\x7c\x59\x8a\x74\x57\x8a\xdf\x29\x7b\xb8\x30\xf0\x88\xc0\x13\x25\xf5\x42\x9b\x68\xec\x29\x22\x7e\x75\x7b\x4b\x55\xeb\x1d\xf2\xf2\x52\x66\x3d\xae\xb2\x1e\x07\x1c\x21\x01\xef\xfc\x80\xff\x86\x1c\x74\x69\x98\xa2\x82\x15\xc0\xe3\xca\xeb\xcb\x4b\xbb\x34\x0a\xfb\x61\xf4\x10\x2e\xd3\x31\xec\xda\xd6\x89\xd0\x92\x2f\xe0\xda\x04\x3d\x24\x65\x57\xad\xf7\x49\xd9\xd3\x1c\x6e\x92\x67\x2a\xca\x4c\x36\x06\x37\x9c\x8f\xe2\x40\xdc\x13\xfd\xb9\xb0\x3d\x10\x93\x32\xf4\x7b\x48\x32\x63\x18\x61\xcc\xe6\x3e\xd3\x82\xee\xc9\x35\xb9\xd1\x5c\x7d\x48\xb2\x7b\x4e\x08\x60\x6c\xa1\xbc\xbc\xfa\x9b\xab\x4e\xd1\xe2\xf6\x06\x2c\x16\x58\x7a\x42\xd8\xbc\x82\xe5\x96\x53\xa1\x8f\x69\x4c\xdc\xd4\x1e\x03\xc6\xa7\xca\xe0\x02\x03\xf2\xeb\x4e\xdd\xd5\x9d\x0a\x74\xfc\x62\x32\xa4\x49\xa6\x1e\x03\x73\xcc\x2c\x26\xfc\x90\x11\x6a\xfd\xee\xb5\x77\xa3\x75\x75\x47\xeb\xe9\x1e\x6b\x3a\x25\xb3\x9a\xfd\x74\x9b\xdb\x5a\x4f\x55\xeb\x29\x61\xda\x7e\xa7\x8e\x56\xc0\x4e\x65\xd8\x23\x09\xf5\xce\x68\xd7\x87\x9b\xe6\xfc\x28\x3c\x22\x03\x9a\xb0\x4a\xfb\xc8\xb5\x80\x17\xf7\xd5\xfe\xbc\x8d\x8d\x11\x29\xf7\xaf\xe9\x0d\xa3\x37\xb5\x4e\xf5\x85\x2a\x12\x4d\xa7\x12\x4f\x55\xb8\x53\x1e\x91\xf2\x6c\x34\x14\xd4\x58\x41\xb5\x46\xb9\x01\x76\x81\x4e\x43\xbe\xa5\x79\x80\xaf\xd7\xd7\x82\x9d\x79\x44\xa4\x75\xdd\x98\x8d\xda\x54\xc1\xd5\x6a\x95\x2f\xe4\xae\x09\xc3\xf3\x03\xfe\x4a\xb8\xbe\x76\x6f\x2a\x1e\x1d\x32\x8d\x33\x74\x7d\x9a\x00\xed\x24\x44\xbf\xbe\xd1\x52\x46\x39\xda\x18\xfe\x3e\x90\xc2\xce\xe7\x23\xc9\x75\xe6\x85\x55\xcd\x85\x11\x73\x19\x9a\x88\x0a\x8b\xb6\x29\x4c\xb9\x6a\x46\xf0\xd7\xee\x0d\xf4\xf1\x7e\x4e\xa6\x97\x97\x7b\x96\xbe\xa0\xeb\x1e\x74\x09\x42\x33\x5d\x5a\xd3\x5c\x55\xad\x43\x9a\xee\xd5\x1d\x30\x1a\x3b\x8b\x8b\x8c\xae\x01\xfa\x09\xd1\x17\x66\x4c\xdf\xdc\xf2\xf7\xe0\x87\x5e\xf4\x80\xf3\xed\xcd\xe4\x8a\x17\xb9\xc0\x27\x3e\x9b\xaf\xb8\xde\x50\xb5\x27\x3e\xf7\x0c\xfe\x6b\xce\x32\x02\x8b\x70\xbb\x04\xd1\x07\xec\x93\xef\xe3\xce\xdb\xb0\x7d\x9a\x61\xfe\x5b\x55\xbe\x38\x77\x74\x52\x61\x3a\x3d\x3d\x8a\x3c\x5a\xc7\x45\x5b\x40\xca\x0e\x03\xa1\x2c\x25\x69\x7c\x91\xe8\xa8\xaa\xb4\x33\xd4\x00\x18\x0c\xb2\x63\xb2\xff\x85\x01\xaf\x66\x12\xfd\x9a\xdc\xd4\x0c\xc6\xa4\xb3\xbc\x36\xe7\x1a\x06\x11\x26\x35\x83\x68\x8e\x6e\x92\xba\xc9\x3e\xb1\x7f\xd0\x29\x36\xba\x0e\x37\x50\x57\xeb\xe4\x37\x47\x88\x68\xb2\xb4\xa4\x5a\xa4\xec\x30\x32\x95\xa0\xd8\x25\x05\xf5\x94\x41\x9f\x27\xee\x49\x5c\x5d\xce\xc2\x63\xf2\x8c\xfb\x0c\x3e\xdc\xb7\x25\xfa\x2e\xd1\x7e\x07\x71\x74\x00\xec\x3c\xcb\x74\xc8\x3b\xc1\x8d\xbf\x06\x79\x79\xe1\x9f\x26\x51\x59\x0d\x1a\xeb\xa6\x3c\xc3\x5a\xf2\x0c\x3b\xc8\x2d\x61\x65\xb0\x7d\x1d\x80\x34\x63\x62\x93\xc7\x37\x45\xf6\x57\x7e\x18\xed\x19\x20\xd0\x58\xc3\x28\x23\x8e\x88\xbe\xf2\x7f\xaf\x6b\xc6\xf2\x9f\xb7\x64\xf9\xa9\xdd\x1e\x55\xab\x56\x75\x19\x7e\x1b\x1b\xf8\xb3\x85\xc1\x5d\x0c\xee\x62\x70\x6d\x77\x97\xfd\xac\x6f\x62\xe6\xf5\xcd\x06\xfe\xec\xb2\xe0\xea\x2e\xa4\xae\x55\xab\xd6\x32\xfe\x36\xe0\x07\x33\xaf\xad\x6e\x41\xaa\x55\xc5\xe0\xae\xcd\x82\xeb\xd5\xea\x2a\x0b\x36\x36\xa1\xec\xee\x36\xa6\xee\x36\x2c\x08\x36\x76\x31\xb8\xbb\xdb\xb8\xf9\xdf\x05\x6e\xbb\xbd\x5c\xa9\x2e\x6f\x03\x34\xe6\x26\x34\x5b\xe5\x50\x6c\x60\xb3\xeb\xbb\xd8\xec\x97\xea\xcd\x3f\x7e\x59\xd1\x8e\xc9\x87\xbb\xf0\x27\xc0\x04\x4f\xa7\x45\xe9\x99\x98\xc4\xc7\x04\xd5\xa9\x53\xc2\xd8\x2d\x77\x47\xa9\xd6\xa5\x94\x13\x39\x05\xb8\xfc\x11\xa9\xa4\x34\x49\xcb\x59\xb4\x72\x0a\xdc\x79\xa1\x5a\x3f\x11\x1f\x99\x63\x4b\xbe\xb5\x98\x4d\x08\x99\x92\xdd\xc5\x45\xb6\x00\x77\x61\x96\xe7\xad\xf0\x1d\x37\xce\x47\x9c\x6c\xf7\x2e\xe7\x32\x62\xff\x2e\x01\xaf\xa5\x76\xa9\x96\xc1\xce\x13\xb2\xdd\xc2\x1a\x53\x95\x0a\x1d\x10\x6d\x8b\x48\xb7\x42\x5c\x97\x0e\xd3\xc4\xc4\x32\x09\x6c\x66\xa4\xd1\x61\xf4\x40\x63\x8b\x24\xb4\xac\xa2\xea\x59\xae\x6a\x5f\x73\xe5\xdb\x23\x29\x59\x06\x7e\x07\x2e\x2b\x4c\xd7\xe7\xc1\xba\xf0\xfe\xcd\xd0\x50\xd8\xf9\x9c\xc5\x84\xae\xeb\xce\x9b\x3c\xdb\x79\x79\x91\x90\x57\x18\xa4\x37\xfa\xc5\xd1\xc7\xb1\x8a\xc8\x5b\x17\xc0\x38\x75\x7e\x83\x87\x28\xca\x1a\xaf\xf3\x9b\x38\xc4\x71\x9f\xe4\x88\x1c\x95\x1d\x15\xa3\x37\xa6\xa3\x5f\x5e\x56\xff\xe9\xbc\xce\x8e\xf1\x58\xd6\x64\xb9\xf2\x3d\x85\x5a\x7d\x0d\xfb\xba\x8e\x3f\x5f\xa0\x71\xcc\x98\xf2\xdb\x66\x99\x76\xa1\x7b\x73\x22\x93\x21\x71\xa9\x4e\x31\x65\x30\x4a\xd2\xcb\x24\x73\xc0\xd7\xdd\x7a\xe6\x35\xc3\xc2\x50\x09\x77\x9e\x01\x5b\x18\x6f\x25\x21\xa1\x9f\xfa\x4f\xf4\xf2\xec\x50\xef\x00\x63\xb3\x70\x6e\xb4\x4b\xc2\x62\xa9\x78\x24\xec\xd2\x38\x1a\x25\xc1\xe4\x9c\xa6\xcd\x30\xa4\xf1\xfe\x45\xeb\x50\xf8\xa6\xe2\xcd\xef\x3c\x60\xf5\xa8\xdb\xa7\x4c\xdf\x13\xb9\x92\xd1\x70\x18\xd3\x44\x3c\x7e\x62\x7b\x7e\x4a\x9c\x80\x5e\xe1\xca\x28\x4b\xde\x9f\x78\xa8\x4c\x65\x09\xe9\x24\xa0\xed\x52\x25\x19\x06\x7e\x5a\x6e\x97\x94\x76\x49\xad\xf0\x3d\x8e\xb2\xbc\x14\xb1\xd8\x1c\x0b\xe9\x03\xa0\xbb\xaa\x2d\xac\x6a\x04\xb7\x17\x16\x56\xd5\x57\xb5\x7e\x7d\xdd\x2e\x21\xd2\xad\x1e\x89\x13\x9a\x82\xa3\x03\xc6\x2c\xbb\x22\xea\x46\xbb\x6e\x97\xc0\xfd\x9a\x61\x0a\xb2\x40\x88\xa7\xb0\x05\xec\x6e\x14\x43\x7c\x07\xf7\x7c\xaf\x71\xf5\x6b\xdf\x8f\xfc\x31\xc4\xb3\xd0\x32\xc5\xe0\xcd\xcd\x5c\x50\xb9\xa8\xbf\xae\xde\xd4\xad\x6b\x47\x40\xed\x68\xab\x00\xf5\xf5\xea\x4d\x01\xf0\x76\xc9\x2d\xe2\x0c\x9a\xf1\x62\xd2\xed\x66\xa1\x64\x48\x83\x00\x90\x0e\x41\xbc\x52\xba\x34\xbf\xf5\x02\xa2\xd6\xa0\xc9\xe2\xac\x96\x5b\x6f\x87\x0c\x6f\xa3\x34\x3a\xa3\x63\x1a\x27\xd8\x1a\x7d\x4c\x69\x1c\x92\xe0\x8c\xf2\x17\x6d\xce\xd0\x60\xe0\x71\xc4\xb8\xa3\x24\x83\x8c\x8d\x2a\x8d\xc7\xd4\x08\x86\x3d\xf2\x03\x20\x15\x80\x28\xc1\x5b\x28\xbb\xa3\x20\x38\x77\x63\x4a\x43\x05\x8e\x3a\x29\x0c\xae\x5d\xd6\x1a\x7c\x9d\x04\x64\x02\x57\x95\xc4\x51\x90\x64\x1e\xd3\x1e\xed\x50\xb8\xb4\x99\x41\xe4\x89\x8f\x13\xdf\x4d\x47\x31\x6d\x86\xfc\x83\x2d\xe4\x07\x47\x11\x18\x65\x49\x4a\x95\x9e\xef\x79\x34\x54\x82\x28\x1a\x2a\x61\x84\xe7\x18\x94\x30\x4f\x8f\x86\x34\x54\x86\x01\x99\x24\xcd\x30\xf0\x43\xaa\xc4\x94\x78\xc7\x61\x30\x51\xb8\xed\xc4\x53\x62\x44\x98\xa7\x24\x6e\x34\x64\x3f\x94\x0c\x02\x9a\x24\x8a\x9f\xd2\xc1\x39\x8b\xfb\x61\xaa\x5e\xff\xcc\x60\xb9\x38\xf5\x00\xf9\x83\x51\x90\xfa\x43\x3e\x12\x83\x51\xca\xa3\x13\x1a\xc0\x55\x64\x9f\x1a\x8e\x75\x6d\xa1\x3a\x35\x95\xda\x25\x97\x0c\x19\xda\x90\x12\xa3\x87\x30\x88\xc8\xe7\x6a\xfb\x32\x3b\x31\x19\x7d\x07\x09\x54\x15\x47\x0f\xf8\x91\xf8\x4f\x82\xb0\x99\xb0\xfa\x44\xc5\x1b\xf3\x2a\x8e\xa3\x87\x73\xa8\x80\xd5\x94\x92\x38\xfd\x54\x55\x5f\x3f\x40\x33\x9b\xbe\x97\x44\x5f\xb9\x6e\xb7\x97\x6b\x37\xe5\x6b\xb2\xfc\x74\xa3\xae\x74\x73\xbd\xf4\x1b\x91\xb7\x32\xaf\x57\x6f\x2a\x69\x74\x39\x1c\x8a\xba\x5e\x19\x5b\x65\x9c\x27\x4c\x97\x7b\x14\x8c\x93\x24\xf0\xbb\x60\x51\x5a\x76\x48\x42\x81\xa2\x48\x4c\x1c\xdf\x5d\x66\x84\xa9\x88\xc8\x65\x38\xf0\xaa\xb8\x64\x28\x0a\xba\x81\x3f\x5c\x1e\x92\xb4\x87\x5f\x31\xa3\x53\x37\x0a\xa2\x78\xd9\x0f\x53\x1a\x0f\xa3\x00\xb8\xe9\xbc\xb8\xe5\x8e\x1f\xa4\x34\x4e\x78\x1a\x77\x06\xe7\x21\xdc\xb3\x60\x0c\xd8\x8b\x06\x7e\x48\x64\xc8\x68\xc8\xa6\xd0\xb2\x43\xdc\x7e\x37\x06\x9b\x67\xc7\x0f\x82\xe5\x68\x48\x5c\x3f\x9d\x60\x00\x00\xe9\x04\x51\xe4\x2d\x43\x85\xfc\x3b\xcb\x13\x85\xe9\x72\x87\x0c\xfc\x80\x7f\xb3\x01\xcf\xbf\x96\x89\x77\x37\x4a\x52\x1e\x91\xc6\x34\x75\x7b\x22\x30\x09\x78\x46\x6e\x46\xc4\xc0\x03\xa2\xa3\x1b\x4c\x86\xbd\xe5\x90\x0c\x28\xff\x8c\x62\x9f\x86\x29\xf6\xb7\x17\xc5\xfe\x53\x14\xa6\x24\x98\x93\x38\xa6\x71\xea\xbb\x24\x50\x20\xd7\x32\xf1\xc6\xcb\x8f\xfc\x3b\x8a\xfd\xae\x1f\x2e\x3f\x2a\xfe\x80\x74\xa9\x84\x9a\x80\xa6\x29\x8d\x97\x99\x00\x86\x20\x03\xc1\x0f\xbb\xbc\xc7\x03\x12\xf7\x69\xbc\x4c\x43\x4f\x7c\x0e\xfc\xec\x13\xa8\x51\x89\xc6\x34\x86\x71\x1d\x46\x89\x8f\x06\x25\x11\x93\xf6\x7c\xb7\x1f\x32\x7e\x31\x24\x7e\x98\x2e\x47\xb1\x47\x63\x65\x48\xc2\x28\xa1\xcb\xab\xca\x30\x82\xb1\x44\xf3\x52\xa2\x64\x30\xc1\x10\x87\xa9\x92\xf4\xc8\x50\x06\x35\x49\xa3\x21\x87\x0b\x3e\xc5\x40\x24\x69\xec\xf7\x29\x5b\x8f\x8e\xba\xbd\x1c\x8c\x62\x74\x0e\x4b\x92\xc6\x51\x9f\x2e\x7b\x24\xe9\x11\xb8\xb9\x5b\x8a\x88\x3a\x9d\x84\xa6\x22\x86\x75\xc2\x25\x43\x39\x78\x17\xf9\xa1\x08\x0f\xfc\x94\x75\x74\xe0\x67\x05\x24\x88\x58\xf0\xc1\xf7\xd2\x9e\x92\xd2\xc7\x74\x99\x84\x6e\x2f\x8a\xf1\x9b\x5f\x3f\x0a\xb7\xf4\xb3\x70\xde\x43\xb0\xc9\x17\x91\x99\x47\xe5\x3d\x18\x85\xbe\x1b\x79\x74\xd9\xf1\x3d\x3f\x0b\xc4\x4c\xb5\x61\xa1\x34\x59\x1e\x32\xac\x0e\x94\xf1\x32\x61\x12\xcb\xa1\xa9\xef\x2a\xe3\xe5\x1e\x09\xbb\xac\x95\xf1\xb2\xef\xd1\xa8\x1b\x93\x61\x0f\xe2\x07\x24\xed\xd1\x01\x41\xd2\x19\x83\x51\x7f\x99\xc2\x1e\x8e\xc2\x28\x0a\xe8\x68\x82\x9f\x19\x19\xc9\xa1\x89\xf2\x10\xc5\x5e\x46\x42\x0f\xb1\x0f\x14\x34\x88\x3c\xaa\x3c\x0e\x82\x30\xa9\x3d\x06\x7e\xd8\x57\x1e\xf9\x84\xff\x8c\xcc\x10\x96\x04\xe1\x82\x73\x49\xb4\x76\xf8\x8d\xa8\xf3\x94\x8d\xa2\x98\x85\xb6\x6a\xc4\x4d\x47\x4c\xc8\xf1\x50\xec\xc6\x51\x20\x42\xd2\x67\xd2\x8b\x1e\xf8\x67\xea\xa7\x59\x34\x53\x2b\x7f\x12\xca\xb7\x60\x44\xa5\xaa\xb6\xb2\xf2\xf0\xf0\x50\x79\x58\x87\xed\x85\xd5\xed\xed\xed\x15\x68\xb1\x5d\xca\x19\xfe\xe3\x20\xa8\x31\x3e\x05\x1c\x9f\x05\x02\x12\x76\xb3\x00\x68\xca\x6f\x89\x80\xbf\x08\xcf\x1f\xad\x43\x06\xd3\xd6\x4a\x28\x54\x72\x19\xae\x94\x38\x70\x39\x2e\x6a\x94\x71\x94\x24\xc7\x30\xfe\x9f\x92\x47\xab\x1f\x8a\x7d\xab\x02\x98\xd8\x8f\x69\x87\x97\xe2\x63\xb9\x0f\x07\x6c\xb0\x06\x31\xbc\x3d\x8c\xfb\x18\xa9\x55\x00\x3d\x89\x5d\xcc\x2d\x8a\x11\xbe\xd6\x44\x1d\x78\x60\xf0\xe0\x5f\xeb\x48\x55\x08\xd6\x2b\xa2\x13\xf2\x13\x4e\x33\xf5\xab\x19\x03\x64\xbb\x34\xdf\xd3\xab\x5d\x52\x5f\x5e\xca\x57\xa4\x32\x3f\x79\xca\xfd\x4c\xfd\xb0\x66\xc9\x55\x6c\x6e\xd5\x52\xba\x3e\xe5\x4a\x56\xd8\xf3\xf9\x43\x5a\x01\xa3\x89\xdc\x9a\x6e\xd8\x51\x77\x18\x41\xd6\x32\x27\x5f\xf4\x4b\x5d\xd0\x75\xba\x53\xd5\x75\x9d\xc2\xaa\xae\xe6\xed\x2c\xac\xd6\x16\xca\x6b\x99\xb1\x4e\x05\xbf\x56\x58\x86\x3b\xd7\xd5\x1b\xb6\x30\x3f\xce\x42\x2c\x2d\xe4\xa1\x55\x48\x3b\xca\x42\x50\x51\xb5\xde\x79\x79\x29\x5f\xa0\x9d\x8e\x6a\x9e\xba\xb8\x58\x46\x57\x67\x55\xf3\xd0\xe6\xc6\xda\xde\x39\x23\x65\x87\xa5\xf1\x08\x77\x87\xcd\xa6\x41\x34\xa6\x86\x58\xaf\x96\x1d\xb5\x46\x2a\x09\x4d\xa5\x18\x8d\xbb\x0c\xaa\x35\x3a\xbd\x7c\xdd\x21\xd7\xb4\xb0\x76\xbd\xd1\xb3\xba\xd7\xb3\xee\x32\x18\xc1\xbf\xd1\xad\x95\x1d\x9d\x16\x57\xc7\x9a\x37\x1d\x03\x93\x53\x7b\x1f\xc6\x32\xe5\x75\x6b\xae\x0e\x0d\xe1\x9a\x9c\x2e\x2e\x2e\x54\xb9\x63\x2c\xf8\x24\x33\xc0\x35\x6f\xa7\xd8\xa5\xa3\x73\xd8\xd4\x71\xe7\x74\xd5\x55\x55\x55\xe5\xae\x88\xdf\x89\xbe\xf2\x7f\xcb\x95\x7f\xa8\xd7\x6d\xf8\x6f\xe5\x66\x45\xb3\x3f\x7f\xee\xf0\x4f\xa2\xdb\x9f\x3a\x78\xf8\xcb\x1b\x19\xa7\x4f\x1e\x12\x67\x7e\xbe\xd9\xa3\x87\xce\x1b\x39\xe7\x9e\x3d\x74\xdf\xc8\x3c\x7b\xf8\xd0\x7b\x3b\xe7\xd4\xe9\x43\xfa\x46\xce\x99\xe3\x87\x9d\xb7\x33\xf2\x49\x2e\x43\xbb\xba\xaa\x75\xdf\x42\xc2\xbc\x03\x8b\xbd\xb7\xf0\x30\x73\x62\xd1\xff\x20\xe7\x6d\xe0\x27\x69\x76\x2c\x71\xad\xaa\xdd\xbd\x51\xa0\x78\xc6\xb1\xff\x46\x2e\x71\xc8\x11\x8f\x38\x06\x6f\xe4\x72\x82\xc8\xed\xf3\x6c\x6b\xab\xda\xc0\xf9\xd9\xa3\x90\xa1\xc3\xed\xa6\x1f\x78\xd1\xab\x92\x97\x68\x9d\xe8\x03\x67\x71\x91\x5c\x0f\x9c\x79\xbe\xf4\x99\x39\x71\x1e\x40\x64\x87\x20\xfb\xcc\xf7\x61\x05\x04\xcb\xab\xe0\xf2\xcc\x3d\xa3\xd4\xe7\xec\x53\xaf\x66\x3b\x2c\xe0\x3e\x55\x77\x74\xa7\xac\xd6\x49\x85\x7b\x4e\xe9\x4e\xdd\x99\xba\x23\xc4\x51\x9f\xab\x72\x6d\xb0\x1d\xe3\x08\xcf\x44\x2d\xaf\x9a\x09\xb5\xac\x1a\xf5\x55\x7b\xaf\x86\xbc\xd4\x5a\xb1\x94\x5a\xb0\x86\x0e\x8b\x28\x2d\xa2\x6e\x6a\x6b\x49\x9f\xc5\x30\x91\x0f\xae\xbf\xbc\x90\x4a\x08\xbf\x79\x69\x71\xe0\x63\x5e\x59\x61\x67\x26\xdc\x46\x4a\x9c\x9a\x18\x8d\xdd\x8c\x17\xa0\x0d\xf4\x17\x92\x25\x9d\x70\x76\x82\x09\x6e\x5e\xe6\x24\x9b\xe8\x98\xe4\xe4\x49\xb9\x0f\xad\x48\xec\x49\x89\xd9\x2c\xc2\x24\x7f\x36\xe9\x10\x66\xcd\xeb\xf4\x49\x87\xac\x47\x6f\x1d\x51\xa1\x79\x55\xe2\xa0\xbf\x70\x3b\x14\xad\x79\xb3\x59\x4e\x32\x3e\x84\x59\xba\x4e\x2d\x57\x1a\xd9\x52\xa3\x0e\xe4\x21\x23\xde\xe1\x88\x07\x3f\xf9\xf9\x63\x03\x1e\xf3\x0b\x78\xda\x65\x37\x73\x29\x2c\x73\xf7\x14\x95\x89\x99\x50\x4e\x69\x97\xb8\xfd\xf9\x4e\x40\x08\xc4\x82\x46\x6d\x4c\x09\x8a\x29\x08\x1c\x4f\xeb\x3b\x35\xd8\xa5\x2c\xcc\x93\x9d\x8c\x12\xf1\x9c\x8a\x54\x5a\x7d\x95\x5d\xbb\x33\xfa\xbc\x77\x72\x9d\x19\x3a\xe7\x45\xcf\x24\x3f\x12\x94\x92\x6e\x66\x60\xe7\x76\x75\x6e\x33\xe7\xd7\x52\xe3\xc5\xda\x55\xfc\xdd\x06\x3c\xe2\xb9\x14\x3c\x6c\xa4\xe4\x9b\x05\xc2\xb1\xe2\xd6\xa3\xce\xa8\x0b\xee\xf6\x1a\xcd\xc2\xe7\x60\x80\xd4\x3a\xba\x8c\x03\xdc\xbd\xf4\x40\x4b\x19\x3a\x65\x0f\xe3\xd5\xba\xa7\x77\xea\x1d\x6c\x85\xee\xb0\x0f\xa5\x4c\xc0\x11\x88\x56\x18\x85\xb2\xf1\xc8\xd4\xff\xef\x78\x14\x45\xc5\xb3\x47\x4b\xb4\xc2\xd6\x91\x47\x70\x2c\x8a\x0f\x8b\xbb\xb8\x58\xc6\x4a\x70\xbb\xd8\x53\x9c\x09\xab\xcc\xc5\x74\x06\x47\xbb\xd4\xe6\xd7\x72\x84\x2c\xa5\x0c\x07\xb6\x2e\xd1\x33\x84\xd5\xdd\x79\x75\x96\x74\x17\xf6\x55\x10\xcb\xaf\x70\xeb\x67\x99\x48\xde\xef\xb2\xab\x07\x20\xbd\xb8\x0b\x44\xb2\x5d\xa0\x7c\x6b\x67\xfa\x10\xd7\xf4\xc9\xad\x37\x0e\x7d\x49\xdb\x2c\xb5\x8c\x17\x14\xf7\x6c\x18\x4a\xa4\xbd\xde\xc4\x91\x57\x4e\x70\x6c\x17\xf3\x95\x59\x97\xc2\xc8\x03\x9c\xaa\x4c\xa5\xf4\xc3\xe1\x08\x67\xe7\xd4\x02\x60\x71\xb1\xcc\x8d\x96\x4e\xf4\x88\xe7\xbe\x18\x96\x62\xe2\xf9\x11\x06\x0b\x3b\xb8\xa9\xd4\x24\x34\xbf\x23\x99\x3c\x6b\x99\xe9\x5b\x73\xf5\x8f\x1e\xac\x21\xf2\xe1\x5f\xe9\x11\x2c\x47\xd5\xb8\xdb\x3a\xb9\x76\xd0\xb9\x61\x66\x01\xe0\x40\x9f\x24\x84\xe5\x52\xce\x2d\x1e\xd4\xce\xd9\x91\xcb\x40\x79\x3b\x31\xa1\xa9\x50\xfb\x21\xa7\xd6\xd1\x21\xb2\x3e\xff\x66\x25\xb6\x52\x78\x76\x61\x51\x31\xc2\xeb\x94\x16\xaa\x5a\x97\xa6\xb3\xe7\xe8\x15\x9a\x5f\xc6\xad\xbe\x6a\x09\x2d\x9e\xe7\x10\x7d\xad\x77\xa4\x87\x90\x89\xfa\xfa\xaa\xbe\xd7\xb2\x74\x8d\x93\x5b\xc9\x03\xd9\xb1\x8d\xe7\x2e\xe5\xae\xe3\xb3\xf0\x78\x00\xc4\x54\xaa\x04\xc9\xab\x96\xa4\xd1\xf0\x22\x26\x6e\xdf\x0f\xbb\x72\x05\xa4\x82\x57\xa9\x41\x1a\x8d\xf5\x76\x88\x33\x9d\x06\x34\xa5\x0a\x1b\xae\xd7\x57\x89\x3c\x1f\x1d\x3c\xb8\x59\x28\xf4\xf2\x52\x9e\xae\x06\x68\x4a\x72\x3e\x98\x08\xe1\xbb\x40\xf2\x9d\xc4\x4c\x7b\x90\x8b\x02\x75\x38\xf9\xe6\x23\xf2\x31\xa7\x22\x7a\x5f\xc6\x45\x2d\xf6\xac\x4e\xe0\x44\x04\x52\x2d\xa9\x70\xaa\xdd\x69\x97\xd2\x98\x91\x6c\xad\x5d\x82\x47\x01\xda\xa5\x1a\x11\x37\xa0\x11\xdd\xcb\xc4\xc6\x02\x5b\x77\x94\x9d\x8a\xc0\x5d\x99\xa8\x6c\xdd\x5c\x93\xb7\x1a\x9f\x1c\xee\xf8\xcf\xe1\xe0\x6d\x88\x3a\xc2\xf2\xf3\x2b\x1b\xbd\xe2\x2e\x1d\xf7\xf8\xd6\xe4\x8d\x3c\x11\x37\x96\x03\xbc\x36\x7e\xfe\xcc\xdd\x71\x6b\xa4\x72\xfb\x10\x93\xe1\x90\xc6\xe0\xd7\x5b\xf1\x43\x3f\xf5\x49\xc0\x2b\x7e\x2d\xcc\x5c\xa3\x00\x1b\xea\x35\x99\x36\x05\x8d\xe2\xaa\xaa\x18\xa7\x79\x7c\x85\x9b\x75\x66\x27\xfb\xca\xb3\xf2\x06\xeb\xae\x1e\x3b\xe2\xd0\x0a\xe2\x70\x87\xff\xd6\x5c\x50\xf6\x64\x68\xf5\xe7\x22\xb8\x35\x4f\xe3\x11\x88\x02\x3c\x16\x1c\x47\x41\x40\xbd\xda\x34\x8f\xca\x1c\xfd\x24\x46\x85\xab\xd1\x29\x70\x6b\x05\x70\x24\xea\x34\x39\x3e\x1c\x69\x9c\x78\xde\xc5\x45\xb0\x05\xc8\x9b\x39\x0e\x18\x7b\x64\x8f\x23\x5e\x9c\x57\xc3\x49\x2f\x76\xca\xbc\x25\xc6\xc5\x10\xa2\x7c\x13\xdc\x55\x41\x55\x12\x82\x41\x17\x8e\x59\xb0\xa6\x65\xac\x89\x33\x68\xa8\x80\xa9\x8d\xf0\xc1\xca\xf1\x4f\x9c\xa1\x2e\x3a\xc5\x65\xc9\x3c\x16\xb4\x5b\x39\x9b\x7c\x10\x35\x19\x39\x03\x3f\xcd\x8f\x2d\xc7\x14\x36\x5c\x11\x84\xd9\x35\x78\xc6\xc8\x05\x43\x79\x75\x66\x8d\x30\x22\xcb\x4e\x03\x70\xc0\x17\xec\x6a\x6d\x4e\x56\x99\xa4\xda\x25\x75\x71\x51\x2e\x02\x48\x93\x73\xa8\x6a\x5d\xd0\x27\x1f\x01\x71\xae\x74\x9a\xe2\xa0\xcf\xc5\x28\x7d\x61\x61\x3a\x57\x61\xe0\x6c\x47\xf2\x41\x7a\xa7\x57\x4c\x7b\xfc\xa8\x1f\xc2\x0d\x2f\x1f\xe8\x05\x09\xd7\x0b\xba\xee\xb1\x51\xe5\xb8\x5e\x00\xd4\x4b\x67\xb4\xa0\xa5\xec\xec\xac\xa0\x1b\xce\xcd\xf8\x39\xec\xa5\x37\xa6\x38\x40\x50\x77\x5f\x5e\x1c\x99\x62\x32\x02\x70\xd8\x6c\x93\x81\xd5\x9d\x57\x57\xc7\x75\x48\x9d\x6b\xbc\x48\x30\x2c\x06\x5a\x92\x4a\xe4\x98\x7c\x9f\xc1\xcc\xa9\xc9\x2d\xe0\xba\x21\xe3\x3a\x27\xfc\x05\x50\x32\x48\x05\x4e\x53\x35\x84\xd7\x1f\x71\x53\x7f\x2c\xbc\xfe\x16\xd8\xa2\x0b\x89\xc0\xdd\x99\xea\xca\x87\x78\xa9\x15\x0b\x14\x67\xc8\x6c\x55\xf2\x61\xe7\xdd\x69\xc5\x9a\x90\xec\x9c\x68\x66\x61\x25\x85\x33\x93\xf9\x71\x60\x67\x49\x27\xaa\x7c\x74\x32\x77\xbc\xe3\xdc\x82\xe8\x61\xf9\x59\xb8\x74\x70\xbe\xfe\xca\xd8\x07\xa3\x45\x7d\x97\x4d\x04\x91\xaa\xaa\x24\x3f\xae\xe6\xc8\x07\x69\x73\x2f\x3d\x27\xb7\x58\x32\x8d\x8f\x3f\x65\x8e\x2e\x83\xcf\x0e\xf8\x98\x72\xdf\x5f\xaa\x57\xeb\xf4\x37\x57\x38\x0f\xd2\xa5\x25\xd5\xb9\xc6\x5b\x25\xdc\x6b\x7a\x03\xee\x51\xe0\x75\xaa\x57\xeb\x6e\x7e\x90\xdf\x5d\x5a\x52\xa9\x3e\x67\x22\xfc\x02\xfa\x99\x7b\x23\x98\x1d\x7c\x8b\x8d\xed\x05\x30\xd5\x95\x0b\x71\x3a\x55\x35\xba\xb8\xe8\x89\x78\x3e\x0c\xe7\x22\x79\xa1\x8a\xb7\x01\x3c\xf3\xf3\xf1\xb1\x53\x76\xd5\x3a\x1e\x9a\x03\xc8\xb0\x07\x44\xee\x01\x38\x7c\x5e\x53\x0e\x04\x63\xa2\xea\x33\x84\x93\xbc\xd6\x3a\xb6\x48\xe7\xb6\x28\x98\x9b\x98\x82\x2f\x2f\x98\x93\xbb\x2b\xbc\xbc\x94\x1d\x9d\xc5\xa8\x59\x0e\x36\xca\x72\xf5\x45\xb3\x41\xd3\xc9\x2e\x11\xca\xf8\xd5\x7c\xb7\x9d\x69\x97\x64\xe9\xac\xb4\xd0\x12\x0a\xb2\x7f\x9e\x72\x90\xd1\xd1\x87\x13\xe2\x55\xa2\xf0\xdf\xa7\x74\x14\xbc\xfe\x2f\x33\x75\xb8\xea\x33\x6a\x2e\x58\x77\xdd\x99\x52\x12\x64\x69\x26\xf5\x73\xba\x3f\x6b\xe8\xc2\x5e\x3c\x5a\xef\xa2\x5f\xee\x42\x79\xf5\x9f\xba\x20\xc5\x19\xb7\xf2\x75\x95\x2d\xdd\xdc\xeb\xea\xcd\xab\xa3\xbb\xaf\x5c\x10\x80\xf1\x07\xd9\x94\xab\x3b\xaf\x6f\xa9\x12\x88\x1f\xa0\x9d\xc2\xc0\x1c\x14\x3a\x5d\x94\xd2\xb3\xe2\x47\x3a\x52\xcf\xa9\xd1\xd5\xdc\x85\x8c\xcf\x4a\x82\xd6\x55\xb5\x79\x9a\x94\x74\x27\x8e\xe0\x40\x73\x98\x8f\xab\x8a\x96\xbc\x37\x38\x93\x27\x8d\xdb\x61\x71\xb1\x47\x1f\x53\xee\xcb\x55\x47\x11\xf0\xf6\xe8\xa3\x66\x81\xd4\x2b\xd1\x71\x2e\x2b\xc0\xe3\xac\xe5\xe8\xcf\xbd\x74\x10\xd4\xde\xde\x99\x62\xc9\xed\x92\x36\x20\x69\xef\xed\x7c\x5b\x2b\x2d\x92\xf6\xe0\x4f\xeb\xb0\x5d\xd2\x92\x71\x77\x6e\xd6\xb5\x6a\xb5\xba\x92\x8c\xbb\xed\x52\xc1\x09\xf4\x48\x5e\x64\xe7\xab\x6b\xc8\x98\xad\x82\xdf\xab\x4d\xb8\x5a\x32\x28\xdf\x2d\x32\x0b\xeb\xcc\x6a\xfb\x7d\x44\xc8\xb7\x02\x39\x05\xaf\x6b\x6e\x35\x64\x8a\xd6\xfb\x55\xb0\x91\xdb\x39\x72\xca\x8e\xfa\x01\x8e\x74\xee\xcf\xd9\x89\x62\xea\x77\xc3\xe3\xdc\xda\xe6\xec\x7c\xd4\x48\x4d\xdc\xbe\x70\xe2\x68\xa7\xce\x9c\xc3\x81\x6f\x2c\xa5\x5b\xe7\xc6\x70\xb8\xb8\x08\x3f\x15\xfa\x48\xdd\xcb\x30\x21\x1d\x7a\x18\xb9\x24\xd8\xe5\x95\xec\xe4\xc6\x56\xe1\x56\xfe\x6e\xfe\xf2\xec\x7a\x54\xf2\x3f\x57\x5f\x6b\xe4\xb5\xdc\x99\xbe\x90\x0d\x75\x0b\xd8\x38\xba\x3c\x6b\x2e\xe8\x7a\xcb\xa9\x24\xe3\x2e\x43\x6f\xe6\xe1\xc8\x3e\x15\xa2\x92\x4a\x16\xa3\x3b\xa0\xff\x3e\x9f\x38\xfa\x89\xf3\xf2\x32\xff\x74\x01\xd3\xe9\xfc\x31\x63\x2b\x27\x8e\x54\xb4\x5d\xfa\x2d\x19\x77\xff\x09\x67\xe7\x61\x96\x1c\x77\xca\x6a\x7e\x7f\x89\xba\xd4\x2e\xfd\xb6\x82\x39\x40\x38\xb1\x26\x2a\x1d\x3f\x4e\x52\x50\x16\xea\x44\x0e\xa8\x42\xbf\x86\x60\x59\x4e\xc3\xb3\xeb\x75\x67\x2a\x3b\x9b\xc8\xa1\x87\xd9\xe5\x34\x30\x0b\xc8\x1e\xd3\xb9\xbc\xc9\x98\x5b\xa1\x69\xbf\x53\x76\x17\x17\x5d\x60\x10\x01\xe1\xb1\x8b\x8b\xeb\xe0\xdd\x1c\x46\x1e\xbd\x40\x5f\x5c\xf8\xe6\x8a\xa2\x10\x8a\xaf\x05\x2e\xa3\x4b\xda\xcc\x79\x81\x9b\x3e\xbf\xd6\xdd\xeb\x29\xab\xd2\x0d\x53\x89\xe5\x88\xba\x7b\xdd\x2e\x5d\x51\xa7\xcf\x14\xe3\x25\x72\xa3\xb7\x4b\x0f\x22\xe4\x40\x62\x2b\x7a\x12\x29\x03\xf8\xcc\x74\x1e\x17\xf8\xd3\x85\xa3\x3f\x93\xd0\x1f\x80\xf7\x09\x0d\xbd\xda\xb9\x53\x6e\x97\x0c\x11\x03\x1b\xe2\x59\xc8\x0e\xbd\x76\x49\xd5\xb2\xfc\xb8\xb5\xe1\x47\xe1\xbb\xa5\x9a\x22\x57\xa1\x2c\xf8\x0a\xbd\x5b\xee\x1c\x7d\xdb\x54\x2d\x8d\x49\x88\xce\x2f\x19\x80\x17\x59\x14\x94\xc9\x83\x08\xe2\xab\x76\xc9\xf4\x34\xed\x9b\x83\x0e\xbf\x13\xa6\x47\x7e\x73\xf4\x0f\xa8\xb5\x02\x8e\x58\x85\x1e\xe3\x41\x37\x3f\xcc\x0e\xe5\x94\xb9\x5d\xe6\xc2\xa9\xc8\x78\xcb\x03\xda\x9c\x0c\x19\xa2\xde\xcf\x06\x38\xc9\x83\x6a\xb1\x67\x33\xa0\xe4\x35\x14\x30\x24\x85\xa4\xe3\xad\x57\xc2\xfc\x73\x09\x67\x5b\x38\x11\x40\x00\x56\x58\x17\x72\x34\xe1\x86\x21\x88\x94\x4f\x4e\x39\xea\xbc\xe5\x9d\xab\x2e\x2e\x42\xf2\x37\xa7\x50\xb1\xee\x5c\xbb\x37\xd3\x97\xd5\xfc\xe1\xe8\x57\x6c\x08\x65\xec\xb1\x51\xfe\x3e\x1d\xef\xcb\x74\xf3\xe7\x74\x6a\x22\xa8\xe3\x17\x9e\x52\xc0\x01\x90\x1a\xd3\x32\x88\x13\xc5\xa9\xe2\x92\x70\x08\x8e\xb4\xf8\xcb\x5d\xc0\x14\x6f\x84\x0d\xb8\x70\x49\x84\x42\x07\xc3\xd4\xa7\x9e\x42\x43\x37\x9e\xc0\x65\xd1\x34\xf4\xd8\x5f\x38\x6a\x1b\x44\xc4\xa3\x1e\xbc\xbf\x8c\x9f\xd9\x73\xcc\x2c\x88\xae\x6f\x43\x32\x4a\x28\xb8\xd0\xc2\x1f\x3f\xec\x2a\xc3\x38\xea\xc6\x34\x49\x94\x98\xa4\x94\x37\x94\x50\xda\x07\xe7\x59\xda\x47\x37\x36\x12\x04\x2c\x0c\x1b\x40\x9e\x92\xfa\x03\x8a\x37\x3d\x2a\xe3\x28\x18\x0d\x44\xb1\x07\x02\x7e\x54\x53\x7e\x48\x9a\xe3\x82\x2f\xca\x1b\xbb\x67\x57\x94\xf4\x5b\x64\xb8\xc3\x7f\x6b\x2d\x32\x94\xa8\xc2\x75\x73\xf5\xc7\x01\x0b\x6d\x99\x88\x1b\x4f\xf2\x1b\x36\xe8\x83\xd2\x22\x43\xcd\x01\xd3\x2d\x30\xa9\xf9\xa6\x7c\x4f\xaa\x8d\x68\xae\x4e\xf0\x72\x14\x12\x80\x67\x75\x4a\x55\xce\x96\xf9\x5a\x5c\x75\xf4\xec\x1b\x64\x0a\xd1\x9d\xba\x17\x41\x61\xb6\x96\x2f\x3b\x15\xf4\x3a\xbb\x20\xdd\xc5\xd5\xea\xda\x06\xba\x68\x88\x32\xaa\x46\xf2\xf2\x62\x8b\x41\x6c\xec\xac\xa3\xe9\x8a\x74\x77\xdc\xa9\x5d\x55\xea\xf2\x89\xb0\xba\x8e\x76\x7b\xd2\xcd\x15\xc0\x01\x1d\x44\xfe\x13\xf5\x40\xdd\xab\x8b\xe3\x1a\x70\x19\x95\xd4\x0f\x2d\xbf\x98\xab\x3c\x53\x0a\x55\x74\xa1\x11\x8a\xf9\xc0\x34\xd9\x1e\x1c\x03\xa0\xde\xfc\xcd\xa7\x8e\x80\x0b\xb0\xb8\x30\x7d\xe1\xcd\xa8\xbc\xba\xb5\xa5\xaa\x75\x19\xdf\x5d\x19\xdf\x39\x78\xdc\x7e\xfb\xec\xe8\x50\x95\x74\x9b\xd4\xf4\x82\x02\xab\x14\x20\xb2\x36\xf1\x76\x0c\xf2\x2a\x56\xb8\xae\x4e\x34\x4f\x77\xea\xf5\xdc\x8c\xcf\x31\x9e\xd7\x4a\x55\xbc\x4b\x0f\x5d\x77\x68\x11\x10\x9e\xa7\xa3\x3e\x7b\x3a\x9d\x2a\x8b\x67\x28\x5d\xdd\xab\x8b\xc7\x38\x5f\xa1\xa6\x57\xbf\x53\xe6\xb7\xca\xb0\xa2\xf8\x85\xc7\x5c\x59\xfd\x10\xac\x77\xea\x80\xad\x8e\x9e\x9f\xee\x61\x38\x64\xab\xe6\x3a\x8f\xf7\x8a\xf1\x4e\xbd\xa3\x77\x2a\x89\xef\x04\x7e\xd8\x7d\x9d\x8b\x5c\x26\xd9\x39\x90\x0c\x38\x41\x69\xae\x4e\x35\x4f\xef\x20\x95\x0a\xd4\x74\xe1\x2c\x79\x06\x4f\x0f\xe1\xe9\xe1\x82\x19\xae\x18\x74\x75\x0a\xdb\x73\x59\xa7\x7a\x68\x19\x84\x44\x4f\xa7\x75\x37\x4b\xec\xe9\xbd\x0c\x32\x36\x7c\x5d\xec\x6e\x4f\xf4\x5e\xae\xbe\x1d\xe6\x0d\x74\xa0\x9e\x37\x1a\xe8\x00\x04\x6f\x35\x30\x8d\x80\x6d\x38\xbb\x0b\x18\xc8\x46\x70\x21\xbf\x61\x2f\x3f\x5c\x5e\xe5\x98\x5a\x5f\x80\xd3\x5c\x64\xb6\x2a\x89\xaa\xdc\xfc\x80\xa7\x38\x05\x8e\x1e\x4a\x35\x49\xf5\xe9\x01\x21\x13\xbd\x2b\xe8\x75\xa1\xe8\x1b\x90\x5f\xcb\x40\xea\x88\x87\xaf\x62\x7e\xbf\xbc\x6c\x88\xcf\x6c\xae\x81\xa9\x86\x53\x0d\xff\xe5\x23\xa9\x3b\x9a\x23\xd6\xe1\x38\x9a\x60\x22\x62\x93\x0d\x69\x18\x38\xd4\x82\x23\x50\x55\x17\xe7\xc4\xb1\xf8\xcb\x8b\xf8\xd2\xa7\xdd\x17\x72\x5e\xf6\x9a\x95\xce\x1a\xad\x64\xd6\xc7\x2c\xed\xb5\xc0\x05\xa4\x49\xed\xbb\x05\x6b\xc7\xec\xa4\x5d\xaf\xaa\xd2\x9c\x26\x85\x5e\xcf\x5c\x25\xf9\x3c\x13\xe9\xa8\xb9\x3f\xc5\x70\x94\xf4\xf8\xdd\x03\xac\x4d\x8d\xd4\xf9\x09\x5b\x47\xba\x71\x8c\x7f\x4c\xd7\xb2\x73\x4d\x6e\xc4\xd3\x80\x8e\x5a\xbb\x26\x9a\x73\x93\x8f\xe8\x9d\x2b\x6c\x94\x33\xf7\x00\x92\xcc\xe2\x87\xee\x64\x8b\x8b\x0e\x6e\xd2\xb9\x1a\xc1\x45\x73\xdf\x9d\x39\x8a\x1c\x08\xee\x28\x31\xbc\x5b\x8f\xbb\x37\x1e\xfa\x49\x4a\x43\x1a\x27\x4c\xe6\xe4\xd1\x4d\xfe\x9c\x43\x32\x8b\x19\x27\xbf\x64\xd3\xd3\xab\x75\x2f\xf3\x29\x5c\x5c\x5c\x20\x15\x3f\x61\xaa\x0d\xe9\x72\x35\x34\x1a\x0e\xa9\x57\x56\xeb\xde\xd2\x92\x8a\x77\x23\x5c\x7b\x37\x9a\x7b\xed\xdd\xf0\xbd\x00\x67\x71\x31\xbb\x33\xa1\x3e\x0f\x2e\x71\x65\xea\x2c\x68\x22\xc5\x4f\x4e\x68\x9c\x40\xfe\xb4\xac\xbe\xbc\x14\xf7\x71\x63\x1a\x50\xa6\xf0\x13\xf9\x4c\xf2\xc0\xcd\xed\xa4\x20\x8a\xfa\xae\xee\xbb\xe5\xbe\x0b\xa7\xe9\x89\xde\x77\xeb\x02\x91\x88\x37\x18\x93\xc0\x05\xe2\xe9\xbb\xd3\x16\xa2\xaf\x48\x55\x1d\x21\x76\x88\xde\x23\x53\x17\x66\x90\x7a\xc1\xfc\x13\xf2\x59\xcb\x64\x68\xdc\xa5\x29\x83\x3a\x89\x5d\xae\x55\xbf\xbc\xa0\x9e\x0a\x37\xc5\xc6\x31\x4d\x86\x11\x3c\xf0\x72\x99\x08\xbd\x9b\x8b\xd5\x37\x52\x33\x0a\x44\x31\x2d\x96\x55\x3b\xa4\x32\x24\x8c\x8b\x30\x8e\x52\x93\x0e\x7f\x47\x82\x42\x16\x26\xd2\x06\x27\xd1\xdb\x25\xa6\x10\x2d\x09\x95\x16\xae\x91\x10\xeb\x80\xba\x03\xc6\xc8\x0f\x96\x05\x9a\x53\xf4\x78\x24\x9a\x78\xaa\xaa\x0e\xa9\x6f\x78\x98\x81\x42\x9d\xeb\x49\x70\xdf\x85\x5b\xb8\x2a\xf8\x1e\x11\x58\x49\xa3\xe1\x21\x1d\xd3\xe0\x02\x2e\xf1\x46\x82\x08\xe1\x12\x26\x50\xfa\x45\x14\x62\x99\x91\x8e\x88\x01\x12\x4a\xa3\x58\xdc\x30\x83\xb7\xf1\x0e\xdd\x8c\x98\x87\xee\xbc\xfb\x78\x63\xb7\x70\x2a\x35\xcb\x2f\x64\x3c\x2b\x05\xb7\x14\xd3\x22\x68\xa4\x4e\xf1\x56\x86\xf3\x49\x92\xd2\xc1\x6e\x40\xba\x89\xee\xd5\x69\x01\x58\x87\x95\xca\x21\x75\xf3\x5b\x1c\xf9\x26\xba\x5c\x65\x8d\x68\xd3\x15\xd6\x3c\x4d\xaa\xae\xe6\x68\x79\x65\x35\x57\xcb\x7a\x5c\xbb\xbe\x29\x10\x63\x52\xd0\x85\xf2\x32\x9a\x0b\x4a\x25\x10\x86\xcb\x90\x9d\xe3\x0c\x30\xe3\xaa\x5c\x40\x22\x2f\x70\xd9\x1c\x60\x14\xe7\x81\x44\xf1\x74\x4f\x96\x5f\x51\x98\x12\x3f\xa4\x71\x33\xec\x44\xb9\x32\x50\xf7\x32\x8d\xd6\xcb\x74\x86\xba\xa7\xaf\x2f\xf0\x6a\x50\xa9\x7a\xb3\x26\x90\xc7\x1e\x17\x40\x0e\x8a\xd4\xfa\x57\xb4\x27\x6e\x88\x5d\x9d\x59\xb0\x5d\x3d\x75\xcb\x9e\xca\xbd\x6b\x5c\xb5\xb0\xd3\x30\x4d\x19\xb0\xe7\xf0\x0c\x6a\xa2\x48\x61\x6b\x33\x1c\x6f\x36\x91\xe5\x31\x54\xeb\x70\xe9\x8b\x34\x4e\xe2\x3e\x74\x39\x17\xdc\xae\x38\x3d\x7a\x75\xbe\xeb\x5a\xee\xbe\xe8\x1b\x5f\xf2\x4b\x04\x7b\xe2\x6e\xf7\x6a\xbd\xff\x5b\x52\xbc\xd2\x18\x2f\xb6\x49\xe0\x5e\xe3\x60\x71\xb1\x1c\xe8\x41\xf1\x5e\x16\xf0\x3c\xee\x68\x54\xeb\xaa\x6c\x09\xd0\xd3\xdb\xa1\xef\x96\x7b\x5a\xa0\xaa\xaf\x03\xb7\xdc\x93\xb9\xe2\xc8\x95\x36\xc7\x16\x5c\x78\x2b\x88\xc9\xc1\x59\xdb\xa7\x1b\x47\x41\xd0\x2e\xd5\xc6\x2e\xb8\x6b\x8b\x30\x1c\x11\x28\x5c\x0e\x0d\x67\x3f\x73\x8f\x22\x27\x18\xc5\x79\x31\x9e\x08\xa5\x78\x14\x66\x80\x18\x5c\x31\x65\x51\x78\x57\xa1\x88\x14\x45\x31\xb6\xd0\xa4\xcb\x46\x29\xc8\xdb\x74\x83\x08\x7c\x28\x80\xc9\x2d\x2e\x42\x43\x64\x16\x52\x3f\x1c\x93\xc0\xf7\x24\x6f\x28\xbe\x69\x2a\xc2\x7c\xd3\xb4\x86\xa5\x84\x61\x16\xfd\x4b\x5d\xe9\x22\x9d\xc5\xc5\x5d\xbc\x77\x4d\x2c\xf9\xf0\xf6\x53\xbe\x84\x7f\x70\xb5\x47\x57\x9b\xb8\xda\x93\xcb\xc4\x83\xc1\xb8\x9a\x66\xa2\xac\xd1\x2c\xfe\xdb\xe0\xbf\xb6\x9b\x2d\x20\x77\xf3\xcf\x3d\x28\xb3\xef\x82\x5d\x6a\x94\x50\x2f\x7a\x08\x15\xf8\x1a\x0d\x95\x34\x1a\xb9\x3d\x44\x01\x7e\xc3\xaa\x98\x7d\xe0\x32\x9b\x8c\x1e\xdd\xc0\x77\xfb\x8a\xe7\x04\xf8\xc1\x4f\x8e\xf1\x32\x3c\x04\x75\xf2\xef\xd1\x50\xf1\x62\xd2\x65\x15\xb1\x5f\xac\xc7\x8b\xa3\xa1\xe2\x46\x03\x71\xb6\x8a\xa5\x4a\x41\xcc\xd4\xa7\x13\xa8\xa8\x4f\x27\x70\x98\x9b\x7d\x8c\x86\x0a\xb8\x7e\xc1\x71\xad\x26\x7c\xc1\x08\x29\x1c\x00\x37\x1a\x4e\x14\x77\x94\x2a\x43\x92\xa4\x54\x41\x18\xf9\x2a\x9e\xbb\x73\x0f\x68\x38\x52\x60\x38\x14\x31\x48\xc5\x65\x7d\x93\xe1\x06\x48\x44\x61\xd4\xc3\xc1\x4f\x29\x7e\x05\x94\x8c\x29\x22\x2c\x1a\xd3\x98\x7f\xb1\x16\xb1\xbf\x10\x29\xbe\x47\xa9\xd2\x8d\xd2\x0c\x47\x70\xca\x55\x09\xa2\x64\x2a\x6a\x0a\x02\x59\xfd\xfa\xdd\x95\x6d\x93\xae\xcb\x14\xc4\x7d\x77\xee\xe1\x98\x6c\x02\xbe\xaa\xf5\xe6\x87\x59\xf2\x89\x7b\xe0\xce\xde\xa2\xf2\x0c\xde\xdc\xd4\x3b\x0e\x6b\x44\x2b\xc8\x0d\x67\x56\x6e\xb8\x2f\xeb\x6b\x05\xd1\x41\xb5\x8c\xcd\xd6\xbc\x82\xb0\x38\xe4\xdd\x99\x61\x0a\xf3\xa7\x3a\x27\xed\xe2\x5c\xcb\xc6\x23\xcf\x9e\x0d\x4c\xbb\x54\xb3\xe6\x95\xc9\xc6\x2b\x2f\x23\x06\xae\x5d\xaa\x35\xe6\x15\x91\xc6\x33\x2f\x94\x0f\x6c\xbb\x54\xb3\xdd\x0a\x5a\x02\xcb\x4e\x85\x27\x34\xbd\x29\xc6\x30\x33\xfc\x79\x5d\xf3\xe8\xa0\xb6\x3b\xb7\x4e\x89\xcd\xb6\xdc\xe2\xfd\x0f\x05\x3f\xf9\x82\x98\x58\x60\x8b\x7f\xb1\x98\xd0\x0f\xdc\x72\x5e\x4a\x93\xf7\x7f\xf5\x23\x46\x55\x52\xd4\x23\x0b\xe3\x9a\x64\x7a\xac\x5f\x24\x0f\x32\x79\x5c\x8f\x0b\x34\xc4\x47\xd7\x99\x19\x5d\x5e\xd4\x74\xf5\x96\x5b\x36\x5d\x2d\x2f\xa3\xe5\x97\x8a\xc8\xe3\xcb\x0b\x58\x50\xc0\x7a\xa3\x80\x3c\xb8\xbc\x40\x03\x0a\x34\xde\x28\x50\x1c\x5a\x61\x3d\xc9\xd0\x5d\xb7\x91\xf9\x76\xb4\x96\x5b\xb6\xd1\x38\xd7\x51\xd1\xdf\x5d\xaa\x50\xa8\x98\x79\xbd\xf3\x06\x5b\x18\x42\xe4\x06\xb4\x5d\xa9\x81\xdd\xb7\x1b\xd0\x16\xaa\xf9\x05\x20\x12\xb6\x4f\x24\x95\x2b\x75\xcb\x42\xeb\x2a\xda\xbf\x38\xcb\xf0\x80\x65\xc8\x17\x97\xc0\xc2\x1b\x74\x1d\x0d\x2c\x71\x7c\xc3\x45\xa7\x6e\xd9\xcd\xc9\x80\x69\x6c\x19\x13\xd0\x9d\x7a\x5c\x19\x31\xbe\xec\x04\xf4\x36\x1e\x85\x57\x7e\xda\x3b\x89\xfd\x28\xf6\xd3\x49\x99\x54\x86\xfc\x53\xbe\xc3\x7b\xc2\xaa\xcb\xbc\x47\x5e\xb3\xb7\x11\xd6\xd1\xb0\x27\x9b\x27\xb8\x7d\xae\xd8\x24\x6e\xea\x80\x21\xf1\x2d\xfd\x0d\x0f\xae\xe5\xfb\x3b\x79\xe1\xa2\x85\xef\xd4\x95\x8e\x3f\xc0\xc6\x77\x96\x73\xda\x23\xf3\x0c\xd0\x29\x31\x3c\x6d\x76\x12\x68\x24\x07\x43\x9b\xd2\xdf\xe6\x8c\x00\x4c\xaf\x7a\x7e\x17\xcf\x23\x43\x4c\x7d\x0a\xbb\x62\x94\x05\x49\x15\x1e\x0c\xc9\x34\xab\x53\xd4\x42\x72\x1e\x21\xb1\xf1\x0b\xb7\x8c\xa6\x2b\xd0\x0d\xea\xd5\xdf\x8c\xcc\x3d\x26\xbb\x94\xcb\xbd\xae\xde\xd4\xe7\xe3\xe1\x99\x30\x40\xe5\x98\x7a\xbe\xc2\x7d\x00\xf3\x50\xae\xae\xff\x75\x3c\x09\x24\xed\x14\xf0\x50\x33\x5c\xf1\x0a\xb7\x70\x51\x31\xdd\xc5\xc5\x53\xc6\x2c\x98\x02\xca\xe5\x41\x56\xdc\xc2\x44\x0b\x12\xad\xa9\xc4\x06\x26\x36\x20\xb1\x21\x12\xed\x5c\x32\x9e\xbb\x6a\x7d\xb7\x10\x94\x5e\x89\x70\xc5\x33\x0e\x39\x78\xc2\xcf\xa0\x48\x66\xda\x93\xfb\xf2\x02\x48\xaf\x6a\xd2\x24\x11\x77\x9d\x66\x77\x17\x4b\x69\x47\x51\x3c\x20\x81\x98\x3f\xda\x85\x8b\xc7\xf8\xf2\x1b\x1f\x80\x5e\xf3\xdb\x3b\xcb\xf9\x56\xfc\x25\x28\xa0\x2a\x5b\xb9\x48\x23\xac\x3e\x5f\xba\x65\x18\x5d\x8d\xe4\xaa\x3f\x5e\x86\x9a\x93\x81\x2b\x74\x7e\x8f\x51\x82\x7b\x53\xf7\x0a\x9d\x03\x7f\xe2\xa9\xce\xa9\xaf\xf2\x38\x5c\x22\xd3\x2e\xa0\xff\x12\xf9\x72\x01\xeb\x97\xc8\x7a\x0b\xc8\x76\x0a\xb8\x76\xe4\x45\xd3\x5e\x01\x42\x4f\xdf\x63\xc0\x69\x9f\x00\x0e\x8d\x86\xd5\xbc\x02\xd8\xa6\xd8\x03\x3c\x88\x13\x99\x32\x41\xab\x27\x19\x8b\x2b\x26\x2d\x2e\xee\xe5\x84\x87\xaa\xf6\x95\xab\x3f\xbf\x6a\xdf\x73\xc5\xf9\xcf\xfc\xf3\x17\x57\xbf\xe6\x3b\x5c\x78\x86\x99\x7f\xfd\xc1\x16\x21\xa4\xb0\x69\xab\x7d\x2f\xc4\x49\x5b\xb2\xda\x9f\x85\x14\xbe\xe9\xaa\xc1\x12\x64\x18\x90\x89\xf8\x3e\x91\xbe\xa5\x3d\x34\x39\xf9\x42\x8a\x2a\x6e\xad\x15\xa2\xac\x3c\x8a\xef\xb8\xcd\x7e\x8b\x1d\xb8\xb9\x21\x6f\xf6\x2b\x8e\xf9\x05\x46\xf9\xd7\x1c\x29\x88\xb1\x27\x18\x6b\x49\xb1\x78\xd3\xcb\xf4\x07\xee\xf6\x49\xc1\x46\x31\x28\x36\x00\xa5\xa8\xd6\x74\x54\x92\xe1\x93\x85\xce\xa5\xd0\xac\xd6\xc5\xa3\xe7\xc0\xc7\x37\x13\x67\xbf\xf9\xe6\xe2\x6c\x80\xef\x2d\xb2\xef\xb0\x10\x2a\xf1\xdd\xc6\xd9\x6f\xdc\x7d\x9c\xf9\xce\x77\x23\xb3\xa0\x78\xf8\x4e\xfb\x85\xd1\x4e\x5a\xdc\x7c\xd7\xda\xa5\x6c\xa3\x52\xfe\x96\xec\x5e\xc4\x43\xae\x96\x73\x88\x29\xf7\x48\x7d\x4d\xbe\x8a\x53\xa3\xec\x67\x69\x15\xdf\x22\x02\x6b\x5e\x99\x5e\x57\xa7\x2e\xa0\x59\xe2\x77\x06\x97\x57\x55\xb5\xde\xd1\x9f\xdf\xb8\x32\xb5\xf6\xec\x8c\x1c\x27\xa0\x5e\xad\xa3\x71\xcc\x7b\xb5\xce\x52\xbb\x94\xe1\xfb\x55\x93\xef\x1a\xad\x5d\x7b\x37\xb8\xd6\x10\x8c\xb2\xe6\xbc\xd6\xff\x44\xcd\xc9\xd3\x1c\xb5\xfe\x5d\x7c\x77\xd4\xfa\x95\x0b\x4f\xaf\xb1\xc5\x06\xf1\xf8\xba\x1f\x97\x6f\x62\x65\xf8\xff\x73\xf7\xe6\xdd\x4d\x23\x5b\xdf\xe8\x57\x89\xb3\x7a\x69\xa9\x1e\x2a\x3e\x76\xc2\x14\x89\xc2\x2b\x10\x68\xa0\x81\xd0\x04\x1a\xe8\x38\xab\x57\x49\x55\x1a\x3c\xc8\xc6\x76\x48\x42\xec\xef\x7e\x57\xed\x9a\x25\x39\xc0\x79\xce\x79\xef\x7b\xef\x1f\x10\xb9\x54\xaa\x61\xd7\xae\x69\x0f\xbf\xad\xfe\xc8\x1b\xa1\xfa\x1f\x6e\x8e\xf2\x7f\xe7\x72\xa8\x9e\xdf\xc8\x67\x71\xa1\xd4\xb7\x4a\xf1\xcf\xdc\x81\xe9\xc5\xd5\x53\xff\x32\xcc\x66\x17\xc9\x84\xab\x44\xe7\xd2\xfb\xac\x76\xf9\xa5\xf9\xa9\xbd\x06\xc3\x7f\xf2\xba\x29\xff\x97\x17\x5c\xfd\x3f\xc8\x15\xcc\x5f\xe7\x4e\x7c\x5c\xbf\x1b\xbf\x73\x2e\xc9\x63\x7e\xfd\x71\xbe\x53\xbb\xe0\x1f\xbb\x57\x7d\xf8\xfb\x71\xae\x2e\xca\xfa\x7f\xd0\xa2\xfb\xba\xf4\xf6\x2b\xfe\xd3\xad\x17\xfe\x63\xff\xf2\xaf\x9e\x3e\xce\x5d\x3d\xfc\xc2\x04\x88\x50\x37\x71\x75\x1f\xb7\xea\x79\xd0\xca\x27\x00\xe8\x22\xff\x34\x44\x13\x4f\xdb\xc4\x14\xcf\x7c\x79\x05\x3c\x4a\x5a\x7b\x0a\x7d\xf9\x43\xaf\x87\xfe\xf5\xbf\x27\xee\xdf\xc0\x43\x62\xa0\x76\xcc\x7f\x56\x04\xf0\xcc\x3c\xf1\xab\x52\x8e\xe7\x33\xfd\x20\xc5\x03\xe2\xe9\xb5\x79\x02\x91\x80\x78\x38\x31\x02\x83\xe9\x4c\x0b\x11\xde\x98\xa7\xd9\xc5\x4a\x3e\x9c\xe8\x07\x2b\x60\x38\x71\xa4\x0a\xf0\xad\x7a\x7e\xe3\x3c\x3b\x42\x88\x93\x76\x79\x04\x94\x22\xc5\x6d\xfa\xcf\x6a\x96\xe7\x13\x6e\xff\x5c\xa4\x05\x94\x0f\x4f\x50\xfa\x65\xc1\xf9\x44\xfe\x5f\x27\x55\x1f\xc5\x94\x85\xbf\xa5\x78\xdf\x1e\x3a\x12\x46\x86\xbb\xc6\xdc\x62\xc2\x53\xc7\xce\xc3\x11\xda\xd4\x85\x3d\xdb\x85\x41\x7a\x09\xf4\xab\x4e\x99\x58\xba\xd8\xa3\x84\x99\xc5\x8b\xdd\xb9\x83\xd4\xf2\x90\xb0\xb3\x94\x9d\xcb\xa1\x84\xe5\x8c\x11\xe7\xf8\xf5\x71\xc9\x17\x4f\xc4\xd6\x5f\x56\xb9\x39\x84\x71\x2f\x4b\xed\x8a\x83\x33\xb0\xbd\xb6\x66\xf5\x4a\x28\xa3\xa4\x81\x7d\xe7\xe0\xf8\x2d\xf5\x31\xbc\xff\x96\xd7\xbb\x04\x69\x3f\x68\x1b\x33\x72\xb0\x1f\xe9\x98\x79\xbd\x88\x91\x9c\x39\xf1\x45\x12\xdc\xc7\xd4\x93\x25\xf4\x23\x46\x8a\xad\x59\xb4\x44\x91\x91\xb2\x99\x67\x93\x0e\x68\x97\x32\x06\x67\x6f\xad\x1b\x0b\x13\xcc\xc0\xe3\x6b\xdb\x2b\xb7\x57\x39\xb3\x8a\x8b\x57\x74\xbd\x7e\x41\x43\x1d\x00\xa8\x64\x38\x23\xaf\x68\xfc\xca\xc0\xdd\xfe\x4e\x21\x30\x9f\xcc\x6e\xb0\x6e\xc3\x57\x94\x88\x4b\xae\x44\xbb\xb5\x1a\x68\xa7\x64\xce\x42\xc6\xb0\xd7\x01\x83\xc8\xe9\x69\x6a\x99\xa7\x46\xc9\x18\xf2\x8f\xc3\x41\xb0\xd7\x7f\xf4\xc2\x15\xab\x22\x10\x80\x78\x25\xe2\x23\xa3\xa2\x91\x1a\x05\xd9\x9d\xf7\x56\x45\xe3\x59\x5a\x80\xe4\x8a\x59\x1f\xa4\xf6\x1a\xf8\xd6\xe2\x77\x20\xca\x94\x9b\x03\xdd\xe8\x32\x29\x01\xc5\x10\x53\x81\xb3\x24\xd6\xfe\x1b\x1a\x2e\x41\x31\xab\x09\x08\x4a\xab\x1a\xc6\xb7\xd3\xda\x9b\x94\x54\x69\xc8\x94\x7a\x22\xf5\xef\xfc\xaa\x73\xcc\x7d\x01\xdd\x52\x92\x2f\x43\x80\x8c\x70\xd0\x82\x68\x33\x9d\x4c\x94\xcb\xd3\x90\xa3\x16\x50\xd7\x9d\x54\x79\x47\x7b\x97\x7b\x29\x94\xe2\x2d\xf7\x7b\x47\xaf\x08\xb5\x0c\xf8\xed\x37\x7b\xb7\x70\x6d\x74\x9e\xea\x7b\x89\x21\x5a\xfa\x03\x8a\xf9\xea\x7e\xd1\xc9\x11\x73\x6c\x2f\xcd\x91\x5c\xc6\x1e\xea\xf4\x70\x02\xe8\x68\x2f\xa7\x34\x17\x4b\xf1\x92\xd7\x13\x4f\xc5\x69\xa7\x96\xf6\xa9\x64\xab\x42\xa6\x5d\x3d\x9f\xf0\x2b\xe7\xf1\xf7\xc5\xec\x62\xae\x7e\x9f\x2c\x98\x68\x9b\x49\x4a\xc5\x46\x64\x6b\x96\x3f\x97\xe2\x31\x53\x85\x64\xb2\x84\x4b\xfd\xfc\x0e\x96\xc5\x6f\x5c\xff\x3e\x2d\x16\x65\x35\xd6\xbf\xde\xf2\x9c\xba\x6f\x4f\x44\x03\xc1\x97\x77\x51\xb2\xa3\x05\xa7\xfa\xf9\xbd\x2c\x51\x3d\x3e\xab\x98\xf3\xeb\x74\x4e\x2b\xf7\x27\x18\x8c\xaa\xdf\x4f\xa1\x85\xfe\x2f\xe7\x6b\x99\xe0\x16\xa0\x52\x74\x19\xd9\xac\x5a\x7d\x02\xec\x31\xf1\x6b\x52\x56\xfc\xe9\x84\x4e\xe7\xfa\xc7\x0b\xf3\x4a\x01\xb8\xc1\xa3\xee\xc4\x6c\x31\x2f\xa8\x24\xcf\x8a\x26\xa7\xe5\x77\xe8\xe7\x65\xc9\x66\x97\x90\xf8\x1d\x50\xb1\xe0\x69\x36\x9b\x42\x75\xe5\x64\x72\x62\x4b\x1a\x56\x00\x1c\xe8\xa4\x2c\x57\xb3\xb9\xf7\x73\x31\x1b\xf3\x63\x0d\x48\xe7\x27\x49\x48\x3a\x9b\xf6\xc6\xa0\xce\xd9\xb4\x46\x59\x9a\x31\x36\x78\xcc\x88\x63\x34\x8c\x87\xbb\x53\x79\x63\x00\x4b\x61\x0c\x10\x4a\xe7\xb1\x1b\x0b\x73\xc4\xda\xb1\xce\xc6\xac\x99\x2c\x3d\x3f\xef\xd0\x6e\x5a\xd0\xc5\xd1\x2a\xec\xa1\xda\x21\x9d\x76\x97\x17\x89\xf4\xd1\x0f\xfb\x28\x1e\xb1\xb3\xe4\x9c\x8c\x98\x0c\xab\xeb\x18\x26\x4e\x58\x6b\x40\xcd\xa4\x1e\x1c\xd6\xe2\x26\x3b\xf1\x55\x87\xbb\x51\x0a\xf8\x4f\xd6\x33\xce\xe6\xeb\x49\x67\xfc\x11\xab\x5b\xb1\x52\x14\x04\xd0\x92\x81\x8c\xf7\x98\xa0\xee\x6a\x51\x4e\x43\x04\xb1\x5a\xe7\x57\x10\xe1\xdd\x5a\x5f\x30\xed\x7b\x46\xa5\xd9\xb0\x95\x77\xdc\x66\x28\xab\xf7\x63\x89\x84\xad\xd7\xed\xe1\xee\xde\x9e\x38\x4e\x70\x32\x61\x61\x8a\x13\x10\x3c\xa0\x78\xb8\x9b\x4d\x66\x54\x3a\x24\x68\xb7\x99\x74\xb9\x7c\x2e\x13\x51\xac\x30\x9a\x6c\xf1\x98\xa3\x08\x42\x0e\x70\x09\xe4\x5e\x31\x52\x85\x37\xe2\x36\x51\xae\xf8\x14\x86\xff\x86\xaa\xe9\x97\xd0\xa5\x5c\x3d\x16\x6a\xca\x8b\x3f\x7c\x9a\x70\x98\x45\x05\xa4\x96\xd3\x1c\xfe\x88\xc3\x92\x78\x18\xf3\xeb\x9c\x57\x6a\x96\xc0\x6c\x17\x77\x60\xf1\x77\x4e\x17\x14\x58\xdd\x84\xfb\xc6\xab\x05\x4d\x21\xcf\x25\x54\xe1\xdb\xd8\xcf\x98\x6b\x63\x2f\xd6\x74\x41\x79\x05\xb3\xd5\x71\x5c\xa5\x34\xfa\xfd\x76\x9f\xaf\xba\xf5\xd9\xc1\x03\x15\x8e\xd7\xb5\xc4\xdc\xfe\xb9\xeb\x56\x66\xbc\x04\xfd\x22\xef\x2b\x8b\xab\x4e\x2b\x22\xcb\xd6\xa2\x83\x60\xb8\xfb\xcf\x3f\xd2\x5b\xa4\xac\xb6\xe7\xab\xf7\xe0\x7e\x5f\x19\xd8\xe9\x66\x01\x7f\x89\xd2\x9a\xf0\x43\xea\x65\xbd\x84\x7d\x4d\x00\x1f\x7f\xc7\x12\x5d\x41\x0a\x39\x0c\x28\xb2\x6b\xc7\x95\x26\x90\x4e\xd2\x2d\x97\x75\x08\x9d\xe1\x2e\xad\xaa\x99\x82\x1a\xbd\x9a\xba\xea\x6a\x17\x7c\xd5\x26\x2b\x80\xd4\xb4\x2d\x69\x0f\x20\xf9\x9a\xc9\x17\x8b\xb2\x2d\x39\x9b\x2d\xa6\x74\xd5\xf6\xa6\x02\x8c\x6b\xa3\x5e\x2b\x97\xcb\xb2\xca\xf7\x00\x1b\xd5\x42\xc7\xf7\xeb\xb0\xed\x3d\x39\x61\xbe\x32\xf2\x26\x81\x90\x4e\x76\x29\x5a\x98\x99\x7e\xe8\x59\x22\xad\xd7\xfd\x7e\xcd\x34\x29\xaa\x79\xdf\xc6\x46\x5f\x2a\x4e\xc8\xe4\x12\xb0\x37\xda\x0d\xcf\xc0\xba\xec\x22\x0d\xc1\xb6\x8c\x7a\xa1\x82\x97\x2c\x44\x37\x1e\x5c\x08\x53\x86\x57\x00\xb4\xd3\xea\x65\xa4\x4d\x9a\x06\xfa\x41\xb9\x37\xa2\xb6\x90\xdb\xad\x50\x56\x4e\xc4\x08\xea\x7b\x11\xaf\xd7\xb4\x9b\xcc\xd8\xb5\x0a\xbd\xe4\x84\xc5\x90\xc9\x8e\x31\x06\xd3\x41\xb5\x62\x08\xdc\xee\xf9\xe3\xf8\x3e\x35\x46\x9d\x67\xaf\x30\xcc\xd5\x39\x43\x51\x31\x25\x3d\x4b\xbf\x38\x95\xe6\x99\x75\xbf\x1b\x46\xe8\x9d\xd4\xf5\xb2\xd1\x24\x2e\xb3\x90\x3e\x22\x49\x10\xb0\xc7\xc6\x32\xfb\x46\x7c\x17\xa5\x58\xed\xaa\xc9\x1e\xdd\xc4\x94\xb0\x0d\x8d\x64\xbb\x55\x1d\x29\x44\xac\x3e\x95\xb6\x9b\xe2\x30\xea\x25\x68\x7c\x9f\x8d\x48\xb7\xe6\x69\x9b\x54\xc5\x03\xda\x40\xfb\x6b\xde\x93\x97\xcc\x8f\x29\x12\x04\xc9\x80\xc2\x0e\xd6\xe9\x45\x54\xba\x13\x39\xcc\xd5\xe9\x47\x89\x4c\x4c\x6c\xa2\x2c\xc3\xa9\x12\x45\x12\x59\x9d\x96\xd5\x52\x3a\x6f\x0d\x8c\xfa\x63\x29\x81\x0a\x55\x48\x44\xcd\xa3\xef\xd4\x05\x77\xd0\xe9\x84\x5b\x5f\x86\x09\x0a\xfa\xf7\x51\xd4\xe9\x7b\xc8\x1c\x57\x2c\xb4\x52\x3c\x4a\xa4\xc1\x1f\x4e\xc8\x8a\x85\x28\x4e\x76\x4a\x65\xe5\x28\x78\xab\x2b\x56\xba\x97\xcf\x17\x74\xaa\xd9\x28\x46\x37\x82\xc7\x34\x4a\x52\xdb\x9a\xa3\x30\xe2\x3f\xc9\x48\x36\x93\x59\x2a\x9d\x68\x8a\x05\xcf\x14\xf3\xc1\x85\xa3\xd3\x07\xb3\x65\x44\x49\xed\x13\x65\x9e\xa9\x0c\xab\xc4\xb4\x31\xe1\x70\xcc\x81\xdc\xf3\x60\xb8\x66\x8e\x15\x99\xe0\x58\x0d\xf7\xe3\x3e\xd7\x7c\xb0\x74\x39\x80\xf9\x63\x11\x81\xe4\x6f\x89\xdc\x27\x1d\x0d\x14\xb6\xc6\x92\xd3\x45\x5a\xd4\x12\x57\x7c\x52\x4b\xb9\x58\xd4\x53\xe6\x74\xb9\xbc\x9c\x2d\x98\x93\x8c\xe4\xb7\x57\x2b\xb1\xab\x5b\x9c\x21\x89\xbd\x02\xb9\x6a\x30\xfb\xd2\xc0\xf6\x3b\x23\xe0\x6c\x8e\x8f\xc4\xc3\xbf\xc4\xd3\x13\x48\x1a\x0c\x77\xf1\x53\x78\xea\x0c\x77\xf1\x31\x53\x26\x3c\x4c\x39\x8c\x1b\xc1\x03\xdb\x62\x3f\x91\x5c\xac\x56\x6e\xc8\x0e\x45\x0e\x63\x8e\x04\x92\x18\xfb\xdb\xb6\x5c\xaf\xc3\x9d\xa4\x6b\x00\xf0\x5b\x95\xce\xbf\x33\x3f\x70\xba\xd7\x79\x89\xd1\x37\x37\x96\x98\xf0\xbb\x9a\x49\x74\x24\x9b\xd2\xca\x6a\xe6\xbc\xe1\x41\x89\xb4\xbe\xff\xa5\x33\x80\x01\xa2\xf8\x41\x8e\xad\x19\xba\xf2\x0c\x01\x03\xf7\x82\x6d\x31\x36\x5d\xf2\xd5\x87\x72\xca\x67\x17\xab\x81\x7d\xd4\x2e\xed\x2f\xb7\x7d\x95\x4e\x38\x5d\xe8\xef\xdc\x1f\xea\x4b\x3b\xe2\xaf\xec\x4a\xae\x90\x19\x00\xe0\xcb\x5b\x14\xb5\xf1\xa5\x5e\x9d\x74\xbc\x61\x1d\x02\x44\x5a\x38\x6e\xda\x0c\x37\xfe\xd0\x3b\x5a\x77\xbe\xe0\xdf\xca\xd9\xc5\x52\xaf\xac\xd6\xf4\xbf\x17\x53\xb9\x16\x3f\xf4\x16\x46\xeb\xa1\xc9\xe8\x0a\x5c\x3f\x52\x42\xc8\x77\xb6\x5e\x8b\xbf\x4f\xd5\xdf\x27\x16\x13\x26\x71\x42\x85\xef\xed\xc9\x6b\xbd\xc8\x72\xc4\x82\x20\xb9\x73\x67\xd3\xd2\x0a\xef\xf2\x2e\xaa\x7b\xcd\xc8\x1b\xba\x2a\xba\x0b\x5a\xb1\xd9\xd4\x75\x62\x3d\xb8\xaf\x03\xc8\xec\x23\xfc\x46\x10\xfe\x9f\x7f\x00\x99\xf2\x65\x25\xe3\x4b\x68\xd3\xef\xdf\x86\xbb\x77\x5e\x33\xfc\xd6\xc9\x02\xd2\x2f\x19\x77\x75\xb1\x54\xef\x4f\x9c\xf7\x4f\xb5\x6c\x42\x7d\xec\x1e\xa8\x57\xae\xfd\xeb\xd9\x1b\x76\x2e\xf1\x2a\x8c\x73\x80\xe3\xd0\xe3\x6c\x17\x7a\x7b\x4b\x48\x7a\x76\xc2\xce\xd7\xeb\x54\x7c\x2a\xc1\x0a\x1a\x6e\x3c\x1d\xa2\x8f\xc8\x26\x24\x55\x6a\xf8\x3b\x55\xfe\x16\x32\xa6\x16\x8c\xa7\xd1\xdc\xab\x2d\x54\xb6\xcb\x0a\x6d\x54\x36\xbb\x10\x53\x92\xc6\x7e\xfb\xda\x5d\xa5\xde\x6a\xc3\x73\x51\xde\x7a\x4d\x45\xd3\xb5\xed\x02\x5d\xaf\xef\x75\x94\x5f\x97\x34\x9f\x55\x8f\xfd\x03\xfb\x6c\x1e\x8d\xbb\x93\xb1\x69\x61\xca\x46\xe3\x9e\x76\x0e\x93\x0e\x26\xd4\x75\x30\x71\xe3\x99\xd5\x7c\x33\x0e\xc4\x99\xdb\x5a\x7c\x30\x2f\x66\xc2\x5b\xd1\xda\xba\xbf\xc7\x7b\xc8\xc3\x66\x3b\x16\x30\x4f\x7b\xb3\x05\x81\xe9\x8a\xf5\xc7\xd0\x30\xa1\xae\x65\x86\x77\x52\x72\x5b\x27\xad\x9e\xdd\x63\x9d\x3c\x79\x4e\xa8\x92\xc0\x75\x98\xf7\x36\x25\xe2\x42\x1e\x1b\xd0\x43\x6b\x3b\x35\xab\x40\xa1\xe4\x00\xef\xc9\x84\xa7\x75\x7b\xb2\x59\x75\x6c\xf5\x4f\x5b\x92\x5b\x3e\x7a\xa3\x55\x43\xad\x89\xdb\x3e\x78\x33\xfb\xd6\x9e\xb8\xed\x83\x8f\xf3\x96\xa4\x6d\x99\x9f\x29\xf3\xaf\x90\x91\x0e\x33\xf8\x25\x68\xbd\x06\xbf\x05\x40\x59\x62\x10\xc6\x4f\x6f\x7b\x7a\x83\x71\x70\x01\xe5\x8e\x3f\xd1\xfb\x05\x6d\x6c\xd8\xd2\x59\xa3\xc3\x1a\x18\x91\x54\x9d\x6b\x1a\x30\xa9\x35\x30\x3e\x07\xa5\xaf\x1e\x83\xef\xa0\x8f\x87\x55\x82\xcd\x6b\xeb\x95\xe5\x18\xec\x30\x17\xb9\x89\x00\x2f\xa5\x5d\xed\xa8\x22\x11\xbe\xb7\xc5\x9f\x3c\x4b\xce\x11\x4a\xdb\x1c\x5e\xca\x34\x6c\x4b\xc7\x09\xc2\x69\x9b\x1b\x8c\x9f\xdf\xa4\x83\x18\xd5\x18\xc3\xe8\xb9\x09\x27\xb3\x9f\x6b\xa1\x1b\xd2\x97\x76\xff\xf1\xfc\x02\xce\xce\xe3\x24\x46\xa9\xf6\x78\xc2\x09\x79\xcf\xb4\x49\x48\x62\xa0\x54\xe2\xde\xa3\x64\x6f\x2f\x46\x1f\x58\x98\x9e\x25\xe7\xd8\xc4\x89\x61\xc3\x5d\x6d\xe6\x22\x36\xa7\xc4\xe2\x00\x25\x77\xee\x38\xd9\x95\xbe\x19\x72\x7b\x17\x80\xbf\x0c\xe5\x69\x10\xa4\x60\x4f\xe5\xf7\xa9\x1e\x87\x13\xcc\x24\xdb\x07\xa8\x9e\x15\x0c\xe5\xff\xcb\x23\xe3\x0c\xcd\x27\xb9\x7f\xb7\x8c\x4b\xb3\x0f\xa2\xdb\xde\x48\x48\x7d\x88\x53\xda\x67\x66\xdc\x95\x3e\x32\x79\x62\xfd\xa2\x8e\xa2\x7f\xab\xbf\xbf\xb1\x86\x8b\x18\xe5\x32\x70\xe2\x6f\x66\x49\xfb\x8d\xc9\x70\xd1\x38\x21\x7f\x33\x2c\xf6\x34\x39\x40\x98\x61\x4e\x0c\x26\x59\x59\xed\x7c\x61\x83\x2f\x4c\x41\xea\x7d\x61\xee\xd5\x11\x67\x84\xeb\x61\xb5\xe1\x22\xd3\x20\x00\xff\x76\x42\xf8\x19\x3d\x87\xa0\x91\xb1\x74\x09\x4d\xf7\x28\xe4\x63\xa4\x1f\xb3\x47\x24\x17\x19\xd3\x3d\x26\xb3\x66\x7b\xec\x1c\xee\xf9\xb1\x69\x20\xd1\x56\x0b\x14\xf7\x1f\xb1\x41\x7f\x4f\x03\x17\x3a\xe4\x48\xb8\x81\xf5\xe8\xf4\x6c\x72\xea\x24\xfb\x47\x64\xab\x8c\x81\x38\x68\xfe\x88\xe8\x48\x69\xce\x08\xe8\x80\x69\xae\x1b\x8f\xd8\x9e\x21\xd1\xf5\x43\x83\x33\x4c\x46\x53\x2b\xec\xe4\x3b\x0a\x20\xa4\x25\xec\x6c\xa8\x71\x9e\x06\xa2\xa0\x33\x7e\x4e\x92\x30\x15\x17\x54\x59\x33\xac\x7e\x7c\x20\xc3\xb6\xc9\xc0\xc0\x2c\xd2\x39\x53\xf1\x9d\x6c\x55\xb9\x3c\x96\x2b\xe2\xbb\x05\xd8\x61\x70\x46\x34\x56\x92\x06\xf7\x31\x6f\x06\xcd\xa4\x08\xa2\xde\x69\xaf\x5e\x09\x45\x34\x48\x78\x94\x72\x5d\x7c\xd3\xd9\x8f\xa4\x1a\xf3\x15\x02\x99\x6f\x86\x55\x15\xfe\xee\xa0\xa9\xde\xcc\x65\xe9\xaa\x61\x2e\x9a\xa7\xa4\x78\xbd\xc1\x0a\x45\x53\x91\xd4\xa1\x33\xc0\x67\xca\xf3\xa6\x2d\x6f\x50\x4f\x08\x05\xd5\x2e\x34\xc4\xae\x03\x3e\xee\xf6\x0a\x0a\x72\x7e\x93\x4e\x1f\xe1\x6d\x14\x4c\x38\x92\x88\xa4\x4e\xe7\xdd\x6e\xdc\xda\xda\xda\x77\x83\x46\xca\xf6\xf6\x4a\xd3\x89\x27\xb0\x24\x42\x59\x6e\x02\xe9\xf4\x4c\x8b\x5b\x06\x05\xda\x3c\x97\x6e\x92\x0d\x92\xbb\x0e\x94\x24\xe1\x1b\xec\x26\x44\x29\xc7\x8c\x6b\x36\xde\xd2\xcf\x56\x46\x17\xfb\xa7\x5c\xe2\x25\xa3\x03\x7f\x26\x32\x62\x43\x73\xd2\x34\x26\x56\xdb\xfc\xb3\x9f\xb6\xf6\x72\xdb\x88\x69\x7e\x6d\x59\xa2\xfd\x74\xdf\xeb\x74\xb3\x41\xf1\xef\xb6\x3f\xe4\x06\x62\x69\xc0\x1a\x2a\xdb\x29\x9f\xbd\x00\xdd\x2d\xf0\xb6\x50\x94\xb2\x83\x12\x3b\xad\xfc\x4a\x6e\x6d\x4b\x55\x04\x8c\x24\xa0\xe7\xca\xe2\xcb\x29\x3f\x5d\xd1\xe9\x3c\x6a\x62\x23\xed\xd0\xae\x79\xbd\x5e\x1f\xd3\x15\xef\x56\xb3\xcb\x10\x6d\x70\x63\xfa\x42\x59\xe5\xf2\xc3\xe2\x62\xa9\x7f\x6e\xe2\x61\xf5\x7b\x97\x5f\xad\x78\xc5\x3c\xe0\x25\xc7\x56\x15\xdd\x38\x2b\xa5\x03\xd3\xdb\x1e\x6a\x5d\x79\xff\x89\xd4\x38\xb1\x13\x9d\x30\xfb\xac\x7d\xe5\xf8\xe5\x4e\x12\x57\x21\xc7\xa9\x7d\x87\x62\xe7\x07\xe1\xee\x2f\x97\xad\xc4\xf5\xc6\x19\x0a\x80\xa4\x63\x0e\xaf\x51\x51\x8e\xea\x16\x53\x0f\x31\x03\xdf\x3e\x73\x6e\x13\xbf\x7f\x77\x14\x65\x9c\x7b\x46\x08\xc0\x0a\x72\x98\x66\xb3\x49\xcd\xaf\xb3\xf6\x52\xfa\x78\x4a\xde\xa7\x93\x89\x63\x13\x50\xf7\xd9\xdc\x11\xbd\x16\x19\x4d\x5d\xee\x7e\x93\x71\xed\x79\x1b\x52\x57\xe6\x07\xd8\xcc\xf5\x23\xe9\x83\x43\x24\x31\x31\x35\x51\x42\x14\xf7\x7b\x8f\x5b\xdb\x1d\x04\xf5\x16\x2b\x5f\x56\x8b\x38\xc2\xa5\x07\xad\xc9\x22\x0e\x75\xb4\x9b\x73\xf8\xc1\x19\xe1\x3c\xa6\xda\x7d\x9a\x64\x1c\xc6\x39\xe7\x44\x73\x4f\x78\xc3\xe8\x4a\x5d\xa8\x10\x2e\xb6\xbd\x28\x39\x39\x3b\xc4\xfd\x03\xbc\xff\x00\x1f\xec\x9f\xe3\x11\x27\xd7\x00\x1c\xf6\xd4\x1a\x08\xd5\xf1\x79\xf0\x58\xf9\xf2\xca\x9c\x5a\xee\x28\xe3\x02\x38\x3e\xc8\x41\x10\x8e\xb9\x75\x41\x76\xf3\x69\xbb\xa1\x89\xae\xee\x03\xbf\x5a\xd5\xeb\x09\x82\xce\x98\xe3\xa9\xcc\x12\x76\x46\x7c\xbd\x1e\xf3\x20\x78\xf8\x48\xfc\xdf\xef\x3f\x26\x63\x8e\x70\xc5\x89\x94\x4f\x74\xb3\xc5\x6c\xfa\xb4\xa0\x8b\xa7\x33\xc6\xc3\x83\x7d\x84\x67\x9c\xdc\x24\x3c\x9b\x2d\x38\xd8\x44\x45\x3f\x36\x9c\x14\xf7\xa3\x27\xf6\x8b\xe1\xae\x35\xa4\xac\xbd\xda\x6a\x53\x39\xdc\xf5\x2d\xad\x40\xf3\xac\xad\x08\xa5\x9d\xa9\x36\xd2\x92\xb6\xad\x74\xb9\xe2\xc3\xdd\xf3\x0d\x76\xbe\x7b\x56\xb1\x9f\x6c\xed\x53\xef\xa3\x7a\x83\xfd\xb7\xdb\xda\xac\x8c\x39\x6b\x16\x62\x5b\xbc\x03\x8d\xc9\x63\xcd\x60\xcc\x6b\xbf\xb4\x46\xf8\xe5\x1e\x18\x23\xe2\x6a\x5b\x2f\x20\xc7\xcf\xf7\xe3\x56\x3f\xc7\x9f\xea\x89\x34\x08\xfe\xf5\xae\x18\x43\xe2\x6d\x3d\x91\x19\x7e\xbe\x2b\x0a\x36\xe9\x57\xfb\x22\x8e\x15\xa4\xd3\x77\x6f\x13\x5f\xf9\x16\x11\x37\x14\x65\x04\xd6\x7b\xfd\x0e\x21\x25\x37\x8a\xd4\xa4\x3b\xe6\xd7\x4f\x61\xee\xda\xfc\xb2\x4a\xed\x83\xb5\xbf\x7f\x08\x92\x34\x95\xd1\xc9\xa7\xb8\xdf\x73\x0d\x64\x9e\x48\x44\x39\x24\x1a\x8f\xaf\x66\xf0\x69\xab\xb6\xe4\x5a\xa4\xca\xf8\x8a\x96\x13\x13\x7c\xa6\x25\xa6\x08\x2c\x50\x60\xb6\xae\x34\x46\x76\xf1\x13\xeb\xcf\x92\x7b\x11\xea\x57\xdb\x48\x53\x9f\xd3\xba\xc7\x0b\x6e\xe2\x4b\x7b\xfd\x2c\xb3\xf0\x60\x1f\x68\x71\x59\x94\x69\xe1\xc9\x39\xc4\x80\xf4\x0c\x78\xab\xa1\x92\xb3\x2c\x98\x70\x0e\x20\x3a\x5f\x51\x4c\x09\x21\x15\x0f\x02\x05\x57\x1e\xd5\xe3\x3c\xc8\x43\x8c\xbb\x73\x5d\x70\xa3\x10\x5f\x72\xa3\xfd\xae\x77\x43\x8a\x6d\x3a\x23\x1e\x04\x8a\x2b\x06\x21\x25\xe2\xba\x29\xae\xa1\x7f\x33\xa2\x2f\xa7\x40\x27\x4c\x91\x34\x1b\x6b\x90\x47\x2d\x62\x91\x27\x70\x6b\x23\x4a\x27\x4c\xba\xe9\x6a\x31\xf9\x83\x5f\xaf\xd7\x20\x88\x55\x4f\x53\xbe\xa2\x7f\xf0\x6b\x40\xd1\x56\x19\x82\x40\x67\x50\xd0\xdb\x69\x41\x17\x41\xd0\x7f\x24\x9f\xf4\x09\xc0\xc0\x50\x89\x44\x89\x8f\xe3\xd1\xbc\x6d\x77\xd0\x59\x36\x2d\x0d\xde\x36\xd4\x53\xb0\x53\x18\xab\xa8\x6c\xa0\xb2\x9b\xa8\xe1\x90\xa3\xb4\x6d\x4c\x04\x9f\x7d\xe3\xe4\x06\x76\xf2\x0f\xd7\x73\xbe\x8c\x66\x1c\x7b\x30\x00\x91\x0b\x61\xe9\x44\x94\x13\xdd\x19\x71\x94\x44\xb7\x72\xa4\xf2\xc4\x50\x7e\x96\x33\xde\xad\xaf\xc4\x4a\x00\x97\x6c\xed\x62\xfd\xab\x67\x15\xbb\xe5\x1b\x6d\x30\xdc\xf8\x4c\xae\x69\xfa\xcb\x4d\xa6\x75\xc4\xa0\x88\x58\xf2\x01\xf0\x18\x78\x8b\xb5\x54\x28\x2e\x56\x66\x45\x91\x0e\x49\xfb\xfb\x87\x70\xc1\x55\xeb\x49\xcb\x77\xd0\x3d\x14\x67\x83\xd0\x1b\x9e\x54\x0d\x4f\x10\x84\x4b\xbe\x5e\x67\x1d\xd2\xf6\xdd\x20\x23\xf5\xf4\x67\x15\x0b\x82\xa5\xf8\x8e\xc3\x34\x40\x51\xf8\x85\x11\x86\xff\x66\x3f\x2b\x55\x59\xc2\x5d\x0f\xe1\x8c\xe4\xdc\x9e\xd6\xc2\x0c\xc4\x95\x60\xb7\xca\x07\x19\xf0\x0b\xe1\x51\xc8\xc9\x82\x3b\x4e\xa1\xd0\x45\xf5\x12\x21\xfc\x99\x85\x19\xc2\x9c\x64\x28\x52\x27\xae\x90\x92\x09\x1f\xac\x24\x1d\xa3\x0b\xf9\x17\x0d\xc2\x84\x14\x6e\x6d\x33\xde\x75\x0e\x3e\xda\x60\x56\xb2\x29\xa1\xa2\xdc\x04\xa1\x48\x81\x65\x7b\x66\x68\x84\x0f\x92\x48\x3d\x26\x03\x1e\x9d\x71\x9c\x9c\x6f\x36\xf8\x92\x93\x1b\xb0\x7d\x89\x3a\x3d\x0c\x5b\xa2\xfa\x2b\x2e\x3b\x60\xf9\xb7\xab\x7f\xed\x01\xed\x87\xbb\xd2\xea\x8a\x96\x60\x7e\x35\x9d\x55\xd2\x7c\x53\x6a\x20\xa5\x61\x95\x54\xfa\x8a\x67\x88\xe8\x0a\x46\x56\xa0\x42\x06\x23\x2b\x3e\x91\x7f\xae\xc0\x40\x4b\xd7\x73\xb1\x80\xe4\x4b\xce\xc7\x51\xa7\xb7\xb1\x6b\xf7\x15\xff\x77\x15\xdc\x9e\x6e\x7b\xd0\xe9\x5c\xf2\x33\x29\x03\x3f\x8f\xea\x2a\xe8\x41\xa7\x17\x81\x48\x4a\xd4\x73\x2d\x68\x02\x86\xf7\x3f\x7b\x3e\xd0\xfe\x61\xfe\xa1\x00\x52\x7f\x74\x12\x50\x10\x0b\xe0\xfa\xe2\xba\xb1\x38\x07\x82\x8b\x79\xdd\x21\xa0\x71\x1a\xb0\xe4\xfa\xce\x8d\x88\x96\xfc\xee\xb0\xce\x35\xef\xca\x6f\xb1\x41\x7d\x82\xab\x9f\xf6\x39\x18\xee\xc6\xc7\xa0\x62\x01\x51\xa6\x35\x6e\x11\x04\x39\x92\x5c\x8a\x9f\xf0\x9a\x56\xfd\x29\x8c\x0d\xc0\x3a\xd9\x6d\xfc\xd8\x19\x30\x50\x4e\x89\xd5\xee\x3a\x71\x61\xbc\x6c\xe6\x67\x76\x3f\xb3\x2d\x71\xa1\xca\x24\x0c\xd1\x73\xd8\xcf\xe1\xbe\xf0\x9c\x93\x59\x6a\xed\x16\xc4\xaa\xd3\x69\xbd\x8b\xac\xd7\x87\x8f\xda\x2f\x29\x9e\x5d\xdf\xef\x3c\x44\x37\x47\x62\x86\x1e\x71\x38\x78\xa4\x05\x2c\xde\xa1\x18\x43\x1d\xf4\xd2\x38\x05\xbe\xe0\x48\x90\x41\x51\xc4\xe9\xf5\x0b\x7d\xa5\x34\xeb\x09\xe8\xe0\xdc\xa8\x99\x41\x70\xcc\xc3\x27\x1c\x21\x88\xfc\xf5\x5d\x3c\x63\x8a\x01\x93\x0a\xe1\x57\x14\x01\x1d\xa5\x45\xb9\xf5\x09\x78\x4e\xc3\xa7\xdc\xb5\xcd\x7e\x05\x00\x57\xd2\x19\xc0\x56\xff\xd2\x0c\xbb\x01\x0d\x00\x4c\xe9\x50\x74\x0f\x1f\x71\x92\x88\x66\xa7\xf8\x08\xa2\x70\xfe\xb0\x8f\x28\xd2\x27\x37\xb9\x62\x8b\x52\x1c\xe8\x78\xdb\xd7\x06\x63\x6a\x8d\x91\x3a\x74\x3a\x3f\xed\x0e\xa0\xc7\x56\x92\xc3\x01\xd4\xf0\x98\x41\x6a\xe3\x6a\xf9\x5d\xc7\xed\xd7\x6e\xf6\x9a\x02\xab\x8d\x95\xe4\xe7\x72\x8e\xbf\xf1\x37\xee\x6b\x8e\xff\x29\x97\xb0\xaa\x02\x61\x4e\x2f\xe6\xf3\xd9\x62\xc5\x59\xf4\xfc\x27\xb7\x74\x92\x0c\xde\x89\xe5\x37\x52\x77\xe9\x8c\x70\x67\xa5\xe2\xdb\x56\x2a\x87\x88\xd0\xd8\xcc\x57\xc6\x65\xa0\x38\x03\x93\x44\x13\x67\x15\x49\xb9\xfd\x33\x6e\xdc\x23\xae\x78\x28\xb9\xea\x39\x47\x39\x79\x2d\x5f\xdc\xe4\xe4\x95\x14\x01\x15\xe4\x25\x87\xbd\x3a\x74\x1b\x55\x0b\x07\x96\xfd\x28\x1c\x18\x6f\x09\xb5\xa3\x1a\x14\x04\x61\x4e\xfe\x90\x9e\x0e\x39\xfc\xc8\x25\xe6\xaa\xa6\xfc\x77\x1e\xe6\x52\x4c\x53\x04\x41\x11\x52\xcc\x71\x82\x62\x9f\xc5\x42\x4a\xb8\x0f\x5e\x8f\xc4\x0a\x6f\x63\xff\x88\xf6\x3a\x76\x2e\xb2\x6e\x88\x20\xc3\xb1\x7d\x83\xb9\x42\xf4\xdf\x6c\xf0\x5b\x57\x3a\xf2\xad\xe4\x97\x52\x34\x27\x6f\x17\x5a\x52\x32\xac\x4e\x38\xb9\x39\x9a\xac\xa2\xe1\xae\x3c\x96\x0e\x77\xf1\x53\x59\x6b\x34\xdc\x55\x87\xd6\xe1\x2e\x7e\xc3\x57\x34\x1a\xee\xaa\x13\xed\x70\x17\x9f\x16\x65\x26\xbe\x02\xff\x67\x48\x72\xd6\xe1\x77\xce\x2a\xd8\x10\x4a\x9b\xb3\x6d\xce\xc5\x8a\x54\x66\xa5\xea\xf2\xa0\x99\x14\x52\x14\x85\x94\x9c\xf0\x33\x7a\x8e\x06\x9d\x4e\x72\x46\xcf\x3d\x93\xb6\x3f\xad\x56\x65\xe7\x1d\x57\xfc\xfd\x9e\x93\x1e\x3e\x15\xff\x7d\x80\x23\xfe\x47\xf8\xff\x2f\x4e\xde\x72\x43\x91\x65\xba\xe0\xbc\xfa\x2c\x89\x22\x7f\x7c\x51\x82\xd1\x49\xc9\xab\xd5\x67\xf7\x87\x7a\x33\xa7\x39\xff\x6c\x1f\x75\x7e\x49\x24\x55\x92\x22\x87\xfc\x25\x49\x2a\x9f\x15\xe9\xe4\x8f\x7a\x3f\xa3\x3f\x39\x96\x5a\x69\x2d\xa9\x15\xcf\x4a\x52\xbb\xe0\x13\xba\xe2\xac\x2e\xec\x75\xa5\xb3\x5e\x16\x08\x81\x23\xae\x06\xca\x72\x0f\xd6\x62\x8b\xf4\x37\xa0\xdd\xd5\x4c\x3d\x47\x5e\x46\xb4\xc1\xd3\xd9\x37\x78\xfc\xec\xd5\x03\x13\xd5\xbc\x52\x28\xf3\xa6\x72\xf3\x42\xa3\x61\xf0\xf8\x3d\x17\x55\x4a\x12\xeb\x01\xff\xc0\x07\xea\x92\x3c\x05\x33\x00\x63\x15\x37\x30\x59\xf7\x92\xa8\x17\x85\x62\xd0\x7a\xb8\xe7\xb4\xe6\xcb\xf6\xd6\x7c\xd9\xd6\x9a\x2f\x4a\x1a\x97\x90\x53\x1e\x9f\xda\xf6\x7c\xd1\xed\xf9\xf8\xc3\xf6\x7c\x91\xed\xf9\xa8\xdb\xb3\x41\xf8\x13\x27\x7f\x59\x26\x32\xd8\x2c\x72\xa0\x2e\xc1\x6b\x03\x1e\x65\xa4\x7c\xc5\x2b\xe2\xaa\x78\xb1\x30\x62\xfc\x2a\xe7\xd5\xaa\xa4\x93\x77\x7e\x7a\x39\xd1\x4c\x27\x1e\x15\x73\xad\x2e\xcb\xa5\x2e\x46\x56\xf6\xc1\x28\x04\xca\xe5\xbb\x45\x39\xa5\x8b\x6b\x3d\x9b\x3f\x73\x72\x33\x35\x96\x10\xd1\x4d\x5d\x99\x1b\xd5\x4d\x25\x1a\x62\x3e\x0b\x6f\x84\x3d\x84\x9c\x73\x31\x16\x17\x4b\x0e\xee\xa9\xb7\x15\xfc\x5a\xe2\x29\xfd\x4a\xc1\xaa\x5f\xb7\xb5\xf9\x9d\x93\xa5\xa5\x70\x17\x5f\x09\xd7\x80\x7a\x6c\x05\xb7\xb5\xfd\x9d\x93\x05\x64\x75\xbf\x56\xc5\x06\x7f\xf1\xb7\xd4\xcf\x3f\xda\x38\xb1\x32\x84\xcb\x88\x47\x0e\xbd\x83\x7b\xe5\x8b\x44\x9c\x13\x97\x88\xf5\x7c\x3a\x0d\x20\x41\x83\xa0\x47\x08\x09\x79\x70\xb0\x2f\xcd\x0a\x6a\xab\x43\xea\xcd\xf9\xf5\xba\x93\x07\x41\x27\xf3\x11\x7c\x09\xeb\xca\xbd\x1c\x5c\x4e\x59\x14\x8a\x14\xcf\x58\x1e\x89\x1b\x9f\x0a\xd6\x52\xf2\xcb\xf5\x3a\x53\x86\x60\xd2\x96\x57\x1d\x05\x60\x57\x84\x29\x9b\x03\x98\x2f\x58\x6a\x34\xda\x63\xd6\x23\x34\x58\xa5\xe2\x1c\x01\xfc\xed\x43\xe2\x14\x16\x94\x28\xe9\x10\x52\x48\xc3\xb1\xc4\x1a\x8e\x49\x50\xe1\x44\xa9\xd1\xe0\x78\x90\x1b\x3c\xd5\xdc\xb5\x24\xac\x4c\x08\xe2\x26\x45\xfd\xc1\x18\x56\x6a\x1f\x1b\x93\xbf\xe4\x79\x62\x42\x3e\xf3\xae\x9d\x0b\x90\x36\x35\x69\xc0\xa1\x90\x36\xd7\xe3\x35\xdc\xdd\xd8\x08\x74\xf5\xf1\x6a\x1d\x6b\x34\x26\x9f\x38\x86\x8a\x5c\xd6\xc5\x53\x27\x05\x2a\xc2\xa2\x12\x95\x30\xdc\x8d\xa9\x0a\x68\x98\x0f\xb2\xe8\x1d\x0b\x73\x14\x67\x3a\xc4\xa1\x4c\x49\x50\x3c\x21\x63\xe7\x5e\x34\xc1\xea\x64\x32\x91\xf7\xa1\xf9\x9d\xe1\xae\x42\x44\x13\x49\x52\xcb\x4f\xe3\x89\x3f\x62\x00\x54\xed\x16\x33\xd5\x7a\xa8\xd4\x16\xa3\xb0\xb8\x44\x92\xf9\xa8\x56\x0c\x8d\x19\xc9\xe3\x39\x01\x28\x64\x16\x04\x73\x44\xa3\x9b\x31\x61\xf1\x94\xcc\xe3\x5c\xb9\x0e\x50\x32\x8e\x69\x4c\x09\xd8\xdd\xa1\xfc\xce\x1d\xe3\x54\x90\x90\x69\x9c\xc4\xca\x0a\x08\xd1\x3b\x77\x34\xb0\x4b\xbe\x47\x63\x34\x16\xe9\x63\x84\xf3\xbd\x3d\x9d\x4e\xf7\xf2\x18\x4d\x45\xfa\x14\x61\xaa\xd3\x45\x06\x60\xd0\x31\x21\x64\xba\x5e\xc3\x1f\x07\x04\x5f\xdb\x79\x0d\x2b\x55\x64\xac\x8a\xd8\x8c\x1d\x47\x53\xf9\x1c\x4f\x89\xc4\xa4\x1e\x93\xb3\xf3\x98\x05\x01\xeb\x10\x32\x8d\xd1\x4d\x4e\x58\xab\x81\x66\x1e\x04\x82\x33\xa7\x0a\x4d\x74\x2c\x55\x66\x0c\xc5\x4c\xd4\xc1\xd0\x46\x1a\xa7\x9c\x9d\xc7\xf3\x20\x98\x9b\xc2\xe6\x3f\x53\x18\x93\x85\xcd\x51\x3c\x17\x85\xcd\x65\x61\x73\xd2\x8b\xe7\x8f\xc6\xda\x48\x66\x7e\xe7\x0e\xfa\x8b\x85\xe3\xb3\xb9\x6f\xfb\xa4\x60\x72\xe6\x84\x59\xbb\xaa\xb9\xa0\xd4\x5f\x2c\x64\x32\xb3\x63\x57\x65\x35\x9e\x6a\xe5\xb9\x7f\x17\x0d\xce\x26\xe7\xd1\xd9\x04\xa7\xe7\xee\x0d\xfd\x6f\xee\x7b\x51\x28\xcb\xfb\x5e\x07\x26\x43\xff\x5f\x22\xa1\xff\xaf\x04\xad\xd7\x54\x82\x48\x89\xb9\x2e\xaf\xc1\xbf\xf1\x2d\x66\xd1\xca\xfb\xb1\x5c\x0e\xcc\x53\xf4\x37\xc7\x34\xd3\xe1\x77\xad\x76\xd7\x37\x7b\x71\x6f\xc2\x49\x66\xee\x53\xbf\xc9\x36\xda\x88\xaa\x5e\x6c\x6f\xc7\x3c\x42\x5a\x87\x6e\x0f\x36\x9f\x98\x0c\x89\x8f\x18\x66\x02\x03\x83\xc7\x26\x45\x98\x79\x09\x72\x95\xd3\xf6\x69\x00\x4b\xeb\xc9\x85\x3b\x7d\x65\xb4\xd4\x8b\x99\x35\x63\x63\x77\xee\x20\xc0\x62\x57\x41\x74\x13\x89\x79\xbd\x5e\x77\x44\x87\xce\xc4\x8f\x73\x9c\xc8\xbf\xc8\x96\xe4\x60\x87\x41\xd3\x32\xf2\x43\x0d\x68\xbf\xff\xb8\x5d\x03\x8a\x59\x46\x6e\xe4\x85\xee\x27\xa5\x47\xa7\xea\xf6\xe7\x4b\x8f\x64\xea\x0f\xf5\x48\x16\x7c\x45\xe3\xa6\x48\x21\x92\x2f\x3e\x6a\x02\x96\xfe\x48\xa0\x84\xb9\x5c\x38\x71\xa6\xfe\xe6\xea\x6f\x91\xd5\xd4\x4e\xa3\xcc\x8f\x23\x67\xf6\xcc\x64\x90\x18\xca\x44\x87\xbe\x17\x50\x12\x25\x35\xbf\xb3\x32\x0b\x8b\x4c\x33\x0b\xcf\xd6\x6b\x9e\x09\x2e\x62\x61\x8a\x6a\xf6\xbe\x3c\x8b\x1d\xb9\x83\xd2\x2d\x96\xd5\x4e\x1a\x04\xd7\x22\xfb\x20\x25\x37\x32\x56\x4f\xda\xf5\xb3\x61\x5e\x31\x37\xf1\x59\xc5\x36\x51\x98\x92\x30\xf5\x1b\x13\x04\xb5\x04\x7f\x97\x97\x3d\x44\x62\xf5\x3f\xd5\x45\x85\x08\xa7\xe4\x86\x56\x69\x31\x5b\x00\xce\x77\xda\xb5\x3f\xb0\x7c\x3c\x91\x0e\x5b\xfa\x8d\xfc\x89\x61\xbc\xd4\x27\xe6\x59\xa6\x9a\x0f\x9c\x5f\x36\xac\x64\x9e\x05\x41\x92\x85\x79\x86\x53\x24\xf5\x15\x61\x9e\x91\x14\xfb\x72\x3f\x96\xa9\xfe\xe2\x2c\xc3\x12\x32\x5f\x0b\xfe\xb4\xd8\x01\x6b\x1c\x44\xc2\x33\x0c\xe2\x3f\x4c\xb5\x9c\x64\x9c\x79\x87\x3a\x96\xfd\xf0\x50\x87\x33\x74\xc3\x49\xb6\x5e\x87\xfe\xf9\xc9\xe7\x05\x66\x79\x81\x45\xf5\x63\x95\xf4\x5c\xcd\x48\x87\x23\x74\x43\xa3\x1b\x4e\x52\x00\x52\xc8\xc8\x25\xed\xea\xa9\x11\xdb\xa8\x16\xbd\x38\x7f\x94\xe9\x35\x20\x57\x6b\x00\xac\x74\x61\x76\x96\x9f\x23\xd1\xa0\x4e\xdf\xb8\xbc\x89\xbb\xcc\x46\x94\xbe\x11\x47\x45\x8f\xbb\xea\x62\x9c\xa6\x4a\x4c\x23\x72\x6a\xb1\x8b\xe7\xbc\xc4\x1b\xce\x4b\x3c\x23\x5c\xcc\xa1\x44\x4f\x20\x1f\xe5\x54\x69\x47\xf3\x8c\x64\x19\xe1\x6d\x39\x5c\x95\xaa\x98\x7b\xbd\x1a\xec\xb2\x5d\x01\x6a\x6a\xd8\x8b\xb9\x0f\xf3\xea\x29\xbd\x60\x16\xe3\x51\x16\xca\x33\x8b\xeb\xeb\xe4\xac\x09\xa2\x93\x69\xa6\xf6\xd2\x61\xd5\x50\x0f\xb7\xea\x97\x77\x54\xa9\x9e\x23\xc4\x06\x4f\x32\x47\x16\x63\x30\x24\xe0\xf6\x01\xeb\x0a\x9f\xd0\xf9\x92\xb3\x0f\xa5\x4e\x98\x2f\xf9\x05\x33\x97\x74\x75\xbd\x9b\xba\xa5\xa4\x93\x72\x9e\xcc\xe8\x02\x50\xce\x5a\x84\x02\x20\x43\xb4\x39\xac\x73\xa1\xf7\x9d\x1c\x68\x3f\x51\x5c\x73\xab\xcc\x95\x95\xf8\x02\x08\xd9\x1a\xbb\xa5\xcf\xbc\x28\x0f\x5a\x4d\x0e\x52\x48\x50\x4c\xaa\xaa\x65\xf0\x00\x95\x86\x7b\x52\xee\xd5\x3f\x30\x01\x7b\xfa\x07\x08\x45\x94\x24\x71\xbf\x67\x64\x62\xfd\x03\x1b\x56\x60\xff\x11\x9c\x10\xc0\xcd\x72\x40\x23\xbd\x5f\xcd\x33\x72\xf3\x6c\x99\x46\xc3\xdd\x67\xcb\x94\xce\xc5\xed\xed\x74\x4e\x53\x9e\xd0\x45\x04\xeb\x39\x7e\xcd\x41\x50\x75\xb4\x58\xcc\x2e\xc5\xf3\x70\x17\x7f\x9c\xeb\x84\x8f\xf3\xe1\x2e\x7e\x0f\x77\x75\x95\x02\x3f\x86\xbb\xf8\x78\x76\x59\xe9\x34\xe9\xe8\x80\x8f\xf9\x24\x1a\xee\x1e\x03\x8a\xe6\x70\x17\x7f\x2a\x45\x86\x93\x53\x10\x8f\x55\x17\xd1\x70\xf7\xa9\xc5\x00\x1b\xee\xe2\xa3\xf9\x7c\xd9\x48\x3c\x05\x04\xa5\x68\xb8\x2b\x1f\x5e\xcf\xd2\xb1\xf8\x7e\xf6\xfd\xdd\xa2\xac\x60\xda\xfc\xc1\xaf\xa3\xe1\xee\xc7\xaa\x64\xbc\x5a\x95\x19\x80\xec\x6d\xf0\xd7\x8c\xdc\x3c\x8c\x86\xbb\x4f\x68\x3a\x86\x20\x80\xc3\x5d\x7c\x18\x0d\x77\x3f\xd0\x64\xb8\x8b\xfb\xfb\xa2\xa2\x09\xa7\xe2\x7a\xdc\x3f\x10\xd4\x50\x77\xe5\xfe\x7d\x51\x57\x51\x42\xbf\xfb\x0f\x54\x7b\x16\xb3\x89\xf8\x29\x0a\x3c\x9a\xc0\x1b\x51\xd6\x3b\x0a\xf7\x15\xbc\xdf\x8b\x00\x60\x6d\xa9\x5a\xb7\xff\xc0\x25\xef\xc1\xbe\x22\xec\xc1\x01\x7c\x93\x83\x97\x06\x3e\xb8\xab\x7e\x29\x62\x1d\xdc\x83\x56\x88\xe3\xe1\x81\x68\xc3\x8b\xd9\x14\xbe\x7e\x50\x1b\x8b\x83\x87\xde\x58\x1c\x1c\xd6\x07\xe2\x6e\xaf\x36\x0c\x77\x45\xc9\x2f\xab\x25\x07\xbb\x9a\xbb\xf7\xdd\x31\xe9\x03\x25\x9e\xf7\xe1\x51\xb4\xef\xf9\x3e\x3c\x8a\xc6\x3d\x3f\x80\x47\xf1\xf5\xf3\xbb\x70\xcb\xef\x03\x75\x9e\xdf\x83\x74\xd1\xb0\xe7\xf7\xe1\x51\x34\xe9\xf9\x03\x78\x14\xcd\x79\xfe\x10\x48\x2c\xda\xf1\xfc\x10\x1e\xfb\x50\x49\x0f\x9e\x65\x85\x50\xe3\x3e\xd4\xd8\x87\x2a\xef\x8a\x2a\xdf\x5e\x4c\x15\x0d\xfb\xd0\x6a\x6f\xd0\xf7\xf7\x45\x96\x37\x5c\xcc\xce\x0d\x5e\x78\x53\x6e\xcc\xaf\xeb\x32\x2f\x98\x5b\x7a\xa2\xcd\xb3\x33\xf8\x7d\xbe\x5e\xc3\x5f\x79\x46\xf5\x99\xc6\x0b\x68\xb5\xd1\xcb\x82\xb5\x5d\xb0\x02\xaf\x90\x12\x98\xc5\x58\x4d\x2f\xc3\x3e\x51\x9b\xa1\x01\x45\x0d\xb5\xb6\x11\x8f\x3b\x9a\x0f\x59\xf4\x57\xd5\x50\xf1\xe5\xb9\xc8\xe1\xb7\x11\xc2\xf6\x6e\xb0\xf6\x15\xfe\xf7\x25\xaa\x0b\x3e\xe7\x54\x49\xca\xa4\x9e\x7c\xbb\xa4\x55\xaf\x42\xad\xcb\xa6\x47\x9f\x61\xa5\xba\x01\xe4\x89\x7a\x1b\xac\xba\xb2\xed\xd3\x9f\x21\x89\xa1\x87\x28\x0f\x6c\x36\x7e\xdc\x10\xaf\x19\xff\x56\x4d\x1b\x84\x97\x99\x2b\xbc\x64\x74\x45\x21\x5e\x61\xc6\x17\x7a\x8b\x59\x79\x4c\x28\x51\xf2\x96\xae\xf9\xf1\x07\x37\x49\x6e\x95\xcc\x4b\xdb\x3a\x40\xb7\x0c\x6a\xcb\x18\x6d\x10\xbe\x70\xb7\x3b\x57\x95\xf8\x2b\x7b\xe6\x37\xbf\xcb\x7c\xb2\xa2\x9f\x5b\xa9\x2d\x5f\x59\x8b\x2a\x99\x73\xb8\x0b\x10\x76\xc7\xe6\xe5\xb0\xa2\x83\x3d\xda\x75\x52\xc5\x20\x42\xee\x2f\xdb\xcb\xfd\xe2\x97\xfb\xc5\x2b\x57\xbf\xf4\x8a\xf5\xb3\xb4\xe5\x30\xf5\xfe\xad\x15\x3b\x93\x15\x15\x97\x30\xdd\xf5\x4b\xff\xf4\xfa\x29\xfd\x49\x5d\xde\x17\x13\x58\x10\x4e\x92\xde\x11\xb1\xcd\xbc\xce\xb1\x84\x12\x3b\xf7\x2c\x6b\xdc\x5a\x7e\x70\x74\xa2\x64\x91\xb5\x9e\x0c\x6b\xa7\x4e\x4a\xaa\x5a\x3e\xa5\x26\x15\x55\xef\x4b\x6c\x5e\xd0\x9b\xb4\xd5\xae\x01\x38\x9d\x73\xa1\x02\xe0\xbc\xd5\x82\xcf\xd1\x0f\x6c\x3d\x60\x3a\x31\x01\xb6\x07\x0e\xf0\xcf\xaa\x94\x0c\xab\xbf\x78\x33\x42\x41\xdb\xa9\xf5\xf6\x00\x06\xfc\xca\x0d\x18\xe2\x86\x34\x70\x92\xfc\xa6\x18\x50\x51\x37\x69\x26\x47\x62\x59\xa3\xb0\x03\xa0\xe9\xe0\x00\x28\xf4\xcc\x5a\x8a\x4f\x26\x0b\xa8\x09\x05\xaf\xbc\x82\x3f\x27\x32\xdb\x17\xf5\xf7\xef\x24\xa2\x64\xe2\x65\xf9\x4d\x24\x5d\xd4\x9a\x63\xa2\xc0\x50\xf2\xb6\x46\x3e\x85\x35\x19\x51\xf2\xad\xce\x25\xb3\xf9\xb5\x33\x10\xee\x40\x69\x1b\x3f\x4a\xa6\xd9\xff\x2e\x04\x83\x1f\x24\xa0\x4e\x31\x07\xf1\xb4\x91\xe8\x93\xcd\x8b\x15\xf1\x13\x41\x25\xd4\x0c\x1a\x56\x9f\x78\x0d\xd4\x91\x92\xdf\x37\xe2\x44\x6e\xaf\xc3\x5c\xcb\x69\xc1\x56\xca\xc6\xba\xda\x88\x99\x3e\x6f\x04\xb0\xec\xf5\x11\x8a\xe7\x94\xc8\x58\x6c\x56\x88\x06\x1e\x70\x52\xc6\x34\xdc\x7d\x2f\x63\x81\xf1\x05\xac\x2a\xef\x26\x17\x79\x59\xed\x9c\x96\xd3\xf9\x84\xbb\x29\xcf\x8c\x18\xdb\x4d\x95\x56\x42\xde\x97\x70\x0d\x73\x53\x1c\xfb\x74\x27\xb9\x26\xb3\x41\xf1\x42\x63\x4b\x5e\x65\xe4\x6d\x1a\x4f\x28\xf9\x93\xc5\x53\x4a\xae\xb2\xb8\xa2\xe4\x1d\x8b\xaf\x68\x78\xd3\x68\x57\x74\x99\xe1\xd6\xa6\x45\x5f\x38\x6e\xb4\x2e\x7a\xc3\x71\xa3\x81\xd1\x38\xc3\xed\x6d\x8c\xbe\xf1\x8d\x6c\xd3\x75\x46\xce\xce\xf1\xf7\x8c\xec\x39\x76\xb9\x2f\xc4\x32\xda\x7b\xfc\x3d\x03\x7d\xad\x0e\xb6\x78\x9d\x9d\x7d\xcf\xce\xb1\xfc\xa3\xa0\xe2\xb3\xbd\x3d\xcf\x83\xe3\xa5\x14\x3a\x7d\xcf\xee\xdc\x89\x55\x46\x53\x40\x6c\x8b\x92\x62\xd3\xa3\x8c\xdc\x6c\xf0\x2b\x72\xa3\x92\xa3\xa3\x6c\x83\xff\xb0\x3f\x3b\xfd\x0d\x7e\x92\x91\xa3\xcc\xb1\x6c\xca\x7c\x07\x75\xed\x18\x23\x16\x30\xd8\x4c\x7c\x47\xf5\xa3\x4c\xb9\xa9\xd7\x5c\xd9\x59\x10\xb0\x6e\x0d\x4e\xe1\x8d\x8a\xbd\xfa\xb1\x9a\xd2\xe5\x98\xcb\xf0\xde\xea\x86\xe4\xaa\x68\xb6\x7e\xf8\xa6\xf1\x99\xf2\xf4\xb9\xd9\xe0\x0c\xc4\x22\xd9\x4e\x59\xed\xa4\x88\x9f\x65\xe7\x24\x39\xcb\x40\x0e\x1f\x52\xb7\x71\x98\xfe\x52\xb3\x92\xed\xf9\x9b\xad\x21\xdc\x71\xc7\xb1\xd6\x3a\xda\xb8\x3b\x75\xb2\x4a\x52\x3a\x7b\x95\x94\x78\x4b\xfb\x52\xf1\xec\x8e\xf9\x71\x16\xa2\x9b\x17\xe1\x1f\x28\x7e\x11\xbe\x72\xec\x80\x9e\x65\x8e\x3f\xf8\x2b\x3d\xf6\x1d\x42\x8e\xb2\xfa\x7c\xbe\xff\x10\xa1\xf8\x65\xf8\x0a\x27\xe2\xcf\x1f\x1e\x68\xd5\xf3\xcc\x07\xa0\x75\x87\x92\x6a\x1c\x89\xa7\x35\x16\x68\x77\x6b\x67\x62\xc5\x71\x49\x62\x21\x24\x18\x69\xbc\x0c\x91\xef\x9c\x0a\xa8\xac\x9d\x50\x39\xaa\x36\x96\xa4\x87\x78\x9e\x84\x09\x92\x17\x09\xe5\xb0\xe8\x44\x55\xd9\x01\x27\xad\x14\xdf\x6c\x00\x44\xd6\x98\xb9\x65\x92\xfe\x3e\x1b\x80\x89\xcd\xb6\x81\xe5\x8b\xdc\x1f\xd8\xf5\xfa\x28\x8b\x9f\x64\xc4\xd0\x18\x48\x49\x25\x29\xff\xd0\x89\x28\x6e\x8b\xc5\xf1\xe2\x16\xea\x4a\x54\x87\xfa\x50\x1d\x22\x14\xa7\xe2\x5e\xa6\x06\xe6\x49\x86\xf0\xf6\x39\xd1\x68\x2c\xa1\x58\xf0\x0a\x16\xbc\x82\x65\x3b\x51\x04\xdc\xa3\x06\x5e\x0a\x4f\x5e\x66\xb7\xc1\x17\xbf\xf2\xde\xd6\x43\x53\xe0\x3f\xbc\xd7\x72\xc7\x33\x2f\x5f\xfb\x25\xf3\xaf\x17\x7c\xb9\x7a\x47\xcb\x6a\x85\xdf\x78\xaf\xaa\xd9\x25\x7e\xeb\xa5\x08\x06\x91\xc4\xd4\x2d\x81\x70\x21\xf8\xc4\xcb\xf5\x72\x3a\xe5\xac\xa4\x2b\x6e\x9a\xfb\x2e\xfb\x21\x5c\xf3\x9f\x5e\x96\x5a\x40\x8d\xf7\xde\xcb\xd7\xb3\x4b\xf3\xe6\xd4\xaf\x99\x4d\x6c\xa5\x1f\x60\x75\xfd\xe8\x53\xaa\x98\x5d\x4c\xd8\x97\x92\x4f\x18\xfe\x4b\xdb\x8b\x77\x08\x79\x9d\x0d\x5e\x67\xae\xb3\xe6\x06\x7f\x52\x8a\x85\xcf\xea\xef\x17\x10\x4d\xfe\x9d\x91\x37\x59\x88\xf0\x6f\x19\xe9\x3f\xbb\xfb\xf8\xef\x6c\xf0\x26\x6b\x71\xf2\x14\x79\xf6\xfe\xce\x36\x9e\x57\x7d\x1e\x1a\x4f\x8f\xb7\x59\x88\xd4\x41\xfd\x24\xd3\x02\xca\xc3\x43\x79\xc2\x79\x67\x53\x1e\xca\x94\x3f\x6d\xca\x03\x99\xf2\xde\xa6\xdc\x97\x29\xa7\x36\xe5\x9e\x39\x68\xd4\x31\x55\xf6\x01\xc8\xd0\x6a\xd6\x72\x31\xf9\x6a\x37\x87\xc3\x43\x5d\xd0\x49\x26\x8b\x3e\x7c\xa8\x53\xde\xe9\x94\x07\x3a\xe5\x4f\x9d\x72\x5f\xa7\xbc\xd7\x29\xf7\x74\xca\x69\xf6\xb3\x0d\x4a\x73\x8d\x10\x08\x4d\xd3\x4b\xc7\x4b\xb9\xeb\x39\xde\x8a\xb9\xb5\x26\xf6\x72\xbe\xd2\xd3\xd9\x09\x53\x9e\xeb\xe8\xae\x84\x90\x4f\xd9\x20\xfc\x94\x91\x33\x7a\x2e\x06\xf6\x55\x16\x9e\x64\x38\xcb\x11\x8a\x3e\x65\x06\xdd\x59\x1b\x45\x65\x0e\x5c\x76\x1e\xba\xf1\x86\x3e\x67\xda\xdf\xf9\x73\x16\x2b\x06\x89\xff\xc8\xc0\xdc\x38\x0f\x7d\x97\x4e\xf5\x65\xe7\x4b\x66\x10\x7e\x3e\x65\xe8\xe6\x4b\x66\x5d\xd9\xa5\x45\xad\x94\x1e\x7d\xca\xe2\x34\x0f\x0f\x0f\xdd\xc8\x4b\x12\xf6\xcf\x02\x1c\x52\x1d\xf7\x25\x25\xc9\x19\x3d\x8f\xd9\x6c\x27\x25\x69\xd8\xe9\x21\x85\x77\x53\x69\x58\xe7\xcd\x06\xc5\x8a\x91\x15\xcc\x5b\x8a\x6e\xe4\x18\x98\xb6\x04\x81\xa0\xc8\xa7\x4c\xc3\x27\xdc\xe9\x23\x84\x25\x65\xf2\x1c\xe1\x34\x36\x26\xbe\x30\x05\x5c\xeb\xde\xc2\x0c\x43\xfa\x2f\xd2\x37\x4e\x46\xfd\xde\x83\x83\x07\x77\xfb\x0f\xf7\xfb\x7b\x61\x18\x3a\xbf\xe8\x9d\xe4\x5f\xfd\x1e\xfa\x57\xba\xee\xa1\x3b\x7d\xf4\x3f\x0e\x78\x4a\x99\x1b\x25\xaf\x04\xbf\xd0\xde\xcb\xb3\xf9\x12\xdd\x24\xd2\xc5\x37\x41\xb1\x74\xc3\xb2\xef\x7c\xb0\x58\x8a\x6c\xc4\xfd\xb3\xf4\x3c\x08\x42\xf1\x07\x62\x5f\x38\xe8\x48\x00\x19\x9d\xdb\x73\x96\x74\xc9\x1e\x4b\x93\x14\x3c\x51\x7f\xa7\x79\xcd\xaa\xbc\x12\x43\x39\xcd\xc9\x24\x27\x2a\xaf\x3b\xd0\xb3\xdc\xca\xda\x47\xb9\xd9\x89\x5e\x84\xa3\x5c\x1b\xb5\x77\xff\x51\x27\xb5\xee\x3f\xea\xb5\x84\x17\x70\xe2\x77\xcf\x73\x1b\xd0\xc3\x45\x7d\xd2\xe7\x3d\xcf\xb8\x40\x9d\x59\x9e\x5d\xcd\x4b\xa9\xc5\xfd\x50\x4e\xf9\xa3\x04\xb5\xa6\x93\x44\x5b\xed\x00\x40\x4a\xeb\x97\x60\x92\xd4\xfa\xad\xc5\x3c\xff\x61\x21\x68\x4b\x11\x2e\x84\xa0\x45\x68\x72\xb8\xe9\xab\xea\xfb\x38\x27\x34\x96\x74\x86\x01\x90\x43\x6e\xb5\xcc\x4e\x1c\x2b\xfd\xa4\xf0\x2f\x25\x75\x01\x0d\x81\x7b\xb5\x3f\x06\x4d\xc6\x22\x07\x5c\x04\x3f\xb7\x32\x98\x77\x03\xe0\x5a\x56\x9c\xe6\xb2\x9e\x4e\x5f\x46\xd2\xeb\x75\x74\x78\xb5\x2d\x98\xc8\x86\xd9\x25\x4e\xdb\x34\x27\x14\x27\xc4\xa6\xc6\x09\xb9\x51\x4c\x10\x51\x3c\x4b\x96\x7c\xf1\x8d\xb3\x27\xe5\x6a\x19\x25\xb8\x12\xa9\xd2\x2d\xdf\x42\xba\x4f\x72\x37\x26\xe0\xb8\x1e\x22\xfe\xa0\x27\x8e\x8e\x93\x9c\x24\xf1\x38\xf7\xc8\x44\x6e\x7c\x1a\x44\x3d\xec\xf6\x3b\x4a\xf0\x42\x5f\x10\xa5\x80\x50\x59\x66\x4d\x04\xe5\x01\x8f\x8e\x24\x06\x62\xce\xe7\x58\x98\x41\xab\xdc\xf3\x65\xbc\xc8\xa5\x03\xb9\xf4\xd6\xfa\xf3\x82\x5f\x70\x72\x93\xd0\x25\x97\x72\x43\xda\x9d\xaa\x23\x11\xfc\x06\xd0\x64\xc8\xa4\xa5\x8e\x74\xc1\x59\x74\x23\x9a\x5f\x56\xb9\x9a\x92\x3c\xcb\x78\xba\xd2\xad\x73\x86\xe8\x5b\x6e\x31\xa3\x9d\x0a\xe3\xc4\xab\x5e\xea\xaa\x92\xed\x4d\x32\xcf\x4e\x73\x64\x2a\x3c\xeb\x56\xd1\xae\x7c\x30\xed\xa1\x5d\xf5\xe4\x86\xdd\xbc\x34\x6d\xaa\x13\x9e\x62\x19\x06\x68\xc9\x25\x70\x05\x84\x62\xce\xa3\x1e\x9e\xd3\xeb\xc9\x8c\x32\x8d\xfa\x20\x0f\x68\xca\xc2\xce\xf2\x82\x19\x03\x18\x13\xc7\x49\xe5\x6a\x0b\x15\x9c\x80\x70\x0a\x56\x1b\x9a\x1f\x1b\xd4\x3a\x49\xe4\x58\xf1\x54\x3a\x48\xd4\x70\x47\xa1\x7a\x92\x98\xac\x38\x55\xe9\x62\x01\x53\x1f\x91\xc4\x1b\x88\xeb\xdc\xbf\x8f\xda\xf5\xc9\xae\x13\xdf\x72\x08\x48\x1f\xd7\x9b\x29\xf2\x1b\x5a\xdb\xc6\x84\x4e\x2a\xd1\x2d\xc3\xfa\x01\x6d\x6d\xa3\xdb\xac\xef\x79\x5d\x74\xea\x57\x2d\x79\x57\xc7\x47\xb0\x03\x9e\x13\xae\x88\x65\x88\xe4\x18\x71\xb9\x47\x80\x4c\x9b\x3e\x66\x50\x7f\x2c\xff\x10\x39\x71\x62\x35\x7f\x8a\x4d\x46\xf2\xb8\x5e\xa4\x5c\xd5\x8a\x36\x6a\x15\x10\x94\xb9\x70\xdb\x8a\xdd\x57\x0e\x65\x72\x84\x36\x5e\x73\x4c\x53\xa4\x51\x24\x77\xb8\x7b\x42\x7a\x78\x2a\x77\xb5\xb9\xfc\x73\x65\xcc\x2f\x75\xf1\xb2\x3f\xdf\x49\x11\xb3\xd9\x4d\x4e\xbe\xd7\x56\x50\xb0\xd4\x7c\xa4\xc8\x99\x36\x79\xbc\x9e\xbf\xce\xf2\xdf\xbb\x7e\x02\xcc\x80\xef\x10\xb4\x52\xcf\x82\xef\x5d\xf5\x64\xa7\xc2\xf7\xae\x7e\x74\x27\x84\x62\x95\xab\x41\x38\x27\x57\x64\x58\xa5\x14\x4f\xc9\x18\x45\x57\xe4\x4a\xb1\x06\x8d\xf3\xc7\x32\x00\x76\x8e\x60\x55\xd3\xd1\xfd\xaf\x82\x20\x34\xd9\xea\x7d\xb0\xcb\xf4\x7f\xb1\xf5\x28\x3e\xca\xc3\x1c\xd7\x4b\x44\x31\x8d\x80\xb6\xc7\x84\xe2\x15\xf9\x1e\x8b\x15\x3d\xa5\x24\xd5\x82\xfd\x15\xd8\xd0\xde\xa8\xd0\x31\xc7\x64\xa5\xeb\xab\x5f\xf7\xad\xf5\xdd\x31\xba\x19\x93\x63\x29\x0e\x4c\x29\x1e\xe3\x1c\x19\x63\x93\x31\x39\x36\x38\x79\x50\xe6\x41\x74\xac\x56\xb5\x0f\x34\x27\xce\x73\xb0\x77\xb7\x77\xf8\x60\x7d\xff\x6e\xac\x22\xdb\xb8\x75\xe7\x5b\x0c\xff\x8e\x07\x7e\xbd\xd1\xb1\xb3\xa5\xe5\xeb\xb5\x39\xa6\xe5\xc6\x8a\x73\x2c\xcf\x78\x6e\x2b\x65\x8d\xfb\x91\x98\xae\x3d\x13\xb9\xd0\x92\x35\x08\x86\x55\x48\x6d\x53\xd7\xe4\x60\x1f\xe6\xb0\x5a\x9e\x75\x64\xc0\x7c\x60\x92\xc8\xd9\xf7\xf3\x28\x97\x67\xfd\xef\x08\x6d\xbe\x93\xef\x72\xd6\xd8\xe6\x7d\x5f\xaf\xbf\x13\x31\x23\xc0\x38\xb9\x3e\x7b\x4d\x99\xca\xfe\x04\xf6\xcc\xef\xc4\x9b\xff\x58\xcf\x7f\xec\x2c\x2e\x24\x23\x39\x6e\x5d\x0b\x54\xe0\xf9\xbe\x8c\x91\x09\x9c\x3d\x25\xe3\x48\x71\xe9\x3c\x76\xa6\x32\x99\xc6\x6e\x91\x57\xf1\x93\x3c\x9c\x88\xe5\xd9\x67\x65\x32\x89\x6b\x1b\x2e\x19\x7b\xeb\xf6\x53\xf7\x02\xa5\x69\x13\x9b\xa7\xfa\xea\x40\x91\x05\xe7\xa3\x2e\x38\x9f\x09\x2e\x97\x9c\x63\x4e\x98\x19\x19\xe7\x5b\x8e\x6e\x6c\xba\x2c\x98\x11\x1e\x73\x92\xde\x22\xa8\xaa\x4b\x5d\x0e\xfb\x98\x21\x14\x33\x85\xaf\x83\x36\x12\x65\xfe\x38\x27\x9f\x68\xf7\x3d\x40\xba\xca\xf3\xc9\x13\x8b\x0f\x85\x9f\xe5\x24\xac\xf8\xe5\x0e\xa5\x5d\x40\xc2\xa8\x78\xb5\x42\xdd\x05\xcf\x96\x0e\x00\xb3\xb3\x53\x24\xa4\x46\xb4\x58\x5c\xab\x20\x34\x5d\x4a\xf4\xfe\xe4\xf0\x6e\x3a\x48\x22\x79\x2f\x91\x8e\xab\x3e\xc1\x53\x88\xe0\x5f\x1f\x19\x38\x9c\x3a\xcb\xbb\x33\xb4\x46\xf6\xf3\x2a\x27\x37\xe5\xf2\xcd\xec\x02\x60\x9b\x9a\xaa\x4b\x90\x95\xf9\xf2\xa6\xe7\x65\xc2\x17\x68\xc0\xd2\x90\x22\x51\x2b\xc8\x8e\x79\xf5\x55\x54\x71\xca\x57\xf2\xc0\xe3\xab\x15\xe5\xd1\xa0\xa5\x18\x25\x32\xfe\x3d\x0f\x11\xe6\xe4\x38\x37\x2b\x55\xcc\xc8\x8b\x3c\x64\x98\x62\x8e\x62\x4e\x2e\xc5\xb3\x78\xd2\xab\x01\x49\x62\x23\x51\x71\xf0\x6c\x83\x20\xe4\x96\x01\x52\x14\xc3\xb9\x85\xa3\xf8\x65\x0e\xe1\x92\x4c\x43\xdf\xf3\xf9\x84\xa6\xfc\xbf\xdc\xd8\x15\xcd\x49\xff\x3f\xd7\xe8\xe7\xb3\x45\xaa\xe2\x38\x7a\x6d\xbe\xbd\xc5\xa9\x6c\x31\xf3\x5a\x3c\xac\x52\xd1\xe6\x14\x43\x10\x29\x26\xda\x0c\x3a\x21\x06\x6d\xde\xb7\xed\x4c\x2c\x18\x36\x84\x51\x35\xed\x4c\x54\x3b\x99\x6a\x67\xea\xf9\x60\xff\x91\xbb\xe6\x90\x38\xd7\x31\x57\xb4\xbc\x53\x2b\xc6\xdb\x16\x74\x71\x88\x9c\x5d\x4c\x98\x99\x48\xb2\xcb\x83\x2d\xe9\x21\x83\x0a\x22\x07\x02\x2c\x08\x9c\x1f\xdd\x72\xf9\xee\x62\xc1\xe5\xcc\xd5\x9f\x0e\x3a\x89\xb4\xd1\x5b\xaf\xc5\x13\xc7\x19\x8a\x7c\x69\xed\xeb\xdc\x97\xd6\x76\xfa\x98\x13\xa5\xe4\xc8\x34\x66\xbd\x14\x83\xc7\x6d\xf8\x2c\x56\x06\x93\x0d\x32\xb2\xcc\xc3\x0c\x45\x21\x27\xaf\xc3\x04\x0d\x9e\x64\x91\x11\x20\x63\xe6\x17\xb6\xc4\x19\x09\x25\x36\x49\x87\x10\xe6\x68\x02\x18\x1a\x80\x4e\x86\xa3\xe8\x28\x43\x71\x22\x61\xcd\xc2\x14\x67\xcd\x15\x41\x8f\x99\x24\xb9\x53\x88\x4a\x19\xa8\xbf\x12\xf5\x44\xdf\x5b\x16\xe4\x55\x1e\x3b\xc3\x44\x92\x38\x69\xe3\x2b\x42\xff\xd7\xea\x94\x5b\xf2\xb7\xa8\x53\x32\x47\x4f\xe9\x8c\xd1\x1b\x67\x45\xa5\xba\x6b\x71\x3b\x57\x25\x12\x0c\xa3\x02\xdf\xa4\xc9\xe4\x3d\x4f\x79\xf9\x8d\x83\x60\x47\xb0\xcb\xd6\x97\x72\x5e\x6c\x2b\xf3\xe3\xdb\xd3\xa3\xe7\xcf\xfe\xb9\xb5\xe8\x1f\xe5\x91\x35\xa8\xd6\x4b\x21\xc0\xab\xbc\xdb\xb2\x50\x85\xe2\x6e\x02\xb9\x70\x43\x92\xf0\xb6\xe5\x1a\x62\xa7\x1b\x07\x2f\xfc\x25\x49\x63\x15\x36\xad\xb1\xfd\x70\xd8\xac\xc8\xb3\x3c\x86\xdb\xf5\xbf\xc5\xe6\x46\x3d\xa8\xd9\x3d\x6b\x61\x77\x9b\x09\x98\x39\x43\x28\x86\x2b\x54\x8a\x39\xc4\xc8\xdb\xd2\x3e\xd1\x96\x9c\xaf\x8e\xf9\xa2\xfc\xa6\xd2\x9e\x2f\x66\x53\x29\x98\x6b\x1f\x9d\x2c\x08\x42\xb5\xe7\x66\x38\x45\x78\x4b\xd1\xdb\x07\x77\x5b\x7d\xeb\x75\xfb\x17\x80\x53\x72\x5a\xd1\xf9\xb2\x98\xad\xa4\x36\x58\x2e\x51\xfe\x07\x1d\xe7\x83\x36\xde\x80\xdd\x78\x1b\x5c\x34\xef\x36\xf3\xae\xd7\xc3\x2a\x4c\x88\xea\x1f\xde\xd6\xb8\xb6\x4a\xda\x52\x43\xb4\xb5\x88\x5b\x9a\x7b\xcb\xcb\x10\xe1\x44\x9c\xce\xf4\x62\xb4\x85\xbb\xb9\x1e\x21\xc9\xdd\xd8\x61\x8b\x5f\x1d\x3b\xa7\x5b\xc7\x25\x53\x2d\xf4\x8f\xef\x77\x25\x7e\xe4\x49\xae\x2c\x1b\xca\x25\xfc\x75\xd5\x28\xef\x9c\x93\x6b\x2a\xe6\x87\x7b\x4c\xdd\x36\x40\xb4\x3d\xe6\x13\x55\x11\x69\xfe\x01\x3b\x7f\x19\x8c\x46\x3e\x83\x97\x0f\xbc\xed\x03\xbe\x8f\xb8\x7b\xd5\x05\x6f\x87\x08\xa9\xd3\x47\x6a\x67\xf5\xa6\x55\x69\x78\xf7\x01\xa6\x48\x07\xd8\x84\x98\x68\xd4\x8d\x05\xe0\xc4\xb6\x58\xf0\xcc\xef\x84\xcb\xfb\xf0\x12\xfe\x74\xff\x91\xa1\x37\xde\xf3\x0c\xc2\x3e\x1a\xcf\x7d\x41\x90\xc4\x83\xf2\x94\x22\x69\x26\xcf\xbd\x09\x21\xe4\x59\x0e\xf0\xd7\x32\x85\xdc\x6c\x90\xbe\x50\xd3\x01\x03\x63\xdd\x9d\xe4\x8c\x9f\x47\xe2\x3f\x42\x37\x62\xb3\xb1\x75\x71\xbb\xe4\x4b\x88\x08\x15\x00\xc4\xa5\x69\x0d\xa7\xf2\xe1\x5d\x15\xf3\xcb\xd0\xb9\x96\xe1\xb0\x07\xc4\x69\x0d\x67\xf1\x67\xee\x60\x69\x58\x6c\x9c\x8e\x09\xdb\x52\x1b\x94\x3e\x1e\xee\x9e\xc9\x81\x56\xce\x67\xe7\x40\xc2\x86\xbb\x99\x0e\x33\xa1\x1c\xb2\xd0\x40\xf3\xc7\xce\x65\xb9\x2a\x76\xc6\xfc\x7a\xb9\x73\x33\xdc\xbd\xe3\x3b\x7f\x75\x47\xb3\xb2\x0a\x87\xbb\x78\x67\xb8\x8b\xee\x0c\x77\x37\xc3\xdd\x28\x31\x11\xc2\xdc\x58\x04\x79\x3d\xe2\xbf\xb2\x03\xa0\xfa\xe8\x92\x74\x27\x74\xb9\x7a\x06\xbc\xaf\xc5\x3f\x6c\x10\x32\xb8\xf4\xc9\x64\x92\x62\x37\x17\x49\xc5\x79\x0a\x64\xb8\x2a\xc1\x7f\x1b\xa7\xee\xb7\xd2\xc2\xce\xb9\xd2\x3f\x74\xf5\x6c\xa1\x86\x39\xed\xf8\xa0\xf8\xae\xde\x81\xc5\x28\x81\x7c\x98\x11\xd6\x5d\xaa\x30\x22\xad\x71\x24\x9c\x30\xe4\x54\x47\xd5\xd7\xc5\x24\x31\x32\xdc\x3d\xe6\xd7\x32\xd2\x9e\x84\xf7\xc3\x10\x46\x49\xfe\x04\xdc\x3f\x0c\xe0\xf1\x49\xbd\x32\x47\xe6\xc9\xf5\xd9\xfa\x54\x72\x46\xac\x42\xaf\x91\x9e\x38\x23\xc9\xcf\x3c\x9c\x29\xe7\xdb\x2c\xd4\x17\x3d\xf5\x0d\xc8\x4e\x2c\x05\xd2\x98\x6d\x89\xd6\x61\x80\xd0\x05\x25\x64\x4b\xd9\xa3\x74\x10\x26\x0e\x7d\x87\xd5\x3e\x4e\x51\xc4\x62\x37\x71\xbf\x25\x4e\x40\x1e\x26\x80\xf0\xae\x1d\x10\x6d\x8d\x20\xad\x76\x3e\x76\x0e\x58\x56\xe7\xe6\xa1\xd4\xea\x32\xd6\x6b\xeb\x67\xad\xbf\x21\x1f\xe0\x2e\xd1\x9d\x82\xfb\x1f\xc2\x89\x52\xb9\x10\x8a\x93\x38\x21\x1c\x78\x32\xb6\xa9\x2d\x95\x8d\x1b\x95\xc9\xe5\x2a\xe9\x72\x69\xcc\x2b\x8e\x20\x60\xde\x09\x93\xd1\x10\x09\xca\x96\xc7\x1b\x84\x61\xa1\x21\x66\xdd\x86\xdf\xaa\x1d\x2c\x66\xe4\x63\x1e\xca\xcf\x31\x20\xaf\xe9\xef\x14\x98\xbd\x6e\x7d\x5c\x2b\x25\x66\x8d\x76\x33\xdb\xee\xc9\x16\x22\xdd\xd5\x44\x5a\xaf\x93\x6d\xa1\x6a\x65\x08\x16\x37\xc5\xcf\x0c\x86\x6a\xa2\xef\x70\xa7\xef\x10\x32\xac\xd2\x5a\xa2\x1d\x82\xbf\x7e\x3c\x04\x4e\x40\xa4\xb3\xf3\x1f\x8c\xc7\xd4\x5c\xe0\xb2\x5a\xcf\x1e\x34\x87\xff\x93\x5b\x37\xce\xfe\x2d\x06\x98\x3b\x26\x4c\xad\xe1\x9e\xb6\x44\x79\xf2\x98\x50\x06\x01\xd5\x4d\x49\x6b\x0d\xf1\x5c\x78\x9d\x22\xec\xa6\x68\x4c\x14\x92\xee\x6f\xbf\xc9\xd7\x4a\x10\xfa\x37\xd5\x36\x06\xa9\xe0\xa3\x44\xf2\x91\x5a\x5b\x5a\xf8\x28\x45\x38\xb5\x7c\x54\xc9\xe8\xcc\x38\xb5\xcd\x49\x95\x85\xab\x29\x17\x86\x70\x5b\xdb\xc5\x1e\x78\x92\x4b\xa3\xa7\xaa\x72\xa1\xc4\x80\xfa\xf6\x33\x75\x78\xf2\xfa\xad\xb6\xb6\xf6\xc0\x3c\x57\xf5\x8b\x83\xa6\xc5\x00\x3a\x17\x55\x06\x27\xa1\x39\x26\x69\xfb\x98\x78\xd1\x6b\xc4\xc9\x4f\x3a\x67\xca\xf5\x04\x86\x48\xc7\xc8\x6e\x1b\x0e\x47\x34\x62\x86\x23\xbd\x65\x38\x44\x2b\x01\xde\x4f\x01\x0f\x10\x42\x93\x81\x62\x5f\x39\x30\x86\xef\x01\x72\x23\xb2\x4b\x4d\x64\x8d\xc3\x7f\x6b\x29\x70\xe2\x67\x54\x63\x90\xa2\xf5\xba\x4a\x6a\xf6\xed\xb6\x97\x76\xe2\xc0\x48\x48\xe2\xa7\x5b\x88\xff\xdd\x85\x02\xd9\x42\x64\xd6\x4e\x64\xb3\x51\x50\x70\x50\xc9\xf9\x4a\xb6\x0c\x5c\x94\x21\xb8\x3c\x50\x1a\x44\x51\x5b\x28\xcd\x0c\xa5\x99\xa1\x34\xdb\x4e\x69\x2a\xed\x88\xf5\x52\xc0\x60\x8f\x4d\x23\xf8\xab\x6b\x66\xde\x18\x88\x56\xb0\xfa\x18\x70\x2c\xbf\x88\xc6\xf2\x3d\xd6\xb8\xbb\xbf\xfd\x52\x4d\x13\xf3\xb5\x1a\x17\x26\xc7\x85\x59\x90\x3d\x52\x23\xcb\x54\x7f\x62\x87\x26\xa9\xfb\x69\xda\x83\x0b\x0d\x39\xce\x71\x81\xc7\x36\x1e\xcd\x44\xaa\xb4\x56\xca\x6c\x83\xe4\xf8\x9a\xe4\xa4\x87\x8f\xe4\x39\x40\x11\x73\x1a\x04\xd7\x8f\x0a\x2d\xbb\xbe\xbe\x73\x07\xdd\x4c\xe5\x56\xfe\xf8\x7a\x10\x1e\x91\xa9\xd2\x90\xa1\xe8\x88\x4c\xcd\x01\x04\x42\x99\x92\xab\x90\xe3\x29\x2e\xce\xae\xcf\xf1\xd8\x0d\xb7\xfe\xd5\xd8\x15\x4d\x83\x20\x9c\x92\x23\xa5\xb9\xd8\x88\xfb\x46\x35\x35\x5b\xfc\x57\x77\x8b\x4f\x44\x61\x28\xce\x49\x16\x7e\xc5\x39\xbe\x36\xc7\xef\xd5\x60\x42\xbe\x46\x2b\x73\x8a\xf9\x1a\xaf\xc8\xd7\x78\x4a\x8e\x04\x29\x05\xef\x17\x35\x0c\xda\x14\x4a\xc2\x13\xa7\x45\x53\x65\x3a\x52\xeb\xea\x94\xcc\x43\xae\x3b\x80\x2d\x45\x42\xd1\x8a\x29\xb4\x02\x3b\xad\x98\x3a\xad\x98\xe2\x15\x99\x9a\x83\xc8\x04\x90\x2a\xa6\x84\xc9\x4e\xd4\xaa\x39\x22\xdf\xc3\x29\xe6\xf8\xba\x5e\xd5\x91\xb8\xe8\x19\xbe\x3e\x72\xc9\x31\xed\xca\x4b\x87\xee\xc1\x11\xb0\xd5\x75\x04\x7f\x11\x16\x0d\x3c\x6a\x34\xf0\xc8\x69\xe0\x11\x5e\x09\xc2\x53\x51\x54\x5b\x74\x6d\xbd\x22\x87\x00\x57\xe8\xf6\xc4\x18\xf0\x2a\x9e\x9a\x68\x40\x99\x2a\x09\x0b\xb4\x5d\x3b\x31\xae\x5f\xef\xee\xf5\x10\x8a\x0b\x32\x96\x97\x89\x02\xc5\xc3\xca\x0c\x49\xd1\xc8\xdc\x47\xd6\xb0\x76\x4a\xc6\x9a\x7b\x7d\xb6\xc5\x5f\x49\x01\xc7\xf9\xd0\x44\x7f\x5b\x05\x41\xe7\x6b\x97\xcd\x2a\x2e\x88\xed\x64\x40\x37\x2b\x97\x93\x57\x6a\x2a\x08\x4e\x5e\x79\x9c\x7c\x0c\x9c\xbc\xc2\x5f\x25\x16\x1d\x9e\xb8\xcc\x7c\x6c\x98\x59\x5c\xcb\x57\x1e\x33\xaf\x0c\x2b\x1f\xd7\x59\x79\x25\x59\xf9\xd8\x63\xe5\xe9\x60\x4c\x8e\x23\x33\x8d\xc8\x71\x3c\x25\xc7\xf1\x4a\xb2\xb2\xec\x83\xcb\xc4\x2b\x84\xc7\x4e\x4b\x56\x8a\x89\xb7\xf4\xf6\x2b\x30\xb3\xed\x83\x66\xb2\xaf\x8a\x9f\xbf\x7a\xec\x22\x9a\xf2\xd5\x69\xca\x57\x3c\x25\x5f\x0d\x17\x8c\x81\x9f\x57\xc0\xcf\x2b\xb4\xbd\xc6\xef\xe1\x0a\xf8\xba\xbd\x56\xcb\xda\xc3\xca\x9b\xeb\xab\x1a\x73\x7f\x55\xcc\xfd\xd5\x32\xf7\x4f\xb5\x56\x0c\xc1\xaf\x30\xb7\x89\x0d\xe9\x68\x24\x18\xce\x70\xa1\x39\xfc\x07\x52\xc3\x20\xc8\xec\x96\x61\xc6\x3e\x03\x77\xd6\x31\xe0\x22\x67\xb5\x0d\x04\x29\x08\xa6\x1f\x14\x2c\x46\x79\x82\xd4\xae\x96\xb5\xec\x6a\x34\xba\x99\xa8\x8a\x24\x5a\x0f\xd3\xec\x3f\x56\x58\x40\xea\x20\x30\x31\x9b\xe3\xd8\xd1\x8c\x3f\x88\xca\x2c\x74\xda\x8e\x6e\xd2\x90\xe2\xb1\xa6\x27\x8a\xc5\xdd\x64\x8c\x9b\xad\x77\xae\x13\x94\x98\x10\x72\x1b\xdf\x6f\x07\xaa\xf7\x6f\x3e\xb2\x2e\x59\xcd\xb0\xda\x56\x91\x77\x7d\x19\xe3\x6c\x6b\x7d\x1b\x68\xae\x9e\x79\xd2\x62\x4e\xa6\x8c\x89\x29\x7c\xe3\x74\x70\x10\x32\x71\xd4\xac\x77\x48\x9f\x3c\x0b\x9c\x49\x56\x73\x2e\x5d\x94\x30\x14\x85\x85\x38\x30\xcb\x82\x64\x1e\xdd\x56\xef\xc0\x5c\x20\x5c\xd8\x96\xc3\x2d\xa2\x70\x4b\xb2\x98\xe6\x20\xa0\xd6\x27\x06\x15\xf3\x79\xac\x46\xd2\x0a\x14\xc4\x08\x32\x35\x82\x63\x54\x66\xe1\x5d\x38\x49\x00\x52\x18\xdb\x76\x23\x03\x32\x7b\x29\x7e\x66\xff\xf2\x05\xb9\x6b\xf7\x31\x18\x1e\xe6\x0f\x0e\xc3\x59\xed\xea\xb5\x65\x4c\xc0\x7e\x24\x95\x5a\xb5\xda\xb8\x80\x9a\x6e\x58\x99\x92\x37\x4c\x5c\x17\x32\x4b\xbd\x5a\x99\x2e\xb1\x36\x5b\x4e\x96\x59\xfb\xc9\xd2\x00\x82\x64\x52\x80\x98\x61\xab\x8d\xba\xaf\x89\x38\x08\xfd\x8e\x62\xd5\xd1\x96\xf1\x97\x1d\xc2\x4c\x5c\xd0\x9c\x06\xd7\x33\xe2\x5c\xb9\x9b\x9e\xe4\x61\x66\x0e\x71\x29\x35\x0b\x0a\xac\xdb\x89\xf3\xee\xd8\xbe\x9a\x04\x01\x1c\xb4\xb3\xdb\x82\xa5\x67\x41\xd0\x19\xeb\x25\x81\x7a\x56\x2e\xca\xe0\x44\x6e\xa0\x26\x52\xa4\xdd\x49\xf7\xb1\x8c\x92\x37\xa1\xe0\x7d\xbc\x5e\xd3\x6e\x05\x7f\x55\x3c\x99\x0a\x02\xbc\x38\xb2\x45\xd9\x69\x69\x3b\xf0\x39\x27\xef\xf3\xb0\xd3\x43\xf8\x8b\x7c\xea\x23\xfc\x77\x4e\x6e\x36\xf8\x37\xc7\x36\xf8\xef\x7c\x83\x69\xe1\xff\x4e\xfc\xdf\xae\x74\x5a\xda\xd1\x03\x90\x32\x21\x7f\xd7\x65\xc6\xfd\x07\x77\x11\x6a\x11\x4c\xb1\x42\x4a\xb5\x5e\x86\x49\x21\x5d\x80\x68\x21\xfd\x57\x7e\xcb\xf1\xdf\x39\x02\x3f\x1f\x13\x0c\xb8\x6e\xaf\x2f\xc9\xd4\xef\x47\x80\xe1\x67\xc1\x8d\x0c\x70\x5f\x02\x54\x01\x68\x8a\x8f\xef\x5f\x46\x27\x09\x6c\x47\x52\x6c\xd9\xf0\x4c\x84\x98\xc0\x03\x37\x12\x7a\x94\x60\x08\x46\xec\x94\xa1\x8e\xee\x54\x86\x54\x15\xb4\xc7\x09\x39\x49\xc4\x49\x1e\x6d\x5e\x84\xbf\xe5\xaa\xed\xae\xcd\x3e\x2f\xc0\x4d\x4a\xbc\x7b\x11\xd2\x42\xfc\x9f\x14\xce\xfb\x4c\x76\xa9\x08\x93\xc2\xba\xec\x48\xe1\x75\x5a\x84\xbf\xe5\x7e\x62\xaa\xaa\x93\xcb\x6f\x9c\x28\x9d\xbd\xa2\x1c\x86\xda\x53\x37\xb0\x62\x0e\xc5\x53\x53\xb6\xb2\x0e\x85\x06\x61\x68\x90\xd4\x3d\xbc\xb1\x63\xdb\xf3\x86\xb6\x28\x74\xe0\x66\x05\xa8\xe2\x08\x38\x41\x51\x20\x23\xca\x03\xff\x6a\xd0\x29\x5f\x5d\xe6\x59\x4f\x87\x29\x44\xdd\x2b\xae\xd9\x82\xae\x38\xc3\xd6\xbe\x24\x95\xb8\xf9\x84\x3c\x61\xce\x8f\xa7\xf6\x0a\x95\x18\xd8\xc2\xfe\x21\x31\x40\x8b\x8e\x36\x59\x57\x0b\x8a\xb1\xee\x82\x7f\xe3\x74\x72\xb2\x60\x7c\x21\x43\x37\x77\x08\x71\xe5\x8c\xc1\xfd\xbb\x2d\x45\x57\x5e\x9c\x62\x74\xa3\x1e\xf4\xea\x90\xc4\x89\x7e\x17\x8b\xa5\xb9\xac\x2e\x40\xf7\x91\x00\x4c\xa2\x64\x2a\x23\x4c\x86\x46\xea\x83\xa8\x27\xb8\x52\xc5\xad\xd7\x46\x34\xe2\x00\x63\x4b\x35\xb8\xc9\xb4\x31\x65\x98\x46\xe8\x30\xbf\x8e\xcc\xb8\xfd\xde\x58\x16\x2e\xb8\xdd\x8d\xb1\x7c\x8e\x28\x86\x4d\x2f\x4a\x74\xe8\x8c\x51\x51\x37\x29\x3a\x56\xe1\xe0\xf8\x02\x8f\x1b\x2f\x5d\x7b\xa3\x49\x41\x7a\xf8\xad\x3c\xbe\x9f\xc8\x3f\xef\xd4\xa5\xb4\xf0\x6c\xa5\xff\x0c\xb5\x17\x86\x51\x5c\xec\xf7\xbd\x78\xc7\x55\x61\xf4\x1e\x55\x03\xa7\xce\x46\xa0\xee\xc5\xa9\x71\x0b\x09\x82\xd4\xda\x66\xa5\x0a\x6d\x4a\xe2\xcb\x01\xb8\xdc\x16\x64\x39\xeb\xc0\x50\xf8\x60\x59\x93\x82\x64\xf1\x5b\xb0\x36\x68\x9a\x31\xd4\x2c\xad\x55\x52\xcd\x08\xad\x17\x8f\xec\x74\xab\x0c\x1e\x9f\x7e\xf2\x8b\x1d\xcc\x8b\xe8\x6b\x11\x53\xb0\xb8\x92\xd2\x91\x46\x81\x84\x4c\x0a\x74\x93\x91\x5e\xcc\x66\x37\x2d\xd5\x81\x7f\xe2\xfe\xbd\xc7\x59\xdd\x3b\xf1\x00\x1c\xa6\xb3\x3b\xa4\x1f\xbf\x23\x27\x5b\x7b\xe0\x34\x77\x61\x9b\xa2\xcc\xf3\xda\x5b\xb3\x71\xbe\x59\x16\x71\xa2\x05\x75\x27\xe6\xcc\x7b\x22\xed\x0b\x05\x73\x40\xe5\x6f\x15\x1e\x25\xb0\x04\x84\x16\xaf\xb7\xb5\xe7\x6e\x12\x6e\x64\xf2\xc2\xc4\x59\xbc\xf1\x68\xa7\x90\xa9\x8d\x65\xbb\xf9\xe9\x58\xd8\x7f\xb5\x8f\x4d\x53\xda\x77\x83\xb7\xb5\x41\x7e\x47\x68\xf4\x8e\xbc\x53\x36\xe7\xba\x39\xef\x2c\x87\x5e\x14\xa1\xcb\x9e\x27\xba\x65\x6f\x1d\x05\x0a\xd5\xd4\xa0\x83\xda\x68\xcb\xea\x61\xad\xa1\x9a\x42\x72\x59\xdd\xd6\xa2\xe8\x9d\x67\xa7\x09\x72\xe1\x77\x24\xc1\x27\x84\x4a\x5c\x79\xdb\x96\xba\x0a\xf2\xa0\x2f\x28\x7a\x02\x47\xb0\x1a\xe1\x4e\x5a\xdc\x12\xf4\x9b\x36\xef\x80\x13\xc7\x58\xfc\xab\x4a\xf9\x2a\xcd\xb4\x7f\x99\xa8\x1b\x43\x54\xd7\xb3\xc1\x5b\xa8\xb6\x28\x82\x07\x49\x48\x51\xe4\x59\xdd\x5c\x16\x56\xd7\x2b\x86\x06\x82\xf4\x7e\x75\xdd\x01\xc4\xe6\xd2\x20\x8c\x98\x16\x29\x68\x11\xdf\x73\xb1\x1e\x72\xf6\x9e\xb3\x8b\x14\xac\x89\xa4\x9e\xf2\x04\xec\x3a\x6d\xaf\x33\x92\xb6\xd8\xc6\x67\xae\x82\x48\x01\x28\xe7\x84\xcb\x21\x93\x7f\xea\x96\xf2\x1b\xa7\x54\xc2\x01\x84\xd6\x33\x8a\xf5\xca\xe3\xba\x2c\xa6\x1a\x23\x77\x54\x69\x82\x9f\x13\xe5\xa3\x39\x26\x5c\xac\x0c\xf2\x26\x3a\x6e\xb1\x60\x9f\x3c\x9a\xa8\x2b\xf0\xb4\x61\xfd\x5d\xcf\x5f\xb7\x01\x1f\xd7\x6d\xc0\x29\x50\x3e\x1a\x77\xe5\x03\xe6\x34\xe7\x0b\x45\x3e\x51\x9a\xf3\x53\xbe\x93\x8c\xa5\xde\x48\xce\x6a\x72\x4d\x31\x08\x73\x52\x90\x29\xce\xc4\x31\xbd\x50\x42\x08\x32\x8d\x27\x8f\xdf\x36\x6c\x49\x87\x55\x58\x4f\x24\x13\x0c\x36\xc1\xd2\xee\x5d\x8b\xc1\xb5\x63\xc1\x2f\xda\xbd\xff\x97\xfb\x8c\xf0\x51\x1e\x4e\x70\xbd\x16\x71\x2b\xf1\xcb\x82\x33\xa9\x5b\x48\x44\x43\x86\x75\x2b\xe4\xe5\x58\x14\xbb\xf1\xfc\x1f\xc7\x41\x30\x06\xf6\xb1\xb4\xcd\x08\x8b\x14\x15\xf2\xf8\x37\x71\x37\xaa\xed\x6e\x68\xbd\x56\x7e\x62\x8d\x7d\x8f\xc5\x89\x63\xad\x9b\xa9\x5f\x92\x7f\x8b\xda\x2c\x52\x5f\xa8\x29\x7e\x56\x2b\xca\x89\x3a\x7e\xee\x4e\xe2\xab\xff\xd6\x24\xb6\xf5\x61\x6e\xe7\x2f\xce\x6e\x39\xa2\x72\x74\xe3\x4f\x48\x15\x97\xdb\xce\xc4\xd9\x4e\x46\x68\x98\xe1\x5c\x0f\x03\xce\xb5\xff\x8b\x1c\x86\x5c\x12\xff\x37\x1e\x66\xbf\x40\xe6\xcc\x1e\x19\x0d\x7d\x41\x31\xee\xd0\xbe\xde\x5f\x95\xac\xc9\x9d\x61\xe6\xd1\xf5\xba\x70\x83\x5e\x84\xdb\x0c\x94\x24\xb2\x21\x0d\x51\xb3\x51\x6e\xed\x14\xae\x63\x5f\xa5\x3b\x99\xeb\xb0\x86\x35\x91\x15\xd6\x59\x73\x40\xa2\x6f\x05\x6e\xb4\x3b\xa2\x1b\xe9\xe3\xa8\xbe\x26\xdf\x8b\x6e\x52\x56\x4c\xde\xd2\xde\x62\xe3\x92\xdc\x60\x23\x7a\x6e\xf7\xe3\xa3\xc2\x35\xbb\xbc\x59\xd1\x3c\xa2\x38\x5d\x70\x51\x41\x22\x63\x36\xcf\xae\xa3\x14\x33\x3e\x5f\x46\xcc\x5d\x78\x12\xf2\xd6\x73\x8e\xd2\xe4\x1f\x84\x09\xb9\xb1\x06\x26\xca\x27\xcf\xcb\x0b\x8e\x59\x8e\x0d\x8a\xf6\x51\x43\x51\x98\x7a\xd6\x29\xe6\x7a\x33\x68\xcd\x1f\x85\xac\xe6\xcf\x45\xb1\x7a\xc7\x6a\x35\x6c\x39\x1b\x3d\x29\xac\xf7\xbd\x98\x3a\x3e\xa5\x2c\x99\x9e\x16\x75\xcd\x2a\x30\xc4\x5b\xd7\x0a\x8d\xc6\xbc\x36\xfc\x47\x45\xd8\x5f\x8b\xaf\xe4\x25\x0b\x1b\x17\x00\x26\xd5\x8b\x2e\xa2\xc5\x71\xa3\x06\xd1\x9e\x98\x91\xc6\x47\xca\x9e\x53\xa6\x3b\x53\xef\x44\xef\x9f\x27\x0d\x7b\xcb\xbc\xab\x46\xd2\x35\x4e\x09\x82\xaa\x08\x19\x06\xf7\xcf\x25\x42\x37\x47\x05\x18\xba\x64\x36\xfe\xf0\x66\xf3\xb3\x1d\xcc\x3c\x74\x8e\x67\xde\x69\x44\x10\xef\x5e\xff\x3e\xbe\x8b\x7d\x6f\xfc\xe7\x7e\xae\xe3\xf6\x5c\xbf\x37\x72\xdd\xc5\xfb\x32\x8f\x8b\xc7\x51\x38\x06\x5f\xad\x87\x1f\x47\x91\x18\x22\x2c\x4e\x42\xae\xaf\xbc\x94\x6d\xa0\x8d\x6f\x5e\x67\xef\xc6\xb5\xaf\xcd\xd9\x9d\x7a\x85\x78\xb7\x16\x37\x9c\x55\x61\x1c\xde\x89\xbd\xca\x5b\xff\x81\x01\x58\x8e\xa4\x74\x15\x9e\xd1\x73\xa5\xc8\xf6\xfb\xfb\xc2\x9d\xdb\x09\xa6\xc8\xc3\x2a\x78\x55\x78\xe1\xb6\xff\x50\xc4\x58\x35\x18\x9a\x9c\x51\xcb\x84\x89\x0a\x0b\x79\xde\x22\x5a\x7a\x5d\xb8\x0e\x9a\xc0\x89\x09\x69\x7c\x69\xb6\x89\x6d\xbb\x01\x73\x3d\x0e\x2a\xc1\x5f\xec\xac\x6f\x6e\x94\x3b\xec\xac\x77\x1e\xa7\xcd\x26\xba\x4d\x72\x4d\xc4\xff\xcf\x35\x0a\xc6\xf9\x47\x4d\xb3\x06\xdb\x45\x0d\x0d\x26\x17\x1f\xe7\xe1\xe1\xc3\xc7\x6c\x70\xf8\x30\x62\x2e\x97\xd0\xb0\xd3\x43\x1b\xf9\xfe\xc1\x23\x36\x38\x7c\xe0\xbf\x97\x45\x8c\x0b\xeb\xe0\xe1\x3c\xb7\x74\x77\xb5\xb8\x16\x65\xf6\x11\x4e\x43\x1b\x57\xcd\xfd\x86\x6d\x36\xbe\x9b\x6b\xad\xb9\x3f\xf4\x82\xa9\x9f\xfc\x58\xfd\xc0\xc7\xf5\x09\x2f\xf5\x8f\x76\xc0\xae\xce\xf1\xab\x7e\x8f\xd4\x96\xe9\x35\xd7\xe2\x6c\xa0\xce\xfe\x3c\x0a\xbd\x5b\x00\x56\xb7\x00\x2e\xb6\x5a\x7d\xca\x10\x0b\x5c\x1d\xe2\x80\x10\xf2\x56\x8a\x0c\x94\x5e\x4a\x24\x20\x71\x79\xee\x61\xde\x38\xfa\x16\xb8\x79\x1c\x2e\xcc\xf5\x70\x8b\x3f\x96\x6e\xeb\x7a\xdd\x03\xdd\x81\x9f\x41\x86\x0f\x4d\xda\x8e\x57\xd8\x5c\x7e\x90\x06\xf0\xc8\x6b\x39\xe5\x3e\x5d\x90\x2c\xcc\x71\x8a\x62\xee\x9f\x6a\x33\x9d\x20\xb9\xb2\x88\x65\x88\x83\x02\xe7\x9a\x89\x15\x6a\xc7\x58\xac\x0a\x8a\x21\x36\xe0\xd9\x33\xac\x18\xd2\x22\xab\x65\x41\x6e\x16\x9c\x6a\xc7\x8c\x68\x99\xe3\x8b\xa5\x41\x03\x8a\xfe\x84\x5f\xea\x1d\xfc\x50\x1b\x3a\x3c\xbf\x9c\xce\xf9\x02\x62\x80\xbd\xa0\x15\x9b\x70\x99\xfa\x9a\x5e\xcf\x2e\x56\x6e\xbe\x37\x7c\x3a\x93\x4f\x9a\x27\xd4\x8f\x4c\x3e\x28\x78\x50\xf1\x78\xcc\x93\x8b\x1c\x80\x02\x74\x1e\x2d\x6d\x53\xaf\x33\xbe\x58\x70\xe6\xe4\x00\xb0\x53\x88\x88\x1a\xfd\xb9\xc1\xf3\xdb\xfb\xf3\x47\xe1\x76\x48\xbe\x54\x2d\x7d\x56\xb4\x76\xa9\xee\x4b\xf6\xcb\x8b\xf7\xd3\x5b\x16\xef\x06\xb9\x7c\x2f\x30\xbf\x04\xd8\xee\x0c\x39\xfd\x9c\x72\x35\x5c\x6d\x5b\x0d\xb7\xae\x64\xc3\xca\x5d\xcb\xdc\x11\xaa\xf7\x5b\xae\x12\x5e\x0d\xb2\xe3\x61\x82\xa2\x24\x66\xf5\x0b\x8f\x73\xe8\x15\xf5\xb3\x7f\xf3\xd0\x4b\x5b\xce\xbc\xc9\xcf\x9e\x79\x59\xf3\xcc\xab\xf9\xae\x69\xe5\x0e\x5d\xa3\x56\x82\x4f\x37\x36\xa6\x9d\xdf\x37\x49\x28\xd9\x96\xeb\xa2\xc6\xb5\xaf\x0a\x9f\x6d\xcb\xa2\xc9\xb7\x6d\x63\x07\xf7\x0c\xcc\x48\x7a\xd6\x3b\x17\x17\xad\xb3\xfe\x79\xfc\xcc\x51\xd8\xeb\x7c\xbf\xb6\x27\xf0\x90\xb6\x6f\x07\xc3\x2a\xdd\x6c\x30\xec\x65\xc8\x1a\xc1\xd6\xe6\x53\x93\x48\xd7\x85\xdc\x64\x48\x22\x36\xc8\x84\x24\xa2\x99\x8a\xda\x7f\x14\xe1\xdb\x06\x93\x9f\x25\x98\x9e\x23\x08\x17\x83\xbf\xde\x3e\x37\x5f\x6f\x9f\x9b\xcf\xdb\xe7\xe6\xcb\xa2\x31\x81\x7e\x2f\xcc\x0c\x79\x53\xb8\xfc\x7c\x59\xe8\xa1\x7f\x52\xd8\xe1\x6b\xc2\x6f\x5d\x16\xe1\xb7\x42\xce\xb3\xff\xc0\xa8\xca\xd2\x6a\xc3\xfa\xfc\xbf\x37\xac\xff\xd6\xa0\x0e\x2b\xd5\xcc\xd6\x61\x7d\xfd\xa3\x61\x5d\xfc\xbf\x39\xac\x57\x3f\x39\xac\x57\xff\xd1\x61\xbd\xfa\xff\xc2\xb0\x5e\xfd\xc2\xa0\x0e\xab\xc6\xb0\x9e\x14\x4a\x0d\xa5\xfe\xfe\xe9\xeb\xa1\xde\x7b\xe7\xf0\xd3\x22\xbc\x27\x8d\x3f\xe0\xbf\x9e\xd8\x6c\x5c\x63\x97\xe1\xee\xf1\xb3\xd7\xcf\x3e\x3c\x3b\x96\xb1\xc3\x9a\x49\xae\x8b\xaa\xb5\xa9\xf6\x9d\x50\x0c\x78\x93\x73\xa9\x1f\x84\xee\x2f\xdf\x01\x86\xd6\x1c\x60\xa8\xe7\x00\xe3\xbf\x75\x8f\xc6\x1f\x54\xd7\x5a\xec\x0a\xee\x45\x2e\x7a\x6a\x9c\x10\x00\x77\x32\xfa\x75\x19\xf5\xce\x89\x39\x6b\xde\x36\xe3\xe4\xea\x81\xf7\x6d\x8e\x13\xd1\x21\x87\x18\xb8\xd3\x43\x51\xa7\x2f\xad\x63\xee\x5b\xcb\xf2\xe1\xae\x8e\xc6\x2c\xf7\x53\xe5\xc7\x78\xe0\x35\x47\x55\x81\x7f\xa6\xec\xfe\x41\x64\x54\x7c\x5a\xa3\xaf\x13\x3c\xf8\x87\x8f\xda\x4c\xe1\xcf\xc2\x84\xc4\x2e\xa4\x32\x4a\xeb\xae\x41\x99\xa6\xa8\x88\x6e\x12\xf2\x8a\x85\x52\x34\x73\xaa\x8d\x68\x44\x86\x64\xbd\xb6\x99\x1c\x57\x3e\x42\x5d\x00\x91\x7e\x6f\xff\xde\x7a\x3f\x96\xdc\x77\x52\x18\x7d\xd2\xe6\x7d\x11\x9e\x14\xe2\x10\x05\x89\xef\x0a\x51\x8b\x72\x71\x02\x57\x63\x25\xc4\xfe\x41\xc1\x92\xad\x05\xb3\x53\xe7\xae\xfe\x97\xd1\xd7\x5b\xb4\x31\x07\x3a\xec\x9e\xf4\x21\xa3\x79\x10\x1c\xd8\xc7\xbe\x79\x8e\x91\xf3\x19\x14\xed\xd0\xef\x93\x31\xf3\xe8\x10\x72\xe2\x04\xff\x12\x34\xf9\xd3\x18\xe8\x42\x13\xa0\x75\x3d\xac\xf0\x86\x12\xcd\x76\x65\x16\x9a\x26\xac\xd7\xc3\xdd\x82\x53\x15\x18\x22\x08\x86\xbb\xc9\x8c\x5d\xeb\x5f\x9d\xdf\x99\x74\x25\x70\xb5\xfa\x48\x21\x72\xbc\x2b\xe2\x24\x46\x6a\x22\xe3\x44\x12\xd0\x1b\x26\x68\x44\xac\x0d\x14\xd4\x44\xa0\x0d\x5f\x5e\x4f\x57\x67\xed\x12\x8c\xa7\x41\xa7\xa9\x55\x7b\x80\x00\xb5\x86\x2a\x31\x9e\xaa\x31\xd6\x50\x21\x54\xaa\xfa\xc1\xa0\xc4\xb0\xb3\x85\x8a\x62\x74\x05\x4e\x90\x29\x21\xe4\x48\x3a\xea\xc0\x62\x8a\x6e\x24\x1f\x50\xbf\x1b\xc6\x22\x6f\x6f\x4f\x32\x45\xda\x21\xe4\x3b\x0b\x02\xf1\xf7\xa9\xfa\xfb\x84\xad\xd7\xc9\x9d\x3b\x9b\x5a\x93\x36\x6a\xfd\x53\x08\x67\xef\x0a\x72\x52\x0c\xa0\x0a\x6b\x44\xe6\x56\xe6\x9e\xfd\x7d\x25\xf9\xe7\x22\x84\xf6\xa9\x85\x55\xb2\x34\xd8\x8d\x7c\x69\x98\x06\x9c\x5c\x56\x7c\x81\x17\x3e\x4c\xda\x7b\x07\x6e\x44\x9a\x4f\x18\xcd\xf8\xe0\x4b\x1e\xca\x79\x2e\xbd\x1b\x3e\x4b\x0f\x12\xc8\x04\x29\x96\xb7\xff\x2e\x5c\x17\x85\x14\x1c\x61\xc5\xe6\x67\xee\xe1\x0b\x9e\xc5\x5f\xc5\xf7\x1c\xc5\x8c\x38\xaa\xfd\x4c\xe9\xd6\xed\x44\xe8\x2c\xac\xcf\x90\x27\xdb\xf5\x70\x4a\xb0\x6b\x30\x42\xf6\xee\xf5\x1f\xe0\xfa\x55\xfa\x11\xe1\x2d\xd0\x7b\xa4\x87\xf0\x6f\xb2\x7e\xb8\xec\x3b\x62\xc8\x7e\x2c\xa9\x01\xfa\x7e\xd3\x04\xe8\xaf\x4b\x73\x5a\xfa\x86\x09\xae\xa2\x57\x5d\xba\x53\x33\xa7\xda\x85\x86\x79\x10\x74\x92\x32\xcc\x91\xbe\xef\x11\x02\xa2\x54\x8b\x23\x69\x8c\x5c\x53\xf0\x52\xa6\x0b\xee\x64\x4d\x7d\x38\x4a\xd3\x54\x80\x12\xb9\x87\xa5\xdb\x11\xc9\x71\x2a\x5b\x9a\xab\x96\xc6\xd4\x71\x6e\x93\x77\x25\xe5\x73\x24\xad\xed\x00\x22\x62\xc1\xf5\x78\x51\x6b\x5b\xe3\x13\x83\xd0\x4d\xae\x01\xaa\x45\x1f\xf9\xa3\x2c\x08\x42\x4e\x72\x7f\x49\xc0\xa9\x6d\x3c\xb6\x57\xdc\x41\x1a\x25\x19\x4e\x43\x8e\x19\xc0\x2a\x2f\xc0\x65\x18\xaa\x34\xa2\x32\x35\x40\x59\x63\x80\xc0\xcf\x32\xc7\xec\xe7\x5b\xea\x1a\xc3\xd5\x06\xce\xdf\x25\x29\x84\x89\xab\x2d\x6b\xcd\x36\x2a\xdc\xc6\x3e\xe6\x8f\x32\x34\x68\x5a\x61\xd4\xf9\x0d\x9b\xbe\xa0\x88\x95\x8e\xbf\x9c\x63\x89\x56\xfa\xa1\x01\x1d\x27\x72\xe2\xc2\x4a\xa6\x46\xf0\x44\x55\xa3\xc0\xfd\xc9\x27\xd1\xfe\x43\xc7\x8e\xaf\x6c\x06\x11\x7e\x1d\xa6\x3e\xd8\x42\x9c\x91\xa7\x59\x08\xc4\xd6\x33\x34\xfd\xbf\x7d\x86\xa6\xb7\xcf\xd0\xac\xac\x79\x4c\x89\x4e\x6b\x02\x74\x7a\xf1\xef\xe2\x60\x21\xd7\x5e\x08\xd3\xa8\xfb\xed\x1a\x82\x59\xec\x6f\xdb\xf1\xd0\x91\x06\x12\x35\x73\x1a\x09\x4e\x73\xf7\x11\x7e\x9d\x2b\x27\x5f\xfc\x56\x3d\x61\x2e\x0e\xf9\x9d\x9e\x87\x60\xea\x2e\x1e\x4e\xdd\xb8\xa8\x5b\xcf\xc5\xb9\x42\xe9\x28\x14\xae\x5e\xae\xa1\x32\xf0\x44\xf9\x89\xde\x86\xc4\x31\x31\xcc\x34\x19\x4c\xc8\x32\x0f\x27\x28\x0a\x27\x4d\xa6\xc0\x13\xc9\x14\x13\x85\x12\x30\x25\xe9\x56\xa4\x0b\x88\x2d\xdc\xb6\xca\x4d\xb7\x61\x60\xe4\xdb\x30\x30\xe2\xf9\x36\x14\x8c\xfc\x27\x50\x54\x86\xd5\xb6\x6f\xb7\x7e\xb4\x5e\x87\x10\x35\x75\xbd\x1e\x0b\x9a\xa0\x20\x78\x23\x86\x49\xac\x98\x13\xe4\xc0\x32\x5e\x35\x34\xd3\xb9\x02\x9b\xb8\x8a\xbf\x83\x83\x18\xce\x05\x07\x8d\x1b\xf9\x54\xf1\x57\x1d\x42\xc6\xeb\xb5\x41\x7f\x5f\xaf\x57\xf9\x60\xcb\xee\x30\x95\x98\x24\x82\x5b\xa6\x82\x73\x1a\x85\x22\x1c\x16\x64\x95\xaf\xd7\x7f\xc8\x5c\x05\x66\xf8\x0a\x8f\xc5\x68\x0d\xc2\x5f\x24\xe1\xad\x40\x22\x79\x2b\x90\xc8\xb6\x4d\xad\x15\x3c\xa4\x2d\x75\x2b\x78\xc8\xad\x4d\xbc\xe5\x65\x88\x1a\x25\x0e\xab\x66\xb3\x1c\x98\x8f\xc4\x87\xf9\x40\xd1\x8f\x3b\xb5\xfd\x6b\x5c\x9b\xa4\xa4\x61\xc6\x41\xc6\x08\xeb\x99\xcb\xb0\xe6\x9d\x31\x36\xb3\x97\x4c\x30\x23\xc5\xff\xb2\x19\x8c\x74\xfa\x48\xc7\x33\x77\x97\x11\x85\x4f\xdb\x5c\x4e\x4c\xa3\x12\xed\xc2\xe1\xb9\xd2\x0f\x8a\xa8\x34\x6e\xcc\x85\xe0\xc4\xad\xcb\x0d\xfe\x0f\x2d\x37\xf8\xd6\xa5\x26\xfc\xf9\xb5\xc6\x61\x80\x2d\xab\x0d\xfa\x5f\x2d\x36\xff\xd1\xa5\x06\xc3\x52\xd3\x9c\xe9\x0e\xab\x38\xcb\x0c\x6e\x2c\x47\xd8\x29\xfa\xea\xdf\x5c\x66\x1a\x85\x22\x1c\x4e\xeb\xcb\xcc\x18\x5f\xfd\x5b\xcb\x8c\xa4\xf8\x4f\x92\x4d\x03\x22\xfd\xdc\x42\xa3\x8b\x6e\x4d\x0e\x19\x1e\x56\xa2\xc9\xbf\xb4\xe2\xd8\x22\xb7\xbf\x0d\x99\x24\xc5\xd6\x82\xdd\x19\xab\x0b\x6c\x4c\xd9\x5f\xdc\x20\xeb\x25\xec\xdf\xbb\x5f\x5f\xbb\x5a\xa9\x6a\x9a\xb0\x5e\x17\x9e\xad\xb3\xe2\xe6\x71\xd3\x00\x7a\xbd\xbe\xb5\xb1\x9d\x1f\x37\xf6\xdf\xaf\x4b\x74\xeb\x27\x16\xd5\xab\xb6\x45\xf5\xaa\xb6\xa8\x4e\x51\x34\xac\xfe\xff\x49\x21\x58\xef\x4d\x9c\xeb\xd2\x3b\xb2\xbb\xe7\xe1\xbc\x76\xf1\x51\x17\x0e\x65\x41\xd7\xe6\x7f\x21\x63\xcd\x04\x41\xc7\x9c\xf4\x79\x10\xbc\x90\x80\x35\x9d\x3e\xb2\x97\x1a\x80\xa8\xb1\x18\x72\x5f\xac\xf5\x79\xa2\xad\x61\xb7\x4d\xfa\xd6\x65\x1e\xa4\x39\xca\x1e\x49\x09\x11\xc2\xc6\x25\xc0\x9e\xc8\x73\x71\x03\x93\x57\x3d\x4f\x3c\x01\x67\x71\x80\x18\x71\x5e\x42\x62\x01\x37\x31\x79\x8d\x28\xe4\x0d\xb3\xae\x65\x94\x08\x81\x4e\x87\x7b\x8d\xcb\x86\xf5\xc2\x29\xdd\x90\xc6\x96\x10\xc6\x8a\x40\x29\x29\x06\x32\xfa\x52\x2d\xb5\x91\x20\x3d\x5c\x54\x30\xa4\xc8\x3c\x06\x81\xfa\x5c\x6f\xbe\x62\xdc\xa5\x97\x96\xef\x88\xa8\x21\x5b\xcb\x92\xdc\xd4\x84\x66\x78\xc1\x57\x8b\x6b\x89\xbc\xef\x39\x12\x8d\x4a\x5f\x1f\xab\xa4\x01\xdc\x9a\x4f\xc8\xbd\x37\x23\x6f\xcc\x7e\x0d\xbb\x55\x11\x87\x45\x2b\xf7\x20\xb1\xd7\xc9\x37\x59\xb0\x8f\xac\x4d\x03\xb5\x37\xd8\xda\x56\x83\x62\x30\x34\xee\xf4\x6a\xd7\xc6\xfb\xf7\xa4\xf4\xcb\xc6\x57\x68\x9b\x1b\x46\x32\xc2\xbb\x99\xd2\x11\xad\xd7\x1d\x99\x60\x82\xed\x50\x91\xeb\x43\x51\x2e\x9f\x9b\x2c\x61\xb6\x26\x7d\x14\xbf\x0c\xdf\xe0\x2c\xe8\xbb\x17\x40\x31\xa8\x5a\x21\x6d\x0b\x0d\x82\x8f\x45\x98\x40\xbe\x1c\xdd\xe4\xce\x9b\x98\x93\x4f\x79\xa8\x84\x2a\x3d\x05\x1d\xc1\xad\x5c\x42\x49\x13\x43\x49\xdc\x60\x5f\xca\x4b\xa9\xc5\xe0\xf4\x9d\x4f\xb4\x77\x13\xfc\x1f\xa9\x5f\x98\x6b\xa9\x86\x13\x8a\xc3\xc8\x3e\x38\xb8\xbf\x69\xaf\xa6\x54\x34\x47\x9c\x2d\x14\xd6\x8b\x55\x80\x0c\xab\x24\xe6\xc6\xa1\x3b\x6d\xf0\x7f\x59\xc6\x7a\xd6\x70\x8b\x16\xc5\x08\x37\xde\xa9\xed\x1e\x38\x35\xc9\x8b\x15\x1e\x32\x9c\xba\xd0\xf0\xf5\x91\xb7\xc1\xce\x62\xe6\x74\x40\x92\x98\xbb\x24\x4e\x25\xc8\x96\xaf\x9f\x70\x7a\xd6\x42\x65\x70\xc1\xff\x25\x1a\x43\x84\x0d\xe5\x64\x06\x63\xa4\x00\x91\x48\xae\x89\x9e\xc7\xc8\x78\x7c\xa5\x60\x63\xac\xdb\xcc\x44\x03\x41\x7a\xe8\xf8\xa5\xa5\x86\xd6\x2c\x6e\x0f\x45\xd2\xbb\x6d\x0c\x52\xab\x9d\x4b\xfd\x35\xce\x0e\x88\x84\x4d\xfa\xf1\x98\x0c\xab\x74\x43\x5d\xc9\xdd\x2f\x32\x71\x93\xff\x40\x26\xa2\x19\x10\xfd\x5f\xc4\xe5\x3e\x8f\xa7\xde\xd6\xa9\xfb\xf1\x2b\xc3\xe0\x4c\x85\x9f\xa1\xb4\x1c\x28\x7f\x88\xdc\x1d\x79\xac\x44\x7e\x0d\x89\x58\xd2\x26\x10\x4b\x50\x7c\x5b\x40\x8b\xb4\xad\x90\x7a\xa2\x28\x64\x9e\x9b\xd1\xf2\x4c\x61\x27\xb5\xf3\x81\x3c\x17\xd4\x35\x32\x95\x06\xaf\xaf\xe3\x08\xdf\x94\xcb\x27\x34\x1d\x5f\xd2\x05\x5b\x42\x18\x17\xb1\x6b\x1b\x7b\x1c\xf3\xf3\x74\x45\x17\x2b\x15\xf9\x65\x42\x97\xab\x88\xe1\x15\x2d\x27\x51\x0a\x7f\xec\x60\x44\x3d\x48\x80\x00\xc5\x1c\x3b\x06\xdf\xd9\x26\x0a\xf3\xae\x53\x19\x49\x70\xde\x35\xe5\x4b\x01\x9c\x93\x60\x2a\x24\x3d\x9c\x83\x66\x16\x8e\x89\xa2\x70\x31\x71\xbb\x7e\xb5\x90\x49\x57\x4c\xb8\xfa\x42\xe9\x72\x33\x6f\xf4\xa6\x8d\x1d\xd3\xdb\x28\x39\x60\x59\x1a\x27\x57\x9c\x81\x33\x7c\x39\xd1\xea\x05\x6f\xde\x32\xbb\xab\xc6\xda\x19\x96\x89\x99\xc3\x08\x0b\xfa\xeb\x7d\x5f\xa2\x78\xff\xae\xe7\x5c\x26\xa7\x20\x7c\x43\x6b\x5b\x30\x8d\xe4\xd4\xd3\x4e\xb1\x76\x2e\xdd\xf8\xba\xb7\xf6\x65\x39\x08\x80\x45\x53\x1b\x68\x09\x7c\x7b\xe5\x27\xf5\x57\xa6\x08\xe5\x9b\x4b\x7d\xdf\x5c\x1a\xdb\x45\xc7\xf5\xcd\xa5\xa0\x5e\xd3\xb1\x15\x5c\xef\x5c\xda\xea\x9d\x4b\x8d\x77\x2e\xb5\xde\xb9\xb6\x00\x27\x88\x13\xad\x7b\xe6\x1a\xcd\xa9\xb3\x7a\x6c\x58\x40\xfa\x1b\xb1\xf7\xb3\xb6\x95\xab\x3e\xcd\x87\x15\x4c\x74\xe8\xb3\xd2\xe2\x73\x13\xdc\x3a\x9b\x2d\x80\x23\x87\xbb\x51\x6a\x48\x2e\x7a\xc4\x3d\xd0\xa7\x34\x46\x94\xa4\x76\x12\xe3\xc6\xd1\x06\xbc\xba\x41\x9b\x92\x22\x50\xa0\xd8\xa5\xce\x8d\x49\xc3\x75\x25\xd8\xd5\xda\x01\x78\xb8\xf9\x04\xa7\x1e\x00\x25\x8a\x27\x65\x98\xe0\x4e\x1f\x73\xb0\xab\x77\xdd\x18\x50\x2d\xa8\xb6\x9e\x60\xd0\x1d\xd9\x6d\xaf\x57\x6e\xa5\xba\x6f\x3c\x16\x5b\x39\x6f\xc5\xab\xac\xf5\xcf\xea\x1a\xb9\xc6\xf4\x21\x66\xb9\xf6\x17\x6e\x88\xcc\x40\x37\xb2\xe9\x3d\xb5\xce\xdf\xde\xfa\xd5\x2c\xe7\xab\x02\x02\x20\xeb\x1e\x5b\x2b\x12\xe5\x30\xd1\xf6\xb9\xb6\x50\x68\x5b\xdf\x37\xdb\x95\x0d\xbf\x19\xa3\x67\x67\x53\x4c\xfc\xd0\x57\x7e\xc0\x30\x0d\xd3\x5b\xd7\x1d\xc5\x3d\x69\x44\xfe\x24\x0f\x99\x72\x38\x6e\x8b\x68\xe6\x01\xe7\xf9\x44\x56\x1f\x38\x73\xb1\x0e\xf6\x74\x80\x5c\x65\x8e\xf1\xa6\xb7\xeb\xc4\x96\x43\x96\x3d\x8e\xc8\x33\x91\xd9\x66\xcd\xdc\x37\x33\xd6\x99\x62\x2e\x07\xb7\x96\x8b\xd3\xb6\x83\x52\x1b\xc5\x05\xc9\xaa\x12\xcf\x4a\x3c\x2f\xf1\xd7\x32\x1e\x56\x55\x49\x7c\x3b\x2a\xeb\x87\x5e\x5b\xf4\x52\xb9\x8c\xdc\x23\x0a\x3a\x79\xbd\xbe\xaf\x1f\x11\xed\xd2\xb9\x68\x12\xd8\x77\x84\x8e\xd1\x90\x5d\xde\xee\x6a\xc8\x65\xab\x89\xd3\x74\x4b\xfd\x95\x4e\x30\x6c\xda\xb2\xd2\xa5\x76\xa1\xf2\xd6\xb9\xb4\x75\x9d\x4b\xcd\x3a\x97\xba\xeb\x9c\x5a\xc1\x52\xf3\x7e\x93\xd6\x97\x39\xfd\x26\x76\xe8\xbe\xd9\xc4\x33\x87\x52\xe8\x46\x5c\xfe\xe6\x3e\xed\x7c\x15\x61\x4d\x1e\x21\xf8\x25\x93\xf0\x7f\x0d\x05\x55\x5c\x83\xc2\x90\x47\x3d\x0d\x09\x92\x9a\xf5\xb1\xac\xe6\x10\xa6\x3c\x23\xdf\x93\x30\x97\x72\x03\x78\x62\xe2\x9b\xb3\x73\x7f\x06\xcf\xe6\x52\x56\x10\x65\xe4\x77\x93\xfd\xf7\xad\xd9\x97\x10\x68\x1b\xb2\x43\xf8\x93\x0c\xdf\x00\x2a\x56\x24\x27\xfb\x46\x7c\x0d\x2f\x58\xe3\x45\xb3\x30\x0b\xea\x1c\x65\xe4\xa5\xa9\xfd\x65\xb3\x76\xbd\x5e\xb4\x4b\x37\xb2\xee\xac\x7a\x3a\x29\x21\x28\x50\xab\x8c\x8f\xd9\x0c\x61\xde\x9d\x55\xa9\x78\x26\x4b\x86\x36\x33\x26\xd1\xfe\x41\x7e\x82\xc7\x2a\xd8\x0b\x30\x4e\xb1\x53\x56\x3b\x19\x40\x29\xb0\x6e\x41\x97\x27\x97\x95\x18\x23\xbe\x58\x5d\x87\x05\x0a\x82\xac\x2d\x51\x32\x6d\x76\x56\x9c\x23\x85\xf1\x73\x3d\xe1\x4a\x46\x5e\xc0\x09\x7d\x2c\x8a\xcd\x21\x0b\xce\x51\x5e\x2f\x64\x2c\x76\xa4\x74\xbd\x0e\x53\x72\xb3\x41\x38\x3d\x1b\x9f\x13\x89\xd6\x22\xa6\xc8\x70\x97\xd1\x2a\xe7\x8b\xd9\xc5\x72\x72\x7d\xca\x57\x2f\xab\x8a\x2f\x5e\x7c\x78\xf3\x1a\xc8\x51\x88\xfe\xeb\x03\x8f\x4d\x59\x5e\xcc\xe7\x0b\xbe\x5c\x82\xdc\xa3\x5a\x3d\x63\x25\x5c\xd2\x3f\xd1\x45\xa5\x01\xbc\xbd\x7c\x2f\x40\x94\x51\xce\xaa\x46\x0e\x7a\xb1\x9a\x3d\x9f\xa5\x17\x4b\x9d\x14\x7e\xa3\x4d\x2a\x0c\xe8\x7a\x1d\x8a\xc1\x43\x51\x48\x09\x05\x80\x25\x19\x75\xa9\x90\x57\x07\x64\xe9\xab\x18\x7d\x42\xd8\x59\x71\x1e\xeb\xfb\x63\x36\x10\xe4\x89\xac\x77\x5c\xeb\x00\xc0\x05\x51\x09\x3c\x3a\x64\xa2\xe5\x1d\x39\xaa\x93\x5e\x86\x73\x92\x8b\x96\x24\x3f\xea\xb4\x10\x7e\xbd\x9e\x04\xc1\xa4\x2d\xbd\x7d\x40\x4c\x71\x13\xd4\xf2\x55\x10\xe4\x67\xe3\xf3\x0e\x21\x93\xb3\xf1\xb9\x37\xa6\xc3\x0a\x0a\x11\xe9\x4a\x83\x24\xde\x19\xa2\x89\x75\x5b\x12\x2b\x45\xe2\x5c\x32\xf9\xd1\xc8\x4b\xcf\xf1\x09\x99\x0c\x26\xdd\x7f\xfe\x29\x56\xd3\x89\xa2\x9c\xb8\x30\x0f\xf2\x5a\x9a\xa2\x56\x10\x88\xdb\xf7\x44\xba\xbd\x7a\x43\x34\x41\x28\x72\xd9\x08\x8a\xcf\x09\x11\x14\x6e\x43\x7d\x9f\x08\xce\x68\x46\xc4\x9c\x40\x7f\xfc\xa2\x01\xbd\x6a\x22\x8a\xff\x4f\xf1\x64\x3b\x03\x86\xa6\x93\x0b\x16\x82\x36\x8d\xae\xd7\xaa\x0b\x92\xc8\x2d\xac\x39\x41\x68\x93\x36\xe8\x61\xf8\x08\x0e\xe1\x84\xca\xb3\x82\x6b\x89\xc1\x7d\xab\x90\xbb\x1b\xb1\xe8\x7f\x6d\x2e\xfa\xe8\x26\x95\x67\x8e\xba\x24\xdb\x09\xd3\xb3\x28\x1b\xa6\xab\xf2\x92\x64\x56\xf7\xa2\x64\x4c\x8c\x4a\x04\xd6\x84\xe2\xa6\x63\xb7\x62\xf7\x88\xe8\x42\xaf\xbb\x20\xe3\x29\xa9\xe1\xac\x9b\x83\xae\x2c\x0e\x0a\x89\xfc\xf3\x81\xbf\x6a\xa7\xb3\xc9\x84\xce\x97\x9c\xc1\x89\xb5\xd6\x08\x56\x3f\x83\x9b\x5d\xdc\x6d\x04\xab\x9f\xb8\x55\x23\xd8\x20\x71\x30\x62\x44\xc1\x5e\xab\xe4\xb3\xd7\xb4\x88\xf9\x27\x19\x2f\x98\xeb\xad\x57\xc7\xd8\x00\x4b\x5b\xf3\xe0\x7d\x85\xa7\x75\x5f\xfd\xbd\xa7\x61\xc8\x34\xcc\x96\x02\x1a\x84\x3f\x0f\x55\xaa\xfa\x48\x63\x71\xdd\x8d\xdc\x23\xa3\x42\x33\x53\x49\xaf\x95\x7e\x17\x05\xc1\x71\x16\x4a\xe4\x47\x1d\x82\x4f\xcb\xfe\x8b\x10\x39\x51\xe2\x53\x4f\xb7\x9c\xd6\x44\xd8\x32\x68\xaf\x52\xc0\xd4\x5f\x36\x72\xcb\xab\x49\xed\x1e\x64\xcf\xaf\xeb\x75\xe7\x53\x01\x80\xd6\x0d\x55\xcb\xac\x0c\x13\xb7\xb5\xf7\xa2\x1c\x64\xb3\x29\x69\xc1\xec\xe2\x4a\xc1\xdd\xbc\x93\x74\x3c\x5b\x9f\xb9\x1c\x1e\x0e\x42\x4b\xac\x6d\xac\xb4\xe1\x57\xdd\xd2\x0a\x99\xcb\x78\xc7\x47\x76\x77\x4a\xac\x87\xeb\xbf\x8f\x50\x3c\xac\x5c\x50\x28\x5a\xc7\x13\x2b\xb3\x10\x3a\x8d\x6e\x7c\xe5\x8a\xe9\x84\xb6\xaa\xf4\x8f\x69\xec\xec\x0d\x3b\x27\x49\xcc\xce\xde\xb2\x73\x92\xc5\x8d\x4b\x6a\x99\x2d\xe8\x94\x8b\x19\xa2\x8e\x59\x4a\x5f\xaf\x7f\xf3\x69\x02\x13\xe8\x79\x38\xdc\x9d\xcc\x28\x1b\xee\x1a\x88\x41\x3d\xcf\xbe\x95\x8c\xcf\xec\x17\xf4\x82\x95\xe2\xa7\x14\x35\xf4\x62\xfa\x88\xa6\x6e\x54\xf0\xe7\x21\x4d\xcf\xe8\x79\xa3\x98\xe5\xec\x62\x91\x72\x55\x15\x17\xb4\x69\xa9\xab\x9c\xe6\xb6\xa6\x72\x4a\x73\xa7\xe9\x93\xb2\x1a\x37\x3f\xbf\xa5\xe1\xd9\x6c\x31\x55\x1f\x2c\xf8\x92\xaf\xec\x07\xcb\x8b\x64\x5a\xae\x5a\x3e\x61\x5c\xcc\xec\xa5\xfa\x6a\x35\xcb\x73\x58\x72\x1b\xcd\x54\x47\xdb\xa3\x04\x90\x0d\xa1\xcc\xb2\xfa\x46\x27\xa5\x6a\xc7\x42\x1c\xe7\x86\xbb\xb3\xea\x69\x21\x76\x4b\x0b\x72\x57\x3f\xbe\xb2\xee\x3f\x97\x0b\x71\x1b\x59\x68\x89\xc3\xcd\x25\x5d\xbe\xb9\x98\xac\xca\xf9\x84\x47\x9d\x4e\xd6\x9d\xaa\x1f\x9b\x5f\xaf\xc6\x39\xd8\xbe\x92\x4d\xc5\xf5\x32\x70\xb3\x0c\x71\x18\x55\xb6\xa3\xe6\x10\x0a\xb7\x00\x73\x10\x6d\x1c\x39\x73\x64\x62\xd1\x9e\xe5\xe7\x71\x6d\xdb\xce\x07\x6d\x20\x93\xc5\x80\x75\x45\x03\xd5\xd6\xab\xf6\x51\x4a\xce\xdc\xaf\x71\x71\x2e\xb6\xe9\x26\x16\x65\x11\x04\xf5\xcf\x61\x57\x6f\x2b\x43\xbe\x38\x47\x51\x73\x93\xce\xcd\x59\xb9\x80\x4d\x3a\xc5\x39\xda\x34\x67\x91\x1a\xef\xab\x44\xdc\xd2\x9f\x01\x29\x41\x45\xb8\x8d\xda\x32\xe3\x6b\xf8\xbf\x7d\xe0\xeb\xd7\x9e\xed\xf7\x0b\xd2\x7a\xbf\xa8\x42\xe6\x5d\x20\x52\x42\x6b\x70\x62\xa9\x23\x2e\x6e\x6c\xf5\xb0\x88\xe5\xe4\x10\xae\x9e\xc6\xcf\x23\x8d\xd2\x2e\xc4\xc7\x39\x56\xf8\x8d\x31\x25\x84\x7c\x95\x31\xdd\xde\x26\x21\x47\x48\xa5\x88\x11\x4d\x17\xe5\x5c\x9a\xfe\xf0\x41\x48\x49\xde\x95\x50\x1f\x0a\xf3\x31\x1c\xee\xb2\xf2\xdb\x70\x57\x2c\xa9\xa5\x3e\x24\x92\xe1\xee\x23\xf9\xdd\xe3\xe1\xf0\xea\x20\xfd\x97\xfe\xb1\x8b\xa5\x28\x6f\x3a\xfb\xc6\xe5\xb5\x9c\xba\x3e\x18\x70\x54\x6b\x02\xe0\x77\xcb\xe5\xa0\x59\x31\xc7\x37\xe5\x32\x12\x2f\x37\x70\xbc\x6a\xbc\x47\xd8\x0e\x84\x68\x3d\x68\x8c\x28\x66\x66\xaa\x0d\x72\xf3\x48\x3a\x3d\xd8\xdb\xbf\x43\x2e\x78\x20\xf2\x37\x42\x28\x6a\x14\xfe\xf6\x54\x86\x68\xa4\x6a\x61\xa6\xb0\x30\xb3\xb8\x92\x9b\x4c\xa7\x0f\x6a\x5c\x67\x85\x27\x34\xce\xc9\x9c\x81\x69\xf4\x7f\x64\xf9\x1e\x56\x14\xc5\x85\xc6\x8e\xfd\x89\x45\xbc\x20\xbd\xb8\x70\x16\xf1\x42\x2f\xe2\xc5\x39\x6e\x2b\xaa\x75\x21\x6f\xcb\xf8\x8b\x8b\x39\xf5\x16\xf3\xb6\x02\x5b\x16\x74\x5a\x5b\xd0\xdb\x3e\xdb\xb2\xa8\xb7\x36\xd9\x2e\xec\x80\xac\x5b\x90\xef\xea\xc9\x5f\x37\xe9\x8f\xd7\x5e\x33\xb3\x0b\xf2\x7b\xe2\x20\xf7\x36\x56\x02\x5a\xdb\x02\x6a\x1b\x00\x73\x36\x80\x62\x9b\x4c\xe3\x97\x5b\xe7\xef\x0c\xd2\x97\x3f\x2e\xc8\xcb\x5f\xee\xad\x5e\xb1\x0a\xc2\xe4\xbe\x51\x20\x65\xa5\x5c\xc0\xc6\x91\x89\x4d\x03\x60\x96\xc7\xf5\xb5\x37\x43\xfa\xd2\x3d\x3e\xcb\xc4\xa6\x61\x6f\xca\xd9\x60\xca\x42\x8a\xe1\x8a\x76\xdb\x7d\x33\x6b\xbf\x6f\x9a\x6b\xd7\x9f\x09\x94\xd2\xb8\x48\x66\xad\x3b\xd2\x64\x50\x8f\xf0\x05\x38\xbe\xf0\x34\x41\x41\xf0\x3e\xd1\x6d\x6a\xee\x47\x13\xf5\xfa\x97\xae\x96\xd9\x0f\xaf\x96\x59\x53\xdc\x91\xb5\xde\x36\x33\xe9\x08\xa8\x2f\x9b\x29\xce\xb4\x11\xc5\x24\x08\x3e\xd3\x90\xe2\x0c\x4f\x70\x8e\x6e\xdf\xdd\x28\xec\x6e\x14\x33\x58\xa6\x86\xd5\x2d\xfb\x1b\x85\xfd\x8d\x6e\xe3\x7a\x59\x37\x93\x58\xf5\x41\x00\x21\xb6\x8e\x56\xab\x45\x99\x5c\xac\x78\x38\xdc\x85\x74\xbd\x37\x2f\x92\x50\xe5\x44\xdb\x67\x89\x5d\x91\x9d\x39\x11\xa7\xba\x0e\xb5\xdb\xa5\x83\x17\xa2\x03\x6e\x1e\x69\xbf\x64\x5a\xa4\x38\xf6\x2f\xd9\xb0\x66\x6e\x3f\x87\xb3\xcd\xdf\xbe\x39\x17\x8e\x6c\x8f\x7a\x5b\xf3\x73\xa6\x1c\x5f\x1a\xbb\x70\xe5\x85\xdc\x6b\xde\x35\x36\x8d\x2b\xdc\xfd\xa8\xcc\xc2\xd6\x6b\xcc\x57\xb9\xc3\x34\x9d\x59\xcc\x85\xa5\x4d\x68\xc2\x9c\x18\x60\x3f\xba\xc0\x34\x6e\x59\xb5\x3b\x0c\x5c\x60\x06\xa1\x7f\x55\x64\x0d\xf3\xe3\x54\x6e\x8d\x58\x9e\x3b\x80\xc8\xed\xf2\x08\x40\xf0\x0a\x7f\x74\x44\x41\x6a\x03\xfe\xc0\xaf\x00\x2a\x3a\x64\xc8\x54\xe1\xee\xb3\x69\x0b\x35\xfb\x07\xd1\x8b\xf0\x8d\x34\x68\x6b\x20\xfc\xdc\x8a\x51\x5c\xd7\xb4\xa7\x38\x89\x8d\xbf\x13\x8b\x19\xe9\xf4\x6d\x48\xc3\xad\xb0\xc8\xd6\xc6\x08\x68\x17\x85\x8d\x40\x96\xd8\x44\xfc\xe5\x38\x35\x32\x09\xbe\x5e\x43\x56\xa9\x88\xd0\x8a\x17\x9d\x51\xa1\xc5\x38\x4e\xca\x06\x25\x66\x10\xfa\xd1\xfb\x38\xe6\xae\xaf\x73\x86\xa2\xf0\x96\xf0\x7e\xc3\xaa\x96\x5f\x5e\xe4\xb9\xeb\x5c\x8d\xa4\xb2\x29\x0d\x82\x0e\x53\x6a\x6a\xab\x5f\xf5\x3c\x9c\x3a\x6d\x14\xb9\xcd\x72\x0b\x0a\x33\x9a\xf3\xa0\x8f\xd0\xa9\x98\x7e\x65\x10\x84\xa7\xe4\xa2\xb4\x8c\x2e\x93\xd7\x6b\xf1\xf7\xa2\x44\xa7\xe4\x5b\x09\x7a\xb6\xcb\xd2\xc8\x1a\x3e\x04\x41\x78\x55\x86\x1f\xf0\x47\x84\xaf\xc5\xdf\xcb\x12\x81\xc5\x52\xba\x5e\xb3\x9a\x20\x2d\x6e\xf0\xcd\x5d\x4f\x4a\x52\x97\x4a\xf4\x7b\xfa\xf5\x2c\xaf\xbd\x79\xf0\x63\x09\x4c\xff\xf0\x16\x9e\xd4\xf2\x29\x4f\x1d\xc8\xdb\xcd\x39\x33\xc2\xac\x5d\x84\xf3\x31\xdc\xe0\x38\x5a\x94\xa1\x5c\xe5\x0d\xd5\x3a\x92\x6a\xb7\x18\x19\x0c\x2b\x31\x07\x60\x5b\xaf\xeb\xdb\x32\x50\x05\x17\x45\x98\x79\x9e\x63\xe8\xa6\x6e\xcb\x60\xeb\xf5\x7d\xc7\x62\x87\x7d\x6b\x82\x4d\x5c\x5b\x18\x8c\x98\xce\x61\x4e\xf8\xca\xe5\x5c\xa9\xff\xf6\xf8\xd7\xcd\x0f\x87\x13\x56\xef\x05\x8b\x11\x27\x0c\x67\x24\x75\xb9\x3a\x20\xfb\x4d\xbe\xc7\xbc\x51\x1d\xe6\x6e\x6d\x95\x84\xa7\xe7\x35\xd5\x3f\xac\x08\xe1\x16\x73\xa4\x26\x9e\x54\x66\x6c\xa3\x54\x0d\xbe\x81\x74\x2d\xd1\x6a\xaf\x31\x6f\x60\x4b\x63\xee\x6b\xa8\xb5\xf9\x40\x6b\x53\x68\x5b\x2a\x1e\x56\x8d\x06\x36\x9c\x1f\x8d\x2d\x97\xb1\xed\xf2\x9b\x5c\xdf\xa1\xea\xad\xaf\xaf\x80\xfc\x16\x7f\xc3\xac\xa6\x66\x6f\xeb\x22\x1c\xf7\x40\x46\x5b\x87\x1e\xab\xe3\x6c\x61\x79\xe3\x54\x10\x23\x59\xd7\xfd\x89\x0d\x5e\xfb\x32\xca\xba\xf6\xc7\xc6\x0f\x4d\xfa\x32\x7c\x83\x9d\x25\x6a\xbd\xdf\x34\x23\x26\x99\x55\xd3\x1a\x59\x22\x47\x60\x1c\x03\xf3\x07\xdb\xc9\x23\x11\xc8\xdd\xf9\x83\xc5\x8d\x14\xa7\x35\x3a\x78\x37\x7d\x4f\x08\x50\x9f\x3b\x58\xce\xbf\x9e\x09\xf7\x23\xed\x94\xc4\x31\x53\x8b\xf4\x4d\xe2\x1b\xb1\x6c\x07\x9d\xcc\x72\xb0\x8d\x2d\x38\xac\xb6\x4e\x2d\x83\x13\x01\xad\x69\x6c\x17\x95\x81\xdd\xde\xff\x9f\xdf\xb2\x10\xed\xb1\x16\xf3\xad\xc7\xac\x66\xaa\x15\x04\xfd\x47\x0d\x41\x86\x26\x87\x5e\x53\x70\x63\x5f\x6e\x35\xa7\x20\xe9\x5e\x1f\xc5\xcc\x35\x2b\x1b\x84\x66\x54\x1a\x66\x36\x19\x1c\x44\x64\x0f\x0d\xa5\x07\x56\x35\x91\x45\x26\x27\x96\xb9\x48\xe6\x1d\x36\x3a\x9a\xa0\x03\x30\x38\x6a\x76\x2d\xac\x27\x11\x41\x98\x3b\xf7\x7a\x3d\x84\x53\x95\x1f\x3b\x64\x22\x29\x66\xca\xa6\xcd\xec\xfe\xee\x08\xf8\xb8\xa7\x6d\xf4\x85\x0a\x6a\xd6\x42\x38\x71\xac\xbd\x05\x23\xf3\x41\x22\x58\x38\x4a\x82\x3e\xc2\xa9\x8a\x75\x58\xb7\x2e\xb9\x8f\x05\x2b\xac\x68\xee\x05\x0f\xf8\x0e\x36\xf2\xad\x11\x55\x5e\x87\xd4\xdd\xfa\x0c\x24\x85\x19\x57\x33\x63\x82\xbb\xbd\xc3\xfb\x03\x77\x07\x22\x49\xb0\x77\xb7\x77\xf8\x60\x7d\xff\x2e\xa6\x6e\x94\xc6\x83\x48\x6c\xc5\xf1\x8b\xf0\x0f\xf1\xdf\x2b\x14\xfb\x25\x9a\xe3\x1c\x1c\xe2\xea\xd1\xa1\xef\x21\x14\xb7\x57\x62\x30\xcd\xb4\xbe\x41\x3b\x5e\x00\xaa\x86\x77\x90\x54\x6f\xc4\xde\x8d\xbd\xca\xf1\xaf\xf4\xa3\x7f\xe8\x15\xb4\xed\xc8\xb1\xe5\xb0\xa1\xdb\xe4\x03\xaf\x48\x95\x83\x03\xd3\x5b\x7a\x81\x28\xa4\x28\x81\x62\x29\xd7\x89\x12\xbc\x5c\xd1\x74\x1c\x7d\x4d\xc2\xc4\xc0\xfb\x3d\x29\xb7\xf8\xe0\x7d\xe2\x74\x7c\xca\x57\x03\xf5\x37\x3a\xe5\x2b\xab\x45\x7c\x5a\x73\x72\x97\x35\x60\xa5\xe1\x48\xc7\x66\x1f\xb7\x46\x36\xa0\x94\xfb\x0a\x41\x34\x1d\xf1\xe5\x3c\x51\x10\x06\x08\xc2\x6c\xb8\xf7\x3d\x71\x4e\xe9\x13\x03\x9e\x32\x4f\x34\x77\x01\x12\x52\x3a\xab\x96\xb3\x09\xef\x82\x8c\x49\xf4\x47\x62\x19\x72\x74\xb3\xe4\x30\x0f\x66\x17\x2b\x17\x6d\x49\x72\x06\x8f\x37\xc8\xa1\xd7\xb1\xea\x86\x28\x50\x45\x74\x6d\x6c\x62\x49\x7b\x1c\x7a\xf0\xd5\x70\xdd\xc8\xaa\xa9\xf4\x5d\x55\x0d\x49\xd1\xcd\x33\x69\x58\xe9\xd4\xf7\xdc\xf3\x2f\xf1\xc3\xcb\x27\xe8\x16\x54\x5a\x68\xa0\x02\x9f\x6d\x94\x2f\x03\x46\xf9\xa8\xb2\x8e\x92\xf2\x77\x5f\xe3\xeb\x6a\x23\x6b\x6a\x47\xad\x8d\xdc\xdf\x8f\xb4\xe5\x91\x9c\xd8\xfe\x66\x15\xec\xdf\xbb\x6f\x55\x7b\x16\x73\xa5\x76\x3d\x6d\x01\x81\x71\xf5\x5f\x89\x0c\xd5\xd9\xe6\x48\x15\xd6\x23\x40\xcb\x13\xf5\x20\x75\xfc\x57\x53\x24\x71\x23\xfe\xf9\x67\xc1\x69\xba\x7a\x59\xc1\x3e\x36\x69\x2b\x8e\x24\x1b\xb7\x3b\x07\x91\x9a\xf1\xea\xda\xad\x26\xa1\x7f\x8c\xaf\x2f\x86\xf7\x0f\x6a\x31\xd8\x5f\x28\xaa\x0a\xae\x75\xcf\xba\x89\x1b\x4c\xb7\x86\x6f\xed\x8d\xb6\x9e\x3b\x24\xd1\x88\xe7\xe2\x4c\x10\x4a\xd3\x34\x8a\x2c\x86\x00\x00\xac\x2b\x5c\x66\xf3\xa4\x71\x9d\xcd\x05\x94\x05\x01\x13\xcc\xa7\x90\xae\x15\x56\x7d\x0a\x55\xb9\x18\xc3\xff\x47\x9b\x2d\xef\xef\x4e\xab\x6f\x69\xa2\x43\xdb\x57\x46\xad\x6e\x62\x01\xff\x0c\xcf\xbe\x2c\xc3\x03\x9c\xea\x63\x99\xe6\x5d\x4a\x1c\x33\x40\xb8\xc0\x3a\x9c\x7c\x17\xb9\x31\x70\x68\xd3\x2f\x3b\x54\xb7\x28\xdd\xa3\xb6\xc8\xe4\x83\xda\x55\x57\x70\x69\xaa\x83\x45\xfb\xb8\x4a\x31\x6d\xf1\x51\x6c\xc6\x09\xc0\x3f\xc5\xd7\x68\x93\x90\xb4\xed\xa2\x95\x04\xc1\xd3\x3c\x4c\x01\x88\x2f\xf6\x59\xbf\xfe\x85\x37\xb4\x4a\x2b\xe8\x44\x92\x52\x96\x91\x66\x18\xa4\x58\xc2\x45\x3b\xa3\x3a\x93\x3b\xb5\xad\x9c\xaf\xdf\x96\x61\x63\x5a\xa7\x27\xe6\xb0\x72\x8a\xb3\x05\xe9\x91\x01\xaf\x08\x3b\x68\x41\xf0\x9c\xd9\xb0\xee\x3e\x85\x83\x80\x76\xb3\x59\x7a\xb1\x0c\xfd\xae\xdf\xf7\x96\xb4\xbb\xfe\x02\x57\x5b\xef\x0e\x22\x63\xbb\x59\x33\xa3\x87\xb8\x5a\x0d\x83\x6f\x1d\x70\xcb\x1f\xc3\xea\xd6\x68\x5c\xf2\xcd\x5f\xa9\xd8\x0f\x51\x8d\x67\x0f\xcd\x62\x24\x59\x5b\xb1\xfc\x7e\xff\x67\x17\xa7\x3f\xcc\x04\x6a\xdf\x50\x5e\x97\x41\xf0\xba\x0c\x13\xd4\x66\xa2\x52\x9f\x60\x77\x1b\x13\x8d\xd6\x16\x0f\xcf\x0c\x03\x00\xd1\x9a\x57\x06\x8a\x0c\xec\xb5\x5c\x38\x24\xb0\x75\x3a\x38\x7c\x10\xa5\x75\x60\x6b\x4a\x98\x0e\xb5\x02\x60\x5e\x16\x95\xde\xe2\xca\x1a\xfb\x55\x79\x1c\x30\x1b\x6f\x01\x1b\x63\x8e\x0b\xb4\x31\x48\x5d\x6a\xa9\xa1\x60\xf7\xba\x41\x1b\x8f\x41\x9f\x97\xd2\xd0\xc4\xdd\x9c\xda\xc9\x96\xb6\x6e\xf9\x41\x70\x5c\xaa\x60\xf7\xb6\xd8\x7b\xaa\x58\x27\xe9\x6e\xf4\x46\x0f\x8b\xb7\xda\xbd\xf5\x0e\x05\x4e\x7c\x23\x6d\x07\x0c\x93\x92\xba\x46\xfa\x75\x9f\x1d\x95\xd8\x08\x39\x45\x9b\x77\xe6\xb8\x8e\x7a\x13\xd3\x86\xb4\x23\xa6\x75\x69\x47\xec\x5b\x7a\xd7\x5b\xe1\x25\x5a\xc1\xac\x67\x2d\x16\x04\x6f\x05\x45\xec\x56\x74\x52\x3a\x31\x66\xef\x11\x83\x56\x77\x60\x1f\xef\xea\x47\x97\x5e\xef\xe0\x3b\x15\x04\xd4\x9e\xa5\x5c\x04\x3e\x15\x34\xef\xa4\x04\xbb\x1b\x8d\x39\x68\x40\xde\x6c\xd0\xb7\xfa\x44\xea\x89\x89\x94\x78\x6b\x50\xcb\x16\x24\x31\x1e\x41\x12\xec\x8c\xaf\x58\x5c\x6b\x0e\xbc\x31\x40\x03\x79\x3c\x70\x6b\x1e\x7d\xba\xaf\x37\x0b\xc2\xb7\xb9\x4b\x60\xff\x7e\x10\x84\xef\x93\x50\xc6\xd6\x17\xd7\x3d\xd7\xcd\xb6\xff\x00\xc5\x34\x4a\x40\x07\x9c\x12\x1a\xc7\x2a\xe4\x71\xf5\x73\x76\xea\x27\xa5\x71\x09\x40\x1a\xce\xda\x10\xef\xa7\x0c\xd6\x65\xc5\xb6\x9e\x7b\xd6\xe6\xfe\xbe\x7d\xec\x3f\xd4\xcf\xb2\x21\x6e\x27\xf6\x91\xb6\xb8\xdf\x49\xdc\x80\xd7\x7a\x33\x91\xbc\x21\x07\xc5\xc9\x29\x6d\x5d\x6b\x66\xfc\xd8\x98\xf1\x6f\x20\x86\x9b\x5f\x8f\x44\xb8\xab\x6d\x5e\x3b\x74\xb3\x61\x83\x3f\xe1\x80\x8d\x13\x14\xbd\xd7\x4f\x2e\x23\xfe\x59\xb3\xfe\x03\x4e\xc5\x9c\x08\x5e\x66\xd2\x2b\x41\x22\xaa\x21\x4a\xf8\xc0\x99\x18\x91\x0b\x0d\x58\x56\xcb\x15\xad\x52\x8e\x93\xc1\xc3\x9a\x42\xc4\x09\x93\x29\xb2\xf1\x85\xda\xfe\xe1\x08\x17\xa5\x2d\x69\x61\xad\x88\x50\xf0\xb2\x2d\x05\x27\xf5\x6f\x52\x84\x22\x91\x09\x27\x9e\xe7\x04\x45\xd2\x7a\x52\x1e\x42\xde\xcf\x66\x20\x2c\x03\x9e\x75\x76\x2f\xbb\x18\x1b\xd9\x72\xa2\xf5\x63\x60\xe3\xe7\xe8\xca\x7c\x07\x0c\xa6\xf6\x09\xeb\xdf\x2f\xb7\x08\xc1\x38\x86\xac\x9e\x73\x68\x65\x3c\xde\x5a\xdf\xbb\xe3\xf2\xfe\x3f\x3d\x2e\x6d\x94\x4e\x6b\xf4\xfa\xe9\xee\xbd\xff\x41\xf7\x5a\xdf\x7b\xf1\x2d\x4c\xf7\xac\x49\x6c\x82\x39\xe9\xf4\x71\x86\xf3\x58\xce\xa5\x0e\x84\x35\x63\xc6\x51\x0e\xd6\x82\xd8\x9b\xf0\x4d\x65\xa0\x58\xfd\x32\xc2\x9b\x8b\x1f\xf7\x16\xbf\xdc\x2c\x7c\x5a\x7a\x72\x10\x65\xf5\x20\xca\x71\x6e\x96\x35\x9d\xeb\xee\x0f\x72\x6d\x38\xd1\xee\xc9\x1b\x4e\x3a\xbd\x8d\xf2\xf2\x61\xd6\xcb\x47\x9d\x3d\x65\x77\xa4\x59\x1a\xc5\x63\xc2\xf0\x84\xa4\x78\x4a\xc6\x71\x2c\x0e\xf4\x7f\x94\x61\x81\xa7\x4e\x18\xf5\xa9\x1c\x89\x20\xb8\x0b\x3f\x44\x19\x53\x7f\x91\x98\xe2\xa9\xce\x65\xd4\x26\x53\x08\x23\xdd\xe6\xd1\x38\x6d\x5d\x41\xa7\x66\x05\x9d\x5a\x4f\x1f\x5b\xc0\xd4\x64\xd8\x4c\xeb\x2b\xa7\x7e\x03\x99\xf4\x98\xe7\x83\xb0\x20\xc3\x2a\x13\x1d\x74\xf4\xae\x62\x8a\x17\x76\x8a\x17\xee\x2a\xe1\x9a\x59\x8d\x51\x54\xd4\x12\x10\x08\xb8\x6d\x8a\x53\x2c\x32\xb1\x59\xef\x5a\x3a\x3b\xd1\x50\xb4\x8f\x54\x46\xb6\x46\xd2\x96\x83\xc9\x7c\xc2\x32\x08\xaa\x57\x73\xa2\x32\x75\xc1\x41\x15\xac\x73\xeb\xf5\xfc\x4c\x31\x65\x16\xb2\x2d\xbe\x58\xac\x75\x84\x98\x19\x21\xd6\xe2\x8b\xc5\xec\x7c\x71\x02\x87\x87\x1c\x70\xb8\x58\x7d\xc8\x4c\x5e\x47\x49\xe0\x9d\xeb\x4e\x7f\x5e\xee\xd2\x3c\x62\xbf\x10\x77\xd9\xa4\x7e\x97\x75\x7f\x69\xa0\xe9\xc4\xbf\xdd\x2a\x5b\x09\x07\xfe\xc3\x57\xc9\xb4\x05\xcd\x94\xb7\x56\x06\x02\x1a\xcf\x24\xd9\x93\x10\x34\x8f\x97\x5e\x84\xc6\x54\xd9\xc3\x19\xab\x13\xa9\x0b\x1e\xee\x2e\x28\x58\xa4\x49\x8a\x5e\xcf\xb9\x16\x1d\x31\x08\xfa\x1c\x04\x4f\x12\xe9\x20\x35\x67\xd2\xc0\x2e\x21\xf0\xc4\x90\x72\xb9\xed\xc5\xfc\x51\xa6\x4d\xd8\xf8\x1d\xb2\xaf\x4f\xfe\xd9\x19\x3f\xc7\x85\xf8\x73\xa7\xef\x1b\x19\xe5\x83\x29\x0b\x53\x5c\xfc\xc8\xc8\x28\x1f\xfc\x99\xe8\x7c\x35\xbb\xd6\xf7\xea\xc5\x67\x1a\xa6\x38\xc7\x85\xd8\xfb\x6b\xb1\xb1\xad\x7d\xcd\x53\xd5\x05\xc9\x87\xea\x32\xeb\x99\xd5\xfc\xe1\xe5\xa8\x9b\xc0\x88\x5d\xda\x33\x15\xeb\x3a\x96\x62\xf8\x96\x77\x9e\xc5\x0c\xa6\xda\x62\x46\xcd\x26\x3a\x78\x21\xaa\xf5\xf3\x80\xc5\x4c\xd2\x21\xde\xa7\xc6\xc7\xc9\x37\x91\x69\xf9\xbe\x69\x43\x13\xb5\x65\x32\xf6\x96\x67\xe7\x91\x38\xa2\x8a\x5a\xd1\x66\xb3\xf1\xaf\xe4\x3f\x67\x64\xbf\x8f\x3c\xbb\x4a\x6b\x5c\xd2\x30\x9a\xaf\xcb\x3a\x3c\x79\x63\x57\xdd\xbf\x41\xd5\xa4\x9e\xc5\xa6\xf9\x57\x1a\xd6\x71\x77\x6a\xf3\xae\x21\x1e\x48\x95\xab\x2c\x69\xa2\x60\x0c\x2b\x71\x2f\x88\x42\x26\x95\x79\x5a\xe3\xf4\xa1\x04\xbd\x8c\xab\x41\x4f\x8d\x57\x7f\x1a\x5b\x97\x56\xa9\x51\xc9\x5c\xf8\x21\xcc\x06\x21\xe8\x16\x05\x7f\x6f\xc1\x18\xcb\xba\x4b\xbe\xd2\x26\x63\x03\xef\x17\x98\xeb\x42\x18\x7b\x30\xca\xaa\x66\x95\xb4\xce\x2a\xa7\xf3\xd9\x62\x45\x21\x88\x7d\x94\xe9\x50\xf7\x44\xe7\x40\x51\xe8\xb7\x82\xd7\x45\xbc\xaa\x41\xdc\x06\x7b\x31\x73\x5b\x3c\xf1\xba\x21\x9b\xd3\x0e\x34\xe0\xba\x42\x89\x2b\xa1\x7a\x67\x5a\x31\x61\x5e\xb3\xb9\x73\x7e\xbc\x6f\xa8\x44\x5b\x99\x82\x0d\x04\xc3\x45\x75\xbf\x57\x83\x7c\x70\x60\x75\x0a\xd5\x16\xb4\x84\xaa\x15\x99\xc8\x11\xe1\x88\x7d\xb0\x66\xa4\x13\x67\x2e\x42\xc2\xb0\xca\xec\x3e\xf5\x1f\x40\x56\x48\x5b\xf6\xb8\x5f\xc0\x55\x48\xff\x7d\x5c\x85\x8f\x20\xc7\xa8\xc9\xa7\x5a\x12\x6f\x97\x9c\xdb\xe0\x00\x9e\xb4\x63\xbb\x28\xb2\xb9\xdb\x68\x69\x50\x43\x3c\x28\x25\x6c\x9e\xe0\x81\x5f\xee\x3c\x29\xc5\xaa\x91\xcd\x16\xcf\x68\xea\xc4\xdd\x48\xf4\xce\xf8\x57\xe9\x44\xb7\x00\x00\xb5\x54\x30\xac\x74\x4f\x4a\xbb\x94\xb1\x30\x41\x38\xe9\xae\x0a\x5e\x85\x0c\x33\x84\x36\x46\x69\xf6\xe9\x36\xa5\xd9\x1b\x3a\x1f\xa8\xbf\xd1\x1b\x3a\xb7\x4a\xb3\xcf\xa5\x0d\x11\x75\x99\x87\x16\xe5\x66\x45\x73\x72\x10\x8b\x8b\xda\xf5\x64\x46\x19\xb9\x51\x52\x66\x27\xfc\x19\x33\xca\xb1\xb4\x9b\x2a\xbb\x29\xd7\x0d\xfc\x4b\xb9\x5e\x87\x5f\x4a\xb1\xe8\xfc\x5d\x12\x86\x62\xa5\xa1\xdb\x58\xa4\x1b\x17\xe5\xe0\xf6\x96\x98\x6b\xd3\xf5\x9c\x6f\x85\x75\xdb\x8e\x87\x6e\x42\x53\xda\x26\xeb\x9e\x39\x2d\x56\x0d\x34\x80\x48\x21\x47\x9b\x8d\x76\x59\xf7\xc7\x58\x5b\xcb\xb6\x2f\x7c\xae\x40\xfd\x29\x5d\xa5\x85\xf4\x59\x6b\x21\x52\xbb\x6f\x37\x73\x10\xcd\x46\x03\x3a\x02\xee\x39\xe5\xab\xf0\x6c\x55\x94\xcb\x73\x14\xd1\x11\x70\x83\xf8\x85\xb0\x6a\xb6\xc6\xf0\xd1\xfa\x4e\xf1\xb2\xd9\x92\x50\x51\x00\xdf\x98\x57\xa7\xa0\x82\xb5\xb6\x06\xb0\x3b\x6e\xd0\x06\xb9\x03\x05\xd3\x63\x44\xde\xd0\x55\xd1\x4d\x79\x39\xc1\xe9\xa8\x8e\xff\x7f\xac\x62\x5b\xf1\x05\x66\x8d\x97\x32\x38\xc0\x5f\xa4\x87\xf9\x88\x3c\xc4\xd9\x88\xf4\xef\xe3\x7c\x44\x0e\xf6\xf1\xaa\x24\x3d\x5c\x8c\x48\x1f\x97\x23\xb2\x8f\x2f\x4a\x72\x80\xbf\x95\xe4\x2e\x1e\x8d\xc8\x3d\xfc\x89\xfc\x85\x3f\x48\x93\x81\xcf\xf2\xcf\x47\xd2\xc3\xa7\x64\x55\xe2\xf1\x48\x26\x4c\x46\xc4\x09\xe9\x3c\xf5\x7e\x55\x2a\xcf\xa5\xa8\x64\x36\x12\xbb\xeb\x07\xf1\x38\x1f\x91\x7b\xbd\x1e\xfe\x22\xdf\x0a\x36\xed\x0b\x36\x95\x53\x4f\x7d\xf3\x15\xb2\x2f\xd4\xaf\xe5\x88\x1c\xf6\xf0\x4a\xfd\xba\x18\x91\x1e\xfe\xa6\x0b\x1f\x91\x9e\x9d\x54\xbf\xe7\x26\x84\x4f\xf8\x29\x08\xb3\xd1\x3a\x1f\x21\xd4\x21\xe4\xaf\x81\x69\x58\x7f\x2f\x14\x9b\xef\xbf\xfa\xbd\x75\x0f\x45\x60\x2f\x38\x1a\x5c\x8e\xa2\x4b\xa7\xf1\x5e\x1e\x4f\xd1\x97\xeb\xb9\x92\x28\x30\x3d\x0b\x2f\x13\xec\x1b\xbb\x51\x4b\x85\xd8\x89\xee\x68\x73\x5a\x0b\xd3\xc3\x43\xf0\x43\xb5\x1f\xd8\x10\xd9\xfb\xe2\x83\xf0\x53\x90\x8d\xa0\x07\xfa\x8b\x8f\xfe\xa9\x81\x14\xa2\x49\x69\x77\x25\xb5\xdc\x6f\x96\xeb\xde\x7a\x7d\xef\xd9\x01\xde\xbf\xd7\x43\x1e\xa4\x0d\x53\x27\xd5\xc3\xc3\x88\x3a\xe3\xe4\x9e\x42\x0f\x1f\x46\xaa\xc0\xfe\xbd\x1e\xee\xf7\x7c\xd7\xa7\x43\xa5\x82\x38\xbc\xaf\x73\x99\x7a\xdc\x5c\xf7\x22\x4a\xf6\x6f\x95\x61\x1e\xec\xdf\x17\xdb\x40\x65\x6c\x34\xc5\xa6\xf6\x31\x08\xf6\xf6\x68\x6b\x10\xcf\x97\xb9\x89\xd4\x7a\xaf\xf7\xe8\x62\xa4\x0e\x85\x1e\x23\x98\x2d\x46\x9a\x79\x90\xab\x91\x5c\x51\x3c\x23\x45\xb5\x6b\x88\xc1\xb0\x04\x90\x01\x88\x3f\x05\x5c\xd2\x39\x08\x1c\xd6\x21\x82\x75\xae\x47\x21\x45\x51\xf8\x77\x48\x11\xfe\x44\x20\x4b\x9e\x87\x08\x45\x22\x25\x0e\x3f\x05\x77\x21\xdf\x7a\x7d\xf8\x50\x8a\xc2\x0e\x0f\xa5\x18\x4c\xaf\x24\xab\xd1\x60\x25\x57\x92\x37\x74\x1e\x9e\x41\x68\xa6\x73\xb0\x36\x5a\x8d\xc4\x92\x2a\x0a\x0e\x6d\x08\x88\xf5\x3a\x7d\x9c\xa0\x20\x58\x8d\xc4\xc9\x4d\xae\x30\xbe\x96\x40\x75\xee\xff\x30\xc6\x98\xde\x09\x14\xcc\x98\x7f\xef\x93\xf6\x1d\x16\x7b\x8a\x7b\x0b\xb7\x04\xe4\xd7\xc7\x15\x69\x81\x79\x93\x12\xe6\x34\x88\xb5\x22\xe2\x24\x60\x35\xd5\x66\xdc\x95\x20\xaf\x0f\xdb\x3e\x6e\xc7\xe5\x4b\x5c\x40\x48\x7d\xe6\x92\xcd\x57\xd2\x0e\x4e\x1a\x4a\xcc\x8d\x95\x09\x6c\xec\xc9\x36\xfc\xa0\x7c\xcb\x9e\x80\x15\xf0\x29\x21\xe4\x5b\x19\x04\x57\x65\xc8\xf1\x47\x04\x66\xc7\x1c\xf6\x08\x6d\xd8\xe3\x85\x55\x1d\xb9\x07\x20\xd0\xb3\x88\x86\x72\x06\xa0\x41\xca\x9c\xc9\x44\x12\x4e\xc0\x4e\x02\x14\x34\xef\xa4\x02\x46\x67\xeb\x1c\x49\x8e\xb0\x39\xf5\x88\x8b\x32\xdf\x95\x55\xae\x8a\xd4\x4a\xb0\x3f\xaa\xd9\x65\xa5\x0a\x79\xcd\xbf\xf1\x49\x4c\x49\xfa\x98\x0e\xd2\xc8\x4c\xc1\xfd\xc7\x80\x3b\x04\xe2\x81\x5e\xe4\x4d\xc8\xbf\x55\x4c\xa2\x9e\x0d\xaf\x65\x9b\x8d\xa8\xd9\x6f\x6b\x54\x77\x36\x07\x9b\xe7\xdd\xa2\x9c\x2d\xca\xd5\x35\x39\x3c\x74\x52\xe1\xe4\xc6\xf3\xf0\x7a\xe4\x1e\xcc\x90\xa3\x80\x4f\x08\x10\x0f\x6c\x24\xdd\xaf\x62\x13\xdd\xc7\xd1\xb9\xd6\x0a\x96\xa5\x6d\x6b\x66\xaf\xb5\x75\x3d\x4f\xf9\xff\x7b\xcb\x1a\xc2\xc8\xe1\x61\xd4\x17\x8f\xeb\xf5\xbe\x4e\xb9\x27\x6e\x7f\xfd\xde\xff\x84\xce\xe6\x92\xa0\xbd\x5a\x0a\x43\x98\x91\xde\x63\xc2\x06\x87\x87\xd1\xfe\x3d\xf9\xf4\x30\xba\xa7\x1f\x1f\x44\x87\xf7\xfc\xeb\xa2\x3a\x55\x35\x5b\x0a\xb1\x6c\xb7\x75\x0d\x54\x6f\xfc\xb1\xb1\x2c\x8f\x53\xb1\x00\x67\x41\xf0\x47\x16\xa6\x68\xb3\xf5\xbb\x61\x95\xc4\x2d\x44\x61\x71\x42\x6a\x44\x68\x19\xb3\x88\xe5\x21\xc3\x4f\xfc\x54\x7c\xa3\x76\xac\xa8\x49\x1c\xb1\xf7\x6e\x50\x5c\x1b\xb4\x64\xe3\xad\x81\x4f\xd4\x1a\x08\x27\x00\x88\x27\x66\x8c\x56\x21\x38\xf1\x53\xf9\x1e\xff\x6d\xcc\xe5\xe4\x94\x00\xae\xd1\x53\x0b\x36\xf2\x26\xff\xd4\x0e\x0f\xf5\x70\x54\xfb\x0f\x10\x8a\x8f\x47\xa1\xf4\x92\xfd\x10\x04\xa9\xd8\xbf\xd6\xeb\x67\x23\x09\x9e\x67\xc7\xe9\xb3\xbe\x60\x7c\x8a\x3f\xad\x49\x36\x52\x88\x05\xcf\xc5\xb7\x6c\xb6\xb3\x5a\x5c\xdf\xfc\x2e\x9e\xe5\xfa\x62\x74\xd6\x2f\x44\x41\x05\x52\x9a\xea\x3e\x8a\x2b\xc1\x6e\x9f\x08\x8b\xd3\x91\x31\xed\x82\x96\x8a\xe5\xa6\xd0\x1b\x62\x42\xc6\x23\xac\x1a\x81\xaf\xa4\x41\x98\xec\x7f\xe2\x2c\x77\x9f\xb5\x05\x07\x87\xc5\xa4\x2a\x97\x05\x67\x9f\x66\x8b\xb1\x20\x84\x2c\xdb\xb1\x6a\xb0\x59\xea\xc6\xb5\x98\x91\x53\x7d\x3e\xd4\x67\x8b\x55\x29\x8f\x08\xc5\xa8\xbe\xe5\xdf\x15\xdb\x32\xbc\x2b\x47\x11\x8c\xcd\xfe\xa3\x74\xb0\x1f\xf9\x9a\xf2\x8b\x32\x52\xed\x06\xc4\x58\xb1\xb2\x9c\x42\x54\x43\xa6\xd6\xaf\x61\x95\x12\xa5\x52\x69\x5f\xc7\xc8\xcb\x11\xf8\x2f\x8b\xcb\xbd\xcb\x99\x93\x11\x48\x6f\x3f\x94\x77\xe6\x23\x60\x30\xdc\xef\x3d\xe2\x08\x96\xb1\xd9\xc8\xe2\x63\xd5\xd6\x4b\xb5\x98\x64\xeb\x75\xf6\x58\x70\x4b\x3d\x03\x49\x63\x3d\xea\x72\x0c\x37\x99\xcf\x61\x59\x10\xa8\x58\x3e\xd0\x4b\x95\xca\x82\x80\x49\xf6\x6b\x14\xc8\x34\x6e\x9e\x3e\xd2\xc9\x30\x97\xe4\x05\x0b\x5f\xd5\xa6\x10\xd7\x95\xbe\x1a\xd5\x3c\xf4\xbe\xfd\x88\x8e\x3f\x4f\xc5\x99\x24\x5c\xbd\x9d\xb8\x27\x1d\x94\xb8\x20\xcb\x4f\xd0\x85\xfb\x64\xe1\x41\xc0\x7f\x89\x2c\xc3\x4a\x13\xc6\x0e\x6b\x87\x90\xe9\x68\xd0\x58\x5e\xa7\x23\xb9\x84\x44\x35\x06\x18\x30\xd2\x6b\x59\x8d\x27\x23\xb4\x27\x0e\xb2\xda\x58\xba\xfe\x3e\x45\x7b\x1c\x33\xc2\xf7\x18\xee\x3d\x66\x60\xb9\xda\x13\xcb\x75\xd8\xdf\xef\x3d\x66\x83\xfe\x7e\x2f\xba\xfb\x50\x3c\xdd\x7d\xd8\x8b\xfa\x3d\x78\x14\x7f\xa2\xfe\xa1\xcc\x70\xb8\xdf\x8b\x0e\x9e\x1d\x3c\x66\x83\x83\x67\x07\xd1\xdd\x03\x48\x15\x7f\xa2\xfe\xe1\xfd\xde\xff\x24\xa3\x90\xfd\x4b\x3c\x21\xb4\xc7\x70\xfa\x88\x29\xc4\x1a\xc5\xc3\x8f\x40\x36\xf4\x43\x5e\x60\x5b\x79\x61\x34\x8a\xbc\xc9\xd0\x91\x93\x41\xad\x50\xd5\x08\xdd\x64\x64\x32\x52\x88\xf1\xd5\x28\x66\x24\xef\x26\x17\xcb\xeb\x37\x65\x75\x7c\x21\x27\xbc\xb8\x55\xc4\xb0\x13\x01\x09\xb9\xca\x71\xcc\x27\xf4\x5a\xbc\xc3\x19\xd0\x6e\x2f\xac\x91\x2e\x43\x7b\x61\xde\xb8\x9a\x20\x41\xbd\xec\x11\xe1\x83\x5e\xc4\xef\xb0\xbd\xcc\xe9\xa9\xe6\xda\x7a\x8f\x87\xd5\x6d\x7d\xf6\x3a\xbd\xed\xce\x71\x28\xee\x1c\x7f\x2b\x1e\xac\xed\x2d\xce\x21\xab\xb6\x4f\x6d\x5c\x0b\x7f\x77\xff\xb9\xbe\xf5\xe8\x96\x80\xb3\x56\x32\x48\x1c\x26\xfc\x77\x76\x96\xc4\xd9\x59\x92\x96\x9d\x25\xf5\x76\x16\xe6\xed\x2c\x7f\xd4\x77\x16\xae\x76\x16\xde\xdc\x59\x52\x77\x67\x61\x8d\x9d\x25\x35\x3b\x4b\xa2\x76\x16\xbd\xb3\xa6\x5e\x9b\x6a\x26\xf7\x60\xab\xf2\xe3\x4d\x26\xde\xba\xc9\x24\xb1\xdc\x60\x62\x39\xc0\xa2\x46\x6f\x3c\xcc\x68\xbc\x1e\x85\xae\x86\x72\x35\xd2\xb6\x63\xab\x51\xac\x04\x07\xa2\x96\xba\x00\x50\xf0\xda\xcd\xd3\x51\x98\x62\x28\x3d\x15\xc7\x0e\x71\xb7\xf3\x4e\x1a\x6f\x46\xae\x7d\x3b\xd0\xbb\x0f\x76\x66\xfa\xae\x0a\x96\x4c\x2a\x0e\xef\x27\x92\xba\x97\x44\xc7\xda\xf6\x6d\xbd\x98\x80\xec\xed\x8b\xc2\xf8\xe8\xe7\x4b\x73\x9a\xf5\xcc\x5c\x02\x3d\xfa\x1a\x33\xae\x56\x82\xf6\xcc\xc5\xc0\x9b\x5f\xf1\x5e\xdf\x9c\x94\xfd\x89\xb7\xd7\xc7\x2f\x59\x98\x22\x9f\xf7\xa4\x4d\xcf\xe7\x9a\xa5\x55\x1a\x1b\x6b\x5f\x6d\x2c\xc0\x3c\x9f\x10\xa6\xb4\x7e\xf2\x4e\xf6\xd4\x86\x18\x5a\x9a\x7b\xa1\x63\x48\xc2\x94\xe7\x88\x67\x56\x55\xf7\xff\x70\xad\xec\xf2\xa2\x06\xc4\x72\x57\x66\x77\x2d\xfc\x94\x2b\xb0\x9b\x74\xd8\x4c\xea\x45\xb3\x3c\x64\xc8\x35\x70\xfa\x40\x68\xfc\x19\x90\x4e\x8d\xf3\x8c\x14\x94\x7e\x24\x49\x7c\x4a\x56\x65\xac\x84\x62\xf1\x74\x44\x3c\xb9\x58\xac\x24\x61\xf1\x65\x49\x7a\x31\x48\xc2\x3c\x99\x92\x1a\x47\x36\x03\xd7\x03\x98\x90\x23\x1b\x6c\x63\x09\xd1\x72\xa7\x12\xcd\x51\x0e\xde\xdb\x16\xf8\x6e\x9f\xfc\x32\x7c\xbe\x43\xd4\x90\x69\x9b\x3d\xe5\x31\x69\x0c\xaf\x27\x05\xe9\xc5\xef\xc8\x09\x79\xab\x5a\x0f\xa1\x73\x9d\xe3\xa2\x71\x47\xd6\xc3\xad\x57\xca\x53\x52\x8c\xf0\x78\x44\x12\x25\x1e\x8c\x69\xa4\x6f\x25\x38\x33\xb9\x71\x4e\x3e\xe3\x82\x88\xbb\xeb\xc7\x38\xf7\xd0\xda\x7b\x77\x1f\xc6\xb9\x67\x70\x98\x37\x6c\x0d\x2d\xd7\x01\x40\x5f\x33\x10\x55\xb1\x4d\x18\x5c\x80\xb4\x5e\x92\x64\x4c\x0a\x23\x7e\xcb\x8d\x9f\xb2\x82\xa5\xc8\x9d\x95\x68\x32\x08\x73\x4f\xdb\x30\xf1\x1c\xf0\xf2\x9a\xad\xe5\xa4\x11\xd3\xa9\x26\x36\x99\xd4\x12\x50\x54\x2b\x5f\x62\x4f\x37\x0a\x86\x41\xda\xc8\xf8\x7c\x0d\x87\x68\x3c\x27\x99\x36\x89\xbd\x12\xfd\xba\x22\xa0\xc8\x9a\xcb\xc9\x26\x92\xbf\x93\x79\xbb\x5b\x71\x87\x90\xef\xe8\x4a\x2b\xfe\xbf\x3b\x6a\xac\x41\xa7\x17\x75\xfa\xf6\x92\x9b\x52\xa7\x0c\xa9\x36\xbb\xb2\x91\xc8\x53\x6a\xdc\xda\x07\x9d\x7e\x04\x5e\xde\x29\xbd\xc5\xb1\x5b\x14\x3f\x95\x59\x37\x1b\xd1\x66\xd9\xd0\x63\x32\x6f\x53\xfc\x10\x42\x8e\x65\x86\x95\x16\xc1\xc7\x2b\x90\xbc\x8f\x51\xec\x7d\x41\x56\x52\xa5\x76\xac\xdf\xea\x71\x9e\xdb\x71\x9e\xd7\x9c\x93\x73\xcf\x42\x72\xff\xf0\x21\x30\x7c\x1f\x42\xb5\x0a\x12\xda\x46\x38\xbc\x81\x72\x19\x85\xf5\x81\x25\xd1\x35\xb9\xcc\x43\x57\xe4\x0d\x53\xeb\x1a\xf2\xed\xc7\x57\x79\x98\xe3\x6b\xb4\x69\x30\x85\xb3\x34\x28\xec\x8d\x1d\xba\x29\xb4\x17\x47\xae\xe2\xeb\x1c\x11\xde\x9d\x97\x55\xfe\x94\xa6\x85\x51\x6f\x1d\x0d\x42\x2f\x1d\x88\xf3\xa9\xc4\x85\xa6\x12\x3e\x02\xa1\xe1\x18\x17\x08\x45\x61\x41\x8e\x40\xc0\x38\x46\xd8\x8c\x5c\x11\x04\x61\x6b\x76\x19\x1a\xa8\x00\xc5\x57\x8e\xd0\x4d\x01\x14\xcd\xa5\xe0\xef\x2b\x39\x71\x0f\x46\x1c\x8f\x71\x8e\xe2\xb1\xd4\x88\x7d\xc5\x5f\xd1\xc6\x23\xf2\xdd\xde\xe1\xfd\x78\xde\x10\x22\x1a\xeb\xae\x39\x99\xeb\x85\x55\x1e\x45\x14\x43\xce\x51\x5c\x10\x79\x7e\x08\xe7\x89\x38\x3c\x5e\xcf\x65\x34\xb7\xa3\x1d\x50\x6a\xec\x18\xe5\xc9\x70\x17\xdd\x19\xee\xee\x2c\xf5\xbd\x66\x07\x0a\xda\x31\x4e\x90\x78\x27\xb9\x58\xed\x54\xb3\x1d\xcd\xa7\x3b\x1f\x5f\xee\x5c\xd2\xe5\xce\x72\xce\xd3\x32\x2b\x39\xeb\x0e\x87\xd5\x70\x58\x1d\x31\xb6\x43\x77\x1e\x9d\xaa\xf0\xf9\x26\x3f\xe9\x76\xbb\x8f\x6d\x7d\x3b\x45\x99\x17\x7c\xb1\x53\x56\x3b\xab\x82\xef\xac\x16\x9c\xef\xac\x66\x3b\xf3\xc5\xec\x5b\xc9\xf8\x0e\xdd\x99\xcc\xa8\x58\x60\x77\xca\x8a\x95\x29\x5d\xcd\x16\x3b\xb3\xc5\xce\x7c\x42\x53\x5e\xcc\x26\x8c\x2f\x44\x6e\xa5\xc5\xee\x0e\x77\xef\x7c\x4d\x04\x95\x37\xa7\x1d\x42\x86\xd5\x68\x04\xf0\x06\xe5\x48\xf4\xff\xa8\x0c\x0b\x41\x5d\x35\xcd\xd5\x56\x3a\x77\xb6\xd2\x83\x48\xac\x68\x3f\x45\x71\xf0\xeb\x23\x9f\xcb\x70\x8e\xc7\xe2\x08\x79\x9d\x87\x73\xfc\x04\xf9\xd6\x78\x7d\x28\x4f\x64\xbd\x14\xab\xc8\xf5\x9c\xe3\x8b\x84\xcc\x7d\x6b\x22\x35\xab\x3c\xf8\x81\x20\xd8\xa2\xf7\xbb\xdc\xaa\x2b\x34\xe6\xa1\x17\xc9\xb6\xa5\xfb\x22\x69\x55\xe4\x19\xc5\xdc\x7a\xdd\xa1\x23\xe0\xd3\x8b\x04\xa1\xfa\x04\xbf\x8d\x12\xdf\x12\xf2\x9b\x4f\x8a\x6f\x89\x8d\xf8\x7d\x0b\x5b\x6e\x3e\x93\x77\xa3\xf0\xb3\x76\x2c\xf8\x0c\x92\xa3\xcf\xa9\xd5\xcd\xcb\x83\xb6\x3e\x57\xbb\x1b\xbc\x38\x93\xab\xd3\xa8\x3d\x64\xbb\xe7\xed\x65\xe1\x62\x4f\x00\x72\xc0\xb2\x88\xa8\xe3\xca\xa9\x14\x20\xf4\x91\xb8\xb9\xed\x3f\xa2\x41\x10\x4e\x46\x84\x22\xc7\xa0\x9e\x3e\x9a\x9a\x77\xd3\x11\xa1\xb8\x1a\x11\xd7\xc2\xfe\x49\x0e\x96\xf2\x8f\x2f\xcb\x20\x08\x2f\x4b\x42\x9d\x77\xe2\xa6\x70\xe3\x8a\xe7\x3f\xc7\xe8\x33\xf9\x13\xfa\x6b\x95\x6b\x8d\x4c\x41\xd0\xf9\x28\x0e\x68\xcd\xbc\x7f\x3a\x97\xa3\xf7\x23\x37\xb8\x2e\xa6\xf8\x23\x6a\x78\x0b\xf8\x1e\x05\x8e\xab\x4f\x98\x08\xb2\x53\x84\x62\x36\xf2\x9c\x1a\x8d\xf7\xb0\xe7\x0d\x00\xd5\x7e\x26\x54\xef\x8e\x09\xf9\xec\x5e\x33\xec\x89\x55\xb3\xf3\x67\xd7\xfc\xbb\x77\xf7\x21\x12\xc3\xba\x2c\xc3\x04\x7f\x16\xed\x54\xbb\xc2\xc7\xf5\x5a\x9c\x8f\x3f\xb7\xe9\x12\x5c\x70\xfa\x1e\x66\x3a\x93\xab\xe8\x90\x87\x22\xd6\x80\x21\x20\xad\x9a\x8d\x98\x3f\x96\x46\x0c\x1c\xc5\x99\x7a\x04\xa0\x72\x6b\x59\xd8\xda\x10\x92\x6e\x5c\xab\x09\xa3\x09\xa8\x2c\xd0\x07\xa9\x01\x7d\x40\x8f\x9d\x89\xe5\x9e\xc5\xe0\x2e\xe0\x9e\xcd\x3e\xbb\xbf\x8c\x8d\xe6\x67\x1f\x9c\xc3\x58\xb5\x78\xa9\xee\x4f\x17\x29\xa0\x56\xa4\xe7\x69\xe2\x16\x8c\x70\xff\x91\x3b\x52\xa6\x9e\x61\xe5\x7e\x33\xd8\x5a\x4f\x54\xeb\x4a\xad\x2a\xa4\x90\x12\x13\xf2\xbd\x0c\x3f\x7b\x61\x14\x1c\x28\x20\x07\x27\xa4\x77\xf7\x01\x4e\xfc\x50\x49\x6e\xf9\x0d\x97\x19\x4c\xeb\x07\x5f\xb4\x11\xbc\xe9\x84\xc4\x6a\x0e\xdc\x67\x42\xfd\x55\xe8\x33\x8a\x1d\x28\x9c\xd1\x08\xc5\xad\x77\xe1\x97\x9e\x64\xa2\x16\x88\x82\xb6\x43\x7e\x98\xe9\xf4\x98\x0e\x12\x77\xe9\x79\xe5\x16\x26\xae\x26\x69\x1e\x1e\x1e\xe2\xd3\x51\xcd\x60\xc6\x6f\x8b\x6b\xf9\x6a\xae\x37\x3b\x20\xd8\xf0\x7a\xb4\x18\xa1\x9f\x95\x8a\xe8\x7b\xab\x7b\xd9\x05\xbf\xe2\xf6\x9b\xae\x73\x90\xf4\xa3\x6a\xfc\xe2\x75\x59\x85\x78\x30\x97\xbe\xba\x41\xe2\x83\x07\xa8\xa1\xa9\x50\x65\x6e\x53\x2f\xb5\x69\x52\x0e\xff\x1f\xf6\xfe\x7f\xbb\x6d\x1c\x59\x14\x85\x5f\x05\xf6\x99\x2d\x93\x63\x58\x96\x93\xee\x9e\x6e\x29\x8c\xb7\x13\x3b\xd3\x99\x49\xe2\x74\x9c\x74\x4f\xc6\xf2\xe7\xa6\x48\x48\xa2\x4d\x91\x0a\x49\x59\x56\xdb\x5a\xeb\xfc\xf5\x3d\xc0\x5d\xe7\x09\xf7\x93\xdc\x85\x2a\xfc\x26\x29\x3b\xdd\x33\xfb\xdc\x75\xcf\xed\x99\x15\x8b\x40\x01\x28\x14\x80\x42\xa1\x50\x55\xe0\xa9\xcd\xaa\xd8\x9e\xb8\x34\x78\x7d\xe5\x45\xfe\xa0\x7e\xff\x17\xb0\x41\xfc\xac\x49\xc9\x7b\x28\x60\xad\xc4\x26\xc0\xb6\x3b\xc1\xa0\xd7\x87\x9a\xeb\xb5\xe8\x19\x6f\x57\x34\xcc\x62\x88\xb9\xf1\xac\xa6\x2f\x56\x5c\xc0\xd0\xe9\xf6\x0c\x48\x43\x79\xa6\x19\x86\x4e\xe3\xb0\x42\x25\xe6\xfd\x23\xf8\xa8\xcc\x51\xfc\xc1\xc1\x33\xc3\x85\xe7\x50\x1e\x85\x4d\xae\xe0\x45\x2d\x6c\x21\xa2\x2c\x88\x2c\x16\xd4\x67\x41\xd4\x77\x12\x8d\xc5\xa9\xde\xd1\x00\x25\xd0\xe4\xaa\xb6\x29\x1d\xc7\xc1\x38\x16\xaa\xd4\xdb\x18\x6d\x3e\x56\x31\x48\xd3\x18\x99\x0d\x8c\x7c\x93\x3c\x83\x08\x1d\xc3\x6d\x78\x1c\x00\x5d\x17\xee\x4a\x9e\xd4\x9f\x74\x6d\x18\xca\xb2\xd8\x4c\x3c\xc9\xe2\x35\x5e\xa7\x87\xfd\xbb\x69\xe0\x4d\x83\x89\x13\x28\xad\xd3\x99\x2a\xb3\xdc\x84\x2d\xef\xef\x97\x49\x16\xe7\x4b\x19\xae\x11\xfc\xec\x65\x6d\x1c\xd6\xfc\x46\x8c\xaf\x31\x26\xd4\x75\xb7\x08\xb3\x09\x7b\x99\x2f\xb2\xca\xbf\x9b\x06\xd7\xdd\x30\x8b\xa6\x79\x01\xf2\xa0\x88\xe8\x28\x92\x4e\xc7\xe3\x92\x55\x74\x98\xcd\x82\x6b\xf4\xb8\x05\xa0\x6b\xf9\x85\xf9\xa0\xe6\xd2\xde\x0a\x74\xa6\x7e\x0a\xa9\x6a\x39\xe2\xed\x64\xa6\x8b\x19\x6f\x67\x1e\xf4\xe8\x6d\xb0\x77\x40\x7f\xe3\xff\x44\x61\xd0\xa3\xc7\x41\x8f\x56\xc1\x84\xae\x04\xb4\x72\x69\x91\x9b\xf1\x11\xff\x80\x68\xc3\x18\x51\x2c\xed\x74\x9e\x6e\x05\x41\xa5\x9a\xbc\xbf\xf7\x6e\x83\xf9\x6e\xea\x0f\x38\xd4\x0c\xa1\xae\x1b\xa0\x7e\x0b\xe6\xbb\xd7\xfe\x80\x1f\xb0\x75\x7a\xa7\xe3\xcd\x77\xc5\x37\x58\x9a\x0a\x9b\x74\xd3\xae\xc0\x3b\x0a\x2a\x2b\xba\x2d\x6a\x98\x56\x41\x35\xa8\x82\xa3\xb5\xe1\x84\x53\xf1\x93\xa6\xb0\xca\x1c\x0d\x56\x78\x48\xdb\xdd\x8d\xf8\x8c\x4f\x3b\x1d\x8e\xa8\x0f\xc9\x33\x9e\x7c\x1c\x00\xa2\x1c\x31\x73\xab\x82\xe6\xf8\xec\x3e\xc3\x4d\x45\xb6\x57\x05\x2b\xde\xa6\xe1\x19\xb2\xe6\xcd\x4f\x83\x3d\x2e\xda\xdc\xde\xdf\xc3\xdf\xdf\x44\xec\x24\x9c\x85\xb7\x30\xed\x7e\x13\xbe\x19\x38\x24\xeb\x29\xa7\xa5\x00\xe8\x01\x40\x4f\x01\x88\x27\xb4\x4e\xe2\xe0\x2e\x8c\xaa\xe4\x46\x06\xca\x3d\x66\x15\x3f\xa6\x8a\x77\x4a\x61\x2e\xb0\x98\xe7\xf5\x27\x54\xcd\xe9\x0f\x7c\x9a\xf5\xa7\xeb\xc1\x18\xdc\x28\x3f\x73\x8e\x86\x2a\xec\x8f\x57\xca\x95\x77\x39\x32\x0d\x5b\x3f\xbb\x7b\xc4\xd3\x9e\xef\x0f\x4e\x12\xef\x33\x5d\x8e\xfc\xc1\xe7\xe0\xb3\xb1\xd0\xed\x5d\xf4\xb3\x6f\xb6\xc0\x47\x61\x12\x84\xa0\xa1\x92\x00\x42\x64\xfb\x12\x7c\x36\x62\xcb\x7c\x01\x3f\xcb\x0f\x23\xef\xb3\x61\x06\x8d\x2f\x73\x24\x63\xef\x4b\xe7\xe0\xc9\xf7\x58\xec\x45\xf0\xb9\xf1\xa5\xac\x17\x98\xbd\x0c\x5e\x40\xb0\x0f\x91\xba\x6c\x3f\x41\x1d\x2e\x31\xc8\x47\x7f\x69\x31\x19\x7f\x2d\x7d\x0f\xbe\x74\x0e\x7a\x4f\xbf\x57\x8f\x09\xbc\x4f\x3c\xde\x37\x4b\xb7\x61\x99\x77\x7d\xd7\x02\x72\x96\x78\x06\xca\xf4\xb3\xa3\x0b\x7d\xf2\x4d\xdf\x2e\x71\xd0\x7b\xf2\xad\x03\xf2\xbd\x0d\x32\xcc\x10\x68\x63\xcd\xdf\xf4\x37\x66\x7f\xdf\x4f\x83\xcf\xf4\x6d\xe2\x4d\x68\x4a\xa7\x3e\x7d\x97\x78\xa9\xbf\x76\x46\xf6\xdf\x30\x39\x96\xc1\x49\x3c\x78\x81\xec\xfb\x4b\xb0\xec\x1a\x93\x76\x30\x0d\x96\x5d\x7b\xda\xf2\x01\x7e\xb1\x15\x04\x5f\x3a\x1d\xfe\x7f\x9b\x17\x77\x3a\xcb\xd8\x73\xd2\xba\xb1\xf8\x21\x56\x08\xfd\xe2\xab\xf7\xc5\xa6\x9d\xce\x2a\xf6\xbe\x70\x91\xfc\x45\x30\xed\xc2\x52\xa3\xcb\x60\xda\x65\x59\xac\x15\x38\x7c\xca\x2c\x83\x17\x3a\xbc\xb5\xb5\x9f\x7c\x39\xf4\xbe\x38\x7b\x48\xf0\x82\x7e\xb1\x76\x10\x34\x26\x9d\x25\x99\xb7\xa4\x5f\xd0\x2a\x55\xf2\x2f\xbf\xef\x2d\x03\xef\x45\xe0\x60\x7d\x7f\x1f\xeb\xfd\xe5\x45\xd3\xfe\x42\x97\xce\xce\x32\xcc\xbc\x65\xb0\x74\xb6\x17\x9a\x06\x5f\xcc\x78\xee\xa2\x59\x3a\xd1\x28\xc9\x7e\xa7\x3e\x9d\x6a\x7d\x23\xd0\xe0\x70\xd2\x37\xc0\x38\x51\x52\x9f\x6e\x2d\xbb\xec\xb6\x62\x59\xdc\xe9\x4c\x9e\x4f\xf9\xc9\x38\x98\xd2\x69\x30\xa1\x93\x20\xe5\xed\xdd\xc4\xde\x17\x3a\xf1\xe9\x0c\x7f\x4d\x7d\x9a\x76\x3a\xb3\x4e\xc7\xe3\x47\xba\xa5\xb1\xc7\xdd\xdf\x2f\x8d\x1d\x8e\xef\x19\xc0\xde\x75\x32\xee\x62\x90\x91\xc3\x4f\x9e\xa5\x76\x3b\xf0\x26\x94\x05\x8c\x5d\x0f\xd2\x11\x1e\x07\xf6\x85\x08\x85\x02\xf3\xc7\xf3\xe9\x8b\x6e\xc9\x2a\x18\x28\x0f\x5b\xa4\xb2\x7e\x9f\x2e\x85\x8b\xde\x51\x9a\x02\x78\xe9\xf9\x74\xf2\x7c\x7a\xe8\x2d\xbb\x61\x1c\x63\x0d\x2f\x38\x18\x92\xc0\x43\x0c\xa8\x6a\xd0\xef\x7b\x50\xfd\x49\x43\x1e\xb5\xea\x80\xff\x06\x2f\x82\xf3\x0b\xf0\x2b\x58\x06\x5f\x06\x7c\xf8\xf4\xae\x31\xf0\xf9\x3e\xb1\x34\xb6\xc0\x17\xf8\x66\x8d\xb2\x50\x5f\xd2\x94\x8d\xab\xfe\xb2\x5b\x46\x45\x9e\xa6\x6f\xd8\x98\x8b\x04\x55\x3e\x57\x49\x1f\xf3\xf9\xda\x6f\x09\xa8\xf0\x05\x89\xc6\x17\x91\x8c\xd9\xc1\x11\xf9\x12\xf4\x06\x5f\x9e\xbd\x90\x3e\x5f\x5f\x76\x77\xfd\x65\xf0\xe2\xfc\xcb\x05\xef\x34\x36\x6c\xb4\x17\x2c\xbb\x1c\x87\x5a\xde\xc7\x7c\x1e\x2c\xbb\x55\x3e\x5f\xf3\x3d\x66\xeb\x38\xe6\x5b\xd5\xb1\x8a\xa0\x20\xf9\x6b\xe4\x6e\x0d\x5f\xf4\x5b\xb5\x72\x5b\x58\x8c\xac\x7d\x61\x31\xea\x3c\xfd\xae\xd3\xf9\x5b\xe2\x7d\xa1\x0e\x33\x4b\xc6\xde\x62\x84\x1b\xc3\x0b\x15\xa3\x07\x95\x50\x9f\x9d\x80\x4f\x37\xe2\x62\xf0\x1f\x51\xf0\xb9\xee\x72\xfb\xd9\x72\xb9\x7d\x11\xfc\x23\x72\xee\xba\x79\xd2\xba\x99\xac\x37\xa3\xc3\x9b\x91\xf7\xc2\xef\xdf\xe8\xa8\x50\x2f\xd6\xff\x0d\x7c\xf4\xb3\x14\x0a\x7e\x1e\xc3\x15\xf3\x18\x65\x05\x93\xd8\x7c\xe3\xbc\xf2\x95\xb1\x77\x48\xcb\xab\x60\xa4\x8d\x45\x3f\x07\xcc\x20\xfe\xc8\x6a\x8e\x7e\xae\x45\xea\xfc\x1c\xb4\x18\x48\xf6\x84\x2e\x49\x58\x97\xd7\x0c\xf7\xb8\x98\x75\x73\x75\xb8\xb8\xda\xdd\xed\x7b\xd2\xaa\x38\xf4\xfb\xfc\x67\xcb\x64\xfd\x74\xd5\xe9\x7c\xba\x32\x1f\x15\xa4\x31\xde\x4f\xf3\x4e\x7d\x4e\x04\xe5\xd0\xba\x3d\x0c\xfe\x99\x68\x13\x77\x71\xe0\x65\xb6\x59\x37\x50\x6a\x32\xf1\x5a\xce\xf4\x1f\x5d\xe5\x9b\x9c\x8d\xa1\x35\x19\x31\x94\x6b\xe7\xc9\xb7\xdf\xf9\x9d\xce\x5f\x6b\xbb\x2b\x2a\x80\x3a\xdf\x1e\x3c\xf1\xef\xef\xbf\x5c\xdd\xdf\x7b\x9c\xf6\x3d\x1a\x4f\xbc\x1f\xfe\x62\xc6\x5d\x81\x93\xba\x89\x88\x5f\x1b\x6e\xf3\x8c\x7f\x2c\x6e\xdf\x7f\xe0\xed\x97\xea\xee\xfd\x87\xbf\x3c\x2b\xaf\x0e\x7f\xf8\x4b\xbf\xbc\x1a\x80\x0d\xbf\x72\x6b\x98\x78\x21\xfd\xf9\xca\xbc\x1d\xff\xd9\xb8\xc0\x0f\x40\x31\x80\xb0\x5b\x07\x03\xac\xac\xb8\x1a\x08\x7f\x80\x47\x68\x0c\x9e\x1e\xf8\x32\xe2\xa0\x3c\xaa\xa1\x77\x9d\xb6\x3e\x30\x4f\x78\x99\x72\xb8\x87\x2b\x58\xa1\x6a\x50\xe1\x04\xcd\x18\x11\x9c\x76\xfe\x57\x45\xa2\xfa\x31\xf1\xbe\xa5\x91\x4f\x5f\xe3\x5f\xb9\xd4\xac\x67\x85\xc2\xb6\x95\x16\x52\x7c\xf4\xc3\xa0\xfc\x20\x74\x67\xfe\x20\x0c\xa2\xf5\x2f\xc1\xc8\x9c\x3f\x5b\x3d\x73\x80\x7e\xb9\xd2\x7e\x0b\x47\x89\x17\xd1\x91\x3f\x18\x05\xc2\x07\x49\xaf\x06\x7f\x70\x8b\x9a\x66\x69\x40\x6f\x66\x69\x6d\x17\x98\x61\x68\x3b\x84\x44\x59\xe7\x6b\xf3\x6f\x68\x10\x6a\x52\xab\x59\x2a\x70\xea\x36\x03\xa2\xa4\x20\xe7\x2f\x60\x8e\x41\x47\xca\x72\x4c\xfa\xea\x69\x10\x79\xcb\x6d\x5d\x4f\xb4\x85\xe9\xd9\xe8\xb8\x74\x7f\xdf\xf6\x84\xe3\x23\x2f\x20\x62\xdf\xf7\xef\x42\x4e\x54\x08\xb0\x15\x06\x7f\x4a\x00\x7d\x87\xa8\x60\x60\x12\x71\xa2\x46\x4d\x44\x8d\x38\x51\xb5\x0d\xa1\x61\x76\x60\x8e\xe2\xe9\x95\x1b\xcb\xc2\xbe\x1f\x14\x16\x74\xdd\x98\xa5\xac\x62\xde\xc8\x1f\x7c\x44\xbf\xeb\x4f\xf0\xe2\x1a\x9a\xa6\xcb\x78\xd9\x9d\x4e\xcd\x3e\x12\x6c\xb8\x3e\x26\xcf\xe6\x57\x87\x60\x5c\xf2\xc9\xef\xe7\x9c\x3f\xf4\x8f\xd0\x94\x0f\xd4\xf1\x75\x43\x40\xbc\x7f\x18\x3d\x83\x67\x05\x6b\x76\x80\x60\x26\xe4\x1b\xf3\xe5\x67\x2b\x5c\x64\x83\x7b\x17\xd8\xf3\xeb\x3e\x8c\x82\x9e\xe2\xe0\xc2\xb6\x77\x14\xfc\x88\xaf\xb0\x67\xf8\xbe\xa3\x76\xf7\x70\x26\x29\x6f\xe3\xc3\xd5\x60\x98\x7d\xb8\x72\x1e\xc8\xd3\x3e\xf1\xac\x51\x6f\xa8\x1d\x46\x98\xfb\x92\x1b\x98\x8f\x59\xf7\x17\xf8\x84\xc4\xdf\x95\x8e\xb0\x80\xe0\x07\x32\x74\x44\xfc\x2c\xf2\xef\x0a\x08\x94\xd1\xe0\xfe\xff\xb4\x3f\x05\xff\xc9\x7f\x38\x96\x2a\xdf\xf6\xc7\xf0\xe8\x19\x84\x5b\x84\x9b\xec\x6f\x3a\x1d\x61\xa5\xc3\xba\x18\xc4\xb7\x35\x4e\x7d\x73\x3c\x5c\x7c\x2d\xd9\x8e\xc8\x66\x44\x28\xff\xeb\xb8\x16\xa4\x2a\x9e\x7a\x56\x78\x7d\xc7\x35\xda\xb1\x99\xa9\x45\x18\x10\x2e\x7f\xf2\x75\xb3\xee\xa5\x78\x3c\x6e\xf0\xda\xbb\x9a\x50\xfe\x8d\x04\x03\x0d\x8a\x3f\x70\x12\xec\x57\x5b\x0e\x9e\xf6\xcd\xd7\x8d\x2d\xe3\x06\x7c\x4e\x0d\xfd\x67\x9b\x94\xdb\x10\x33\x48\x1a\x98\x3e\xd7\x0a\xe1\x2b\xe9\xfa\xe8\x06\x74\xe6\xb3\x4e\xbd\xfe\x3c\xb0\x63\xfc\x8e\x0e\xd5\x6b\x86\xe8\x93\x59\x2f\x6b\x19\x17\xc5\xcd\xa3\xf1\x1c\xe5\x9f\xc6\x17\xde\x61\xd6\x48\x24\xd5\x93\xf4\x03\x27\x28\xf2\x9a\xd5\x62\xc7\x67\xda\x2d\x85\xb9\xcf\xe7\x33\xfd\xb4\xa1\xd3\x5f\xbc\xf8\xb7\xa2\xcd\x4b\x2b\x3b\x45\x84\x35\x4c\x60\xa1\xef\xc1\xc9\x5c\x9b\x75\xbd\xe6\x47\x0e\x63\x19\x49\xc2\xba\x2f\xb1\x03\x8f\xd1\x51\x3d\xc1\xbc\x31\xf1\x21\x1e\x85\xb5\x0c\x59\xf0\x72\xec\x8d\xe8\xdf\x74\x2f\xbe\x4c\x30\xf4\x1a\x0b\xf2\x29\xde\x4c\x0c\xb3\x11\x8d\x69\x48\x59\x8d\x7c\x07\xb8\x65\xd4\xed\x89\x2c\xb7\xf5\xe6\xcd\x41\x92\x56\xda\xaa\x05\x41\xc0\xba\x7f\xfa\x13\xe6\xfa\x77\x23\xb4\x13\x19\x34\xbd\x36\xde\x12\x39\xe3\x0d\xdf\x47\x84\x6e\x79\xab\x37\x80\x95\x88\xa4\x1e\x23\xa5\xeb\x35\x71\x04\x71\x61\x1a\x26\x73\x22\xe5\x50\xfc\xc5\x88\x9d\x8b\x89\x27\xbc\xb7\x26\x41\xdc\xb4\x13\x22\x3d\x9b\xfb\x3a\xe9\x74\x5e\x71\xb2\xc6\x74\xc2\xb7\x30\x19\xa5\xbd\x08\xfe\x36\xb1\xde\xb7\x62\x7c\xf5\x5a\x51\x2a\x5f\x25\x23\x56\x04\xa3\xc1\x3b\x2c\x8e\xb6\xe0\xc1\x24\xc1\x91\xe1\x49\x5b\x3d\x3a\x36\x62\xd6\x72\xaa\xf5\xe8\x07\x99\x0f\x61\x5d\x47\x2a\x74\xbf\xba\x16\xc3\x75\xf5\x5d\x3f\xec\xdf\xf1\x05\x60\x04\xe1\x6c\x9b\x60\xc2\xc6\xea\xeb\xa7\x58\x3e\xf2\x18\x5e\x02\x03\x6d\x2f\x79\x77\x17\xa5\x90\xd5\xa0\xbf\xe5\x22\xad\x06\x2c\xd0\xbf\x71\xaa\x07\x6c\x30\x0e\xb0\x47\xff\xb8\xe2\x75\x84\x41\x32\xf1\x18\xa7\xa0\x58\x22\x63\x25\x37\x8e\x82\x38\xd1\x7d\xd6\x26\xf3\xda\x36\x63\x14\x8c\x37\x43\x70\x90\x7f\x4e\x37\x82\x7c\xd3\x1f\x05\xa1\x51\x0b\x47\x07\x0d\x3d\x42\x1f\x82\xee\x28\x8d\xbb\x23\x89\xf6\xbe\xa3\x42\xcf\xe9\x0f\xd6\xf6\x20\xa8\x98\xd4\x72\x85\x53\x77\xaf\xa4\xce\x08\x81\xb3\x2b\xeb\x27\x13\x2f\xa6\xcc\xa7\x31\xb2\xb6\x18\xd7\xa7\x15\xd7\xe6\x77\xd7\x39\xb6\xea\x14\xe1\x57\xe4\x26\x1b\x37\x07\xab\xe4\x52\x92\x32\x73\x74\x5f\xd6\x7f\xf2\xfd\x13\x1f\x4b\x3a\xec\xc7\x65\xbe\x7a\x5d\x1e\xb2\xae\xe9\xb5\x3f\xb8\x11\x52\xf5\x6f\xb8\x14\x60\x10\xa2\x86\xb7\x3f\x64\xa9\x81\x08\x66\xc4\x7c\x2e\x15\x50\x73\x2f\x92\x42\x05\x33\xe3\x99\xc8\x08\x26\xfe\xfb\x69\xf0\xb7\xd8\x6b\xdd\xb0\xcd\xdb\x08\x7a\x3a\x85\x48\x61\x3f\x4d\x39\xc7\x81\x08\x68\x68\xd5\xfb\x99\x23\x09\x28\x42\x2c\x26\x19\xf4\x3e\x1a\x44\x03\xdf\x38\x09\x05\xe6\xa9\x68\xef\xe9\xfd\x41\xef\xc9\x37\xd6\x23\xbb\xb0\xaa\x3f\x88\xc1\x88\x7c\x8a\x02\x8e\x5c\xcf\xce\x54\x52\x21\xd7\x41\xe8\x51\x2f\x68\x74\x3a\x9f\xe0\xbb\x7d\x32\x8c\xdb\x63\x18\x49\xd3\xca\x40\xd8\x1b\x17\x2c\xa3\x7f\x8d\x61\x96\x1c\x8a\xe7\x7c\x33\x15\x50\x00\x32\xc6\xb5\xd7\x9b\x0e\xbe\xf3\x29\x13\xf6\xee\xad\x62\xd8\xa1\xf7\x68\x01\x6c\x24\x9f\xe3\x40\xc2\x4c\x2c\x1e\xe7\xd3\x91\x1d\x9f\x96\xb8\x74\xc8\x1a\x42\xd1\x6b\x21\xc6\x8e\x20\xff\x80\xec\x46\xdd\x19\xad\x9f\x2d\x91\x43\xfe\x0f\x6b\x26\xf4\x8d\xb1\x94\x4c\x59\xb2\x9f\x3f\xb8\x66\xff\x39\xad\xf1\x01\xf5\x84\x0e\xb6\xea\x54\xe7\xa2\xf0\xbd\x09\xcd\x37\x7d\x1b\x5e\x8f\x7f\x0d\xf7\x27\x9b\xda\xd9\x50\xae\xc7\xf7\x9f\xb8\x26\xd8\xd6\x0e\x0b\x93\x5a\x5c\xa2\x71\xc0\x84\x5c\x8c\x17\xbf\x8d\xb2\xf1\xd4\x95\x8d\x9d\x84\xc0\x54\x1e\x82\xc1\xea\x34\x98\x88\xf8\x12\xe3\xe0\x4f\xcc\x9b\xd2\xb1\x7f\xd8\xeb\xb7\x45\xe5\xe8\x5e\x46\x61\x1a\x2d\xd2\xb0\x62\xf8\xd4\x5f\xfc\x22\xa9\xca\xc3\x96\x74\xa8\xcd\xf0\x64\xf1\xef\x7b\xe0\xff\x35\x06\x49\x75\xa2\xc8\x04\x82\x90\xfc\xe8\x74\xb6\xf4\x89\xe8\xce\xe4\x61\xca\xdc\x4e\xe9\x06\xa6\x2a\x36\x92\xbe\x09\xf1\xa6\x32\x14\x8d\x3e\xd7\x4d\x07\xca\x9e\xdb\x8a\x66\x6b\x10\x63\x98\x5d\xfb\x77\x93\x60\x2a\x46\x4b\x6a\x1e\xd2\xe0\xda\x7a\xe8\x45\xd6\x98\xa2\xfe\x21\x55\xef\x5a\xc3\x21\x01\xa4\xf2\xb4\x9b\x8f\x4a\x56\xdc\x20\x0d\x3a\x63\xdf\xbf\x3b\x80\x9b\x08\x0c\x05\x97\x1a\xd1\x52\x68\x8a\x36\xbf\xf4\x76\x82\x4f\xbb\x0f\xa6\xae\x57\x7d\x04\x3d\x72\xdf\x13\xf3\x07\x69\x30\xad\xbb\xe5\xa7\x9d\x8e\x6b\x39\x0e\x15\xb8\x89\xbc\x82\xf9\x44\x51\x8a\x13\xf7\xba\xa9\x9c\x9b\x18\x28\x5d\x43\x1a\xa4\xe8\x07\x80\x83\x31\x09\x0e\x7a\xb2\x8f\x87\x53\x94\x65\x54\xc8\x7d\x60\x99\x82\xb0\xf2\xaf\x35\x0d\x55\xf0\xa0\xa9\x56\xfb\x4c\x82\xa9\xec\x95\x88\x4d\x34\x01\x77\xab\x3b\xf3\xb1\xf7\x35\x9f\xbd\x75\x63\xa8\xa9\x7f\xa7\x26\x81\xac\x7b\xc0\x2b\xc4\x42\x13\x95\xb8\x9e\x06\xc3\x6c\xb2\xc6\x35\xcc\xcc\x65\xdb\xba\xe3\xa8\x17\x38\xe4\xe9\x94\x8e\x5d\xa6\x15\x07\x63\x5d\x95\x38\x5c\x50\x16\x94\x5c\x92\x1b\x6b\x53\x77\x73\x96\xc0\x33\x41\x1e\xf3\x6d\xd9\xf2\x80\xb6\xf2\xce\x6f\x1a\xd0\x00\x51\xd1\xc6\xc5\x17\xc9\x02\xc4\xa7\xa1\x7c\xce\x7c\x8c\xd2\x9b\xd4\x3a\x4a\x0d\x6b\x22\xd8\x99\x88\x3c\x6f\xf7\x4b\x17\xf8\xcb\x1f\x65\xdd\x7f\xe4\x4c\x47\xc5\x49\x89\xf2\xe3\xcf\xa1\x17\x06\x5b\x3d\x0a\x47\x1f\xbf\x1f\x06\x5b\x07\x8a\xe4\x6f\x50\x6c\x62\x3e\x15\x67\x09\x38\x1a\xc8\x93\x04\x9e\xf1\xb6\x7a\x28\xf5\x3a\xcf\xab\xa8\xc3\x73\xc3\x83\x36\xea\x39\x1b\x60\xc4\x9f\x44\x20\x91\x37\x89\x78\x0e\x5b\xea\xab\x3e\x5f\x89\x68\x07\xc3\xed\x45\x16\xb3\x71\x92\xb1\xd8\xe4\xa5\x97\x97\x1f\x4e\x8e\x5e\x7e\xbc\x3c\x3e\xf9\xf9\xe3\xe9\xe9\x9b\xb3\xcb\xbf\xbe\x39\x7d\x71\xf4\xe6\xf2\xc7\xd3\xd3\xbf\x5f\x5e\xda\x6a\xec\x51\xb0\x19\x1a\xb5\x3d\x49\x79\x9c\x94\x7c\x6a\xc5\xf7\xf7\x5b\xa3\x6e\xb9\x98\xcf\xf3\xa2\x2a\xe1\x40\x25\xeb\xeb\x0d\xb4\xa6\x7a\xd4\x4d\x32\x7e\x8c\xf5\x42\x7f\xf0\xc9\x54\x74\xc9\xc7\x4c\xf2\xec\x65\x3e\x9b\x25\x15\xd4\xf0\x21\xcf\x2b\x50\x51\x8a\x57\x54\xbf\xfb\x06\xcd\x42\xa5\x62\xdc\x56\x45\x68\xd7\xc1\xf5\x7a\xf0\x26\x79\xa8\x72\xf9\xf2\x49\x44\x43\xab\xa8\x56\x7a\xaf\x9b\xf4\xd3\xff\x14\x9a\x4d\x1a\xfb\x77\x10\x3d\x89\xcf\x8b\x10\x03\x29\x5d\xb3\x55\x10\xe1\x4f\xf9\x8c\x11\x06\x58\x02\x19\x05\x7e\x0a\x16\x81\x30\xea\x48\x8a\x15\xf1\x29\x0b\xbf\xcc\x39\x0c\x23\x0c\xa9\x49\x16\xb3\xdb\xa0\x37\x10\xf5\x8c\x8d\x2c\x2b\xc8\xf9\x08\xd3\xac\x10\xea\x90\x62\x9f\xcc\x21\xc9\xf2\x4e\x31\x61\x8c\xd0\xe8\x98\xce\xd1\x8c\xf1\xb7\x16\xac\x05\x32\x86\x09\x29\x7c\x9b\x06\xa6\x90\xe0\xde\x02\x68\xaa\x38\x62\x27\xd6\xef\xea\x6a\x20\xd5\x5e\xa0\x5a\x49\x7b\x36\xd5\x03\x22\x65\x51\xb6\x34\xc7\xc9\x1c\xbe\x11\x46\x61\x0f\xc2\xee\xbc\xc8\xab\x1c\x94\x3d\x62\x98\xbd\xad\xf0\xfe\x7e\x2b\xec\x26\x25\xc6\xa4\x92\x5a\x75\x43\x21\xfc\x0f\xbd\xc0\x9a\x64\x95\x50\x69\x39\x79\x2b\x87\x07\xfd\x9e\x15\xfb\x3f\x34\x5f\x9f\xe1\x28\x48\x45\xcc\x40\x44\xcb\x9b\x28\x93\xda\x83\x03\x99\x76\xa5\xd3\xbe\x91\xfb\xc2\x13\xcb\x6a\x75\x62\x2b\xa9\xed\x1d\x1a\xd4\xe9\x5e\x14\x9c\x89\x47\xaf\xe0\x41\xd6\x6b\xb6\xa2\x21\x0c\x29\x84\x60\x37\x66\x5b\x68\x7e\x51\xbc\x91\x10\x11\xd5\x68\x64\xbe\x11\x6e\xdc\x26\x1a\x2f\x4b\x04\x21\x35\x59\x6b\xe4\xf7\xbd\xc8\x99\x9c\x66\xcc\xf7\xa0\x47\xa3\xda\xdd\x68\x54\x7f\xc5\x30\x72\x8d\x94\xfd\x41\x73\xb0\x9c\x66\x83\xe1\x5a\x84\xa0\x9a\xa9\x71\x64\xbf\x10\x38\x88\x36\xbf\x10\x38\x88\x36\xbf\x10\x38\x88\xda\x5f\x08\x84\x7b\x5f\x4b\x20\x8c\x1a\x5f\x08\x1c\x35\xbf\x10\xe8\x1e\xdf\xe8\x30\xb3\xde\x08\x1c\xb5\xbe\x11\x38\x32\xdf\x08\x1c\xe8\x87\xd6\x74\x38\xc6\x48\xb0\x98\x10\xff\x0e\x22\xe0\x32\xf8\xe0\x53\x53\x38\xbe\x4f\x13\xb9\xc4\xf8\xe6\x2e\xc3\xdb\x3e\x19\xc4\x78\x21\xd9\xb6\x46\x60\x71\xc0\x0b\xf7\x07\x3a\x3a\x66\xd3\xeb\xd7\xa1\x3f\x09\xbe\x95\x16\xa4\x4e\x10\xdb\x70\x24\xf7\xcd\x5f\x26\x32\x72\x12\x97\x7d\xb8\x94\x31\x12\x7b\xeb\x78\xd4\x9f\x04\xdf\x0f\xd8\x7d\xf0\x17\x53\xd1\x3d\x52\xc9\xd6\x3b\x08\x91\xaa\x31\xe4\xab\xe5\xe0\x09\x8d\xb8\xd4\x72\xff\xbd\x4f\xad\x55\x11\x44\x7c\x09\x55\xea\x57\xed\x79\x4c\xa1\xc7\x9a\x3a\xf5\x3d\xc5\xfa\x7c\x59\x78\x3a\x72\xea\x9d\x6e\xaa\x2d\x71\x6a\xfb\x41\xd7\x66\xd6\x91\xb4\xd4\x21\xad\x2f\x5a\x34\xc9\x26\x67\x52\x4f\xe4\x69\x35\x31\x60\x10\x73\xb2\x0d\xb3\x03\x27\x3a\x3a\xe3\xc9\x3f\xd8\x69\x13\x9e\x76\xe0\x04\x5b\xbf\x82\xc4\x6f\xec\xc4\x6b\x48\xfc\x6e\x10\x5b\xa6\xb4\x98\x97\xf2\xbc\x27\x4f\x5a\xb4\x7d\x07\x4f\x7b\x42\x0d\x10\x1e\x86\x7d\xd9\x0f\xa5\xfe\x1b\x71\x2a\x4d\x04\x91\x06\xb6\x58\x18\x4a\xd5\x67\x5c\xbf\x18\x18\x6b\x6f\x1d\x7d\x25\x3d\xd1\x3b\x0c\x50\xff\x2f\x34\xa4\x31\xdc\x3d\xd7\x0e\x2b\x3a\x2a\x9c\x36\x88\x50\x91\xf8\xa0\xf0\x77\xe2\x32\xf0\xa1\xf2\xc6\x42\xfb\xd9\x88\xe5\x77\x36\xf5\xbe\x51\xa2\xac\x9a\xf7\x87\xfa\x67\xff\xfc\x42\xb0\xf8\x91\x5f\xef\x5f\x64\xa9\xc2\xef\x2c\x45\x4b\x3f\xb4\x15\x2f\x54\x70\xee\x97\xb2\x66\x40\x3b\x99\xcd\x91\x96\x50\x69\x3f\xec\xda\x09\xeb\x46\x77\xa7\xf0\x5a\xf6\x40\xc9\x4c\x42\x4c\xb1\x8c\xd2\x45\x38\x4a\x03\x07\x29\x5a\x69\x37\x52\x53\xe0\x91\x98\x19\xa5\x5b\xdd\x23\xac\x5c\xed\x50\x81\xf8\x38\x81\x04\x2c\xa9\x4a\xf0\xd2\x40\x21\xc7\x3f\x74\x59\x19\x92\x59\x08\x7e\x75\xf7\x0a\x2b\xd9\x74\xa3\xd0\xb2\x93\xe1\x3d\xa0\x12\x8d\x9b\x69\x25\x43\xd5\xfd\x1e\x14\xb8\xed\xdd\xa0\xc5\xb0\xb6\x74\xd3\x2d\xc3\x12\x70\x8f\xae\x6c\x79\xa2\x5e\xcb\x20\x6c\x0c\xd4\x23\xc6\xbd\x27\xee\xc5\x9f\xa3\xab\x5f\x60\x2c\xa4\xdb\xe4\xa1\xaa\x69\x4b\x0c\x20\x11\x2e\xb0\xa1\x47\x78\xef\x1c\x3f\x1f\xdd\xdf\x83\xb3\xb7\xdf\xe4\x35\x32\x1a\x8c\x1e\xed\xe7\x31\x7a\xbc\x9f\x87\x15\x64\x45\xbe\x50\xf7\xbc\x6e\xd6\xa5\x71\x37\xa9\x3e\x32\x3d\x85\x6a\x34\xee\xc9\xd7\x73\x9f\x07\xd1\xbf\xc2\x3d\x66\xf4\xbc\xa9\x80\xea\x98\x43\xaf\xdd\x03\x9f\xf2\x9e\x34\xd6\xb6\x21\x18\xd3\xc8\x34\x9f\x78\xe9\xcc\xa4\xa6\xa0\x81\x3a\x8a\x64\x9d\xc0\x16\x07\x19\x5d\x6b\x26\x2c\x6d\x1d\x64\x74\x8b\x31\xda\x5a\x4c\x82\xe3\x49\xb7\x14\xbe\xd1\x83\x71\xf0\xe3\xc4\x1b\x53\x46\x27\xfe\x20\xe4\x1b\x5f\x84\x4f\xe6\x34\x5c\xfd\x0d\x46\x7d\xb8\xc7\x8e\xbc\xc8\xc7\x78\x98\x07\xf2\x89\x9f\x9a\x13\x55\x4f\x98\x6b\x4d\x83\xc8\xf0\x78\x9e\xda\x66\x12\x68\x11\x6d\x28\xb3\xd9\x6d\x35\x90\x4e\x13\xfa\x71\xca\x37\x1e\xea\xad\x7c\xff\xce\x2e\xe2\xbc\xa2\xf7\x56\x08\x97\x6f\x59\x31\x61\xf8\x74\xcb\x4b\xbb\xd2\xf5\x9a\x57\xd0\xe4\x0f\x3c\xf5\x07\x6e\x17\xe0\x59\xa6\xba\x99\xd2\xb5\x78\x17\x10\x6f\x79\xaf\xe1\x85\xa1\x57\x63\x2f\xa2\xd7\x74\x6a\x68\x42\xa3\x60\x8a\x0a\xb8\x28\x38\x1a\xeb\x70\xf2\xa2\x97\x87\xea\x57\x10\xf5\x47\x2e\x0b\x8d\x06\xa3\x60\xc9\x47\x65\xc2\xb7\xa6\x5a\xdc\xe8\x70\x3d\x88\xb5\x1d\xf5\x30\x8b\x51\x06\x8e\xcd\xe8\x20\x23\x1d\x22\x39\x06\x7b\x25\xc6\xf7\xb9\xd7\xa0\xe8\x52\xf6\x0f\x63\x3d\x09\xa3\x6b\x79\xe0\x93\xee\xcc\xc9\xd8\xdb\x92\xb1\xcc\x4d\x93\x46\x25\xf8\xd4\x5f\x0b\x94\x9b\x72\xed\xc9\x40\xe7\x5d\xdb\x1a\x80\x61\x36\x18\x5f\x0b\xcf\xe8\xda\x69\x41\x2b\xa6\xd4\xbe\xae\x63\x5d\x74\x3a\x60\x87\x56\xac\x8c\xa8\xa9\xea\xdb\x72\x9b\x66\xa2\x01\xd1\xd0\x00\x6c\x08\x75\x4c\x88\x4e\x47\x64\x98\xab\x6a\x7c\xad\x23\x6a\x63\xe3\x51\xa7\xb3\x05\xab\x52\x6e\x6c\x22\x5c\x13\x3f\x53\xab\x5d\x9c\x32\x2e\x87\x60\x14\x09\xfc\x07\xa3\x48\xfe\x05\x83\x4a\x1e\x3e\xed\xf7\xfc\x41\x6c\xc4\xff\x33\x1e\xe7\x09\xe2\xc1\x62\x02\x17\xcd\xe7\xa7\xf1\x45\x10\x6b\x37\x73\x54\x66\x8f\x3a\x9d\xbf\x45\x5e\x48\x7f\x00\x0b\x3d\xf5\x5e\x4c\xd8\x0f\x1d\xef\x31\xdc\x3f\x2f\x13\xb1\x48\x3e\xe4\x79\x15\xc4\xeb\xf1\xb5\x3e\xd9\x0b\xe3\x07\x4b\x13\x04\x7c\xa4\x5e\x52\x77\xc5\x5f\x0f\xac\x3a\x16\xa8\x27\x0a\x6a\x6f\xfd\x35\x54\x02\x11\x1a\xad\xb7\x65\x46\xd7\xd2\xf1\x14\xfe\x18\x95\x8c\xa0\xfb\x68\xb2\xba\x1e\x18\x63\x32\xb9\xd6\x0f\xcc\xa1\x52\xe2\x60\xcb\x24\x45\xa7\xf3\x83\xf3\x7d\xe0\x02\x78\xdf\x5b\x09\xf7\xf7\xc3\x6d\x02\x1c\x65\x0f\xfa\xb2\x37\xcf\x93\xac\xda\x93\x6a\x61\x02\x61\xc5\x43\xed\x21\x66\x32\xf1\xa9\x98\x55\xa3\xfb\x7b\x6f\x14\x84\x87\xee\xb0\xb8\x4e\x22\xd2\x7f\x19\xb8\x14\x4a\x8c\xa3\x60\xcb\xdb\x1a\x61\x37\x46\x06\x52\x5b\xa3\xee\x34\x2c\x8f\xaa\xaa\x48\x46\x8b\x8a\x79\xc3\xed\x38\xac\xc2\x3d\x40\xb4\xc8\xf3\x8a\x4b\xf2\x68\xf0\x33\xd2\x21\x85\x06\x72\x27\x81\x06\x06\x7e\x68\xbd\x0c\x64\x98\x40\xb1\x25\xce\xee\x1e\x1d\x1d\xde\x89\xb9\xdc\xdf\xea\xad\xfb\xc8\x60\xac\x65\x90\x5c\xeb\x93\xac\x34\x6e\x69\x7c\x45\x8c\x63\xa3\x4e\xba\x63\x7b\xf4\xdb\xcf\xbc\xa2\xce\x29\x5f\x08\xf5\x79\x14\x5d\x7b\x13\x7f\x30\x05\xbe\xe6\x85\xfe\x7a\x3d\xba\xf6\x46\x74\x42\x21\xfa\x19\x5c\xa2\xb7\x20\x13\x4c\xaf\xf1\x75\x96\xaf\x47\xe5\x7a\x13\x2a\xd7\x1a\x95\x77\x57\xe6\x63\xd4\x26\x62\x2a\xba\x19\x94\xd1\xf3\xe5\xea\xda\xb6\x5a\x7c\xfa\x2c\x2c\x26\x30\x41\x4a\xe1\x18\x61\x18\x01\xa9\xac\xf3\xa7\x17\x87\xe6\x07\x1a\x23\x60\x0b\x77\xf2\x20\xda\xff\x53\x48\xaf\xd9\x4a\xbc\x72\x2a\x36\x07\x7e\xe0\xdb\x8d\xa9\x3a\xfd\x84\xd4\x3e\xd3\x8c\xdc\x03\x4b\xb4\x5e\x0f\xb3\x65\x64\x31\x05\xeb\x7d\x0d\xe9\x43\x3e\x9d\x78\x20\x56\xa8\x00\xe3\x22\xb8\xf7\x40\x30\xda\xf5\x7a\x70\x6b\x57\x63\xbe\xd1\xe1\x01\xf4\x53\x9f\x02\xf4\x53\xdf\x5f\x0f\x56\x8f\x68\x14\xa2\xf5\xda\x46\xa3\x0d\xed\x0e\xb3\xdf\xc2\x9a\x95\xa8\xb4\x68\x6b\x7a\xe6\x47\x98\x34\x45\xf0\x76\x11\xce\x0e\xfd\xbe\x51\x64\xbd\x6f\x34\x42\xeb\xfd\x28\x08\x07\x91\xe5\x53\x13\x59\x6f\xf2\x41\x58\xae\x2f\x0b\x56\xac\xd0\x67\x2a\x2f\x8e\xd2\xd4\x13\x8d\x9e\xf3\x66\x82\xe1\xf6\xee\xdf\xce\x4e\xdf\x75\x51\xb3\x93\x8c\x57\x1e\x0c\xd6\xc8\xdf\xdd\xb9\x38\x87\x03\xb8\xc2\xe2\x62\x07\x5d\x68\x46\x41\x6f\x30\x7a\x16\x49\x17\x9a\xd1\xee\xae\x32\xa1\x3e\x1f\x5d\x80\xa4\x8f\x3b\x65\xdc\x1d\xe7\xc5\x0c\x23\x41\xe4\xc5\x4c\xca\x84\x3f\xc5\x5e\x8c\x2c\xc3\x7d\x8f\xe7\x07\x2e\xb8\xad\x46\x3c\xfb\xe5\x08\x2e\x84\xd6\xeb\xb5\xf5\xac\x91\xfd\xec\x51\xe8\xbc\x8c\xea\x3c\x7b\x64\xbe\x57\x34\xea\x74\x7e\xe4\x05\xb6\xb6\x22\xfd\x96\xd0\x88\x6e\x1d\xf0\xa1\x7a\x15\x06\x6f\xaf\x06\xc3\xec\xaf\xee\x80\x99\xbc\x06\x2c\xff\xbf\x31\x63\xeb\x45\x13\xef\x87\xef\x69\x68\x84\x2e\x90\x45\xcc\x90\x7b\x63\x3b\xe4\xde\xe0\xc7\xd0\x5c\xd3\xde\x2f\x1d\xef\xe0\xde\x88\x0f\xdf\xe9\x78\x6f\xae\x3c\x9f\x1e\x5f\x79\x7c\x3e\xbe\xb6\x51\xb2\xc2\x06\x3e\x79\x7c\xa0\x3f\x7d\xff\x74\x7d\x6d\xd6\xf3\xe4\x71\x2b\xff\x89\xb9\xf2\x9f\x5c\xa8\xa7\xbb\xb7\x26\xd7\xde\xc8\x77\x2d\x9c\x7a\x3d\x1d\xbf\x41\xb0\x1a\x61\xa3\x04\x16\xd4\xe9\x75\x70\x77\x72\xc3\xab\xea\x9f\xbf\x8b\xe8\xfb\x98\xfe\x14\xd3\xdb\x90\x56\x21\xfd\x47\x4c\xcd\xd5\x77\xc5\x65\x8c\x5f\x62\x7f\x4d\x8f\x43\x7a\x12\xd2\x24\xa6\xb3\x88\x1e\x5f\xd1\x3b\x21\x8f\xf4\xb7\x0e\xd6\x17\x7c\xa9\x79\x66\x31\x19\xab\x62\x9c\x64\x31\x9c\x1d\x5e\xac\x7e\xcc\xcb\xea\xb5\x78\x75\x51\xa2\xf6\xf9\xca\xcb\xbc\xbb\x35\x0d\xe9\x5d\x7e\xc3\x8a\x22\x89\xd9\x8f\x79\x7e\x7d\xa6\x4c\x1d\xa9\x4c\x46\x03\x20\x48\x2a\x59\x25\x23\x3b\xa1\x26\xa2\x10\xe9\xd1\x94\xc5\x8b\x54\x3c\x9f\x8d\x69\x91\xfb\x9c\xc6\x07\x36\xee\xb7\xbf\xb5\xc1\xd1\x35\xf1\x7c\xb1\x02\xe4\xfb\x66\xd7\xc2\x60\x1a\x79\xa1\x5f\x0b\xf0\x03\x6c\xd6\x50\xf8\xaf\x69\x4b\xe7\xad\xda\xa4\x16\xe8\x70\xe4\x85\x3e\x5a\x1f\xd7\xb0\x28\x5f\xe5\x1c\xef\x82\x95\x53\xbb\xa7\xcd\x89\x79\x5e\x29\x42\x09\x08\x8b\x4e\x13\x26\x7b\x8e\x9d\x43\xd9\xca\x5f\xfb\xde\x5d\x1b\xc6\x55\x44\x47\x0b\x5e\x05\x97\x48\xfa\x3d\x7a\xc3\x8a\x92\x6f\x12\xc3\xed\x83\xef\xba\x07\x4f\xbb\x07\xc3\x6d\x3a\xcc\x50\x8c\x64\xc5\xfb\x30\xba\x0e\x27\xec\x5d\x38\x63\xfd\xe1\x36\x0a\x54\x71\x3e\x1b\x6e\xaf\xfd\x01\xbb\x85\x9b\xcf\xee\xe5\xe5\xd9\xc9\xcb\x0f\x27\x1f\x2f\x5f\xbf\xfb\x78\xf2\xe1\xdd\xd1\x9b\xb3\xcb\xe3\xd3\xcb\x77\xa7\x1f\x2f\x3f\x9d\x9d\x5c\x9e\x7e\xb8\xfc\x7c\xfa\xe9\xf2\x97\xd7\x6f\xde\x5c\xbe\x38\xb9\x7c\xf5\xfa\xc3\xc9\x71\x90\x5e\xab\xd2\xe8\x6e\xf9\x3e\x2f\xaa\x30\x0d\xae\x75\x3a\xc7\xff\xf8\xf4\x2d\xc8\xcf\xce\x1e\x22\x94\xa0\xd6\x51\x46\x1c\xee\xb4\x9c\x26\x73\xc3\x81\x9c\xc0\x4d\xc7\x60\x75\x59\x85\x66\x0f\xed\x3a\x7c\x21\x58\xbb\x87\xe3\xef\xbf\xf7\xdd\xd3\xe6\x93\xef\xbe\xa7\xa7\xa0\x6f\xee\x5e\xb3\x55\x09\x0e\x16\x83\x35\x4c\x35\xf0\xdd\x69\x9d\x65\x5a\x11\x3a\x18\x66\x8a\x0c\xe9\xa2\x9c\x9e\xad\xb2\xc8\x61\x5c\x0f\xba\x59\x1d\x7c\xaf\x03\xb3\xd4\xc3\xa2\x62\xa0\x18\x8b\xd9\xfa\x36\xc3\x13\x9c\x4e\xe2\x21\x75\x7e\xee\x16\xfc\x28\xb6\x95\xa8\x23\xc1\x88\x6e\xf5\x38\xe7\x52\xf5\xd6\xce\x2b\xbf\xb7\xda\x03\xa8\x56\x13\x4e\x1c\x62\xd4\x9d\xe6\x51\xd5\x34\x95\xb6\xe0\xe8\xe1\x34\xf2\x8d\xd1\x46\xd8\x24\x86\x1e\x7a\xb6\x94\x28\x11\x11\xd8\x6c\x1d\x98\xa7\x9e\xc6\x1a\x84\x6b\x98\x79\x20\xf2\xe1\x89\xbe\xad\x03\x4d\x1b\x65\xc4\x32\x02\x9e\x16\x23\x37\x2c\xf9\xee\x5a\x03\xb1\x96\x91\x3d\x55\x44\x4f\x70\xab\xa2\x7f\x60\x8f\x72\xe8\x2b\x5a\xc6\x11\x3c\x5b\x8c\xaa\x82\xb1\xd7\x59\x95\xeb\x4e\xba\xdb\xbf\x22\x79\xd4\x3c\xae\x7a\x6d\xdf\xdf\xab\x65\xd9\xb8\x70\x5d\x97\xbc\xef\xad\x59\x81\xcd\x6d\x1d\xd0\xd8\x98\x69\x82\xd1\x05\x06\xa3\x1b\x0c\xb3\x6d\xba\xbd\xb3\x28\x19\xe1\x12\x5b\x54\xed\x0c\x86\xd9\x30\x4b\xc6\xc4\x9b\x17\x79\xc4\xca\xb2\xcb\xb2\x9b\xee\xbb\xd3\xe3\x93\xcb\x93\x77\x3f\x93\x20\x08\xc8\xce\xbc\xc8\xe3\x05\x74\x6b\xc7\x27\x77\xc3\x8c\x90\x59\xce\x99\x75\x57\x34\x44\x02\x52\xb0\x2f\x8b\xa4\x60\xde\x4e\x77\x3f\xba\x2a\xf7\x25\x3b\x2f\xba\xba\x6c\x77\x96\x64\xdd\xab\x72\xc7\x1f\x0c\xb3\x35\x01\xed\xd2\x57\xd6\x15\xb3\x1b\x96\xe6\x73\xf0\xa3\x96\x15\x41\x7f\xf6\xff\xfc\x67\xf2\x9f\x69\x12\x41\xbc\x44\x8c\xcb\x78\xd3\xeb\x1e\xfc\xd0\x3d\x18\x66\xe4\xcf\x64\x03\x36\x3c\x1f\x60\x5e\xe6\xf3\x55\x91\x4c\xa6\x15\xf1\x22\x9f\xbc\x0a\x23\x36\xca\xf3\x6b\x4a\x5e\x67\x51\x97\x84\x59\x4c\x92\xaa\x24\xe1\x78\x9c\xa4\x09\x9f\x91\x5d\x55\xf0\xe3\x34\x29\x49\x99\x2f\x8a\x88\x91\x28\x8f\x19\x49\x4a\x22\x50\x89\xc9\x22\x83\x40\x8b\x53\x46\xde\xbe\xfe\x28\x93\xc9\x38\x5f\xf0\x0a\x21\x70\x23\xd4\xf1\xe6\xf5\xcb\x93\x77\x67\x27\x64\x9c\xa4\x4c\x06\x74\xe4\x87\x63\x12\x27\x05\x88\xdd\x2b\x92\x8f\x49\x65\xb4\xc4\x67\x1e\xe0\xb0\xcf\x87\xcf\x1a\x4f\x90\x36\xe1\x59\xd0\x6b\x9a\xa2\xaf\x51\x8b\xa9\x10\x46\x4a\xb0\x7d\x0e\xf5\xdb\x63\x6f\x59\x59\x86\x13\xb0\xbb\xcc\x58\x8a\x52\xd1\x5c\xbc\x87\x85\x7f\x2c\x7d\x89\x36\x93\x9b\xfb\xd2\x16\x28\x0c\x6a\x6b\x27\xcb\x97\x9e\x3f\x98\x7b\x5b\x3d\x1a\xfa\x03\xac\x4f\x58\xe3\x8c\xfc\x3b\x9c\xe3\x25\xab\x3e\xe2\x65\x8d\x57\xd1\x9e\x4f\x47\x83\xf5\x9a\x2e\x82\xe3\xb0\x62\x5d\x2c\xdf\x54\xad\x89\x8c\x58\x18\xba\xc4\xde\x62\x3d\x18\x5b\xac\x50\x22\x7b\x68\xb4\x36\xa6\x1c\xab\xbe\x37\x0f\x42\xea\x20\xe1\xaf\xf9\x09\xdc\xe2\x32\x5f\x02\x03\x06\x1f\xb4\x9b\x9a\x48\x44\x29\x0b\x0b\x99\xff\xc5\x5f\x0f\xae\xeb\x28\x72\xe6\x97\xd6\xa9\x34\xce\x8b\x88\xbd\x2a\xc2\x19\xfb\x60\x6d\x41\xfe\x1d\x1a\x46\x8a\xd0\x2d\x38\x80\xdd\x39\x2b\xf8\xf9\x08\x5e\x04\xbf\x95\x89\xbc\xef\x74\x98\xad\xe4\xb7\xc6\x95\xfe\x26\xd3\x4c\x0c\x07\xee\x3c\xd1\x33\x21\xca\xb3\x32\x4f\xc5\x41\xe6\x48\x15\xe6\xed\xa5\x47\x59\x32\x83\x33\x37\x60\x3b\x68\x9e\x4a\xa2\x04\x5f\xd8\xac\xac\xec\x22\x9d\x8e\xa8\xbe\xcb\x80\xb5\x0d\xb7\x61\x45\x8d\x8a\x7c\x59\xb2\x82\xc4\x39\x2b\xb3\x9d\x8a\x08\xab\x33\xd2\x58\x47\x97\xbc\x0d\xaf\x19\x29\x17\x05\x23\xd5\x34\xac\xc8\x2a\x5f\x40\xfc\x53\x12\x92\x79\x9e\xae\xc6\x49\x9a\xf2\x75\x85\x71\x4f\x45\xd5\x65\x97\x4c\xab\x6a\x5e\xf6\xf7\xf7\xc7\xa3\xee\x8c\xed\xa3\xac\x27\xe1\xcb\xe1\xb6\xdf\xd2\x9d\xa3\xaf\xc4\xb9\x89\x52\xff\x2e\x94\xd7\xee\xed\xff\x30\x93\x83\xd0\xe6\x3f\xb6\xe4\x4b\xc4\x7f\xe4\x92\x5a\xe2\x7a\x5a\xeb\xa8\xc3\x2f\x82\xdb\xaf\x5b\x95\x02\x7c\xef\x05\xbe\xa9\xf8\x32\xd8\x3a\xa0\xc7\xe2\xd9\xb4\x60\xef\x80\xbe\x0a\xbe\xa5\x7f\x0d\x7a\x4d\xcb\x85\x34\xf3\x93\xe7\xc1\x5f\xf9\x32\x32\x97\x49\x1d\x99\xb6\x35\x15\xfa\x77\xbd\xe7\xe1\xfd\xfd\xc1\x93\x6f\x9f\x85\x87\xee\xc0\xda\xa5\x48\x15\x5e\xb3\x12\x86\xa8\x4c\xaa\xe4\x86\x73\xeb\x8a\x8c\x58\xb5\x64\x2c\x23\x3d\xd8\x28\x0e\x9e\x7c\x4b\x09\x2f\x96\x64\x13\x32\xe6\x25\xb9\x18\x59\xca\x78\xbd\xd5\x34\xcc\x38\x0c\x19\xcf\x4b\xbe\x57\x64\x79\x45\x16\x99\x98\x2a\x7c\xdd\xf9\xfd\x57\x41\xef\x59\x78\x08\xa1\x65\xc6\x69\x9e\x17\xde\xc1\xc9\xd3\xfd\xd0\xef\x7f\x8b\xa6\xa1\x3f\xe2\xdb\x6d\x16\x7b\xa6\xaf\x83\x1f\xbb\xbc\x86\x27\x03\xfc\x7b\xd0\xcd\xb3\x19\x82\x04\x5a\x09\x6a\xf1\xe9\x63\x7f\x33\x93\xfe\x6b\x10\xee\xbe\x02\x11\xfa\x18\xd9\xf5\xe1\xeb\xee\x3c\x2f\x2b\xd1\xb2\x88\x06\xe5\x19\xe3\xe7\xbb\x9c\xbc\xa1\x00\x70\x73\xd8\xfd\x79\x41\x97\x2b\x1f\x07\xe1\xe0\xe5\xfd\x3d\xaf\xb4\x47\x1b\x4a\x37\xb0\xe1\x93\x60\x65\x4a\xa6\xa1\xd7\xdc\x1d\x7f\x5d\xe7\xd0\xbf\x79\x27\xfe\x80\xcf\x39\xe3\x0a\xe7\x6f\xce\x7d\x26\x2a\xa9\x42\x8c\x2d\xc3\x8f\x33\x2a\xb6\x9b\xd0\x59\xed\x1d\x3c\x7f\xfe\xfc\x80\xb2\x20\x3c\x8f\x2f\x2c\x5b\x40\xd6\xe9\xf4\x9e\xfd\x1d\xdf\x5b\xe3\x99\xc1\x88\x86\xe7\xd1\x45\xc0\x68\x14\xe0\x53\xfe\x44\xdd\xb8\xe9\xa7\x23\xc4\x55\xd6\x79\xef\x42\xca\x77\x5a\x30\x14\x27\x28\xeb\x39\x08\x43\x63\xc1\xcb\x98\x08\x18\xfd\x98\xe7\x73\x8c\xa6\x17\x89\x47\x6c\xcf\x7b\x17\x41\x24\x7a\x83\x3d\xe9\xc1\x33\xca\xa2\xc3\xf1\x33\x26\xba\x38\x0b\x9e\xfc\xd9\x8b\x77\x0f\xfc\xbd\x03\x9a\x05\xe1\xf9\xec\x82\xde\x04\xb3\xdd\x03\x5a\x04\xe1\xf9\x8d\xdd\x60\xd6\xe9\xf4\x9e\xff\xdd\xcb\x68\xe4\xfb\x2a\xb1\xc0\xc4\x82\x66\xfe\xa1\x07\x74\x28\x28\x2f\x09\x6f\x36\xdd\xf8\x7d\x4c\xcb\x28\xaf\x1a\xd2\x66\xda\x64\xac\x5e\x49\x24\x68\x69\xd6\xe1\xd0\x52\x19\xa7\x34\xc6\x2e\xf9\xbb\xe3\xef\x9f\x17\xd5\xeb\x2c\x66\xb7\x7b\x23\xfd\xdb\xb2\x73\x38\x8c\xfa\x61\x37\x89\xf7\x46\xdd\x24\x06\x8e\xf5\x2e\x38\xbf\xa0\xa7\xfc\x9f\xf7\xc1\x01\xfd\x09\x59\xd7\x87\xe0\x29\x3d\x83\x57\x45\xf9\x3f\x9f\x82\xad\x03\xf3\xbe\xe7\x67\x3e\x4a\x92\xd4\xa3\xe0\x8d\x77\xaa\x83\x25\x5b\x4f\x24\xeb\xab\x4f\xff\x2d\x07\x92\x84\x18\x61\x18\x2a\xb8\x20\x0c\x42\xc8\xa3\x06\xc2\xb5\xc0\x01\xf4\x6f\xde\x3b\x15\xef\x02\x55\x9c\xd8\xac\x31\xd5\x7e\xe1\x48\x01\xa6\x3f\x8b\x48\x31\x5b\x1f\x7d\xcd\x1f\xde\x78\xef\x7c\xff\x23\x5f\x88\x63\xef\x1f\xd6\x53\x77\x16\xfa\x9d\xce\xc4\xfb\x85\x1a\xf8\xed\x85\xf6\xcb\x20\xff\x40\x82\x73\xba\x0c\x3e\x75\x3a\x1e\x6f\x91\x4e\x3d\xdf\x1f\x9c\x05\x5b\xf2\x05\x90\x0f\xc0\x68\x7e\xe6\x2b\x8c\x93\xe9\x27\x68\x5d\xb6\xf1\x53\xa7\xe3\x6d\x79\x3f\x39\x5d\x7c\x3e\xf2\xef\xef\xc3\x4e\x67\xeb\x9a\xd7\x25\xd7\xe3\x4f\x8a\x80\x86\xe7\x46\xec\xdf\xe9\x74\x3c\x89\x7e\x08\x7e\xea\xce\x85\xa1\x0e\x3e\x39\x28\xe2\x22\xd7\xda\x79\x16\x40\xd8\x87\x16\x2e\xd9\x72\x05\x73\x68\xb4\xc7\xfa\x3f\x05\x48\xce\x4e\xe7\x2d\xef\xd6\xcf\xca\x9f\x1a\x3e\xb1\xb3\x46\xb8\xe4\x9f\x7c\x5c\x78\x32\x6a\x03\xff\xca\x2c\xaa\x67\x48\xf5\xcc\xa0\xfa\xc8\x1f\xcc\x38\x47\x95\xae\x06\x4a\xb7\xa1\x26\x68\x04\x13\xd4\x1a\x9b\xcf\x7c\x0a\x38\x66\x97\xd2\x7f\x6e\xef\x60\x20\x5c\xe6\xa5\x49\xf2\xb7\x3d\xc7\x3d\xd2\x78\x3a\xc0\xf6\xf6\x3b\x38\xf9\xc6\xbd\x37\xff\xf6\xe4\x29\x6e\xf8\xff\x0c\xd2\xfa\xee\xfc\x3a\x4e\x99\xb2\x9b\xfa\xb6\x21\x7f\x36\x63\x31\x3f\x7a\x29\xa0\x83\x3a\xd0\x9b\x7c\xa9\xb2\xbf\xa9\x67\xbf\xe3\x42\x72\xaa\x20\x9e\xd6\x21\xde\x17\x39\x3f\xe1\x89\x18\x05\xf5\xfc\x4f\x25\x2b\x5e\xa4\x79\x74\x0d\xb6\xce\xa2\x9e\x27\x0d\xba\x09\x90\xf8\x5e\xd6\xde\x79\x0e\xe1\x61\x75\x73\x1e\x36\x08\x2a\x32\x86\xfb\xc9\x2d\x8b\x16\xbc\x98\xb9\x65\x7d\xbc\xbf\x3f\xbb\xbf\xf7\xd4\xb2\x6c\xd6\x50\x68\x2d\xe9\x7b\x73\x8a\x37\x08\x54\x1f\x1a\x10\x98\xb0\xea\x15\x5c\xef\x9a\x66\x6e\xf5\xa2\x30\x69\x1b\x84\x3e\x76\x5b\x59\x3d\x16\xd3\xeb\x83\x9a\x5e\x62\x56\x09\x43\x1a\x64\x29\x4f\x9d\x10\x62\xa3\xe0\xc3\x5a\x72\x86\x0f\xc1\xc8\xbe\xa9\xd0\x7a\xbb\x0f\x41\xb4\x6e\xc0\x61\x1e\x2e\xca\x66\xfa\x35\x00\x8b\x23\xc5\xfb\x30\xc9\xaa\xe0\x9f\x0d\xf9\x8b\xec\x97\xa4\x9a\xaa\xf1\xb6\xc5\x8f\xda\xe2\xb1\x7b\x27\x96\x85\x58\x36\x76\x1f\xc3\xe0\xa9\xd1\xc7\xd0\xec\xe3\xa8\xd6\xc7\x86\x51\x96\x7a\x8d\x86\x79\x66\xde\xce\xb6\x30\xae\x16\x33\xe1\x48\x59\xa8\xa8\x57\x3d\x21\xfc\x4d\xb8\x1a\xb0\x60\xb8\x9d\x2d\x66\x23\x56\x38\x11\x2a\x7a\xcf\xd8\x61\xbc\xcb\xfa\xf1\x20\x6a\x04\x51\xef\x41\x1f\xaa\x5f\x7d\xce\x79\xa4\x8d\x11\xff\x4d\x59\xc0\x8b\xb3\xdd\x68\x10\x06\x77\x49\xdc\x7f\xbf\xbb\x4b\xe5\x52\xe9\x8f\xa8\xc5\xab\xfb\x21\x55\x8c\xaf\xcf\xa8\x63\x3f\x1f\x51\xb5\x2f\xf6\xf7\x0e\xd6\x03\xf6\x3c\x3e\xf4\x8c\x9d\x3e\xe0\xbb\xe3\x29\x0d\x95\x63\x37\xb2\xe6\x10\x7e\x9d\xfa\x7c\x8b\x3a\x9c\x7a\x7e\xff\x13\x5f\x64\x9c\xcd\xb2\xbd\xd8\xf7\xb9\xa0\x62\xd4\x11\xc1\x0e\x1b\xfa\xb4\xb6\x22\xfd\x46\xb5\xb6\x1e\xb5\x69\xbe\x48\xe3\xcf\x09\x4b\xe3\xfa\xe5\x7c\xcb\x58\xc1\xfe\x2c\xf7\xde\x77\xaa\x81\x11\xee\x8d\x7a\x97\xd4\x7b\xb2\xfc\xa5\xb8\x4d\xa7\x63\x8b\x10\xfc\xdb\xd9\xe7\xdc\x8d\xef\xfe\xfe\xda\x6b\x5a\xe1\xcb\x22\x9c\x37\xf2\x36\xf1\xc2\x82\xb2\xd0\xb2\x7b\xd7\xb4\x94\xbb\xe1\x7c\x9e\xae\xe0\xfd\x7a\xaa\xb4\xaf\xce\xd4\x5f\xa3\xd2\x72\xb8\xad\xb5\x5c\xa0\xc8\xc4\xb7\xe8\x2f\xc5\x1c\x0b\x88\xf8\x71\xb6\x9a\x8d\xf2\x14\x34\x97\xe6\xde\x4c\x3a\x1d\x1b\xa2\x9b\x54\xfc\x64\x96\x17\x02\xb4\x84\xd4\xe1\x36\x39\x54\x88\x13\x2f\x1f\x5d\xf9\xe4\x8e\x08\x74\x45\xf9\x7c\x74\x35\x20\x6b\xd2\x6f\x85\xcb\x47\x57\xb5\xe6\x1a\x11\xca\x47\x57\x5d\x7e\xe2\xac\x8a\x45\x24\x31\x11\xe0\x98\x4b\xb6\x54\x8a\x36\x57\x22\x87\x26\xba\x7d\x1b\x2d\x20\x8c\x42\xec\x32\x4a\xc3\xb2\xe4\x83\xf5\x72\xca\xa2\x6b\x2f\x11\x97\x62\x94\xbc\xd4\xcd\x72\xcc\x93\x31\xf1\xb6\x54\x36\x91\x3f\xf2\xb1\x05\xc8\x21\xf1\x64\xc7\x8f\xa0\x1f\x57\x73\x76\x22\xce\xc9\x2f\xc3\x8c\x9f\x64\xf9\x6c\x23\x21\x81\x56\x49\xc8\x4f\xca\xba\xc3\x3e\x27\xda\xda\x46\x6f\x9e\x97\x65\x32\x4a\x99\xd1\xc8\x07\xa0\xa1\x57\xb2\x74\x4c\xa1\x3e\x85\x1e\x4f\xb2\x31\xf8\xc0\xc6\xac\x60\x59\xa4\xd0\x00\x1d\xe9\x34\x04\xf5\xcb\x88\x9f\xc9\x93\x2c\xa9\x92\x30\x4d\x4a\x16\x93\x3d\x52\x2e\xe6\xac\xf0\x7c\x0b\x82\x37\x01\xe7\x6e\x8e\x9e\xbc\x2c\xe2\xdd\xe8\x74\x88\x27\x19\x18\xff\xc6\x01\x94\x1c\x93\xdc\xdf\x93\x7a\xae\xd1\x5b\x72\x88\x19\x7d\xc2\xf1\x1e\xb8\x3d\x4f\xb2\x29\x2b\x92\xaa\xf4\xca\xc5\xe8\x25\x27\x17\x45\xec\xe0\xb7\xec\xb2\x68\x40\x67\xc0\x7c\x70\x67\x91\x93\x0d\x07\xe5\xd6\x81\x3a\xe3\xc0\x84\xdd\xce\x0b\x56\x96\x1c\x93\xd9\xa2\xac\x08\x4b\xaa\x29\x2b\xc8\x88\x41\x69\x92\x17\xc6\xc8\x51\xd0\x51\x0c\xb7\xc9\x2e\xa9\xe1\x03\x44\x93\x3d\x30\x66\x68\x40\xc4\x85\x20\xde\xd2\x78\x06\x8a\x16\xc2\xba\x08\x25\x77\xc4\x58\x0a\x7d\x72\x47\xc0\xfe\xa2\x4f\x34\x81\x58\xb6\x98\xb1\x82\xf3\xa0\x3e\x19\x87\x69\xc9\x28\x59\x16\x49\x85\x09\x55\xb1\x60\x94\x57\x31\x4e\x26\x8b\x42\xa7\xf1\x49\xe7\x0f\x80\x9c\x26\x81\x05\x7e\x25\xab\xde\x4b\x14\x4e\xc7\xe4\xb0\x39\xbd\x65\x90\x34\x6e\xdd\xcb\x4b\xe8\xc9\xe5\x25\x09\x0c\x10\x31\xea\x10\xf7\x0d\xae\x25\xf4\xed\x86\xb8\x5b\x06\x2d\x23\x00\xbc\x2f\xf2\x39\x3c\x3e\x68\x01\xcd\x8b\x7c\xbe\xc7\x91\x40\x7d\xa4\xa8\xec\xe8\xcd\x9b\xcb\xd7\xef\x5e\x7f\x7c\x7d\xf4\xe6\xf5\x3f\x4f\x3e\x9c\x91\x80\x9c\x5f\x88\x7a\x3e\x9c\x1c\x1d\x7f\x6e\xcc\x35\x8d\xe1\xca\x5f\xd8\x68\x1e\x46\xd7\x1f\x58\x18\xaf\xbc\x09\xab\xde\xc2\x35\xcc\xeb\xb8\x14\x57\x3c\x9c\x5e\x9e\xf2\x29\x5e\x22\xf4\x25\x5e\xd6\x94\xbc\x9b\x30\x11\x0d\x7d\x31\x70\x25\xf3\xbb\x2f\x79\xb3\xd7\x50\xde\xf7\xc5\x54\x96\xeb\x49\x34\x4b\xe4\x12\x84\xf1\x1d\xf0\x24\x20\xa1\x4a\x37\x51\xf5\xfc\x2e\xbb\x61\x85\xd6\xff\x10\x6f\x26\xf2\xdc\xea\x44\x4f\x64\xb6\x68\xdc\x44\x57\x33\xec\x06\x74\xcf\x65\xc1\x8b\x7a\x49\x44\x52\xdc\x46\x19\x34\x4e\xf3\x30\xf6\xf8\x3f\xac\x10\xd8\xc0\x15\x4a\x91\xcf\x92\x92\xaf\x10\xcc\xf2\x70\x54\x31\x13\x6e\xc6\x49\x20\x71\x17\x4f\x78\x89\xb9\xad\xd3\x58\xdc\x27\xc2\xd9\x9c\x27\x81\xae\x12\x53\x00\x15\x51\x21\x54\xd6\xd5\xed\x89\x5f\xf8\x46\x9a\xa6\x18\x56\xa8\xe8\x85\xa5\xe4\xe3\x61\x81\x31\x0e\x66\x1e\x8b\x65\x07\xe2\x81\x45\x67\x23\x6d\xed\x77\x51\x1d\xa8\xdb\x62\x45\xf1\x15\x0d\x41\xbf\x48\xc0\xfb\x27\xd2\x45\xa8\x2b\xf1\xbd\x96\xa4\x13\x6d\x43\xa9\xc6\x61\x78\x1b\xce\xc5\x16\xfd\x10\xa5\x91\xad\xd8\xa4\xbe\x5b\x6f\x26\xb4\x31\xac\xa5\x5e\x6b\x84\x54\xc5\x4a\xd6\x6f\x9a\x47\x70\x44\x6a\x6f\xbf\x12\xef\x9a\xad\x14\x6d\xb0\x4e\x8c\xe1\x25\x08\xcd\x8b\x9d\x5f\xb3\xd5\x85\xec\x34\xff\x0f\xb6\x45\x04\x93\x94\x34\xea\xb0\x07\x0c\x0a\x03\x6f\x51\xe0\x6a\xf0\xea\x34\x17\x50\xf0\xa9\x80\xcc\x6b\x5b\xb7\x01\x1c\x44\x3e\x51\x35\xb8\x46\x54\x92\x07\xd5\xa8\xa2\x72\x91\x68\x76\xc8\xce\x71\xa7\x6a\xc1\xca\xc7\x74\x4f\x23\xb0\x79\x06\x6e\x9a\x69\x62\x76\x19\x3f\xd6\x04\xea\x6a\x9a\xc4\x6e\xf1\x75\xf3\x02\x7c\x2f\x7a\x15\xa6\xa9\x27\x09\xe2\x6f\xea\xe3\xa6\x25\x22\xe6\xbc\xec\xee\x1f\x58\x6c\xbf\x67\x51\x15\xac\xcc\xd3\x1b\x66\x2c\x2a\x5b\xf4\xe5\x82\xed\xe5\x25\x2b\x91\x55\x93\x43\x48\x10\xe7\x5e\xd2\x07\x51\xb5\x5e\x65\xc6\xd9\x21\x8e\x26\xe5\x33\x66\x5e\xda\x75\xc3\x16\x2a\x24\x0a\x61\x89\xee\x49\x44\x04\x17\x93\xe5\x6a\xb5\x63\xa9\x37\x79\x18\x87\x20\x6e\x0a\x1b\x19\x28\xf7\x2a\xa3\x24\x9f\x73\xb0\xd2\xe0\x10\x28\x3a\x53\x72\x59\xb1\xd9\x5c\xd0\x04\xd6\x9b\x00\xad\x2d\x38\x2d\x6f\x49\x59\x0b\xaf\xe7\x52\xd1\xa8\xdc\xd5\xb9\x54\xfc\xab\x28\xfc\xab\xf5\x80\xa4\x39\x79\x38\x0a\xf9\x1c\x0c\x22\x04\xf3\x08\xcb\x32\x99\x64\x9e\xc1\xb1\x58\x61\xed\x03\x8a\x89\x19\x69\x70\x72\xef\x93\x27\xbd\x9e\x48\x90\xe7\x6f\x13\x08\x49\xdf\x17\x7f\x45\xa2\xd8\x03\x2d\x40\xb1\x1f\x1a\x2c\x50\x53\xce\x60\x86\x05\xf0\x41\x50\xa1\x61\xa2\x96\x3b\xb2\xa4\xf2\x14\xc5\x24\xfb\x32\x56\x24\x16\xc5\x51\xf1\x78\xff\xbb\x62\x07\x95\x8b\xd1\x9d\xfd\x72\x7d\x99\xb4\x73\xc5\x23\xe4\x3a\xbc\x6d\xdf\x18\x48\x79\x6c\xe2\x8d\x88\xce\x36\x48\xf1\x02\xb3\xba\x54\x85\x95\xea\xe5\x66\x74\x82\xd7\xee\x48\x58\x66\x2b\xbe\xc5\x81\xa4\x11\x0f\x50\xc6\xe4\x9d\x26\xef\xb1\x96\x24\xcc\x48\x12\x88\x19\xca\x57\xb3\x42\xe2\x12\xd6\xc8\x9f\x74\x5c\x0b\xd9\x92\x3e\x6f\xd4\xd6\x00\x25\xb5\x52\x8a\x23\xeb\x6b\xa9\xda\xca\x31\x17\x28\xb4\xe0\x1c\x35\xe1\x4c\x5f\x2f\x67\x72\x7b\x3c\xbf\xf3\x23\x5b\xb0\xe9\x28\x88\x35\xb9\x48\xa2\x03\x03\xe6\x21\x2e\x66\xd5\x97\x32\x12\x4b\xb1\xb2\x08\x64\x91\x1e\x81\xf0\xb9\x8b\x8a\x79\x77\xe6\x06\x4f\x1d\xe9\x0b\x16\x4e\x7c\xca\x57\x0e\x30\x4f\xbd\x3f\x3c\x66\xda\xea\xd6\x2e\x41\x1e\x81\x75\x64\x0e\xb7\xb9\xa9\xcb\x99\x60\xf7\xc5\x91\x58\x0c\x79\x84\xaf\x02\xf8\x49\x75\xd6\x3c\x2c\xab\x63\x5c\xfb\xa6\x48\x23\x39\x80\xd1\x11\x23\x47\xf5\x98\xd7\x28\x3e\x9c\x6c\x2e\x0f\xc9\x5c\x16\x9b\xe8\x5b\xb3\x19\x50\xd6\x4b\x16\x7f\xd4\xe6\x42\x77\x5e\x30\xb0\x79\x30\x46\x48\x24\x79\x16\x4f\xa8\xaf\x10\x4d\xb0\xa6\x5a\xa5\x5f\x97\x62\xae\xbf\x24\x69\xfa\x36\x5f\x64\x95\xd9\x54\x3d\xd7\x6c\x15\x47\x0b\x4c\x2a\x41\xda\xb5\x44\x9b\xd6\xa1\x7c\x1c\x5e\x46\x49\x13\x21\xab\x42\x5b\x16\x04\x82\x3e\xe1\x68\x20\x61\x4d\x56\x63\x3a\xad\x77\xd5\x6e\xd3\xe9\x90\xa3\xa2\x08\x57\xdd\xa4\x84\xbf\x38\x2d\x05\x07\xb7\x59\x90\x99\xd3\x20\x99\x62\xce\xbb\x70\xc6\xac\x52\x62\x62\x3e\xa9\x35\xdd\x2d\xd8\x3c\x2f\x2a\xb3\x9c\xb1\x0c\xd6\x7e\x93\x80\x28\xb7\x82\x46\x31\x56\x84\x5a\x6b\x29\x66\xf2\x71\xd8\xee\x04\x17\x97\x7a\x68\xab\x2a\x5e\xc0\x81\xec\x39\xbd\x72\x99\x82\xb1\x94\x50\x9f\x60\xf5\xa6\x26\x12\xcb\xc9\x21\x1a\x30\xad\xd9\x5a\xd8\x90\x41\xca\xc7\x36\x2b\x77\x5e\xd1\x0f\x0b\xa3\x47\x90\x49\x08\x01\x9b\x08\x85\x9d\x50\x80\x8f\xea\x46\xbd\x13\x9a\xd7\x34\x90\x8e\x5a\xc8\x34\x4e\x0b\x78\xe1\x06\x8c\x80\xcd\x75\x82\x29\x5e\x6d\x60\xb7\x04\x02\x72\xd5\x3a\xe8\x39\xd3\xc8\x6a\xa8\x01\x79\xb3\xe8\x06\x4e\xdb\xc4\x17\x6b\xd9\x2e\x57\x75\x96\x43\x0d\x8b\x4b\xd3\x34\xaf\x6c\xd9\x28\x0c\xe9\xc7\x3d\x45\x58\x3d\x97\xe4\xfa\x9a\x73\x51\x43\x99\xdf\xcf\x79\x45\x18\xb6\x56\xde\x2b\xc3\xb4\x6d\xe0\xbe\xe6\x81\x45\xe6\x36\xd3\xe8\x91\x1c\xd8\x2a\x6c\x31\x61\xa7\x5a\x8d\x93\x65\xd0\x69\x2c\x72\x4d\xa4\x06\x08\x67\x76\x3f\x0e\x3b\x14\xc4\x4d\xac\xc4\xe9\xc8\x11\x32\xb5\x60\xa0\xce\x76\xf7\xf7\xc4\x48\x85\xc9\xda\x24\x6e\x36\x9d\xa5\x94\xdc\x02\xcf\xd5\x5b\xf3\x3f\x29\xdf\x28\x69\xa8\xd6\xa6\x35\xdb\x4d\xb6\xa5\x21\x55\xaa\x05\x6b\x70\x07\x0d\x2a\x13\x69\xc3\xfa\x73\x7b\x46\x9d\xe5\x5d\xc8\x56\xe1\x77\xf3\x9e\x43\x84\x49\x4d\x8d\x7a\x0e\xbf\x90\x07\xda\xb9\xf2\xd9\xa8\x17\xa0\xd8\x9a\x3a\x73\x5a\x4d\xd4\xeb\x12\x27\x22\x01\xe5\x4e\x08\x79\xad\xee\xce\x0b\x3c\x01\x78\x38\x62\x5a\x8e\xa6\x42\xe2\x96\xdb\xaf\xd4\x1d\x1b\xe7\x43\x54\x82\x2b\xc5\x72\xb7\x9c\x86\x73\x83\xb1\xe1\x36\x6d\x02\xf0\xe9\x06\xb1\xf1\xe0\xa0\x1a\xcb\x33\x88\x38\xe9\xc9\x93\xb0\x7d\xb2\x96\xf8\xc2\xf4\xb1\x0f\xec\x9b\x0e\xdd\xc8\xfc\xeb\x07\x75\x09\x0d\x2a\x3b\x5d\xa3\xbb\x83\x89\x15\xe2\x5e\x87\x6c\x38\x8c\x1b\x15\x5b\x27\xf1\x46\xbd\xc3\xaf\xd6\xbd\x55\xfd\x08\xb6\xa9\x67\x6f\xc3\xb9\xd3\x39\x09\xd7\xe5\x6d\x07\x66\x17\x95\x46\xff\x65\x38\xaf\x16\x05\xdb\x78\x98\x7b\x22\x7a\xa7\xcf\x72\xa2\x54\xfd\x70\xf4\xc4\x77\x4f\xde\x02\x54\x73\x90\xe6\xf3\x9a\x00\xf3\xdd\x59\xf9\xd5\xc7\xb3\x27\xe6\xd5\x2e\xd1\x77\xbb\x16\x35\x45\x6b\x06\xe7\x9b\xb0\xca\x8c\x7d\x62\xd2\xc3\xc9\xf2\x5c\x15\xbf\x9a\xd7\x7a\xea\x5b\x4b\x10\x27\xbb\x5e\xb0\x42\x4c\x6d\x58\x8f\x7a\x55\xd6\x11\x7c\x98\x35\x5b\x1c\x56\x46\xaf\xea\xe6\x99\x20\x86\x68\x5c\x3a\xb3\xfb\x56\x7b\xa2\xac\x68\x96\xcf\x9f\xda\xba\x07\x48\x03\xaf\xb9\xb5\xf0\x1f\xb1\xa6\x79\x5b\xb2\x7c\x64\x10\xd4\xaa\xe7\x41\xf6\xf1\x28\xe6\xb1\xf6\x6b\x2d\x5b\xeb\x41\xcf\x7a\xdd\x63\x33\x72\x49\xba\x28\xa7\xaf\xc5\x0d\xee\x6f\xac\x28\xbd\xc4\xf8\xa8\x5f\xaa\x58\xda\x77\x88\x90\x43\xac\x12\xf2\x55\x51\x39\x52\xbc\x28\xcf\x27\x01\xb1\xc0\xd0\x58\x16\x61\x6c\xcd\x35\x9e\x41\x9b\x38\xc2\xa3\x94\xbb\x96\xe6\x6b\x13\x66\xfa\x1a\x6c\x33\x09\x4c\xad\xd8\xba\xce\x6f\xc4\x61\xfa\x28\x4d\x9b\x94\x20\x46\x14\x0d\x81\xbd\xad\x87\xce\xd3\x1b\x46\x49\xc1\xae\x58\xa4\x15\x49\x75\x84\x5c\x6d\x9b\xe8\xb5\x5b\x81\x71\x4d\x36\x68\x42\x12\xf4\x64\xff\x32\x34\xf7\xf7\xc9\x2f\x8c\x84\xe9\x32\x5c\x95\x64\x99\xa4\x29\x51\x90\x20\x39\x94\x04\xed\x70\xc8\x88\x91\x29\x38\x18\xc7\x64\x99\x54\xd3\x24\x93\xf2\x3a\xf9\xf4\x1a\xdc\xbc\x1a\xfb\x5c\x57\x07\xd6\x7b\x0d\x3f\x6a\xdd\xae\xb9\xbb\x49\x3a\x0c\xd0\x91\xad\xc1\x1b\xed\x49\xef\xe0\xe9\xde\xbc\x60\x25\x28\xeb\x6c\xdf\xb4\xff\xe7\xfa\xa1\x59\x17\xdf\x8a\x4b\x9c\xb1\xa8\x60\x95\xed\xe5\x97\x26\xa3\xfd\x26\xa8\x1d\xdf\x66\x07\x6c\x36\xaf\x56\xaf\x94\x51\x11\xb9\x5b\xb7\x65\xfe\x92\x54\xd3\x0f\xac\x64\x95\x80\x6a\xce\xec\x72\x92\x56\xbf\x84\x45\x26\x03\x0f\x92\xc0\xae\xa7\x79\xc4\xc6\x06\x0a\xd6\x1e\x5b\x4e\x93\x19\xea\x45\x51\x8e\x78\x17\xce\xc0\x24\x41\xb0\x6e\xfc\x4c\xf3\x28\x44\xb3\x0a\x0e\xf2\x6a\x91\xa6\x98\x5e\x42\x9f\x2d\x0e\x51\x0a\x62\x05\x41\x23\x15\x0d\x6e\xb1\xbf\x4f\x5e\x57\x7c\xc8\xcb\x8a\xcf\xf5\x32\x1c\x33\xb2\x9c\x2a\xeb\x16\x32\x2e\xf2\x99\xd8\x91\x6c\x06\x63\xab\xd5\xc1\xde\xaf\xe0\xbb\x9b\x21\x39\x09\xf8\x1d\x2e\x2a\xf0\x75\xa1\x0d\x15\x6e\xc2\x34\x89\xc3\x8a\xaf\x26\x9c\x21\xe9\x4a\xba\xb4\x28\x87\x16\x32\x5a\xc1\x3c\xfa\x55\x5b\x32\xfc\x4a\xe6\xe8\x64\xdf\x25\x3b\x64\x57\xd5\xff\xa9\x64\xc6\x6e\x12\x71\xa1\x44\x7d\x7a\x3e\xa9\x72\xb4\xa7\xa9\xa6\x6c\x66\x17\xe4\x9c\x83\xcc\xf2\x82\x91\xb0\x02\x07\x29\xe5\x1f\xb5\x28\xd9\x1e\x54\xb4\xa7\x5b\xdf\xc1\x72\x92\x75\xb2\xa2\x80\x80\x29\x24\x20\x3b\xaf\xf9\x84\x4d\xc2\xac\x22\x3f\x27\x79\x0a\xa3\xb4\xd3\x7c\x49\x06\xff\xf2\xe1\x36\xf6\x37\x12\x40\xca\xc0\x9a\x12\x13\x56\x9d\xf1\x59\xe1\x4a\x07\x0a\x12\xab\xe2\xe3\x37\xe3\x04\x0b\xb3\x6a\x4b\x24\xfc\x9d\xb1\x39\x2e\xb6\x34\x29\x2b\xbe\x1e\xcb\x55\x16\x01\x97\x22\xda\x91\x95\x08\x2f\x5f\x9e\xff\x6b\x77\x7f\x1c\xc2\x3a\xe5\x73\x9c\x13\x0e\x44\x3b\xbe\xbf\x5c\x95\xbf\x76\xe5\x6e\x69\xcf\x25\x7d\x64\x08\x8b\x82\x1f\xdb\x38\x6a\xe2\x60\x35\xca\xf3\xd4\x4a\xe0\xfd\xb2\x12\x50\x77\x64\x25\xa1\x45\x87\x95\x84\xd1\x61\xec\x24\xb0\x5f\x53\x49\x02\x83\xcc\x6e\x1f\x30\x3a\x1d\xf7\x25\x19\xe5\x3d\xbc\x08\x43\x65\x82\x1a\xc1\x5f\xad\x74\x69\xc9\x56\xaf\x25\xcb\x63\xd6\x80\x78\x1d\x30\xcf\x1a\x4a\x43\x22\xb6\x66\x67\x80\x94\x54\xc3\xf8\x36\xe4\x24\xd1\x89\x98\x6c\x4f\xf2\x7e\x0b\x13\x53\xb7\x74\x0e\xb7\x72\xe0\x4d\x39\xd2\x1e\xe2\xae\x39\xd8\x76\x96\x2d\x77\xd6\xf2\x84\xed\xe5\xff\x41\xfb\xd2\x8e\x08\xed\x21\x02\x7a\xbc\x3f\x3a\x3b\xbb\xfc\xf8\xe3\xeb\xb3\xc6\xb0\x1e\x3b\xcd\x1b\x44\x53\xd5\x83\x56\x4f\x75\xe9\x9c\xcf\x7b\x8a\x37\xc6\x78\x48\xf8\x3f\xc2\x53\x7d\x14\x34\x3b\xd0\xa0\xcd\x6b\xa7\x23\x6c\x5f\xc7\x79\x41\xa3\x60\x74\xa8\x3f\xe5\xf5\xba\x8c\xfa\x3c\xdc\xf6\xfb\xdf\xf5\x0e\x7a\x4f\x69\xdc\x0c\x07\xdc\x35\x95\x60\xdf\x51\xd6\x0c\x36\x2e\xc2\x89\x59\xdf\x5f\xe8\xb8\x19\x10\x7b\x71\x39\xcb\x63\x26\x61\xbf\xa7\x93\x96\xb6\xc1\xaf\x04\x74\xec\x1c\xf0\xe0\x1b\x3a\x6d\x05\xbc\x49\x62\x05\xd8\xfb\x81\x5e\x37\x03\x0a\xa5\x8f\xac\xb0\x47\xd3\x66\xb8\x90\xef\x19\x26\x92\x07\x07\x74\xd6\x5a\xa5\x88\x38\xe4\xc0\x67\x2d\x94\xca\x8b\x65\x58\xc4\x97\x05\x1b\x4b\xd8\x27\x74\xde\x42\x2c\x11\xf3\x48\x02\x3e\xa5\x5f\x82\xd1\xe1\x30\xdb\x00\x7a\xc9\x77\x3d\x01\xff\xa4\x47\x8b\xe6\x8a\x67\x6c\x96\xcb\x4a\xbf\xa5\x55\x33\x50\x1a\xfe\xb6\x92\x40\xdf\xd1\x9b\x66\xa0\x51\x9a\x47\xd7\xb2\xbd\x03\xba\x6c\xe9\xf4\x22\x8b\x43\x08\x34\x27\xa7\xd2\xc1\x5f\xe8\x6d\x33\xac\x8a\xc5\x2f\x21\xbf\xa7\xab\x16\xf2\x44\xf9\x5c\xd1\xe6\x07\xd3\x71\xf0\x37\xf5\x18\xc5\xe6\x88\xee\x60\x61\xbf\x30\xdf\x9b\x10\x8e\x29\x0b\xe1\x98\x12\xa9\xe8\xfa\xf2\xad\x07\xe9\xb2\x92\xa2\x77\xca\x0c\xff\x30\xfc\x33\xc1\x3f\x63\xfc\x33\x57\xc1\x4f\x95\xf3\x8a\xae\xad\xd3\xd1\xad\xaa\x4a\xaf\xb1\x60\x86\x7f\x2a\xfc\x53\xe0\x9f\x69\xbd\x36\x91\xb0\x58\xaf\x31\x0e\xbd\x91\xa0\xfd\x15\x8f\x8c\x98\x53\x9c\x2e\x41\x10\xcc\xd6\xd2\x3b\xe1\x88\x4f\xf4\xb7\x79\xcc\x0c\xef\xb2\x97\x6a\x46\x43\xc6\xcc\xcc\xe0\xab\xe7\x65\x9e\x95\x8b\x19\x2b\x82\x6b\x37\xe7\xbd\x58\x87\xc1\x54\xe5\x08\x2d\x79\x10\xa9\x94\x57\xb8\x00\x3e\xb0\x71\x90\xe9\x44\xc1\x3f\x02\xa6\x92\xde\x84\xbf\xad\x82\x4a\x7d\xbe\x65\xb3\x3c\x28\xd4\xa7\x88\x60\x13\x1b\xbe\x22\xef\x05\xbb\x08\x26\x0a\xea\x0c\xb8\x0d\x74\x63\xac\x13\xc5\x52\x09\xe6\x2a\x29\x29\x35\x21\x1a\x42\x75\x71\x12\xde\xdf\x0b\xe2\x19\xce\x67\x49\xe9\xd0\xea\xc8\xce\xb2\xa8\xd5\x50\xaf\xa8\xf1\x7a\x5d\x2f\xa6\x48\xd9\x5e\x6c\x6a\x16\x93\x74\xae\x83\x3f\xb0\x06\xcc\x79\x18\x04\x41\x64\x56\x6a\x0c\x55\x3b\x1a\x99\x55\x42\x8e\x63\x3b\x3c\x33\xe1\x61\x90\xdb\x61\x2b\xd3\x17\x28\x29\x61\x0e\xb4\x43\x17\x66\xcd\xb5\x10\x47\x2e\x74\x6c\x41\xcb\xb9\xd3\x0e\x3f\x31\xe1\xcd\x89\xd5\x5a\x62\x6c\x95\x90\xb3\xae\x1d\x7e\x6e\xf7\xf6\x67\x7e\x4e\x3c\x31\x5e\x67\x68\x1a\xdb\x86\xb7\x41\xda\x9e\xc3\x0f\xef\xef\xc3\x00\x1e\x39\xe7\x7f\x66\xf8\x67\x82\x7f\xc6\xf8\x67\x8e\x7f\xbe\xf0\x2a\x1e\x98\x35\x9e\x35\x6d\xaa\xfb\x7b\xeb\xbb\x70\xbe\xa7\xce\xf7\xb5\xf3\x9d\x39\xdf\x4b\xe7\xfb\xd6\xf9\x5e\x39\xdf\x37\x86\xc7\x15\x3a\x1f\x04\xbf\xfd\xbf\x53\x08\x97\xfd\xe1\xe7\xfe\x44\x9e\xbc\xf1\xa0\x1f\x96\x25\x2b\x2a\x61\xa4\xbd\x9c\x26\xd1\x94\xac\xf2\x05\xe8\x79\x27\x45\x38\xe3\xf9\x8b\x19\x2b\x39\xe8\x88\x81\x69\x81\xee\xab\xe0\x37\xa4\x9c\x17\x49\x56\x8d\xf7\xca\x6a\x95\xc2\xdb\x7f\xb3\xb0\x22\x5e\x9e\xa5\x2b\xf2\x1f\x10\x79\x43\xa9\x28\x7c\x10\x9b\xd5\x15\x05\xd4\x52\xe5\x44\xc8\x62\x24\xc9\xb0\x30\xbc\x71\x31\xca\x17\x15\x59\x4e\xc3\x8a\x8c\x8a\xfc\x9a\x41\xc9\xa5\x8c\xdf\xb2\x64\x05\xd2\x8a\xdd\xce\x59\x54\x25\xd9\xc4\x1c\x02\xa3\x97\x44\x84\xe6\x40\xcd\xe4\x08\xe9\x32\x9f\x33\x20\xb8\x16\xfd\x29\x19\x2d\x2a\x20\xb4\x2a\x09\x75\x09\x7d\xe6\x2c\xe4\xc3\x90\x13\x96\x41\x18\x99\x34\x9f\x24\x11\x04\x9f\x01\x0d\x4c\x9c\x8c\xc7\xac\xb0\x2b\xd4\xa3\x81\xaa\x6f\x89\x8e\xa1\xd3\x8a\xf2\x2c\x4e\xb0\x71\xec\x36\x25\x21\x25\x23\x4a\x22\x4a\x62\x4a\x18\x25\x63\xe3\x4a\xae\x31\x68\xd8\x56\x73\xd0\x30\x2c\x21\x06\x22\x08\x02\xa2\x7c\x28\xac\x7b\x7f\xfb\xde\x6e\x47\x23\xa9\x2f\xed\x32\xd4\xe1\x2a\x2a\xca\xa1\xdb\xb1\xf5\xe1\x86\xcd\xae\xea\x95\xa5\xfb\x37\xad\xdb\x1f\x81\x9b\x34\xf3\xae\xeb\xc6\x08\xd9\x79\x9b\x64\xc9\x38\x61\x31\x61\xb7\x11\x03\x93\x58\x92\x47\xb0\xa3\xc6\x03\xc2\xa7\x3e\x1f\xc6\x2c\xcf\xf6\x66\x12\x30\x66\x37\x84\x65\x37\x49\x91\x67\x1c\x79\x53\xa5\x45\xc8\xce\x38\xc7\x35\x39\x5e\xa4\xa9\xdb\x5d\x3e\x5b\x63\xec\x4f\x98\x92\x29\x4b\xe7\xe3\x45\x4a\x96\xa8\x1a\x28\xbb\x3b\xb2\x1a\x45\x0e\xe7\x42\x1a\x7c\x4d\x8b\x09\x5c\x97\xb8\x83\x7b\x31\x70\xa0\xc0\xdd\x95\x04\xa4\x37\x78\x0c\x1d\x90\x84\xdd\x82\xcd\xd3\x30\x62\xde\xfe\x7f\x94\xfb\x13\x6a\x69\x4c\xa5\xae\x81\x23\x70\x2e\xeb\xdf\xdd\xbd\x18\x88\x8b\x66\x13\x71\xd1\xd6\x63\x14\x74\xca\x96\x07\x4b\x40\xe0\x9d\xf2\x63\xfe\x3e\x9f\x93\x80\x1c\x0c\xc8\xfe\x3e\x59\x32\x12\xe7\xd9\x4e\x45\xa2\xb0\x60\x62\x29\xab\xe9\xb5\x53\x92\x7c\x99\x61\xc0\x1e\x47\xe5\x97\x2b\xab\xfe\x16\x15\xbe\xaa\x44\x32\x6a\x32\x49\xf3\x51\x98\x8a\xc0\x57\xb0\xe4\x12\x50\xef\x91\x79\x9e\x61\x6c\x27\xd0\xc8\xee\x74\xf7\x65\x42\xf7\xaa\xd4\xba\x09\xce\x57\x55\x60\x3e\xe9\x74\xc7\xd2\x31\x2e\x2d\x35\x37\xe5\xca\x02\x36\x1c\xa0\x9f\xa1\x0a\xae\x67\x14\x15\x68\x6c\x2c\x8c\x30\x8d\xc5\x45\x67\x36\x16\x47\x98\xc6\xe2\x48\xae\xcd\xc5\x11\xc6\x89\x0c\x28\xf2\x94\xc6\x7f\x47\xfa\x72\x4d\x93\x72\xc7\xf7\xd4\x75\x97\xe5\x2b\x23\xe9\xe9\xf1\xd2\xbe\x12\x43\x88\x74\x3e\x10\x0f\xe3\xc3\x40\xb5\x6b\xf6\xf3\x22\x99\x24\x59\x98\xa2\x31\x26\xe0\x3a\xac\xd0\xfa\xdf\xca\x91\x26\xdd\xef\x45\x08\x2e\x01\x39\xac\x20\x80\x87\x34\xf0\xb4\x7d\x21\x9d\xba\x07\x58\x60\x7f\x5f\x46\x42\xc4\xf8\xdb\xc4\xe0\x41\x64\xb4\x92\xf8\x23\x30\x60\x22\xc0\xd5\x45\x32\x71\x12\xd4\x65\x68\x35\xac\x04\x06\x58\xdf\xfb\x22\x9f\xb3\xa2\x5a\x09\x03\x4d\x4a\x86\xdb\xc2\x9c\x77\x9b\x4a\xfc\x87\x95\xe9\x6c\x29\xfc\xcf\x30\x63\xc2\xaa\xbe\x73\x07\x82\x19\xc3\x4a\xc6\x1e\x41\x44\xd2\x81\xcc\x59\xe3\x8f\xb5\xff\x48\x74\x92\x7f\x35\x2a\xc9\xef\x46\x45\x4c\x8e\x8d\xf8\x38\x55\xce\x1a\xa7\x06\xb0\x21\x0e\x00\x18\x58\xe8\x69\x45\xab\x33\x59\xeb\xee\xc2\x6f\xf2\xbc\x64\x6d\x3e\xc3\x70\x29\xf1\x35\xce\xb8\x1a\x08\x39\x6e\xbd\xb0\xed\x9e\xae\x00\x6c\xe8\x16\xe7\xd7\x61\xb6\xde\xa6\xdb\x82\xf1\x69\x15\x34\x72\x3e\xe3\x42\x46\x2f\x52\xf0\xcc\x5b\x8c\xca\xa8\x48\x60\x0b\x3d\x9b\x86\x73\xe1\x39\x55\xb7\x41\xa8\x8a\xd5\x19\xc2\x8e\xd8\x06\x3b\x04\x2a\x60\x3f\x65\xe5\x63\xa1\xb3\xbc\x4a\xc6\xab\x77\xac\xac\x58\xcc\x9b\x78\x08\x9e\x9f\x89\x44\xd5\xf1\x66\xd3\x0b\xdf\xe9\x6b\x95\x17\x6c\x63\x27\x1f\x8d\x73\x2c\x02\x81\x3f\x04\x37\x11\xf6\xad\x0f\xe1\xa9\x47\xce\x9e\x7b\x38\x7c\xc3\xed\xff\x1c\x85\x23\x96\xee\x17\x8b\xac\x4a\x66\x6c\x9f\x0b\x21\xac\x28\xf7\x59\x39\xdb\xb7\xe0\xc1\x3f\x56\xd4\x04\x0a\x6f\x4a\xee\x88\xe1\x7b\x22\x0d\x64\xc8\x5a\x4c\x0c\xd0\x88\xed\xe8\x42\x9b\x27\x8e\x00\xba\x33\x48\x49\x1b\xa6\x90\xac\xbc\xdb\xdd\x5f\x54\x49\x5a\xee\xab\x5a\x8d\x4a\x84\x00\xe5\x82\x8a\xe4\x1d\xe1\x5f\x3d\x2f\xd8\x38\xb9\xfd\x94\x95\xe1\x98\xbd\x49\xc6\x2c\x5a\x45\x29\x7b\xcb\xaa\x69\x1e\x97\x3a\x0a\xc5\x07\x53\x45\xfa\x81\x8d\x1b\xdd\x86\x21\x3e\x4b\x12\xff\x12\x16\xd9\x11\x97\x46\x3e\xb0\x88\x25\x37\x49\x36\x39\xe3\x9d\x31\xac\x5e\x0d\x85\xe0\xb2\x19\xd8\x33\x84\xf2\xf6\x2a\x9d\x5b\x48\xd3\x8c\x65\x23\x1e\xca\xf7\x41\xd0\xc2\xdb\x79\x26\xd5\x3a\xcf\xf5\x89\x43\xc5\xbb\x9c\x86\xd9\x84\x13\xf2\x57\x18\x94\x5f\x49\x8e\xa7\xc5\x71\xba\x82\x8b\x5b\xb2\x83\x77\xd5\xb3\xbc\xac\x48\x9a\x5c\xb3\x74\xa5\x63\x60\x96\x8c\xe1\x21\x12\xa5\xcc\x11\x8b\x42\x2e\x3d\xf3\x2c\xb4\x49\x8e\xf9\x91\x07\x6a\xf9\xc0\xe2\xc5\x2d\x79\xd2\xbd\x05\x89\x18\x6f\x53\x74\x1a\x1e\x1b\xb3\x9c\xa4\x79\x36\x61\x05\x99\xe6\x7c\xf3\x07\x77\x93\x82\xc5\x8b\x88\x15\x25\x56\x13\x2e\xaa\x9c\x1f\xef\xa2\x30\xe5\x08\x9e\x31\xa6\xa2\x6c\x4e\x92\x6a\xba\x18\x75\xa3\x7c\xb6\xcf\xcb\xdc\x5e\x95\x22\xe4\x26\x7c\xed\x17\x2c\x65\x61\xc9\xca\x7d\xa8\xa7\x0a\x27\xfb\x37\x4f\xba\xbd\x6e\x8f\x48\xe1\x7d\x96\x4c\x30\x9c\x0a\x5c\x43\x16\x78\x1e\x2a\xbb\x3b\x4a\x74\x11\xbc\xc0\x71\x53\x94\xb4\xf5\x80\x7e\x7f\x57\x8e\xc1\xe0\x08\x22\x33\xff\x64\xd8\x6e\x19\x5e\x6d\xb2\x08\x9c\x62\xc4\x33\x38\xda\x0b\x54\xe6\x91\x1d\xf8\xbd\xe3\x7a\x1c\x9a\x2b\x07\x01\x55\x99\x5d\x32\xdc\x3e\x33\xb2\x45\x0c\x16\x2c\x27\x91\x22\x01\x5c\x5e\xff\xf9\x7f\x5c\x5e\xbe\xff\xf4\xe1\xe4\xf2\x92\x8b\xbe\xc4\xb4\x69\xdc\xe0\x9a\x86\x7b\x9b\xac\x8a\x92\xcb\x06\xa7\x31\x20\x01\xec\x36\xc8\x31\x01\xd4\x78\xe7\x59\xc2\x21\xcc\xef\x32\x27\x14\x8d\x14\x6c\x6c\xd9\xda\xa3\x19\x64\xc1\xc6\x24\x20\x77\x6b\x0a\x3f\xcf\x25\x75\x2e\x84\x67\x8e\x4e\x90\x00\x36\x41\x2f\x84\x5f\x24\x95\xf5\x13\xcb\x04\x58\x21\xa7\x66\x80\xb0\x26\x11\xd7\x3d\x4d\x4e\x41\xae\xa3\x18\x09\x0c\xc2\xd5\x9c\xe4\x8c\xaa\x84\xa5\xf8\xc0\x2a\x6d\xf5\x08\x2d\x15\x21\xe5\x51\x0e\x5e\x82\xe8\x8f\xb1\x5e\x97\x86\x8e\x8f\x33\x8f\x6c\x30\x93\x96\x14\x12\xd6\xd1\xb5\xa9\xf2\xf5\xda\x89\xfd\x7d\x50\x45\x7d\x7a\x77\x76\xf4\xea\xe4\x92\xb0\x1b\x2e\x85\xc3\xc9\x73\x39\x65\x05\xd3\xfa\x22\x43\x81\x70\x23\xcc\x7a\x80\x58\x1b\xf6\x85\x43\xb2\x23\xea\xb5\x1c\x1f\x90\xd1\xe2\xfb\x20\x3b\xa4\x4f\x76\xda\x73\x55\xff\xeb\x93\xfe\x5c\xa1\x71\x61\xd9\xcf\x65\xa8\x7d\xb7\xbc\x34\xa5\xdd\xbb\x31\xce\x10\x33\x46\x82\xe2\x68\x5b\x86\xf0\xad\x3b\x4e\x93\x29\xbb\x9a\x0d\x26\x9a\xae\xa1\x09\xb4\xd1\x37\xb6\x6c\x57\x48\x21\x44\xbd\xf5\x64\x88\x29\xe2\xa6\xd7\xb5\x31\x1d\x58\xcd\x35\x59\xb4\x7a\x8d\x4c\x53\xae\xe3\xa6\x3c\x6b\x19\x34\xe3\xd9\x56\xb0\xbe\xe0\x6b\xe2\x48\x4b\x59\x24\x68\x7d\x7e\xaf\x6b\x87\x58\x67\x9b\x00\x69\xad\xf5\xe8\x80\xca\xd4\x8f\xd3\xa4\xd4\x26\x8c\xb1\x27\x82\x29\xa9\x6d\x83\xa5\xe3\xa6\x2d\xe3\xdf\x15\x6b\x69\x58\x33\xa0\x95\xda\x8b\x4d\x5d\x61\xb7\x15\xcb\x62\xe5\x94\x23\xbf\x5d\x1f\x79\xce\xda\xf4\x32\xa8\xc2\x62\x62\x18\xcb\xf1\xbd\x19\xc2\xb0\x26\xa8\x18\x4a\xc8\x33\xe2\x3e\x10\x31\x20\xc9\xee\xae\xc3\x6c\x85\x52\x3b\xd0\xc0\xe7\xc9\x85\xc1\x7c\x55\xbd\xd7\x6c\x05\xc6\x5a\x00\x5f\xf3\x51\x13\x88\xea\x03\xd6\x34\x2c\x4f\x97\x99\x3c\x79\x22\xc3\xc6\xb2\x94\x57\xe5\xbb\xde\x89\xd0\x1b\x19\xed\x02\x01\xe1\xab\xc5\x05\xd0\x62\xd0\x52\x81\x02\x75\x34\x19\x9e\x4b\x8a\xb6\x18\xef\x3f\x34\x3e\x78\xd3\xf2\x4b\x52\x4d\xf3\x45\x25\xba\x94\x30\x79\x68\x15\x9d\x62\xb7\x51\xba\xd0\xde\x36\x30\xfb\x04\x6d\x65\xf0\x2a\x69\xd1\x8f\x6b\x9b\x13\x15\x51\x86\x25\xab\xd2\xb0\xd4\xdf\xd9\xca\x98\x00\x10\x61\x45\x90\x5e\x01\x5e\xb3\x15\x25\x89\xf4\x88\xe0\xe3\x94\x80\x42\x13\xc6\x5e\xd7\xd2\x38\xf8\xd7\x28\x05\x29\x20\x1c\x74\x39\x9a\xb2\x2f\xf8\x9a\xfe\xe9\x18\xa3\xb8\x3c\x07\xa7\x52\x19\xc7\x53\x5a\x10\x6e\x1c\x38\x7b\x2d\xa8\x01\xe2\xd4\xde\xdf\x27\x2c\x8b\xc2\x79\xb9\x48\x21\x90\x38\x17\x2c\x4d\x96\x22\x14\xff\xbc\x5f\x51\x9e\x65\x78\xf1\x40\x42\x6d\x77\xca\x05\x66\xb8\xad\x01\xd9\x18\xb8\x19\x25\x61\x39\xcc\x40\x27\x9a\xa6\x24\x2c\x49\xc6\x4a\x28\x66\x56\x5c\x92\x7c\x4c\x62\x56\x46\x2c\x8b\xc3\xac\xd2\x15\x96\x94\x94\x39\x8a\xec\x4b\x46\xa2\x30\x93\x57\x10\x70\x57\xb4\xbf\x4f\xe0\xe1\xa7\x0a\x10\x92\x45\x48\xc1\xf6\x84\x60\x30\x62\x63\x7e\xac\xd0\x35\x97\xc2\x07\xe6\xcd\xc9\xd1\x87\x93\x63\x1d\x3a\x02\xe2\xde\x2e\xd2\xf4\x4d\x52\x56\x2c\xe3\x02\xbb\xd8\x42\xf0\x80\x6e\x04\xe0\xc3\x04\x61\xed\xeb\xc4\xc0\x13\xbe\x3a\xa2\x8e\x97\x79\x9a\x32\xcb\x7c\x77\x7f\x1f\xa8\x23\x6e\xbf\xf7\xf9\x56\x48\xe6\x61\x55\xb1\x22\xe3\xa7\x94\x28\x9f\x27\xd2\x82\x16\x28\xb8\x53\x8a\x2a\xf1\x74\x14\xe5\x31\xdc\x3e\xf1\x7a\x3e\x9e\x1e\x9f\xf6\x49\xc1\xd0\x0a\x73\x97\xaf\x93\x52\xc4\xf7\x87\x6b\x37\xbc\xaf\x2a\xd8\xa2\x04\x17\x6d\x2e\x56\x1c\xca\x49\x2a\xda\x97\x5a\x3b\x4c\xcc\x50\x68\x15\x29\xb6\xa3\x0b\x38\x1b\x1a\x34\x80\x6f\x53\xc6\x12\x85\x05\x59\xb5\x93\xa2\x6a\xc8\xce\x59\x2b\xbb\xc8\x56\xe2\x9a\xfc\x30\x35\x06\x45\x57\xc9\xdb\x6c\x62\x8a\xc6\x82\x53\x05\x5b\x98\x2d\xd1\x10\xe7\xc9\x45\x83\x98\x21\xf0\xb4\x94\x7f\xfc\xab\x41\xbe\x14\xe8\x98\xc5\x0c\x8d\x8a\x36\xdc\x96\x69\x9e\x6c\xda\xe9\xac\xa9\xe1\x71\x63\x01\x70\x3e\x80\xa4\x0e\x14\x25\x7c\x49\x7c\xf1\xdd\x2d\xd3\x24\x32\x45\x26\x9e\x8d\x2e\x25\xaa\x45\x57\xc4\xd6\xee\xce\x5a\x73\xd5\xe0\xf3\x6c\xa1\x76\x7f\xaf\xc7\x22\x50\x03\xec\xd7\x5d\x9f\x9d\x0e\xd9\xee\xb5\xbf\xb3\x4f\xa2\x57\xe5\x1c\xd2\xe1\xb7\x64\x8b\xaa\x93\x94\x1c\xd8\xce\xcc\x6a\x60\xd7\xa6\x3a\xdf\x3c\x68\xf2\x33\xa5\x73\xa2\xac\xf9\x88\xa8\x04\xb3\xa0\x27\x58\x1d\x2a\xd4\xcf\x16\x23\x4a\xf2\x0c\x94\x5f\x2f\xa7\x61\x36\x61\x86\x90\x93\x08\xc1\x57\x4a\x7b\x03\x23\x43\x15\xe7\x42\xbe\xfc\x6d\x02\x58\x95\x92\xc0\x6e\xc4\x04\x34\x06\x52\x33\x39\x95\x6b\x2e\x28\x8b\xeb\xb9\x87\x74\x75\xfe\x35\x3b\x5b\x3b\x03\x8b\xc3\x58\x18\xc7\x4a\x91\x69\x9e\x0e\xcc\xf4\xfa\xac\x07\x84\x4c\x05\xab\x1a\x66\xe3\x0e\x46\x63\xdc\x6d\x58\x40\x96\x78\x21\x90\x71\x15\xab\x26\x42\x6e\x9e\x67\x23\xa3\xdb\x92\xec\xa8\xa9\x01\x77\x5a\xeb\x78\x87\x3a\xbd\x66\x8b\xff\x22\xcf\x53\x16\xa2\x23\xa3\x39\x46\x8d\x2d\x98\x44\x31\x5b\xb0\x89\x65\x45\x38\xaa\xd5\xeb\xb8\xb9\xdb\xd3\xc2\x99\x73\x87\x4e\x82\x35\xa0\x5e\x7d\xfe\xf9\xa4\x6f\xcc\x67\x63\x60\x1a\x40\x6d\x7f\x7a\x8b\xa1\xb7\xee\x99\xee\x92\xb5\x49\xf3\xc9\xea\x8a\x49\x9c\x4f\x4d\x4c\x4c\x79\x61\x3f\x8e\x3a\x9e\x83\x71\xeb\x7a\xaa\xcd\x19\xb1\x37\xb6\x77\xb8\xbe\xe0\x9c\x3e\x8a\xb9\x62\x2e\x39\x70\xcf\x44\x7d\x83\x90\x88\xef\x6c\xc6\x15\x96\x4a\x46\x5e\xff\x5b\x14\xea\xcd\x67\xbb\x47\xd4\xd8\x58\xce\xaa\x59\x1e\xad\x1e\xae\x4b\x40\x5a\xa5\x37\x1d\x04\x1e\x51\xe5\xa6\xe2\x66\x3b\xd3\x3c\x29\xe1\x3a\x23\x89\xe4\xf5\x00\x24\xed\x65\x79\x86\x6f\x8c\xef\x95\x98\x6b\xa8\xf9\xb5\x45\x09\x96\xd0\x26\x00\x9b\x6f\x2a\xac\x60\x09\xad\xd7\x15\x77\xa4\x6e\xef\x66\x03\xef\x25\x26\x36\xd6\x84\x71\x6e\x1e\xcc\xbc\x7f\xd9\x65\xc7\xbf\xe1\x0e\x63\x9a\x57\x1f\x98\x70\x9b\xfc\x59\xb8\x23\xa1\xc1\x08\xdc\x70\x2c\x66\xb3\xd5\x99\x8c\x5e\xe5\x08\xe7\x59\x9e\xcf\x85\xd8\x6e\xa4\xce\xc2\x6b\x26\x9f\x9c\x86\x92\xe3\x85\x3c\x14\xcb\x64\x4a\x4c\x4d\x15\x3f\xc9\x14\xe1\x1c\xcf\x46\x02\x82\x1f\xc2\xc3\x4c\x78\xf5\xa0\x10\x5e\x15\x61\x74\x5d\x82\x87\x04\xda\x01\x94\xea\xf1\xa6\x62\x91\x95\xca\x43\x4a\x55\xa1\x54\x56\xc5\x22\x33\xe4\xc5\x62\x91\xa9\x89\x21\x11\xaa\x05\x44\x33\xc2\x7f\x4a\x31\x52\xa9\xd9\xd4\x09\x50\x95\x46\x76\x2d\x6f\xe7\x3c\x33\x92\x61\x5d\x2c\xc3\x3a\xf8\x70\x48\x4c\x51\x6d\xca\xe5\x3f\x95\x52\x8f\xfd\x41\x74\x26\x7a\xbf\xaa\x4e\x7c\x92\x31\x76\x2c\xc9\xd6\x2a\x31\x17\x78\xab\xf6\x9b\xc1\x94\x71\x90\xc9\x8d\x4d\x95\x84\x11\x46\xd3\x41\xef\x6b\x91\xab\xb5\xe9\x44\x2b\x75\xb8\xb8\xa9\x69\x82\x72\xce\x25\x4c\x4d\x9d\x21\x4e\xd3\x47\xf1\x0d\x3f\xcf\xc6\x1e\x17\x43\x79\x35\xb2\xfc\x2b\xf4\xb5\xe3\x87\x44\x8c\x96\x8d\x93\x2c\x81\xc9\x35\xcf\x33\x88\x97\x00\x47\x20\x6c\x98\x9f\xaf\xad\x09\xaa\x25\xfc\x12\xae\xb5\x78\xe5\xfc\xc4\xbc\xa8\x18\xa8\xdc\x90\xe4\xb0\x98\xc1\x14\x52\xe9\xf0\xc3\x2c\x56\x17\xbe\x5d\xf2\x2a\x2f\x08\xbb\x0d\x67\xf3\x94\xf5\x45\xe7\x5d\x7d\xa1\xd3\x13\x4f\x16\x36\x02\x5f\x06\xcf\x89\x67\xb6\x82\x29\xe6\x5e\x0c\x1e\x7c\x18\xa3\x85\x7f\x94\xe7\xa8\xaa\x87\x8f\xd7\xf1\x85\x0a\xc6\x52\x86\x37\xec\x23\x82\x8f\x13\x96\x72\x96\xf2\x5c\xa1\xeb\x85\xd0\xe5\x97\x9c\x99\xe6\x5c\x72\x94\xc0\x9e\x55\x1b\x15\x45\x7d\x5f\x54\xbb\xf6\x7d\xef\x73\xbe\x28\xb4\xa2\x1f\xd2\x8f\xa2\x88\x95\x60\x08\x2a\x1b\xe0\xf4\x17\xa6\x9b\xb1\xd4\x7c\x08\xaf\x48\x52\xe6\xce\xe0\x25\xac\x04\xfd\xc5\x28\xc9\x62\x62\x63\xc6\xab\xcf\x17\x55\x99\xc4\x0c\x0d\x5b\x59\x62\x30\x86\x10\xcc\x10\x39\xf1\x66\xc9\x6f\x70\xc5\xd7\x25\xa7\x42\x6b\x32\xe7\xbb\x2b\xb4\xed\xd0\x9d\x84\x05\xd3\xb9\xbc\x01\x73\x3a\x88\xe9\x44\x49\x98\xe6\xd9\x04\xfd\x3c\x79\xa7\xd2\x70\x05\x57\x0c\x7c\xd0\x7f\x29\xc2\xf9\x9c\xc5\xc6\xae\x14\x0a\x85\x10\x8b\x72\xc3\x88\x15\xbd\x7c\xdf\xe5\x95\xd0\x3e\x34\x4c\x59\x77\x8e\x86\x69\x4a\xa2\x30\xe2\xe4\xdf\x9f\xb1\x59\x2e\xba\xc5\xfb\x9e\x64\x23\xb0\x06\xe6\x18\xe4\x8b\x0a\x3e\x78\x03\x38\x62\xe4\x38\xc7\x57\xec\x4a\x56\xeb\xb0\x72\x0b\x5e\xe2\x5e\x4e\xb0\x66\xbe\x12\x5c\x06\x1c\x85\x69\x0a\x03\xb9\xca\x17\x85\xb9\xcc\x28\xc9\xab\x29\x2b\x96\x89\x30\xa2\x7c\x89\x6d\x18\xfa\x2d\x61\x0f\x2b\xf5\x4b\x79\x46\x20\x2c\xb8\xb0\x1f\xce\x0b\xb1\x90\xe0\x5e\x9a\x75\x87\x19\x3f\x42\xd6\xa8\xbe\xbf\x2f\xd7\x82\xf4\x60\x1d\x66\x97\x05\x1b\x5b\x21\x61\x8d\x7b\x05\x4a\x2e\x6b\x77\x0d\xc6\xdd\x13\xde\x14\xd6\x15\xea\xea\x06\xb1\x76\xaa\x2b\xd8\xf8\x09\x09\xe0\xaf\x5a\x4a\x90\xf8\xa7\x09\x83\x77\xde\xe5\x44\x40\x98\x27\x5d\x3b\x59\x95\x69\x86\xae\x55\xa2\x50\xb3\x1e\xbc\xc8\xcc\x28\x7f\x82\x5f\x0e\xb7\x5f\xba\x9c\x70\x9b\xec\xe2\xd5\xd8\x2e\x19\x6e\xfb\x32\x06\x3a\xe9\x37\xb6\xe5\xf4\x66\x06\x72\x86\xd5\x13\x9d\xa4\x60\xeb\x50\x56\x41\x13\xfb\x1d\x67\xd6\xed\x28\x3c\x1a\xea\xc5\x0c\x9c\x29\x2f\xf3\x45\x06\x7b\x99\x42\xc4\x49\xa7\x5a\x25\xd3\x08\x5f\xaf\xc7\xc4\x4b\xdb\xef\xf5\x9b\xc1\x1d\xa4\x70\xdb\xc3\xe7\xee\xcf\xaa\x50\x21\xe5\xa4\xcb\xe3\x5b\xa9\x19\x6e\x0b\x80\x42\xb3\x56\xb3\x89\x26\x44\xe6\xeb\x37\x43\xba\x18\x6a\x03\x02\x81\x9a\x48\xd0\xa8\x38\x10\x7f\x6a\xb0\x47\xe0\x43\x86\xe6\x07\xba\x59\xb7\x1e\x4c\x5e\x82\x0b\xf4\x58\x35\x27\xbe\x15\x94\x93\xaf\xe1\xad\xc9\x0d\xe1\x5a\xfb\x36\x88\xaa\x42\xcc\x1d\xc9\xbb\x83\x07\x2e\x31\xa0\x12\x4a\xce\x87\xdb\xf6\x1c\x1f\x6e\x53\x32\xdc\xd6\xf3\x0d\xbf\x9d\xf1\xc6\xc4\xb6\xd1\x12\xb9\x82\x12\xf8\x25\xb0\x1d\x6e\x5f\x58\xcf\x04\x6c\xb2\xd2\xd8\x71\x4f\x0d\x58\xe6\x46\xc9\xe5\x0d\xd2\xfa\xee\xae\x82\x8b\xdc\xab\x53\x37\xbc\xd8\x9a\xda\x7c\xb0\xe5\xaa\xb4\x06\xf5\xb8\x7b\x51\xb3\x8c\xbe\xc0\x69\xbe\xd4\x6d\x0c\x5e\xb4\x6e\xe2\xcb\x8f\x6e\xdd\x2d\x68\x5d\xc9\x6a\x1b\xac\x22\x9c\xf3\xf9\x21\xd8\xa2\xe7\xee\xca\x5a\xbf\xa1\xdc\x5a\xea\x87\xc2\x7a\x29\x3e\xe0\x9f\xf3\x05\xbe\xc8\x32\x87\x17\x74\xea\x97\x38\x86\x4d\x05\x47\x0a\x8d\x83\x81\x1f\x7b\x06\x7f\xe4\x6c\xb9\x4b\x5e\x67\x65\xc5\xc0\xde\x09\x0c\x09\x62\x84\xfb\xdb\xd9\xe9\xbb\x2e\x7a\x5b\x25\xe3\x55\x1d\x0d\x5f\xaa\x49\xe0\x91\x69\x27\x57\x30\x64\xb7\x50\xd7\x14\x54\xee\xef\xeb\xf9\x99\xc8\xd8\x51\x49\x3b\x46\x2b\xb1\xb5\x5f\xd9\x2b\xcb\x6b\x42\xc1\x36\x08\x72\xf6\x72\x63\x2d\xcb\x0b\x63\x3e\x2d\xec\x95\x6e\x04\x38\xb4\xdb\xeb\x93\x96\xdd\x4b\x93\xb7\x4f\x1a\x36\x16\x67\xad\xf7\xdd\x84\x07\xb9\x75\xbf\x35\xa7\xc6\x5d\xfb\xa4\xc6\x30\x05\xa7\xe8\x13\x97\xc1\xc5\x66\xd7\xe2\x86\x7e\x35\xd1\xb7\xdf\x98\xaa\x8a\xb8\xc3\xdb\xaf\xa5\xc8\xdb\x30\x72\x14\x55\x8b\x30\x4d\x57\x64\x9c\xdc\x92\x7c\x51\x80\x98\x08\x8f\x8a\xb7\x58\xba\xe8\xf3\xee\xfe\x9f\x09\x2b\xd3\x24\xab\xf6\xe2\xa4\x14\x11\xf4\xc3\xa8\xda\xcf\xf2\xbd\x98\xcd\x0b\x16\x81\x35\x20\xfa\x33\x11\x3b\x94\x2a\x5c\x27\x0a\x39\x31\xc0\xa4\x9a\x51\xda\x03\x66\x69\x35\xc3\x34\x51\x5f\xb3\x5d\x9a\x19\x69\x4f\x70\x85\x56\xd3\xad\x66\xe3\xad\x3f\x6a\xbe\x25\xe3\x84\x6b\x46\x2f\x7e\xd5\x20\x4a\x53\x17\x63\x67\x19\x73\xd6\x72\xf9\xd1\x45\xf1\x92\x04\x90\x31\x38\xff\xfd\xbd\x44\x4c\x27\xd6\x0a\x43\xa1\xb7\x79\xcc\x2b\x90\x3a\x77\xa7\xa2\x7a\xbc\xf4\x92\x55\x62\x6e\xbd\x96\x8f\x93\x05\xad\x59\x5d\x7e\x8e\xf3\x5a\x2c\x5e\xda\x92\x79\x5d\x9a\xe9\xd9\x6c\xdb\xe8\x35\x05\x39\x78\x91\xc6\x70\xd8\x19\xf3\x03\xe3\x70\x38\xdc\x06\x96\x6a\x19\x49\xf2\x54\x92\x64\xf2\x4d\x2d\xb8\x5b\x16\xe6\x87\xea\x28\x92\x8f\x05\xcf\x46\x70\xf8\x6d\x32\x41\x59\x4f\x97\x9c\x60\x2d\x4a\xbb\x05\x4e\x31\x7a\x57\x48\x32\x12\x12\x6d\x8c\xcb\x91\xf4\xb1\x5e\x50\x0a\xcc\xd3\x24\x4a\xf8\xf9\x0b\xb6\x93\x0d\xf8\xc2\x5b\x6d\x1c\x37\xbe\xcf\x6c\x46\x69\xb8\xed\x37\xc4\x2c\xee\x26\x59\xa2\x75\x61\xad\x00\xe6\xf5\x9c\x0d\xd4\x60\x58\x58\x0b\x05\xad\x6e\xbe\xc4\x1a\x6b\x30\xfc\xfc\x83\xa6\x9f\xfa\x2c\xf6\xd4\xc2\x6e\x7f\x9f\xbc\x16\xde\xad\x9a\xf8\x6a\x5f\xc5\x65\x01\x8a\x1a\xb1\x4c\x93\xaa\xb4\x8d\x34\x74\xb8\xb9\xaa\x08\xb3\x12\xef\x73\xac\xfa\xab\x9c\x84\xd9\xca\x34\x8b\x10\x0d\x80\x5d\x06\x6f\x61\xb7\xac\x29\x8b\xc5\xcc\x1a\x90\x04\x45\x06\x56\xa2\xfa\xc0\xaa\xd9\x2a\xa6\xb5\x13\x49\xd5\x25\xa7\xf2\x68\xcd\x51\x26\xe5\x34\x8c\xf3\x25\x6a\x14\x84\x1b\x92\x59\x96\x0a\xa3\xea\x30\x4d\xf3\x65\x69\x35\x21\x99\x2d\x2a\x3d\xaa\x22\x4f\x49\x5e\xc4\x8c\x0b\x19\x7c\xb2\xc3\x9d\x5d\x82\x81\xcf\xe0\x90\x3f\x4e\xf3\x25\xa9\xf2\xf9\x5e\x9c\x2f\xb3\xae\x4d\x7d\x0b\xdd\x80\x38\xbc\xe3\x10\x9f\xa8\x93\xb7\x5c\xf6\x7d\x8c\x3b\x99\xf8\x38\x1a\xf6\xba\x4f\x1f\x12\x04\x55\xf8\x64\xc5\xcd\x1c\x78\xaa\xe6\x86\x98\xa0\xf5\x89\xa7\xe6\xc7\x71\x12\xb7\xbf\x39\x20\x33\x1b\x6e\xf4\xdb\xc4\x00\x75\x8d\xcf\x09\xde\xf0\xb4\xc1\x18\xbc\x63\xe3\x05\x10\xbd\x64\xc5\x0d\x2b\x08\xa8\xaf\x90\xab\x43\x54\xe7\xd1\xa2\xaa\xe3\x40\xc2\x2c\xb6\x46\xb3\x31\x7a\x77\x0c\x6a\x9e\x2e\x79\x21\x4c\xf2\x85\xb7\x37\xb5\xae\x3e\xc9\x94\x33\xe4\x4c\xa1\xd1\xed\x76\x63\xd1\x4a\xd7\x6a\xc2\x98\x78\xea\x1a\x0f\x87\x60\x89\x4c\x96\x71\xf4\xab\xf0\x9a\x11\x70\x25\x95\x15\x9e\x9d\x7d\xa0\x84\x23\x80\x46\x4e\x33\x36\xcb\x8b\x15\x49\x59\x78\x6d\xd7\xff\x31\x17\x71\x1d\x91\x01\x87\xa5\x34\xe3\x0d\xf1\x34\x61\x2c\xe3\x59\xb8\x22\xd3\xf0\x86\xaf\xcc\x64\x32\x61\x05\x8b\x49\x28\x74\x47\xa8\x32\x22\xa3\x95\x55\xb7\x54\x35\x02\x0a\x99\xd0\x1b\x72\x56\xcc\x57\x7d\x7d\x60\x28\x59\x32\xd1\x40\x0e\x6a\xaa\x45\x66\x28\xfe\x40\xab\x36\x0b\x57\x23\x66\xb5\xa1\xd4\x59\x5d\x93\x0d\xd5\xe6\x7c\xf3\x25\xbd\x06\x95\x2a\xf2\x62\x91\x79\x4d\xb1\xaa\xcd\x38\xe2\x1b\xd5\xef\x3e\x56\x38\xce\x8b\x88\x7d\xaa\x05\x87\x87\x29\xf9\x2e\xaf\x18\x2e\x4b\xd4\x2f\x72\x99\x9f\x73\x3c\x5c\xea\xd0\x65\x69\x5c\x6d\x04\xad\x43\xbf\x8d\xe7\xc1\xc1\x77\xdd\xa7\xdd\x1e\x06\x88\x6d\x5e\x4f\xae\xa4\xd8\x1a\x4f\xde\x04\x6a\xb4\x82\x6e\xa2\x8e\x86\xdb\xb4\xb8\xdb\xae\x26\x8c\x18\x90\x0d\x00\x5e\x53\x64\xf1\x47\x10\xfd\x51\x6c\xe6\x77\x46\xd8\x37\x47\xde\x98\x50\x7e\xf3\x1c\xfb\xd4\x78\x0b\xdf\x30\x21\xeb\x57\x3f\x00\xd2\x60\xf9\x91\xe5\xf9\xbc\x56\x93\x90\x2f\x9b\xaa\x30\x47\xab\xad\xf8\x43\x37\x48\xb6\x9d\x53\x03\x55\x27\x4d\xe2\xa6\x29\x38\x38\xb9\x0e\x45\x95\xe0\x28\x4f\x61\x64\xb8\xfd\x31\x27\xa1\xb8\xa5\x98\x32\x79\xae\x22\xfa\x25\xde\x55\xbe\x20\x19\xc3\x2d\xb9\x9c\xb3\x28\x19\xaf\x94\x70\x78\xa7\xcf\x75\xe2\x2d\x53\x11\x79\x43\xaa\xaa\xa5\xc2\x5f\x5c\x51\x60\x41\x47\x11\xe0\xf9\xa0\x5c\x97\x82\x5b\xd3\x34\x5c\xda\xbd\xda\xb8\x02\x36\x52\xa8\x9e\xeb\x69\x1d\xba\x31\x52\xcb\x5a\x15\xda\x1f\xa6\xb1\x59\x53\xbc\xb4\x2c\x7b\x2c\xb1\xd3\x15\xe4\xec\x4b\x56\x12\xb8\xaa\x02\xcf\x30\x95\xd1\x77\x62\xcd\xfa\x84\x56\xe6\x4a\x82\xc7\x5d\x58\xeb\xb6\xbe\x9e\x4f\xb7\x51\xc4\x5e\x79\x36\x55\x2c\x59\xfb\xf7\x49\x19\xca\xec\x68\x47\x45\x75\x11\x82\xec\x0c\xee\xda\x84\x67\x0c\x1a\xc2\xf2\xf9\xc6\x85\xd2\xbe\x38\xe4\xdc\x94\x5d\x29\x9f\x76\xc9\x91\xf1\xd2\x9d\x2d\x6a\x80\xe0\xa8\xef\xea\xb0\xb2\x9b\x24\x14\xb5\x60\x7b\xd9\x0e\x5e\x30\xb5\x4a\xc0\x94\x1f\xae\x6e\x92\x88\xc1\xde\x12\x5a\xbb\x26\x98\x3c\x18\x56\x7c\x5e\x4d\xa4\xd4\x09\x52\xb0\x94\xe7\xec\x9a\x04\xf8\x10\xf3\x63\x4b\xdb\x08\xd1\x3c\x41\x1a\x96\x88\x75\x73\x2c\x3c\xbc\xe2\x69\x14\x88\xff\xab\xcb\x34\x7f\xe5\xfb\x6a\xbc\xe0\x87\x3a\xe9\x08\xd9\x2c\xe3\xe0\x99\x53\x9d\x11\x4b\xb2\xc8\xe4\x53\x2a\x89\x7d\xa8\x41\x2f\xc5\x98\xd7\x21\x38\x88\x29\xaa\x93\x34\xcf\xe7\x54\x54\xfa\x6b\xad\xbb\xbf\xe2\xcd\x5b\x35\x65\x99\x7c\x3a\xba\x4b\x8e\xec\x06\xd8\x6d\x55\x84\x28\xb2\x43\xb4\x53\x71\x35\x27\x04\x2b\xb8\x7b\x65\x24\xbc\xc9\xe1\xba\x76\xb4\x22\x51\x3e\x5f\xc9\x8b\x72\xe4\x63\x24\xcf\xaa\x1c\x5b\xff\x15\x84\x25\xde\x9e\x23\x2b\x71\x11\x91\x97\x4a\x2a\xbc\x37\x0d\x49\x96\xef\xe5\x73\x02\xd6\xb3\xd0\xf5\x2e\x06\x41\xe2\x0d\xce\x8b\x7c\x14\x8e\xd2\x95\xd9\x72\x32\xb6\x46\x6d\xc7\x3e\xdd\x68\x4b\x31\xb4\xb5\x4f\xe4\x65\x22\x8c\x81\x7a\xf8\x5c\x83\xc1\xa5\x2b\x88\x7c\xe0\xf7\x62\x18\xaa\x19\x31\x95\x74\xfd\x0f\x8c\x40\x5d\x04\x6c\xd8\x4e\xeb\xdb\xb6\x0b\xa4\x27\x98\xbd\xe3\x6f\x62\x32\xae\x6d\xab\xe2\x30\x56\x86\xf7\x80\x6c\x65\x73\x34\x87\x11\x3d\x4a\xf8\xac\x3f\xb0\x55\xb7\x17\x35\xcd\x4d\xda\x9e\xe5\x32\xcf\x3e\xda\xae\xa4\xa9\xbe\x53\x6d\xe2\xa3\x60\x07\xb5\xfa\xd4\x73\x51\xda\xca\xa9\xf9\x31\xae\x3a\x69\x1f\xd3\xe0\x26\x03\xd9\x26\x78\x7b\x20\x38\x0f\xa9\x77\xf8\x57\xf4\x6a\xc8\x64\x00\xa1\x74\x45\x92\xd9\x1c\x2f\x26\x58\x8c\x61\xc3\x7f\xb5\x86\xf7\x57\x12\xb3\x8a\x15\xb3\x24\x63\x25\x49\x6c\xfe\xcd\x25\x97\x52\xac\x02\x2e\xb9\x64\x80\x1f\xf0\xe9\x2e\x39\xe5\x5b\x3b\x3a\x7d\x81\x7e\x61\x91\xa9\x96\xc0\x0a\x8b\xa5\x63\xb2\xc8\xaa\x24\x25\xe3\x45\x01\x7a\x2e\x38\x76\xd9\x1b\x84\xb8\xcb\x84\x68\x4a\x5d\x72\x9c\x8b\x75\x0e\xe7\x8c\x65\xb8\x22\x37\x25\x5f\x69\x78\x1c\x9c\xb3\x62\x16\x02\xd3\x6b\xec\x38\x2c\xcb\x38\x67\xf6\xea\x0e\x21\xce\x35\x0b\x33\x8b\x43\x55\xc9\x4c\xb0\x07\x8c\x38\x05\x7c\x4c\x70\x24\x58\xed\xe0\xbe\x2e\x96\x2c\x07\xa6\xc2\xa4\x21\x71\xb4\x2f\xe0\x0b\x36\x63\x1c\xb7\x31\x6f\xa9\x34\x4f\xc2\xed\x93\x52\xdd\x1e\x3f\x24\x4a\xb7\xbc\x0e\xf6\xbb\x2c\xa2\x49\x8b\x55\xb4\x7d\x42\xe8\x74\x1a\xb8\x8d\x5d\xe1\x26\x94\xc2\x38\x3e\xe1\xd4\xac\x1d\xe2\xac\x8c\x9a\x3d\x9d\x60\x17\xf2\x8e\xb7\xd3\x21\x5b\xee\xf5\x3b\x4f\x73\x37\xf7\x26\x64\x7d\xe5\x62\x06\x70\xb0\xdb\x72\x11\x8e\x9f\xfb\xa7\xa0\xdd\x82\x7d\x48\x79\x39\x09\x33\xa6\x30\xe6\x5b\x05\xc6\x90\x4a\x59\x78\x2d\x45\x16\x19\xd1\x47\x5b\xa4\x39\x7b\x2c\x9e\x88\x19\x48\xf7\x72\xc1\x61\xb0\x77\x30\xbd\xd9\x29\xd8\x78\x87\x94\x09\x5f\x2d\xbc\xbd\x9d\x92\x84\x5c\x1e\x46\x7f\x4b\x32\x0a\x23\xd5\x54\xb3\x10\x25\x0f\x13\x5d\xde\x81\x24\x9b\xa4\xac\xca\x33\x61\x6b\xc3\x17\xa3\x14\x54\x51\xb5\x22\xf7\xeb\x69\x9e\xc6\xb8\x6c\x74\x5b\xd8\x4c\x63\xe5\x94\xcc\x0b\xf0\x34\x96\xdb\xb3\xcc\x40\x39\x6c\xc4\x78\xfa\x24\x2c\x46\x21\xdf\xd8\xd1\x64\x9c\xaf\x7b\xdc\xb2\xc3\x4a\xb4\x3e\xe2\x1d\x8a\x5d\xf1\x8c\x8f\x2a\x8c\x7d\xed\xda\xae\x65\xdb\x10\xd3\xc0\x37\x4a\x76\xd1\xb4\xa6\xe5\x6e\xc0\x51\x79\x38\x53\xc7\xac\xe7\xdc\xc9\x93\xce\xfd\xe6\xed\x88\xb8\x31\xd7\xf5\x3d\x66\xd6\x99\x6d\x34\x28\x22\x1f\xa1\xd0\xd4\x15\x6c\x5a\x60\x8f\x71\xc0\xaf\x19\xba\x5a\xdb\x70\x93\x95\xe5\x43\x67\x6a\x9b\x1e\x1b\xcd\x50\xd1\xab\xd8\x06\x79\x60\xf7\xb6\x1e\xde\x92\x2f\xd6\xd5\xcd\xe1\xa0\x17\x36\x1f\xb1\x2d\x58\xfd\x07\xb7\x67\x19\x9a\x00\x0f\x26\xd2\x17\xa0\x1e\x61\x40\xc6\x18\x68\x37\xa5\xb6\x1f\xe8\xf8\x9a\xe0\x02\xa4\x7e\xc3\xd1\x7d\x28\x80\x40\xd3\xb5\x48\xbb\xf2\x4c\x51\x21\x66\x29\xab\xd8\xef\x28\xba\x96\xf7\xaa\xf2\x96\x96\x65\x0f\x5c\xd2\x62\x01\xd9\x52\xed\xca\xb8\x6e\x56\x30\xb0\x4b\xd8\x66\x02\xc6\x97\x03\xd7\x64\x18\xd2\x64\xab\x67\x95\x71\xc0\xdb\x21\xcd\x80\x06\x51\xdd\xf8\xef\xf7\x84\x9e\xf8\x1d\xf3\xe3\x5f\x11\x7e\x02\x97\x70\x3d\xf0\x84\x48\x37\xd6\x44\x6d\x76\xb4\xc4\x9c\x68\xa8\xa6\xe1\x76\xad\x6a\x7e\xcb\x58\xbd\xda\x54\x30\x23\x5a\x4f\x92\x4d\xb6\x1a\x58\xad\xd4\x20\x73\x9a\x8a\xdf\x4d\xa7\x84\x4d\xb7\xe1\x02\xc4\xb9\xb8\x14\x57\x7d\x61\xb6\x32\x74\x13\xe6\xa5\x1c\xee\xff\x46\x38\x21\x8f\xef\x70\x5c\xf6\x93\x77\x20\x42\x47\x27\xe6\x80\x4f\xd1\x78\xd8\x6c\xd8\x3a\x53\xca\x20\xb0\x29\x17\x28\x41\xfc\x5e\x32\xf3\xc8\xd8\x25\x9f\xb2\x71\x5e\x54\x8b\x2c\xac\x58\xba\xa2\xe6\x31\x39\xbf\x61\x60\xba\xdb\x56\x39\x72\x44\x8c\xd1\x34\xe3\x22\x2e\xfa\x41\x70\xa1\x25\x8d\x25\x4d\x4a\x34\xc8\x68\xea\x2c\xe0\x86\x8f\x0a\x99\x17\x14\x28\xfa\xc3\x39\x95\xc5\xbc\xb4\x79\x5d\x52\x0e\xc8\x34\x5f\x72\x29\x5a\xf4\xdc\x3e\x2c\x9a\x32\xa8\x3a\xa8\x83\xa4\x95\x94\x4e\x0b\x09\x84\x8e\x08\xc9\x74\x31\x61\x24\x66\x61\x6a\x9d\x84\x71\x36\xe5\x69\x6c\xfa\x87\x9f\x5f\x0c\x6c\x98\x16\x2d\xb7\x35\x55\x88\x5b\x4b\x5d\xbc\xd5\xbe\x64\xe0\x69\x3c\xb0\x8b\x7f\x95\xce\xdc\x79\x78\xd8\x9c\x86\xed\xd7\xe3\x62\x57\x6d\x55\xda\xdd\x3d\x02\xa1\xe6\x8b\x22\xb7\xfb\x0d\x2f\x80\x37\x78\x45\xcb\xff\xcc\x6b\xfb\x27\x6d\x24\x6b\x73\x0f\x35\x28\x52\x23\x50\xed\xe7\xda\x0d\x37\x24\x9a\x36\x9d\xc0\xb4\x91\x4e\xcd\xac\x4d\x39\x73\xae\xb7\xe9\x36\x78\x2d\x41\xe0\x0d\x1d\x3a\xa2\x2d\x24\x87\xed\xb0\x94\x94\xde\x2d\x25\x2b\x23\x78\xc5\x2d\x98\x9b\xae\x5c\xab\xe9\x5b\x60\x4d\x3d\x72\x7f\x4f\x56\xfa\xe7\x01\xd9\x27\x58\x80\xff\x5a\x09\xbb\x69\x53\xdc\xb1\x8a\xdf\x72\x41\x12\x8b\xaf\x54\x10\xda\x4d\x3e\x2b\xe2\xf8\x72\xf2\x65\x11\xa6\x5e\x3e\xba\x3a\xa2\x24\x1f\x5d\xbd\x30\xd0\x4d\x4a\x33\x5d\x1d\x84\x84\x6f\xcd\xd0\x79\x6b\x75\x74\x75\x84\xdb\x16\x5a\xc5\xee\xf0\x3e\x40\x62\x20\x82\x75\xc0\x8d\xb9\x02\x7e\xd1\x04\xfc\x42\x01\xbb\x34\xd2\xd7\x31\x86\x21\xfc\x35\x5b\x95\x47\x4e\x44\x0f\xde\xa4\x15\xcf\xa3\x7c\x51\x87\x78\x81\x10\x1c\x7d\xa8\x43\xc4\x17\x00\x94\xa0\x88\x7a\x65\xd1\x69\x7e\x98\x35\x47\x2a\x30\x6b\xb1\xa3\x14\xc0\x49\x14\xa7\x09\xda\x68\xf1\xe6\x29\x16\x38\x4f\x2e\xc0\x3a\x6b\x4b\x50\xfa\x5c\xa6\x5e\x20\xcd\xf5\xb7\xdf\xf0\xde\xa3\x71\x41\x65\x46\xb1\xb6\x47\xc9\x88\xab\x79\xc3\x8a\x64\xbc\x7a\x9f\x86\x49\x86\xe4\x70\x9d\xff\x6a\x00\x46\xbc\x4d\xcb\xa2\xf5\x6d\x38\xff\x98\x83\x80\x07\x6f\xbc\x86\x59\xe5\x4d\x58\x25\x7f\xdb\x8f\x31\x5a\x17\x0d\x12\x44\x6d\xa2\x0d\xde\x45\x46\xd4\xed\x48\x80\xa3\xa5\xa7\x6a\xab\x5e\xa8\x1e\x16\x2d\x72\x5b\xaa\x13\x50\x82\xb8\xcc\xc2\x2d\xda\x8d\xd9\x9c\x9f\x31\x4f\x33\xb1\xd4\x4b\xe7\x7a\xd0\xa9\xef\xcc\x3c\x19\x01\x1b\x01\x4b\x80\x5a\x25\x49\x89\xde\x5c\x7c\x8f\x86\xb3\x8a\x26\xeb\xfb\x22\xbf\x5d\x81\xab\x92\xd4\xa6\xf1\xdd\x1e\x8d\xc4\x72\xb4\xd0\xc2\x2b\x88\x10\xee\xf5\x30\x40\x8b\x38\xf7\xcf\x54\x2d\x9a\x1a\x78\xe2\x16\x37\x69\x5d\xf1\x00\x60\x98\x96\xb9\xc2\x60\x16\x5e\xb3\xf7\x8b\x02\xc5\x76\x75\x0b\x66\x62\x80\x41\x60\x04\x16\x46\x23\x4a\xad\x07\xe2\xcc\x4d\x7e\x2d\x35\x83\x88\x21\xa8\xb6\x85\x0a\xbc\x0b\x75\xc0\x3f\x47\x44\x2c\x39\xce\x0d\x32\x46\xca\x64\x92\x85\xa9\x50\x87\x1b\xb5\xeb\x20\xf5\x40\x3f\x92\x67\xa6\xaf\x9b\x61\x7d\xa4\xe4\xc9\x6e\xad\xfe\xdf\x58\x91\x43\x87\xe1\x2d\x00\x50\xc4\x83\x80\x63\x34\x93\x94\x7c\x86\x61\x38\x9c\x62\x52\xc2\xa5\x92\x0a\x66\x44\xf2\x82\x74\xbb\x5d\xc8\x00\xfb\x17\xbc\x0d\x29\x30\x38\x4d\x06\xe2\x1d\x5f\x24\xa8\x6e\x2c\x65\xcb\x61\x14\x2d\x0a\x90\xc3\xba\xdd\xa6\x08\x8e\x13\x56\x1d\xbb\x93\xc2\xd3\x38\xd9\xcb\x48\xa7\x37\x4c\xc7\x2d\xc9\x61\x3b\x9d\x87\x01\xb5\xaf\xc9\xa1\xd2\xdc\x6d\x2a\xe4\x93\xbe\x59\xa9\xc1\x29\x0f\xe4\xdc\xfe\x24\x26\x11\x1f\xf6\xb7\xe1\x1c\xc4\x0d\x01\xff\xba\x7c\xa5\x74\x76\x59\x2c\x21\x8e\xc5\x0a\xae\x01\x51\x41\xdc\xa4\xb4\x39\x4e\x69\x0d\x56\x86\x16\x88\xb7\x2b\x03\x08\xcc\xcd\x60\xb6\x94\x5c\x9e\x0c\x53\xf4\x43\x2c\xfb\x7a\xce\x91\x3f\x93\x63\x56\xb1\x88\x0b\xab\x72\x35\x6d\x5c\x30\xe2\x49\x4c\x41\x12\x35\xf7\x84\x71\x1b\xd6\x49\xcc\x75\xec\x3a\xcf\xc1\xfa\x89\xe0\x69\x88\x31\x5a\xcd\x81\x62\xab\x60\xb8\x50\xf4\x6c\x16\xe2\x70\x57\xd6\x29\xf1\x3d\xcd\xc8\x38\x29\x4a\xbc\x35\xa2\xe2\x0e\xcf\x26\xc6\x58\x4c\x11\x3e\x37\xc1\xfd\x4d\xf5\x42\x28\xd4\x38\x6f\xc1\x85\x25\x6b\xcf\xd8\xd2\x50\xa5\xa2\xb5\x01\x18\x0d\x98\xa4\xc8\xd1\xbc\x8e\x7d\x59\xc0\xf2\x0a\xd3\xf4\x41\xf4\x60\x03\x49\x44\xe0\x29\xcc\x10\xd1\xd6\x41\x7e\x9f\xf3\x9d\x45\xb8\xcc\x51\x3e\x8a\x60\xf7\xc7\x89\xb4\x0c\x8b\x4c\xd6\xcd\xcb\xc6\xec\x86\xa5\x5c\xa6\x52\x87\x90\xa4\x68\x1c\x27\xf1\x86\xa8\xf6\x9a\x0d\xf1\xa9\x51\xd1\xae\x81\xf0\x43\x3b\x19\x9f\x81\xc6\x3a\xa0\x86\x69\xc4\x86\x0d\x0d\x18\x75\xc3\x6e\x76\x69\x9a\x32\xd4\xfd\x16\x78\x76\xd7\xd6\x4a\x68\x50\x9c\xd9\xc6\x51\x79\x66\xef\x0b\xe8\x7b\x7b\x5a\x1c\xeb\x6d\x50\x2d\x55\x77\x8f\x83\xba\x1a\x18\xc1\xa1\xc8\xd1\x55\x6f\xaa\xb5\xff\x20\xb4\x0e\xbe\x09\xd7\x24\xa0\x17\x8f\x61\xad\x89\xa5\x70\x94\xc5\x3f\x83\x78\xc1\x87\x7b\xc2\x2a\x55\xbb\xd6\xf6\xb4\xe1\x1a\x98\x12\x27\xa9\xa1\x62\x52\xaa\xb9\xc9\x47\x11\xac\xa1\x5a\xfd\x31\xb0\xa1\x9a\x70\x7c\x88\x9b\x0f\x4c\x75\x8c\xf4\x90\x9f\x3f\x30\x9e\xc6\xb9\xce\x10\xb5\x45\x69\x2e\x3e\xcb\x9e\xef\x58\xe7\xad\x86\xbe\xcc\x1d\x3f\xfc\xaf\xec\x48\xcd\x16\xf0\x2b\x7a\xa0\x0e\x67\x66\x57\x1e\xa9\xf5\xaa\x89\xa4\xd2\x57\xc2\x74\x4f\x31\x97\xaa\x1b\x1a\xcb\xec\x77\x2d\x32\x2c\x20\x6f\x9d\xf6\x54\xdc\x8c\x51\x92\xc5\x47\x96\x97\xb7\x11\x9a\x23\x5e\xdc\x5a\x41\x36\x9a\x65\x62\xda\xc0\x61\x74\xc4\x8d\x7d\x3b\xb3\x51\xd4\x7e\x60\xb3\xe4\xd3\xcb\xc9\xb4\x59\x95\x7c\x56\xa3\x06\xe6\x4c\x1e\x72\xd8\xc2\x0c\x9d\x62\x94\xec\xd4\x13\x77\x38\x7f\x30\xaf\x20\xd7\x8f\xef\xc9\xdb\xa4\x2c\x93\x6c\xf2\x60\x47\xb6\x1a\xba\xe0\xe2\xac\x8e\x07\x5a\x19\x21\xf9\xb1\x7b\x98\x54\x4b\x45\x87\xc2\x97\xbf\xf4\x4c\x21\x64\xfd\x07\x7a\x26\x66\xeb\x43\x1d\x6b\xe8\x57\xa7\xf3\xd0\xb8\xc9\x33\xf3\x1f\xa0\x40\x7d\x7a\x37\x0e\x77\x6c\xb1\xf7\x0d\xf4\x90\xda\x85\xf3\x07\x05\xbc\x87\xe6\x42\x3b\x00\x92\xf4\x62\x60\x2e\xd3\x7f\xef\xca\x6b\x16\x64\x39\xa5\xcc\x9c\xb6\x35\x67\xc2\x3c\x76\xc1\x99\x65\x70\xb5\x99\x29\x5f\xb1\xd4\x6c\xd4\x8d\x75\xd6\x8e\xf9\x96\x8b\xf3\x23\xe6\x57\x6d\x65\x3d\xb8\x72\xdc\x99\xd2\x4c\x63\xba\xb1\x1f\xe6\x1c\xf8\x63\xe1\xa7\xfe\x35\x3a\x11\xd1\xa7\xb7\xac\x98\x30\x43\x3c\x72\x16\x91\xf8\x74\x64\x0f\x27\x9c\x2e\x5c\x64\x4b\x10\x4a\x5a\xeb\xf1\x5b\x46\x9f\x0f\x98\x42\x03\x67\x95\xfa\xdc\x20\xc7\xea\x32\x28\x62\xfe\x6e\x49\x96\x1a\x22\xc2\xa2\x50\x10\xfc\xb7\x91\x15\x16\x0c\x5a\x8c\xa1\x49\x50\x41\x4a\xc8\x86\x2c\xc3\xfd\x77\x1a\x96\x1f\x16\xd9\xa9\x30\x25\x36\x74\x30\xf0\x8a\x92\x2e\x67\x6b\x66\xb4\x24\xed\x74\xf3\xf1\xc3\x44\x8c\xb8\x4c\x06\x7e\x5c\x4a\xfc\xba\x51\x77\x44\x3a\xdd\xa1\xba\xfd\x0a\x10\xf0\xfe\x9e\x6c\x35\xd0\xc4\x73\x10\xa1\x66\xef\x7d\xdf\xfc\x12\x91\x98\xde\xd6\xa8\xd3\x74\x7d\x6e\x11\xd8\x89\xa2\xf4\xb8\x3a\xff\xa0\x7c\x37\x33\xfb\x64\x49\x79\x3b\x9a\xd2\x3b\x8d\x72\xa5\xdc\x53\x6b\x48\xad\xb5\x8c\xd7\xc2\x30\x55\xcd\x26\x9b\x6f\x59\x38\x92\xc3\xab\xec\x16\xe6\xde\xbe\x0c\x1f\xc7\xc4\x0d\x9c\x4e\x67\x49\x55\xb1\xb8\x15\xa5\x2d\x03\x19\x33\x46\x8b\xcb\x9e\x6b\x8c\x4a\x45\x63\x79\x0c\xb3\x6e\x20\x12\x6d\x43\xd5\x62\xd1\xff\x4d\x31\xfe\x70\x32\x9d\x2d\x46\x52\x0d\x53\xaa\x2d\xbf\x9e\xd5\xc4\xc7\x93\x19\x5f\x72\xaf\x92\x2c\x4c\x2d\x3d\xa8\x74\x01\xa8\x6d\xd0\x4d\x32\x93\x1e\x0a\x43\x7e\x6a\xe1\xbc\x2d\xed\xc9\xe8\x5a\x35\x1e\x64\xce\x70\x75\xc2\x34\x51\xaa\x95\x6c\xc2\xd1\x54\xa0\x6b\x38\xfb\xc8\xd6\xb2\x58\xfe\x4d\xf4\xb1\xb6\x19\x7c\x4d\x12\x2f\x2d\x6b\x7b\x83\x91\xaa\xf6\x93\xb0\x60\xf2\xa0\xea\x82\x5b\xe9\x66\x81\x33\xc5\xaa\x1b\x5b\x70\x36\x1f\xbd\xf5\x1c\x55\x6f\x58\x58\x56\xb5\x1d\x08\xdf\xe8\x92\x86\xbf\x70\xdb\x2c\x9a\xb6\xb3\xed\x24\x6b\x93\x50\xa9\x36\x03\x1b\x9a\x41\x8b\x51\x01\xf8\x2a\x29\xca\xea\x65\x98\xa6\x1e\x28\xd9\xce\x70\xcc\xe1\xf7\xa9\x3b\x65\xa4\x0b\xbf\x86\x14\x4c\x31\x37\x2e\x33\xcc\x92\x03\xa3\x9c\xa1\x09\xd9\x38\xcb\x44\x19\xab\x3b\x58\xec\x11\x53\x4f\x14\x9e\xfd\xc1\x5d\x55\xef\x5e\xf6\x18\x19\x9b\x58\xcb\x06\xb1\x6e\x24\xf2\x3b\xb6\x04\x90\xa3\x2c\x7e\xc7\x96\x22\xd6\xa2\x45\xd5\xaf\xa4\x0e\xdf\x16\xeb\x14\x69\x52\xb8\xff\x6f\xa7\xe3\xef\x22\x94\x1d\xac\xd7\x21\x4a\x53\x37\xff\x3f\x22\x5a\x44\x74\xa6\x98\x94\x36\xcf\x7e\x07\x95\x6c\x76\xf3\x52\x38\xa0\x04\x20\x49\x3a\xfc\xcd\xb3\xdb\x30\x8f\x1c\x7e\x13\x2b\xb0\xc1\x8d\x51\xa9\xb5\xe7\x0a\xa1\xff\x0d\x54\x3c\x53\x17\x16\x9c\x3b\x96\xba\x6f\x14\xf0\xae\x31\x47\xa5\x8b\xb5\x49\x64\xed\x1a\x9e\x59\x72\x03\xa9\x1b\xa8\xec\x52\x58\x10\xd7\xa2\xab\x49\xd2\x3a\x67\x36\xdb\x36\x68\x6d\xe1\xdc\xe9\x58\x08\x28\x9b\x85\x0d\x6c\xac\xa5\xaa\x96\xa2\x16\xfc\xe6\xa6\xec\xfa\x37\x8f\x9d\x2b\x0d\xb5\xc8\x42\x0f\x8d\xa1\x42\xc1\x65\xfd\x87\x5f\x3b\x29\xfa\xb5\xed\xb5\x0d\xd4\xbe\xda\xc7\xb7\x3c\x8e\xe2\x98\xcc\xf0\x99\x8f\x99\x78\x1d\x1e\xed\x03\xe1\x18\x97\x94\xf8\x1e\xad\x1d\xd6\xd5\x8c\xcc\xe5\xde\x1d\x82\x3d\x9d\x30\xcc\x37\xe3\x10\xe3\x15\x29\x5c\xb1\xc0\x1d\xa5\x13\xd1\xb0\x6c\xf6\x2b\xc7\x80\x02\xda\x70\x84\x8f\xe5\x98\x13\x1b\x6a\x33\xae\xea\xc1\x45\x4d\x5c\xd7\x73\xec\x01\xda\x41\x1b\x50\x0b\xd3\x65\xb8\x2a\xd5\x1b\xdd\x24\x63\x4b\xa8\x4b\x44\x51\x0e\xb3\xb8\x05\x93\x86\xd2\xe2\x5d\xfe\x76\x63\xa5\x71\xab\xcc\x69\x8b\x90\x4f\x0c\x19\x12\xf4\x1a\xae\x1a\x4e\x84\x07\x6c\xc8\x53\xd2\xa1\xc8\xab\xa9\x5e\xed\xa2\xae\x5c\x6b\x95\x36\x8e\x86\x66\x29\x2d\xf9\x4a\xe8\xfc\xab\x83\x09\x36\x60\x8e\x01\x00\x9b\xf1\x32\xf2\x54\xeb\x4e\x8c\xc0\x9a\xaa\xb2\x89\x72\xcd\x46\x37\xaa\x82\x3a\xb1\x9a\xd1\xd9\x58\x8d\x49\x35\x1b\xe3\x76\x93\x9f\xaf\xb7\xa0\xae\x1f\x05\xbf\xfe\xdc\x22\x90\x30\x15\x5f\xbe\x6b\x9c\xe6\xae\xe7\x40\x95\x02\x86\x70\xb8\xf9\x2c\x45\xfa\x0f\x9d\x46\x07\xc3\x7a\x9c\xea\x7f\xc1\x41\xcc\xa0\xef\xfa\x5f\xa5\x65\xfd\xef\x52\x00\xb8\x31\x85\x95\x2e\x57\x3f\x2e\xb5\xef\xf2\x4b\x5d\xda\x34\x88\x74\xd5\xc0\x66\x9e\x51\x44\xea\x53\x6a\xd4\xd5\x31\xa3\xa5\x06\xa2\xe1\xe2\xac\xa9\x1e\x73\xd8\x1a\x2b\xb1\xee\x03\xea\x35\x68\xa5\x53\xbd\xb0\x56\x9f\xd5\xca\xb9\xb3\x4f\x96\x71\x26\x16\x2f\x88\x91\xcd\x05\x19\x45\x44\xf3\x30\x0a\x63\x86\x16\xe6\x0e\x7d\xc1\xd8\x0c\xcd\x53\xf8\x1e\x06\x36\x54\x49\x56\xe5\x22\x60\x65\x58\x25\xa3\x14\xac\xc5\x6b\x51\x96\xd1\xa2\x67\x2a\xa3\x56\x27\x93\x2c\xac\x16\x05\xeb\x4b\x7d\x5f\x5b\x64\xf2\xd6\xed\x3d\x78\x0e\x09\x7a\x41\xf1\x7a\xcc\xbe\x88\xa8\x58\x0a\xcf\xa6\xb0\xdc\xa5\x6c\x4c\x22\x08\xbb\x59\x92\x11\xbc\x50\x0e\x31\x76\xc7\x4c\x04\xed\x76\x79\x00\x0b\xa3\xa9\x70\x17\x6d\x08\x4e\xad\xbc\xe4\x92\x52\xfc\xae\x12\xf0\x89\xc9\xcd\x37\x89\xc1\x8c\xae\xa9\x72\x65\x06\x84\xbb\xa5\x0c\x8a\xa0\x42\xc8\xf3\x21\xe5\x7d\x73\x99\x03\xaf\x6b\xd6\x32\xf3\x5a\x38\x47\xfb\x7c\xb7\xd8\x0a\xd4\x5c\x9f\x91\x68\x97\x04\x5c\x90\xd3\x59\x74\xe7\x23\xbc\x3b\x27\xdc\x62\x9b\xbb\x00\x5e\xf9\x60\x92\x35\x5a\xb5\x04\xf8\x56\x34\x5c\x4e\x19\x04\x86\x82\x4d\x42\x05\x60\x2b\x8d\x68\xf9\xb9\x78\x55\x5d\x44\xaa\x1f\x66\xc2\xf7\xc8\xb0\xbb\x81\x28\xf4\xc5\x84\x8a\xb0\xf0\x80\xbb\x11\xf7\xda\xb2\x04\x56\x20\xd2\x44\x6e\x0f\xdf\x8c\x7c\x8e\x46\xc2\x7b\x7b\xd6\xa9\x43\xd8\x45\x19\xc5\xce\x93\x0b\xde\x96\x29\x6b\x23\x90\x92\xb2\xf1\x73\x93\x08\xbd\xc1\x9e\x56\x3f\xcf\x29\x5f\xe5\x7c\x9d\xa1\xa9\xd4\x4d\x98\x2e\x30\xa2\xc0\x6a\x2e\xc2\xc2\x08\x15\x77\x58\x4c\x20\x2c\x0c\x74\xd4\x8e\xe4\xad\xc3\xc9\x80\xad\xa7\xf1\x9c\xa0\x1e\x0b\x28\x21\x37\xbd\xc6\xf0\xb0\x10\x7c\x56\x3d\xf2\x29\x5f\x59\xd0\x26\xea\x55\x91\x44\x15\x1e\xa2\x42\x4a\x46\xb6\x1a\x15\x83\x53\x8f\xa4\x14\x8e\x36\xb4\x72\x46\x60\x4c\x7c\x21\x46\xc2\x6a\x1e\x2d\x92\x34\x46\x66\xb2\x93\x8f\xc7\x49\x94\x84\xe9\x8e\x5a\xfb\x23\x36\x0d\x6f\x92\xbc\xe8\x12\x2e\xf8\x1b\x01\x22\x40\xa6\x8d\x93\x31\xb8\xbd\x56\x3a\xf0\x3b\x84\x2e\x5b\xcc\xd1\x61\xbb\x12\x6f\x22\xf2\x79\x0d\xfb\x5f\x99\x8c\x92\x34\xa9\x56\xa4\x8c\x58\x16\x16\x49\x2e\xec\x9c\x9a\x5f\xf1\x96\x71\x40\x2f\x2b\x36\x9b\x9b\x51\xe4\xd1\x4d\x15\x92\xed\x48\xd5\x77\x10\x41\x9d\xa7\x5b\x71\xb0\xff\x24\xba\xf3\xe3\xe9\x4b\xa9\xd1\xd4\x29\x6e\x20\x6b\x0d\x64\x15\x33\x9b\x71\xd9\x5f\xdf\x05\xb7\x5b\x77\xb9\x88\xc4\xa1\x95\xbb\xc8\xd2\x6d\x00\x12\xbf\x7a\xc5\x26\x96\x0f\xed\x9e\xfd\xe6\x4a\x6a\xb8\x5b\x3c\xcd\xc0\xbd\x95\xd7\x19\xe8\xb7\xee\xff\x41\x5b\xf5\xcd\x3d\x68\xad\xa7\xdf\x5c\x8f\xd3\x09\x87\xd9\xaa\x4e\x34\x30\x61\x85\x7c\x83\xc8\x10\xb4\x55\xd7\x84\x74\x43\xf9\x7e\x73\x79\x1b\xd9\xba\x80\x0c\xb8\xba\x82\x80\x2c\xd3\x0c\x5e\xaf\xa5\x01\xc5\xba\x6c\xdd\x54\x74\xd0\xcc\x53\xc5\x64\xff\x7a\x99\xda\x3c\x8f\xea\x97\x1e\x9e\x34\x3d\xf5\x40\xd4\x9b\x0e\x77\x35\xdf\x25\x15\x65\x54\x9e\x25\x8d\x7b\x74\x48\xff\x93\x71\xd1\xfe\xd4\xbd\x69\x37\xf3\x04\x60\x4b\x44\x7f\xcc\xae\x55\xde\x78\x13\xf3\xb4\xed\x2a\x86\x34\xdf\xdc\xd4\xab\x31\x91\x30\xd8\xbc\xc2\xa5\xb5\x7e\x95\x6d\x2a\xe9\x4c\xb4\x9a\xaf\x7c\x5a\x6f\x89\x1a\xea\xb2\x70\x33\x0f\x05\xfd\xe6\x12\xad\x34\x13\x10\x35\xa2\xb5\xe1\xd7\x7c\x29\xd5\x50\xdf\x63\x30\x34\x4b\x34\x61\x68\x5a\x14\x98\x18\xba\x96\x06\x8f\x32\xdb\x68\xa8\xf1\x31\x38\x9a\x25\x8c\x76\x20\x82\xca\xd7\xbc\xb3\xf0\x14\x54\x23\x7c\xfe\xa2\xbe\xc3\x9e\x3d\x2a\xcd\x1a\x7f\x1b\xb2\x21\xdd\xed\xaa\xa1\x36\xd9\xa4\x60\x42\xa9\xb1\x89\x5b\xb4\x48\xd8\x75\x2b\xaf\x41\xad\x8d\xba\x7e\x45\x35\xf3\x75\xd2\x79\xa3\x01\xa7\xdb\x9e\xa9\x88\x11\xed\x18\x7c\xad\x51\xa2\x6f\x32\xce\xd0\x7e\x51\x42\x5a\xf0\x6a\x87\x3c\x6d\xf6\x24\x47\x7f\x7f\x1f\xbd\x29\x92\x0c\x1f\xe9\x22\x33\x56\x96\xe1\x44\x07\xe2\x31\x83\xeb\xcb\xf7\x5c\x76\xa8\x5b\x1c\xce\x6e\xf8\x3e\x96\x90\xae\x76\x4a\xcb\x74\x49\xf9\x0f\xc9\x30\x8b\x4a\x6e\xb5\x01\x55\x80\x16\x37\xf6\xbf\xe5\xc7\x63\x3c\x42\x60\xbd\x8b\x43\x1a\xde\xc6\x69\x79\x13\x87\x18\x2f\x0f\xa3\x4b\x73\xdd\x8a\x30\x29\x41\x1f\xbb\xa2\x2d\xa7\x9f\x38\x67\xe0\x07\xad\x1d\xcc\xab\xdc\x3c\xe4\x48\x3f\x13\xb5\xa7\xb6\x3e\x30\x60\x78\x06\x59\x16\x83\x26\x82\x32\x3e\xf4\xb4\xc8\x17\x93\x29\x34\x65\x8f\xaf\xa3\x51\x35\x2b\xea\x37\x25\x3e\xa0\x82\xed\xb7\xa4\xb7\xe8\x5e\xfb\xa4\x45\xe9\xca\xf9\x44\x9f\x58\xbb\x9d\xcd\x30\xfa\xe4\x91\x96\x06\xfd\x5a\xca\x06\x1b\x83\x7e\x43\x9a\x09\xee\xf2\x9b\x7e\x53\xa2\x10\x0e\xa8\xc5\x23\xfd\x26\x9b\x0d\xf5\xa2\x9b\x75\xc4\xf0\x0d\xbb\x1c\x19\x0b\x9e\x92\x3b\x01\x25\x53\x0c\x63\x59\x43\x75\x26\x73\x77\x1e\xd4\xb8\x3d\x4e\xe1\x26\xcf\x5e\xba\x10\x7c\xcb\xbf\x86\x85\xce\x9d\x81\xab\x8d\x29\x75\x51\x50\x09\xf8\x90\x6a\xab\xf7\xf3\x6a\x36\xca\xd3\xd3\x51\xc9\x8a\x9b\x70\x94\xb2\xf7\x79\xb6\x1a\x27\x69\xea\x15\x79\x8e\x1e\xac\xc3\x4a\x9f\xd3\x07\xf2\xf3\x0c\x8a\x91\x00\x82\xeb\x77\xf1\x0b\xf6\x84\x61\x65\x38\x68\x48\xa8\xba\x87\xc6\xb0\x42\x40\x84\xe8\xe6\xaa\x7d\x95\x3b\xac\x94\x6a\xa0\x06\x34\x40\x10\x6d\xb5\xd7\x58\xc0\xdb\xd1\x25\x80\x17\x23\x54\xad\x36\x88\xa4\xaa\x7a\x37\xac\xb8\xc4\xe9\xd4\xad\x6a\xde\xf9\xcf\xff\x34\x2a\x85\x02\x6b\xec\xb6\xab\x9b\xe0\x93\x70\x9b\x6e\xef\xff\x59\x3a\xdb\x91\x71\xc1\x18\x81\x68\xb7\xbc\xd1\x5f\x27\x69\x3e\x0a\xd3\x5f\x71\xd4\xdf\xe5\x31\xeb\x5e\x95\x5d\x50\xbd\x70\x02\x73\xe0\xbf\x02\x84\x7e\x5d\x74\x22\xbe\x0d\xd3\xf7\x4e\x47\xa6\xaa\x5f\x5d\x61\xc0\xcb\xa9\x2e\x7e\xaa\xbc\x41\xd3\xdd\x92\x6a\x09\x31\x76\xce\xe4\x1f\xa7\x8b\xec\xfa\x2d\x44\x5b\x5c\x86\x05\xf3\x60\xbd\x1d\x09\xa5\x47\x8b\x3d\x97\xd7\x68\x2c\x0b\xe1\x4f\x0d\x4b\x59\xd0\xcf\xe8\xed\x41\x3e\xe4\x29\x41\xe4\x77\x8b\x09\x2b\xe8\x37\x1b\xbc\xc1\x55\x3e\xc6\x18\xaf\x87\x6f\x16\x2a\x1d\x84\xda\xe0\x3c\xa4\xf5\x2b\x68\x06\xa9\x55\x4a\x12\x33\xc1\x7c\x14\x31\xec\x30\x49\xb5\x8d\x8f\x23\x2c\xb1\xb2\x62\x51\x11\xd7\x34\x13\xa7\x40\xc5\x29\xaf\x5e\x96\x76\xc7\x81\x57\x01\x10\x5d\x15\xe1\x4a\x22\xd2\x56\xa6\x69\xf4\xa1\x0a\xce\x20\xb6\x24\x15\x3c\x46\x2b\xff\x6e\xb8\x8d\x53\x6c\xb8\x1d\x04\x82\x64\x58\xb2\xec\x74\xac\x07\x6d\xb7\x64\xf6\x2c\x8f\x17\x29\x3b\xac\x3c\x01\xe7\xf7\x87\x6a\x2e\x19\xb5\x60\xc1\x4e\x07\xff\x76\xc3\x59\x7c\x88\x3f\xbd\xf3\xa1\xe0\x52\xe5\x70\xfb\x82\x56\x7e\xbf\xf2\x58\x17\x9c\x8c\xde\xe4\x93\x09\x2b\x02\xeb\xeb\xfe\xfe\x6e\xed\xaf\xf1\xa5\x17\x8d\x3a\x47\x1c\x82\xde\xc2\x51\x6a\xb8\x3d\xd0\x0f\x6a\x63\xbf\x58\xb7\x5c\xcc\x59\x71\x19\x54\x94\xe9\xf8\x15\x81\x88\x8b\x80\x64\xf3\x8c\xc8\x16\xf4\x0e\xdc\xd9\x8b\x05\xdf\xc8\xfb\x77\xa0\x23\xec\x33\xca\xb2\xc5\x8c\x15\x7c\x21\xf7\xb7\x0e\xe8\xb2\x48\x2a\xfc\xdd\xa3\x51\x9e\x8d\x93\xc9\x42\xe4\xf5\xd6\x6b\x7f\xad\x63\x8a\x21\x0e\xa2\x31\xec\xb6\x10\xe3\x31\xae\x32\x1d\x6e\x5f\x27\x59\x3c\xdc\xa6\x8d\x2d\xf5\xd6\x3e\xad\x3a\x9d\x4a\x68\x56\x3b\x9d\x8d\x35\xcd\xc3\x6a\xaa\x6b\xaa\xdc\x9a\x34\x5a\x30\xe4\xb4\xf0\xef\x32\x41\x1c\xe3\x11\x9d\xe1\xf6\xc9\x70\x9b\x32\x9f\x6e\x6c\x2a\x9d\x96\x1b\x5a\xda\x5c\xb6\x30\xcb\x16\xed\x58\xe6\x48\xbc\xbc\x09\xc7\x77\x8f\xc0\xb1\xd8\x88\xa3\x6e\x27\xc1\x76\x92\xa6\x76\x8e\xff\x30\x2d\x74\x3b\xa1\xa4\x7a\xd8\xd4\xd2\xd1\x23\x5a\x4a\xb2\x98\xdd\xfe\x6e\xba\x27\x15\x9b\x3d\x8a\xf0\x63\x89\x28\x58\x62\x05\xac\x5b\xa6\x49\xc4\x3c\xaf\xb8\xbf\xaf\xfc\xdd\x83\xfb\x7b\x26\xa3\x84\x0c\x04\xa7\x93\x09\x41\xf5\xac\x77\x28\x3f\x76\xab\x3e\xac\xb9\x45\x39\xed\x86\xf3\x79\xba\xf2\x18\xcd\x7c\xca\x74\x43\x0b\xbe\x7e\x81\xf3\x05\x16\x8b\xd1\x1c\xe8\xd0\x4a\xef\xbf\xf3\x98\x6c\x53\xf3\xab\xad\x20\xa8\x0e\xab\x3e\x0b\x82\xe0\x6d\x58\x4d\x0f\x87\xdb\x33\x58\x08\xfd\x6c\x91\xa6\x41\x10\xf0\x4a\xf8\xcf\xe1\x76\xff\xa8\x28\xc2\x55\x37\x29\xe1\xaf\xc7\xfc\x43\x7e\xde\x2d\xc2\xd5\x70\xbb\x3f\xdc\x3e\x17\x06\x1c\xc7\x61\xc5\x2e\x38\x12\x41\x2d\xea\x4d\x95\x9f\xc1\xa3\x70\x38\x72\x50\x3e\x0e\x2b\x06\xc5\x1b\x58\x9f\x2e\xd0\xe9\xec\xff\xff\x86\xc3\xfd\xee\x9f\x87\xc3\xfd\xfd\x6e\xc5\x4a\xce\xea\x64\xa6\xe7\xf3\x8a\x0a\x36\x61\xb7\x73\xa8\x4a\xf6\x4c\x53\x2a\xc5\x21\xa1\x11\x2d\x69\x4c\xe7\xfe\x5d\x19\x94\xf7\xf7\xe7\x17\x74\x1e\xcc\xf9\xdf\x01\xa7\xe2\x24\x28\xc5\x50\xf5\xfc\x41\x32\xf6\x9a\xd9\x76\xec\xdf\x25\x63\x2f\x82\x7f\x1b\xb1\x8e\x3a\x9d\xc8\x9b\xd0\xd8\xf7\x45\x94\x73\x00\xd4\xbb\x43\xe0\x35\x0f\x56\x54\x1b\xac\xc8\xf7\xb1\xb1\x2e\x84\x5e\x4b\x2b\x56\x74\x3a\xc6\x87\xdb\x4a\xd4\xcd\xf2\x62\x06\x8f\x4e\xe1\xbc\x98\x06\x46\x12\x87\xa6\x7c\xa9\x0e\xa6\x9d\x8e\xc7\x82\xe9\x79\xef\x82\x56\xc1\xf4\xfc\xe0\xc2\x5f\xaf\xd7\x13\x98\x69\x5e\xec\xaf\x35\x2d\x83\x20\xe0\x73\x8c\xef\x60\x56\x52\xe5\x43\x0d\xe6\x10\xd0\x2a\xa8\xcc\x11\x01\x8a\xae\xbe\x62\x5e\xd2\x9b\x16\xe0\xaa\x06\x5c\xf9\x74\x14\x38\xa3\x13\xac\xee\xef\xe7\x9d\xce\xfc\x7c\x2e\x96\xcf\xde\xc1\x45\x37\x9d\x96\x0d\x49\x4e\xf0\x25\x2f\xf6\xe9\xac\x56\xdd\x4d\x43\x75\x45\xbd\xba\xa2\xa9\x3a\x3e\x16\x5b\xa3\x4e\x67\xe6\x17\x5e\xc6\x96\x24\xf7\x26\xb4\xf2\xfd\x01\x43\xfb\x29\x6f\x6b\xd6\xe9\x8c\x44\x5e\xe2\x4d\x28\x33\xf2\x38\xbd\xb7\x90\xc6\x02\x22\xe3\x10\x56\x79\xb9\x6a\xd4\xf0\xb0\xbd\x6a\x2b\x08\x7a\x1b\x0a\x18\xd3\x6f\xd5\xe9\xf0\xe5\xbc\x15\x04\x4c\xfd\xaa\xfc\x64\xec\xcd\xbb\x62\x5a\x29\xf1\xa0\xf2\xef\xa4\xa1\x15\x27\x1c\x67\x06\x6b\x5f\x32\x2f\xc6\xcb\x75\x3a\x4d\x6d\xde\x41\x6d\x30\x9f\xee\xd2\x69\xd9\x67\xb4\x98\x96\xfd\x6a\xed\x53\x97\x83\xe0\x3c\x5d\x0e\x24\xd3\x1b\x8c\xf3\xc2\x5b\x06\xbd\xc1\xf2\x99\x4a\x5a\xee\xee\xfa\xcb\xe7\x81\xdc\xc5\x0f\xb1\xc5\xd0\x9b\xd0\x25\x45\x12\xa2\xbe\x90\xb2\xf3\xe5\x85\xef\xfb\xfd\xd4\xe3\xbf\x68\xc5\xff\xe1\x6b\x9e\x03\xce\x7d\xa8\x7a\xb0\x7c\x26\xeb\x19\xf8\x6e\x45\xb9\xac\xa8\x3a\x5f\xee\xee\xf2\xaa\xd6\xd0\x1b\x8e\xe2\x6d\x60\x86\x82\x62\x3e\x3d\xb3\x12\x2a\x7f\x70\x5b\x8b\x6a\xe6\x65\x34\xc7\x0e\x26\xc1\x59\x17\x76\x9f\xd3\xb1\x97\xf9\x83\xe4\x79\xd0\x3b\xf4\x38\x9a\x19\x47\x33\x93\x68\x66\x74\xce\x2b\x1e\x7b\x67\x34\x11\xfd\xc8\x2e\xa8\x40\x4a\x83\xac\x7d\x7a\x56\x6f\x8c\xf9\x77\xa9\xee\x00\x93\x75\x32\x28\xb0\x96\x93\x36\xd0\xb3\x17\x3a\x47\xc4\x30\x7a\x9c\xc9\xcf\x46\xac\x90\x73\x24\x29\xdf\x85\xef\x60\x76\xe1\xaf\xca\xbf\xbf\x77\xc6\xda\xd8\xf3\x22\xc1\x60\x33\x35\x63\xb2\x20\x03\x0e\x8b\xac\xd7\xc4\x92\x4f\x3b\x9c\x1c\xcc\x5f\xd3\xc2\xa7\x99\x1c\xd9\xac\x8f\xf8\xeb\x7a\x4b\xb9\x97\x26\x63\xaf\xe8\x72\x09\xad\xd3\xc1\xbf\x72\x1a\xe2\x2e\x4b\xf3\x80\x9d\x57\x17\x34\x09\xac\xdc\xbd\x03\x18\xf5\x2c\xe8\x0d\xb2\x67\xc9\x20\xdb\xdd\xf5\xf3\x20\x3f\x47\x98\xf3\xec\xe2\x62\x50\x2e\x93\x2a\x9a\x7a\x45\x97\xcb\x91\xfe\x5d\x14\x96\x0c\x84\x89\x7e\xe9\x99\x70\xb4\xc0\xf1\xe3\x7f\x2b\x36\xf3\x07\xa3\x82\x85\xd7\x03\x04\x3f\x1e\x6e\xf7\x45\x8c\x53\xab\x6e\x13\xe6\x64\xb8\xdd\xc7\x5f\xef\x86\xdb\x7d\x13\x2c\x28\x38\x17\x59\xe3\x68\x6c\x40\x07\xfa\xf7\x10\x1a\x2c\x00\xe9\xc3\xdf\xd0\x36\xaf\x47\xb4\x29\xc5\x0f\x4d\xef\xd8\xa0\x37\xeb\x74\xf8\xfa\xe6\x04\x47\x6c\x38\x29\x85\x4c\x43\xf3\x60\xef\x40\x51\xfb\xd0\x21\x7a\xbf\x37\xd8\xdd\xcd\x9f\x25\x03\xbf\x99\xa5\x67\xb2\xfb\xf9\xc5\x45\xa7\xe3\x99\x9f\x81\x39\x0f\x05\xb8\xca\x3d\x3c\xbf\xe8\xdf\xad\x7d\x9a\x05\x66\x91\x4d\x63\x28\xf0\x33\xc1\xfb\xd9\x63\x07\xd3\x6a\xa4\x9d\xa0\x16\xfa\x62\x30\x35\x45\xe7\xff\xdb\x66\xf0\xfc\xeb\x66\xb0\x33\x27\xd3\x69\x59\xeb\xf3\x03\x20\xef\x9a\xd7\xc1\x43\x53\x7b\xfe\xc8\xa9\x8d\xf3\xb6\x09\xaf\x96\xac\x77\xc6\x82\x68\x98\xeb\x93\x4d\x73\x5d\x8c\x09\x4d\x02\x06\x03\x90\xbb\xc3\x42\x71\x48\x72\x18\x92\xe6\x69\x9e\x18\x44\xe8\x74\x3c\xf3\x33\xe0\xd3\x38\x09\x92\x47\x0e\x64\xf2\x35\x03\x99\x3c\x3c\x90\x0f\x80\x18\x03\x99\x58\x03\xa9\x89\x37\x75\x88\x27\x4f\x3b\x7a\xef\xf3\xef\x8a\x4e\x67\x0b\x8e\xf0\x34\xf3\xef\xef\x63\xf1\x6b\x3d\x48\xe5\x2f\x5d\x1d\x97\x05\xee\xe4\xc9\x24\xca\xd3\xbc\xe8\x93\xe1\xf6\xee\xab\x73\x76\xd1\x85\xcf\xdd\xe1\xf6\x80\x8c\xf3\xac\xda\x5b\xb2\x64\x32\xad\xfa\x64\x94\xa7\xb1\x29\xe3\xdf\xe8\xd3\x10\x03\x12\xd2\x22\x60\x80\x3b\xe5\x87\xb0\x74\x5a\xf2\x25\xc6\x97\x27\x1f\x54\x41\xc3\x90\xff\xaa\xd8\x4c\x12\xbf\x92\x74\xe7\x54\x42\x7c\xce\x8b\xee\x55\x9e\x64\x1e\x5a\x1c\xd1\x8c\x0e\xb7\xff\xeb\xff\xff\x7f\x0d\xb7\x69\x7e\x61\x90\xab\x11\x56\x41\x1c\xb7\x40\xc8\xfc\xa3\x96\xfc\xdd\xe1\xf6\xf9\x70\x7b\x37\xd9\x1d\x6e\x5f\x0c\xb7\x69\x78\x31\x10\x7a\x28\x09\x7d\x61\xd0\x70\xa4\xf7\x60\xf0\x23\x0c\x22\xdc\x0a\xaa\x62\x75\x97\x1d\x16\xdd\x49\x91\x2f\xe6\x2f\xf3\x34\x0d\xe7\x25\x8b\xb9\x14\x99\x8c\xc7\xc3\x6d\xbf\x2f\xb2\x74\xca\x3a\x82\xcb\x3b\x3e\x24\xdd\x34\x9f\x18\x19\xf9\x61\xde\x28\x79\x58\x74\xcf\x82\x1b\x38\x68\xf2\xb2\xe2\xe8\x5a\xd0\xf3\xe1\xf6\x7f\x44\x38\xa6\xd5\x45\x17\xde\x53\x5a\x79\x95\xcf\x87\x37\x8b\xc2\xca\x7b\xef\x65\x5c\xa2\xe0\xd8\x60\x93\xff\xf5\x3f\xff\xd7\x7f\xfd\xcf\xff\x45\xb2\x1c\xac\xa8\x08\x7e\x0e\xb7\xb1\x3f\x02\xe5\x93\x2c\xf6\x1a\xb0\x15\x45\xa1\x1c\xcb\x62\x51\x96\xf0\x0e\x68\x72\xcd\x34\xb9\xc4\xe0\x3f\xfe\xb0\x22\x67\x89\x14\xab\xfb\x72\xea\x36\x9d\x62\xcf\xb3\x8b\x43\xfe\x8f\x3a\xc5\xbf\xf7\x0a\xdf\xef\xf3\x24\x31\xfc\xba\x54\x5f\xb2\x29\x2e\x51\xda\x63\x4d\x98\x81\xfc\xd2\x24\x7a\x95\xcc\x58\x59\x85\xb3\x39\xcc\xf8\x78\x51\xc0\xbb\x3e\x03\x47\xc3\xeb\x31\x6a\xc8\xa3\xe7\xc3\xed\x50\xb4\x79\x21\x21\x13\x94\xca\xf8\x40\x0d\xb7\x77\xc5\x51\x8e\x75\x79\x3f\x7c\x50\xa4\x19\x00\xff\xc9\x87\x32\xf3\x69\x61\xa5\x7a\x49\xc6\xd3\xf3\x6e\x95\xbf\x4a\x6e\x59\xec\x3d\xe1\x53\x98\xcc\x4a\x9f\x2f\x87\x44\x4e\x6d\x67\x24\x6e\x51\x83\x04\xd7\x26\x5c\xcc\x07\x7d\x25\xcd\x82\xaa\x8b\x28\x7e\x2c\xc2\xac\x1c\xe7\xc5\x8c\x15\x34\xe7\xc7\xcc\xa4\x4a\xd9\x2b\x7e\xae\xad\x2a\x56\xd0\x24\x40\xa9\x31\x08\x82\xfc\x70\xe9\x55\x7e\x3f\xa7\x61\x50\x71\xbe\x81\x53\x9d\x8e\xf1\x2b\x2f\x4a\xba\x80\x73\xc4\x0d\x4b\x69\x1a\x54\x5d\x3e\x43\x68\xd4\x76\xf0\x74\x1a\x1a\xb0\xfa\xd4\xcf\x69\x89\x88\xc7\x41\xde\x2d\xab\xb0\xa8\x58\x4c\xe7\xfa\xf7\xc7\x64\xc6\xe8\x24\xc8\x45\x4f\xe8\x34\xc8\xf9\xf9\xfd\x06\xf5\xe1\xab\x20\xc7\x97\x09\xe8\x4d\xc0\x69\x96\x5f\xd3\x65\x90\x77\xb5\x25\xf2\x6d\xc0\xce\xcb\xdd\x83\x8b\xc1\x6d\xa7\xe3\x2d\x83\x5b\xa3\xec\x4d\x70\x2b\x1b\xd9\x8b\xf1\xb8\x7d\x16\x64\xde\xc4\xa7\xd7\x41\xe3\x3c\x0c\x0f\x43\x8d\xb7\x12\xd3\x97\x6b\x3a\xa1\xb9\xdf\x0f\xe9\x55\x70\xec\xcd\x7d\x7a\x12\x8c\xb1\xdf\x87\x26\x23\x16\x69\xde\x19\x1f\xcf\x01\x68\x59\x86\xdb\xf4\x88\x4f\x23\x01\x34\x29\xc2\x95\xc3\xa1\x53\xfe\x87\x15\x03\x3e\xc5\x8e\x70\x92\x9c\xf8\xb4\xd2\xf3\xb5\xd3\x39\x92\x73\xe7\x31\xb5\xf0\xb2\x72\x76\x7f\x6d\x51\x20\xd0\x69\x90\x78\x67\xf4\x8a\xde\x20\x13\xb9\x3e\x14\xdd\xea\x74\xa2\x1a\x7f\xac\x33\xae\x53\xc5\xab\x8e\x7c\xc5\x34\x35\x3f\x3d\xf5\xfb\xf5\xea\x1e\x59\x8b\x77\x5a\xe3\x62\xa7\xfe\x9a\xa3\xfc\x2e\x98\x79\x0b\x7a\x46\xcf\xa7\x17\x74\xb8\xad\x86\x9f\x13\xe3\xbd\xcc\x3a\xe3\x59\x72\x35\xfb\xf4\xa5\x4c\x5f\x51\x28\x04\x33\x8c\x67\xbc\x92\x19\x4b\x9e\xac\x66\x19\xa7\x4e\x32\xf6\xde\xf9\xc9\xd8\x1b\xeb\x19\x86\xf3\xfa\x4d\x60\x4f\x03\x95\xed\x4d\xfd\xb6\x3d\x79\x50\x9c\xbf\xbb\x00\x7e\x00\xef\xb9\x88\x17\x97\xb6\xe9\x1b\x3a\xc5\x13\x35\x11\x00\x56\xee\x14\xb0\x78\x8f\x58\x88\x6b\x1f\x40\xe1\xa3\x83\x82\xb8\x5f\x3a\xdb\xd4\xfe\x7b\xd1\xbe\xb8\xb6\x22\x84\x0c\xb7\xe9\x47\x7a\xa6\xda\x07\x00\x2b\xf7\x0c\xda\x5f\x75\x3a\x2f\x11\x05\x7c\x55\x04\x30\x78\xeb\x60\x00\x59\xde\x8a\xb6\x91\x60\x00\x38\xbc\x14\x38\xa0\x39\x8a\x68\xe5\x2d\x5d\x29\x1c\x00\xc0\xca\x5d\x01\x0e\xaf\x10\x01\x35\x40\x88\xc4\xa5\x83\x84\xca\xf6\x96\x9b\x28\xf1\x4a\x60\xc1\xc1\x15\xad\x2f\xe9\x52\x61\x01\x00\x56\xee\xd2\x1f\xa4\x9d\xce\xc8\x9b\xd2\x25\x2d\xe8\xf5\x57\xec\xb8\x69\x3e\x31\x36\x5c\xe0\xf2\x86\x92\xe0\xcc\xc3\x9e\xb0\x40\x85\xc8\x15\xe2\xf4\xf3\x5e\xa7\x83\x4c\x7c\x2b\xd0\x99\xe7\xbd\x8b\x43\xf3\xa3\x7f\xb7\xa6\x95\x54\xbb\x84\x65\x99\x4c\x32\xef\x6e\x4d\xdf\x50\xe6\x53\x67\xe3\x80\xae\xb8\xfb\x06\x90\xda\x4c\x4c\x82\x8a\x4f\xe8\x18\x1e\x3b\x84\x3d\x23\xcd\x27\x60\xe6\x5e\xc2\x9e\xc1\xb7\x87\xf7\x32\xbf\xa6\x12\xd6\xe7\x53\xdf\xdd\x6a\x15\x7b\x35\x65\x24\x37\x49\x6b\xd7\xf8\x6e\xbf\x5e\xaf\x79\x0b\x4c\xdd\xe3\x76\x3a\xfa\xc1\x50\xdf\x08\x15\x9d\xa7\x4c\x4c\xc0\xe1\xf6\x39\x5c\xf0\xed\x61\xc7\x2f\x88\xf9\x05\x0e\x99\xe0\xd5\x90\xa6\x2c\xee\x92\xb7\xe1\x35\x23\xe5\xa2\x60\x2a\x12\xb4\x80\x53\x9e\x0f\x61\x29\x5e\x09\x5c\x86\x05\xeb\x0f\xc1\x80\x1d\xef\x0e\x6d\xab\x78\x61\xca\x3e\x34\x02\x19\x8a\xaa\xac\x48\x87\x02\x8f\x9d\xe1\x30\x83\x2b\x41\x22\x5f\xde\xc5\x4b\xc3\x33\xfe\xe5\x0d\xf1\x3a\x3c\x5e\x44\xac\xa0\xf0\x01\x0c\xd3\xb8\xb7\xc5\x5a\xfc\xe1\x30\xf3\x11\xa5\xd3\x02\xde\xb3\x8d\x42\x79\xe3\xce\x3f\x21\x6c\x86\x44\x03\xb0\x8d\x16\x65\x95\xcf\x94\xdd\xfd\xb4\xaa\xe6\xfd\xfd\xfd\x51\x52\x75\xd3\xd5\xbe\x89\xe0\x5e\xad\x3f\x58\xad\xe8\xfa\xa6\x1e\x89\xf6\x02\xab\x84\x77\x07\xfd\xd8\xdf\x27\xdd\x6e\x57\xd7\xbd\xf6\x07\xff\x52\x4a\x70\x86\xfe\x47\xe7\x1b\x5f\x8c\x8b\xe0\xfc\xa2\x2e\x2a\x4a\x69\x4c\x4f\xc7\x26\x18\x37\x29\x6d\xbf\x15\x49\x3a\x9d\xad\xc4\x2b\x68\x2a\x2f\x2c\x08\xf3\x52\xdc\x95\xa3\xe0\x6e\x3d\x58\xe0\x6e\x1e\xf9\x34\x92\x62\x4d\x70\xda\xcd\xf2\xa5\x67\xa4\x70\x69\x2a\xc8\xd8\x12\xee\x98\x68\xa4\x37\xa3\x20\xf3\x0a\xcf\xe7\x90\xc8\xd2\x83\x14\x6a\x2e\x85\x64\xc8\x17\x56\xe8\x73\x2e\x56\x06\xbc\x59\xcd\xbf\x22\x5c\x4a\x41\xee\x31\xc1\x10\x11\x62\x10\x81\x38\x26\x51\xd8\x53\x28\xd0\x48\x33\x5e\xd1\xea\x00\xe5\x3f\x64\x17\x9d\x4e\x63\xf7\xc7\x87\x63\xe8\x7c\x1f\xa1\x38\x42\xb7\xde\x82\xd6\x78\x59\x45\xef\x78\x7e\x3f\x5e\xfb\x3e\x5d\x48\x9d\x6d\x8f\x0a\x3c\x7d\xf4\xc6\x11\x5f\x72\x48\xca\xf5\x7a\x0d\xc2\xc2\x35\xbd\xe2\xf2\x9b\x65\x98\xa0\x8c\x29\x96\x04\x95\xee\xd5\xee\x81\x8f\x82\x38\xf3\xd7\xf4\xa8\x19\xfc\xc4\x1b\x6e\xf7\x86\xdb\xb4\xda\x33\x2f\x79\xa4\xc6\x6a\x97\xad\xe9\x71\xd0\x30\x13\x8e\x90\x7f\xfd\x98\x2f\x8a\xd2\xf3\x29\x48\xff\xfd\xe1\xf6\xae\x48\x7f\x9b\x64\x8b\x8a\x35\xe5\x9c\xb1\x28\xcf\x62\x95\xd3\x35\xcb\xa4\x69\x52\xaa\xec\xa7\xfe\x9a\x9e\xba\xb7\x35\x32\xbe\x2d\x2b\x38\x63\xe7\xcc\x4c\xdd\x6c\x58\x69\x8d\x43\x63\x40\xf0\xc1\x3e\x34\xbe\xfb\x30\xcf\xde\x35\xcb\xd3\x68\x17\xc5\x2b\x45\x9b\xb0\x5a\x56\x37\xa9\x58\x11\x56\x79\x71\xd8\x40\x29\x79\x38\x5c\xf7\x1b\x32\xdb\x50\x95\x4d\xb2\xae\x61\x64\x11\x04\x81\x4a\xdf\x92\xbf\xf5\xa5\xeb\xa1\xc6\xaf\xaf\x1a\xa5\xef\xad\xd1\x4b\xc6\x5e\xfd\x62\x46\x6a\x7b\xab\xa0\x47\x8b\x40\xa4\xab\x9b\xeb\x4a\xdf\xcf\x54\xbb\xbb\x7e\x71\x5e\x5d\x80\xfe\x52\xce\xc9\x42\x2a\xdc\xb0\x62\xce\x45\x61\xbe\xbd\xe4\xec\x86\x9f\x50\x1e\xbe\x10\x45\x13\xac\xda\xe9\x1b\x93\x7d\xbf\xd3\x11\x00\xf8\xa7\xdf\x3c\x27\x96\x49\x16\xe7\xcb\x43\xfc\xc3\x05\x88\xab\xe0\xba\x7b\xcc\xd8\xfc\x98\x1f\xfd\xae\x3a\x9d\x97\xc8\x78\x0c\x56\xda\x5c\xd1\x55\xa7\xa3\x0b\x06\x41\x10\x75\x3a\x9e\x91\x70\x45\xaf\x04\xb3\xf1\xd7\x3e\xad\xbc\x8c\x16\xfc\x4f\x8e\x7f\x12\xfc\x13\xf2\x3f\x4d\x46\x06\x09\x2b\xbd\x48\x2c\x7d\x61\x60\x10\x39\x06\x06\x54\xdb\xd1\x1d\x1b\x60\xa9\x0b\x06\xbb\x86\x09\x31\x6d\x84\x40\x83\x5d\x09\x13\xbb\x30\x05\xbb\x61\x45\x65\x03\x4d\x5c\xa0\xa4\x7c\x99\x67\xe3\x34\x89\x2a\x09\x52\xdb\x90\x5a\x68\xb9\x76\xab\xca\xf2\x07\xab\x22\x2f\x3b\x1d\xef\x65\xa3\xf6\x89\x79\x9c\xe8\x2f\x03\x78\x00\x86\x46\x6e\xed\x6b\x64\xd1\xaf\x82\xbb\x93\xfe\x1d\x8a\xd0\xc3\xed\xff\xf1\xe4\xe0\x87\xef\x5e\x3d\xe5\x3c\x8e\xdd\x56\xfd\xe1\xf6\xcb\x1f\x8f\xde\xfd\xf5\xe4\xb8\x3f\xdc\x5e\xd3\x77\x06\xdc\x37\x2f\x8f\x5e\x7d\xdb\xd3\x70\x47\xc7\xc7\x02\xea\xd8\x80\x7a\xf5\xcd\x37\x4f\x9f\x7e\xa7\xa1\x8e\x4f\xde\x9c\x7c\x14\x70\x47\x1b\x5a\x3d\xfa\xf0\xe1\xe8\x33\x87\x5a\xd3\x37\xc1\x1d\x68\x26\xfa\xc3\xed\x34\x9f\x0c\xb7\x29\x6e\xf8\x7d\x21\xf4\x51\x25\x9b\xa2\xd9\x94\x38\x77\x8a\x2b\x33\xaa\xe4\x58\x99\x20\x4f\xca\xfd\xad\x03\xaa\x4e\xdc\xbc\xa8\x2b\x1b\x37\x72\xa0\x35\xad\xe9\x5e\x5a\xe0\x5c\xa9\xba\x05\x0c\xf5\x2f\xfd\x3b\x38\x21\x37\x4d\x94\x24\x9b\xb2\x22\xa9\x38\xc1\xd4\xbe\xde\x04\xf7\x3f\x7e\x38\xe1\xff\xe3\x70\x88\x62\x23\x50\xef\xe9\xd1\x0f\xaf\xbe\xe1\x40\x6a\xbb\x6e\x84\x93\xa3\x2b\xfa\xd1\x08\xf3\xea\x49\xef\x9b\xde\x37\x30\x46\xb0\x42\xb7\x0e\xa8\x75\x32\x90\x14\xaf\x0c\x22\x88\x8b\x4c\xfa\x31\x30\x6a\xfc\xe3\x87\x1f\x7d\x24\xa0\x0d\xc2\x59\xe3\xa6\x51\xdd\xdf\x37\xa6\x17\x87\x67\x9e\xef\xdd\xa9\x50\xd6\x15\x95\xb5\xf5\x8b\xb5\x8f\x1d\x70\xcf\x1b\xc3\x61\x66\x1d\x39\xc8\xcd\xd3\x0b\xf2\xe2\xc3\xc9\xd1\xdf\x5f\xbf\xfb\x2b\xc1\x15\xd4\x08\x73\x06\x2f\xcf\x3e\xed\xf6\xba\x3d\xfb\x94\x22\x2c\x18\xc9\x68\xa5\xce\x17\xe9\xff\xcd\xde\xbb\x70\xb7\x91\x1b\x0b\x83\x7f\x05\x56\x26\x26\x69\x53\x7c\x49\xd4\x83\x8a\xe2\x78\xfc\x98\xe8\xc6\xaf\x63\x6b\x32\x37\x47\xd4\x95\xc0\x6e\x34\xd9\xa3\x66\x77\xdf\x46\x53\x32\x63\x6b\xcf\xfe\x88\xfd\x85\xfb\x4b\xf6\xa0\x0a\xef\xee\xa6\x68\xcf\xe4\xbb\xd9\xdd\x6f\x92\x33\x23\xa2\x81\x42\xa1\x50\x28\x14\x50\x85\xaa\x9a\x33\x07\xc7\x24\x2b\xbc\x57\x0b\x1d\xe5\x54\xed\xa7\xed\x55\xfa\x6a\xdb\x32\xdb\x04\xf2\x8b\x0b\xb4\xe9\xec\x23\x0e\xc1\x27\xac\x27\x07\xc2\x4f\xdf\x74\x59\xcf\x6e\x78\xfa\xa9\xcb\xe4\xc9\xf5\xf4\xbc\xab\x2b\x9e\x9e\x37\x78\xa3\xb1\xee\x74\xe7\xea\x8a\xf1\xb7\xe0\x3e\x6a\x1c\xd2\xc0\x07\xad\x83\x2e\xc9\x2d\xe3\xd2\xd9\x3a\x99\xa6\xe8\x69\xda\x53\xa4\xb6\xf2\x1e\xb4\x79\x59\x48\x0f\x72\xb5\x52\xd3\x20\x0b\xd9\xcf\x1f\xcf\xf4\x83\x6b\xa8\xd3\xc3\x04\xf8\xac\xdd\xbf\x78\xd4\x6a\x77\x9e\x5c\xf6\xe7\x5d\x0b\x4c\xd0\x31\x9e\xdf\x00\xa6\xf5\xc7\x16\x79\x4a\x82\x5e\xb0\xa0\xc5\x8b\x2c\x64\xcf\xcb\xf6\xa0\x63\x34\xc9\xe1\x81\xf8\xf1\x73\x9e\xb3\xe2\x05\xe5\xe8\x9c\x3b\x2d\x01\xfd\xfb\xda\x21\x80\x22\x92\xdd\xb0\x94\x9c\x92\xd6\x1f\x2f\xe8\x6e\x34\xd8\x3d\xbe\xfc\x32\xba\x57\x1f\x31\x27\xf1\x5b\xc1\xc9\x70\x22\x13\xfa\xee\x47\x36\x7f\xf5\x39\x6f\x43\xbb\x2e\x69\xcd\x63\xf0\x6a\x87\x90\x31\xab\xa4\x8c\x6b\x2b\xb7\xda\x02\x71\xec\xea\x29\x69\x75\x9e\xb6\x4c\x4b\xeb\x85\x79\xc8\x04\x99\x34\x8d\x78\xdb\x3c\x5c\xe8\x12\x9e\x27\xb1\x7a\x0b\x50\x16\x6b\x45\x9a\x7e\x9f\x9c\xeb\xdc\x2e\x59\xc8\xe0\x2d\x0e\x4b\xcb\xb8\xc0\x91\x42\xf4\x82\x82\x97\x0e\x21\xb1\xaa\x33\x1f\xa6\x2b\x54\xe3\x5b\xad\x8e\xa4\x1f\x81\x73\x0d\x69\xb3\xa2\xe8\x58\xbd\xbe\x84\xd4\xe9\x0b\xc8\x1a\xae\xfd\xef\xe3\x88\xd8\x90\x64\xec\x01\x48\x1b\xe7\x4f\xa6\xa9\x66\x3b\xf0\xc3\x28\xc9\x29\x8e\x16\x12\xcf\xc9\x07\x0d\xfd\x3e\xf9\x04\x65\x62\x7c\xe0\x1f\x48\xe2\x94\x8c\x48\x4e\x8b\x92\xab\x07\x11\x09\x8b\xc0\xef\xda\x60\x20\x5d\xef\x14\xf9\xf4\xd3\x89\x22\x9e\x2f\x6a\xab\x9a\x7a\x86\x7d\x51\xdb\xb4\x33\xcc\xa6\x01\x2d\xd1\xdf\xf0\xe2\xb2\x5b\x9d\x37\x81\x47\xa7\xa6\x1c\x7a\xed\x74\x2a\xa1\x05\xb0\x62\x3b\x4e\xf3\x55\xcd\x14\x37\x4f\x1a\x36\x68\x9e\x26\xcd\xe0\x18\xc4\x28\x5f\x95\x3d\x7c\x41\xe7\x30\xb6\x1a\xed\xb4\x74\x42\x48\x0c\x31\x99\x1c\xb6\xaf\x64\x93\xc3\x67\x1c\x00\x93\x9c\x56\x47\x8a\xad\xba\x24\xee\x68\x76\xd2\xbd\x4c\xcb\x2d\x71\x2a\x35\x5b\x68\x22\x40\x03\xc5\x30\x2e\x11\xf1\x6e\xe6\x65\x13\x95\x10\xe9\x7e\x9f\xfc\x8d\xb1\x9c\x94\x05\x0d\x6e\x48\x16\x11\x9a\x24\xc0\x52\x52\x14\x61\x8a\x2d\x88\x08\x02\x0e\x91\x89\x4a\xca\x84\x3b\x87\xf8\x71\xfd\xe3\xfb\xb7\xd7\xe6\x45\x0e\x34\x7b\x4b\x73\x72\xaa\xc8\xd2\xfa\xe3\xeb\x57\x7f\x7c\xfd\xba\x35\x21\xad\xe9\x74\xf5\xfa\xf5\xeb\x97\xf2\x3f\xad\xae\xae\xf0\xfa\x8f\xaf\x5f\xd5\x54\x80\x81\x49\x42\x61\x30\x2b\x7c\xae\x61\x8b\x96\x1e\xfb\xcc\x02\x7b\xea\xef\x16\x71\xc2\x48\x7b\xa9\x63\xfb\x02\x89\x0d\xff\xe0\x72\x45\xe9\x40\x39\x99\xc5\x73\x12\x2c\x56\xe9\x0d\x24\x6c\xcb\x33\xce\x31\xea\x8d\x7a\xbe\xa3\x06\x74\x01\x00\x2f\x06\x97\x97\x7a\x82\x1d\xb2\xaa\xcf\x7a\xaa\xea\x38\xd0\x7e\xb7\xa4\xc1\xb8\x4d\x15\x2b\xe9\x10\x23\x10\x2d\x4b\x57\x31\x90\x1a\x91\x73\x1e\x0e\xc9\xa7\x43\x16\xeb\x6c\x45\xc4\x7b\x2d\x66\x9e\x87\x21\xb9\xfe\xe3\x8b\xd1\x35\x91\x19\x67\x21\xd3\x5b\xa4\x19\xa1\xcc\x30\xe7\x3e\x5c\x7b\xc6\xa5\x49\x0a\x27\xb1\x53\xf9\xee\x67\x71\x2a\xce\xe9\x64\x86\x99\xd9\xc4\xd9\x67\x0d\xf2\x12\x1e\x35\xa1\x78\xd1\xc3\x69\xfd\xf1\xc5\xa8\x25\xc6\xa2\x38\xa2\x65\x71\x01\x4b\x4b\x19\x08\xc1\xf6\x0e\x34\xad\x15\x19\xeb\x72\x41\xca\xb6\xb5\xeb\xb7\xdf\x27\x1f\x25\xce\x62\x19\xe0\xe4\x58\x6f\x4f\xb9\x91\x22\x37\x6c\x4d\x4e\x15\xb0\x8b\xf8\x52\x12\x5b\xad\x7f\x5c\xc7\x6a\x3b\xb7\x76\xbe\x1b\xb6\x16\x5b\x5d\xab\xd3\xb5\x96\xca\xc5\x0d\x5b\x5f\x76\x6a\xde\x6d\xa9\xd5\x0d\xa5\x1b\x14\x0c\xd4\x27\xc2\x9f\x3f\x9e\xc9\xb1\x58\x6f\x8a\xcc\x37\x8c\xba\x86\x9b\xa0\x79\xf0\x66\x42\xcf\x9c\xaf\x73\x86\xe1\x67\x5a\xaf\x3e\xe7\x98\x43\xf8\xda\x34\xbf\x96\x69\x04\x55\x2c\x9a\x6b\x84\x74\xdd\x25\xf3\xac\x24\xd7\x2d\x13\x99\xc6\xea\xf2\x29\x69\x5d\xb7\x9c\xa1\x59\x0b\xd1\xaa\x77\x6a\x35\x32\x6a\xd0\x74\xfa\x54\xa8\x40\x2d\x62\x49\x4b\xb5\xc1\x2f\x18\x04\x8d\x29\xc5\xb6\x87\x33\x55\x6c\xb7\xb3\x5b\xc4\xda\xb8\xa1\xbf\xa6\x49\x32\x13\x52\x11\xe2\x61\x41\xf0\x48\xaa\x5e\x52\xca\x0e\xdd\x0d\xbc\x49\xde\x56\x3a\xd4\xfa\x97\x56\x72\xaf\x74\x08\xb7\x7b\x15\x71\xad\xe4\x49\x3c\x83\xd7\xc7\xf2\x71\x94\x60\xbb\xb3\xb4\x4c\x60\x8a\x84\xba\x77\x32\x4d\xad\x64\x1f\xce\x27\xfd\x66\xcc\x29\xbd\x98\xee\xbc\x7e\xff\xf1\xed\xf3\xf3\xab\x57\x1f\x3f\xbe\xff\x38\xdd\x11\x0b\xcc\x2f\x3b\xa9\x6f\xf8\xf3\xbb\x4f\x3f\x7f\xf8\xf0\xfe\xe3\xf9\xab\x97\x57\xd8\xe0\xfc\x95\x86\xd0\xf0\xb1\x01\xd4\xd9\xbb\xbf\x3f\x7f\x73\xf6\xf2\xea\xc5\xfb\x77\xaf\xcf\x7e\x52\x30\xfc\xd2\x86\xc6\x6f\xcf\x3e\x7d\x3a\x7b\xf7\xd3\xd5\xcb\xe7\xe7\xcf\x55\x53\xb7\xec\x81\x86\xe7\x1f\x9f\xbf\xfb\xf4\xe6\xf9\xf9\xd9\xfb\x77\x7e\x7b\xe7\x93\x58\x76\x1d\x97\xaa\x42\xff\xf2\x4a\x4e\xc9\x97\xfb\x8e\x52\x78\xf5\x27\x72\x4a\xfa\x4f\x9e\x90\xbf\x04\x09\xe5\x9c\x3c\xe9\x13\x6b\x9e\xae\xe0\x5d\x8d\x9e\x20\x3d\xf3\x06\x70\x97\xc8\x3a\x72\x24\xba\xad\xae\xd1\x16\x0c\xd5\x55\x8f\xef\xbb\x84\x7d\x0e\x58\x35\x1f\xb6\xce\xd1\x4e\x4e\x25\x44\xeb\x31\x0f\x99\xee\x5c\xfc\x05\xae\x60\xcb\x5f\x79\x3f\x4e\xcb\x04\x43\x4f\x61\x5c\x28\xd8\x1b\x9f\x12\x41\x20\xf8\x2d\x7b\xc2\xe0\x52\x70\xde\x22\x4f\x49\x5b\x77\x4b\x9e\x11\x38\xb6\x42\xb1\x2e\xed\xd9\xad\xaa\x5f\x79\x29\x16\xd7\x84\x08\xcd\x1a\xb2\x0f\x63\x16\x79\x1d\x0a\x03\x52\x5f\x07\x48\xe4\x00\xd9\xbd\xe6\xc9\x24\x20\xdd\x0b\x68\x5e\xae\xe0\xfd\x76\x70\x73\x5e\x08\x01\xbe\xf1\x0d\x25\x69\x6a\xd6\xbe\x42\xe2\x68\x4a\x7b\xcf\x27\xbd\xc7\x93\x57\x16\xce\xf7\xce\x8b\x50\x0d\x40\xb0\x51\x1b\x41\x75\xec\x27\xd3\x86\x57\xee\x25\xf7\xfc\x9c\xf2\x55\x2e\xbe\xb2\x50\x7b\xc3\x7c\x3f\x37\x35\x42\x6b\xe4\xae\xc6\x16\xed\x07\xf8\x4c\x11\xa3\x86\xc5\x1a\x04\x03\xe9\x3f\x21\xb5\x9f\xc8\x93\x7e\x3d\x5b\xbb\xfc\xe1\xd2\xba\x11\x71\xa0\xbd\x99\x4a\x87\xfe\xcd\xd4\xbe\xd7\xab\x19\x22\xb0\xbd\x80\xa7\x93\xbf\x65\x59\xfb\x60\x36\xac\x6f\xbf\xea\x6f\x20\xbd\x2f\x4f\x05\xcd\xdd\xb2\xef\x22\x76\x15\xc7\x4d\x54\xae\xa1\xa1\x22\xaf\xcc\x16\xf5\x92\x96\xf4\xfb\x89\xeb\x03\x69\x24\xad\x5f\xf1\x37\x10\xd6\xdd\x6d\x04\x59\xed\x92\xef\x22\xaa\x8f\xdd\x26\x92\x56\xe8\xa6\x09\x8a\x9d\x22\x37\xff\x06\x92\x56\xc0\x34\x13\xb5\x52\xd5\x90\x35\xc9\x02\x9a\x30\x71\xe6\xe7\x41\x11\xe7\xa5\x00\xf3\x7d\xdb\x94\xab\x9e\x08\x7a\xdb\x25\x36\xbd\xf5\xf6\xf4\x06\x3a\x9f\xe0\xde\x85\x98\xa8\x4d\x48\xe2\x7c\xf6\x52\x7e\x6d\x1b\x04\x9d\x5c\xf8\x5e\xb1\x0e\x96\x24\xff\x98\x58\x15\x7a\x71\xd8\x51\xe0\x5f\xca\xab\x54\xd9\xcd\xef\xd8\x89\x0e\xe8\x06\x80\xad\x0e\xb1\x46\x9c\xa5\xbf\x6b\x67\x1a\x6a\xc7\xda\xf4\x37\x30\xb4\xd9\xb2\xed\x7e\x2c\x98\x27\xdf\xb0\x7b\x56\x19\x6b\xe3\x8a\xa8\x32\xbe\x27\x64\xc0\x70\x92\x80\xa1\xe6\x37\xcb\x1a\x1f\xd6\x43\x22\xc7\xaf\xdf\xb6\x57\x04\xf2\xe6\x37\x2d\x87\x5a\x65\xd5\x96\x42\xd6\x07\x58\x1c\xd3\x1d\x89\x89\x5a\x26\x13\x32\x9d\x4e\x77\x80\x57\x1c\x26\x96\x2c\x25\x23\x8a\xca\x65\xa3\xab\x3a\xcb\x48\xb0\xc2\x0a\x60\xfa\x2c\xe7\xf1\x29\x79\x46\x5a\xca\xbc\x20\xbb\x6f\x09\x9d\x2f\x0e\x5b\x92\xb1\x28\x44\x4d\x82\x93\x56\x6f\xba\xf3\xaf\x65\xab\xfa\x19\xd9\x42\xda\x56\x18\xc8\x3f\xc0\xc5\x5c\xc5\xb9\x78\x95\xc0\xa5\x59\x97\xc4\xfc\x25\x2d\x99\xf7\xf3\x3c\x5e\xb2\x4f\x37\x2c\x61\x65\x96\x8a\xb2\x37\xe0\xbe\x90\x58\xb5\xde\xc1\xc3\xac\x4a\x81\xdd\xe8\x43\xb2\x72\xdb\x7c\xc8\x56\x69\x68\xfd\xc6\x90\x8a\x56\x81\xe8\xd6\xfe\x49\xe7\xfa\x97\x32\xa9\x88\x23\xc0\xae\x9c\x22\x3c\x17\xec\xe6\xb4\xe0\x4e\x40\x21\x4d\x8f\xbf\xd3\x64\xc5\x24\xfb\xcb\x3d\xde\x2e\x72\x36\x0f\xfb\xbb\xbe\x62\xe8\x5a\x41\x8c\xc0\xee\xd5\x72\x0f\xba\x1f\x9e\x7f\x3c\xbf\x3a\xff\xc7\x87\x57\xee\x21\x57\x17\xeb\x25\xa3\x4b\x2e\xcc\x5f\xd3\x9d\x04\xc9\x8a\x07\xbc\x01\x9e\xf2\x74\xd9\xc9\xa6\x96\xca\x63\x42\xb4\x19\x62\x43\x55\x84\x27\x42\x5d\x19\x4e\x83\xe6\x97\x3e\x09\xba\xf9\x0c\xe5\x04\xb7\xe1\x5e\xde\x89\x37\x09\x25\xca\x24\xf0\x27\x32\xaa\xd3\x3f\xa0\x4e\x2d\x2f\x63\x6b\x74\x65\xb3\x08\x04\x99\xde\xc5\xb7\x8a\x4c\x49\x28\x2f\x3f\xd0\xa2\x24\xa7\x84\x26\xc9\x05\x4d\x12\x2b\x14\xf2\xa5\x77\xb8\x7a\xa4\x6b\x7f\xfd\xea\x1e\x9c\xd4\x07\x78\xb0\x00\x37\x4a\x03\x21\x7c\x24\x71\x85\x2c\xf5\x5b\xe4\x9b\x6a\x57\x0e\x66\x02\x2f\xf0\x15\x81\x41\xd4\x9f\xbe\xfc\xb4\x88\x0e\x5e\x18\x30\xf9\xe9\x29\xf6\x0b\xbf\x36\x9e\xe1\x68\xa2\x52\x58\xde\x77\xc9\xc5\x65\x43\xea\xce\x98\x23\x4f\xff\xe7\xdb\x37\x72\xe5\xbc\x4e\xdb\x2c\xf1\xf3\x9c\xa8\x0b\x30\x3f\xbc\x14\x02\x95\xd9\x48\xda\x5c\xae\xe5\xce\x84\xd0\x30\x24\xea\x27\x91\x27\x92\x6a\xef\xb8\x1e\xcf\x33\x31\x40\xde\x66\x09\x57\x3b\x07\xef\xca\x6f\x25\x2b\xf4\xdf\xbc\x8b\x51\xa3\x79\x97\x04\xab\xa2\x60\x69\x89\x02\x03\x56\x60\x97\x00\x1e\xaf\xb3\x82\x84\x6c\xb6\x9a\xcf\xc1\x60\x95\x15\xf1\x3c\x4e\x69\xa2\xb5\x0b\x39\xac\x7e\x9f\xfc\x35\x2b\x49\x4e\xcb\x05\x6c\x0a\xbc\x2c\x28\x58\x8a\x78\xbc\xcc\x13\x46\x96\x7c\x4e\x4a\x23\x1b\xb9\xe1\x6e\x96\xb8\xe6\x2e\xf2\xf8\x71\x45\xdc\x89\x4a\x17\x83\xcb\x4e\x1d\xe7\x5f\xb8\xd3\xeb\xcd\xb6\xf8\x47\xd0\x7a\xe2\xf3\x53\xb7\x5a\x0f\x2d\xb7\x04\xfb\x42\x86\xf0\x6a\xdd\x5b\xbf\x2f\xdd\xd5\xe6\xdc\xd6\x5f\xa8\x8f\xfa\x62\xf9\x0a\x6e\x96\xbb\x02\xf8\xd5\x90\x9c\x8a\xff\x9e\x88\xc2\x3f\x61\x89\xbe\x65\xbe\x52\xd7\xcc\xf6\x8a\x14\x5c\x82\xf5\x2e\xae\x62\x7b\x05\xf6\xfb\xe4\xd5\xe7\xb8\x24\x8c\x16\xc9\x5a\xd1\x5d\x6c\xb6\xb8\xe8\xdd\xa5\x5a\x43\xd4\x4e\x65\x55\xe1\x10\x64\xb0\x80\xdf\x81\x94\xf5\x64\xb4\x97\x2b\xc1\x50\xd6\x65\x9c\x36\xad\x3f\x9d\x9b\x07\xe3\x1c\xc2\xae\x0f\x23\x24\x33\xa6\xd1\x40\xe7\x3a\xbb\x8d\xba\xa1\xbf\xfe\xc3\x35\x89\x53\x92\x03\x6b\x93\x62\x95\x30\x6e\x6c\x52\x34\x28\x57\x34\x21\xe0\xa0\x14\x07\x88\x77\x85\x6e\xf6\xae\x59\x4b\x35\xeb\x9a\xa9\xba\x90\x70\x85\xe3\x33\xea\xea\xfd\xd2\x16\x44\xff\x16\xc2\x5b\xc4\x37\xeb\xbd\x37\x67\x25\x2a\x07\x28\x9b\xda\x52\x26\x74\x7a\x58\xa7\x5d\x45\xba\x53\x03\xbb\x32\x6d\xf7\xdf\x32\x8b\x82\x91\x6f\x69\x21\x13\x0e\x2b\xce\xf0\x98\x39\x8d\xb2\x02\x0c\x41\xb4\x04\xcb\x4a\xc1\xfe\x7b\x15\x17\x4c\x46\xb7\xe7\x84\x16\x8c\xe4\x18\x33\x50\x67\x0f\x80\x5c\x02\x85\x37\x69\x8f\xda\xb2\xc5\xe3\xc7\xba\xd7\x38\x95\x60\xaa\x13\x68\x6c\x1b\x15\xbd\xa5\x2d\x9b\x77\x89\x2f\xfb\x36\x8d\x13\xe6\x5d\x76\x77\x21\x21\xf8\x7b\x67\x45\x15\x6c\xe4\xad\x47\x08\x50\x68\xbc\xc8\x65\xb7\x86\xb1\xa4\x99\xa6\xfe\xe3\x26\xae\x93\xd5\x9a\xf9\xed\xdb\xfb\xa9\x87\x25\xfe\x79\x46\xa4\xaf\x09\x34\xea\x34\x57\x9c\x90\x56\x6b\x33\x9b\x6d\x25\xa2\x9a\xf1\x7f\x56\xd1\x43\x26\x64\x28\x4a\x64\xc0\xa4\x4d\xf2\xec\xf7\x11\x66\x1f\x59\xb0\x2a\x78\x7c\xcb\x50\x66\x2f\x69\xa9\x84\x13\x64\xdb\x02\x95\x1c\x25\x78\x4b\x3e\x98\x20\xff\xf7\xff\xf9\x7f\xc9\x44\x25\x01\x4d\x85\xd8\xa3\x0e\xc4\x94\xf1\x92\x85\x62\xf7\x2d\x59\x01\x09\x17\x56\x41\xb9\x2a\x58\x0f\xd2\x71\x04\x8b\x2c\x83\x23\x98\xb4\xc5\x4a\x98\x65\x46\x56\x9c\x91\x98\x3b\xa0\xe8\x4c\x6c\xdd\x41\xc9\xc2\xdd\xd9\x1a\x10\x0a\x59\xc2\xe6\x54\x14\x94\x19\xb4\x07\xd1\x8b\x89\x7d\x24\xd1\x2a\x12\xd3\x3a\xd0\xd4\x32\x35\xa6\xdb\x5b\x43\xf4\x4a\xad\x0a\xf5\x64\x89\x35\x5b\xd5\x99\x78\xa6\x74\x97\x5e\x48\x4b\x76\xa1\x5a\x5d\x56\x6b\x4e\x6a\x4e\x52\x6d\x55\xbf\x81\x03\x9f\x69\x34\x7a\x70\xa6\x09\x65\x68\xd6\xfa\xda\x6e\xbe\x65\xfb\xcb\xef\xbb\x8d\x1a\x49\x5e\x8f\x87\x90\xef\x6a\xa4\xae\x84\xef\x92\x4d\xa3\x55\xe2\xff\xb6\x4e\xe2\x7f\x23\x5f\xe3\xbc\x5b\xc7\xc7\x7f\xd9\xbc\x97\xf1\xf2\x7f\xcf\x3b\xfc\xf3\xef\x33\xef\xce\x5d\xc4\xbf\x6c\xe6\x71\x97\x79\x68\xee\xdd\x6b\x90\xff\xef\xce\x7c\x9d\x46\xf7\xbf\x7c\xbd\xeb\xfb\xa1\xc6\x49\x0f\x16\x71\x12\x16\xe0\x2a\xca\x92\x9e\xfa\x25\x4f\x9e\xf2\x2c\x54\xd1\x05\x55\x63\x44\xf8\x75\x6a\xeb\x52\xd0\xec\xf2\xa4\x46\x4b\xaa\x3d\x7b\x2b\x10\x55\xec\x88\xa3\xf8\xd5\xde\x3e\xb5\x65\x77\x5d\xeb\x88\xbe\x51\x11\x24\x55\x7d\x05\xb2\xd3\x52\xe9\x89\xe3\x9c\xcf\x0d\x31\xbe\xf7\x90\xee\x77\x8d\x04\x07\x17\xb5\x53\x4d\x3c\x79\x81\xb4\xa4\xb9\x75\xff\x93\x77\xc8\x17\x7d\x45\x24\xe9\x4f\xee\x3b\x3e\x40\xa0\xab\xfb\x1a\x09\xe1\xd7\x93\x53\xf7\x7d\x81\x7f\xf9\xd3\xd4\xac\xca\xa9\xa7\xf9\x50\xd2\x95\x80\x3c\x9c\x83\x86\xd3\x13\x0c\x62\xe3\xc1\x49\x1d\xce\x7e\x07\x55\x90\x98\x55\x1a\xd4\x1d\x92\xfc\x11\x77\x1a\xce\x09\xb8\x80\x9c\x0b\xd8\xc6\x35\x94\xe5\x25\xae\x13\xf9\x80\x15\x57\xc1\xa5\xd0\xc5\x4d\x61\x2f\x2b\x17\xac\xa8\x9b\xbf\x2c\x2f\xbf\x81\xf9\x91\xf1\xf5\xd1\x5d\x2a\xbd\x8e\x07\x9d\xe9\xb4\xf3\xad\xab\xa1\x79\xca\xdd\xb5\x91\xe5\xa5\x42\x60\x9b\xc5\x51\x61\xdc\x6d\xa4\x97\x73\x3d\xbe\x3d\xf1\xa7\x3b\xa7\x60\xcc\xc0\x49\xf8\x16\x82\xc3\xc7\xb3\xb4\x4c\x7a\xd8\xf5\xc7\x95\x38\x85\x37\xb2\xae\x9e\x1e\xdb\x70\x3a\xdd\xf1\x01\x90\x18\xdd\x28\xe9\x2d\x8d\x13\x88\xce\x1e\xa7\x78\x49\xc2\xd2\xdb\xb8\xc8\x52\x31\xbc\xde\x74\x9a\x9e\x17\x6b\x92\x67\x09\x44\xc8\x97\xb9\xd1\xa4\x6d\x66\x3a\xdd\x71\x7d\x7c\x76\xf1\x44\x02\xb7\x25\x60\xd9\x41\xab\x9e\xb1\x2a\x9d\xbd\x3b\x7f\x73\xf5\xfc\xc3\x99\x6b\x52\x52\xa5\x60\x4f\x7a\x80\x31\x6a\x98\x43\x91\x5c\x74\xab\x05\xd8\xe6\x5d\xd0\xa2\x83\xd9\x04\xbf\xc8\x65\xcf\x92\x1e\x8e\x43\x08\x74\x72\xdf\xb4\x2d\xe2\x91\x0b\x65\x3d\xd9\x25\xc0\xde\x51\xc4\x19\xf8\xd1\x0f\x2a\xac\x45\x30\xe3\xaf\xcb\x14\x02\xe5\x6d\x16\xe4\xfd\xff\x3f\xd7\xa7\xfc\x6f\x1d\x75\xb7\x5f\xb9\xae\x61\xc3\xb1\x9a\xc8\x1c\x8b\x78\x7d\xfe\x3d\x0e\x93\x0d\xce\x92\x55\x47\xc9\x7e\x9f\xfc\xb2\x60\x29\xb9\x63\x98\x69\x9b\x12\xb8\x66\x5c\x64\x49\xc8\x0a\x32\x5b\x95\x24\xcd\xe4\x60\xcb\x4c\x92\x01\x5b\xd6\x39\x19\xfe\xfd\xf9\x9b\x9f\x5f\xf9\xee\x85\xb2\xf0\xc4\xed\x10\x61\xf2\x55\x9e\x27\x31\x0b\x31\xbb\x28\x70\x45\x15\xba\x72\xdf\x71\xa0\x7b\x85\x27\x95\xe1\xa4\x8c\x85\x84\xe7\x2c\x88\xa3\x38\x00\xbf\x33\x22\x96\xb2\x18\x52\x5c\xb6\x3c\x19\xd3\x3c\x24\x23\x19\xdc\x51\x99\x72\xb4\x8f\xb9\xde\x92\x0d\x9e\x92\xbf\xd5\x49\x65\x1b\xef\x14\xc7\x2d\x85\xcf\xbb\x04\x9d\x26\x9b\x4c\x1d\xe4\x41\xdb\xfb\x92\xcf\xbf\xd5\x51\x11\xbf\x79\x5d\x92\x53\x1f\x89\xad\x8c\xd8\xd6\x78\x6a\xa2\x7d\x3b\xfe\xe0\xf5\x19\x8e\x2e\xd4\x56\x80\xf3\x2b\xdd\x45\x0c\xf6\x96\xbf\x27\x14\x2e\x1d\xe4\xee\xdd\x94\x17\xbe\x6f\x46\x8d\xed\xbc\xce\x21\xa3\x22\xf1\x7e\x8b\x4f\x9d\x6d\x72\xde\xec\x52\xe7\xde\xfb\x42\xae\x93\xb3\x50\xcb\x58\x9d\x34\x78\x13\x6f\x6c\x72\xb5\xb3\x73\xb5\x72\xcc\xc7\xaa\xdc\x26\x4c\x77\xda\x75\x62\x62\x7f\x05\x63\xa5\xfc\xd0\x23\x2a\xad\x1a\x2d\x2c\xcf\x0b\x7b\x0b\x50\xf2\x5f\xbe\x22\xc2\xcd\xbb\xd5\xd1\x20\xb0\xc0\x93\x09\xb6\xeb\x1f\x14\xd5\xee\xe3\xdb\xb8\xfd\x19\x3a\xc2\xa4\x5b\x33\x5c\xeb\xf7\x67\x4d\x73\x1d\x03\xe8\xf3\xd8\x6f\x66\x02\xcb\xaf\x60\x0b\x46\xf0\xce\x81\x5d\x50\x2b\xbe\x7b\xf6\xd1\x1a\xe4\x4d\xba\x3d\xad\x64\xb9\xe2\xa5\xfd\x72\x42\x67\xf1\xfd\xd7\xcf\x95\x1e\xea\xf6\xf3\x65\x66\xc5\xf3\xa2\xfa\x8d\x8b\xb6\xc6\x75\x64\xb3\xe7\x54\xc3\xa2\xfd\xce\x69\x3a\x5f\x08\x05\xba\x4c\x94\x2d\x55\xe8\x23\xec\x73\x69\x72\x1f\x6d\x5a\xb2\xe4\x8e\xe2\x46\xa9\xad\x54\xf2\xd2\x5c\x02\xd3\x6d\x7d\x51\xef\xae\x4b\x4f\x13\xb0\x55\xec\xef\x9c\xeb\x0a\xa9\x36\xcf\x73\x75\x26\xa5\x23\x93\x97\xa0\x66\x9a\x4e\xd3\x86\x97\xd1\xf8\xfc\x48\x8c\xc6\x79\x20\xad\xf2\x22\xc3\x09\xba\x2c\x56\x0c\x83\x31\xc9\xae\xb9\x72\x0b\x23\xca\xf1\x50\xb2\xd6\x2c\x59\xb1\x9f\x0a\x78\x4c\x05\x00\xc6\x83\x09\x69\xfd\x81\x05\x2c\x8a\x86\x98\x37\x70\x38\x80\xa2\x20\x0a\x8f\xc2\x00\x8b\x46\x58\x34\x1b\xcc\x58\x30\xc6\xa2\x3d\x2c\x3a\x1e\xd0\x7d\xca\xb0\x68\x1f\x8b\x0e\x8f\x8e\x07\xc7\xb2\xe1\x18\x8b\x0e\x06\x87\xe1\xd1\x0c\x8b\x0e\xb0\x68\xbc\x7f\xc0\x0e\x29\x16\x1d\x62\xd1\xfe\x78\x4c\x0f\xf6\xb1\xe8\x08\x8b\xf6\x0e\xf7\x0f\xf7\x23\x2c\x3a\xc6\xa2\xd1\xc1\xde\x68\xef\x08\x8b\x9e\xd7\xe0\xfa\xbc\x06\xd9\xe7\x35\xa8\x3d\x77\x7b\xc5\x27\x42\xa0\x8f\x18\xca\x29\x62\xd5\x92\x55\xd5\x3b\xf9\x1f\x9c\xcd\x82\x85\xee\x44\x46\x11\x9b\x31\xe6\x4c\x64\x14\x05\x61\x38\x72\x26\x92\x45\xc7\xf4\x98\x3a\x13\xc9\xc6\x87\x7b\x87\x7b\xce\x44\xb2\x68\xbc\x37\x1e\x38\x13\x19\x41\x3c\x10\x67\x22\xd9\x78\xef\x78\x6f\xec\x4c\x64\xb8\x37\x8a\x46\x91\x33\x91\xc1\xc1\xe8\x68\x74\xe4\x4c\xe4\xec\x70\x18\x0c\x03\x77\x22\xa3\xe8\x88\x1e\x0d\xdc\x89\x8c\xa2\xf1\x68\x3c\x72\x27\x32\x8a\x86\x87\xfb\xfb\xee\x44\x86\xe3\xc1\x60\x30\xa8\x9f\xc8\x02\xee\x99\x37\xcf\x61\xff\xc9\x93\x69\x4a\x9e\x90\x17\x59\xbe\xc6\xd7\xd9\xed\xa0\x43\x46\x83\xe1\xfe\x6e\x5e\x30\x0e\xbe\x7b\xaf\x69\xc0\x66\x59\x76\xd3\x25\x67\x69\x00\x39\xf2\xa1\xc9\xb9\xd0\x60\x79\xb6\x2a\x02\x86\x2f\x79\x62\x4e\x92\x38\x60\x29\x67\x21\xdc\x74\x17\x20\xbb\xde\x9e\x9d\xab\x62\x12\x65\xab\x34\xc4\x0b\x06\x06\x30\xde\x9c\xbd\x78\xf5\xee\xd3\x2b\x12\xc5\xea\xe2\x81\x41\x5a\x3d\x12\xc6\x05\xc3\x44\xcd\x60\x77\x34\x3d\x95\x05\xb3\xf2\xf4\xf7\xfb\x88\x06\x26\x04\x15\x75\xb3\x59\x49\xe3\x14\x12\xb1\x93\x82\x41\xc6\xf6\x80\x29\x39\x2a\xf3\xc5\xc9\x1b\x3a\x71\x64\xe1\xf8\xdc\x10\x20\xdd\xb0\xbc\x24\x71\xc8\xd2\x32\x0e\x68\xa2\xda\xdc\xd1\x35\x89\x4b\x31\x38\x04\x8d\x79\x49\x8b\x55\x5a\xc6\x4b\xd6\xfb\x95\x23\xd9\x85\x66\x6c\x05\x1e\x72\x72\xc3\x01\xfa\xe2\x98\x22\x2f\x12\x39\x4b\x22\xb8\x4b\x34\x4e\x7f\xe4\xf1\x63\x28\xee\xe0\xe9\x06\xa4\xf1\x6b\x05\x6d\xba\x63\x01\x9a\xee\x74\x30\xc4\x82\xc0\xf8\x67\xce\xc8\xf5\x9c\x95\x56\xce\x92\x77\x74\xc9\xf8\x35\x99\xb1\x80\x8a\xd5\x09\xc7\xae\x24\x21\xb3\x22\xbb\xe3\xac\xe0\xca\xfb\x0b\x1c\x1f\xc0\x29\xab\xdf\x27\xd7\x6e\xda\x93\x6b\x92\xa5\x36\xb9\xae\x05\x66\xd7\x8a\x6a\x71\x4a\x28\xb9\xcb\x8a\x1b\x56\xf4\xc8\x27\xc6\xc8\x1f\x86\x47\x7b\x3d\xa4\xc2\x82\x86\x1f\x91\x30\xe4\x94\xcc\x7b\x05\x9b\xb3\x14\xe3\x66\xa9\xe2\xc7\x8f\x05\x61\xa4\x98\xa8\xc1\xbc\x3d\xef\xe8\xec\x1a\x98\xa9\xc6\x05\x30\xdd\xe9\x90\x3f\x9f\x82\x28\x00\xd4\x3f\x89\x53\x34\xd8\xa5\x93\x90\xd4\xf4\x17\xa7\x24\xa0\x1c\x5e\x0c\x5b\xd3\x4d\x0a\x06\x71\xfb\x42\x92\xd0\x12\xdc\x3f\xe0\xae\x2e\xb1\xb0\xb7\x86\xf2\xf8\x71\xed\x58\x14\x0a\xaf\xc1\xeb\xa4\x60\x4c\x08\xb2\x12\x3c\xd4\x04\x23\x1a\x0e\xe9\x4d\xd3\x5a\x5a\x9c\x3a\xf6\xa0\x9a\xa7\xb7\xd2\x81\xa5\x3d\xdd\xe9\xf5\x0b\x3d\x7e\xa8\x1b\x47\xa4\x6d\x50\x94\xfc\x06\xee\x01\x18\x90\x10\x48\x22\xb7\x78\x8d\x8a\xa8\xd3\x80\x89\x19\xbb\xe0\x40\xcb\xf7\x11\x60\x2e\x33\x49\x65\xc9\x11\xb9\x9c\x32\x42\x43\xe9\x4b\xe3\x8c\x96\x10\xf9\xfc\x56\xa8\x10\x32\xf8\x7c\x03\x05\x09\x91\x0f\x63\xdb\x46\xc5\xda\x82\x58\xa0\xa0\xdc\xab\x2c\x93\xff\x6f\x96\x60\x8f\x8c\xd4\x90\xd1\xd0\x90\x0c\x35\x9b\x2b\xde\x1c\xbc\xcf\xcd\x8b\x74\x7d\x40\x3f\x51\x5f\x71\x25\x8b\x1a\xb9\x97\xcc\x48\x57\x31\x74\x14\x93\xfb\x56\x70\x4b\x90\x2d\x05\xad\x20\x24\x01\x29\x17\x34\x95\x1b\x6e\x4f\xb5\xf9\x41\x27\x3d\xad\xa6\x37\xb5\x23\x12\x91\x67\xea\xcb\x44\xa5\xb1\x87\x97\xf1\x32\x7a\x9e\x86\xf2\x83\x17\x56\x4f\xc8\xbb\xe9\xce\x5f\xfe\xa2\x7e\xcb\x1b\x26\xd1\x96\xf2\x75\x1a\x9c\x35\x01\x70\xbe\x2a\x28\x4e\xa1\x05\x4a\xdd\x62\x9c\xd3\x79\x05\x90\xf5\x4d\x81\xb1\x8a\x9c\x19\x88\x53\xd4\x60\x0c\x35\x96\xf2\xf7\xa9\xe7\xc8\xad\x2e\xa4\xb5\x48\xc4\x2c\xa5\x0d\x2b\x01\x62\x31\x38\x0b\x5a\xda\x1a\x64\x7f\xd6\x19\xa4\xdf\x27\x67\x51\xad\xbc\xe3\x32\xcb\x64\x28\x3b\x4b\xd0\x0f\xe7\x8e\xb5\x0a\x86\xb2\x1b\x91\xb5\x93\x38\x43\x60\x05\x88\xb9\x20\x45\x8f\x12\xf5\xf6\x5e\x58\xed\x4c\x3b\xee\x54\x05\x97\x35\x2a\x7d\x96\x80\xe8\x35\x69\xab\x24\x33\xb8\xda\x26\x20\x2f\x69\x29\xb6\x6a\x0c\x05\xc2\x4b\xbd\x54\x70\x35\xa1\xc7\x91\x22\xdf\x1d\xe5\x1a\x10\x4d\x0a\x46\xc3\x75\x65\xac\x3d\xfb\xd8\xa2\xe4\x84\x14\x63\x2f\xa1\xae\x03\x52\x93\xa8\x4d\xb9\x18\x3c\x46\x23\x98\xad\x89\x1c\x2a\x84\x65\x08\x59\x87\x88\xcf\xb1\xc0\x5a\xc2\xf2\x46\xdc\x8e\xa3\x2a\x85\x3b\x24\x2b\x08\x25\x29\xbb\xeb\x12\xb6\xcc\xcb\xb5\xed\xef\xb4\x05\x4f\x40\x80\x07\xc9\x69\xcf\xfc\x1e\xe5\xf2\x12\xa0\x4c\x22\x81\x82\xe6\xed\x38\x4d\x59\xf1\x3a\xed\x92\x6c\x55\xe2\x1f\x62\xf7\xee\x0a\x89\xfc\x26\x0b\xf8\x9b\x98\x97\xf6\x6d\xf4\x59\xa4\x2a\x9a\x43\xa7\xe0\x17\x59\x68\x24\x8c\xe0\x2c\x4a\x7e\x52\x38\x42\xf6\xf1\xb4\xae\x9a\x0c\x41\x9c\x45\xa6\xb2\x9c\x15\xb0\x65\x8b\x8a\xfa\x83\xd8\x78\x64\xef\x8f\x1f\x6f\x09\x8c\x3c\xd3\x6d\x26\xa6\xd4\x4a\x5f\x3f\xb7\xa0\xbb\xb9\x4d\xdd\xce\x4d\x3f\x76\xf2\x7b\x75\x60\xc7\x48\x52\x2f\xf0\x57\xdb\xa2\x9e\x90\x0e\x17\x32\x86\x8a\x24\xa2\x38\xf4\xf7\xae\xe2\xf4\x36\xbb\x61\x4a\x15\x5d\xa5\x71\x14\x33\x0e\xec\x06\x5e\xec\x4b\x96\xa2\x72\xc0\x95\x2b\x1d\x44\x9f\xed\x6a\x28\x3d\xb0\xd8\x74\x81\xfc\x3d\x6d\xa6\x10\xc0\x94\x33\xb6\x1e\x99\xee\xec\x14\xd6\xee\x19\xfc\x78\x0b\x75\x0d\x03\xe0\xbc\xcb\xf1\x18\x7c\x25\xe4\xb9\x43\xb9\x7b\x8b\x27\x7b\x82\x8f\xc8\x29\xb0\xd3\x89\x5e\x3d\xe7\xc5\xba\x8f\x11\x2c\xa4\xf3\x5e\x99\x91\x65\x9c\xc6\xcb\xf8\x9f\x8c\x84\x2c\xcb\x4b\xf1\x27\x0e\xb0\x47\x3e\x42\x27\x82\x63\xc4\xd6\x92\x30\xd8\x1d\x10\x50\xc1\x82\xac\x08\x49\x12\xdf\x30\x85\x5c\xaf\x2c\xd6\xaf\x74\x90\x93\x9e\x69\xd2\xc3\x2d\x3a\x4e\x4b\x56\x44\x14\x76\xe9\x55\x12\x4a\x40\x60\x40\x99\x31\x96\x92\x36\x48\x38\xca\x21\x44\x7d\x9c\xad\x78\xb2\xee\x90\x90\xf1\x78\x9e\xca\x3b\x14\x21\xe0\x28\x09\x92\x4c\x45\xcd\x9e\x31\x09\x05\x09\x19\x82\x53\x77\xb6\x2a\x89\x8e\xd3\xd7\x45\xdb\x45\xaa\x63\x15\x09\x3d\x92\x93\x3b\xf1\x47\xc1\x08\x9d\x89\xda\x77\x0a\x8c\x12\x48\x68\xd5\x49\x09\xfb\x1c\xf3\x12\x5f\xc3\x01\x3b\xdc\x09\xf9\x95\x96\xa2\xeb\x00\x5e\xcf\x70\x38\x5d\x14\x0c\x4c\x23\xa0\x9b\x4a\x48\xa2\x06\xc6\xc2\x06\xd9\x61\x96\xb7\x94\x1e\xe4\x17\x06\x7e\x9c\xec\x96\x89\x59\x2c\x09\x15\x27\x14\xf0\x49\xa7\x9c\xaf\x96\xa0\xd4\x23\xa4\x85\xe6\x46\x41\x00\x21\xe1\x68\x50\x26\x6b\x92\xa5\x4c\x8f\xb3\x4b\x38\xc4\xf3\x03\xaf\xe9\x05\xcd\x73\x96\x2a\x25\x19\x4f\xe4\x92\x4a\x18\x49\x07\x88\x00\xc8\xdf\x31\x12\x82\x34\x87\x11\x0b\x1a\x67\xab\x40\xba\xc5\x2b\x12\x6a\x94\xcf\x17\x0a\x50\x96\x26\xa0\x35\xc6\x62\x48\x34\x11\xc4\xcd\x02\xd4\x99\xb5\xbb\x76\xcc\x55\x30\x1f\xc9\x06\x92\x67\xba\xe8\xc5\xaa\xa7\x5f\xb0\x17\x87\xe4\xc3\x84\x2f\x68\xce\xd0\x03\x36\x23\x8b\x2c\x67\xd1\x4a\x88\x75\xe9\xf3\x3f\x63\x24\x58\x30\x0c\x22\x24\x3b\xc4\xcd\xcb\x64\x48\x2e\xd6\x2f\x40\x0b\x8d\x84\xe4\x9c\xfd\xda\x15\x83\xd0\x72\xd2\xd2\x66\x8d\xc7\x88\xb4\x12\x4f\x77\x30\x2b\xe7\x74\x07\xda\x4c\x48\x94\xe2\x8d\xa0\x81\xa2\xf3\x5c\xfb\x21\x60\x1a\x00\x82\x1c\xd0\xf0\x58\x51\x18\x08\xd6\x8e\x26\x84\xd5\x4f\x2c\x85\x28\x8f\x9f\x56\x3c\x67\x69\xc8\xc2\x4f\x25\xbe\xbd\x9a\xee\x70\xa7\xc8\xd2\x46\x2a\x6d\xfe\x11\xb3\x24\x74\xdb\x40\x51\x4d\x9b\x57\x9f\x59\xb0\x2a\xd1\x0e\x34\xdd\x61\xea\x57\x4d\xcd\x17\x38\x79\x0c\x01\x07\xea\x97\xd6\xa3\xe0\x58\x21\xc6\x8d\xdb\x7f\xac\x75\x0e\x30\xb3\x82\xd0\x44\x39\x06\xf3\x0c\x77\xa0\x74\xc9\x08\x8b\x22\x51\x09\x35\x81\x7e\x9f\x40\xa6\x2b\xf0\x4e\x5e\x95\x4a\xac\xea\x7c\xeb\x98\x0a\x08\x53\x21\xa0\x17\x83\x44\xf2\x85\x34\x12\x7f\x12\xea\x4d\x0a\x0f\x64\xf4\x6e\x2a\x14\x85\xd5\x72\xb9\x26\x56\x58\x66\xcd\x27\x1c\x97\xc9\x1d\x03\xe7\x67\x89\x98\x1d\xc0\x59\xb0\xa0\x84\x62\x17\x5b\x5b\x5a\xae\xa3\x04\xc3\x65\xbe\x07\x59\xf2\x82\xde\xa3\xd4\xaa\x01\xda\xf0\x1e\x3c\xa8\x12\xac\x0d\x96\x56\x5c\x21\xb1\xd8\x20\xbb\x10\x47\x7f\x09\x82\x80\x2f\x40\x86\xc8\x5c\xdc\x18\x52\x5f\xa9\x2d\x31\xec\x4a\x98\x50\x00\x22\x6a\xa5\xf3\x04\x55\xa2\x54\x9c\xbe\x25\x09\x39\x23\xe5\x5d\x66\x70\x73\xd7\x8a\x46\xae\xdd\x21\x5f\xee\xeb\x3f\xbd\xb6\x6e\x42\x1e\xa8\xf2\x41\x91\x46\xd6\x55\xfb\x0d\x08\x7e\xb1\xc4\x95\xd3\x09\xd0\xeb\x8f\x4a\xad\xd7\xcd\xfe\x08\xe5\x96\xb3\x0a\x92\x52\x82\x41\x19\x95\xd2\x12\x3d\xe6\xd5\xed\x47\x6c\x98\xa1\x02\x50\x71\x03\xa9\x7e\xba\x70\x0f\x32\x97\xf5\xe6\x50\xeb\xb6\x46\x67\xb6\x57\xbd\xcd\x59\x09\xd0\x8c\x6e\xa2\x4a\x04\xfc\xf7\x91\x5e\x48\xef\x00\xe5\x3a\xe4\x34\x88\xc7\x8f\xf5\xdf\x6d\xfd\x07\x5a\x07\xdb\x17\x97\xca\x37\x42\x9c\x20\x9a\x80\xe1\x6d\x8c\xf8\xa7\xa9\xc6\xa3\x53\x71\x94\xb4\x2a\xe2\xa1\x12\x45\x5c\x43\xa3\xae\x77\xde\xeb\xd8\x0a\xe7\xb9\xe7\x5a\x24\xe5\x38\xce\x50\xdd\xf4\x9e\xe0\x43\x03\x4c\x80\xc1\x68\xa8\x21\xc9\xe5\xae\xd8\x43\xea\x48\x75\x14\x6b\xc0\xf3\xc4\x97\xa6\x42\xeb\x69\xe6\x4f\x6b\x11\xcb\x77\x2f\x35\xaa\x64\x45\xe7\xac\xf4\x8a\xb3\x52\xe9\xc6\x01\xf1\x53\xee\x08\x95\x4d\x58\xd5\x43\xfb\x60\x47\xcd\xdc\x04\xe7\x81\xe6\x17\x95\x23\xf3\x65\x65\xf0\x7a\x04\x42\xf0\x26\x74\x2d\x1f\x69\x4d\x77\x2a\x35\x6c\xe9\xff\x57\xd4\x22\x23\x78\x21\x1a\xc5\xa9\x3a\x06\xa2\x52\xbc\x49\x19\x96\x13\x2f\xe1\xe8\xb3\xbf\x51\x12\xe3\x94\x94\xac\x58\x42\x45\x2a\xa3\xc9\xfa\xfa\xb9\x2b\xd2\xf0\x18\xa9\x40\xa1\x22\xcd\xdb\xe6\x7c\xa0\xf8\xf7\x02\xb3\xeb\xa0\x99\x4d\x6f\xd3\xea\x7e\x76\xba\x73\x59\x0d\x69\x8e\xdd\x59\xdb\xbd\x86\x7a\x81\x9f\x6c\x21\xd2\xb6\xb5\x0e\x4f\x94\xa8\x01\x48\x88\xa8\x5b\x68\x97\x0e\xad\x21\x74\x6c\xae\x56\x1a\x7d\xcc\x2b\x73\x61\xf7\x3a\x67\xe9\xeb\x95\x09\x97\x02\xc7\x20\xe4\x17\x15\xbe\x1f\x2a\x54\x6f\x7b\x40\x02\x89\x4f\x36\x9b\xb9\x1e\x1c\x81\xdc\xc5\x08\xb8\xcb\x07\x2a\x2e\x48\x15\x1f\xfb\x41\xb7\x7c\x3a\x8c\xfb\x12\x08\x86\x6a\x7d\xab\xc7\x2e\xc6\xe9\x63\xbc\x44\xf5\x3c\x75\x20\x85\x19\x68\x94\x99\xd0\x01\x83\x1b\x12\x97\x9c\xf4\xc4\x6e\xa7\x6f\x31\xad\x07\x48\x6d\xd8\xad\x6d\x46\xfe\xfa\x15\x90\x86\x16\x1d\x49\x81\x1a\xc6\x56\x20\x26\x24\xa2\x09\x67\x8e\xdc\x57\xb3\xb0\xa4\xc5\xcd\x06\xb2\x0b\x41\x2d\x65\x07\x77\xf6\x04\x8b\x23\x6a\xbf\x4b\x40\xdd\x0d\xeb\xb8\xa3\x55\x50\xf7\x55\xbb\x9c\xbd\xab\x2b\xe0\xca\xab\xab\x87\x45\x0d\xd1\x6f\x24\xab\xb7\x69\x71\x2a\x01\xba\xbe\xb0\x58\x56\x2b\x4a\x1a\xa5\x84\xe4\x6a\xe7\x02\x49\x22\xdb\x2c\x6b\x7f\xca\x3b\x27\xfe\x21\xf7\xf5\x2a\x75\x26\xa3\xdf\x27\xbf\xc4\xe5\x42\xde\xd4\xce\xb2\x10\xee\x67\x69\xba\xc6\x8b\x46\x3d\x3b\x5d\x72\x4d\xef\x68\x5c\x92\xcf\xd7\xc0\x3e\x3a\x1e\xbc\x38\x50\x4a\x40\xd7\x6b\x50\x9d\x6b\x6e\xc6\x28\xdc\xc5\x7c\xee\x5c\xcb\x83\x9e\x8c\x69\xaa\x6e\x7d\xc4\xf9\xad\x64\x5c\x29\x29\xd7\xf6\xa6\x2a\x9d\x45\xa6\x3b\x57\x57\x80\xc0\x74\xa7\x73\x8d\x81\xa6\x85\x50\x8b\x53\x7d\x2f\x06\x9d\xab\xd7\xad\xf2\x25\x9e\xd0\xf1\x98\x3c\x67\xce\x18\x01\x00\x2c\xb4\x6f\x9c\x10\xb5\x26\x99\xa3\xcf\x22\xb2\xf3\x89\x90\x32\x52\xb8\x54\xee\x9b\x9e\xdb\xd7\xac\x6d\x4d\x03\x0d\xcc\x84\x35\xa8\x08\xae\x2e\x29\x18\xcf\x92\x5b\x26\xfe\x10\x53\x68\x31\x0c\x9a\x78\xe1\x92\xe0\xd4\x1c\xcc\x34\x78\x25\x36\xbb\xe6\x0a\xc3\x93\x85\x18\xd3\x56\x00\xc0\x80\x10\xb8\x68\xa5\xb8\xf6\xc4\xab\xe8\x5b\x55\x76\x05\x6a\x25\xfe\x83\xf3\x48\xdf\x34\x39\x71\x6b\xa8\xd7\xbb\xd2\x15\xd6\x7f\x9b\x22\x70\xc3\x2a\x46\xa5\xc2\x7f\x2a\x8f\x4e\x1d\xeb\xa0\x5b\xf7\x01\x7e\xf1\xfc\x81\xe5\xa4\x7e\x28\xb2\x65\xcc\x59\x4f\x52\x1e\x1b\xf6\x64\xab\x4e\xaf\x5c\x30\xe3\xbb\x2a\x5f\xf9\x54\x9e\x13\xe3\x44\x9a\x5d\x50\x76\xee\x4f\xa6\xe3\x94\x7b\xdf\xb5\x12\x4d\x39\x27\x5f\x0f\xa8\xde\x50\x59\x51\x3c\x04\xd3\x7b\x17\x51\xd9\x31\x6b\x07\xeb\x0f\x72\x95\x8a\xb5\x90\xb3\xd0\xc3\x49\xb9\xb5\x52\xbd\xc6\x24\x38\x21\x09\x24\xc4\xb0\x0b\x3b\x49\x04\x06\x36\x9c\xb4\x19\x0b\xb2\x25\xe3\x1e\x24\x50\x6a\xb0\x82\xd4\x58\x25\xb0\x3f\x61\xb4\xff\x6e\x98\xa5\xec\xfe\xcf\x8a\xb5\x22\xdc\xf7\x3c\x20\xf2\xf1\x8e\x54\xac\x85\xb2\xe5\x4e\xb0\xe1\x35\x30\x94\xc9\x61\x9d\x78\x95\x80\x12\xc6\xd9\xb9\x61\x82\x32\x7f\x8a\xf0\x9a\x98\xca\x89\xb0\xa8\x71\x47\xb9\xa2\x50\x57\xfa\x9b\xe3\x4d\xbe\xa8\x07\x69\x8c\x69\x70\xe3\x41\x8a\x53\x69\x57\x47\x71\x6b\x2e\x6b\xb5\xb4\xe0\x99\xd0\xf6\xe5\x53\xe5\x05\x4d\xc3\x44\xc8\xdc\x05\x2b\x58\xaf\x86\xab\x6b\xb9\x27\xdb\xcc\x3f\x16\xf7\x98\x1d\xc6\xbe\xa3\xc6\x5b\x44\x39\x4c\x7d\x73\xaa\x31\x64\xe9\x7f\xaf\xd8\xca\xd5\xc4\x0c\xc9\x4c\x68\x74\x9a\x24\x78\x35\x2b\x76\x1c\xd4\x2a\x9f\xa7\xe1\xf3\x62\x5e\xeb\x3a\x9b\xb2\x3b\x45\x59\xc3\xa2\xcd\x62\xd2\x5a\x3a\x1b\x05\x6b\xe3\xb8\xbd\xfb\x27\x6f\xd4\xf6\xdb\x7e\x64\x00\x39\x6a\x38\xb0\xc1\xb5\x2b\xc4\x4e\x08\x65\xa4\x6d\x69\x10\xb0\xee\x39\x61\xf7\x14\x9b\x4e\xe2\x40\xa2\x49\xa2\xfb\x52\xe3\xe5\xd6\x65\xae\x5a\x5f\x2a\x82\xb7\x74\x54\x90\x63\xed\x3a\xb0\xd4\xde\x8a\x3c\x8d\x0e\xad\x34\xb9\xa3\x6b\x4e\x42\x96\xc4\xb7\xac\x60\xca\x58\x4b\x82\xac\x28\x58\x50\x92\xac\x08\x59\xd1\x23\x67\x91\x03\xc9\x1e\x5c\x9a\x95\xcd\x03\x44\x57\x10\x7c\x21\x80\x03\x75\xe0\x88\x26\x12\x55\x12\x2f\x97\x2c\x8c\x69\xc9\x92\x75\x57\xdf\x2f\x0b\xaa\xc0\x85\x95\x10\x2f\x81\x15\xfc\x39\x8a\x8b\x86\xd1\x6d\x5c\x2d\xea\x7a\x2c\x83\x8b\x8d\x55\x1a\x97\x98\x96\xc2\x45\x4b\xe8\x37\x29\x0b\x18\xe7\xb4\x58\x13\xce\xca\x55\x8e\xa6\x2a\x4c\x35\x84\x97\xa8\x77\x74\x2d\x2f\xdc\x75\x69\x9c\xc4\xe5\xda\x81\x14\x73\x72\xb7\x58\xdb\x72\xcc\xb9\x29\x13\x68\x2e\x8a\x2c\x85\x4b\x78\x49\x08\x2e\x24\xa5\x4b\x6d\xb8\x39\xcc\x0a\x4d\x00\x3c\xe8\x09\xc0\xae\x16\xc6\x5d\x80\x35\x40\xa4\xe5\x5e\x32\x8b\x40\x0b\xc2\x73\xa3\xea\xd3\x93\xc9\x6a\xee\x2c\x1b\x8c\x0c\x2a\xe4\x92\xc7\xeb\xd4\x39\x41\xba\x94\xe7\x5d\xc9\x02\x0c\x1e\x3b\xd0\xc4\xc3\xca\xe6\x0c\xb8\x9e\x87\xcb\x4d\x70\x4c\xe8\xe2\x9d\xbd\xe0\x83\xf9\x42\x40\x91\x37\xde\x1c\x2c\x0a\x96\x70\xf3\x97\xe2\x33\xbf\x04\xf7\x31\x5b\x12\x34\xcb\x9a\xae\x27\x80\x9f\x83\x69\x5f\x9c\x7d\xe8\x1c\xad\xaf\x11\x8d\x93\x95\x40\xa3\xcc\xcc\x82\x44\xa9\x80\xd6\x50\x70\x92\xa9\xc8\xf1\x5b\x79\x71\xaf\xed\x59\xea\xd6\xa7\xb7\x1d\x62\xa6\x56\x87\x4c\x36\x0a\xcb\x13\x4f\x48\xbb\xc6\x5c\xb4\xb4\x85\xca\x2e\xa5\x2c\x1e\x62\xe5\xc4\x9c\xac\x38\x9a\x80\xcc\xfc\x6f\x61\x76\x6b\x73\xc6\xea\x2f\x05\x3a\x72\x70\xf6\x89\x1c\xc2\xca\x83\xf8\xb0\xcf\xde\xf5\x77\x0a\x8e\xce\xec\x5b\x20\x1b\x3e\x5e\xd4\xb8\x40\x7c\xc3\xd5\xa3\x51\xfd\x1d\xf8\xe4\xd4\xed\xcf\x9c\x8f\xde\x65\xa5\xb4\x07\xc9\xf8\x5b\xfe\xf2\x10\x62\x56\xd3\x93\x85\xe0\x2e\x96\xe5\x24\x8b\x24\x00\xb7\x1f\x79\x79\x7d\x22\x26\x6b\x4d\x7e\x5d\x71\x7d\xcd\x4d\xb5\x08\x91\x5a\x0f\x51\x7a\xd2\xd4\x58\xb0\x50\xc3\x92\xda\x51\x5e\x64\xe1\x2a\x30\xe1\x7b\x1c\x96\xd3\x27\x1c\x40\xd7\x3a\xe1\x7c\x8b\x4d\x5c\xb9\xab\x48\x03\xb0\x7b\xc6\x51\x2c\xbb\xb5\xa5\x1d\x1b\x54\x8c\xaf\x1b\xee\x65\xda\x12\x5a\xc7\x5c\x9a\x00\x3a\xae\xad\x1e\x2e\xc6\xad\xf3\x8f\x9e\x77\x86\xe6\x81\xca\x52\x9c\x40\x11\xb0\x7e\xdb\x57\x83\xa5\x46\x58\x7b\x68\x90\xaa\xa5\xd0\x51\xc9\x33\x57\xd1\x74\x40\x56\xb5\x8c\xca\x71\x71\x5b\x4b\xb5\x3d\x13\x60\xbb\xc1\x4b\x89\x1a\x43\x97\x4f\xd6\x0d\x07\x4e\x6b\x74\xe2\x08\x26\xe1\x9e\x9e\x56\x4d\x5b\x0e\x1d\xcc\x23\x4a\xf5\x7e\xd6\xf8\x21\x88\x39\x90\x56\xdf\x62\x95\xa6\x60\x07\xab\x55\xb0\xea\x3b\xd4\x16\x32\xa7\x43\x51\x57\x4a\xb0\xe6\x63\xab\xc2\xcb\x3d\x7d\x3a\xc7\xa0\x7e\x9f\xfc\x08\xcb\x6a\x1e\xdf\xc6\xe9\xbc\x4b\x84\x68\x1c\x8d\x7b\x7b\xf8\x3f\x25\xb2\xc5\x1e\x36\x71\x5a\x2d\xca\x32\xe7\x93\x7e\x3f\x67\x59\x9e\xb0\xde\x32\xfb\x67\x9c\x24\xb4\x97\x15\xf3\xfe\xff\xf1\x6b\x56\xb0\x34\xcc\x8a\x28\xea\x33\x7e\xb0\x1b\x16\x34\x2a\x7b\x8b\x72\x99\xfc\x81\xb3\x60\x57\xb3\xa3\xe0\x92\x25\xab\xe8\xb7\x82\x87\x3e\x02\x03\xb5\x6b\xc9\xa4\x9c\x01\xd4\xf0\xa5\x24\x3f\xf1\xbf\xd3\x62\x4e\x4e\xe5\xd8\xf5\x82\xc4\x64\x3c\x65\xb1\xaa\x3e\xb5\x53\x21\x88\xe0\xdd\x1c\x82\x50\x45\xde\xc1\x5c\x15\x7b\xc4\xb6\x81\x7c\x54\x17\x00\x4b\xba\x9e\x49\x76\x7e\x29\xbf\xe9\xf6\x8e\xd7\x85\x81\x63\x77\xf1\xb1\x6e\xcd\xd5\x55\x01\x36\xf0\x0d\x96\x9d\xba\x77\xae\x36\xa9\x1d\x10\xee\xc9\xb9\x81\x61\x30\x87\x98\x3b\x03\xc0\x80\x78\xd4\xaf\x1e\x09\x3f\x61\x1a\x3f\x4d\xd3\x2b\x2e\x36\x57\x88\xe9\xcb\xe6\x34\x30\xb6\xb6\x2c\x22\x3f\xd2\x19\x4b\x5a\xfe\xc9\x58\x2d\xd7\x1e\xb4\x74\x9d\x64\x5c\x1d\x42\x76\x01\xf5\x4e\xbd\x1e\x4f\x6d\xc6\x38\xb1\x87\x24\xaf\x70\x1a\x47\x56\xbf\xb4\xea\x57\xab\x2b\x78\x2a\xf3\xe6\xcb\x29\xbd\xb8\xbd\xf9\x91\x39\x9f\x1d\x84\x9d\xb9\xa9\x1b\xb6\x32\x68\xbf\x52\x51\xb1\xdb\x16\x80\xce\x37\x0d\x59\x19\x2a\xbc\x01\x68\x78\xb3\x62\x95\x97\x6d\x53\xaf\x4b\xbc\xae\x6a\x51\xf5\x47\xaf\x65\xa9\x83\x5b\xfd\xbd\x5e\xb3\xbb\x92\x3d\x21\xd5\xeb\x3c\xe5\x75\x51\x7f\x57\x91\x9a\x10\xe2\xe8\x4e\x52\x64\x77\x29\xfa\x16\xe8\x0e\xef\x18\x49\x98\x38\x76\xea\xd9\xf6\x00\x55\xbd\x1e\x84\x8e\x98\x64\x59\x0e\x17\x1b\xc0\xeb\x34\x45\x67\x46\xa3\x0e\x3b\x9c\xab\x28\xa3\xa7\x32\x4b\x99\xcb\x11\xcf\xaa\x3c\xe3\x56\x98\x34\x78\x6c\x9c\xb8\xcc\x62\x51\x09\x04\x64\xad\xd4\xf0\xb8\xb6\x56\x88\x78\x4c\x58\x1f\x20\x45\xbe\xd9\x31\x1d\x7a\xc1\x4c\xc4\x38\x27\x8d\xa3\xbe\x6f\xe2\xd9\xed\x6e\x6d\xb7\x5d\x6e\xe2\x98\xa0\x7c\x41\xd0\xbb\x55\xb1\x84\x38\xd3\x64\x59\x2e\xa6\x14\x66\x92\x16\xe0\xd6\x8d\x37\x53\xfe\xd5\xdb\x56\xab\x10\x0f\xfe\x74\x96\xdd\xb2\x5a\xd1\xa5\x37\x35\x3d\xa4\x93\xda\x05\x08\x7b\x5b\xed\xe5\xf2\xbd\x7f\x65\xe5\xb9\xb7\xbe\xc0\x64\x62\x28\xf8\xb5\x63\xf5\x85\x8b\xc0\xa5\x8b\xb4\xe0\x67\xbc\x61\xb3\x2c\xaa\x2a\x64\x03\x3a\xbc\x82\x73\xbf\xf6\xd4\xa1\xe4\x8b\xba\xf3\x05\x95\xf0\x5e\x5f\x5b\x4a\xb7\x1d\x09\x43\xef\xb9\x0a\x8f\x2e\xc9\x00\xd4\x32\x0b\xe3\x68\x6d\xef\x1b\x92\x32\x02\x15\x0b\xb7\xae\x04\xc4\xbd\x5d\x46\x03\x2e\x33\x48\x39\x80\xe7\xb6\xc2\x72\x25\x62\x15\xbe\xef\x79\x6a\xe8\x36\x1b\xb7\xad\x84\xea\xb9\x7b\x90\xba\x72\xba\x3c\x25\x4e\x3b\xdc\xbb\x0e\xdc\xcf\xe5\xd1\x53\x50\x46\x1d\x3c\xef\x16\x0c\xb5\xf8\x0a\x01\xe5\xcd\x94\x6c\x63\x81\x51\xf4\xc3\x6b\x2f\xb4\x11\xd1\x52\x7a\x9e\xc2\xed\xec\x13\x60\xf6\x9e\xaf\x47\x59\x7a\x91\xa0\xe4\x89\xab\xb0\x6e\xbd\x63\xda\x2a\x8b\x26\x8c\x1c\x4f\xad\x70\x6e\x1e\x1e\x25\x8e\xa5\xbf\x4b\xe6\xf1\x2d\xb8\x7e\x50\x7f\x4d\x2e\xa8\x7c\xd5\x15\x24\x8c\xa6\x64\x95\x3f\xb4\xe8\xd4\x86\xb6\x61\xd5\xd5\x07\x67\xdb\x5a\xcf\xf3\x85\xf1\x37\xa8\x1c\x8a\x32\x75\x7d\x69\x86\x0c\x20\x31\x72\xe8\x0f\x4e\x2c\xbc\x0a\x2c\x33\x5e\x41\x23\xeb\x6e\x3c\x81\x0b\x29\x5a\x92\xec\x96\x15\x45\x2c\x13\xd7\x9a\xb7\xd8\x33\x96\x64\x77\xbd\x5a\x9d\xd2\x5f\x55\x5b\x69\x95\x5b\x89\x3f\x77\x1a\xdc\x1c\x81\x76\x27\xf2\x75\xb5\xe2\x18\x9d\x01\x52\x3a\xae\x13\x4a\x5a\x00\xbc\x25\xf9\xa7\xe1\x38\xb6\x79\x3c\x8e\x25\xa0\xaa\xae\x28\xce\xac\x70\x7c\x45\x53\x32\xa2\x60\x9b\x5d\x6d\x0b\x42\x3d\xb8\x47\x34\x2f\xec\x6f\x1e\x78\x9c\x46\x99\xdf\x89\x19\xd0\x23\xf8\xfe\x5b\xb0\xf7\x26\x79\x47\x4f\xaa\xdc\x4e\x54\x50\x2a\xe5\xf5\x6c\x4f\xe5\xef\x34\x4c\x7c\x59\x13\x65\xa0\x9d\x78\x92\x99\xf3\x78\x9e\xaa\x57\x29\x02\x1f\x79\x5c\x8e\xe2\x34\xe6\x0b\x66\xc2\xda\xaa\x47\xa2\x25\x5b\xe6\x59\x41\x8b\xb5\x05\x45\x3f\xf9\x97\x51\x71\xf0\xd6\x4a\x33\x0e\x42\x06\x1f\x13\x79\xdd\x88\x1f\x40\xb9\xeb\xf8\xd2\xfa\xa2\xa6\xdd\x25\xbc\x10\x89\x32\x6d\x64\xb6\x3a\xff\x08\x67\x70\x79\x47\x2e\xb6\x3d\x69\x47\x08\x19\x07\x1f\x6b\xed\x75\xbd\x45\xdf\x70\xc5\x63\x6f\x7f\xe2\xf7\x9b\x2c\x70\x7b\x3c\x8b\x7c\x36\xb8\xa3\xdc\x30\x02\x78\xd3\x3b\xa2\xdf\x32\xed\x59\x60\xb4\x92\xa6\x84\x15\xc3\x4b\x2f\xcb\xf6\x91\x17\x59\xc0\x58\x48\xf0\x08\x90\xac\x6d\x63\x8e\xa5\xb0\x39\x58\x28\x83\x75\x94\x15\x73\x56\x3a\xdc\x88\xfe\xef\x71\xa9\x0d\x5b\x16\xac\xe9\x4e\x90\xa5\x82\x92\xa1\x18\xc1\xba\x7e\xef\xea\xd5\x8f\xdd\x01\x63\x0e\x54\x34\x49\xa4\x9d\x54\xbf\xcf\x54\xbb\x3f\xe8\x90\xe8\xbb\x0b\xac\x6b\xde\x19\x2a\x40\x1e\x29\x7a\x1b\x76\xec\x47\xcd\x07\xbe\x9a\xe5\x8a\xf4\x69\x14\xca\xd5\xbd\x51\xaf\x23\xdf\x51\x02\x98\x6f\x17\x3d\x63\xac\x15\x64\xdb\x13\x1c\x2a\x5a\xfe\x78\xc4\x36\xeb\x46\x59\xcd\xb5\xff\x79\xad\xee\x00\x0f\xc6\x70\x65\x82\xbf\x8d\x9c\x64\xa1\x38\x48\xad\x12\xa8\x79\x17\x97\x0b\x0d\xa9\x86\xb1\x24\x0e\x9b\xe5\xcb\x26\xe9\x52\x79\x6b\x56\xe3\x20\xda\xfb\x02\xe6\x07\x34\x3a\x20\xb0\x7b\xc7\xde\x64\x94\x68\x65\xd8\xd0\x76\x06\xc7\xc2\x01\xd8\xd6\x1b\x19\x7e\xca\xd5\x06\xf4\x53\xfe\xa0\xdb\x95\xed\x94\xf9\xdc\x7a\x66\x25\xdf\x4e\x48\xbd\x52\x4d\x4b\x09\x8f\xd7\xa5\xcd\x31\x76\xaf\xf8\xb5\xf6\x2a\xa1\x99\xe7\x9c\x76\x86\x13\x65\x55\x15\x3f\xca\x1e\xf9\x94\x2d\x99\x7e\x9d\xde\x6a\x78\x2a\x25\x01\x6a\x70\xc6\x05\x2c\x58\xd0\x58\x70\x8b\xb4\xee\x26\x6b\xcb\xd0\x83\x31\x59\x02\x8a\x61\x0a\x05\xc2\xf5\x7e\xf5\x70\x96\x00\x9b\xaf\xe1\x52\x79\x9e\x91\xe8\xf6\x94\xdb\x32\x47\x3b\x99\xd0\xa0\x84\xfa\x81\xef\x5f\xf2\x9c\xe1\xa9\x1f\x6e\xc5\x98\xbe\x42\x9d\xc7\xe5\x62\x35\xeb\x05\xd9\xb2\x1f\xc9\x07\xc8\x7d\xcb\x57\xac\x1f\x73\xbe\x62\xbc\x3f\x3a\xdc\x87\xab\x04\xc8\xfd\x1b\xb2\x92\xc6\x09\x7a\xdc\xff\x94\x6f\xf0\x37\x7f\xd8\xdd\xfc\xa7\xbc\x2e\x6c\x57\xa5\xdd\x74\xe7\x42\x92\x41\x53\xe7\x52\x4a\x82\xca\x15\x7e\xbe\xe2\x8b\x73\x7c\xab\xb5\x6e\x27\x59\xc0\x9d\x73\x12\x13\xc5\xe4\x94\x7c\x91\x26\x90\x89\xd8\x65\xf8\xc5\xe0\xd2\x3a\xf0\x0b\x41\x35\x14\xfc\xee\xb4\x26\xd8\xb6\x07\xef\x63\xde\x64\x01\x39\xc5\xa6\xc3\xcb\xba\x5d\x7b\xd4\xd8\x1e\x6c\x45\xc9\xda\x82\x30\x32\x21\x36\xb1\x0a\x8d\x4a\x56\x58\x15\xf6\x2a\x5d\x80\x69\xcf\xbc\x48\xc3\xa8\xcc\xd0\xd8\xf1\xad\xd5\x44\x29\x18\x67\xa5\xa6\x0a\x56\xb4\xc9\xa2\x95\x48\x39\x46\xf3\xac\xe9\xeb\x57\xf5\xd2\x80\x10\x47\x49\xb4\xee\xb7\xe4\x67\xf9\x8a\xbe\xa2\xf5\x55\x60\x2a\xa5\xad\x16\xd5\x9a\xe7\x8c\xae\x6f\xbe\x7c\xbb\x8e\x33\x29\xd9\xa2\x8d\x8f\x6e\xf0\x01\x05\x85\xc7\x50\xfa\x49\x8d\x79\x36\x87\x6f\x9b\x34\x28\x78\xfa\x2a\xa7\x83\xcc\x92\x2c\xb8\xe9\xc0\x69\x8e\x93\x15\x57\x51\x0f\xc5\xba\xc3\x68\x05\x32\xa4\x99\x75\x4d\xa7\x01\x25\xda\xca\x7c\xb7\x60\x68\xe1\x2f\x18\xea\x87\x84\xa5\x41\x82\xc9\x09\x1c\xa4\x7a\xb5\xf3\x48\x4e\xc9\x85\xe1\xcc\xe9\x8e\x18\xe8\x74\x87\xdc\xab\xf9\xb7\x68\xa2\xbd\xb8\x6d\x7e\xef\x02\x40\xa5\x86\x02\x70\x98\x79\x34\x3a\xd4\x79\x5d\xdf\xb0\xb5\x9d\x40\xbd\x8d\xf4\x74\x78\x43\x56\xa9\xa6\xfc\xb9\x61\x6b\xc1\xe5\x5e\x13\x02\x0d\x90\x23\x6f\xd8\xba\xe3\x3e\xb0\x86\x6f\x05\xbb\x65\x05\x67\x6d\xe7\x81\xea\x47\x0a\x57\x39\xf0\xb2\xdf\xba\xcc\x49\xb5\xe0\x86\xd7\x83\x04\xf4\x3c\x75\xc2\xb9\x63\xe4\x86\xb1\xdc\xda\x30\xe3\x74\xce\xb5\x49\x58\xdf\xba\xa0\x97\xb6\x68\x69\x84\x3c\xec\x12\xce\x5b\x6c\xf3\x11\xed\x85\x66\x44\xd2\x74\x03\xc8\x63\x22\xa3\x8a\x05\x07\xd3\xe0\xe3\xd0\xb3\xbc\xed\x5f\x0e\x37\xd1\x4a\xfc\x23\x7a\xd3\x8e\x71\x37\x6c\x7d\x52\xf9\x08\xf7\x58\xa7\x96\xdb\xb6\xfa\x47\xbb\x65\x7d\x2e\x1b\xae\xe1\x2c\x95\xe7\x3c\x23\x14\x1c\x2b\xc0\x15\x59\x52\xd7\x7a\xe7\x88\xc8\x01\x55\xc1\x02\x2e\x0e\xf3\x96\x6b\xa0\x05\x09\xfc\x10\x00\x29\xeb\xa9\x58\x16\x45\x35\x74\x56\xcf\xf4\x91\xdc\xb0\x47\xd9\x80\x12\x9e\xb9\x5b\x16\x3c\x08\x55\x4f\xc0\xee\xe2\x24\x91\x87\xac\x2c\x5d\xc3\x33\x5e\x34\x1f\x4b\xa3\x8c\x82\x64\x13\x49\xb0\xba\x7f\xce\xb2\xe8\xd3\xe0\x27\x2c\x9f\x24\xc1\x5e\x36\x4b\xbc\xd8\x06\x7e\xa1\x1b\x30\xe2\xad\xd2\x50\x55\x3d\x7f\x47\x74\x9c\x7e\xdd\x56\x75\x3e\x76\x6e\x0d\x74\xa0\xd5\x28\x34\xd9\x6e\xa5\x67\xae\xaa\x27\x8f\x43\xde\x5b\x88\xc6\xde\x66\x09\x6b\x02\xfc\x28\xe6\xef\xe8\x3b\x8d\x80\x62\xff\x0a\xff\xc7\xe4\x94\xec\x0e\xbb\x44\x9e\xc3\x1a\x97\x92\xb5\x9c\x9e\x3e\x8d\xc9\x9f\x88\x0f\xb9\xce\xdc\x68\xfb\x12\xab\xfa\x5d\x12\xd7\x85\x68\x77\x16\x93\x99\x11\x3f\x8a\xf5\x43\x0b\xab\x79\x71\x11\x3f\xa4\xb0\x67\x8c\x70\x10\xa8\xbf\xaf\xab\x61\xd7\x2d\x16\xf5\x49\x8d\x0b\x71\x6a\x1d\x7d\x9d\xfa\xbe\xcf\xa8\x7e\xcb\x2a\xd6\xbc\xd6\x51\x41\xa6\xaa\x68\xbe\xdc\x15\x86\x5f\x00\xe0\xc4\x32\x89\x9b\xeb\x7c\xb3\x7f\xc8\x5d\x51\x65\x2f\xf0\x97\x95\x6d\x4f\xaf\xf8\xef\x4b\x03\x8d\xa6\x51\x57\x9a\x64\x04\x49\x5c\xd3\x81\xd4\x09\x9c\x67\x15\x5f\xf4\x49\x48\x39\xf6\x4d\x54\xbd\xae\xf1\xb9\xe0\xac\x9c\x98\xdd\x8d\xdf\xc4\xf9\x39\x5b\xe6\x1f\x45\xb9\xc5\x3c\xb0\x53\xe6\x05\xbb\x25\x18\xb6\xc9\x2a\x95\xc4\x35\xa5\x78\x71\xf1\xfd\x86\xe5\x6d\x8d\xca\xd0\xbb\xb4\x1e\xa3\x27\x97\xfc\x51\xe5\x29\xcc\x0a\x5b\xc7\xca\x32\x5f\x6c\xd3\x25\xba\x0c\x6e\xdb\x74\xc2\x86\xcf\xd5\xc3\xb5\xf3\xd9\x52\x42\x95\x46\xe2\x28\x9b\x1d\xef\xce\xfe\x51\xd3\x1c\x58\x8a\x45\x2a\x93\x99\x81\x32\x53\xb9\x9e\x7f\x97\x95\x04\x42\x24\x60\x78\x03\x95\xf0\x69\x29\x76\xb0\x22\x64\x85\x79\x20\x1c\x64\x29\x6e\x6e\x7c\x62\xc3\x10\x68\x88\x2e\x7a\xc1\x82\x16\xcf\xcb\xf6\x40\xbd\x99\xaa\x7b\xc6\xe0\x3e\x64\xc0\xe3\x1a\xbe\xb3\xaa\xd6\x94\xb2\xf2\x29\x00\xe7\x49\x1c\xb0\xf6\xb0\x53\x97\x8b\x2d\xe6\x17\xa9\xbc\x1c\xab\x97\x10\xf7\xf5\x9b\x39\x91\x29\x1a\xf1\x2f\x5e\x66\xf9\xa4\xe6\xd0\xe4\x32\x84\x27\x60\x40\xdb\xcf\xb2\xf2\x95\x3c\x08\x79\x93\x78\x31\x30\x92\x52\x55\xfd\xa8\x0e\x07\xba\x9d\xa5\xcc\xbb\x2f\x5a\x74\xed\x87\xec\xa3\x68\x55\xb2\xea\xdb\x97\xc4\xd5\x8b\x70\x54\x65\x6f\xa9\x49\x50\xaa\xaa\x54\x4c\x9e\x16\x45\xea\xb2\xac\xc3\x66\xa9\xc8\x53\x83\x92\x6e\x53\x87\x8d\x1b\x7c\xc5\x89\x7e\x6d\x39\x3b\xa7\x61\xc2\xc4\xc9\x13\xce\xf5\xf3\x45\xe9\x6d\xbb\xee\x19\xaa\x6a\x6a\xb0\x2d\xe4\x35\xe8\x54\xae\x3c\x13\xe7\x96\x53\xde\xb3\x55\x3b\x76\x4c\x5b\x92\x68\x2c\xb4\x0c\xce\x77\x94\x4b\x84\xc9\x6c\xad\x0e\x4b\x78\x2e\xf2\xfd\x73\xc1\xcb\x5c\xdb\x69\xac\x8a\x96\xa5\xd6\x82\xac\x2f\x41\x6d\x30\xdb\x5c\xf0\x6d\x63\xfe\xaa\x7b\x59\xf3\xe8\x91\x1c\x49\xdd\x24\x6a\x31\x13\x57\xd9\xdf\x4a\x04\x7c\x42\x62\x8c\xe2\x47\x76\x77\xe3\x6a\xc6\xd2\x86\xe5\xe3\x28\x1a\x1b\x4f\xd6\x95\x39\xc3\x0a\x78\xc4\x53\xae\x30\x70\xfe\xab\x4e\xa3\x66\x76\x75\x1c\xcd\x56\x25\x8f\x43\xa6\x9e\x09\x0a\xdc\x70\x3e\x70\x82\xe0\x96\x0c\xa7\xc6\x83\x14\x97\x70\x1b\xc9\xe5\x35\xb6\x75\x48\x77\x9e\x03\xb1\xb4\x8c\x0b\x66\xc5\x22\xc9\x2a\x1c\xa1\x5e\xd6\xe8\x69\xaf\x7b\x09\x23\x17\xc7\x74\x87\xa5\x8e\xe9\xab\xc6\xd1\xcb\x21\xc7\x9f\x4e\xcd\x1e\x5d\xe3\xf9\xb6\xa0\x1c\x4c\x5f\x10\x13\xd1\x48\x6b\x86\x67\xe2\xe9\x8e\xba\xb3\x71\xbb\xd4\x6d\x5f\xcb\x3b\x80\x86\xd6\xe6\xc6\x46\x45\x36\x34\x10\xa4\x76\x8a\xbd\x3f\x7e\x6c\x41\xab\xcf\xa1\xaa\x15\x8d\x3f\x79\xd7\x49\x35\xaa\xac\x4b\x33\xb7\x7a\x97\x98\x23\xbd\xf9\xc7\x72\x53\xa9\xf6\x64\x86\xb1\x65\x5f\x56\x83\xaa\xfe\xeb\xec\x56\xa6\x5b\x45\x8b\xff\x91\xd1\x6f\xc2\xea\xdb\x66\xe5\x5f\x4e\xab\x8a\x4a\xe0\xfb\xf0\xd6\x5f\x61\xa1\xa8\xcd\x0a\x75\x6d\xe5\x33\xf4\x56\x7a\x03\x7a\xd0\x59\xfb\x24\x06\xc4\xf0\x5e\x88\xfd\x2f\x93\x92\x1b\x17\xfb\xc6\x67\xa5\xf5\x2b\xb4\xfa\x6a\x75\xfb\xe9\x85\x94\x6c\xf8\x51\x29\x48\xd0\xc2\x21\x32\x04\xf4\x79\xe0\xba\x45\x0c\xca\x01\xe4\x22\xd5\xb6\xd4\x23\x00\x37\xdd\xf1\xb3\xc5\x5b\x35\x94\x75\xa8\x3a\x38\xbb\x0b\x8b\x7c\x62\xb7\x74\x2b\x8a\x92\x3f\x9d\xba\xf5\x1b\xa8\x20\xd4\x84\x79\x6a\x5e\x2a\xa1\x6c\xc4\xa9\x8c\xd1\x88\x58\x64\x89\x32\x7f\xff\xba\x5a\x82\x8f\x5a\x99\x79\x29\x5b\xb5\xf5\x56\xed\x4d\x60\x83\xd6\x11\xda\x60\x7b\xb2\xb6\x08\x8f\xea\x8e\xb5\xdc\xd3\xc0\xf4\x96\xea\xb4\x79\xe6\x0e\xce\xda\xc9\x26\xe6\x06\xdb\xd7\xbf\x9c\x90\x01\x8e\xe2\xe5\x3a\xea\xfa\xd3\xe9\x29\x8e\x1b\x4f\x51\xee\x41\xb2\x61\x06\x4e\x2a\x3a\x4c\xa3\x2f\x4b\x83\x76\xac\xe2\x57\x49\x57\x8e\x4e\x45\x53\x56\x15\xac\x85\xaf\x62\x96\x29\x83\x83\xa7\x27\x6f\xe7\xea\x28\x55\xf9\x8d\x6a\x7c\x3d\xb4\x7a\xce\xaf\xd6\xb3\xf9\xdf\xa7\xbb\x24\x6b\x5d\xf7\x9b\x7c\x36\x6b\x6d\xce\xfa\x94\xa1\x44\xd6\x06\x57\x47\x7f\xd2\x6b\x9c\xb7\x6c\xfc\xa4\xc6\xb3\x1d\x72\xca\xae\x22\x14\x8a\x9a\xa9\x71\x21\xab\x0a\xdf\xe1\x46\xa4\x59\x03\x2d\xd3\x16\x63\xd4\x8a\x86\xff\x89\x2d\xc1\xb6\x96\x9d\xea\xd5\x53\x15\xdc\xee\x12\xf0\x75\xed\xae\x67\x58\xeb\xf8\xaf\xce\x2b\xc6\xb1\xba\x5b\xf6\x0d\xde\x65\xcd\x9b\xad\x54\x3e\xa7\x3b\xf6\x7e\x5b\xfc\x1b\x50\xd6\x3a\x68\x54\xf0\x21\x5b\x1c\x5e\x4c\xcd\x6f\xf1\x8a\x96\x41\x8e\xf1\xd4\xd2\xb0\xb4\xb6\x9a\x93\xfb\x9a\x09\x42\xb0\x5b\x18\x42\x16\x26\xac\x27\xee\x46\x72\x21\x43\x7a\x1a\x08\xff\x38\x63\xca\x07\x40\xda\x9d\xd4\x76\x66\x81\x51\x31\x24\xd5\x21\xab\x28\x18\xcf\xb3\x14\x03\xb8\x53\x72\x93\x8a\x31\xd6\xed\x76\x55\x6d\x2f\x4e\x12\x36\xa7\x89\xac\x4d\xcb\x92\x2d\x73\xcb\xa1\xcc\xba\xee\xb0\xbd\xa0\x2c\x96\x32\xb7\xe2\xc6\xf7\x0a\x2f\xe3\xdd\x99\xf5\x2f\x04\x6d\x27\x59\x79\x2b\x3c\xa9\x18\x43\xba\xf6\xe6\xa4\xa0\x4f\xec\x9e\x4c\x05\xd9\xe5\x44\xfd\xa1\x67\xc0\xdb\x4d\x1d\xf9\xd9\xf4\x88\x07\xbc\x54\x92\x78\x06\x71\x8e\x31\x99\xfc\x5c\x9e\x54\x13\xca\x4b\x02\x37\xa2\x32\x6d\x5c\xa6\xe3\x1e\x42\x3c\x3d\x07\x08\x0d\x02\x88\x13\x0d\x9a\x4c\x4e\x39\x27\x71\x89\x2f\x42\x1d\x3f\x9f\x9e\x27\x61\x1f\xf4\x2b\xda\xc2\x91\x0f\x47\x7e\xdf\x01\x2f\x51\xa1\x5a\xa5\x84\x27\x59\x9e\x83\x9b\x39\xeb\x92\x55\x3a\x03\xbf\xfe\x6b\xd1\xe3\x35\xa6\x83\xe0\xb5\xb9\x20\xba\x24\x32\x4f\xf1\x25\xb4\xba\x48\x53\xc4\x0e\xf4\x2c\x21\x60\x8c\x76\xe8\xb2\x47\xce\xe5\xb3\x63\x4e\x43\xb0\x96\x47\x59\xb1\x94\xf0\xb2\x88\xc4\x29\x46\x85\x87\xd8\xd7\x32\x27\xff\x6d\x9c\x25\xe0\xaf\x0d\x17\xec\x69\x49\x3e\xb1\x60\x55\xc4\xe5\x9a\x7c\xc8\x92\x38\xc0\x8b\x9d\x4a\x6a\x89\xef\x4d\x2e\x41\xc8\x16\xe9\x25\xa6\x69\xe7\xc4\x4f\x84\x48\xd1\x27\xb2\x26\x0f\xa2\xac\xf4\x84\x50\x4e\x3e\x32\xaa\x62\x78\xb6\x0a\xf1\x77\xcb\x54\x58\x64\x31\x2f\xdf\x65\x29\xd4\xf9\x54\xd2\x32\x0e\xf8\x95\xac\x0b\xdf\x76\xd3\x2c\xdd\x85\x56\xbb\x1c\x3f\x8b\xd6\xfd\xbe\x7c\xc4\x5f\x64\x49\xb2\xca\x49\x40\x53\xa1\x1b\x87\x4c\x50\x10\x6c\x2c\x74\xc9\x78\x4e\x03\x46\x66\x0c\xdf\x28\xe8\x18\x4e\xd0\xba\x94\x91\x24\xcb\x0c\x63\xc4\x65\x39\xb6\x3b\x5f\xe7\xec\x53\x50\xc4\x79\x29\x5d\x00\xaf\xe3\x14\x7c\x36\xd3\xf2\x1a\x1a\x6a\x07\x63\x99\xd8\x88\x12\x99\x38\x05\xbe\xd6\x78\xf9\x20\x86\xea\x3f\xd2\xbd\x67\x38\x3a\x38\x94\xd9\x31\x6a\x08\x40\x4e\xeb\xe9\xa2\xd3\xb5\x7c\xfd\x5a\x5f\xc1\xd0\xf5\x0b\xd1\x78\x9f\xa5\x65\x22\xed\x34\x6a\xa6\x5a\xbd\x5e\x7f\x55\xc6\x09\xd0\x52\xdf\x31\xcd\x59\xf9\xd2\x04\x39\x6b\xbf\xc8\x96\x79\x96\xb2\xb4\xf4\xb9\x4b\x7f\xf0\x63\xa2\x99\x0f\xa9\x2c\x69\xe9\xa2\x16\x26\xd2\x14\x9b\xc1\xfb\x97\xef\x27\xe4\x17\xa6\x9c\xc9\x94\xa7\x76\x9c\xc6\x65\xac\xe3\xe6\x2c\x58\xc1\x54\xda\x36\x83\xff\x29\x32\x93\x8c\xed\xa5\x3c\x57\xc4\xd9\xa5\x73\xe2\xd4\xe6\xab\x25\x3c\xd7\xb6\x1a\xf7\x54\x71\x17\x4a\x3f\x60\xb7\x7e\x25\x55\xec\xe6\xf2\xf4\x2a\xd7\x57\x32\x48\x5a\x00\x4d\x15\x35\x79\xd6\x83\x64\xb1\x14\x45\xdd\xf6\x2f\x18\x9b\x47\x53\x4b\x27\x06\x74\x1c\x43\xae\x28\x39\x55\x1f\xd0\x4f\xa8\x4b\xae\x66\xe4\x94\x5c\xd1\x5e\x8c\x68\xe5\xb8\x0f\xd9\xbf\xc4\xf7\x19\xac\x7e\xcc\xdf\x40\x9e\x91\x96\xf8\xde\x22\x13\x72\x35\xeb\x92\xab\x00\x21\x44\x59\x71\x47\x8b\xf0\x23\x8b\xc0\x23\x56\xfe\x2d\xbe\x05\x6e\x6b\xb0\x78\x89\xc6\x41\x97\x5c\x85\xd8\x98\xa5\x51\x56\x04\x6a\x46\x84\xfa\x67\xff\x86\xfc\x42\x2e\x10\xb0\x39\x4e\xc8\x95\x12\xf2\x62\x7c\xbf\xc4\xe5\x02\x92\x84\xda\x61\x0c\xf2\x22\xcb\xb9\x95\x5a\xbc\x6d\x73\x80\xca\xb4\x6c\xcf\x7a\x57\xbe\x01\x32\x20\xc4\x68\xab\xc9\x36\x69\x45\x4b\xb3\x51\xae\x8b\x48\x55\x59\x4f\x08\xb9\x4e\xff\x51\x1e\xf3\x38\x0d\xe4\x94\xb4\x61\xf2\x60\xc6\xe8\x85\x3d\x3d\xe8\xb0\x5d\x26\xe2\x43\xa7\x7a\x2a\xad\x1d\x6e\x95\x5d\x94\x2c\x6e\x8b\x1e\x80\x64\x86\x09\xba\x40\xbc\x68\x62\xcf\xea\x33\xac\xa4\x26\x9d\x41\xe1\x04\x28\x47\xee\x4d\x06\xdd\xfb\x4e\xe7\x44\x87\x91\x54\xd3\x53\x89\xe9\x69\x31\x32\x64\xa2\xf3\x04\x89\x8f\x2d\xa6\x8c\xec\xe8\xc3\x99\x86\xeb\x57\x24\xa7\xc4\x2f\xb2\x1e\x53\x99\xd1\xd4\xb9\x59\xd4\xc9\x47\x49\x4b\xd3\xb0\xed\xb1\x99\x50\xe6\xa2\x87\x78\x4d\xa1\x5b\x4f\xf4\x2f\xc4\x26\xa9\xd0\xd9\x22\x24\x28\xb9\xef\x74\x2b\xc3\xf1\x9c\xb5\x36\xe1\x6e\xba\xad\x03\x82\x69\x6f\x5a\x26\x3d\x4c\x0b\xd4\x3f\x13\x76\x6a\xc1\x82\x9b\x97\x2f\x5e\x29\x55\xa1\xff\x44\x69\x2a\x57\x57\x1f\x5f\x3d\x7f\x71\x7e\xf5\xf2\xd5\xdf\xcf\xdf\xbf\x7f\xf3\xe9\xea\xa7\x37\xef\x7f\x7c\xfe\xe6\xea\xaf\xef\xdf\xff\xed\xea\x0a\x12\xd2\x20\xbd\x11\x45\xa9\x51\x3c\xd0\x0a\x92\xe2\x6b\x3d\xae\xa5\x2f\x1c\xb6\x6a\xdd\x53\xc8\x82\xbb\x7a\x4b\x8d\xa1\x25\x40\x78\x7b\x91\xf1\x8f\x10\x18\xc2\x1b\x00\xce\x7b\x2c\xbd\xed\xbd\x7b\xff\xf2\xd5\xd5\xab\x77\x7f\x47\x18\x18\x22\x04\xa0\x54\xe2\x0e\xcf\x0a\x9a\x06\x0b\x08\x0b\x93\x0a\x45\x63\x01\xef\x33\x54\xae\x2c\xcc\x3c\x62\x79\x2a\xc3\x69\x05\x8f\x2a\x1a\x4e\x9c\x12\xd3\x43\x57\xbf\x6a\xd0\xe6\x70\x0c\x16\xb9\x62\xd8\x38\x4e\x49\xc8\x6e\x59\x92\xe5\x96\x63\x22\x9e\x92\x0a\x8c\x58\x24\x83\x39\x1a\xcc\x78\x19\x27\x09\xec\x89\x5d\xa1\xe4\x60\x06\x12\xc2\x92\x18\xde\xf5\x49\x63\xa2\x56\xc2\xfb\x7d\xe9\x26\x26\xb4\x4d\x4c\xee\x6c\x7a\xc1\x74\x2b\xf8\x70\x4c\x66\x03\x80\x64\x8f\x3d\xa9\xa7\xbd\x64\xb7\xe7\x59\x96\x70\x52\xb0\x04\xbc\xcc\xd0\x25\xfb\x79\xc2\x33\xcc\x09\xc3\x57\x05\xd3\xd0\x4a\x4c\xb4\x86\x19\x27\x95\xf7\x73\x16\x04\xab\x02\xee\x5b\xd0\x3d\x53\x25\x8f\x37\x61\x34\x85\xd2\x5c\xa2\xb7\x19\x90\x59\xc3\xa3\x72\x77\xc9\x33\x1e\x97\xb1\x7e\x37\xeb\x1f\xe0\x5a\xff\x75\xf5\x5f\xad\x8e\x99\x7d\x2b\x18\x7f\xbf\x4f\xfe\xce\x8a\x38\x5a\x1b\xf7\x36\x20\x16\x3c\xc3\x35\x71\xca\xaa\x54\x64\x21\x69\xbf\x7c\xf1\xaa\xa5\xdf\xba\x6c\xc9\xa5\x6d\xf5\x87\xc4\xa7\x2e\xa0\x3f\x9c\xab\x24\x5d\x51\xed\x81\x49\x28\x28\x5f\x20\xd9\xbb\x24\x15\xe4\x2d\x4b\x56\x90\xbb\x05\xb5\xb8\xc2\x28\x4a\xc8\x04\x05\xc3\x60\xe5\x32\x87\xd9\x1d\xc3\xeb\x71\xe9\x97\x2e\xce\x1b\xea\xf6\x31\xe5\x59\xc2\x7a\x0c\x93\xbb\x17\x85\x26\xd7\xbd\xca\x15\x56\xbb\x5e\x4e\xeb\xd7\x8b\x18\xc1\x8b\x57\x32\x5c\xae\x44\x08\xbd\xdc\x55\x98\x2d\x18\xc7\xcb\xf7\x6f\xc9\x6c\x05\x26\x69\x19\x8a\x8b\xab\x93\xa2\x82\xa2\xe8\x10\x80\xdf\x29\x0c\x66\x46\x43\xe9\x83\x28\xaf\xb0\xc3\x55\x81\xe1\xdd\x64\xd0\x40\x18\x93\x91\x61\x30\x92\xc6\xcc\x68\xad\x5e\x3f\xf8\x95\xf7\xf1\xd0\x10\x66\xcb\x9e\x19\x4d\x6f\x19\xa7\xbd\x5f\x39\xb0\x8e\x6d\x18\xda\x1e\x96\xbd\x72\x15\x20\xfb\x58\xa4\x93\xc3\xcb\x23\xd1\x5f\x66\x74\xc6\x12\x95\xa9\xad\x8f\xaf\x35\x78\x9f\xf1\x65\x5f\xd6\xb4\xcf\x4b\x57\x78\x3c\xfb\x05\xad\x4f\x1f\xac\xb4\x00\x0f\x42\x6b\x68\x09\xd0\xc5\x71\x29\x2b\x04\x87\x3f\xff\xf4\x82\xcc\xd6\x84\xc7\xff\x94\xe7\xd2\x96\x15\xb7\xae\x07\x35\xcf\x20\xce\x62\x0b\x9e\x3e\xe8\x84\x01\xa1\x38\xc8\x41\xce\x76\x88\x9d\x85\x47\x31\x38\xdd\x47\xf8\xf4\x22\x17\x27\x27\xde\x73\x14\x62\xe5\xc8\xdc\xfa\xcc\x5b\x5d\xd2\xe2\x4b\xf1\xef\x65\x28\xfe\x9d\xcc\xc5\xbf\x3f\x27\xad\x4b\x48\x38\xf6\x37\xc6\x20\xf6\xdc\x32\x4e\x65\x94\xae\xbf\x40\x98\x3c\xcc\x49\x1f\x24\x2b\x1e\xdf\x32\xf5\x4a\xe8\xc5\xa7\x4f\x3a\xa9\xbc\x72\xe1\x6a\xd6\xb2\x71\xf3\xfe\x51\xac\x91\x3c\x8b\xd3\x92\xb7\x67\xe6\x6f\xc9\xdc\xa0\x0f\x5a\xc5\x3f\x68\x2f\x3b\xab\x50\xba\xde\x75\x8d\x65\x44\xd6\xa9\x6d\x69\xeb\xba\x52\x08\x7c\xe6\x13\x32\x90\xcd\xf9\x72\x42\x0e\x06\xea\xd7\x32\x9c\x90\xe3\x03\xf5\x2b\x99\x4f\xc8\x70\x74\xa4\x7e\x7e\x4e\x26\x64\x78\x3c\x1a\xa0\x70\x99\xd4\x75\xa7\x71\x72\xbe\xad\xd2\xb8\xf4\x86\x20\x8a\x74\x65\xf9\xbd\xa6\x8d\x73\x56\xc8\x3f\xb7\xfc\x5e\x1d\x30\xce\x17\x5e\xb2\xdc\xeb\x53\x14\xe9\xca\xf2\x7b\x4d\x1b\xbb\xcf\xb1\xdf\xa1\x03\x03\x83\x6b\x9c\x36\x2e\x16\x7b\x82\xbb\xe4\x62\xba\x83\x44\xc2\xa8\xec\x02\x75\xfc\x4b\xc0\x9c\xee\xe8\xa4\x4d\x9a\x61\x56\x39\xb8\xd1\xdb\x07\x2f\xe5\x5d\x6a\x87\xe3\xe5\x17\x37\x6c\x7d\x89\xe2\x32\x5d\x2d\x67\xac\x68\x91\x67\xce\xa7\x89\xe5\x5b\xae\xdf\xd5\x48\xbe\x6e\x2f\xe3\x74\xf7\x2e\x0e\xcb\xc5\x64\xba\xd3\x0b\xb2\x34\xa0\xa5\x8a\x47\x2b\x7f\x01\x91\x51\x51\xae\x7f\x63\x12\x66\x77\x69\x05\x55\x96\x86\x67\x69\xc8\x3e\x2b\xdf\x78\x95\x37\x13\xea\x3d\x25\x43\xeb\xb8\xb5\xca\x73\x56\xe0\x65\xd8\xa9\x85\x38\xbf\x50\x30\x2e\x2f\x9d\x27\x3a\x06\xf4\xa9\x04\x5e\xf1\x20\xee\xf7\xc9\xe7\x04\x10\x93\x8a\x07\x97\xe9\x75\x40\xe2\x70\xef\x12\x6f\x95\xb7\x85\x68\xa8\x84\xf2\xab\x21\xb9\x8d\xab\x4d\xf1\xc7\x8f\xcd\x88\xff\x0c\xbc\x63\xd5\xdc\x3c\x01\xf4\x73\xfd\x04\x90\x5d\xe4\xd2\x3e\x19\x0e\x06\xdb\xcf\xc6\x8c\x95\x77\x8c\xa5\x6d\x5e\xd2\x02\x0e\xc0\xe1\x56\xf3\x22\xea\x6d\x45\x65\xb2\x4b\x86\xd5\x04\x41\xab\x1c\x3b\xac\xd0\x70\x2b\x86\x73\xf9\x19\x00\x35\x71\xb4\xfc\x38\x21\xd8\x5d\x85\x2c\xf0\x44\x41\xfc\x57\x9c\xed\x6a\x89\x6b\x46\x26\x54\xf2\xdd\xa1\x98\xbb\xca\x82\x32\xcc\x27\x98\xf5\x72\xc3\xfa\xaa\xd4\x9c\x20\xcd\xbf\x6f\xf6\x84\x62\xee\xac\x25\x49\x3f\x35\xab\x37\x6c\xdd\x25\xfa\x75\x8d\xdf\x1a\x86\x5a\xd7\xdc\x12\x07\xce\x63\x20\x99\x2b\x5e\xe5\xa7\x97\x8d\xc4\xa8\x80\x67\x95\x40\xc7\xe6\xca\x3e\x20\x0b\x57\xf9\x84\xac\x94\x34\x14\x4b\x6d\x02\xff\x96\x05\x12\xe1\x89\xfa\x43\x16\x8b\xf1\x4d\xe0\xdf\xb2\x00\x67\x07\xff\x03\x98\x75\x51\xae\x82\x42\x63\xa9\x33\x6e\xd6\xee\x2d\xf4\x10\xb7\x81\xa3\xdc\x7c\x9f\x6a\xb4\x79\x63\x7f\x1b\x7f\x8e\x53\x4f\xe4\xf3\x9c\x06\x10\xdf\x6e\x09\x1f\xed\x4d\xbe\xcc\xb2\x64\x46\x55\x5c\xcb\x86\x79\x98\xaf\x84\x1e\xce\x8d\xb5\x47\x95\xb4\xbd\x17\x29\xbc\x5c\x27\xa0\x02\xe8\xec\x66\x6a\xb1\x0a\x59\xf4\xf8\xb1\x29\xbf\x18\x5c\x02\xdb\xeb\x33\x31\x79\xe6\x7e\x74\x7c\x26\xf0\xed\x50\xc8\xf2\x82\x05\xf0\xa8\x39\x25\xb7\xfb\xbd\xa1\xf5\x19\xff\xb9\xa3\xf0\x68\xab\x5d\xf9\x40\xf0\x18\xd5\xad\xf9\x70\x51\x53\x46\x48\xeb\x2d\x2d\x59\x11\xd3\x64\xf7\xe7\xb3\x89\x38\x89\x2e\x59\x0f\xa9\xd7\x33\x63\x87\x3c\xa2\x12\xa7\xb0\xd7\xaa\x83\x4e\x48\xeb\x1f\xd9\x0a\x74\x7b\x3c\x3d\x33\x95\xe1\x56\x3a\x36\x02\x50\x99\x07\x37\x59\x4f\x1a\x80\x5c\x5b\xa5\x39\x0d\xc3\x38\x9d\xbf\x61\x51\x39\x11\x20\x96\xac\x27\x27\xb8\x3d\xea\x74\xab\x15\x3f\xc6\xf3\xc5\x03\x35\x2f\xf0\xa3\xa3\x19\xe5\x6d\xa1\xa0\x76\x2e\x27\xce\x6e\x46\x36\x75\xbf\xd7\xe9\xd6\x55\xad\x45\xc0\xad\x7b\x6f\xff\xb8\xae\xa3\xc1\x65\xef\xd7\x2c\x4e\xdb\xad\xe9\x34\x6d\x75\xaa\x15\x3a\xfe\x8b\x2b\x9f\x87\x89\x8f\x7a\x0d\x25\x7c\x8c\x4d\x15\x6d\x78\xeb\x4a\x1e\xef\xfa\x92\x00\xee\xbc\xea\x08\xd8\xdd\x1e\x95\xbd\x87\x51\xd9\xab\xa2\x72\x51\x3b\x6d\xd6\x9d\xa5\x04\x2a\x97\xfa\x84\xb4\xd5\xaa\xb7\xcd\xaf\xcb\x38\xfd\x2b\xc3\xbe\xc6\x07\xaa\x61\x65\x90\xaa\xa5\xd8\x3b\xcc\x4e\xe6\x23\x20\x74\x18\x51\x03\xf6\xc0\x76\x56\xc4\xea\x6d\xc9\x84\x24\x34\x0d\x79\x40\x73\x26\x76\x9e\x6e\x6d\xf7\xfb\x47\xea\xae\x75\x53\xff\xf5\xa4\xae\x83\x77\xb0\x6f\xc1\x93\xed\x3b\x52\xc4\x4b\x81\x28\x65\x3c\x7a\xd7\x2f\x97\xf0\x42\x18\x40\xcd\x12\x1a\xdc\x4c\x48\xeb\x0f\x83\xc1\x00\x97\xe6\xdd\x22\x2e\x99\x28\x89\xa2\xa8\x35\x4d\xef\xab\x02\x19\x21\x9c\x48\x78\xf3\x02\xde\x65\x02\xb4\xf1\x00\x1a\x52\xf1\x3f\x84\x36\x1c\x60\xd1\x58\xfc\x0f\x8b\x46\x58\xc4\xe0\x1f\x2c\xda\x93\x45\x03\xf1\x3f\x2c\xda\xc7\xa2\x59\x28\xfe\x87\x45\x63\x2c\x3a\x66\xe2\x7f\x58\x74\x80\x45\x87\x63\xf1\x3f\x2c\x3a\xc4\xa2\x83\xa1\xf8\x1f\x16\x1d\x61\xd1\xfe\x48\xfc\x0f\x8b\x8e\xb1\x68\x34\x14\xff\xc3\xa2\xe7\x12\xd7\x70\x2c\xfe\x27\xcb\x24\xb2\x14\xfe\x91\x65\x12\xb5\xbd\x81\xf8\x9f\x2c\x73\x7b\xad\x25\x9b\x20\x94\x22\x5a\x9c\x86\xf1\x3c\x73\xc9\xc6\x8e\x18\x8d\x0e\x1c\xb2\x05\xe3\x80\xb2\x63\x87\x6c\xc7\x11\x3d\x0a\xa9\x43\xb6\xc3\xe3\xa3\x83\x60\xe6\x90\x6d\x1c\x1c\xcc\x82\x81\x43\xb6\xbd\x68\x3c\x9c\x8d\x1d\xb2\xed\x1d\xef\x1f\xd3\x99\x43\xb6\xbd\xc1\x5e\x74\x1c\x39\x64\x1b\x1d\xed\x8d\x8f\xf7\x1c\xb2\x0d\xe9\x68\xef\x90\xb9\x64\x3b\x0a\x8e\x59\x14\xb9\x64\x1b\xef\x1d\x84\x11\xf3\xc8\x16\x8e\xa9\x2e\xd3\xbd\xee\x47\x11\xab\x27\x1b\x92\x4a\x11\x2e\x8f\xd3\x1b\x8f\xdb\x02\xb6\xcf\x02\x97\xdb\x8e\x66\xb3\x70\xe0\x90\x2d\xda\x3f\x8a\x66\x43\x87\x6c\xd1\xe0\x60\x74\x3c\x72\xc8\xc6\x82\xfd\xc1\x21\x75\xc8\xc6\x8e\x87\xec\x60\xcf\x21\x5b\x78\x34\x9c\x1d\x0c\x1c\xb2\x05\xa3\xe1\xd1\x78\xe6\x90\x8d\x86\xc3\xfd\xf1\xa1\x43\xb6\xa3\xa3\x01\xdb\x8f\x5c\xb2\x45\xd1\xd1\x40\xcd\x81\x22\x5b\x14\xed\x0f\x8e\x86\x2e\xd9\xa2\xf1\x60\xa0\xc0\x29\xb2\x05\xe3\xe1\xf0\x60\x54\x4f\x36\x41\x28\x45\xb4\x02\x12\x70\xda\x34\x8b\xd8\x4c\xad\x3d\x8d\x47\x10\x86\x23\x77\x85\x46\xc7\xf4\xd8\x65\x35\x36\x3e\xdc\x3b\xdc\x73\x69\x16\x8d\xf7\xc6\x2e\xab\x45\xfb\xfb\x7b\x7b\x07\x0e\xcd\xd8\x78\xef\x78\xcf\x5d\xa1\xe1\xde\x28\x1a\xb9\xac\x16\x1c\x8c\x8e\x46\x47\x0e\xcd\x66\x87\xc3\x60\x18\x54\x68\x46\x8f\x06\x3e\xcd\xc6\xa3\xf1\xc8\xa3\x59\x34\x3c\xdc\xdf\x77\x69\x16\x8e\x07\x42\xd4\xd5\xd2\xac\x60\xa1\x22\x59\x56\xc0\x75\xb9\x47\xb5\x68\x4f\x89\x27\x8d\x09\x1b\xcc\x5c\xaa\x45\x51\x10\x28\xe4\x14\xa7\x45\xb3\xc3\xfd\xd0\xa1\x5a\x14\xd1\xc3\xd1\x81\x4b\xb5\xe8\xf8\x48\x09\x61\x49\xb5\x68\x76\x14\x0c\x5c\x4e\x8b\xc6\x87\xba\xe8\x48\xcd\xc0\x81\x2e\x92\x54\x63\x07\xe3\xa1\x2a\x32\x54\x0b\x87\x55\xaa\xd1\xd9\xfe\xc0\xa7\xda\xb1\x69\xab\x7a\x8d\x0e\xc2\x26\xaa\x21\xa9\x14\xe1\x66\x78\x8a\xb7\xe5\xda\x5e\x34\x8a\x42\x87\x6c\xb3\x59\xc8\xa2\x99\x2b\xd7\x06\x01\x8d\x8e\x1d\xb2\x1d\xec\xcf\xc6\x4a\x20\xee\x2b\x11\x4e\xf5\x3e\x32\x56\x22\xfc\xf8\x20\x72\x17\xe8\x90\x1d\x1d\x31\x97\xd9\x86\xc7\x87\x07\x8a\xbd\x25\xd9\x86\xe3\x83\x71\xe0\x92\x6d\x10\xee\x1f\x52\x6f\x3b\x38\x1a\xcd\x86\xbe\x5c\xdb\xdf\x3f\xa2\xba\x4c\xa2\x36\x3a\x3e\x3c\xd6\x65\x87\xaa\xec\x60\xd4\xb4\x8b\x0a\x42\x59\x7b\x28\x4b\xfd\xdd\x20\x1a\x2b\xd1\xaf\x76\x83\x23\x76\x10\xb8\xbb\x01\x1d\x87\x07\xf4\xd0\xa1\xda\xd1\x30\x38\x3c\xda\x77\xa8\x76\x70\x30\x9b\x1d\xb8\x62\x6d\x3f\xa0\xd1\xd8\x65\xb6\xfd\x3d\x3a\xd8\x3f\x74\x77\x83\xa3\x23\xb6\x17\xb8\xbb\x01\x3b\x0c\xf7\xdc\x4d\x74\x38\x1b\xb3\x91\xc7\x6c\xb3\xe3\xe8\x20\xa0\x2e\xd5\x0e\x8e\xa3\x01\xf5\x76\x83\xc1\x80\x1d\x1c\x1e\xb8\x54\x1b\x0c\x82\xa3\xf1\x5e\xe3\x26\xca\x40\xf5\xf8\x77\xbe\x7d\xd7\x2e\x39\x51\x56\x2c\x69\xf9\x76\x15\x83\x11\xeb\xad\xb4\x9a\x51\x4e\xae\xea\xbf\x68\xbf\xaa\xbf\x2c\xd5\xe9\x6c\x15\xa3\xe3\x8e\x0b\x38\x64\x2c\x5f\xb2\xc2\x34\x69\x55\x5b\x58\x4e\x57\x52\xe7\xd3\xae\x40\x41\x96\x64\x05\xef\x63\xb1\x55\x0f\x74\x39\xbf\x96\x28\xb4\xea\x48\xd5\xc5\xaf\x85\xc5\x56\x3d\xd8\xa9\xfd\x5a\xa2\xd0\xaa\x53\xa8\x18\x4b\x56\x95\x82\x85\x56\x0d\x29\x87\xfd\x4a\x58\x6c\xd5\x03\xb1\xe3\xd7\x12\x85\xee\xe8\x58\x95\x08\x50\xda\x72\x88\x4b\x8b\x1b\x96\x76\xc9\x9c\x95\x2f\xb2\xb4\x2c\x28\x2f\x3f\x0a\xed\xbe\x4b\x12\xa1\x70\xb3\xd4\x78\x55\x21\x90\xb7\x34\x8d\xf3\x55\x42\xcb\xac\x68\xb9\x1e\x42\xd0\x40\x2d\x6c\xed\x17\x2b\xfa\xd5\x29\x49\xe0\x8c\x23\xc3\x07\x7e\x46\x33\x60\x09\x61\x01\xdc\x88\x3c\xcb\x8c\x97\x76\x5a\x19\x55\x97\x90\xbc\x88\x97\xb4\x58\x4f\x48\xab\x98\xcf\x68\x7b\xd0\x25\xf2\xff\xbd\xa3\xc3\x4e\xcb\xa4\x38\xf9\xc4\x82\x2c\x0d\x69\xb1\xb6\x1b\x73\x55\x58\xd3\x7c\xbc\x6f\x37\x7f\x19\x73\x3a\x83\x48\x7d\xec\xb3\xcc\xf7\x0e\x89\x6c\x92\xec\x8e\x15\xe4\x36\xe6\x2b\x9a\x90\xbc\xc8\x96\x71\xca\xd2\x40\x19\x25\x43\xd9\xaa\x06\xfc\xde\x91\x0d\xfe\x1c\xa0\xc2\x69\x07\xcb\xc4\xdf\x0d\xad\xf0\x6c\xe3\x93\x54\x53\x34\x8c\xc1\xbd\x2c\x8c\xa3\x88\x41\xbe\x34\x86\x8e\x1c\x08\x19\xbf\x16\x35\xa0\x87\x23\x89\x90\x84\x3a\xa3\xc1\xcd\x1c\x63\x42\x37\xce\x19\x5f\x41\xb6\x59\xae\x22\x7f\xbd\xc8\x52\x1e\xf3\x92\xa5\xc1\x5a\x5d\xc8\xc9\xa7\xf2\xd2\x4e\x14\xbb\xe6\x37\x62\xf5\xa2\xa7\x3c\xa7\xb9\x40\x10\x97\x67\x0f\x0e\x64\xea\xf6\x0f\xc5\xe0\x04\x56\xea\xc5\x78\x70\x59\x4f\x8a\x3a\x4c\xa9\xcc\x5a\x66\xd3\x02\xcb\x7c\x56\x43\x6a\xc2\x43\x57\xa8\x71\xab\x1b\x27\xf1\x0d\x83\xf0\x16\x41\x96\x92\xd9\xaa\x2c\xf5\x1b\x54\xac\xf7\x20\x13\xf9\xe0\x17\x19\x66\xe7\xa2\x76\xb4\x19\x28\xac\x01\x35\x30\xa0\xa0\xca\xfb\x9c\x06\x71\xb9\x9e\xc0\xa7\xa6\x3e\x08\x67\x09\xe6\xab\x73\xfa\x50\xa5\x75\xdd\x18\xbe\x54\xb5\xec\x9e\x8e\x1a\x7b\x52\xbc\xee\xf6\xb4\x61\x05\x8c\x0e\x7c\xda\xf8\x2c\xb7\x0d\xe0\x1f\x2d\x06\x6a\xe6\x69\x53\xdf\x1a\xcc\x9e\x1a\x4c\x94\x05\x2b\xbe\xb9\x39\x54\xb1\xda\x0e\x47\x5d\x6b\xea\xa9\x4b\xa5\xe1\x68\x2a\x5d\x0f\x5c\x79\x18\x62\xf2\xdb\x2f\x15\x29\xa7\x85\x58\x0d\xd3\x57\x64\xd4\x68\x3c\xee\x12\xf3\xaf\x41\xef\xb0\x32\xc8\xc6\xaa\x63\xc3\x43\x96\x80\xd9\x50\x4d\xf0\xfa\xa6\x6a\x66\x05\x7a\x92\xa5\x52\x59\x13\xb3\x79\xc9\xc3\xb2\x3e\x1a\x0c\x2e\xfd\xf5\xae\xaf\x1b\x4c\x77\xde\xe2\x55\x2b\xb0\x86\x80\xce\x82\xaa\xa0\x65\xf1\x7b\x65\x59\x1d\x75\xeb\x97\x4b\x75\x6c\x07\x9b\x16\xcd\xf0\x60\xdb\xe9\xd9\xab\xcc\x64\x95\xbd\x9b\x09\xfb\x0d\x4c\xbe\x09\xc8\x37\xb1\xfa\x68\xdf\x62\x75\xcb\x01\x8f\x86\xe1\x1b\xb1\xfb\xbf\x2f\x5e\xd2\xe2\xa6\x1d\x83\x5b\x7f\x57\x5e\x84\x83\x4f\x14\x5f\xd0\x90\x75\x49\x99\xa5\x34\x79\x1f\x45\x26\x58\x0b\x3c\xe0\x31\xa5\x6f\xa4\x12\x61\x15\xf5\x50\xb1\xf8\xfa\xd5\x2e\x3c\xa9\x69\xfb\x12\x17\x9c\xdd\x14\xd6\xa0\xdb\x92\x3c\x21\xc3\xde\x58\xda\x48\x30\x26\x15\xa0\x7b\xa1\xb1\xbd\x74\xe3\x75\xc1\xd7\x1e\xbe\x14\xd6\x77\x97\x30\x1e\x3b\x18\x4b\x05\x08\x7a\xbe\x8a\x32\xa8\xab\x83\x2e\x9a\xa7\x7a\xba\x2e\xda\x01\x61\x98\xad\x0a\xc8\x9e\xd2\xab\xa4\x42\xa6\x10\x5a\xd2\x38\xed\x56\x48\xd7\x79\xb0\x1b\x41\x92\x9a\x5e\xa4\xb4\x42\x7d\xb0\xb1\x0f\x41\x62\xc7\xad\x53\x79\x5c\x6d\xb6\x63\x7d\xa0\x09\x2b\x4b\xd6\xce\xf1\xbf\xb6\xcd\x4a\x16\xfd\x20\x85\x22\x39\x25\xb2\xa4\x27\x4b\xba\x0a\x51\x53\xa3\xda\xa8\xc6\x21\x25\xc1\x0b\x63\xd4\xd5\x2f\xf6\x8c\x9c\x11\x83\xd2\xe5\x63\x4b\xfe\xd0\xe2\x46\x97\x1f\x0e\xa4\xbe\x41\x26\x95\xee\x34\x46\xfa\x83\x96\xda\x16\xfa\xba\x4c\x57\xb7\x6b\xd5\x35\x6d\x1e\x84\x38\x4a\xf4\xc4\xd1\xd2\x19\x02\x96\xee\xeb\x52\x1c\x00\x96\x1e\x0e\x06\x15\xf4\xab\x18\xe9\x4f\xe0\x47\x67\x21\x8f\x19\x65\x55\x35\xf5\xd5\xaf\xde\x8c\x70\xc1\xc2\x2a\xc9\x45\x61\x85\xde\xa2\xb0\x96\xd8\x2e\x0a\xba\x58\x5a\x05\x2d\x5c\x65\x89\xae\x6a\x6a\x54\x1b\x35\x63\x8c\xa7\xac\x2a\xd2\xb2\xbc\x82\xb7\x2c\xaf\x45\xdd\xc7\x48\x7f\x90\x41\xe6\x15\xe6\xe2\x67\xd7\xac\x43\xf8\xe6\xd5\x6d\x46\x58\x1c\xf8\xaa\xe8\x42\x69\x05\x59\x28\xad\x45\xd5\x41\xc1\x70\xca\x2a\x08\x18\xe7\x36\x37\x63\x89\xe1\x65\x5d\xa3\xda\xa8\x19\x67\x38\x7f\x56\x91\xc6\xe2\x0a\xd6\x58\x5c\x8b\xb6\x8f\x8e\xfe\x20\x5f\xe2\x2b\xb4\x21\x16\x85\xaa\x24\xbf\x79\x75\x1d\x77\x30\x94\xc1\x76\x4f\x0e\x04\x5d\x1a\xc8\xb3\xf2\xf9\xa2\xb0\xbb\xb3\x8b\xf9\x22\x4b\x42\xdd\xb2\xf2\xc5\x46\xc4\x85\x66\x23\xb4\x67\xa3\x62\x57\xab\x19\xb9\xb5\xc5\x59\x04\x30\xa5\x86\x0e\x4e\xcd\x7a\x00\x36\x12\x83\xde\xc8\xa1\x48\x0d\xc8\x07\xbd\xd6\x64\x63\xf0\x58\x93\x62\x54\x3a\xaa\x29\xa1\x84\x3f\x61\xd5\xe3\x9f\x72\x15\xe1\x0f\xc1\xa7\xb2\x01\x4e\x3d\xfe\x10\xb3\x83\x7f\x55\x08\x2c\x2b\x18\x64\xc1\x1d\x4e\x1c\x3e\x7e\x56\xb6\x7b\xba\x64\x24\xc9\xe6\x71\x40\x30\x76\x7d\xbf\x4f\x7e\xcc\xb2\x92\x97\x05\xcd\x27\x75\xcf\xdd\xca\xbb\x19\xef\xcf\x54\x95\xfe\x2c\xc9\x66\xfd\x61\x78\xc0\xf6\x0e\x87\x83\x30\xdc\xdf\x3f\x0c\xd9\x90\x8e\x06\x83\x68\x74\xcc\x8e\x22\x3a\x1e\x0d\xa3\x23\x3a\x38\x1e\x1c\x45\x87\x83\x3e\x0f\x38\xef\x5f\xe9\x9c\xa2\x3d\xf1\xfb\x0f\x6f\xc6\xc7\xb2\x67\x9a\x86\x44\xdf\x6b\x05\xea\xf9\x03\xdf\xbd\x63\xb3\x3a\x54\x6a\xaa\xd6\x95\x89\xe6\x88\x27\x0d\xf6\x0f\x66\x47\x47\x07\x7b\xc1\x7e\x48\x67\xc7\x51\x30\x1a\x05\xfb\xc1\xc1\xc1\x28\x0c\x0e\x66\xe1\x70\x76\x30\x0e\xc3\x83\xf1\x28\xea\xe7\x34\xb8\xa1\x73\xc6\xfb\xcb\x30\xd8\x05\x3b\x7f\x0d\xd6\xfb\x62\xd3\x9f\xda\x6e\x42\xd6\x0d\xd2\x39\xfb\x5c\xb6\x8d\xe2\xef\xb8\x8a\x05\x56\x1d\x72\x5a\xb9\x77\xb2\x9a\x75\x41\x0c\xf4\x64\xa8\x46\x60\x99\x0e\xf9\xf3\x69\xcd\x52\x7a\x56\xad\x49\x26\x28\x73\x9c\x42\xc7\x15\xed\xdb\xde\x53\xb8\xc8\x3f\x84\xb8\x3d\x48\x3f\x64\xa1\x86\xf1\x27\xb2\xe7\xe7\x28\xb0\x7c\xda\x2f\xa6\x3b\xbe\xd7\x8a\xe9\x1e\x32\xe2\x8b\xf3\xb2\x31\xdb\xab\x6f\x82\xe9\x27\x43\x70\x5c\x9e\xee\x74\xfc\xaf\xe7\xf0\x7e\x6d\xba\x43\xb2\xd4\xfe\x6c\xcd\x55\x97\xb4\x22\x9a\x24\x1c\x13\xe3\xc0\x3a\xf9\xe5\xc5\xf3\x9f\xe0\x6d\xfd\x72\x09\xc9\xd8\x08\x9d\xf1\x2c\x59\x95\x18\x5a\x77\xb9\x5a\xd6\x20\xb6\x37\x19\xf6\x5a\x5d\xd2\x52\x9c\x7b\x77\x77\xd7\xbb\xdb\x83\xa4\x9a\xe7\x1f\xfb\xa3\xc1\xe0\xa8\xff\xf1\xd5\x8b\x5d\x01\x7a\x34\xd8\x15\xbf\x87\xa3\xe1\xb0\xff\x07\xbc\x5b\xdb\xa5\xab\x30\xce\x76\x15\x58\xfd\x47\xcb\x71\x1c\x69\xce\x69\xaf\xb2\x4b\x58\xa3\xb6\x3d\xd4\xc4\x54\xd2\xd5\x7c\xc9\xd2\xf2\x05\xdc\x3c\x58\x4f\xf2\xec\xf2\x36\xdc\x4b\xb8\x99\xb1\x68\x9c\x7e\x12\xfa\x7c\xbd\x5f\xd4\xd0\xf5\x8b\x1a\x6e\xf2\x8b\x1a\x5e\x92\x09\x19\x0f\x06\x96\xd3\x2a\xb0\xec\x06\xf0\x23\x17\xfc\x68\x13\xf8\x91\x00\xbf\xe7\x80\x17\xab\x64\x03\xf4\x3d\x17\xfa\xde\x26\xe8\x7b\x02\xfa\xa1\x86\x1e\x48\x32\x1a\xef\x98\xfb\x2e\x16\xba\xfe\x9f\x8f\xa0\x0c\xce\x15\xa2\x33\xf8\x75\xa1\x69\x7a\xe9\x24\xd8\xd1\x15\x4f\x2b\xf5\xea\x62\xe4\x5b\xa0\x9d\x08\x05\xee\xdb\x9a\xc6\x55\x2f\xb6\x25\xb5\xec\xa7\x3b\xe4\x19\xa9\x5d\x7f\x09\xbe\x07\xb8\x8d\x43\xbc\x72\xac\xe3\x16\xf0\xea\xbf\xa5\x49\x1c\xf6\xa6\xd3\xd4\xba\x37\xc3\xd8\xd5\x29\x63\x18\xd3\x01\xae\x95\x29\xb9\x16\x18\x5f\xab\xd0\xd7\x6b\x8c\x23\x7f\x6d\x16\xb6\x1e\xb5\x58\xb7\xa6\x5e\x6f\xba\xd3\x11\xbb\x72\xad\x71\xa5\xbd\xdf\x35\x9c\xda\xa9\xb8\xcf\x5a\x21\x9e\x2d\x32\x83\xec\xe3\x90\x3d\xa1\xf5\xef\x44\xc1\x6b\x83\xe3\xb5\x7a\x9c\x33\x13\x94\x43\x5c\xf1\x45\x9a\x45\xb0\xff\xf8\xf4\xfe\x5d\x0f\xbf\xc5\xd1\xba\x6d\xb1\x05\x52\xf0\x8e\x72\x83\x41\x9c\xf2\x92\x51\xe8\x67\x3a\x4d\x5f\xc6\x21\x59\x67\x2b\x3c\x13\x03\x7a\x2b\xce\x48\x96\x6a\x07\xbf\x28\x4b\x92\xec\x0e\xde\xdc\xe7\x79\x91\xd1\x60\xc1\xf8\x33\x6c\xab\x4c\x2a\xd3\xe9\xe7\xe7\x03\x34\xbf\x28\x13\xd7\xd4\x33\x72\x05\x59\xc1\xa4\x49\x46\x7c\x3b\x41\x00\x10\x74\x01\x1d\xeb\x86\x82\xe7\xd1\x03\x74\x15\x83\xbf\x62\xfb\x8b\x52\xe9\x26\xa2\x8b\xd4\xba\x45\x84\xbe\xba\xd3\x69\x7a\x0f\x89\xa8\x7d\x58\xa3\x6f\x81\xf5\xa5\xa2\x91\x93\x7b\x03\x7a\x13\xc7\x8d\xbb\xa4\x99\xf0\x55\x16\xf4\x6e\x8c\xa0\x6e\x57\xe9\xdf\x5d\x4b\x10\xba\x77\x46\x27\x1b\x5b\xc3\xd5\x46\xd7\x88\xb9\x4a\xdb\x8a\xb4\x70\x36\x6a\x5f\xf8\x34\xab\x2a\xa0\xe0\x58\xe3\x6b\xf0\x4f\x87\x1a\x4e\x84\x78\xb8\xb1\x5a\xe7\xe0\x56\xfb\xc5\x3e\xeb\x88\x7f\x77\x9d\xb3\x12\xfc\xc7\x6e\xfb\xed\x4a\x0b\x0c\x14\xba\xbb\x10\xff\x76\xc5\xab\xad\x6c\xd4\xac\x54\xc9\x21\x78\x68\xba\x76\xbd\xea\x71\x1d\xc9\x90\x6d\x32\x36\x35\x0b\x85\x44\xf2\xef\x86\xd4\x98\x25\xb4\xf7\xab\x32\x5f\x61\x62\x2d\x69\xd3\x6d\xfb\xfe\x94\x90\x93\x27\xc8\x92\x44\xde\x59\x81\x8c\x02\x8b\x2e\x2e\x18\xfd\x00\x50\x94\xa9\x1b\x60\xd7\xb0\x60\xa3\xde\x05\x6f\xdd\x19\x93\xd6\xc9\x0c\x37\x41\xf5\xf0\x72\x9d\xb3\x09\xb1\x4e\x78\xf5\x76\xa5\x82\xe5\x05\x83\xe0\x30\x4a\xb9\x84\xa8\x1a\x11\x0d\x98\x36\x31\x61\x6a\x5c\xd1\xa4\xf0\x4d\x95\x8e\x84\x53\x8a\xec\x96\x1d\x9a\xdb\xa1\x6d\xba\xb4\x8c\x07\x4e\xa7\xe6\xe2\x87\xb4\x9e\xef\x0f\x06\x42\x31\x7b\x3e\x92\xff\x3d\x1c\x0c\x5a\xdb\xa2\x53\x83\x84\x7e\x87\x2a\xf0\xb0\xc4\xf3\x52\xa8\x19\xf4\x8e\x16\x42\x76\x4a\xfc\x80\xd9\x3c\xdc\xa0\x6c\xdb\xfe\xf3\xac\x64\x69\x19\xc3\xd3\xbc\x90\xa6\x73\x56\x64\x2b\x2e\x8d\x03\x1c\xde\xdd\x6a\xa3\xb1\x7c\xb6\xab\xf8\x45\x1e\x26\xbd\xce\x65\xe9\xe6\xee\xcd\xe0\x51\xf2\xc5\x26\xd4\x0f\x8c\xb9\x94\x01\x70\x52\xb6\x2a\x0b\x9a\xc0\x41\x4e\x2c\x8c\x94\x89\xa5\x4a\x8b\x18\x53\x34\x59\x66\x50\xbc\xec\xf1\x70\x81\x04\x83\x1b\x11\x89\xd3\x30\x06\x8f\x79\x34\xc6\xc2\x31\x38\x5a\x25\x76\x98\x5d\x63\xc8\x84\x68\xbe\xb4\x94\x28\x16\xf1\x7c\xce\x0a\xfd\x52\x5a\x36\xf6\xd9\x04\x4b\x3d\x24\xc0\x4f\xc2\x59\x7b\xa2\x04\xcd\x37\xa6\xe6\xcf\x1c\x13\x9d\x5d\xfb\x52\xb2\x73\x2d\x50\x5f\xd2\xcf\xb1\x4e\xb8\xa1\x4f\x0b\xd2\x68\xac\x81\x94\xae\x55\x90\xa6\xa1\xeb\x2b\x50\x73\x8d\x32\xa9\x16\x59\xe8\xd3\x1b\xc6\x09\xad\x5a\x1a\x4d\x2e\x17\xae\x7b\x90\x9f\x80\x68\x0a\x5d\xee\xe0\xab\x86\xef\x8e\x70\xe2\x17\x98\xfe\x65\x7a\x29\xa1\xab\x14\x71\xb0\x70\xf4\x40\x65\x4b\xb6\x26\xc0\x9d\x8e\x2a\x6d\xed\x64\x25\xfa\x7c\x96\x11\xbe\x88\x23\x48\x47\x24\x5a\xb5\x38\x49\x56\xcb\x38\x85\x6c\xb1\xb3\x35\xaa\x29\x9f\xe3\x25\x44\xbc\x32\x84\xbe\x03\x6e\x62\x9f\x19\x87\xc8\x40\x31\x64\xb0\xc1\xdd\x52\x5f\x1d\xe9\xda\xaf\x7a\xf3\x5e\x57\x76\x03\x0a\xcd\x47\x16\x8a\x83\x8b\xe8\x5c\xfc\xb9\x37\x18\x88\xb5\x27\xfe\x3c\x1c\x0c\x94\x6c\x35\x3b\xef\xc4\xfe\x31\x45\x5f\x6d\x7b\x57\xb2\x1e\xe7\xe8\xad\xd3\xd9\x30\xbc\x57\x3b\xff\xd6\x6e\x50\xdb\x7a\x2b\x59\xd6\x33\xe0\x4c\xf9\x3e\x12\x77\x68\x49\x84\xb7\xb4\x5c\xf4\xac\xaf\xe4\x09\x19\xb2\x71\x87\xf4\xc5\x7f\x4e\xa4\xe5\x05\xee\x25\x28\x67\xcf\x93\xe4\x05\xcd\xb9\x6d\x71\x3e\x2f\x68\xca\x85\xd0\x9a\x90\x16\xbc\x1c\x14\xf5\xa4\xaf\x19\x9c\x07\xd1\x5a\xf3\x3a\x4b\xcb\xd7\x74\x19\x43\xcc\xea\xd6\x74\xe7\x63\x36\xcb\x4a\x79\xdb\xf6\x57\x96\xdc\xb2\x32\x0e\x28\xfe\x7c\x2e\xc6\x21\xfe\xe4\x34\xe5\xbb\x9c\x15\x71\x04\x11\xab\x9e\x3c\x99\xa6\xe4\x09\xf9\x0b\x67\x8c\xfc\x25\x89\xd3\x9b\x2f\xea\xe0\xaf\x06\xdf\x8b\xb3\x7e\xc8\x78\x3c\x4f\xfb\xe5\x3a\xcf\xe6\x05\xcd\x17\xeb\x7e\xb9\x60\xbb\x82\x09\x76\xf9\x9a\x97\x6c\xd9\x5b\x94\xcb\xe4\xfe\xfb\x40\x89\x73\x6a\xc1\x4b\x9a\x86\x71\x3a\xdf\x35\x1f\x0c\xcc\xfe\xc3\x86\xaa\x73\xdd\xcc\xdc\x58\x1a\x50\xb6\xdd\xaa\x80\xe8\x41\xf2\x14\x65\xaa\xa0\x8d\x4d\x47\xf5\x20\xcf\xac\x6f\xc6\xfc\x35\xb1\x4a\xcd\x4d\x6e\xc1\xa2\x1f\x22\x7b\x2e\x44\x49\xcf\x94\xe8\x9a\x95\x4a\x4e\x33\xfb\xea\xb6\x3a\xc3\x13\xbf\x41\xb5\xff\x4f\x42\x50\x5b\xbd\x8b\xdf\x4e\xdf\x56\x05\xab\x81\xdd\xef\x70\xdf\xee\xc8\x01\xa0\x4b\x7f\x81\x27\x1d\xca\xe0\xab\x7b\xb3\x8a\x9d\x4e\xab\xd5\xab\x50\x9c\xab\xf3\xc1\xc0\xc6\xa1\x0e\xac\xf7\xf1\x23\x9b\xaf\x12\x5a\xc5\x05\xcb\x8b\x1a\x6c\xe4\x97\x2a\x3e\x0a\x94\x8d\xd0\x7e\x1d\x42\x58\xb1\x09\xa3\xb7\x2c\x8c\x57\xcb\x2a\x46\x58\x5e\x83\x90\xd3\xa0\x06\x90\xf3\x0e\xbd\x0e\x1f\x0f\xb2\xf7\xf5\x47\x69\xb8\x70\xb1\xf9\xd1\x36\x74\xd4\x56\xae\x80\xb0\xf1\x38\xac\xc3\xc3\x81\x09\xdf\xc4\x32\x7e\xed\x71\xa7\x5d\xa6\x6b\xd7\x54\xf4\x1a\x3b\x9c\x7a\xa0\x3a\xaf\x05\x46\x93\xe4\xef\x18\x19\x8b\xab\x4e\xad\x22\x63\x9b\xfe\x7c\x9e\x7d\x64\xcb\x91\xaa\x23\x7f\x6f\x6f\x1f\x11\xad\xc0\x38\x62\x16\x26\x4a\x5c\xb5\x7e\xcc\x2f\x8b\x93\xfd\x42\xc9\x8f\x7e\x31\x4e\xaa\x5f\xfa\xa3\x36\x92\xd8\x23\xc7\x12\x6b\x8c\x58\x20\x07\x64\x85\x14\xf8\xbe\xe3\xa8\x14\x98\x5a\x6a\x3c\xb2\x5e\x40\x37\x1e\x4f\xdd\xf7\x9b\xd7\xaa\x31\x1c\x41\x65\x2c\x13\x50\x90\xe1\x56\x08\x81\xf5\xaa\x0f\xef\xad\xee\x1d\x76\xf8\x1e\x14\x6c\x00\x5b\xa3\xe1\x9c\x88\x83\x0c\x36\x10\x4d\x88\x3e\x19\xee\x5b\x97\x04\x92\xde\xe4\xd4\xb0\xd6\xd7\xaf\x56\xd4\x37\x1e\xff\x93\x55\xf3\x9a\x9a\x63\x3a\x47\x98\xce\x40\x9f\x40\xa7\x5d\x08\x2f\xbd\xd4\x6f\xc5\xad\x4e\x67\xab\x38\x09\xe5\xbc\xdb\x77\xe2\x76\x79\xdb\x30\x50\x17\xe2\x1e\x74\x49\x12\xa7\xec\xaf\xb2\x04\x36\xb8\xe2\x93\x7a\xa3\x1c\x50\x2e\xce\x57\x1e\xa2\xd5\x37\x94\x86\xeb\x27\xa4\x61\xc3\xfb\x45\xbe\x00\xb4\xfa\xf7\xf7\xa4\x89\x22\x16\x92\x47\x7f\x17\x3a\x74\x1a\x97\x09\xe3\xdc\xba\xc1\xd3\x6a\x05\x5b\xb3\xe2\x8e\xa1\x59\x8d\x15\x71\xd0\x17\x8b\x73\xbe\x28\x79\x7f\x34\x18\x1c\xf4\x07\xa3\xfe\xe0\xa8\xbf\x92\x00\x76\xc5\x68\x77\x17\x80\x00\xef\xab\x1e\x0c\x09\x26\xd6\xdf\x72\xe6\xbb\xc4\xdb\x9e\xab\xbb\xf2\x33\xc3\x77\x0e\x05\x27\xce\xa4\xa2\x2a\xe8\x54\x20\x7d\x82\x63\x25\xd3\x1d\x98\x54\xd9\x27\x3c\xb9\x56\xf4\xef\xda\x62\xac\x3a\xed\xb7\x46\xc0\x49\x2c\x16\xc3\x49\xd3\xa4\xe3\x0e\x4a\x8e\x0f\xba\x64\xd8\x1b\x1e\x1c\x76\xc9\xee\xb0\x37\x56\xb4\x5e\x8c\x1e\x6a\x78\x30\x10\x0d\x47\x5d\xb2\x3b\xb0\x9a\xed\x35\x36\x53\x9b\x2f\xd9\x3f\xd2\x3d\x0e\x74\xbb\xfd\x87\xdb\xed\xed\x43\x87\x7b\xe0\xf8\x36\x32\x5d\x8e\x1f\x6e\x3a\x82\xa6\x7b\x02\x82\xe9\xf2\xa0\xb1\x9d\xdc\x3b\xc9\x08\x86\x78\x00\x8e\x76\xba\x3f\xbe\x9a\x95\x82\x83\x9a\x29\xab\xbb\x1d\x02\x6d\x0f\xc7\xf5\x00\x9a\x29\xac\xfa\x1f\x02\xda\xe3\x43\x68\xaf\x9a\xcf\xb2\x70\xbd\x75\xdf\x5e\xd7\xa2\x6d\x73\xb7\xa6\x2d\xf4\xbb\xbf\xe7\x35\x06\xd7\xe9\x2d\x91\xc6\x41\xef\x77\xed\x13\x8d\x02\x14\x50\x99\x91\xeb\x41\x3c\x46\x40\x7f\x98\x80\x7d\xd5\x3a\xbb\x65\x85\x58\x99\xdb\x35\x1f\x41\xf3\xa1\x8b\x87\x5a\x37\x5a\x8e\x35\xdf\x62\xda\x72\x77\x42\x6a\x34\x0b\x29\xa8\xb4\xc4\x92\xc5\xd2\xf7\x13\xcd\xc8\xe6\x1e\xe3\xfd\xcb\xf7\xe4\x76\x3c\x21\x05\x5b\x66\xb7\x32\x9e\xdc\x46\x91\x69\x24\xa2\xa7\x7f\x7b\xeb\x71\xe2\x17\x54\xaa\x49\xb2\x4c\xaa\x45\x95\xaa\x38\x95\x93\x4a\x49\xa5\xe2\x8f\x70\x71\xe3\x69\x22\x78\x2f\xa0\x64\x91\xba\x14\xd0\xaf\xc0\x83\x04\xb2\x39\x62\x00\x3d\xc8\xdb\x07\x96\x34\xb1\xdf\xc2\x27\x98\x0c\x94\x69\xf7\xf6\x13\x70\xbe\xa0\x61\x76\xf7\x37\xb6\xfe\x79\x39\x2b\xa8\xf4\x65\x25\xa7\x42\x16\xc8\x53\xb0\xae\xf1\x81\x89\x4d\xdb\xad\x04\x9b\xb2\xa9\xf5\x7c\x39\x8b\x59\x0a\x96\x89\xec\xce\xa9\x37\xf2\x42\x52\xc2\x71\x12\xeb\xb5\xdd\x53\xfd\x85\x2d\xd2\x2b\x66\xd8\x3f\x9d\x62\xa0\x1f\x6d\x75\x9d\x38\xa1\x34\x50\x17\xb3\x6d\xf7\x75\x10\x86\x8d\x10\x86\x5b\x42\x18\x35\x42\x18\x6d\x09\x61\xaf\x11\xc2\x9e\x82\x20\x3d\xf0\xc5\xff\x2c\x60\xb5\x33\xa6\xe2\xdb\xb8\xb1\x0a\xea\xfa\xdd\x6f\xec\x77\x7f\x4b\xcc\xc7\x8d\x10\xc6\x5b\x42\x38\x68\x84\x70\xb0\x25\x84\xc3\x46\x08\x87\x5b\x52\xcf\xe3\xe6\xed\x09\x78\xd4\xd8\xf5\xd1\x96\xc8\x1f\x37\x42\x38\xde\x96\x81\x9b\xd7\xc0\x70\xeb\x45\xb0\x61\x15\x0c\xb7\x21\x62\xdd\x62\x57\x64\x54\x8e\x28\x5d\x19\x6d\xb1\xdf\x27\x7f\xc7\x47\x4f\x70\xe9\xf7\x7b\x38\x6c\xcd\xd8\xd1\xe1\xfe\x61\x74\xbc\x3f\x3e\xdc\x3f\x38\x38\x0e\x66\x63\x76\x48\xc3\x70\x48\x0f\x83\xf1\x7e\x44\xf7\x87\xf4\xe8\x38\x60\xc1\xa1\xeb\xb0\xc5\x12\x76\x0b\x36\x8a\xfe\x15\xc8\xd2\x59\xc2\xd0\x69\x0b\x1d\xb6\x8c\x28\xc3\xe0\x85\x69\x96\xb2\x56\xd7\x15\x57\x83\x2e\x19\xc1\xe6\xb7\x3b\x84\xa7\x31\x43\xf8\xff\x40\xfd\xbd\x07\xda\x50\xa5\xc9\x1e\x36\x19\x41\xb5\x11\xfc\x5f\x37\x19\x37\x36\xd9\xd3\x4d\xf6\xba\x64\xdf\x6a\x72\x54\xdf\x64\x04\xb5\x24\x62\xfb\x08\x59\x23\x39\x68\xec\x66\xac\xdb\x8c\x11\xb4\x6e\xb3\xbf\x45\x9b\x03\x09\x5b\x37\x6a\x40\x0e\xf1\x91\xe3\x39\xc4\x46\x43\x45\x0f\xd0\xac\x6a\x1a\x8d\xb1\xd1\x1e\xd4\x3b\xb2\x1b\xed\x21\x7a\xa3\xfa\x46\x07\xba\xd1\xb1\x54\x79\x74\xa3\x83\xfa\x46\x07\x76\x23\xe8\x66\x5f\xb5\xda\xc7\x41\xed\xd5\xb7\x12\x4a\x3e\xce\xcd\x50\x8c\x7e\x6c\xb5\x12\xba\x6e\x5d\xab\x43\x18\x8b\x6a\x25\xb0\x3b\x54\x2c\x31\xee\x92\x91\x98\xc6\x07\x5b\x89\xa1\x1c\xdb\xad\xf6\x1b\x5b\x1d\x9b\x56\x02\xa9\xa1\xdd\xea\xa0\xbe\xd5\x11\xb6\x42\x06\x1a\x4a\xa4\x46\x6a\xbe\x47\x47\x5d\x32\xae\x6f\x25\x28\xa7\x9a\x1d\x20\x56\xba\xd9\xde\xa0\xb9\xd9\xd0\x34\x3b\x44\xb4\x4c\xb3\x51\x7d\xb3\x63\xb7\xd9\x11\xe2\xa5\xf9\x4b\x1c\x4c\x0e\x1a\x9a\x89\x13\xd6\x01\x36\x13\x34\x3c\xb6\x9b\x1d\xd4\x37\x1b\x4a\xa2\xcb\x76\x30\xb5\x72\xbd\xc3\x08\xf6\x8e\xba\xe4\x70\x8b\x76\xa2\xcd\x9e\xd5\x6e\x7f\xb0\xa1\xdd\xbe\x69\x37\xea\x12\x71\x4a\x33\xed\x46\x0d\xed\xe4\xba\xdd\x3d\xc4\x76\x7b\x38\x24\xbd\x18\xf6\xf7\xbb\xe4\xa8\xa9\xdd\xd8\xb4\xdb\xc7\x21\x99\x76\x07\xa2\xdd\x65\xf5\x21\xbe\x14\x98\x27\x46\xa5\x34\x39\xc3\x67\x90\x25\xfa\x23\x0d\xe3\x15\x9f\x90\xfd\xda\x87\xfc\xd0\x40\xb4\x6e\x32\x3e\x5c\xd1\xa2\xa0\xeb\x37\xf1\x0d\x3b\xcf\x9e\x8b\x3f\xdb\xb4\x28\xba\x24\x61\xca\x95\x2d\x8e\x48\x3b\x61\x29\x39\xc5\x5c\x76\xe4\xeb\x57\xf1\x91\xfc\x99\xd0\xa2\xd0\x81\x2a\xa1\x82\x55\xa2\x62\x7f\xda\xe9\xa0\x06\x5d\x51\x61\x04\x09\xde\xef\x08\xf6\x25\xba\x39\x21\x31\xf9\x93\x80\x70\x42\xe2\xa7\x4f\xf5\x85\x8d\xa8\x7b\x11\x5f\x22\x58\x95\xfb\xc9\x8d\xf3\x27\xaa\xb8\x06\x3a\x7f\x30\xca\xb4\xd6\xeb\xfb\x5f\x36\x86\xc0\xbb\x5a\xa5\xda\xb7\xe4\x4c\x26\x0f\x52\xe4\xc9\xba\x64\x19\xa7\x6f\x1c\xfa\x3c\xca\x3a\x76\xe0\x74\xeb\xba\x2f\x93\xe9\x61\xd0\x37\x69\xba\xd3\xb1\x70\x77\xc9\x6e\xe0\xea\x07\x66\x82\xa6\xef\xd1\x64\xab\x13\xc6\xf7\xca\xec\x13\xc0\xc2\xcc\x91\x59\x47\xe6\xe7\x16\xc2\x6b\xd8\xd1\xdd\xa7\xb2\xdf\xf7\x56\x5a\x9a\xac\x67\x25\xd7\xe9\x00\x74\xa7\x08\xb2\x8b\x54\x20\xbc\xa5\x39\x64\xb6\x23\xaa\xe0\x13\x2b\xad\x71\x00\xf2\x3d\x41\xe6\x76\x56\xed\xfe\xb9\xd2\x7b\x10\x44\xff\xbf\xda\xcf\x26\x3f\xc7\x5f\xcf\x3a\x69\xd9\x7e\x36\x39\xfa\x3a\x3c\xf8\xba\x37\xea\xb4\x9f\x4d\x5e\x24\x74\x99\xb3\xb0\xf3\x0c\xe0\xfd\xd0\xef\x95\x8c\x97\xed\xb4\xb3\x25\xbd\x7c\x16\xf8\x25\x2e\x17\x7f\xcd\x12\x63\x5b\x95\x0c\xa0\xcb\x6d\xcb\x69\xec\xce\xf0\x9b\x78\x19\x97\xa6\x5d\xdd\x57\xbb\x75\x33\xab\x18\x18\xcd\x75\x6c\x48\x69\x96\xaa\xaf\x1f\x19\xb7\x50\xf0\x3e\x6c\x66\x5d\x60\x87\xd0\x59\xcc\xb1\x7b\x0a\x74\x29\x21\xaa\x40\x8e\xa2\xba\x81\xea\xf6\x5f\xbf\x6e\x18\xa8\x5d\xcb\xc3\xb5\xad\x66\x67\xb3\xfc\xf1\xb0\xd1\x0b\x0b\xb9\x2b\xe6\xba\x1b\x87\x21\x1e\x02\xbd\x71\x44\x5f\xbc\x95\xfa\x69\xbd\x9c\x65\x89\xe4\x5b\xad\xbb\x23\xdf\x3e\x6a\xe3\xd7\x9e\x4a\x2d\x46\xe2\x54\xae\x4c\x44\xca\x59\xfe\x98\x05\xa5\x28\x84\x96\x7b\x69\x4a\x52\x93\xc3\x5e\x96\x40\xea\x4f\x9a\x70\xab\x88\x79\x79\xba\xa6\x6e\x10\x7e\x2d\x50\xaf\x62\x29\x18\x3d\xc4\x2e\xdb\x9d\x2e\xb9\xe2\x27\xe4\x51\x1b\x3a\x6c\x5f\x81\xf1\x28\x86\x24\x8b\xed\x4e\x07\xb3\xc5\x9f\x18\x6c\x2c\xb3\x83\xc0\xb9\x97\xaf\xf8\xa2\x7d\x25\x83\x72\xfb\x0f\x08\x62\x21\x46\xae\x8c\x98\x07\x6a\xc5\x1d\x27\x91\x2c\x5a\x1b\xea\x82\xf5\xc3\x78\x35\x05\x08\x0e\x96\x15\xd2\x4d\x51\x27\x68\x95\xb5\xad\x51\x4b\x21\x7b\x05\x8e\xdb\x57\xf1\x85\x49\x52\x79\x49\x1e\xe1\xb6\xd4\xf1\xca\xdb\xe6\x35\xaa\x07\x17\x81\x5d\x85\x1d\xe9\x5e\x7c\xc5\x6a\xcc\x24\xca\x5a\xb0\x05\x93\x55\x18\x5e\x3a\x41\x68\xdf\xe5\xf3\x75\xce\x54\x7a\xbc\x33\xf4\x2d\x56\x89\xf1\x20\x8c\x06\x43\xf9\xbb\x2a\x98\x58\x3c\xbb\x8a\x69\xc1\x3f\x98\x42\x88\x8f\x69\x7a\x96\x12\xd8\xec\xa5\x8d\xc7\x24\xc9\x13\x2d\x60\x05\x49\xdf\x1e\x8e\xa9\xff\xa4\x83\x77\x0d\x77\xc8\x0c\x81\x3d\x34\xc2\x6c\x1c\x19\x2e\x8c\x76\x36\xfb\x55\x8e\x49\xbb\xa8\x48\xd7\x14\xb2\x2b\xbd\x10\x40\x22\x6d\x5a\x4f\x0a\x28\x6e\x44\x4e\x0d\xb3\xa6\xe4\x4e\x09\xa5\x56\xfe\x3c\x89\x87\x6d\x15\xaa\xa2\x66\x99\x78\xd4\xce\x3b\xfb\x55\x4d\xac\x64\x30\x3b\x5f\xf5\xb7\x02\xcd\x66\xbf\x56\x30\xaf\x1d\x5b\x36\xfb\xd5\xde\x53\xa1\x8e\xac\x8e\x5f\xc1\xe8\x27\x87\xae\x77\x75\x70\x59\x57\x23\x47\x1f\x8d\xda\x31\xb8\xdc\x69\x21\xec\xee\x81\xdf\xe5\x0b\x84\xd7\xc9\x34\x08\xba\x82\xbf\x96\xb6\x7a\x63\xfd\x36\xbb\x48\x10\xd4\xe0\x64\xee\xa5\x35\xa0\x6f\xbb\x47\xed\x62\x36\x84\x3b\xb1\x7d\x52\x5e\x82\x83\xa9\xb9\x59\xad\x71\xa3\x81\xde\xec\x50\x55\x65\x86\x19\xab\xc4\x02\x71\xf6\xe1\x0d\xfe\x55\x95\x36\xbf\x43\x7c\x65\x8d\x8f\xb4\x3b\x3f\x8c\x84\x59\x4b\xb2\xed\x07\x95\xff\x41\xce\x61\x5e\x64\x39\x38\x2d\xd9\x51\xa7\x70\x9a\x55\xa4\x24\xf8\xd5\x3a\xd1\x91\x4e\x74\x78\x53\xf2\xe4\x09\x84\x18\x7f\xf2\x84\x80\xdb\x6c\xcc\x31\x56\x0e\x26\xa7\x78\x0d\x7b\x1a\x0a\x1c\xcc\xd8\x87\x39\xb3\x0b\x5e\xda\x30\x3e\xf3\x09\xb9\xf8\xcc\xbb\x84\x2f\x2f\x7a\xea\x52\x47\x27\x6c\x80\x79\x36\xd9\x18\xec\x5c\x0c\x76\x26\x06\x27\x0f\x83\xc9\xc2\xe0\xb9\x86\x59\x99\x25\xac\xc8\x4e\x5b\xa6\xdb\xc0\x0c\x95\xbf\x2d\xe1\x86\x8a\x1b\xbe\x39\xcd\x06\x0c\x62\x95\x4f\x1a\xf3\x1c\x6c\x9f\xa1\x00\xe3\x99\xe3\xed\xa0\x1d\x50\xdd\x3a\xd6\xe9\x4e\x30\x67\xbf\x9d\x7d\x43\xe6\xc9\x12\xff\x81\xeb\x40\x19\xd6\xf7\x75\x91\x2d\x3f\xa8\x32\x6b\x4d\x7f\x87\x3b\x3f\x66\x36\x83\x97\x1d\x5b\x3a\x2b\xfc\x23\x5b\x11\x5a\x60\x06\x5a\xcc\x16\x89\x81\x92\xac\x00\xef\xe0\x8d\x42\x28\x3e\x18\x91\x1c\x59\xeb\xb9\x50\x55\x07\xf5\x50\x3b\xce\x3b\x39\x80\xe4\x72\x8f\x85\xb9\x1d\x9c\x5a\xa8\x76\x55\x6e\x73\x13\x1b\xe8\x4e\x7a\x05\x0b\x57\x01\xb3\x52\x9b\x59\x12\x0e\x3c\x5a\x2d\xa2\xd0\x20\xb8\xf0\xf1\xe8\xad\xf2\x76\xa5\x0c\x02\xee\x43\xeb\xcb\x8e\x38\xeb\x56\xe7\xcc\x0c\x53\xd5\xf3\x43\x54\x2b\x49\x0c\x56\xac\x2f\xf7\x4e\x28\x7d\xd0\x75\xe4\x3e\x61\xe8\x85\xae\x82\xa8\x31\xb4\xdc\x54\x88\xbf\x03\xf5\x1c\xfa\xc9\xf3\xab\x18\xa7\x85\x40\x03\x31\x0d\x74\x8f\x96\x15\xb4\x04\x31\xad\xda\x0f\x92\xce\xd4\xfd\x36\xfa\x41\x90\x52\xf5\x74\x64\x53\x0f\x8e\x0b\x71\xa6\x7d\x87\x9d\x1d\xd6\x22\x5e\x1b\x61\xc9\x2f\x96\x77\x67\xca\xee\x3e\xd9\x9f\x6c\x0d\xc5\xff\xa6\x73\x38\x9a\xf9\x9b\x51\xce\x34\xa6\x6e\xb5\x93\xdf\x7d\x89\x40\xfe\x0d\xd8\xf1\x20\xf2\x6d\x2d\x73\x37\xcc\xb4\x2d\x21\xb5\x40\xca\x51\x02\x3a\x4f\x93\x69\x10\x88\x93\x4e\x10\x60\x62\xce\x13\xe7\x4b\xed\x1a\x13\xa0\x2f\x2b\x34\xa8\x0b\x9e\x4e\x10\xe5\x89\x3d\x78\xf3\x55\xe5\x1e\x44\x9c\x3a\x1b\x92\x26\x3b\x0c\xa4\x92\xa6\x5a\xdf\x51\x21\x12\x53\xd3\xd5\xf4\x72\x7d\x61\xfc\x99\xed\xe9\x8d\x08\xa7\xe6\x61\x51\x4d\x9e\x19\xdf\x26\xe7\x29\x2c\xaf\x87\xdb\xe9\x82\x97\x8e\x95\x42\x49\x2b\x1b\x3d\x99\xa6\x19\x3f\x89\x5d\xbc\xe1\x93\xd8\xd4\x1b\x3e\x89\x3d\xbe\xe1\x93\xd8\xf1\xfd\x4f\xa8\xe1\x99\x64\x0d\x15\x7a\x44\x71\x52\xb2\x42\x34\x7b\x38\xf3\x95\xda\x54\xab\x9a\xa0\xbb\xea\x6c\xa0\x1d\x67\xfd\xfa\xdd\x37\xa8\x9e\xd6\x3a\xb1\x15\x50\xe7\x06\x66\x0b\xbd\xcf\xa9\x6f\xab\x7f\x98\x86\x9d\xc7\xb7\x4c\xd1\x4b\xab\x79\xd5\x4f\x4e\x6c\xcd\x8a\x7a\x60\xc5\xd2\xb4\xb0\x7e\x48\x8b\xb4\xbe\x2e\xb3\xf8\x9f\xf6\x77\xf8\xdd\x92\x2a\x5b\x6e\xde\x32\x48\x55\x6d\x39\x21\xad\x25\x2d\xe6\x71\x8a\xd1\xbe\xf2\x09\x69\xc9\x4c\x04\xf6\x2b\x00\x15\x1f\xca\xbc\x1d\x98\x90\xd6\x79\x96\x63\xa3\x62\x42\x5a\x1f\xf1\x59\x26\xdc\x77\x4f\x48\xeb\xc7\xac\x2c\xb3\x25\xfe\x4e\x26\xa4\xf5\x86\x45\xf2\xeb\x67\xa1\xa9\xe1\x4f\xd5\x0a\x95\xb3\xb5\xf8\x00\x30\x75\xf3\x4b\x83\x02\x4d\x62\xca\x2d\xbc\x01\xe7\xff\x14\xd8\x7f\x46\xb8\x58\xf2\x0f\x51\xb2\x96\x63\xc1\x71\x88\x4a\xf9\x67\xa7\x48\xd4\xca\xd7\x30\x40\xa1\x80\x4a\x2a\xb5\x3b\x42\x37\xa5\x41\x39\x41\x55\x5b\xd0\x70\x6f\x30\xe8\x0e\x06\x03\x92\xe5\xbc\xcf\x59\x80\x09\x9c\x33\xb2\x37\xf6\x8a\x11\xc9\x39\x2b\x5f\x70\xfe\xc1\xa6\xb2\x82\xed\x66\x5a\x35\x49\x05\xcf\x84\x8a\x9b\x66\x42\xb5\xe2\x8b\xac\x28\x17\xf2\x6d\x18\xd5\xa1\x0d\x95\xd0\xb5\xde\xf8\x3b\xfa\x9e\xa4\xcc\x85\xa8\x63\xcb\xe4\x1c\x13\xef\x3a\x9f\xdd\xd0\x5f\xfe\xe1\xd9\xad\xe3\xed\xae\x57\xe2\xe3\x0f\x3c\x4f\x20\x69\x1a\x20\x04\x3f\xda\x2d\x2b\x3f\x87\x55\x09\x1c\x9d\xdd\x4b\x4e\xeb\x2b\x98\x1f\xb5\xe6\x00\x31\x66\x4c\xcb\x0b\x1d\xe5\x87\x90\x99\xff\x6d\x78\x69\xfb\xc0\xaa\x27\xf1\xa7\x16\x6f\x5f\x50\x73\x9b\x67\x45\x36\xb3\xb8\xf8\x62\x76\x09\xd9\xb9\x5b\xb6\x30\x71\x95\x56\x5d\xb9\x43\x9e\x99\x96\xbd\x25\xcd\xad\xa9\x0c\xe3\xc2\x3f\x3f\x68\x8c\x9e\x8a\x56\x27\x5a\x60\x5e\xb8\x1f\x64\x04\x38\xc8\xd4\xaf\xdc\x87\xd0\x5d\xf3\x6f\x2a\x69\x20\xca\x4c\x58\x26\xcb\x02\xfe\x3d\x83\x7f\x27\xf0\xef\xcf\xf0\xef\xb5\xf8\x37\xac\x98\x1c\x2a\xe6\x50\x31\x87\x8a\x39\x54\xcc\xa1\x62\x0e\x15\xd5\x42\x57\x7f\xc9\xc5\x86\x3f\xe4\x02\x56\x3f\xd5\x02\x56\xbf\xd5\x8a\x95\x0b\xcf\xfc\xf9\x0f\x80\x2f\x45\x86\xf9\x53\xc2\xb6\xb3\x9a\x58\xbf\x0d\x74\x2b\x31\x8a\xf5\xf3\x3f\xad\xbf\xff\xd1\xba\xac\x39\x58\xa1\xe5\xee\xe7\x94\x16\x6b\xe9\xe7\xda\xb6\x4f\x3c\x5a\x7b\x52\x4e\xb0\xa7\x6e\x3e\x1a\x31\xfd\x47\xd5\xcb\x30\xb7\x49\x9d\xd7\xb7\x9c\x66\x4b\x4d\x9a\xf1\xaa\x86\xf4\x4d\x61\x63\x1c\x0c\xe8\x8c\x37\xb9\x9b\x57\x4f\x71\xde\xa3\xec\x57\x9f\x73\x8c\xed\xaa\x06\xa9\xdc\x59\x3c\x97\xf3\x2e\x99\x67\xa5\x15\x18\x86\xce\xb8\x38\xcd\xda\xaf\xb3\x89\x9d\xcc\xbb\xaa\x49\x39\x74\x7a\x22\x90\xae\xbb\xff\xaa\x1e\x05\xed\x76\x9d\x7f\x3d\x4d\x05\x31\xff\xec\x20\x5b\x9f\x4c\xae\x4a\xd9\xba\xd8\x3a\xf8\xc0\x4e\xc7\x85\x68\x57\x08\xd8\x01\x17\xd2\x28\xc9\xee\x78\x4f\xfa\x51\x9d\xc3\x3b\x5c\x69\x8e\x51\x37\x30\xb4\x60\x13\xd2\x18\x8d\xc2\xa1\x91\x9a\x17\xcf\x27\x0b\xfb\x23\x7f\xb6\x1d\x9c\x1a\x86\x29\x2a\x76\x21\x64\x85\xba\xc4\xa3\x61\x28\x53\x51\x71\x2e\xe6\x0f\xb1\xea\x59\x2e\x4b\x5e\xec\x9c\xad\x59\xe1\x82\xce\xf8\x65\x13\x27\x34\x2e\x31\xfd\x14\xce\x67\x08\xbb\xaa\x0f\xed\xdb\x18\xe2\xe1\xc9\xbd\x76\xc4\xc3\xb5\x9c\x6c\x6b\x8e\x6d\x64\x70\xb2\xed\x18\x24\x62\x86\x5a\x67\xa5\x13\x7c\x44\x2d\x36\x2a\x4d\x79\x18\xb7\x45\x8d\xb6\x57\x17\xa9\xc8\xbd\xa4\x35\x0b\xc2\xa7\x8c\x6d\x7a\x42\x52\xbb\x27\xd8\x39\x2b\xf1\xdc\x5b\xaa\xf7\x9d\x02\x91\xbc\xe6\x7e\x49\xce\x8a\xfe\x84\x53\xe2\xc7\x78\xf1\x2f\x59\x2a\xa1\x92\x66\x62\xcf\x82\xc7\xa8\x74\xc6\xfd\xd3\x36\x08\x63\x8d\x08\x5a\x97\x34\x5a\xb0\xd8\xdd\x07\x43\x12\x93\x3f\x9f\x92\x41\x85\x25\x0c\x98\x26\xfe\xb2\x3b\xda\x20\xc1\x77\x1b\x40\xe9\x7b\xc0\x5d\x6b\xee\x4d\xd5\x4e\x1d\xad\x3f\x55\x2f\x1c\x02\x5b\x0f\xec\xda\x03\x76\x8d\xbc\xae\x5e\x68\xcf\x8e\x89\x11\x62\x83\x6a\x38\xa7\x9b\x3a\x6b\xef\x4a\xc6\xfa\x72\x89\x21\x4a\x36\x72\xc6\x76\x97\x2e\x15\x22\xa8\x7c\x65\xf6\x4d\x87\xde\x83\xdd\x6b\x8b\x1a\x96\x28\x74\x00\x9a\x9a\x0d\xdd\xd6\xd1\xfc\x5b\x2a\xde\xf1\x34\x32\x4b\xb9\x96\x0f\xe3\xf1\x3e\x73\x41\xf9\x02\xa2\x20\xac\x50\xb3\x06\x49\x6d\x56\x26\xda\xb6\x40\xaf\x50\xeb\x17\xad\x1a\x18\x3a\x08\x2e\xda\x21\x77\xfd\xe8\x08\x6e\x12\xb9\xf1\xbc\x87\x3b\x6a\x95\xf9\xfd\x4e\x68\xf0\x18\xa4\x00\x93\x80\xc3\xcd\xb7\xd1\xd5\x2d\x1d\x4f\x67\x40\x45\x94\x4f\x21\x27\x68\xd5\xa0\x95\xae\x92\xa4\x2e\x3f\x6c\xe0\x9d\x33\xfc\xa3\x07\x82\xb5\x2e\x80\xaa\x97\x62\xd8\xea\xdb\x78\xd7\x02\x68\x89\x0c\x79\x01\x63\x1f\x1f\x24\xfa\xdf\x79\xff\x2d\xf5\x66\xc5\xec\x70\xcc\x55\xec\x07\x64\x90\x84\xfc\xae\xfb\x17\x7b\x12\x2a\xab\x29\x9b\xfd\x6a\xdf\x7a\x65\xb3\x5f\x65\x9e\xe3\x9a\x53\xbe\x73\x95\x08\x26\x40\x5c\x23\xea\x7e\x44\x21\xe9\x5e\x8a\x58\xdd\xd7\xf8\x81\xc9\xdd\x6e\x83\xbd\x57\x9f\x28\xed\xeb\xc8\x80\x06\x0b\x70\x38\x73\x5e\x9f\x58\x42\xa2\x98\x3b\x87\x46\xa8\x7f\x41\x8b\x39\x66\x98\xd5\xfb\x89\x6d\x30\xb0\xaa\x90\x28\x05\x10\x4d\x51\x8c\x74\x55\x23\x1e\x6c\x2b\x67\x75\x6d\xd7\x9b\x3b\xf1\x89\xbf\xba\xad\xb8\xa3\x45\xfa\x3e\x0d\xd8\x83\x39\x50\x95\xbc\xb0\xe8\x21\xe9\x78\x96\xe2\x8d\xf0\xef\x91\x9f\x54\x1d\x17\xfa\x7d\xf2\x3c\x29\x18\x0d\xd7\xf6\x5e\xa3\x8f\xea\x76\xcf\xbd\xe5\x2a\xf6\xa5\xb9\xfd\x5d\x1a\xbc\xfb\x7d\xa2\xf4\x11\xf2\x12\xa2\x16\x90\x84\xae\xb3\x55\x09\xaa\xa2\x4c\x26\x92\xac\xc9\x8c\x26\x34\x0d\x58\xd8\x23\x6f\x33\x5e\x92\x25\xa3\x7c\x55\xc8\x20\x3b\x34\x11\xcd\x84\x76\x97\x92\xa3\x30\x27\xf3\x22\x0e\x65\x0e\xea\xb0\x4b\xee\x16\x71\xb0\xc0\x3a\x9c\xcc\xb2\x72\x61\x8e\x08\x32\x82\x8a\x90\x87\x34\x49\x64\xc7\xca\x34\xf7\x69\x49\x93\x84\x41\x96\x44\xe9\x7c\xde\x25\x7c\x25\x40\x71\xc8\x04\xc0\xb1\xbd\x8e\xa2\x64\xb0\x20\xfb\x12\x09\x05\x6a\x43\x88\x06\xec\xd3\x0b\xcf\x20\x11\x59\x94\xcb\xe4\x0f\x2b\x4e\xe7\x4c\x85\x13\x75\xb6\x8e\xfa\x8d\x43\x52\x9c\xab\x17\x92\x36\xcd\xa7\xca\x48\xed\xb1\x8a\x7d\x81\xcf\x5d\x86\xb2\xfd\x79\x94\x07\xa5\xcb\x4f\x5d\x51\xc2\x1d\x97\x49\x51\xb3\xd3\x25\x57\x37\x90\x0f\x72\x70\x82\x7f\xfd\x09\x20\xe0\x0f\xcb\x89\x92\x40\xfb\x8b\x2b\x29\x6a\x0c\xe7\x5d\xe9\xd4\xc9\xde\x33\xe5\x6f\x3d\x10\x81\x65\x50\xac\x61\xe7\x21\x4c\x67\x43\x78\x51\x5f\x49\xce\x32\xb2\xa4\xe9\xda\x20\xa7\x8f\x42\x5d\xc2\xd4\xc9\x53\x25\x79\x19\x00\x63\xec\x57\x4e\x9a\xa6\xff\x0d\xb1\x39\xe1\xe8\x66\x61\x2a\x24\xd4\xa0\xc6\x81\x44\x31\x41\x7b\x58\xfb\x92\xdb\x07\x51\xb3\xbb\x1a\x10\x40\xff\xc1\x65\x93\x84\x03\x58\xae\xaa\xa1\xe8\xe0\x11\x59\x9d\xe3\xd5\xd1\xbb\x56\x9f\x76\x21\x43\xc5\x3a\xbb\x85\x63\xd5\x72\x70\xc5\x9e\x7d\x65\x4d\xb9\xa3\xc8\x26\x6e\xea\x70\xfb\x00\x89\x35\xd0\x84\x8d\x31\xfb\xb4\x29\x0c\x50\xe8\xc8\xa3\x09\x69\x29\x85\x0f\x22\x1f\xd3\xe0\xe6\x8e\x16\x21\x88\x03\x5a\xc6\xb3\x38\x81\xf7\x2e\x10\x80\x6b\x99\xdd\x62\xa2\xe6\x71\x4f\xad\x54\xa9\xad\x79\x39\x5d\x75\x76\xea\xd6\x2a\x8d\xcb\x96\xb6\x6d\xcc\x59\x39\x71\x62\x05\xb7\x7f\x97\x3b\x80\x47\x6a\x1b\x21\x5f\xbf\xd6\xab\x08\x40\xa7\x92\xf1\x72\xf3\x65\xcb\x85\x6b\x33\x77\xce\x8b\x3d\x31\x14\x02\x62\x4a\xa8\x9a\x64\x26\xd6\x80\x93\x2b\x1a\x4e\x87\x77\x71\x92\x08\xdd\x12\xa9\x15\x4a\x72\x89\x8f\x2a\x69\x74\xc1\xf2\x84\x06\xfe\x71\x14\xc1\x3f\x21\xeb\x6b\x54\x45\xdd\xaf\xed\x75\xe7\x1a\x80\xd8\x80\x54\xf6\xe9\xeb\xba\x77\x46\xab\x78\x37\x2b\xe6\x7d\x7b\xeb\x2d\x0b\xc6\xfa\x4b\xd0\x79\xad\xd7\x42\xa6\xc2\x6e\x90\x85\x6c\x99\x85\xfd\x8f\xaf\x9e\xbf\x7c\xfb\xaa\xb7\x0c\xff\x00\x48\xec\x4a\x24\x76\x69\x1e\x5f\x93\x65\x3c\x97\x7a\x34\x1a\x4e\x30\xb0\xd7\x0d\xa2\x22\x89\x4f\xf8\x32\x83\x87\x9b\xb5\x27\xe0\xca\x1a\x20\x5a\x0f\x70\xbd\x12\xeb\xee\x22\x2a\x7b\xab\xba\xc6\x46\xd8\x8a\x9a\xcb\x55\x6c\xc3\x72\x1b\x7b\x91\xa4\xfe\x35\xb1\xa0\xc0\x93\x27\x49\xb2\xbb\xea\xb6\x38\xcf\xb2\x79\xc2\x70\x9e\x32\x78\xa5\x15\xae\x90\xa6\xbb\x0c\x9e\xea\xe3\x96\xe8\x15\xee\xa6\xb4\x5c\x15\x34\x51\x3f\x83\x55\x71\xcb\x38\x74\x54\x66\x24\x61\x14\xaf\x53\x20\x50\x19\xfb\x5c\x0a\xce\x43\x9d\x80\x51\xf8\x17\x1c\x93\xcc\xe5\xc5\x8a\x83\x46\x63\xa5\x2a\x92\x55\xec\xdc\x6d\x31\xa4\xef\x2a\x55\x36\x36\x19\x83\x51\x56\x04\x04\x60\xef\x67\x94\xb3\xb3\xf4\xfd\xaa\x9c\x90\x56\xb0\x9a\xc5\xc1\xee\x8c\xfd\x33\x66\x45\x1b\x5e\x71\x63\xe6\xa7\x2e\x19\x9a\x64\x63\xef\xa5\x87\x24\x4b\x4b\x88\x9d\xc7\x08\x0f\x20\x58\x2a\x15\x9a\x5f\x92\x90\x5b\x96\x64\x41\xac\xb2\xf1\x67\x51\xb4\xab\x2a\xa4\xa1\x84\xc1\x93\xec\x2e\x59\x93\x90\x05\x2c\xc1\x00\x6b\xa0\x94\x14\x8c\x97\x02\x3b\x38\x8b\x68\xec\x6a\x71\x1b\x6c\xc4\x2d\x61\xf4\x96\x6d\xc2\xad\x47\xce\x17\x6c\x4d\xc2\x0c\x8c\x3b\x16\x1e\x77\x0b\x96\x5a\x38\x5b\x24\x6a\xa2\xcf\xd0\xc1\x00\x6e\x14\x17\xb4\xc8\x91\xc4\x62\x0a\x56\x32\xfa\x9b\x72\x2d\x95\x01\xea\xd6\x7a\x5b\xc8\x3c\x4c\xc5\x36\x2e\xf8\x15\x3a\x07\x60\xcd\x73\x03\x6f\xd2\xb4\xa9\xac\x89\x6b\xe3\xac\x3f\x5f\xc5\x21\x4b\xe2\x54\xc8\x8d\x6f\x60\x5c\x64\x9b\x5d\x55\xec\xf1\x2c\x50\x4b\xc8\xb2\x3b\x08\x22\x19\x2f\xe3\x74\x6e\x59\x78\xc1\xc4\x23\x5b\x2a\xde\x04\x33\x1a\xe3\xe5\x84\x0c\xc7\xd2\xc1\x0d\x4a\x8a\x09\x51\xe9\x51\xa0\x60\x42\x46\xf2\x7b\xbf\x8f\x1c\x3c\xa3\x3c\x0e\x9c\x30\xe6\xaa\x43\x42\x40\x2f\xa5\x45\x08\x01\xb3\x55\xab\x52\xad\x81\x4c\x2d\x1a\xb1\xb0\x30\xd8\xe2\x67\x42\xd3\x78\xa9\xc6\x44\x54\xe9\x84\xec\x1d\x8e\x55\x7b\xbb\x2b\x18\x29\xcf\x96\xac\x5c\x08\x0e\x8d\x25\xff\xc3\xba\x84\x89\x03\x46\x91\x45\x9f\xa0\x64\x42\x46\xa3\x2d\x61\x09\x7e\x75\x41\xc9\x12\x05\x69\x78\x3c\xae\xe4\x6c\x92\x61\x7c\x79\x7b\x19\x27\x49\x8c\x21\x42\xb9\x7b\x7d\x65\x2b\x15\x56\x2c\x3a\xa7\x81\x50\x33\x96\x5c\x3a\x32\x5b\x91\xe0\x72\x5a\xd0\x25\xf9\x82\xba\xd1\x57\xd0\x9a\xef\xf1\x26\xc1\xf9\x8e\x5c\x7d\x4f\xe0\x67\x4d\x4b\xf9\x05\xae\x02\x9c\xcf\xa8\xfa\xa8\xcf\x8a\x4d\x36\x40\x40\x8e\xdc\x04\x83\x25\x74\xad\xe3\xc4\x55\x8e\xa5\x5f\xe4\x5a\x86\x33\x07\xfe\x17\x33\xa1\xc9\xae\x27\xfa\x2f\x28\xc6\x83\xcb\xc4\x3f\xcd\xb6\x1d\x47\xa1\x5c\xde\x1a\xfc\x1e\x27\xd8\x8b\x16\x4d\x92\xd6\xa5\x75\x87\x93\xe5\xca\xaa\xff\x7b\x44\xaa\xff\x72\x7f\x62\x5f\x51\x5d\x49\xe8\x3f\x58\x2b\x54\x16\xf5\x1c\x42\xe0\x3f\xaa\xe8\x7d\x2e\xeb\xd6\xb4\x77\x02\xd7\xc9\xd2\x9e\x5a\x9a\x64\x52\x6d\x62\xc1\xd7\xdf\xf4\x56\xa6\x90\xb1\xa6\x0a\xff\xc1\x82\x2a\x22\xaa\xa5\x8d\x86\x94\x6d\x7a\x97\xb3\xb1\xa8\x00\x36\xf8\x09\x4e\xb2\xe9\x21\x7e\xdb\xc4\x90\xdf\xfd\x06\x4e\xd2\x15\x67\xc0\x1e\x80\x07\xc3\x89\xc9\x86\x10\x51\x4c\xaf\x0d\x4c\xb0\x82\xcb\x00\xfe\x46\x8e\x37\x21\xbd\xbe\x3f\x31\x46\xcc\xf1\x3d\x9c\x7d\xce\x56\x65\x4e\x64\xcb\xba\x13\xcd\x6d\xc5\x34\x61\xb4\xc0\x13\xf7\xbc\x14\xf3\x77\xb0\x66\xdd\x7e\xb0\xac\xb9\x9f\x47\x31\x7f\x47\xdf\xb5\x73\x5a\x70\xf6\x3a\xc9\x94\xab\xaf\x7d\x48\xf5\xde\xd8\x3c\xd2\xc8\xcb\x3b\xef\xc7\x8f\xc9\xa3\xaa\xe3\x2b\xdf\x74\xc4\x76\x4f\x14\xea\x11\x1e\x86\xc9\xcf\xf9\x74\x07\x1f\x89\x58\x91\xec\x49\x56\x48\x3f\x85\x56\xad\xa3\x9b\x44\x4c\x8e\xd6\x5d\x51\x88\xa1\xc6\xda\xfb\xb8\xfd\x45\x80\x41\x73\x6a\x71\xce\xd4\xc1\x16\xc5\x26\x1a\xbc\x24\xe6\xb3\x55\x49\x22\x08\xb0\x6b\x76\x0c\x17\x87\xaa\x0d\xba\x3a\x32\x89\xbc\xbd\x40\xbf\x8b\xc0\x8a\xc7\x2b\x14\xde\x8e\xb0\x62\x55\xf8\xf4\x84\xb2\xef\xc1\x45\xae\xb1\x8d\xe4\xdb\x80\x96\x6d\x13\xc1\x28\xb9\x4a\x84\x3f\xf2\xee\x4d\x1e\x98\xd8\x9f\x53\xa1\x43\xcc\xd3\xf8\x9f\x2c\xd4\xa2\xbd\xcd\x3b\x42\x42\xa8\x19\xab\xe9\x4c\x47\xb9\x10\xf3\x77\x59\x99\x40\x52\x73\x9b\x52\xe3\x20\xce\x3b\xe4\x99\xdc\xec\xa4\xb3\x0c\xbf\xf4\x8d\x3b\xa8\x50\xb1\xf0\x83\x6d\xe4\xa9\x55\x45\xec\x9a\x60\x29\xb7\xed\xe4\x28\x52\xfc\xed\xc6\x92\x2d\xd6\xe6\x22\xbf\x4e\x8c\x2e\xe4\xad\x1b\x1f\xba\xcd\x99\x4d\x3d\x6b\x51\x6e\x77\x08\x85\x76\x3f\xc8\x4f\xfe\x8d\x4c\x57\xdd\xc8\x80\xac\x9f\xb3\xf2\xf9\xaa\xcc\x30\x96\xdc\x4b\xad\x66\xd8\xb7\x28\xd5\xef\x6d\x0c\x4d\xe7\x3e\x1a\xf0\xca\x34\x55\x07\xb5\xc6\xa7\x0c\x9e\xa0\x94\xe4\x94\x60\x3b\xd2\x27\x7b\x07\x27\xf6\x35\x2f\x64\xf3\xc9\x92\xa8\xa0\x4b\x9a\xe4\x0b\x0a\x07\xda\x58\x1c\xcc\xfb\xcf\xe2\xd3\xf6\xfe\xd3\x3f\x8e\x7e\x7c\x3a\x1c\x3f\x7d\xf2\xb4\xfd\xf9\xe9\x1f\x47\xaf\x9f\xee\x1d\x3c\xed\x3c\x7d\xf2\xe4\xe9\xa0\x37\x1a\xc3\x47\x5d\xde\x81\xff\x8e\x3b\x4f\x9f\x3c\x1d\x0e\x3c\x4e\xb2\x74\xce\xf6\x3e\x79\x4a\x86\x63\xf2\x04\x0b\xf3\xec\xae\xad\xf0\x94\x71\xdd\xc8\x53\x83\x79\x9f\x8c\x3b\xe4\x09\x19\x0e\xac\xe7\x1b\x3b\xdd\x9d\x7e\x9f\xfc\xc2\xcc\x73\x27\x96\x96\x05\x4d\x54\x54\xf2\x7f\x9e\xa5\x21\xfb\x4c\x40\xff\x89\x51\x71\xa2\x70\x00\x5e\x93\xbb\xac\xb8\x81\x93\x0b\xe4\x84\x9e\x27\xd9\x8c\x26\x3a\xc7\x35\x1e\xbd\x67\x45\x76\x87\x81\xf8\x05\x09\x25\x2c\xe5\xce\x98\xcd\xe2\x84\x7d\x2a\x59\x0e\x79\x6f\x87\x03\x75\x50\xc9\x19\x0b\x5f\xc6\x34\x11\x65\xf2\xb4\x42\xf3\xfc\x47\x2a\x2a\x0d\x65\xa5\xb0\xa0\x77\xd0\x4a\x1d\x6f\x96\x59\x08\x2d\xd4\x49\x85\xa7\x34\xb8\x99\x41\x1b\x95\x0a\xb2\xcc\xb2\xa4\x8c\x73\x38\x23\x0d\x6a\x23\x12\x20\x82\xb6\xbf\xac\x7b\x8f\xb7\xc5\x0d\x88\xdb\xe0\xdf\x31\xc4\xb6\x6c\x80\x8a\xb7\xed\x86\xab\x13\xda\xfb\x5f\x2a\xad\xde\xc6\x9f\xe3\xd4\x6f\x80\x85\x95\xba\x32\xc9\xa9\x57\x59\x96\x56\x6a\x9b\x48\xd3\x5e\x03\xf3\xc1\x6a\xa3\x42\xf6\xa8\xaa\xf2\xb7\x5b\xc3\xf2\x4c\x86\x5f\x95\x3e\x95\x79\xce\xed\x50\x96\x5a\xb5\xe1\x32\x5a\xae\x01\x55\xd7\x2a\xb3\x6a\x4a\x46\x57\x95\xf0\x67\xab\x2e\x14\x9a\x4e\x3e\x63\xd9\xf1\x36\x1e\x50\xbe\xf9\x00\xf4\xc5\x8e\x69\xa9\x55\xe7\x99\xf3\xc0\x42\x69\xe4\x56\xa9\x71\x46\x35\x65\xca\xb2\x58\x0f\xc5\xc9\x6f\x79\x6f\xeb\xe9\x75\x60\xf5\xc7\x25\xf2\x92\x41\x02\x0b\x74\x45\xfc\x59\xe9\x5a\x35\x6b\xee\xd5\x83\xa3\xcb\x55\x1e\x14\xd3\xa3\x8a\x69\xae\xaa\xca\xdf\x95\x3e\x75\xcb\xe6\x4e\x7d\x50\x9e\x4d\x56\xf5\xa8\xec\x01\x15\xe4\xec\x90\xe9\xba\x76\x4d\x54\x74\x53\x54\xc1\xd2\x8b\xba\xde\x80\x68\x0d\xcc\x6f\x3a\x3e\x59\x73\x8a\xa7\x26\x24\xb7\x0c\x8b\x8c\x54\x90\x99\x29\x71\xac\x3a\x33\xa5\xec\xd6\x3a\x60\x59\xa9\x70\xb4\x6d\xd3\xcb\x8d\x0c\xa3\x34\x9e\x55\x2e\xfb\x56\x04\x56\xdb\x67\x5a\xd3\xd2\x58\x3e\x5d\x3b\xba\x3d\x51\xa6\xf6\x52\x2e\x4f\x27\x37\x8f\x54\x17\xac\x3e\x26\xa4\xca\xe2\xda\xe1\x79\x42\x5a\x49\x59\xa8\xc4\xe2\x48\xa6\x89\x23\x48\x6d\x74\xbb\x44\xdb\x8a\x2c\xce\xb7\xc3\x75\x16\x71\xc8\x38\xc4\xb1\x9d\x2a\x7f\x9c\xb3\x14\x72\xa8\x05\x2b\x5e\x66\x4b\xf4\x2d\xe1\xf8\x51\x67\xb4\x72\x19\x13\x74\x4d\x17\xc6\x07\x34\x6c\xea\xbd\x50\x5d\x4a\x11\xa2\xc4\xec\x44\xfd\x21\x1b\x99\xb9\x9c\x6c\x95\x27\xc0\x19\x89\x6f\xa7\xee\xea\xae\x72\x36\xc1\xff\xa8\x6e\x8c\x88\x9d\xd8\x3f\xe4\x67\x14\xae\x13\xf9\x5f\x54\x13\x4d\xe6\x8c\x69\xfa\xdd\x86\x6c\xb8\x0d\x7a\x86\x8d\x76\xc9\x90\x4c\x20\xb8\x99\xb4\x6d\x0f\x37\xdb\xb6\xb5\x65\x5b\xb4\x6c\xb2\x6e\x4b\xf5\xd2\xe2\x31\xb0\xb8\xd6\x3b\xbb\x55\x2c\xaf\xf5\x8f\xda\x5d\x33\xe9\x7d\x57\x43\xff\xfe\xf8\xe4\xb0\x3a\x39\x5b\x85\xd9\x8b\x84\x72\x7c\x8f\x72\xd1\x0a\x16\x2c\xb8\x61\xf0\xba\x49\x25\xdc\x17\x7f\xc3\x21\x4b\xfc\x01\x09\xf4\xb1\x0c\xfe\xfc\x7b\xcc\xe3\x59\xc2\xc4\x6f\x15\x14\x1c\xea\x7f\xce\x69\x1a\xe2\xdf\x9c\x25\x60\x50\x6f\x5d\x3a\x57\x6a\x65\x41\x6f\x59\x01\x4f\x07\x35\x4d\x54\x59\x3b\xcd\x42\xd6\x25\x39\x2d\x58\x5a\xfe\xcd\x79\xb7\x87\xcf\xb5\xf3\x72\xf1\x3b\xe5\x8c\x1c\x9e\xd8\x90\x6f\xd8\x1a\x54\x7f\xc6\x93\x38\x2d\x77\x25\x09\x76\x53\xf6\xb9\x84\x50\xd8\x64\xbe\xa2\x45\xb8\x1b\x65\xc5\x6e\x9c\x76\x49\x9a\xed\x16\x4c\x1c\x7c\xc4\xf8\x76\xf9\x3a\x2d\xe9\x67\x73\xa2\x05\x06\x15\xcc\x12\xa7\x44\x0c\xc8\x39\xbe\xc2\xd9\x63\x11\x43\xd2\x00\xf1\xf1\x42\xf2\xcf\xd4\xb1\xf8\xca\x91\x7a\x16\x7f\xf5\xf5\x86\xad\xb5\xeb\x5d\xeb\xed\x2a\x6e\xa1\xef\x1d\xe8\x12\x00\xdb\x6b\x43\x0c\x81\xe1\x33\x78\x87\x75\x25\x39\x9f\x92\xa1\x6d\xb6\xb4\x1c\xa5\x9d\xfc\xfa\x0e\xcb\xe8\xde\xc1\xcb\xec\x11\xf8\xfd\x89\xce\xed\xa3\x35\x22\x62\x69\x3a\x35\x03\xf9\x76\x73\x78\xf5\x06\xa0\xd6\x13\xda\x1c\xa3\x35\x2f\x61\x3a\x37\xed\x05\x44\xe2\x54\x08\x39\xc1\xff\xd3\x1d\x71\xac\x9a\xee\x88\x13\xce\x8b\x4f\x9f\xc4\x89\x25\x88\xa3\x18\xcc\x73\x32\x23\xa2\x05\xf0\x46\x81\x82\x34\x61\x29\x4d\xe0\x61\x3f\x93\xfe\xd3\xca\x76\x9d\x66\xa5\x96\xee\x24\x2e\xf1\x4c\x55\x2e\x62\x3e\x21\xad\x4a\x0e\x41\xe4\xfa\x74\x95\x24\x18\xd2\x10\xac\xe0\x67\x98\xb3\xd1\xf5\x7b\x57\x26\xf1\x1f\x8a\x55\xc2\xde\xd1\x25\x23\xc8\x7c\x93\x2a\x50\x8f\x68\x84\x14\x59\x56\x4e\xfc\x23\x10\xbc\xdb\x9c\xee\x3c\xfe\xc1\x19\x60\xa7\x2b\xf9\xc8\x85\x71\x5f\x41\xd2\x37\xa2\xed\xae\x62\x38\x25\x17\x7d\xe4\x97\xdd\x00\x19\x66\x17\x2c\x6b\xcd\xc6\x72\xe9\x42\xf6\x11\x5d\x30\xc0\xd2\x07\xaf\xf7\x31\x31\xd9\xad\x98\x2f\x79\x20\x0d\xb2\x34\x4a\xe2\xa0\xe4\xda\x45\x43\xfd\xa3\x57\x93\xf1\x21\xf4\x18\x5a\x5d\xe5\xe8\xe5\xa6\x97\x85\x12\xab\x3d\xbd\x23\xd7\x39\xb3\xab\x5a\x0d\x6f\x34\xdd\x23\x80\x7d\xec\x2c\xd8\x1c\x93\x64\x65\xc5\x47\x3c\x0f\x36\x9c\x12\xad\x8a\xca\xc8\x7e\x06\x3e\xeb\x72\x31\x74\xc9\x1d\x23\x05\x9b\xc7\xbc\x64\x70\xb3\xc6\x8a\xdb\x38\x60\x70\x76\x47\x57\x05\x51\xc2\x88\x20\xba\x3a\x02\x26\x59\x20\xe8\x46\x83\x85\x0c\xc0\x01\x66\xef\x84\x95\x68\xf8\xa6\x79\x4e\x92\x8c\x86\xd2\x5b\x98\x64\x29\xe1\xab\x19\x67\xff\xbd\x12\x54\xbf\x8d\x79\x5c\xc2\xf9\xdf\x46\x82\xa6\x21\x99\xc7\xca\x3a\x1f\x97\x24\x8b\x22\x10\x93\x01\xcd\x29\xb8\xd4\xc4\x0c\x27\xa8\xff\xc4\x15\xa9\x42\x74\xca\xf5\xfb\xa4\x6f\x9d\x76\xd5\x98\x7e\x64\x51\x56\x30\x08\x0f\x92\x24\x1f\x8a\x6c\x99\x97\xe6\x3d\x69\xaf\x9f\xdf\x51\xe7\xf1\x69\xca\xee\x5e\x64\x69\xc9\xd2\xb2\x4b\xc0\x9f\xf1\x75\x56\xbc\x47\x5c\x7e\xe6\xac\x2b\xc1\xe2\x9d\x11\x04\x46\x72\x8b\x3e\xc9\x04\xfb\x24\xe6\xb2\xd5\xdb\x2c\x64\xd6\x03\x56\x99\x74\x4f\xb9\x73\xc6\xfc\x8d\x20\xe6\x22\x83\xe4\xd8\x3f\x66\x59\xc2\x68\xda\xbe\x8b\xd3\x30\xbb\xeb\x09\x3a\x83\x31\x47\x7c\x4e\xc5\xda\x84\xfb\xb1\x44\xb5\x68\x41\x58\xba\x3e\xb9\x98\x4c\x86\x97\xca\xed\xe0\xec\xc3\xed\x01\xd1\x55\x08\x0d\xc3\x42\x08\xc4\x69\xba\x19\x28\xc0\x50\x00\x87\xa3\xc3\xde\xa0\x37\xe8\x0d\xfb\x47\x02\xac\x20\x6f\x1c\xb2\x82\x85\x16\x60\xb1\x27\x9d\x7d\xb8\xdd\xdf\x00\xb9\xb7\xa4\x65\xb0\x68\xf7\xff\x6b\x38\x3a\x6c\x3f\x9b\x4c\xa7\xbd\xf6\xb3\xc9\x68\x7c\x31\xd8\x1d\x5f\x7e\x1d\x5d\x0c\x76\xf7\x2f\x2f\x06\xbb\xc7\x97\x5f\x2f\x06\xc3\xcb\x67\xf0\x27\xfc\xeb\x59\xa7\xf3\x65\xef\xfe\x87\x7e\xa7\xa3\x43\xc1\x98\xf4\x13\xea\xf0\xab\x04\xd8\x8c\x39\x79\x71\x4d\x7e\xbf\x64\x6d\xf8\xba\x5c\x30\x60\x2c\x97\xbb\x7b\xe4\x67\xce\xa2\x95\xbe\x93\x0a\x32\xb5\x8c\x6a\xb7\x11\xc1\xa3\xd6\x07\x00\x68\x57\xfc\xf0\xf3\x8f\x6f\xce\x5e\x5c\xfd\xfc\xf1\x8d\x8e\x2e\x23\x17\xf2\x7b\x7d\x60\x47\x6b\x68\x7a\x3b\x31\x9a\x04\xbe\xc1\x5d\xcd\x92\x38\xf8\xb9\x48\xac\x0f\xb5\x37\x50\x26\xfb\x99\x1c\x5b\x9b\x97\x59\xc1\xb6\xbd\x1d\xf8\x66\xf3\xa5\x3b\x02\xef\x9d\xb9\x38\x13\x2c\x63\x6e\xeb\xa2\x05\xe3\x59\x72\xcb\x9c\x7b\x54\x6d\x52\x4c\x6f\x5d\xc7\x6a\xc1\x6e\xfa\x8c\xad\x28\xd0\xe8\x7b\xed\x67\x54\x6e\xc9\x87\x46\xbe\xcc\x8a\xd3\x5b\xc9\x89\x5d\xfd\x9c\x4b\x74\x0d\xf3\xa7\x7b\x91\xfd\xd6\xe7\xbb\x79\xa4\xb0\x4a\xb3\x33\x5b\x72\x38\x57\xc1\x8d\xf2\x45\x4e\x49\x1d\xe0\x96\xc4\xf5\x17\x40\xb5\x05\x0a\x1d\xbd\x8d\xe7\xb4\xb4\x12\xa6\x6b\x97\x96\x9f\x3f\xbe\x21\x76\x3c\xae\x98\x13\x7a\x4b\xe3\x44\x86\x58\x23\x34\x49\xd4\x0d\xaa\x74\x70\x91\xcf\xea\xc8\xa7\x5f\x7a\xb6\x36\x6a\x11\x17\x08\xf8\xf3\xc7\x37\xed\x0a\xe1\xbb\xc4\x5b\xc8\x7e\x04\x3d\x5d\xb3\x97\x15\xf1\x5c\xa6\xbe\xf6\x17\x3f\x7e\x72\x54\xac\x7e\x9f\xbc\x5f\x15\xfe\x34\xdd\x65\xf2\x71\xc8\x8d\x00\x6e\x16\x8f\x18\x65\x96\x12\x4a\xc2\x38\x8a\x98\xd0\xb5\x08\xc2\x74\x00\xc2\x32\x05\xff\x97\x6c\x55\x90\x9c\xce\xc1\xe9\x07\xf6\xaa\x90\xc8\x47\xe2\xae\x72\x77\x47\x8b\xb4\xdd\x82\xad\xea\x8e\xcd\x60\x97\x5a\x50\x5e\xd9\xf2\xf0\x71\x4b\x0c\xa9\x49\xd5\xc1\x45\xde\x68\x4b\x3c\xf0\x8b\xc4\xcd\xb6\x41\x09\xa6\x00\xee\x6f\xdb\x71\x34\x88\x3e\x8b\xd5\x19\xab\x24\xf9\x68\x18\xbe\x12\x4a\xc9\x1b\xc1\x53\x29\x2b\xda\x2d\xb1\x83\xb6\xba\x75\xcf\xdd\xd4\xa4\xf2\x3b\x9c\x50\xc7\x87\xb5\x3a\xa9\xd3\x9d\xbe\x1c\xe1\xae\x14\x7b\xbf\x4a\xbf\x13\xf7\x84\x60\x6d\x45\x9e\x82\x6c\x39\xb6\x15\xab\x34\x05\x29\x9c\x9a\xad\xa0\x47\xde\x88\xad\x1f\x0e\x7c\x02\x52\x45\x89\xe0\x65\x9c\x24\x84\x7d\x8e\x79\x09\xd9\x66\xd3\xac\xec\xd9\xf0\x15\xd5\x00\xc2\xdf\xc5\x92\xfe\x64\xaf\x92\x36\x0c\xb4\x4b\x70\x55\xe1\x9e\xf0\x3c\x0c\xc1\x97\x47\xec\x6f\x70\xda\xa7\x09\x49\xb2\xf9\x5c\xe0\x56\x66\x06\xb7\xae\xa7\xd1\xa9\xb5\xd6\x73\xd6\x61\x0f\x76\xfa\x5e\xb9\x60\x69\xbb\x81\xe0\x36\x27\xc5\x69\x94\x79\x9c\x14\x73\x32\x63\xe0\x4b\x84\x1c\x08\xca\xd1\xae\x0c\x41\xb6\xae\x90\xc4\xe5\x1a\xed\x8b\xa9\x14\x57\x37\x10\x81\x9c\x82\x33\x0c\x89\x80\xca\x17\xd2\xfd\x3f\x56\xbc\x34\x9b\x9c\xdb\x45\x1d\x81\x55\x55\xa4\xf1\x2f\x3e\x61\xeb\x14\xdc\x4e\xc5\x65\xd4\x7d\xe3\xb6\x11\xa4\xe3\x15\xd5\x4c\x7b\xb5\x91\x89\xa6\x1d\x6f\x16\xae\x02\x9a\x24\x4c\xa1\x8e\x4a\x56\x25\x2f\x56\x55\x1b\xee\x51\xbe\x4e\x83\x0a\x98\x1f\xda\x57\xd2\xd9\xd3\x9a\xdc\xbb\x45\x9c\x30\xd2\x76\xcf\xc5\xfc\x2e\x86\x18\xa0\xaa\x7e\x4f\x9c\x1a\xc8\x29\xd1\xbf\x53\x17\x08\xf0\x07\xe5\x8c\x0c\x26\x2e\xd3\xd8\x88\xf7\xb2\x74\x95\x87\xb4\x64\x68\xf3\x3f\x6d\x5a\xdd\x66\x8d\xcb\x7d\x25\x4e\xe7\x48\x2d\x78\x72\x65\x01\x34\xdf\x4f\x5c\x4e\xd7\xab\xba\x02\xe0\x54\x05\x1d\xad\x74\x58\x91\x53\x16\x3b\x54\x60\x7b\x70\x7b\x60\x43\x2c\x59\xb0\xa0\xe9\x9c\x3d\x34\xb4\x7a\xdc\x7a\x00\x01\xf5\x51\xf9\x8d\x85\xd5\xd3\xba\x01\xd0\xc4\x52\x90\x79\x38\x4b\x12\x56\x34\x34\xc6\x07\x4b\x32\x92\x20\xdc\xab\x76\x31\x31\x35\xcc\x8e\x50\xf3\x18\xac\xe0\x10\x7d\x83\xd3\xd2\x38\xb0\x47\xac\x14\x1f\xba\x8d\x60\xc5\xf6\x81\x9e\xdd\xec\x36\xce\x56\xbc\xb2\xef\x09\x61\x88\x22\x11\x8f\x56\xb0\xb3\x24\xa1\xbb\x64\x1d\x90\x0a\x09\xc1\xdb\x09\xec\xfa\x41\x12\x43\x08\x03\x3a\xc3\xe7\x50\x41\x92\x71\xb1\xf1\x15\x84\x46\x42\x16\xc4\x80\x71\x23\x40\x9d\xd8\x9a\xf0\x9b\x38\xff\x85\xc6\x65\x9c\xce\x7b\xf5\xd5\x2b\xb3\x94\x67\xbc\x7c\x8b\x69\xc2\xab\x77\x02\xea\x1f\xcc\x11\xdf\xfa\xf4\xb7\xb3\x0f\x57\xbf\x3c\x3f\x3b\x3f\x7b\xf7\x53\xab\xbe\xee\x7d\xa7\xc2\x6f\xf8\x8f\x12\xb7\x21\x9b\xad\xe6\xed\xd6\x3b\x76\xa7\x09\x61\x2b\x42\x27\x24\x4f\x98\x58\x79\x05\x8b\x0a\xc6\x17\xbe\x6c\x35\xff\x80\x50\xea\x85\x31\xcf\xe1\x5c\x62\x8e\x7a\xed\x4e\x7d\x93\x3a\x49\xec\xd0\xd1\x63\x21\x76\xcb\x8a\x35\xba\x97\x6a\x7e\xd1\xac\xd4\x40\x5e\x15\xee\x06\x58\x86\x15\x11\x0b\xc0\xa5\x17\x6e\x2a\x04\xaa\x09\x5d\x13\xda\xd8\x74\xba\xf3\xc2\x90\x44\xb2\xac\x38\x99\xa9\xe3\xf3\x8a\xb3\xde\x74\x47\x65\x75\x6f\x40\xc1\x23\xf4\xc3\x10\xb7\xa5\x70\xf5\x00\xdd\x48\xe9\x6a\x61\xa5\xe8\xde\x6b\x79\x5f\x11\x79\x8e\x70\x26\xa7\x64\xef\xc4\x97\xc5\xcd\xfb\xc5\x5d\x41\xf3\x76\x05\xff\xca\xc9\xde\xdd\x88\x3a\x1d\x0f\x07\xd8\x02\xf6\x2a\x5b\x00\x76\xab\xb0\xa3\xb3\x62\x95\x97\x6d\x13\xf1\xd9\xbd\x43\xa8\x85\xb9\x3f\xa9\x14\x4d\x77\x58\x1a\x4e\x77\x1e\xe8\x8c\x97\x59\xde\x6e\x0a\x5b\x41\xcc\xfa\xbb\xef\x5c\x4c\x77\x20\xf0\xf5\x74\xe7\xd2\xd2\x82\xe0\x4e\xb4\x21\x66\x44\x0b\x0e\x62\x24\x5c\x15\x4a\xf5\xb1\xe4\x9c\x3d\xa4\x49\xab\x4b\x10\x90\x44\x64\x03\xa1\xf1\x70\x87\xb5\x15\x6a\x15\xb5\x63\x2b\x55\x51\x3f\xcb\x78\xa1\x54\x53\xb8\x07\x74\xd1\x0c\x68\x0a\x2f\xdb\xc5\x8e\xdc\x23\x67\x91\x10\x9d\x18\x79\xb5\x60\x70\x8b\x05\x0b\x53\x2d\x1e\xf5\x86\x58\x6c\x02\xf5\x0a\x4b\x5b\x3e\x89\x66\xf6\x8b\xfb\x57\x29\x5f\x15\x95\xae\x51\x23\xee\xca\xe7\xa6\xb4\xc4\xab\x38\x78\xd5\x2a\x64\xfa\x9c\x95\x25\x3e\xd4\xff\x8f\x4f\x24\x8a\x13\xb5\x7c\xa5\xb3\x91\x58\xa3\x10\x56\x4d\xbf\xc2\x66\xbd\x05\xa3\x21\x2b\x78\x6f\xce\xca\x76\x4b\xd6\x81\x98\xbb\x2d\xd7\x57\x55\x37\x10\x3b\xee\x0a\xad\xe4\xfb\x83\x7d\x71\x1e\xb7\x21\x3f\x52\x79\x33\x1e\x3f\xb6\xcb\x8d\xa9\xe0\xd7\xff\x87\xbd\x77\xd1\x6a\x23\x49\x16\x45\x7f\x25\x4d\xef\x6d\x49\x76\x51\x02\xdc\xee\x07\x34\xed\xa1\x31\x76\xb3\xc6\x06\x5f\xc0\xd3\x7b\xb6\xc4\x82\x94\x2a\x25\x95\x29\x55\x6a\x2a\x4b\x60\x8d\xcd\x5a\xe7\x43\xee\xfd\xb9\xf3\x25\x77\x65\x44\xbe\xab\x4a\x08\xb7\xbb\xf7\x9c\x39\xf4\x39\xb3\x8d\xb2\x32\x23\x5f\x91\x91\x11\x91\xf1\xa0\xd7\x54\x0c\x8b\x74\x56\xb6\x6a\xbc\xf5\x31\x4c\x72\x30\x69\xb5\xd0\xef\x0a\x3e\xa0\x03\x39\x53\x47\xce\xa3\xb3\x59\x4c\x4e\x6a\x96\x9d\xdc\x97\x77\xaf\x65\x17\x49\xc8\x8e\xcd\x73\xc3\x7c\x56\xb6\x31\xe0\x1c\x42\x31\x17\x91\xc3\x3f\x58\x8e\x89\x5f\xa7\x21\xa8\x58\xb7\x4b\x4e\x9b\xd6\x63\xc8\x50\xd2\xcc\x79\x31\xa5\x59\x6c\x15\x0d\x80\x72\x4b\x19\x6d\x9f\x49\xaf\x3f\xc8\x95\x33\xac\xef\x55\xae\x1e\x1e\x58\x29\x3f\xe5\x4c\xfb\x39\xc0\xb8\xf6\x50\xb8\xd1\x72\x5f\x9a\x9b\x8b\x60\xca\x13\xe7\x26\x08\x0e\xb4\xa7\xfe\x6c\x57\xce\x71\x18\xb8\xca\xdd\x08\x4f\x68\x58\x81\xb5\xb7\x6d\x2d\x77\x6f\x83\xc1\xd5\x30\xf7\x21\x6b\xbf\x15\xf2\xf6\x5b\x55\xe6\xbe\x86\xb5\x47\xe7\xe1\xa5\x0a\x9d\x0a\xf7\xe9\xf7\x40\x76\xc9\x56\x70\x43\xb9\xc9\x08\x0c\x95\xf6\x45\x39\x8f\xbc\x6f\xd5\x5d\x26\x5f\xe7\xa4\x2c\x3d\x2d\x81\xf4\xea\x5f\x59\xb0\x58\x5b\xdb\x41\x41\xdd\x75\x55\x99\x4d\x70\x5b\xdd\x56\x84\x4f\x95\x4b\xe8\x8a\xcf\x68\xce\x7f\xc1\x40\x1b\x30\xe8\xe7\x1b\xdb\xa4\xf5\x0d\x7b\x3e\xfa\x7e\x94\xa0\x2d\xc5\xe6\x06\x14\x0d\x87\xa3\x8d\xd1\x10\x8b\xb6\xb0\xe8\xc7\x1f\xd9\xe6\xe8\x47\x2c\x7a\x86\x45\xdf\x7d\x97\x6c\x8e\xbe\xc3\xa2\x6f\xb1\xe8\xd9\xb3\xe1\xd6\xe8\x19\x16\x3d\xc7\xa2\x8d\x8d\xc1\xb3\xd1\x06\x16\x7d\x87\x45\x9b\xdf\xd2\x1f\xd9\xf7\x58\xf4\xbd\x2a\x62\x3f\xfe\x90\xa8\xa2\x1f\x54\xd1\x0f\x3f\x0c\x87\x3f\x60\xd1\x8f\x0a\x56\xf2\xfd\xb7\x03\xd5\xe3\x9e\x1a\xeb\x8f\xdf\xb1\x1f\x46\x23\x55\xa6\x06\xfb\x5d\x92\x50\x53\xa6\x86\xf6\xfc\xbb\xe1\xc0\x94\xa9\x5e\xbf\xfd\x81\x0e\x47\x1b\xad\x5a\xad\xb1\x5d\xae\x9d\x6a\x08\x0a\xfd\xbe\x54\x6f\x16\x38\xe4\x05\xeb\xa2\xc5\x88\xf3\x50\x32\xc8\xe6\xec\x75\xc1\x16\x8d\x2d\x86\x3c\xe3\x85\xe8\xea\x7a\x4e\x53\x67\xeb\xcc\x2b\x8c\xaa\x6d\x3f\xb5\xdc\x40\xa2\xc9\x5d\xbd\x14\x2c\xb1\xd1\x3c\xd3\x29\x2d\x16\xfb\xf2\x03\xd9\x75\x27\xae\x02\x0a\x82\xff\x95\x53\x43\x8f\x50\x7d\x07\xbe\x43\x7f\x2b\x58\x82\xda\xa6\x2c\xc3\x90\xf2\xe6\x15\xe2\x8a\x2d\x50\xf0\x42\x85\x1b\x90\x6b\x34\x93\x2d\x8b\x05\xa8\x24\x07\x4c\x94\xf8\xda\x88\x66\x33\x94\x8c\xe5\x6a\x9b\x2d\xd1\xf1\xeb\xb1\x5b\x1d\x12\x28\x30\xfa\x03\xcc\x36\x26\x3a\xea\x70\xaa\x29\x6e\x7b\x73\xd5\xe6\x31\x7a\x7a\xdb\xc1\x4c\xd5\x77\x98\xde\xb6\x33\x4b\x6b\xdf\xf3\x5e\x39\x4c\x5e\x8e\x59\x29\x45\x80\x82\x8a\xf2\x0c\x12\xaf\x5c\xa2\xc7\xf2\xc7\x74\xaa\x8d\x7e\x87\xea\xbb\x09\x6d\x00\xb6\xbc\x74\x78\x35\x06\xb3\x63\xed\x73\xaa\xfc\x01\x19\x01\x4e\xd4\x94\x1c\x1d\x9f\x1d\xb4\x33\x9e\x8f\x45\xc6\xd8\xac\xb3\x4d\xfe\x6a\x51\x02\x1c\x07\x39\xc9\xc0\x80\x1a\x19\xa3\x39\x3e\xf6\x08\xb2\x15\x7f\x6b\x7a\x3e\x9b\x48\x59\x4f\x25\xc0\xc5\x7e\x94\x57\x35\x70\x5a\xb2\x53\xbd\xd2\xcf\x37\x36\x08\x20\x0a\x68\x88\x41\xf0\x9e\xc3\xa3\xc0\xcd\x24\x2d\xd5\xd8\x88\x72\x44\x37\xd0\xc4\x84\xdf\x80\x93\x75\x9a\x8f\xe1\xb5\x32\x61\xd7\x2c\xe3\x33\x70\x4f\x90\x57\x1f\x72\x6c\xde\x62\xe8\xb1\xf3\x1b\x79\x8d\xff\xf6\x6c\xdf\x40\x33\x7e\x88\x28\xe7\x95\x7a\xf0\xea\x01\xeb\x99\x14\xdc\xa7\xf2\x02\x45\x45\xeb\x90\xe6\x39\x07\xb7\x07\x30\xf2\xd5\xa2\x63\x65\xee\xdb\x72\x49\x82\x1d\x2c\x39\x11\x93\x74\x54\x12\x8a\x93\x6e\x09\x92\xcd\xa7\x69\x0e\xc9\x11\x06\x0b\xc9\x63\x15\xfc\x23\x78\x02\x64\x0b\xbb\x78\x37\x1c\xe3\xc0\x33\x01\xde\xf4\x69\x4e\xd2\x52\x4e\x27\xa7\x99\x46\x40\xbb\x81\x07\xf1\x38\x8e\x54\x37\x70\x34\x4f\x58\x02\xcb\x5c\x72\xf8\xf3\xd9\xc6\x86\x9c\x91\xfc\xf3\xfb\x8d\x0d\xd5\x0e\x60\x1d\x8f\x46\x82\x95\xdb\x64\x23\xde\xea\x1b\x83\x7d\xd7\x4e\x4c\xe1\xf8\x5c\xb0\x23\xf6\xb1\xd4\xc9\xd7\xb7\xc1\x31\x3d\xc8\x8c\x6d\x1f\x86\xd8\xc7\xf2\x4c\x07\x82\xd8\x26\x2a\x39\xa7\xfe\x6a\x73\x3a\xb7\x36\x0b\x36\x6d\xb9\x57\x8a\x8a\x34\x1a\x50\xcb\x52\xbf\xb6\xab\xf2\x4f\xe6\x0b\x15\x44\xd3\x20\x89\xad\xef\xd2\xfc\xea\x84\x25\xff\xcd\x0a\x7e\x24\x59\x22\xfb\xcc\xbb\xa4\x56\xcb\xb7\xc9\x36\x80\x91\x54\x41\x36\xe9\x0b\x07\x92\x53\xdc\xda\xf1\x7c\x7c\x9d\x2f\x86\xd2\x61\x73\xbf\x9e\xea\x43\xdb\x90\x39\x15\xab\x53\x77\xeb\x7a\x57\xc5\xc5\x05\x15\x22\x1d\xe7\x11\xb9\xb8\x10\x33\xc9\x49\x80\x21\x9c\x89\xcd\xdc\x5f\x2b\x45\x96\x0e\x7c\x8b\xf3\xc3\xbc\xcc\x94\xa6\xe8\x15\xb8\x70\x98\x79\xa5\x79\x99\xad\x2b\xad\x04\x7a\x77\x38\xcb\xf2\x04\xd6\xd9\x8b\xda\x3c\xa2\xa2\x5c\x77\x02\x37\x9b\x2e\xde\xdb\xc4\x5e\xd8\x45\xc9\x0a\x94\x4a\xed\x12\xa2\xcd\x59\x4d\xbc\x54\x27\x06\x95\x0e\xc1\x05\x34\x21\x4b\x45\x19\xe9\xb5\x10\xde\x5b\xa6\x2e\x74\x4c\x67\x3b\x76\x1f\x05\x5a\x8a\x68\xbe\x45\xb1\x37\x06\x66\xd5\x74\x0f\x47\xc0\x12\xc9\xb4\x4d\x59\x25\x4e\x07\xbc\xcf\xa3\xa9\xc4\x4c\x54\xb8\x33\xdd\xb8\x27\xab\x9d\x9b\x88\x63\xf0\xab\x4e\xe0\x27\xd6\xf8\x4a\x03\xae\xcc\xb1\x11\xb6\xae\xb9\x0c\xbc\x96\x8e\x55\xdb\x30\x46\xde\xad\xf7\x28\x0e\xbb\xf4\x2b\x84\x42\xf3\xfc\x12\x03\x8d\xc3\x97\x59\x75\xf9\x7a\x0a\x4f\xf5\xe0\x27\x25\x91\x03\x7a\x79\xf0\x6a\xef\xfd\x9b\xb3\x8b\xc3\xa3\xb3\x37\x17\xfb\xc7\x47\xaf\x0e\x5f\x6b\xae\x92\x28\xdf\x23\xd7\x16\x56\xa1\xad\x5b\x24\xe5\x92\xff\x86\x04\x41\xfe\xb3\x3e\xd1\x93\x85\xa7\x35\x49\x82\x58\xde\xf2\xbf\xbc\xaa\xc0\x57\x2a\x90\xed\xba\x85\x8a\xea\x33\xaa\x20\xdb\x20\x8f\xdb\x3e\x1d\x4e\x58\x25\x34\xa6\xb3\x32\x09\x2d\xd9\x59\x3a\x65\x4e\x87\xf2\x3f\xf4\xae\x0b\x0a\xd5\x4c\x83\xd2\x82\x65\xb4\x4c\xaf\xeb\xa0\xcc\xb2\x79\x41\xb3\x93\x79\xe6\xad\x8e\xfc\x4f\xa2\x7f\x50\xa4\xb4\x9b\x47\x74\xea\xd5\x56\x71\x14\x83\xb9\xbd\xa2\xa2\x7c\x8b\xe7\x1f\xa7\xe8\xaa\x78\xea\xe6\x59\x71\x24\xaf\xbe\x43\x54\x1b\xe9\xff\x26\x54\xb8\x2d\xfd\x84\x0f\xfe\x7f\x0a\x88\xb2\xce\x84\x51\xd5\x68\x38\x6f\x6b\xde\x0b\xfc\xd8\x3e\xab\x74\x02\xd0\x7b\x4e\xf4\xab\xbb\xba\x10\x95\x2e\x22\x52\x75\xf7\xf5\x5a\x98\x2e\xc8\x2e\x56\x5d\xa1\x2b\xcf\x36\xce\xdf\xc6\x6e\x97\xfc\xa5\x14\xeb\xe9\x38\xe7\x05\x73\x63\x43\x24\x8c\x66\x18\xb8\xa7\xe0\x59\x36\x9f\xb5\x84\xb9\x84\x8c\x6b\x0e\xcb\x69\x9e\x8e\x69\x2e\x90\x70\x5c\xa8\x0b\x40\xe2\xb9\x8d\x22\x1f\xeb\x66\x9f\x3f\xeb\x22\xc5\xcb\xfb\xd5\xdd\xd6\x3b\x36\xe2\xc2\x3e\xe0\x09\x91\x17\x92\x3a\xeb\x25\x2b\x30\x84\xdb\x8c\xcf\xe6\x99\xfc\x08\x6a\x70\x37\x04\x02\x46\x16\x64\x1f\x67\x59\x3a\x04\x7d\xa1\xfc\xe9\x98\x16\x66\x8c\x5e\x49\x0e\x53\x76\x59\xe8\xe0\x08\xf5\x87\xd6\xdc\x5a\x02\xe3\x0f\x56\x23\x12\x06\x57\x8d\x8e\x6a\x58\x39\xf3\xe6\xda\x91\x73\x3f\x71\x0e\xa9\xba\x7b\x77\xe1\x3e\x8e\xab\x5f\x9c\xd8\x07\x6f\x52\x51\xfa\xd5\x6d\x89\x53\xed\xa5\x73\x74\x75\x45\xb7\xcc\xa9\x3a\x66\xe5\x4b\x45\x72\x0c\x60\x67\x27\x9a\x34\x6e\x98\x87\x72\xc7\x2f\x50\x66\xf8\x3d\x17\xfd\xfd\xac\x92\x1b\x3b\xf2\xdf\x9f\x2a\xa6\x4f\xb2\xd8\x0b\x2d\x87\xff\xa1\x19\x7e\x1a\x18\xe0\xa7\xcb\xaf\xb7\x9c\xdd\x90\x76\xfb\x82\x9a\x89\x7b\xd3\xeb\xc4\x83\x34\x4f\x62\x3a\x9b\x65\x8b\xf6\x05\x0d\xf9\xa5\x76\x0f\x77\xf2\x1c\x9d\x0a\x3a\x9d\x8e\xcd\xf6\x18\xf9\x1a\xa7\xe1\x84\x6d\x37\x51\x3f\x34\xbe\xd4\xb4\xbc\xe3\x9c\x47\x50\xd7\xb0\xf1\x62\xdb\x5d\xe5\x58\x95\xa6\x4c\xc4\x90\xde\x3e\x49\x87\xfa\x9c\x76\xfc\xcd\x42\x6f\xee\x7f\xd3\xad\x72\x27\xf7\x67\x6e\x14\xde\xae\x5f\x73\x9b\xde\xd9\x9b\xf6\xdf\x6e\x97\x9c\xb9\xfd\x99\x9b\xe4\x30\x2f\x5f\x65\xa7\xaa\xec\x45\x85\x16\x6e\x57\x8b\x22\xaf\xba\x8b\xb0\xdb\x61\x81\x5f\xd5\x13\xb4\xb6\x1b\x50\x42\x71\x74\x11\x9a\x11\x31\x11\x19\x9f\x02\xc5\x87\x46\x84\xcf\x6a\xc4\x01\x67\xa7\x2a\x42\xdd\x2a\x40\xb5\xf8\xd8\xfe\xe4\x5c\xb2\xdb\x4d\x4c\xc8\x3d\x26\x1e\x34\xbb\xcf\xf2\x06\x4d\xdf\xb9\xbc\xab\xff\xbb\xa6\xd1\xad\x44\xb0\xb6\x5c\x2b\xcc\xed\xd5\xf1\xed\xa7\xa2\x8a\xed\xd8\x0a\x08\xa8\xd6\xb1\x13\x74\x77\x5f\x04\x44\x24\xf4\x91\xa3\x7a\xe9\x37\x61\x48\x65\xeb\x9b\xe8\x04\xf9\xbd\xb4\x82\xac\x46\x2f\x48\xd5\x16\xc0\xa5\x1b\xd5\x99\xb9\x24\xa3\xfa\xf5\x1e\x24\xe4\xcb\x77\xd2\x15\x91\xfe\x88\xed\x5c\x0d\x57\xc7\xac\xb4\xdc\xdb\xbf\xcb\x7e\xdb\x19\xb9\xfb\x6c\x4b\xff\x94\xfd\x95\xd2\xec\x1f\xb1\xaf\x2f\x3d\x91\xf8\xdf\x63\xc3\xdc\x39\xb9\x5b\xe6\x96\xff\x29\x9b\xe6\xea\x1b\xbe\xea\xe6\x29\x51\x37\x94\xef\xe4\xa5\x45\xa7\x5a\x2f\xd9\x1e\xe9\xbb\x10\x23\x83\xe7\x74\xca\x22\xad\xeb\xf1\x7c\x69\xb1\xa2\x32\xed\x50\xad\xc8\xe3\xc7\xfa\xcf\x9e\x6c\xef\xc6\xab\x1b\xb9\xd2\x99\x94\x1a\x2d\x00\x6f\x4b\x47\x9a\xa7\xb7\xdf\x3d\x65\xde\x6d\x08\xa1\x2e\x26\x98\xd7\xd9\xad\xa7\xb0\x6a\x83\x67\x41\x93\x3e\xb6\xdd\x5f\x3b\xe2\xa4\xbf\x46\x9e\xc2\x02\x80\x7f\xa4\x1e\x92\x1c\x45\xb2\x8d\x1f\x41\x0f\xaa\xb4\x85\x56\x01\x7d\xc2\xe8\x50\xbd\x35\xb4\x0a\xf9\x77\xeb\x9e\x89\xa6\x3f\x11\x3d\x9c\x44\x31\x2f\x46\x41\x0c\xf0\xd6\xd3\xbc\xcc\x82\x08\x1c\x98\xa7\xe1\x84\x95\xc5\xa2\x0d\x72\xbd\x5a\x10\xf8\x3b\x56\xb2\xfe\x4b\xd4\x3e\x28\xfc\x5c\x62\x26\x72\xab\xdf\xfa\x2e\x0a\x36\x22\xbb\xfd\xbc\xfb\xe4\x9b\x8b\x8b\x77\xef\x4f\x0e\x2e\x2e\x9e\x74\xfb\x39\x4c\x31\x46\x0c\x3e\xc8\x20\x82\x7d\x3b\x1c\xb3\xc2\xfb\x14\x16\xeb\x6a\xc6\x67\xb1\x04\xcf\x0a\xd4\x73\x6a\x06\xa2\xbf\x86\x21\x70\x70\x64\x6f\xb5\x12\xaf\xbf\x06\x1b\xf1\xa8\xbf\xa6\x9e\x3d\xec\x70\xb6\x56\x1c\x4f\x7f\x8d\xf6\xd7\xd4\x20\x26\x05\x1b\x49\xa0\xdf\xa8\xee\x78\xbe\x9f\xa5\xc3\xab\x6d\x77\xd9\x20\xf9\xc3\xef\x9a\x58\x01\x60\x9a\x26\xa4\xbe\xca\xf9\xf8\x13\x7a\xf6\xb5\x17\x38\xe3\xf9\x18\xac\x4f\xee\x5a\xe3\x33\xd4\xfc\x50\x22\x5b\x60\x40\xd9\x38\xae\x59\xf2\x6f\xff\xdd\x96\xfc\xf9\xd7\x5f\x72\x9a\x40\x64\xea\x3b\x56\xfc\x8d\xaa\x57\x59\x66\xf5\x81\xec\xaa\xf5\x18\xf1\xe2\x86\x16\xc9\x09\x1b\xd9\xeb\x54\xd5\xd1\xcf\x3f\x05\x1b\x39\x79\xa0\x30\x41\xcf\x52\x0b\x48\xdd\x87\x8e\x6b\xe0\x36\xa9\x0b\x00\x00\xa6\x53\xd6\x65\x15\x61\x76\xbb\xe4\xb7\x89\x7a\x45\xc7\xc9\x83\xfd\x30\x40\x81\xd7\x5f\x4f\xa0\xac\xc7\x92\x24\xbd\x36\x78\x02\x64\x1c\xd6\x13\xa1\xa9\xa5\x43\x18\xa3\x6d\xf9\x7f\x8c\x90\x2c\xb7\x0e\x63\xb2\xf5\xe7\x5b\x1b\x9b\xdf\x42\x66\x34\xa0\x09\xca\x68\xcb\xf1\xd8\xc7\x7c\x45\xe9\x94\x25\xc7\xf3\xd2\xb5\x6f\xac\x1b\x7d\x49\xaf\x58\x0e\xa7\x00\x1c\x30\x29\x56\x90\xad\x75\x2e\x8d\x3f\x70\x46\xcf\x6a\xa7\xf4\x6d\xc3\x94\x66\x54\x94\x2f\x31\x7c\xe1\x97\xcc\x09\xa2\xd2\xfd\xd1\x33\x7a\xee\x8d\x7d\xf9\x30\x3f\xcc\x45\x49\x44\x49\xe5\x2d\xec\x8f\xcb\x64\x4e\xd2\x4f\xdf\xfa\xf0\xb8\x39\x83\xac\x7f\xe6\xa3\xdd\x5d\x0c\xbc\xa9\x1e\xd9\xfa\x6b\xe4\x85\xba\x03\xf1\x89\xca\xe6\x42\x1e\x70\x9e\xe1\x6b\xbe\xc2\x8f\xda\x8f\x66\xa5\xc3\xaf\xfd\xfc\x56\xc7\xa2\x0a\x9e\xa4\xd5\x08\x21\x10\x9d\xd6\xd9\xa3\x7d\x44\xc2\x31\xaa\x5d\xc6\xc7\xed\x8f\x1d\xd2\xb5\xbf\x36\x37\x3a\x64\x30\x94\x3b\x7c\x78\x70\x70\x40\x46\x19\xa7\x36\xc4\x39\x49\x85\x98\x7b\xea\xfc\x8f\xea\xf9\xab\x41\x51\x3f\x66\xe5\x5b\x3a\xce\xd3\x72\x9e\xb0\xf6\x47\x17\x47\xd4\x40\x86\x7c\x9e\x97\x3a\xa6\xa7\xf2\xb5\xbd\x4e\x29\x41\x9d\x45\x5c\x72\x15\xe5\x75\xc0\x86\x74\x2e\x20\x7c\xc3\x94\x2e\x20\xf6\x82\x18\xa6\x2c\x2f\xd3\x51\x3a\x34\x09\x6e\x0d\x74\xc9\xbc\x5f\xb3\x62\x41\xc4\x94\x66\x19\xd1\xbf\x32\x5a\x8c\x99\x1a\xb1\xf0\xb7\x17\x16\x60\x94\x71\x5e\xb4\xdd\x95\x51\xd1\xff\xde\x1c\xbf\xde\xdc\x38\xe8\xd4\x73\xab\x05\x9b\x31\x5a\xb6\x25\x7f\x9a\x4a\x06\xd9\x7d\x86\x50\x31\x1a\x45\x8c\x95\x9a\x32\x14\x3a\x03\xd1\x55\xdb\x08\xcc\xe7\x17\x51\x60\x29\xbc\x80\x3a\x5e\x3d\x23\xb5\x28\xa1\x05\x65\x96\xc2\x48\x2b\xa1\xb0\x42\x8b\xa2\x07\x22\x8a\xf0\x3b\x32\xd9\x44\x0a\x15\x26\xa2\xd5\x30\x79\xc1\xca\x43\x15\x7c\xe3\x34\xe3\x65\x7b\x4a\x67\x11\x99\x65\x11\x19\xa5\x2c\x4b\xc2\x37\x33\xb0\xfc\x9c\xd2\x19\x98\x59\xcf\x32\xdf\xcc\x53\x96\x0b\x28\x8f\x74\xf4\x12\x15\xc2\x1a\xbc\xae\x6a\x96\x42\x64\x1c\x0c\x07\x1c\x88\xda\xa8\x56\x7e\xe9\xc1\x18\xdc\xe7\xb8\xfa\x09\xbc\x9d\x67\x65\xea\xce\x42\xd8\x69\xf8\xf6\x03\x81\x50\x18\x11\x50\xbd\x56\xd3\xc8\x29\x69\xf1\x82\x36\x8b\x89\x60\x87\x42\x76\xc9\x05\x0d\x84\xc2\xc6\x15\xbd\x32\x99\xe9\xdd\xbc\x32\xf5\xe2\xd3\x92\x3d\x09\x5f\x7e\xc7\xcb\x17\x00\xdb\xa8\xa5\x6c\x14\xd7\x9a\x21\xf8\x02\x9a\x84\xe2\x89\xdb\xfe\x8a\x6e\xad\x2e\x66\x23\xa8\xde\x45\x4a\xd6\xc9\x56\x93\x90\xbd\x12\xae\x00\x52\xc2\x67\xaf\x03\xeb\x34\x2f\x69\x2d\x4a\x62\xb3\x0c\xa5\x2f\x77\xa6\x70\x6f\xa0\xd1\x19\xcb\x09\x84\xf2\x84\x18\x9f\x09\xba\x0a\x57\x0f\x15\x8e\xbc\x26\x18\x55\x26\x97\xdb\x3f\x9e\x59\xd6\x1b\xc1\xf1\x44\x7c\x3e\xaf\x78\x46\xcb\x2a\x56\x6f\xdf\x70\x6c\x6a\xf6\x2c\x15\x6f\x20\x4b\x61\xf6\x8e\x16\x65\x7b\x06\xd2\x66\x2e\xff\xae\x24\xe9\xb4\x9f\x62\x10\x3f\x31\x92\x06\x36\x6e\xe9\x18\xfc\xb2\xc9\xe6\xf7\xe4\x60\xff\xed\xde\x29\x78\x35\x90\x53\x1d\x46\xfd\x97\x79\x9a\x49\x21\x51\x27\xbb\x50\x66\xcc\x07\x40\x91\x07\xfa\xa3\xce\xb9\xaf\xb2\x4e\x44\x24\xcd\x87\xd9\x1c\x18\x44\xc7\x8f\x5f\xd2\xd8\x09\x05\x7b\xc1\x9c\x97\x6a\xfb\x12\xbc\x06\xd0\x05\x80\xe6\x84\xe6\x3c\x5f\x4c\xf9\x5c\x10\x47\x1e\x15\x84\x82\x80\x6c\x33\x6a\xdf\x4c\xb8\x50\x59\x78\x15\x20\x59\x07\xef\x1b\xc3\x38\xbe\xcf\x33\x26\x04\x06\x3d\xbb\x49\xe5\xad\x83\x01\x89\x58\x82\x6e\x8f\x3e\x48\x3e\x22\xb4\x3a\x25\x25\xea\xeb\x79\x81\x9f\x8c\x76\x60\x99\x28\xff\x78\x5a\x96\x45\x3a\x98\x97\x4c\x90\x4f\xa4\xd7\xfb\xad\x48\x4b\xc9\xf4\x9e\x9f\x6f\x93\x11\xcd\x84\x36\xe0\xeb\xf5\x0e\xf2\xf9\x94\x15\xfe\x37\xd2\xeb\xed\xf3\x7c\x94\x8e\xe7\xe6\x43\x59\xcc\x19\xb9\x8d\xfb\x79\xdd\xad\x1c\x84\x1d\x2a\xe5\xad\x58\x6a\xbd\xca\x05\xf5\x4e\xac\x0a\x95\x2e\x49\x99\x6b\xd3\x50\x9f\x8b\xc9\x87\xe4\x1b\x15\x99\xe1\x79\x16\x89\xf2\x3f\x66\xa6\xe4\x4f\x56\xfe\x77\xa3\x16\xa2\xd2\x08\x06\xb3\x8d\xff\xb8\xcf\x47\xb7\x9e\x7d\xd2\xfb\xa3\xc3\x7d\xb0\x7a\xfa\xaf\xb3\x83\xa3\xd3\xc3\xe3\xa3\x8b\xd3\x83\xff\xe7\xfd\xc1\xd1\xfe\xc1\xc5\xc9\xc1\xeb\x83\xff\x22\xbb\xa4\xbb\x3e\x6f\xbf\xd8\x5e\xef\x6d\xac\xff\x48\xd7\xff\x79\xfe\x69\x2b\xfa\xe1\xb6\xf3\xb4\x3b\x4e\x6b\x8c\x85\xd2\xfc\x1a\xcd\x2a\xdb\x43\x9e\xa3\xf7\x7c\x44\xcc\x1b\xce\x41\xe1\xdb\x5e\x1d\x14\x45\x60\x80\x00\x25\x18\x83\x63\xc7\x55\x1a\x3d\x32\xe0\x1a\x28\xd0\x41\x51\xe8\xb7\x22\x9f\xf4\x03\x6b\xd7\xcf\xf7\xf9\x6c\x51\x80\x39\x63\x7b\xd8\x21\x92\x73\x8f\xc8\xdf\xe9\x84\xf3\x47\xe4\x30\x1f\xc6\x60\x86\x0d\xdf\x05\x29\x18\x3a\xda\xc7\x4e\x2b\x41\xb2\x74\xc8\x72\xc1\x12\xe0\x60\x31\x4b\xce\x11\xbb\x21\xbf\x9c\xbe\x24\x6f\xf0\x53\xdc\xcf\x4f\x19\x9a\x07\xd3\x21\x64\xec\xca\x17\xf2\x74\xbe\x39\xdc\x3f\x38\x3a\x3d\x00\x37\x2b\xa0\xe6\x25\x2b\xa6\x42\x61\xde\xef\x33\x82\x84\xf0\xf9\x4b\x0c\x1f\xd7\xa1\x42\xf1\x85\xf6\x8f\x4a\x97\xc7\x25\x65\x13\x91\x63\xf4\x68\x9f\xd9\x5a\x18\xf6\x69\x7d\x9d\xf8\xb6\x98\xeb\x5f\xf8\x9f\xa3\x21\x83\xc0\x82\x78\x6a\xdb\xc3\xcd\x88\x0c\xb7\x7c\x26\xc9\xf9\xed\x10\xe3\xe1\x66\xed\x8d\x62\xde\x08\xab\x7f\x7c\xba\x8d\x48\x7b\xb8\xa9\x9f\xda\xe4\x8f\x2d\xfb\xc3\x0b\x12\xb7\xd9\x69\xb8\x93\xae\x2a\x77\xd2\x95\xbc\x93\xea\x3b\x1b\x6e\x4a\xfe\x04\xfa\x91\xd5\x54\x57\x77\xdc\x5b\xaa\xca\x6d\xfd\x02\x09\x6d\x3b\x8a\x3f\x23\x45\x4e\x44\xb0\x62\x41\x21\x71\x23\x39\x3a\xcd\x6b\x57\xd0\x5d\x08\xaf\xf6\x3d\xd7\xc4\xdd\x56\x0f\x4e\xef\xea\xdc\x8c\xdb\x61\xe0\x9a\x16\xc4\x5b\x52\x7f\x40\xe1\x42\x3d\x58\xf9\x3d\x58\xf9\xfd\x01\x56\x7e\x01\x7e\xbd\x74\x6d\x6e\xbf\xc0\xe6\xce\x59\xce\x5a\x83\xd9\x06\xe3\xda\x7a\xb3\xd8\x8a\x9d\xb8\x6f\x29\xe2\x5b\x40\xdc\xe3\x2d\xd0\xb3\xf2\x21\xff\xfa\x0f\x84\x5f\xdd\x3e\x8b\x7c\xf1\x13\x61\xd5\x4e\x8b\x7c\xad\x97\xdd\xc0\x30\xe5\xff\x8e\xfd\xfc\x5a\xa6\x91\x5f\xbe\xa3\x75\x26\x92\x5f\x6b\x4f\x3d\x2b\x8c\xff\x3b\x36\xf4\xab\x98\xe6\x7d\xf9\x6e\x36\x98\xe8\xfd\xee\x0d\xbd\xb5\xde\x29\x55\x9f\xa5\x5d\xd2\x7d\xf2\x84\xfc\x05\x02\xcf\x92\x27\x5d\x52\xb7\xbd\xa6\xe8\x8b\xac\xe3\x2a\x26\x77\xb0\xdf\x70\x8d\xee\xc2\x6d\xea\x2c\x9c\xbc\xa2\x14\xa4\xe0\x92\x32\xa5\xd5\x41\xc4\x9e\x1b\xca\x8e\xbb\xd9\x12\x7c\x6c\x84\x85\xfd\xea\x45\x47\x9a\x2e\x3b\xd2\x7c\xe1\x91\xa5\xbe\x20\x2e\x23\xe1\x74\xef\x39\x01\x61\x48\xce\xda\xe3\x33\x93\xa2\x8e\xbc\xea\x9d\xb6\x4a\x00\xd2\xcd\x02\xdc\xee\x76\xc9\xaf\xbc\x24\x33\x5a\x4e\xe0\x3c\x49\xac\x00\x39\x53\xa4\xd3\x59\xc6\xc8\x54\x8c\x31\x70\x7c\x66\x53\x53\xda\xff\xe0\x9d\x48\x42\x6f\xca\x9b\x5d\x39\x35\x50\xbb\xb7\x71\x1e\xd7\xb1\x56\xb7\xd5\x19\x15\x4c\x48\xd6\x66\x17\x1b\x36\xf0\xea\x33\x57\xad\x15\x8e\xef\x11\xcd\x32\x3d\xbc\xcf\x9f\xeb\x99\xbe\x99\x51\x7e\x41\x0e\x2c\xd2\x7d\x42\x94\x02\x4c\x62\x75\x53\x2b\x9d\xba\x3b\xcb\x7a\x4e\x1f\x10\xb5\xfe\x51\x53\x16\x6f\xf7\x3f\xd9\x68\x36\x17\x13\x58\x42\x5c\x90\xba\x10\x40\x35\x01\x80\x96\xc5\x5e\xaa\x1b\xce\x53\x5c\xbf\xda\x45\x6f\xe8\xa2\x22\xb4\x98\xba\x11\xe9\x9d\x87\xe3\x54\x91\x53\xe6\x59\xe9\xa4\x8b\x5f\x8a\x08\x58\xbb\xb7\x01\x12\x64\xab\xb5\x12\xc9\xc5\x36\x3b\x77\x1e\x17\x85\xf2\xab\x9c\x1a\xcf\x76\x47\x1f\x15\x3c\x3e\x54\x94\x91\x3a\x49\x86\x3e\x5d\xf8\x34\x21\x28\x11\x4a\xb8\x10\x91\xe3\xec\xa6\x6a\x04\xda\x9d\xda\xd1\xab\x60\x84\x89\x0d\x8a\xeb\xd1\x53\x93\x0e\x2d\x98\x43\xa6\x3c\xe8\x2a\x7c\x62\x6c\x0c\x8e\x90\xba\x89\xe3\x51\xdb\x9b\x50\xa7\xb7\x71\xee\x11\xfd\x9d\xea\xa0\xc6\xac\xdc\x13\x65\xd3\x58\xcc\x52\xf9\x2d\x9d\xa7\x31\x35\xf1\xe6\xc4\xf6\xa6\x27\x53\x53\xb7\xa9\x41\xb2\x47\x55\x02\x7e\x71\x01\x6a\xa2\x5a\x64\xab\xd3\xf1\xb7\x1a\x41\x98\x94\x7a\x82\xe9\x00\x05\x90\x81\xfc\x52\x8d\xe7\x12\x42\xd4\x4b\x32\x71\x89\x13\xb9\xac\x84\xfb\xba\xad\x90\xd7\x77\x00\x59\xbd\x80\x6a\x07\x49\x92\xe6\x25\x27\x34\x27\x7b\xa7\x67\x71\xcd\x52\x50\x51\xd6\x5e\x56\x6a\xa0\xf6\xe6\xac\x99\x33\x06\xc9\x49\xff\xc9\x7e\xa5\x62\x52\xd2\xf1\x61\x8e\xac\x49\x55\xf9\x6a\x16\x16\x84\xd3\x33\x3a\xde\x86\xfb\xd6\x04\x42\x54\x41\x88\x83\x54\x41\xea\x0f\xac\x1b\x9b\xb6\xa1\x48\x5c\x1b\x58\xab\x9e\x74\x39\x53\xae\xee\xfc\xad\x8f\x55\x41\xce\x4c\xdd\xb4\x1a\x50\xa6\x76\xeb\xf7\x0c\x3a\xea\xad\x36\x11\xb2\xa9\x7d\x1d\x80\xb4\x99\xa7\x67\x7e\x30\x37\x67\x1c\xdd\xae\xf2\x8d\x83\x47\x07\x76\xa3\x74\xff\x28\xcd\x43\x20\x2d\xfd\x88\x40\x2e\x15\x65\xb8\x44\xcd\x51\x62\xeb\x28\xbe\xc3\x83\xaa\x2a\xc7\xb5\x54\x4d\xf8\xea\x27\xd1\xae\xa2\x87\x21\x43\x01\x1f\xe5\xce\xa3\xdb\x25\x2f\x95\x0d\x83\x0a\xc2\x6a\x9e\xde\x5b\x2a\x37\x78\xc9\xe1\x91\x23\x51\x91\x3d\x80\x03\x51\xcf\x44\xe1\xd0\x2c\x67\xa5\xfe\xaa\xa7\xc8\xe0\x38\xb8\xeb\x6f\x10\xba\x08\x3c\x7e\x8c\x78\x64\xeb\x75\x20\xd6\x56\x83\x52\xa2\x86\x27\x0b\x1e\xe1\xea\x5f\x2e\x2a\x6b\x85\xd9\x6a\x1d\xd6\xcf\x33\x3f\xa9\x28\xa7\x2a\xe8\xd5\x40\x8c\x14\x87\x9d\xbc\x74\x41\xd7\x92\xa6\x15\xdb\x2a\x53\x80\x0a\x6d\x6f\x77\xc2\xeb\xa2\xdd\x51\xbb\xb1\xd2\x5d\xba\x62\xf7\x35\x8a\x2d\x72\xc7\x93\x4e\xf5\x2d\x48\xed\x8f\xde\xa8\x7b\xcc\x7c\x6e\xd8\x8f\x66\xa2\xbd\x8b\xef\x08\xaa\x1e\xa2\x37\x06\x84\x47\xcc\xd5\x51\xdf\x01\xb5\xd5\x73\xdc\xac\xe0\x25\x07\x4a\xae\x93\x8e\x98\x73\xea\x86\xcc\x87\xe0\xf8\xc4\x44\x1a\xd5\xaf\x94\x90\xac\x5f\x30\x88\x72\x03\x50\x21\x81\xba\xa9\x00\x91\x96\x27\xcc\x26\x2d\xa9\x6c\x9e\x01\x4a\xf3\xa4\x4e\x1d\x80\x91\x45\xf3\x21\xd3\xa4\xa0\xf1\xa8\x37\x68\xde\x02\xf9\x71\x5e\x14\x2c\x1f\x2e\x6a\xbd\x8a\x20\x80\x11\xe4\xf3\xc7\x4a\xad\x90\x90\x87\xc2\x0b\x2b\x86\x2c\x2f\x97\xc2\x52\x75\x96\x81\x0a\x75\x83\x15\x78\x2a\xe9\x7e\x4d\x2f\x53\x9e\x97\x93\x6d\xd2\x02\x1c\x4c\x87\x61\x2f\x08\x71\xb1\xbc\xc2\x82\xd1\x62\x9b\xb4\xb6\xd6\x93\x74\x9c\x2e\x1d\x28\xf4\xc8\x92\x74\x3e\x5d\x3a\x18\x18\xee\xef\x19\x4a\x43\x8d\x70\x28\x19\xcf\xc7\x4b\x07\x22\x2b\xfc\x09\xe3\x18\xcd\xb3\xac\x76\x1c\x37\x8c\x5d\x61\x5f\x4d\x23\xf9\x13\x47\xea\xfe\x5d\xa2\x30\xbe\x2a\x96\x4d\xf8\x7c\x49\x27\x30\x8f\x34\x9f\x4b\xc4\x5d\x75\xc9\x96\x60\xd1\xef\xef\x8c\x98\x10\x57\x5f\x01\x97\xfe\x9c\xe1\x10\x27\x3c\xc8\x11\x95\x9b\x53\x7f\x8a\x56\x46\xbd\x7f\xdd\x61\xbb\x8f\x42\x64\xc9\x25\xbc\xd3\xcf\x6f\x31\x26\xa4\x09\xb0\x54\x13\x29\x68\xc7\xf5\xff\xb8\x60\x1f\x4b\x08\x9f\x75\x77\x2e\x5c\x55\xd3\x7d\x84\xff\x0a\xde\x23\xec\x23\x1d\x42\xaa\xcb\xd5\x92\xe7\x42\x00\xa5\x7d\x8c\x6a\x68\xc3\xdc\xcd\x05\x83\x0f\x5d\xf7\xb3\xd3\x4a\x7f\xaf\xb6\x70\x2a\xe5\x4c\x94\x26\x24\x5e\xdc\xc5\x9f\x2d\xcc\x94\xc3\x4d\x02\x10\x48\x4b\x86\x89\x10\xd5\xed\x3f\xc5\x68\x73\xfe\xd3\xf4\xf1\xbc\x64\x05\x70\x22\x18\x70\x8e\xcb\xdf\xf0\xa7\xd2\x57\x62\x6e\x40\x6b\x12\xaf\xe4\x5d\xfb\xad\xc9\x18\x14\x9f\xe6\xa4\x34\xa0\x03\x4f\x65\x75\xdd\xf8\x71\x69\xef\x1b\xe8\x07\x2d\x31\x6d\x2f\x4b\x62\x00\xf5\xfc\x54\xf3\x7f\xe7\x73\x49\x16\xe7\x59\x62\x94\x40\xda\x6a\x0b\x97\x76\xc1\xe7\x3a\x2c\x9f\x9e\x5c\x44\xd2\x98\xc5\xad\x88\xb4\x7e\x82\xde\x54\x46\x4c\x55\x6d\xf7\x53\xbb\x43\x76\x7f\x26\xed\x4f\xb7\x9d\x5b\xd2\xfd\xb9\x29\x37\x59\x43\xfa\x77\x67\x16\xda\x40\xbb\xef\xc4\x41\x55\x58\xdd\x36\x7f\x7c\xba\x8d\x88\xb3\x8c\xde\x76\x69\x7b\x36\xb4\x96\xc6\x90\x72\x26\x4d\x5d\x49\xaf\x40\xa4\xbb\x84\x51\x03\x2b\x38\x8b\xa1\xe2\x61\x09\x11\xf4\x90\x79\xd4\x9f\x6d\xc2\x99\x84\xdf\xa0\xa5\x39\x1e\xa7\xb2\x00\x43\x1a\x9a\x5f\x09\x8c\xfb\x26\x0b\x75\xd4\xe9\xba\x8e\xd5\x72\xcf\x0a\x36\x02\xae\x7a\x21\x25\x53\xe4\x57\x4b\xf2\xe4\x89\x84\x5c\x70\x5e\x4a\x74\x85\xc5\x77\x86\x5c\x30\xf6\xe4\x49\xac\xcc\xb3\x3d\x2c\xf6\x36\xa2\xed\xda\xb9\x9a\xbc\x88\x05\x24\xf5\x44\x4b\x7f\x5d\x60\xa8\x96\x8b\xc8\xaa\x4e\x69\xf6\x00\xd2\x29\x99\x35\x26\xbb\xe6\x80\xb6\xbf\x3c\x5b\x26\x24\x44\x72\x60\x3a\x21\x96\x57\x3e\x5b\x2b\xe0\xb6\xe4\xda\x91\xc9\x47\x6f\x24\x1f\x93\x61\xa6\x8a\xf7\xf7\x97\xd0\xae\xfa\x76\x33\xa2\xbb\xe3\xff\xd9\x59\x21\x40\x7b\x95\xc8\xef\x57\x7e\xc3\xae\x59\x11\x91\x9c\x63\x0d\x35\x84\x54\x48\x0c\x10\x90\x3a\x27\x22\xad\xb7\x26\x64\x23\xb5\x15\x68\x06\xa1\x6a\x49\x0a\x69\x6b\x59\x42\x26\xe9\x78\x02\x99\x9d\x42\xfc\x6b\x91\xa7\xa4\xc5\x0b\x27\xca\x26\x02\xc1\x93\x1c\xd7\x9f\xc1\x5b\xe7\x7c\xb9\xc1\x37\xd1\x69\x63\x2e\xd8\x5b\x36\xe5\x75\xaf\x3c\x0a\x1f\x54\xaa\xe6\x9a\x4d\x7c\xe1\x6e\xde\xf6\xbd\x48\xac\x47\x07\x55\x27\x8f\x2a\xa9\x3a\xf0\x43\x0f\x89\xfe\xb9\x3f\x0a\x1d\xad\x7b\xa7\x9e\xc0\x60\x53\xa4\x2d\x11\xe9\xd9\xae\x5d\x3a\xa2\x74\xde\xaa\x89\xe7\xcd\x55\xe7\xd2\xe2\xde\x63\xb1\xc6\x92\xc8\x2e\x17\x58\x37\xc2\xf2\xaa\x6e\xf5\xf9\x33\x0e\x91\x8d\x87\xa7\xe2\x76\xe2\x61\xa2\xe7\xaf\x02\xdd\x21\xb5\x23\xe4\x89\x44\xff\x90\x78\xa0\x80\x29\x89\x07\x31\x43\x70\x3d\x50\x72\x9e\xb0\x38\x15\x27\x2a\xf1\xac\xca\x1a\x64\x41\xee\xf9\x68\x45\x74\x52\x4e\x8b\x76\x36\xf3\x2c\x27\x48\xa2\x31\xaf\x87\xc5\x7c\x77\x0c\x50\xe0\x0e\x80\xe7\xec\x78\x24\xff\x6c\xf7\x9c\x42\x65\x6c\x6b\x4b\x64\x2f\xe7\x1d\x67\xa4\xe8\x36\x83\xca\x4a\xc0\xa0\xfb\x12\xa4\xaf\xb1\xfe\x86\x37\x6a\x37\xd4\xe9\xb8\x63\xac\x4b\x74\xe9\xb5\xdb\x59\xcd\xed\xb7\x8e\xc5\xaa\x30\x56\x4d\xd9\xf3\x2c\x21\xb7\x97\x45\x85\x0c\x28\x38\x1e\x96\x7f\x39\xe1\x5f\x96\x0c\x18\x5d\x90\x27\x9c\x5f\x89\x6e\x31\xcf\x98\x58\xe7\x23\xfc\x89\x6d\xcd\x90\x5e\xb2\xc1\x7c\xfc\x37\x79\xae\xda\xa5\x26\x1b\x21\xaf\xa0\xef\xaf\x5b\xc7\x63\xea\xb7\xbd\x93\xa3\xc3\xa3\xd7\xdb\xe4\x25\x64\x5d\x53\x4b\x08\x2f\xcc\x98\x87\x3c\x5b\xe0\x9d\xfd\x5e\x30\x72\xf9\x76\x9e\x82\x2a\xf9\x12\xd7\xf5\xb2\xca\xea\x76\xa7\x74\x58\x70\xd1\xd5\x35\x63\xf8\x7d\x09\x2a\x1d\x46\x93\xd8\xf5\xae\xfa\x84\x0a\x9b\x5b\x32\xe4\x09\xf3\x5d\xac\x2a\xfb\x82\x0a\x1f\x0d\x55\x67\x99\x19\xda\x9c\xc7\xdd\x2e\xd9\x9b\xcd\x24\xef\x20\x05\x80\xf5\x59\x36\x1f\xa7\xf9\x7a\xa9\xa3\xbf\xae\x97\x6c\x3a\xcb\x68\xc9\xd6\xd5\xd3\x26\xc4\xee\xcd\x38\x17\x18\xb0\x5e\x81\xb0\x05\x10\x13\x98\x8e\x18\x49\x47\x23\x72\xc3\x5a\x05\xc4\xf3\x1d\xd2\x92\xe5\xca\x65\xac\x48\xa7\x69\x89\xa9\x49\x31\x32\x30\x63\x44\x67\xa9\x85\x41\x7c\x10\x71\xca\xbb\x09\x1f\x8a\x2e\xcb\xbb\xab\x8e\xeb\x1b\x18\x83\x26\x34\x01\x6a\x28\x26\xc9\xb4\x52\x64\x43\x62\xe9\x1c\x72\xbe\x35\xe6\xc9\xb5\x98\xb7\x0e\xbc\x41\xf7\x85\x5c\xbc\x5d\x79\x4f\xca\x3f\xc2\x8c\xe7\x29\xa6\x2a\xaf\x37\x29\x49\xc9\x53\xf7\x7d\x13\xe2\x18\x8b\x92\xc0\xae\x0a\xd0\xbe\xe3\x04\x67\xc6\x68\x1a\x83\x17\x0b\x76\x37\xc6\xab\x09\x4a\x80\xeb\x08\x10\xdb\xc8\xe9\x3d\xdd\x25\xad\xc7\x60\xb6\x72\x0e\x03\x67\xb9\x1c\xfa\xfb\x93\xc3\x7d\x4d\xd4\xdb\xd6\x92\x25\x3d\xaf\x3b\x03\xad\xb7\x69\x8e\x6f\x13\x0e\x67\x84\x4e\x8b\xe4\x1b\xbd\x18\x92\x77\xd8\xc1\x84\xb4\xc0\x48\x40\xdf\xa4\xa5\xa6\xc2\x40\x04\x37\xa9\x73\xf0\xf1\xd6\xee\x14\xcb\x1b\x37\xea\xd6\x86\x0e\xae\x20\xb8\xe1\xdf\xd5\xb2\x1a\xc1\xd6\x38\x60\xa1\xc9\x2c\xf9\xfc\xd9\x51\xcc\xa3\x4b\x42\xd5\x81\x6b\xf9\xf6\x79\x06\x41\xe0\x3d\xc4\xe7\xc5\x90\x79\x86\x40\xa9\x9b\x2a\xdc\xc0\xd5\x76\xae\x50\xbf\x12\x95\x56\x0d\xd4\xa8\x97\xe3\x09\x15\xc7\x37\xb9\x7e\x86\x88\x87\x34\xcb\xda\xd8\x16\x12\x83\x87\xcf\x56\x38\x1b\x6d\x7e\x8a\x15\x43\x7b\xd7\x4a\x96\x9a\x80\x9b\x41\x18\xb8\xf3\x3b\xb5\xa2\x92\xb2\x4c\x92\x38\x69\xd3\xde\x0b\x9d\x44\xa0\x71\x7f\x90\x09\x6f\xf3\xc1\x07\x35\x6a\xa3\x6c\x50\x4a\x06\xb2\xae\x18\x75\xd0\x30\x04\x72\xf1\xe9\x62\x3a\xe0\x98\xc2\xb4\xbf\xa6\x81\xf6\xd7\x1c\xee\x1e\x6b\xc4\x40\x05\x4a\x5e\xa8\xaa\x02\x4a\xfb\x6b\x66\xa5\xd4\x38\xdc\x17\xe9\xea\xd0\xdc\xf5\xc0\xea\x7c\xf0\x61\xc7\x55\xc2\xf8\xee\xc2\xf7\x05\xca\x07\x1f\x2a\x23\xaf\x9d\x1b\x1f\x7c\x88\xdd\x44\xa5\xb2\x8e\xaa\x8e\x5f\xe1\x5a\x54\x53\xb7\xcf\x12\x2f\x9c\x99\x93\xed\xc6\x39\xf8\xdb\xeb\x0c\x58\xed\xe5\x57\xd1\x11\xe9\xb5\xb9\xbb\xb1\xb3\xfb\x55\x7f\xb4\x77\x19\x4d\x73\x3c\x20\xed\xb4\x64\x53\x3f\x9d\x89\x2c\x91\x2b\xa2\x27\x81\x35\x40\xca\x43\x66\xaf\x25\xbf\xca\xd2\xca\x72\x22\x4c\xcf\x37\xa8\x82\xbc\x09\x63\x33\x90\x39\x8c\x0f\x93\x77\x82\xef\xcc\x0e\xbc\xe5\x67\x07\xde\x5a\x96\x1d\x78\xeb\x9c\x18\xf5\xe4\x30\x83\xd8\xc7\xfa\x15\xec\xd6\x15\x9e\x95\xb0\xa4\xf2\x92\x42\x4d\xf2\x82\x78\x6a\x0c\x4d\xdd\xb6\xed\xa9\xd6\xc7\xca\x5f\x50\x5d\x51\xae\x91\xf7\x41\x4d\xd3\x60\xb0\xeb\x08\xa1\xbe\xc5\x23\x5e\x1c\xd0\xe1\xa4\xdd\x64\x8b\x2f\x39\x0b\x60\x52\x2d\x7e\xce\x78\x96\xcd\xad\xf3\x1b\x0e\x49\xd2\x46\xd8\xb1\x8b\x0b\xa8\x79\x71\x51\xe7\x01\xed\xaa\x7b\xdc\xd6\x75\xe3\x06\xda\x07\xb3\x52\x74\x37\x20\xf7\x8e\xe0\xa7\x68\x66\xb8\xd1\x50\x1e\xb9\xa4\x34\xd2\x4b\xee\x28\x9e\x2a\x66\x09\x3e\xd0\x3a\x42\x1c\xe4\x08\xf3\x4e\xa2\x11\x28\x75\x52\x16\xcc\x41\xa9\xb3\xc5\xde\xf0\xe2\x0a\xb8\xaf\x9c\xe7\xeb\xa2\x2c\xd2\x61\xa9\x58\xb0\x31\xd9\xb5\x46\x94\x78\x11\xf6\x4b\xc3\xbc\x82\xb5\xe3\x6d\x47\xa9\x58\xca\x62\x81\xdf\x03\xb0\x23\xc2\xae\x69\x86\xca\x82\x8c\xdf\xb0\x84\xb4\x25\x63\xb6\x7f\xfa\xae\x23\x6b\xcb\x2e\xc6\xf2\x0e\xcd\xd9\x8d\x71\x61\x34\x49\x72\xa0\x97\xfe\x1a\xf6\x71\x4b\x20\x59\x12\x69\xb3\x4e\x43\x4f\x92\x17\xc0\xc0\x3e\x04\x6e\x7b\x96\x0f\x99\x97\x82\x50\xb6\x72\x2e\x01\x55\x17\x09\x25\x9e\x6b\x49\xd9\xe5\x98\xf0\x93\x96\x82\xba\x5d\x32\x06\x39\x12\xb3\x52\x0c\x98\x6b\x51\x35\x98\x97\x24\xe7\x98\x4d\xb0\xe4\x24\xe1\x84\x0e\x38\xa4\x26\x8e\x63\x93\x6d\x44\xcd\xc7\x69\xa6\x38\x70\xc2\x47\xa6\xf5\x84\x15\x4c\x22\x07\x18\x3f\x40\x4b\x46\x45\x8a\xd9\xfd\x31\x72\x8c\xe5\xdc\x62\x92\x8e\xda\x8f\xc6\x19\x1f\xd0\xac\x43\x3e\x91\x38\x8e\x61\xa8\x53\x9e\xcc\x33\x16\x23\xe5\x91\xe4\x63\x8c\xfa\xf9\x07\x3e\xe7\x5f\x9b\xcf\x09\x1c\x05\x03\xc9\x8a\x50\x41\x2e\xea\xbf\x18\x97\xc6\xaa\xf0\xa7\x18\x9f\xaa\xd4\x92\xf3\xf5\xb9\x60\xeb\x03\x48\x89\xbe\x8e\x28\xa9\x54\xb6\x5a\x10\x3d\x81\xc1\x83\x49\x11\x48\x85\xae\x03\xb3\x3c\x53\x99\x94\xb6\x8c\x5d\x02\x19\xa7\xd7\x2c\x27\x05\xcd\x31\x11\xdc\x93\x5a\xb9\x12\x1b\x9f\x4d\x34\x18\x4c\xaa\x32\xcc\xe8\x74\xc6\x92\xda\x16\xd3\x14\x34\xc7\x44\x52\x8e\x82\x0c\xf8\x1c\x12\xe5\x68\x33\x09\x75\x6b\x41\xaf\xf5\xcd\xe9\x47\x68\x3e\x9f\xcd\x56\x6a\x5e\xa8\x49\x1b\x00\x7b\x7a\xf6\x4a\xa3\x09\x75\x49\x6f\x9a\xe6\x91\x04\x7e\xae\xa4\x64\xeb\xbd\x24\xe7\xd2\x76\x7d\xba\xe0\x79\x25\xcd\xbf\x52\x96\xff\x0d\x73\x63\xcb\xa9\x7d\x1d\xde\x60\xf3\x77\xa9\xc8\x71\x27\x7f\x82\x39\x7e\xfe\xac\x36\xf6\x67\x39\xbc\x46\x2d\x78\x7f\xcd\xd3\x82\x5b\x7c\x30\xc6\x2e\x36\x4f\x3a\x7a\x5c\x93\xfe\x1a\x64\x9b\x9f\xc3\xa3\x83\xda\x84\xfe\x5a\x47\xd7\x82\xfd\xe8\xaf\xc9\xff\xd9\x32\xfa\x51\xfe\x3e\x8f\xfb\x6b\xb5\x0a\x65\x37\x12\xcb\x34\xcd\x31\x0e\xcb\x94\x7e\x44\x60\xb8\x85\xb0\xc9\xc1\x2b\xcd\x3e\xcf\xaf\x99\x24\xad\x2a\x6f\x0f\x1e\xbf\xfd\xd3\x53\x32\x61\x1f\xb5\x95\x4f\xc9\xa1\xa4\x18\x0f\x54\x49\xf5\x50\xa0\x0d\xe6\xad\x02\xb2\x4e\x7e\x65\x1f\xf1\x6f\x7c\xbd\x22\xdf\xe4\x79\x4e\xa4\x14\x9c\xc3\x7f\x01\x82\xea\xd6\x7b\xa6\x1f\x84\x83\xe5\xce\x03\x4c\xc8\xf9\x4e\xd8\xc7\x33\x7e\x32\x1e\xb4\xa1\xbe\xda\xa3\xa1\xca\xa3\x05\xff\xc6\x62\x3e\x10\x65\xd1\xde\xec\x18\x64\x2b\xb4\xe1\xd7\x09\x1b\x1f\x7c\x9c\xb5\xfb\x6b\xf1\xa7\xcd\xc8\xee\x12\xb6\xd3\x28\xb8\x4b\xbe\x23\x2f\xc8\x96\x44\x2d\xb9\x03\xb7\xfd\xb5\x4e\x44\x5a\xe3\x96\x85\x87\xe9\xc0\x4c\x87\x53\x95\x5b\xd4\xd5\xd9\xa9\x2a\x90\xd0\x52\xfe\xd5\xdb\x38\xaf\x37\xeb\xf7\x61\x89\x78\x4a\x67\x0e\xeb\x98\x57\x85\xa5\x9c\x3c\x25\x9a\xed\xab\xe5\x97\x14\x44\x29\xf4\x14\xe3\x41\x30\x4b\xcf\xb9\xe0\x5b\xf2\x82\xb4\x68\x8b\x6c\xc3\x53\x4a\x7f\xad\xed\xe0\x5f\xfd\x70\x22\xcc\xde\x14\x7a\xca\x42\x21\xf9\x89\x3c\x23\x2f\xd0\x7e\xec\x30\x2f\x65\xe5\xcd\xef\x24\xb7\x0d\xa8\x09\x09\xbb\xda\xe1\xc7\x2e\xd9\x7a\xfe\x9c\x3c\x21\x9b\x1b\x1b\x1b\xf2\x97\xfc\x17\xa7\xd4\x51\x2f\x2a\x11\x69\x75\xe0\x60\x48\xd6\x66\x1b\x8d\xdb\xfd\x1c\xad\x69\x5e\x9e\xf1\x5f\xd9\xc7\x76\x6a\x22\x27\xca\x4d\x92\xe8\xbc\x2b\x3f\x9a\xb8\x48\xed\xcd\xef\xbc\x67\x87\x09\xfb\xe8\xed\x09\x2c\xd9\x86\x5d\xb0\x89\x9c\xe8\xb6\xac\xb6\xea\x11\xb2\x07\x46\x1f\x21\x7b\xa8\xee\x3e\x42\x27\xaf\x7f\xf1\x8e\x50\x31\x1e\xc8\x75\x92\xff\xbf\x73\xaf\xf3\xe3\x1c\x41\x75\xf4\x1a\x4e\x53\x31\x1e\xe0\xd2\xb9\xa7\xa9\xdb\x25\x87\x09\x9b\xce\x78\xc9\xf2\xd2\xc3\x67\x9b\x90\xf5\x1b\x95\x87\x75\x23\xc4\x04\xa8\xb7\x13\x3c\x7c\x5d\x24\x0c\xed\x04\x98\xce\x78\xe7\x17\xa8\xee\x23\xcb\x5b\x65\x73\xd0\xf8\x07\x0d\xd1\xe5\x42\xf8\xfc\x09\x84\x29\xf4\xe8\x6d\xf3\x21\x32\xe8\xaa\x30\x26\xef\xf8\xc8\xd6\xea\xac\x44\x2d\x27\x22\x73\xb6\xf9\x5e\x54\xf2\xf4\x8d\xfa\x1b\x47\xda\xb0\xad\x76\x43\x6d\xb5\x6e\x2d\x39\x14\x59\x33\x39\xac\x5d\x64\x43\xc4\x2e\x3c\xaa\x59\xb3\xf6\x43\x7f\xc9\xd5\xa9\xd2\x8e\xdc\x92\xa2\x99\x52\x61\x4b\x37\xcf\xf1\x18\x9b\x6f\x99\xfd\xb6\x15\x7e\xa3\x92\x5f\xd5\x61\xc3\xe4\x2d\x96\x45\x64\x93\xac\x93\x4c\x93\x52\x08\x83\xe4\xea\x91\x46\xce\x6e\xea\xa0\x50\x5f\x83\x33\x69\x4b\xb2\x3a\x21\x5d\xf2\x6c\xa3\x43\xfe\x93\x6c\x6e\xf9\xb6\x45\x19\x59\x27\xd4\x0c\x94\x7e\x6c\x9b\x11\x5f\x91\x75\xf2\x2c\x22\x3f\x92\x75\x72\x15\x91\xcd\x4e\x44\xd6\xd5\xcd\x73\xeb\xcc\x01\x63\x01\x91\x56\x31\x1e\xb4\xec\xb5\x34\x1e\x90\x5d\xd2\x73\xc8\xe3\xa8\xbd\xd1\x21\x4f\x24\x4d\xec\x44\xc4\x2b\xff\xa1\xa1\xfc\x5b\x5d\x7e\x1e\x5e\x3e\x4e\xfc\xa1\x89\xc8\xa8\x65\x7b\x30\x2c\xee\xae\xa4\xfc\x7a\x92\xe3\x01\xfa\x4e\xa9\x7d\x7a\x56\xab\xeb\x2e\x7c\x74\x72\xa0\xa1\x4a\x2d\xea\xdb\xd7\x58\xb1\x2d\x81\xf6\x9d\x64\xbc\x15\xc6\x3c\xaf\x18\xfa\xc3\xc0\x68\x9e\x68\x1c\x84\x00\x41\x38\x17\x73\xb0\x8e\x78\xc9\xb6\xc9\x4b\xce\x30\x8a\x94\x36\x43\x92\x4b\xf9\x9f\xaa\xdd\xdd\xa7\x50\xd2\x4c\x97\xd0\xf2\x9c\x11\x3e\xda\x06\x82\x19\x69\xb2\x19\x01\xfd\xed\xc0\x3f\x54\xfe\x3b\x11\x99\xfa\x87\xb6\x43\x7a\x8c\x53\xb9\x25\xeb\x64\x8f\xbc\x7d\x7f\xa8\x7a\xc2\xd2\x6d\xf2\x09\x17\x49\x13\x67\xbd\x42\xc8\x9b\xf7\xce\x6f\x1b\x8f\x77\xed\x09\xbe\x93\x4a\x97\x6e\x44\xe6\x26\xba\x6c\xab\x0f\x27\xb4\xd8\x2b\x25\xe6\x01\xb2\x7c\xd3\x0a\xdb\x06\xa3\x08\x58\xb0\x4e\x48\xed\xa7\x14\x12\x4e\x6b\xee\xc8\xdc\x19\x6d\x87\x83\x52\xe7\xc1\x65\xd8\xe4\x05\xbd\x11\xa9\xd6\x2e\x2b\xd5\x83\x53\x13\xc1\xe1\xa1\xf2\xdf\x89\xc8\xd4\x3f\xb4\x75\x6e\xe0\xe3\xac\x83\xe4\xe0\x5e\x50\x20\x5e\x34\x0b\x08\x95\x67\xe8\x80\xcb\x77\xe2\x4d\x93\xcb\x80\xa7\x92\xec\xc9\xa5\x46\xd4\x7e\xfe\x1b\x33\x68\xe9\x27\x73\x35\x29\xde\xee\x81\x67\x31\xb2\x3d\xf5\xc2\x73\xfb\x59\x44\x1a\x36\xc1\x90\xf1\x70\x89\xd5\xee\x3c\x95\xcc\xad\xc7\xf7\xae\x93\xcd\x4e\x2c\x66\x59\x5a\xb6\x5b\x91\xd9\x2a\x05\xa5\xf6\x5e\xf5\x63\x7f\x58\x9f\x54\xc1\x5e\x65\x5c\x5f\xc6\x4e\x4a\xee\x30\x00\x45\x23\xe9\x30\x97\x9e\x89\xfb\xd1\x74\x1d\x7b\x24\x24\x20\x1f\x25\x27\x54\x9d\xb9\x2a\x49\xd0\x07\x56\x93\x84\x97\x1a\xc7\x13\x2c\x6a\xa6\x1f\x48\x57\xd7\xc9\xb1\x22\x1a\xcb\xb0\xd3\x83\x42\x8b\x82\x2e\x34\x10\x35\xc6\x75\xd2\xcb\xa3\x3c\xca\xcf\xa5\xa8\x84\x7f\x46\xf9\xf9\x52\x66\xaf\x56\x50\xaa\x46\xd9\x6c\x24\x1c\x95\xe3\x27\x7f\xec\x34\xe0\x8d\xc7\x70\x69\xd5\xa3\x3d\xd2\x72\xea\x1d\x38\x3f\xeb\xde\xfb\xed\x71\x9e\x2d\xa4\xd4\x2c\x37\x0b\x0f\x01\x38\x47\x3d\x73\xb6\x26\xcd\x4b\xd2\x06\xea\x2b\xe9\x38\xcd\x66\x13\xda\x71\xb1\xa0\x09\xe9\xa4\x08\x52\x15\x8a\xd2\x3a\xe1\x63\x43\x9e\x9c\x50\x54\xb2\x31\x79\xfd\xa9\xc8\x6d\xab\x4c\xc5\xf2\x34\x92\x42\x84\x6c\x66\x6f\xf3\x5c\x1e\xfd\xff\xb4\xa1\x0b\x2d\x9f\x53\x5b\x7f\xcb\xaf\x7f\x1b\xf0\xb1\xb6\x3e\x86\xee\xf7\x05\x32\xb5\x1a\x55\xa9\x28\x38\x22\x34\x1b\x42\x36\x39\xe1\x27\x0d\x86\xe4\xea\x36\x8f\xf2\x0d\xd7\x02\xa7\x39\x1a\xaf\x78\x31\x9d\x67\x74\xdb\x58\x1d\xdc\xdc\xdc\xc4\x37\xcf\x62\x5e\x8c\xbb\x67\x27\xdd\xdf\xf6\xf7\x5e\x6f\x6d\xac\x9f\x1d\xec\xff\x7a\xda\x7d\xbd\xf9\x7d\x3c\x29\xa7\xd9\x37\xaf\x37\xbf\x5f\x2f\x99\x28\x45\xe3\xa5\x3b\xe2\x05\x53\xe9\x9a\xbf\xe2\xcd\x1b\x74\xe2\xe4\x84\xfe\x23\xae\x77\xab\x4f\x0b\xd6\x53\xe9\x13\x5d\xed\xda\x06\x59\x27\x5b\x9b\x71\xe3\xd1\x74\xd2\x5e\x9f\x48\x18\x6d\xbb\x40\x91\x33\x0f\xe7\xb4\x66\xf3\xe9\x1e\xd9\x85\x34\x2b\x3a\xc3\xb2\xd3\xc8\x5e\xaa\xd9\x7c\xfa\x4b\x58\xcf\x01\xe8\x52\x60\xab\x2e\x92\xc0\x23\x68\xda\x21\x4f\xc9\x46\xbc\xf1\x5c\xca\xe1\x96\xbf\xad\xf9\x1e\x9a\xfd\x32\x93\xaa\x93\x0c\x20\x42\x5e\x0e\x51\x20\x47\x84\xe6\x0b\x1d\x0a\x39\x37\x24\x5b\xcc\xe8\x10\x08\xfe\x13\xeb\x5c\x0b\x7a\xd8\x0d\xd0\x97\x27\xf2\x7e\x12\x25\x19\x64\x74\x78\x05\xe4\x7c\x13\xca\x21\x53\xb7\xfc\x00\x59\x6e\xff\x70\xac\xfd\xe3\x58\x45\x8d\x4b\x4b\xd6\x0d\x0f\x2e\x64\x12\x0f\x31\x6b\x73\x19\x5e\xd9\x6d\xbf\xbf\x38\x88\xc2\x48\x8d\xe4\xd0\x22\x2f\x2a\x1c\xa0\x2f\x75\x76\xf4\x6d\xb6\x1d\xde\x1a\x44\x81\x95\x02\x46\x85\x77\x70\xa9\x2c\xe9\xee\x4a\x29\x06\xbc\x0b\x2c\x56\x04\x6f\x14\xb2\xde\x4f\xbb\x12\x07\x9f\xfd\xb8\xf5\x03\x79\x81\x0d\xc9\xe6\x56\xfc\xe3\x96\x56\x33\xcd\xf8\x4d\x5b\x02\x57\xb8\x0a\xc8\xbc\x29\xff\x88\xc8\x56\xfc\xad\x61\x46\xc0\x8b\xa1\x98\x83\x01\x16\xa1\xf2\x66\x02\xd7\x35\xe1\x51\x64\x74\x32\x6c\xb7\x37\xe2\xad\xcd\xad\xef\xc8\x13\x39\x8d\xde\xc6\x39\x80\xfe\x7e\xf3\xf9\x96\x2a\xd9\xc4\x92\x8d\xef\xb7\x74\xc9\xd6\x79\x27\x2e\xf9\xab\xf4\x23\x4b\xda\xcf\x42\x95\xc2\x4b\x89\xe0\xa0\x1a\x45\x94\x36\x27\x23\x22\x09\x9b\xb1\x1c\x0c\xa9\x39\xe6\x45\x37\x19\xd5\xd1\xd0\x0d\x73\x70\x2b\xfd\x1e\x2d\x18\x1e\x16\x78\x8e\x93\x7f\xb9\x5f\x14\x6c\x8c\xcb\xfe\x27\xa1\x78\xc5\x0c\x8f\x8d\x46\x29\xc4\x1d\xdf\xdd\x88\x37\x9f\x93\x75\x32\x9d\x67\x65\x3a\xcb\xd2\xf0\x45\xc2\x60\xf6\x4a\x5c\x4f\x0c\xca\xe6\x34\x9f\xcd\x4b\xcd\x2c\xc8\x29\x63\x4b\x74\x4b\x45\xe1\xb3\xfe\xa0\xb0\xe9\x6c\x42\x45\xfa\x4f\x56\x61\x8b\x9c\x11\x7f\xad\x07\x8f\x78\xf3\xb9\x4b\x77\xeb\x0e\xe9\xcf\x64\x23\x7e\x2e\x0f\x19\x6c\xa6\x16\x29\x9c\xb1\x48\x36\x46\xed\x67\xdd\x57\x1f\xbd\x4e\x19\x72\x5c\x74\x20\x78\x36\x2f\x19\x06\x9c\x99\x51\x70\x47\x0d\x45\x6a\xb2\x97\x2f\x30\xba\x2e\x58\xef\x4b\x26\xcc\x5d\x51\x7e\xcd\x8a\x9b\x22\x2d\x4b\x96\xff\xcf\xa1\x11\x5e\xb1\xeb\xf6\xcd\x4d\xe8\x19\xc2\x70\x87\x13\x9a\xe7\x2c\x43\x96\xd2\x47\xa9\x3f\x0d\xa3\x46\x34\x61\x7a\x67\x5c\xa1\x68\x15\xca\x8b\x01\x83\xdd\x87\xb7\x25\x8a\x1c\xc9\x6f\x83\x43\x7f\x0d\x99\xf6\x5f\x14\xe2\x50\xcb\xa3\x98\x4d\x97\x40\xf7\x9e\xf9\x61\x19\xeb\xf5\x3c\x66\xb4\x15\x1a\x26\xaa\xea\x99\xff\x41\x1a\xf3\xaf\x42\x5e\x96\x1c\xe3\x15\x91\xc2\x27\x43\x88\x1a\xc1\x81\xaf\x22\xc8\x1d\x92\x8c\xb7\xef\x5b\xe7\xe4\xc9\x2e\x28\x5a\x1d\xb0\xa1\x78\x54\x07\xba\x56\xde\xab\xcb\xa2\xf0\xac\x62\xd5\x1b\x0c\x21\x6d\x1c\x42\xed\x33\xe7\x0a\x38\xf9\x06\x29\xe4\x03\x52\xd6\x21\xe5\x92\xeb\xe3\x5f\x09\x2b\x9f\xee\x92\xf6\xe6\xc6\x06\x60\x85\xf7\xa5\x43\x9e\xfc\x8f\xe2\xaa\x1c\xd8\xd6\xf3\xe7\xe1\xc0\xd2\xda\x81\xdd\x0f\x83\xd7\xa2\xb5\xd6\x5c\x05\x35\x42\xc7\x13\x0c\x10\x08\xbe\x1a\x87\x42\x72\xcf\xe8\x84\xd3\xd6\x19\xe4\x44\xab\xb3\xe3\xda\xba\xd8\x78\xe6\x5b\x1b\x9b\xcf\xbd\x58\xe6\xfe\xf7\x95\x22\x97\x93\xfb\x05\x2e\x07\x84\x83\x4c\xf0\x07\x7b\xfb\x67\x17\xa7\x67\x7b\x67\x87\xfb\xa7\xda\x5b\x0a\x9c\xa0\x94\x4b\x0b\xb8\xe8\x38\xa1\xe9\x87\xb6\xb8\xbe\xd4\xad\xac\x0c\xbf\xde\x15\x7c\xe6\x15\xdb\x5c\x8b\x4e\xe9\x98\xe9\x74\x79\x61\x7d\xf8\x52\xa4\xd7\x2c\x39\x2d\x69\xc9\x5e\x15\x7c\x7a\x80\x19\x86\x96\x55\x09\xa1\x4c\xd3\x8f\x69\xee\x16\x18\x0f\x24\xa7\xac\x34\xf3\xea\xe7\xb7\x2a\x86\xf0\x5f\x8f\x8e\x7f\x3b\x0a\xd7\x28\xf7\x07\x8f\xcc\xa6\x0f\x1c\xed\xc2\xdc\x55\xa2\x59\xc6\x8a\xb0\xc0\xad\x61\x18\x51\xaf\x2c\x2d\x17\xe1\x98\x5e\x1d\x9f\xfc\xb6\x77\xf2\xf2\xe2\xe4\xe0\x55\x38\xb2\xd6\x7f\xfc\x07\x9a\x1a\xb6\x1c\x20\x05\x93\xa8\xf3\xa5\x5b\x13\xac\x94\x1d\xc6\xdb\x83\xb7\xc7\x2b\xf5\x0f\x48\x59\xb0\xaf\x34\x80\xc6\xad\x3a\xfb\xfb\xbb\x03\x77\x3c\xb2\xdc\x2d\xeb\xa9\xf3\x19\xbf\x32\xd9\xde\x24\x37\x55\xb3\x9a\x4d\x0d\xdf\xb2\x29\x97\x4d\xdc\x99\xfb\x89\x21\xc7\xac\x94\x38\x98\x0e\x45\xdb\xf8\x19\xda\xe7\x1f\x74\x5a\xbb\xde\xfc\x2e\xde\xdc\x04\x45\xc9\x80\x65\xfc\x46\xd3\x60\xdd\x4b\x2a\xc0\xcb\xd4\xb6\x0f\x15\xf6\x41\xf7\x92\xae\xfa\xc0\xb7\x00\x38\x1d\xf0\x6b\x86\x56\x04\xa6\xa9\x37\x2d\xd3\x43\xcf\x6e\xdb\x39\x04\x24\xf4\x28\x83\x9b\xa1\xd2\x0f\x2b\x65\x4d\x36\xfd\x72\xb5\x21\x63\x56\x3a\x46\x91\x90\x5d\xd5\xb6\xa8\xf9\x58\xdb\x0c\x5d\x03\x1a\x1b\xaa\xcf\xb5\x4d\x5f\x32\x01\xb9\x5a\xe0\x9a\xac\x6d\x6d\x6b\x58\x00\xef\xf4\xe1\x3d\x1e\x79\xcd\x9c\x72\x55\x19\x5f\x24\x4c\xb9\xad\x6d\xce\xbf\x1b\x67\x7c\xc2\x53\x51\x1e\x71\xcc\x7c\xa8\x91\x04\x8d\x38\x8d\xf7\x92\x36\xd4\x76\x0a\x40\xab\x06\x59\x85\x2b\xa1\x16\x82\xba\xf5\x51\x37\xbb\x5d\x92\x80\x67\x1f\xf4\x0f\x02\xa2\x8e\xc6\xd7\x9e\x94\xd3\xac\x63\x1d\x62\x95\xa3\x15\xb8\x19\xfb\x53\x0b\xac\x68\xd3\x7c\xc2\x8a\xb4\x64\x89\xed\x7b\x37\x58\xba\x76\x30\xb8\xce\x4e\x60\xed\x5e\x05\xf1\xf8\x71\x1d\x60\x39\xa9\xe6\xd1\x90\x15\x97\xb5\x0a\xd8\x5d\xd9\xc6\x08\x0c\xca\x12\x58\xe0\xf4\x42\x7c\x6d\x9e\xa3\x9c\x61\x2d\x9e\x3a\x43\x57\x70\xe5\x3f\xfa\xc1\xa0\xb6\x49\xa5\x97\x4e\xe8\xc6\x0d\xef\x43\x30\x63\x35\x7f\x1c\x6e\xc3\x62\xd8\x97\x0f\x6d\x0e\x5d\xdb\xaa\x71\x6e\x75\x0c\x19\x4c\x42\x5b\x5d\x3f\x7d\x9a\x06\xf8\x02\x8e\x11\x50\xc9\xb7\xb6\x86\x20\x1d\xde\x0d\x8b\x26\xd1\x8f\x1f\x93\x47\x6d\xb3\x3d\xf2\xa7\xf9\x61\x3d\x22\x1e\xb5\xfd\xd1\x3f\x7e\xec\x4f\xc7\xad\xe9\xaf\xce\xe3\xc7\xfe\x72\x61\xcd\x4a\x98\xe5\xc4\x25\x1f\x4d\x74\x23\x5c\x27\x34\xf7\x76\xe6\x48\x88\x72\x54\xb0\xd6\xdf\xc6\x9f\x64\x44\xd3\x6c\x5e\xe8\x00\x33\x05\xa3\xc9\x3a\xcf\xb3\x85\x4e\xb8\x94\x32\x2f\xde\x70\x6d\x32\x22\xbf\xe3\xc8\x19\xb4\x17\xbc\xd1\xf5\x64\xa8\x31\x2c\xaf\x38\x0a\xfb\xb0\xf5\x0d\x50\x31\xf5\xaf\x3b\x7c\x3b\x2a\x6b\xcf\x23\xf2\xe4\x6b\xfe\xd7\x2f\xc2\x34\x40\x6f\xd3\x61\xc1\x05\x1f\x95\x64\x9f\x17\x33\x5e\x60\x5e\x65\x59\x4f\xfe\xef\x1d\x2b\xa6\xa9\x10\xca\xf1\x7e\x2e\x98\x94\xa1\x66\x8b\x88\x4c\x79\x92\x8e\x16\x91\xbc\x22\xbb\xbc\x90\x3c\x87\x4a\x4d\x85\xae\x0e\x12\xe0\x8d\x14\xd4\x24\x9e\xd3\x7c\x21\x61\xcd\xe6\x85\x94\x03\xf0\xd1\x9a\x17\xf0\x2f\x9f\x97\x64\xc4\xc0\x32\x7d\xc2\x0a\x36\x58\x90\x71\x41\x73\x48\xab\xa9\x46\x70\xf6\xeb\x01\x39\x3d\x7e\x75\xf6\xdb\xde\xc9\x01\x39\x3c\x25\xef\x4e\x8e\xff\x76\xf8\xf2\xe0\x25\xe9\xaf\xed\x9d\x92\xc3\xd3\xfe\x1a\xd9\x3b\x7a\x49\x64\xb5\xbd\xf7\x67\xbf\x1e\x9f\x90\x97\x87\xa7\xfb\x6f\xf6\x0e\xdf\x9e\x92\xbd\x37\x6f\xc8\x6f\x7b\x27\x27\x7b\x47\x67\x87\x07\xa7\xe4\xb7\xc3\xb3\x5f\x25\xc8\x93\x83\xd7\x7b\x27\x2f\xc9\xd9\x31\x39\xfb\xf5\xf0\xd4\x81\x7e\xb4\xff\xe6\xfd\xcb\xc3\xa3\xd7\xd0\xf0\xf0\xed\xbb\x37\x87\x07\x2f\x5d\x00\xc7\xaf\xc8\xdb\x83\x93\xfd\x5f\xf7\x8e\xce\xf6\x7e\x39\x7c\x73\x78\xf6\x77\x09\x4e\x76\xff\xea\xf0\xec\xe8\xe0\xf4\x34\x26\x87\x47\xe4\xe8\x98\x1c\xfc\xed\xe0\xe8\x8c\x9c\xfe\x2a\xe1\x38\x23\xfb\xe5\x80\xbc\x39\xdc\xfb\xe5\xcd\x81\x64\x97\xc8\xde\xd1\xdf\xc9\xe9\xbb\x83\xfd\xc3\xbd\x37\x11\x79\x79\x78\x72\xb0\x7f\x16\x49\x78\x87\x47\xea\x07\x39\x3e\x21\xfb\xc7\x47\x98\x8c\xea\xec\x70\xef\x0d\x79\xb9\xf7\x76\xef\xb5\x1c\x08\xb6\xd6\x3f\x7f\xfb\x75\xef\xec\xf4\xf8\xe0\x6f\x07\x27\xe4\xe4\xe0\xf4\xfd\x9b\x33\x39\x87\x57\x27\xc7\x6f\x25\xb8\x37\xc7\xa7\x30\xf2\xf7\xa7\x07\x11\x79\xb9\x77\xb6\x27\x5b\xbf\x3b\x39\x7e\x75\x78\x76\x1a\x91\xdf\x7e\x3d\x38\xfb\xf5\xe0\x44\x8e\x7b\xef\x88\xec\xed\x9f\x1d\x1e\x1f\xc9\xda\xfb\xc7\x47\x67\x27\x7b\x72\x10\x47\x07\xaf\xdf\x1c\xbe\x3e\x38\xda\x3f\x20\xc7\x27\x12\xe0\x31\x34\x38\x3b\x3e\x39\x3b\x3c\x7e\x7f\xaa\xda\x44\x64\xef\xe4\xf0\x54\xf6\x7b\xfc\xfe\x4c\x02\x38\x06\x98\xfb\xc7\x47\x47\x07\x08\x54\xae\x3e\x2c\xc6\xfb\x53\x0d\xe9\xdd\xc1\xc9\xab\xe3\x93\xb7\x7b\x00\xfb\x95\xbf\x1b\x80\x00\x5f\x15\xf7\xa5\xc4\x56\x80\x5b\x05\xba\xdf\x90\x13\x36\xca\x74\x00\x88\x69\x2a\x98\xaa\x20\xff\x27\x29\x17\xfa\x7f\x58\xb2\x6e\x3c\xaa\x92\x88\x0c\x24\x9d\x2b\xf0\xe4\x87\xf5\x14\xfb\x22\x7c\x26\xe8\xf3\x67\x5d\x5f\xfe\xd7\xfe\x44\x8c\x7b\xdb\x36\xe9\x9d\x93\x5b\x13\xad\x91\x8f\x30\x65\x27\xa4\xa4\x37\xef\x46\xaa\x4f\x92\xc4\xa6\x1d\xd9\x25\x83\x1d\x72\xdb\x09\x40\x57\xdb\x98\xbb\x66\x46\xd2\x5c\x16\xad\xec\x7c\x33\x88\xc8\xac\xd3\x21\x49\x6f\x26\x19\xf6\x41\x6f\x76\x0e\x11\x9a\x0b\x8f\x91\xf6\xe6\x8f\x9d\x42\x15\xac\x28\xff\x17\x6a\x65\x2e\x8c\xf7\xd2\xb2\xa5\x74\x40\x79\xf3\xba\xb8\x80\xd8\xd1\x10\xc4\xd5\xf3\xe2\x24\xc9\x0e\xb9\xd5\xd5\x13\xc7\x0f\x76\x97\x0c\xdc\x18\x32\x7e\xfe\xc3\x41\x87\x6c\x93\xf6\xc5\x85\x5f\xdf\xfe\x8a\xc0\x8c\x4a\x76\xaa\xa6\x15\xcc\x0a\x6c\x4a\x55\x22\x26\x17\x4b\x9c\x69\x39\x9f\x9b\x9d\xb3\x4c\x32\xa7\xd2\x69\xe9\xb1\x0a\x22\x42\x47\xad\x88\xd4\xf9\xa5\x20\x0f\x91\x1b\x7f\xad\xc2\xbd\xf5\x08\x11\x15\x77\xad\xa0\x82\x8f\x25\xe2\x1e\x58\x22\x10\x4b\x4a\xc4\x12\x21\xb1\xc4\x05\x7e\xeb\xfe\xd0\x57\xa3\xa9\x71\x1b\x60\x93\x5e\x86\x46\xb7\xab\x9a\x2d\x70\xd6\xb0\x60\x02\x92\xec\x32\x67\x09\x80\xb3\x53\xb2\x6c\x11\xb0\x5f\x5f\x36\x59\x79\x36\xad\xca\x6d\xd6\x21\x3f\x91\x8d\x8e\x3b\xcd\xba\xb5\x90\x5d\x08\x1d\x73\xc8\xf1\xfb\x5e\x26\x91\x55\xbc\xc1\x3b\xb5\x98\xa1\xf2\xcc\xce\xee\x90\xef\xda\xa2\x83\x58\x32\x0b\x9d\xfb\x02\x5c\x90\x43\x75\xe6\x07\xfa\xbe\x9f\xc8\x86\x1c\x74\x65\x91\x74\x5e\xcb\x43\x61\xb3\x4e\xda\xa5\x92\x4d\x3b\x21\x78\xb5\x42\xbd\xf4\x5c\x2d\x92\xfc\xab\x1e\x67\x3c\x7c\x59\xb2\xef\x09\x1b\x4a\xde\x85\xb5\xd5\x1f\x98\x05\x54\x79\x69\x1b\x9e\x2e\x40\x8a\x61\xcd\x31\x8a\x08\x98\x70\x2a\xbb\x2a\x84\x40\xb6\xa1\xb5\x4b\x43\xf0\xf7\x5d\xf2\x70\xdb\x19\x41\x47\x41\x89\x48\xe2\xa1\x84\xc2\x02\x75\x19\x05\x5e\xad\x0e\x9a\xa8\x0a\xb1\x9e\x69\x15\x35\x60\xe4\x61\xb5\x3b\x16\xc4\x0c\x05\x74\xca\x1e\x42\xd9\x86\x8e\xa9\xa4\xc4\x9f\x9f\x51\x62\x59\x5f\xc7\x63\x93\x78\x75\x01\x57\xe4\x40\xda\x7a\x0d\x93\x76\x21\xe7\x3e\x24\x3f\xab\x9f\xde\x28\xe0\x9b\x57\xd6\x81\xd8\xdd\x45\x78\xcd\x60\xfb\xc7\x8f\x49\xe1\xa0\x61\x43\x6a\x51\x05\x39\x52\x50\x96\xe0\x0d\x3c\x61\xb4\xe1\xff\x1e\x4a\x74\x8f\xec\x54\x1c\x64\xd1\x09\x1e\x02\x47\x5a\xb5\xaf\x9f\x6c\x1b\x7f\x04\x16\x6c\x47\xdd\x4c\x4b\x46\x32\x65\x25\x4d\x68\x49\xdb\xfa\x8f\xbf\x4a\x10\xfa\xc7\xdf\xf4\xf3\xea\xef\xc0\x1c\x0d\xab\x0e\x73\x74\x5a\x7d\xbf\xe6\xb2\xb1\xdc\xb5\xb2\xf4\x86\xa6\x25\x2b\x80\x82\xef\x15\xe3\x88\x5c\x98\xa3\x16\x91\x77\x11\x19\xb3\x9c\x85\xeb\x6c\x9a\xd3\x84\xcf\x4a\x63\x68\xeb\x18\xc2\x80\xd5\x99\x61\x94\xde\xa1\x31\xcc\x9c\x91\x6d\xb8\xa5\xdf\x39\x96\x36\x2a\xb0\x39\x36\x87\x3f\xf5\x3b\x33\xa6\xa8\x08\xf6\x16\x32\x31\xbd\x93\x98\xd7\x7e\x47\x76\x35\x4b\xd8\xe9\x54\x21\x46\xa4\x60\x72\x8d\xc3\x6b\xda\xbc\x8a\xcf\xb3\x51\x9a\x65\x2c\xb1\xe3\x07\xe1\x95\x88\x92\xcd\xda\x66\xda\x71\xce\x3e\xea\x29\xca\xf1\xb8\xc2\xa5\xea\xa1\x0d\x83\xf5\x2f\x50\xc7\xd4\x15\x83\xf7\x2d\xef\xa5\xd7\x5f\x03\x5b\xf0\xfe\xda\xf9\xef\xe8\x0b\x60\x62\xe2\x14\xb5\x9e\xf3\xac\x8c\x13\x8c\x35\xa1\x57\x57\x95\xaa\xe1\x6c\xab\x3d\xf4\x4a\xe3\x72\xc2\xf2\xb6\x59\xa0\xc8\x4c\xc2\xdd\x10\xe0\x56\x64\x87\x76\x16\xa0\x3a\xd0\xeb\x66\x19\x83\x00\xad\xe4\xe6\xf5\xce\x3b\x1d\x5c\xd9\x8e\xa5\x6d\xb7\x77\x22\xab\x81\x6e\xe1\x0e\x78\xb2\x08\xee\x0b\xc9\x72\x7f\x22\x19\x1d\xb0\x6c\x5b\xde\xb7\x02\x42\x98\xbb\x1c\x1f\x9e\xcb\xde\xc6\x39\x79\x4c\x36\x3b\xca\x0c\xbf\xec\x6d\x9e\xef\x98\x9b\x0c\x7e\xdc\x46\x72\xb7\x84\x64\xfd\x23\x02\xea\x7b\x29\x03\x44\x64\x14\x91\x45\x44\xca\x88\x8c\x43\xf2\x37\x86\xbe\xe5\xcc\xb6\xc9\x35\x2b\x06\xed\x0d\x30\x84\x55\x9b\xab\xca\x36\xa1\x0c\x5b\x98\xc2\xad\x0e\x74\x77\x67\x90\x99\xf6\xb8\x17\x04\xcf\x39\x0f\xf8\x59\xe2\x06\x91\x20\xb7\x1d\x77\x98\x66\x31\xa1\xcf\xdc\xa9\xed\x18\xbf\x39\xa5\xb0\xc3\xbd\x3c\x22\xd7\xe7\x90\x30\xc6\xee\xbf\x8f\x75\x7c\x16\x9c\x33\xb9\xc2\xa3\x4e\x6d\x66\x8e\xfe\xda\x6b\x83\x31\x4e\x98\x4b\xf6\x91\x0d\xe7\x25\x98\xc3\xaf\x75\x3c\x36\xe3\x66\x92\x66\x8c\xb4\x2f\x3a\x4a\xbd\x54\xc3\x06\x8d\x90\xe3\x06\x71\xac\x8d\xa1\x56\x70\x7b\xb7\xc8\x0b\xb2\xe8\xd9\xd5\x3e\x87\x64\x26\xf2\x1b\x96\xeb\x63\x07\x24\x05\x5a\x7a\xb5\x81\x87\x2c\x91\x51\x5a\x74\x22\x02\x46\xdb\x0b\x40\x5d\xad\x6e\x23\xbb\xa6\x82\x44\x92\xde\xa6\xc4\x6d\x79\xe8\x3a\x55\x36\xda\x1d\xf2\x02\xb9\xc1\xb2\x43\xb8\xe4\x08\x7b\x66\xc4\x11\x51\x07\xb1\xca\xfd\x8b\x9b\x14\x28\x02\xd4\xad\xe1\x08\x09\x64\x90\x13\x8c\x6c\x6c\xe3\xbf\x9b\xdb\x04\x57\x63\x87\x0c\x0a\x46\xaf\x2a\x10\x4d\x8b\x6f\xb7\xc9\x45\x0c\x87\xe6\xe9\x53\x73\x0c\x3e\xe9\xe8\x95\x30\xaf\x88\x24\x10\xe1\x06\xb2\x40\x38\x12\x66\x05\xd6\x73\x0f\xd6\x02\xb7\x43\x1e\x28\x9c\xe9\xc6\xf9\x0e\x3c\xa4\xa6\xf9\x9c\x35\x03\xf9\x7e\x1b\xab\x5f\xc4\x7c\x26\xe2\x19\x9f\xb5\x3b\x3b\xe4\x22\x96\x07\x52\xff\x5a\x0a\x44\xbd\xbb\x6d\xd7\x7d\xd3\x7b\x80\xdb\x87\x40\x23\x82\x5b\x69\xcc\xe9\x80\x91\x2e\x7b\xa5\x9b\x5e\x0b\x36\x1d\x97\x1f\x4e\xe7\x77\x98\x37\x47\xff\xdc\xea\xc8\xb3\x73\x81\xca\x62\x33\x3a\x9f\x68\x86\x63\xb0\xad\x81\x6f\x6a\x3f\x82\xec\xae\x6d\x58\x31\xf2\x33\x41\x32\xf5\x18\x57\x90\xfc\x44\xca\xde\xb3\xf3\x0e\x76\x83\x4b\x6c\x57\x17\x77\x78\xd5\xde\xbe\x83\x10\x4c\x0a\xc6\x4f\x40\xf1\x7c\xa8\x48\x03\x7d\xf4\x59\x0e\xbc\x0c\x41\x6e\x55\x40\x6e\x9d\xef\xe8\x1d\x9d\x8b\x89\xa4\x1b\x2b\x82\x06\x58\x2e\x2e\x34\xd5\x5e\x11\x45\x2a\xbd\x01\xb2\xc9\xeb\x04\x0f\xb3\xbd\xb9\xfc\xae\xfc\x5b\x19\x11\xfa\xbb\x88\xb0\x73\x44\xf4\x0d\x79\x3d\x8f\xd2\x9c\x66\x99\xbc\xe6\x25\x5d\x2a\x55\x71\x48\x1e\xf5\x81\x7f\xae\xc9\xa4\xda\xc6\x9a\xb3\x07\xe4\x0a\x31\x40\xc7\x10\xd5\x87\xb1\x2c\xe6\xee\x59\xac\xe5\x5f\x51\xf9\x81\x9a\x94\x5f\x52\xb4\xe1\xdd\xf5\x15\x2c\xe4\x85\x13\x8c\x88\x47\x64\x1a\x91\xab\x88\x5c\x6d\x05\xcc\xec\xd5\x16\xe0\x8e\xb1\x29\xed\x10\x59\x42\x2c\x5d\xa9\xe7\xf8\xb9\x04\x15\x91\x4f\x5e\x32\x19\x78\xe0\xf6\x93\xef\xb8\xd7\xd7\xb4\x77\x75\x0e\xbc\x8e\x62\x0b\x40\x01\xf4\x35\x86\xc8\x7b\x57\xe0\x02\x03\x1d\x20\xe8\xa5\x3a\x30\x59\x72\x5a\xd2\xa2\x3d\x8d\x08\x77\xd9\x60\x4f\x3b\x31\x45\x31\x6b\xa6\xfc\xf5\x74\xca\x27\xb8\xb3\x1f\xad\xa4\xb3\xe0\xa8\xa0\x09\x36\x4a\xcd\x74\x76\x27\x73\x84\x46\x3f\x6d\x1e\x70\x43\x90\x3c\xf3\x4e\xae\x22\x60\x29\x22\x32\x05\xdf\x67\x49\x77\x7a\xe2\x3c\x52\xef\x5f\xee\x32\x4f\xcd\xf5\x36\x55\xc3\xef\x78\xdf\xb9\x23\xda\x70\x37\x90\x41\x7f\x0d\x2d\xd1\x1c\x81\xc6\xbb\xc7\x90\x79\xf2\xe3\x4e\xd7\x5c\x9f\x00\x1f\xa4\x5c\x0d\xbd\x43\x38\xd9\x35\x11\x76\x83\x26\x95\x43\x85\x73\x4b\x9f\x3e\x35\xd7\xda\x23\x1e\xdc\x69\xe6\xc4\xda\xe2\x3a\x7e\x06\x83\x59\xe0\x16\x4b\x86\x26\xe7\x25\x81\x85\x1c\x64\x2c\x86\x90\x7e\xfd\xb5\x30\xde\xa1\xaa\xa6\x50\xd4\x70\x3c\x4b\x55\x66\x34\x91\xb8\x90\x07\xfb\x3b\x5d\x69\x7f\x79\x85\x69\xf4\x36\xeb\x91\xdd\x4d\xbe\xe3\x42\x97\xfb\x6e\xf6\x37\x22\x45\x44\x68\x01\xf9\x79\x23\x62\x49\x6a\x85\x2b\x53\x0c\x5b\x3b\x77\xb3\xc9\x7d\xfe\x4c\xf2\xf5\x75\x79\xaf\x2a\xce\x49\x02\x4a\xb5\x14\xa0\x38\x26\x5a\xe0\xbd\x50\x98\x1c\x99\xa1\x02\x52\x53\x5f\xb9\xf4\x92\x5a\x40\x9e\x56\x8c\x69\xba\xad\x42\x9b\x7a\x6c\xaa\x26\xc5\x9e\xde\xaf\x89\x8d\x04\xa5\xc5\xa3\x02\x65\x26\x79\x19\xcb\xd5\x4d\x3d\x86\xb0\xa3\xd7\x23\xed\x34\xeb\x4f\xed\x05\x00\x3a\x3a\x4d\xe0\x55\x8c\x1e\x67\x78\xa1\x7c\x4b\xef\x54\x85\x60\x76\xe1\x76\x1d\x1d\x32\x5b\xe3\xbc\x56\xd7\x07\x0a\x73\xc7\x0a\xad\x68\xa1\xdf\xe5\x15\xa6\x79\xa1\x65\x3b\xa1\x98\xb3\xea\x30\x55\x12\xe4\xba\xc1\x0a\x64\x7f\x95\x4e\x34\xcd\x1a\x75\xe5\x69\xa6\xf4\x9f\x82\x3c\xf5\x95\xe3\xba\x5a\x05\xb6\x9c\x11\xe6\x0c\x14\x9d\x08\x82\x30\x6c\x78\x8b\xa2\x41\xd6\x6a\x69\x69\xa0\x82\x8f\xc8\x07\x04\xf0\x01\xc6\x68\xc6\xf6\x81\xfc\x44\x3e\x64\x3b\xe4\xc3\xd3\xa7\x11\xb9\x0a\xa0\xc1\x5a\xf5\xae\x20\xdd\x74\xef\xc3\x79\xb8\x7e\xc5\x9d\x4f\x2f\xa0\x97\x01\x51\x2c\xd4\xb1\x4e\x52\xe1\x2a\x57\x54\x55\x79\x7f\xc3\x5b\xcb\xb5\xa4\x81\x11\x54\xeb\x28\x7d\x8b\x85\x76\xa7\x36\x48\x2c\xf2\xe1\xeb\xaa\x94\xed\x2a\x85\xea\x34\x42\x40\x43\x14\x85\x01\x18\x87\xa5\xae\x53\x2f\x01\xd6\xd5\x6d\x22\x8a\x9a\x16\x8d\xef\xa5\x5f\x88\x48\x1a\x91\x7f\xa8\x5c\xe2\xfe\x12\xa6\xf0\xca\x10\xa1\x0c\xdc\x5f\x93\x14\x08\xa2\x28\xa9\xdf\x4a\x24\xb4\x05\xfa\xf0\x4b\x98\xbd\xba\x91\x9f\x37\xa5\x4c\x55\x22\x78\x44\xd2\x65\x12\x38\x58\xd0\xf4\xf2\xf3\x0e\x49\x7b\xb9\x0f\xcb\x95\xc5\x41\x75\x86\x0a\x2f\x37\x2b\xb2\x7a\x3e\xfc\x07\x12\x4e\x90\xd5\x23\x22\x4b\xcf\x3b\xe0\x13\xf4\xf9\x33\x68\x82\xa6\xac\x2d\x3f\x69\xbd\x5a\x9d\x24\xef\x56\x0b\x14\x55\xbd\xfc\xbc\x7d\x5d\x55\x4a\x09\x56\x96\x19\x6b\xff\xa3\xb7\x71\xde\x7b\x26\xef\x04\x5f\x3b\x15\x68\xa6\x60\x2e\x71\x45\x3d\x68\x31\x58\xcd\x2e\x36\xba\x2a\xac\x1c\x5f\xfb\x2a\x29\xab\xda\xdb\xf6\x46\xb0\x75\x1e\x91\xa2\x53\x37\x33\xd5\xd0\x55\x55\xc2\x54\xf5\xe6\x6b\xc7\x98\xfa\x55\x01\xc5\x5b\xb5\xa9\xc2\x93\x65\x6d\xd5\xe8\x46\x6a\x45\x41\x53\xd1\xbe\xee\x44\xe4\x1f\xb1\x98\xa4\xa3\xb2\x0d\x7f\x6a\xf6\x45\x41\x86\xb9\x6c\x9c\x47\x04\xfe\xd8\x3c\x5f\x41\x2b\x0d\xd8\xf8\x92\x65\x6c\x0c\xe7\x36\xe4\x01\xd3\x88\xcc\xbe\xec\x10\x44\x0e\x2e\xa2\xf6\x12\x2f\x32\xd4\x2b\x2d\x39\x1f\x75\xca\xa9\x7b\x1e\x8d\x88\x8c\x60\xd1\xf0\x4c\x70\xf9\xcf\x8b\x86\xa3\xd1\x96\x62\xd8\xa3\x59\x87\xbc\xb0\x1c\x9e\xa6\x7a\x5c\xe1\xae\x66\xf3\x72\xc5\x20\xe9\x51\x93\x5b\xb2\x4d\x46\x12\xb4\x04\xb9\x4d\xae\x77\xb0\x64\xc5\x55\xff\x5b\x95\xed\xfe\x53\xa8\xe1\x14\xd6\xa4\x96\x1a\xb9\x6b\xaa\x79\x74\xf2\xc2\xf2\x71\x52\x90\xe2\x96\x6d\xd4\xa2\x43\x95\x71\x7c\xe1\x89\x15\xdb\x35\x5c\xa4\x44\xe0\xff\x09\x72\x5a\x63\x70\xe0\xd0\x53\x07\x63\x3c\xf3\x8c\xbb\xa9\x69\xf5\xf1\x80\x5c\x2b\x50\x70\x6e\xd5\x81\x0e\xaa\x45\xe4\x1a\x58\x46\xf9\xaf\xf7\x7a\xb1\x84\x26\x54\x40\x24\x8a\x48\x84\x44\xd0\x12\x3f\x25\xfa\x5e\xbb\x8f\x25\x06\xdd\xaf\x35\x7e\x27\xd8\xb5\x99\xc2\x0a\x6f\x5a\xf4\x8a\x9d\xa9\xd0\xfd\x2a\x24\xf3\x90\xf3\x2b\xd0\xfc\xd3\x9b\x00\xb1\x6b\x05\x7c\x39\xa2\x7a\xc9\x5f\x03\xea\xaf\x15\x14\xe8\x89\x19\x70\x41\x6f\x70\xa4\x2a\x20\x33\xc1\xaa\xb1\x2c\xdf\x95\x5f\xab\xaf\x3f\x58\x23\xe0\x9d\x50\xb9\x21\x58\xf9\x16\x2c\xf6\x74\x46\xd8\x3b\xf4\x1b\x2e\x67\xd5\xa8\xb3\x70\xc4\xf8\x7a\xe5\x85\x5e\x7b\x4f\x49\xd1\xd4\x0d\xef\x39\xf0\xc0\xb7\xf1\x4e\x2e\x10\xe3\xd6\xa2\xf2\x81\x27\xc1\x4e\x4c\x79\x22\xd1\x7b\xca\x93\xf8\xe2\x82\x09\x9c\xbe\x95\xca\x79\xe2\xd1\x0b\x7c\xe1\xf1\xed\x2b\x34\x14\x93\x61\xc9\x86\x04\x06\x95\x86\xec\x12\x54\x2a\x75\x4a\x8d\x95\x74\x1a\x53\x9e\x44\xe4\xaa\x46\xab\x81\xc3\x01\x0b\x45\x59\xc1\x0c\xa9\xba\x93\x6e\xd5\x8a\x20\x82\xdf\xee\x62\x6b\x71\x19\x35\x3c\x7f\x25\xf5\x0d\xd2\xb0\x9a\x2f\x64\x09\xd9\x86\xd7\x63\xd4\x27\x43\xc1\xed\x5d\x5d\x0e\x33\x2a\xc4\xbb\x22\xbd\xa6\x25\x7b\x95\xb2\x2c\x79\xcd\xe4\x4c\x86\x2c\x85\x74\x60\x33\xfc\xf2\x96\xce\xc2\x7b\xc3\x7e\x91\x0b\x6a\x9a\x74\x02\x35\x48\xfd\x45\x42\xcb\x92\x4d\x67\x2a\x72\xf0\x98\x95\xba\x1f\x32\x92\x43\x20\x1c\xc3\x90\x6b\xde\xcb\xbd\x52\xc2\xa3\xe6\x0c\x63\xec\x8c\xfc\x4e\x09\xa2\x32\xef\xd3\x86\x79\x3b\xbe\xc8\x7f\xcc\xf4\xc5\x17\x4d\xdf\xe9\x5f\x78\x23\x0f\xf4\x11\xee\x5b\xb7\x5d\x13\x37\xd4\xb4\x31\x27\x33\x31\xa4\x4b\x91\xa5\x03\x37\xdb\xc2\x13\x42\xc5\xd2\xec\x4e\x9f\x48\x2a\xe9\x5b\x4a\xf3\xd2\x66\xdc\xc4\x60\x5b\x1f\x44\x97\x0d\xa7\xf4\xdb\x8d\xad\x75\x3a\x10\x65\x11\x36\x7c\x79\xf0\x6a\xef\xfd\x9b\xb3\x8b\xc3\xa3\xb3\x37\x17\xfb\xc7\x47\xaf\x0e\x5f\xcb\xde\xf6\x8f\x4f\x0e\x2e\xea\xbe\x55\xc1\xa7\x79\x99\xb5\xea\xd2\x3b\xe8\x21\x1d\xe6\x65\xa6\xb3\x43\xc9\xca\x36\x74\xb1\xae\x01\xc5\x11\x69\xf5\x70\x92\xb2\xc1\x39\xd9\x87\x04\x88\x92\xb7\x19\xa5\x79\xa2\xfd\x07\x13\x72\x29\x2b\x5f\x9a\xec\x62\x2d\xf2\xd4\xee\x77\xeb\x27\xd9\x56\xe7\xc6\xfa\x99\xe4\x8c\x25\x02\xb3\x8c\xa5\xa2\xd4\xae\xab\x36\xdd\x19\x24\xd4\x2e\x8b\x05\xe6\xf5\xbf\xf5\x34\xe1\x75\xb3\xdf\xb5\x86\x7d\xe6\x0f\xc9\xd3\x34\x2d\x57\x47\xde\x07\x72\xe2\xc6\x6e\x7c\x5b\xa5\xa7\x7a\x55\xd0\xb1\x94\x43\x31\xa4\x93\x09\x43\xa3\xd3\x4d\xe2\xea\xfe\xd7\xdb\x37\x2a\x79\xdc\xab\xfc\x12\xcc\xb3\x55\xaa\x52\x26\x48\x0a\xd3\xb1\xd9\x36\x6f\x26\xe9\x70\x42\x66\x54\x08\x15\x90\x53\x4b\xba\xe4\x72\x46\x8b\x52\x5c\xc2\x61\x98\x8f\x27\x11\xc1\x81\xa7\xf9\x98\xcc\xf3\xf4\x1f\x73\x06\xce\x08\x72\x91\x28\x40\x28\xca\x48\xfe\x9a\x15\xec\x1a\xa3\xf2\x3d\x21\xfd\xb5\x03\xf9\x0d\x1c\x21\x31\x0c\x0e\x78\x21\xa8\x24\x95\x13\x7a\xcd\x08\xd5\xc0\xfa\x6b\x57\x6c\xd1\x5f\xeb\xaf\x29\x94\x05\x5d\x96\x97\xe3\xaa\x3a\x39\x3f\xd1\x95\x35\x1c\x81\x81\xbe\x07\xb8\x7f\x65\x0b\x71\xc6\xdf\xc9\xa9\xb4\xab\x00\x42\x7f\x30\xcb\xaa\xc1\xe4\x3d\x47\x86\x2f\xc9\xb4\xe4\x82\xae\x74\xde\xc6\x2d\xdd\x57\xb9\xf2\xe2\x92\xa3\x56\x09\xbb\xee\x38\xf9\x59\x6e\xe1\xec\x57\x3c\x65\x1b\xa3\x7e\xef\xd6\x47\xfd\xae\x38\x1d\x18\xe7\xda\xb8\x3b\xfc\x20\xba\x40\x1f\x62\xdb\x2e\x9e\xa6\x79\xfc\x01\x3d\x6e\xdd\xc4\x16\xab\xc1\x49\xd8\x35\xcb\xf8\x4c\xce\xd5\x00\x79\x70\x68\x78\x70\x68\x78\x70\x68\xf8\x9a\xff\x3d\x38\x34\x3c\x38\x34\x3c\x38\x34\x3c\x38\x34\x7c\x85\xc9\x3e\x38\x34\x3c\x38\x34\x3c\x38\x34\x3c\x38\x34\x3c\x38\x34\x2c\x79\x94\x79\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\x78\x70\x68\xa8\x3a\x34\xfc\x39\x46\xcd\xeb\xa9\xf8\x5a\x76\xcd\x12\x54\xa3\x69\xb3\xa3\x40\x3e\xfb\xfb\xbb\x83\x9d\x7e\xee\x5c\x96\xb2\xc4\x26\x93\x00\xd3\x7d\xf9\xdf\x13\x72\x42\x6f\xc0\xda\x5f\x17\x74\xf1\x0f\x59\xbf\x07\xff\xa7\xbf\x96\x01\x0b\x91\x21\x21\xdc\xc0\x14\xcb\xa6\x6c\xa7\x0a\xf2\x6f\xb4\x48\x25\xe5\x25\x37\x5d\x0e\xa9\x68\xd1\xfc\x3c\x22\x2c\x1e\x93\xcb\x6b\x5a\x5c\x4a\x8a\x75\x89\xd2\xb1\x20\x94\x7c\xba\xa6\xc5\xed\xe5\x92\x11\x68\x81\x11\x87\xa0\xb2\x42\xdb\xc2\xe5\x63\x50\xe9\xfe\xd5\x28\x96\xf4\xa2\x75\x9d\x12\xbc\xca\x24\xad\x8b\xee\xe8\x21\x01\xc4\xbd\x0b\xbe\xac\x85\xd0\x9f\x21\x74\x2c\xb8\x03\x76\x99\x4e\x57\x80\x2d\x6b\x21\xec\x6f\x11\x36\x16\xdc\x01\x5b\x30\xb0\x73\xb9\x13\x3a\xd6\x43\xf8\xcf\x11\xbe\x2e\xba\xa3\x87\x59\x36\x2f\x68\x76\x77\x0f\x58\x0f\x7b\xf8\x0e\x7b\xd0\x45\x35\x3d\x40\x9a\xf3\x19\x17\x22\x85\x6e\xd2\x72\x92\xe6\xba\x2b\x8d\x16\xb1\xa9\x7d\xa6\x10\xad\x9c\x30\x72\xf9\xcd\x25\x11\xa8\x7b\x2d\x27\xb4\x24\x37\x69\x96\x91\x01\x23\x90\xa7\x3f\x2d\xe7\x92\x20\x61\x52\x7b\x70\xba\x99\x3b\x70\xea\x46\xcd\xe7\x79\x82\x83\xfe\x5e\x0d\x1a\x4b\x6a\xc6\xfc\x5f\x6f\xdf\xac\x67\xe9\x15\x23\x25\x1d\x2f\xdb\x48\x3a\x46\x80\x3f\xa8\x7d\x94\xbf\xe5\x19\xef\xc0\x19\x86\xf7\x46\xf8\x43\x72\x07\xe0\xa8\xe1\x9c\xfb\xd3\xbf\x1e\xbc\x39\x38\x3b\x3e\xba\xa8\x12\x00\xef\x93\xa1\x04\x5e\x69\xcf\xff\xe5\x1f\x88\x8d\xda\x03\xb1\xbc\xbd\xc4\xef\x33\x83\x98\x9b\x16\xe9\xcf\x34\x72\xde\x76\xfc\x81\xc1\xf4\xfc\x12\x33\x4f\xe3\x70\xb4\x98\x31\xf2\x7a\x4e\x8b\x44\x34\xf8\xe0\xa4\xe2\x0d\x92\x27\xe5\xee\xd2\x66\x59\xe8\x6c\xc3\x32\x9b\xc5\x53\x76\x13\x2b\x82\xe6\xb9\x54\x39\x00\xf7\x14\x56\xdd\x03\xa2\x46\xc4\x26\x90\x98\xe5\xf8\x1e\x00\x71\xed\x9b\xc0\xbd\xa4\x25\xbb\x07\x30\xb9\x0d\x4d\xa0\xe4\xf6\xdc\x03\x94\x24\x35\x4d\xa0\x4e\x81\x4c\xdc\x03\x18\xd2\x95\x26\x70\xef\xe0\x8c\xdf\x03\x1c\x12\x85\x46\x70\xf2\xb4\xde\x07\x9a\xac\xdf\xb8\x6a\x74\x7c\x9f\x45\xa3\xe3\xe5\x88\x71\x7a\xc5\x32\x56\xf2\xbc\x06\xd8\xa3\x47\x6d\xe6\xda\x3b\x33\x7c\x48\x6a\xa1\xa5\x62\x0b\x6c\xa9\x9d\xfe\x36\x48\xf7\x89\xbe\x04\x9f\x74\x3b\xcb\x10\x48\xee\xfc\xd7\xeb\x78\x53\x76\xac\xcf\x7b\x73\xd7\x28\x6d\x04\x47\xd6\x4d\xe7\x6b\x9f\x04\x1d\xae\x12\x52\xc7\xb9\x47\x37\xb2\x1f\xb5\xac\x27\xff\x89\xcc\xbb\x60\x73\xdf\xfe\x51\xc4\x66\x44\x94\x8b\x6c\xc5\x11\xe0\xe2\x2e\x1f\x00\x01\x23\xbc\x85\x14\x48\xe1\x1f\x7f\x5c\xe0\x9a\x16\x66\x95\x6c\x0f\x3b\x64\x6b\x63\xf3\xd9\xfa\xac\x60\x02\x92\x03\xbd\xa2\x43\x36\xe0\xfc\x2a\x32\x49\x26\x91\x24\xa2\x87\xd8\xbc\x18\xca\x4b\x2b\x01\xef\xaf\x9a\x8c\x93\x6f\x0f\xcf\x74\x31\x19\x49\x54\x56\xde\xa5\x98\xc6\xd5\x4d\x34\xa9\x13\xa6\x72\x5e\x92\x24\x2d\xd8\xb0\xe4\xc5\x02\x33\xe4\xdb\x9e\xca\x82\xb1\xd8\x64\x3e\x6d\xe4\x9d\x1f\xd5\xf3\xce\x90\xba\xf2\xce\x54\x9b\xe0\xfa\xf8\xcb\x82\xb0\x8f\xb3\x2c\x1d\xa6\x65\xb6\x20\x73\x91\xe6\x63\x72\x39\x2b\xf8\x6c\x5d\xee\x81\xb8\x24\x0b\x3e\xc7\xbc\xd9\x33\xc8\xa7\x9d\xe6\x25\x07\x81\xc3\xe1\x95\xc9\x80\x4d\xe8\x75\x8a\x6e\x9d\x12\xe8\xa4\x2c\x67\xdb\xdd\xee\x68\x10\x4f\x59\xd7\x02\x5b\x4f\xf3\x75\x39\x58\x3d\x44\x90\x5e\x8e\xf3\x97\xb0\x08\x7b\x43\x39\x3d\xb2\x0b\x2a\x85\x9d\xbb\xd8\xf6\x11\x85\x65\xfb\x2d\x2d\x27\xf2\xce\xda\x9f\xb0\xe1\x15\x2b\x44\xab\xd3\x3e\x31\x39\x02\x15\xce\x45\x75\xfd\x84\x22\xc2\xef\x59\x09\xbb\xfe\x5f\xb2\x10\xab\xce\x52\xce\x21\xcd\xc7\xa7\x93\x74\x2a\xa7\xe9\xba\x5d\xf6\x73\x24\x12\xeb\xe8\x8c\xd2\xcf\x25\x72\x9f\xa6\x79\x52\x30\x72\xca\x8b\xc9\x5c\xf4\xf3\xbf\x68\xe4\x7c\x7b\x78\xd6\xcf\x11\xad\x02\x19\xad\xfb\x24\x70\x84\x25\x39\x5f\x9f\xe7\x73\xc1\x92\xf5\x6b\x5a\x08\x93\x15\xf5\x77\xa4\x1f\xf4\x95\x23\x35\xf9\x00\x03\xf5\x89\x6a\x26\x97\xce\x75\xd9\xa8\x6b\x58\xe7\xda\xe1\xa7\x9e\x2c\xb9\x52\xeb\x5d\x53\x24\xbf\xfd\x52\x9e\xac\x6b\x9a\x59\x67\x89\xcf\x9f\x89\xfe\xed\x98\xce\x40\xdd\x7e\x59\x27\x6e\xb7\x7c\x27\xa9\x21\xcd\x73\x2e\x4f\x04\x66\x2f\x55\x1c\x2f\x80\xe6\x85\x05\x89\x47\xb0\x84\x9c\x61\xfd\x52\x11\x40\x67\x74\x3a\x9f\x98\x55\x97\x82\x6f\xf5\x7b\xc1\x8e\x68\x99\x5e\xb3\xb6\x1a\x93\xca\x9c\x26\x07\x07\x7a\x03\x6f\x30\x66\xdc\xa6\x07\x30\x59\xdc\xc1\x42\xd5\x77\xbf\xec\x76\xc9\x4b\x56\x4a\x61\x65\x30\x1f\x8f\x4d\x6e\xb5\x85\x56\xf4\x41\xff\xbc\x48\x30\xd9\x33\xcf\xe4\x1f\x7f\xfb\x81\x5c\xb3\x42\xa4\x3c\x17\xb1\x03\x47\xe2\xbb\xd8\xee\x76\x07\xf3\xb1\x88\x87\x93\x82\x4f\xd3\xf9\x34\xe6\xc5\xb8\x3b\xeb\x5e\xff\xd0\x4d\x85\x98\x33\xd1\x4d\x58\x49\xd3\xec\x45\x9a\xec\x7e\xbb\xb9\xf9\x03\x36\x06\x7a\xc0\x44\xb9\x49\x76\x61\x81\x4f\x21\x01\x63\xbb\x45\x07\xc3\x56\x67\xa7\xce\x4b\x1b\x1c\xb4\x73\xbe\x9e\xb3\x9b\xf5\x9b\x82\xce\x66\xac\x10\x6a\x9b\x24\x9c\x1e\x08\x53\xad\x84\xb5\x76\xec\xfa\x34\x67\xd6\x6c\x43\xa3\x8e\xb6\x0a\x6c\x3d\x6f\xad\xbe\x7a\xf7\x9d\xf5\xb3\x8d\xe7\xdf\xf9\xb3\xde\xd2\xd9\x58\x65\x61\x5d\xfa\xc0\xcd\x0d\xe3\xfd\xa4\xc6\x04\xcd\x7a\xad\x8b\x16\x79\xaa\x16\x2b\x1e\x15\x7c\xba\x3f\xa1\xc5\x3e\x4f\x58\x3b\xed\xc8\xf9\xa7\xce\x70\x55\x7f\xb0\x93\x5b\x4b\xd3\x8c\xc2\x62\x6c\x75\xe2\x29\x9d\x39\x62\x4e\x0d\x3e\xe1\x20\xf2\x73\xdd\x4b\xc7\x59\x6b\xec\x27\xfe\xc0\xd3\xbc\xdd\x52\x59\xab\x5b\x1b\x9b\x5b\xcf\xbe\x7d\xfe\xdd\xf7\x3f\xfc\xf8\xa7\xae\xef\x33\x77\x7d\x25\x4e\x25\x6c\x34\x9e\xa4\x1f\xae\xb2\x69\xce\x67\xff\x28\x44\xd9\x8a\xc5\x2c\x4b\x4b\x39\xd2\x78\xc4\x8b\x03\x3a\x9c\x38\x53\xcf\x58\x59\xb2\x22\x58\xfd\x67\x3d\x2c\x96\xeb\x8c\x7f\xd5\x2d\x83\x5a\xe5\x2b\xb6\x10\x6d\xef\x74\x42\xa4\x08\x80\xd3\xe9\x78\xab\xa4\xfb\x68\x1a\xe9\x8a\x0b\xa7\xb7\x08\xaf\xd3\x7e\x79\xeb\xd8\x0c\x19\x10\xdd\x2e\xf9\x8d\xa9\xf4\xa7\xec\xe3\x4c\x12\x01\x9a\x2b\x6e\x84\x61\x7e\x5c\x52\x72\xbc\x41\x23\x32\x98\x4b\xca\x26\x67\x2a\x0b\xa5\x68\x4f\x47\x92\x4d\xa9\x1d\xca\x6d\x53\x4a\xc4\x2a\x29\x7b\x11\x78\x9a\x6e\xd7\x38\x2f\x21\x63\xa4\x06\x2e\xf7\x55\x62\xfb\x8e\xfe\x51\xc2\x43\x9e\xa6\xef\xd8\xa6\x63\xbe\x0a\x73\x07\xc9\x12\xcf\xf6\x66\x73\x87\x88\x5a\xfb\x20\xe1\x9c\x36\x88\x71\xa2\x0f\x8c\x63\x13\x24\xce\x3b\x3b\x7a\xb9\xed\x9b\x01\x5b\x40\x28\x8e\x82\x4f\x9d\x9d\x92\xa8\x50\xf7\x32\x20\xab\x69\x47\xb2\x4f\x76\xe7\x4b\x8e\x79\x3e\x77\x01\x0e\xfc\xbd\xa3\xbf\xde\x06\x1b\xbd\x3c\x95\x2a\xb6\x11\xe6\x92\xae\xf7\xb5\x84\xd1\x9a\x1e\xea\x28\x90\x82\x10\xfa\x62\x9a\x11\x2b\x1e\x75\x56\xf5\xac\xc4\x29\xaa\xf6\x60\x47\xe5\xb6\x83\xb9\xda\x8f\x66\xca\x4e\xd1\x8e\xad\x7d\x5b\xb3\x08\xc1\x2d\x5a\xf2\x1d\xcc\x78\x6d\xf5\xb6\xea\xcd\xc2\x51\xd0\x87\x8f\x5c\x83\x0f\xca\x0b\xce\x95\x8d\xe0\xcd\x07\x77\x93\x0f\x3e\x18\x71\xa5\xe1\x9d\xcc\x80\x70\x12\xbb\xd6\x48\x2a\x95\xd7\x33\xfd\x61\xc8\xf3\x51\x3a\x9e\xd7\x7d\xba\x29\xd2\xd2\x16\x2b\xe1\xa6\xa3\x12\x5b\x5b\x26\x96\xc8\x61\x6a\xbc\x51\x2a\xf9\x4a\xe2\x52\x3e\xf8\xa0\x32\xf4\x37\x72\x9e\xfd\xb5\x82\x19\x0b\xa3\xf5\x62\x9e\xa3\xc2\xb3\x73\xc7\x9a\x6a\x37\x79\xb5\x50\xfa\xf7\x52\x3f\x72\x7d\x54\xf5\x04\x3c\xcc\xdb\x5c\x66\xbb\xe7\xe7\xcf\x55\x62\x53\xe8\x35\x6e\x72\xcc\x86\xa7\xd3\xa1\x26\x5a\x80\x5c\xdd\xa9\x1a\xda\x3a\x87\x96\x98\xff\x70\x36\x7a\x0b\xb0\xa2\x3e\xbc\xba\x4e\x4d\x72\x59\xdf\xb2\x0d\x60\xe0\xce\xed\x78\x5b\xa7\x57\xb4\xd1\xdb\x1c\xb6\x55\xc5\x72\x42\x91\xe0\x37\x0c\x5b\xf2\xce\xa4\xcb\x7d\xc3\xb9\x94\x50\x31\xb4\x54\xdc\x5d\x56\x0b\xb4\x88\x8d\xbb\xdd\xd0\xd2\xac\x0e\xfb\x38\xcc\xe6\x89\x62\x9e\x95\x3f\xb9\xda\x24\xfd\xcc\xaa\xe5\xfe\xdb\x1d\x23\x11\xa2\x07\xf3\xee\xd2\xd1\x57\xbb\x30\xed\xe1\xfc\xa5\x6a\xd5\x1a\x19\xbe\x30\xd3\xb4\x93\xe7\x19\xbe\xfc\x15\xf3\x4e\x2f\x77\x4e\x47\x04\xf2\x73\x3e\xbb\xe4\x32\x80\xd7\x80\xbb\x98\xf7\x39\xac\x8c\xb8\x6b\xd1\x52\x4f\xd4\x38\xb9\x83\x27\xef\xcf\xbb\x64\xa3\xe3\x78\x76\x38\x0d\xaa\x96\xf6\x4b\x1c\xdf\x3d\x74\xae\x80\xbb\x0b\xa5\x1b\x73\x23\x2b\x74\xbc\x2f\x02\x35\x6c\xf1\x17\x61\x91\x53\x86\xad\xfc\x9d\x05\x9e\xcc\x6e\x64\x0d\x0a\xd5\xef\x6a\xe3\x7e\xba\xbb\xe9\xef\xe3\x3d\x77\x71\xf9\xa2\x2f\x59\x6d\x75\xf8\x47\x05\x63\xaf\x31\x6e\x0c\xc6\x67\x8b\xbb\x17\xb6\x2c\xfe\x20\xf0\x4d\xb6\xfb\xe4\x89\x16\xfd\xe4\x57\x72\xad\x5f\x97\x2e\x05\xcb\x46\x97\xb1\x91\xf8\xe5\xd7\x53\x96\x8d\xac\xb5\x94\x80\x5f\xbe\x7e\x12\xca\xd4\xbf\xb1\x72\x04\x90\xc2\x94\xfa\x53\x7d\x31\x3d\xbf\x17\x2c\x21\x54\x10\x4a\x20\xca\x16\xcb\x87\x8a\xd7\x64\x3a\xe6\x8d\x0e\xea\xa6\x87\x01\x3a\xb3\x5d\x77\x76\xf2\x2e\xd1\x63\xfb\xfc\x99\xbc\xd2\x36\x27\x2d\xc7\x54\x4a\x69\x4b\x2a\xb4\x4c\x42\xdb\x71\xa3\xef\x01\x78\xb3\x5e\xf2\x97\xb7\x52\xbf\xcc\xd3\xac\x5c\x4f\xb5\x67\xb7\x19\xb4\xb0\x03\xd4\xae\x07\x00\x2a\xc6\x5f\x75\x5d\x9b\x2f\xb6\x73\xd5\xd4\x74\xaf\x2c\xc2\xdc\x01\xc0\x82\x49\x94\x1c\xe8\x91\x4c\x59\x39\xe1\x49\xed\x50\x70\xed\x20\xa8\x4f\x8d\xb6\xc4\x87\x59\x72\x32\x9c\xb0\xe1\x95\x6a\x24\xa0\x13\x7e\x93\x3b\x69\xd6\x2d\xe0\x8a\x0a\xc7\xe9\xa9\xaa\xbd\xb1\x6f\x4b\xba\x27\x65\xb2\x65\x94\xa3\xbd\xcb\x92\xa3\x00\x7b\x46\xc7\x97\xe7\x6d\xa5\x33\x63\xc3\x29\x5d\x4f\xf3\x92\x15\x39\x68\x20\x68\x06\x12\x1f\x14\x6f\x7d\xb7\xd5\xfd\x3e\xde\xe8\x7e\x23\xd8\x70\x9d\x87\xa4\xae\xe4\x02\xc0\x75\x00\x3c\x1f\xe1\x7e\x09\xad\x4e\x95\x73\xc8\x41\xf2\xc0\x45\x39\x53\xbd\x07\x33\xd1\x83\xba\xcf\xf6\x8b\xc5\xf4\xcc\xce\x85\xec\xea\x4d\x7d\xa1\x1d\x8b\x9c\x99\x92\x6d\xab\x0d\xf2\xd6\x69\x8f\x88\x19\x1b\xa6\x34\x4b\xff\xc9\x12\xad\x65\x91\xd3\xb8\x1c\x50\xc1\x5e\xb3\x52\x2e\x93\x8a\xef\x97\x8e\x73\x5e\x30\x41\x2e\xab\xf0\x2f\xdd\x69\xab\x70\x7b\x68\xd4\xe1\xc6\xde\xfb\xf4\xe4\x56\xcd\xe7\x6c\xc2\xd4\x5f\x25\x27\xff\x98\xb3\x62\xa1\x82\xf4\xe1\x49\x12\xe4\x13\xae\xea\x2d\x39\x51\x05\xa0\xc5\xa6\x37\xc4\xdb\x3f\xbd\xca\x86\xce\x8f\x59\x79\x42\x6f\xce\xe8\xd8\x7b\x76\x00\x16\x4f\xa2\x0a\xd9\x25\x75\x3c\x96\x7e\x27\xf0\x16\xb4\x13\xd9\x4b\x69\xac\x59\xdc\x9e\x5f\x47\x33\x7d\x4a\x31\x66\xd8\xf0\xb0\x1a\xd9\xf5\x96\x5f\xb3\x01\xf3\x7c\x4a\xc5\x15\x4b\x5c\x3d\xb4\x67\xeb\xad\x68\xaf\x67\x4a\x56\x87\x4d\xce\x34\xf0\x6e\x91\x37\x80\x86\x6e\x43\x5e\x8e\x48\x1b\x96\xa1\x13\x48\x0d\x35\xc3\xc5\x57\x2d\xb8\x72\x3d\x9e\x9f\x90\x84\x65\xac\x64\x8d\xcb\xe1\xde\xd2\x15\x8b\x31\x94\xd1\x03\xf2\x64\xf6\x6c\x47\xbf\x9e\xfc\x11\xb4\xe7\xdf\x81\x2a\xa8\x57\xa5\xfc\x9a\x49\x11\xea\x12\x60\x5e\xca\xf9\x50\x82\xdd\xe9\x87\x84\x0a\x43\xa6\x21\x5d\x7e\xd1\x01\x1d\x62\x97\xab\x1c\x51\x55\x95\x25\x6a\x44\x95\x13\xca\xbd\x09\x7b\xc7\x54\x1b\x09\xdf\x8d\xe0\x75\x68\xe4\x03\x5e\xfd\xb6\x53\x75\x0c\x16\xda\x6a\xa6\xc8\xaf\xe9\x77\x64\xab\xfb\xe5\xde\x5d\xaa\x36\xe4\x1b\xb3\x0d\xfa\x38\xd7\xe1\xb3\x64\x34\x91\xa0\xb7\x7a\x08\x93\x1c\xcd\xb3\xec\xbc\xa5\x08\x92\xa1\x24\x41\xa5\xf7\xba\xfc\xfc\x5e\x5c\xc4\x57\xb9\x46\x24\xba\xc8\x0b\x83\xa4\xd3\x19\x3e\x84\x29\x45\xfe\x88\x5c\x8e\xf5\x25\xa2\x83\x5a\xd2\x2c\x1b\xd0\xe1\x95\x50\x27\x7c\x3c\x5e\x10\x96\x5f\xa7\x05\xcf\x51\xf0\xfe\x43\xef\x90\xe5\xf7\x87\xbd\xf4\xda\xa1\x6e\x06\xbb\x32\x82\x80\xff\x9a\xac\x3f\x3a\x74\x9e\xbc\xf0\x77\x6a\x5b\x6f\xec\x4e\x48\x1d\xdb\xc1\x16\x48\xd6\xd5\x2f\x49\xdd\xe7\x9a\x39\xeb\x74\xb0\xf3\x17\x95\xfb\x0e\xcb\xb7\xeb\x4f\x59\xc3\xc1\xb1\x73\xde\xf1\x9f\xaf\xe1\x45\x5d\x40\x70\x5d\x5a\x2c\xac\x30\x05\xf6\x56\x69\x7e\xcd\xaf\x24\x33\x20\x8b\x71\x73\x49\x5a\x0a\x1b\xf9\xb7\x2c\x68\x2e\x46\xbc\x98\xb2\xe4\x8e\x1d\xd5\x7c\xf4\x2d\x74\x01\xfb\xea\xbc\xa2\x91\x9b\x82\xce\xe2\x86\x06\xa6\x13\x68\x55\xed\x3b\xc4\x08\xdb\xd2\xc5\x89\x9c\xdd\x98\x1e\xab\x04\xeb\x9a\x15\x7b\xc5\x18\xf4\xf3\x91\x85\xec\xd3\x2c\x63\x7e\x4e\x8b\x71\x5d\x38\xe0\xb6\x69\x07\x35\x3a\x46\xe1\x52\x4b\xc9\xb0\x47\x8f\x84\xa9\x32\x87\xda\x60\xc1\x7d\x65\x86\xb1\x13\x7a\x53\xde\x36\x6a\x72\x56\xfb\xe0\x04\xe6\x8c\x14\xd2\xd5\xca\x33\x6e\xd5\x00\x6f\x24\x73\x2f\xe4\x99\xd1\x37\x54\x2a\x14\x42\x82\xdd\x5c\x4c\xf6\x74\xb8\x2a\xaf\x5c\xb6\x48\xcb\x16\x7a\xe0\x5c\xca\xc3\x72\x89\xb1\xa4\xf3\x44\x72\x6d\x84\x92\x4b\x14\x07\x0d\xf5\xe4\x23\x27\xaa\x97\x83\x64\x02\xa2\x64\xe2\xdf\x53\x36\x1d\xb0\xe2\x78\x44\x2e\xd4\xb7\x54\x4a\x7e\xdf\xc6\x1b\xf1\x06\x16\x0c\x69\xc9\xc6\xbc\x58\x90\x37\x34\x1f\xaf\x72\x19\xca\xe9\x85\x78\x35\xe0\x3c\x63\xd4\x41\xab\x4b\xc9\xd0\x5d\x36\x2f\x42\x84\x5c\xd5\x25\xbc\x60\x5c\x2a\x70\xec\x23\x95\xe4\xd3\x4c\xe4\x22\x4e\x05\x6e\xc1\x9b\xf4\x8a\xb5\x3f\xa1\x16\xf6\x09\xe9\x76\xc9\xee\xcf\x5a\x3b\x5b\x5b\xb5\xb7\x19\x91\xad\x88\x3c\x3b\x5f\xb9\xc5\x45\x9c\x73\x3e\xf3\xaa\xc3\xd8\x9a\xea\x03\x15\xac\xad\xed\x1e\x1e\xaf\x49\xcd\x5d\x8f\xab\x5a\x0d\xfc\x68\x88\xad\x96\xf8\x1b\x8e\x8a\x0b\xdf\x3b\x2f\x96\xa8\xd9\x23\x63\xcb\x2a\x57\xbf\x3d\x13\xee\xed\x6f\x4a\xfd\xfa\x6e\xa7\xa6\xbe\x5b\xf8\xe5\x77\xbf\xa2\xdb\xfe\xc5\x8e\x00\xce\xbf\x50\x34\x97\x7b\xa1\x99\x63\x4d\xfe\x9c\x10\xae\x46\x95\x7f\x1f\xf9\xdd\xe1\x9f\x21\xc0\xdf\x74\x96\x66\x92\xe5\x43\x65\x19\x1f\x19\x7a\x18\x8c\xc3\xe1\x73\xcd\xb0\xaa\xb2\xef\x9f\xa2\x25\x30\xbd\xa4\xf9\x48\x59\x55\xa9\x9d\xba\x24\x4e\xe8\xdc\x70\x6b\xf6\x4b\x5e\x78\x73\xf0\x39\x54\x97\x60\x2e\xa5\x87\x94\xcc\x32\x9a\x6a\x76\x38\x52\x77\xaa\x88\x08\xd5\x65\xca\xa2\x2d\x21\x83\x85\x91\x53\xea\x46\x48\xe4\xff\xcf\x55\xec\x70\x4a\x2e\x7b\x3d\x83\xb6\xe7\xe7\x97\xc0\x81\x01\x2d\xbd\x17\x7d\xdc\x88\x7f\xf8\x1f\xa0\x8f\xe1\xa2\xac\x40\x22\x0d\xa5\x79\xc5\xb9\x7a\x0b\x7a\x02\xae\x2a\xa9\x88\x29\xbc\xea\x40\xc9\xad\x47\xc6\xde\xc9\x5e\x14\x43\x25\xef\xfe\x57\x9c\xdf\x41\xf8\xdc\x16\xf5\xb4\x75\x79\x9b\x4f\xa4\xf5\xb1\x05\x81\xf1\x5a\x0b\xf9\x2f\xb9\x83\x94\xbb\x6d\xfd\x98\xcc\x40\x77\x6b\x1b\xfb\x74\xd7\x85\x10\xb2\xb2\x8f\xea\xc8\xf2\xe7\xcf\x35\xdc\xef\xa3\x5d\x4b\x92\x2a\x7c\x8d\x7a\x7c\x57\xcc\xac\xb2\x9c\x02\x02\xe2\xd2\xce\x50\x2d\xa1\xea\x34\x30\xd2\x56\x0f\xa2\x61\xee\x63\x90\xc3\x3a\xbd\x0d\x80\x8a\x48\xcb\x39\x0d\x2d\x88\x73\x02\x1f\xdc\x08\xd8\x3b\xae\x0a\x1b\xaf\x18\x84\xbb\x4b\x5a\x7a\xd1\x40\xab\x0c\xa5\x8e\x9f\x3c\xfc\x7e\xfc\xb8\x6f\xdc\x49\xfd\xf3\xbe\x0f\x0e\xc6\xbb\xbb\x15\xea\xd0\x78\x5f\x39\xfb\xe2\x5d\x58\xde\x17\x75\xab\x64\x3c\xa1\x62\xb2\xce\x44\xd7\xfb\xea\x5c\x45\xff\xf1\x1f\x7c\x20\x58\x71\x0d\x7a\x74\x6c\x84\x4f\xd9\xeb\xb6\xbc\x15\x4a\x6a\x82\x81\x65\xa1\xf6\xd3\xa2\x8a\xd3\x5e\xcc\x98\x90\x94\x9d\x15\xd7\x48\x75\x4e\x58\x32\xff\x88\xe7\xee\x15\xe6\x2a\x20\xf3\xfc\x2a\x97\x44\x18\xdb\x88\x08\xcc\x14\xa7\x73\x51\x5a\x6f\x61\x46\x86\xf3\xa2\x90\x5c\xb8\x24\x33\x68\x57\x4a\x0e\x47\xd5\x2f\xf2\xc4\x1b\x09\xa9\x1e\x52\x9a\xa7\x65\x4a\x33\x17\xd2\x4b\x0e\xfc\xa1\xa3\xc4\xc7\x09\xb9\x93\x40\x43\xd7\x0c\xde\x5e\x17\x7c\x5e\x80\x29\x6d\xec\xfb\x18\x48\xd4\xda\x83\x46\x67\xd0\x66\x17\x11\xf1\xf0\xe8\xf0\x6c\x9b\xb4\xfe\xf2\x97\x42\x4e\xbe\x2b\x7f\xb6\x94\xf9\xaa\x72\x01\x71\x05\x23\x58\x21\x22\x4a\x5e\x30\xa4\xe0\x13\x9e\x25\x28\x53\xe0\x14\xb5\x65\x2d\x51\x32\x32\xcf\xb3\x05\xb9\xa1\x0b\x24\x94\x34\x1f\xab\x3b\x94\x96\x54\x9b\xea\x22\xb4\x14\x32\xc7\x48\x1c\x23\x97\x49\x2a\x66\xb4\x1c\x4e\xda\x9d\x4b\x22\xcf\xb6\xf2\x64\x79\x62\xe1\x16\x4c\xa7\x43\x81\x0e\x06\x8c\x50\x22\xd2\x7c\x9c\x19\x70\x6a\x21\xe8\x6c\x16\x93\x33\x8e\x4a\xdf\xd1\x82\x4c\xf8\x0d\x49\xd2\x11\xac\x65\xa9\xe0\x41\xe6\x10\x6d\x94\x63\xa7\x21\x51\x63\xc6\x73\xb8\x33\xfd\xed\xa7\x0b\x32\xe4\xd3\x41\x9a\x33\x22\xd8\x35\x2b\x68\x46\xe4\xea\x0d\xc1\x44\x0e\x40\x82\xf5\xaa\x19\x92\xfa\x68\x69\xf7\xc0\x58\xc0\x2a\x38\x27\xaa\xf9\xa5\x3f\xd3\xaa\xfc\xa7\x41\xed\x05\xd2\x69\xe1\x49\x77\x1f\x4b\x67\x1e\x11\x19\xa7\xd7\x2c\x57\x20\xab\x58\x09\x73\x95\x32\x07\xd8\x24\x19\x29\x74\x42\xf3\x24\x63\xf5\xe3\xa1\xf9\xe2\x96\xf4\x66\x05\xcb\x38\x4d\x18\x04\xe9\x67\xe7\xb0\xdf\x3e\x02\x93\xbf\xab\xe5\xe2\x33\x54\x27\x66\x0b\xb3\x13\xa9\x5e\x7e\xd9\xd7\x22\x81\x30\xd6\x76\x03\xe0\x68\xc3\x4f\x79\x3a\xc1\x34\x72\x9e\xa7\xd7\xac\x10\x34\x93\x9b\x2a\x22\xc9\x06\x20\x67\x06\x1b\x4e\xf5\x66\x16\xec\x3a\xe5\x73\x21\x7b\x62\x85\xd6\xf3\xcf\x05\x2b\x88\x60\x90\xbd\x44\xa3\xe7\xe1\x08\x76\x73\x2e\xaf\xdc\x70\x1b\x30\x25\x0f\x97\xbf\xac\x39\x79\xb8\x8d\x18\xff\x06\xcf\xf0\x80\x29\xa8\x96\x9d\x31\xce\x58\x82\x4e\x25\xba\xd2\x19\x23\x54\xd4\xf4\x75\xc5\x16\xe2\xae\x7d\xef\xb1\x7c\x22\x29\x74\x81\xcb\x8c\x73\xd6\x65\x2b\xaf\xb3\x6a\xe0\x1c\x3b\x35\xc8\xb4\x48\xd6\xe5\x31\x58\x90\x21\x9d\xd1\x41\x9a\xa5\x92\xdf\x24\x62\x3e\x9c\xc8\x31\x4f\xd3\x24\xc9\xd8\x0d\x2d\x14\xfb\xfc\x04\x7d\xfb\xca\x82\x5e\xb3\x2c\x22\x33\x56\x88\x54\x94\x92\x3a\x45\x84\x95\xc3\xd8\x1e\x7d\x7f\xa0\x88\xab\x62\x92\xce\x04\xf6\x0c\xf4\x44\x9f\x19\x41\x2e\xc1\xf4\xe2\xad\xe9\xad\xdd\x09\x0f\x84\x61\xb0\x4e\x25\xe0\x5b\xb2\x57\x25\x49\x19\x2b\x05\xec\x6c\xc1\x68\x62\x51\x2a\x22\x9a\xac\xe8\xd3\x6c\x76\x2c\x01\x27\xba\x61\x91\x0e\x98\xa5\x53\x7a\x4b\xba\xfd\xfc\x76\xa7\xe9\x99\x1d\x79\x14\x18\x4b\x5b\xa1\x47\x44\xfc\x73\x11\x99\xd9\x3b\x8f\x33\x17\x05\x1b\x6d\x39\x86\x14\xea\x8a\xf6\x5b\xa2\xa9\xac\x77\x5b\x6b\xef\x15\xbd\x9e\x50\xc3\x31\x7b\xd6\xcc\x85\xad\x10\xc0\x54\x0f\x16\x61\x47\xc1\x6b\xcd\x6d\x65\x64\x06\xe0\xa3\x86\x1e\x1b\xeb\x9a\xf1\x3b\x8f\x30\xd6\xd2\x5b\x59\x79\x1f\x80\x71\x24\xc3\xed\xb2\xd8\xc2\x91\xb2\x1b\x55\x55\xab\xb3\x53\x6f\xd5\xa3\x9b\xb4\x9d\x0d\xe9\x34\xed\x48\xa7\x61\x8e\xfa\x7c\x37\x0c\x7b\xf9\xa0\x75\xe3\xa6\x31\x3b\x2f\x5b\x8a\xfc\x2a\x02\x00\x96\x61\xf0\xd7\x4e\x50\x41\xef\x4d\xcd\x0e\x3a\xb5\xde\xc0\xc9\x63\x85\x50\x51\xa8\xd4\x57\x79\x09\xb8\x9f\xc2\xda\x3b\xf6\x9d\xf0\xa5\x3a\x17\x4a\xc6\xd3\x26\xa6\xb9\x13\x4e\x84\xe5\x62\x5e\xb0\x7d\x9a\xbf\x9d\xcb\x31\x1c\xb9\xc0\xdb\x1e\x0e\x04\xfd\xee\x56\x7b\x76\xf0\xe0\xae\x41\xc6\x22\x4b\x87\xac\xdd\xa9\x31\x86\xb1\xdc\xc9\x09\xa3\x15\x16\x84\x4c\x69\x4e\xc7\x46\x96\x44\xf2\xd0\x44\x4a\xe0\x36\x3b\xab\xbf\x17\xf9\xc8\xf0\x11\x59\x3a\xa4\xa5\xbd\x3f\xba\xde\x02\x8d\x19\x6e\x57\x3b\xe4\xef\xdd\xbd\xdc\xa9\x1d\xff\x5e\x92\x48\xd6\x4a\x71\x47\x99\x9a\x7b\x4c\x0e\xad\x8f\xaf\x72\x76\x90\x0c\x29\x10\x5e\xaa\x19\x52\x49\x34\x35\x59\x63\x49\xe4\x52\x34\x3e\x65\xc0\xd9\xd4\x30\x36\xf2\xa6\x98\xf1\x92\xe5\xf2\xaa\xce\x16\x98\x52\x0e\xfb\x4f\xec\x5d\x52\x4e\x0c\xd3\x80\x6c\x99\x9d\xe3\x25\xde\xbc\x8a\xbc\xd6\x2c\x5b\x9a\x8b\x34\xc1\x7b\x66\xa8\x5e\x3f\xfc\xd5\xd7\x9d\x54\x19\x3e\xb8\xf9\x2b\xcb\x11\xd9\xeb\x74\xc4\xb3\x0c\x9c\x75\xcc\xe0\xae\x19\x2d\xc5\xb6\x07\x7f\x13\xef\x20\x45\xd7\xe1\x56\x14\x20\x04\x88\x9c\xce\xc4\x84\x97\xf2\xdc\x7e\xc0\x9b\x7b\x04\x57\xd4\x35\x2b\x16\xfe\x48\xe4\xd8\x02\x66\xc1\xde\x13\xe0\x6e\x62\x7f\x62\x30\x4a\x39\xbc\xcc\xe0\xb3\xec\x6e\xc0\xd0\x99\xe9\x1a\x03\xd4\x48\x86\x41\x41\x84\xbd\x95\x9c\x3d\x26\xf4\xcb\x17\x84\x8d\x46\x92\x6f\xe0\xc8\x16\x7b\x43\x51\xda\x12\xbd\xd4\xc8\xe9\xcf\x0a\x3e\x2e\x98\xd0\x17\x15\xf9\x95\xdf\x30\x88\x22\x61\x98\xc0\xca\x74\x22\x72\x33\x61\xe5\x84\x49\xfa\x20\xe4\x12\xf0\x42\x8e\x21\xc2\xd1\x48\x56\x88\x92\x29\x2f\x34\x33\x53\xb0\x21\x6c\xac\x5a\x33\x83\x4a\xce\xaa\xc2\x7c\xfd\xbd\xdd\xc2\xb5\xd7\x0b\xa1\x39\x75\x39\x57\x65\x04\x0f\x81\x33\x18\x91\x7b\x8f\x48\xa3\xae\xdc\x48\x32\x1b\x06\x59\x15\xb8\x29\x78\x14\xc2\x2a\x0d\x18\xcb\xc9\x7c\x96\x80\x9a\x68\x3a\xcf\xca\x74\x26\x57\x3d\x9d\x4a\x19\x68\x0e\x4a\x2a\xaa\x67\xe6\xcd\x1d\x37\xd9\x61\x81\xcd\xe0\xe4\xa2\xc2\xe9\x82\x03\x97\x8a\x48\x8a\x08\xb8\x8c\xe3\x39\x85\x04\x74\x40\xe1\x69\x89\xc3\xd5\x3b\x6e\x58\xfd\x82\x8d\x25\xac\x42\x12\x1b\x44\xa5\xca\xee\x89\x92\x16\xe8\x9e\xef\x1d\x67\x83\xd1\x99\x94\xae\x34\x9b\x86\x0b\xa2\xe8\x16\x9c\xf6\x54\xae\x5b\x5a\xde\xc9\x23\x9a\x39\xed\x99\x43\xa7\xae\x23\x85\x7f\x12\xb5\x10\xcf\xf5\xe8\xe2\x0a\x31\xb4\xe0\xf6\xbc\x47\xa9\x82\x4d\xc1\x5b\x41\x72\xbc\x21\xa9\xaa\x23\x88\x66\xa1\xda\xba\x5a\x1d\xab\x60\x86\xfc\x05\xac\x82\x69\xbb\x02\x9b\x80\x17\xdd\xa9\x1e\x93\x63\x80\xa2\xf9\xa5\x65\xf7\x9b\x82\xe6\xdd\x56\x18\x08\xd1\xcc\x6d\x27\x60\x48\xcc\x3a\x38\x44\xa2\xed\x4c\x4b\x69\xa5\xec\x88\x3c\x53\x67\x04\x62\x8c\x44\x6f\xad\xa5\x75\x30\x09\xf7\xb2\x5e\x79\x1e\x6a\x39\xf2\x84\x7d\x04\x77\x30\x77\x56\xda\x78\xd2\x9d\x58\xcd\x5d\x0d\xee\x3c\x43\xd6\x4e\x31\x4f\xce\xa6\x9b\x76\xb3\xe6\x8a\xd3\x1c\x06\x13\xf6\xea\x52\xe7\x0d\xd0\xdc\xd5\x12\x94\x45\x3a\x1e\xb3\x02\x4c\x3c\x2c\x69\xa8\x68\x00\xc8\xa5\xe2\x9a\x2e\x1d\x79\x6c\xae\x15\xe9\x18\x8d\xcb\xdc\xfc\x51\xd3\xd1\xd3\x57\x48\xb3\x40\x0c\xb2\x33\xb9\xc4\x31\x5f\xca\x41\x0b\xff\x2d\x47\x42\x56\x60\x06\x60\x0e\x22\x6f\xbe\x42\x71\x85\x4f\x9e\xc8\x65\x7b\xa2\x4f\xb5\xa2\x9f\x28\x95\xeb\x1e\x82\xd3\xe4\xdd\x0f\x03\x26\xc9\x66\x3a\x4a\xf1\x4d\xd9\x5f\x81\x5a\xfb\x03\x10\xba\xe6\x33\x74\x3a\x70\xb5\xcb\x5a\xea\x89\xf5\x5d\x76\x43\x73\x49\x89\x15\x40\x2b\x1c\xe9\xd8\x70\xa0\x9a\x3f\x36\x5a\xb5\x88\x50\x52\x4e\xe6\xf9\x15\x48\xde\x92\xbd\x28\x81\x63\x64\x99\xac\x2a\x01\xe6\x40\x29\x35\xc0\x9b\x82\xce\x90\x77\x42\xd9\x0c\xf6\x04\xec\x47\x8c\xce\x36\x57\xf6\xa8\x43\x5e\x28\x5d\x8b\xfc\x6e\x85\xcd\x98\xbc\xe2\x85\x02\xa7\xf4\xe0\x11\x5c\x1c\xa0\x42\xe2\xc3\xb9\x9d\xf7\x88\xab\x27\x0d\x50\x63\xad\xc3\x40\x2f\xc9\x8c\x0e\xaf\xe8\x98\xc5\xe4\x40\x6e\xa2\xdd\x6f\xdb\x05\x2e\x33\xe4\xde\x9d\x03\x2f\x64\xd6\xa1\x6e\xed\x94\xd6\x06\xc5\x7e\x78\x81\xaa\xa7\xc9\xa8\xb6\xbc\xd5\x4c\xda\x9e\x0f\xac\x60\xca\x2b\x5e\xc2\xfa\xdf\xff\xeb\xff\xbd\x91\x97\x8b\x62\xbf\xfe\xf7\xff\xfa\xff\xd4\xc1\xd0\xbc\x1c\x19\x73\x9e\x90\x34\x61\x54\x62\xf6\x15\x63\x33\x33\x1a\xad\xe0\x00\x65\xa8\xe0\xb0\x09\x43\x9a\xcb\x6b\x9b\x17\x09\x20\x58\xc1\x66\x19\x5d\x80\xfe\x43\xdf\x2f\xa8\x05\x41\x05\x8a\xbc\xf1\xcd\x3d\x83\xe2\x7c\x06\x7a\x29\x5c\xc6\x84\x5d\x97\x9c\x67\xe2\x32\x26\x7b\x86\xe5\x04\x7d\x87\xbc\x8e\xcd\x08\xe1\x99\xfa\xd2\x7a\xb6\xa2\xf5\xa4\x64\xef\x94\xb3\xee\xa5\x11\x18\x2f\xf5\xb1\x0f\xe6\x35\x17\xcc\xdc\x7f\x70\x8f\x83\x2e\x9b\xe6\xea\x1d\xcc\xd5\x76\x36\xb1\xf1\x7a\xd1\x5f\xf1\x02\xad\xb2\xf2\x14\x35\x12\x46\x07\x43\x5d\x8b\x2c\x58\x2d\xcb\x3b\xfb\x50\x8f\x78\x89\xda\x84\x48\x52\x6a\xad\x26\xa2\x64\x38\x17\x25\x9f\xba\xfa\x10\x79\x3b\xcb\x99\x02\xba\xfb\x3c\x1b\x37\x1c\x02\x66\xb9\xf1\x8e\x0c\x69\xcb\x79\x19\xac\x36\xa7\xce\x6c\x22\xc4\x15\xed\xd4\xde\xad\xa6\x17\x9c\x90\x77\xb1\x3e\xf2\x5f\x42\x54\x8d\x65\x17\xea\x9e\xc2\x26\xa5\xc7\xf2\x70\x55\x40\xca\x6f\xd2\x7a\x2f\x58\x75\xee\xb8\x33\x62\x91\x0f\x0d\x6d\xa9\xde\xbc\xce\x65\xaf\xe8\xbe\x09\xb2\x51\xa7\x46\x58\x36\x3e\x85\x4f\x8a\x5f\x76\x0c\x8f\xfa\x6b\x12\x66\x7f\xcd\x60\xa0\x1a\xf5\xaf\xb2\x26\x68\x6c\x53\x21\x66\x0c\x65\x28\x83\x59\x2f\xea\x07\xeb\xc9\xc3\xcb\xc6\xa5\x15\x78\x66\x60\xa1\x7e\xa9\x66\x35\x1c\xbb\x59\x52\x91\xbc\xcd\x53\x90\xfc\x2f\xd0\x01\xf8\x3a\x83\xb6\xfb\x35\x52\xfd\x99\xce\x9c\x70\xf4\x0d\x3d\xd9\x97\xac\x80\x47\xca\x96\x08\xe3\x21\xaf\xa0\xda\xd7\x79\x33\x1a\x30\x4b\x7c\xca\x0c\xfb\xb6\x6b\xab\xbb\x9e\x39\xba\xb0\xdd\xa4\xf3\xc1\x59\xd7\x33\x1c\x27\x92\xec\x0d\x99\xf0\x54\x33\x56\x78\x02\x3e\xc1\x55\x0d\xa8\xb7\x87\xe1\x3c\xf3\xd4\xd0\x35\x32\x2b\x08\x23\x78\xd3\x41\x70\x2e\xab\x1f\xb0\x57\xb1\xc0\x50\x26\xe0\xf2\x0c\x44\x5e\x52\xe2\xea\x95\x9b\x71\xaa\xe4\x74\xc5\x17\xe8\x47\x04\x92\x2c\x72\x3a\x4d\x25\xaf\xb2\x88\x9d\x6e\x69\x26\x78\xa5\x6f\x05\xcc\x74\x4e\x28\x99\x80\xb2\x5a\x82\x87\xfb\x94\xc9\xbb\x25\x15\x90\x0a\xde\xbe\x71\x2d\x93\x24\xe4\x3e\x6b\xf5\xd4\x99\xb3\x82\xfa\x96\x35\x6b\x26\xa9\x62\x9a\x8b\x92\xd1\xa4\x2a\x4a\x5c\xf3\x34\xb9\xad\xa3\x5f\x05\xee\x8e\x46\x66\xa7\xb7\x3a\x19\xc1\x1d\xcc\x17\x6a\x14\x5d\x10\x2b\x48\x0b\x15\x05\x9d\xd3\x5e\xd5\x35\x24\xf8\x93\x8a\xa6\xe3\x3c\xad\xc5\x87\x47\x87\x67\xc6\x83\x34\x44\xcd\xc3\xbc\x64\x40\xa6\x50\xcd\xbe\x20\x33\x9e\xe6\x25\x5a\x7b\x18\x66\x0b\x83\x26\xa6\xd7\x92\x2d\x1c\x14\xb4\x48\xcd\xb5\xe7\xac\xaf\xad\x2e\x85\xb5\x69\x9a\xa7\x53\xf0\xea\x31\xef\xa3\x7c\xe4\x8b\xd7\x1a\x84\xbc\x21\xa7\xf8\x4a\x86\xe1\xed\x80\x79\xd6\x8c\x95\x03\x40\xd2\x53\x2e\x68\xa6\x74\x2b\x26\x54\xc0\x38\x2d\x27\xf3\x41\x3c\xe4\xd3\x6e\x39\x7c\xf6\x63\x57\xd7\x73\x1e\x61\xeb\xf6\xdd\x7e\x6d\x7b\xde\x81\x17\x05\x1b\xed\xb8\x64\x88\xcf\x4b\x56\x18\x41\x87\xec\x5a\x69\x72\xc7\x23\x01\xb2\xa1\x7e\xc8\x24\x5e\xd4\x3a\xcd\x23\xd7\xac\x8a\xa7\xbd\x70\xb9\x38\x52\xcb\xc3\x61\x4b\x29\x55\xe7\x0b\xcd\x3a\x80\x3a\x40\x5e\xd2\x03\x86\xb4\x84\x0a\x7c\xf8\xc1\xaa\x71\x30\x08\x03\x42\x35\x57\x0a\x11\xbc\xc8\xc8\xa5\xc4\xae\xcb\xba\x91\x58\xbb\x5e\x67\xc8\xb7\x92\x15\x73\x9f\x98\x68\x2e\xf9\x2b\xb3\x42\x1a\x92\x19\xa4\x03\x51\x0f\x57\x9e\x5c\x47\x79\x15\xec\xba\x7d\x7b\x43\xd9\x49\x52\xaf\x59\x01\x3c\x32\x19\xcd\x8b\x72\xc2\x0a\x07\x26\x93\x97\xab\x32\x7d\x56\x21\xbe\x0d\x00\x0b\xd4\x99\x57\x57\xff\x69\x06\xb0\x5d\xa7\x36\xd0\x8b\x56\xf1\x22\xd6\xe9\x7e\xf4\xa2\x3e\x72\xac\xe6\x42\x87\xe1\xba\x88\x32\x1e\x65\x30\x50\x14\x59\xd0\x4b\x6b\xa9\x42\x20\x80\x57\xd0\x99\x05\x7a\x5f\x3b\x50\x83\x0e\x98\xc8\xcf\xfb\x4e\x88\xf7\xb5\x6d\x75\xab\x6e\xbf\x8e\x3b\x73\x30\x08\xbf\x6f\xa7\x09\xba\xd9\x08\xe7\xec\xf8\x87\xa9\xed\xb6\x74\x1b\x9a\xdc\x45\x4e\xeb\x6d\x0f\xd4\xad\xab\x90\x80\x7f\x22\x38\x81\x3d\xd7\x28\xa3\x12\x56\x5d\xb7\x71\xa3\xab\x7b\xcd\x3d\x32\xd9\x25\xbf\x4d\x58\x0e\xc2\xbf\xb2\x0a\x50\x56\x61\x20\x8d\xf6\xd7\x24\x69\xed\xaf\xd5\x6a\xbf\xa5\x04\x04\x38\x0f\x2a\x2e\x05\x4d\xdf\x5c\xce\xfb\x78\x5a\x84\xaf\xd4\x10\x84\x0c\xb5\xaf\xe9\x35\x83\x00\x9d\x33\xe0\x04\x84\x82\x52\x31\xcd\xb0\x76\x0e\x2b\x5e\x04\xfd\xdc\x23\x5a\x5b\x96\x6a\x69\x00\xdb\xe6\x2f\x65\xa2\xe8\xec\x82\xf9\x53\x7d\xd2\xd8\xb2\x6d\xfe\x8a\x34\x5d\x74\x6f\xd6\xed\xe0\x37\x2c\x34\x2e\xfa\x56\x65\xd3\xb8\x23\xe9\xeb\xe7\x49\xc7\xe7\xf5\x93\x67\x3c\x72\x6b\xcc\x40\x9d\x07\x37\xcf\x62\xf4\x4b\x8c\x7b\x6e\x68\x91\xbb\x1e\x26\xf3\x32\xcd\x44\x57\x95\xb6\xfc\x68\x53\x63\x56\x1a\xff\x0f\x58\x01\x38\xdd\x6f\x99\x10\x74\xcc\xda\xe0\x66\xec\x49\x47\x90\x74\xc7\xcc\x80\xec\x6a\x14\x7a\xfc\xd8\x95\x4b\x76\xfc\xaa\x47\x52\x6a\xdc\x75\xdb\x3d\x7e\x4c\x5a\xfd\x35\x29\x5d\xd8\x42\x63\xd0\xd9\xee\x48\xa9\x43\x7e\xfe\xfc\x99\xb4\x8c\xa6\xab\xe5\xef\x7f\xeb\x35\xa8\x94\x54\xff\x16\x14\x74\xf6\x94\xb4\x22\x83\xb4\xd8\xd1\x15\x5b\x20\x58\x05\x40\x05\xc6\xc3\x84\x0d\x28\xe8\x9c\x71\xe5\xab\x68\xd5\x6b\x8e\x7d\x91\x13\x77\xcd\x31\x35\xd2\x86\x12\xfa\x10\x00\x20\x4f\x35\x24\x4f\x85\xf3\xac\x39\xe1\xa0\xc4\x57\x01\x37\x1c\x65\x03\x3a\x31\xcd\xb3\x4c\xb3\x82\xf2\x2a\xb0\x43\x6c\x55\xa2\x6d\xc1\xde\x31\x45\x86\x61\xf3\x4e\x27\x74\xc6\x7e\xc3\x8d\xd6\x7b\x98\xe6\xb3\xb9\x96\x70\x34\x67\x1c\x99\xd9\xcd\x0d\x80\xbf\xb2\xc5\x3e\x1d\x4e\x5c\xdf\x47\x55\xbd\xc6\x1f\x5d\x03\xb2\x1e\xe9\xda\x87\xc2\xdb\xeb\x00\x2d\x40\x5c\xad\x1c\xec\x17\xa4\x15\xbc\xa3\x1b\x7f\x8c\x19\x15\x9e\x2a\x12\xcf\x07\xd9\x86\x16\xce\xb2\x13\x15\xfa\xdb\x48\x23\x6a\x7c\x2d\xc7\x36\xc0\x99\x8c\x9b\xe1\x6e\x23\x7c\x69\x6c\x41\x27\x24\xe1\x4c\x38\x72\xb2\xdc\xae\x34\xd1\x70\x63\xf2\x96\x5e\x49\x16\x48\x3d\x53\x84\x03\x06\x24\x00\x07\x38\xcf\x46\x05\x14\x36\x96\xeb\x98\x70\xc1\xf4\x5d\x4f\x0b\x2b\xb7\xc0\x56\x7b\x2f\xeb\x81\x36\xc2\x6e\x69\xa7\x32\x7a\xc9\x28\xc1\x61\x70\xf7\xe3\x29\x69\x81\x2b\x84\xdd\x6d\xa0\xb2\xe8\x08\x21\x6b\x7f\xba\x35\xa7\x4f\x25\x4c\xb3\x5d\xc4\x53\x20\xcc\xdd\x7e\x5f\xb4\x7b\x74\xfd\x9f\x9f\xf7\xd6\xff\xfb\xfc\x69\xa7\xdb\xe9\x6d\x9e\xe3\x89\x8a\x89\x61\x06\xac\x2b\x8d\xcf\x08\xd4\xbc\x3b\xc2\x30\xdb\x2d\x89\x4f\xdb\x6a\x18\xee\x1e\x61\xb0\xa9\xfe\x5a\x24\xbf\x69\x8a\x50\x31\x02\xf0\xf0\x37\xc4\x52\x77\x12\xa3\x34\x2b\x59\xe1\x44\xcb\xc2\x3c\xf3\xde\xe2\x3d\x32\x3b\xe0\x5b\x8d\x62\xdd\xc7\x8f\xc9\xa3\xea\x71\x71\x02\x1e\xe8\x0b\xca\x1f\x53\x4d\xa0\x2e\xb7\xeb\x06\x88\x9e\x6b\x6f\xc7\x41\xe3\x00\xb8\x4d\x80\x5b\xc1\x04\x4b\x1b\x70\xa5\x9b\x5a\x6e\xca\x13\x28\xd7\x0b\x0e\xd6\x15\x5b\xe0\x6a\xab\xed\xc1\x8d\x09\xda\xd6\xed\x8d\x0d\x28\x5a\x87\x7e\x31\xc1\x7a\x96\x6b\xe4\x64\x94\xe6\x09\x98\xa0\x2b\xb9\x1d\x4d\x44\x35\xa9\x94\x23\xd2\x94\x70\xdb\x1b\xcc\x5d\x58\x12\x13\x67\xea\x00\x46\x3f\x02\x20\x75\x4f\x1c\x63\x12\x9f\xa2\xca\xd3\x5b\x68\x11\x15\x88\xa9\xa5\x74\xb8\xbc\xb5\x44\xf0\x8e\x2d\x76\x48\xa9\xb5\x52\x11\x6e\x78\x12\x7c\x48\x02\xc6\x48\x6b\xaa\x54\xb5\xb6\x63\xe9\x7a\x37\x6b\xe4\x71\xf6\x3e\xc0\xd5\x15\x85\x27\x2b\x5f\x9b\xfa\xb1\x58\xf5\x94\xfe\x13\x0d\x3b\xcc\x1d\x68\xed\x25\x2c\x21\x77\x35\x49\x0d\x86\xbc\xd0\xbc\xfe\xb6\xad\x70\x9c\x21\x43\x39\xa5\x0b\x6c\xaf\x54\xe6\xce\x15\xaf\x2e\xe5\x84\xe7\xfd\x7e\xab\xd4\x4a\x24\x48\x3d\x41\xd5\x23\x14\x2a\x66\xec\x7d\x1d\x21\x2c\x7d\x47\xcf\x05\x5b\x76\x41\xd7\x3e\x97\x2a\x87\x39\x63\x19\xfc\xee\xe4\xf8\x97\x83\x8b\xf7\x47\x7f\x3d\x3a\xfe\xed\xe8\x62\x6f\xff\xec\xf0\xf8\x08\xc2\x23\xbe\xa5\xe5\x24\x2e\x68\x9e\xf0\x69\xbb\x63\x79\xa1\x67\xdf\x75\x62\x88\x4d\x0f\xbf\xbe\xef\x38\x11\x00\x11\xf7\x6d\xbf\x55\x1b\xac\x3a\xec\x81\x01\xdd\x76\xfe\x20\x8c\xb8\x91\x62\xc7\xac\xe0\x03\xfd\x3a\x48\x09\xce\x09\xfa\x8d\xd5\x39\x7e\xa9\xf6\xa0\x2c\x16\xd6\x46\x16\xbe\x55\x70\x5b\x52\x22\x5e\x10\x0e\xd6\x16\xfa\xc5\x26\xcd\x21\x27\x98\x5c\xcf\x27\xfd\x35\x45\x5a\x72\x3a\x65\x62\x46\x87\x88\x17\x0b\xb8\x52\x9d\x77\x44\x65\xb6\x1e\x93\x43\xdc\xbc\x7a\xcb\x71\xd8\x6f\xff\x1d\x73\xd4\x64\xc3\x3e\xcf\x33\x26\x04\x49\xcb\x00\x91\x01\x46\x9a\xab\xf7\x1b\xc8\x8f\x7e\xa7\x91\xba\xe4\xcd\xc6\xb4\x48\x00\xa2\xa2\x87\x00\xc7\x79\xb2\x69\xc2\xf7\x10\xd5\x31\x04\xa2\xd2\xab\x48\x7c\xf5\x50\x53\xdd\x27\xb7\x9e\x71\x3f\x08\x75\x4b\x58\x13\x63\xeb\x5d\xb1\xde\x15\x91\x6f\xa5\x0d\xf0\xc2\x4a\xd6\x0a\x0b\x0c\x95\xd0\x78\x62\x38\x49\xb3\xc4\x9e\x34\x9a\x27\x64\x4c\x61\x9b\x51\xba\x44\x77\x37\x08\xf1\x1f\x18\x82\xab\x57\x60\xe5\xed\x83\x83\x05\x3a\x6f\x5f\x40\x35\xa9\x81\x62\xb5\x9e\x48\x84\x6a\x07\xe8\x39\x8f\xfb\x8a\x2b\xa3\x4d\xde\xab\x5f\x1e\xbf\x4f\xd7\x28\xbe\xa6\x1b\x94\xac\xd5\x0b\x2f\x3e\x74\x03\x87\x98\xe0\x0c\x79\xce\x62\x72\x9c\x33\x38\x11\xe6\x29\x9f\x0f\x4a\x9a\xe6\xb8\x0e\xa5\xb2\xf0\x97\xa4\xe8\xe0\xf4\x3b\x72\xa9\x64\xbe\x27\x84\x1a\xaa\x25\x2e\x89\x58\xe4\x25\xfd\x18\xbb\x5a\x67\xf5\xc0\x22\xd7\x5e\x61\x21\x40\xb4\x47\x57\xe3\xb9\xb1\x2b\xd0\xe7\xa4\x94\xa7\x49\x29\xdb\x2c\xfe\x86\xf2\x3f\x8e\xaf\x91\xe8\x4f\xc9\x0d\xf5\x4e\x89\x79\xb7\xaf\x3b\x6c\x6a\x68\x05\x1b\xf2\x71\x0e\xa6\xe7\xd4\x7a\x59\x37\xfa\x66\xef\x55\x5d\x04\x3c\x9f\x73\xc4\x3b\x73\xfb\x18\xe3\x3a\x00\xa8\x46\xab\xb1\x4a\x0e\x6f\x30\x4f\x33\x30\x2a\x74\x11\xae\xce\x20\x3d\xf0\x11\xa9\xda\x37\xfb\x72\x40\xc8\x54\xdc\x57\xd6\x82\x87\x29\x23\x54\x98\x08\x62\x75\x4f\x48\x55\xa9\xc7\x7f\x44\xd2\xd1\x06\x77\xdd\x9a\x6e\x54\xc2\xfb\x46\x75\xaf\xbf\x88\x84\x62\x6a\x1b\xef\x1c\xa2\xb5\x16\xed\xd6\x11\x37\x5b\x34\x2b\xf8\x75\x9a\x28\xdc\x94\xc3\x0c\x6e\x20\x47\xbb\x18\xc6\x29\x5c\x3e\x86\xba\xb7\x0f\x6f\x55\x35\x13\x5e\xc7\xad\xd9\x30\x35\xe1\x66\xd4\xec\x9e\x07\x55\xf3\x69\x15\xc9\x05\x18\x7f\x27\x21\x7a\xfe\x25\x0b\x5f\x0b\xf1\xd3\x6d\x28\x32\x01\xc6\xee\x01\xa7\x9b\xf2\x1c\xae\x78\xbf\x67\xe7\x75\xb5\x86\x21\xae\x4c\x28\x88\x3d\xa4\xb4\x6e\xb5\x9d\xd4\x85\xfa\x0c\x0e\x09\xb0\x90\xfe\xbb\x86\x50\x2c\x71\x18\x62\x53\x4a\x3d\xa0\x61\x30\xd1\x34\x37\xce\x61\x75\xdc\x58\x1a\xde\xc7\x6d\xbd\x1c\xae\x76\xca\x8b\xc7\xb9\xe9\x63\x7e\xcd\x34\x2a\x8c\x52\x4d\x9d\xba\x07\xf1\xfb\x1e\x22\x39\xc0\x1b\x4f\x95\x83\x0e\x92\x2b\xa8\x7c\x14\x47\xe1\xed\xd4\x52\x95\x8f\x17\x96\xd1\xef\xb4\xf6\x8c\x06\x55\x1a\x0f\xa1\xf2\xb1\xde\x47\xa3\x9c\xe0\xc5\x5c\x9b\xd7\x6b\x89\xc7\x6c\x8d\xa1\x63\x17\x8a\x90\x5d\x48\x4a\x16\x9e\x33\x43\xce\x2e\xaa\x8f\xe2\x17\x48\xd2\xc2\x26\xbd\x0b\xe7\x61\xdc\x97\xca\xfc\xc3\x7f\xe1\x45\x43\x45\x0f\x55\xd4\x37\xc1\x60\x5f\x71\x09\x8e\xec\x22\x66\xd6\xd4\x36\xd3\x32\x35\x35\x43\x5e\x03\x27\x34\x3c\xa8\xbc\xda\x7a\x90\x96\x50\x50\xd9\x33\x73\xd4\xb7\x1a\x5f\x1a\xd5\xbb\x17\x57\x75\xbd\x57\x05\x00\x17\x68\x65\xb3\x89\x1d\x23\xae\x84\x7a\xe8\x75\x46\x6d\x9a\x78\xb8\xe0\xfc\xf8\xfc\xb9\x32\x51\x79\x32\x6a\x16\xcb\x25\xc1\x86\x84\x38\x90\x5e\x38\x28\xb5\x8d\xfb\x63\x63\xa6\xac\x45\x6b\xd6\x77\x30\xcd\x13\x14\x36\xc0\x2d\x93\x17\xca\xc6\x47\xfd\xb2\x6e\x4e\xf5\x01\x5b\x48\xc5\x43\x21\xb0\x26\x52\x70\x54\x14\x5c\x97\xef\x31\xa1\x70\x83\x68\x2e\x2b\x33\xe3\xd4\x71\x9a\xe2\x85\x61\xc0\x2b\xaa\x36\x80\x06\x4c\x8a\xbc\x89\x50\x2a\x80\x6f\xc8\x07\x99\xa9\x60\x5e\x82\x44\x33\xd9\xc6\xfa\x0a\x6d\xdd\xf1\x3d\x88\x21\x4b\x26\x59\x48\xc7\x10\x5a\x3b\xcc\xc6\x26\xc5\x1a\xf8\x02\x50\xd7\x70\x4c\xbd\xa3\x82\x4d\xba\x16\xa4\x25\x5c\x0c\x4c\x80\x1e\x25\x66\xed\xde\x2e\xbc\x3d\x11\x71\xc2\x4f\xb5\xbd\x57\xbb\xd3\x81\xf4\x26\x05\x44\xf0\x84\x8e\xe4\x92\x5a\x96\xb0\x62\xb1\x66\x6c\xc0\x32\xc1\x81\xbf\xb3\x22\x84\xa3\xf2\x41\xad\x64\x5a\xc8\x81\xab\xbd\x89\x4c\x00\x99\x31\x68\x07\x1c\x5b\x4b\xb5\xdd\x55\x79\x41\xb3\xa1\x9f\x7d\xab\x45\x3d\x93\x26\xf1\xc1\x6e\x28\x40\x53\x9b\xea\x06\xc2\x68\x90\x07\x96\xcb\x02\x18\x02\x47\x8b\x01\xda\x4d\x64\xc9\x42\x34\x4f\xe8\xd6\x5a\x64\x9d\xb9\x26\xf9\x97\xce\x22\x5e\xd3\x34\x43\x5b\x09\xe5\x30\xac\x3d\x12\x9f\x58\x9f\xa1\x26\xbe\xdd\x2c\x18\xbe\xf1\xc3\x12\x4d\xd3\x69\x3a\xbc\x42\x23\x51\x46\x78\x91\x8e\x25\x7d\x36\xcc\xb9\xc6\x64\x80\x88\xd8\xec\x1f\x0a\x1f\xa7\x4b\x7f\xd8\xe0\x90\xa2\xd5\x41\x8a\xed\xa7\x7e\x54\x08\x2a\xb4\xad\xb2\xde\xbf\xcb\x48\xa9\xae\x02\x9b\x65\x5c\x53\xc7\x73\xda\x03\x74\x97\x60\x50\xa1\x42\xc2\x27\x1f\xa2\x42\x87\x2a\x86\x80\x06\xc1\x1a\x18\x5b\x35\xe2\x3b\xe8\x9d\xdb\x51\x83\x5f\x5f\xd0\x9d\x6b\x2f\x20\x09\x78\xcd\x68\xbc\x40\x0d\x15\xad\x52\x75\xee\xc4\x68\x6d\x2d\x31\x93\xf2\xa0\x63\x9a\xae\x35\x6f\xe6\xc1\x07\x14\x4a\x0d\x7d\x93\x17\xa4\x25\xff\x6d\x91\x6d\x52\x3b\x89\x8e\x52\x4d\xcb\x7f\x5e\xa6\xca\xb8\xac\x48\x4b\x46\xfa\xfa\xc1\x36\x18\xe1\xa8\xe0\xd3\xfe\x9a\xab\x00\x34\x35\x41\x04\xaf\xad\xfe\xa2\xfa\x6e\x71\x55\x95\x14\x82\xa1\x19\x69\x6f\xc0\xe7\x95\x85\x5a\x2a\xf3\x5d\xdd\x2d\xec\x5d\x79\x71\x9f\x2d\x2f\xac\x3a\x30\x0f\x78\xba\x43\x57\xfc\x69\x42\x89\x66\xc9\xaa\x66\x06\x5a\xbe\x5a\xfd\x1a\x6e\x8a\x11\x5a\x03\x5c\xdd\xf5\x36\xf2\xe5\x74\xc6\x05\x13\xea\x80\xae\x9b\x37\x2a\xab\x96\x81\xa7\x72\xcc\xb9\x56\x72\x92\xb1\x51\xa9\x74\x27\xb2\x68\xca\x45\xe9\x93\x07\x79\xa9\x94\xf4\x8a\x59\xe7\x29\x73\xab\x4b\x24\x48\x4b\x2d\xb9\x2a\x37\xac\x74\x9c\xd3\x72\x8e\xa6\xbe\x00\x09\x49\x89\x90\xad\xc1\x48\x5b\x0e\x50\xa2\x5d\x33\x35\x8e\xe3\xd8\x8f\x77\x27\xbc\x80\x77\x18\xf6\x01\x27\xda\x1c\xbc\x6e\xcf\xb5\xba\x91\x97\x08\xbe\x98\xaa\xfe\x15\xb5\xad\x2e\x0f\x4e\xbe\x66\x89\x5e\xb9\xb6\xd7\xaa\xf7\xf6\x28\x22\xe3\x88\x4c\x3a\xf2\x76\x4a\x13\x96\x97\xe9\x90\x66\xa0\x1b\xe3\xa9\x8a\x04\xd4\x8e\xe3\x98\x16\x63\xd1\x81\x08\x38\xed\x71\x7b\x62\x4a\x3a\x1d\x9b\x51\x6e\x89\x3a\x05\x7a\x52\x28\x66\xe5\x85\x8c\xe5\x35\x72\x62\xa4\xd6\x6b\x97\xec\x15\x05\x5d\xb4\x65\xb5\x4e\xa4\x85\x04\x29\x5f\xc8\xbf\x7e\x82\xe6\xf8\xc3\x39\x33\xd0\xd4\x30\xb6\x56\x50\xbc\x08\x03\x9d\xcb\x63\x01\x95\x97\xbe\x2e\x5b\xfe\xd1\x8d\xf8\x67\x8d\x71\x8b\x71\x9d\x0b\x50\x2d\xec\xcd\x3a\xd8\x52\xcc\x6d\x10\xb2\x45\x8c\x42\x88\xf3\x4a\x45\x23\x32\x68\x1e\x61\xcd\xf0\xda\x83\xbb\x19\x5a\x33\x76\x9d\xeb\x01\xb6\xe6\x7e\x79\x36\xee\x95\x62\x63\x49\x6e\x8d\xe6\x94\x1a\x5f\x9c\x49\x63\x49\xd8\x7b\x72\x0b\xff\xcf\x0f\x79\xaf\xf2\x63\xa8\x4b\x42\xa1\xae\xb5\xfb\xc1\xdf\x7e\xac\x1d\x1b\x28\xa6\x2e\xee\x03\xf8\x50\x33\x37\x9a\x84\x56\x76\x1b\x3e\x0d\x59\x6e\x1d\x43\x58\x7e\x72\xc2\x3b\x58\x66\x1d\xb9\x4a\x50\xb9\x42\x54\x7d\x56\x62\x52\x25\x2a\xae\x44\x64\xa2\x56\xb0\x8f\xb3\x82\x09\xa1\xcf\x2e\x78\x2a\x4c\x0a\x9e\xf3\xb9\x70\x1f\x64\x80\xe9\x1f\xa6\x02\x9c\xc6\xc1\xd5\x98\x17\x24\xe3\xe3\x31\xb8\x6a\xb8\x3c\xda\x8c\x2e\x32\x4e\x9d\xe8\x9e\xa7\xac\xc1\xe3\x48\x19\x84\x2a\x12\xe3\xcf\xc5\xf1\x6f\x32\x80\x7e\x61\x43\x2a\xb9\x61\x67\x69\x52\xe1\xf9\x68\xbb\xa3\x57\x81\x47\x94\x66\x5b\x19\x70\x82\x20\x60\x19\x57\xbb\xf6\x2a\xcc\x8e\xa6\xd5\x40\x87\x26\x34\x75\x48\xb5\xf1\x76\x21\x8c\xca\x4d\x08\xbc\xa3\x06\xda\x0b\x2e\x60\x47\xa5\x98\x61\x9c\xc2\x2f\x03\xaa\x4b\x05\xc9\xe9\xd4\x31\xac\xa8\x79\xa9\xf0\xae\x06\xdb\xab\x50\x96\xbb\x66\x14\x30\x5c\x6d\x98\x01\x48\x94\x2c\xbb\x2a\x82\xf9\xc3\xb9\xd7\x77\x44\xb0\xf8\x4b\x38\xdc\x4a\x28\x92\x55\x69\xb6\x3b\x91\x2f\xa2\xdc\x0e\x80\x55\xe8\x77\x85\xfc\xb9\x31\x30\x1a\x69\xe4\xaa\xd1\x4a\xac\x2e\x53\x2e\xea\xee\x3d\x23\x9e\x78\xca\xa5\x0b\x73\xcc\x77\x89\x2f\x3e\x7b\xd5\x70\xb7\x55\x30\x0b\xf7\x83\x5d\x97\xbd\x77\x87\xae\xd9\xb7\x6b\x10\x89\x80\x03\xb3\x48\xe2\xd9\x59\xde\xe9\x47\xe5\x5d\x1d\x17\x61\xad\xda\x64\x43\xd6\x6f\x47\x8d\xde\xd9\xc4\x20\xd1\x9f\xfd\x52\xe3\xf3\xeb\xb4\x6b\x7b\xf3\x75\xd4\x57\xf6\x4f\x77\x45\x35\x0f\x55\xb9\xe6\x60\x44\x9d\xb6\xbf\xe2\x1d\x67\x6d\x83\xfc\x47\x90\x39\x4f\x99\x7e\x7f\xaa\x5b\x3f\xd3\x6b\x65\x44\xb7\x9e\xca\x4a\xdf\x1c\x16\x63\xee\xb0\x1a\x0d\xad\xce\x9c\xbb\xc6\x2d\x77\x5a\xd4\x88\x62\xba\x51\xf5\x93\xd3\x2e\x38\xdc\xa6\x51\x50\xee\x8f\xad\xe9\xfe\x5b\xdd\x7a\xb5\xfb\xa4\x9f\xdb\xac\xfe\x94\x24\xf3\xe9\x74\xe1\xb9\xd9\x63\x08\x50\xf5\x1a\x69\x3e\x48\x4a\x0a\x76\x70\x10\x00\x81\x66\x2a\xdc\xc0\x02\xdc\x1b\x46\x36\x2e\x89\x89\x3b\x67\x5a\x9a\x46\x58\x93\xa1\x57\x68\xa3\x1a\x3f\x82\x59\x00\x88\xb9\x00\x47\x86\x20\xca\xe2\x7e\x31\x17\x13\x96\xb4\x75\xae\x86\x95\x1f\x08\x9c\xe8\x45\x06\x4a\x0c\xf3\x02\xe9\x0b\xcd\x44\xa0\x56\xf0\x19\x00\x99\x32\x2d\x9d\x99\x47\xb7\xbf\xab\xb4\xc1\xae\x73\x17\x7a\x11\xab\xf9\x82\x2b\x16\x9f\x97\xf0\x66\xca\x47\x76\xee\xb2\xdf\x7e\xdf\x19\x63\xbf\xaf\x45\xea\x33\x74\xf0\xa5\xfa\xdd\x5b\xe7\x26\x2e\xe6\x79\x8e\x41\x26\x44\xc6\x6f\x58\xe1\xa7\x69\x9e\xa7\x19\x08\xd6\xe8\x62\x85\x90\xfe\xee\x58\xe0\x64\x9c\x0b\xb6\xce\xf2\xeb\x74\xb4\x20\xed\x1a\x5f\x9a\x7f\xb2\xa2\xe4\x62\xd2\x75\x2b\x76\x30\xee\x6d\xc1\x6f\x04\x2b\x64\x43\x00\xcb\x0b\xf2\x12\x13\xe4\x65\xf3\x71\x8a\xee\xcf\x37\x6c\x20\xb9\x0f\xa2\x93\x39\x88\x92\x0e\xaf\xf8\x35\x2b\x46\x19\xbf\x01\xf8\xff\x98\x33\x01\x37\x74\xf7\xd9\xc6\x86\xfc\xff\x9b\x1d\x63\xf1\x89\x91\x03\x60\xa6\x60\x38\x6a\xfc\xb2\x87\x25\x2e\xa1\xec\x02\x34\x64\x6e\x42\x66\x39\x65\x34\xd2\x70\x83\x3f\x7e\x72\xcf\x7c\x14\x1e\xeb\xa8\xe6\xd4\x46\xe1\x89\x34\x52\x19\xb9\xdd\x71\x8d\xd0\x2f\x2e\x14\xfb\x7d\xab\xb3\xac\x95\x22\x4b\x07\x90\x4c\xcd\x54\x4a\x73\x48\xb5\x94\x97\xc6\x4e\xfd\x2f\xe8\xe7\xf4\x41\x40\x2e\x8b\x6f\x37\xb6\xd6\xe9\x40\x94\x05\xf5\xcc\xcf\x3f\x91\xc3\xbc\xcc\xd4\x73\xc1\x2b\x68\x10\x19\x08\x69\x5e\x66\xeb\x53\xfc\x86\xc0\xbc\x96\x6f\x53\x60\x34\xcf\x0a\x9a\x8b\x8c\x9a\xf7\xb4\x88\x78\xe0\xf0\x39\xd1\x1a\xcf\xc3\xfb\x84\x07\xe7\xec\xef\xef\x0e\x96\xf4\xb9\x3e\xa3\x85\x40\xf3\x60\xeb\x32\xc3\xca\xb3\x74\xca\xfe\x9b\xe7\xec\x30\x3f\xc6\x50\x37\x6d\x3e\x2b\x25\x9b\xa8\xca\x43\x36\xc0\xd5\xde\xc8\x9a\x9d\x1a\x09\x2b\xcb\x22\x72\xe5\xdd\x50\x34\xcb\x7a\x57\x92\x19\xd1\x9b\xd0\xfe\x64\x7a\xd8\x36\x7f\x91\xdb\x88\x48\x98\xbd\xab\xf3\x1a\xf7\x12\x9a\x65\xd6\xfb\xe3\x93\x36\xe8\xb1\x37\x32\x63\xb3\xb7\xac\x18\x33\x77\x1e\x9b\x08\x70\x2b\x54\x07\x85\x7a\x28\x33\x2c\x3b\x3e\x35\x96\xcd\x8e\x06\xd1\xf1\x1d\xc8\x40\xe3\xf4\x65\x73\xf7\x3a\xc1\x71\xca\x1a\x9f\x3f\xcb\x69\x75\x54\xd1\x96\x53\xf4\xe5\x8b\x81\xc8\x23\xf6\xf2\xe4\xd4\xee\x75\x7b\xb4\x59\xb3\xc1\x60\x74\x5d\x29\x75\x39\xc0\x4d\xff\x25\x0a\x18\xab\x91\xea\x81\xec\x56\x8f\x40\x8c\x98\x27\x02\xcf\xbb\xca\x32\x78\xeb\x61\x20\x76\x22\x32\x92\xab\xff\x89\x24\xc0\x9e\x55\x36\xb8\x16\x7b\x4d\xf3\x38\x01\x7e\xd2\x4c\x28\xaa\xc7\xf6\xd1\x26\x54\xc4\x95\x76\xaa\x77\xf0\xef\xfb\x77\x2b\x5b\xad\xd4\x2d\x04\x4e\xa8\x74\x6b\x2c\xd5\x14\x41\x34\x5b\x8a\x6b\x69\x9e\x31\x69\xa4\x8d\xe8\xd4\x29\x7f\xc9\xd0\xcf\x4f\x52\x0e\x7c\x67\xf1\x90\x3e\xe3\x43\x0a\xe9\xd9\x2f\x68\x8c\x7f\x47\x0a\xa4\xc0\x42\xf5\xc3\xc0\x53\xc5\xfa\x57\xa4\xc5\x9c\x37\x0e\x20\xaf\xc8\xd4\x78\xe5\x82\xf5\xcb\x22\x62\x0d\x23\x2e\x68\x6c\x48\x9d\xa1\x00\x50\xac\x7f\x19\x88\x27\xe9\x70\x72\xc6\x3e\x96\x07\xda\x49\xda\x05\x1d\x7e\x74\x54\xb6\x95\xa5\x81\x9b\x1b\xcd\x3e\x3a\xe4\x53\x75\xe9\xa4\x68\x40\xd2\x64\x9b\xb4\x5a\xe4\x76\xc7\x43\x74\x31\x3e\x4c\x24\x73\x1e\x36\x89\xd3\xc4\x8c\xd3\x3e\x42\x57\xab\xf9\x55\xd4\x20\xbb\x5d\x72\x99\x26\x2a\xa0\xb7\xca\xf2\x9a\x90\x51\xca\x90\x1d\xa0\xfa\x0e\x20\x0e\x20\x35\x3d\x7d\x51\xb5\x1f\x3d\x82\xb1\x45\xa4\xd5\xb3\x77\x95\xa4\xff\xe7\x64\x2f\x47\xf0\x26\x3e\x83\xb6\x2d\x2a\xb9\xda\x7c\x42\xf5\x50\xad\xc1\x24\xa8\xa0\xe4\x5c\x95\x39\x2e\x80\x77\x3f\x4e\xcd\x34\xcd\x2c\x0e\x73\x34\xfa\x34\xc8\x93\x0a\x52\x13\x8c\xdb\xd4\x67\xf1\x98\xe0\xcd\xd5\x6e\x8d\x38\x8f\x3f\x08\x50\x9f\xc3\xe5\xa5\xb8\x11\x5b\xf9\x94\xb1\x3a\xff\x61\x33\x59\x3b\x6b\x4c\x38\xbe\xf9\xe3\xe6\xb7\x4a\x1e\xd6\xc3\xd1\x61\xa9\x89\x4d\x13\xbc\x5c\x03\x66\xf1\x3e\x4d\x3a\x5e\x73\xfd\xa5\x97\x26\xe7\x76\x1b\x0f\xdf\xbe\x3b\x3e\x39\xdb\x3b\x3a\xdb\x26\xbf\xf2\x92\xcc\x68\x39\x81\x88\xed\xaa\x36\x6c\xf1\xde\xe9\x99\x36\x10\x56\x2f\x91\x59\x5a\x42\x0c\xe0\x9c\x27\xcc\xa2\x2d\x08\xfe\x71\x2a\x50\x01\x30\xd5\x46\x29\x35\x83\xf0\x74\xa3\x75\x15\x7a\x1b\xe7\xd6\x0d\x49\x72\x08\xb1\xea\xb2\x56\x80\xb4\x6d\x6c\x92\x62\x43\xee\xe1\x7e\x50\x2f\xb8\x35\x3d\x79\x65\x8a\x5d\x37\x88\xe2\xf3\xe9\x8e\x64\x58\x7f\x84\xbd\xc1\x0d\x79\x2e\x78\xc6\x62\xe0\x78\xda\xfd\xb5\x0a\x96\xf7\xfb\xfd\xb5\x06\x40\xf2\x13\x18\x61\x62\x48\x5b\xc9\xd4\x0f\xe6\x25\xb4\x50\x63\x33\x35\x72\xb9\x6b\x05\x5b\xd7\x19\x1a\x62\xd2\xef\xe7\xef\x32\x26\xb1\x5a\x9b\x54\x2b\x01\x41\xb6\xb1\x83\x18\x66\x29\x00\x81\xb8\xbf\xa6\x3d\x32\xbc\x06\xff\x24\x0b\x3c\x63\x05\x34\xca\x87\x2c\xee\xf7\x73\xe3\x4a\x8f\xf9\xf1\x05\x78\xd1\x6b\x34\xd7\xd0\xe3\x94\x77\x13\x3e\x14\xdd\x31\x83\x78\x10\xeb\x2a\x20\x5c\x57\x41\x5e\x4f\x52\xb9\xae\x83\x39\x48\x21\x6b\x1d\x7f\xcb\x1a\xf0\x52\xb2\xaf\xf0\xa8\x91\x71\x7e\x35\x9f\x85\x83\xfb\xe3\xb6\xfb\xd1\x2a\xfb\xed\x23\x63\xac\xfc\x50\xdb\xdd\x56\xbf\xff\xa9\x1d\x3f\x79\xd1\xe9\xf7\x6f\x5b\xdd\x71\x1a\x91\xfe\xda\xa7\xff\xd8\xbc\xad\xcc\x5a\x0d\xba\x89\xe1\x6a\x1a\x43\xa4\xf2\x56\x89\x80\xeb\xb2\xb7\xe4\x5d\x5c\x95\xbe\xe3\xcc\x6d\xae\x23\x3e\x84\xf7\xe2\x1d\x80\xc2\x3b\x33\x84\x07\x5b\x33\xad\xb1\x55\x83\x0f\xc1\x5d\xf4\xf9\xb3\xab\x99\x22\xa4\xad\x38\x81\xc7\x8f\x15\x4f\x10\x97\xfc\x8d\x94\x48\xf7\x29\x3c\x2f\x49\xa1\xd9\xbb\xd7\xfd\xef\x61\x62\x6d\x40\x32\x10\x7a\x95\x9f\xbf\xd0\x02\xb6\xd2\xa7\x64\x69\x59\xb2\x42\x2b\x51\xd5\x61\x26\x69\xee\x0a\xc0\x15\x80\xe0\x52\x91\x73\x43\x3e\xc5\x25\x86\xe1\x47\xc3\x05\x63\xe0\xf0\x93\x64\x39\xdf\xe1\xa5\x56\xfc\xac\x63\x8c\x54\xa0\x69\x05\xad\x9a\xaf\xff\x5d\xf1\x20\x90\xdc\xa2\x41\x14\xab\xf2\x11\x91\x82\xd5\xa9\x55\xe9\xe1\x46\xf8\xfb\x50\x59\x36\x2f\x9e\x8f\xfd\x0f\xcc\x6b\x61\xe3\x4b\x30\xd2\x43\xaf\x9f\x31\x2b\x3d\xce\x3a\x00\x1e\x30\x67\x21\x27\xe6\xc7\x05\xf0\x4e\x99\xe9\x4a\xf1\x7f\xea\x08\x84\x2d\x6e\xfd\x9f\x15\xd3\xd7\xc6\x05\xad\x88\xb0\xed\xfe\x1a\x32\x80\xaa\x67\x89\x18\x7a\x7f\x34\xfd\x18\xf1\x62\x1b\x88\x6c\x7f\x8d\x3c\x95\xac\xc8\x53\xd2\x5f\x93\xbf\x23\x52\xb0\x3c\x41\x6c\x0a\x1b\x5d\xb3\x62\x40\xcb\x74\x2a\x6b\x69\x06\xb7\x66\xdf\x58\x67\xc9\x6a\x28\x3a\x16\x72\x73\x2e\x39\x7b\x11\x7e\xdd\x26\x69\xd2\xbc\x5a\xb7\x15\xba\x66\x6a\x5b\x1a\xfd\x1b\xb3\x8a\x93\x52\xe1\x1e\x4b\xf4\xe8\x95\x29\x89\x8f\x2e\x2b\xa2\xc9\x54\xe3\x47\xc0\xf2\x47\xe1\xc6\x19\x58\x42\x59\x10\x3a\xea\xef\xdb\x1a\xf9\xf3\x0e\xbc\x51\x73\xab\xc5\x93\xfb\xe3\x87\x9a\x45\x13\x4e\xa8\x4b\x59\x96\x07\xe7\x82\xbc\x20\xad\x00\x4f\xc0\xe1\x33\x4d\xc0\x7d\xaa\xbf\x46\xa8\x30\x39\x16\xe3\x95\x31\xc7\x61\x88\x96\x1c\xf2\x9a\x03\xfe\x67\x1c\xee\xd5\x0f\xb6\x83\x9b\x8d\x07\xfa\xfe\x9b\x85\x79\xae\xbe\xe0\x40\xff\xae\x83\x7c\x5b\xd9\x99\x25\x3c\xc9\x12\x76\xa3\xba\xc3\x77\xd3\x84\x3a\x70\xb5\xd2\x9e\x6f\xc1\x0b\x84\xe0\xd6\xcd\x6b\xf3\x89\x8c\x19\x78\x0f\x27\x5a\x85\x88\x1e\xdc\x52\x32\x71\x03\x67\xc0\xf3\x40\x45\xfb\xd8\xa8\x21\x94\x58\x77\xf4\xfe\xed\x2f\x07\x27\x17\xaf\x8e\x4f\xde\xee\x9d\x5d\x1c\xbf\x3b\x3b\x3c\x3e\x3a\x25\xbb\xa4\x87\x43\x6a\xe1\x42\xbf\x85\x70\x28\x85\xce\x9e\xda\x12\xe5\x22\x63\xe6\x17\xea\xc9\x87\x8b\x4a\xc1\xcb\x54\xcc\x32\x6a\xcb\xe7\x79\x5a\x7a\x3f\x2a\x15\x04\x7b\x5d\xf0\xf9\x4c\xae\x9e\x2e\x83\x70\x4b\xf3\xe9\x61\x5e\xb2\x31\x2b\x5e\xa6\xe3\xb4\x14\xe1\xc7\x57\x05\x3e\xa4\x85\x5f\xe9\xc7\x65\x5f\xb1\xed\x69\x3a\xc6\x07\x8f\xbc\xac\x6f\xde\x58\xa1\xdb\x25\x07\xa7\x5b\x1b\x5b\x1b\xe4\x68\x3e\x1d\xb0\x02\x37\x47\xaf\x01\x9f\xce\xe8\xb0\x32\xc3\xa6\xa5\xd1\xe5\xb2\x33\x53\x98\x73\x0c\x45\x6a\xd7\x3d\x1d\xe7\xf7\x59\x54\x29\x87\x86\xfa\xa2\x31\x53\x14\xa2\x64\x05\xa8\x8b\x24\x6e\x39\xe3\x8f\x54\xc6\x8f\x2f\x55\x13\xd5\x29\x72\x1c\xfe\x54\x01\x0f\x14\x2e\xa6\x94\x7c\xf2\xd5\x2b\x4a\x1b\xb1\xab\x6b\xa8\x7e\x1c\xa5\x83\x3a\x51\xb2\x6d\x5b\xb1\xda\x9e\x6c\xe1\x1f\x1d\xcb\x8c\xb7\x72\x98\x74\x4b\xcf\xc3\x8c\xbc\xd3\xf1\x78\xe3\x4f\xb7\xae\x8a\x03\x0f\x1e\x4b\x8e\xcd\x80\x9d\xa3\xa8\x27\x17\xd5\x1f\x2b\x43\xa1\x45\xa0\x32\x0e\x76\xa0\x6d\x16\xd8\xef\x6c\xa9\x02\x10\x01\xb4\x87\x3c\x1f\xa5\xe3\x9a\x4d\x55\x21\x56\xc2\xbd\xbd\xe7\x96\x04\x77\x97\x1d\xbf\x45\xa9\xc6\x11\xe8\xae\xbd\x8b\x67\x15\xc6\x00\x21\xc6\xee\x95\x63\xe8\x5a\xbb\xbf\xa6\x16\xf9\xe0\xe4\xe4\xf8\xa4\xbf\x46\xba\x4f\x88\x5b\x42\x9e\x74\x23\xd2\xaa\xdc\x46\xb8\xf9\x71\xab\xe6\xfa\x56\x93\xaa\x49\xfb\xbb\x6c\xe5\xcf\xf8\x3b\x5a\x94\xe2\xff\xa0\x0d\xd0\x23\xfe\x17\xdf\x07\xb0\xd9\xf8\x4a\xd7\x61\xdd\x93\xd9\x5d\xaf\x70\x2b\x3d\xb6\x49\xd2\x70\x72\xf0\x66\xef\xec\xf0\x6f\x07\x17\x67\x87\x6f\x0f\x6a\x6e\x54\x49\x70\x58\x91\x0e\x5b\x91\xbe\x40\xcf\x77\xfc\x08\x46\x15\xba\x7c\xc2\x32\x48\xe4\x7e\x96\x4e\xd9\xff\xf9\xd4\xf9\xd1\x23\x43\x9e\x9b\xa9\x72\xa1\xa6\xdc\x40\x97\x7d\xa7\xc5\x15\xa9\xf1\xb2\x9d\x59\x46\x94\xab\xcb\xff\x45\xa4\xd9\x05\xe3\x9e\xce\xba\xdd\x55\x54\x42\xde\xe3\xbf\x9b\x56\x80\xd6\x47\x42\xf2\x4e\xb1\x2c\x20\x92\x49\x65\x43\x9e\x27\xad\xea\xd3\x5d\x75\x58\xea\x0d\x2f\xae\x7e\x71\x15\x4f\xd5\xaf\x77\x51\x0f\x5f\x62\x68\xe8\x82\xa4\xa8\x83\xb5\x7e\x35\x29\x86\xfc\x73\x13\xde\xc7\xfd\x7e\x7e\x56\x2c\xc8\x8c\x67\x8b\x51\x8a\x01\xc7\xd3\xb2\x56\x2d\x0b\xe7\x5d\x63\x59\x99\x4e\xd5\xa1\x07\x29\xa4\x9f\x63\xf4\x9c\xb7\x87\xa7\xa7\x87\x47\xaf\x2f\x0e\x8f\xce\xde\x5c\xec\xbd\x3b\x44\x72\x16\x96\x92\x27\xdd\x90\x66\xdd\x8f\x3c\x2f\x3b\xde\xde\x2d\x89\x08\xf1\x85\x34\xba\x46\x3c\xab\xd2\x61\xbd\x20\xa0\x53\xbc\xe7\xb5\x78\x6f\x63\x0a\xe7\x90\x46\x01\x25\xf8\x7d\xd2\xcc\xcb\xbd\xb3\x46\xf2\xbb\x54\xa0\x51\x8f\xa8\x41\xa9\xd6\xaf\x9a\x82\x09\x9f\x17\x9b\x5b\xe6\xe7\x0d\x63\x57\x89\xc3\x8a\xb3\x82\x9a\xbf\x17\x8c\x5a\x40\x53\x9e\x97\x13\xf3\xcb\x6d\x22\x21\xba\x12\xc9\xbc\xb4\xbd\xa9\x13\x1a\x8e\x46\xae\x96\xd7\x7e\x7f\x31\x74\xa4\xb1\x04\xac\x64\x5c\xf9\x4c\x36\xf4\x4b\x46\x4a\x22\xa2\xd9\x29\xf4\x11\x08\x3e\x72\x85\xf2\xc4\x8e\xbf\xdb\x85\x41\xbf\x63\x45\xca\xed\x78\xf0\xea\x4e\xf3\xf1\xe9\x42\x94\x6c\xba\xb2\xbc\x01\x29\xb3\x65\xf1\x4b\x5a\xfe\xc1\x37\x5b\xd3\x03\xf2\x9f\x74\xe3\x35\x18\x76\x98\x31\x3d\x7e\x4c\xea\xcd\x5d\xc0\xd8\xe3\xee\xcb\x12\x57\xb2\x72\x4d\x7e\x81\xbc\xd2\x74\x70\xaa\xb7\xa3\x56\x7d\xa0\xa6\x43\x0e\x39\x78\xca\x09\x7a\x8c\x25\x86\x2e\xaf\x81\x68\xbf\xbc\x0e\x9e\x05\x8f\xd4\x75\xbb\x64\x2f\x49\xac\x95\xb5\x25\x66\x7a\xf7\xd2\x11\x91\xbd\x47\x04\x7b\xc0\x2c\x23\x00\x88\xa4\x22\x6f\x81\x85\x36\x84\xab\xb2\x40\xab\xeb\x55\xbf\x89\xe1\xfd\x1f\x91\x4f\xd0\xd7\x36\x71\xd8\x3c\xec\xd6\x29\x72\xcc\x5a\x43\x5e\xc3\x3f\x0c\x5f\xc4\x67\x48\x10\xee\xf5\x12\x9e\xaf\xaf\x23\x81\x00\x8e\x63\x94\x02\xa5\x02\x43\x07\xd0\x40\x1b\x2e\x6f\x1e\x18\x10\x7e\xfd\xfc\x59\x82\xdc\x26\xee\xfb\xf1\x3d\x2e\x4b\xa0\x6a\xad\xa5\x54\x43\x5f\x98\x89\x13\x84\xf8\xcf\x96\x66\x64\xdf\x2b\x5c\x9e\x7a\x88\x8d\x3b\x19\x72\x8a\xff\x4e\x3b\x09\x24\xe3\x5f\x7e\x27\x57\x64\x83\xee\xdc\x49\x98\x63\x55\x35\xf0\xef\xb4\xa1\x2b\x1f\x4d\xbd\x0e\xff\xca\x27\x54\x6b\x1b\x9a\xcf\xe5\xbf\xf9\x6e\xae\x7c\x3c\xff\x15\x76\xf3\xae\x53\x5a\xa7\x3b\x5a\x55\x57\x74\x4f\x2b\xeb\xd5\x55\x4b\x72\x5f\xdf\xbd\x79\x7f\xb2\xf7\xe6\xbe\x52\x8a\x44\x83\x26\x36\x1b\xe1\xbf\xcb\xe6\x05\xcd\xb4\xfa\x08\x7f\x9d\xcc\x33\x26\x1a\x91\xb2\x89\xc9\xfe\x7a\x8a\x22\x50\x0e\x80\x70\xef\x8c\xa7\xf1\xe5\xb7\x46\x27\xe0\x34\xfb\x43\x94\x01\x33\x80\x5f\x48\xf8\x5f\x47\x0b\x70\x0f\xc6\xbb\x16\x11\x3a\x77\x9d\x5b\x67\x45\x1a\x39\xc5\x58\xb0\x8c\x0d\xef\xa1\x66\xbf\xb7\xce\x00\xd7\x6d\xd9\xf9\x6b\x41\xa8\xd2\xd6\x97\x1f\xc2\x2f\x50\xd8\xde\xa9\x24\x78\x73\x78\x7a\xf6\xa5\x27\x8f\x78\xaf\x9f\xe7\x0a\x62\xce\x6f\xc8\x2e\x10\xe1\x38\xe7\x37\x90\x3b\xc3\x11\x7f\x73\x56\x00\x13\x70\xc5\xf2\x76\x1a\xba\x4d\xc8\xa6\x4f\x49\x7f\xed\x02\x5f\xc0\x9d\xbf\x73\x7e\xb3\xec\x2a\x7a\x93\x8a\x52\x9f\x73\xf9\xb7\x77\xf7\x88\xff\x89\x73\x0e\x6b\x6b\x46\xa2\x75\x86\xb6\xc4\xd5\x15\xda\xd2\xfb\x10\x02\x07\xfa\x1f\x41\x07\xb2\x54\x94\x5f\x53\x19\x78\x0f\x32\x50\x83\x93\x0d\x44\x00\x42\xb5\xa5\xc3\xc9\xdf\x60\x9f\x2f\x36\xdd\x60\x71\xfa\xbb\x4e\xe2\xc8\x92\xbf\x69\x93\x47\x44\x8b\xc0\x6d\xf4\x3a\x22\x69\xc5\xb2\xc3\xb1\x6d\xb8\x46\x5e\xa3\x3e\x11\x8e\xed\x0e\x6c\xc2\x43\x3c\xaf\x33\xa6\x72\x86\xdd\x4b\x93\x73\x39\xac\x66\x9b\xab\x65\xd6\x53\xa4\xaa\x8f\xf4\x8c\x3e\xdc\x1f\x80\x6f\x5e\x0c\x51\x67\x18\x1d\x65\x28\x5d\x99\x9b\xa5\xb5\x16\xe9\x9a\x49\xad\x12\x58\xc2\x75\x6f\x30\xaa\x81\x18\x7a\x92\x77\xc2\xa0\x74\xab\x77\xa0\x59\xae\x65\xfd\xa8\x81\x03\xfc\x06\x37\x24\x96\x55\xa6\x2b\x87\x74\x4d\x33\xb2\x4b\x58\xe6\xd9\x78\xbb\xab\xe8\xed\xdf\x35\xcd\xce\x6b\x31\x82\x66\x19\x26\x32\xae\x56\x5f\xbe\xa1\x90\xc2\xd2\x0d\xa8\x93\x65\x3d\x09\x4c\x99\xb2\xaf\x93\xcd\xf3\x66\xf3\x1a\xa7\xf7\x4a\xa3\xa7\x80\xfe\x2b\x74\xbe\x6c\x36\xd7\x34\xbb\x63\xfc\x15\x0f\x2c\x82\x5e\x58\xbd\xf3\xfb\xde\xbe\xbf\x9b\x2f\x86\x04\xea\x75\xf7\x72\xb7\x4b\xfe\x52\x8a\x75\x8c\xfd\xef\x5d\x44\x48\x20\xfe\xb5\x6e\xea\x97\x87\xa7\xef\xde\xec\xfd\xfd\xe2\x68\xef\xed\xc1\xa9\xa4\x8b\xf7\xb7\x4d\xf2\x2e\x6e\x6d\xd1\xb7\x9c\x87\x56\xf6\x33\x47\x74\xca\xf4\x05\xeb\x14\x7d\x55\x4e\x1a\x26\xe9\xc0\xd6\x97\xa6\x5b\xe6\x5e\x9b\x6e\xf9\x7d\x2e\x4e\xaf\x8f\x3f\xe2\xea\x4c\xb0\x03\x08\x3b\xff\xa7\x5f\x9e\x75\x68\x72\x27\x0b\xed\x2e\x49\x33\xdd\xe5\xa3\x2f\xe3\x9f\x7f\xbf\x9e\x02\x87\x07\x6e\xfa\x95\x93\xfc\xff\xb3\xf7\x2e\x7c\x6d\x1b\x4b\xe3\xf0\x57\x99\x90\xf3\xc6\x76\x10\xbe\x71\x77\x4a\x29\x21\xd0\xf2\x3c\x69\xc8\x03\xa4\x3d\x3d\x36\x25\xc2\x5e\x8c\x82\x2c\xb9\x92\x9c\xc0\x49\xf8\x7f\xf6\xf7\xb7\x37\x69\x6f\xba\xd9\x26\x21\xad\x75\x7e\xa7\xc1\xd2\xee\xec\xec\xec\xec\xdc\x76\x76\x97\x4e\xd1\x06\x3f\xd1\x6b\x7c\x47\x8f\xa2\x6a\x37\x5b\xeb\x16\xfc\x61\x5f\xfb\x3e\x1c\x79\xfd\xba\xfc\x39\x04\xd7\xe9\x23\x2f\x64\x57\x14\xd0\x5b\x37\xdf\xa0\x4f\xf0\xf2\xf4\x15\xbc\xa6\x9f\xea\xf1\x11\x34\xe4\xf0\xab\x3e\x49\x62\xf3\xc8\x49\x27\xaf\x8f\xf6\x0f\xde\x9c\x1e\x60\x12\xb1\xbb\x21\x50\x30\x0a\xf9\x89\x27\xda\xfa\x9f\x05\x17\xfc\xf0\x07\xfc\x67\x80\xc2\x28\x63\x49\x90\x9c\xed\x72\x82\xec\xf8\x62\x2f\x72\x57\xa5\x24\x2c\x78\x36\xbf\x20\x2b\x1c\x0f\x2b\x75\x4c\x6a\xa9\xe4\xab\x83\xc3\xbd\x77\xaf\xcf\x28\x73\xed\x1f\xbf\x39\x3c\xfa\xd9\x4a\xb6\xc5\xe1\xe2\xfb\xbe\x17\xa1\xdb\xc8\x02\x8a\xeb\x3b\xcf\xf9\x6b\x82\xfe\x17\xdd\x85\x4c\xc1\x26\x5b\xb4\xeb\x26\x51\x27\xed\xb8\xc4\x98\xf7\xfd\x80\xb9\x4a\x71\x6a\x2e\xdd\xdc\x86\x1b\xe3\x05\xf6\xe3\x37\xe2\x57\x72\xe6\xb0\x65\xd8\x54\xee\xc8\xdd\x22\x14\x0a\xaf\x6d\xd7\xf5\x3f\x1d\xfc\x35\xb1\xdd\xf0\x82\x55\x61\x2f\x57\x10\x7e\xdb\x60\x77\x2c\x4b\xf8\x3a\x21\x45\xee\xdf\xbf\xbe\x66\x9b\x5a\x0e\xbd\xbc\x5d\xe8\xec\x70\xec\xa4\x39\xd8\x51\x9a\xe7\x1b\x17\xe1\xcb\x17\xe5\x8b\xe8\xfe\xb0\x83\x1c\x18\xd5\xaf\x9c\x21\x8b\x34\xa9\x7e\x90\x30\x8f\xe8\x64\xec\xf0\x80\x11\x9b\x9b\xc9\xf7\x64\xc1\x8c\x95\x88\xb7\x85\x0a\xcb\x38\x74\x89\x2c\x2e\xc2\x97\xcc\x04\x28\xe8\x36\x22\x87\xe1\x79\xc8\x8b\x12\x50\xe2\x5b\xa1\x34\xdf\x6e\x12\x17\x8c\xb7\x01\x26\x65\xa4\x6c\xec\xb8\xa0\x9c\xa3\xad\x95\x3e\x54\x10\x55\xb6\xf8\x68\xd2\xa5\xa3\xc4\xd1\x84\x12\x9f\x02\x7b\xcc\x37\x2f\xed\x5f\x4f\xbc\x9b\xf0\xc8\x3b\x0c\xec\xe1\x48\xec\x60\x56\x21\x1d\x3b\x75\x2f\x94\x8a\xa6\xfa\x9d\x41\xb8\x57\x76\x9d\xeb\xd3\x4c\x67\xc8\x3d\x76\x1a\x51\x55\xd9\xa3\x2c\x6c\x37\x33\xe5\x53\xc7\x66\x0b\x68\xc1\x07\xd1\xe6\x67\x00\x0c\x06\x71\xbf\xaf\xee\xcb\x27\xb6\x70\xec\x32\x75\x6f\xce\x05\x73\xce\xee\xf7\xe9\x9e\x7d\xd3\x9c\xaa\x7e\xac\xc9\x16\xe1\x6e\x9a\x80\xd1\x4a\x76\x24\x4f\x28\xbe\x8d\xba\x6f\xd8\xcb\x9f\xac\x42\x27\xbb\x8a\x85\x83\x9a\x58\x1c\x37\xd9\xb7\x61\xc1\x40\xc8\x8e\x0f\xec\x4f\xbf\xe9\x9b\xc0\xe3\x9d\x71\xa5\x46\x2a\x81\x25\x98\x33\x7d\xc2\x54\xe4\xf0\x20\x45\x28\xe6\xe2\x26\xef\x44\xd0\x37\xbc\x52\xd0\x35\x13\x1b\x10\xdd\x51\xdf\xbf\x76\xdc\x41\x80\xbc\x7a\xe4\x4b\x35\x8c\xec\x41\xbf\x61\x9a\xbe\x50\x4f\x9b\x03\x2c\x13\xd9\xa1\xab\xe2\xe9\x62\xb4\x03\xf4\x2b\xfd\x5b\xfa\x4a\x6e\x19\xa0\xff\xbd\xf2\xc5\x0d\x1d\x0e\xb9\x1d\x9e\xdc\x1d\xee\xc7\xd7\xde\x8e\xd0\xc8\x0f\xee\xc0\x45\xf6\x8d\x7c\x6c\x18\xa1\x62\xa2\x3e\xc4\xd1\xc5\xe6\x68\x5f\xb8\x98\x90\x85\x03\xec\x4f\xaf\xa6\xd8\x0f\x6f\xf1\xfe\xec\x30\x05\x4d\xc0\x77\xd3\xf7\xcc\x2e\x9d\xd7\xf4\x3c\x07\x43\x93\x65\x99\x28\x05\x79\x89\xab\xfc\x80\x53\x43\xd6\xa5\x29\x87\x45\x18\x6c\x80\x1a\xef\x6f\x8d\xd3\x30\xef\xf8\x09\x0c\x88\x37\x4c\x16\xf8\xa5\x69\xd7\x91\x7f\xd6\x2f\x1d\x6f\x40\x36\xb3\x6b\x7b\xa8\x12\x85\x46\x61\xe9\x2a\x4d\x55\x6b\xac\x9c\x41\xb1\x29\xca\x8d\x15\xd4\xd5\x9b\x51\x21\xb1\xd2\x69\x2a\xc9\xac\x96\xe4\x4a\xba\x62\x02\x45\x3d\xb2\xf2\x06\x05\x09\xb2\x1a\x63\x05\x75\x45\x06\x59\x0a\x28\x5b\xf3\x30\x61\xa9\x10\x26\x22\xd7\xcb\x50\x01\xca\x6c\x1b\x71\x83\x28\xec\x40\xe3\xf9\x73\xf8\xa9\xef\xda\x61\x08\xcf\x1b\x20\xe8\x87\x8b\x70\x32\x16\x0e\xae\x8b\x8d\xda\xaa\x08\xc0\x02\x56\x8c\xef\x0c\xe6\xd5\xc5\x42\x55\x4d\xc9\x5c\x10\xaf\x6b\x87\x55\x26\x1b\x6c\xc9\x49\xcd\xcf\x9e\xb1\x57\xec\xe0\x35\x5c\x4c\x3c\x5a\x14\x5b\x5c\xc2\x9d\xc7\x04\x2f\xfc\xbb\xde\x67\xf7\x9c\x28\xe6\xa5\x74\x99\x33\x2d\xc9\xaf\x11\x51\x38\x95\x00\xe8\x88\xd0\x94\x61\xc1\xa2\xaf\x23\xc0\xaf\xea\xf6\x1d\xad\x3c\xc6\x2e\x5a\xcd\x12\x41\xd5\x14\x58\x58\x10\xd2\x3a\x1d\x83\x99\x28\x81\x11\x06\x57\x57\x93\x17\xe2\xfd\xcf\xf4\x1f\x91\xee\x75\xec\xec\xa1\xc0\xf9\xc8\x8e\x12\x3c\x0c\xfc\x11\x0d\x67\x88\x92\x75\x4c\x93\x11\x2f\x6c\x6d\x94\x12\x34\xa9\x34\x4d\x7e\x33\x39\x42\x5f\x93\x3f\x95\x38\x6c\x2c\x5f\xf5\xee\xd1\x8e\xa9\x61\x4a\xc9\x8e\xae\x4a\x2d\x51\xd1\x95\x16\xa7\x34\x44\xae\xb4\xa1\xea\x8b\x48\xab\x83\xa1\x0e\x08\x2b\xac\x04\xbc\xcc\xf1\x4c\xe1\xba\x5e\xe9\xd0\x3e\x65\x1c\x92\x73\x35\xe8\xde\xbe\xb4\x5b\xbd\xc1\xe8\xac\x55\x13\xbe\xad\xe3\xae\x19\x62\x9e\xd4\x08\xa0\x3d\x66\x72\xa1\x9a\x4c\xd1\xcf\xd4\xbe\xe8\x80\x02\x08\xcb\x8b\x84\xd7\xea\x7d\x66\x43\xd4\xb2\xba\x32\x48\x82\x07\xb0\x03\x15\xf1\x5b\xc5\x58\x9e\x0a\x2d\xce\x76\x06\xed\x24\xeb\x22\xb1\x32\x16\x5a\x55\xda\xb5\xb7\x93\x00\xc5\xde\x09\x09\x08\x28\x27\x8d\x2a\xf5\x4a\x27\xe6\x52\xda\x1d\x0a\xf6\x99\x01\xd5\x9c\x14\x5d\x72\x39\x30\x65\x23\x7e\x5e\x19\xdd\x3d\xff\xca\x8e\xec\xfc\x75\x74\x71\x4f\x8d\x65\xda\x61\x23\xd4\x66\x3b\xb8\xf4\xea\x62\x62\xb5\x50\x3e\x10\x5e\x1b\x6a\xbd\xa2\x37\x05\xa9\x79\x3b\x96\x90\xfc\x61\xe9\x89\x20\x42\xb0\xa0\x31\x60\x29\x13\x06\xe0\x74\xc9\x56\x28\x4b\x57\x4f\x33\x02\x0b\x49\x51\xbe\x45\x59\x2f\xfb\xda\x09\xc5\x94\x69\xd7\x09\x23\x53\xc7\x04\x76\x15\x90\x4d\xde\x56\x1e\x99\x09\x9c\x9c\x6e\x9e\x26\xbe\x44\xfb\x37\x51\xf2\xb1\xee\x4b\x58\xb8\x2a\xd9\x7a\xf4\xa2\xa3\xd0\x77\x3f\xa2\x41\x22\xd4\xcb\x9b\x90\x2f\x0c\x21\x5f\x19\x6e\x1c\xfe\x55\x8f\xc7\x52\x8a\x29\x7b\xb8\x93\x60\xb1\x52\x4e\x5f\x9a\x7d\xc2\x8e\x9a\x50\x0f\xfa\xd0\xef\xe6\xa2\x8f\x1c\x9f\x54\xa7\x69\x95\x6e\xbc\xa6\x30\xa5\xc3\x6f\x68\x97\x27\x01\x1a\x58\x42\x00\x98\xac\x51\xcb\x7d\xe3\x9b\xb7\xa5\xcd\xf3\xd2\x21\x4d\xda\xe9\x35\x24\xce\xb7\x82\xb9\xa9\x61\x8f\x9d\xa7\xf8\x0f\x72\x85\x18\xe1\x1e\xf1\x10\x9c\xde\x52\xda\x91\x1a\x8d\x06\x9c\x3a\x5e\x9f\x84\x2c\x03\x54\xc1\x38\x43\x80\x86\x4e\x48\x4f\x34\x65\xc3\x33\xb0\x23\x9b\x00\x7d\x4f\x5f\xbc\x67\x07\x5e\x7f\x72\xc8\xed\x3b\x09\x2c\x8e\x38\xc4\x77\xa5\x88\x7d\x7c\x8f\x5f\x8f\x84\xfb\xce\xc9\x79\x26\xf4\xce\x7a\xac\xd3\xea\x12\x2c\x72\x45\x8c\x7c\x52\x89\xff\x11\x05\x81\x33\x18\x20\x4f\x6d\x80\x28\x87\xf7\x80\x46\xe3\xe8\x2e\x99\x78\x09\x30\xd2\xb0\xe3\x91\xeb\x6e\x02\x44\x2f\xd6\x74\x6c\x17\x48\xdc\xcf\x89\xee\xc0\xee\x07\x7e\x18\x42\x80\x56\x28\x2e\x61\x1d\x8e\xa2\x4a\x88\xdd\xb1\xc9\x88\xdc\xf5\x99\x00\x23\x87\x72\xff\xc0\x67\xc9\x80\x89\x9c\x1f\xf1\x58\xe3\x06\x42\x72\xf5\x91\xb4\x55\xfd\x3d\x36\x62\xc6\x75\x51\xe9\x1a\xd8\x3d\x87\xbf\xb1\xe5\x5a\x41\x9e\xb2\xe9\x28\x5e\xf8\xa3\x59\x42\xe2\xa6\xc5\x7a\x38\x19\x63\x89\x80\x06\x14\x40\x78\x7c\xc5\x82\xf5\x7c\xe5\x16\x5b\xcb\x26\x8e\x37\x1c\xdf\x12\x2b\xa0\x6a\x6f\x89\xbd\xd2\xd8\x83\xfb\x6a\x31\x8b\xbb\x0a\x6f\x3b\x54\x3b\xcb\x58\xc2\xbb\x50\x3c\x7a\x44\x03\x32\xc7\x79\xf2\x34\x98\x78\xd8\x2f\x5c\x61\xa7\xc2\x51\xa7\x3b\x63\xba\x98\x89\x2c\x27\xf7\x15\x22\xb3\x46\xdb\xaf\x4a\x6f\x05\xe1\xef\x80\xe2\x99\x71\x05\x79\x96\x08\xd1\x05\x7a\xd4\x8a\x18\x22\x13\x6d\xa0\x8e\xf4\x4b\x8c\x39\xc8\x00\xc5\x20\x5b\x5d\xd9\x08\x5c\x33\x9a\x55\x1d\xd3\xcb\x19\x1b\x10\xcd\xb0\x8e\xe1\x5d\x71\xf0\x86\xbd\x85\xa2\xa5\xd6\x11\xfe\x2e\x0e\x54\x66\xa9\x9a\xc1\xf4\xeb\xe8\xaf\x66\x06\x2f\x12\xa3\x1c\x11\x32\x00\x2a\xf8\x0a\xaf\x66\x06\x4f\x0d\xd7\x8e\xf4\xab\x38\x50\x31\xe5\xd3\x2a\x1c\x40\x4b\x87\x19\x03\xc1\x96\x6f\x47\xf8\xbb\x38\x4a\x42\xee\x99\xa5\x1b\xc8\x1d\xfd\x55\x09\x12\x4a\xeb\xf3\xf7\xc9\xfe\xc8\xc6\xf3\x27\xf0\x7c\x9e\x4f\x2f\xe8\x79\xc9\xca\x6f\xb5\x5f\x83\x5f\x1d\xac\xff\xfd\xab\x08\xf6\xfd\x60\xec\x07\xec\x00\xf7\xa0\xe7\xe1\xff\xbf\x45\xc1\x08\x8b\x60\x7a\x24\xfc\x24\x24\xa7\x61\x8f\xef\x2c\x18\xf9\x03\xe7\xea\x8e\xdc\xf1\xdc\xf0\x03\x88\x8f\x0d\x44\xec\x42\x10\xff\x2a\xa2\xc7\xd9\xb3\xcb\xa8\x83\x9e\x37\x9e\x04\xe4\x18\x6d\x72\x64\xa5\x1f\x90\x7f\xfd\x49\x04\x57\x88\x5c\x31\x82\xcd\xb0\xcb\x3b\x18\x06\xb6\x17\xa1\x41\x8c\xc1\xd9\x2f\x07\x70\x7a\x7c\x78\xf6\xfb\xde\xc9\x01\x1c\x9d\xc2\xdb\x93\xe3\xdf\x8e\x5e\x1d\xbc\x82\xde\xd2\xde\x29\x1c\x9d\xf6\x96\x60\xef\xcd\x2b\xc0\xc5\xf6\xde\x9d\xfd\x72\x7c\x02\xaf\x8e\x4e\xf7\x5f\xef\x1d\xfd\x7a\x0a\x7b\xaf\x5f\xc3\xef\x7b\x27\x27\x7b\x6f\xce\x8e\x0e\x4e\xe1\xf7\xa3\xb3\x5f\x30\xc8\x93\x83\x9f\xf7\x4e\x5e\xc1\xd9\x31\x9c\xfd\x72\x74\x2a\x40\x7f\xb3\xff\xfa\xdd\xab\xa3\x37\x3f\x93\x8a\x47\xbf\xbe\x7d\x7d\x74\xf0\x4a\x04\x70\x7c\x08\xbf\x1e\x9c\xec\xff\xb2\xf7\xe6\x6c\xef\xe5\xd1\xeb\xa3\xb3\x3f\x30\x38\xdc\xfc\xe1\xd1\xd9\x9b\x83\xd3\xd3\x3a\x1c\xbd\x81\x37\xc7\x70\xf0\xdb\xc1\x9b\x33\x38\xfd\x05\xc3\x11\x30\x7b\x79\x00\xaf\x8f\xf6\x5e\xbe\x3e\x80\xc3\xe3\x13\xd8\x7b\xf3\x07\x9c\xbe\x3d\xd8\x3f\xda\x7b\x6d\xc1\xab\xa3\x93\x83\xfd\x33\x0b\xc3\x3b\x7a\xc3\x7e\xc0\xf1\x09\xec\x1f\xbf\x39\x3d\xf8\xbf\x77\x07\x6f\xce\x8e\xf6\x5e\xc3\xab\xbd\x5f\xf7\x7e\xc6\x88\xd0\xda\xfc\xe7\xef\xbf\xec\x9d\x9d\x1e\x1f\xfc\x76\x70\x02\x27\x07\xa7\xef\x5e\x9f\xe1\x3e\x1c\x9e\x1c\xff\x8a\xc1\xbd\x3e\x3e\x25\x98\xbf\x3b\x3d\x20\x1b\xf6\xf6\x70\xed\xb7\x27\xc7\x87\x47\x67\xa7\x16\xfc\xfe\xcb\xc1\xd9\x2f\x07\x27\x18\xef\xbd\x37\xb0\xb7\x7f\x76\x74\xfc\x06\x97\xde\x3f\x7e\x73\x76\xb2\x87\x91\x78\x73\xf0\xf3\xeb\xa3\x9f\x0f\xde\xec\x1f\xc0\xf1\x09\x06\x78\x4c\x2a\x9c\x1d\x9f\x9c\x1d\x1d\xbf\x3b\x65\x75\x2c\xd8\x3b\x39\x3a\xc5\xed\x1e\xbf\x3b\xc3\x00\x8e\x09\xcc\xfd\xe3\x37\x6f\x0e\x28\x50\x4c\x7d\x42\x8c\x77\xa7\x1c\xd2\xdb\x83\x13\x92\xd3\x40\x60\x1f\xca\xa3\x41\x18\x60\xae\xbc\x8f\x3d\xc5\x00\x3b\xac\x30\x74\xfd\x4b\xdb\x85\x13\x74\xe5\x92\xbb\x10\xdf\x06\xfe\xc8\x09\x11\x2b\x80\xff\x4f\xee\x81\x25\x21\xdb\xd3\xc8\x8e\x9c\xbe\x18\xf5\xab\x0e\xd8\x95\x4f\x01\x33\x91\x94\x72\x6c\x01\x31\x44\xd8\x36\xa7\xa1\xab\xe3\x2b\xf8\xf2\x85\x97\xc7\x4f\xf5\x33\x5c\x5c\x90\xc8\xd6\xc5\x45\x07\xba\xe7\x70\x1f\xbb\xba\xfe\x15\xbd\xa9\x05\x5b\xa8\x49\xa0\x8b\xb5\x09\x83\x7a\x5c\x0f\x76\xe0\xf2\x05\xdc\xd7\x14\xd0\x7a\x9d\xf8\xa2\x98\x31\x36\x8b\x2e\x6b\xc5\xef\x6d\xba\xb4\x60\x5c\xab\xc1\xa0\x3b\x26\x17\xcd\x75\xc7\xe7\xe4\x2e\xa6\x40\xb2\x54\xa4\xfe\xd3\x46\x49\x11\x5a\x10\xff\x5f\x75\xcf\x93\x70\x78\x16\x29\x05\x50\x52\xbf\x2e\x2e\xaa\xe4\x0e\x29\x12\x21\xf6\xbd\x30\x0a\x26\x7d\x7a\xd6\xf2\xe0\x05\xdc\xf3\xe2\x83\xa4\x6b\x18\x75\xf1\x42\x43\xf9\x20\xe1\xcb\x1a\x74\xa0\x7a\x71\x21\x97\x4f\x7e\x59\x64\xab\x0c\x6e\x94\x75\x4b\xe9\x15\x09\xc9\xf3\x28\x99\xc0\x25\x42\xb7\x84\xcf\xe9\x37\x77\xc5\x76\x5e\x24\xd4\x04\xf1\x2e\xe7\xd0\xa2\x57\x79\x59\x60\xba\xee\x87\x5e\xf0\xe5\xc5\xd7\x15\x06\xb2\x1b\x1f\xaa\xf7\x7a\xa9\x05\x64\x2e\x09\x4b\x70\x49\x48\xb9\x24\xa2\x5c\x12\x62\x2e\x11\x81\xdf\x8b\x3f\xf8\xc9\x88\x71\x89\x7b\x85\x9b\x38\x19\x52\x16\x31\x8c\x43\x20\xd0\x90\x2c\x48\x86\x16\x20\x81\x04\xb8\x53\x11\x4b\x78\xe6\xcc\x34\x5b\x67\xf1\xdc\x44\x75\xc7\x1b\xa0\xdb\xe3\xab\xea\xb8\x06\x3f\x40\xb3\x26\x76\xd3\x44\x0b\x72\x19\x3a\x3c\x49\x56\x6b\x58\xc2\x2a\x6b\x76\x88\x22\xa1\xb1\xd3\xbb\xd1\xa5\xef\xd2\x04\xfa\x5e\x7c\xe5\x72\x6f\xa9\x66\xe4\x0c\x72\x73\xa5\x05\xe3\x84\xc1\x8c\xd0\xaa\x61\x8d\x72\xc9\x58\xbd\xdb\x52\xe1\x05\x8c\xaa\xd0\xbf\xae\x73\x4e\xba\x88\x91\xd6\x88\x34\x66\x6d\x1c\x85\x07\x64\xbf\xb2\x7d\xe9\xa2\x84\x54\xb8\x6a\x4d\x05\xcf\x28\xd4\x75\xce\x19\x91\xf0\x5f\x66\x9e\x91\xf8\x25\x63\xdc\x07\xa8\x8f\x6d\x17\x54\x65\x7f\x90\x9b\x3c\xe8\xf5\x71\xe4\xda\x39\x9a\x32\xa0\x30\x45\xdf\x78\x6b\x16\x96\x24\x7d\xf8\x01\x56\x61\x97\x41\x80\x0e\xa9\x2d\xca\x10\xfa\xdb\x4c\xed\xe4\x58\xc1\xaa\x80\x41\x8d\x41\xb1\x60\x20\xb1\x04\xe3\x02\xa6\x8c\xd8\x80\xb3\x40\xce\x92\xc0\x26\xac\x40\x9d\xf7\x54\x67\x0d\x82\xb9\x5a\x2c\x87\x20\x31\x2a\xc4\xd1\x97\x18\x2a\xa9\x28\xa4\x45\x63\xfe\xf9\x91\x5e\x93\xba\xb2\x42\xa7\xcd\x40\x2a\x4b\x78\x05\x23\x52\xe5\x34\x1c\x54\x03\xdc\xf7\x3e\xfc\xc8\x7e\x4a\x58\x90\x6f\xd2\x3b\x7a\x60\x4f\xa0\xaa\x19\x5a\xff\xd9\x33\x08\x04\x36\xa4\x3b\xf1\x39\xe1\x55\xc8\x16\x83\x92\xc1\x37\x24\x00\x5d\x25\xff\x3d\xc2\xec\x6e\x25\x5d\x11\x98\x45\xbb\xb3\x4c\x1a\xd7\xcf\x49\x1d\x19\x83\x04\x6c\x8d\x69\xa6\x0c\x4c\x46\x28\xb2\x07\x76\x64\x57\xf9\x1f\xe4\x5e\x7b\xfe\x83\x64\xcc\x08\x18\x4d\xc3\x39\x1c\x96\x89\x73\xf8\x52\x98\x5c\x32\x0b\x97\x3c\xca\xda\x9f\x6c\x27\x42\x01\x91\xe0\x7b\xc1\xd0\x82\x8b\x78\xaa\x59\xf0\xd6\xe2\x3b\x3f\x24\x3a\x27\xa9\x5f\x03\x7f\xcc\xf7\xa0\xc1\x67\xf9\xca\x68\xc1\x50\x7a\x0b\xbb\xec\x65\x87\x68\xe9\xb7\x55\xf1\x5a\x39\xe2\x72\xd1\xea\xe4\x4f\x9e\x93\x8b\x3d\x2c\x4d\xc2\xe0\xea\xd5\xb7\x98\xf3\xaa\x6f\x61\x87\x9b\x84\xb5\x9a\x0e\x11\x7b\x73\x98\xc6\xaa\x9a\x8e\xd3\xc1\x27\xee\x95\xe3\xba\x68\x90\xe0\x4f\xd2\x89\x21\x8c\xd0\xb8\x1a\x77\xbb\xee\xa1\x5b\xde\x45\x8c\x8f\x98\x1d\xcc\x5a\xa8\x12\x64\x65\x05\x1a\x37\x43\x8b\xe4\xb5\xd2\xed\x2d\x91\x5b\xa3\x7b\x4b\xe7\x33\xb4\x45\x60\xd2\xcb\x76\x19\x3d\x27\x6e\x54\x1f\xf8\x1e\x82\xdd\x98\xba\xec\x2d\x43\xa7\xc3\xc6\x50\x7a\x5b\x8f\xae\x91\x57\x8d\x09\x64\xc5\x9d\x10\x07\x84\x58\x2b\xb8\xc1\xa4\x17\xc9\x46\x21\x5f\xcc\x6e\x50\xd8\x0a\x0f\x5e\xf7\xbc\x56\xa3\x94\xad\x25\xb2\xed\x3e\x97\x59\x63\xe8\x09\xdc\x4b\x7f\x70\xa7\xe8\x8b\x0b\x72\x9f\x87\x6b\x5f\x22\xb7\x83\xf5\x6d\x48\x52\x24\x45\x8b\x8f\xce\xcb\x6e\xf3\x1c\x9e\x41\xab\xc6\x2e\xec\x8e\xba\xad\xf3\x17\xb1\x26\x23\x3f\xee\x2d\x3c\x5a\x21\x36\xfd\x2d\xf0\xc7\x21\xf5\x01\x2c\xb8\xb2\xe0\xce\x82\xc8\x82\xa1\x2a\xfe\x86\xa4\x6d\xdc\xb3\x0e\x39\xd2\xb6\xda\xac\x59\x10\x0f\x2e\x7b\xd7\x22\xef\x68\x8d\xf8\x65\xbb\x46\x9a\xa3\xb2\x80\x5a\x02\x9a\x04\xc0\xd2\xa2\x3a\xec\xd2\xaf\x75\x72\xa5\x43\xe4\x07\xe7\x8a\x3d\x1b\xf7\xe1\xda\x09\xf1\x2c\x12\xd1\x8c\x89\x49\xda\xf4\x84\xd2\xc2\xc6\x31\xe1\x2d\x19\xe1\xae\x67\xc1\xc7\x73\x3c\xf8\xc2\xf8\xcb\x5c\xe7\x8f\x95\x79\x46\x2e\xf2\xad\x09\x77\xa1\x9f\xdd\x8d\x11\x8f\x17\xff\x1c\x73\x8c\x13\x82\xed\x06\xc8\x1e\xdc\x01\xba\x45\xfd\x49\xe4\x78\xc3\x3a\x39\xdb\x5f\x80\xf5\xe9\xda\x71\x11\x54\x2f\x6a\x2c\xe1\xdf\x60\x06\x5d\x51\x8b\x9b\xb8\x63\x55\x7a\x82\x0f\x1d\xde\x36\xec\xc2\x5d\x37\xa1\xf6\x39\x74\xd8\x37\xfa\x9e\x4f\x3b\x22\x52\x48\x4d\xa9\x34\xb1\x21\x23\x6a\x28\xdd\xd5\x2c\xba\xfb\xfe\x8e\xb0\x2e\xf9\xf4\x84\x54\xe1\x05\x30\x93\x74\x5b\x98\xb7\x07\xe4\x36\x25\xcd\x8c\x16\x51\xbe\xa3\xd6\x60\x54\x03\x1f\x5b\x84\xdd\x18\x63\x0b\xd8\x44\xd4\xad\xff\xf0\x93\x43\x24\x02\x29\x6b\xb0\x08\x81\xa4\xf9\x84\x08\x9a\x1d\xfa\x6f\xab\x03\x94\x1a\x2f\xe0\x32\x40\xf6\x8d\x06\x31\xae\xb1\xd6\x81\x8b\x3a\x99\x34\xcb\xcb\xf1\x34\x88\xd3\x2a\x48\xbf\x2c\x18\x90\x14\xb6\x2b\xdb\x25\xf7\xac\xa5\xc2\x5a\x97\x60\xdd\xd1\xe1\xc0\x13\x8a\xf6\xb4\x79\xfe\x82\xac\x45\x39\xde\x04\xa5\x03\xd9\xec\xd0\xe2\x17\x75\x7f\x1c\xd6\xc7\xfe\xb8\x5a\x7b\x01\x17\x75\x3c\x21\xf9\xaf\x4c\x20\x6c\x91\xa0\x63\xfa\xc6\xc7\x80\x0e\x1f\x05\x6a\x01\x1d\x4a\x66\x45\xfd\x48\x0d\xe9\xa8\x1b\x89\xdb\xcd\xc8\xa0\x53\xf2\x93\xd9\xb9\x81\xf9\x26\xf9\xd9\x26\xf7\x26\x5f\xd0\x2b\x5b\x63\xec\x64\xa1\xa9\xe2\x90\xd4\x26\x76\x53\xf5\x09\x49\xba\xaf\x12\x8a\xc1\x8f\x40\xc5\xd4\x33\x4a\x41\xf8\x01\xa2\xee\xea\x79\x8d\x36\x43\x49\x9c\x50\x97\x8e\x70\xd1\xd6\x36\x48\x2a\x1a\x83\xf1\x03\x91\x78\x32\x54\x2a\x03\x65\xf6\xc9\x06\x1e\xa9\x20\xdb\x1a\xc8\xf6\xf9\x0b\x3e\xa2\x93\xf0\x1a\xcb\x8d\x82\xa0\x09\x2c\x91\x17\xd2\x4a\x17\x64\x11\xad\x35\xc2\x6c\x58\x9d\xd0\xc9\x9c\x68\x2e\xb9\x29\x59\x2b\x53\x86\xde\xb0\x00\x9d\x53\x46\x6f\x62\xf5\x7c\xe5\x78\xe4\x0e\xe6\xcf\x80\xe5\x52\xc4\x5e\xab\xe2\x91\x4f\xf8\x75\x2e\x26\xd9\x30\x1a\xe6\x1e\x11\x57\x94\x03\x3a\x6c\xa7\x36\x9f\x8c\x51\x30\x11\xe7\xa2\xd1\x7e\xa5\xc1\x0f\x1a\x49\x79\xe9\x78\x03\xc7\x1b\x26\x5e\x11\x7d\x0d\xbb\x49\x62\x64\xd5\xb7\x60\x64\xc1\x8d\x05\x37\x6d\xc5\x98\xbd\x69\x13\xde\x89\x6f\x8b\xad\x01\x7e\x03\x89\x5c\x31\x5b\xfc\x3e\x06\x65\xc1\x67\x40\xb1\xf3\x49\x31\x27\x1b\xf0\x3a\x46\xf5\x35\xea\xde\xd0\x8b\xc6\x99\x59\x40\x02\x40\xf3\x40\xd1\xef\xde\xb4\xb1\xce\x24\x0d\x50\xd0\x99\x31\x30\xfc\xe6\x34\xb2\x83\xea\xc8\x02\x5f\x34\x83\xa5\xe8\xc4\x88\xba\x59\x63\x92\xe9\x19\xa7\x59\x53\x9d\xfd\xa4\x50\xcc\xc2\xa7\x01\x1a\x65\xa0\x58\x4f\xc7\xb9\xc6\x11\x4d\xb0\xaf\xfa\x8a\x35\x14\x26\x27\xcc\x64\x58\x15\x8a\x49\x61\xc1\x08\xbb\xfc\x44\xee\x74\xc3\x73\x1a\xd1\x6a\x4a\x0e\xf1\x28\x56\x6f\x23\x86\x7e\x4d\xfa\xee\x0b\xae\x8d\x2f\xde\x58\xd5\x5b\xa2\x99\x5d\x82\x43\x23\xe9\x31\x6a\x3c\xc9\xc9\x83\x06\xf5\x49\xe0\x13\x2f\xd7\x8f\xb7\x79\xfb\xc0\xcf\x31\xd0\xa6\xbb\x36\xa9\x68\xdf\x9c\xe5\xe5\x58\xad\x3d\xf1\x15\x9d\x16\xcf\xd8\xe4\xb5\xc9\x9e\x09\x61\x17\x7a\x4b\x74\x88\xf9\xfe\x4b\x42\xc8\x4b\x17\xd5\x7b\x4b\xd0\x81\xde\x92\x42\x5f\x5e\x2c\x3e\xa2\x6e\xa9\x40\xc8\xcc\x1e\x60\x5e\xf0\x94\xf1\x1d\x15\x1a\x5f\x5f\x33\x1a\xa5\xc1\x7a\x92\x8c\xa6\xff\x42\x84\x8e\xc7\x3d\x1e\x5f\x0b\x02\x0b\xec\x80\x5c\xb5\x6d\x41\x22\x52\x35\xab\x8c\x19\x6c\x55\x4f\x38\x59\x02\x2b\x35\x6f\x65\x05\xeb\x55\x66\x39\x61\x40\x0e\xf7\x02\x98\xc5\x64\x07\x6c\x7b\x79\xfd\x63\xe2\xbe\x4a\x63\xc1\xa5\x2f\xcb\x51\x00\x92\xe8\x0c\x88\xe6\x9d\x23\x9a\x81\x28\x9a\xa9\x5c\x14\x4b\x71\xbf\x34\x33\x92\x04\x2d\x9e\x04\xd4\x67\xc2\xca\x18\x53\xd7\x91\x0c\xc2\x1a\xa7\x87\x53\x4b\x8f\x9f\x26\x0a\x80\xc4\xe8\xb8\x80\x67\xd7\x99\x09\xe8\xa9\xfe\xad\x9d\x1b\x0a\x09\xc7\x84\x13\x4c\x72\x28\x1e\x1a\x3a\x5b\x49\x0c\xd1\x10\x7f\x5e\x5e\x96\x42\x7d\xa4\x96\x1d\xd4\xfb\xbe\xd7\xb7\xa3\x2a\xe3\x34\x31\x08\x2d\xf8\x68\x25\xd1\x24\x4b\x24\xa1\x11\xd9\x90\x9a\xbf\x2c\x26\xea\xb8\xa9\xb1\x72\xc7\x65\xf1\xcf\x10\x96\xe5\xe0\x38\x2f\xa6\xc1\x0e\xe2\x7b\xf4\xc3\x9a\x05\x37\x42\x4b\x32\x48\x63\x94\xd6\x56\x42\xf0\x16\x7c\xa0\x00\x3e\x10\x1c\x63\xdc\x3e\xc0\x0f\xf0\xc1\x7d\x01\x1f\x96\x97\x2d\xb8\x51\xa0\x11\x5a\xd1\xcd\x64\x76\xf7\xc3\xb9\x4a\xbf\x20\x77\xe9\x85\xc4\x65\x88\x2b\xa6\xc6\x58\xc9\x65\xe0\x49\x70\x85\x15\xc5\xfa\x9b\xac\xb5\x90\xcd\x6d\x34\xff\xad\xc6\xe2\x2d\x09\xb4\xdc\x68\x50\x78\xe7\xf5\x7f\xd6\xbd\x6c\x31\x28\x64\x8a\x08\x11\x19\xc2\x24\x0c\x81\x71\x14\xf1\x32\x66\x0f\xd0\x54\x36\x4d\x28\x72\x59\x34\x2c\x15\x5f\xb0\xc0\xb1\xe0\x2f\x32\x21\x54\xea\x3b\x64\x95\xc1\xa2\x3e\x70\x6f\x09\x4b\xa0\xde\x52\x2d\xfe\xcd\x5c\xc2\xe4\x05\x9f\xfc\x18\x66\xd7\x84\xf9\xb9\x9a\xed\xae\xb8\xe0\x16\x38\x59\x1e\x38\xa6\xde\xb0\xeb\x9d\xd7\xc0\xe9\x7a\x32\x2c\xd1\x17\x27\xa1\x33\x1a\xf0\x12\xf7\x38\xb2\xe5\xc3\xbf\xa8\xe0\x24\xbe\xba\x05\xf8\xed\x79\x0d\x7e\x84\x16\x89\xd2\xa2\x70\x32\x42\x55\xfc\x89\xc7\xd5\x4c\x9e\xbc\x58\x4c\x09\x54\x75\xbd\xf3\xea\x47\x3d\x28\x15\xa2\x28\x72\x51\xf5\xaf\x6e\xf3\xbc\xbb\x8a\x75\x82\x1c\x9d\x52\x22\x53\xa4\x2f\x75\x2d\x3c\x98\x70\x30\xeb\x5d\x3d\x8e\x55\xd1\xc2\xf5\x8f\x72\x48\x2a\x09\xed\x75\x24\x0c\xda\xe7\x16\x04\x35\x53\xcf\x58\x45\x31\x54\x49\xba\xca\x07\x9f\x6d\x4f\x34\xd6\x65\x81\x37\xbd\x2a\xe3\x93\xac\xba\x0c\xbb\x2b\x46\x51\x12\xa9\xa8\x7e\xac\x59\xf0\x57\x3d\xbc\x76\xae\xa2\x2a\xf9\x93\x9b\x2f\x0c\x32\xe9\x4b\xf3\xdc\x02\xf2\x47\xeb\xbc\x40\x54\x9a\x70\xe3\x2b\xe4\xa2\x21\x99\xb7\xaa\x0d\xe8\x58\x30\x9e\x6e\x12\x58\x02\x2f\xd2\xe8\x25\x55\x64\x34\xae\x94\x31\x3f\x4c\xc1\xa9\x92\x53\xc3\x82\x2b\x42\x34\x3a\x27\x7c\xfc\xcf\x6e\xca\xd4\xa8\x62\x37\xec\xc9\xb8\x06\xbb\x89\x85\xc7\xa5\x9e\xcf\x78\x97\x9b\x79\x1e\x33\x90\x38\xd6\x70\x0f\x1d\xb8\xc2\xa0\x31\xc8\x0e\x7c\x7c\x41\xdf\x14\xa4\xfa\x6f\xba\xd9\xfd\x55\xa4\xe1\x88\xd0\xc4\x28\x8d\x44\x9a\x72\x1b\x1d\x76\x13\x3b\x0e\x3b\x52\x7e\x62\x36\x72\xd7\x41\x37\x1c\x77\x25\xb7\xa2\x63\xb0\x22\x31\x03\x7f\x0b\x71\x6a\x48\x38\x10\xe4\xa9\xc0\x31\x52\x7a\x46\xbe\x34\xd5\x17\x0f\xc8\x6e\x71\xc6\x43\x16\x9f\xd0\x4a\x31\x0b\x3e\x12\x93\x11\xff\x2b\xad\x5e\x64\xc8\x04\x0d\xc4\x80\x09\x09\x55\x08\x26\xc2\x8f\xb9\xbe\x1f\xc5\xc5\x92\x98\xdd\x3f\x72\xfe\x1e\xd0\xa6\xe3\x2e\x14\x58\xd3\xb2\x6f\xd0\x19\x1a\x8d\x5d\x3b\x42\xd4\x8d\xa9\xf6\x7d\xff\x86\x44\xfe\xed\x4f\x0a\x63\x1b\x1d\x7c\x8c\x91\xd9\xf3\xe7\x80\x7a\x4b\x81\x4d\xe4\x49\x8c\x70\x60\x7f\xa2\x98\xb2\xe3\x99\x80\x16\xad\xe3\xf7\x3b\xf8\xab\xbe\xfa\x43\x4b\x28\xb6\x13\x0d\x6e\x84\x28\xfa\xd5\x1f\x4c\x5c\xc4\xf6\x1b\xe7\xc5\x37\x44\xcb\x2a\x35\x66\x21\xb8\xf1\xe6\xe0\x05\xa7\xbd\x14\xa4\x48\x6b\xc6\xef\x0a\xf0\xd8\xf9\x68\x39\x56\x20\xdd\xea\x43\x83\x0f\xfe\x40\x19\x89\x91\x3f\xc0\xec\x3d\xf2\x07\xf5\x8b\x0b\x14\xd2\xee\x27\x5e\xb9\x3f\x90\xe4\x05\x5d\xe1\x91\xf3\x2b\x38\x14\x96\xed\x50\x4b\x8c\xe0\x1b\x12\xd2\xc0\x4d\x92\x90\x8a\x29\xa8\x51\xec\x42\x6d\x7f\x60\xc1\x8d\x21\xaa\x41\xd1\x21\x19\x8a\xb8\x40\x8c\x92\x3e\x92\x62\x51\xcd\x11\xa1\xdf\xf2\xcc\x5a\x4a\x46\x0e\x4f\xa6\x24\xd7\x20\x29\xd4\xdc\xc5\x6f\xa0\x43\x56\x8f\x69\x3c\x99\xbc\xb8\xcf\x6b\x92\x6c\x37\x7e\x1b\x38\x1f\xed\x08\x1d\x3a\xc8\x1d\xfc\x8c\x70\x4f\xfa\xc8\xf9\x88\x02\x0b\xc6\xf4\xcb\xaf\xf6\x58\xd5\x1b\xc9\x17\x4c\xd0\xb8\x4a\x4d\x09\x83\x98\x15\x89\x1d\x45\x68\x34\x8e\xe8\x5d\xef\x43\x14\xf1\x76\xf8\xe5\xf2\x1e\x78\xbe\xb7\xc2\x6d\x2f\x51\xa5\xa8\x53\x4d\x40\x63\x28\x60\x9e\xeb\x41\x68\xfd\x3e\x4d\xe9\x37\x37\x9b\x1e\xac\xfb\xe1\x54\xdd\x17\xda\x0f\x25\xcc\x95\x78\x84\xb8\xd6\x9d\xd0\xa4\xe8\x9e\x4c\xbe\x1d\x8f\x6f\x50\x98\x78\x4e\xdf\x1f\xa0\xba\x1f\x0c\x1b\x01\xc2\x00\xc2\x46\x14\xac\xae\x93\xff\xac\x0c\xec\x08\x85\xf5\xeb\x68\xe4\x3e\x7d\x65\x47\xe8\x82\xd0\xf5\x82\x6a\xce\x8b\x33\x2c\x8f\xf8\xde\xbe\x81\x13\x75\x4c\x97\xe6\xf7\xed\xc0\x19\xdc\xb1\xd3\xbc\xec\x48\xb8\x19\x67\x65\x4c\x12\x9c\xbd\xc6\xa5\xeb\x5f\x36\x46\x76\x18\xa1\xa0\x41\x52\x8a\xea\x1f\x42\x02\x96\x24\x02\x87\xfe\x08\x41\xf4\x09\xd9\x37\x21\xdb\xcc\x27\xdf\xc8\x72\x72\xf0\xf3\xc1\xbf\x61\x07\x1a\xd5\xdd\x4e\xf7\x00\xf5\xcf\x3f\xb7\xac\x8d\xfb\x2f\x3f\x7f\x6e\x59\xeb\xf7\x5f\xba\xff\xf7\xd7\x39\xfd\x0b\x7f\xbe\xfb\x63\x12\x9c\x2f\x7f\x79\x47\xde\xd4\xbe\x74\x7f\x7d\xcd\x3e\x0e\x3e\xb7\xac\xf6\xfd\x97\x57\x9f\x5b\xd6\xea\xfd\x97\xc3\xcf\xad\xfb\x2f\x5d\xfb\xf2\x25\xfb\xda\xbd\xbe\xf9\xe5\x7f\xcf\x69\x91\x4f\xf4\x9f\xdf\x71\x91\x11\xfd\x3b\xa4\xff\x74\xff\xfb\x9f\xe3\x8f\xbf\xdd\xfe\x1b\x17\x5c\xbb\xaf\x55\x77\x77\xaa\xdd\x3f\x2b\xe7\xcf\x2b\xf4\xbf\xb5\xe7\xe4\xdf\x7f\xd5\x1a\x43\x61\x18\xde\xda\x41\x88\xc8\x11\xaf\xe4\xa0\x06\x08\x6f\x90\x8b\x22\xdf\xa3\x77\x4e\x1b\x76\xa8\xb0\x23\xc4\x48\xe5\x13\x74\xd5\x99\xef\x40\xfe\x34\x9e\x5c\xba\x4e\x5f\xdc\x7b\x19\x63\x94\xfc\x41\xce\x49\x4c\xd9\x59\x39\xc6\x1d\xe2\x28\x9f\xb2\x2a\x55\x5e\x57\x3e\x5f\x44\xd4\x0b\xe4\x2d\x2f\x16\x5f\xc2\xae\x0c\xb3\xe8\x13\x8c\xb0\x33\xa8\xed\xaa\x77\x91\x07\x3b\x40\xbe\xc5\x31\x9a\x24\x69\x80\xad\x61\x92\xcf\x6c\x19\x53\x8a\x9b\x34\x1a\x70\x10\xd8\xf2\x3b\xb2\x22\x58\xf9\xb9\xd2\xd1\xd7\x7c\x58\xea\x02\x0a\x6c\xd8\xa1\x2d\xef\xec\xc0\x1a\xec\x42\xc5\xf5\xbd\x61\x05\x3a\xf1\xcb\x75\xfc\xd2\xb3\x83\xc0\xff\x44\x2e\x04\x0e\xaf\xfd\x20\xaa\x18\x0e\x29\x65\x4b\xa5\x2a\x56\x7f\x20\x3b\x30\xa1\x75\x97\x81\xd6\x1d\x22\xf1\x35\x8e\x42\x1b\xa3\xd0\x5e\x19\x38\x43\x27\x22\x38\xf0\xcb\x43\x0a\x62\x41\x1b\xfc\x43\x6d\x90\xbe\x9e\x98\x5f\xbf\x33\xbf\x0e\x4c\x58\x27\x72\xf5\xc4\xf6\x86\x4c\xb0\x56\xde\xff\xd1\x98\x34\xde\x35\x82\xf7\x50\xc5\xfd\xa9\x01\x13\x1a\x21\xd9\xf5\x88\xbd\x94\x78\x8b\x99\x05\x93\x10\xc1\xfb\xbb\xf7\xc4\xc3\x47\xf6\xa0\xa2\x1e\xac\xd9\x68\xc0\xff\x4d\xec\x20\x42\x46\x5a\xfe\x65\x46\xf6\xff\x4a\x20\xfb\x57\xe3\xff\xde\x43\xf5\x2f\xda\x46\x16\xae\x26\xd4\x7e\xf5\xbd\xe8\xda\x84\xc1\xaf\x66\xc4\x5e\x67\x8c\x3d\xb9\x18\x4a\xbd\x1c\x90\x0f\xbe\xc5\xf9\xcf\x62\x8c\x6a\xc5\xbc\x79\xde\xc5\xec\xb2\x02\xad\xf3\xe2\xbc\xf9\x3b\x42\x37\x26\xfc\x3e\x99\xd1\xfe\xbd\x04\x3d\x3f\x35\x7e\x7f\x0f\xd5\x4f\x08\xdd\x94\x22\x26\x6d\x68\x90\x41\x9f\x81\x7d\x97\x46\x9d\xd2\x24\xa0\xad\xbd\x32\xf7\xf6\xd0\xfc\x7a\x58\x82\x08\xaf\x1a\x87\x8d\xe1\x7b\xa8\x0e\xec\xbb\x02\xec\x3f\xc8\x64\xff\xdf\xe9\xcd\x62\x26\x94\x0e\x32\xc8\xc5\x2e\x24\x53\xa5\x1c\xe5\xa2\x79\x89\x39\x8a\x06\x32\xa1\x81\xed\x33\xdc\xc6\x0f\xb0\x66\x3c\x9d\x37\x83\x7a\xa8\x5e\x47\x08\x31\x2e\xca\x21\xa1\x46\x31\xd0\x4f\xe3\x35\x52\xa5\x9b\x3a\xa1\xe2\xb9\xc6\xd9\x6a\xad\x1c\x5b\xf5\xe7\x4c\x8e\x7e\xbd\xde\xef\xf7\xbf\x43\x72\x34\x1a\x40\xef\x89\x33\x51\xc9\xae\x74\xc8\xb5\x5d\xbf\x5a\xf0\xf6\xd7\x54\x04\xe9\x2d\x7b\xb0\x43\x3c\xe8\x52\xa3\x70\x49\xe1\xdb\x23\x0b\xc6\x23\x0b\x3c\xdf\xf7\x2c\x18\x39\x03\xcf\x19\x5e\x47\xa6\x0a\x2f\x69\x85\x2b\x17\xdd\x3a\x97\x64\x5f\xf2\x1d\x8c\x09\xfa\x61\xe1\x79\x7f\xd9\x78\xf9\x1e\xaa\xb4\x56\x81\x89\x6f\x67\x4e\xfc\x5f\xfc\x89\x51\xe9\x5d\x67\xcc\xfa\xf8\x0e\x40\xd8\x81\xca\x75\xab\x6d\x9a\xc8\x42\xd1\x39\x0b\xd4\x5f\x0a\x63\xd6\x5e\xfd\xba\x98\xfd\x6f\x71\x9a\xb5\xbe\x2e\x66\x37\xc5\x69\xb6\xf6\x75\x31\xfb\x60\xd6\x83\xff\x63\x7e\xbd\x5f\x42\x3d\x7e\x68\xfc\x4f\x63\xff\x3d\x54\x31\xd2\x05\xa6\xc9\x75\xe3\x97\xc6\xff\x36\x6e\x32\x27\xcb\xaf\xe4\x7e\x3d\x13\x62\xa3\x2c\x9b\x8b\x5e\x37\x38\x2f\xba\x35\x1a\x40\x2f\xd1\x34\xe1\x11\x66\xe0\xc1\x6e\x22\x9c\xef\xf8\x9d\x9a\x07\x6a\xaf\xc4\x40\x9d\x36\xf6\xde\x43\x95\x5f\xb8\x98\x3b\x50\x61\xe6\x10\xfd\xc7\xf7\x8c\x03\xf4\x5f\x2a\x78\x5b\xf5\xfa\xaa\x05\x6b\x1d\x08\xc7\xa8\xef\x5c\x39\x7d\x12\x7e\x71\xfd\xbe\x2d\x1c\xc8\x9e\x4a\x41\xf1\x46\x54\x66\xf3\xfc\xa0\x58\x3c\x54\xb1\x95\x22\xe1\x7f\x24\xd4\x2c\x58\xef\x90\x83\x5c\x8e\x4e\x8f\xb7\x36\x9a\x2d\xec\xbd\x3a\x7e\xc8\x0f\x61\x34\x01\x38\x66\x00\x48\xc7\x46\x8e\xeb\x50\x5a\x86\xe0\x78\x44\xc1\x10\xe4\x2c\xc0\x98\x99\xaa\x7f\x14\xab\x93\xd5\xec\x22\x64\xa1\x75\x7f\x8b\xeb\xb6\x2d\xa0\x94\x25\xe1\x8a\xff\xfa\x1e\x82\xa3\x57\xe0\x07\xd0\x77\x22\xa3\x5d\xf9\x6f\xbd\x6a\xb9\x6e\xdf\x4e\x0f\x20\x83\x1b\xff\xd3\x38\x6e\x7c\x6c\xfc\xd6\xf8\x77\xe3\xf6\x7d\x72\x75\x6a\x01\xbe\xfc\xaf\x99\x2f\xf5\x73\xeb\x2a\xf1\x71\x34\xca\x89\xa0\x3c\x72\x2c\x9d\x65\xec\xf4\x27\xef\x3c\x27\x3a\xf3\x0f\xfa\x23\xbb\x2a\xdd\xae\xcd\xaa\xe1\x77\x71\x60\xa4\xf1\x67\xb5\xfe\x7c\xb7\xb6\xd2\xb0\xa0\x52\x11\x4e\xf0\x3d\x3c\xa1\xdb\xad\x2f\xde\x9e\x1c\xec\x1f\x9d\xe2\xbf\xe2\x00\xd9\x9f\xbd\x5e\xbd\xba\xdb\xa9\x36\x97\x6b\xd5\x5e\xef\x79\x6d\xf7\x4b\xf5\xe9\x72\xed\x0b\xf9\xfd\x74\xb9\x56\xfb\x17\x89\x4c\x61\x28\xa7\x47\x3f\xbf\x39\x3a\x3c\xda\xdf\x7b\x73\x66\x04\x54\xfd\x69\xb9\xb6\x5b\xed\xf5\x96\xbf\x3c\x5d\xae\xed\xd2\x7a\x72\x04\xe8\xd4\x19\x7a\x78\xde\xd9\x5e\xf4\x36\x40\x7d\x27\x74\x7c\xaf\x1a\x46\x41\x5e\x00\x28\x0a\xe2\x2e\x66\x20\x21\xc6\x81\x2e\x2c\x18\xb6\x2c\x18\xb6\xd5\x4b\x5c\x7f\xfa\xe9\x27\xc2\x41\xc9\x4b\x61\x4f\xd4\xb0\x4d\x16\x16\x52\xef\xfc\x48\x64\xba\x33\x9a\x8c\x84\xde\xd0\x2b\x8d\x61\x07\x86\x2d\x3d\xc0\x24\xd6\xb4\x6f\xcb\xd4\xbc\x57\x51\x5f\x56\x70\x8f\xcf\xd9\x19\xd2\x24\xd3\xca\xf2\xbc\x90\x96\x9b\xae\x3f\x7d\xfa\x34\xb5\xe9\x16\xcf\xe0\xae\x3c\x4d\x6f\x7d\x96\x8e\xd7\x7f\xfa\xe9\xe9\x53\x2c\x4d\xea\xfa\xe8\x99\xae\x52\x79\xc0\x61\xd2\x25\x49\x0c\x0a\x96\x45\x3e\x52\xee\x4d\x1c\xb6\x79\xa9\x0e\x34\xe7\x29\x21\xe2\x79\x25\xcd\x23\x1e\xd3\x14\xdf\x41\x62\x27\x38\x43\x6f\xc5\x9e\x44\xbe\xaa\xa7\xd3\xcf\xf7\xc4\x55\xd8\x79\x23\x1d\xa8\x90\xba\x19\xc7\x75\x8a\xcd\xf4\xfb\xfe\xc4\x8b\x30\x19\x0a\x37\xd6\x9f\x04\x01\xf2\xfa\x77\xb8\x5b\xb8\xb5\x04\x44\xc1\x36\xdd\x4f\xf6\x9d\x66\x0c\x15\xee\x1c\xad\x5d\xb6\x7b\x0f\xd2\xea\x3c\xa8\x81\x6e\xfb\x68\x1c\xad\xfc\x17\x05\x53\x8f\x37\x05\xf1\x1f\x0c\xa1\x34\x59\x1e\xb4\xf9\x79\xd0\xc7\x43\x1f\x91\x16\x7b\x2e\x8a\x1a\xad\x9c\xd2\xd0\xbd\x61\xaa\xbe\xf1\x23\x62\x56\xb1\x15\x9b\xaa\x3f\x8e\x72\xb4\x1f\x49\x4e\x75\x86\xb8\x06\x16\x5d\xc9\x84\xc7\x55\x85\x13\x1a\x79\x19\xd3\x89\xf5\xfc\x9b\xf1\xcc\x30\x51\xae\xa8\x0b\x81\xc2\x9a\x1d\x5b\x4a\x5a\xf1\x83\x61\xc3\xe9\x4f\xa4\x05\x3a\x72\x88\xd9\x24\x44\xc1\x70\xe2\x0c\x10\x3b\xdf\xec\x82\xa0\xca\xce\x4d\x0d\x1b\x7c\x19\x27\xac\x8f\x06\x4f\xf9\x8f\x95\x30\x42\xa3\x70\xc5\xf6\x06\x2b\x7e\xb2\x86\x95\xb6\x82\x44\xcf\xfd\x8a\xd7\x8f\x22\xff\x06\x29\x57\x22\xe9\xe4\x8b\x53\x08\x2e\x58\x6a\x2f\xad\x45\xee\xb2\xa3\x7f\xbe\xc0\x9f\x7e\x88\xdf\xc7\x09\xb5\x17\xec\x94\x83\x98\x98\xe4\x44\x08\x5c\x2a\xae\x7a\xd1\xea\x5e\x38\xe7\x86\xc5\x24\xf2\xb9\x8e\x3b\xa7\x69\x44\xca\x7a\x63\x14\xf4\x91\x17\x65\x79\x6c\xd1\x1d\x75\xcb\x79\x51\x83\x5f\x91\xec\x26\x32\x34\xc1\x27\x46\x91\x36\xe2\xb2\xe9\xfe\x3f\x2f\xc2\x3b\x5f\x67\x03\xd6\x6d\x9a\x9c\xc6\x4c\xcc\x86\x81\x3f\x19\xaf\xf8\x57\x57\x19\xa8\x4d\x42\xf4\x33\x2e\x46\xf7\x06\x91\x2d\x7e\x65\x9b\x19\x73\x1b\x73\xc5\xf1\x22\x34\xd4\x67\x39\x2d\x56\xcf\x72\xdf\xa9\x25\x70\x18\xd8\x84\x0d\x63\x03\xa2\x59\x16\x97\x11\xb2\xc3\x49\x80\x56\xb0\xbd\x5e\x64\x40\x48\xb9\xf4\xc1\xc0\x9f\x61\x47\xf1\x0f\xd4\x61\x31\x45\x6a\xb3\x39\xc6\x1f\x8d\xed\x7e\xb4\x42\x1d\xda\x74\x2c\x3d\x26\xc4\x08\xe7\xd0\x3a\x59\x8c\x43\x4b\x30\xa1\x89\xeb\xa4\xae\x00\x14\xc2\x8e\x38\xd9\x0f\x87\x5c\x9a\x0f\x9f\x89\x5b\xd8\x77\x90\x17\x61\x63\x31\x1d\x33\xe3\xe1\xbf\xea\x39\x8d\x13\x37\x22\xe7\x33\xf2\x5e\x74\x24\xd8\x24\xcb\x55\x1a\xe6\x94\x5b\x17\xa9\x5a\x89\x93\x89\xcc\xcd\xd9\xae\x5b\xb3\xd2\xd5\x52\x8d\xa6\xed\x7d\xbe\xaf\x95\x66\x24\xe4\x0d\x1d\x0f\xa1\xc0\x60\xf6\xcd\x4e\x0f\x11\xf8\xf7\x42\x10\x8e\xfe\x4a\xe8\x8c\xc6\xae\x71\x39\xcb\xc0\xbe\x61\x64\x7b\x03\x3b\x18\x94\x60\xc7\x46\xa3\xac\xee\x76\xfa\x93\xb5\x7e\x23\xf4\x27\x41\x1f\x35\x9c\xd6\x96\xc7\x4b\x37\x26\x54\x75\xc7\xa7\x0e\xd6\x8d\x0b\xd1\x58\x14\xad\x7c\x72\x06\xd1\xf5\x0a\x5b\xcf\x49\xef\x1c\xd7\x21\xc2\x74\xa3\x75\x68\xce\x49\x8e\xc0\xd3\x6a\x95\x9e\xa6\x02\xae\x79\x32\xce\x80\x2a\x26\x4a\x71\x14\xa7\x13\x72\x02\x86\x57\x13\xd7\x5d\xf1\xec\x51\x16\xb7\x18\x09\x3a\x2a\x81\xe5\x54\xd2\x4e\x40\xd2\x09\xfd\x15\x42\x97\x52\x38\x86\xa9\xc3\x6d\x68\x57\x0e\x06\xc4\x81\x23\xe9\xed\x43\xdb\xab\x57\xcc\x00\x58\x19\x1b\x9b\xd7\x2c\x0d\x43\x8c\x29\x2d\x08\x57\x8f\x50\x18\x89\x06\xa3\xf9\x92\x64\x49\xc6\xc5\x67\x02\xb4\x8c\x4b\xbd\xe6\xe8\xe6\xa1\xd6\x07\x20\xd6\x37\xf8\x9e\x7b\x07\x76\x1f\x3b\x59\x60\x43\xe8\x78\x43\x17\xb1\x0b\x47\x6d\x97\xfd\xa1\x85\xdb\x95\x25\xdf\x04\xff\x38\x54\x97\xd6\x61\x63\x9c\xce\x82\xe1\xaa\x05\xc3\x35\x0b\x86\xeb\xc6\x3e\x35\x1a\x50\x6f\x36\x9b\xcf\x29\x0b\x56\x2f\xd1\x95\x1f\x20\x38\xda\x7f\xb7\xb1\x09\x4e\x44\xce\x8f\xc7\xdf\x97\x6b\x7a\x55\x31\x40\xf6\xdc\x7c\x93\x2f\x68\x61\x23\xcd\xe4\x4b\x8b\x19\x19\x88\x01\xa9\x51\x33\xfe\x24\xd1\x33\x72\xc8\xc2\x70\x35\x2b\x86\xa6\x22\x98\x62\x93\x0e\x57\x4b\x23\xd8\x6c\x16\xc0\x70\x8d\x60\x68\x1e\x95\x22\x74\x5b\x4b\x47\xab\x48\xaf\xd6\x92\xf8\xda\x70\xbd\x54\x0f\xd3\xae\x59\x2e\x82\x74\xc6\x60\x17\x41\xba\x1c\xaf\xa8\x91\xbf\xb8\xa8\x3a\xe9\xd2\x24\x81\x71\x6c\x32\xac\x2c\xc9\xb8\x4a\x0f\xcd\x6b\x0e\x45\x8e\x10\xc8\x16\xde\x18\xf9\x8c\xf0\x7d\xbe\x1c\x9c\x57\x87\x28\x74\x55\xb3\x65\xe2\x9e\x1a\x84\x11\x20\xbe\x90\xbb\x6a\x8c\xc7\x94\xe9\x46\x0c\x40\x47\x29\x3d\x80\xb3\x64\x2d\xb1\x6b\xb7\x3d\xbf\x7f\x8d\xfa\x37\xd9\xd7\xe5\x1a\x93\xc1\x1b\xf0\x13\xbf\x60\x7f\x20\x54\x3f\xfb\xe3\xed\x81\x78\xff\x4c\x74\x37\x46\xf2\x7d\x3c\xc6\x34\x5f\xcb\x14\xbb\x11\xc0\x70\x3d\xcb\x2f\x82\x3d\xbd\xf3\x22\xfb\x96\x5f\x4c\x52\xfe\xae\x34\xa1\x7e\xea\x55\x69\x42\x99\xea\x88\xdf\xa2\x8b\x6e\xc7\xe4\x54\x31\x0b\xae\xfc\x89\x37\xb0\x80\x2f\x81\xe6\xdc\xa5\x96\x9c\xcf\x92\x7e\x59\xda\x28\xbe\x3d\x93\xfd\xa5\x95\xe0\xad\xc3\x4e\x8c\x88\x56\x86\xe0\x05\x3b\x14\x3f\xed\x6b\xbc\x62\xbb\x13\x63\xae\x95\xf1\xe8\xe2\x75\x6f\x49\xa0\x00\x19\x74\x49\xc2\xd0\x55\x0c\xf2\xb1\xde\xb7\xc7\xd1\x24\x40\xa7\x91\xdd\xbf\x39\x0b\xec\xbe\xe9\x04\x49\x85\xc1\x53\x2a\xd2\x5b\xd6\x2c\x91\xf8\xd9\x2b\x21\x86\xbb\xd6\x84\xba\xf5\xcb\x89\xe3\x0e\x4c\xd7\x92\x2a\x03\x29\xe1\x17\x97\xba\x46\xb7\xd5\xbe\x2e\x38\xe3\xfb\x3a\xeb\xfd\x6b\x3b\xd8\xf7\x07\x68\x2f\xaa\x36\x6b\xf5\xc8\x3f\x25\x8b\x39\xd5\xd6\x06\xfe\xf1\x6e\x3c\x46\xc1\xbe\x1d\xca\xd7\xdd\xdd\x1b\xda\x71\xc9\xde\x44\xf7\x20\xec\xdb\x63\x54\x35\x49\x03\x1a\xa1\xd5\xe5\x77\xb2\xac\xdb\xeb\xf5\x7a\x8d\xa1\x45\xef\x95\xa0\xcf\x92\xc1\xce\x11\x2a\x2c\x49\xc5\x97\xf2\x8a\xf7\x9a\x49\xf9\x66\x6e\xe1\x28\x29\x1c\xe5\x16\xf6\x92\xc2\x5e\x6e\xe1\x20\x29\x1c\xe4\x14\xee\xf6\x7a\xb7\xcd\xe6\x0a\xfe\xef\xe1\x39\xae\x26\x5c\x4b\x7b\x2d\xb8\xfa\x14\xda\x6d\x93\x5c\xd4\xc1\x06\xfd\x05\xdc\xe7\xc2\x6e\x11\xd8\xad\xc3\x5e\xef\x76\xf3\x10\xff\xb9\x5d\xa4\x19\xb5\x95\x1c\xe6\x20\x82\xed\x2b\xb3\x46\xef\x3c\x29\x7f\x9e\x5b\xf8\xcf\xa4\xf0\x9f\x39\x85\x57\x92\xa2\x2b\x0b\x86\x7b\x9c\x0c\x47\x6f\x40\xbe\x44\x07\x44\x44\x12\x1d\xc1\xc4\xa5\xae\xe9\x40\x58\xcf\x10\xca\xd4\xb1\x7a\x30\x1a\x9c\xc4\x33\xeb\x2d\x31\x89\xd7\x5b\x32\x84\x04\x20\x61\x6b\x7a\x49\x0e\xbd\x86\x47\x92\x91\x52\x5b\xe4\x60\xc3\xe5\xb8\xb0\x29\x62\x40\x5b\x25\x53\x29\xb5\x4d\x72\x32\x3f\x01\x3f\xa0\xf7\xfa\x71\x2d\x4b\x9b\x19\x93\xcb\x4b\x46\xf6\x58\x30\x30\xf0\xbb\x54\x9f\x47\xe8\x87\x7c\x6d\x34\xa9\x95\x5e\x07\xc8\x45\xdd\xe2\xb4\xc7\x15\xc8\xae\x23\xdc\xc9\x15\x42\x0e\xed\x73\xeb\x3c\x07\x64\x47\xab\x63\x8a\x50\x82\xc9\xa5\x50\x7a\xd3\x5b\xea\x12\x1c\xa4\x51\x70\xbc\x8f\x28\xc0\xb6\xc9\x2e\xf4\x96\xfe\x64\x47\x48\x61\xc5\xbf\x2c\x13\x15\x77\xe1\x3c\x6b\x90\x6c\xef\x2e\x9f\x2d\x6c\xef\x0e\xb0\xf2\xb5\xfb\x11\x0a\xb2\xa0\x21\x6f\x90\x0f\x0d\x79\x03\xf0\xaf\xc0\xf1\xc6\x93\x28\x0b\x98\x1f\x5d\xe3\xd6\xb2\xc1\x89\x44\xe1\x97\x89\xcb\x66\x16\xc8\x13\x2f\x7f\x0e\xa2\x41\x6c\xaf\xe8\xc1\x1c\x7a\xf5\x75\xdc\x4e\x28\x18\x87\x2d\xc2\xae\x86\xf9\xac\x0e\x30\x39\x70\xc3\xf0\xee\x83\xf2\x4e\x6c\xa7\x1e\xfa\x41\x54\x35\x79\x9f\x52\xa9\xe4\x68\x4a\xe3\x44\x21\x4b\xaf\xec\xee\x81\x0f\xf8\x1f\x7a\xda\x91\x01\x44\x7c\xa2\xbc\x91\xf8\x6a\xbb\x5d\x87\xa4\xaa\x92\x5c\x2d\xf9\xbd\xbe\x79\x2f\xad\x87\xdd\x0f\xe7\xa0\xd5\x4e\x99\x1a\xf8\xf9\xb0\xbc\x9c\x36\xa3\x0a\xb9\xf8\x26\xba\xed\x68\x63\x70\x6f\x96\xbe\x86\xca\xe9\x02\xb8\x95\xcd\xc2\x52\x97\xcd\x4b\xb7\x18\x4a\xbb\x14\x14\x32\xf3\xc1\x0f\x80\x5d\x87\x26\x7c\x34\xa6\x14\xc7\x67\xa1\x16\x6d\xa3\x1e\xba\x4e\x1f\x55\x9b\x16\xac\xb4\x6a\xf5\x0f\xbe\xe3\x55\x7b\x4b\x58\x73\x67\x08\x46\x8c\x93\x45\x91\xca\x2a\x24\x61\x6b\x1a\x26\x43\x5a\x74\xc1\x19\x7e\x88\xdd\x8f\x2a\x71\x42\xf4\xb9\xcd\xcf\x39\x26\x5f\x89\x64\x4d\xd1\x87\xbc\x7e\xa2\x05\x89\xfc\x4d\x15\x6c\xba\x23\xd5\x5b\xe2\xb2\x46\x1c\x20\x83\x04\xa2\x8d\xc0\xe5\x24\x92\x0b\x0a\x1d\x61\x45\xc8\xdf\xf5\xb8\xdd\x7b\x39\x55\x4d\x70\xd3\xc8\x8d\xc2\xd4\xd9\x13\xee\x10\xfe\x2c\xb9\xf9\xf7\x52\xa6\x28\x1a\xfe\x8b\x44\x0c\xaa\xa4\x6b\x16\x0b\x40\x27\xe6\xb1\x1f\xcb\x42\xfe\xd7\x13\xf1\x7c\x4d\x72\x32\x29\x7d\xdf\x91\xb3\x68\x30\xe4\xc3\xbd\xa3\xd7\x07\xaf\xd4\xfc\x1a\xfc\x25\x8c\xec\x20\x3a\x99\xb8\xe8\x90\x61\x12\x92\x93\xfc\xc8\xeb\x4e\x82\x15\xf9\x0d\xb9\x95\x61\x47\xa9\xa2\x54\xe8\x37\xd3\x0e\x95\x79\xe2\x0c\x3d\x3f\x40\x67\xf6\xf0\x85\xd6\x4c\xbf\x25\xd5\xba\x15\xaa\xdd\x1a\x4a\xb7\xd3\xda\xc8\x6a\x62\x95\xc4\x07\x7e\x88\x87\x36\xfe\xb0\xc6\xfa\xc4\xb9\x53\x30\x21\x49\x79\x8b\x66\x69\xd4\xd4\x7a\xeb\xf2\xdd\xe7\xd8\x52\x30\xe5\x28\x51\x1b\x8c\x4c\xed\x4a\x45\xbd\x10\x3b\x06\xb6\x91\xd6\xa5\xca\x0f\x15\x43\x67\x36\xa5\xe2\x2c\xf6\x72\x46\x8c\x4a\x1d\x83\x24\x0c\x47\x8e\x22\xea\x90\x88\x57\x9d\x75\x37\x3e\x5c\x45\x00\x42\x8e\xfe\xf1\x42\x14\x90\xab\x1f\x09\x25\x6a\xa9\x98\x6f\x11\xba\x3e\xd5\xe9\xba\x9d\x45\xd7\xa7\xe9\x74\x6d\x69\x2c\x54\xb0\x47\x63\x12\x46\x2a\x83\x7b\xab\xc5\x70\x24\x56\x92\x8c\x61\x64\x0f\xd9\xfd\xe7\xe4\x00\x0b\xa5\xa2\xcc\x82\xfe\x18\x79\x16\xf0\x5b\xcf\x2d\xe8\xbb\x7e\x68\xb8\x53\x78\x8c\x3c\x32\xa7\xf5\xcf\xf8\x41\xc9\x2d\x9f\x64\xcf\x3e\x44\xb6\x70\x4b\x30\xa9\x1c\x5f\xc1\x49\xce\x89\xe1\x9f\x08\x38\x41\x8c\x26\x11\xbe\x6a\xda\x7d\xbf\x99\x74\x8c\xec\xa1\x95\x1c\x8a\x2c\xf6\xac\x13\xff\x55\x8e\xcc\x74\xee\x35\x7e\xd4\x99\xa4\x95\x39\xfb\x70\x8d\x54\x36\x91\xe7\x5f\x7c\xca\xc9\x74\xdc\x4f\x0f\xc0\xe3\xb3\xb4\x5c\xef\x36\x48\xef\x4c\x9d\xdb\xcc\xea\x5c\x56\xdf\xb6\xa4\xbe\x45\xf6\x50\x3c\x9d\xcb\x2c\x41\xb7\xa9\x7c\x6b\xe8\x68\xb4\x9b\x99\x12\xae\x91\x8e\x47\x3b\x63\x7e\xf0\x83\x20\xd3\x27\x49\xbb\x4d\x50\xfa\x6c\xc0\x68\x35\x0b\xa3\xcf\x19\x08\xad\x11\x90\xf7\x06\x90\xeb\x59\x20\xef\x33\x40\x6e\xcc\xc2\x47\x9c\x0a\x32\x23\x95\xe2\x9f\xf6\x66\x3a\x91\x3d\x69\x75\xe1\x68\x60\xa2\xf2\x16\xd9\xa5\xd2\xad\xf4\x7a\x8d\xcf\xf7\xe7\x0d\xed\x3b\x97\xc3\xd4\x95\x16\xc0\x77\x7b\x4b\x15\x6a\x6d\x36\xe8\x3f\x9f\xe9\x3f\xf7\xbd\xa5\x73\x46\xad\x34\xa2\xad\x72\x96\xb2\xbd\x3b\x11\xa4\x5e\x30\x83\x83\xe4\xce\x9d\xf9\x37\x88\xa5\x25\x19\x7a\xb9\x4a\x79\xc9\xc0\xdd\xab\x99\xbc\x94\xc1\xdc\xab\x6b\x8a\x0c\x67\x91\xa2\xf8\x84\x66\xea\x03\x1b\x2c\x89\xf5\x52\x7d\x32\xf5\x46\xe6\xb9\x30\x42\x23\xdd\x1e\x04\xf1\x38\x6d\x5c\xa4\x03\x52\xc1\x4e\x6c\x0f\xde\xa7\xb1\xd6\xaa\x6c\x27\x28\x89\xc5\x59\xcc\xdd\x84\xc6\x73\xa0\x9d\x81\xe7\x0d\x9e\x5d\xdc\x61\xff\xb2\xb5\xaf\xc1\x31\xc7\x24\xbc\xf6\x27\xee\x80\x9c\xef\x13\x2f\x85\xed\x66\x26\x37\x63\x1b\xb6\xd4\x34\x59\xa5\x86\x46\xa7\x63\x60\x81\x4c\x53\x03\xd7\x48\xe3\x81\x35\xd9\xd6\x10\x4e\xee\x89\xa3\xd4\xec\x95\x81\x0f\xd6\x5a\x9a\xd1\xc6\x8c\xa8\xfd\xe8\x96\x1e\x13\x5b\xa1\x24\xdc\x0b\x86\xa7\xd1\x9d\x8b\x2a\xb5\xe4\xe6\x9b\x80\xdc\x58\xa1\xc1\x6c\x2b\x9c\x71\xe7\xca\xd2\x48\x6c\x81\xde\xcf\xa0\x8e\x25\xa9\x23\x06\x83\xc3\xe7\xff\x8a\x77\xce\x19\x49\xbb\x46\xf5\xb3\x65\xb0\x8d\x33\xd5\xb3\x95\x41\xd8\x75\x10\x8f\xa0\xd7\x3e\x6f\x64\xc1\xe5\xb5\x52\x81\x6f\xea\x22\x9b\xde\xe9\x63\x81\x4e\xb1\x34\x16\xa7\x97\x5b\xee\xec\x00\x1b\xa4\x0a\xec\x52\x99\xce\xd8\x5e\x2c\x31\xb0\x23\x14\x7f\xc7\x3f\x80\xdb\x4a\xce\x88\x37\xda\xa1\xff\xc0\xb3\x67\xf4\x0f\x72\x4e\xee\xd4\x5a\x61\x8d\xb2\x7b\xc5\x40\xbb\x4c\x6e\xaf\x64\x38\x2c\x4d\xaa\x29\xfe\xac\xe8\x5a\x62\xbd\x95\xad\x25\xce\x2d\x76\x14\x63\x0a\xe8\x36\x03\x6d\xaf\xfc\x77\x6f\xe5\x3f\x15\x93\x22\x5a\x5f\x4d\x6d\xa2\xdb\x5b\xb2\xa9\xee\xf9\x2f\x69\xaa\xdb\x5b\xda\xa3\xbf\xff\x43\x7e\xc7\x8a\x4a\xd2\x50\x99\x08\xad\x51\x84\x28\x3e\x06\x64\xd6\xa7\x44\x26\x4f\x33\xae\x6f\x28\x6e\x21\xd9\x61\x5b\x88\x21\x5b\x58\xe6\x0e\x58\x9a\x01\x91\xba\xac\x76\x87\xff\x51\x46\xee\x6a\xc7\x92\xc5\xa8\x94\x16\xbd\xeb\x9b\xf9\x82\x0e\xe3\x7d\x1c\xe0\x06\x8b\x0b\xbb\x75\xca\xe3\xb8\xaa\xce\xe6\xeb\x99\x6c\x4e\xeb\xa4\x0d\xc2\x46\x93\x00\xc6\x93\x53\x07\xbc\xd1\xca\x02\x4c\xeb\xa4\x02\xa6\x66\xc8\x98\x5c\xc8\x6e\x00\x9d\x69\x8b\xf0\x5a\xa9\xc0\xa9\x71\x1b\x22\x17\xf5\x23\x3f\x18\x38\x9e\xb1\x8d\x4c\x43\x57\xa9\x9c\xda\x14\xf5\x59\xfc\xab\xab\x10\x45\x06\x8d\xba\x91\xe9\xb9\xc4\xd5\x52\xc1\x6f\x99\x04\x34\xed\xff\x19\x11\xd3\x14\x44\xa6\xd1\x93\xe2\xe4\x13\x20\x22\xb0\x8e\xf0\x37\x95\xd6\xf4\x37\x96\xd7\x95\xbe\x4d\x49\x41\x8e\x31\x60\x64\xa9\xc8\x62\x99\x23\xd3\x61\xff\xc2\x2e\xfb\xa3\xdb\x3e\x07\x72\xb3\x9d\x6a\x70\xa5\xe4\xe2\x5f\xd8\xc6\xe8\x35\x59\xa8\x18\xc0\x0e\x5c\xd8\x75\x67\xc0\xda\xa6\x3f\x79\xfb\x04\xec\xeb\x24\xcf\xe5\xc2\xae\x1b\x52\x5d\xf8\xe3\x5c\x41\xd5\x19\x80\xe3\x91\xc4\xfe\xb4\x95\x01\x1e\x4e\x78\x35\x19\xbb\x4e\x1f\xab\x2c\xda\x4c\x12\x37\x70\x06\x49\x40\xc1\xf1\x18\x15\x01\x51\x7f\xae\x93\x94\x8b\xc8\xd5\x21\x05\x02\x0c\xfc\x31\xac\x13\xd8\xae\xdb\x75\x06\xe7\xb0\x93\x86\xae\x34\x22\xe6\x22\xbc\xd1\x8e\x42\x30\x03\x02\x06\xa4\xf8\x95\x1a\xae\xab\x06\xbd\xc9\xd6\x87\x52\x02\x71\x63\x5b\x98\xa9\xfa\xec\xd9\xcc\x74\xb8\x79\xad\xb4\xc9\xb3\xd9\x32\x4d\x9e\xd2\x13\x85\x36\xa3\xb1\xfa\x3f\x82\x95\x69\xdf\x17\xac\x5c\x80\x95\x37\xa9\x46\xdb\x31\x70\x71\xa6\x32\xdb\xc9\x60\x60\xd9\xb1\x76\x06\x46\x83\x81\x8e\x51\xbe\x91\xb0\xb9\xae\x40\x13\x4e\x34\x2e\xe1\x15\x09\x93\xc4\x19\x74\xc0\x19\x28\x23\x33\xb5\xa1\xbe\xb9\x51\xa4\xb7\x4c\x25\xe5\xf7\x76\xf3\x91\xf7\x76\x2b\x3d\xf6\xf1\xe9\xda\x89\x50\x38\xb6\xd9\x91\xcf\x4a\xc5\x6d\x6a\x90\xf7\x7a\xd1\x4a\xaf\x17\x40\xaf\x77\xbb\xb5\xde\xeb\xdd\xee\x35\x7b\xbd\x49\x6b\x63\x0b\xff\xd3\x6e\x92\x44\x24\xfc\xef\x1e\xf9\xa7\xbd\x45\xff\xd9\xa6\xff\x1c\x92\x7f\xd6\xf1\x3f\xab\xcd\x66\x53\xb7\xea\xb7\x9a\x59\x56\x3d\xc9\xb2\xa2\x69\x51\x01\x73\x2b\x80\xbf\xc0\xc8\xf0\x3f\xf7\x9a\xfc\x4f\x8a\xd8\x12\xf1\x01\x18\x7e\xf1\x27\x82\x24\x85\xc2\x71\x4d\x3e\xb5\xb7\xc5\x1f\x87\xc2\x8f\xf5\xe4\xc7\x2a\x01\x97\xe7\x50\x6c\x65\x44\xd0\x42\xb2\xd8\xc8\xbd\x03\x03\xd5\xb7\x98\x5f\xf6\x64\xa5\xd7\x6b\x74\x56\x7e\xea\xae\xf4\x7a\x7f\xbe\xff\xbc\xf2\xff\x70\x37\x5b\x2b\xf8\xbf\x9b\xf8\x3f\xdb\xf8\x3f\x2f\xf1\x7f\xf6\xf1\x7f\x0e\x7a\xbd\xdb\x97\x4d\xfc\x9f\x16\xfe\xcf\x06\xfe\x0f\xfe\xfa\xf2\xb0\xd7\xbb\x7d\x85\x6b\x1c\x6e\x92\xde\xb4\xd8\x78\xb5\xe9\xcf\x55\xf6\x73\xf5\x80\xfc\xb3\xd6\xa2\x3f\xd7\x57\xe9\x3f\xeb\xec\x27\xf9\xda\xda\xa6\x85\xd7\xc8\x78\xb6\xd7\xd9\xd0\x6f\x6e\xae\x93\x7f\xb6\xd7\xc8\xcf\x97\x87\xe4\xeb\x01\xfb\x7a\xb0\xc9\x06\x9f\x40\x5e\x6d\x36\x57\xe9\x3f\x5b\xf4\x67\xbb\x49\xfe\x59\xc5\xff\x1c\xbe\x22\x58\x1c\xbe\x5a\xc5\x55\x0e\x0f\xd6\xd6\xe9\x3f\x1b\x06\xb6\xc9\xf4\x4c\x9f\xc4\x31\x52\xea\x0c\x76\xe8\xef\x9f\xf8\xef\x2e\xfd\xfd\x27\x63\x86\xf7\x8c\x5f\x98\xab\xfa\xff\x78\x31\x42\xf1\x84\xc7\x36\x63\xde\xc1\xd4\x8f\x5f\xbf\x4c\xfe\xdc\x4f\xfe\x3c\x88\xff\x7c\xd9\x4c\xfe\x4c\xa0\xbd\xdc\x48\xfe\x4c\x20\xbc\x8c\x59\x0d\x8f\x19\xff\xf3\x70\x53\x64\xe8\x96\xc8\xd0\xed\xcd\x04\x59\x32\x9a\xc2\xb7\xd5\x03\xe9\xdb\x5a\x4b\xe4\xe9\x55\xe9\xdb\xfa\xba\xf8\x4d\xaa\xd7\xda\x16\x60\xe2\x91\x17\xbe\xad\x8b\x93\x0b\xb3\x81\xf0\x6d\x73\x7b\x2d\xf9\x86\x79\x42\xf8\x76\x20\xd6\xc3\x0c\x92\x7c\xc3\x8c\x22\x4e\xb7\x55\xf9\xdb\x96\xf0\xad\xdd\x4c\x26\xf3\xaa\xd8\x75\xc2\x47\xc2\x8f\x64\xfe\x12\x9e\x12\x7e\x6c\x14\x98\xcc\x6b\xe9\x93\x39\xde\x99\x96\x29\x47\xb7\x72\x83\xcf\xa6\x4a\xd4\xdd\x5b\xd1\x95\xfc\x56\xa6\xa3\xb7\x92\xae\xe4\xb7\x64\x17\xcf\x43\x43\x3b\x72\x3e\x22\x0b\xbc\xc9\xc8\x64\xa4\x7a\x93\x91\xac\x82\x76\x81\xd7\xd1\x0d\x9c\x5d\x58\xd1\xca\x03\xc9\x07\xd4\x5e\x77\xe2\x33\x0b\xf4\x95\xe9\xed\x8c\xd5\xab\xb1\x1f\x46\x81\x3f\xbe\x36\xd1\x78\xbb\x99\x5e\x71\xe0\x4f\x2e\x5d\x04\x49\xfd\xd0\x04\xa0\x45\x83\x77\x86\xe8\xdd\x76\x3b\x33\x7a\x97\x11\xbe\xdb\x5e\x4d\xcb\x11\xa0\x61\x42\x9d\x00\xdb\xb2\x21\xc6\x72\x1a\xf7\xaf\xed\xc0\x82\xbf\x26\x7e\x44\xff\x36\xfa\x14\x42\x59\x58\x16\x0b\xc7\x81\x65\x8e\x2c\x69\x3c\xd5\x5e\xd8\x5e\xd7\x32\x3b\xb4\xb6\xaa\xb7\xf4\x78\xb2\x1f\x2a\xf0\xec\x99\x3c\xba\xec\xcb\x67\xfd\xcb\x93\xaa\x13\x1e\x79\x6f\x89\x59\x45\xc3\x61\x55\x72\xdf\xe5\x6d\xb2\xdd\xd0\x54\xe5\x0d\x0a\x23\xc4\x77\x57\x9c\x51\x6f\x20\xa9\x75\x5f\x49\xb7\x7c\xb6\xe9\x1c\x22\xd9\xd7\xda\xb7\xcc\x59\x44\xaa\xa4\x8e\xea\x56\x3e\x81\x18\x76\x3f\x54\xe0\xcb\x17\xfe\xe3\x47\xf1\xc7\x67\xf1\xc7\x3d\xf9\x91\x4b\x9e\xd4\x7e\x66\xcd\x9a\x60\xf8\xc6\x1e\xa1\xe3\xe0\x4d\x9a\xa4\x69\x35\x33\xe6\xce\x47\xdb\x75\x06\x67\xf6\xd0\x58\x2f\x7b\xa9\x39\xa3\x41\xea\xc0\x34\x0d\xcb\xef\xcd\x4c\x0f\xa6\x99\x95\x82\xb2\x96\x36\xd7\x9a\xa6\xb5\xf7\xe6\x3a\x35\xb3\x5a\x2b\xdb\xba\x75\xd1\x6a\x6e\x64\x99\x17\x4c\x41\x6d\x17\x88\x2d\xb7\x9a\x9b\xb4\x9d\xa6\xb9\x9d\xad\xac\x76\x9a\x65\xda\xd9\x96\xba\x4f\x0e\x53\x4d\x4b\x6e\x0a\xd1\x91\x17\xb1\x22\x71\x02\x85\x05\xad\x66\x46\xd6\x4d\x06\x8f\x30\x16\x33\x8d\x74\x4e\xb6\x4e\x4a\xb5\x49\x10\xbc\xf5\xc5\xb3\x6d\xe2\xdc\x36\xfb\x23\x1a\x98\x3f\x8d\xfd\xf0\x15\x8a\x6c\xc7\x0d\xf7\xed\xfe\x35\x39\xe6\xf6\x33\xb8\x8e\x87\x3a\xd0\xb2\xa0\xef\xbb\x93\x91\xd7\x81\x16\xdc\x9f\x2b\x15\x47\xf6\xed\xa1\xed\xb8\x66\xa8\xec\xe3\x41\xb2\x23\xae\xab\xd6\x0f\x1d\x17\x79\x11\x2e\x65\x02\x10\x6f\x88\x84\x38\xa3\x88\x06\x71\xe2\x34\x3d\x39\x65\x50\xcb\x40\x7a\x62\xa8\xe1\xd0\xd4\x44\x3d\x4d\x50\xdf\xa8\x9a\xec\xbf\xe7\x37\x01\xed\xdb\x5e\x25\xa2\xb9\x84\x84\x17\x1c\x6f\x48\x37\x40\x06\x18\xb4\x90\xbc\xa4\xb6\xca\x23\x30\xf5\x64\xc4\x40\x0e\xb7\x18\x91\x62\x0c\xa0\x23\xdb\xd5\x9a\xe0\xa4\x65\x20\x63\x6e\x66\x21\x20\x9d\x97\x49\x5a\x66\x3d\x9c\x5c\xd2\xe3\x0d\xab\x22\x8f\x58\x22\x2f\xd5\x52\x20\x27\x91\x24\xd3\x4c\xc1\xf5\xfd\xd1\x78\x12\xa1\xd8\xcd\x2e\xdd\x02\xcf\x67\x15\x33\xa7\x93\x08\x96\x9c\x8b\x1b\xbf\x15\xf6\x4d\xb6\x64\xfe\x50\x0d\xb2\xb8\x98\x6a\x62\x4d\x85\x7c\xc2\x31\xf8\x23\xd9\xd5\x78\x1a\x05\x93\x7e\x34\x09\xd0\x80\x32\x50\xd7\x38\x9b\x85\xce\xd5\xce\xad\x12\xe3\x22\x92\x22\x8d\x82\xf2\xde\xd8\xef\x88\x74\xe4\x80\x9d\x83\x34\xf4\x53\xba\x9b\xa2\xfc\xf0\x1c\x68\x59\x2c\x5d\x76\xdf\x0e\x8d\x0b\xe6\x3c\x9a\x2c\xec\x7c\xb2\xc8\xec\xe9\x80\x56\xbf\x23\xfc\x2d\x9e\x13\xa8\x21\xa3\xa9\x26\x92\x1e\x8b\x07\x99\x6e\xc5\x29\x8e\x14\xdb\x18\x65\xd1\x04\xdb\x0e\x28\x80\x3a\x46\x90\x85\xf1\x54\xf3\x9a\x32\x51\x21\xdb\x7f\x32\xc1\x21\x6f\x50\x1c\x1c\xd9\xff\x93\x09\x2e\x73\xca\x64\xc2\x66\xdb\x81\x2c\x71\x7b\x40\x47\xfc\x91\x3d\x7a\x94\x91\xdf\xc6\xea\xb1\x3a\xf6\x43\x6d\x1b\xf9\x80\x7e\xe3\xa9\xe2\xb2\x2e\xed\x8e\xfd\x50\xdc\x76\x40\x74\xdb\x0b\x59\x4d\x31\x00\x69\x5b\x0b\xd8\x67\xb3\xda\x30\x1d\x8e\x31\xc6\xa8\xf8\x21\xac\x40\x4b\x09\x98\xb3\x1b\xf4\x9f\x18\x11\x35\xef\xba\x19\xaf\xac\xa8\x51\x77\xf9\x67\x4e\xf7\xd5\x3d\x17\x49\x71\x43\x63\xd4\xe6\x60\x45\xea\xf8\x97\xe9\xa4\x50\x66\x8f\xf0\x62\xf4\xb7\x82\xa3\xb9\xe3\x63\xf8\x01\xd4\x21\xe4\x0f\x59\x9b\x21\xb2\x57\xd8\x32\x3e\xae\x11\x07\xa2\x65\xde\x19\x25\xf4\x87\x20\x9b\xba\xb9\x48\x46\x95\xec\xa1\xd2\x0b\x96\x3c\xfa\x44\x86\x69\x6c\xda\x00\x71\xac\x15\x54\x0a\xa5\xf1\x30\xd9\x66\xa5\x32\x22\x14\xe0\xd2\x8c\x89\x15\x6b\x08\x62\xc5\x10\xed\x80\x3c\xac\x25\xb4\x39\xc6\x0b\xbc\x92\x98\x4d\x9f\x9f\xbc\x5c\x4d\x99\x72\x14\x6c\x5e\x6d\xd6\xb8\xbe\xbe\xa0\x6e\xa7\xa5\x9b\x49\x0c\x03\xc3\x97\xd6\xe3\x0e\xa5\xf1\xb8\xd2\xa1\x3c\x5e\x57\x8b\x1b\x79\x5e\xa9\x8f\xbc\x41\x26\x8e\xb4\xb7\xa9\x18\x4a\x24\xcb\xc3\x4f\x2e\x6c\xc4\x4e\x60\x8c\x0c\x91\x7b\x65\x3b\x6e\xca\x4e\x4a\x3c\x41\x45\x17\xe7\x07\xc5\x05\x49\x91\x9f\x66\xb9\xa9\x02\xfb\x31\x0f\x98\xe6\xee\x08\xb5\x5f\xa4\x16\x35\x39\x3f\xa0\x1b\xfe\x4a\x69\xba\x88\x96\x50\x21\x83\x5e\x45\x8c\x25\x53\x78\x12\x7d\x32\x9f\x9e\xd2\xa5\x41\xe1\xa5\x82\xc6\x96\xd1\xcc\x8d\x11\xd7\x8e\x60\x29\x84\x4b\xda\xe1\x20\x1a\xdc\x5a\x72\xd8\x8b\xa9\xa9\x0c\xb4\x93\xfd\x5c\x55\x5d\xd4\x88\x87\xc2\x86\x4d\x71\x07\x18\xa3\x92\x31\x0b\xb5\x99\xd7\x5c\x5c\x59\x6f\xd0\x82\xb0\xa5\x36\x2a\xb1\x4b\xd8\x32\xa0\xc1\x76\x22\x48\xd8\x30\x3d\x17\x52\xf3\x7d\x1c\xef\x94\xd3\x4f\x04\x68\x52\x26\x0b\x5b\x6a\x1a\x40\xe1\xb6\xf4\xfd\x35\x85\x89\x10\x83\x33\xd3\xc2\x82\xb0\x6d\x1a\x04\x7d\xba\x29\x81\x0d\x73\xa1\xb8\x47\xfd\x66\x55\x3b\xde\x49\xdf\xd1\x49\x8a\xc7\x9e\x4f\x71\xb3\x2b\x6e\x86\x92\x3c\x5d\xee\x14\x18\x9d\xb6\x38\x06\xc9\xd6\x2c\xe3\x5e\xee\xb0\x9d\x07\xce\x40\xa9\xd0\x74\xf4\x71\x42\xa8\x56\x35\x6c\x9b\xf2\x43\xc8\x50\x84\xaa\xf5\xa2\x98\x10\x69\x56\x8b\x1c\x9f\x32\x63\xd0\x4c\xa3\x21\xa4\xee\xd7\x35\x9a\xc0\xd9\x4d\xa5\x37\xa3\x0e\x55\x93\xd8\x7f\x99\x13\x49\x1c\x2a\xee\x7c\x66\x0d\x57\x2e\x48\x1d\xac\xb2\xf9\x48\x83\x5b\x0e\xb6\x0e\x9f\x1e\x67\x4b\x2f\x21\xce\x6a\xa3\x7c\x3b\x7a\x5b\x34\x35\x24\xaf\x95\xe9\x5a\x32\xf4\x8c\xa4\xdd\x14\x69\x6d\xfa\x16\x0d\x7d\xc4\xba\xa8\x68\xa3\x06\x2b\x3d\xe7\x53\xfe\x59\x05\xe6\x99\x52\x56\x4c\x9f\x69\xb1\x43\x59\x46\x5b\x10\xae\x3e\x88\x9c\x6e\x7f\x4f\x72\xba\xab\xba\xb8\xe1\xaa\xc8\x0b\x74\x05\x75\x2f\x59\x40\x35\x4b\x85\xd5\x42\x52\x41\x82\x4c\x97\x29\xd9\x81\x66\xa9\x22\xa1\x10\x60\x1d\xf8\xc4\xcb\x05\x5f\xbe\x09\x48\xf5\xb3\x85\xa0\x20\x01\xb6\x91\xee\x71\x6b\xf8\xf6\x57\x73\x66\x98\x00\x3d\xd5\x45\x87\xec\x99\x98\xe5\x89\x6b\x08\x19\x95\x97\xfa\x70\x0f\x44\x5a\x03\xd9\xd9\x49\x39\x84\xc5\xd4\x25\xe2\x2b\x91\xbe\xad\x7d\x63\x19\x03\x09\x27\x14\x30\x45\xb8\x91\x5a\xa8\x30\x90\x69\xc6\x8c\xd5\xd5\xb4\x7e\x96\x9d\x72\x0a\xd2\x65\x94\x59\xb9\x29\x38\x7d\x43\x7a\x63\x05\xa7\xe4\x6c\x4d\xc2\x3c\xa7\xa8\xd6\x8f\xdc\xa9\xca\x9f\xa2\x53\x96\x3f\x19\x0c\xce\x9f\x22\x53\x58\x43\xb8\xd0\x54\xe6\xcf\x6c\x53\x9a\x3f\x25\xa7\x36\x7f\x0a\x50\x20\xa7\xc8\x57\x10\x12\x69\x63\x10\x3b\x3c\x79\x76\x3f\x3c\xa0\xd3\xb3\xbe\x70\x7a\xca\x3a\x3d\xe6\x00\x18\x21\xa9\x6e\x16\xb5\xa7\x30\x8b\xda\x85\xcc\xa2\x76\x79\xb3\xa8\x10\x60\x1d\x78\x19\xb3\xa8\x70\x13\x7a\x33\x9e\xef\x9d\xd9\xc3\xd3\xc8\x0e\x22\xc7\x1b\xee\x79\x43\x17\xbd\x0c\xec\xfe\x0d\x4a\x77\x27\xa6\x53\xd8\x85\xa6\x11\x57\xd8\x85\x0a\x93\xce\xb4\x98\xc2\x36\xce\x27\xbd\xbb\x25\x15\xf6\x0c\x84\x2d\xa7\xb0\x4b\x35\xa4\x37\x36\x8d\xc2\x2e\xdd\xa4\xde\xec\x14\xcc\xc3\x9f\x6f\xa9\x02\x52\xdd\x32\x03\x90\x62\xee\x19\x4c\xa3\x02\xb4\x80\xa8\x7a\x9a\x9f\xa6\x0d\xa6\xf1\xb0\xb3\xc6\x68\xd6\xa0\x68\xd2\x1d\xb3\x1f\x9e\x58\x27\x92\x69\x25\x33\x91\x3f\x46\x9e\xe3\x0d\xcf\xec\xa1\xee\x8b\xe7\xf2\xa8\x0c\xaa\xef\xfa\xa1\x01\x54\x71\x70\x3a\xc8\x10\xb9\x57\xfb\xe9\x60\xcd\x3a\x53\xe9\xbc\xb4\xb0\x5d\xb0\x5f\x53\x86\x1c\x14\xcd\xac\x9a\x12\x73\x8c\x48\xcc\x64\xba\xc7\x34\x36\x9a\xe9\x59\x26\xf9\x5c\xcc\x3c\x98\xca\x84\x2e\x60\x2e\xcf\x4b\x0f\x96\x93\x25\x1b\x46\x69\xfb\x4f\x32\x26\x0b\x4b\x43\x35\x6c\x5e\x6c\x89\x2c\x47\xfa\xe9\x91\x4c\x2d\xa6\x98\x37\xe8\x79\x03\x9e\x0c\xf6\xa6\xa2\x38\xee\x15\x5c\x25\xec\x0b\xd3\x45\x8e\x23\xcf\x42\x95\x62\x72\x61\x55\xbf\x1e\x28\xe9\xe2\x96\x61\x99\xdb\x24\x0f\xa6\x0e\xbf\x42\xe9\xf9\x2f\xcf\xfd\xed\x62\x6a\x60\xde\x43\xdf\x6a\xa6\x2d\x8b\xce\x30\xf2\xe2\x9a\x5f\xe1\x00\x7c\xa6\x76\x57\x97\x45\xd2\xf4\xe7\xfc\x3c\xc0\x3c\x5b\xa2\xf8\x60\x80\x66\x00\x98\x96\xe2\x25\x98\xc5\x7d\x95\xd5\x82\xb6\x8a\x04\xbe\x70\xec\x12\x0a\xea\x0d\x8d\x72\xfd\x56\xbb\x9a\x8c\x72\x96\xe1\x6e\x56\x29\xfc\x49\xb1\xdb\xf3\xa2\x61\x05\x54\x8d\xd4\x7e\x6e\xb0\xac\xd8\x01\xdb\x59\x68\x15\x44\x29\x1f\x9d\xe9\x1c\x94\x07\x52\xbe\xb9\x56\x69\xfe\x5c\x7c\x30\x89\xda\xca\x72\x86\xa6\x51\xf4\xaa\xdc\xc9\x16\x6d\x16\x84\x6b\x16\x84\xeb\x33\xbb\x3d\x53\x5b\xc5\xe9\x16\xf1\xb4\xda\x2f\xd3\x02\x9e\x65\xac\x34\xcb\x37\x43\xfb\xe5\x0a\x47\x59\x28\xf2\x8d\x6c\x69\x2b\x97\x45\xa4\xf7\x9a\x08\xf0\x22\x5d\x6e\xaf\x15\x15\xac\xc9\x98\xd2\xbd\x12\xe2\x78\x5a\xd0\xae\xc5\xb3\xa6\xdf\x5a\xcd\x0e\x10\xc5\x67\xa3\xb5\xb2\x56\x27\xc4\xe9\xbf\xbc\x03\xed\xf9\x8a\xdb\x18\x89\xdc\x05\x87\xe9\x17\x19\x94\xb9\x9d\xb9\xb2\x50\x3c\xda\xc3\x71\x0a\xd7\xcb\xa8\x44\xba\x72\x2e\x4f\xf3\xac\x8b\x1b\xc8\xe4\x0e\xe7\x4c\xf4\x1c\xb7\x5c\x6b\xff\xeb\xeb\xb8\x34\x94\xf2\xd1\x99\x8b\x8e\x33\x35\x5f\x38\x4e\xf7\x68\x62\x22\x25\x4c\x79\x35\xfe\x37\x1f\x63\x5e\xb4\x7f\xe7\x91\x4d\x33\xbd\x3a\x6b\xcd\x5b\x9d\x3d\x98\xe9\x51\x46\x9d\x95\xcc\xa7\xcc\x56\x67\x85\x1c\x87\x82\x23\xd0\xce\xf7\x3a\xfa\xad\x8d\x94\x39\x9e\x15\x6f\x83\xf2\x92\xa5\xd8\x92\xf6\x74\xda\x45\xd1\x2c\x9b\xd3\xaf\x51\x41\x69\x07\xab\xa8\x73\x25\xcc\xf2\xad\xac\x85\xa9\x54\x67\x6a\xe1\xad\x3c\x86\x50\x61\xbf\xb0\xf7\x50\x56\x96\xe6\x9a\x91\xdb\x19\xf2\xb4\xb5\x9d\x2e\x50\x55\x73\xf1\x9b\xc9\xd4\x76\x73\x21\x54\x17\x42\x75\x21\x54\x17\x42\x55\x11\xaa\xda\xfe\x82\xd2\x71\x99\x42\xa1\xe7\x69\x2d\xd9\x56\x5b\xf7\xe0\x85\x64\x71\xd5\x2b\x7c\x74\xb6\x6c\x5b\x0b\xdf\xce\x4f\xee\xea\xa1\x94\xe2\x02\x57\x8e\xf2\x28\xa7\x1d\x65\x65\x94\x17\x0d\xad\x17\x08\xfa\x40\xe9\xc0\x0f\x94\xe0\x1b\x7d\x3d\x4b\xc3\x31\x8e\xfe\xb4\xd7\x32\xfc\x7f\xf8\x8a\x69\xe4\x85\x43\x41\x30\xe7\x34\xf2\xf6\xfa\xfc\xf3\x83\x60\xaa\xf0\x10\x94\x5c\x35\x01\x59\x22\x6c\x64\xa4\x8a\xc7\xc5\x33\x57\x4d\x72\x7a\x54\x64\x1c\x0b\xea\x2a\x09\x9f\x42\xc3\x5e\x2e\x36\xb7\x58\xe8\x49\xfb\xf9\x37\xd1\xf2\xe3\x47\xbc\x80\xd4\x9e\xf7\x02\x92\x7a\x43\x58\x11\x53\x65\x76\x33\x45\x4f\x68\x4e\x16\x86\xf4\xc2\xab\xd3\xa5\xdf\x49\xca\x92\x1c\x8a\x7a\x3a\xb6\xfb\x48\x5f\x9c\x5f\xcb\x1b\xcf\xf8\x70\x83\xf6\x56\x3d\x42\x61\x24\xa8\x4a\x45\x4d\xea\x87\x9e\xc5\xa8\xa4\xd6\x31\x4c\x87\x2c\xcd\x58\x34\x35\x6c\xed\xa1\x53\xc3\xda\x5a\x7e\x88\x01\xbd\x29\xd7\x68\x73\x87\x84\x30\xc5\xec\x99\x83\x6a\xd8\x36\xdd\xff\x54\xcd\xca\x5c\xa3\x2d\x31\xa9\xe2\xfb\xc0\x25\x83\xea\x1f\xc3\x27\xab\x5a\x94\xc4\x80\x9e\x29\x87\xb0\x90\x05\x4b\x46\xac\x4b\x05\x93\x69\xc1\x8b\x08\x16\x6d\x9c\xa7\xd3\x5c\xa6\xe5\xb2\xc2\x3b\x6d\xca\x31\xa6\xda\x54\x7a\x33\xa5\xd7\xa2\x4b\xed\x3e\xc8\xde\x79\x90\x21\xb5\xe3\x22\xe9\xd2\x5b\xec\x7a\x9a\x14\x8f\xc1\x14\x91\xe6\x12\x1d\x72\x45\x88\x58\x7a\x16\xe9\x2e\xa1\x58\x66\xf6\x8a\xfd\xcf\xf3\x83\xa6\x5d\x06\xcf\x9d\xdd\x2a\x15\x66\x5d\x06\x37\x6b\x85\x9c\x6e\x14\x33\x71\xb3\xb4\x86\xd8\x8d\xe2\x43\x9f\xaa\x45\x32\xb0\x28\x61\x68\xa7\xa5\x3f\xe4\x47\x39\x67\x0e\x38\x4e\xa1\x7d\x62\xec\x16\x7c\x9c\xaa\xb5\x72\xba\x91\x95\xce\x51\x2a\x1e\x93\xa7\xd5\xe2\x72\x46\xed\x96\x83\x4e\x49\x0f\x36\x2d\x49\x04\x0a\x6d\x40\x48\xc1\x63\xb6\x89\x95\x86\x52\x3e\x3a\x85\xcc\xd3\x87\x3e\xe5\xa2\x19\x4f\xb0\xe4\x58\x5a\xec\x66\xa5\xcc\xb3\x3c\xcc\xb2\x36\x50\x3d\x6a\x67\x56\x5b\x82\x99\xab\x33\x2b\xdc\x08\x5d\x70\x0f\xd8\x83\x06\xdd\xd7\x36\xb3\xd2\x47\x1e\x7d\xcc\x7d\xf5\x01\x63\xee\x7a\x10\x62\xea\x10\x7c\x91\x20\xa7\x40\xf6\xb5\xc5\x16\xf5\x47\x2d\x22\x56\x1f\x36\xde\x45\x44\xc4\x57\x0c\x79\x8d\xcd\x6b\x37\xdf\x78\xce\x50\x63\xc3\xe8\x3c\xaf\xa5\x37\x29\x89\x57\x43\x5d\xee\x66\x16\xb6\x7b\xc2\x55\xe6\x6a\xa6\x26\xd2\xce\x82\xce\x37\x58\xc2\x5f\xdd\xa8\x66\x6f\x36\x59\x2c\xe3\xeb\xed\xfc\xd3\x05\x9e\xb6\x64\x38\x57\x81\x37\xa7\xcd\xf0\xe6\xd0\x7d\xba\x80\x55\x09\xfc\x4d\x62\x54\x85\xd0\x4b\xa7\xf8\x03\x3b\x05\x79\xe2\x45\x10\x2b\x0f\xb3\x37\x96\x52\x86\xdf\xbe\x3e\x3b\xa3\x14\x4f\x04\x5c\xdd\xca\xb2\x8c\x33\xb6\xc9\x3e\x9a\x44\xc0\xd5\xb9\x6e\x95\xcd\xe2\xd8\xaf\x66\x1a\xaf\x35\x17\xa6\xf1\x7c\xf6\xee\x8e\x8b\x9c\xd5\x09\x32\xf1\x5b\x29\x1b\x7b\x53\xe4\x5f\x46\x14\xb3\xe8\x32\xd0\xc3\x9c\x16\x63\xdc\x64\xac\x1d\x1e\x20\xc1\x2d\xbc\xd1\xb8\xbc\x41\xb6\xd6\x5e\xe4\x54\xe6\x37\x3d\x17\x83\x43\x39\xfb\xb8\x58\xfe\xa3\x05\xe1\x86\x05\xe1\xa6\x05\xe1\x96\x05\xe1\x36\x2e\x43\x0a\xe2\x92\xad\xd2\x7a\x67\x91\x02\xb9\x48\x81\x9c\x77\x0a\xe4\xda\x5a\x89\x0c\xc8\xb5\xc7\x72\x90\xee\x37\xcb\x80\x5c\x7b\x80\x93\x74\x61\xea\x0c\xc8\x70\xa3\x18\xf3\x48\xad\x6c\x94\x6d\x05\x72\x8d\xdf\x0d\xc1\xf8\x5d\xcb\x4f\xa9\x8d\xd1\xdf\x8c\x19\x6b\x3d\x07\x73\xfe\x28\xc6\x72\xda\x2e\x0e\xf1\xc9\xa0\x3a\x7f\x4a\x9d\xfc\xba\x59\x86\xf7\xf8\xf3\x20\x27\xbf\x6e\x7c\xbd\xa3\x5f\x79\x1f\xc2\xcd\x69\xb8\x07\x3f\xe1\x56\x39\x5e\x95\x5a\xdd\x9a\xb6\x55\xd2\xf2\x76\x6e\xc6\x46\x56\xe3\x73\x91\xa1\x1a\x4e\xf1\x9d\xaf\xf9\x42\x55\x7d\x8a\x0a\x59\xf5\x29\x30\xc4\xfc\x29\x33\x21\xf8\x93\x74\xa9\xd4\xcc\xe0\xcf\x7c\x66\x08\x7f\xca\x4a\x6d\xf5\x29\x41\xab\x12\x45\xa9\xf1\xd2\x9c\x85\x99\x81\x50\x3a\x23\xf6\x5e\x1c\x8f\x42\x0e\x4f\x3e\x2e\x06\xe7\x3e\x09\xba\x94\x44\x2c\x41\xae\xb0\xd7\x94\x8f\x20\xb9\x2d\x49\x32\xbc\xb3\x32\x10\x32\x61\x6d\x13\x97\x2a\x2f\x53\xdf\xf4\x94\xe0\x12\xfe\x4c\x33\x09\xf9\xa3\x38\x4d\xea\xe6\xd3\xa2\x4f\x2c\x3a\xa7\x9a\xd2\x50\xbe\xdf\x25\x8b\x4f\x4b\xa2\x39\x90\x67\x36\xd2\x3c\x8c\x7c\x99\x86\x1c\x33\x92\x62\x7a\x32\x94\x95\x9b\xdb\xd3\x1c\x7c\xac\xa1\xea\x4d\x5c\xf7\x41\x91\x9c\x59\xb6\x37\xe7\x21\xdb\x67\xd6\x31\x30\xd7\x4d\x74\x69\x4f\xa2\xc9\xf2\x77\xd7\xa5\x3d\xd3\x9a\x43\xfc\xf9\xca\x92\x39\xe9\xf2\xd4\x32\x15\xe6\x6e\x2e\xf1\x67\x5c\x72\xbb\x5f\xda\x33\x05\x4d\xa7\xa8\x32\x47\x33\x06\xa6\xd8\x4f\x98\xf6\x08\xf1\xd9\xcd\x2a\x09\x06\x6e\x5a\x10\x66\xa6\x11\x67\x82\xcb\xdd\x87\x98\xf6\x7c\x5b\x9b\x63\x6a\xf2\xcd\xe4\x46\xc0\xf7\x62\x73\x4c\x43\x9e\xd9\x48\xf3\x68\x6d\x8e\xb2\xa4\x98\x9e\x0c\x05\xfb\x55\xb0\x58\xd9\xae\xcf\xd0\xed\xe9\xba\x3c\x9f\xb8\x4f\x99\x6e\x4e\xd9\xc5\xf2\xdd\xcb\xc1\x3b\xe7\x73\xd1\x2e\x4d\xd1\x9d\x72\x5d\x99\x2e\x5a\xbc\xd8\x5d\xbe\xd8\x5d\xfe\x58\x52\x0a\x0a\xaf\xa3\x0e\xec\x08\x9d\x39\x23\xc4\x33\x3f\x5e\xd3\x33\xfd\xbf\xe6\x89\x87\xab\x59\x27\x74\xad\x3d\xfa\xf3\xeb\xd7\xe6\x9f\x95\xf3\x15\xef\x26\x8d\xb7\x25\xae\x37\xa7\xde\x96\x48\xb0\x2b\xbb\x95\x2b\xcf\x41\x2c\x29\x1e\xbe\xde\x91\x5e\xeb\x5a\xb2\x78\x06\xca\x05\xf6\x1f\xff\xfd\x2f\xdf\x9c\x07\x8f\x49\x58\x4f\xb3\x6d\x10\xbe\xe2\x42\xf8\x37\xbb\x51\x36\x9d\x37\x0b\x74\x6d\xea\x5d\xb3\x45\x93\xbf\x1e\xe6\xb6\xc8\xa9\x95\x4c\x8c\xd7\x6a\xaa\xb2\xe1\xcf\x77\x2b\xac\x74\xe5\x94\x81\xf2\xcc\x9b\x17\x68\xd6\x76\x62\x25\xa4\xad\xe8\x2c\x92\xe0\xf4\x76\x1e\x57\x9e\xa9\x6e\x81\xb4\xa6\xb0\x40\x5a\xe5\x2c\x90\xf6\xf4\x16\x48\xeb\x11\x58\x20\x85\x22\xc8\x73\xb1\x40\x52\x75\xfa\x74\x16\x48\xa1\x58\x2d\xb7\x40\x0a\x07\x76\xc3\x26\xb3\x40\x52\x75\x52\x59\x9e\x52\x90\x9e\xca\x02\x99\x9e\xc7\x24\xac\x1f\xbb\x05\x52\x6a\x35\x63\xae\x16\x48\xee\x09\x7e\xdf\xd2\x02\x79\xc8\x8c\x64\xd5\x93\x7e\x6b\x47\x11\x0a\x52\xf7\x42\xa9\x1e\xb4\x24\x71\x13\x7e\x5d\x2b\xcd\xaf\xa5\xf8\xf3\xd1\x79\xd3\xeb\x05\x77\xa6\x15\x13\x5c\xa5\x84\x56\xb6\xc0\x9a\x65\x48\xa6\x1a\x1a\x91\x3e\xdf\xa7\x9a\x4a\x5d\xa8\x2c\x35\xa1\xf3\x58\xf1\x41\xc3\x61\xf3\x89\x83\x65\xdc\x71\xa5\xc7\x7b\x14\xbf\x3c\x2d\x3e\xa7\x48\x8b\x7c\x8f\x3c\x1b\x6e\x2c\xad\x32\x4c\xc7\x5c\x3f\xa0\x54\x94\x22\x3b\x42\x51\x9e\x0a\xe5\xa8\x31\x3d\x55\x0c\xd4\x81\x72\x1c\x3b\xbf\x43\xd6\x04\x81\x22\x9c\xf1\xd2\x9a\xfa\x8c\x17\xed\xba\xa6\x07\xdc\x60\xba\xbe\xf1\x20\x1b\x4c\xf1\x10\x1e\x07\x78\x10\x17\x9b\x4c\x1f\xdb\x26\x53\x5d\xba\x9a\xbc\xc6\xc5\x36\xd3\x6f\xee\xfe\x9b\xa7\x01\x4c\xb7\xcd\x74\x7d\x73\xb1\xcd\x74\xb1\xcd\xf4\x51\x45\xd8\xa6\xd0\x26\x8b\xad\xa6\xb0\xd8\x6a\xba\xd8\x6a\xfa\x48\xe2\x5b\x8b\xad\xa6\xe4\x79\x2c\x5b\x4d\xd7\x04\x13\x78\x5d\x37\x81\x53\xd1\x8f\xb7\x9a\xae\xa7\xad\xbc\xa9\x8f\x62\x32\x17\x49\x4f\xff\xdb\x6e\x35\x5d\x2f\x9c\xbd\x3c\xd7\xad\xa6\x53\x6e\xf8\x28\xce\x41\x86\x2b\x50\xb3\x9e\x84\x8b\x36\xca\x24\x6f\x4e\xc1\x49\xf0\x70\x59\xa8\xd3\x71\x15\xcc\x75\xcf\x81\xcc\x5d\x1b\xb9\xb9\x04\xe2\x33\xbf\x1c\xde\xc5\x9e\xe7\xb4\xc6\x17\x7b\x9e\x8b\x3d\x8b\x3d\xcf\xb9\xcf\xdf\x7f\xcf\xb3\x29\x0e\x58\x12\x39\x58\xec\x7b\x4e\x9e\xc5\xbe\xe7\xdc\x67\xb1\xef\x59\x7a\x16\xfb\x9e\x73\x51\x5d\xec\x7b\x2e\x07\x6a\xb1\xef\xd9\xf0\x2c\xf6\x3d\xe7\x3c\x8b\x7d\xcf\xe3\xc5\xbe\xe7\x59\xfa\xfb\xf7\xb7\x39\x16\xfb\x9e\x17\xfb\x9e\x4b\xc4\x31\x16\xfb\x9e\x4b\xe1\xbd\xd8\xf7\x5c\x12\xf5\xc5\xbe\xe7\xb2\x28\x7d\x67\x0b\xf0\xdf\x7c\xdf\x73\xe8\x8c\xc6\x6e\xfe\xa2\xbe\x69\x85\x3e\xfd\xfc\x69\x35\x27\xb3\x78\xb2\x4d\x76\xb2\xc1\x8c\x7d\x1d\xbb\x93\xc0\x76\xe7\x9b\xba\x80\xff\x83\xcb\xb6\x70\xe1\xd6\xfa\x22\x93\x61\x91\xc9\xb0\xc8\x64\x50\x9e\x45\x26\xc3\xf7\x97\xc9\x20\x1e\x9a\xbd\xd1\x9e\x22\x93\x61\x23\xeb\x22\x53\xf1\x51\xd6\x9f\xff\xd1\x87\x66\x6f\xe4\xee\x1a\xe3\xcf\xe3\xcf\x64\x68\xad\x8a\x2c\x54\x6e\x41\x56\x60\xa3\x32\x01\x48\x85\x95\x5a\x45\xd7\x71\xff\x39\xb9\x0c\xa5\x62\x87\x8b\x5c\x86\x82\x10\x1e\x26\x21\x61\xfb\x6f\x97\x8f\x30\xd3\xe2\xdc\x3f\x26\x1d\xe1\x6f\xb5\x5a\x25\xac\x25\x95\xce\xf5\x11\xd1\x49\xd7\x33\x9b\xa2\x9a\xd9\x98\x61\xd1\xab\x1d\xeb\x9c\x22\x36\x88\xe9\x51\xf4\xcf\xe6\xe3\x5f\x1d\x48\x7a\xfd\xe8\xd7\xbd\x36\xb4\xfb\xcb\x8b\x3e\x5f\x73\xdd\x6b\x8e\x19\x32\xab\xb3\x4d\x62\x19\xaf\xc2\xde\x6b\x31\xdc\x0c\x57\x03\x4f\x8d\x60\x82\x64\x29\x67\xb8\x18\xa2\x6d\x9a\x66\x24\xc4\x69\xa6\x4d\x33\x4a\x60\x92\xdd\xa1\xad\xa2\xfe\x8d\xe9\x99\x82\xbd\xf8\x33\xcb\x6c\xe7\x8f\x12\x61\x6c\x4d\xb3\x8c\x29\x3e\x73\x5a\x3d\x87\xe9\x29\x33\x65\xb5\x59\x89\x39\x4f\x42\xce\x89\x88\x5f\x47\xd8\xcd\x71\x45\x7a\x6a\xa2\xcd\x81\x60\x33\xa4\x37\xcc\x98\xf6\xc4\x1f\xda\x89\x92\xf9\x4f\xfc\xf9\xf6\xd9\x19\x4a\xb2\xe9\xac\x5a\x6a\x6e\xda\x13\x62\x0d\x6a\xbc\x69\xbf\x38\x08\x49\xd1\xd1\x05\x84\x8c\x6b\xef\x8b\x3e\x0f\xa4\xee\xe2\x63\x5e\xe6\x0e\x19\x28\x3d\xf9\xc1\x30\xa5\xdd\x25\x33\xbc\x87\x21\x2e\xcc\xa6\x60\xbf\xb1\x6e\x4e\xec\xbe\x6f\xa5\x4b\xe1\x61\x8c\x46\xd0\x87\x7c\x7a\x71\x21\xe3\xf9\x20\xec\xfe\xf0\x79\x96\xea\x13\xb6\xd6\x67\xce\xbb\x54\x9f\x59\xf3\x30\xd5\x67\x06\x9e\xe2\xcf\x3c\x66\x09\x7f\x12\x92\xcd\x3c\x5b\xc4\xe7\x61\xfc\x59\xf5\x99\x57\x5e\xa7\xfa\xcc\x61\x8c\xe6\x00\x82\x4e\xcd\xd2\x0b\x60\x45\x9f\x79\xe5\x85\xaa\x4f\xb2\xc2\xbe\xb1\x95\xe4\x89\xd2\xd5\xfe\xc2\xab\x33\xb9\x8d\x4c\x9d\x3d\xaa\x3e\x8f\x6c\x3e\xce\x29\xdb\x54\x7d\x66\xcf\x3e\x55\x9f\x19\xe9\x36\x63\xf5\x79\x91\xfc\x01\xc8\x3d\x5f\x52\x7f\xbf\x76\xd8\x9c\x49\x3b\x3f\xb2\x7e\xd7\x11\x92\x59\xc8\x38\x1f\x12\x7e\x77\xf1\x91\x45\xc6\xbe\xfc\xcc\x81\x3c\x8b\x8c\x7d\xf2\x2c\x32\xf6\x17\x19\xfb\x8b\x8c\xfd\x45\xc6\x7e\x51\x3c\x16\x19\xfb\x8f\x22\x63\x1f\xb9\xa8\x3f\xe7\x03\xf8\x88\x73\xbb\xc8\x5d\x5f\xe4\xae\x2f\x72\xd7\x95\x67\x91\xbb\xfe\x9d\xe7\xae\xa7\xdf\x77\xa5\xa1\x9f\x24\x1d\x17\x3d\x6f\x63\x91\xbb\x9e\xf0\xe2\x66\xf3\x9b\xe4\xae\x2f\x12\x86\xe3\x2e\x2d\x12\x86\xa5\x67\x91\x30\x5c\xf4\x79\x7c\x09\xc3\x53\x65\x6d\x28\xc9\x28\xd4\x50\x9e\x21\xa1\x60\xce\x39\x29\x71\x76\xc6\x9c\xb3\x5c\x5a\x3c\x2b\x23\xf5\x14\xf4\x62\x70\xe6\x4b\x3c\xf8\x2e\x62\xad\xdf\x36\x87\xec\x1f\x90\x84\xf5\xf5\xb2\x28\x92\xc4\x99\xd9\xb3\x27\xe6\x95\x35\xf1\xf7\xc9\x25\x82\x07\xcf\x8a\x98\x77\x36\xc4\xb7\x59\x7a\x7c\xa0\xc4\xa9\x79\x67\x3b\x24\xb1\x98\xcd\x16\xcd\x72\x68\x95\x3a\xe6\xd8\x08\x73\xe6\xa4\x86\xc5\x92\xaf\xf9\x59\x2c\xf9\x2e\x96\x7c\x8b\x3c\x8b\x25\xdf\xd4\x67\xb1\xe4\x4b\x9e\xc5\x92\xef\x62\xc9\x77\xb1\xe4\xbb\x58\xf2\x2d\x8a\xc7\x62\xc9\xf7\x31\x2c\xf9\xd2\xad\x31\x27\x13\x17\x9d\x92\xb0\xcc\x6f\xb6\x3b\xc9\xbc\xce\x73\x2e\x57\xf2\x16\x73\xdd\x37\xf4\xeb\x0b\xe3\xe5\xce\xfe\xe6\xbc\x16\x7a\x33\x77\xa9\xcf\xb2\xd0\xbb\x59\x66\xa1\x37\xff\x1e\xda\xd5\x02\xfb\xa2\x8b\xaf\xc8\xd2\x4b\x91\xe9\x70\x9a\x02\xa2\xfa\x3d\xb5\x30\xf5\x64\x31\xf9\x6d\x85\xef\x8f\x2c\x37\x59\xd4\xa6\xd2\x9b\x29\xbf\xd2\xde\x34\x5d\x04\xdc\x9c\xfa\x22\x60\xcd\xa5\x55\x31\x2a\x79\xb4\x21\x5b\xb1\x9f\xf9\x28\x43\x39\x3c\x5b\x2e\x07\xa4\xa4\x60\x30\xc4\x14\xa7\xc9\x7a\x30\xf5\x1c\x66\xc8\x7d\x30\x47\x39\xcb\x65\x3b\x4c\x9f\xcb\x22\xe1\xb5\x96\x9a\xd7\x22\x3e\x45\x62\x8a\x53\x5a\x02\x31\x06\xb9\x16\xc8\xf4\x21\xbc\xbc\xfc\x98\x02\xdd\x48\x79\x5d\x3e\x97\x64\x5c\xf4\xf2\x5d\xf1\x49\xf2\x46\x36\xd7\x32\x6e\x8c\x8d\x31\xca\x8f\x48\x13\x88\x69\x57\xf4\x16\xe8\x38\xcc\x3d\xbf\xe4\x81\x53\x3a\xd8\x55\xbf\x5f\x25\xb1\x63\x5e\xcb\x05\x49\x56\x47\xe1\x55\x81\xb2\xd1\xff\xbf\x6d\x4a\x47\xf1\x20\xfc\x63\x48\xe9\x98\x36\x46\x2e\xc4\xc2\xd7\xab\x44\x65\x6e\x14\xed\x76\xf1\x90\xf7\x22\x58\x90\xf5\x2c\x82\x05\x85\xf1\x5a\x04\x0b\x16\xc1\x02\xc8\x0f\x16\x7c\x4f\xae\x41\x4a\x78\x63\xe1\x28\x2c\x1c\x05\x0d\xa7\xaf\xeb\x28\x6c\x2c\x1c\x85\x85\xa3\x90\xfe\x2c\x1c\x85\x7f\xaa\xa3\xb0\xb9\x70\x14\xca\xe1\xbd\x70\x14\x16\x8e\x42\xd6\xab\x85\xa3\x50\xa0\xa9\xf9\x3a\x0a\x9f\xae\x9d\x08\x9d\x8e\xed\x7e\xea\x52\xa2\xd0\x80\xa2\x31\x24\x75\xc7\x35\x4a\x7f\x73\xbb\x1e\xa1\x30\x12\x14\xb3\xa2\x94\x6b\x59\x0b\x36\x86\xf2\x73\x5a\x3d\xcc\x1c\x9d\x59\x56\x0f\xb7\xb4\x3d\x4f\xe6\xb1\x56\xe0\xaf\xac\xa8\x1e\x53\xfe\x32\xd2\x83\x6d\x75\xdd\xdc\x2a\xd6\x87\xe2\x0e\xa8\x1d\x45\x28\xf0\x4e\xef\xbc\xc8\xbe\x9d\x17\x6b\x6d\xb5\xff\x69\xac\x55\x70\x61\xfa\x31\xb3\xd6\x96\x96\x53\x3c\x23\x6b\x5d\x64\x05\x34\x0a\xb2\x54\x5e\x60\x43\xda\x7a\x24\x07\x2a\x44\x89\x29\x14\xe2\x1b\x7b\xf2\xd3\x03\xf8\x56\x1d\xcd\xa9\x2c\xd4\xce\xa3\x5e\x0d\x7f\xd4\x7c\xa8\xed\xd6\x9b\x91\x0f\x79\x66\xc7\x43\x32\x63\xc1\x7d\xa2\xba\x83\x9b\xb8\x29\x5b\xea\x86\xe4\x69\xa5\xdc\xc3\x8d\x8c\x76\xa9\x43\xe6\x39\x0b\x45\x38\x48\x39\x4b\x7b\xc6\xc3\x1a\xec\x60\x98\x72\xb8\x42\xf1\x78\x64\x11\x7f\x53\x18\xb4\xad\x2a\x65\x21\x93\x6f\x69\xf6\x23\xff\x9e\x86\xec\xa3\x96\x28\x5a\xc0\x63\x46\x89\x62\x8f\xfd\x30\x0a\xfc\xf1\xf5\x3c\x8c\xf1\x7c\xb1\xb1\xaa\x1f\x8b\x90\x88\xa2\xb5\xad\xc7\x6e\x1c\xad\x69\xf7\xf6\x7f\x87\xc6\x51\xc1\x3e\x14\x66\xa1\x81\x3f\xb9\x74\xd1\x5e\xcc\x48\xe1\x8c\x9c\x54\x48\x37\x99\xce\xdf\x68\x0b\xe7\x6f\x6c\x1b\xd2\x43\x63\x51\xb7\xad\x0a\xb2\xb1\x7c\x9e\x46\xfb\x31\xa8\xa8\x6d\x4d\x10\x67\xaa\xa8\x1c\x7d\x90\xa7\x0b\x04\xe2\xac\xa6\x19\x7f\xba\x12\x78\xcc\x7c\xbe\x5d\xd0\x47\x2e\xcc\xe7\x7f\x4d\xfc\x08\x0d\x4e\xa9\x35\x5b\x70\x81\x73\x9e\x26\x97\x49\x76\xb6\xe6\x2e\x3b\x1f\x6c\x3c\x8a\xca\xce\x69\xac\x25\x14\xf6\xed\x31\x1a\xec\x5f\xdb\xb3\xd8\x4b\xf1\xfa\x6d\xfa\x5a\x1d\x59\xc8\x34\x1e\x12\x31\x93\x68\x8a\xc1\xaf\xa7\x8a\x28\x91\xa8\x29\xa2\xca\x40\x4c\xfe\x64\x85\x39\x8b\xad\xde\x4d\xb7\x7c\x93\x27\xd2\x32\x50\x36\xbc\x62\x4b\x84\x05\xaf\xc0\x89\x63\x38\xeb\xcd\xd2\x31\x1c\x8d\x3e\x45\xe3\x39\x6a\xe7\x1f\x6a\x41\xbd\xf0\x8a\xeb\xbc\x16\xd4\xd7\x33\xf7\x69\x17\x5f\x0b\x30\xbc\xe2\x71\x8c\xc2\x8b\xbf\xe1\x1a\x8b\x67\xa4\x2e\xff\xcd\x65\x36\x42\xb1\x19\x09\xc5\x66\x65\x4a\xe7\xe1\x51\x8e\x76\xfa\x4c\xcd\xe8\x46\x56\xfa\x44\xe1\x59\x0b\x73\x9c\xb9\x30\xcb\xec\x85\x7f\xc2\x41\x7e\xd9\xb3\x3a\xa7\x6b\x33\x4d\xfa\x72\x49\x35\x44\x35\x6b\x11\xc5\xd5\xd4\x88\x62\x46\xc3\x99\xaa\x10\x37\x13\x9a\xd2\x30\xd2\x7a\x30\xe7\x54\x2e\x83\x8d\x27\xe1\xb7\x96\x6a\xef\x89\xcf\x43\x2a\x9e\xaf\x9e\xc9\xa5\xdb\x8d\x05\xba\x91\x9d\xc9\x55\x42\x14\x91\xfe\x66\x5c\x93\xf7\x50\x29\x63\xd9\x0b\xe0\x89\xb3\xb6\x46\x13\x42\x32\xb3\xdd\xb2\x93\x40\x16\xeb\xf5\x79\xed\xfe\x3d\xc3\x9c\x85\xfd\xde\x89\x57\xc6\xf3\x2d\xb1\xe2\x95\xe7\x0c\xbb\xc8\x1b\x46\xd7\xf0\xa3\x24\xe4\x8d\x8e\xe0\x43\xaf\xb6\x3e\xd8\x36\xe0\xd5\x82\x41\x8a\x62\x4e\xec\xb8\x68\xda\x69\xe2\xe9\x6e\xaf\x1b\x56\x05\xa9\x66\x4b\xf7\x91\xd3\x52\x4a\x0b\x4e\x94\x30\xf3\x74\xb0\x7b\x13\x2e\x8b\x5d\xcb\x05\x9a\x29\xbd\x6e\x55\x30\x99\xd5\xcc\xc8\x82\x12\x32\x9d\x3f\x9c\x65\x83\x14\xe5\x93\xdc\x33\x12\xcb\xdb\x18\x8a\x9b\x63\xbc\xdb\x3d\x5d\xfc\x3f\xea\x95\xf0\xc2\x02\x5d\x8a\x96\x2d\xa4\xf9\xdf\x49\x9a\x6f\x2d\xa4\x79\x11\x9c\xbf\x4f\x69\xfe\x3d\xca\x1a\xed\xaa\x88\x87\x5a\x1a\x94\x37\x87\x99\xd3\x27\x4a\x64\x73\xa8\x1d\x58\x24\x44\x89\x30\xa6\x15\x90\xdb\xf3\x5e\x7b\xfe\x68\xbb\xce\xe0\xcc\x4e\xf5\x4a\x1e\x2f\x5f\x45\xf6\x82\xaf\xe6\xc6\x57\xad\xe6\xbc\x17\x7b\x85\x81\xce\x5f\xe9\x9d\x67\x62\x43\x66\xd2\xdd\x56\xc6\x0a\x70\xab\xf9\xe8\x6f\x37\x6a\x35\xe7\x7a\xbd\x51\x5e\xc8\x4c\xa4\xcd\x5a\xf1\xa4\x86\x92\xe7\x2b\xa5\xd8\x64\xe9\x26\xb1\x48\xc5\x7e\xab\xb9\x3e\xd5\x12\x47\x29\x43\x19\xe6\xe4\x8f\x65\x1a\xce\x30\x07\x7f\xac\xd5\x34\xee\x6c\xcb\x8e\xc7\x95\x5c\xe0\x4f\x5d\xbd\x67\x18\x6c\x4e\xbd\xe4\x44\x62\xc5\x65\x97\x9a\xf2\x62\xf5\x65\x57\x30\x0a\xc5\xe7\xe7\xb1\x98\xdf\x6a\x6a\x1b\x38\x32\x70\xce\x58\xf6\x2d\xb1\x08\xc4\x96\x7d\x53\x2f\x41\x99\xcb\x30\xc2\xb4\x43\x09\x7f\xb7\xa5\x97\x8c\x21\xce\xe8\x47\x89\xf5\xbf\xe2\xf7\xc3\xe5\x78\x83\x90\xea\x11\xa6\x34\x5f\x62\x1d\x21\x6d\xe1\x24\x3f\x3c\x35\x97\x75\x84\x99\x9c\x53\x28\xac\x4c\xa1\x74\xc2\x78\xab\xb9\x5d\x0d\xb3\x76\xda\xc0\xf7\x6d\x52\xce\x7b\x13\x51\xec\x49\x7e\x0d\x83\x32\x63\x4b\x91\xa1\x70\x7a\xe2\x5b\x66\xf3\x6b\x05\x36\x0f\x15\x5b\x72\x95\x41\x29\x3b\xf9\xa6\x64\x9e\xfc\x46\xd3\xa2\x5f\xe5\x42\x3a\xea\xa5\x67\xe9\x01\x31\xd5\xc2\xcd\x15\x7f\x25\xa3\xa7\x30\x8d\xe6\x9a\x87\x61\x98\xab\x99\x66\x35\x0c\xf5\xc8\xaa\x01\x3d\x93\xdc\x2b\x64\x5c\x50\xbb\x90\x4e\x3d\x63\xac\xb1\x6d\x1a\xe7\xe9\xc4\xb9\x49\x3f\x65\x1b\xd6\x53\xc7\x1a\xd5\xa6\xd2\x9b\x29\x1d\x9b\x2e\xbc\xf5\x10\x32\xb7\x1f\x42\xb6\x5c\x8a\x8b\xe4\x27\xe6\x66\xc9\xa9\x18\x4c\x11\x79\x25\xd1\xa1\x70\xaa\x48\x51\xf9\x65\x20\x78\x4a\x0f\x24\x79\x36\x25\x52\x59\xd1\xfd\x14\x2c\x4a\xd8\x45\x69\x97\x3d\x66\x2f\x08\xa4\xb4\x3b\x6d\x32\x55\x61\xb9\x18\x63\xb7\xb0\xec\x53\xe5\x69\x4e\x37\xe6\x96\xeb\x94\x27\x6f\xe3\x72\x46\xb9\x9b\x83\x4e\xc9\xc4\xa5\xac\x13\xd1\xf2\x03\x1e\x29\x78\xcc\x36\xb1\xd2\x50\xca\x47\xa7\xd0\xca\x75\xb9\x98\xdf\x22\x26\x3d\xad\x03\xd1\x9a\x77\x4c\x3a\x5e\x32\xf8\x36\x0e\xc4\xf4\x1b\xc3\xdb\x73\xdf\x18\xfe\x60\x4b\xf8\xa5\x36\x86\xb7\x73\xb9\x2b\xdb\xb6\xc9\xb1\x6b\xf2\x6c\x9a\xc2\xf6\x4c\x71\xb3\xa1\x8c\x1d\x73\x9f\x89\xad\x66\xbf\x94\x40\x62\x0e\x59\x09\x05\x6c\x95\x07\x4a\x5c\x98\xd2\x36\xf9\x67\x05\x8f\xd3\xed\x8f\x07\xdb\x3d\x90\x63\x6f\xa4\xdb\x1a\x8f\x4f\x99\x67\xa1\xf0\x40\xee\xe6\x57\x77\x0b\xa7\xd6\x36\x5a\x2f\x75\xad\x63\xa0\xd5\x5c\xa6\x4f\x21\x73\x71\x1e\xd3\x47\xd7\x52\x19\x28\xa7\x4d\x9f\x5c\xed\xa5\xf5\x2b\xfb\x0c\xdb\x02\x5e\x3a\x14\xf4\xd4\xa1\xac\xb7\x0e\xd3\x6f\xee\x28\xe1\xb5\x43\xba\xd7\x51\xc4\x7b\x9f\x12\xc9\x3c\x2f\x3e\x03\xab\x92\xbe\x50\x9a\xa7\x05\x85\xbc\xfa\x0c\x3c\xca\x79\xf7\x30\x9b\x87\x0f\xb3\x78\xf9\xf0\x15\x77\xfd\x15\xf6\xfa\x61\xce\xbb\xfe\xb2\xbd\xff\x9c\xae\x65\x7c\x2a\x1f\x09\x80\x12\xd1\x00\xc8\x8d\x08\xe4\xa0\x37\xc5\x69\xa9\x59\xd1\x01\x28\x2c\xf2\x33\xf0\xfa\x7e\x82\x18\x8b\x60\xc2\x37\x0d\x26\xcc\xb6\x1a\xf9\xd1\x0e\x80\x1d\x8e\xbe\x1f\xdd\xe2\xf9\x56\x09\x7c\x3f\xaa\xf0\xf9\x16\x07\x1b\x9c\xf0\x0d\x0a\x23\x34\xf8\x95\x16\x3e\x43\xb7\x91\x1c\x6f\x60\x0d\x24\xc0\x12\x01\xdd\x4a\x09\x60\x38\xe1\x91\xf7\x36\xf5\x76\x08\x0d\x60\x57\x87\xbd\x02\xad\x73\x42\xab\x0a\xbd\xb3\xa1\x92\xd6\x92\x17\xa2\x20\x7a\xed\xf7\xed\xd4\x76\x7c\x82\x42\x08\xcf\x9e\xf1\x3f\xeb\x7d\x7b\x1c\x4d\x02\xc4\xab\xc1\xae\x3a\x1e\x2e\xfb\xd2\x89\xff\xaa\xd6\x04\xea\x43\x07\x3e\xdf\xeb\xf4\x76\x86\x9e\x1f\xa0\x33\x7b\x08\x3b\xa6\x56\xe3\xcf\x2f\x92\x2a\xe1\xb5\x3f\x71\x07\x6f\xb1\x35\x72\x7a\x83\x5c\x14\xf9\x9e\xb9\xb2\xa1\x20\x03\x83\xd9\x25\x40\xe1\xc4\x8d\x18\x2f\x86\x91\x1d\x44\x27\x13\x17\x1d\x32\x2a\xc5\xa6\x0d\x67\x48\x56\x5c\x9e\x8a\xb8\x35\x49\xca\xec\xf0\x89\x48\xc7\xc4\x44\xdb\x04\x98\x4c\x0d\x75\x2a\x96\x6a\xf8\x87\xf4\x66\xb5\x79\x82\xbc\xc1\xc1\xed\x18\xf5\x23\x36\x48\x29\xa2\x21\xba\x0e\xfc\x4f\xa4\xe6\xe5\xc4\x71\x07\xa7\x51\x30\xe9\x63\x0e\x18\x1c\x04\x81\x4f\xcf\x8a\x18\xd9\xb7\x78\x86\x52\x68\x68\x40\x05\x0e\x7b\xa9\x63\x05\xbb\xba\xb1\x91\x14\xae\x41\x87\x6c\x21\xce\x01\x22\xf7\x6b\x97\x12\xc1\x1f\x8d\x27\x51\xcc\x9a\x0a\x60\x0d\xe0\x32\xb4\x6a\x32\x98\xce\x14\x60\x62\xb2\xdd\xf7\xbc\xfb\x9e\x87\x6e\xc7\x7e\x10\x11\xfe\x1c\xa3\x21\xe1\x39\xd1\x6c\x7e\xd1\xf3\x96\xac\x25\x67\x44\x0a\x7d\x86\x8b\x8b\x70\x1c\x20\x7b\xb0\x17\x04\xf6\x5d\x08\xf7\x70\x15\xf8\x23\xe8\x2d\x45\xa1\xeb\x5c\xf6\x96\x5e\xf4\xbc\xb8\xa8\x13\x52\xa9\x70\xe0\xa2\x11\xf2\x22\x0b\x9c\xf0\xb5\x13\x21\xf9\x0d\xbd\x9a\x25\x7e\xc1\xe0\x55\xea\x8d\xe8\x6e\x8c\xc2\x8a\x08\x2f\xc6\x2e\x29\x44\x30\x0c\x70\x29\x8c\xfe\xdb\xd7\xef\x4e\xf6\x5e\x5f\xfc\xb2\x77\xfa\xcb\xd9\xde\xcf\x17\x27\x07\x3f\x1f\xfc\x1b\x76\xa0\x51\xfd\xf3\x4b\xf7\xcf\x5e\xaf\xd7\x3b\xaf\x3d\x6d\xe0\xf9\xd8\x78\xfe\xbc\xe7\xc1\x73\xf8\xfd\x1a\x45\xd7\x28\x80\xc8\x87\xbe\xef\x7d\x44\x41\x04\xef\x9f\xbe\x07\xc7\x03\x2a\x87\x20\x98\xb8\x88\x4f\x4a\x52\x23\xf2\xe1\xfd\xe7\x8f\x76\x60\x01\x3d\xab\xf3\xfe\x3d\x79\xfd\xd3\xd8\x0e\xec\x11\x20\x17\xf6\x4e\xcf\x80\xf5\x46\xfc\x42\xe1\x9d\x46\x76\xff\x06\x30\xe7\x23\x2f\xe2\x6d\x84\xf8\x25\x2e\xdb\x88\xc7\x22\x16\x78\x9e\x1f\x8c\x6c\xd7\xf9\x2f\xfa\xc5\x0e\xaf\x23\x7b\xc8\x05\x6d\x15\xb9\x89\x91\x8c\xdc\xb0\x7e\xe5\x07\x07\x76\xff\xba\x1a\xd7\xac\x22\x57\x9a\x4b\x8d\x06\x1c\x5d\xc1\x27\x54\x09\x10\x20\xaf\xef\x4f\xbc\x08\x61\x6d\x0b\x36\xc7\x03\xb9\xf2\x0c\x7e\xa2\x8c\x1f\x81\xf8\xec\x19\x3c\x51\x06\x0d\xbf\xd7\xa6\x2d\x95\x18\xe6\xe9\xd9\x68\xc0\xcf\x3e\x0c\xfc\x4f\x1e\x44\xd7\x31\x79\xc1\xf6\x06\x10\x22\x3b\xe8\x5f\xc3\x95\x1f\xc0\x53\x3c\x0c\xb6\x77\x07\x2e\xe5\x19\x40\x31\x55\xd9\x73\x7c\xf9\x01\xf5\xa3\xfa\x0d\xba\x0b\xab\xc8\xad\x33\x38\x35\x03\x2d\x9c\x81\x86\x20\xe6\x97\x0b\xfb\x85\xfe\xd2\x1f\x63\xc9\x9a\xc0\xeb\x3a\x03\xd5\x6a\xe5\xb4\x84\xa1\x1f\x81\x0d\x23\x3b\xea\x5f\x5b\xf8\xf7\xb5\xfd\x11\x61\x16\x09\xc7\xae\x13\x41\x74\xed\x84\x5a\x45\xdc\x4b\xc7\xc3\x88\x83\x0d\x34\x05\x9d\xd1\x11\xf7\x17\xd3\x63\xe4\x0c\x06\x2e\xd2\x11\x23\xcd\x38\xde\x30\x9e\x43\x47\xde\x00\x61\x5d\xbf\xa2\xa6\x90\xe1\xd2\x2e\x2f\x95\xe1\x5d\x62\x32\x57\x89\x2a\x83\x1d\x68\xbe\x00\x07\x7e\xc0\xdd\xaf\x7f\xb4\xdd\x09\x62\x52\xeb\x05\x38\xcb\xcb\x46\x0b\x06\x57\x44\xee\x45\x8b\x6a\x30\x5a\xa9\xeb\xa4\x9e\x9d\xa5\xcc\xfd\x2a\xae\x4a\xf8\xc9\x34\x6b\x69\x72\x27\x2e\x42\xe1\xa6\x67\x73\xa6\x52\xc5\x49\xb1\x84\x45\xc2\xe0\x06\x52\x8a\x5d\x06\xc8\xbe\x99\x2a\x27\x25\x6e\x20\x95\x6a\x1e\xfa\x44\xee\xa2\x82\x9d\x04\x1b\x46\xf4\x00\x8d\x5d\xbb\x8f\xaa\x26\xa2\x58\xd0\x5b\xfa\x57\xeb\x73\x6f\x09\x96\x31\x7f\x92\x0a\xb0\x0c\xbd\xa5\x58\x18\xf5\x96\x4c\x8e\x1f\x6b\xf2\xc0\x65\xdb\x0c\x89\x10\xad\x72\x24\x4c\x35\xaa\x17\xb6\x38\xaa\xb5\x3a\x66\xe8\x3e\xaa\xdb\xe3\xb1\x7b\x57\xbd\xb0\x2d\x45\x0d\x54\xbb\xe6\x61\xb0\xa0\x75\x6e\xb1\xb6\x6b\x39\xeb\x0b\xa9\xa2\x2e\x41\x43\x14\x27\xb1\x0e\xc3\x7f\xdc\xab\x3a\xca\x0e\x43\x67\xe8\x65\x6a\x27\x83\x36\x09\x83\xbe\xa0\x51\xe2\x92\x69\x98\x29\x35\xe3\x62\xb8\x32\x13\xe4\xcf\xa5\x12\xb1\x4a\x33\x7e\x4d\x5a\x56\xb5\x00\xf9\x42\xc3\x25\x16\x1e\x95\x44\xf4\xe3\x1f\xb0\x13\x77\xb8\x9a\x8e\x6c\x07\xa2\x60\x82\x2c\x93\x09\x4a\x3f\xc1\xbd\x05\x55\x02\xef\xcb\x17\xf8\x7c\x1f\x0f\x17\x9d\xe6\x12\xeb\x88\x98\x08\xb6\x26\xfe\x5d\x4f\x6b\x5f\x9a\x0c\x99\x6a\x4d\xb6\x2d\x99\xe9\x89\xdc\x30\x1e\xe7\xca\x24\x44\x80\x7d\xc5\x7e\xc4\x35\x3f\xfd\xf5\x2e\x70\x0e\xbc\xbe\x3f\xc0\x13\x2b\x40\x7f\x4d\x9c\x00\x55\x2b\xf4\xd3\xca\x24\x70\x56\x10\xf9\x58\xa9\xb1\x4a\x3e\xd1\x1f\x7b\x94\x55\x84\x1a\xf4\xfd\x0a\x25\x69\x5c\x7a\x80\x70\xe5\x7d\x7f\x34\xf6\x3d\x2c\xad\x85\x0a\xf4\x13\x69\xa2\xcf\xbf\x93\x7a\x3d\x2f\x1e\x43\xda\x76\x70\xe8\x07\x64\xca\x1c\x62\x0a\x44\xd5\x78\x30\x7b\x51\xf8\xc9\x89\xfa\xd7\x8c\x8a\x76\x52\x86\x7d\xee\x45\x7d\x3b\x44\x50\x71\xf0\xbc\xaa\x74\xe8\xab\x5e\xc4\xc8\x93\xa8\xba\x1b\x74\x67\x01\x99\x2e\x16\x90\xb2\x71\x7d\xa1\x38\x15\x1d\xd8\xe4\xc7\x76\x2b\xec\x42\x37\x29\xd2\x8b\x28\xaa\x14\x12\x41\xd0\x12\xbf\x56\xba\x15\xe9\x37\x69\x44\x2e\x71\x5e\x49\x7e\x9e\xd7\x3f\xf8\x8e\x57\xad\x54\xb0\x95\x3c\x43\x33\xac\x34\x6d\xcd\x54\xfe\x7c\xc7\x58\x81\x91\x82\x54\x30\x61\xf5\x82\xbf\xbc\x27\xe3\x95\x10\xfa\x32\xb0\xfb\x37\x28\x2a\x44\xea\x42\x34\xd6\xfa\x5b\x96\x20\xf3\xeb\xe1\x00\x5d\xd9\x13\x37\x7a\x34\x5d\x9b\x47\xc7\x22\xea\xcd\x08\x53\x8e\x0a\xd4\xf4\x19\x87\x67\x75\xec\xce\x3e\xd0\x14\xb4\xfb\xfd\xc9\x68\xe2\xda\x91\x1f\x28\x94\x64\x2e\x7c\xa3\xd7\xeb\x56\x7b\xbd\xc1\xf3\x5a\xaf\x77\xfe\xaf\x46\x1d\xdd\xa2\x3e\x86\x50\x8b\x07\x0b\xff\xef\x06\xdd\xc1\x0e\xdc\xa0\xbb\xd8\x40\xc0\xf5\x70\x35\x52\xcb\x02\x46\x8e\xb8\x02\x31\xe0\x69\x23\x52\xbb\xbd\x48\xc0\xa8\x7b\x83\xee\xce\x61\x87\xe2\xfa\x42\x2c\x14\x9b\xef\xfc\xc5\xbd\x0a\x5c\x07\xb3\x23\x18\x9a\xf9\x6d\x7e\xbe\x4f\x83\xae\x16\xee\xd2\x6e\x74\x5b\xe7\x3a\xae\xb3\x4c\xda\x22\x83\x53\x25\x54\x3e\xaf\xa9\x03\x93\x33\x2c\x5f\x67\x48\x68\xdc\x65\x1e\x83\xd1\x25\xcd\x9d\x97\x60\x01\x13\x90\xf3\x7a\xdf\xf7\xfa\x76\xa4\xa1\xc3\x45\xc9\x6c\x92\x28\x7d\xbc\xe6\x41\x82\xb2\x73\x60\x0e\x04\xd0\x25\x96\x41\xf0\x51\xc4\x63\xf3\x8a\x96\x88\xbb\x93\x04\x3d\xc3\x3a\x35\x74\x60\x57\x35\x86\xaa\x4c\x8e\x77\x18\xf8\x77\x27\x47\xb1\x15\x53\x15\xf0\x62\xdd\x13\x65\xfc\x0b\x15\x41\xec\x6b\x9f\xfa\x41\x84\x02\x6a\x04\x0a\xe8\x11\x21\x5b\x77\x42\xf2\x2f\xfb\xaa\xe2\xc9\x22\xfd\x7e\x10\x55\x59\x9b\x09\x0f\x63\xe3\xd8\xbf\xa2\x45\x68\x2c\x98\xda\x61\x15\x15\x88\x80\x83\x18\x01\x60\x2d\x52\xe8\x09\xff\xd8\x16\x5c\x0a\xa3\xcf\x60\xb0\xbd\xdf\x76\x0d\x56\xf8\xdf\x97\x7c\x74\xee\x6b\xf5\x91\x3d\xae\x4a\x2c\xa8\x43\x20\xcd\x91\xc1\x8d\xab\x19\xa8\x48\x4a\x69\x54\x44\xb7\x51\x60\xf7\xa3\x6a\x18\x05\x82\x2a\xfa\x6b\x82\x82\xbb\xd3\xc8\x0e\xb0\xe4\x09\xa3\xa0\x4e\xf4\xcc\xf1\x55\xb5\xb2\xcb\x74\x1d\x26\x93\x58\x6a\x07\xfb\xfe\x2a\x79\x2a\x95\x18\x0f\xfe\x0a\x03\x0b\xb1\x03\x27\xd6\x5e\x86\x56\x4d\xc3\x8c\x7a\x1a\x61\x14\x48\xdc\xc7\xbc\x0c\xd1\x5e\xae\x7e\x16\xf4\x63\x07\x2a\x9e\xef\xa1\xca\x7d\xe2\x13\xf0\x4e\x5d\x91\x02\x11\x0a\xb0\xff\x90\xaa\x8f\x59\x85\x46\x03\xf6\x03\x64\x47\x08\x6c\x8f\xb5\x06\x9f\x9c\xe8\x1a\x3c\x1f\xc6\x81\x1f\xf9\x98\x47\x58\xc1\xeb\x28\x1a\x87\x9d\x46\x63\xe8\x44\xd7\x93\xcb\x7a\xdf\x1f\x35\x42\xc7\x1b\x04\x28\xf4\x83\xeb\x49\xd8\x20\x3d\x5d\xa1\x2b\x4a\x0d\x27\x0c\x27\x28\x6c\xac\x6d\x26\x6a\x1f\x13\x99\xb1\x4f\x9f\xb4\x59\xc5\xb6\x0c\xc7\x44\x60\xc8\x30\x0a\x48\x04\xbb\x42\x61\x69\xec\x18\xa0\x48\x1c\x78\x5c\x9c\x0e\x5f\x14\x38\xa3\x6a\x2d\xd1\x0c\x7f\x76\x77\x9f\x3e\x3b\x97\x14\x03\x51\x09\x09\x17\x64\xc0\x24\x1e\x78\x54\xad\x3c\xab\x98\xe2\x5b\x24\xc6\x18\x03\x21\x91\x5c\x3b\x20\x63\x46\xbe\x88\xda\x69\xb9\x31\xb4\xa0\x02\x95\x1a\x87\xb8\x13\x1b\x52\x8d\x06\x1c\x3a\x01\xba\xf2\x6f\xa1\x3a\x0e\x10\xac\x35\x6b\xcc\xeb\x09\xe1\xfd\xff\xb7\xfa\xea\x3d\x89\x7e\xee\xbc\x8f\x4b\x97\x1a\x83\xf1\xc4\x75\x1b\xab\x9b\x09\x8a\x54\x79\x12\x44\xeb\xe1\xb5\x73\xc5\x65\x02\xfd\xfa\xd1\x76\xe3\xaf\xf1\x0a\x54\x13\x76\xd9\x2b\x6a\x03\xee\x10\xaf\x42\x0c\x6f\xc5\xb8\x8d\x9c\x30\x74\xbc\x21\xc6\x97\xf9\xbc\x70\x89\xe0\x3d\x1e\xe4\xf7\x1d\xa9\x07\x9d\x46\xe3\xd3\x6a\xdd\x0f\x86\x8d\xb3\x93\x46\xbb\xd9\x6a\x37\x7e\x7f\xb5\x32\x09\xdc\x15\xfc\x77\x73\xbd\xbd\xd6\x78\xda\xf7\x5d\x17\x11\x27\xd2\x5d\x21\x14\x45\x11\x0a\x42\x8e\xac\x4b\xd5\x87\xac\x71\x60\x97\x1a\xc7\x1d\xd5\x71\xc4\x22\x37\x31\x0c\xe2\xf9\x51\x55\x8b\x61\xa9\x43\xf4\x86\x85\xd9\x81\x09\x17\x5e\x91\xf1\x89\x28\xff\x70\x21\x26\x5a\xeb\x01\x1a\x4c\xfa\x48\x60\x10\x6a\x76\x58\x20\x8a\xb2\x84\xca\x01\x92\x24\x19\xe6\xca\x97\xbe\xef\x22\xdb\x23\xc8\xc2\xb3\x67\xc0\x26\x03\xef\x26\x97\xcd\x24\x1e\x2c\x4b\x7e\x5c\x43\x10\x97\x8d\x06\x60\x61\xcd\xa7\x33\x46\xd5\x02\xcf\x8f\xa8\x82\x09\x13\xa9\x4a\x6c\x3c\xa6\x49\x05\x11\xcf\xa9\x95\x18\x3c\x9f\xcd\x75\x3e\xda\x2e\x2f\xc7\x89\x1b\xcf\x26\x6e\xe3\x47\xf7\x96\x69\xd2\xc7\x72\x90\x06\x5e\xc2\x3a\x13\xd0\xb0\xc3\x45\xf5\x8b\xe4\xdb\x98\x2f\x90\xb0\xc5\x91\xe4\x0b\x65\x74\xe7\x0a\xb3\x75\x42\x7a\xff\xf2\x83\x24\x4c\x69\x2c\x81\x58\x3d\x78\x82\xb2\xde\x50\xd5\xcc\x82\x34\xf4\x15\x55\xe3\xd2\x2b\x83\xcc\x25\xbd\x62\x5c\x61\x92\xd3\xbc\x29\x59\x34\xc7\xf6\x04\x66\x18\x32\xa2\x57\xb6\x1b\x26\x76\x85\xf0\x4d\xe8\x4a\x8d\x5b\xed\xf7\x66\x01\x9f\x11\xe3\x90\xf9\xd6\xbf\xfc\x00\xbb\x12\xf7\xfa\x97\x1f\x18\xf7\xc6\x4d\x67\xa9\xe1\x84\x77\xfd\xcb\x0f\x31\xef\xc6\xdc\xab\xcd\x46\x5d\x7f\x33\x35\x29\x70\x8b\x58\x91\xb0\x85\x56\x47\xf3\x62\x4d\x20\x32\x67\x43\xe2\x72\xf2\xec\xfb\xe4\x8b\xcb\x74\xb4\x49\xc0\x7f\xb4\xdd\xb6\x66\xf2\xe2\x97\x99\x66\x6e\xb6\x05\x4b\xf1\xa0\x39\x9a\x89\x18\xe2\xf6\x76\xdb\x62\x88\xf2\x85\x59\xc1\x78\x15\xfd\x1a\x69\x8e\x31\xb1\xfc\xac\xa2\x51\x26\x8d\x82\xb0\x0c\x95\x9d\x0a\x2c\x0b\xa6\xaf\x48\xdb\xfb\x5a\xfd\xca\x71\x31\x5e\x09\x2d\x6e\x55\x6d\x29\xa4\x28\x34\x79\xad\x18\x11\xe8\xd0\xa1\xbe\x97\xa6\x2a\x99\xbc\xef\x02\x57\x62\x6f\xd5\xec\x61\xe0\x59\x63\x93\xc0\xed\x80\xa0\x89\x77\x2b\xb5\x6e\xf3\x1c\xbe\x7c\x81\x0a\x8f\x5e\x10\x7d\xd7\x61\x46\x94\x68\xe4\x09\x41\x8c\x7b\x86\xcb\x92\xb5\xd4\xa0\x8b\x90\xfb\xfe\xf8\x2e\x70\x86\xd7\x11\xb4\x9b\xad\x75\x0b\xfe\xb0\xaf\x7d\x1f\x8e\xbc\x7e\x5d\xfe\x1c\x02\x66\x0f\x2f\x44\x03\x32\xe0\x01\x59\x2c\x7a\x83\x3e\xc1\xcb\xd3\x57\xf0\x9a\x7e\xa2\x55\x4e\x11\x22\x1f\xed\x7e\xdf\x1f\x8d\x6d\xef\x0e\x2b\xc2\xd7\x47\xfb\x07\x6f\x4e\x0f\xe0\xca\x71\x11\x59\xf9\x89\x50\x30\x0a\xeb\x6c\xe1\x51\x88\x9d\xa3\xdb\x08\x79\x83\xd0\x82\x8b\x8b\x00\x85\x91\x1a\xeb\xcf\x08\xaa\x3f\x07\x3b\x84\x13\x84\x25\x27\x0d\x6c\x07\xf8\x6f\x29\x96\xbe\xef\x7b\x11\xba\x8d\x84\xd0\x39\x5d\x0c\x3b\xf2\x22\x57\x2a\xe8\x78\x1f\xed\xc0\xb1\x3d\xf2\x45\xab\x55\x6f\x4c\x22\xc7\x15\x97\x87\x49\xdb\xe1\xb5\xed\xba\xfe\xa7\x83\xbf\x26\xb6\x1b\x5e\xb0\xc2\xec\xe5\x0a\xc2\x6f\x1b\x54\x38\x86\x71\xe0\x58\xac\x81\x0d\x37\x09\x42\x9d\x49\x4f\x3c\xca\xf2\x17\x56\xfd\x90\xcd\x1b\x9e\x4f\x03\x3b\xd0\x78\xfe\x1c\x7e\xea\xbb\x76\x18\xc2\xf3\x06\x08\x7c\x7b\x11\x4e\xc6\x28\x88\xe3\xe0\x31\xa1\xab\x2a\x10\x0b\x58\x51\x35\x79\x47\x2d\x68\x4c\x80\xa1\x75\x89\xc9\x4a\x0c\x90\x67\xcf\xd8\x2b\xb6\x7a\x13\x5d\x3b\xa1\x05\x76\x30\x9c\x8c\x90\x87\x79\xfd\xcb\x17\xb2\x52\x29\x87\xdd\xd5\xa6\xea\xb1\xfd\xcd\x72\x53\x62\x43\xe5\xdd\x78\x80\x2d\x76\x71\x22\x79\xe8\x36\x7a\x1b\xf8\xe3\x50\xdb\xc9\x44\xd6\x95\x70\x6b\x18\xde\x38\x64\x7e\x31\x59\xc2\xb0\xe9\x22\x0f\x56\x54\xd1\x35\x0a\x48\x7d\xb2\xb4\x81\x99\x90\xac\x39\x75\x7b\x4b\xcc\x68\x58\x3a\x17\xd7\x82\xe8\xfa\xd6\x6d\xf4\x1b\x87\x15\xb7\x1f\x83\xc4\x6f\x8e\x0d\x60\xe3\x92\xe9\xd0\x19\x59\xab\x4f\x24\x06\xa8\x26\x0d\xf2\x4e\x60\x4a\xca\x4b\x5a\x4a\x95\xa4\x5f\x2a\x42\x49\x46\xc6\x8b\x5c\xf2\x07\x88\x4c\x7e\x45\x2f\x2b\x64\xc6\x24\x66\x94\x36\x74\x85\x4c\x51\x66\x01\xf1\xe5\x58\x36\xc5\xea\xfb\xbe\x17\x4e\x46\x88\x24\x38\xb8\xae\x25\xb4\xe2\x78\x91\xbe\xa4\x69\x9a\xa6\xb4\xa4\x61\x4d\x9a\x6a\x99\x64\xaa\xe0\x72\x75\xe9\xa5\x45\x39\x84\x7c\xc0\xa0\x62\x2e\xb3\xe0\x0c\x0b\x80\x1d\xf2\x7d\x67\x07\x3e\xfa\xce\x80\xb8\x03\xb4\x2f\x87\x81\x3d\x24\x6b\xe8\x1d\xf3\xa2\xfe\xc5\x25\xae\x2a\x32\x9e\x33\xc0\x6f\x2e\xeb\xce\xc0\x82\x01\x0a\xfb\x81\x43\x96\xfb\xe9\x4b\xe1\x85\xc5\x8d\xb5\x04\x6d\x52\x40\x7c\x27\xb2\xf1\x65\xcc\x73\xfd\x6b\xc7\x1d\x04\x88\x81\xe4\xbf\x2c\xb8\xe8\xd3\x37\x6c\xbb\x9f\x05\xe2\x9a\x12\xfe\x28\x76\x8f\xf4\xba\x03\x17\x7d\x43\xa7\x38\x96\x3e\xe6\x86\xcf\xe0\x0c\x3a\xa0\xf4\xa6\x03\x19\x3d\xe9\xa8\x3d\xbb\x37\xb4\xe1\x11\xef\x6f\x47\x1e\xba\x6a\xd2\x72\xcc\xfc\x86\x64\x48\xc5\x31\x20\xa0\xcc\x0b\xf9\xbc\x95\x2e\xf9\x43\x4d\x21\x30\xac\xb1\x33\x77\x24\x21\x31\xf6\x49\x38\xab\x56\x8c\x6d\x30\xe6\xe7\x55\x18\x3a\xf9\x4d\xc5\xa3\x63\x84\xda\x68\xc0\x1b\x84\x06\x21\x76\x8d\x27\x21\x82\xf7\xf2\xac\xaa\xbd\x07\xc7\x0b\x23\x64\x0f\xc0\xbf\x82\xff\x39\xfd\x37\x93\x6e\x9f\x9c\x10\x31\x4d\xf9\xc9\x71\x5d\x23\xdc\x4f\x76\xe0\x81\x7d\xe9\x4f\x48\x8e\x09\x77\x67\x6f\xd0\xdd\x7b\xc0\x3c\x4c\x23\x23\x81\xd3\xbf\x5e\x21\xba\x91\x65\x55\x72\x83\xdc\xf1\x86\xf5\x54\x22\x18\x04\x00\xd3\x0e\xe4\x8b\xbe\xbc\x2f\xcc\x43\x2c\x16\xce\x2d\x60\xa3\x99\x4d\x3f\xd6\x1c\x29\x2b\x2d\xde\xe7\xca\xbb\x81\x13\x8e\x5d\xfb\x0e\x4f\x10\xd8\x81\x8a\xfa\x9d\x27\x88\xb2\x06\xd4\xcf\xd8\xc6\x62\x52\x2e\x19\xbe\x5a\xb2\xb2\xce\xd5\xba\xa1\xde\xd2\xb9\xb5\x14\xfa\x93\xa0\x8f\x4e\x7c\x3f\x5a\xea\x2c\x2d\xdd\xff\xff\x01\x00\x00\xff\xff\x28\xb0\xaf\x1d\x66\x24\x0e\x00") -// FileIdentifierStaticJsContainersGoodbyeA72514c2ChunkJs is "identifier/static/js/containers-goodbye.a72514c2.chunk.js" -var FileIdentifierStaticJsContainersGoodbyeA72514c2ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\xdb\x6f\xdc\xb6\x9a\x7f\xdf\xbf\x42\xe6\x62\x0d\x11\xa5\x69\x4f\x6c\xa7\x8d\x5c\x25\x40\xd3\x74\xbb\xdb\xa4\x6b\x24\x29\x76\x17\x46\x10\x70\xa8\x6f\x34\xac\x25\x52\x25\x29\x4f\x0c\x45\xff\xfb\x01\x2f\xd2\x68\x3c\xf2\x25\x0f\x3d\x38\x7e\xf0\x48\xe2\x77\xe3\x77\xfd\x91\xa9\x5d\x0b\x43\x37\xb0\x6c\x18\xbf\xfe\x6f\xa3\x64\x23\x0a\x90\x56\xac\x04\xe8\xfc\x81\xb5\xaf\x5f\xaf\x3e\x61\xda\xb4\x66\x9d\x5e\x5d\x2d\x3e\x91\x6e\x71\x9a\xad\x5a\xc9\xad\x50\x32\x05\x62\x09\xc3\x1d\x6a\x0d\x24\xc6\x6a\xc1\x2d\xba\x60\xb4\x48\x2d\x41\x2b\x44\xd2\x91\x0e\x77\x1a\x6c\xab\x65\xa2\x7a\x8c\x49\xa4\x80\x59\x0a\x33\xa1\x28\x66\x29\xf8\x84\x82\xcd\x52\x88\x09\x05\x9f\xa5\xa8\x26\x14\xcb\x59\x8a\x76\x42\xb1\x9e\xa5\xa8\x27\x14\xe5\x2c\x45\xd3\x63\x7c\x71\xc3\x74\x22\x73\x96\x2e\x9e\x61\xa2\x73\x96\x3e\x5b\x60\xa2\x72\x74\xad\xa4\x04\x6e\x29\x68\xad\x34\xad\x54\x29\x24\xbd\x61\x95\x28\x98\x05\x5a\x0b\x63\x84\x2c\xff\x30\xa0\x25\xab\x01\x11\xf3\x34\x86\x4b\x66\xcc\x46\xe9\x02\x11\x3e\xcf\xb0\x62\xa2\x82\x02\x11\x11\x97\x87\xd5\xb5\xb5\x0d\x95\x60\x37\x4a\x5f\xbf\x71\x5f\x10\xa9\xee\x4a\xf0\x34\xad\x84\x2f\x0d\x70\x0b\xc5\x7b\x30\x8d\x92\x06\x3e\x58\x66\x5b\x83\x48\xfb\x0d\xf4\x80\x48\x91\xff\xcf\xf2\x4f\xe0\x36\x95\x94\xe1\xb4\xbb\x52\x9f\xb2\x4e\x14\x99\x22\x05\xac\x58\x5b\xd9\x77\x60\x0c\x2b\x21\x43\x6f\xa4\x05\x9d\x30\x99\xb4\x83\x37\x7a\x72\x65\x02\xb5\xb9\x8f\x3a\x69\x06\x4f\xf4\xe4\x8a\x07\x62\xbe\x47\xfc\x56\x95\x4a\x26\xc1\x27\x34\xb9\xac\x80\x19\x48\x6e\x40\x8b\xd5\x6d\x72\xab\x5a\x9d\x70\x0d\xbe\x10\x58\x65\x12\x26\x8b\xc4\xea\xdb\x84\x95\x4c\x48\xea\xe4\x8a\x20\x57\xec\xc9\xfd\x3d\x38\x32\x09\x7e\x18\x04\xf3\x35\xf0\xeb\x28\x37\x38\x4a\x28\x39\x23\xb6\x0a\x62\xab\x3d\xb1\x7f\x8c\xbe\x4c\x7e\xfd\xf8\xf1\x32\xd1\xd1\xa3\x59\xd2\x19\x1f\x84\xfe\x9b\x75\xb5\x41\x57\xfb\x90\xae\x41\x4d\xe2\x94\x0c\xca\xa0\x47\x7d\x8f\x2f\x78\xc5\x8c\x49\xea\x04\xbe\x58\x90\x85\x49\x7c\xee\x74\x5c\x49\x63\x75\xcb\xad\xd2\xae\x45\xe0\xce\xb4\x0d\xe8\x14\x30\xf1\x8d\xe6\x86\x55\x2d\x98\xfc\x46\x89\x22\x39\x21\xe1\xe7\x20\xcf\x3d\x2f\xe5\xac\xb1\xad\x76\x59\xc2\xaf\x3f\x6a\xc6\xe1\xf0\xf0\x9e\x05\xdf\xd1\x48\xbd\x2b\xd4\xf6\xbd\x2b\xb8\x66\xc8\x2e\x4d\x39\x4e\xb7\xa5\x09\xb8\x73\xcb\x36\x87\x90\xa4\x84\xe5\x40\x85\xb4\xd5\x85\x58\xa5\x07\x16\xc7\xc2\x95\x6d\x55\xc5\xc2\xb5\x54\x14\xaf\xdc\xbf\xcc\xd2\x3a\x78\x87\xe8\x28\x9d\x32\x63\x44\x29\xd3\xae\x27\xce\x8b\xf2\xae\x17\x23\x6f\x64\xcb\xc2\x4e\x7b\x52\x5c\xc9\x4f\xf8\x22\xaa\x62\x74\xa5\x74\xcd\x06\x9e\x54\x13\x1b\xf7\x82\x7b\x8c\x7b\xb2\x78\xf1\xa4\x76\x3b\xdf\xe6\xea\x47\x5b\x65\xf3\x68\xbb\x5d\x3d\xda\x2a\xcb\x69\x9b\x7b\x1e\xda\x1c\x95\xa9\x74\x7d\x8e\xa5\x67\xcf\x30\x31\xee\xf7\x14\x13\xee\xfa\xe0\x29\x26\xc2\xbd\x9f\x61\x52\xb9\x7e\xf8\x1c\x5f\x0c\x32\x93\xd6\x45\x28\x88\xed\xec\x6d\x03\x59\x45\x97\xc4\x47\x2a\x83\xbe\x1f\xc9\x8a\xf4\x2e\xd5\xf5\x64\xb5\x9e\x86\xd9\xb4\x9c\x83\x31\x3e\xd0\x43\x07\x21\x32\x07\x5a\x08\xd3\x54\xec\xf6\x77\x56\xc3\xc5\xae\x2c\x4e\x42\xa6\x1f\x9c\xe4\x79\x6e\xc9\xc0\x95\x31\x32\xe1\xc9\x24\x59\x43\x55\xa9\x1d\xbb\x9a\x89\xdb\x26\x41\xc3\x1d\xa4\x45\x1a\x9d\xc4\x72\x9b\x62\xca\x55\x5d\x2b\x49\x64\xce\xe8\xaa\x52\x1b\xe7\x09\xfa\x57\x0b\xfa\x96\x8c\xa9\x6b\x5c\x63\x8c\xcf\xca\x3d\x4b\x52\xe1\x31\x6f\x34\x65\xb4\x51\xc6\xa6\x88\x1e\x6f\xa7\xf5\xf1\xe7\x63\x6f\x15\x22\x0d\xe9\xd6\xc0\x0a\xd0\x26\xeb\xd0\x6f\xaa\x61\x52\x1d\xfd\x16\x5a\xc1\xd1\xff\x7d\x78\xff\x0b\xca\xd0\xc2\x95\x30\xb5\x6b\x90\x29\xe4\x2f\x3b\xb3\x11\x96\xaf\x53\xa0\xa1\x99\xe0\x8e\xbb\x4e\xf2\xec\xe4\x24\x8b\x2a\x81\x16\xcc\xb2\x8b\xf8\xf9\x2c\x7e\xee\xa2\x87\xb3\x83\x45\xf4\x1b\xd0\xa8\xf9\x0a\x5d\x07\xc5\x71\x30\x1c\xf9\x75\xf4\xa9\xbf\x88\x85\x92\xd9\xb5\x56\x9b\x44\xc2\x26\xe1\x74\x9d\x72\xca\x09\xe0\xd1\x28\x9b\xbf\xec\xc4\x2a\xb5\xde\x20\x38\xc8\xf3\x26\x3c\xe1\xbb\x5c\x4b\x62\x47\xbf\x40\x5a\xa7\x16\x63\x72\xa9\x55\x2d\x0c\x50\x0d\x46\x55\x37\x90\x5a\xdc\x63\xca\x99\xdb\xa1\x93\x6b\x07\x2f\x0b\xe7\x59\x8b\x09\xa4\xad\xe3\xeb\xf1\x24\x9c\xab\xb9\x70\x8e\x9f\x1c\x87\x6b\x14\xd8\x31\x37\x29\x9e\x72\x96\xf3\x9c\x21\x0d\x08\xa4\x43\xaa\x89\x3e\x24\x85\xdd\x09\x7a\xd7\x3f\x1e\xe6\x4a\x95\x6a\xb5\x42\xc4\xfe\x6d\x71\x7e\x52\x8c\x58\x88\x11\x1b\x63\x64\xef\x8d\x11\x8b\x4d\x62\x1b\xa9\x54\xe6\xbe\xc6\xd8\x58\xa5\x83\x5f\x8a\x98\x4a\xb2\x9f\x09\x25\x7b\x7a\x28\x7b\x72\x7a\xf2\x28\x5e\xd5\xa9\xdd\xf6\xaf\xf3\x3b\xed\x6b\xf1\x3c\xb4\xaf\xf3\x33\xdf\xbe\xa8\x4c\x4d\xe8\x5f\x2f\x5e\x84\xfe\xb5\x58\x60\xd2\xba\x3e\xf6\xc3\x0b\x4c\x0a\xff\xf0\x03\x26\xb5\x7b\x78\x71\x8e\x49\xe3\x78\xcf\x31\x59\x39\xd2\x17\xc3\xc4\x2c\xc7\x89\xe9\x02\x7c\xd9\x6a\x78\xad\xea\x46\x49\x90\xb6\xe3\xc3\xd3\xcf\xa2\x78\xa7\x5a\x69\x53\xdc\xf9\x11\xd7\x68\xd5\x18\xdf\xb7\xfc\xde\xe3\xae\x57\x6e\xd7\x18\xf7\x1a\x64\x01\x3a\x0d\x9d\x0f\xf2\x2d\x07\x71\x6d\xd0\xab\x85\xd0\x06\x7d\x87\x20\x32\x77\xc9\xeb\xbc\x3f\xcd\x35\xae\x81\x59\x78\x53\x41\x0d\xd2\xa6\x0d\x65\xa4\xab\x14\x2b\x84\x2c\x33\xd9\x13\x9e\x62\x9f\xf2\x07\x79\xce\x0e\x0f\x0f\x62\xd4\x71\x9a\xe2\xfc\xe5\x3e\x37\x2a\xc4\x0d\x22\x8e\x9e\xec\x2f\x16\x4e\xf4\x0d\xd3\x82\x49\x9b\xa1\xf5\x39\x22\xe3\xbe\x33\xb4\x3e\x45\xfd\x0c\x8f\x70\x3c\xa2\xc8\x46\xa0\x59\x2a\x55\x2c\x6f\x43\xbf\xa9\x84\x74\xb0\xf2\x0e\x8e\xf9\xcf\x40\x81\x5c\x1e\x3d\x66\x84\x69\x97\x56\xd8\x0a\x16\x88\x78\x77\xf9\x36\x6f\xa9\x69\x97\xbf\xfa\x0a\xfb\x26\x93\x46\xae\x7d\x9b\x6e\x55\x9b\xac\xd9\x0d\x24\x4b\x00\x99\x38\x04\x01\x45\xa2\x5a\x9b\xac\xb4\xaa\x03\x68\x0b\x85\x9c\x30\xce\x5d\x02\x3c\x64\x7d\xd9\x5a\x0b\xfa\x27\x65\xad\xaa\xb3\x83\x93\x6f\xb2\x31\x02\x13\xca\x2b\x65\x66\x7c\xf7\xff\xaa\x4d\x38\x93\x89\x5f\x4e\x5c\x42\x25\x1b\x21\x0b\x57\xd6\x6a\x43\x9d\x51\x18\xdf\x4d\x89\x58\xce\xff\x1a\x69\xc1\x95\x5c\x09\x5d\x3f\x90\x1e\xbf\xba\x52\x48\xba\xc9\x5c\xef\x11\x09\xf0\x2b\x9b\x7e\xcd\xd8\x14\x2f\xf4\xff\xf4\x6c\x1a\x76\xf2\x40\x56\x35\x11\xf9\x07\x4a\x9f\x56\x2e\xa9\xfe\xf6\xdc\x09\xfa\xf6\xed\xb9\xd4\x60\x4c\x62\xd7\x90\x2c\x5b\x6b\x95\x4c\x96\xe0\x80\x4e\x62\xd5\x68\xdb\xbd\x09\x3f\x26\xd8\x8c\x45\x35\x65\xf7\x25\x4f\xc8\xac\x6e\xea\xee\x8d\x66\x4d\x33\xef\xec\xd6\x6d\x8d\xab\x4a\xe9\x0c\x19\xe0\x4a\x16\x4c\xdf\xee\x06\x2b\x58\x4e\x94\x7c\x5d\x09\x7e\x9d\x41\xfe\xd2\xb7\xd5\x30\x7b\x53\xc0\xdf\xd6\x11\x44\x29\x55\x6b\x7f\xf2\x32\x69\xc5\x96\x50\xed\x7b\xed\xc3\x24\x6c\xfe\xaf\x1f\x95\x75\x40\x1b\x0d\x37\x6e\x30\x04\xa6\x34\x1e\x7d\xee\x9b\x0b\x4b\x37\x17\xb6\x73\x3f\xe0\x8c\x09\xc7\x5a\x18\xab\xf4\xed\xc5\x08\x92\x0f\x0f\xd3\xc7\x07\x0d\xb1\xe1\x36\x08\x1d\xc7\x8d\xa1\x30\x6a\x9d\xf8\x75\x3e\xe2\xd5\x25\x76\x4a\xd3\x2e\x82\xe4\x08\x78\xc3\xec\xe9\xf1\x08\x6c\x2b\x27\xd4\x13\x8e\xa9\x9d\x75\x35\xd3\xa5\x90\x31\x2f\x81\x9a\x86\x71\x21\xcb\xf4\x1c\xf7\x24\xc6\x73\xa0\xf9\xa8\x9a\x1d\x02\xd2\x28\x23\xdc\xa8\xcf\x90\x86\x8a\x59\x71\xe3\x8a\x3e\x54\x6e\x86\x84\x74\x5d\xe0\x68\x59\x29\x7e\xed\x30\x11\x4e\x4b\x8c\x87\x13\x54\x8c\xc4\xec\x09\x67\xed\x8f\x62\x67\xcf\x1e\x46\x12\x23\xfa\x8b\xa0\x3f\xa0\xfd\xae\xbf\xb0\xce\xa3\x75\x63\x0f\x0f\x53\x16\x1f\xf3\xe1\xdb\x80\x3c\xe0\x62\xc0\x65\x01\x90\x21\xc5\x5a\xbb\x46\x99\x7f\x76\x07\x6a\x90\x36\xbe\x29\x51\x70\x94\x31\x6a\xb8\x6a\xc0\x01\x2e\xf7\xfb\xf5\x2b\x42\x84\x51\x5e\x09\x90\xf6\xb3\x28\x72\xbb\x7d\x8e\x6b\x1a\x0a\xa1\x81\xdb\xcf\xad\x16\xb9\xdd\x79\xf5\x14\xee\xb8\xfa\xd9\xaa\x6b\x90\x9f\xd7\x42\x06\x6b\x77\xbe\xe4\x77\x28\x5c\x2e\xd4\xec\xcb\x67\x56\x82\x27\x8e\xcf\xf9\xf8\xd5\x11\xf0\x8a\x89\xda\x7c\xf6\x46\x7a\x2a\xff\xf4\x5d\x8e\x12\xf4\xdd\xee\x2a\xbe\x58\x6a\x60\xd7\x23\xf0\x0c\x08\xa5\x1f\xce\xe4\x9e\xd9\x1d\x96\x72\x89\x09\xeb\x1f\x3c\xd6\xca\x10\xb0\x47\xa0\xdf\x34\x60\x5b\x58\x1f\xa6\x57\xfe\x8e\xd9\x35\xd5\x4c\x16\xaa\x4e\x31\xb5\xea\x83\xd5\x2e\xc7\x4e\x9f\x63\xd7\x85\x4d\x78\xfb\x1e\x13\x78\x92\x25\x67\x4f\x3a\xc5\xcf\x8b\xd0\x3b\xd7\x88\xa7\x93\xe3\xb2\xde\xb1\x5b\xc3\x5f\x2d\x18\x17\x37\xc8\x3d\x5a\xf6\xd7\x36\xaf\x1c\x06\x97\x74\x9d\x4a\x87\xdc\xc7\xcf\x38\xdb\x7e\x67\xee\x4c\xd2\xf7\xe4\xfc\xfc\x61\x2b\x07\x1b\x4e\x17\xe1\x2a\xf3\xdc\x43\x64\x2a\x53\x1d\x30\xf2\x0f\x8f\x63\xe4\xe7\x11\x23\xbf\x38\x09\x18\xd9\xc1\xeb\xc6\xaf\x7c\x1f\x30\xb2\x47\xcf\xe5\x80\xa7\xd7\x11\x79\x2f\xbd\xd4\x35\x26\x37\x01\x46\x93\x37\xd1\x15\xce\xa4\xdb\xa1\xeb\xd4\x63\xd7\x89\x57\x06\x43\xd7\xf1\xaf\xae\xde\xb7\xde\x1d\x48\xc8\xd0\xe6\x32\xdb\x6f\xaf\xa9\xe7\x87\x85\xb0\xe0\xe6\x24\x61\x95\x28\x65\x86\x38\x48\x0b\x1a\xf5\x64\x19\x31\x50\x9e\xe7\x11\xf5\xec\x0b\xf0\x50\x7a\x3b\x5b\x90\xe2\x47\x8d\x56\xa5\x1b\x92\x7e\xd0\x2d\xb7\x38\xea\x5e\x19\x13\xe4\xb4\xbf\xb8\xda\x57\x50\x89\x72\x6d\x1d\x9e\x99\xc0\xa9\x3b\x33\x7f\x6f\x2f\xfb\x82\xf7\x06\x5a\x3c\x10\x0c\xd7\xbc\xf7\x82\xab\x5f\xfc\xc5\xaa\x1b\xf8\xf1\x0e\xd2\xcf\x7e\xd0\x37\x4e\x11\xc6\xf7\xed\x61\xd7\x22\x12\x27\xb4\x57\x36\x6b\xdf\x1b\x5a\x92\x21\x9a\xf3\x62\x4b\x2f\xb6\xb5\xea\x17\xc5\x5b\xe3\x76\x1d\x85\x36\x5a\xd4\x7e\xe8\x8f\x2e\xe2\x4a\x5a\x26\x24\x14\x53\x20\xe0\x7c\x19\xa0\xc0\x51\xe4\x48\x14\x3f\xaa\xed\x51\x85\xa6\xd8\xc0\x4f\xd9\xb9\x21\x3d\x0c\xbb\x1b\x5a\xf8\xa3\x1a\xf6\xd0\xe1\x49\x9e\x2e\x85\xa4\x1a\xac\xbe\x7d\x18\x36\xbc\x77\x24\x11\x33\x38\x1f\x6c\xf2\xed\xc4\xdf\x3d\xfc\x6d\x84\x5d\xab\xd6\xbe\x55\xa5\x22\x7a\xfb\x7e\xc9\x0a\x17\x53\x62\x72\x18\xe2\x4b\x2a\xc7\xba\x16\x55\xa1\x41\x92\x7a\x90\xe3\x3c\x42\x9a\x3c\x05\xfa\xb3\x60\x95\x2a\x2f\xfd\x19\x13\xe8\x25\x6b\x40\x87\x97\xe9\xcd\x3e\x90\x2b\x14\xf5\x23\x82\x26\xda\xb7\x6f\x51\x37\x22\x28\x6a\x46\x04\x0d\x7a\xdd\xe3\xa0\x15\x11\x34\x51\x89\x08\xda\xaa\x44\x9f\xb0\x6f\x1f\xaf\x5c\x71\x64\x33\x95\x23\xea\x12\x91\xce\x68\x9e\x21\x7a\xec\x1a\xbc\xe0\xfe\x0a\x85\x9a\x9b\xf2\x6e\xa8\x2b\x6f\x1d\xab\x6c\x86\xd4\x46\xbe\xae\x54\x5b\xa0\xde\x35\x25\xf3\x6a\x5f\xf2\xad\xaf\x47\x9c\xe9\x57\x73\x7a\x8b\x01\xac\x56\xe3\x8d\xce\x7c\x6f\xb9\x73\xa1\x3c\xa4\xa1\x76\xc9\xfa\x67\x6b\xac\x58\xdd\x6e\x4b\xc2\x57\xc8\x7f\x59\xa8\xcd\xf6\x5b\x98\xe5\x1e\xf9\x70\x55\xb5\xb5\x44\x24\xc2\xa2\xec\x64\xb2\x3f\x77\x5c\xb3\x54\x2b\x65\x49\x8d\x7b\xd2\xcc\x95\xcb\x43\x30\xfa\x49\xd4\xce\x7a\x90\xb6\x27\x2b\x52\xce\x16\x24\x5a\x29\xe5\xad\xbe\xd3\xb0\xc2\xe7\xa3\x78\xb6\x78\x5a\x37\x0a\x3c\xd4\x54\xaa\x64\x72\xbf\x32\x7e\x94\xac\x86\x97\x43\x1c\x7f\x3c\xf6\xaf\xc9\x51\xc2\x12\xc3\x56\x90\xac\x55\x0d\xc9\x4a\xe9\x84\x55\x55\x38\x89\x14\xcc\xb2\xed\x19\xd0\x5f\xfc\xba\x5a\x8a\xd1\xb3\x39\xcc\xed\xc7\x58\xad\x5c\xde\xfa\x58\x47\x4c\x67\x7b\x07\x31\x71\x7f\xb1\xa1\xd1\x28\x9f\xaa\x79\x37\x29\x82\xec\x60\x41\x76\xab\xc0\x7d\x19\x6e\x5c\x0e\x16\x0e\x3b\xb2\x7c\x0f\x2b\xbb\xf8\x8d\xe7\xd3\x0c\xad\x2a\xf8\x82\x88\xfb\x9f\x2d\x7a\x12\xbd\x9f\x75\x73\x58\x78\x23\x0a\xbb\xce\xd0\xe2\xe4\xe4\x3f\x50\x4f\x98\xcf\x18\x33\x45\xd3\x47\x67\x63\xc2\xbd\x8e\x82\xbc\xfc\x23\x63\x99\xb6\x88\x34\xc1\xcc\xb7\xb0\xb2\x13\xe4\x7d\x8a\x87\x85\xf7\x6e\xe6\xec\xac\x4c\x40\xfb\x54\x3b\xa9\xd9\x97\xff\xf5\xef\xa7\x27\x27\x64\x76\x2f\x73\x89\xee\x61\xfb\x06\xf7\xfd\x27\x7c\xf1\x6f\xc7\xc7\xff\x9e\x18\xd5\x6a\x0e\xef\x58\xd3\x08\x59\xfe\xf1\xfe\x6d\x3e\xd6\x8e\x39\x1a\x8e\x5e\xec\xfb\x67\xe7\x8b\x33\xfe\x8c\xf2\x75\x2b\xaf\xe9\x9f\x86\xd6\xac\xf9\x47\x00\x00\x00\xff\xff\x6d\x36\xc1\xca\x12\x1f\x00\x00") +// FileIdentifierStaticJsContainersGoodbyeA2821852ChunkJs is "identifier/static/js/containers-goodbye.a2821852.chunk.js" +var FileIdentifierStaticJsContainersGoodbyeA2821852ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x59\x69\x6f\xdc\xb8\x7b\x7f\xdf\x4f\x21\xb3\xa8\x21\xe2\x4f\xd3\x1e\x3b\x4e\x13\xf9\xaf\x04\xdd\x6c\xb6\xdb\x6e\x76\x6b\xe4\xe8\x01\x23\x08\x38\xd4\x33\x1a\xc6\x12\xa9\x25\x29\x4f\x06\x8a\xbe\x7b\xc1\x43\x1a\xd9\x23\x1f\x79\xb1\x45\xf3\xc2\x23\x89\xcf\xc5\xe7\xfc\x91\x49\xed\x5a\x18\xba\x81\x65\xc3\xf8\xf5\xbf\x1b\x25\x1b\x51\x80\xb4\x62\x25\x40\xe7\x0f\xac\x7d\xff\x7e\xf5\x19\xd3\xa6\x35\xeb\xf4\xea\x6a\xf1\x99\x74\x8b\xb3\x6c\xd5\x4a\x6e\x85\x92\x29\x10\x4b\x18\xee\x50\x6b\x20\x31\x56\x0b\x6e\xd1\x05\xa3\x45\x6a\x09\x5a\x21\x92\x8e\x74\xb8\xd3\x60\x5b\x2d\x13\xd5\x63\x4c\x22\x05\xcc\x52\x98\x09\x45\x31\x4b\xc1\x27\x14\x6c\x96\x42\x4c\x28\xf8\x2c\x45\x35\xa1\x58\xce\x52\xb4\x13\x8a\xf5\x2c\x45\x3d\xa1\x28\x67\x29\x9a\x1e\xe3\x8b\x1b\xa6\x13\x99\xb3\x74\x71\x8a\x89\xce\x59\x7a\xba\xc0\x44\xe5\xe8\x5a\x49\x09\xdc\x52\xd0\x5a\x69\x5a\xa9\x52\x48\x7a\xc3\x2a\x51\x30\x0b\xb4\x16\xc6\x08\x59\x7e\x32\xa0\x25\xab\x01\x11\xf3\x34\x86\x4b\x66\xcc\x46\xe9\x02\x11\x3e\xcf\xb0\x62\xa2\x82\x02\x11\x11\x97\x87\xd5\xb5\xb5\x0d\x95\x60\x37\x4a\x5f\xbf\x75\x5f\x10\xa9\xee\x4a\xf0\x34\xad\x84\x6f\x0d\x70\x0b\xc5\x7b\x30\x8d\x92\x06\x3e\x58\x66\x5b\x83\x48\xfb\x03\xf4\x80\x48\x91\xff\xc7\xf2\x2b\x70\x9b\x4a\xca\x70\xda\x5d\xa9\xcf\x59\x27\x8a\x4c\x91\x02\x56\xac\xad\xec\xef\x60\x0c\x2b\x21\x43\x6f\xa5\x05\x9d\x30\x99\xb4\x83\x37\x7a\x72\x65\x02\xb5\xb9\x8f\x3a\x69\x06\x4f\xf4\xe4\x8a\x07\x62\xbe\x47\xfc\x4e\x95\x4a\x26\xc1\x27\x34\xb9\xac\x80\x19\x48\x6e\x40\x8b\xd5\x36\xd9\xaa\x56\x27\x5c\x83\x2f\x04\x56\x99\x84\xc9\x22\xb1\x7a\x9b\xb0\x92\x09\x49\x9d\x5c\x11\xe4\x8a\x3d\xb9\x7f\x04\x47\x26\xc1\x0f\x83\x60\xbe\x06\x7e\x1d\xe5\x06\x47\x09\x25\x67\xc4\x56\x41\x6c\xb5\x27\xf6\xd3\xe8\xcb\xe4\xd7\x8f\x1f\x2f\x13\x1d\x3d\x9a\x25\x9d\xf1\x41\xe8\x7f\x58\x57\x1b\x74\xb5\x0f\xe9\x1a\xd4\x24\x4e\xc9\xa0\x0c\x7a\xd4\xf7\xf8\x82\x57\xcc\x98\xa4\x4e\xe0\x9b\x05\x59\x98\xc4\xe7\x4e\xc7\x95\x34\x56\xb7\xdc\x2a\xed\x5a\x04\xee\x4c\xdb\x80\x4e\x01\x13\xdf\x68\x6e\x58\xd5\x82\xc9\x6f\x94\x28\x92\x13\x12\x7e\x0e\xf2\xdc\xf3\x52\xce\x1a\xdb\x6a\x97\x25\xfc\xfa\xa3\x66\x1c\x0e\x0f\xef\x59\xf0\x1d\x8d\xd4\xb7\x85\xda\xbe\x77\x05\xd7\x0c\xd9\xa5\x29\xc7\xe9\xae\x34\x01\x77\x6e\xd9\xe6\x10\x92\x94\xb0\x1c\xa8\x90\xb6\xba\x10\xab\xf4\xc0\xe2\x58\xb8\xb2\xad\xaa\x58\xb8\x96\x8a\xe2\xb5\xfb\x93\x59\x5a\x07\xef\x10\x1d\xa5\x53\x66\x8c\x28\x65\xda\xf5\xc4\x79\x51\xde\xf5\x62\xe4\x8d\x6c\x59\xd8\x69\x4f\x8a\x2b\xf9\x19\x5f\x44\x55\x8c\xae\x94\xae\xd9\xc0\x93\x6a\x62\xe3\x5e\x70\x8f\x71\x4f\x16\x2f\x9f\xd4\x6e\xe7\xdb\x5c\xfd\x68\xab\x6c\x1e\x6d\xb7\xab\x47\x5b\x65\x39\x6d\x73\xcf\x43\x9b\xa3\x32\x95\xae\xcf\xb1\xf4\xd9\x29\x26\xc6\xfd\x9e\x61\xc2\x5d\x1f\x3c\xc3\x44\xb8\xf7\x67\x98\x54\xae\x1f\x3e\xc7\x17\x83\xcc\xa4\x75\x11\x0a\x62\x3b\xbb\x6d\x20\xab\xe8\x92\xf8\x48\x65\xd0\xf7\x23\x59\x91\xde\xa5\xba\x9e\xac\xd6\xd3\x30\x9b\x96\x73\x30\xc6\x07\x7a\xe8\x20\x44\xe6\x40\x0b\x61\x9a\x8a\x6d\xff\x60\x35\x5c\xdc\x96\xc5\x49\xc8\xf4\x83\x93\x3c\xcf\x2d\x19\xb8\x32\x46\x26\x3c\x99\x24\x6b\xa8\x2a\x75\xcb\xae\x66\xe2\xb6\x49\xd0\x70\x07\x69\x91\x46\x27\xb1\xdc\xa6\x98\x72\x55\xd7\x4a\x12\x99\x33\xba\xaa\xd4\xc6\x79\x82\xfe\xd9\x82\xde\x92\x31\x75\x8d\x6b\x8c\xf1\x59\xb9\x67\x49\x2a\x3c\xe6\x8d\xa6\x8c\x36\xca\xd8\x14\xd1\xe3\xdd\xb4\x3e\xfe\x72\xec\xad\x42\xa4\x21\xdd\x1a\x58\x01\xda\x64\x1d\xfa\x4d\x35\x4c\xaa\xa3\xdf\x42\x2b\x38\xfa\xef\x0f\xef\x7f\x41\x19\x5a\xb8\x12\xa6\x76\x0d\x32\x85\xfc\x55\x67\x36\xc2\xf2\x75\x0a\x34\x34\x13\xdc\x71\xd7\x49\x4e\x4f\x4e\xb2\xa8\x12\x68\xc1\x2c\xbb\x88\x9f\x9f\xc5\xcf\x5d\xf4\x70\x76\xb0\x88\x7e\x03\x1a\x35\x5f\xa1\xeb\xa0\x38\x0e\x86\x23\xbf\x8e\x3e\xf7\x17\xb1\x50\x32\xbb\xd6\x6a\x93\x48\xd8\x24\x9c\xae\x53\x4e\x39\x01\x3c\x1a\x65\xf3\x57\x9d\x58\xa5\xd6\x1b\x04\x07\x79\xde\x84\x27\x7c\x97\x6b\x49\xec\xe8\x17\x48\xeb\xd4\x62\x4c\x2e\xb5\xaa\x85\x01\xaa\xc1\xa8\xea\x06\x52\x8b\x7b\x4c\x39\x73\x3b\x74\x72\xed\xe0\x65\xe1\x3c\x6b\x31\x81\xb4\x75\x7c\x3d\x9e\x84\x73\x35\x17\xce\xf1\x93\xe3\x70\x8d\x02\x3b\xe6\x26\xc5\x53\xce\x72\x9e\x33\xa4\x01\x81\x74\x48\x35\xd1\x87\xa4\xb0\xb7\x82\xde\xf5\x8f\x87\xb9\x52\xa5\x5a\xad\x10\xb1\x7f\x59\x9c\x9f\x14\x23\x16\x62\xc4\xc6\x18\xd9\x7b\x63\xc4\x62\x93\xd8\x45\x2a\x95\xb9\xaf\x31\x36\x56\xe9\xe0\x97\x22\xa6\x92\xec\x67\x42\xc9\x9e\x1e\xca\x9e\x9c\x9d\x3c\x7b\xac\x81\xea\xd4\xee\xfa\xd7\xf9\x9d\xf6\xb5\x78\x1e\xda\xd7\xf9\x33\xdf\xbe\xa8\x4c\x4d\xe8\x5f\x2f\x5f\x86\xfe\xb5\x58\x60\xd2\xba\x3e\xf6\xe2\x25\x26\x85\x7f\x78\x81\x49\xed\x1e\x5e\x9e\x63\xd2\x38\xde\x73\x4c\x56\x8e\xf4\xe5\x30\x31\xcb\x71\x62\xba\x00\x5f\xb6\x1a\xde\xa8\xba\x51\x12\xa4\xed\xf8\xf0\xf4\xb3\x28\x7e\x57\xad\xb4\x29\xee\xfc\x88\x6b\xb4\x6a\x8c\xef\x5b\x7e\xef\x71\xd7\x2b\xb7\x6b\x8c\x7b\x0d\xb2\x00\x9d\x86\xce\x07\xf9\x8e\x83\xb8\x36\xe8\xd5\x42\x68\x83\xbe\x43\x10\x99\xbb\xe4\x75\xde\x9f\xe6\x1a\xd7\xc0\x2c\xbc\xad\xa0\x06\x69\xd3\x86\x32\xd2\x55\x8a\x15\x42\x96\x99\xec\x09\x4f\xb1\x4f\xf9\x83\x3c\x67\x87\x87\x07\x31\xea\x38\x4d\x71\xfe\x6a\x9f\x1b\x15\xe2\x06\x11\x47\x4f\xf6\x17\x0b\x27\xfa\x86\x69\xc1\xa4\xcd\xd0\xfa\x1c\x91\x71\xdf\x19\x5a\x9f\xa1\x7e\x86\x47\x38\x1e\x51\x64\x23\xd0\x2c\x95\x2a\x96\xdb\xd0\x6f\x2a\x21\x1d\xac\xbc\x83\x63\xfe\x35\x50\x20\x97\x47\x8f\x19\x61\xda\xa5\x15\xb6\x82\x05\x22\xde\x5d\xbe\xcd\x5b\x6a\xda\xe5\xaf\xbe\xc2\x7e\xc8\xa4\x91\x6b\xdf\xa6\xad\x6a\x93\x35\xbb\x81\x64\x09\x20\x13\x87\x20\xa0\x48\x54\x6b\x93\x95\x56\x75\x00\x6d\xa1\x90\x13\xc6\xb9\x4b\x80\x87\xac\x2f\x5b\x6b\x41\xff\xa4\xac\x55\x75\x76\x70\xf2\x43\x36\x46\x60\x42\x79\xa5\xcc\x8c\xef\xfe\x47\xb5\x09\x67\x32\xf1\xcb\x89\x4b\xa8\x64\x23\x64\xe1\xca\x5a\x6d\xa8\x33\x0a\xe3\xbb\x29\x11\xcb\xf9\xff\x47\x5a\x70\x25\x57\x42\xd7\x0f\xa4\xc7\xaf\xae\x14\x92\x6e\x32\xd7\x7b\x44\x02\xfc\xca\xa6\x5f\x33\x36\xc5\x0b\xfd\xff\x79\x36\x0d\x3b\x79\x20\xab\x9a\x88\xfc\x03\xa5\x4f\x2b\x97\x54\x7f\x79\xee\x04\x7d\xfb\xf6\x5c\x6a\x30\x26\xb1\x6b\x48\x96\xad\xb5\x4a\x26\x4b\x70\x40\x27\xb1\x6a\xb4\xed\xde\x84\x1f\x13\x6c\xc6\xa2\x9a\xb2\xfb\x92\x27\x64\x56\x37\x75\xf7\x46\xb3\xa6\x99\x77\x76\xeb\xb6\xc6\x55\xa5\x74\x86\x0c\x70\x25\x0b\xa6\xb7\xb7\x83\x15\x2c\x27\x4a\xbe\xa9\x04\xbf\xce\x20\x7f\xe5\xdb\x6a\x98\xbd\x29\xe0\x1f\xeb\x08\xa2\x94\xaa\xb5\x3f\x79\x99\xb4\x62\x4b\xa8\xf6\xbd\xf6\x61\x12\x36\xff\xaf\x1f\x95\x75\x40\x1b\x0d\x37\x6e\x30\x04\xa6\x34\x1e\x7d\xee\x9b\x0b\x4b\x37\x17\x76\x73\x3f\xe0\x8c\x09\xc7\x5a\x18\xab\xf4\xf6\x62\x04\xc9\x87\x87\xe9\xe3\x83\x86\xd8\x70\x1b\x84\x8e\xe3\xc6\x50\x18\xb5\x4e\xfc\x3a\x1f\xf1\xea\x12\x3b\xa5\x69\x17\x41\x72\x04\xbc\x61\xf6\xf4\x78\x04\xb6\x95\x13\xea\x09\xc7\xd4\xce\xba\x9a\xe9\x52\xc8\x98\x97\x40\x4d\xc3\xb8\x90\x65\x7a\x8e\x7b\x12\xe3\x39\xd0\x7c\x54\xcd\x2d\x02\xd2\x28\x23\xdc\xa8\xcf\x90\x86\x8a\x59\x71\xe3\x8a\x3e\x54\x6e\x86\x84\x74\x5d\xe0\x68\x59\x29\x7e\xed\x30\x11\x4e\x4b\x8c\x87\x13\x54\x8c\xc4\xec\x09\x67\xed\x8f\x62\xcf\x4e\x1f\x46\x12\x23\xfa\x8b\xa0\x3f\xa0\xfd\xae\xbf\xb0\xce\xa3\x75\x63\x0f\x0f\x53\x16\x1f\xf3\xe1\xdb\x80\x3c\xe0\x62\xc0\x65\x01\x90\x21\xc5\x5a\xbb\x46\x99\x7f\x76\x07\x6a\x90\x36\xbe\x29\x51\x70\x94\x31\x6a\xb8\x6a\xc0\x01\x2e\xf7\xfb\xfd\x3b\x42\x84\x51\x5e\x09\x90\xf6\x8b\x28\x72\xbb\x7b\x8e\x6b\x1a\x0a\xa1\x81\xdb\x2f\xad\x16\xb9\xbd\xf5\xea\x29\xdc\x71\xf5\x8b\x55\xd7\x20\xbf\xac\x85\x0c\xd6\xde\xfa\x92\xdf\xa1\x70\xb9\x50\xb3\x6f\x5f\x58\x09\x9e\x38\x3e\xe7\xe3\x57\x47\xc0\x2b\x26\x6a\xf3\xc5\x1b\xe9\xa9\xfc\xd3\xdf\x72\x94\xa0\xbf\xdd\x5e\xc5\x17\x4b\x0d\xec\x7a\x04\x9e\x01\xa1\xf4\xc3\x99\xdc\x33\xbb\xc3\x52\x2e\x31\x61\xfd\x83\xc7\x5a\x19\x02\xf6\xc8\x55\xe5\x34\x60\xc3\x89\xd1\x21\xd6\x4f\x42\xda\x17\xff\xa2\x35\xdb\x3a\xf8\x37\xc0\x23\xae\xb7\x8d\x55\xb4\x04\xfb\x9e\xc9\x42\xd5\xff\xe9\xc7\x84\x07\x9c\x61\xe0\xe5\x9e\xc5\xc5\xd5\x2a\x87\x63\x69\xcd\x1a\xca\x59\x55\xa5\x96\x40\xfe\x0a\xa8\x55\x1f\xac\x76\x89\xba\x78\x8e\x31\xfd\xaa\x84\x4c\x11\xc2\x04\x9e\xb4\x97\x47\x61\xec\x03\x22\xf4\xad\x8b\xc8\xb3\xc9\x81\x5b\x4f\x0f\x34\x54\xc3\x9f\x2d\x18\x17\x79\xc8\x3d\xde\xf6\x17\x3f\xaf\x9d\x4f\x24\x5d\xa7\xd2\x61\xff\xf1\x33\xce\x76\xdf\x99\x3b\xd5\xf4\x3d\x39\x3f\x7f\xd8\xca\xc1\x86\xb3\x45\xb8\x0c\x3d\xf7\x20\x9b\xca\x54\x07\x94\xfd\xe2\x71\x94\xfd\x3c\xa2\xec\x97\x27\x01\x65\x3b\x80\xde\xf8\x95\x7f\x0e\x28\xdb\xe3\xef\x72\x40\xe4\xeb\x88\xdd\x97\x5e\xea\x1a\x93\x9b\x00\xc4\xc9\x36\xba\xc2\x99\xf4\x76\xe8\x5b\xf5\xd8\xb7\xe2\xa5\xc3\xd0\xb7\xfc\xab\xeb\x18\x3b\xef\x0e\x24\x64\x68\x94\x99\xed\x77\x17\xdd\xf3\xe3\x46\x58\x70\x93\x96\xb0\x4a\x94\x32\x43\x1c\xa4\x05\x8d\x7a\xb2\x8c\x28\x2a\xcf\xf3\x88\x9b\xf6\x05\x78\x30\xbe\x9b\x4e\x48\xf1\xa3\x46\xab\xd2\x8d\x59\x3f\x2a\x97\x3b\x24\x76\xaf\x8c\x09\xf6\xda\x5f\x5c\xed\x2b\xa8\x44\xb9\xb6\x0e\x11\x4d\x00\xd9\x1d\xd4\xb0\xb7\x97\x7d\xc1\x7b\x23\x31\x1e\x29\x86\x8b\xe2\x7b\xe1\xd9\x2f\xfe\x6a\xd6\x41\x86\x78\x8b\xe9\xd1\x03\xe8\x1b\xa7\x08\xe3\xfb\xf6\x70\xdb\x22\x12\x67\xbc\x57\x36\x6b\xdf\x96\x96\x64\x88\xe6\xbc\xd8\xd2\x8b\x6d\xad\xfa\x45\xf1\xd6\xb8\x5d\x47\xa1\x8d\x16\xb5\x87\x0d\xa3\x8b\xb8\x92\x96\x09\x09\xc5\x14\x4a\x38\x5f\x06\x30\x71\x14\x39\x12\xc5\x8f\x6a\x7b\x54\xa1\x29\xba\xf0\x73\x7a\x6e\xcc\x0f\xe3\xf2\x86\x16\xfe\xb0\x87\x3d\xf8\x78\x92\xa7\x4b\x21\xa9\x06\xab\xb7\x0f\x03\x8f\xf7\x8e\x24\xa2\x0e\xe7\x83\x4d\xbe\xc3\x0c\xb7\x8f\x8f\x1b\x61\xd7\xaa\xb5\xef\x54\xa9\x88\xde\xbd\x5f\xb2\xc2\xc5\x94\x98\x1c\x86\xf8\x92\xca\xb1\xae\x45\x55\x68\x90\xa4\x1e\xe4\x38\x8f\x90\x26\x4f\x81\xfe\x2c\x58\xa5\xca\x4b\x7f\x4a\x05\x7a\xc9\x1a\xd0\xe1\x65\xfa\x7f\x03\x40\xae\x50\xd4\x8f\x08\x9a\x68\xdf\xbd\x45\xdd\x88\xa0\xa8\x19\x11\x34\xe8\x75\x8f\x83\x56\x44\xd0\x44\x25\x22\x68\xa7\x12\x7d\xc6\xbe\x7d\xbc\x76\xc5\x91\xcd\x54\x8e\xa8\x4b\x44\x3a\xa3\x79\x86\xe8\xb1\xeb\xf7\x82\xfb\x4b\x18\x6a\x6e\xca\xbb\xa1\xae\xbc\x75\xac\xb2\x19\x52\x1b\xf9\xa6\x52\x6d\x81\x7a\xd7\x94\xcc\xeb\x7d\xc9\x6f\x7d\x3d\xe2\x4c\xbf\x9e\xd3\x5b\x0c\x70\xb7\x1a\x07\xd1\x7c\x6f\xb9\x73\x25\x3d\xa4\xa1\x76\xc9\xfa\xb5\x35\x56\xac\xb6\xbb\x92\xf0\x15\xf2\x6f\x16\x6a\xb3\xfb\x16\xd0\x80\xc7\x4e\x5c\x55\x6d\x2d\x11\x89\xc0\x2a\x3b\x99\xec\xcf\x1d\xf8\x2c\xd5\x4a\x59\x52\xe3\x9e\x34\x73\xe5\xf2\x10\x10\x7f\x12\xb5\xb3\x1e\xa4\xed\xc9\x8a\x94\xb3\x05\x89\x56\x4a\x79\xab\xef\x34\xac\xf0\xf9\x28\x9e\x4e\x9e\xd6\x8d\x02\x0f\x35\x95\x2a\x99\xdc\xaf\x8c\xbf\x4b\x56\xc3\xab\x21\x8e\x7f\x3f\xf6\xaf\xc9\x51\xc2\x12\xc3\x56\x90\xac\x55\x0d\xc9\x4a\xe9\x84\x55\x55\x38\xcb\x14\xcc\xb2\xdd\x29\xd2\x5f\x1d\xbb\x5a\x8a\xd1\xb3\x39\xcc\xed\xc7\x58\xad\x5c\xde\xfa\x58\x47\x54\x68\x7b\x07\x52\x71\x7f\xb1\xa1\xd1\x28\x9f\xaa\x79\x37\x29\x82\xec\x60\x41\x6e\x57\x81\xfb\x32\xdc\xd9\x1c\x2c\x1c\xfa\x64\xf9\x1e\xda\x76\xf1\x1b\x4f\xb8\x19\x5a\x55\xf0\x0d\x11\xf7\x37\x5b\xf4\x24\x7a\x3f\xeb\xe6\xd0\xf4\x46\x14\x76\x9d\xa1\xc5\xc9\xc9\x3f\xa1\x9e\x30\x9f\x31\x66\x8a\xc7\x8f\x9e\x8d\x09\xf7\x26\x0a\xf2\xf2\x8f\x8c\x65\xda\x22\xd2\x04\x33\xdf\xc1\xca\x4e\xb0\xfb\x19\x1e\x16\xde\xbb\x99\x73\x6b\x65\x02\xfb\xa7\xda\x49\xcd\xbe\xfd\x97\x7f\x3f\x3b\x39\x21\xb3\x7b\x99\x4b\x74\x0f\xfc\x37\xb8\xef\x3f\xe3\x8b\x7f\x38\x3e\xfe\xc7\xc4\xa8\x56\x73\xf8\x9d\x35\x8d\x90\xe5\xa7\xf7\xef\xf2\xb1\x76\xcc\xd1\x70\x78\x63\xa7\x2f\x4e\x17\x2f\xce\x4f\x29\x5f\xb7\xf2\x9a\x7e\x35\x0e\xdc\xfd\x6f\x00\x00\x00\xff\xff\x89\xdd\x78\xb2\x54\x1f\x00\x00") -// FileIdentifierStaticJsContainersGoodbyeA72514c2ChunkJsMap is "identifier/static/js/containers-goodbye.a72514c2.chunk.js.map" -var FileIdentifierStaticJsContainersGoodbyeA72514c2ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7d\x7b\xda\xb8\xf2\xe8\x57\xd1\x72\xef\x3d\xc0\xa9\x63\xfa\xb2\x6d\xb7\x34\x69\xaf\x2c\x0c\xa1\x09\x79\x01\xd2\x6e\xb7\xf4\xf6\x71\x8c\x00\x27\xc6\x22\xb6\x49\x42\x73\xf2\xdd\xef\x33\x23\xc9\x96\x0d\xa4\xe9\xee\x9e\x7b\x9e\xdf\xef\xb9\xfb\x47\x83\xe5\xd1\x68\x34\x9a\x37\x69\x46\xde\xbb\xca\x35\x8f\x93\x40\x44\x95\xe6\x0b\xab\x92\x88\x65\xec\xf3\xa4\xd2\xfc\x52\xe1\x71\x2c\xe2\xa4\x11\x44\x63\x7e\x6b\x5f\x24\x15\xab\xe2\xf9\x69\x20\xa2\xa4\xe1\x8b\xf9\x5c\x44\xb2\xcd\x17\x51\xea\x05\x11\x8f\x93\x46\x47\x88\xf1\xf9\x8a\xeb\xbf\x89\x1f\x73\xbe\x1d\xca\xc0\x3b\x17\x63\x1e\x26\x8d\x19\x0f\x43\x21\x5b\x96\x69\x10\x26\xc5\x41\x8d\x26\x5f\xcc\x17\x22\xe2\x51\x9a\x34\x0e\x85\x37\x0e\xa2\xe9\x5a\x7b\x9f\x27\x0b\x11\x25\xc1\x35\x1f\x64\x64\x7c\xb5\x2a\x91\x37\x97\x93\x73\xfb\xfd\xe3\xfe\xb7\xc3\xe3\x4e\xf7\xe8\xdb\x47\x7a\xd8\x6d\xd1\xa1\xfb\xad\xd7\x1d\x0c\xba\x47\x9d\xb3\x81\xdb\x3f\xa2\x3d\xb7\x62\x3d\x08\x76\x42\x07\x83\x4f\xc7\xfd\x56\x09\xac\x4d\xbb\x87\x6e\xde\xb8\x3f\x1c\x9e\x7c\x3b\x72\x87\x9f\x8e\xfb\x07\xdf\xb0\xa9\xf8\xea\xec\xc8\xfd\xfd\xc4\x65\x43\xb7\xf5\xad\xef\x0e\x4e\x8e\x8f\x06\xee\xb7\xc1\x90\x0e\xcf\x06\x8f\x83\x03\x2a\xd3\xd8\x8b\x92\xd0\x43\x3e\x55\xac\xca\x98\x4f\x82\x88\xf7\x78\x92\x78\x53\x0e\x0d\xc1\x58\xb6\x7a\xcb\x30\x55\xcd\x80\xfc\x36\xe5\xd1\x98\x8f\x5d\x58\x67\x78\x56\x7f\x7d\x11\x25\x69\xbc\xf4\x53\x7c\x9a\x67\xf0\xd7\x5e\xb8\x44\x74\xc9\x72\xc1\xe1\xd5\x32\x92\x23\x01\x76\xdf\x5b\xa4\xcb\x98\x0f\x52\xcf\xbf\x1c\xc6\x9e\x0f\x1d\xd2\x59\x90\x68\xbc\xf9\xb0\x41\x74\xc1\xfd\xb4\x1b\xa5\x61\xc5\xaa\x2c\x62\xb1\x00\x18\xae\xc6\x0e\x64\xb3\x1a\xb4\x05\x32\x14\x2c\x24\x21\xc7\xe7\xd0\x0f\x04\x22\x49\x82\x69\x54\xb1\x2a\x13\x11\xcf\x3d\x63\x42\x31\xf7\x79\x70\xcd\xf5\x3c\xd2\xd5\x82\xab\x3f\x09\xbe\x4d\x78\xba\x0f\x22\x96\x83\xea\xc7\x99\xfa\x9b\x2c\x7d\x9f\x27\x28\x80\x09\x8f\x41\x58\x80\x71\x41\xb2\x08\xbd\xd5\x91\x7c\x4a\x52\x2f\x85\xbf\xfc\x96\xfb\xcb\x34\xc3\x00\x40\x5e\xea\xcf\x2a\x56\x65\xca\xd3\x81\x02\x92\x8a\x02\xa4\x86\xe2\xa6\x62\x55\xae\x96\x3c\x5e\xc1\xf0\x15\xab\x72\x13\xa4\x33\x16\x06\x3c\x4a\xfb\xfc\x6a\xc9\x93\xac\x53\xc4\x6f\x10\xab\x6a\x86\x19\xdf\x06\x02\x88\x5a\x08\x7c\x9c\x71\x6f\xcc\xe3\x04\x39\xcc\x23\x39\x35\x10\x76\x4d\xde\x12\x85\xc0\x4b\xbd\x8a\x55\x39\x89\xc5\x3c\x48\x24\x77\x12\x11\x5e\x23\x55\x8a\xd0\x99\x17\x8d\x43\x4e\x01\xb9\xe6\x59\xcc\xd3\x78\xa5\xe7\xa4\xa6\x78\x28\xa6\x62\x32\xa9\x58\x95\x82\x5e\x57\xac\x4a\x9f\x7b\xb8\x20\x27\xcb\x98\x33\xad\x7a\xa6\x1a\xb6\x82\x71\x4f\x2c\xb1\x2d\x06\x51\x43\xe9\x0a\xbd\x24\xc1\x05\x09\xa5\xea\x22\xa2\xa2\xb2\x66\xf0\x5d\x18\x76\xb8\x5a\x88\x69\xec\x2d\x66\x2b\x14\xc2\x38\xf0\x8a\xa3\x68\xa4\x7a\x81\x96\xe7\xfb\xc8\x20\x58\x8a\x65\x9a\xf2\xd8\x11\x69\x2a\xe6\x15\xab\xd2\x0a\xbc\x50\x4c\xa9\xaf\x15\xe5\x26\xf6\x16\x52\x94\x9d\x65\x9a\xe2\x42\xf9\x22\x44\x46\x9c\xeb\x06\x11\xb1\x30\xf0\x2f\x81\x1d\xd7\x72\xb0\x50\xf3\x63\x11\x63\x53\x4b\x2a\x16\x30\x34\x48\x52\x81\x0b\xbc\x58\x26\x33\xa9\x4a\x91\x14\x5a\x58\xed\x41\xba\x0a\xb9\x5a\x36\x24\x75\xee\xc5\xd3\x20\xca\xc8\x4b\x16\x9e\x2f\x19\x22\x5f\x0c\xc5\x42\x2e\x7a\x00\x04\xe7\x92\x28\xf5\x66\xbe\x00\xbc\x09\x0f\xb9\x9f\xf2\x71\x5b\x0a\x58\xe2\x0b\x14\x7a\x1f\x05\xeb\x1b\x2a\x7e\xcc\xc7\x41\xcc\xfd\xf4\xdb\x32\x0e\xd0\x18\x7c\x4b\xc5\x25\x8f\xbe\xcd\x02\x9c\xce\xdc\xbb\xfd\x26\xf5\xc7\x0f\xbd\x60\x9e\x7c\xd3\x38\xc4\xf9\x45\xc5\xaa\xf4\xbc\x14\x66\x12\x7b\xd1\x18\x89\x4c\xc5\x20\x8d\x25\x95\xc9\xf2\x3c\xd1\xbf\xe3\x4c\x58\x3b\x31\x8e\x1a\xa4\x1c\xc0\xbd\x50\xea\xea\x61\x10\x71\x2f\x3e\x89\xc5\x34\x96\x0a\xe6\x2d\x53\xd1\x16\xfe\x32\xd1\x52\xa7\x98\x24\x96\x29\x08\x5c\xfe\x74\xe2\x8d\x95\x98\xf8\xb3\x20\x1c\xc7\x28\x1e\x22\x9d\xe1\xba\xc9\x15\x3d\x51\x56\xe4\xc4\x5b\xf0\x58\x3f\x84\x12\x4b\x12\xfb\x92\x5f\x4a\xb1\xbd\x30\x55\xfe\x48\xae\xa6\xc4\xc0\xb2\xe7\xcc\x53\x55\xac\xca\xc5\x32\x49\x83\xc9\x4a\x4f\xa3\x9b\xf2\x39\xaa\x16\xb2\x53\x2e\x49\x26\x79\x38\x0f\x21\x00\x85\xb2\x1b\xfe\x6c\x19\x5d\x26\x68\xa7\x44\x8a\x74\x8d\x97\x7e\xaa\xa4\x54\x59\x63\x4d\xec\x24\xe4\xb7\x38\xe5\x31\x72\xdb\xcb\x44\x54\x91\x90\xd3\xb7\x90\xec\x38\xe4\x13\xe3\xa9\x1f\x4c\x67\x6a\x2d\x3f\x21\x8a\xaf\xf0\x7b\xb1\x08\xa2\x69\x52\x69\x56\x56\x1d\x4a\xa9\x25\x06\xd4\xf5\xa8\xe5\x52\xba\x64\xd6\x13\x46\xd9\x35\x63\xeb\x4f\x57\x8e\xf5\xca\xa1\x2c\x76\xf0\xe9\xb9\x63\x05\x8c\xb2\x17\xf2\xe9\x86\x59\xbf\x31\xca\x6e\xb3\x7e\xaf\x18\xed\xbc\x91\x4f\x9c\x59\x9f\x29\xe5\x16\xa3\x2c\x64\x16\xa3\x94\x9d\x58\x1d\x04\x62\x94\xa5\xec\x14\x1e\xba\x7d\xcb\xa5\xec\xc3\xc0\xe2\x94\x4e\x1d\xeb\xca\xa1\x6e\xe8\x20\x6c\xdf\x84\x3d\x46\xd8\x13\x84\x3d\x55\xb0\x22\x87\x45\xbc\x57\xf0\x9b\x2d\x9c\x1e\xc2\x1e\x21\xec\xb1\x82\x7d\xd2\xca\x60\x8f\xe0\xf5\x73\x84\x7d\xe6\x1c\x20\xec\x21\xc2\xf6\x14\xec\x6f\x39\xec\x21\xbc\xbe\x41\x1a\xae\x59\x17\x61\x3f\x20\xec\x81\x82\x9d\xb7\x33\xd8\x0f\x26\xbd\x1d\x84\xdd\x47\xd8\xae\x82\xbd\x61\xf4\xe0\xdc\xea\x51\xda\x63\xd6\x19\xa5\x89\xc3\xac\x1e\xed\x5c\x30\xe4\xd2\x67\xe4\xd8\x80\x59\x1d\xca\x22\x7c\x43\x7b\x6d\xab\x43\x5b\x57\x8e\x75\x40\xdb\xaf\x1d\x84\x1a\xb8\xd6\x31\xed\xae\x1c\x6a\x75\x29\x7d\xe9\x1c\x22\x58\xcf\x9a\x3b\x94\xf5\x8f\xd4\xc3\xa5\x43\xe9\xa5\xc3\xac\x03\x4a\x7b\xc0\x43\x77\xc6\x4e\xe1\xe1\xe0\x83\x75\x4c\xe9\x80\x5a\x1d\x7a\xe5\xfc\x0e\x08\x7a\x07\x6a\x95\x3c\x3a\x73\x5e\x3a\xd6\x80\xd2\x27\x0e\x50\x40\x4f\xad\x2e\x65\xaf\xe5\x0a\x4f\x9d\x16\xfc\x99\x49\xa2\x8e\x25\x9d\x6d\xf8\x77\xe8\x5a\x07\xd4\x9d\x00\xaa\x03\x80\x61\xfb\x30\xc2\xb1\x75\x40\x3b\x43\xc4\x3f\x06\xa8\x03\x1f\xfe\xed\x8d\x01\xef\x86\xdf\x43\xeb\x94\xb2\x0b\xf6\x09\x1e\x84\xc3\x10\x83\xfc\x17\x59\x88\xcb\xc4\x42\x60\x02\xa3\x4c\x72\xd2\xdb\x80\xc4\xa3\xf4\x0c\x98\xce\x9e\xb1\x8f\xd0\xe4\xb9\x56\x97\xba\x33\x07\x31\x71\xa4\xa3\x6b\xf9\x94\xfa\xb0\x26\x74\xee\xe0\x04\x7a\x7d\xeb\xb3\x35\x65\x6c\xe6\xc6\x2d\xeb\xaa\x47\xbd\x63\xe0\xc1\x00\x71\x7a\x20\x27\xec\x85\x83\x93\x06\x2a\x0e\x8f\x91\xa5\x0c\x58\x73\xd4\xb7\x06\xb4\xdb\x41\xe8\x01\x34\x8c\x73\xb0\xb6\x02\x3b\x80\xf5\x1f\xe0\x9a\x01\xba\x9c\xaf\x4a\x73\xe6\x0c\xf9\x1a\x31\x66\x9d\xe2\xca\xbb\x94\x3e\x95\x74\x3d\x73\x5c\xe8\x79\xa6\xf8\xbf\x2f\xf9\xdf\xb1\x3e\x53\xd7\x24\xe8\xc4\x20\xe8\x18\x26\x3a\x77\x80\xed\x7f\xa0\xd8\x9d\x30\xeb\x13\xb2\xcc\xa7\x8c\xee\xe7\xe4\x1e\x48\x72\x91\xc1\x03\x3d\xee\x19\xca\xdd\xad\x5c\xe9\x41\xdf\x3a\xa0\xad\x15\x0c\xd4\xf9\x08\xb3\xa3\x9f\x70\x41\x24\xdd\xfb\x4f\x1d\xcb\xa5\x9d\x67\x0e\x55\xa3\xbb\x74\x5f\x60\xd3\xc2\xa1\x56\x8f\xba\x7d\xc4\xd8\x45\x79\x5d\x4a\xb1\x9d\x3a\x1f\x90\xdd\x48\xea\x75\x0b\x07\xef\xa2\x84\xa0\x98\x1e\x58\x4b\x87\xd2\x1b\x09\xd4\x81\xa9\xbd\x60\x07\xc8\x14\xf8\x7d\x62\x25\x0e\x60\xb2\x8e\xa9\x7b\x2b\xe5\xfa\x40\xce\x19\xf0\x9c\x52\xa5\x37\xa7\x94\x4d\x24\xb2\x2e\x75\xa5\x20\xca\xd9\x80\x90\x4a\x01\xd2\xef\x32\x06\x46\x28\xf3\x03\x60\xd7\xb0\x83\xcd\xbe\x92\xee\x53\x58\xab\x95\x43\xdd\x97\x8e\x75\x4a\x5d\x17\x75\x0b\x28\xee\x5e\xc3\xd8\xd4\x3f\x82\x7f\x97\xec\x09\x28\x85\x1b\xba\x2d\x93\x2c\x90\x5b\x49\xd6\x18\x10\x9d\x1d\xc3\x6f\xf7\xc4\xea\x51\x76\xed\xe4\x98\x5e\xe0\x6a\xf9\x87\xf0\x6f\xc2\x7e\x83\x25\xe8\xce\x40\xc1\x5b\xf4\x0f\xec\x7d\x82\x82\x83\x8b\xca\x26\x1d\xa4\x09\x65\xe5\xf4\x03\x4c\x29\x75\x0e\x10\x57\x88\xa3\x9e\xe0\x80\xa7\x73\xe4\x77\xe0\x44\x80\xcd\xfd\xee\x04\x0e\x62\xfa\x5d\x49\xf4\x31\x3d\x88\xe5\x9c\x05\x2b\xc9\x41\xe4\x58\x1d\xda\x81\x86\x36\xa5\x46\x27\x60\xfb\x04\xb5\x73\xd0\xb2\x7a\x34\x70\xce\x11\xfc\xca\x29\xf5\x5f\x40\x7f\x36\xa6\x99\x04\xb1\xe1\xa9\xe5\xd2\xc9\x01\x72\xfa\xa3\x12\x96\x1e\x9d\x3a\xc8\xba\x9e\x6f\x4a\x09\xe0\xba\x90\x5a\xef\x9a\x72\x71\xe3\x50\xba\x32\xe4\xe2\xe5\xbf\x41\x2e\x8a\xcb\xfb\xe2\xdf\xb9\xbc\x2f\x9d\x46\x0b\x11\x3b\x60\x19\xa7\xec\xd6\xc1\xd5\x76\xad\x0e\x6d\x38\x37\x0e\xd8\xfb\x27\x8e\xc0\x7e\xb1\x23\x45\xf1\x02\x08\x7c\xe3\xbc\x46\x7f\x75\x78\x58\xd0\xf8\x4f\xf4\x95\x33\x08\x9c\xbf\x43\x30\x06\xd6\xf4\x03\xbb\xee\xbc\x94\xf4\x27\x99\x83\x92\x6b\xe1\x53\x36\x63\x0c\x1c\x2e\x73\x5f\x4b\x4e\xa3\xba\xf4\x2e\xa5\x30\xb5\x2c\x4e\x3b\xa9\xf3\x14\x9f\xce\xa0\x13\xba\x03\xe1\xbc\x31\x80\x6f\x9d\x5f\xc1\x32\xb4\xf0\x15\xa3\xb8\x8e\x33\x6c\x01\x83\xcd\xce\xd0\x78\xfc\x1e\x30\xe9\x08\x60\xa1\x3e\x5e\xc0\x03\x43\x23\xce\x5c\x74\x6c\xec\x12\xdf\xe3\x9c\x5a\xe0\x76\x2f\x9d\x16\x62\xa2\xd2\x80\xa1\xf4\xcc\x65\xef\x88\xc9\x07\x04\xee\x75\x81\x86\x90\x3d\x41\x67\xbd\x42\xd6\xdc\x32\x8c\x6b\x14\xe6\x12\xe2\xcf\x92\xa3\x6a\xe1\xcf\x60\x5e\x3d\x14\x52\x04\x96\x73\xc4\xf1\x1b\x2d\x90\x88\x8e\xf5\xdc\x81\xb0\x02\x5d\x14\xb7\x3c\xea\x5e\x28\xbc\xbf\xb6\x36\x23\x06\xa7\xef\x02\xe2\x4f\xa8\xe7\xa7\xa7\x60\xaf\x2f\x5a\x6b\xf8\x2f\x5c\x89\xff\x57\x47\x46\x06\x88\x7f\xd9\xa2\x9d\xc8\xd9\x32\xc0\x01\x38\xba\xcf\xc0\x90\xd4\x59\x43\x17\x2a\x74\x53\x66\xa0\x4b\x18\x3d\x48\x9d\xe7\xad\x35\xee\x5d\xe2\xbf\x33\x93\x87\x17\x8a\x87\x01\x40\xb3\x59\xeb\x2f\xf3\x90\xb9\x9a\x85\x73\x46\xd9\xbe\x26\xc9\xa1\x6c\x72\x80\xaa\x8c\xe1\x55\xe2\x00\xc7\x3c\xf4\x85\xbd\x8e\x35\x75\x68\x67\xa6\x10\x05\x5b\x86\xfd\x59\x0e\x0b\x93\x25\xaf\x1c\xda\xfd\x6b\x1c\xbe\x34\xd1\x2d\xdd\x1c\xdd\xa5\x6b\xa0\x3b\x00\xe6\xad\x1c\x4a\x0f\xf6\x0d\x52\x3f\x59\x83\x1c\x77\x71\x7a\xcc\x95\xd1\xa1\xf5\x99\xb2\xa3\x23\xa3\x8f\x0f\x6a\x02\x03\x9e\x2a\x87\x4e\xcf\x1a\xd2\x70\x4d\x5d\x65\xf7\x20\x24\x5a\x97\xe0\xef\x8a\xe0\xc4\x24\x78\xee\xd0\xb3\x0b\xb6\xd2\x3d\x3b\x94\x1d\x4a\x21\x70\xad\xc0\xa1\xee\xd1\x85\xbb\x6e\x07\x84\x03\x7d\x03\x67\x98\x99\x29\xea\x83\x90\x34\xd4\x12\x7d\x0e\x8d\x4e\x17\xce\x13\x50\x5d\xf7\xc3\x05\xd3\x96\xee\x8c\xb2\xdf\x67\xce\x66\xfb\xc2\x16\xce\x6f\x08\x78\xaa\x7c\xc3\xd4\xa1\x3c\x06\x5b\x79\xca\xc1\x42\xf5\xcf\x2e\x60\x7e\x9d\x99\xb4\x94\x1f\xac\x1e\xdd\x9f\x3a\x5d\x25\xb7\xc7\x20\xc4\x7d\xeb\x94\x1e\x1f\x5c\xe1\xac\x57\x18\x99\xbc\xee\x7c\x97\x46\x0e\xbd\x54\xe8\x4c\x90\x9d\xf0\x7b\x38\x75\x20\xa6\xf4\x5b\x6a\xce\xa7\x32\x78\x73\xdf\x38\xe3\xdc\x03\x71\x04\xdf\x37\x41\x3a\x94\x7d\x57\xd1\x1b\x48\xdb\x47\x19\xdc\x01\xcb\x93\xce\x73\xe7\x08\x86\x9e\x3b\xe0\x1a\xd8\xcb\xfd\x17\x2d\x6b\xc5\x20\xfe\x54\x2e\x74\x2c\xc3\x3d\x1d\x2b\x75\x28\x5b\x68\x0b\x0c\xbe\x12\x0c\xf7\x91\xa4\x67\xde\xb2\x06\xd4\xed\x87\xf8\xe4\x5e\x62\x44\x35\x88\xb2\x77\xa7\x68\x1c\xba\xe8\x5f\x21\xc2\x8f\xd1\xe6\x46\x8e\x72\x8c\x1d\xf0\x62\x38\xe9\x53\xd8\xe2\xe0\xaf\xb3\xec\xd7\x31\x65\xfb\x28\xa0\xae\x00\x87\x4f\x4f\x63\x89\xf7\x4a\x8e\x22\x67\xb8\x90\x23\x5f\xb5\x80\x03\x9f\x53\x09\x91\xb4\xac\x4f\x10\x31\x74\x40\xc7\x65\x2f\x37\x69\x01\x1b\xf9\xb5\x84\x58\xb6\x40\x71\xa6\x18\x2a\x44\x4c\x35\xde\xb4\x60\x2d\x59\x5f\x3e\xba\x1a\xe6\x36\x7b\xcb\xa9\x9b\xea\xc7\x15\x8c\xc8\xfa\xf2\xc9\xbd\x41\xe3\x7f\xf6\x3d\x7b\x37\x80\x98\x5f\x3d\x3e\xc5\x9e\x7d\xf9\x04\x93\x41\xf2\x81\x9f\x71\x06\xe0\x83\x2f\x04\xc7\x03\x21\x1f\x73\x8f\x90\x5d\xd6\x01\x3d\x46\x66\x7d\xe8\xc2\x46\x8b\xb5\x25\x67\x5d\x8c\xec\x8f\xaf\x40\x19\x3a\x1f\xb0\x6d\xc1\x86\xd6\xdc\x5c\x42\xb9\x0b\x76\x56\x08\x13\xb3\x3c\x9a\xea\x5e\x60\x90\x71\x7a\xe9\x2a\x6b\x28\xa1\x07\x8a\xa4\xae\x32\x8f\x1d\xea\x3e\x63\x20\x00\xfb\x19\x62\x0a\x1b\xec\x9e\x44\xff\x1a\xf1\x2b\x2f\x7e\xd6\x00\x1a\x87\x32\x16\xe9\x5d\xb5\xad\x33\xda\x39\x8a\x61\x03\xd1\x72\x65\xdb\x2b\x50\x1f\x86\x9b\xc5\xee\xf7\x42\x60\x73\xe9\x68\x80\x33\xea\xca\xa0\x44\x43\x40\x20\xd3\xbd\x76\x20\xec\xb4\xe6\x87\x2c\x61\x43\xd4\xb1\xa9\xbb\xae\x64\x13\xa9\x64\xdc\x54\xb2\xc8\x41\x2d\x9b\x82\x08\x35\x18\x2a\x54\x80\x51\x85\x3b\x43\xa9\x6a\xe3\x44\x02\x10\xcf\xde\xad\xe9\xd9\xaf\xdc\xa2\x91\xc5\x68\x91\xa2\x02\x33\x65\xf1\xce\x28\x1b\x3f\x63\x86\x93\x7a\x83\xfc\x18\xfe\xc6\xa4\x4a\xa3\x53\x57\x46\xf3\x79\xc9\x29\x4c\x9d\x6b\xc5\x63\x30\x5f\x2f\x9c\x0f\x3f\x44\xf3\x80\x5f\xeb\x48\x4c\x9f\x28\xfd\xd4\xce\x5d\x5c\x57\x7a\x05\x20\x58\xe4\x14\x37\xd6\x1d\x4e\xda\x91\x06\x37\x00\x37\xca\x94\xc1\x0d\x18\x75\xaf\xb7\xc5\x0c\x2b\x85\x6f\x20\x83\x26\xf5\x9b\x35\xca\xde\xc7\xbf\x45\x9d\x3d\x86\xcd\x99\x7b\xad\xde\x2e\x5b\x25\x07\x32\x87\xbd\xa1\xda\xf7\x84\x39\xa5\x47\x7d\xed\x37\x59\xdf\x95\x33\x84\xa0\xe3\xe3\x69\xe6\x51\xae\x9d\x43\xc0\xcc\xce\x0d\x57\xc0\x8e\x5e\x4a\x03\x3e\x77\x40\x8f\xaf\x9c\xb9\xb3\x94\x0b\x38\x03\xba\xdc\x67\xeb\x1e\xf2\x7b\xee\x21\xe9\x65\x36\x7f\x87\x7d\x78\xe9\x3e\x6d\xc9\xf8\xef\x0d\xc2\x7f\x02\x04\x17\x0c\x03\xc7\x81\x8b\xe3\x0c\xdb\xbf\x62\x50\x0f\xf1\x87\x4b\x4f\xdd\xd7\x20\xf0\xfd\xf6\xab\x36\x90\x4d\x01\xe2\xd8\x7d\x03\x6d\x27\xed\xdf\xda\xe0\x37\xe8\x05\x00\xf6\x5c\xd4\x9d\xa3\xf6\x2b\xd9\xfb\x12\x1a\x0f\xdc\x06\x40\x1e\xb6\x9f\xb4\x51\x51\x70\x80\xae\x8b\xaa\xfd\xa1\x3d\x07\x53\xd3\xe9\xbc\x42\x4b\xdc\x9a\x75\x40\x2b\xdb\x01\xec\xc2\x3b\xee\x05\x3c\xb5\xdb\x97\x1d\xeb\x13\x1d\x4e\xc1\x95\x7c\x7a\xe3\x84\xd0\xf8\xfb\x6f\x8e\xb5\xea\x50\xef\xa5\x33\x87\x47\x7a\x8c\x36\xc5\x07\xae\x7d\x77\xa4\xa3\x3f\x46\x43\x8b\xf1\x34\x7d\xc5\xc2\x96\x64\x35\xfc\x33\x97\x9a\x08\xe1\xe3\x0b\x57\xee\xcc\x9f\x21\x43\xce\x14\x0f\x71\x09\x7b\x94\xfa\x38\x7b\x1a\xc8\xa3\x84\x4f\xf2\xed\xa0\x10\x56\xd0\xa9\x33\x04\x7b\xb2\x68\x1b\x4a\xd6\x37\x40\xb8\x74\xb0\x4a\x12\x28\x53\x51\x93\x34\x4c\x20\xda\xea\x27\x52\x07\x3f\xaf\x95\x33\x73\x29\x6b\xb8\xa1\x83\xce\xef\x29\x52\xfc\xe9\x02\x95\x57\x59\xb7\xde\x0b\x6c\x9c\x3a\x92\x75\x8b\x96\x9c\xf6\x6b\xb6\x21\xc0\xc1\x37\x1f\x8c\x17\xcf\xc1\x88\xb3\x18\xbd\x20\xa3\x5d\xb0\x36\x87\x20\x86\xf4\x74\xa1\x18\x75\xe5\xe0\x9e\xa0\x14\x43\xce\x94\x4c\xdd\x38\x79\x0c\x79\xd3\x32\x63\x48\x76\x94\xec\xe7\x81\xc9\x19\x18\xe7\x90\xb5\x41\x00\x2e\x99\x40\x46\x86\xec\x0f\x88\x8b\x21\xe0\xe8\x40\x80\x42\x2d\x8f\x3e\x65\xcf\x1c\x39\xbb\xc0\x11\x2e\x3a\x33\xc0\xf5\xc6\x89\x31\x40\xf0\x80\xcc\x73\x06\x92\x0f\x7e\x0d\xb7\x2b\x17\x2d\x69\xd7\x3b\xd4\xef\x5e\xa1\x52\x44\x6d\x6a\x86\x19\xcf\xe5\xe9\x1c\x3c\x7c\x48\x15\x53\x8f\x29\x1b\xea\xf6\x0e\x75\xfb\x7f\xe4\x61\xc6\x8c\xe5\xf1\xc4\x2b\x79\x0a\x07\x81\xd3\x90\xe5\x20\x0d\x5c\x31\x8c\x48\xff\x98\xb6\xd4\x81\xa3\x07\xc4\xe0\xbe\xcf\x5b\xb4\x4a\x41\xca\x0b\x67\x8e\x9e\xd9\x8f\x1f\x8c\x70\x5e\x49\x73\x02\xd4\x9d\x1c\xe8\xdd\x1d\xfb\x78\xd1\x5a\x27\xda\x45\x03\x82\x54\x7c\xa6\x4f\x5a\xad\xef\x4c\x06\x3b\x0b\xa7\x62\x55\x26\x41\xc8\x2b\x4d\x4c\x45\x05\x7e\xe3\x22\x69\xe4\xd9\xdf\x9d\xa9\xcc\x21\xd9\xde\xeb\xe7\x2f\x9f\xfd\xea\x3f\xb7\xf1\x94\x5c\xa6\x6f\x55\xee\x59\x9f\x75\x37\xbf\x54\x82\xf9\x42\xc4\x29\xb9\x23\x79\xd2\xd0\x22\xc5\xf4\x26\xb9\x27\x93\x58\xcc\x49\x35\xe6\x9e\x9f\xee\x04\x51\x1a\x56\xdf\x8e\xa2\x51\xc4\x6f\xb1\x2f\x66\x33\xc9\x63\xd2\xbd\x64\x8f\x54\x2f\x65\xc2\xc6\xc6\x7c\xa4\x1d\x8a\x69\x10\xd9\xd7\x5e\x18\x8c\xbd\x94\xdb\xf3\x20\x49\x82\x68\x7a\xa6\x52\x83\x30\xcc\xa3\x07\xd1\xc9\xe2\xc7\x0e\x72\xe2\x25\xc9\x8d\x88\xc7\x0f\x0e\x22\x53\xcd\xdb\x50\x4e\xbc\x20\xe4\xdb\x10\xac\xa7\xa5\x33\x34\x1a\xcb\x2c\x4d\x17\x76\xc4\xd3\x1b\x11\x5f\x62\x7e\xf0\x21\x54\xdb\xd3\xd8\xeb\xe4\x21\xe2\x25\xa0\xc2\xd4\x95\xca\xfe\xf1\x01\xa6\x2e\xff\xcc\x20\x1b\x96\xee\x81\x31\xb8\x94\x8f\x46\x83\x0c\x55\xde\xdc\x3b\x0f\x39\xc1\x7e\x44\x65\x9e\x13\x7b\x14\xc9\xe1\xcd\xdc\x3a\xd9\x2b\x09\x5f\xed\x6e\x14\x11\xf2\xe5\x31\xd2\xf5\xb5\x49\x10\x98\x90\x60\xdc\x7c\x94\x3c\x5a\x12\xbc\x98\xb7\x6f\x92\xaa\x1b\xa5\x3c\x26\x5e\x44\x74\x8e\xba\x0a\x80\xf7\xd6\x0f\x49\xd1\x32\xf8\x78\x52\x74\x8f\x1f\x90\x42\x16\x5a\x5a\xb7\x50\x22\x05\x75\xfb\xb8\xf2\xfd\xb6\x51\x0e\xc5\x54\x44\x44\x8a\xb3\x4d\x4e\x42\xee\x25\x9c\x5c\xf3\x38\x98\xac\xc8\x4a\x2c\x63\xe2\xc7\x7c\xcc\xa3\x34\xf0\xc2\x84\x78\xd1\x98\xa4\xf1\x8a\x78\x53\x2f\x88\xec\x75\x82\xd6\x05\x7f\x13\x59\xeb\x50\xdb\x88\x3b\x92\x0a\x22\xc5\x27\xa3\xce\x9f\x71\xff\x52\x11\x27\xe5\x32\x10\xd1\xe3\x68\xdb\xae\x49\x5b\x09\xdd\xde\x65\x1b\xd5\x67\x99\x66\x10\xc0\x40\x74\x05\x41\x93\xdc\xc9\x0a\x82\xfb\x7f\xe7\x54\x36\x2a\xc3\xc3\x3d\x1e\x31\x11\x3d\x07\x82\x25\x1a\x6a\x26\xfc\x5e\xd2\x36\x8a\xee\xeb\x5a\xed\xd1\x98\x91\x9b\x20\x9d\x11\x59\xd3\x62\xe7\x26\x27\xf4\x92\x84\x14\x2a\x63\x08\xc7\xa7\x44\x75\x43\xba\x65\x37\xb2\x47\xb2\x12\x18\xc4\x4d\x88\x51\x3b\x53\x53\xa6\xc4\x52\xd0\x75\x3d\x65\x2c\x9f\xd1\x6f\x81\x28\xe4\xc3\x84\xd4\x70\x00\x7b\xad\x92\x86\xfc\xb2\x67\x0c\x94\xa1\x21\x64\x0b\x7c\x2d\x9d\x05\x89\x55\x9c\x84\x1e\xe6\x5e\xfe\x01\x08\x3b\x9b\x84\xfc\xf1\x56\xf3\x49\x71\x29\xab\xe8\x20\xa9\xc8\xac\xa0\x36\x93\x29\xbf\x4d\x4b\x1c\x9c\x2c\x23\x29\x1a\x66\xbd\x4f\x86\xa4\x86\x95\x3e\x8a\x78\x69\x59\xef\x24\x2e\x8b\x80\xcf\x26\xf7\x64\x8f\x20\x8c\xe2\x24\x30\xe4\x17\x04\xc8\x66\x1c\xf3\x74\x19\x47\x24\x5a\x86\xa1\x26\x36\xc7\x16\x8c\xc9\x9e\x52\xc2\x60\x4c\xde\xe7\x3f\x9b\xea\xa7\x62\xf8\xdb\xbc\xcb\x5a\x95\x11\xd9\x23\xb2\xca\xc8\x96\x35\x46\xb5\xbb\x7b\x2b\x17\xd4\x2d\x22\xb8\x36\xa6\x42\x4b\x9a\xf9\xa2\x49\xf5\x28\xf8\x92\x2f\xc1\xf8\x6b\x5d\xcd\x55\x4d\x0c\xf8\x60\x17\x8a\x9a\x6a\x6b\x24\x5a\x6a\x10\x25\x53\x6f\xd5\x7a\x15\x3d\xa6\xb1\x00\x64\xcf\x88\x9d\x6a\x1b\x97\x06\x90\x54\x2c\x1d\x6b\x61\xad\x91\x0a\xa9\xf0\xb7\xf4\x96\x59\x24\x56\xaa\x4e\xca\xc2\x2f\xdb\x6e\x98\x65\x7c\xd0\x2b\xeb\xb3\xb9\xd4\xc9\xec\x8a\xc5\x7d\x66\x1f\x60\x4b\x41\x82\x91\xfb\x8f\xb7\x79\x8f\xb1\x29\xa3\xc8\xa0\x40\x56\x3b\x96\x26\x5b\xae\x90\xca\x49\x5e\xa3\xf8\x9f\xc4\x4b\x08\xd6\x9a\x65\x20\xf8\x54\x08\x46\x33\x1d\x31\x4b\xd5\x6a\xa6\x94\x2b\x51\x50\x42\x07\x18\x9a\x12\xab\xdd\x77\x99\xdb\xfd\xe8\x16\xbc\x11\xf6\x44\xe1\x2a\x09\x82\x31\x90\xae\x7a\xab\x3d\x62\x84\x81\x3b\xfc\xb6\xef\x1e\x1e\x1e\xff\x00\x67\x5e\x3c\x57\xc3\xd5\x2e\xe9\xb5\x2a\xa3\xb3\xb2\x08\xc5\x22\x46\x11\x1d\xaa\x3a\x76\x2b\x8a\xff\x03\x73\x46\x9a\xd4\x9c\x95\x75\x57\x63\x90\xbd\xbd\x3d\x92\xc6\x4b\xae\xde\x66\x23\x2a\x65\xcd\x87\x55\x2d\x38\xf0\x83\xd3\x33\x2b\xfb\x4a\x4c\xd3\x30\x35\x5d\xee\x67\x11\x5d\xed\x97\x59\x29\xfd\xaa\x66\xb2\x5e\x6b\x7a\xce\xa3\x49\x28\x6e\x2c\x82\x05\x81\xc8\x10\x8d\xa7\x56\xb7\x65\xd5\x60\xa9\x07\x18\xa7\xcd\x7a\x54\x2b\xa9\x64\xcd\x40\x5d\xd7\x86\x5f\x4d\x00\x35\xda\x5e\x88\x24\xad\x55\xed\x46\x80\x51\xd3\x24\xe0\x71\xe3\x9b\x52\x5b\x8b\xc4\x56\xee\x61\x54\xa5\x61\x33\x6f\x21\xa4\x7a\x20\x16\x5e\x24\x76\x0e\x64\x30\xb0\xf3\xfb\xa0\xdf\xae\x36\x49\xf5\x59\x55\xc3\x28\x27\x73\x5f\xb7\xd3\x19\x8f\x6a\x99\x5f\xde\x7b\x97\xe3\x49\x6e\x82\xd4\x9f\x91\xec\xa5\x2d\xc3\x8e\xba\x39\x92\x0f\xe1\xc7\xf3\xa7\x4f\x9b\x79\x13\x21\x8d\x86\x5e\x7a\xdb\x6c\x56\xf3\xcb\xd0\x8d\xbd\xd4\x7b\xbb\x86\xea\xd7\x32\xaa\x48\xa4\x04\x2c\x3d\x1f\xef\x04\xd1\x26\x84\x77\x66\x1b\xd1\x43\x37\xc9\xc4\x0b\x13\x2d\x52\xd9\x4b\x29\x99\x19\x0d\x8a\x7b\x5f\xaa\x97\x92\x63\x6a\x87\xb2\x83\x70\xd5\xaf\x66\xe7\x7b\x83\x56\xe5\x60\xca\xa4\x4a\xbb\x6f\x36\xa6\xb3\x58\xdc\x80\x41\x2e\x5a\xca\xda\xe3\xac\x64\x46\x67\xfd\xed\xcf\x2c\x1c\xf8\xe5\xc2\xa2\xc9\xf8\x24\x96\xbf\x0b\xeb\xf7\x17\xe8\x73\xb7\x90\xa7\x7f\x1a\x4a\x66\xd8\xa2\xac\x4b\xde\x47\x2d\xa3\x2a\x83\xb5\x55\x11\x6c\xad\x8c\xfc\xbe\x6e\x63\x55\xac\xb4\xc5\x85\x09\xab\x96\x35\x5f\xa0\xcc\xf6\xdb\xed\x44\x99\x60\xf9\x40\x6f\x7f\x60\x5b\x75\x01\xee\x8f\x4c\xcf\x26\x83\x63\x0c\x0b\x51\x92\x61\x76\x14\x96\x0c\xb6\x68\xe4\x7e\x48\x14\x1a\x16\x59\x08\xfc\x18\x3f\x72\x7a\xe6\x0e\x86\xb0\xb7\x3b\x6e\xb7\x1f\xe3\x4a\x14\x66\x53\x84\x7e\xec\x14\x24\x7a\xd3\x2b\x3c\xc6\xac\x6f\x9c\xc4\xa3\x98\x5b\xb4\xe6\xa5\x97\x05\x06\x95\xad\xfd\x03\xb6\xfb\xee\xfe\xf1\x16\x5a\x16\x1e\xff\x77\x35\xd1\xff\xdf\xec\xfd\xbc\xd9\x53\x02\x97\x13\x56\x0a\x8a\xfe\xcb\x18\xc2\x7c\xff\x81\x97\x0a\xcc\x23\x5d\x23\xc6\x3e\x89\xc5\x62\x68\x84\xd8\xb0\x5f\xdc\xc9\xa2\xec\x2c\x6a\x57\xc7\x14\xa5\x93\xe1\x98\x8f\x97\xb7\x85\xf8\x5e\xdf\x31\xc8\xc0\xe0\x71\x27\x98\x14\x90\xb5\x71\x3f\x96\xf2\xb1\xde\x50\x6d\x3b\x6f\x2e\xec\x76\x64\xa9\x7f\x06\xfb\xbf\xe7\x5e\xca\xe3\xc0\x0b\x77\x96\x41\xc3\x17\x31\x6f\x24\x08\x60\x8c\x24\x6f\x20\x6c\x85\x97\xaf\x0d\xf8\xfc\x56\xc4\xd6\x3e\x39\x88\xd1\xaf\x70\x07\x62\x6b\xd7\x02\x54\x61\x7e\xe5\xbb\x1a\xf9\x0e\xca\xb6\x1b\x0f\x5c\xc0\x2a\x30\xd5\xf4\x3e\x56\xd1\x32\x9b\xbb\x42\xdb\x6e\x14\xaf\x9c\x49\x4a\xa4\x51\x95\x1c\x24\x7b\x04\x6f\x53\x80\xa4\xca\xd3\xd8\xec\xfe\x47\x66\x12\xcd\x6b\x16\x4d\x09\x6e\xab\xbb\x16\xb5\x97\xf5\xfc\xe8\x4a\x5d\x07\x29\xf5\x1b\x8a\xc5\x7a\x27\xe5\x75\xf4\xdd\x8c\x26\x88\x03\x6c\xec\xaf\x79\xb5\xb8\xf3\x68\x92\x6a\x10\x85\x41\xc4\x77\xce\x43\xe1\x5f\x96\x0e\xa3\xe4\x71\x53\xe1\x5e\x4d\x76\xdc\x84\x8a\x60\x17\xee\xd6\xe8\x5d\x56\xe9\x7a\x4d\x2d\x33\x3f\x78\xae\x83\xa7\x28\xf6\xc3\x9e\x5e\x6f\xbc\x40\xe2\xf3\xee\x7a\x6f\xa2\xee\xe8\x58\x72\xb3\x84\xdb\x93\x1c\x73\xc9\xb7\xa9\x5b\x3c\x7a\x4b\x87\xa6\x27\x3b\xa1\xc9\xcc\x4e\x4d\x9b\x86\xdd\x35\xf9\x51\x08\xf6\xee\xd4\x8f\xfb\x77\xb9\x29\xbd\xd3\x2a\x2a\xb7\x99\x68\x72\x01\x39\xf9\xc7\x3f\xc8\x2f\xf2\xba\xa0\xb4\xbf\xb5\x5a\x1d\x25\xc0\xf4\x13\xbb\xe3\xe0\xfa\x5d\x31\x42\xdf\x35\xb4\x46\xdd\x24\xda\x1b\x55\x66\x2f\x47\x95\x9c\xab\xd0\xf0\x62\x54\x29\xf5\x24\x64\x77\xcd\x12\x04\xe3\xbd\x51\x45\xa7\x1d\x74\x62\x0b\xfc\x31\xac\xf7\xa8\x52\x3a\x29\xda\x1b\xe9\x0b\x54\xa3\xca\xbb\xdd\x46\x19\x5b\x99\x52\x43\x7b\x1f\x35\x89\x64\x79\x9e\x06\x69\xc8\x9f\xc1\x5c\xf4\xa5\x94\xbd\x3b\xb5\x94\x76\xa6\x15\xf7\x7f\x76\x62\x19\x86\x51\xa5\x8c\xa1\x7c\x28\xb6\x37\xaa\xac\xc4\x92\xcc\xbc\x6b\x4e\xce\x61\x8d\xe5\x16\x8b\x88\xa5\xb2\xec\x78\x9a\x2c\x83\x14\xe2\xf9\x3e\x08\xf1\x26\x8e\xff\x4d\x4c\x32\x6f\x81\xfd\xd9\xd9\xab\x83\x38\xdb\x0f\x45\xc2\x1f\xc5\x81\xcf\x62\x49\x7c\x2f\x22\xd8\x03\xf5\x87\xdc\x04\xd1\x18\x42\x03\x71\x63\xff\xad\xd3\xdd\x6d\x14\x45\xbd\x5e\xbf\x7f\x9c\x0e\x19\x2a\x94\xc7\x0c\xff\x09\x5d\x5a\xe7\xe7\xc6\x55\xf0\x45\x34\x09\xe2\xb9\xa1\x64\x8f\x58\x08\xb4\x7c\xe4\xce\x38\x0a\xba\xdf\xd4\x4f\x9e\xa8\xee\xdd\x99\x80\x4d\xc5\x21\xb3\xef\x06\x05\xfa\xaf\xa7\xcc\x9a\x91\x3f\xa7\xd4\x0b\x95\x11\x92\x9d\x51\xab\x41\xa7\xff\x06\x59\xfe\x7f\xa4\xbc\x92\xf0\x47\xcd\xf5\x24\x86\x40\x3a\x9d\x71\x22\xaf\x82\x92\x73\x8e\xc7\x6a\xa9\xc8\xe6\xbd\xd5\x96\xfd\x5d\x1a\x5e\x7a\x59\x08\xca\xd6\x91\x8f\x83\xeb\x4d\xc2\xa2\xa2\x9a\x75\x51\x21\x64\x57\x46\x95\xeb\x2f\xc0\xb9\x87\x22\x06\x49\xe4\xbe\x88\xc6\x5e\xbc\xda\xc4\x34\xb2\x69\x3c\xc9\xae\xfb\x4d\xd0\xea\x2e\xed\xde\x5d\x0d\x2f\xce\xa2\x99\xc1\xc0\x42\xee\x6c\x55\xeb\x86\xae\x1b\x68\x7f\xbc\xdf\x0a\xa6\x91\x58\xa6\x72\xaa\x76\xe8\x9d\xf3\x70\xf3\x5c\x36\x08\xc1\x20\x97\xf0\x1f\xae\x1d\x92\xa4\xe2\xf4\x0d\x2b\xbf\xc1\x80\x36\xb6\x2f\xe8\x03\x16\x7d\x77\x2d\xb4\x56\x70\x85\xd0\xae\xc0\x51\x1d\xdf\xe1\x93\x5d\xbc\xb6\x5c\xcb\x37\x6e\x0f\x44\x8f\xd9\xc9\x86\xdc\x22\xe7\xdb\xc6\xc2\x0e\x51\xc7\x8f\xea\x1e\xf4\xb6\xc0\xb1\xbc\x9b\x96\x9b\xd6\xd2\x1e\xfa\x71\x81\xac\xfc\x4f\x8d\x67\x2f\x96\xc9\xac\x56\x6d\xa8\x95\xaf\x6e\xd8\xe1\x17\x92\x9c\xc5\xef\x54\x2c\xb2\xcd\xe5\x9e\x8a\xb3\xa5\x40\x37\xf3\x6d\xa7\x2d\x64\x76\x30\x48\xfa\xfc\x6a\x19\xc4\x7c\x6c\xc9\x39\xa1\x97\x58\x07\x54\x6f\xf5\x0c\x4c\x80\xc9\x32\xf2\x8b\x78\xb2\x69\x3c\x38\xe0\x28\xba\x37\xf6\x40\x73\x6f\x81\xc7\x48\x43\x81\x17\x89\xc9\x1e\xd1\x67\x68\x7a\x59\xb2\x25\xc9\x22\x79\x04\x28\xe6\x18\x8a\x67\x6d\xc5\x0c\x89\x99\xbe\x52\xfa\xa1\x37\xd8\xb5\xd2\xf0\xf5\x5a\xbe\xf5\xad\xc9\xed\x59\xbd\x56\x60\x72\x5d\xe5\x1a\x15\xbe\xbb\x0c\x63\x9e\x57\x2b\xc0\x57\x0b\xe0\xd9\x51\xde\x43\x09\x0f\x73\xda\x31\x2c\xe5\xbd\x91\x50\x46\x10\x5b\x5e\x9e\xcf\xe4\xad\xd1\x20\xc3\xe3\xd6\x71\x2d\x14\xd1\x34\x09\x39\x5f\xd4\x9b\xe4\xa3\x2a\xc7\x22\x12\x56\x05\x07\xef\xd5\x9e\x46\x61\x20\x7b\xc4\x44\x58\x50\x3f\x9e\x12\xf3\x6a\x3e\xd9\xc3\x84\x0f\x82\xe8\x73\x35\x68\xc8\xb7\x5e\xe0\x58\xab\xc2\x5b\xa6\xb3\x6a\xd3\x6c\x82\x99\xf0\x28\x2d\x36\x8a\x60\xec\x57\xb3\x93\xb2\xd8\xc6\x2b\xfb\x19\x39\xf2\xe9\x5f\xff\x22\xd5\x6a\x7e\xfc\x63\x67\x9f\x04\xc8\xe0\xf2\x16\x09\x8b\xc7\x6d\x49\x18\x44\xe9\xce\x38\x48\xbc\xf3\x90\xef\x40\x90\x45\x7c\x6f\xce\x43\x18\x38\x47\x66\x7e\x53\x20\xc3\x57\x68\x54\x28\x1f\x8d\x33\x5f\x9e\xc2\x07\x0a\x0a\x56\x21\x2e\xbe\xcb\x06\x2e\xb4\xfe\xc4\x98\xf7\xeb\x83\xab\xaf\x21\x94\x86\x55\xad\xd9\x80\xea\xf9\xaf\x0d\x65\x7e\x6e\xa1\x30\x5e\xa3\x41\xe8\x78\x4c\xbc\xf1\x18\x0f\x17\xbc\x90\x20\x8c\x3a\xad\x91\xdd\xf4\x99\x3c\xe0\x9b\x06\xd7\xdc\x4c\x5e\x69\x79\x78\xb2\x47\xaa\xa4\x4a\x9e\x90\xf5\xf1\xca\x96\x91\x90\xf3\x98\x7b\x97\x99\x89\x2e\x1f\xc6\x96\x64\xb9\x5c\x82\x01\x93\x32\x41\xf2\x92\x0d\x7b\x22\x7b\x98\x6f\x8b\x47\x10\xf2\x50\x38\x3b\x06\x2c\xeb\xfa\x96\x73\x73\x71\x7e\xa1\x06\x11\xe7\x17\x7a\x07\x43\x7a\x5e\x3a\xb3\xe5\xa7\x2a\x6a\x75\x5b\x7f\xaa\xa2\xf6\xe2\x55\xdd\xce\x3e\x56\x51\x7b\x5d\x2a\xbb\x10\xe7\x17\xdb\x72\x06\xe3\x00\x93\xc9\xb5\xa4\x98\x2e\x48\xec\x98\x2f\x42\xcf\xe7\xb5\xc6\x68\x34\x1a\x35\xa6\x56\xb5\x51\xad\x9b\x8d\x8d\x2f\xff\xa7\xf1\xf5\x9f\xff\xb3\x61\x91\x6a\xb5\x5c\xa4\x91\x61\x07\x8f\xc3\xe3\x74\xd5\x8e\xc5\x5c\x5a\xcd\x19\xe7\xa9\x62\xa4\x88\x2d\xe2\xa5\x69\x1c\x9c\x2f\x53\x6e\x11\x2f\x39\xeb\x1f\xee\x61\xd6\x51\xd1\x02\x26\x06\xcd\xd2\xdb\xcc\xe0\x40\xf7\xfd\x98\x4f\xd4\xfc\x68\x1c\x7b\x68\x9c\x52\x91\xae\x16\xdc\x4e\xc4\x9c\xdb\xbe\x17\x86\xb5\xb1\xf0\x97\x73\x88\x05\xd0\x4a\x0f\xa0\x5f\x62\xe5\x59\x10\x44\x94\x1f\x2a\xc5\xab\x5c\x3a\x15\x07\xb6\xa3\xc6\xbe\xb6\x9f\x24\xfd\x65\xc8\x4d\xa4\xf1\x32\x2c\x8a\x79\x46\x2e\x88\x07\xf6\x9a\x49\xda\x35\x40\x2e\x55\x22\xc6\xed\x29\xa0\xb0\x75\xcb\x90\xdf\x16\xad\xc3\x23\x88\x93\x08\x60\xce\xe6\x6c\xe1\xb9\x5e\xce\xf4\xc2\xe0\x19\xff\x71\xf4\xcd\x70\x6a\xe3\x48\x34\x75\x00\x64\x4f\x39\x7e\xd9\x03\x16\xf7\x23\xbc\xcd\x31\x99\x61\x4b\x81\x68\xd8\x7a\x97\xde\xdd\x97\x77\x00\x3a\x5b\x05\x52\x50\x80\xbd\x37\xd1\x16\xba\x6d\xec\x92\x81\xdf\x13\x75\xd8\x6f\x4c\xab\xd1\x20\xdd\x69\x24\x62\x8e\x8b\x12\x26\xe4\x66\x16\xf8\x33\xe2\x7b\xcb\x84\x8f\x65\x12\x20\xb1\xc9\x70\x16\x24\x64\x82\xd5\x71\xde\x7c\x11\x72\x3c\xea\x98\xc1\x4e\x23\x02\xd6\x79\x91\x81\x0e\x4f\x34\x13\x90\x78\x59\x8a\xc4\xc7\xfa\xf0\x16\x0d\x9a\x17\x11\xfc\x9c\x0b\x11\x71\x30\x35\xb2\xf0\x1b\x48\x47\x6b\x75\x5f\x37\x3c\xba\x64\xfe\x3f\xfe\x21\x15\xa4\xe0\xd3\x81\xc2\x98\xcf\xc5\x35\x4f\xc8\x32\x0e\x6b\x75\x92\xcc\x02\x34\x98\x30\x1a\x57\xe3\xe8\xd5\xc3\xbf\xf6\x1c\xd9\xd1\xa8\xbd\x6f\x8e\x46\xb5\x2f\xd5\x7f\x8d\x2a\x5f\xdf\xd7\x6b\xf6\x3f\xdf\xd7\x6b\xef\x9b\xea\x79\x34\xaa\xd7\x1b\xf5\x2f\xcf\xbe\x1a\xa5\x7b\xbf\x60\xf7\xfa\x9a\x9e\x18\x27\xa1\xf7\x39\x74\x26\xf9\x45\xb6\x9f\xf5\x0f\x13\x12\x44\x84\x0d\x06\xc4\x8b\x39\xd1\x47\xca\x58\x80\x37\xe3\xd8\xbe\x43\x12\x01\xca\x9e\x80\x7b\x20\x49\xba\x9c\x4c\xec\x62\xf8\x7d\xee\x25\x5c\x69\x55\x66\xbe\xb2\xf1\x32\x11\xd0\xd3\xce\xa0\x9f\x90\x6a\x03\x7c\x45\x6e\x52\x34\xbb\x0b\xc6\x52\xbf\xde\x9c\x62\x8d\x66\x5e\xe4\x73\x47\x8c\x57\x8e\xe7\x5f\x4e\x63\xb1\x8c\xc6\xb5\x42\x48\x76\x3e\x55\x75\x7e\x1b\x0c\x5f\xf5\x7f\x9c\x4f\x77\x14\x8e\xb1\xad\x7f\x54\x2d\x52\x3d\xcf\xb0\xed\x04\x73\x6f\xca\xab\x96\x3c\xaa\x32\x8a\xf9\xc4\x35\x8f\x43\x6f\xf5\xb3\xd8\x9b\x4d\x6f\x92\xf2\xf8\x07\x83\xe4\xc3\x2c\x64\xfe\x0c\x42\xed\x2f\x52\x00\x60\x41\xcf\xa7\xd9\x4a\x6a\x00\xb9\x19\x89\xf8\x8d\x4e\xb9\xd5\x54\xca\x6d\xc3\x8e\x29\x98\x03\x57\x00\xb6\x0b\x03\xd7\xf2\x65\x0a\xe6\x53\x5b\x44\xa1\xf0\x20\x6a\xab\x15\x77\x5b\xb0\x26\x32\x89\x67\x6c\x74\xde\x1a\xf2\x34\xe0\x80\x1a\xe2\x16\x79\xb3\x02\xe4\xe8\x66\xe6\xa5\xfc\x9a\xc7\x28\x50\xcb\x38\x54\x31\x45\x92\x90\x99\x08\xc7\x79\xc2\x16\x06\x4e\x62\x1f\x24\x64\x9a\x65\xec\xb2\xed\x93\x9c\xb5\x62\xf9\x7f\xdf\xa9\xab\x09\x6e\x9a\xbf\xce\xa3\x82\x57\xd1\xf3\xd6\x9b\x63\x93\x56\x79\xe4\x6b\x67\x0e\x77\xca\x53\x37\xe4\xf0\xd3\x59\x75\xc7\xb5\xaa\x21\x93\xd5\xba\x9d\x1d\xa7\xc8\xd8\x2d\x7b\xf3\x36\xb3\x7b\x85\x5c\xe9\x8f\xab\x24\xd7\x4b\xd8\x1f\x95\x25\xdf\x5a\x19\x59\xd6\xf8\x2d\xb9\x60\x49\x19\xc8\x88\x4c\xdf\xab\x60\xd5\x34\xcf\xd8\x47\xbb\x93\xdc\x34\x6a\x78\x7d\xbc\xb0\x96\x7d\xfe\xd3\x79\xff\x12\xe6\xcc\x03\xf2\x30\xe1\x3f\x39\x4c\x81\xab\xf5\xed\xc6\x12\x91\xfd\x07\x13\xdc\x3f\x9f\xbd\x2e\x7e\xa6\x6d\x6b\x7a\xb8\x08\x66\xd0\xd6\x89\x83\xf1\xd6\x5e\xf0\xf2\x6f\xc8\x60\xff\x6c\xa6\xfc\xa1\x34\xbf\xc1\xaa\xbc\xf2\xca\x4c\x41\xaf\xe7\x9f\xb3\x0e\x85\x32\xeb\x2d\xfa\x92\x29\x8a\xfa\x4e\x69\x2d\x2b\x7a\xd7\x87\x42\xe4\xbe\x78\x64\x01\x54\x80\xc1\xcb\x4f\x48\x7f\x74\x78\x47\x8a\x15\x17\x79\xfd\x58\x7d\xc3\x46\x4b\x65\x75\x76\x71\xa1\x82\x94\xcf\x09\x7e\xda\x6e\x6f\x54\xf1\x79\x94\xf2\xd8\x38\xb5\xce\x13\x47\x4a\x29\x54\xe2\x68\x43\x82\x68\xb7\x24\x37\xf9\xb1\xf0\xa8\x22\xfc\x9d\x85\x6a\x1f\x55\x48\x23\x43\x6f\x1c\x69\x96\x47\xfa\xe5\x81\x91\xca\xe7\xa8\x66\xae\xa0\x34\x6c\x18\x4c\x67\xe9\xa8\x52\xce\x4e\x99\x19\x85\xed\xb3\x57\xd8\x1f\x3e\x63\x56\x29\x6b\x7d\xe7\xec\x81\xd4\x6f\x1b\x6f\x2f\x81\x1b\xd2\xca\x9b\x0a\x92\xf0\xf8\x1a\x06\x35\xb8\x42\x1e\xcc\xf3\x19\x73\x2d\x13\x9e\x9d\xd8\xcb\x9a\xf0\xb5\x89\x14\xa4\x15\x61\xf6\xee\xf0\xcf\xfd\xa3\x47\xdf\x94\x2d\xc8\x3e\xe3\x58\x6c\xd6\xc4\x2c\xe2\x60\xbe\x21\x79\x90\xaf\x88\xbe\x1a\x3a\x2e\x83\x94\xd6\x52\x66\x15\x76\x14\x3e\x22\xfc\x9d\x79\xba\xb3\x76\x90\xbf\x29\xc1\x80\x1a\xb1\x29\xb5\xf0\xb3\x4b\x0d\x7b\x13\x44\x56\x4c\x25\xac\xaf\x75\x1f\x80\x36\xac\xea\x5a\x6e\xa0\x78\xca\x9f\x29\xc4\x2e\x5a\x4a\x6c\xcf\xce\x0e\xf4\x77\x8e\xd7\x4e\xa9\x71\x0d\x37\x1e\x3d\x3f\xea\xe0\xf9\xcf\x9e\x27\x73\x75\x1d\xe2\x11\xe7\xc9\xc5\x4b\x0a\x3f\x75\x9e\xac\x66\x5d\xbc\xa1\xf2\x97\x1d\x68\xfe\xcd\x4e\x05\x85\x0d\xf8\x69\xe8\xff\x48\xe9\xd7\xcf\x38\xcd\xc2\xe7\x4a\x7f\x50\xbe\xa5\xa0\x8a\x0e\x5e\x95\xeb\xe8\xe3\x76\xf5\xfc\x98\xc2\xaa\x58\x88\xb4\x69\xd6\xc5\xca\xf2\xa6\x49\xc8\x6f\x75\xd1\x13\xfc\x6e\x92\x67\xa3\xac\xa4\x4a\x7d\x67\x35\xeb\xf6\x40\xc1\x14\x7e\xfb\xb4\x49\xaa\xcf\x9e\x3e\xfd\x5f\xc6\x7d\x42\xe5\x80\x37\x15\x65\xed\xfc\xfa\x54\xf5\x2d\x7e\x25\x55\x11\xb5\x93\xa4\x5e\x9c\x6a\xf4\xc6\x77\x53\xcb\xe5\x5c\x2f\xea\x45\x18\xfc\x9a\xea\x3a\xd0\x68\x6b\xa1\x58\x81\x74\x4b\xd3\x29\x3f\xc5\xda\x24\x2f\x9e\x3e\x5d\xab\x09\xdb\xc0\x34\xf5\x94\x7f\x69\xb6\x49\xaa\xd2\xb8\x97\x8b\xc6\x70\x95\xd6\x3e\x2a\x0b\x41\xab\x27\xd7\x6b\x37\x49\x63\x11\x4d\xdf\xdd\x41\xc3\xfd\x6e\x43\x3d\x1a\xbd\xd7\xaa\xb0\xf6\x88\xbe\xa1\x57\xd2\x74\x49\x95\xae\x08\xd3\xf3\xcd\xbe\xd3\x5b\x6c\x51\xdf\xea\x55\x8d\xca\x3b\xaa\x27\xfd\xf5\x5e\xcb\xc0\x68\xdc\xcb\x31\xbe\xe4\xab\x5a\xf2\xaf\xf9\xaa\x06\xdb\xb6\xf1\xa0\x08\xd9\x51\xba\x2e\xa8\x8b\xd1\xa6\x42\xd5\x5a\x2b\xfa\xc8\x7b\x59\xec\xa2\x4e\xb2\x77\x61\xbf\x99\xc4\xfe\xde\x9d\xfa\x22\xb0\xcd\xa3\x6b\xfb\xe4\xcc\x39\xec\xb2\x6f\x67\xfd\x43\x3c\x06\x51\x1f\x2e\x00\x64\x76\x72\x3d\xad\xde\xaf\x05\x16\x62\x2a\x46\x15\xe2\x85\xe0\xc1\xc4\x4d\xc4\x42\xb1\x1c\x8f\x2a\x8d\x77\x05\x62\x94\xec\x93\xbd\xac\x46\xee\x3d\xd9\x55\xfa\xd6\x78\x47\x9a\xa4\x56\xe4\x1a\x79\x9f\xf1\x88\x34\x75\xb6\x5f\x89\xf4\xbb\x3b\xfd\xea\x7e\xb7\xa8\xdd\xef\x4a\xa7\xd9\x85\x00\x2f\xfb\xf0\x82\xd6\x10\x33\x60\xc8\x25\xcd\x6c\xcd\x3e\x6e\x8c\xce\x39\x5c\xce\xa3\x51\x85\x28\x25\xd8\xbb\x7b\x9a\x79\xd0\x72\xe6\x1f\xed\x69\x4d\x17\x01\x80\xad\xb0\x72\x98\xfa\x3d\xb9\xd3\xab\x97\x17\x22\xfc\x44\xc5\xc2\x36\x50\xc5\xe3\x62\x71\xc3\x1d\xac\x4f\xc1\xd5\xdf\x69\xb8\x6d\xbe\xb7\xf4\x24\x95\xab\xbc\xec\xb2\x75\x47\x55\x93\x14\x42\xac\x07\x0b\x9a\x0a\x71\x84\x44\x62\x27\xa1\x98\x7a\x51\x31\x7e\x59\x0b\x24\x76\x41\x7f\xdf\x69\x01\xdb\x6d\xe0\x23\xd9\x21\x1e\x49\xbc\x09\x27\x33\x31\xe7\x78\x06\xeb\x85\xa1\x2c\x43\x19\x7b\xa9\x57\xc4\x99\x55\x35\x15\x83\x9d\x08\x8b\x9b\xe4\x17\xaa\x41\xe3\xd7\xac\x49\x4d\xbe\xab\x9b\xdd\xee\x0d\xf6\x35\x0c\xd6\xc9\xce\xef\x36\x07\x2f\x28\x9d\x6b\xff\x37\x06\xf3\xf3\xd7\x3a\x92\x31\xb4\xd6\xbc\x5f\x55\x54\x12\xf3\x8d\x52\x2b\xd5\xb4\x75\xac\x3f\x9b\xd8\x2f\x51\x94\x03\x9f\x0b\x11\x6e\x24\x6d\x03\x48\x46\xe3\x86\x77\x5a\xa5\xcd\x97\x91\x18\xf3\x32\x19\x99\x18\x9a\x80\x32\x99\x85\xef\x73\x43\xb9\x25\x0e\x34\x6c\xeb\x3a\xc4\x96\x98\x6c\x43\x2a\xbf\xcc\x59\x0c\xcb\xbe\xea\xef\xb6\xf4\x85\x48\x2b\xcd\x4a\xe5\xfe\xff\x06\x00\x00\xff\xff\x5c\x9a\x0f\xe7\x51\x64\x00\x00") +// FileIdentifierStaticJsContainersGoodbyeA2821852ChunkJsMap is "identifier/static/js/containers-goodbye.a2821852.chunk.js.map" +var FileIdentifierStaticJsContainersGoodbyeA2821852ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7d\x7b\xda\xb8\xf2\xe8\x57\xd1\x72\xef\x3d\xc0\xa9\x63\xfa\xb2\xed\xb6\x34\x69\xaf\x2c\x1c\x42\xc9\x2b\x90\x76\xbb\xa5\xb7\x8f\x63\x04\x38\x31\x16\xb1\x0d\x09\xcd\xc9\x77\xbf\xcf\x8c\x24\x5b\x36\x90\xa6\xbb\x7b\xee\x79\x7e\xbf\xe7\xee\x1f\x0d\x96\x47\xa3\x99\xd1\xbc\x49\x1a\x6b\xef\x2a\x4b\x1e\x27\x81\x88\x2a\xcd\x17\x56\x25\x11\x8b\xd8\xe7\x49\xa5\xf9\xa5\xc2\xe3\x58\xc4\x49\x23\x88\x46\xfc\xd6\xbe\x4c\x2a\x56\xc5\xf3\xd3\x40\x44\x49\xc3\x17\xb3\x99\x88\x64\x9b\x2f\xa2\xd4\x0b\x22\x1e\x27\x8d\xb6\x10\xa3\x8b\x15\xd7\x7f\x13\x3f\xe6\x7c\x3b\x94\x81\x77\x26\x46\x3c\x4c\x1a\x53\x1e\x86\x42\xb6\x2c\xd2\x20\x4c\x8a\x83\x1a\x4d\xbe\x98\xcd\x45\xc4\xa3\x34\x69\x1c\x0a\x6f\x14\x44\x93\xb5\xf6\x1e\x4f\xe6\x22\x4a\x82\x25\xef\x67\x64\x7c\xb5\x2a\x91\x37\x93\xcc\xb9\xbd\xde\x49\xef\xdb\xe1\x49\xbb\x73\xfc\xed\x23\x3d\xec\xb4\xe8\xc0\xfd\x76\xd4\xe9\xf7\x3b\xc7\xed\xf3\xbe\xdb\x3b\xa6\x47\x6e\xc5\x7a\x10\xec\x94\xf6\xfb\x9f\x4e\x7a\xad\x12\xd8\x3e\xed\x1c\xba\x79\xe3\xc1\x60\x70\xfa\xed\xd8\x1d\x7c\x3a\xe9\x75\xbf\x61\x53\xf1\xd5\xf9\xb1\xfb\xfb\xa9\xcb\x06\x6e\xeb\x5b\xcf\xed\x9f\x9e\x1c\xf7\xdd\x6f\xfd\x01\x1d\x9c\xf7\x1f\x07\x07\x54\xa6\xb1\x17\x25\xa1\x87\x72\xaa\x58\x95\x11\x1f\x07\x11\x3f\xe2\x49\xe2\x4d\x38\x34\x04\x23\xd9\xea\x2d\xc2\x54\x35\x03\xf2\xdb\x94\x47\x23\x3e\x72\x61\x9e\xe1\x59\xfd\xf5\x45\x94\xa4\xf1\xc2\x4f\xf1\x69\x96\xc1\x2f\xbd\x70\x81\xe8\x92\xc5\x9c\xc3\xab\x45\x24\x47\x02\xec\xbe\x37\x4f\x17\x31\xef\xa7\x9e\x7f\x35\x88\x3d\x1f\x3a\xa4\xd3\x20\xd1\x78\xf3\x61\x83\xe8\x92\xfb\x69\x27\x4a\xc3\x8a\x55\x99\xc7\x62\x0e\x30\x5c\x8d\x1d\xc8\x66\x35\x68\x0b\x74\x28\x98\x4b\x42\x4e\x2e\xa0\x1f\x28\x44\x92\x04\x93\xa8\x62\x55\xc6\x22\x9e\x79\x06\x43\x31\xf7\x79\xb0\xe4\x9a\x8f\x74\x35\xe7\xea\x4f\x82\x6f\x13\x9e\x1e\x80\x8a\xe5\xa0\xfa\x71\xaa\xfe\x26\x0b\xdf\xe7\x09\x2a\x60\xc2\x63\x50\x16\x10\x5c\x90\xcc\x43\x6f\x75\x2c\x9f\x92\xd4\x4b\xe1\x2f\xbf\xe5\xfe\x22\xcd\x30\x00\x90\x97\xfa\xd3\x8a\x55\x99\xf0\xb4\xaf\x80\xa4\xa1\x00\xa9\xa1\xb8\xa9\x58\x95\xeb\x05\x8f\x57\x30\x7c\xc5\xaa\xdc\x04\xe9\x94\x85\x01\x8f\xd2\x1e\xbf\x5e\xf0\x24\xeb\x14\xf1\x1b\xc4\xaa\x9a\x81\xe3\xdb\x40\x00\x51\x73\x81\x8f\x53\xee\x8d\x78\x9c\xa0\x84\x79\x24\x59\x03\x65\xd7\xe4\x2d\x50\x09\xbc\xd4\xab\x58\x95\xd3\x58\xcc\x82\x44\x4a\x27\x11\xe1\x12\xa9\x52\x84\x4e\xbd\x68\x14\x72\x0a\xc8\xb5\xcc\x62\x9e\xc6\x2b\xcd\x93\x62\xf1\x50\x4c\xc4\x78\x5c\xb1\x2a\x05\xbb\xae\x58\x95\x1e\xf7\x70\x42\x4e\x17\x31\x67\xda\xf4\x4c\x33\x6c\x05\xa3\x23\xb1\xc0\xb6\x18\x54\x0d\xb5\x2b\xf4\x92\x04\x27\x24\x94\xa6\x8b\x88\x8a\xc6\x9a\xc1\x77\x60\xd8\xc1\x6a\x2e\x26\xb1\x37\x9f\xae\x50\x09\xe3\xc0\x2b\x8e\xa2\x91\xea\x09\x5a\x5c\x1c\xa0\x80\x60\x2a\x16\x69\xca\x63\x47\xa4\xa9\x98\x55\xac\x4a\x2b\xf0\x42\x31\xa1\xbe\x36\x94\x9b\xd8\x9b\x4b\x55\x76\x16\x69\x8a\x13\xe5\x8b\x10\x05\x71\xa1\x1b\x44\xc4\xc2\xc0\xbf\x02\x71\x2c\xe5\x60\xa1\x96\xc7\x3c\xc6\xa6\x96\x34\x2c\x10\x68\x90\xa4\x02\x27\x78\xbe\x48\xa6\xd2\x94\x22\xa9\xb4\x30\xdb\xfd\x74\x15\x72\x35\x6d\x48\xea\xcc\x8b\x27\x41\x94\x91\x97\xcc\x3d\x5f\x0a\x44\xbe\x18\x88\xb9\x9c\xf4\x00\x08\xce\x35\x51\xda\xcd\x6c\x0e\x78\x13\x1e\x72\x3f\xe5\xa3\x7d\xa9\x60\x89\x2f\x50\xe9\x7d\x54\xac\x6f\x68\xf8\x31\x1f\x05\x31\xf7\xd3\x6f\x8b\x38\x40\x67\xf0\x2d\x15\x57\x3c\xfa\x36\x0d\x90\x9d\x99\x77\xfb\x4d\xda\x8f\x1f\x7a\xc1\x2c\xf9\xa6\x71\x88\x8b\xcb\x8a\x55\x39\x0f\xa2\xf4\x35\x8d\x63\x1c\xd6\x8f\x57\xf3\x54\x48\x1d\xef\x79\xd1\x48\xcc\x3e\x6a\xa7\xa0\x41\xe6\xb1\x48\x85\x32\xbd\x99\x37\x47\x75\x0b\xc1\xa6\x6f\x81\x71\xd1\x4f\x63\xc9\xe2\xa5\x08\xe4\x3c\x6b\x25\x6f\xc7\x48\x6d\x90\x72\x90\x85\x17\x4a\x1b\x3f\x0c\x22\xee\xc5\xa7\xb1\x98\xc4\xd2\x30\xbd\x45\x2a\xf6\x85\xbf\x48\xb4\xb6\x2a\xe1\x8a\x45\x0a\x8a\x9a\x3f\x9d\x7a\x23\xa5\x5e\xfe\x34\x08\x47\x31\xaa\x95\x48\xa7\x38\xdf\x52\x13\x4e\x95\xf7\x39\xf5\xe6\x3c\xd6\x0f\xa1\xc4\x92\xc4\xbe\xe4\x46\x39\x04\x2f\x4c\x55\x1c\x93\x5a\x20\x31\xb0\xec\x39\x8b\x70\xc0\xdb\x22\x49\x83\xf1\x4a\xb3\xd1\x49\xf9\x0c\x4d\x12\xa7\x41\x4e\x65\xa6\xb1\xc8\x87\x10\x80\x42\xf9\x1b\x7f\xba\x88\xae\x12\xf4\x6f\x22\x45\xba\x46\x0b\x3f\x55\xda\xad\xbc\xb8\x26\x76\x1c\xf2\x5b\x64\x79\x94\x4e\xf3\x58\x99\x93\x90\xd3\x37\x97\xe2\x38\xe4\x63\xe3\xa9\x17\x4c\xa6\x4a\x07\x3e\x21\x8a\xaf\x38\x69\xf3\x20\x9a\x24\x95\x66\x65\xd5\xa6\x94\x5a\xa2\x4f\x5d\x8f\x5a\x2e\xa5\x0b\x66\x3d\x61\x94\x2d\x19\x5b\x7f\xba\x76\xac\x57\x0e\x65\xb1\x83\x4f\xcf\x1d\x2b\x60\x94\xbd\x90\x4f\x37\xcc\x7a\xcd\x28\xbb\xcd\xfa\xbd\x62\xb4\xfd\x46\x3e\x71\x66\x7d\xa6\x94\x5b\x8c\xb2\x90\x59\x8c\x52\x76\x6a\xb5\x11\x88\x51\x96\xb2\x33\x78\xe8\xf4\x2c\x97\xb2\x0f\x7d\x8b\x53\x3a\x71\xac\x6b\x87\xba\xa1\x83\xb0\x3d\x13\xf6\x04\x61\x4f\x11\xf6\x4c\xc1\x8a\x1c\x16\xf1\x5e\xc3\x6f\x36\x77\x8e\x10\xf6\x18\x61\x4f\x14\xec\x93\x56\x06\x7b\x0c\xaf\x9f\x23\xec\x33\xa7\x8b\xb0\x87\x08\x7b\xa4\x60\x5f\xe7\xb0\x87\xf0\xfa\x06\x69\x58\xb2\x0e\xc2\x7e\x40\xd8\xae\x82\x9d\xed\x67\xb0\x1f\x4c\x7a\xdb\x08\x7b\x80\xb0\x1d\x05\x7b\xc3\x68\xf7\xc2\x3a\xa2\xf4\x88\x59\xe7\x94\x26\x0e\xb3\x8e\x68\xfb\x92\xa1\x94\x3e\xa3\xc4\xfa\xcc\x6a\x53\x16\xe1\x1b\x7a\xb4\x6f\xb5\x69\xeb\xda\xb1\xba\x74\xff\x37\x07\xa1\xfa\xae\x75\x42\x3b\x2b\x87\x5a\x1d\x4a\x5f\x3a\x87\x08\x76\x64\xcd\x1c\xca\x7a\xc7\xea\xe1\xca\xa1\xf4\xca\x61\x56\x97\xd2\x23\x90\xa1\x3b\x65\x67\xf0\xd0\xfd\x60\x9d\x50\xda\xa7\x56\x9b\x5e\x3b\xbf\x03\x82\xa3\xae\x9a\x25\x8f\x4e\x9d\x97\x8e\xd5\xa7\xf4\x89\x03\x14\xd0\x33\xab\x43\xd9\x6f\x72\x86\x27\x4e\x0b\xfe\x4c\x25\x51\x27\x92\xce\x7d\xf8\x77\xe0\x5a\x5d\xea\x8e\x01\x55\x17\x60\xd8\x01\x8c\x70\x62\x75\x69\x7b\x80\xf8\x47\x00\xd5\xf5\xe1\xdf\xa3\x11\xe0\xdd\xf0\x7b\x60\x9d\x51\x76\xc9\x3e\xc1\x83\x70\x18\x62\x90\xff\xa2\x08\x71\x9a\x58\x08\x42\x60\x94\x49\x49\x7a\x1b\x90\x78\x94\x9e\x83\xd0\xd9\x33\xf6\x11\x9a\x3c\xd7\xea\x50\x77\xea\x20\x26\x8e\x74\x74\x2c\x9f\x52\x1f\xe6\x84\xce\x1c\x64\xe0\xa8\x67\x7d\xb6\x26\x8c\x4d\xdd\xb8\x65\x5d\x1f\x51\xef\x04\x64\xd0\x47\x9c\x1e\xe8\x09\x7b\xe1\x20\xd3\x40\xc5\xe1\x09\x8a\x94\x81\x68\x8e\x7b\x56\x9f\x76\xda\x08\xdd\x87\x86\x51\x0e\xb6\xaf\xc0\xba\x30\xff\x7d\x9c\x33\x40\x97\xcb\x55\x59\xce\x8c\xa1\x5c\x23\xc6\xac\x33\x9c\x79\x97\xd2\xa7\x92\xae\x67\x8e\x0b\x3d\xcf\x95\xfc\x0f\xa4\xfc\xdb\xd6\x67\xea\x9a\x04\x9d\x1a\x04\x9d\x00\xa3\x33\x07\xc4\xfe\x07\xaa\xdd\x29\xb3\x3e\xa1\xc8\x7c\xca\xe8\x41\x4e\x6e\x57\x92\x8b\x02\xee\xeb\x71\xcf\x51\xef\x6e\xe5\x4c\xf7\x7b\x56\x97\xb6\x56\x30\x50\xfb\x23\x70\x47\x3f\xe1\x84\x48\xba\x0f\x9e\x3a\x96\x4b\xdb\xcf\x1c\xaa\x46\x77\xe9\x81\xc0\xa6\xb9\x43\xad\x23\xea\xf6\x10\x63\x07\xf5\x75\x21\xd5\x76\xe2\x7c\x40\x71\x23\xa9\xcb\x16\x0e\xde\x41\x0d\x41\x35\xed\x5a\x0b\x87\xd2\x1b\x09\xd4\x06\xd6\x5e\xb0\x2e\x0a\x05\x7e\x9f\x5a\x89\x03\x98\xac\x13\xea\xde\x4a\xbd\xee\x4a\x9e\x01\xcf\x19\x55\x76\x73\x46\xd9\x58\x22\xeb\x50\x57\x2a\xa2\xe4\x06\x94\x54\x2a\x90\x7e\x97\x09\x30\x42\x9d\xef\x83\xb8\x06\x6d\x6c\xf6\x95\x76\x9f\xc1\x5c\xad\x1c\xea\xbe\x74\xac\x33\xea\xba\x68\x5b\x40\x71\x67\x09\x63\x53\xff\x18\xfe\x5d\xb0\x27\x60\x14\x6e\xe8\xb6\x4c\xb2\x40\x6f\x25\x59\x23\x40\x74\x7e\x02\xbf\xdd\x53\xeb\x88\xb2\xa5\x93\x63\x7a\x81\xb3\xe5\x1f\xc2\xbf\x09\x7b\x0d\x53\xd0\x99\x82\x81\xb7\xe8\x1f\xd8\xfb\x14\x15\x07\x27\x95\x8d\xdb\x48\x13\xea\xca\xd9\x07\x60\x29\x75\xba\x88\x2b\xc4\x51\x4f\x71\xc0\xb3\x19\xca\x3b\x70\x22\xc0\xe6\x7e\x77\x02\x07\x31\xfd\xae\x34\xfa\x84\x76\x63\xc9\xb3\x60\x25\x3d\x88\x1c\xab\x4d\xdb\xd0\xb0\x4f\xa9\xd1\x09\xc4\x3e\x46\xeb\xec\xb7\xac\x23\x1a\x38\x17\x08\x7e\xed\x94\xfa\xcf\xa1\x3f\x1b\xd1\x4c\x83\xd8\xe0\xcc\x72\xe9\xb8\x8b\x92\xfe\xa8\x94\xe5\x88\x4e\x1c\x14\xdd\x91\x6f\x6a\x09\xe0\xba\x94\x56\xef\x9a\x7a\x71\xe3\x50\xba\x32\xf4\xe2\xe5\xbf\x41\x2f\x8a\xd3\xfb\xe2\xdf\x39\xbd\x2f\x9d\x46\x0b\x11\x3b\xe0\x19\x27\xec\xd6\xc1\xd9\x76\xad\x36\x6d\x38\x37\x0e\xf8\xfb\x27\x8e\xc0\x7e\xb1\x23\x55\xf1\x12\x08\x7c\xe3\xfc\x86\xf1\xea\xf0\xb0\x60\xf1\x9f\xe8\x2b\xa7\x1f\x38\x7f\x87\x62\xf4\xad\xc9\x07\xb6\x6c\xbf\x94\xf4\x27\x59\x80\x92\x73\xe1\x53\x36\x65\x0c\x02\x2e\x73\x7f\x93\x92\x46\x73\x39\xba\x92\xca\xd4\xb2\x38\x6d\xa7\xce\x53\x7c\x3a\x87\x4e\x18\x0e\x84\xf3\xc6\x00\xbe\x75\x7e\x05\xcf\xd0\xc2\x57\x8c\xe2\x3c\x4e\xb1\x05\x1c\x36\x3b\x47\xe7\xf1\x7b\xc0\x64\x20\x80\x89\xfa\x78\x09\x0f\x0c\x9d\x38\x73\x31\xb0\xb1\x2b\x7c\x8f\x3c\xb5\x20\xec\x5e\x39\x2d\xc4\x44\xa5\x03\x43\xed\x99\xc9\xde\x11\x93\x0f\x08\x7c\xd4\x01\x1a\x42\xf6\x04\x83\xf5\x0a\x45\x73\xcb\x30\xaf\x51\x98\x4b\x88\x3f\x4b\x89\xaa\x89\x3f\x07\xbe\x8e\x50\x49\x11\x58\xf2\x88\xe3\x37\x5a\xa0\x11\x6d\xeb\xb9\x03\x69\x05\x86\x28\x6e\x79\xd4\xbd\x54\x78\x7f\x6d\x6d\x46\x0c\x41\xdf\x05\xc4\x9f\xd0\xce\xcf\xce\xc0\x5f\x5f\xb6\xd6\xf0\x5f\xba\x12\xff\xaf\x8e\xcc\x0c\x10\xff\xa2\x45\xdb\x91\xb3\x65\x80\x2e\x04\xba\xcf\x20\x90\xd4\x59\x43\x17\x2a\x74\x13\x66\xa0\x4b\x18\xed\xa6\xce\xf3\xd6\x9a\xf4\xae\xf0\xdf\xa9\x29\xc3\x4b\x25\xc3\x00\xa0\xd9\xb4\xf5\x97\x65\xc8\x5c\x2d\xc2\x19\xa3\xec\x40\x93\xe4\x50\x36\xee\xa2\x29\x63\x7a\x95\x38\x20\x31\x0f\x63\xe1\x51\xdb\x9a\x38\xb4\x3d\x55\x88\x82\x2d\xc3\xfe\xac\x84\x85\x29\x92\x57\x0e\xed\xfc\x35\x09\x5f\x99\xe8\x16\x6e\x8e\xee\xca\x35\xd0\x75\x41\x78\x2b\x87\xd2\xee\x81\x41\xea\x27\xab\x9f\xe3\x2e\xb2\xc7\x5c\x99\x1d\x5a\x9f\x29\x3b\x3e\x36\xfa\xf8\x60\x26\x30\xe0\x99\x0a\xe8\xf4\xbc\x21\x1d\xd7\xc4\x55\x7e\x0f\x52\xa2\x75\x0d\xfe\xae\x08\x4e\x4c\x82\x67\x0e\x3d\xbf\x64\x2b\xdd\xb3\x4d\xd9\xa1\x54\x02\xd7\x0a\x1c\xea\x1e\x5f\xba\xeb\x7e\x40\x38\xd0\x37\x70\x06\x99\x9b\xa2\x3e\x28\x49\x43\x4d\xd1\xe7\xd0\xe8\x74\xe9\x3c\x01\xd3\x75\x3f\x5c\x32\xed\xe9\xce\x29\xfb\x7d\xea\x6c\xf6\x2f\x6c\xee\xbc\x46\xc0\x33\x15\x1b\x26\x0e\xe5\x31\xf8\xca\x33\x0e\x1e\xaa\x77\x7e\x09\xfc\xb5\xa7\xd2\x53\x7e\xb0\x8e\xe8\xc1\xc4\xe9\x28\xbd\x3d\x01\x25\xee\x59\x67\xf4\xa4\x7b\x8d\x5c\xaf\x30\x33\xf9\xad\xfd\x5d\x3a\x39\x8c\x52\xa1\x33\x46\x71\xc2\xef\xc1\xc4\x81\x9c\xd2\x6f\x29\x9e\xcf\x64\xf2\xe6\xbe\x71\x46\x79\x04\xe2\x08\x7e\x60\x82\xb4\x29\xfb\xae\xb2\x37\xd0\xb6\x8f\x32\xb9\x03\x91\x27\xed\xe7\xce\x31\x0c\x3d\x73\x20\x34\xb0\x97\x07\x2f\x5a\xd6\x8a\x41\xfe\xa9\x42\xe8\x48\xa6\x7b\x3a\x57\x6a\x53\x36\xd7\x1e\x18\x62\x25\x38\xee\x63\x49\xcf\xac\x65\xf5\xa9\xdb\x0b\xf1\xc9\xbd\xc2\x8c\xaa\x1f\x65\xef\xce\xd0\x39\x74\x30\xbe\x42\x86\x1f\xa3\xcf\x8d\x1c\x15\x18\xdb\x10\xc5\x90\xe9\x33\x58\xe2\xe0\xaf\xf3\xec\xd7\x09\x65\x07\xa8\xa0\xae\x80\x80\x4f\xcf\x62\x89\xf7\x5a\x8e\x22\x39\x9c\xcb\x91\xaf\x5b\x20\x81\xcf\xa9\x84\x48\x5a\xd6\x27\xc8\x18\xda\x60\xe3\xb2\x97\x9b\xb4\x40\x8c\x7c\x29\x21\x16\x2d\x30\x9c\x09\xa6\x0a\x11\x53\x8d\x37\x2d\x98\x4b\xd6\x93\x8f\xae\x86\xb9\xcd\xde\x72\xea\xa6\xfa\x71\x05\x23\xb2\x9e\x7c\x72\x6f\xd0\xf9\x9f\x7f\xcf\xde\xf5\x21\xe7\x57\x8f\x4f\xb1\x67\x4f\x3e\x01\x33\x48\x3e\xc8\x33\xce\x00\x7c\x88\x85\x10\x78\x20\xe5\x63\xee\x31\x8a\xcb\xea\xd2\x13\x14\xd6\x87\x0e\x2c\xb4\xd8\xbe\x94\xac\x8b\x99\xfd\xc9\x35\x18\x43\xfb\x03\xb6\xcd\xd9\xc0\x9a\x99\x53\x28\x57\xc1\xce\x0a\x60\xdc\x58\xce\xde\x2d\xe6\xf4\x38\x72\x67\xb5\x0f\x22\xfa\x64\x75\x68\xf7\x0d\x8e\x40\xf5\x8a\x67\xe2\x00\xd3\x2f\x20\x07\x70\x97\xce\x0d\xf6\xe9\x5c\x62\x66\x72\x76\xed\xe6\xcb\xc6\x73\xa6\x26\x16\x8c\xa0\x81\x60\x67\x13\x5c\x6e\x76\xd1\x3e\x5d\x26\x73\x5a\xe9\x73\x75\xe2\x33\x75\x21\xc8\x9e\x66\xd4\x52\x58\xb5\x1f\x49\x9a\x7f\x43\xa2\x55\x6a\x70\xde\x00\xb2\x06\x32\xc1\x39\x7a\xbe\x6f\x9d\xd3\xf6\xf1\x0b\x18\xa6\xe5\xca\xb6\x57\x60\x93\x0c\x57\xa0\x9d\xef\x85\x6c\xe9\xca\xd1\x00\xe7\xd4\x95\x99\x8e\x86\x80\xec\xa8\xb3\x74\x20\x97\xb5\x66\x87\x2c\x61\x03\x34\xdc\x89\xbb\x6e\xb9\x63\x69\xb9\xdc\xb4\xdc\xc8\x41\xd3\x9d\x80\x5e\x36\x18\x5a\x69\x80\xa9\x8a\x3b\x45\x55\xdd\x47\x46\x02\xd0\xf9\xa3\x5b\x33\x5d\x78\xee\x16\x3d\x37\xa6\xa0\x14\xbd\x02\x53\x6e\xf4\x9c\xb2\xd1\xd4\x8c\x7c\x6f\x50\x1e\x83\xd7\x4c\xfa\x09\xcc\x14\x94\x27\x0e\x4a\x81\x60\xe2\xfc\xa6\xe2\x1a\xf8\xc4\x17\xce\x87\x1f\xa2\x79\x20\x58\xb6\x25\x26\xd0\x8f\xfd\x3c\x6e\x76\x64\xa8\x01\x82\x9f\xe6\x14\x37\xd6\xa3\xd8\xcb\xb6\xf4\xe2\x01\xc4\x66\xa6\xbc\x78\xc0\xa8\xbb\xdc\x96\x88\x3c\x51\xf8\x40\x76\x69\xf6\x9b\x35\xca\x21\xcd\xbf\x45\x47\x70\x02\x2b\x3e\x77\xa9\xde\x2e\x5a\xa5\xa8\xb4\x82\x05\xa7\x5a\x4c\xdd\xe6\x94\x1e\xf7\x74\x30\x66\x3d\x57\x72\x08\x99\xcc\xc7\xb3\x2c\x4c\x2d\x9d\x43\xc0\xcc\x2e\x8c\xf8\xc2\x8e\x5f\xca\xa8\x30\x73\xc0\x32\xae\x9d\x99\xf3\x4a\x4e\x60\x0a\x74\xb9\xcf\xd6\xc3\xee\xf7\x3c\xec\xd2\xab\x8c\x7f\x87\x7d\x78\xe9\x3e\x6d\xc9\xa4\xf2\x0d\xc2\x83\xf5\xb9\x97\x0c\xb3\xd1\xbe\x8b\xe3\x0c\xf6\x7f\xc5\x95\x02\x45\xae\xce\xdc\xa8\x6d\xb9\xb4\xb7\x3f\x83\x25\x37\xac\xa1\x5d\x7a\xe2\xce\xa1\xed\x74\x5f\xb4\x21\x18\x51\x74\x56\x47\x2e\xda\xce\xf1\xfe\x2b\xd9\xfb\x06\x1a\xbb\x6e\x0c\x90\x87\xfb\xd7\x6d\x34\x14\x74\xd2\x1d\x17\xfd\xc5\x87\xfd\x19\xf8\xaf\x76\x7b\x86\x11\xb5\x95\x02\xe4\xc1\xfe\x02\xc6\x69\xbb\x4b\x78\xda\xdf\xbf\x69\x5b\x9f\xe8\x60\x02\xf1\xe9\xd3\x1b\xe7\x16\x1a\x7f\x7f\xed\x58\xab\x36\xf5\x5e\x3a\x2b\x78\xa4\x27\xe8\xa8\x7c\x90\xda\x77\x47\x66\x0f\x27\xe8\xbd\x31\x49\xa7\xaf\xd8\x6d\x4b\x8a\x1a\xfe\x59\x49\x4b\x84\x9c\xf4\x85\x2b\x97\xfb\xd2\x6a\xce\x95\x0c\x71\x0a\x8f\x28\xf5\xe5\x9c\x06\x72\x7f\xe2\x93\x7c\xdb\x2f\xe4\x2a\x74\xe2\x0c\xc0\x43\xcd\xf7\x0d\x23\xeb\x19\x20\x5c\x46\x6d\xa5\x09\x94\xa9\x54\x4c\xfa\x46\x74\x7d\xf2\x27\x52\xa7\xbc\xcf\x99\x52\x9b\x86\x1b\x3a\x18\x51\x27\x98\xc6\x7f\x5a\x22\x95\x67\x37\x98\x34\x1c\x5d\x62\xe3\xc4\x91\xa2\x9b\xb7\x24\xdb\x51\x6b\x43\xd6\x84\x6f\x3e\x18\x2f\x02\x88\xc8\x2c\xc6\xd0\xca\x68\x07\xbc\xcd\x21\xa8\x21\x3d\x7b\xa6\x04\x75\xed\xe0\x42\xa3\x94\x98\x4e\x95\x4e\xdd\x38\x79\x62\x7a\xd3\x32\x13\x53\x76\xfc\xeb\x41\x9e\xed\x9c\x83\x37\x0f\xd9\x3e\xf8\xcb\x2b\x26\x50\x90\x21\xfb\x03\x92\x6d\xc8\x62\xda\x90\xf5\x50\xcb\xa3\x4f\xd9\x33\x47\x72\x17\x38\x4f\x5d\x8c\x90\x80\xeb\x8d\x13\x63\xd6\xe1\x01\x99\x17\x3a\x26\xc8\x35\xd0\xb2\x25\xfd\x7a\x9b\xfa\x9d\x6b\x34\x8a\x68\x9f\x9a\xb9\x4b\x80\xf3\x73\x04\x0f\x1f\x5e\x2a\xa1\x9e\x50\x36\xd0\xed\x6d\xea\xf6\xfe\xc8\x73\x97\x94\xe5\x49\xca\x4c\xda\x37\x64\x63\x03\x96\x83\xc4\x18\xcf\x31\xcd\xfd\x23\x69\xa9\x5d\x4c\x0f\x88\xc1\xc5\xa4\xf7\xac\x55\xca\x7c\x5e\x40\xe0\x83\xac\xe9\xc5\x83\x69\xd3\xcc\x95\xc3\x9d\x50\x76\xda\xd5\x4b\x46\xf6\x71\xd9\x5a\x27\xda\x45\x07\x82\x54\x7c\xa6\x4f\x5a\xad\x06\x93\x19\xd4\xdc\xa9\x58\x95\x71\x10\xf2\x4a\x13\xcf\xc5\x02\xbf\x71\x99\x34\xf2\xa3\xe8\x9d\x89\x3c\xd0\xb2\xbd\xe7\xaf\x9f\x3f\x7b\xfd\xf2\xb9\x8d\x5b\xef\xf2\x2c\x59\x1d\x84\xeb\x0d\xf4\xe6\x97\x4a\x30\x9b\x8b\x38\x25\x77\x24\x3f\xc1\xb4\x48\xf1\xac\x95\xdc\x93\x71\x2c\x66\xa4\x1a\x73\xcf\x4f\x77\x82\x28\x0d\xab\x6f\x87\xd1\x30\xe2\xb7\xd8\x17\x8f\x56\xc9\x63\xce\x9e\xc9\x1e\xa9\x5e\xc9\xd3\x23\x1b\x0f\x47\xed\x50\x4c\x82\xc8\x5e\x7a\x61\x30\xf2\x52\x6e\xcf\x82\x24\x09\xa2\xc9\xb9\x3a\xa7\x84\x61\x1e\x3d\x88\x3e\xb9\x7e\xec\x20\xa7\x5e\x92\xdc\x88\x78\xf4\xe0\x20\xf2\xdc\x7b\x1b\xca\xb1\x17\x84\x7c\x1b\x82\xf5\x33\xf2\x0c\x8d\xc6\x32\x4d\xd3\xb9\x1d\xf1\xf4\x46\xc4\x57\x78\x58\xf9\x10\xaa\xed\x67\xea\xeb\xe4\x21\xe2\x05\xa0\xc2\x73\x34\x75\x14\xc9\xfb\x78\x8e\xfa\x67\x06\xd9\x30\x75\x0f\x8c\xc1\xa5\x7e\x34\x1a\x64\xa0\x0e\xf1\xbd\x8b\x90\x13\xec\x47\xd4\x31\x78\x62\x0f\x23\x39\xbc\x79\xd0\x4f\xf6\x4a\xca\x57\xbb\x1b\x46\x84\x7c\x79\x8c\x76\x7d\x6d\x12\x04\x26\x24\x18\x35\x1f\xa5\x8f\x96\x04\x2f\x16\x11\x34\x49\xd5\x8d\x52\x1e\x13\x2f\x22\xfa\xc0\xbc\x0a\x80\xf7\xd6\x0f\x49\xd1\x3a\xf8\x78\x52\x74\x8f\x1f\x90\x42\xe6\x5a\x5b\xb7\x50\x22\x15\x75\xfb\xb8\xf2\xfd\xb6\x51\x0e\xc5\x44\x44\x44\xaa\xb3\x4d\x4e\x43\xee\x25\x9c\x2c\x79\x1c\x8c\x57\x64\x25\x16\x31\xf1\x63\x3e\xe2\x51\x1a\x78\x61\x42\xbc\x68\x44\xd2\x78\x45\xbc\x89\x17\x44\xf6\x3a\x41\xeb\x8a\xbf\x89\xac\x75\xa8\x6d\xc4\x1d\x4b\x03\x91\xea\x93\x51\xe7\x4f\xb9\x7f\xa5\x88\x93\x7a\x19\x88\xe8\x71\xb4\x6d\xb7\xa4\xad\x84\x6e\xef\xb2\x8d\xea\xf3\xcc\x32\x08\x60\x20\xba\x9c\xa1\x49\xee\x64\x39\xc3\xfd\xbf\x93\x95\x8d\xc6\xf0\x70\x8f\x47\x30\xa2\x79\x20\x58\x2f\xa2\x38\xe1\xf7\x92\xb6\x61\x74\x5f\xd7\x66\x8f\xce\x8c\xdc\x04\xe9\x94\xc8\x02\x1b\x3b\x77\x39\xa1\x97\x24\xa4\x50\xa6\x43\x38\x3e\x25\xaa\x1b\xd2\x2d\xbb\x91\x3d\x92\xd5\xe3\x20\x6e\x42\x8c\x42\x9e\x9a\x72\x25\x96\x82\xae\x6b\x96\xb1\x96\x47\xbf\x05\xa2\x50\x0e\x63\x52\xc3\x01\xec\xb5\xb2\x1e\xf2\xcb\x9e\x31\x50\x86\x86\x90\x2d\xf0\xb5\x74\x1a\x24\x56\x91\x09\x3d\xcc\xbd\xfc\x03\x10\x76\xc6\x84\xfc\xf1\x56\xcb\x49\x49\x29\x2b\x2f\x21\xa9\xc8\xbc\xa0\x76\x93\x29\xbf\x4d\x4b\x12\x1c\x2f\x22\xa9\x1a\x66\xf1\x51\x86\xa4\x86\x65\x47\x8a\x78\xe9\x59\xef\x24\x2e\x8b\x40\xcc\x26\xf7\x64\x8f\x20\x8c\x92\x24\x08\xe4\x17\x04\xc8\x38\x8e\x79\xba\x88\x23\x12\x2d\xc2\x50\x13\x9b\x63\x0b\x46\x64\x4f\x19\x61\x30\x22\xef\xf3\x9f\x4d\xf5\x53\x09\xfc\x6d\xde\x65\xad\xe4\x89\xec\x11\x59\xf2\x64\xcb\x82\xa7\xda\xdd\xbd\x95\x2b\xea\x16\x15\x5c\x1b\x53\xa1\x25\xcd\x7c\xd2\xa4\x79\x14\x62\xc9\x97\x60\xf4\xb5\xae\x78\x55\x8c\x81\x1c\xec\x42\x85\x55\x6d\x8d\x44\x4b\x0d\xa2\x74\xea\xad\x9a\xaf\x62\xc4\x34\x26\x80\xec\x19\xb9\x53\x6d\xe3\xd4\x00\x92\x8a\xa5\x73\x2d\x2c\x7c\x52\x29\x15\xfe\x96\xd1\x32\xcb\xc4\x4a\xa5\x52\x59\xfa\x65\xdb\x0d\xb3\xa6\x10\x7a\x65\x7d\x36\xd7\x5d\x99\x5d\xb1\xd2\xd0\xec\x03\x62\x29\x68\x30\x4a\xff\xf1\x3e\xef\x31\x3e\x65\x18\x19\x14\xc8\xd2\xcb\x12\xb3\xe5\x72\xad\x9c\xe4\x35\x8a\xff\x49\xbc\x84\x60\xe1\x5b\x06\x82\x4f\x85\x64\x34\xb3\x11\xb3\x6e\xae\x66\x6a\xb9\x52\x05\xa5\x74\x80\xa1\x29\xb1\xda\x3d\x97\xb9\x9d\x8f\x6e\x21\x1a\x61\x4f\x54\xae\x92\x22\x18\x03\xe9\x12\xbc\xda\x23\x46\xe8\xbb\x83\x6f\x07\xee\xe1\xe1\xc9\x0f\x70\xe6\x95\x7c\x35\x9c\xed\x92\x5d\xab\x9a\x3e\x2b\xcb\x50\x2c\x62\x54\xf4\xa1\xa9\x63\xb7\xa2\xfa\x3f\xc0\x33\xd2\xa4\x78\x56\xde\x5d\x8d\x41\xf6\xf6\xf6\x48\x1a\x2f\xb8\x7a\x9b\x8d\xa8\x8c\x35\x1f\x56\xb5\xe0\xc0\x0f\xb2\x67\x96\x19\x96\x84\xa6\x61\x6a\xba\xf6\xd0\x22\xba\xf4\x30\xf3\x52\xfa\x55\xcd\x14\xbd\xb6\xf4\x5c\x46\xe3\x50\xdc\x58\x04\xab\x13\x51\x20\x1a\x4f\xad\x6e\xcb\x12\xc6\x52\x0f\x70\x4e\x9b\xed\xa8\x56\x32\xc9\x9a\x81\xba\xae\x1d\xbf\x62\x00\x2d\xda\x9e\x8b\x24\xad\x55\xed\x46\x80\x59\xd3\x38\xe0\x71\xe3\x9b\x32\x5b\x8b\xc4\x56\x1e\x61\x54\xd9\x63\x33\x6f\x21\xa4\xda\x15\x73\x2f\x12\x3b\x5d\x99\x0c\xec\xfc\xde\xef\xed\x57\x9b\xa4\xfa\xac\xaa\x61\x54\x90\xb9\xaf\xdb\xe9\x94\x47\xb5\x2c\x2e\xef\xbd\xcb\xf1\x24\x37\x41\xea\x4f\x49\xf6\xd2\x96\x69\x47\xdd\x1c\xc9\x87\xf4\xe3\xf9\xd3\xa7\xcd\xbc\x89\x90\x46\x43\x4f\xbd\x6d\x36\x2b\xfe\x32\x74\x23\x2f\xf5\xde\xae\xa1\xfa\xb5\x8c\x2a\x12\x29\x01\x4f\xcf\x47\x3b\x41\xb4\x09\xe1\x9d\xd9\x46\xf4\xd0\x4d\x32\xf6\xc2\x44\xab\x54\xf6\x52\x6a\x66\x46\x83\x92\xde\x97\xea\x95\x94\x98\x5a\xa1\xec\x20\x5c\xf5\xab\xd9\xf9\xde\xa0\x55\x05\x98\x32\xa9\xd2\xef\x9b\x8d\xe9\x34\x16\x37\xe0\x90\x8b\x9e\xb2\xf6\x38\x2f\x99\xd1\x59\x7f\xfb\x33\x13\x07\x71\xb9\x30\x69\x32\x3f\x89\xe5\xef\xc2\xfc\xfd\x05\xfa\xdc\x2d\xe4\xe9\x9f\x86\x91\x19\xbe\x28\xeb\x92\xf7\x51\xd3\xa8\x6a\x72\x6d\x55\x91\x5b\x2b\x23\xbf\xaf\xdb\x58\xa2\x2b\x7d\x71\x81\x61\xd5\xb2\x16\x0b\x94\xdb\x7e\xbb\x9d\x28\x13\x2c\x1f\xe8\xed\x0f\x7c\xab\xae\x06\xfe\x91\xeb\xd9\xe4\x70\x8c\x61\x21\x4b\x32\xdc\x8e\xc2\x92\xc1\x16\x9d\xdc\x0f\x89\x42\xc7\x22\xab\x92\x1f\x13\x47\xce\xce\xdd\xfe\x00\xd6\x76\x27\xfb\xfb\x8f\x09\x25\x0a\xb3\xa9\x42\x3f\x0e\x0a\x12\xbd\x19\x15\x1e\xe3\xd6\x37\x32\xf1\x28\xe1\x16\xbd\x79\xe9\x65\x41\x40\x65\x6f\xff\x80\xef\xbe\xbb\x7f\xbc\x87\x96\x55\xd0\xff\x5d\x5d\xf4\xff\x77\x7b\x3f\xef\xf6\x94\xc2\xe5\x84\x95\x92\xa2\xff\x32\x8e\x30\x5f\x7f\xe0\x17\x0e\xe6\x96\xae\x91\x63\x9f\xc6\x62\x3e\x30\x52\x6c\x58\x2f\xee\x64\x59\x76\x96\xb5\xab\x6d\x8a\xd2\xce\x70\xcc\x47\x8b\xdb\x42\x7e\xaf\x3f\x78\xc8\xc0\xe0\x71\x27\x18\x17\x90\xed\xe3\x7a\x2c\xe5\x23\xbd\xa0\xda\xb6\xdf\x5c\x58\xed\xc8\xef\x0e\x32\xd8\xff\x3d\xf3\x52\x1e\x07\x5e\xb8\xb3\x08\x1a\xbe\x88\x79\x23\x41\x00\x63\x24\xf9\x39\xc4\x56\x78\xf9\xda\x80\xcf\x3f\xd1\xd8\xda\x27\x07\x31\xfa\x15\x3e\xc8\xd8\xda\xb5\x00\x55\xe0\xaf\xfc\xe1\x48\xbe\x82\xb2\xed\xc6\x03\x5f\x83\x15\x84\x6a\x46\x1f\xab\xe8\x99\xcd\x55\xa1\x6d\x37\x8a\xdf\xbf\x49\x4a\xa4\x53\x95\x12\x24\x7b\x04\x3f\xed\x00\x4d\x95\xbb\xb1\xd9\xc7\x28\x99\x4b\x34\xbf\xf9\x68\x4a\x70\x5b\x7d\xf8\x51\x7b\x59\xcf\xb7\xae\xd4\xb7\x29\xa5\x7e\x03\x31\x5f\xef\xa4\xa2\x8e\xfe\x50\xa4\x09\xea\x00\x0b\xfb\x25\xaf\x16\x57\x1e\x4d\x52\x0d\xa2\x30\x88\xf8\xce\x45\x28\xfc\xab\xd2\x66\x94\xdc\x6e\x2a\x7c\xe4\x93\x6d\x37\xa1\x21\xd8\x85\x0f\x7d\xf4\x2a\xab\xf4\xad\x4f\x2d\x73\x3f\xb8\xaf\x83\xbb\x28\xf6\xc3\x91\x5e\x2f\xbc\x40\xe3\xf3\xee\x7a\x6d\xa2\x3e\x18\xb2\xe4\x62\x09\x97\x27\x39\xe6\x52\x6c\x53\x9f\x14\xe9\x25\x1d\xba\x9e\x6c\x87\x26\x73\x3b\x35\xed\x1a\x76\xd7\xf4\x47\x21\xd8\xbb\x53\x3f\xee\xdf\xe5\xae\xf4\x4e\x9b\xa8\x5c\x66\xa2\xcb\x05\xe4\xe4\x1f\xff\x20\xbf\xc8\x6f\x17\xa5\xff\xad\xd5\xea\xa8\x01\x66\x9c\xd8\x1d\x05\xcb\x77\xc5\x0c\x7d\xd7\xb0\x1a\xf5\x59\xd3\xde\xb0\x32\x7d\x39\xac\xe4\x52\x85\x86\x17\xc3\x4a\xa9\x27\x21\xbb\x6b\x9e\x20\x18\xed\x0d\x2b\xfa\xd8\x41\x1f\x6c\x41\x3c\x86\xf9\x1e\x56\x4a\x3b\x45\x7b\x43\xfd\x35\xd7\xb0\xf2\x6e\xb7\x51\xc6\x56\xa6\xd4\xb0\xde\x47\x31\x91\x2c\x2e\xd2\x20\x0d\xf9\x33\xe0\x45\x7f\xe9\xb2\x77\xa7\xa6\xd2\xce\xac\xe2\xfe\xcf\x32\x96\x61\x18\x56\xca\x18\xca\x9b\x62\x7b\xc3\xca\x4a\x2c\xc8\xd4\x5b\x72\x72\x01\x73\x2c\x97\x58\x44\x2c\x94\x67\xc7\xdd\x64\x99\xa4\x10\xcf\xf7\x41\x89\x37\x49\xfc\x6f\x12\x92\xf9\x49\xda\x9f\xe5\x5e\x6d\xc4\xd9\x7e\x28\x12\xfe\x28\x09\x7c\x16\x0b\xe2\x7b\x11\xc1\x1e\x68\x3f\xe4\x26\x88\x46\x90\x1a\x88\x1b\xfb\x6f\x65\x77\xb7\x51\x54\xf5\x7a\xfd\xfe\x71\x36\x64\x98\x50\x9e\x33\xfc\x27\x6c\x69\x5d\x9e\x1b\x67\xc1\x17\xd1\x38\x88\x67\x86\x91\x3d\x62\x22\xd0\xf3\x91\x3b\x63\x2b\xe8\x7e\x53\x3f\xb9\xa3\xba\x77\x67\x02\x36\x95\x84\xcc\xbe\x1b\x0c\xe8\xbf\x9e\x31\x6b\x41\xfe\x9c\x51\xcf\xd5\x89\x90\xec\x8c\x56\x0d\x36\xfd\x37\xe8\xf2\xff\x23\xe3\x95\x84\x3f\x8a\xd7\xd3\x18\x12\xe9\x74\xca\x89\xfc\x2e\x95\x5c\x70\xdc\x56\x4b\x45\xc6\xf7\x56\x5f\xf6\x77\x59\x78\xe9\x65\x21\x29\x5b\x47\x3e\x0a\x96\x9b\x94\x45\x65\x35\xeb\xaa\x42\xc8\xae\xcc\x2a\xd7\x5f\x40\x70\x0f\x45\x0c\x9a\xc8\x7d\x11\x8d\xbc\x78\xb5\x49\x68\x64\xd3\x78\x52\x5c\xf7\x9b\xa0\xd5\x87\xbd\x7b\x77\x35\xfc\x8a\x17\xdd\x0c\x26\x16\x72\x65\xab\x5a\x37\x74\xdd\x40\xfb\xe3\xe3\x56\x30\x89\xc4\x22\x95\xac\xda\xa1\x77\xc1\xc3\xcd\xbc\x6c\x50\x82\x7e\xae\xe1\x3f\x9c\x3b\x24\x49\xe5\xe9\x1b\x66\x7e\x83\x03\x6d\x6c\x9f\xd0\x07\x3c\xfa\xee\x5a\x6a\xad\xe0\x0a\xa9\x5d\x41\xa2\x3a\xbf\xc3\x27\xbb\xf8\x0d\x75\x2d\x5f\xb8\x3d\x90\x3d\x66\x3b\x1b\x72\x89\x9c\x2f\x1b\x0b\x2b\x44\x9d\x3f\xaa\x8f\xb2\xb7\x25\x8e\xe5\xd5\xb4\x5c\xb4\x96\xd6\xd0\x8f\x4b\x64\xe5\x7f\x6a\x3c\x7b\xbe\x48\xa6\xb5\x6a\x43\xcd\x7c\x75\xc3\x0a\xbf\x70\xc8\x59\xbc\x34\x63\x9e\x2d\x2e\xf7\x54\x9e\x2d\x15\xba\x99\x2f\x3b\x6d\x21\x4f\x07\x83\xa4\xc7\xaf\x17\x41\xcc\x47\x96\xe4\x09\xa3\xc4\x3a\xa0\x7a\xab\x39\x30\x01\xc6\x8b\xc8\x2f\xe2\xc9\xd8\x78\x70\xc0\x61\x74\x6f\xac\x81\x66\xde\x1c\xb7\x91\x06\x02\xbf\x4e\x26\x7b\x44\xef\xa1\xe9\x69\xc9\xa6\x24\xcb\xe4\x11\xa0\x78\xc6\x50\xdc\x6b\x2b\x9e\x90\x98\xc7\x57\xca\x3e\xf4\x02\xbb\x56\x1a\xbe\x5e\xcb\x97\xbe\x35\xb9\x3c\xab\xd7\x0a\x42\xae\xab\xb3\x46\x85\xef\x2e\xc3\x98\x9f\xab\x15\xe0\xab\x05\xf0\x6c\x2b\xef\xa1\x03\x0f\x93\xed\x18\xa6\xf2\xde\x38\x50\x46\x10\x5b\x7e\xc9\x9f\xe9\x5b\xa3\x41\x06\x27\xad\x93\x5a\x28\xa2\x49\x12\x72\x3e\xaf\x37\xc9\x47\x55\x8e\x45\x24\xac\x4a\x0e\xde\xab\x35\x8d\xc2\x40\xf6\x88\x89\xb0\x60\x7e\x3c\x25\xe6\x3d\x01\x64\x0f\x0f\x7c\x10\x44\xef\xab\x41\x43\xbe\xf4\x82\xc0\x5a\x15\xde\x22\x9d\x56\x9b\x66\x13\x70\xc2\xa3\xb4\xd8\x28\x82\x91\x5f\xcd\x76\xca\x62\x1b\xef\x0f\xc8\xc8\x91\x4f\xff\xfa\x17\xa9\x56\xf3\xed\x1f\x3b\xbb\x9f\x20\x83\xcb\x5b\x24\x2c\x6e\xb7\x25\x61\x10\xa5\x3b\xa3\x20\xf1\x2e\x42\xbe\x03\x49\x16\xf1\xbd\x19\x0f\x61\xe0\x1c\x99\x79\xc1\x41\x86\xaf\xd0\xa8\x50\x3e\x1a\x67\x3e\x3d\x85\xdb\x12\x0a\x5e\x21\x2e\xbe\xcb\x06\x2e\xb4\xfe\xc4\x98\xf7\xeb\x83\xab\xab\x19\x4a\xc3\xaa\xd6\x6c\x40\xf5\xfc\xd7\x86\x32\xef\x7e\x28\x8c\xd7\x68\x10\x3a\x1a\x11\x6f\x34\xc2\xcd\x05\x2f\x24\x08\xa3\x76\x6b\x64\x37\xbd\x27\x0f\xf8\x26\xc1\x92\x9b\x87\x57\x5a\x1f\x9e\xec\x91\x2a\xa9\x92\x27\x64\x7d\xbc\xb2\x67\x24\xe4\x22\xe6\xde\x55\xe6\xa2\xcb\x9b\xb1\x25\x5d\x2e\x97\x60\x00\x53\x26\x48\x5e\xb2\x61\x8f\x65\x0f\xf3\x6d\x71\x0b\x42\x6e\x0a\x67\xdb\x80\x65\x5b\xdf\xb2\x6f\x2e\x2e\x2e\xd5\x20\x8d\x06\x69\xf3\x88\xc7\x60\xad\x1e\x79\xf6\x8a\x5c\xac\x52\x4e\x62\xbc\x2a\x83\xa0\x5a\xe4\x0e\x21\x2b\x79\x89\xf8\x0d\xc9\xaf\xd9\xa8\x3d\x7b\x25\x23\x83\xbc\x6c\xc3\x2e\x5d\xb5\x51\xcb\x8b\x2d\x70\x38\x26\xa2\x25\x8f\x53\x4c\x0e\xf5\x78\xa9\x20\x1e\x99\xf2\x5b\x92\xe0\x6d\x1b\x58\x1f\x25\x8b\x48\xb0\x7c\x66\xaa\xaa\x92\x88\x97\xa6\x71\x70\xb1\x90\x67\x15\xe2\xe2\x52\x2f\xbe\x08\x12\x62\x67\x57\x79\xd8\x33\x6f\x6e\xfb\x5e\x18\xaa\xc1\x2d\x72\x0b\x3e\xfd\xd6\xd6\xf7\x79\x00\xcd\x75\xfb\x52\x04\x51\xad\x5a\x2d\x15\x92\x88\x8b\xcb\x6d\xa7\x20\xa3\x00\x8f\xc7\x6b\x49\xf1\x00\x24\xb1\x63\x3e\x0f\x3d\x9f\xd7\x1a\xc3\xe1\x70\xd8\x98\x58\xd5\x46\xb5\x6e\x36\x36\xbe\xfc\x9f\xc6\xd7\x7f\xfe\xcf\x86\x45\xe4\x70\x1b\xb1\x43\x0c\xe5\x71\xba\xda\x8f\xc5\x4c\xc6\x81\x29\xe7\xa9\x52\x0d\x11\x5b\x39\xfb\x16\xf1\x92\xf3\xde\xe1\x1e\x9e\xa3\x2a\x5a\xc0\x69\x22\xb7\x6f\x33\x17\x0a\xdd\x0f\x62\x3e\x56\xfc\x95\x85\x94\x88\x19\x97\x52\x1a\x09\x7f\x31\x83\xec\x06\xe3\x4e\x1f\xfa\x25\x56\x7e\xae\x83\x88\xf2\x6d\xb2\x78\x95\xdb\x9b\x92\xc0\x76\xd4\xd8\xd7\xf6\x93\xa4\xb7\x08\xb9\x89\x34\x5e\x84\x45\xc3\xcd\xc8\x05\x85\xc7\x5e\x53\x49\xbb\x06\xc8\xed\x44\xc4\xb8\xe0\x06\x14\xb6\x6e\x19\xf0\xdb\xa2\xbf\x7b\x04\x71\x12\x01\xf0\x6c\x72\x0b\xcf\xf5\xf2\xd9\x35\x0c\x9e\xc9\x1f\x47\xdf\x0c\xa7\x96\xc2\x44\x53\x07\x40\x60\x12\xa7\x6a\x72\xd1\x28\x72\x4c\x66\x22\x56\x20\x3a\x8d\x17\xbc\xf4\xee\xbe\xbc\xa6\xd1\xe7\x6f\xa0\x05\x05\xd8\x7b\x13\x6d\xa1\xdb\xc6\x2e\x19\xf8\x3d\x51\xc7\x17\x06\x5b\x8d\x06\xe9\x4c\x22\x11\x73\x9c\x94\x30\x21\x37\xd3\xc0\x9f\x12\xdf\x5b\x24\x7c\x24\x8f\x35\x12\x9b\x0c\xa6\x41\x42\xc6\x58\xef\xe7\xcd\xe6\x21\xc7\xcd\x9b\x29\xac\x9d\x22\x10\x9d\x17\x19\xe8\x70\x8f\x36\x01\x8d\x97\xc5\x55\x7c\xa4\xb7\xa3\xd1\x45\x7b\x11\xc1\x5b\x6f\x88\x88\x83\x89\x51\x57\xb0\x81\x74\xf4\xbf\xf7\x75\x23\x47\x91\xc2\xff\xc7\x3f\xa4\x81\x14\xb2\x14\xa0\x30\xe6\x33\xb1\xe4\x09\x59\xc4\x61\xad\x4e\x92\x69\x80\x21\x00\x46\xe3\x6a\x1c\x3d\x7b\xf8\xd7\x9e\xa1\x38\x1a\xb5\xf7\xcd\xe1\xb0\xf6\xa5\xfa\xaf\x61\xe5\xeb\xfb\x7a\xcd\xfe\xe7\xfb\x7a\xed\x7d\x53\x3d\x0f\x87\xf5\x7a\xa3\xfe\xe5\xd9\x57\xa3\x18\xf1\x17\xec\x5e\x5f\xb3\x13\x63\x6f\xf7\x3e\x87\xce\x34\xbf\x28\xf6\xf3\xde\x61\x42\x82\x88\xb0\x7e\x9f\x78\x31\x27\x7a\x93\x5c\xfb\x44\x68\xdf\x21\x89\x00\x63\x4f\x20\xe0\x91\x24\x5d\x8c\xc7\x76\x71\x41\x71\xe1\x25\x5c\x59\x55\xe6\xbe\xb2\xf1\x32\x15\xd0\x6c\x67\xd0\x4f\x48\xb5\x01\xd1\x2f\x77\x29\x5a\xdc\x05\x67\xa9\x5f\x6f\x3e\x34\x8e\xa6\x5e\xe4\x73\x47\x8c\x56\x8e\xe7\x5f\x4d\x62\xb1\x88\x46\xb5\x42\x92\x79\x31\x51\x95\x8b\x1b\x1c\x5f\xf5\x7f\x5c\x4c\x76\x14\x8e\x91\xad\x7f\x54\x2d\x52\xbd\xc8\xb0\xed\x04\x33\x6f\xc2\xab\x96\xdc\x7c\x33\xca\x13\xc5\x92\xc7\xa1\xb7\xfa\x59\xec\xcd\xa6\x37\x4e\x79\xfc\x83\x41\xf2\x61\xe6\xf2\x44\x10\xa2\xe2\x17\xa9\x00\x30\xa1\x17\x93\x6c\x26\x35\x80\x5c\x5e\x41\xe4\x54\x87\x88\x35\x75\x88\xb8\x61\x0d\x18\xcc\x26\x2a\xca\x76\x60\xe0\x5a\x3e\x4d\xc1\x6c\x62\x8b\x28\x14\x1e\xe4\xa1\xb5\xe2\xfa\x11\xe6\x44\x1e\x4b\x1a\x4b\xb7\xb7\x86\x3e\xf5\x39\xa0\x86\x4c\x4c\x7e\x2b\x02\x7a\x74\x33\xf5\x52\xbe\xe4\x31\x2a\xd4\x22\x0e\x55\x96\x94\x24\x64\x2a\xc2\x51\x7e\x04\x0d\x03\x27\xb1\x0f\x1a\x32\xc9\xce\x20\xb3\x05\xa1\xe4\x5a\x89\xfc\xbf\x2f\xeb\x8a\xc1\x4d\xfc\xeb\x93\x61\x88\x2a\x9a\x6f\xbd\xdc\x37\x69\x95\x9b\xd8\x76\x16\x70\x27\x3c\x75\x43\x0e\x3f\x9d\x55\x67\x54\xab\x1a\x3a\x59\xad\xdb\xd9\x06\x91\xcc\x46\xb3\x37\x6f\x33\xbf\x57\x38\xfd\xfd\x71\xdd\xe7\x7a\x51\xfe\xa3\xce\xfd\xb7\xd6\x7a\x96\x2d\x7e\xcb\xe9\xb6\xa4\x0c\x74\x44\x16\x24\xa8\xf4\xdb\x74\xcf\xd8\x47\x87\x93\xdc\x35\x6a\x78\xbd\x61\xb2\x76\x9e\xfe\xa7\x2b\x19\x4a\x98\xb3\x08\xc8\xc3\x84\xff\xe4\x30\x05\xa9\xd6\xb7\x3b\x4b\x44\xf6\x1f\x3c\xb2\xff\xf9\xf3\xf8\xe2\x6d\x76\x5b\x0f\xbc\x8b\x60\x06\x6d\xed\x38\x18\x6d\xed\x05\x2f\xff\x86\x33\xf9\x9f\x3d\xfb\x7f\xa8\x70\xc1\x10\x55\x5e\x4b\x66\x1e\xaa\xaf\x9f\xa8\x67\x1d\x0a\x85\xe3\x5b\xec\x25\x33\x14\x75\x0d\x6c\x2d\x2b\xe3\xd7\xdb\x5c\xe4\xbe\xb8\x09\x03\x54\x80\xc3\xcb\xf7\x7c\x7f\xb4\x1d\x49\x8a\x35\x24\x79\x45\x5c\x7d\xc3\xd2\x51\x9d\x53\xed\xe2\x44\x05\x29\x9f\x11\xbc\x01\x70\x6f\x58\xf1\x79\x94\xf2\xd8\xd8\x87\xcf\x8f\xc2\x94\x51\xa8\xa3\xb0\x0d\x47\x5e\xbb\x25\xbd\xc9\x37\xba\x87\x15\xe1\xef\xcc\x55\xfb\xb0\x42\x1a\x19\x7a\x63\x93\xb6\x3c\xd2\x2f\x0f\x8c\x54\xde\x19\x36\x4f\x3f\x4a\xc3\x86\xc1\x64\x9a\x0e\x2b\xe5\xf3\x36\xf3\x8c\x64\x3b\xf7\x0a\xfb\xc3\xbb\xe6\xea\x10\x5e\x7f\x45\xf7\xc0\x61\xf6\x3e\x7e\x8f\x05\x61\x48\x1b\x6f\x2a\x48\xc2\xe3\x25\x0c\x6a\x48\x85\x3c\x78\x72\x69\xf0\x5a\x26\x3c\x3b\x83\x90\x55\xee\x6b\x8c\x14\xb4\x15\x61\xf6\xee\xf0\xcf\xfd\xa3\x47\xdf\x74\xfe\x91\xdd\x76\x59\x6c\xd6\xc4\xcc\xe3\x60\xb6\xe1\x38\x24\x9f\x11\xfd\xb1\xeb\xa8\x0c\x52\x9a\x4b\x79\x4e\xb2\xa3\xf0\x11\xe1\xef\xcc\xd2\x9d\xb5\xa3\x89\x4d\x47\x26\x68\x11\x9b\x0e\x4b\x7e\x76\xaa\x61\x6d\x82\xc8\x8a\x87\x23\xeb\x73\xdd\x03\xa0\x0d\xb3\xba\x76\xda\x51\x3c\xb7\xc8\x0c\x62\x17\x3d\x25\xb6\x67\x7b\x07\xfa\x1a\xe9\xb5\x7d\x77\x9c\xc3\x8d\x9b\xe9\x8f\xda\x4a\xff\xb3\x3b\xe4\x5c\x7d\xe0\xf1\x88\x1d\xf2\xe2\x67\x17\x3f\xb5\x43\xae\xb8\x2e\x7e\x73\xf3\x97\x03\x68\x7e\xb5\xa9\x82\xc2\x06\xbc\x79\xfb\x3f\x52\xcc\xf6\x33\x41\xb3\x70\xab\xeb\x0f\x0a\xd2\x14\x54\x31\xc0\xab\x02\x24\x7d\x80\xa0\x9e\x1f\x53\x2a\x16\x0b\x91\x36\xcd\x4a\x5f\x59\xb0\x35\x0e\xf9\xad\x2e\xe3\x82\xdf\x4d\xf2\x6c\x98\x15\x89\xa9\xeb\x68\xb3\x6e\x0f\x94\x80\xe1\x15\xb1\x4d\x52\x7d\xf6\xf4\xe9\xff\x32\xbe\x90\x54\x01\x78\x53\x99\xd9\xce\xaf\x4f\x55\xdf\xe2\x65\xb2\x8a\xa8\x9d\x24\xf5\xe2\x54\xa3\x37\xae\x97\x2d\x17\xa8\xbd\xa8\x17\x61\xf0\xd2\xd9\x75\xa0\xe1\xd6\xd2\xb7\x02\xe9\x96\xa6\x53\xde\x58\xdb\x24\x2f\x9e\x3e\x5d\xab\x72\xdb\x20\x34\xf5\x94\x5f\xc8\xdb\x24\x55\xe9\xdc\xcb\x65\x70\x38\x4b\x6b\x77\xef\x42\xd2\xea\xc9\xf9\xda\x4d\xd2\x58\x44\x93\x77\x77\xd0\x70\xbf\xdb\x50\x8f\x46\xef\xb5\xba\xb2\x3d\xa2\xbf\x39\x2c\x59\xba\xa4\x4a\xd7\xb8\x69\x7e\xb3\xeb\x8c\x8b\x2d\xea\x4a\x63\xd5\xa8\xa2\xa3\x7a\xd2\x97\x1c\x5b\x06\x46\xe3\x4b\x23\xe3\xc2\x63\xd5\x92\x5f\x7a\xac\x1a\x6c\xdb\xc6\x8d\x22\x14\x47\xe9\x03\x48\x5d\x5e\x37\x11\xaa\x7a\x5c\xd1\x47\xde\xcb\xf2\x1d\xb5\x37\xbf\x0b\xeb\xcd\x24\xf6\xf7\xee\xd4\xc5\xc9\x36\x8f\x96\xf6\xe9\xb9\x73\xd8\x61\xdf\xce\x7b\x87\xb8\x0d\xa2\xae\x62\x00\x64\x76\xb2\x9c\x54\xef\xd7\x12\x0b\x31\x11\xc3\x0a\xf1\x42\x88\x60\xe2\x26\x62\xa1\x58\x8c\x86\x95\xc6\xbb\x02\x31\x4a\xf7\xc9\x5e\x56\xf5\xf7\x9e\xec\x2a\x7b\x6b\xbc\x23\x4d\x52\x2b\x4a\x8d\xbc\xcf\x64\x44\x9a\xba\x7e\x41\xa9\xf4\xbb\x3b\xfd\xea\x7e\xb7\x68\xdd\xef\x4a\xbb\xd9\x85\x04\x2f\xbb\x4a\x42\x5b\x88\x99\x30\xe4\x9a\x66\xb6\x66\x77\x40\x63\x70\x0e\x17\xb3\x68\x58\x21\xca\x08\xf6\xee\x9e\x66\x11\xb4\x5c\xcb\x80\xfe\xb4\xa6\xcb\x1a\xc0\x57\x58\x39\x4c\xfd\x9e\xdc\xe9\xd9\xcb\x4b\x2b\x7e\xa2\x06\x63\x1b\xa8\x92\x71\xb1\x5c\xe3\x0e\xe6\xa7\x10\xea\xef\x34\xdc\xb6\xd8\x5b\x7a\x92\xc6\x55\x9e\x76\xd9\xba\xa3\xea\x63\x0a\x29\xd6\x83\x25\x5a\x85\x3c\x42\x22\xb1\x93\x50\x4c\xbc\xa8\x98\xbf\xac\x25\x12\xbb\x60\xbf\xef\xb4\x82\xed\x36\xf0\x91\xec\x10\x8f\x24\xde\x98\x93\xa9\x98\x71\xdc\x83\xf5\xc2\x50\x16\xd6\x8c\xbc\xd4\x2b\xe2\xcc\xea\xb4\x8a\xc9\x4e\x84\xe5\x5a\xf2\x22\x6f\xb0\xf8\x35\x6f\x52\x93\xef\xea\x66\xb7\x7b\x43\x7c\x0d\x43\x74\xb2\xf3\xbb\xcd\xc9\x0b\x6a\xe7\xda\xff\xec\xc2\xbc\x25\x5c\x67\x32\x86\xd5\x9a\x5f\x8c\x15\x8d\xc4\x7c\xa3\xcc\x4a\x35\x6d\x1d\xeb\xcf\x96\x2a\x94\x28\xca\x81\x2f\x84\x08\x37\x92\xb6\x01\x24\xa3\x71\xc3\x3b\x6d\xd2\xe6\xcb\x48\x8c\x78\x99\x8c\x4c\x0d\x4d\x40\x79\x72\x86\xef\x73\x47\xb9\x25\x0f\x34\x7c\xeb\x3a\xc4\x96\x9c\x6c\x43\x71\x42\x59\xb2\x98\x96\x7d\xd5\x37\xd1\xf4\x84\x48\x2b\xcd\x4a\xe5\xfe\xff\x06\x00\x00\xff\xff\x6f\xba\xca\xaf\xb0\x65\x00\x00") -// FileIdentifierStaticJsContainersLogin35b164c4ChunkJs is "identifier/static/js/containers-login.35b164c4.chunk.js" -var FileIdentifierStaticJsContainersLogin35b164c4ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5b\x7b\x73\xdc\x36\x92\xff\xff\x3e\x05\x85\xdb\x9b\x25\xca\x10\xad\x91\x2c\xc7\xa6\x96\x56\x25\x8e\xb3\xc9\xc6\x8e\xb5\x76\xbc\x2f\x95\x4a\x05\x91\x3d\x33\xb0\x48\x80\x01\x40\xc9\x0a\xc5\xef\x7e\x85\x07\x5f\x33\x1c\x49\x76\xb2\x77\xfb\x8f\x34\x24\xf1\x6c\x74\xff\xfa\xd7\x0d\x20\xd4\x2b\xa6\xa2\x6b\xb8\x28\x69\x7a\xf9\x17\x25\x78\xc9\x32\xe0\x9a\x2d\x18\xc8\xe4\x8e\x6f\xb7\xb7\xa7\x67\x38\x2a\x2b\xb5\x0a\x4f\x4f\xf7\xcf\x48\x3d\x3f\x88\x17\x15\x4f\x35\x13\x3c\x04\xa2\x09\xc5\x35\xaa\x14\x04\x4a\x4b\x96\x6a\x74\x44\xa3\x2c\xd4\x04\x2d\x10\x09\xbb\x72\xb8\x96\xa0\x2b\xc9\x03\xd5\x60\x4c\x7c\x09\x98\x2c\x21\x06\x25\xb2\xc9\x12\xe9\xa0\x04\x9d\x2c\xc1\x06\x25\xd2\xc9\x12\xf9\xa0\xc4\xc5\x64\x89\x6a\x50\x62\x35\x59\xa2\x18\x94\x58\x4e\x96\x28\x1b\x8c\x8f\xae\xa8\x0c\x78\x42\xc3\xf9\x3e\x26\x32\xa1\xe1\xfe\x1c\x13\x95\xa0\x4b\xc1\x39\xa4\x3a\x02\x29\x85\x8c\x72\xb1\x64\x3c\xba\xa2\x39\xcb\xa8\x86\xa8\x60\x4a\x31\xbe\xfc\xa0\x40\x72\x5a\x00\x22\xe2\x61\x15\x4e\xa8\x52\xd7\x42\x66\x88\xa4\xd3\x15\x16\x94\xe5\x90\x21\xc2\xfc\xe7\xf6\xeb\x4a\xeb\x32\xe2\xa0\xaf\x85\xbc\x7c\x65\xde\x20\x92\xaf\xb7\x60\xcb\x54\x1c\x3e\x95\x90\x6a\xc8\xde\x81\x2a\x05\x57\xf0\x5e\x53\x5d\x29\x44\xaa\xcf\x28\x0f\x88\x64\xc9\xdb\x8b\x8f\x90\xea\x90\x47\x14\x87\xf5\xa9\x3a\x8b\x6b\x96\xc5\x8a\x64\xb0\xa0\x55\xae\xdf\x80\x52\x74\x09\x31\x7a\xc5\x35\xc8\x80\xf2\xa0\x6a\xa5\xd1\x90\x53\xe1\x4a\x8b\x6d\xa5\x83\xb2\x95\x44\x43\x4e\x53\x57\x38\xdd\x28\xfc\x5a\x2c\x05\x0f\x9c\x4c\xa2\xe0\x24\x07\xaa\x20\xb8\x02\xc9\x16\x37\xc1\x8d\xa8\x64\x90\x4a\xb0\x86\x40\x73\x15\x50\x9e\x05\x5a\xde\x04\x74\x49\x19\x8f\x4c\xbb\xcc\xb5\xcb\x36\xda\xfd\xc9\x09\x32\x70\x72\x68\x1b\x4e\x57\x90\x5e\xfa\x76\x9d\xa0\x98\xe0\x13\xcd\xe6\xae\xd9\x7c\xa3\xd9\x0f\x9d\x2c\x83\xef\x7f\xfe\xf9\x24\x90\x5e\xa2\x71\x50\x2b\xbb\x08\xcd\x67\xf7\x55\xb9\xbe\xaa\xbb\xfa\x6a\xbb\x09\x4c\x27\x6d\x67\xd0\xa0\xa6\xc1\x47\x69\x4e\x95\x0a\x8a\x00\x3e\x69\xe0\x99\x0a\xac\xee\xd4\xa9\xe0\x4a\xcb\x2a\xd5\x42\x1a\x88\xc0\xb5\xaa\x4a\x90\x21\x60\x62\x81\xe6\x8a\xe6\x15\xa8\xe4\x4a\xb0\x2c\xd8\x23\xee\xdf\x4e\x92\xd8\xba\x51\x4a\x4b\x5d\x49\xa3\x25\xe9\xe5\xcf\x92\xa6\x30\x9b\x6d\xf9\x60\x11\x8d\x14\xe3\x46\x75\xd3\x18\x83\x2b\x5b\xed\x92\x51\x8a\xc3\xde\x34\x01\xd7\xe6\xb3\x4e\xc0\x29\x29\xa1\x09\x44\x8c\xeb\xfc\x88\x2d\xc2\x1d\x8d\xbd\xe1\xf2\x2a\xcf\xbd\xe1\xea\x88\x65\xc7\xe6\x4f\xac\xa3\xc2\x49\x87\x48\xdf\x7a\x44\x95\x62\x4b\x1e\xd6\x0d\x31\x52\xe4\xeb\x52\xf4\x75\x7d\xb5\xd8\xcd\xb4\x21\xd9\x29\x3f\xc3\x47\xbe\x2b\x1a\x2d\x84\x2c\x68\x5b\x27\x94\x44\xfb\xb9\xe0\x06\xe3\x86\xcc\x9f\x3f\x08\x6e\xa7\x61\xae\xb8\x17\x2a\xcb\x7b\xe1\x76\x75\x2f\x54\x2e\x87\x30\xf7\xd4\xc1\x5c\xc4\x43\x6e\x70\x8e\x86\x4f\xf6\x31\x11\xe6\xff\x01\x26\xa9\xc1\xc1\x03\x4c\x98\x79\x7e\x82\x49\x6e\xf0\xf0\x29\x3e\x6a\xdb\x0c\x2a\xb3\x42\xae\xd9\x5a\xdf\x94\x10\xe7\xd1\x05\xb1\x2b\x15\x43\xd3\x74\xc5\xb2\x70\xbd\xd4\xe5\xe0\x6b\x31\x5c\x66\x55\xa5\x29\x28\x65\x17\xba\x45\x10\xc2\x13\x88\x32\xa6\xca\x9c\xde\xfc\x44\x0b\x38\x1a\xb7\x95\x12\xa7\xe9\x3b\x7b\x49\x92\x68\xd2\xd6\x8a\x29\x19\xd4\x89\x39\x59\x41\x9e\x8b\xd1\xb8\xca\x5e\x28\xc3\x45\xc3\x35\x84\x59\xe8\x85\x44\x13\x1d\xe2\x28\x15\x45\x21\x38\xe1\x09\x8d\x16\xb9\xb8\x36\x92\x88\x7e\xa9\x40\xde\x90\x4e\x75\x85\x01\x46\xff\x5b\x99\xdf\x9c\xe4\xb8\xd3\x1b\x19\xd1\xa8\x14\x4a\x87\x28\x7a\xdc\x7b\xeb\xc7\xe7\x8f\xed\xa8\x10\x29\x49\xbd\x02\x9a\x81\x54\x71\x8d\x7e\x14\x25\xe5\x62\xf7\x47\x07\x05\xbb\xff\x78\xff\xee\x3b\x14\xa3\xb9\x31\xe1\x48\xaf\x80\x87\x90\xbc\xa8\xd5\x35\xd3\xe9\x2a\x84\xc8\x81\x09\xae\x53\x83\x24\xfb\x7b\x7b\xb1\xef\x12\xa2\x8c\x6a\x7a\xe4\x5f\x3f\xf1\xaf\x6b\x2f\xe1\x78\x67\xee\xe5\x06\x91\xef\xf9\x14\x5d\xba\x8e\xbd\x63\xd8\xb5\xdf\xd1\x59\x73\xe4\x0d\x25\xd6\x2b\x29\xae\x03\x0e\xd7\x41\x1a\xad\xc2\x34\x4a\x09\xe0\x6e\x50\x3a\x79\x51\xb3\x45\xa8\xed\x80\x60\x27\x49\x4a\xf7\x0b\xaf\xd7\xba\x20\xba\x93\x0b\x84\x45\xa8\x31\x26\x27\x52\x14\x4c\x41\x24\x41\x89\xfc\x0a\x42\x8d\x1b\x1c\xa5\xd4\xcc\xd0\xb4\xab\x5b\x29\x33\x23\x59\x8d\x09\x84\x95\xa9\xd7\xe0\xc1\x72\xae\xa6\x96\xb3\x7b\x65\x6a\x18\xa0\xc0\xa6\x72\x19\xe2\x61\xcd\xe5\x74\x4d\xa7\x06\x04\xc2\x56\xd5\x58\xe3\x94\x42\x8f\x16\xbd\x6e\xee\x5f\xe6\x5c\x2c\xc5\x62\x81\x88\xfe\xb7\xad\xf3\x83\xd6\x88\xba\x35\xa2\xdd\x1a\xe9\xad\x6b\x44\x3d\x48\xf4\x2b\x15\xf2\xc4\xda\x18\xed\xac\xb4\x95\x4b\xe6\x55\x89\x37\x13\x4b\x49\x1f\xbe\x94\x0d\xd9\x7f\xfe\xec\x3e\x00\x95\xa1\xee\xf1\xeb\x70\x0d\xbe\xe6\x4f\x1d\x7c\x3d\x7d\xee\xe1\x6b\xee\xe0\xeb\xf0\xd0\xc1\xd7\x7c\xef\x10\x93\xca\xfc\x78\x8e\x49\x96\xd0\xf0\xf9\x73\x4c\x0a\x83\x6b\xcf\x9e\x63\x52\x9a\x1f\xcf\xe7\x98\xac\x2c\xf2\x3d\xc3\x64\x69\x1b\x5f\x61\xb2\xb0\x65\x9e\x61\x72\x61\x3f\x7d\x85\xc9\x55\x62\x96\x67\xa4\x0e\x17\x66\x4a\x23\x65\x48\x25\x50\x0d\xaf\x72\x28\x80\xeb\x10\x31\x5e\x56\x1a\x91\x35\x7f\x64\xdd\xb2\x45\x29\x24\xd2\x5d\x57\xa6\x21\x40\xea\x32\xa7\x29\xac\x44\x9e\x81\x8c\x21\x1a\x3c\x1d\xeb\x35\x3f\x34\xfa\x8a\x63\xa3\xe8\xd6\x1f\xbd\xf2\x18\x7f\x6d\xe7\xf1\x0a\x93\x1b\x33\xe7\x67\x98\x5c\xda\x17\x37\x98\xfc\xe4\x41\xff\xa3\x07\xfd\xb7\x1e\xf4\x4f\x1c\xd8\x93\x73\x07\xfe\x3d\xe8\xbf\x59\x07\xfd\x93\x68\xe1\x40\x5f\x8d\xd0\xf5\x93\x5b\xbf\x04\xcd\xd1\xa6\x75\x71\x22\x71\xcd\xc3\x31\xec\x8e\x1b\xfd\xd8\x43\x39\x90\x96\x20\xc6\xba\x69\x6c\x61\x4c\x78\x8b\xb6\x95\x21\x0d\x75\x5f\xb8\xf5\x6f\x2a\x91\x3d\x74\x8b\x44\x39\xe8\x4e\x13\xe5\xa1\x9b\x25\xa7\x67\x47\xde\xbc\xa8\xb3\x2b\x34\x47\x31\x73\xe1\x93\x53\xbe\xa3\x0b\x09\xf4\xd2\x82\x28\xda\x1b\x7c\x43\x88\x50\x6c\xb9\x4b\xde\x2e\xfe\x47\x8b\x05\x25\x95\xb4\x50\x31\xf3\xee\xc6\x7f\xfb\xc9\x7c\x13\x24\xc5\x3d\x54\x5c\xdf\x05\x15\x1c\x91\xfc\x3f\xd8\x23\xb4\xcb\x5d\x9b\xa0\x21\x36\xa8\x61\x49\x5f\xf8\x36\xca\x70\x33\xe5\x2e\xde\x46\xab\xf0\xed\x3d\xee\x22\xdf\x80\x22\x57\xcb\xba\x0b\xef\x8a\x23\x2b\xd5\x8e\x8c\xdd\xde\x86\x34\xe9\xc6\xaf\x3b\x5c\x1a\xea\xc2\x9a\x9e\x50\xab\x39\x53\x0c\x73\x48\x3d\xdc\xfc\x8e\xc6\x0a\x09\xa4\xeb\xa9\x15\x00\x6d\x9a\xfb\xdc\x57\x0f\x12\x4e\x5a\xd0\xea\xcb\xb9\xd1\x09\xc0\x4d\x3b\x1b\x1e\xbe\xb1\x6d\x0d\xd7\xc3\x77\xa3\x9b\x91\xa3\x7b\x19\x42\xb2\x33\x27\x3a\x41\x13\x96\x45\x09\xc7\x35\x1d\xcc\x30\xd9\x99\x8f\x4d\x0b\x8e\x4f\xa2\x65\x7c\x12\xad\x8c\x29\x79\x5b\x91\x09\xef\x6c\xc5\x9b\x87\x1a\x2b\x36\xcd\x73\x71\x1d\x03\x51\xa9\x28\x21\xd6\x24\xcd\x19\x70\x7d\xce\xb2\x58\x46\xdd\xef\xdb\x5b\x84\x88\x84\x8c\x49\x48\xf5\x79\x25\x59\x2c\xa3\xe1\xa3\xff\xbe\x88\xa5\x5b\x6c\xfb\x6c\xcc\xf2\x9c\x0b\x9e\x42\x2c\x23\xfb\xdf\xbc\x7e\x80\xa5\x98\xc0\x05\xb8\x46\x44\xfd\xdf\xdb\xca\xde\x6f\x61\x4f\x13\xe6\x00\xce\x1c\xa0\x33\x07\xb5\xd5\x1c\xa0\x8f\x46\xbe\x4c\x91\xe9\xb4\x22\xc3\x84\x22\xc3\x17\x28\x32\x7d\xb0\x22\xbf\x6e\x5d\x7c\x6b\x02\xc9\x8b\xb1\x4f\x18\x7c\xeb\x5d\x47\x5f\x1c\xae\x03\x3f\xe0\x30\x94\x44\x61\x3f\x42\x91\xd4\xcd\x11\xdc\xde\x86\xa2\x8b\x21\x92\x21\x48\x2d\x30\x26\xfa\xf6\x96\xda\x12\xad\x67\x19\x95\x00\x8b\x12\x6f\x42\x81\x31\x31\x94\xc7\x3b\xec\x4b\xb8\x51\xa1\xc0\x51\x0e\x7c\xa9\x57\xc7\x32\x14\x38\x36\x2f\xcc\xa4\xfc\x70\xfd\x72\x86\xd8\x4c\xc5\xbb\xc0\x63\xe3\x3a\x8c\x1b\xc4\x03\x59\x86\x13\xe2\x31\xae\xab\x97\xce\x7b\xef\x40\x77\xe6\x84\x27\x75\xd3\x4e\xbb\x9d\xa9\xd1\x16\xec\xe7\xab\x7a\x47\x97\x26\xc2\x39\x3a\x96\x08\x6f\xc9\x79\x22\x1c\x70\x92\x6a\x33\x14\x66\x84\xe3\xd6\x0b\xa6\xde\x0b\x0a\x5a\xe9\x15\x8a\xed\xef\xd6\xc8\xdc\x93\x60\x59\x8a\x62\xb6\x08\xf3\x28\x03\x4d\x59\xee\xbc\xea\x4e\x92\xa4\xd8\xb9\x4a\x13\x99\xd3\xd9\xac\xab\x97\x18\x64\x6f\xcb\x72\xf8\xd4\x45\xed\x36\xbe\xd6\x91\x04\xcb\x5c\x42\xd4\x99\x73\x94\x0a\x9e\x52\x1d\xea\x28\x17\x29\x35\xa2\x88\x14\x50\x99\xae\xf0\xc4\x97\x15\x55\x2b\x8c\x8f\x46\x23\x4a\x05\xd7\x8c\x57\x60\x10\xa7\xed\xad\x8a\x4a\x29\x8a\x52\x27\x88\x0b\x0e\xc8\xe5\x31\xae\x19\xcf\xc4\x75\xdf\x58\x3b\x96\xe9\xa6\x1e\xa1\x63\xf4\xe8\x32\x32\xe4\x59\x32\xbe\x64\x8b\x9b\xb0\xc2\x2d\x43\x68\x8d\x9c\x2d\x8c\x9f\xf1\xb5\x66\x33\xa3\x3c\xfd\x73\xc4\x78\x06\x9f\xde\x2e\xc2\x4c\xa4\x95\x61\x84\x7d\xd7\x42\xb2\x25\xe3\x78\x24\x9c\x6d\xc3\xeb\x1b\x74\x14\x24\x4b\xd0\xe3\x6b\xc8\x53\x51\x00\x3a\x42\xef\x5e\x9d\xbc\xfe\xfa\xe5\x2b\x23\x78\x1d\x51\xab\x4a\xb3\x59\x98\x25\xd9\xa3\x0d\x81\x3e\x5a\x17\x24\x91\xe1\x1b\x13\xcf\x60\xa2\x1d\xd3\x31\xfe\xbc\x71\x69\xa3\x6f\xbb\xb4\x91\x21\xb6\x27\x95\x84\x97\xa2\x28\x05\x07\xae\x47\x29\xa4\x28\x8a\xa0\xcd\x21\xd9\xdf\x2e\xe3\x63\xd1\x2c\xa9\x9b\x26\x6d\x6b\x7d\xcb\xb2\x37\xa2\xe2\x3a\x74\x5a\x0c\x2e\xaf\x5d\x4a\x51\x2a\x62\x70\xcc\xa9\xac\x41\x31\xa7\xc6\x6d\x1a\xc0\x58\x10\x91\xa6\x00\x53\x5a\xc8\x1b\xb3\xf8\x7a\x36\xf3\x4c\x62\x36\x43\x27\x1f\xde\x7f\x8f\x76\x92\x44\xfa\xe9\xe3\x2e\x79\xe3\x74\x60\x36\xdb\x9d\xef\x24\xed\x53\xb7\x28\x48\x41\x6e\xfc\x14\x4d\x53\x33\x2c\x84\x8f\xed\x2a\xc8\xa1\x8a\xae\x84\x50\xd0\x16\x68\xd5\x51\x6e\x55\x54\xb9\xae\xa8\x2e\xab\xc4\xc3\xf7\xe1\xce\x1e\x91\x18\x37\x12\x78\x06\x72\x9b\x08\x72\x41\x33\xc6\x97\x03\x28\xb7\x52\xb0\x0b\x02\x8a\xa8\x61\x96\x44\x24\xd4\x26\x71\x6f\x6f\x69\xf7\xd2\xfc\x6e\x01\xce\xc4\x43\xb6\xc0\xf1\x66\x60\xf2\x36\x5a\x92\xda\x25\x6e\x5c\x99\x06\xc7\x7d\x2b\xf7\x55\x68\xcb\x35\x38\xbe\xa7\x64\x3b\x96\xe6\xae\x20\xc9\x44\x36\x88\xd4\x6e\xed\x62\x84\x88\xe0\xef\xab\x8b\x82\xe9\x18\x92\x17\x56\x40\x96\x22\x1b\x97\x43\x36\xab\x5f\x91\x9a\x56\x5a\x7c\x27\xd2\xca\xba\x69\xf3\xf0\x92\x96\x4c\xd3\x9c\xfd\x6a\x22\x2c\x13\x86\xab\x12\xf2\xfc\xe5\x0a\xd2\xcb\x18\x2d\x68\xae\x0c\x20\xd0\xbc\x82\x58\x11\xc1\x5f\xae\x28\x5f\x42\x6c\x7b\x5a\x51\x9e\xe5\xe0\xde\x84\xa8\xcb\x69\x63\xd7\xac\x28\xca\x1c\x34\xc4\xad\xeb\xf7\x8a\xd1\xe7\xbe\xc9\x30\x82\xab\x59\x16\x77\x49\x77\x97\xe0\x6f\x0b\x7e\xc7\x20\xcf\xa2\x9c\x5e\x40\x8e\x36\x93\xbb\x5d\x26\xbd\xc1\xd3\x13\xb6\x7e\x1d\x75\x49\x74\x52\x50\xb9\x64\x3c\x46\xdc\xc4\x88\x39\xba\x73\x4e\x5d\xad\x7b\xe6\x94\x56\x52\x02\xd7\xbb\x7d\x2f\xbf\xc7\xdc\xba\x2d\x10\x33\x37\x31\x9b\x6d\x4e\x6f\x11\x51\x62\x8c\x83\x51\xae\x63\xa4\xaa\x0b\xcd\x74\x0e\xfb\x88\xa4\x22\x17\x32\x46\xe0\xf6\x3f\xfa\x18\x9a\xb7\x19\xdc\x86\xa4\x53\xf2\x42\x19\xbb\x42\xa4\x1e\x56\xb8\x96\xb4\x2c\x41\x4e\xa9\x53\x61\xba\x77\xf2\x55\x56\x09\xbb\x8e\x4b\xc9\x0a\x2a\x6f\x8c\xe6\xf8\xc1\x19\x54\xa6\x8c\x43\x36\x1c\x8e\x09\xe9\x2f\x2a\xad\x05\xdf\xf5\x35\x02\x91\xee\x16\x7a\xd7\x48\x83\x29\x7a\x91\x43\x16\xef\xec\x68\xb3\x48\x39\x4b\x2f\x1f\xa4\xe4\x99\x19\xd5\xa6\xc8\x8d\x7b\xfd\xc6\xf6\xb5\x4d\xde\xaf\xc5\x32\x60\x1c\x59\x84\x9f\x92\x76\x69\x1a\x56\xc6\x50\xf6\x9f\x8c\x64\xea\xa6\x70\x22\xc5\x52\x82\x52\x0d\xc6\xb8\x19\xe9\x51\x9f\x68\xb3\x49\x9e\x0e\xc6\x3a\xc4\xbe\x33\xd6\x2f\x88\x8f\xf3\x9d\x15\xfa\x20\x3f\xd2\x54\x2e\xc1\x27\xd8\x31\x6e\x9a\x56\x24\x35\x44\xa5\x84\x2b\xe3\x43\xdc\xfc\xc2\x36\x2f\x37\xc0\x4f\x13\x2e\x0e\x52\xc8\xba\x07\x42\x99\xe8\xde\x91\x28\x13\x55\x7a\x47\x22\xc3\xd7\x26\x7e\x22\x3b\x73\x3c\xa0\xe5\x1d\xa3\x9e\xcd\x64\xf8\x3e\xec\x09\xb6\x72\x59\x2b\xd3\xf3\x37\x49\x97\xfa\xbd\xc0\x03\xaa\x0c\x6e\x65\xec\x60\x5a\x30\xe7\xc3\x81\xc9\xe1\xc0\xcc\x58\x3c\xcc\x0b\x03\xf3\x96\xd1\xb5\xe4\xdd\x57\x8f\x69\x1f\xde\xf2\x3e\x2f\x22\x5b\x0e\xa9\x7c\xe6\xa1\xa5\x7c\xd6\x77\xc6\x9e\x0a\x36\x4d\x97\xa3\x4e\x2d\x6b\x37\x3c\x74\xbc\xb4\x71\xed\xf4\x7b\x19\xd1\xd3\xc3\xbd\xbd\x33\x52\x0a\xc5\x1c\x12\xd3\x0b\x25\xf2\x4a\x03\x22\x5a\x94\x31\x3a\xdc\xfb\x1f\x44\x72\x58\x68\xff\xd3\xa1\xce\xcf\xa2\x8c\x77\xe7\xfb\xfe\xe9\xb5\xf9\xbc\x3b\xdf\x6f\x88\xaa\x2e\xbe\xb7\x91\x52\x5c\xbb\x4f\xdf\x08\xad\x45\x11\x43\xa4\x4a\x9a\x32\xbe\x0c\x0f\x70\x43\xbc\x25\xc6\x75\xdf\xab\x84\x9c\x6a\x76\x05\x88\x5c\xb3\x4c\xaf\x62\x34\xdf\x33\xbd\x69\xf8\xa4\xbf\xce\xd9\x92\xc7\x28\x05\xae\x41\xa2\x86\xb4\x5b\x37\x75\x3f\x94\x43\x32\xea\xed\xb0\x69\x30\x0e\xbf\xc5\x98\xbc\xb3\xb9\xbe\x7d\x4c\x7e\x4e\x68\x78\xb0\x77\x88\xc9\x8f\xf6\xcd\x13\x4c\x3e\xd8\x1f\x07\x98\xfc\x62\x3f\x3d\x71\xca\xf5\xdd\xdd\x4b\xbc\xbe\x4c\xfd\x7a\xb7\xb1\x4f\xbb\xb4\x7e\x23\xa2\x8d\xb6\xed\xe3\xe4\xc2\xdc\x2f\xb2\x7d\x3c\x39\xe9\x71\x01\x8f\xe0\xaf\x99\xd2\x6d\x21\xbb\x2c\x7d\xa9\xdd\x03\xec\xc5\xf4\x8e\x2d\x57\x6b\x5f\x46\x0d\xfc\xa0\xa1\x88\xeb\x92\x66\x66\x66\x6b\xad\x1c\x60\xe2\x3f\xac\xb7\x72\x80\xad\xd8\x7b\x08\xe8\xa4\x04\x9d\x74\x88\x27\x35\x31\xf5\x02\x52\xc4\x9b\x65\x2c\x48\x6b\xad\x71\xda\xe0\xba\xdb\x89\xae\x14\xbc\x5a\x2c\x20\xd5\xd8\xc6\x5b\xb5\x9a\xcd\x54\x97\x57\xb0\x24\x30\x49\x12\xe1\x49\xe0\xed\xad\x18\x10\xb9\x3e\x8f\xd0\xb1\x38\xb1\x95\xc5\x89\x75\x16\xe7\xb7\x01\x58\x62\x77\x1e\xb5\x65\x4c\xb3\x59\xc8\x92\x2d\xee\x6b\x9b\xab\xa2\xbd\xab\xba\x93\x38\x69\xcf\xc9\x7c\xb2\x26\x4f\x10\x3a\xea\x27\x3b\x9b\x85\x79\xa2\x3a\x48\x71\x65\xaa\xc4\x41\xd7\x3a\x4e\x92\x34\x7c\x1d\xf6\x85\x09\x42\x64\x67\x6f\x0b\xda\xa5\x23\xb4\x13\x16\xed\xee\xe0\x6d\xd6\xaf\x1a\x89\x4c\x4c\x66\xec\xc5\x57\x87\xc6\x8b\xfa\x30\x20\x46\xab\x83\x75\x87\x99\x1b\x05\x42\x0f\xf2\x7c\x23\x4a\x6e\x93\x31\x39\x33\x01\xde\xba\xe7\x7b\x69\xcb\x05\x94\x07\x2d\x7d\x37\x4e\xf0\xa1\x7c\x63\x3e\x5e\xb6\xce\x32\x1f\xa1\xe0\xb7\x0c\xb7\x6b\x67\x73\xbc\x5a\x04\x26\x44\x0f\x18\x0f\xb4\x08\x5c\x52\x6b\xcb\x90\xef\x66\xcc\xd5\x16\x0e\xf1\xce\x0c\xcd\x33\x90\x13\x67\xb7\x86\x2f\x0f\xa7\x39\x30\xfc\xa9\x16\x7e\x36\x2d\x38\xef\x61\x6a\xfa\xb6\xfe\x5c\x69\x0d\x52\xdd\xd1\x96\x01\x91\x21\xf7\x81\x21\xf7\xd9\x36\xdc\x0f\x11\xdd\xa6\x5c\xbf\xb4\x9f\x72\x23\x50\xa5\x65\xb8\x47\xe6\x78\x52\x54\x3f\x5a\x73\x9c\xd0\x35\xe2\xc9\x59\x9c\x4f\xcb\xf8\xdf\x32\xd7\x70\x8b\x8d\x0a\x17\x7c\xff\x76\x98\xfa\x0d\xb2\xfc\x6c\x5d\xae\x14\xbc\xd5\x2b\x90\x51\x09\x52\x09\x4e\xb7\x51\xd0\x63\xa3\xc5\x5f\xb6\x36\x5f\x3e\xa6\xed\xa1\x55\x40\xb9\x30\x45\x06\xb0\x60\xc7\xc7\xb0\xfb\xff\x7d\x42\xc3\xc3\x27\x98\x7c\x6d\x37\xcc\xbe\xc7\xe4\x07\xcb\x0e\xbe\xc2\xe4\x57\xfb\xe3\x10\x93\x7f\x18\x9a\x30\xc7\xe4\xcf\xc9\x90\x15\xb8\xa4\x38\xa1\x2d\x6d\xf8\x87\xf5\xeb\xe4\x14\xb9\x0f\xe8\xec\xae\x18\x58\x95\x94\x23\x42\x89\x6e\x0f\x3e\x9c\xdb\x40\x7c\xfc\x68\x4f\xac\xe0\x86\xfc\xc5\x0e\xe4\x39\x26\x7f\xf7\x07\xd7\xfe\xea\x0f\xae\xfd\xad\xed\xfb\xef\x36\x85\x6f\x53\xf7\xe7\x34\x67\x54\x9d\x5f\x50\xc5\xd2\x71\xd8\x66\x3f\x7f\x0b\x2a\x95\xac\xb4\x5a\x64\x4b\x7e\x63\x0a\x6e\x4a\xee\x6b\xeb\x14\xdc\x99\x25\xdb\x56\x2b\xbf\x80\x71\xb7\x35\xc9\x04\x47\x8d\xdb\x2e\x38\x17\x8b\x85\x41\xe5\x73\xea\x32\x9e\x77\x77\xeb\x0b\xbb\x1e\x36\x7b\xfe\x11\xa0\x0c\xf4\x0a\x02\xbb\x23\x01\x59\xe0\x1a\x0d\x8c\xda\x31\xa5\x81\xeb\xfc\xc6\x9e\x9d\x5a\x08\x63\x57\xd2\x86\x96\xff\x4c\x86\xec\xca\xb0\x85\xb0\x96\xe2\xba\xa3\x32\x86\x35\xed\xb5\xf4\xc5\xd3\xac\x3d\x4b\x5a\x7c\xbd\xbf\x46\xe9\x98\xf4\xd9\x61\xbb\x24\x7b\x01\x9a\xae\xe5\x65\xd6\xd7\xdc\x95\x46\x04\x99\xb2\x88\x20\x5f\x12\x9d\xd9\xed\xea\xa8\xa0\x65\x69\xa8\x62\x9a\xd0\x28\x83\x05\xe3\x96\xfb\x2a\xc2\xc6\x3b\xcb\x24\x4f\x4e\xcf\x48\x95\xd4\xcd\xd1\x42\xc8\xd0\x0c\xa5\xb0\x0e\x02\xb3\x45\xa8\x4f\x8b\x33\x97\x46\x2a\x13\x71\x5a\x9c\x1d\xb1\x45\x58\xe2\x9a\x2d\xc2\xea\xb4\x3c\xc3\x6d\xca\xf0\xc8\x3c\x25\x3b\x7b\x0d\xe4\x0a\x82\x32\x29\x2c\x5d\x58\x25\xe9\x69\x79\x46\x96\xfe\x98\x97\xa9\xbb\xb2\x75\x57\x46\xc5\x6c\xab\x8b\xe4\x6f\xa7\xe6\xe9\xec\x68\x31\x9b\x85\xcb\x84\xad\x6d\x41\x2f\x30\x6e\x96\xb7\xb7\xe1\x32\x59\x45\x59\xbf\x9c\xed\xcb\x07\xd8\xee\x86\x26\xd8\x17\x9b\x1a\xf0\xde\x6e\x41\x05\x4e\x9f\x1b\x9f\xba\x51\xb1\x7b\x8e\x0b\xb3\x6c\x24\x77\x10\xba\x05\xc8\x37\xe1\x3b\x03\xae\xc0\xfc\xb8\x84\x9b\xb8\x1c\x85\xbe\x52\x5c\x4f\x81\xe8\x5f\x2c\x5c\xad\x20\xbd\x34\xc0\xde\xb9\x84\x77\xac\x2c\x73\x18\xbc\xc8\xc6\xde\xc1\xc0\x9a\xad\x75\x21\x3e\xed\x66\x54\x5e\xa2\xc9\xac\x8e\x05\xc3\x16\xf7\x96\xd3\xf4\x08\xdb\xfc\xe1\x16\x08\x31\xee\x5d\x91\xdc\x80\x98\x3f\xf7\xf7\xaf\xdf\x96\xc0\x75\xec\x22\x69\xf7\x1e\xeb\x06\x27\x2f\xba\xf3\x24\x1b\x2e\xac\x3b\x27\xe8\xf7\x28\xf8\x68\x0f\x45\xe3\x68\xc1\x72\x0d\xd2\x98\xd4\xce\x8e\x3e\x85\x33\x1c\x7d\x14\x8c\x87\x28\x40\x98\xc8\x61\x1c\xaf\x12\xd9\x47\xeb\x22\x91\x5d\xb4\xae\xc2\x97\x21\x10\xbe\x85\xbc\xaa\x31\x79\x25\x3b\x7b\xa4\xf6\x8a\x16\xfb\x5d\xb6\xc6\x9f\x3a\x79\x70\x46\xba\x1b\x06\xed\xd2\xd3\xbc\xcf\x43\xdb\x9c\xb4\x03\xf7\x23\x3a\x9b\xd1\x96\x9d\xcb\x41\x34\xc2\xbb\x68\x84\xdf\x1d\x8d\xf0\xad\x6e\x9e\xaf\xbb\x79\xa2\x7d\xd2\xfe\x9e\x64\x72\x8b\x4e\x74\x90\x58\xe6\xdd\x44\x54\x9f\x62\x16\xbd\xf7\x4a\x13\xde\xed\x85\x38\x0c\xbb\xbd\xad\x1b\xc2\x06\xaf\x0d\xa2\x99\x97\xff\x79\x91\x81\xdb\x4f\xba\x23\x26\xf8\x9e\x05\xf5\xe0\x90\xe0\x00\x4a\x46\x47\x07\x87\x87\x0f\x9b\x2f\x8e\x1a\xba\xd1\xdb\xfc\xdf\xc5\x6e\x81\x1a\xd2\x67\x49\x3f\xab\xd1\xa5\xc5\x2d\xef\xa6\x36\xd0\xe5\x0b\x44\xe4\xc3\xd0\x4d\x09\xd5\x4e\x0f\xbe\x1d\x08\x20\xb8\xa6\x5c\xab\x40\x8b\x5e\x5a\x1b\x85\x26\x98\xda\x0f\x16\xd0\x8c\xc2\x17\x76\x69\x2f\xec\xe8\x11\xb1\x73\x7a\x10\xb3\xf3\x63\xd5\x42\xe4\x9a\x95\x5e\x43\x37\x86\xfc\x47\xcb\xae\x19\x5f\x06\xe8\x6b\x43\x10\x50\x70\xcd\xf2\x3c\x68\x4f\x21\x18\xc6\x12\x68\x11\x07\x75\xfb\xe6\xc3\xbb\x1f\x9a\x3f\x76\x53\x19\xbc\x8d\xc5\xe8\xec\x42\xd3\x4c\x72\x69\x04\xc5\x56\xdd\xfe\x33\xf1\xa2\x89\x85\x05\xeb\x69\xdd\xf9\x27\xa9\x3b\xef\x73\x57\x3c\xe6\x1d\xa4\x32\x61\x85\xe3\x55\x2a\x4e\x89\x31\xbf\x98\xf9\x4f\x93\xae\x64\xb1\x8d\x57\x7f\x96\x8a\xd8\xff\xbf\x54\xc0\xd3\x09\x35\xf9\xe6\x26\x48\x5b\xb1\x5b\xa9\x13\x2b\x67\xcb\xd0\x02\x03\x43\x01\x2d\x4b\x13\xc7\x56\x0a\x1c\x67\x1c\xb0\xc4\xe8\xf3\xc3\xda\x81\x43\x0a\xfd\xc1\xf4\x74\x72\x75\x7e\xdd\x1e\xce\x6c\xec\x03\xe8\x7b\xf7\x01\x7c\x1e\x47\x41\x2a\x78\x66\x73\xff\xc3\xda\x2e\x3a\x1c\x06\x7b\xb4\x0b\xf6\x86\x03\xde\x99\x6f\x19\xec\x76\xd9\x53\x9e\x42\x7e\x77\x66\xff\xa5\x2d\x63\x45\x69\x9c\xcf\x4e\x92\x9c\x44\xcb\xcf\x48\xf1\xeb\xcd\x14\xff\xef\x23\xb4\xdf\x77\xf3\x04\x3d\x40\xbe\xdb\x94\x61\xab\x7c\xad\x9e\xde\x2d\x5e\x87\x25\x56\xba\xc9\xef\x20\x5a\x4c\xbe\x0e\x71\xa8\x6c\x5e\xcf\xc5\x23\xbf\xc3\xce\x97\x7e\x60\x3a\x51\x75\xe9\x44\xec\xb7\x2f\xfe\xb0\x35\xb7\x3d\x4c\x52\x7b\xe6\x30\x91\xec\xa6\xeb\xc9\x6e\x3a\x4e\x76\xb7\xc7\xc5\x62\xdd\x9f\xac\xb0\x2f\x0c\x71\xf8\xff\xdc\x94\xe8\x00\xf5\xce\x14\x7b\xb7\x2b\x31\x9d\x62\x27\x53\x9b\x15\x9e\x33\xc4\x88\x71\x43\x3e\x76\x2f\x72\x91\x5e\x4e\xef\x51\x8c\xda\xda\x3e\x0c\x13\x8d\xfe\xab\x63\xf3\x00\x77\xd2\xf9\x4d\x46\x3b\xb5\x27\xd7\x9d\x8c\x34\xd1\xe5\x06\x7f\x34\xc0\x99\x24\x03\x1a\x39\x3e\x7e\xb9\xa9\x63\xcc\x68\x6c\x9f\xda\xbf\x66\x7a\x25\x2a\xdd\x3b\xb3\x29\xbd\x14\x51\xb6\x0d\xa1\x45\x74\x41\xea\x92\xea\x55\x3c\xa2\xc8\x04\x3e\xd1\x54\x5b\xdf\xd8\x31\xc5\x6f\x26\x3d\xdf\xb0\x81\xf1\xd1\x8d\xa9\x36\xbe\xbb\xbf\x8d\xf6\xc0\xe1\x44\xed\x3f\x4c\xd6\xce\x2d\x02\xda\x6d\xcc\xf1\x24\x9a\xce\xf6\x34\xac\x1b\x5f\x58\x4f\x6e\x11\xe1\xb1\x99\xb8\x24\x86\x79\x0b\x80\x71\x7b\xb3\xc8\xe3\xd6\xe4\xcd\x1f\x17\xf1\x90\x27\xfb\x77\x1f\xb1\xef\x0e\xa0\xf9\xad\x5a\x77\xf6\xb6\x6e\x8e\x74\x77\x7e\x26\x6c\x0f\xcf\x24\xed\xbb\xf6\x48\x3e\xb4\x67\xc9\xe0\x81\x67\xc9\xa8\xa3\x2e\x89\x67\x37\xf6\x44\x28\xed\x4f\x94\x26\x7a\xed\x74\x29\x1d\x91\xb2\x44\x6f\x9e\x2f\xd5\x11\xcb\xce\xb5\xb8\x04\x7e\xbe\x62\xdc\x8d\x76\xf4\x26\x59\x2b\x81\x89\x8e\x0a\xfa\xe9\x9c\x2e\xc1\x16\xf6\xbf\x93\xee\xad\x29\x90\xe6\x94\x15\xea\xdc\x0e\xd2\x96\xb2\xbf\x1e\x25\x28\x40\x8f\xc6\x5f\xd7\x8f\x84\x71\x6b\x48\x6d\xa4\xce\x6d\xe5\x45\x2e\xae\x13\x8e\x09\x6d\xee\xbc\xef\xc5\xdd\x82\xdd\x73\x87\x77\xb8\x60\xfd\x7d\x17\x7f\xe2\xea\x0d\xd5\xab\x48\x52\x9e\x89\x22\xc4\x91\x16\xef\xed\xe1\xb5\xf0\xe0\x29\xf6\xc9\x72\xf3\xf4\x15\x26\xf0\xa0\x91\x3c\x79\xd0\xf5\xb6\xe9\x26\xe4\xe8\x7e\xed\xc1\xe0\x4a\x81\x1c\x8d\x5b\x1a\x9a\xa9\xcc\xba\x41\x62\x4f\xa2\xda\xfb\x8c\xc7\x1c\xae\x03\x1e\xad\x42\x1e\xa5\xa4\x7f\x8d\xe3\xfe\x3d\xc5\x66\x1a\x0d\x39\x3c\xbc\x7b\x94\xed\x18\x0e\xe6\xee\x8e\xef\xa1\xbd\x3b\x12\xf1\x50\xba\xcb\x23\xcf\x9e\xd8\xcb\x23\x11\x0f\x85\xbb\x3d\xf2\xfc\xb9\xbf\x3d\x32\x77\x97\x47\xf6\x9f\x3d\x75\xb7\x47\xf6\x9f\xef\xb9\xeb\x23\xf3\xa7\xfe\xf6\xc8\xb3\xaf\xdc\xed\x11\x7b\x57\x64\xd9\x5e\x2c\x59\xf8\x24\xf2\x85\x6d\x75\x81\xc9\x95\xbf\x82\xf2\xca\x8b\xc2\x0c\xe9\xba\xc5\x81\xa2\xc3\x01\x7f\x97\xae\xc5\x01\xfb\xb8\xb6\x93\xea\x8b\xf4\x5b\xa4\xba\xe9\xef\x6f\x6f\xe0\x51\x65\x29\x90\x06\x1b\x36\xd2\xb5\xed\xf3\x8b\x10\x87\x1e\xf3\xc1\xe1\xcb\x66\x03\xe5\x66\x30\x51\x7a\x27\x6d\xd9\x51\xdb\xc6\xce\x1d\x6d\x0c\xf2\x01\x9b\x1f\x57\x5b\x77\x01\x46\x49\x82\xf5\x10\x78\x7d\x2e\x9b\x0d\xb3\xcd\x33\x33\xd6\x51\xb5\xf7\x9f\xb7\x66\x09\xbe\xb3\x37\x8e\x4d\xf4\xe2\x2f\xe7\x9a\x9f\x0a\xe4\x95\x83\xf1\x6d\x73\x18\x8f\x68\x4c\xda\xa6\xc6\xf7\xaa\x27\x68\x30\xdd\xec\xd2\x36\x3b\x3c\xdc\xf6\xfb\x1d\x45\x7a\xc0\xae\x94\x6e\xdd\xcf\x55\x94\x59\xba\xe0\xb6\x97\x1e\x24\xe9\x25\xe3\x91\x04\x2d\x6f\xee\x66\xd9\xef\x4c\x11\xe4\x99\x29\xc6\xe4\x66\x6d\x47\xa5\x4f\x60\x79\x6e\xf1\x5a\x2c\x85\xcd\xbb\x8d\xb9\x86\x4d\x61\xb5\x94\x34\x37\x55\x57\x2c\xcf\x24\x70\x52\xb4\xed\x18\x89\x90\x32\x09\x21\xfa\x96\xd1\x5c\x2c\x4f\x6c\x9e\x0c\xa2\x13\x5a\x82\x74\x0f\xc3\x2b\xef\x6e\xe3\xc6\x25\xed\x09\x1a\xf4\xde\x3f\xf9\xbe\x11\x41\xbe\x67\x44\x50\xdb\x6f\x9b\xf2\xff\xc9\x9e\x0a\x44\x83\x2e\x11\x41\x7d\x97\xe8\x0c\x5b\xf8\x38\x36\xc6\x11\x4f\x58\x0e\x2b\x96\x88\xd4\x4a\xa6\x31\x8a\x1e\x1b\x80\x67\xa9\xbd\x30\x14\xa9\xab\xe5\x46\xb2\xc9\x8e\x8e\xe6\x3a\x46\xe2\x9a\xbf\xcc\x45\x95\xa1\xc6\x80\x92\x38\xde\x6c\xf9\xda\xda\x23\x8e\xe5\xf1\x54\xbf\x59\xb7\xc3\xda\x6d\x5a\x4d\x63\xcb\xfa\xcd\x36\xaf\x86\xd2\x28\xeb\xc7\x4a\x69\xb6\xb8\xe9\x4d\xc2\x5a\xc8\x0f\x1a\x0a\xd5\xbf\x73\xbe\xdc\x72\xe9\x54\xe4\x55\xc1\x11\xf1\x14\x38\x1e\xe6\x42\xd2\x10\x87\x3a\x92\x42\x68\x52\xe0\x86\x94\x53\xe6\x72\x57\xac\xfa\xa0\xd2\x66\xf4\xc0\x75\x43\x56\x64\x39\x69\x90\x68\x21\x84\x1d\xf5\x1a\x60\xb9\xd7\xbb\x6d\x56\xed\x41\x36\xe2\xea\x44\x2a\x17\x4b\xca\x37\x2d\xe3\x4f\x9c\x16\xf0\xa2\x5d\xc7\x3f\x3d\xb6\x8f\xc1\x6e\x40\x03\x45\x17\x10\xac\x44\x01\xc1\x42\xc8\x80\xe6\xb9\x4b\xb0\x64\x54\xd3\x3e\x43\xe7\x8e\xd7\x25\x2f\xfa\x43\x7a\x30\x35\x1f\xa5\xa5\x30\x7a\x6b\xd7\xda\x73\x3a\x6d\x02\x34\x8c\x9b\xa3\x9b\xc8\x0f\xca\xaa\x6a\x52\x0f\x8c\x20\xde\x99\x6f\xb0\xfd\x39\x69\x23\x81\x9d\xb9\xe1\x8e\xdd\x46\x68\xde\x05\x79\x66\xfd\xba\x5c\x6b\x8c\x16\x39\x7c\x42\xc4\xfc\x8d\xe7\x0d\xf1\xd2\xbf\xff\x28\x58\x43\x5c\xe0\xaf\x86\x31\xd5\xee\x93\x4e\xe1\x5e\xfa\x86\x6c\xfb\xbb\x4a\x53\xa9\x11\xf9\x82\x23\x4c\x7d\x18\x38\x3a\x88\x56\xd0\x4f\x7f\xb7\xcf\x07\x7b\x7b\x64\x72\x2e\x53\x8a\x6e\xa3\xb9\x1b\xdc\x34\x67\xf8\xe8\xbf\x1e\x3f\xfe\xef\x40\x89\x4a\xa6\xf0\xc6\x6d\x04\x7e\x78\xf7\x3a\xe9\x6c\x47\xed\x3a\xfc\x3c\x38\xbc\x98\x3f\x7d\x92\x3e\x89\xd2\x55\xc5\x2f\xa3\x8f\x2a\x2a\x68\xf9\xbf\x01\x00\x00\xff\xff\xa1\xe3\x5c\x4f\x29\x46\x00\x00") +// FileIdentifierStaticJsContainersLogin17c1c6d2ChunkJs is "identifier/static/js/containers-login.17c1c6d2.chunk.js" +var FileIdentifierStaticJsContainersLogin17c1c6d2ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x7b\x6b\x73\xdc\x36\xd2\xee\xf7\xf3\x2b\x28\x9c\x3d\xb3\x44\x19\xa2\x35\xb2\xe5\xd8\xd4\xd2\x2e\xc7\x71\x36\xd9\xd8\xb1\xd6\x8e\xf7\xa6\x52\xa9\x20\xb2\x67\x06\x16\x09\x30\x00\x28\x59\x4b\xf1\xbf\x9f\xc2\x85\xb7\x19\xce\x48\x76\xb2\xef\xbb\x5f\xa4\x21\x89\x6b\xa3\xfb\xe9\xa7\x1b\x40\xa8\x57\x4c\x45\xd7\x70\x51\xd2\xf4\xf2\x2f\x4a\xf0\x92\x65\xc0\x35\x5b\x30\x90\xc9\x8e\x6f\xb7\xb7\xa7\x67\x38\x2a\x2b\xb5\x0a\x4f\x4f\x0f\xcf\x48\x3d\x7f\x14\x2f\x2a\x9e\x6a\x26\x78\x08\x44\x13\x8a\x6b\x54\x29\x08\x94\x96\x2c\xd5\xe8\x98\x46\x59\xa8\x09\x5a\x20\x12\x76\xe5\x70\x2d\x41\x57\x92\x07\xa2\xc1\x98\xf8\x12\x30\x59\x42\x0d\x4a\x64\x93\x25\xd2\x41\x09\x3a\x59\x82\x0d\x4a\xa4\x93\x25\xf2\x41\x89\x8b\xc9\x12\xd5\xa0\xc4\x6a\xb2\x44\x31\x28\xb1\x9c\x2c\x51\x36\x18\x1f\x5f\x51\x19\xf0\x84\x86\xf3\x43\x4c\x64\x42\xc3\xc3\x39\x26\x22\x41\x97\x82\x73\x48\x75\x04\x52\x0a\x19\xe5\x62\xc9\x78\x74\x45\x73\x96\x51\x0d\x51\xc1\x94\x62\x7c\xf9\x51\x81\xe4\xb4\x00\x44\xd4\xfd\x2a\x9c\x50\xa5\xae\x85\xcc\x10\x49\xa7\x2b\x2c\x28\xcb\x21\x43\x84\xf9\xcf\xed\xd7\x95\xd6\x65\xc4\x41\x5f\x0b\x79\xf9\xda\xbc\x41\x24\x5f\x6f\xc1\x96\xa9\x38\x7c\x2e\x21\xd5\x90\xbd\x07\x55\x0a\xae\xe0\x83\xa6\xba\x52\x88\x54\x5f\x50\x1e\x10\xc9\x92\x77\x17\x9f\x20\xd5\x21\x8f\x28\x0e\xeb\x53\x71\x16\xd7\x2c\x8b\x05\xc9\x60\x41\xab\x5c\xbf\x05\xa5\xe8\x12\x62\xf4\x9a\x6b\x90\x01\xe5\x41\xd5\x4a\xa3\x21\xa7\xca\x95\x56\xdb\x4a\x07\x65\x2b\x89\x86\x9c\xa6\xae\x70\xba\x51\xf8\x8d\x58\x0a\x1e\x38\x99\x44\xc1\x49\x0e\x54\x41\x70\x05\x92\x2d\x6e\x82\x1b\x51\xc9\x20\x95\x60\x0d\x81\xe6\x2a\xa0\x3c\x0b\xb4\xbc\x09\xe8\x92\x32\x1e\x99\x76\x99\x6b\x97\x6d\xb4\xfb\xb3\x13\x64\xe0\xe4\xd0\x36\x9c\xae\x20\xbd\xf4\xed\x3a\x41\x31\xc1\x27\x9a\xcd\x5d\xb3\xf9\x46\xb3\x1f\x3b\x59\x06\x3f\xfc\xf2\xcb\x49\x20\xbd\x44\xe3\xa0\x56\x76\x11\x9a\x2f\xee\xab\x72\x7d\x55\xbb\xfa\x6a\xbb\x09\x4c\x27\x6d\x67\xd0\xa0\xa6\xc1\xc7\x69\x4e\x95\x0a\x8a\x00\x3e\x6b\xe0\x99\x0a\xac\xee\xd4\xa9\xe0\x4a\xcb\x2a\xd5\x42\x1a\x88\xc0\xb5\xaa\x4a\x90\x21\x60\x62\x81\xe6\x8a\xe6\x15\xa8\xe4\x4a\xb0\x2c\x38\x20\xee\xdf\x5e\x92\xd8\xba\x51\x4a\x4b\x5d\x49\xa3\x25\xe9\xe5\x2f\x92\xa6\x30\x9b\x6d\xf9\x60\x11\x8d\x14\xe3\x46\x75\xd3\x18\x83\x2b\x5b\xed\x92\x51\x8a\xc3\xde\x34\x01\xd7\xe6\xb3\x4e\xc0\x29\x29\xa1\x09\x44\x8c\xeb\xfc\x98\x2d\xc2\x3d\x8d\xbd\xe1\xf2\x2a\xcf\xbd\xe1\xea\x88\x65\x2f\xcc\x9f\x58\x47\x85\x93\x0e\x91\xbe\xf5\x88\x2a\xc5\x96\x3c\xac\x1b\x62\xa4\xc8\xd7\xa5\xe8\xeb\xfa\x6a\xb1\x9b\x69\x43\xb2\x53\x7e\x86\x8f\x7d\x57\x34\x5a\x08\x59\xd0\xb6\x4e\x28\x89\xf6\x73\xc1\x0d\xc6\x0d\x99\x3f\xbb\x17\xdc\x4e\xc3\x5c\x71\x27\x54\x96\x77\xc2\xed\xea\x4e\xa8\x5c\x0e\x61\xee\x89\x83\xb9\x88\x87\xdc\xe0\x1c\x0d\x1f\x1f\x62\xa2\xcc\xff\x47\x98\xa4\x06\x07\x1f\x61\xc2\xcc\xf3\x63\x4c\x72\x83\x87\x4f\xf0\x71\xdb\x66\x50\x99\x15\x72\xcd\xd6\xfa\xa6\x84\x38\x8f\x2e\x88\x5d\xa9\x18\x9a\xa6\x2b\x96\x85\xeb\xa5\x2e\x07\x5f\x8b\xe1\x32\xab\x2a\x4d\x41\x29\xbb\xd0\x2d\x82\x10\x9e\x40\x94\x31\x55\xe6\xf4\xe6\x67\x5a\xc0\xf1\xb8\xad\x94\x38\x4d\xdf\x3b\x48\x92\x44\x93\xb6\x56\x4c\xc9\xa0\x4e\xcc\xc9\x0a\xf2\x5c\x8c\xc6\x55\xf6\x42\x19\x2e\x1a\xae\x21\xcc\x42\x2f\x24\x9a\xe8\x10\x47\xa9\x28\x0a\xc1\x09\x4f\x68\xb4\xc8\xc5\xb5\x91\x44\xf4\x6b\x05\xf2\x86\x74\xaa\xab\x0c\x30\xfa\xdf\xc2\xfc\xe6\x24\xc7\x9d\xde\xc8\x88\x46\xa5\x50\x3a\x44\xd1\xc3\xde\x5b\x3f\x3c\x7f\x68\x47\x85\x48\x49\xea\x15\xd0\x0c\xa4\x8a\x6b\xf4\x93\x28\x29\x17\xfb\x3f\x39\x28\xd8\xff\xc7\x87\xf7\xdf\xa3\x18\xcd\x8d\x09\x47\x7a\x05\x3c\x84\xe4\x79\xad\xae\x99\x4e\x57\x21\x44\x0e\x4c\x70\x9d\x1a\x24\x39\x3c\x38\x88\x7d\x97\x10\x65\x54\xd3\x63\xff\xfa\xb1\x7f\x5d\x7b\x09\xc7\x7b\x73\x2f\x37\x88\x7c\xcf\xa7\xe8\xd2\x75\xec\x1d\xc3\xbe\xfd\x8e\xce\x9a\x63\x6f\x28\xb1\x5e\x49\x71\x1d\x70\xb8\x0e\xd2\x68\x15\xa6\x51\x4a\x00\x77\x83\xd2\xc9\xf3\x9a\x2d\x42\x6d\x07\x04\x7b\x49\x52\xba\x5f\x78\xbd\xd6\x05\xd1\x9d\x5c\x20\x2c\x42\x8d\x31\x39\x91\xa2\x60\x0a\x22\x09\x4a\xe4\x57\x10\x6a\xdc\xe0\x28\xa5\x66\x86\xa6\x5d\xdd\x4a\x99\x19\xc9\x6a\x4c\x20\xac\x4c\xbd\x06\x0f\x96\x73\x35\xb5\x9c\xdd\x2b\x53\xc3\x00\x05\x36\x95\xcb\x10\x0f\x6b\x2e\xa7\x6b\x3a\x35\x20\x10\xb6\xaa\xc6\x1a\xa7\x14\x7a\xb4\xe8\x75\x73\xf7\x32\xe7\x62\x29\x16\x0b\x44\xf4\x7f\x6c\x9d\xef\xb5\x46\xd4\xad\x11\xed\xd6\x48\x6f\x5d\x23\xea\x41\xa2\x5f\xa9\x90\x27\xd6\xc6\x68\x67\xa5\xad\x5c\x32\xaf\x4a\xbc\x99\x58\x4a\x7a\xff\xa5\x6c\xc8\xe1\xb3\x6f\xee\x02\x50\x19\xea\x1e\xbf\x8e\xd6\xe0\x6b\xfe\xc4\xc1\xd7\x93\x67\x1e\xbe\xe6\x0e\xbe\x8e\x8e\x1c\x7c\xcd\x0f\x8e\x30\xa9\xcc\x8f\x67\x98\x64\x09\x0d\x9f\x3d\xc3\xa4\x30\xb8\xf6\xf4\x19\x26\xa5\xf9\xf1\x6c\x8e\xc9\xca\x22\xdf\x53\x4c\x96\xb6\xf1\x15\x26\x0b\x5b\xe6\x29\x26\x17\xf6\xd3\x37\x98\x5c\x25\x66\x79\x46\xea\x70\x61\xa6\x34\x52\x86\x54\x02\xd5\xf0\x3a\x87\x02\xb8\x0e\x11\xe3\x65\xa5\x11\x59\xf3\x47\xd6\x2d\x5b\x94\x42\x22\xdd\x77\x65\x1a\x02\xa4\x2e\x73\x9a\xc2\x4a\xe4\x19\xc8\x18\xa2\xc1\xd3\x0b\xbd\xe6\x87\x46\x5f\x71\x6c\x14\xdd\xfa\xa3\xd7\x1e\xe3\xaf\xed\x3c\x5e\x63\x72\x63\xe6\xfc\x14\x93\x4b\xfb\xe2\x06\x93\x4f\x1e\xf4\x7f\xf6\xa0\xff\xce\x83\xfe\x89\x03\x7b\x72\xee\xc0\xbf\x07\xfd\xb7\xeb\xa0\x7f\x12\x2d\x1c\xe8\xab\x11\xba\x7e\x76\xeb\x97\xa0\x39\xda\xb4\x2e\x4e\x24\xae\x79\x38\x86\xdd\x71\xa3\x9f\x7a\x28\x07\xd2\x12\xc4\x58\x37\x8d\x2d\x8c\x09\x6f\xd1\xb6\x32\xa4\xa1\xee\x0b\xb7\xfe\x4d\x24\xb2\x87\x6e\x95\x08\x07\xdd\x69\x22\x3c\x74\xb3\xe4\xf4\xec\xd8\x9b\x17\x75\x76\x85\xe6\x28\x66\x2e\x7c\x72\xca\x77\x7c\x21\x81\x5e\x5a\x10\x45\x07\x83\x6f\x08\x11\x8a\x2d\x77\xc9\xdb\xc5\xff\xd9\x62\x41\x49\x25\x2d\x54\xcc\xbc\xbb\xf1\xdf\x3e\x99\x6f\x8a\xa4\xb8\x87\x8a\xeb\x5d\x50\xc1\x11\xc9\xff\x8b\x3d\x42\xbb\xdc\xb5\x09\x1a\x62\x83\x1a\x96\xf4\x85\xef\xa2\x0c\x37\x53\xee\xe2\x5d\xb4\x0a\xdf\xdd\xe1\x2e\xf2\x0d\x28\x72\xb5\xac\xbb\xf0\xae\x38\xb2\x52\xed\xc8\xd8\xed\x6d\x48\x93\x6e\xfc\xba\xc3\xa5\xa1\x2e\xac\xe9\x09\xb5\x9a\x33\xc5\x30\x87\xd4\xc3\xcd\xef\x78\xac\x90\x40\xba\x9e\x5a\x01\xd0\xa6\xb9\xcb\x7d\xf5\x20\xe1\xa4\x05\xad\xbe\x9c\x1b\x9d\x00\xdc\xb4\xb3\xe1\xe1\x5b\xdb\xd6\x70\x3d\x7c\x37\xba\x19\x39\xba\x57\x21\x24\x7b\x73\xa2\x13\x34\x61\x59\x94\x70\x5c\xd3\xc1\x0c\x93\xbd\xf9\xd8\xb4\xe0\xc5\x49\xb4\x8c\x4f\xa2\x95\x31\x25\x6f\x2b\x32\xe1\x9d\xad\x78\xf3\x10\x63\xc5\xa6\x79\x2e\xae\x63\x20\x2a\x15\x25\xc4\x9a\xa4\x39\x03\xae\xcf\x59\x16\xcb\xa8\xfb\x7d\x7b\x8b\x10\x91\x90\x31\x09\xa9\x3e\xaf\x24\x8b\x65\x34\x7c\xf4\xdf\x17\xb1\x74\x8b\x6d\x9f\x8d\x59\x9e\x73\xc1\x53\x88\x65\x64\xff\x9b\xd7\xf7\xb0\x14\x13\xb8\x00\xd7\x88\x88\xff\x79\x5b\x39\xf8\x2d\xec\x69\xc2\x1c\xc0\x99\x03\x74\xe6\x20\xb6\x9a\x03\xf4\xd1\xc8\xd7\x29\x32\x9d\x56\x64\x98\x50\x64\xf8\x0a\x45\xa6\xf7\x56\xe4\x37\xad\x8b\x6f\x4d\x20\x79\x3e\xf6\x09\x83\x6f\xbd\xeb\xe8\x8b\xc3\x75\xe0\x07\x1c\x86\x92\x08\xec\x47\xa8\x92\xba\x39\x86\xdb\xdb\x50\x75\x31\x44\x32\x04\xa9\x05\xc6\x44\xdf\xde\x52\x5b\xa2\xf5\x2c\xa3\x12\x60\x51\xe2\x6d\xa8\x30\x26\x86\xf2\x78\x87\x7d\x09\x37\x2a\x54\x38\xca\x81\x2f\xf5\xea\x85\x0c\x15\x8e\x45\xa8\x2c\x77\xf1\xc3\xf5\xcb\x19\x62\x33\x15\xef\x02\x5f\x18\xd7\x61\xdc\x20\x1e\xc8\x32\x9c\x10\x8f\x71\x5d\xbd\x74\x3e\x78\x07\xba\x37\x27\x3c\xa9\x9b\x76\xda\xed\x4c\x8d\xb6\x60\x3f\x5f\xd1\x3b\xba\x34\x51\xce\xd1\xb1\x44\x79\x4b\xce\x13\xe5\x80\x93\x54\x9b\xa1\x30\x23\x1c\xb7\x5e\x30\xf5\x5e\x50\xd0\x4a\xaf\x50\x6c\x7f\xb7\x46\xe6\x9e\x04\xcb\x52\x14\xb3\x45\x98\x47\x19\x68\xca\x72\xd7\xd9\x5e\x92\xa4\xd8\xb9\x4a\x13\x99\xd3\xd9\xac\xab\x97\x18\x64\x6f\xcb\x72\xf8\xdc\x45\xed\x36\xbe\xd6\x91\x04\xcb\x5c\x42\xd4\x99\x73\x94\x0a\x9e\x52\x1d\xea\x28\x17\x29\x35\xa2\x88\x14\x50\x99\xae\xf0\xc4\x97\x15\x55\x2b\x8c\x8f\x47\x23\x4a\x05\xd7\x8c\x57\x60\x10\xa7\xed\xad\x8a\x4a\x29\x8a\x52\x27\x88\x0b\x0e\xc8\xe5\x31\xae\x19\xcf\xc4\x75\xdf\x58\x3b\x96\xe9\xa6\x1e\xa0\x17\xe8\xc1\x65\x64\xc8\xb3\x64\x7c\xc9\x16\x37\x61\x85\x5b\x86\xd0\x1a\x39\x5b\x18\x3f\xe3\x6b\xcd\x66\x46\x79\xfa\xe7\x88\xf1\x0c\x3e\xbf\x5b\x84\x99\x48\x2b\xc3\x08\xfb\xae\x85\x64\x4b\xc6\xf1\x48\x38\xdb\x86\xd7\x37\xe8\x28\x48\x96\xa0\x87\xd7\x90\xa7\xa2\x00\x74\x8c\xde\xbf\x3e\x79\xf3\xf2\xd5\x6b\x23\x78\x1d\x51\xab\x4a\xb3\x59\x98\x25\xd9\x83\x0d\x81\x3e\x58\x17\x24\x91\xe1\x5b\x13\xcf\x60\xa2\x1d\xd3\x31\xfe\xbc\x71\x69\xa3\xef\xba\xb4\x91\x21\xb6\x27\x95\x84\x57\xa2\x28\x05\x07\xae\x47\x29\xa4\x28\x8a\xa0\xcd\x21\xd9\xdf\x2e\xe3\x63\xd1\x2c\xa9\x9b\x26\x6d\x6b\x7d\xc7\xb2\xb7\xa2\xe2\x3a\x74\x5a\x0c\x2e\xaf\x5d\x4a\x51\x2a\x62\x70\xcc\xa9\xac\x41\x31\xa7\xc6\x6d\x1a\xc0\x58\x10\x91\xa6\x00\x53\x5a\xc8\x1b\xb3\xf8\x7a\x36\xf3\x4c\x62\x36\x43\x27\x1f\x3f\xfc\x80\xf6\x92\x44\xfa\xe9\xe3\x2e\x79\xe3\x74\x60\x36\xdb\x9f\xef\x25\xed\x53\xb7\x28\x48\x41\x6e\xfc\x14\x4d\x53\x33\x2c\x84\x5f\xd8\x55\x90\x43\x15\x5d\x09\xa1\xa0\x2d\xd0\xaa\xa3\xdc\xaa\xa8\x72\x5d\x51\x5d\x56\x89\x87\x1f\xc2\xbd\x03\x22\x31\x6e\x24\xf0\x0c\xe4\x36\x11\xe4\x82\x66\x8c\x2f\x07\x50\x6e\xa5\x60\x17\x04\x14\x11\xc3\x2c\x89\x4a\xa8\x4d\xe2\xde\xde\xd2\xee\xa5\xf9\xdd\x02\x9c\x89\x87\x6c\x81\x17\x9b\x81\xc9\xbb\x68\x49\x6a\x97\xb8\x71\x65\x1a\x1c\xf7\xad\xdc\x55\xa1\x2d\xd7\xe0\xf8\x8e\x92\xed\x58\x9a\x5d\x41\x92\x89\x6c\x10\xa9\xdd\xda\xc5\x08\x11\xc1\x3f\x54\x17\x05\xd3\x31\x24\xcf\xad\x80\x2c\x45\x36\x2e\x87\x6c\x56\xbf\x22\x35\xad\xb4\xf8\x5e\xa4\x95\x75\xd3\xe6\xe1\x15\x2d\x99\xa6\x39\xfb\xb7\x89\xb0\x4c\x18\xae\x4a\xc8\xf3\x57\x2b\x48\x2f\x63\xb4\xa0\xb9\x32\x80\x40\xf3\x0a\x62\x41\x04\x7f\xb5\xa2\x7c\x09\xb1\xed\x69\x45\x79\x96\x83\x7b\x13\xa2\x2e\xa7\x8d\x5d\xb3\xa2\x28\x73\xd0\x10\xb7\xae\xdf\x2b\x46\x9f\xfb\x26\xc3\x08\xae\x66\x59\xdc\x25\xdd\x5d\x82\xbf\x2d\xf8\x3d\x83\x3c\x8b\x72\x7a\x01\x39\xda\x4c\xee\x76\x99\xf4\x06\x4f\x4f\xd8\xfa\x75\xd4\x25\xd1\x49\x41\xe5\x92\xf1\x18\x71\x13\x23\xe6\x68\xe7\x9c\xba\x5a\x77\xcc\x29\xad\xa4\x04\xae\xf7\xfb\x5e\x7e\x8f\xb9\x75\x5b\x20\x66\x6e\x6a\x36\xdb\x9c\xde\x22\xa2\xc4\x18\x07\xa3\x5c\xc7\x48\x55\x17\x9a\xe9\x1c\x0e\x11\x49\x45\x2e\x64\x8c\xc0\xed\x7f\xf4\x31\x34\x6f\x33\xb8\x0d\x49\xa7\xe4\x85\x32\x76\x85\x48\x3d\xac\x70\x2d\x69\x59\x82\x9c\x52\xa7\xc2\x74\xef\xe4\xab\xac\x12\x76\x1d\x97\x92\x15\x54\xde\x18\xcd\xf1\x83\x33\xa8\x4c\x19\x87\x6c\x38\x1c\x13\xd2\x5f\x54\x5a\x0b\xbe\xef\x6b\x04\x22\xdd\x2f\xf4\xbe\x91\x06\x53\xf4\x22\x87\x2c\xde\xdb\xd3\x66\x91\x72\x96\x5e\xde\x4b\xc9\x33\x33\xaa\x4d\x91\x1b\xf7\xfa\xad\xed\x6b\x9b\xbc\xdf\x88\x65\xc0\x38\xb2\x08\x3f\x25\xed\xd2\x34\xac\x8c\xa1\x1c\x3e\x1e\xc9\xd4\x4d\xe1\x44\x8a\xa5\x04\xa5\x1a\x8c\x71\x33\xd2\xa3\x3e\xd1\x66\x93\x3c\x1d\x8c\x75\x88\xbd\x33\xd6\x2f\x88\x8f\xf3\x9d\x15\xfa\x20\x3f\xd2\x54\x2e\xc1\x27\xd8\x31\x6e\x9a\x56\x24\x35\x44\xa5\x84\x2b\xe3\x43\xdc\xfc\xc2\x36\x2f\x37\xc0\x4f\x13\x2e\x0e\x52\xc8\xba\x07\x42\x99\xe8\xde\x91\x08\x13\x55\x7a\x47\x22\xc3\x37\x26\x7e\x22\x7b\x73\x3c\xa0\xe5\x1d\xa3\x9e\xcd\x64\xf8\x21\xec\x09\xb6\x70\x59\x2b\xd3\xf3\xfb\xa4\x4b\xfd\x5e\xe0\x01\x55\x06\xb7\x32\x76\x30\x2d\x98\xf3\xe1\xc0\xe4\x70\x60\x66\x2c\x1e\xe6\x95\x81\x79\xcb\xe8\x5a\xf2\xee\xab\xc7\xb4\x0f\x6f\x79\x9f\x17\x91\x2d\x87\x14\x3e\xf3\xd0\x52\x3e\xeb\x3b\x63\x4f\x05\x9b\xa6\xcb\x51\xa7\x96\xb5\x1b\x1e\x3a\x5e\xda\xb8\x76\xfa\xbd\x8c\xe8\xe9\xd1\xc1\xc1\x19\x29\x85\x62\x0e\x89\xe9\x85\x12\x79\xa5\x01\x11\x2d\xca\x18\x1d\x1d\xfc\x3f\x44\x72\x58\x68\xff\xd3\xa1\xce\x2f\xa2\x8c\xf7\xe7\x87\xfe\xe9\x8d\xf9\xbc\x3f\x3f\x6c\x88\xaa\x2e\x7e\xb0\x91\x52\x5c\xbb\x4f\xdf\x0a\xad\x45\x11\x43\xa4\x4a\x9a\x32\xbe\x0c\x1f\xe1\x86\x78\x4b\x8c\xeb\xbe\x57\x09\x39\xd5\xec\x0a\x10\xb9\x66\x99\x5e\xc5\x68\x7e\x60\x7a\xd3\xf0\x59\xbf\xcc\xd9\x92\xc7\x28\x05\xae\x41\xa2\x86\xb4\x5b\x37\x75\x3f\x94\x23\x32\xea\xed\xa8\x69\x30\x0e\xbf\xc3\x98\x7c\x6b\x73\x7d\x87\x98\xfc\x92\xd0\xf0\xd1\xc1\x11\x26\x1f\xed\x9b\xc7\x98\xfc\x64\x7f\x3c\xc2\xe4\x57\xfb\xe9\x89\x53\xae\x97\xbb\x97\x78\x7d\x99\xfa\xf5\x6e\x63\x9f\x76\x69\xfd\x46\x44\x1b\x6d\xdb\xc7\xc9\x85\xb9\x5b\x64\x87\x78\x72\xd2\xe3\x02\x1e\xc1\xdf\x30\xa5\xdb\x42\x76\x59\xfa\x52\xfb\x8f\xb0\x17\xd3\x7b\xb6\x5c\xad\x7d\x19\x35\xf0\xa3\x86\x22\xae\x4b\x9a\x99\x99\xad\xb5\xf2\x08\x13\xff\x61\xbd\x95\x47\xd8\x8a\xbd\x87\x80\x4e\x4a\xd0\x49\x87\x78\x52\x13\x53\x2f\x20\x41\xbc\x59\xc6\x8a\xb4\xd6\x1a\xa7\x0d\xae\xbb\x9d\xe8\x4a\xc1\xeb\xc5\x02\x52\x8d\x6d\xbc\x55\x8b\xd9\x4c\x74\x79\x05\x4b\x02\x93\x24\x51\x9e\x04\xde\xde\xaa\x01\x91\xeb\xf3\x08\x1d\x8b\x53\x5b\x59\x9c\x5a\x67\x71\x7e\x1b\x80\x25\x76\xe7\x51\x5b\xc6\x34\x9b\x85\x2c\xd9\xe2\xbe\xb6\xb9\x2a\xda\xbb\xaa\x9d\xc4\x49\x7b\x4e\xe6\x93\x35\x79\x82\xd0\x71\x3f\xd9\xd9\x2c\xcc\x13\xd1\x41\x8a\x2b\x53\x25\x0e\xba\xd6\x71\x92\xa4\xe1\x9b\xb0\x2f\x4c\x10\x22\x7b\x07\x5b\xd0\x2e\x1d\xa1\x9d\xb2\x68\xb7\x83\xb7\x59\xbf\x6a\x24\x32\x31\x99\xb1\x17\x5f\x1d\x19\x2f\xea\xc3\x80\x18\xad\x1e\xad\x3b\xcc\xdc\x28\x10\xba\x97\xe7\x1b\x51\x72\x9b\x8c\xc9\x99\x09\xf0\xd6\x3d\xdf\x2b\x5b\x2e\xa0\x3c\x68\xe9\xbb\x71\x82\xf7\xe5\x1b\xf3\xf1\xb2\x75\x96\xf9\x00\x05\xbf\x65\xb8\x5d\x3b\x9b\xe3\xd5\x22\x30\x21\x7a\xc0\x78\xa0\x45\xe0\x92\x5a\x5b\x86\xbc\x9b\x31\x57\x5b\x38\xc4\xb7\x66\x68\x9e\x81\x9c\x38\xbb\x35\x7c\x79\x38\xcd\x81\xe1\x4f\xb5\xf0\x8b\x69\xc1\x79\x0f\x53\xd3\xb7\xf5\xe7\x4a\x6b\x90\x6a\x47\x5b\x06\x44\x86\xdc\x07\x86\xdc\x67\xdb\x70\x7f\x8a\xe8\x36\xe5\xfa\xb5\xfd\x94\x1b\x81\x2a\x2d\xc3\x03\x32\xc7\x93\xa2\xfa\x68\xcd\x71\x42\xd7\x88\x27\x67\x71\x3e\x2d\xe3\xff\xc8\x5c\xc3\x2d\x36\xaa\x5c\xf0\xfd\xdb\x61\xea\x37\xc8\xf2\x8b\x75\xb9\x52\xf0\x4e\xaf\x40\x46\x25\x48\x25\x38\xdd\x46\x41\x5f\x18\x2d\xfe\xba\xb5\xf9\xfa\x31\x6d\x0f\xad\x02\xca\x85\x29\x32\x80\x05\x3b\x3e\x86\xdd\xff\xef\x13\x1a\x1e\x3d\xc6\xe4\x07\xbb\x61\xf6\x3d\x26\x3f\x5a\x76\xf0\x14\x93\x7f\xdb\x1f\x47\x98\xfc\xc3\xd0\x84\x39\x26\x7f\x4e\x86\xac\xc0\x25\xc5\x09\x6d\x69\xc3\x3f\xac\x5f\x27\xa7\xc8\x7d\x40\x67\xbb\x62\x60\x55\x52\x8e\x08\x25\xba\x3d\xf8\x70\x6e\x03\xf1\xf1\xa3\x3d\xb1\x82\x1b\xf2\x17\x3b\x90\x67\x98\xfc\xcd\x1f\x5c\xfb\xbb\x3f\xb8\xf6\xd7\xb6\xef\xbf\xd9\x14\xbe\x4d\xdd\x9f\xd3\x9c\x51\x75\x7e\x41\x15\x4b\xc7\x61\x9b\xfd\xfc\x1d\xa8\x54\xb2\xd2\x6a\x91\x2d\xf9\xad\x29\xb8\x29\xb9\x97\xd6\x29\xb8\x33\x4b\xb6\xad\x56\x7e\x01\xe3\x6e\x6b\x92\x09\x8e\x1a\xb7\x5d\x70\x2e\x16\x0b\x83\xca\xe7\xd4\x65\x3c\x77\x77\xeb\x0b\xbb\x1e\x36\x7b\xfe\x09\xa0\x0c\xf4\x0a\x02\xbb\x23\x01\x59\xe0\x1a\x0d\x8c\xda\x31\xa5\x81\xeb\xfc\xc6\x9e\x9d\x5a\x08\x63\x57\xd2\x86\x96\xff\x4c\x86\xec\xca\xb0\x85\xb0\x96\xe2\xba\xa3\x32\x86\x35\x1d\xb4\xf4\xc5\xd3\xac\x03\x4b\x5a\x7c\xbd\xbf\x47\xe9\x98\xf4\xd9\x61\xbb\x24\x7b\x01\x9a\xae\xe5\x65\xd6\xd7\xdc\x95\x46\x04\x99\xb2\x88\x20\x5f\x12\x9d\xd9\xed\xea\xa8\xa0\x65\x69\xa8\x62\x9a\xd0\x28\x83\x05\xe3\x96\xfb\x2a\xc2\xc6\x3b\xcb\x24\x4f\x4e\xcf\x48\x95\xd4\xcd\xf1\x42\xc8\xd0\x0c\xa5\xb0\x0e\x02\xb3\x45\xa8\x4f\x8b\x33\x97\x46\x2a\x13\x75\x5a\x9c\x1d\xb3\x45\x58\xe2\x9a\x2d\xc2\xea\xb4\x3c\xc3\x6d\xca\xf0\xd8\x3c\x25\x7b\x07\x0d\xe4\x0a\x82\x32\x29\x2c\x5d\x58\x25\xe9\x69\x79\x46\x96\xfe\x98\x97\xa9\xbb\xb2\x75\x57\x46\xc5\x6c\xab\x8b\xe4\xaf\xa7\xe6\xe9\xec\x78\x31\x9b\x85\xcb\x84\xad\x6d\x41\x2f\x30\x6e\x96\xb7\xb7\xe1\x32\x59\x45\x59\xbf\x9c\xed\xcb\x7b\xd8\xee\x86\x26\xd8\x17\x9b\x1a\xf0\xc1\x6e\x41\x05\x4e\x9f\x1b\x9f\xba\x51\xb1\x7b\x8e\x0b\xb3\x6c\x24\x77\x10\xba\x05\xc8\x37\xe1\x3b\x03\xae\xc0\xfc\xb8\x84\x9b\xb8\x1c\x85\xbe\x52\x5c\x4f\x81\xe8\x5f\x2c\x5c\xad\x20\xbd\x34\xc0\xde\xb9\x84\xf7\xac\x2c\x73\x18\xbc\xc8\xc6\xde\xc1\xc0\x9a\xad\x75\x21\x3e\xef\x67\x54\x5e\xa2\xc9\xac\x8e\x05\xc3\x16\xf7\x96\xd3\xf4\x08\xdb\xfc\xe1\x16\x08\x31\xee\x5d\x90\xdc\x80\x98\x3f\xf7\xf7\xaf\xdf\x96\xc0\x75\xec\x22\x69\xf7\x1e\xeb\x06\x27\xcf\xbb\xf3\x24\x1b\x2e\xac\x3b\x27\xe8\xf7\x28\xf8\x68\x0f\x45\xe3\x68\xc1\x72\x0d\xd2\x98\xd4\xde\x9e\x3e\x85\x33\x1c\x7d\x12\x8c\x87\x28\x40\x98\xc8\x61\x1c\x2f\x12\xd9\x47\xeb\x2a\x91\x5d\xb4\x2e\xc2\x57\x21\x10\xbe\x85\xbc\x8a\x31\x79\x25\x7b\x07\xa4\xf6\x8a\x16\xfb\x5d\xb6\xc6\x9f\x3a\xb9\x77\x46\xba\x1b\x06\xed\xd2\xd3\xbc\xcf\x43\xdb\x9c\xb4\x03\xf7\x63\x3a\x9b\xd1\x96\x9d\xcb\x41\x34\xc2\xbb\x68\x84\xef\x8e\x46\xf8\x56\x37\xcf\xd7\xdd\x3c\xd1\x3e\x69\x7f\x47\x32\xb9\x45\x27\x3a\x48\x2c\xf3\x6e\x22\xa2\x4f\x31\xab\xde\x7b\xa5\x09\xef\xf6\x42\x1c\x86\xdd\xde\xd6\x0d\x61\x83\xd7\x06\xd1\xcc\xcb\xff\xbe\xc8\xc0\xed\x27\xed\x88\x09\x7e\x60\x41\x3d\x38\x24\x38\x80\x92\xd1\xd1\xc1\xe1\xe1\xc3\xe6\xab\xa3\x86\x6e\xf4\x36\xff\x77\xb1\x5f\xa0\x86\xf4\x59\xd2\x2f\x6a\x74\x69\x71\xcb\xbb\xa9\x0d\x74\xf9\x0a\x11\xf9\x30\x74\x53\x42\xb5\xd3\x83\xef\x06\x02\x08\xae\x29\xd7\x2a\xd0\xa2\x97\xd6\x46\xa1\x09\xa6\xf6\xa3\x05\x34\xa3\xf0\x85\x5d\xda\x0b\x3b\x7a\x44\xec\x9c\xee\xc5\xec\xfc\x58\xb5\x10\xb9\x66\xa5\xd7\xd0\x8d\x21\xff\xd1\xb2\x6b\xc6\x97\x01\x7a\x69\x08\x02\x0a\xae\x59\x9e\x07\xed\x29\x04\xc3\x58\x02\x2d\xe2\xa0\x6e\xdf\x7c\x7c\xff\x63\xf3\xc7\x6e\x2a\x83\xb7\xb1\x1a\x9d\x5d\x68\x9a\x49\x2e\x8d\xa0\xd8\xaa\xdb\x7f\x26\x5e\x34\xb1\xcb\x98\x4e\xeb\xce\x3f\x49\xdd\x79\x9f\x5d\xf1\x98\x77\x90\xca\x84\x15\x8e\x57\xa9\x38\x25\xc6\xfc\x62\xe6\x3f\x4d\xba\x92\xc5\x36\x5e\xfd\x45\x2a\x62\xff\xff\x5a\x01\x4f\x27\xd4\xe4\xdb\x9b\x20\x6d\xc5\x6e\xa5\x4e\xac\x9c\x2d\x43\x0b\x0c\x0c\x05\xb4\x2c\x4d\x1c\x5b\x29\x70\x9c\x71\xc0\x12\xa3\x2f\x0f\x6b\x07\x0e\x29\xf4\x07\xd3\xd3\xc9\xd5\xf9\xf7\xf6\x70\x66\x63\x1f\x40\xdf\xb9\x0f\xe0\xf3\x38\x0a\x52\xc1\x33\x9b\xfb\x1f\xd6\x76\xd1\xe1\x30\xd8\xa3\x5d\xb0\x37\x1c\xf0\xde\x7c\xcb\x60\xb7\xcb\x9e\xf2\x14\xf2\xdd\x99\xfd\x57\xb6\x8c\x15\xa5\x71\x3e\x7b\x49\x72\x12\x2d\xbf\x20\xc5\xaf\x37\x53\xfc\xbf\x8f\xd0\x7e\xdf\xcd\x13\x74\x0f\xf9\x6e\x53\x86\xad\xf2\xb5\x7a\xba\x5b\xbc\x0e\x4b\xac\x74\x93\xdf\x41\xb4\x98\xfc\x10\xe2\x50\xd8\xbc\x9e\x8b\x47\x7e\x87\x9d\x2f\x7d\xcf\x74\xa2\xe8\xd2\x89\xd8\x6f\x5f\xfc\x61\x6b\x6e\x7b\x98\xa4\xf6\xcc\x61\x22\xd9\x4d\xd7\x93\xdd\x74\x9c\xec\x6e\x8f\x8b\xc5\xba\x3f\x59\x61\x5f\x18\xe2\xf0\xbf\xb9\x29\xd1\x01\xea\xce\x14\x7b\xb7\x2b\x31\x9d\x62\x27\x53\x9b\x15\x9e\x33\xc4\x88\x71\x43\x3e\xf6\x2f\x72\x91\x5e\x4e\xef\x51\x8c\xda\xda\x3e\x0c\x13\x8d\xfe\xab\x63\xf3\x00\x3b\xe9\xfc\x26\xa3\x9d\xda\x93\xeb\x4e\x46\x9a\xe8\x72\x83\x3f\x1a\xe0\x4c\x92\x01\x8d\x1c\x1f\xbf\xdc\xd4\x31\x66\x34\xb6\x4f\xed\x5f\x33\xbd\x12\x95\xee\x9d\xd9\x94\x5e\xaa\x28\xdb\x86\xd0\x2a\xba\x20\x75\x49\xf5\x2a\x1e\x51\x64\x02\x9f\x69\xaa\xad\x6f\xec\x98\xe2\xfb\x49\xcf\x37\x6c\x60\x7c\x74\x63\xaa\x8d\x97\x77\xb7\xd1\x1e\x38\x9c\xa8\xfd\x87\xc9\xda\xb9\x45\x40\xbb\x8d\x39\x9e\x44\xd3\xd9\x9e\x86\x75\xe3\x0b\xeb\xc9\x2d\x22\x3c\x36\x13\x97\xc4\x30\x6f\x01\x30\x6e\x6f\x16\x79\xdc\x9a\xbc\xf9\xe3\x22\x1e\xf2\xf8\x70\xf7\x11\xfb\xee\x00\x9a\xdf\xaa\x75\x67\x6f\xeb\xe6\x58\x77\xe7\x67\xc2\xf6\xf0\x4c\xd2\xbe\x6b\x8f\xe4\x43\x7b\x96\x0c\xee\x79\x96\x8c\x3a\xea\x92\x78\x76\x63\x4f\x84\xd2\xfe\x44\x69\xa2\xd7\x4e\x97\xd2\x11\x29\x4b\xf4\xe6\xf9\x52\x1d\xb1\xec\x5c\x8b\x4b\xe0\xe7\x2b\xc6\xdd\x68\x47\x6f\x92\xb5\x12\x98\xe8\xa8\xa0\x9f\xcf\xe9\x12\x6c\x61\xff\x3b\xe9\xde\x9a\x02\x69\x4e\x59\xa1\xce\xed\x20\x6d\x29\xfb\xeb\x41\x82\x02\xf4\x60\xfc\x75\xfd\x48\x18\xb7\x86\xd4\x46\xea\xdc\x56\x5e\xe4\xe2\x3a\xe1\x98\xd0\x66\xe7\x7d\x2f\xee\x16\xec\x8e\x3b\xbc\xc3\x05\x6b\x8f\x81\x72\xb8\x0e\x3e\x32\xae\x9f\xbe\x94\x92\xde\x84\xf3\x27\x5d\xb6\x31\x95\x37\xa5\x16\xd1\x12\xf4\x7b\xca\x33\x51\xfc\xcd\x32\x5f\x7b\x13\xc3\x1f\xd2\xb2\x55\xcc\xba\x6a\x61\x9c\x77\x54\xd0\x32\x4a\x69\x9e\x87\x9a\x40\xf2\x1c\x22\x2d\x3e\xd8\x13\x70\xa6\xd5\x36\x6c\x47\x98\xc0\xbd\xe6\xf2\xf8\x5e\x17\xe4\xa6\x9b\x90\xa3\x1b\xba\x8f\x06\x97\x12\xe4\xf0\xa6\x4f\x24\x0d\x51\x55\x66\xe5\x21\xb1\x67\x59\xed\x8d\xc8\x17\x46\x26\x3c\x5a\x85\x3c\x4a\x49\xff\x1a\xc7\xfd\x7b\x8a\xcd\x34\x1a\x72\x74\xb4\x7b\x94\xed\x18\x1e\xcd\xdd\x2d\xe1\x23\x7b\xfb\x24\xe2\xa1\x74\xd7\x4f\x9e\x3e\xb6\xd7\x4f\x22\x1e\x2a\x77\xff\xe4\xd9\x33\x7f\xff\x64\xee\xae\x9f\x1c\x3e\x7d\xe2\xee\x9f\x1c\x3e\x3b\x70\x17\x50\xe6\x4f\xfc\xfd\x93\xa7\xdf\xb8\xfb\x27\xf6\xb6\xc9\xb2\xbd\x9a\xb2\xf0\x69\xe8\x0b\xdb\xea\x02\x93\x2b\x7f\x89\xe5\xb5\x17\x85\x19\xd2\x75\x8b\x24\x45\x87\x24\xfe\x36\x5e\x8b\x24\xf6\x71\x6d\x2f\xd6\x17\xe9\x37\x59\x75\xd3\xdf\x00\xdf\x40\xb4\xca\x92\x28\x0d\x36\xf0\xa4\x6b\x1b\xf0\x17\x21\x0e\xbd\xd7\x00\x87\x50\x9b\x0d\x94\x9b\xe1\x48\xe9\xdd\xbc\xe5\x57\x6d\x1b\x7b\x3b\xda\x18\x64\x14\x36\x3f\xae\xb6\xee\x23\x8c\xd2\x0c\xeb\x41\xf4\xfa\x5c\x36\x1b\x66\x9b\xa7\x6e\xac\xab\x6b\x6f\x50\x6f\xcd\x33\x7c\x6f\xef\x2c\x9b\xf8\xc7\x5f\xef\x35\x3f\x15\xc8\x2b\xe7\x08\xb6\xcd\x61\x3c\xa2\x31\xed\x9b\x1a\xdf\xeb\x9e\xe2\xc1\x74\xb3\x4b\xdb\xec\xf0\x78\xdc\xef\x77\x98\xe9\x1e\xfb\x5a\xba\x75\x60\x57\x51\x66\x09\x87\xdb\xa0\xba\x97\xa4\x97\x8c\x47\x12\xb4\xbc\xd9\xcd\xd3\xdf\x9b\x22\xc8\x73\x5b\x8c\xc9\xcd\xda\x9e\x4c\x9f\x02\xf3\xec\xe4\x8d\x58\x0a\x9b\xb9\x1b\xb3\x15\x9b\x04\x6b\x49\x6d\x6e\xaa\xae\x58\x9e\x49\xe0\xa4\x68\xdb\x31\x12\x21\x65\x12\x42\xf4\x1d\xa3\xb9\x58\x9e\xd8\x4c\x1b\x44\x27\xb4\x04\xe9\x1e\x86\x97\xe6\xdd\xd6\x8f\x4b\xfb\x13\x34\xe8\xbd\x7f\xf2\x7d\x23\x82\x7c\xcf\x88\xa0\xb6\xdf\x76\xd3\xe0\x67\x7b\xae\x10\x0d\xba\x44\x04\xf5\x5d\xa2\x33\x6c\xe1\xe3\x85\x31\x8e\x78\xc2\x72\x58\xb1\x44\xa4\x56\x32\x8d\x51\xf4\xd0\xe0\x3d\x4b\xed\x95\xa3\x48\x5d\x2d\x37\xd2\x55\x76\x74\x34\xd7\x31\x12\xd7\xfc\x55\x2e\xaa\x0c\x35\x06\x94\xd4\x8b\xcd\x96\xaf\xad\x3d\xe2\x58\xbe\x98\xea\x37\xeb\xf6\x68\x3b\x47\x34\x8d\x2d\xeb\x77\xe3\xbc\x1a\x4a\xa3\xac\x9f\x2a\xa5\xd9\xe2\xa6\x37\x09\x6b\x21\x3f\x6a\x28\x54\xff\xce\xb1\x01\xcb\xc6\x53\x91\x57\x05\x47\xc4\x93\xe8\x78\x98\x4d\x49\x43\x1c\xea\x48\x0a\xa1\x49\x81\x1b\x52\x4e\x99\xcb\xae\x68\xf7\x5e\xa5\xcd\xe8\x81\xeb\x86\xac\xc8\x72\xd2\x20\xd1\x42\x08\x3b\xea\x35\xc0\x72\xaf\xf7\xdb\xbc\xdc\xbd\x6c\xc4\xd5\x89\x54\x2e\x96\x94\x6f\x5a\xc6\x9f\x38\x2d\xe0\x79\xbb\x8e\x7f\x7a\x68\x1f\x83\xfd\x80\x06\x8a\x2e\x20\x58\x89\x02\x82\x85\x90\x01\xcd\x73\x97\xa2\xc9\xa8\xa6\x7d\x8e\xcf\x1d\xd0\x4b\x9e\xf7\xc7\xfc\x60\x6a\x3e\x4a\x4b\x61\xf4\xd6\xae\xb5\x67\x85\xda\x84\x78\x18\x37\xc7\x37\x91\x1f\x94\x55\xd5\xa4\x1e\x18\x41\xbc\x37\xdf\x88\x17\xe6\xa4\x8d\x25\xf6\xe6\x86\x7d\x76\x5b\xa9\x79\x17\x26\x9a\xf5\xeb\xb2\xb5\x31\x5a\xe4\xf0\x19\x11\xf3\x37\x9e\x37\xc4\x4b\xff\xee\xc3\x64\x0d\x71\xa9\x03\x35\x8c\xca\xf6\x1f\x77\x0a\xf7\xca\x37\x64\xdb\xdf\x57\x9a\x4a\x8d\xc8\x57\x1c\x82\xea\x03\xc9\xd1\x51\xb6\x82\x7e\xfe\xbb\x7d\x7e\x74\x70\x40\x26\xe7\x32\xa5\xe8\x36\x1e\xbc\xc1\x4d\x73\x86\x8f\xff\xcf\xc3\x87\xff\x37\x50\xa2\x92\x29\xbc\x75\x5b\x89\x1f\xdf\xbf\x49\x3a\xdb\x51\xfb\x0e\x3f\xe7\xdf\xa4\xf3\xf4\x49\x76\x18\xa5\xab\x8a\x5f\x46\x9f\x94\xa1\x76\xff\x3f\x00\x00\xff\xff\x22\xec\xde\xc0\x6b\x46\x00\x00") -// FileIdentifierStaticJsContainersLogin35b164c4ChunkJsMap is "identifier/static/js/containers-login.35b164c4.chunk.js.map" -var FileIdentifierStaticJsContainersLogin35b164c4ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xfb\x5f\xdb\xba\xb2\x38\xfa\xaf\x78\xe5\x7e\xef\x26\x1c\x4c\x02\xa5\x4f\x4a\xba\xae\xac\x38\x21\x4d\x42\x80\x40\x29\x5d\xac\xdb\x63\x12\x27\x31\x38\x76\xb0\x1d\x9e\x9b\xff\xfd\x7e\x66\x46\xb2\xe5\x47\x20\xb4\x5d\x67\xaf\x7d\xee\xee\x0f\x25\xb6\x47\x23\x69\x34\x33\x9a\x19\x49\xa3\x87\xd2\xb5\x1d\x84\x8e\xef\x95\xb6\xb7\xf4\x52\xe8\xcf\x83\x81\x1d\x96\xb6\xff\x28\xd9\x41\xe0\x07\x61\xd5\xf1\x86\xf6\x6d\xe5\x22\x2c\xe9\x25\x6b\x10\x39\xbe\x17\x56\x07\xfe\x74\xea\x7b\xf4\x6e\xe0\x4f\x67\xbe\x67\x7b\x51\x58\x3d\xb2\x6f\xa3\x96\x37\x9b\x47\x69\x68\xd7\x1f\x3b\x31\xb0\x17\x59\x8e\x67\x07\x61\xb5\x03\x6f\xe9\xff\x05\xdf\xf8\xc4\xf7\x43\xdb\x1a\x0c\xfc\xb9\x17\xe5\x2a\xe3\xae\x63\x7b\x51\xdd\x09\x67\xae\x75\xb7\x67\x4d\xed\x1c\x44\x7f\xe0\xcf\xec\xb0\xe3\x84\xd1\xa2\x0a\x7c\x2f\xb4\xbd\x45\x5f\xf1\xff\x70\x10\xd8\xf6\xa2\x06\x2a\x94\x99\xfa\x43\xdb\x0d\xab\x13\xdb\x75\x7d\x7a\x33\x8f\x1c\x37\x4c\x13\x42\x79\xa5\x34\xb3\xe3\x5b\x43\xc7\x1b\xe7\xde\x1f\xda\xe1\xcc\xf7\x42\xe7\xda\xee\xc7\x8d\xf8\x53\x2f\x79\xd6\x94\x86\xc7\x3c\x3c\xec\x1d\x7e\xef\xf4\x9a\xad\xbd\xef\x5f\x58\xa7\x55\x67\x47\xe6\xf7\x6e\xab\xdf\x6f\xed\x35\x8f\xfb\xe6\xe1\x1e\xeb\x9a\x25\xfd\x49\xb0\x7d\xd6\xef\x9f\xf4\x0e\xeb\x19\xb0\x06\x6b\x75\xcc\xe4\xe5\xee\xd1\xd1\xfe\xf7\x3d\xf3\xe8\xa4\x77\xd8\xfe\x8e\xaf\xd2\x9f\x8e\xf7\xcc\xaf\xfb\x26\x3f\x32\xeb\xdf\x0f\xcd\xfe\x7e\x6f\xaf\x6f\x7e\xef\x1f\xb1\xa3\xe3\xfe\x72\x70\xd0\xca\x28\xb0\xbc\xd0\xb5\x90\x4e\x25\xbd\x34\xb4\x47\x8e\x67\x77\xed\x30\xb4\xc6\x36\xbc\x70\x86\xf4\xd6\x9a\xbb\x91\x78\x0d\xc8\x6f\x23\xdb\x1b\xda\x43\x13\x38\x15\x9e\xc5\xdf\x81\xef\x85\x51\x30\x1f\x44\xf8\x34\x8d\xe1\xaf\x2d\x77\x8e\xe8\xc2\xf9\xcc\x86\x4f\x73\x8f\x6a\x02\xec\x03\x6b\x16\xcd\x03\xbb\x1f\x59\x83\xcb\xa3\xc0\x1a\x40\x81\x68\xe2\x84\x12\x6f\x52\xad\xe3\x5d\xd8\x83\xa8\xe5\x45\x6e\x49\x2f\xcd\x02\x7f\x06\x30\xb6\xa8\xdb\xa1\xd7\xa2\xd2\xba\x1d\x0e\x02\x67\x46\x0d\xe9\x9d\x43\x39\x60\x88\x30\x74\xc6\x5e\x49\x2f\x8d\xfc\x60\x6a\x29\x1d\x0a\xec\x81\xed\x5c\xdb\xb2\x1f\xd1\xdd\xcc\x16\x7f\x42\xfc\x1a\xda\xd1\x2e\xb0\x58\x02\x2a\x1f\x27\xe2\x6f\x38\x1f\x0c\xec\x10\x19\x30\xb4\x03\x60\x16\x20\x5c\x22\x25\x00\x12\x59\x11\xfc\xb5\x6f\xed\xc1\x3c\x8a\x31\x00\x90\x15\x0d\x26\x25\xbd\x34\xb6\xa3\xbe\x00\x22\x51\x87\xa6\xba\xfe\x4d\x49\x2f\x5d\xcd\xed\xe0\x0e\xaa\x2f\xe9\xa5\x1b\x27\x9a\x90\x18\x1e\xda\x57\x73\x3b\x8c\x0b\x79\xf6\x0d\x62\x15\xaf\xa1\xc7\xb7\x8e\x0f\x8d\x9a\xf9\xf8\x38\xb1\xad\xa1\x1d\x84\x48\x61\xdb\xa3\xae\x01\xb3\xcb\xe6\xcd\x91\x09\xac\xc8\x2a\xe9\xa5\xfd\xc0\x9f\x3a\x21\x51\x27\xf4\xdd\x6b\x6c\x95\x68\xe8\xc4\xf2\x86\xae\xcd\x00\xb9\xa4\x59\x60\x47\xc1\x9d\xec\x93\xe8\x62\xc7\x1f\xfb\xa3\x51\x49\x2f\xc5\x1a\x8a\xe8\x23\x86\x70\xe0\x5a\x61\x28\x88\x33\x73\xad\x81\x3d\xf1\xdd\xa1\x1d\x24\x44\xfe\x62\xb9\xce\xd0\x22\x3c\x9e\x1c\xeb\x30\x8d\x1f\xde\xcf\xac\x30\xbc\xf1\x83\xa1\x50\x08\x88\x00\x29\x90\x00\x04\xd6\x14\xe9\x30\x0f\xb1\xfd\x51\x34\x2b\xe9\x25\x57\x7c\x16\xd5\xc5\xd5\x10\x76\xa1\xa6\x80\x8a\x2e\x0d\x42\x08\x9a\x2d\xc1\x9e\x00\x0c\x70\x34\xbe\xa3\xb4\x04\xf6\xd0\x09\xec\x41\xf4\x7d\x1e\x38\xf8\x38\x12\xa3\xf8\xdd\xf3\x3d\xe4\x6e\xf9\x57\x54\x9b\xa0\x51\xbb\xd5\x1a\x35\xfc\x60\x8a\x14\x00\xee\x0e\xfb\xce\xd8\xb3\x87\x2d\x6a\xae\xe0\xe7\x4b\xfb\x0e\x3a\xe5\xda\xde\x38\x9a\x90\x9c\x21\xbd\x8e\x05\x0b\xee\x27\x74\xb1\x86\xd7\x96\x37\x20\xd4\x0d\xea\xcd\xc4\x09\x23\x1f\x99\x6a\xe8\x7b\xc4\x98\x51\x60\x1d\x08\x46\xbb\x42\xc1\x8f\x2c\xc7\x0d\x91\xb3\x6e\x23\xac\x19\xc7\x09\x49\x37\x40\xad\x01\x54\xb1\xad\x40\x70\x05\x12\x17\xf4\xb5\xe3\xcd\x6d\x41\x80\x59\xe0\x4f\x67\x11\xb2\xad\x37\x4c\x78\xb9\x1f\x05\x8e\x37\x46\xbe\x83\x1f\xce\xe8\x4e\x29\x8a\xf2\x3c\xb4\x6f\x7b\x23\x6c\xdd\x60\x3e\x25\x02\xf9\x81\x33\x76\xa0\xce\xc8\x0a\xc6\x76\x14\xeb\xf8\x92\x5e\xc2\xa9\xa1\xa4\x97\x0e\x6d\x0b\x69\xb3\x3f\x0f\x6c\x2e\xb5\xba\xaa\xe1\xeb\xce\xb0\x0b\x33\x1b\x76\xc7\x23\x7e\x73\x69\x2e\x90\x3c\x89\x52\x3f\xb1\x62\xde\xb6\xd3\x7a\xc8\xf7\xfa\xf3\xf3\xa9\x83\x23\x76\x2d\x38\x64\x1e\xf9\x0d\x7f\x80\xf2\x03\xbf\xb9\x35\x73\x22\xcb\x75\xee\x51\xb2\x66\xb6\xeb\xf2\x89\x3d\xb8\x94\xba\x10\x91\xf0\x89\xe5\x21\x3e\x92\xa6\xf8\x11\xcb\xfb\xd3\x99\x6b\xa3\x50\x4f\xad\x80\x7a\x76\x74\x37\xf3\xc7\x81\x35\x9b\xdc\x21\x9a\xc0\xb1\x44\xc7\x5c\x6c\xe4\x4d\x60\xcd\x48\xbb\x1a\xf3\x28\x42\x9a\x0c\x9d\xd0\x3a\x77\x51\xcb\xfa\x1e\x77\x1d\x6c\x00\x77\x82\xc1\xdc\xb5\x82\xfd\xc0\x1f\x07\xa4\xb2\x42\x6a\xe7\x39\x96\x53\xde\x0b\x35\x36\x9f\x01\x53\x49\xf9\x9d\x05\xd8\xe9\x3a\x4d\x0a\x34\x68\x1e\xf1\xa3\x2b\xc6\x00\x14\x54\x3f\xba\x73\x6d\xa1\x69\x10\xcb\x18\x26\x53\x52\x45\x8e\x18\xb3\xc8\x47\x29\xb4\x47\x51\xdc\xcf\x23\x7c\x45\xbf\x3b\xf4\x21\x9c\x9f\xef\xa2\xde\x8a\x3f\x18\x7e\x14\xf9\x53\xa4\xac\x35\xa0\x71\xbb\x71\x86\x28\x02\x91\x7d\x1b\x31\x97\xb4\xbc\x30\x61\xc0\x12\x89\x8b\x1e\x3a\xe3\x49\x94\xfe\xd6\x8a\xec\x29\xea\x88\x21\xf0\x80\xa8\x54\x3c\x49\xf0\x79\x68\x9b\xa3\x11\xf5\x72\xa0\x70\x95\xc0\x2d\x08\xbd\x4f\x85\xc4\x7b\x81\xf7\x3c\x33\x1a\xcd\x79\x14\x91\x0e\x96\x40\xec\xda\x8a\x2c\xe8\x5d\xfc\x23\x9c\x9f\x87\x51\xa0\x80\x1c\x91\xfc\xcd\x02\x67\x6a\xa1\x78\xba\x52\xb5\xe6\xec\xb1\x58\x1d\x91\xe6\x8e\x92\x79\xe8\xbb\x18\x4f\x54\x63\xad\xfa\x51\x7a\xee\x0f\x50\x36\x45\xbf\x69\x18\xc4\x43\x42\x6e\xb4\xec\x70\x96\xc5\x29\x62\x6a\xcd\x66\xd4\x5f\x9c\xce\x1d\x05\x15\xfc\xb9\xf4\xfc\x1b\x2f\xf5\x11\x1a\x6e\x9d\xdb\x6e\xda\xf2\x40\x10\x9a\xaf\xe5\x13\x4d\x49\x97\x36\x74\x15\x25\xe7\xdc\xbf\x85\x8e\xc1\x4f\xe4\x67\x41\xcc\x43\x67\x36\x73\x01\x34\x51\xa2\x23\xc7\x8d\x90\x57\x2e\x7c\x64\xc6\xcb\x98\x3d\xc7\x48\xf9\xb8\x37\x83\x02\xca\x1d\xf9\xbe\x1b\x39\x33\x39\x21\x09\xb5\x13\x39\x91\x6b\x2b\xaa\xfd\xf8\xb0\x15\x53\x43\x70\x40\xdd\xb1\x5c\x7f\xcc\x06\x92\x04\x87\xe6\xc1\xb1\xd9\x3f\xfa\xce\xc1\xdc\xda\x3b\xfa\xce\x3a\x9d\xde\x49\xac\x72\x5a\xa3\x64\x54\xa4\xee\x22\x93\x17\x35\x58\xda\x00\x15\x02\xe5\xcf\xa3\x84\xbf\x66\x16\x72\xbb\x7d\x4b\xca\x2e\x65\xb2\x23\x0a\x6a\xe8\x89\x13\x4d\xa4\x42\x0f\x6d\xd7\x1e\x44\xf6\x50\x68\x7f\x67\xf8\x3d\xf2\x2f\x6d\xef\xfb\xc4\xf1\x48\x3c\x6e\xbf\x93\x7a\x1b\xb8\x96\x33\x0d\xbf\xcb\xc9\xce\x3f\xbf\x28\xe9\xa5\x2e\x55\x18\x58\xde\x10\x89\x17\xf9\x89\x02\x47\x66\xa5\xdf\x41\x6c\x79\x34\x03\x9a\xb8\x48\x08\x2c\x21\x92\x1d\xc7\xb3\x53\xaa\x07\xcd\x86\xa4\x87\x30\x3f\xe1\x38\x3b\xee\x30\xc0\xae\xfb\xd1\x04\x47\x93\x08\xbc\x2f\xac\xbe\x7d\x6b\x66\x07\xf2\xc1\xa5\x42\x61\x30\xa0\xe9\x46\x18\x62\x96\xd4\x4e\x11\x8d\x22\x61\xe0\xf1\x73\xec\x57\x00\xaf\xcc\xc3\x88\xa6\x20\x6c\x29\x88\x1c\x9a\x42\x48\x45\x62\xca\xd8\x5a\x21\x0e\xf7\x11\xc5\x64\xee\x5d\x86\x68\x50\xfa\x11\x36\x68\x38\x1f\x44\x82\x97\x84\xd9\x2c\x5b\x39\x72\xed\xdb\xc4\x29\x49\xea\x4c\x1a\x34\xb5\x6e\x4f\x50\x8d\xfd\x19\x8b\x56\x58\xda\x2e\xdd\x35\x19\x63\xba\xdf\x67\xa6\xc5\x74\x93\xb1\x39\xd7\xd7\x38\xe3\xd7\x9c\xe7\x9f\xae\x0c\xfd\xad\xc1\x78\x60\xe0\xd3\x2b\x43\x77\x38\xe3\x5b\xf4\x74\xc3\xf5\xf7\x9c\xf1\xdb\xb8\xdc\x5b\xce\x9a\x1f\xe8\xc9\xe6\xfa\x29\x63\xb6\xce\x19\x77\xb9\xce\x19\xe3\xfb\x7a\x13\x81\x38\xe3\x11\x3f\x80\x87\xd6\xa1\x6e\x32\xfe\xb9\xaf\xdb\x8c\x8d\x0d\xfd\xca\x60\xa6\x6b\x20\xec\xa1\x0a\xdb\x43\xd8\x7d\x84\x3d\x10\xb0\x7e\x02\x8b\x78\xaf\xe0\x37\x9f\x19\x5d\x84\xdd\x43\xd8\x9e\x80\x5d\xab\xc7\xb0\x7b\xf0\xf9\x15\xc2\x6e\x1a\x6d\x84\xed\x20\x6c\x57\xc0\xbe\x4f\x60\x3b\xf0\xf9\x06\xdb\x70\xcd\x5b\x08\xfb\x19\x61\xdb\x02\x76\xda\x88\x61\x3f\xab\xed\x6d\x22\xec\x2e\xc2\xb6\x04\xec\x0d\x67\xed\x73\xbd\xcb\x58\x97\xeb\xc7\x8c\x85\x06\xd7\xbb\xac\x79\xc1\x91\x4a\xa7\x48\xb1\x3e\xd7\x9b\x8c\x7b\xf8\x85\x75\x1b\x7a\x93\xd5\xaf\x0c\xbd\xcd\x1a\xef\x0c\x84\xea\x9b\x7a\x8f\xb5\xee\x0c\xa6\xb7\x18\x7b\x63\x74\x10\xac\xab\x4f\x0d\xc6\x0f\xf7\xc4\xc3\xa5\xc1\xd8\xa5\xc1\xf5\x36\x63\x5d\xa0\xa1\x39\xe1\x07\xf0\xd0\xfe\xac\xf7\x18\xeb\x33\xbd\xc9\xae\x8c\xaf\x80\xa0\xdb\x16\xa3\x64\xb1\x89\xf1\xc6\xd0\xfb\x8c\xad\x19\xd0\x02\x76\xa0\xb7\x18\x7f\x47\x23\x3c\x36\xea\xf0\x67\x42\x8d\xea\x51\x3b\x1b\xf0\xff\x91\xa9\xb7\x99\x39\x02\x54\x6d\x80\xe1\xbb\x50\x43\x4f\x6f\xb3\xe6\x11\xe2\x1f\x02\x54\x7b\x00\xff\x77\x87\x80\xb7\xe0\xf7\x91\x7e\xc0\xf8\x05\x3f\x81\x07\xdf\xe0\x88\x81\xfe\x47\x12\xe2\x30\x71\x17\x88\xc0\x19\x27\x4a\x5a\x05\x48\x2c\xc6\x8e\x81\xe8\x7c\x93\x7f\x81\x57\x96\xa9\xb7\x98\x39\x31\x10\x93\x8d\xed\x68\xe9\x03\xc6\x06\x30\x26\x6c\x6a\x60\x07\xba\x87\xfa\xa9\x3e\xe6\x7c\x62\x06\x75\xfd\xaa\xcb\xac\x1e\xd0\xa0\x8f\x38\x2d\xe0\x13\xbe\x65\x60\xa7\xa1\x15\x9d\x1e\x92\x94\x03\x69\xf6\x0e\xf5\x3e\x6b\x35\x11\xba\x0f\x2f\x86\x09\x58\x43\x80\xb5\x61\xfc\xfb\x38\x66\x80\x2e\xa1\xab\x90\x9c\x29\x47\xba\x7a\x9c\xeb\x07\x38\xf2\x26\x63\x1b\xd4\xae\x4d\xc3\x84\x92\xc7\x82\xfe\xbb\x44\xff\xa6\x7e\xca\x4c\xb5\x41\xfb\x4a\x83\x7a\xd0\xd1\xa9\x01\x64\xff\x86\x6c\xb7\xcf\xf5\x13\x24\xd9\x80\x71\xb6\x9b\x34\xb7\x4d\xcd\x45\x02\xf7\x65\xbd\xc7\xc8\x77\xb7\x34\xd2\xfd\x43\xbd\xcd\xea\x77\x50\x51\xf3\x0b\xf4\x8e\x9d\xe0\x80\x50\xbb\x77\x37\x0c\xdd\x64\xcd\x4d\x83\x89\xda\x4d\xb6\xeb\xe3\xab\x99\xc1\xf4\x2e\x33\x0f\x11\x63\x0b\xf9\x75\x4e\x6c\x3b\x36\x3e\x23\xb9\xb1\xa9\xd7\x75\xac\xbc\x85\x1c\x82\x6c\xda\xd6\xe7\x06\x63\x37\x04\xd4\x84\xae\x6d\xf1\x36\x12\x05\x7e\xef\xeb\xa1\x01\x98\xf4\x1e\x33\x6f\x89\xaf\xdb\xd4\x67\xc0\x73\xc0\x84\xdc\x1c\x30\x3e\x22\x64\x2d\x66\x12\x23\x52\x6f\x80\x49\x89\x81\xe4\xb7\x98\x80\x1e\xf2\x7c\x1f\xc8\x75\xd4\xc4\xd7\x03\xc1\xdd\x07\x30\x56\x77\x06\x33\xdf\x18\xfa\x01\x33\x4d\x94\x2d\x68\x71\xeb\x1a\xea\x66\x83\x3d\xf8\x7f\xce\xd7\x40\x28\x4c\xd7\xac\xab\xcd\x02\xbe\xa5\x66\x0d\x01\xd1\x71\x0f\x7e\x9b\xfb\x7a\x97\xf1\x6b\x23\xc1\xb4\x85\xa3\x35\xe8\xc0\xff\x21\x7f\x0f\x43\xd0\x9a\x80\x80\xd7\xd9\x37\x2c\xbd\x8f\x8c\x83\x83\xca\x47\x4d\x6c\x13\xf2\xca\xc1\x67\xe8\x52\x64\xb4\x11\x97\x8b\xb5\xee\x63\x85\x07\x53\xa4\xb7\x63\x78\x80\xcd\xbc\x37\x1c\x03\x31\x7d\x15\x1c\xdd\x63\xed\x80\xfa\xec\xf3\x0c\x1f\x78\x86\xde\x64\x4d\x78\xd1\x60\x4c\x29\x04\x64\x1f\xa1\x74\xf6\xeb\x7a\x97\x39\xc6\x39\x82\x5f\x19\x99\xf2\x33\x28\xcf\x87\x2c\xe6\x20\x7e\x74\xa0\x9b\x6c\xd4\x46\x4a\x7f\x11\xcc\xd2\x65\x63\x03\x49\xd7\x1d\xa8\x5c\x02\xb8\x2e\x48\xea\x4d\x95\x2f\x6e\x0c\xc6\xee\x14\xbe\x78\xf3\x17\xf0\x45\x7a\x78\xb7\xfe\xca\xe1\x7d\x63\x54\xeb\x88\xd8\x00\xcd\x38\xe6\xb7\x06\x8e\xb6\xa9\x37\x59\xd5\xb8\x31\x40\xdf\xaf\x19\x3e\x96\x0b\x0c\x62\xc5\x0b\x68\xe0\x07\xe3\x1d\xce\x57\x9d\x4e\x4a\xe2\x4f\xd8\x5b\xa3\xef\x18\xbf\x82\x31\xfa\xfa\xab\x36\x77\x77\xcf\x43\x10\xde\x2f\xc4\xe4\xfc\x02\x5b\xd2\x45\xfd\xd5\x0b\x41\x93\x98\xe7\x34\xe0\x77\x1c\xb5\xf4\x31\x63\xc7\x38\xc5\xdf\xa3\xcc\x4f\x70\x92\x9f\xf3\x0d\xac\xcb\xda\xc4\x97\x5d\x7a\x1a\xdc\x72\x45\x09\xef\xc9\x2f\x16\xd8\x07\x7d\x7d\xc3\xe4\xa1\xe1\xee\x26\x0a\xe9\xca\xa0\x99\x90\x27\xc2\x3a\xe3\x4a\xe7\xa7\x50\x79\xc8\x9b\x49\x09\xab\x8a\x3d\x3a\x1e\x4b\x85\x66\x32\xaf\x0e\x7c\xe8\xd7\xaf\x79\xc2\xa6\xef\x8c\xac\xbe\x9b\x11\x96\x90\xd8\x0c\xca\x37\x19\x0f\x94\x8a\x23\xb5\xe2\x36\x6a\xd5\x31\xf4\x69\xcc\xfb\x26\x74\xd8\x72\xb9\x2c\xd9\x62\x7c\xc2\xdf\x18\x42\x7a\x81\x08\x64\x92\x34\xf5\x01\xdb\x1d\x03\xce\xee\x97\x76\x56\xa3\xee\xa1\x46\xed\xaa\x1a\x75\x0f\x35\x6a\x97\x34\x6a\xf3\xf0\x15\x61\x84\x86\x8d\x90\xb9\x81\x53\x38\xf0\x68\xb5\x3e\x85\x5a\x1d\xf3\x82\xd3\x30\x91\x1c\xcc\x78\x9a\x16\x4d\x68\x17\xb0\x72\x43\x6f\xb1\xc0\x7c\x0f\x65\xe6\xe6\x9b\xa2\x32\xc8\xde\x0e\x2a\xa3\x0f\x34\xfe\xb7\x46\x4a\x54\x39\xe3\x55\xe3\xce\x88\x85\x8c\x1f\x0a\x62\x59\x69\x55\xdf\x66\x66\xd5\xf8\x77\x51\xf5\x37\x06\xb0\xc3\x98\x7a\x05\x05\xf6\x68\xb6\x47\x49\x7e\x57\x47\x79\x3a\xd2\x7b\xac\x19\x65\x15\xc6\xc1\x5f\xa8\x2f\x1a\x1f\x00\x45\xfb\x9b\x4b\x4c\x7b\x89\x7f\xbe\xb8\x50\xa8\x0f\x24\x39\x6c\x83\x21\xc8\x77\x49\xc4\xb1\xd9\x64\x4c\x08\xe9\x46\xe5\xc1\x5d\x03\xe4\xac\xf9\xb9\xa5\xb0\x25\x36\x2d\x32\xba\xba\xc9\x6e\x1b\x9c\xf8\xff\x52\x35\x51\xae\x39\x19\x64\x73\xfc\x3b\x83\x67\x40\xbc\x86\x88\x4f\x40\xb3\xb3\xaf\x87\x30\x4e\x17\xc6\x02\x11\x6d\xe9\xc7\x8c\xb3\x35\x43\x3f\x66\x97\x8d\x93\x3e\x4a\xca\xf5\x32\x73\x99\xb9\x8f\xfc\xf2\x8a\x2c\x4d\x40\x7c\x0e\x83\xd1\x68\xb8\xf5\xac\x2a\x6b\xb1\xee\x3d\xe9\x50\xd1\xe3\x3b\x43\x6a\x8f\x16\x52\x17\x5a\x55\x55\x86\x7e\x4d\xf2\x6d\x17\xc6\x13\x5e\x1f\x0b\x1b\xb8\x09\xe3\x60\x4a\x03\xb7\x8b\xa2\x5c\x4f\xf4\x46\x94\xb3\x93\x2e\x9a\xa8\x37\x6e\x8c\x2b\x51\x38\xa3\xaf\xaa\x44\x8c\x35\x2c\x78\x80\x23\xc9\xde\xa3\x8c\xaf\x35\x3c\x3e\xae\x03\x41\x6c\x90\xc7\xfa\xb1\xde\x02\x83\xea\x82\xaa\xd8\x4d\xf4\x43\x60\x98\x28\xb4\x3c\x2f\x80\x6b\x38\xb4\x0c\x85\x81\x99\xa0\x89\x4f\x48\x80\xbb\x3e\x18\x7e\xcc\x82\xe6\x7c\xc0\x91\x67\x83\x80\xbe\x5c\x81\x0a\x07\x4f\xa4\xc9\xf8\x8c\x63\x83\xda\xd4\xaf\x2e\x0a\x18\x2a\x98\x99\xf1\x16\x11\x9c\x12\x07\x74\x6f\x38\x7d\x6a\x33\xf3\x1d\x89\xf3\x8c\xab\xf2\x7c\x67\x80\xd9\x9a\xc8\xf3\xbb\xbf\x85\x3c\xff\x6b\x4d\xb7\xea\x2e\x27\xd6\xb8\x54\xbd\xa9\x5f\x2a\x52\x77\xbb\x27\x53\xf4\x3b\xed\x0b\x31\x57\xff\x2d\x84\xea\xb5\x41\x52\x85\xf3\x17\xbb\x31\x08\xbb\x9c\x88\xa6\xc8\x7a\x9b\x28\x56\x07\x55\x94\x25\x0e\xd4\xbe\x35\x3e\x43\xa9\x4b\xfe\x39\x0f\xbd\xa5\x08\x21\x15\x11\x46\x27\x8c\x83\x4d\xa3\x0d\xee\x37\x75\x6c\x0c\xe4\xe2\x34\x3c\xdd\x28\x9e\x36\xcd\x2f\x38\x97\xf1\xdd\xf7\xf8\xaa\xf7\x01\x5b\x7f\x82\x38\x6e\x69\x5c\xbf\x02\x37\xdc\x1b\x53\x30\xc6\xa4\xd1\x3d\x31\x02\x82\x37\x15\x70\x9a\x0c\xbe\xc0\xc4\xfc\xc1\x08\x79\x9e\x42\x38\xc1\x57\x8d\x5b\xb2\x3a\xd6\x88\xbf\xae\x0d\xe4\x84\x1b\x20\x15\x8f\x0c\x32\x19\x0e\x60\xb6\x35\x0f\x43\xaa\x24\x42\xbd\x7e\x74\x87\xc3\x7a\x67\x5c\x67\x49\x07\x4c\xc4\x67\x3c\x96\x06\x13\x8d\xb7\x3e\x19\x07\x29\xf3\xa7\xbe\x69\x4c\xe1\x31\xd8\x73\xb0\x45\x5f\xf5\x1e\x0b\xf7\x5c\xfe\x81\x18\x0b\x3d\xd6\xfa\xe2\x61\x6c\x4b\xdd\x88\x86\x09\x73\x8c\x7b\x12\xc7\x8d\xba\x2e\x63\x14\xac\x9d\xe8\x4a\xa0\x0b\xbf\x35\x25\xcf\xa2\x87\x47\xba\xb2\x0d\x24\x44\x68\x34\xf8\x3a\x3a\x67\xf5\xb7\xd0\x86\xb6\xd9\x4d\xb4\x9c\x8b\x63\xd7\xb9\x82\xca\xda\x81\x62\x05\x75\xc0\x6f\x6f\x8f\x18\x62\x06\xaf\xbe\x03\x42\xd2\x3e\x84\x17\x7c\xf4\x1e\x6b\x69\x45\x66\x36\x64\x40\x5c\xdb\x9b\xd6\x81\xb8\x1e\x7e\x38\x98\xd5\xa5\xc5\xc4\x40\x3d\xf1\x0e\xfd\x3a\x8e\x7f\xf5\x18\xdf\xc5\xd2\x47\xa8\xf5\xd6\xea\xc8\x59\x51\x5d\xc4\x4c\x4c\xe0\x0d\x18\xf2\x06\x82\x23\x6e\x10\xc4\x53\xc6\xae\x8d\x37\x75\xb5\x0c\x5a\x3e\xf7\xf0\xa9\xce\x3a\x38\xca\x5d\x78\x7f\x88\x81\x99\x57\x06\x52\xe2\x40\xfa\xde\x07\x8c\xbd\xc1\x16\x5e\xd5\x0f\x95\x0f\xd0\xa7\xe6\x2d\xb2\x62\x6b\x66\xaa\xd8\xbb\x30\x95\x63\x58\xa3\xc1\xd0\x3f\x34\x0f\x48\x3f\x9f\x32\xfe\x95\x88\xd0\x41\x14\x04\x7e\x91\x2b\xcc\x6c\x94\x8d\x26\xfc\x7f\x4a\x26\xfc\x57\xbd\xc5\x5a\x5e\x83\xec\x43\x54\x99\xb1\x1a\x34\x4f\x01\xe2\x2d\x7a\x2d\x17\xf5\x6f\xe2\x55\xdc\xf6\x03\xd4\x73\xfd\x2f\xf8\xff\x09\x94\x0d\xea\xd8\xf1\xbd\x5c\x4b\x76\x63\x74\xdd\x09\xea\xe1\x16\xd9\x23\x60\x4f\xa3\x13\xe1\x19\x1e\x0e\xdc\x81\x0f\x3c\xc9\xbf\x10\xb3\x91\x32\x16\x5f\x24\xd5\x7a\xe8\x62\xaa\xe4\xea\xb2\x66\xb5\xfe\xa1\x9e\x12\x46\x60\xbf\x0f\xc6\x6b\x2a\x1a\xd0\x2c\x72\xc3\xf5\x36\xbf\xdd\x27\x0d\xdb\xc5\x79\x73\x20\xa7\xb3\x01\xd0\xc6\x66\xac\xae\xfb\x06\xe3\x11\xff\x80\x2c\x7d\x80\x22\xba\x66\xc2\x4b\x86\x5e\x2f\xc3\x58\xd7\x86\xe1\x36\x11\x25\xce\x3e\xf7\xfc\x14\xe4\x0e\x8c\x09\xfe\x85\x18\x16\x7e\xd7\x9b\x18\x16\xa3\x17\xa0\xdc\xea\x18\x3e\x6c\x31\x0c\xef\x5c\x01\xa2\x3a\xb8\x82\x7c\xc0\x80\x2b\x27\x28\x5a\xad\x2d\xe4\x2e\xea\x7a\xb7\x05\xbd\x7d\x8d\x62\xea\x19\xf3\xba\xa4\x50\x0f\x63\xaa\x3d\xc6\xda\x01\x0d\xf1\xeb\x3a\x80\x5c\x61\xd1\x2d\x2e\x58\xf2\x35\x29\xcf\x36\xa9\xc9\xb9\xc1\xda\x9b\x20\x91\x0a\x53\x82\x87\xed\xf0\x1c\x53\xba\x58\xf0\x55\x86\x29\x4f\xd9\xe7\x4d\x53\x50\xd9\xc7\x9a\x48\xd6\x70\x7a\xea\x47\xfc\x0e\x9b\x79\x1c\xd3\xe8\x86\x7b\x0a\x8d\xde\x70\x07\xc8\x51\xc7\x4f\x9c\xe1\xe4\x17\x20\x09\x40\xb6\xf9\x31\x43\x49\x0d\xf1\x0d\x5a\xbc\xfc\xd2\x20\xa8\x59\x03\xde\x6d\xe1\xbb\x57\x06\x10\x8f\xbf\x31\xae\x30\x54\x76\x42\xca\xa6\xd7\xc3\xb1\xda\x97\xda\xfd\x98\xb1\xd3\xf7\x89\xee\xe6\xb3\x3a\xe2\x65\xf6\xad\x04\x6f\x83\x1d\x87\x32\xc9\xa9\xbd\x9c\xb1\x81\x8b\xca\xbd\x47\xb3\x64\xaf\x07\x54\xde\x32\xf6\x93\x29\x83\xef\x65\x4b\x9c\xab\x05\x3e\x18\xc0\xcd\x6f\x72\x68\x53\x40\xa6\x7e\xc2\x4c\x1c\x3b\x6e\xea\x1b\x06\x63\xdd\xb7\x89\xf2\x6a\x1e\xe3\x4c\x83\x7c\x70\x7c\x4f\xc4\x9b\xd3\x8c\x73\x09\x42\xc8\x3f\x70\x81\xdc\x24\xe4\xdc\x44\x6b\x8d\x34\x38\xc6\x47\x6d\xd4\x8e\xf8\x16\x24\x12\xb4\x02\xd4\xfe\xa6\x81\x51\xc1\xb7\x0d\x1c\xa2\x0f\x84\x7a\xad\x09\x1a\x01\x1c\x37\xfe\x86\x6c\x45\x0b\x9a\xc4\xcf\x3d\x13\x9d\x76\x68\xbd\x79\x5d\xa7\x48\xac\xcf\x19\xbb\xe2\x22\x06\xab\x0f\x98\xb9\x65\x66\xdb\xe2\x0b\x5b\xed\x84\xf1\x4e\xd8\x94\x13\x37\xdf\xdf\x7d\xae\xd2\x4b\xbe\x6c\xa5\x9b\xe6\x1a\x06\xd7\x4f\xa9\x6e\x10\x3b\x8a\x57\x21\xa9\x4f\x49\x2d\x89\x88\x3a\xda\x6b\xf0\x7c\x4b\x16\xf2\x1d\x89\xcf\x26\x1a\xee\xc7\xaf\x31\x5e\x7c\xdb\x40\x13\xb6\xbd\x55\x57\x41\xc6\x38\xda\x91\x18\x49\x9e\xaa\x84\x9b\x5b\xd4\x11\x00\xe9\xdc\x35\xa9\x9a\x63\xc6\xf7\xea\xb2\x72\x7e\x78\x6d\x52\x74\xe4\xb5\xc1\xf8\x97\x57\x26\x5a\xd4\xa8\xc5\xf8\x37\x1f\x23\x36\xc7\xa3\x45\x63\x0c\x6e\x73\x9a\x81\x2e\x0d\x0f\x27\xa7\xa6\xee\x70\x10\x57\x31\xce\xa7\xcc\x8c\xcc\xb7\x48\x8d\x13\x2a\x81\x73\xa8\x42\x0e\xb9\x0e\x80\xb4\xfc\x90\x22\x42\x68\xe8\x53\x83\x75\x3d\xf3\x1b\x8e\x00\xfa\x0b\x5f\x71\xc4\x3c\x34\x35\x3a\xf7\x8a\xe8\x76\x2f\x0d\xbd\x5f\xbf\x68\xa0\xa2\xbf\x32\xe6\x4d\x94\xfa\x51\x1c\x57\x10\xc6\x2a\x69\x44\x61\xac\x8e\xc1\x92\xe7\x6c\xa4\xf7\xf9\x5b\x33\x04\xdf\x1a\xc6\x87\xf4\x12\xe9\xf3\xee\x37\xac\x0f\x69\xdd\xba\xae\x47\x31\x0d\x9a\x8c\x7f\x26\xed\x77\x65\xe8\x8e\xc1\xea\x60\xc8\x36\xe7\xfc\xc3\x6e\xd2\xa4\x2a\x07\x83\x7f\x17\x5a\xd2\xdc\x25\x7d\x8a\xb6\xcf\x2e\x88\x6b\xb3\x47\x6f\x30\x14\xb3\x7b\x81\xe1\x69\xc7\x50\xb4\xee\x2e\x2a\x93\xe6\x2b\x54\x30\x3c\xe2\x01\x29\xb5\xf7\x3c\x6b\xb6\x36\x85\x3e\x3b\xb8\x30\x92\xbe\xbd\xab\x33\xe9\x5f\xf7\x19\xff\xda\x96\x0a\x11\x8d\x25\x0a\x74\x91\xef\x8d\x36\x53\x8f\xf9\xc6\x0c\x06\x76\x60\x5f\xd5\xf5\x01\x1b\x1e\xbf\xc1\xd9\xf7\x24\xd6\x93\x03\xea\xec\x5b\xec\xd8\x3b\x0a\x20\xd5\x71\x1a\xe3\xf7\x42\x05\x7a\xa8\x02\xc7\xf8\x6e\x62\x28\xfd\xad\x83\xd7\xca\xf7\xe8\x4d\x43\x9d\x62\x7a\xf4\xd3\x3c\xa4\x80\x14\xce\x24\xc0\x5b\xf1\x70\xbd\x35\xd1\x9f\xf0\x1a\x32\xa6\x05\x7f\x40\x3f\x70\x86\xa3\x7a\x84\xae\x89\x79\x8f\x51\xa8\x83\xbd\x63\xbd\xcb\xbe\xd0\x2b\x17\x5b\x75\xda\x08\x9b\x64\xab\x82\xe0\xba\xad\x7b\x83\x7c\x4a\x5c\xf0\x33\xf6\x85\xcc\x72\xc6\x87\xfb\x58\x29\x59\x1e\xa0\x79\xcf\x39\x4d\x14\x27\x8c\x7f\x11\x65\xba\x8c\x77\x04\xb3\x76\x31\x8e\x01\x12\x03\x9c\xf0\x8d\xa2\x89\x20\x18\x23\xb4\x57\x4e\x00\xe5\x11\x79\xb6\x38\x3f\x75\xfb\x24\x77\x2d\x66\x7e\x30\x22\x23\x71\x3f\xed\xa4\x96\x03\xea\x76\x0f\x17\x46\x10\xc9\x31\x33\xcf\xdd\xcf\x09\xf0\xeb\x16\xbd\x37\x19\xff\x8a\x1a\x6a\x00\xae\x7a\x33\x34\x8e\xa0\x8f\x53\x30\xd9\x5b\xfa\x5b\xce\x47\x5b\x30\x96\x27\xf6\x18\x2c\x86\xaf\xb9\xb1\xec\x28\x63\xd9\x74\x15\xe1\x40\x77\xb4\xb3\xa6\x8c\x6a\x7b\x2f\x00\xee\xd8\x5b\x8b\x47\xb5\xc7\xba\x23\x24\x7d\x67\x6c\xb4\x92\xe9\x7f\x62\x1c\xea\x07\xac\xdf\x1e\xef\x26\xe4\xfe\xb0\x9b\x26\x77\xef\x79\xd2\x4c\xf2\xbd\xed\x64\x80\xb6\x70\x95\x89\xc2\x96\x5f\xf7\x70\x0c\xf6\x04\x48\x5f\x04\x08\xb6\x8c\x16\x82\x9c\xab\xef\x11\x7f\x5b\x1f\x1b\x68\x12\x70\x9c\x80\x00\x68\xa4\xe2\xc7\xc2\x3d\x6c\x1c\x19\x21\xf2\x43\x97\x39\xbb\x07\x60\x04\xbc\x6b\xde\xe2\xe8\xcc\x71\x10\x4d\x0a\xd6\x36\x80\x04\x27\x24\xa1\x5f\xe1\xfd\xd4\xa0\xc9\xdc\x43\x5e\x7e\x6d\x44\x68\x09\x20\x7d\xd9\x94\xbf\x12\xcb\x6a\xd0\xb0\xd7\x20\xd8\xe0\x1d\x9b\xef\x77\xd1\x80\x3b\x06\xee\x6b\xcc\x70\x29\xf7\x58\x31\xb0\xde\xe6\x0c\x2c\x54\x0b\xb3\x94\xad\x74\x65\x30\xf6\x3e\x6f\xc0\x57\x71\xfa\xbe\xc9\xd8\x4a\x7d\xd6\x7a\x87\x6b\x19\x2d\xf2\x85\x6d\x5c\x2b\x8d\xcd\x8f\x1e\xe3\x47\x0e\x99\x24\xa4\xba\x4f\x32\x13\x99\xf9\xe4\xec\x05\x4e\x74\xc6\xc8\xe8\xa7\x4d\x97\x3e\x6b\x09\x3b\x3b\x10\x5e\x5a\x93\x99\x5f\x1b\x29\xcb\xf2\x80\xf1\x0b\x5a\x71\x3c\xa1\xf5\x50\xa8\xa8\xe9\x91\xf7\x2c\x5c\x5b\x32\x3b\xce\x55\x75\xcc\xf7\xee\x9b\x29\x75\x39\xab\x8b\xd2\xd2\xfa\xc3\x88\x6f\xcf\x4e\x34\xe6\x9b\x17\x6a\xcc\x63\x34\x40\xb9\x89\x1b\x0f\x84\x99\x71\xc3\x8b\xe7\x7a\x98\x12\x1c\xb1\x18\x01\xbf\x6f\x9b\x72\x61\x82\x4f\xb2\x54\xba\x34\xa2\x7a\xc1\x4c\x3a\x37\x98\x79\x2d\xaa\x79\xb5\xbb\xd8\xa4\xb8\x4e\x8d\x84\x8f\x95\x9e\xea\x16\xcc\x08\xf9\x29\xfb\x33\x55\x74\x09\x4f\xb2\xa2\x0d\x83\xb5\x6e\x85\xd9\x37\x6f\x16\x9b\x7d\x34\xf9\x08\x7b\xef\x5e\xd8\x7b\xaf\x33\x9d\xef\x72\x14\x36\x0c\x7a\xf1\xcd\xa6\xda\xac\x3b\x90\x7f\x1e\x89\x82\xfd\x8c\xed\x82\xbd\xa1\x39\x23\x41\xc1\x87\xef\x52\x28\x5e\xe1\x27\xee\x19\xf7\xc6\x42\xcb\x25\xd5\xcc\x2d\x61\xb2\x10\x4b\x8b\xea\xda\xa8\xff\x73\x16\x54\x9b\xb1\xfe\x26\x39\x7f\xaf\x5a\x44\x02\x0c\x1e\xb6\x19\xdf\xe2\x45\x06\x17\x1b\x5c\xec\xd2\x90\x82\x4d\x7b\xb9\x8b\x6c\xf2\xae\x05\x02\x25\xcd\xe1\xb0\xf5\xd7\x74\xb3\x6a\x7c\x66\xd0\xb0\x61\x9a\xff\x89\xe1\x85\x53\x49\x8a\xe1\x95\x71\x65\x2c\xe7\xda\x1f\xb0\xb7\xc6\x26\x7f\x8d\x6b\x47\xbd\xa8\x4e\x6a\xb7\x90\x7c\x92\xf3\x79\xe1\x5b\x85\xd7\x82\x36\xf1\xda\x1a\x67\x6c\x4d\xf2\xda\x01\x6b\x5d\x37\x04\x79\xda\x19\xf2\x24\x04\xe5\x5f\x90\xa0\x59\xa4\xdc\xbc\x15\x38\xe7\x9c\xf1\x5d\x81\xf2\xb5\xc1\x7a\xb7\xc6\x78\x57\x3f\xd0\x5f\x71\x7e\xdb\xec\x22\x21\x0f\x4f\xa9\x54\x8b\xb1\x26\x36\x15\x25\xa8\x89\xfe\xdc\x09\xbe\x18\xe2\x96\xa1\x5b\x03\x4d\x6d\xd2\xbb\x14\xe2\xed\x99\x18\x92\x68\xe4\x7e\x6f\xb5\xf5\xb6\x7e\x67\x70\x6b\x62\xbe\xc7\xc6\x87\x46\xb5\x1d\x6f\x27\x12\x52\x41\x3b\x7e\x3c\xda\xb3\xd2\xd2\x43\xce\xf8\x67\xe9\x2a\xdc\x71\xdc\x99\x73\x85\xcb\x4d\xb8\x29\xc7\x10\x2e\xc5\x9d\x0a\x16\xd6\xd9\x5b\xb3\xb3\xd1\xd2\x07\x6c\xab\x81\x81\xa5\x73\x3f\x99\x56\x77\x85\x19\x62\xa2\x19\x32\x20\x2d\x7e\xd3\xf8\x1c\x71\xb2\x09\xaa\xbb\xfa\x29\xbb\x37\x87\x14\x07\xc6\x75\x5b\x41\x6b\x9f\x82\xbc\x9c\x9c\x5a\x7c\xa0\x48\xc4\x1b\x11\xe0\xa2\xb0\x0e\x85\xfe\x22\x32\xf2\x4e\xdf\x92\xd9\xa9\xbf\xe2\x8c\x57\x39\x46\x84\xef\x68\x4f\x06\xcc\xf5\xf1\x2e\x91\x31\xe9\xec\x09\xda\x01\xfc\x6b\x44\xb1\x38\x5a\xa0\xdd\x77\x50\x12\x40\xab\x80\xa5\x63\xd2\xbc\xdb\x1c\x52\x97\x40\x35\xbb\x68\x44\xf7\xdf\x36\xc9\xe8\xc0\xf0\x1c\x8d\xc8\x3b\x74\x25\xbe\xe9\x1c\xc6\x0e\x67\x0e\x6c\x63\xdb\xa7\x30\x56\x15\xfd\xa5\x0b\x2c\x21\x3e\xe1\xf6\x1c\x8a\x9a\xcf\xc9\x94\xb8\xee\x00\xd0\xa1\xde\x67\x66\x23\x79\x85\x76\x5f\x8f\x99\xdf\xb0\xa2\xf6\x15\x14\xa6\x88\x74\x6b\x8a\xcc\x62\xe1\xff\xa7\x01\x96\xbe\x37\xee\x3a\x18\xda\x40\xa7\x16\xb1\x23\x11\x4e\xd1\x96\x4c\x82\x53\x27\xb7\x9d\x78\x8f\x90\x58\xab\xde\xc0\x2a\x07\x18\xa8\xf2\x8d\x63\x09\xd5\x02\x7a\x6e\xe0\xdf\x86\x98\x45\x91\x68\x62\x39\x7a\xde\xa6\x15\x98\xba\xb2\x9a\x86\x60\x27\x60\x08\x36\x5d\xa3\xa1\x2e\xb3\xa5\xe5\x64\xef\xbe\x13\x4f\x28\xb1\x9c\x80\x92\x18\xb5\xe5\x62\x22\xe3\x6b\x75\xfd\x94\xb5\xce\x1d\xec\x65\xfb\x1a\x46\x80\xef\x12\xa2\xcb\x66\x46\x34\x4d\x45\x5d\xd1\x32\x2b\xd2\xa1\x43\x5c\xf9\x0e\xf7\xaa\x75\xc2\xb4\xb7\x8a\x0b\x25\x33\xa1\x44\xec\x34\xc2\x26\x5a\x42\x3d\xb1\x27\xc8\x06\xe3\xce\x64\xfc\xbc\x8a\x18\x0e\x70\x01\x77\x4b\x38\xab\x57\x06\x33\xbf\x09\x4d\x94\x99\x05\x07\xea\xc2\x62\xcf\x6b\x51\x01\x9b\xb5\x3f\x88\x48\x06\x96\xba\x4b\x3a\xd3\xc7\x6a\xf6\x8f\xf5\x2e\x7f\xc7\xd1\xfe\xef\x82\xcd\xcd\xc6\xc6\x75\xa3\x28\xe0\x76\x7c\x4b\xdb\xc7\x70\xa1\x90\xcf\x94\x05\xb9\xf7\x4d\xe2\xe8\x36\xf0\x20\x0c\x51\x13\xbf\x8a\x6d\x2a\xa0\x93\x43\x83\x99\x07\x13\x34\x3a\xbe\xbc\x46\x92\x7c\xd6\x39\xc3\xc5\x51\x8a\x24\x63\x00\x58\x89\xc6\x5f\x22\xa7\x1f\xd0\x7a\x6f\xef\xdd\x2e\x85\x0a\xdf\x36\xa5\x18\xb4\x18\x1f\xbd\x27\x67\x53\x6f\xb3\x2f\x68\x0a\x9d\x4e\x8c\xfb\x4e\xe2\x7f\x6e\x19\xb8\x1c\xfb\x8d\xbe\x45\x5c\x71\x2e\xbf\xa1\xa4\x9f\xbe\x21\xe7\xd2\x35\x84\x73\xe9\xcb\x4d\x91\x14\x39\x07\xa7\x72\x4b\x71\x2a\xaf\xf9\x4b\x4c\xa4\x26\xc5\x7c\x58\x17\xc9\x35\xa6\x39\xf1\x1e\xd7\x4f\xfa\x43\xdd\x62\xb7\xc6\xac\x91\x0f\x5a\xbe\x4a\x05\x2d\x37\x39\x76\x21\x8e\x5a\x42\x07\xc0\xba\x45\x5b\x8d\x33\x8a\x5a\xa2\x39\x5d\xc7\x9d\x97\x3d\x72\x45\xe7\xe8\x65\xa2\x05\xcf\xc7\xe8\xb4\xf0\x37\x86\xfb\x39\x6b\x52\x1f\xbf\x47\x2b\xfb\xbd\xb0\xac\xaf\x1b\x8a\x65\x7d\x51\xff\x09\xcb\xba\xc7\x9a\x5b\x66\x3e\xd6\x3b\x37\x26\xfc\xaa\x9e\x0e\x40\xbe\x4d\x05\x20\x2f\xea\x97\xb9\x00\x64\x2a\xfe\x88\x11\x49\xec\x1d\x59\x02\x53\x83\x68\x20\x17\x55\x28\xee\x4b\x2a\xfd\x72\x17\xe3\x94\x1c\xe3\x94\xa8\xe6\x4d\x8f\xa3\x25\x23\x86\x41\x06\xdd\x37\x70\x49\xf2\x18\x75\x27\xcd\xe4\xbd\xcd\x14\xc0\xab\x46\x1c\x67\xf6\x78\xce\xea\xbd\xae\xff\xb4\xd5\xcb\x4d\x69\xf4\xbe\x32\x12\x1d\x35\xcd\xe8\xa8\x10\x57\x33\x48\x11\x77\x9b\xa0\x84\x9a\x13\x61\x5d\x8d\x9b\xcf\x99\xc4\xc7\x18\x33\xbf\xe6\xe4\xb1\x91\x1f\x71\x24\x34\xc9\x13\x85\x6f\x4c\x50\x02\x18\xc3\xe3\xd5\x56\xdc\x81\x60\x61\x07\x36\x94\x0e\xac\x65\x3a\x30\xc6\xbd\xaf\x7c\xbf\x38\x66\x27\x48\xd5\xc7\x88\x03\x3a\xe5\xe9\x2a\x3a\xf7\xdd\xbc\x1e\x9f\xd7\xd5\x2a\xf8\x9e\xdf\x45\x1a\x55\x85\x16\x6c\x82\xa2\x6f\xdd\x1a\x60\x17\xb1\x56\x3a\x18\xca\xa6\xc6\xb4\x29\x16\xd4\x8e\x59\xfb\x3a\x13\xb7\x65\xa7\x4e\xac\xdb\x31\x64\xbc\xc8\x9a\x7f\xdd\x40\x13\xe4\x3e\xd9\x70\x43\x4b\x4c\xac\x4b\x73\x29\x70\xbc\xb9\x25\xec\xbc\x28\xcb\x2c\x91\x19\x13\x75\x66\x2c\x22\xea\x7b\x85\xa8\xbe\xc9\x5a\x9e\xb1\xc0\x41\x39\xbe\x25\x69\x7a\xdf\x00\x32\xf4\x26\x38\xb2\x27\x1b\x6d\x9a\x5f\x09\xfd\x86\x91\x35\x56\x31\xbc\x1a\x7d\x5e\x3e\xbc\xda\x20\xd7\xf7\x94\xf1\xbd\xb4\xeb\x3b\x45\xa7\xd0\x33\x2e\x78\xde\x5c\xef\xdf\xee\xca\xb6\x1d\x08\x97\xa2\xb7\x81\x9b\x80\x73\xf1\xf8\x4b\xc3\x15\x73\xf6\x55\x12\x5d\xc6\x70\xea\xbd\x0c\xa7\xe2\xd4\x71\xba\xd6\x80\x1e\x5c\x8b\xf2\x9b\xa6\xfe\x82\xe0\xea\xa5\xc1\x4c\xaf\x4e\x9d\xaf\x9a\x7f\x49\x6c\xd9\x5f\x14\x5b\x2e\xa0\x45\x97\x68\xb1\xb5\x98\x16\x3e\x07\xab\x55\xd0\xe2\x44\xd0\x22\xa6\x02\xbb\xfb\x21\x2a\x4c\x41\x3e\x1a\x77\x18\x08\xe9\x07\xa8\xf6\x70\xed\x85\x4d\x8c\xf7\x60\xb7\x81\x01\xdc\x62\x3c\x10\xc8\xdd\xc6\x62\x5d\xf1\x74\x38\x9f\x57\x9f\x0b\x88\x9c\xb2\x2b\x63\x13\x3e\x9f\xda\x77\xa0\x76\xbe\x29\xa1\x3b\xbe\x29\x76\xff\x65\x82\x6e\x5d\x11\x86\x35\x3b\xf4\x01\xa3\x7a\xe6\x82\xa8\x9e\x49\x51\xbd\x96\x1a\xd5\x33\x29\xaa\xd7\x1e\x4d\x68\xa7\xce\x25\x6e\xc2\x3f\x70\x53\x13\xc0\x54\xcc\x10\x6d\xd6\x0a\x0c\x3a\x29\x41\x31\xbe\xa0\xfd\xd7\x87\x54\xef\xea\xf4\x9a\x33\xfe\xe5\xba\xbe\x44\x50\xf5\xd2\xc8\x47\x0e\xd1\x68\xdf\x4f\x1a\xe0\x98\x04\x3f\x36\x98\xf9\x75\xb3\xfb\x74\xd8\x11\x0b\x17\xd4\xdc\x65\x97\x9f\x0f\xbe\x90\x2a\x0d\xeb\x7a\x8b\x5f\xb7\xb7\x68\x89\x00\xf8\x93\xf9\x46\xd4\x8c\x0d\x49\xdc\xea\x04\xf2\x60\xba\xd9\x65\x0b\x9c\xe4\x6d\xd6\x8c\x8c\xb5\x38\x40\xd5\x6c\x88\xbd\x38\x7a\x8f\x35\x0e\x67\x4a\x91\xd1\x29\xee\xb8\x54\x6c\xda\x9b\x4e\x96\xe1\x3d\xdc\x6a\x23\x96\xa6\x7d\x9c\x2a\xc5\xae\x2a\x37\xc5\x84\x05\xae\xba\xd8\x6b\x89\x5e\x07\x4f\xf4\x7f\x44\xe6\x3c\x05\x2b\x65\x10\x24\x29\xb4\x21\x74\x82\x83\xe1\xd5\x7c\xb9\x79\x7a\x69\x30\x2e\xd7\x90\xab\x71\x62\xa7\x45\xaa\x10\x6e\x1c\xe5\xb7\xbc\x78\xe5\x68\x6a\x54\x85\xf6\x9f\x1a\xcc\xc6\x2d\x5f\x07\xf6\x25\x68\x87\x43\x92\x9b\xe6\x84\x36\x02\x7d\xd6\xbb\x6c\xb7\x20\x5a\xdd\x4b\x45\xab\xef\xf9\x3d\x0c\xc5\x1d\xbf\x33\x18\xa1\xbf\x32\xf5\x36\xbf\xaf\x6f\xd5\xf5\x0d\xae\x8f\x39\x17\x5b\x7c\xc8\x2f\x4b\x76\x91\xe2\x56\xb5\xc4\x8e\x07\x93\xd2\xdc\x8b\x17\xb7\xfb\xcc\x3c\xdc\xc2\x27\xf3\x15\x6d\xd5\x48\x16\xbe\x0f\x64\x24\xb3\x75\x83\x36\x8d\x1d\xa0\xeb\xe4\xc9\x89\xf4\xf9\xfd\x20\xa8\xe9\x4c\x07\xa5\xfd\x80\x76\xec\x74\x2f\x79\xbc\x53\xee\x5e\xec\xd8\x33\xa7\x14\x07\xcc\xef\xbf\xbb\xe0\x1e\x41\xf8\xb4\xd3\xb9\x60\x1f\x9e\xc7\xe5\xcb\x0e\xc6\xa2\x0e\x67\x1d\x2a\xd1\x21\x98\xa0\x23\xbf\xda\xcc\x8c\xe4\x63\xd8\x81\xa6\x1e\xd2\x93\x79\xd5\x41\xfd\x11\xc5\xdf\xfa\xa0\x77\xc4\xe3\x1c\x4b\x1e\xd2\x13\x74\xa6\x47\xf1\x7a\xdc\x17\x26\x00\x06\x62\x77\x0b\x6e\xff\xe0\x26\x91\x4b\x6f\xe3\x52\x60\x8f\x7d\x6e\xe1\x2e\xd3\x86\x47\x28\x90\xa9\x7a\x57\x30\x6b\x34\x3f\xe3\xbb\x19\x3f\xd2\xa7\xea\x20\xd2\x59\x30\x23\x44\x98\x80\x27\x67\x0a\x5a\x1f\xf0\xc8\xd2\xc1\x5a\x47\x6c\xba\x23\x68\xb1\x84\xc0\x5a\xc2\x48\x6b\x32\x73\x13\xf7\x82\xed\xc6\x88\x99\xfe\x9e\xb3\xae\xca\x23\x62\x2f\xfb\x31\x6e\x32\x3e\xa2\x88\x40\xf7\x72\x0f\x2c\xcf\x3d\x17\xdd\x18\x53\x2c\xc5\xe0\x7c\x4b\x11\x8d\xfb\xd4\x16\x40\xda\x50\x0b\x00\xc7\xcc\xa4\xad\xf9\x12\x02\xd4\x6b\xeb\xda\x98\x1a\x7a\x4b\x9f\x76\x78\xc8\x8f\x50\x02\x5e\xed\xea\x83\xac\x04\x8c\x48\x02\x6c\x55\x02\x3c\x03\x45\x00\x63\xc9\x55\x3e\x82\x6e\x39\xb8\x5a\x61\x6e\x21\x75\x71\x15\x1e\xbc\xe9\x16\xee\xaf\x4e\xb4\xcd\x65\x57\xcf\xc6\x79\xbb\xc0\xf6\x26\x9a\x0a\xd2\x1a\x18\x06\xc8\xd9\x53\xe4\xe5\x2f\x13\x2c\x73\x34\xee\x92\xbc\xa1\x58\x8b\x09\x35\xcc\x88\xf5\xd8\xf8\xd0\x26\x1a\x3b\x06\x58\x03\x37\x9f\x9f\xc5\xa3\xf8\x22\xb9\xe9\x59\x9a\x97\xa0\x61\xe6\x66\xe2\x98\xa8\x76\xfd\x7b\x23\x6e\x76\x6e\x8e\xbe\x34\xbc\x5e\x41\x38\xde\xe1\x4f\x84\xe3\xe7\xc2\x28\x02\x02\x06\xf1\x6f\x9e\x5b\x34\x1f\x4c\x68\xbb\x28\xd3\xdb\xcc\x94\x36\xdc\xe5\x6e\xc6\xdc\xfa\x96\xec\x9e\x38\x7e\x7e\x21\xff\xb5\x19\x47\x86\xaf\x8d\x0e\x46\x86\x8b\x57\x46\xa6\x68\xd0\x5f\x19\x53\x63\xda\xc1\x61\x74\x77\x61\x26\xdd\x5c\xbc\xb2\x9f\x5a\x26\x70\x0c\xfe\xf9\x8d\x39\xde\xa3\x49\x6a\xd6\x95\x76\x8a\x79\x41\xf1\xa2\x3e\x4c\x73\x26\x3b\x6a\x5c\x36\xd1\xac\x98\x43\xb7\x0e\xcc\x7b\x28\x70\xd8\xb8\xdb\x83\x96\x33\x74\xb1\x7b\x66\x00\xa3\xba\xdf\xb8\xea\xea\x36\xbc\x84\x72\x5d\xf3\x02\xfe\xec\x35\x1c\x2a\x7e\x07\xc5\xdb\xe6\x26\x14\xef\x34\x36\xf6\x50\x5e\x2e\x40\xb4\x5b\x26\x1e\xed\xf8\xdc\xb8\x03\xd1\x6c\x36\x2f\x31\x40\x57\xdf\x02\xc8\xdd\xc6\x6b\xa8\xa8\x69\xbe\x81\xa7\x46\xe3\xed\x9e\x7e\xc2\x8e\xf0\x68\xc4\xc9\x07\xe3\x1d\xbc\xfc\xfa\xde\xd0\xef\x9a\xcc\x7a\x63\xbc\xc7\xbe\xf4\x28\x3c\x07\x74\xbb\xa7\x60\x70\x1b\xfb\xd6\xc6\xc9\x9b\xbd\xe5\xd7\x1d\xa2\x36\xfc\x77\xd3\xa1\xa5\x24\x8b\x99\x5b\x26\xed\x82\xbc\x40\x41\x38\x56\x5d\xa9\x2e\x63\x03\xbf\x49\x0a\x81\x26\xb1\x93\xfc\xc2\x07\xae\x44\x1c\x81\x5e\x99\x35\x14\x61\xdb\x53\x40\x6c\xc6\xba\x63\x43\x72\x03\xe3\xc2\xf2\x24\x05\x85\x7b\x69\xe8\xa7\xf0\x22\x59\xbf\xda\x20\xb3\xc6\x64\xbc\x6a\x56\x1b\x38\xa7\xae\x61\x93\x4f\x22\x6c\xe6\xc1\xbc\x85\xc6\xd7\x04\xbb\x38\x36\x88\x76\x33\xe1\x13\xb8\x9d\x42\x9f\x00\xbf\xdd\xa7\xfd\x85\x16\x7c\x0b\x70\x4a\xe4\xb8\xb4\xd6\xec\xa0\xc7\x79\x70\xdf\x89\xe3\x76\x7c\xb2\xd0\xbd\xbb\x51\xdc\xbb\x9b\x8c\x43\x3b\xa6\x26\x3a\xb8\xe9\xfc\x18\x34\xb5\xcb\x1b\x2e\xb0\xc3\x25\xf7\x0d\x0c\x02\xba\xfc\x9b\x3e\xe6\x8c\xf5\x2f\x90\x53\x2f\x0c\xa6\x5b\x6c\x83\x6f\x1a\xaf\x4c\xa2\xfa\x8d\x38\xc6\xc3\xc1\x0a\xf3\x0c\xda\xd0\x63\x32\x7e\x3e\x33\xa4\x69\x84\x91\xe6\x59\x53\xae\x21\x0f\x5a\x6f\xf1\x93\xd7\x60\xaa\x79\x4b\x66\x0e\x68\x1f\xfe\x59\x6c\x8e\xc6\x75\xd2\x57\xb1\x87\x61\x1e\x7e\x4d\x6c\xc9\x8b\x66\x6e\x79\xff\x80\x99\x47\x57\xcd\x04\x64\xb3\x99\xd8\xbc\xaf\x9a\xc2\x7a\xb6\xa0\x31\x17\xcd\x17\xac\x4f\xe7\x6c\xe0\xb9\x91\x6c\x27\x98\x37\xa5\x55\xc9\xbf\x7c\x28\x68\xb5\xc9\xf8\xde\x3e\x35\xe3\x94\xad\xd5\xeb\xb7\x4d\x61\xd2\x9a\x94\x57\xc0\x2e\x6d\x63\x9a\x1c\x67\x50\xbd\x08\xab\x49\x5e\xaa\x75\x4a\xb5\xb5\xf5\xe6\x7c\xf3\xed\xeb\xc1\xeb\x0a\x1e\x0b\xa7\xc4\x52\x22\xaf\x97\x3c\xe4\xbd\xfd\x47\xc9\x99\xce\xfc\x20\xd2\x1e\xb4\x24\x9d\x91\xae\xa5\x13\x2f\x69\x8f\xda\x28\xf0\xa7\xda\x4a\x60\x5b\x83\x68\xdd\xf1\x22\x77\xe5\xe3\x99\x77\xe6\xd9\xb7\x58\x16\xf3\x2c\x69\xcb\x24\xa2\xd2\x6a\xda\x8a\x48\x80\x50\xc1\x2c\x26\x15\x6a\xaa\xcc\x14\x53\x99\x3a\x61\xe8\x78\x63\x99\x31\x06\xaa\x59\xba\x12\x99\xc6\x6a\xd9\x4a\x64\x3a\x9a\x27\x2b\xa1\x24\x58\x8b\x50\x8e\x2c\xc7\xb5\x17\x21\xc8\x27\xcc\x8a\xd1\x48\x2c\x93\x28\x9a\x55\x3c\x3b\xba\xf1\x83\x4b\xcc\xee\xf2\x14\xaa\xc5\x09\xb6\xf2\xcd\x43\xc4\x73\x40\x85\x49\x16\x44\x0e\x07\xbb\x8f\x49\x95\x7e\xa4\x92\x82\xa1\x7b\xa2\x0e\x9b\xf8\xa3\x5a\xd5\x64\x56\x0f\xeb\xdc\xb5\x35\x2c\xa7\x89\x9c\x58\x61\xe5\xcc\xa3\xea\xd5\xac\x5f\x5a\x2d\xc3\x7c\xe5\x87\x33\x4f\xd3\xfe\x58\x86\xbb\xfe\xdc\xd6\x10\x58\xd3\x9c\xe1\xf6\x52\xfc\xa8\x13\x78\x3a\xa3\xd8\xb6\xb6\x62\x7a\x91\x1d\x68\x96\xa7\xc9\xec\x59\x2b\x00\xf8\xa8\x3f\xdb\x14\xc9\x83\xcb\x37\x45\x96\x78\xa6\x29\x9a\x4c\x2a\xb5\xa8\x25\xc4\xa8\x8b\xeb\xa5\xef\x8b\x6a\xc1\x44\x4c\x1a\xb1\x73\x45\xdb\x77\x6d\x2b\xb4\xb5\x6b\x3b\x70\x46\x77\xda\x9d\x3f\x0f\xb4\x41\x60\x0f\x6d\x2f\x72\x2c\x37\xd4\x2c\x6f\xa8\x45\xc1\x9d\x66\x8d\x2d\xc7\xab\xe4\x1b\x94\x67\xfc\xa2\x66\xe5\xa1\x16\x35\x6e\x8f\x04\x84\xd8\x27\x6e\x1d\x26\x5f\x11\x8d\x23\xbe\x74\x7c\x6f\xb9\xb6\x2d\x96\xa4\x85\x0d\x5d\x5c\x64\x51\xab\x8f\x63\xc9\xd0\x00\x83\x26\x73\x9b\x6d\x6b\x0f\x94\xdb\xec\xf1\xaf\xec\x4a\xa1\x30\x3c\x5d\x62\x89\x8e\xc8\x3e\x68\x98\x3c\x4e\xf4\xc4\x7e\xa4\xb6\x9d\x79\x8f\xab\x52\xec\x51\x99\x69\x37\x4e\x34\xd1\x28\xdb\x5e\x25\x51\x39\xae\x15\x86\x5a\x2a\x67\x9f\x66\xe3\x53\x28\x8a\x61\xbb\xa9\x98\x56\xd3\xe2\xe4\x7c\x88\x5b\xd3\x94\xac\x7e\x65\xa1\x4a\x74\x01\xbd\x2a\xbb\x8c\x89\xfd\xe4\x57\x68\x14\xd2\x61\xa4\x95\xb1\x82\x4a\x2e\xc7\x9f\xf6\x5b\x4d\xa9\x28\x46\xa3\x69\x0b\xe0\xcb\xd1\xc4\x09\xf5\x74\x27\x64\x35\x8f\xf4\x07\x20\x2a\x71\x27\xe8\xc7\x47\x49\x27\x41\xa5\x38\x21\x98\x16\xf9\xb1\x16\x94\x6a\x32\xb2\x6f\xa3\x0c\x05\x47\x73\x8f\x58\x43\xcd\x44\x18\x23\x29\x63\x0e\x42\xd1\x78\xd2\xac\x0f\x84\x4b\xd7\x60\xce\xd6\x1e\xb5\x9a\x86\x30\x82\x92\x40\x90\xdf\x10\x20\xee\x71\x60\x47\xf3\xc0\xd3\xbc\xb9\xeb\xca\xc6\x26\xd8\x9c\xa1\x56\x13\x42\xe8\x0c\xb5\xdf\x93\x9f\xdb\xe2\xa7\x20\xf8\xc7\xa4\x48\x2e\xff\xa1\x56\xd3\x28\xff\x61\x85\xb2\x1f\x96\x1f\x1e\xf5\x84\x51\x17\xb0\x60\xae\x4e\x81\x56\xdb\x4e\x06\x8d\xc4\x23\x35\x97\xfc\xe1\x0c\xff\x5c\x15\x7d\x15\x1d\x03\x3a\x54\x52\xe9\x16\xcb\xb9\x26\xea\xa2\x12\xc1\x53\x1f\xc5\x78\xa5\x67\x4c\x65\x00\xb4\x9a\x62\x3b\x95\x0b\x87\x06\x90\x94\x74\x69\x6b\x61\x16\x44\x61\x52\xe1\x6f\x9a\x2d\x63\x4b\x2c\x93\x37\x31\x36\xbf\x2a\x95\xaa\x9a\x60\x14\x4a\xc5\x65\x8a\x93\x30\xaa\x45\x31\xed\xa8\x5a\x06\xc8\x92\xe2\x60\xa4\xfe\xf2\x3a\x6f\x19\x9d\x72\xe6\x29\x2d\xa0\x7c\x89\x99\xce\x66\x73\x37\x26\x4d\xce\xb5\xf8\xbf\x34\x2b\xd4\x30\x0b\x66\x0c\x82\x4f\x29\x63\x34\x96\x11\x35\x89\x66\x59\xe5\x72\xc1\x0a\x82\xe9\x00\xc3\x36\x61\xad\x1c\x9a\xdc\x6c\x7d\x31\x53\xb3\x11\x96\x44\xe6\xca\x30\x82\x52\x91\xcc\xc7\x59\x5e\xa2\x86\xbe\x79\xf4\x7d\xd7\xec\x74\x7a\xcf\xe0\x4c\xd2\x7a\x96\x71\xb4\x33\x72\x2d\x12\x7c\xea\xb1\x85\xa2\x6b\x4a\x7a\x4f\x14\x75\x2c\x96\x66\xff\x27\xfa\x8c\x6d\x12\x7d\x16\xda\x5d\xd4\xa1\xd5\x6a\x35\x2d\x0a\xe6\xb6\xf8\x1a\xd7\x28\x84\x35\xa9\x56\xbc\xc1\x8a\x9f\xec\x9e\x9a\x73\x34\x43\x34\x09\x53\x96\x89\x48\x75\x4d\xe6\x21\x8d\xb5\x94\xfc\x54\x56\x49\x2f\x25\x3d\xa1\xd1\xc8\xf5\x6f\x74\x0d\xd3\x3b\x22\x41\x24\x9e\xf2\x6a\x85\xf2\x99\x66\x4a\x80\x72\x2a\x96\xa3\x72\x46\x24\xcb\x0a\xea\x55\xa9\xf8\x45\x07\x50\xa2\x2b\x33\x3f\x8c\xca\x2b\x95\xaa\x83\x56\xd3\xc8\xb1\x83\xea\x77\x21\xb6\xba\x16\xe8\xc9\x0c\x23\x72\xa0\x6e\x27\x6f\x34\x6d\xa5\xed\xcf\x2c\xcf\x5f\x6f\x93\x31\xb0\xfe\xb5\x7f\xd8\x58\xd9\xd6\x56\x36\x57\x24\x8c\x98\x64\x1e\x57\x2b\xd1\xc4\xf6\xca\xf1\xbc\x5c\xfb\x94\xe0\x09\x6f\x9c\x68\x30\xd1\xe2\x8f\x15\x32\x3b\x56\xd5\x9a\x06\x60\x7e\xbc\xda\xd8\xd8\x4e\x5e\x69\x5a\xb5\x2a\x87\xbe\xa2\xbe\x16\xfd\x8b\xd1\x0d\xad\xc8\xfa\x98\x43\xf5\x3a\x8b\xca\xf3\x23\x2d\xc4\x6c\xa1\xeb\x8e\x57\x84\xf0\x41\x7d\xa7\xc9\xaa\xb7\xb5\x91\xe5\x86\x92\xa5\xe2\x8f\xc4\x99\x71\x1b\x04\xf5\xfe\x58\xb9\x24\x8a\x09\x0f\x65\x1d\xe1\x56\xfe\x54\x0b\x3f\x2a\x6d\x15\x13\x4c\xb6\xa9\xa4\xf7\xd5\x97\xd1\x24\xf0\x6f\x40\x21\xa7\x35\x65\x79\x39\x2d\x19\xb7\x73\xf5\xe3\x4b\x06\x0e\xe6\xe5\xd4\xa0\x91\x7d\x12\xd0\xef\xd4\xf8\xfd\x44\xfb\xcc\x05\xcd\x93\x3f\x15\x21\x53\x74\x51\x5c\x24\x29\x23\x86\x51\x24\xe8\xad\x88\xf4\xbc\xe5\x2c\xf2\xc7\xd5\x0a\xe6\xeb\x25\x5d\x9c\xea\xb0\x78\x93\x9b\x0b\x84\xda\xfe\xb8\xb8\x51\x2a\x58\x52\xd1\xc7\x67\x74\xab\x4c\x0d\xfc\x9c\xea\x29\x52\x38\x4a\xb5\x60\x25\x29\x6a\x47\x60\x89\x61\xd3\x4a\xee\xd9\x46\xc5\x19\x82\x47\xa3\x65\xe6\x11\xca\xe7\xd8\xe9\x35\x7b\x8d\xc6\x32\x53\x89\xc0\xac\xb2\xd0\xf3\x93\x02\xa1\x57\x67\x85\x65\xd4\x7a\x61\x27\x96\x22\x6e\x5a\x9b\x67\x3e\xa6\x08\x94\xd5\xf6\x4f\xe8\xee\x87\xc7\xe5\x35\x34\xe5\x31\xfd\xdf\xaa\xa2\xff\xa3\xf6\x5e\xae\xf6\x04\xc3\x25\x0d\xcb\x18\x45\xff\x36\x8a\x30\xf1\x3f\x30\x27\xb5\x1a\xd2\x55\x6c\xec\xfd\xc0\x9f\x1d\x29\x26\x36\xf8\x8b\xeb\x8a\x95\x1d\xdb\xed\x22\x6f\xfa\xc2\xd8\x30\x89\x65\x9c\x69\x5d\xab\x69\xd2\x3f\x95\x1d\x16\x4e\x25\x20\xa9\x49\x74\xe5\x8c\xbf\xb6\xe3\x60\xe1\x38\xd9\x69\xed\xac\xe4\x0f\xd6\xf1\xe5\x59\x49\x7b\xa8\x54\x2a\x88\xf4\x51\x53\x12\xb6\xd7\x1e\xf0\x5d\x45\x79\xa5\xfd\x5e\xe4\xf9\xe5\xc0\x56\xb5\x6d\x74\x7d\x1f\xb5\xea\x27\x20\x1a\xb6\x25\xb9\xce\x62\x16\xd3\xa6\x46\x3d\x50\x8a\x6e\x27\x94\xab\xf8\xe8\xe0\xea\x69\x25\x29\x64\x2f\xa1\xc8\xf3\x2e\xa1\xf8\xa6\xe4\x27\x17\x10\xf8\x66\x9d\xb2\xdc\xfe\xfd\x7c\xc7\x25\x42\xae\x4b\x07\x44\x17\x44\x30\xff\x67\x9d\xd4\xa7\xfc\xce\x98\x88\xaa\x95\xa4\xf8\xb0\xe4\x68\xa4\x20\x97\xf1\x78\x31\x3c\xd4\xf5\x87\x50\xa5\x1f\x68\x78\x33\x40\x25\x13\x83\x80\xcf\x18\xb7\x95\xab\x25\xe6\x74\x16\xdd\xc9\x55\x0d\xee\xfb\x97\x8e\xad\xd5\xb4\x95\x8d\x5c\xbc\x3f\x57\x52\x16\x02\xf0\xcd\x62\x77\x5a\xc9\xba\x5e\x26\x7f\x13\xe3\x23\xcf\x9a\x12\xc7\xfb\x38\xb8\xad\xbd\xfd\xe3\x23\x61\x48\x28\xce\x23\xe2\x58\xc6\x7c\x49\xdd\xbd\x40\x7a\x2e\x5c\xda\x8c\x89\x59\x0c\xec\x99\x3d\xd5\xb1\x0f\x97\x35\xca\xbc\x72\xe2\x68\xcb\x50\xfc\x8b\xac\xb4\xbd\x62\xef\x59\xe2\x5a\xd6\x84\xf3\xca\xc8\x0b\x8b\xa2\x01\xd4\x29\xf4\x76\x11\x6e\x69\xf7\x5f\x6d\xa2\xc4\xf6\x52\x3a\x89\xa4\xe7\x65\xbc\x9f\xa2\x86\xee\xdb\x13\x24\x42\x28\xed\xf7\x0c\xa9\x52\x09\xca\xb5\x2c\x21\xe5\x57\xce\xf6\xb8\xd9\x59\x86\x66\xb2\x4d\x7f\x0d\xd5\x44\x7b\x7e\x94\x6e\xea\x05\x1b\x05\xfc\xa5\x6b\xa0\xb2\x6b\x0b\xa5\xf5\xa7\x02\x27\x4f\x73\x76\x81\xf9\xad\x38\x81\xb1\xbd\x22\x4b\x4a\x7b\x63\xf5\x23\xd8\x93\x87\x60\xc7\x6b\x96\x77\x47\x91\x20\x72\x1c\x34\xdf\x8b\xd5\xd8\x8f\x86\x69\xaa\x55\x6d\x3f\xb0\x67\x56\x60\x6b\x74\x85\x8a\x76\x6e\x85\xf6\x10\x50\x03\xa5\x2a\x2a\x5e\x01\x50\xd3\xfe\xf8\x53\xf4\x45\x1a\xdb\x00\xaa\x58\x93\x68\x5f\x2f\xa4\xb1\x62\x2b\x57\xab\x9a\xfc\x4a\x71\x79\x49\x2d\xc5\x74\xa6\x5a\x2b\xb3\x79\x38\x59\x38\xa0\xab\x8a\x45\x7e\x1e\xd8\xd6\xa5\x62\xd6\x15\x37\xa6\x40\xb1\x3f\xd5\x2e\x1b\xc0\xe3\x4a\xb5\x75\x5c\x8b\xd0\x7c\xcf\xbd\xd3\x6e\xfc\xe0\x32\xd4\x6e\x26\xb6\xa7\x45\x13\x1b\xc7\x4f\x73\x42\xcd\x72\x03\xdb\x1a\xde\x89\x38\x8d\x96\x8a\xd3\x14\x77\x69\x65\x65\x71\x67\x52\x16\xf5\xf3\xee\x99\x44\x40\x15\x6d\x8b\xbf\x7a\xe2\x7d\xb9\xae\xbf\x9d\x35\x6c\x52\x11\xb8\x94\xb9\xbb\xac\x9b\xe7\xfd\x6f\xf5\xf2\x16\x05\xe2\x70\xcb\x82\x5c\xe3\x2d\xc0\xf7\x17\xc6\xe1\x32\xa5\x49\x35\x6e\x67\x6b\xd4\xb4\x49\x14\xcd\xb6\xc9\xaf\x53\xfc\x39\xd5\xfc\x5b\x4d\x17\x79\x3c\xfb\x4f\x84\xef\x87\x5d\x5d\xd7\x46\x73\x54\x58\xac\xb5\x18\xf8\xa3\xda\xcc\xdf\xd4\xd5\x07\x31\x4a\x58\xa2\x96\x1e\xbe\x98\x5d\xb2\x9e\x72\x6a\xec\xd3\x13\x46\x7a\xd0\x1e\x17\xf9\xb6\xea\x2a\x48\xd2\x91\x22\x47\xdd\xfb\x57\xc5\x27\x09\x8e\x74\x9d\xb0\x26\x52\xf4\x21\xc6\x8e\xd7\x92\x64\xc7\x17\xf5\xa5\xd0\xda\xcd\xf5\x48\xc1\xbf\x50\x58\xa5\xa8\x25\xd6\x88\x4a\xf4\xe7\x42\xa5\xe9\xab\xc7\x54\xc3\x4e\xd7\xf0\x42\x96\xda\xca\xca\xcf\x5b\x21\x29\xf4\x05\xeb\x38\xbf\x64\x05\x27\x26\x16\xd6\x12\x53\x08\x7b\x11\x3f\xc5\x17\xa7\x6d\x53\xa5\x95\xf8\x85\xf6\xcf\x7f\xe2\x9c\x07\x3a\x24\x74\x1d\x2f\x5a\x17\x57\xfe\xac\xbb\x8e\x67\x6b\x03\x6b\x6a\xbb\xa0\x78\x93\x21\x4a\xae\x5d\x93\xc8\xd4\x77\x2f\xc7\x37\x92\x68\x48\x5f\x50\x79\xf9\x39\xb9\xd0\x4d\x42\xe1\x03\x41\x2d\x59\xc9\x0b\xe6\xcf\x01\x8d\xd8\xff\xdf\x66\xd0\x81\xe5\x0d\x6c\x57\x0b\xec\x99\x7b\xf7\x92\x19\x54\x59\x3c\x8d\xbf\xfd\x67\x21\xeb\x5f\x15\xd1\x95\xea\xe6\x3f\x53\xc5\xaf\x9c\x2a\x16\x5d\xf6\x58\xe8\x06\x25\xf7\x47\x2e\xbb\x48\x24\x37\x26\xd9\x37\x72\x74\xca\x65\x31\x3c\x30\xfc\x17\xf6\x20\x5a\x4d\x0d\x44\x96\xc0\x2a\x0d\xd1\xae\x91\xed\x4a\xb1\x21\xc1\x57\xe4\x37\xad\xb6\xc0\x18\x5d\x14\xdd\xcc\xc9\x87\xa8\x2c\x76\xc6\xfe\xf1\x0f\xed\xb7\x5c\xef\x53\x75\xcf\x92\x58\xdc\x72\x75\xcb\x80\xe9\x52\xcc\xff\x0c\xbb\x40\x63\xc5\xfe\xac\x4b\xfb\x2e\x94\x00\x15\xba\xd3\x13\x17\x3d\x36\x52\x8d\x96\x22\x22\x00\x93\x26\x68\xb6\x1b\xda\x69\x48\x40\x9b\x07\x7c\x91\x25\x92\xbd\x8b\xf4\x45\xdc\xa5\x70\x55\xc2\x29\xd9\x55\x5b\xd9\xae\x1f\xe5\x67\x2a\x2f\xb4\x62\xb9\x88\x27\xc1\x6d\xd6\x6a\x4a\x19\xed\xf7\xe5\x62\xb9\xdb\x8b\xc3\x14\x59\x79\xcf\x2e\x42\x3f\x1d\x62\x5a\xcd\x29\xb6\x38\xc2\xaa\x36\xff\x7f\x4c\x97\x64\x6f\x87\x2d\xc7\x91\x3a\x71\x49\xac\xae\x0d\x7d\xcf\x96\x96\x68\x72\x51\x6c\xed\xe1\x71\xc1\x90\xab\x66\x68\xd2\x27\x94\x4d\x81\x7c\x35\xdb\xd1\xe2\x48\x46\x2a\x5e\xa5\x2b\xde\x53\x91\x6d\x9a\x14\xbb\x2a\xdc\xf8\x28\x90\x24\x1d\x48\x8c\x5f\x69\xf2\x40\x6d\xd9\x68\xd5\x8a\x6f\xcd\xa3\xc9\xca\x76\xfa\xa5\x34\xca\x32\xaf\x7d\x67\x38\x58\x51\x0c\x04\xe8\x33\x5d\x50\x2e\xee\xd3\xad\x40\x15\x38\x31\x67\xea\xd2\xc8\x98\x68\x8d\x3d\x3f\xb0\x65\x90\xd7\x1e\x22\x18\xa0\xa1\xbe\xe3\xd3\xd0\xb7\x43\xdc\xe9\x33\x05\x62\xa7\x2c\x0f\x35\x2a\x94\x51\x4e\x62\x00\x60\x2c\x41\x31\xa6\x5b\xe5\xd9\xb7\x11\x2a\x9c\xb8\x63\x99\xa6\x09\x5e\xa8\x88\x5b\x80\xcb\xff\x2d\xcd\xd2\xff\xf3\x20\x3f\xc9\x6b\x81\x2b\x74\x29\xf0\x63\xc1\x97\x89\x15\x4e\x1e\xff\x5b\x0d\x63\x65\xc6\x5f\x4b\x87\x19\xf2\xe4\x53\x2f\x18\xce\x34\xf1\xaa\x42\xd7\x0d\x6b\x35\x6d\xc5\xf3\x3d\x3c\x16\x91\x7c\xa5\x1b\x88\x93\xa6\xc8\x8e\x2c\x46\xaf\xad\x69\x2b\xbf\xaf\x68\x6b\xea\x9a\x60\x25\xbe\xb1\xb8\x7c\xb5\xfa\x7c\x3f\x92\x87\x6c\xec\x31\x6f\x4b\x56\xab\x5a\xc7\x1e\x5b\x83\x3b\x2d\x8c\xe6\x33\x67\x88\xca\x42\xb5\xa4\x81\x18\x57\x71\x0b\x61\x0c\x93\xa7\x8a\xb8\x32\xb9\x2c\x2f\x4c\x4e\x3a\x4a\xf7\x26\xaf\x16\x4c\x27\x8b\x89\x92\x20\x5e\x6e\xac\x1e\x95\xa0\xb1\xb8\x1c\x58\xa3\xcb\x2e\x45\xfb\x5d\x3b\xd2\xe8\xde\x66\x18\x9d\xea\x8d\xed\x0e\xfc\x69\x3c\x42\x38\xcc\x82\x57\xa8\x18\xf1\xe2\xa1\xb9\xdf\x61\xdc\x54\x79\x31\x46\x22\x7e\xac\x69\x0b\xd8\xaf\xe8\x0b\xb0\x5f\x56\xd1\x3c\x3d\x67\x3f\xc8\x30\xfb\xd7\xaf\x5f\xcb\xae\xef\x8d\x43\xd7\xb6\x67\xab\xdb\xda\xc4\x1a\x5c\x6a\x91\x4f\xfb\x51\x35\x71\x87\x34\x9e\x22\x10\x96\x05\x61\x97\x4d\xc0\x80\x2e\x35\xf9\x97\xef\x13\x88\xd7\x3a\xc5\x71\x86\xcc\x2e\x81\xc0\x1e\xce\x6f\x33\x0b\xd7\x0d\x5c\x9a\x8f\xec\xa1\xdc\x55\xbd\x68\x63\x41\x6a\xd9\x9a\xae\x75\x8e\x61\xff\x9f\xa9\x15\xd9\x81\x63\xb9\xeb\x73\xa7\x3a\xf0\x03\xbb\x1a\x22\x80\xd2\x26\xba\x8d\x7a\x21\x3c\x7d\x56\xe0\xb3\xf7\x53\x2f\x2c\x99\x05\x54\x70\xe0\x5d\xd3\x0b\x0b\xe2\x8d\xd9\x61\x15\x81\x94\x42\xc9\xfd\xda\x0b\x4b\x26\x20\x29\xd2\x24\x9b\x2e\xe2\x55\xed\x0a\xae\x44\xd3\x66\xf4\xb0\x1a\x03\xac\xa4\xb7\x74\x24\x4b\xbc\xfa\x22\x83\x4b\xcf\x4d\xce\xea\x3e\x81\x4a\xa5\x2a\x2e\x94\xad\x62\xb4\x39\xc5\x0b\xa9\x3d\xf3\xe9\x42\xea\xa2\x3b\xcd\x97\x34\x6e\x20\x54\x13\x7b\x8a\x5e\x25\x45\x70\xd2\x97\x82\xc7\xa1\x06\xa4\xe1\x36\x11\xfa\x8f\x37\x1b\x1b\x32\xe2\x2c\x6f\xf7\xde\xd6\x56\xac\xf3\xd0\x77\xe7\x91\x2d\x83\x26\x91\x3f\xdb\xd6\x56\xde\x6c\xfc\xdf\xf2\x85\x6b\x8f\xa2\xf4\x9b\xf8\x0e\xf0\x6d\x6d\x7d\xf3\x55\xea\x65\x07\x81\xd7\x37\x5f\x9d\xc5\xc7\x72\xe2\x8b\xc1\xe3\x56\xa9\xd7\x83\x6f\x53\x4f\x2a\xe2\x8e\xf0\xf2\xd6\x6a\x52\x52\xdc\x95\x1e\x97\x53\x5a\x1d\xd8\xae\x15\x39\xd7\x71\xab\xf1\x62\xf1\x6d\x6d\x65\x73\x23\x69\x66\x7c\xc9\xf8\xb6\xb6\x32\xb0\xbd\xc8\x0e\x94\xc3\x42\x53\x79\x88\xe2\x21\xd7\xa7\x37\x7a\x51\x33\xdf\x9c\xa5\x0e\xf3\xd0\x71\x1d\xbc\x12\x3a\x3e\xa6\x83\x8a\xa1\x92\xba\xd2\x9e\xd0\x93\x8f\xaf\x78\x5b\xb9\x6b\xee\xcb\xab\xc9\x90\x91\x39\x85\xb3\x5d\x6c\x0a\x25\xf6\x9a\xd0\x53\x68\x5b\xe1\x61\x1a\x79\x74\x25\x35\x0b\x27\x76\x03\xd5\x0d\x8f\x69\xb5\x0d\x86\xcd\xca\xfe\x71\x7f\x57\xd5\xd9\x68\x77\x50\xa0\x4c\xcc\xd0\xff\xfc\xa7\xa6\x3e\xc7\xb3\xd7\x0a\x5d\x54\xfd\x5d\xdc\x66\xbd\x02\xb3\x96\xb6\xbe\x99\x9a\xb5\x62\x85\x9d\x33\x5c\x31\xf2\x23\x5b\x94\x9a\x9d\x33\xf3\x96\x32\x33\x17\xd8\x35\xea\x7d\xda\x3f\x65\xdd\x64\x2d\xdb\xb8\x62\xba\x08\x3c\x3f\x3a\x62\x1a\x91\x6b\xe4\x3a\x6d\xc5\xb2\x95\x83\x07\xc5\x03\x44\xe5\x27\x96\xd8\xe2\x52\x93\x73\xd0\x24\x8a\x66\x40\xeb\xac\xa3\x9d\xbc\x9a\xa5\x5d\x1a\xc5\x8f\x4f\xce\xdb\x28\xc8\x64\xcf\x7e\xd7\x76\x52\x0a\x06\x41\x6a\x0f\x0a\xe4\xe3\xa7\x9d\xaa\x0a\xf2\x49\x16\xdd\xd6\xca\x99\xe6\x24\xc3\xf4\x34\x5a\x09\xbf\x10\x35\x20\x7f\x0a\x81\xec\x6c\x0e\x41\x6e\x5b\x71\xec\x98\xee\x8c\xfc\x60\x2a\x4c\x99\xda\x59\xe9\xac\xa4\xf9\x5e\x7f\x7e\x3e\x75\xa2\xda\x43\xd9\xbe\xb6\x3d\x0a\x84\xe0\x88\xb8\xe4\xe5\xe3\xcb\x47\xa5\x51\x3b\xf1\x0c\xa0\x9a\x52\xd6\x3c\xf2\x1b\xfe\x60\x1e\x66\x5f\x72\x6b\xe6\x44\x96\xeb\xdc\xe3\xfe\xbb\xd1\xe8\xac\xa4\x42\x84\x33\xdb\x75\xf1\x56\xfc\xda\x59\x09\x5d\xb2\xf4\x77\xdc\xe3\x53\x7b\x88\x69\xa5\x7e\xf3\x3d\x3e\xb1\xbc\xb1\x5d\x7b\xc0\xf6\x52\xd4\x8c\x5e\x95\x57\xe2\xc3\xb7\xab\x8f\xb9\x16\xf9\xd3\x99\x6b\x47\xd0\x1e\x11\x30\x15\xd2\x91\xac\x30\xa5\xda\x90\xda\x1e\x58\x7e\xc0\x33\x91\x67\xf2\x2e\x7e\x71\x98\x5b\x96\x6c\x38\xb6\x3b\xac\xb8\xd6\xb9\xed\x9e\x95\xf4\xdc\x61\xb4\xb3\xd2\x71\x5c\x85\xf6\xa8\x36\xad\xfa\x2c\x85\xc1\x40\xaa\x9d\x95\xe2\x4d\x3f\xa9\x36\x92\x1a\xae\x9d\x95\x3c\x30\x85\xdc\xf4\xc7\x27\x09\x15\x9f\x0d\x7e\x09\xa1\x06\xf3\x20\xb0\xbd\x68\xbd\xb8\x31\xbf\x94\x60\xfb\x71\x15\x8b\x09\xf6\x10\xeb\x8a\x7f\xfc\x43\xdb\x51\x8c\x9f\x6b\x2b\x70\x2c\x2f\xaa\x9d\x95\xc2\xf9\x79\xe4\x44\xae\xfd\xea\xac\x44\x13\x7e\xed\xac\x44\x71\xd2\x92\xb2\x43\xf4\x41\x68\x28\x79\x48\xf0\xf1\xd3\x83\xaa\x3d\x1e\x77\x14\xb3\xe9\x93\xd2\x98\x9d\xa1\x73\x5d\x84\x46\x4c\xce\xaa\xf8\x68\xda\x0e\xd9\x89\xea\xab\x78\x74\x43\x14\xc6\x34\x39\xb5\xb8\xc1\xb3\xc0\x99\x5a\xc1\x5d\xf6\x73\xd2\x4b\x99\xc7\x61\x98\xc3\x90\xde\x04\x4b\x96\xd0\xba\xc0\xa7\xf9\x83\xf5\x69\xb4\xee\x66\x0b\x89\x05\x9f\x61\xed\xe1\xb7\xdf\x84\x2e\x7f\x4c\x43\xf8\x1e\x77\x9d\xc1\xe5\x33\xca\x43\x2d\xf3\x29\x8d\x60\x27\x67\xba\x3b\xc3\x5a\x96\x57\xc0\x9b\x27\x9a\x49\x46\xc9\xf0\x49\xed\xac\xd4\xf1\xc7\x9a\xe3\x9d\x95\x3e\xed\x54\xb3\x28\xd3\xc4\x17\x56\x7a\xea\xe5\x83\x74\x78\x80\x7d\x72\x46\x7b\x08\xba\xeb\xe1\xd5\xeb\xc7\xa2\x11\x4e\xdb\x94\x8f\x5a\x35\xc5\x16\xd5\xa1\x73\x1d\xd7\xb4\x53\x05\xed\x2b\x1e\x57\xd5\x23\xb2\x29\x89\x4c\xc5\x95\x85\x02\x47\x42\xa6\xe2\x69\xc9\xa4\x59\x89\x2d\x88\xfc\x36\x4b\x2c\x57\x21\x47\x8d\xce\xa4\x26\xe1\x3a\xb5\x01\xea\x70\xc9\x3a\xa8\xec\x2c\xc0\xbf\xc2\x0b\x2e\xe7\x17\x58\x8b\xe2\x82\x4b\x1a\x62\x85\x81\xc6\xe7\x02\xb4\xb4\x35\x50\xc6\x48\xe3\xd5\x95\x27\xd6\x8e\x72\x21\xba\xa7\x8c\xae\xdc\x0e\x84\x02\x03\x2c\x13\x76\x16\x81\x48\x34\x73\xf3\xfb\xbc\x05\xa3\xe4\xf7\x78\x57\x9c\xf0\xd0\xbe\x9a\x3b\x81\x3d\xd4\xe5\x28\x20\x17\xaa\xa0\x14\x9f\x49\x83\x26\x3b\x21\x9e\x87\x94\x74\x7b\x1e\x52\x46\x5d\x9f\x6e\x66\xbc\xa5\xaa\x60\xc7\xba\x46\x46\xf0\x32\x3d\x95\xf4\x57\x61\x47\x73\x6f\x90\xab\x8c\x68\xff\x24\x4a\xb9\xd7\x5e\x04\xc8\xad\x19\x46\x52\x8f\x7c\x28\x02\xa3\x20\x8f\x2d\xa5\x8f\x0e\x28\xd6\x69\x11\x97\x11\x35\x80\x6b\xb1\x34\x29\xa2\x8f\x6a\x71\xd5\xf5\xd0\x12\xc0\xd4\xd6\x82\x74\xd0\x5b\x56\x48\x4f\x0b\xf6\xf2\xa6\x36\x80\xaa\x67\x62\xc5\x6f\xac\x2f\x8e\xb8\x7c\x2c\x38\x24\x20\xc2\x26\xe5\x0c\x25\x56\xcb\x49\xcc\xa3\x4c\x1e\xf2\x6a\x19\x79\x76\x35\x7d\xc2\x1c\x1d\x34\x9d\x24\xdb\x1c\x8d\x72\x11\x98\xff\x0d\x81\x9c\x8e\x13\x46\x0b\xa1\xe1\x63\x06\xb6\x15\xd9\xd3\x27\xe1\x01\xa0\xa0\x0c\x18\x72\xcf\x96\x03\xa0\x82\xb2\xec\xda\x8a\xac\xe0\xd9\xd2\x04\xa6\x94\x7f\xa6\x5c\x0e\xfe\xc7\x63\x45\x0f\x7f\xd7\x40\xcf\xcb\xa2\x29\xaf\x56\x97\x8a\x78\x2c\x2e\x24\xac\x62\x18\x91\x4c\x41\x8a\xf4\xa4\x4b\xae\x6f\xad\xa6\x62\x27\x87\xce\x78\x52\x04\x54\x88\x1f\x46\x3c\x09\xf5\x58\x43\x50\x28\x45\x95\xc4\x75\x08\x98\xc2\x4a\x44\x1d\x71\xb8\x26\x5e\x43\xe3\x6a\xcc\xa0\xfc\x94\x23\x2f\xb4\x60\xb2\xb4\x26\x14\xbb\x26\xd7\xd2\x62\x25\x92\x5e\xcf\x84\x19\x5a\x6c\x0f\x04\xf7\xfd\x37\x25\x0c\xb3\xba\x6c\x1c\x26\x1f\xeb\x48\xf6\x19\xfd\x44\xa0\x83\x22\x1b\xd2\xd0\x71\xed\x5c\x00\x41\x24\x38\x39\x13\x59\x50\x94\x28\x41\x62\x3b\xa5\x4b\xa8\x2e\xc9\x4b\x9c\x8f\xd8\x72\xfc\xb1\xe8\x44\xca\x5b\x49\x99\x7b\x76\xe2\xeb\x6a\x35\x6d\x65\x45\xe9\x4e\x51\x64\x2c\xee\x97\x52\x88\x3e\xcb\x17\xf9\x84\x2f\x68\x52\xc2\xf4\x9b\x78\x06\xcf\x19\x96\x4b\xd9\x84\xe9\x7a\x69\x33\x39\x9d\xa5\xfc\x5b\x99\x84\x69\x42\x8c\x46\x2f\xa7\x44\x6a\xad\xe5\x97\xf0\xf6\x63\xca\x2a\x11\x41\xa1\x9d\x94\x8b\x52\xe8\x3b\x4f\xde\xa0\xd3\x2c\xa2\xb1\xf0\x62\x2b\xc5\xb8\xe8\x52\xba\xa0\x61\xce\x4a\x6a\x18\xe3\x69\xdf\x2e\x15\x98\xc4\x3d\x6c\xae\xe3\xd9\x45\xbe\x1d\xa9\x23\xcd\xf2\xa4\x26\x7c\xda\xcd\x4b\xb1\xfd\xd3\x3d\x93\x51\x81\xcd\x62\x41\x8c\xe7\x11\x6d\x4d\x3b\x2b\x69\x49\x2f\x1f\x7f\xb4\x9b\x31\xc6\xa2\x7e\x46\x3e\x1e\xa2\xd0\x1c\x4f\x8b\x7c\x8d\x36\x3f\xa6\x29\xba\x74\xa7\x5f\x18\xf0\x5b\x18\xeb\x43\x43\x49\xc4\x01\xf6\x69\x2a\x29\x22\x94\x32\x43\x65\x62\x1d\x72\xd2\x4a\xbb\xfd\xe7\x05\x11\x10\x51\x4b\x73\x1e\x45\x76\x10\x2e\x0a\x5f\x14\x55\x09\xf8\x1f\x7f\x45\xe8\x62\x71\xd4\x62\x27\x6d\x6e\x7d\xda\x11\x7f\xe3\xc8\x24\x8c\x6c\x18\x05\xe5\x0d\x5d\xdb\x5c\x7d\xdc\xa9\x4a\xb8\x8c\x9d\x96\x0d\x7f\xa4\x0c\xc5\x62\x89\xd2\x44\x94\x46\x89\x82\xa6\x82\x5f\x30\xf6\x12\xcd\xbf\x39\xed\x47\xa3\x65\x42\x46\x4f\x52\x54\xd3\x76\x16\xbc\x7f\xa1\xa4\xce\x43\xbb\x17\x4d\xec\xa0\x32\xb3\x83\xd0\xf7\xac\xc5\xa1\xa7\xdf\x53\x32\x9a\x0c\xca\x93\x71\x28\x02\x29\x66\x8a\x17\xf0\x4c\x16\x65\x31\x0b\x65\xa1\x62\x8e\x5a\x82\x46\x79\x10\x6d\x29\xb2\x09\x72\x15\x15\xcf\x51\xf0\x18\xb5\xbb\x0f\xe5\x14\x15\xff\x43\x34\xcd\x70\xda\x12\x82\x42\x2f\x3f\xa9\xbb\x5b\xd2\x41\xdf\xc2\xf8\x5d\x12\xda\x8b\x93\xbc\xa5\xac\xe6\xff\x99\x40\xd0\xcf\x07\x6d\xfe\x76\xd1\x18\xe5\x3c\xed\x93\xa1\x97\x1f\x89\xb9\xe4\xa3\x2a\xbf\x2c\x92\x92\x1a\xfc\xa2\x88\xca\x0f\xe6\xcc\xa0\x3e\xd3\x99\x94\xba\x92\xa4\xad\xa6\x95\x1f\xc4\x91\x13\x5d\xab\x54\x2a\x01\x26\x6c\x40\xba\xa2\x61\xb7\x13\xce\x2c\x0f\x93\x5c\xc0\x97\xc7\x4f\x0f\x04\x5b\x11\x19\xd7\xbe\xa3\x15\xff\xbb\x56\xf4\x76\x5b\xbe\x75\x86\x8f\x3b\x55\xc0\xf3\xe9\xcc\x23\x7f\x28\xd7\x8e\x22\x36\x07\x90\xa5\x78\x24\x43\xee\x1c\xf2\xa5\x89\xf8\x77\x0e\xe7\xfc\x68\x88\x6a\xa9\xd8\x1a\xae\x9c\x9e\xfb\xb7\x8b\x37\x16\x09\x80\x4c\xdc\x46\xcd\xd7\x2d\xb2\xa7\x64\x13\x77\xeb\xcb\x07\xe3\x32\xc1\x18\x72\xf4\x29\x12\x13\xf8\x37\xd9\x70\x05\x06\x53\x36\xd2\xe1\x09\x19\x98\xd9\x48\x07\x24\x04\xe2\x81\x3f\xb3\x5b\xf5\xa3\xe7\x33\x3d\xaf\x20\xe8\x77\xcb\x75\xac\xf0\xfb\xb9\x15\x3a\x83\x95\x54\x26\xdb\x38\x09\x35\xc2\xc9\xac\x9d\xe0\x26\x61\x11\x03\x4b\x2c\x4a\x65\xcb\x28\x77\x0f\x66\xda\x45\xdc\x72\xaa\xd2\x1c\x8f\x72\xc3\x38\xbe\xa7\x6c\x9e\x11\x8d\xf1\x47\x23\xf0\x6b\xbe\x5b\x58\x7c\xd9\xf6\x88\x52\x54\xe7\xc2\x26\xb5\x6d\x7b\x86\x67\xb1\xf1\x5c\x9a\x3d\xd4\xa8\x12\x0d\x4c\x16\x27\x8c\x6c\x2f\x72\xef\x70\x13\xdf\xc8\x07\x1f\x33\x58\x29\x22\x6f\x1f\xea\x0e\x51\x84\x40\xa9\x60\x53\x42\x5d\x9b\xda\x91\xa5\x04\x7a\xa4\x22\xc9\x6b\xee\xa9\x35\x9b\xa1\xe6\xc6\x11\x71\x68\x7c\x40\x39\x03\x06\x45\x6f\x67\x93\xf5\xa8\x3e\x72\xe0\xdf\x28\xc7\xed\xe9\xdd\xa5\xe7\xdf\x78\xea\x7e\xa0\x6a\x55\x3b\xea\xd5\x7b\xa9\x7d\x8b\x7d\xe0\x67\x6a\x32\x0e\x47\x80\x1e\x4a\xe4\x83\x89\xe3\x07\x4e\x44\x47\xad\x46\x7e\xa0\x95\x5d\x5b\x40\x82\x7f\x45\x45\x56\xd3\x7b\xb9\xf1\xdd\x1f\xf8\xe7\xcf\xd5\xd4\xce\x7b\xdc\x3b\x9a\xce\xd1\x0b\xe8\x30\xa9\xad\xe8\xbf\x28\xa7\xec\x31\x72\x86\x99\x4d\x43\xd8\x23\x4c\x2c\x9b\x3a\x7b\x96\x46\xaf\x98\x30\x31\xbc\x46\xe9\xa2\x64\x03\x32\xc7\x23\xb0\x15\x58\x7b\xbe\x85\xc9\x98\x48\x91\x71\xe2\xf4\xb6\x1f\x13\x30\x34\xd6\x34\xa5\xed\x09\x68\xa6\x0f\xc9\x87\x4a\xaa\x7f\x72\xd4\x94\x1c\xba\xb2\x55\x69\xd1\xfd\x23\x85\xe1\x4f\x65\x57\x13\xa0\x57\x8a\x67\xf6\xf6\x52\x13\x6b\x45\xb9\x98\xd4\x42\x45\x1b\xaf\xd3\xc7\x69\x10\x51\x0a\xb9\x44\xad\xb4\x6c\x98\xc8\x62\x2e\xc6\xa3\xb0\x4c\x16\x97\xc4\xf4\x84\x15\x9d\xb2\x9d\x73\x72\x8f\x2f\x54\xab\x39\x67\x2b\xa3\xb8\x6e\x6b\x24\xa7\x8f\x2a\x28\xe5\x1c\xae\x3d\x88\x4f\x71\xaf\xab\x9f\xb2\x9b\x84\x41\xdc\x28\xae\x14\xdb\xb6\x79\x5f\x71\x91\x4f\x38\xb4\xbd\x50\xe9\xcf\xa5\x7d\x57\x7b\x70\x86\x8a\xdd\x5d\xe0\x30\x06\xfe\x4d\x0c\xf0\x69\x47\x4e\x4a\xea\xf0\x62\x1a\x73\xca\xc4\x9c\x69\xc0\xa1\x33\x9b\xb9\x76\xc1\x87\x14\x70\xc6\xf1\x19\x88\x2a\xd6\x87\x56\x70\xa9\x12\xa9\x9a\x8d\x6e\xc4\xf3\x7a\xec\x14\xe1\x20\x3e\x2e\xf2\xc6\xab\x4a\xc8\x25\xe3\x4d\x3c\x15\x65\x43\xfd\x9a\x98\x63\x12\xc7\x03\x0c\xc5\xa3\x74\x29\x84\x23\x22\x7c\x0a\x54\x7b\x89\x76\xfe\x29\x8f\x82\x74\xdb\xf3\x8e\x02\xe8\xec\x1f\xb1\xdd\x0a\x2c\x62\x25\xaf\x75\xd2\x89\x5f\x66\x19\xbf\x78\x71\x91\x36\x29\xb6\x46\x31\x18\x3c\xae\x3b\xa3\x14\xb2\xbf\xeb\x46\xf2\x23\xdf\x77\x23\x67\xb6\x78\x81\x8e\xbe\xff\x5b\x6e\x3d\x17\xe5\xea\x8e\xe5\xfa\x63\x46\x0b\x83\x0b\x8b\xa6\xa0\x8a\x17\x23\xc5\x11\xdd\xfc\x1a\xa4\x5e\x98\x0f\xec\xd7\xae\x4c\xc6\xd0\xc5\x39\xa9\x8a\xeb\xca\x59\xf5\x39\x6f\x6f\xc1\x5e\xfc\x1c\xa0\x82\x44\x31\xeb\x16\x94\x4e\x20\xfe\xdd\x37\xcf\xc7\x1d\x79\xf1\x7a\x6f\x76\xf7\xfc\x13\xeb\xbd\xf9\x8e\x65\xf7\xd7\x0b\x2f\x7a\x5b\x5b\x71\x3c\xb0\xde\xd7\xcf\x5d\x7f\x70\xb9\xdc\x7e\xfa\x05\xb5\x2d\xd1\x8f\xcc\x6e\x7b\xc1\xfe\xcf\xef\xb7\x5f\x62\x7b\xbd\xb2\x8f\x2b\xb3\xce\x4b\x5e\xfe\xe2\xfd\xf5\x0b\xd6\x76\xf1\x99\xca\xfe\x0d\x96\x79\xcf\xd2\x2b\x8e\x7f\xc1\x89\x29\x51\x89\x3c\x04\xa6\x15\x64\x41\x09\xf1\xdc\x29\x88\xd9\xf2\xcb\x83\x09\x9d\x29\x11\x5e\x6d\xc1\x0d\x24\xc5\x67\x51\xf1\xf2\x10\xef\xda\x0e\x22\xf0\x1b\xa5\xf7\x74\x33\x71\x06\x13\xcd\x0a\x6c\x74\x35\xa0\x67\x96\x70\x97\xd0\xae\x4c\xe5\x47\xa3\xf7\xf1\xa1\x54\x3c\xed\x2d\x3c\xaa\xca\xc8\x71\x23\x3b\x28\x0b\x90\xfc\x09\xe0\xdf\xd2\x7e\x56\x72\x78\xf8\xc2\x77\xbc\xf2\x8a\xb6\x92\xdf\x62\xf8\x83\xdb\x09\x53\xa9\x61\x04\xb5\xff\x05\xab\xc4\xb4\x3c\xad\x6b\x0f\xc2\xe8\x57\xb3\x1c\xe1\x0d\x38\xcf\x2d\x23\x2f\x3a\x5e\x11\xfb\xe6\x71\xec\x54\x48\x69\xb2\x4b\xa3\x58\x48\x73\x43\x19\xc6\xeb\xf9\xf2\xe0\xa8\x78\xfd\xcf\x7f\x92\xfb\x9d\xc0\x83\x81\x98\x83\xc6\x97\x12\x56\xb8\x18\xd9\x93\x07\xea\x32\xf3\x2f\x5e\x68\x7e\x76\xd5\x22\xbd\x5e\x41\x6c\xa1\xac\x38\xa7\x81\x73\x1e\xd7\xae\xa3\x3d\x28\x17\x55\x3c\xe6\xb7\x5f\x0b\xbf\x4b\x01\xda\x96\x14\x52\xca\xa5\x96\x26\x52\x7e\x48\xd1\x82\xf5\xcb\x96\xac\x13\xca\xe0\x66\xee\xf3\xf5\x69\x86\x42\x0f\xe9\x7d\x13\x8f\x0b\x6b\x7f\x49\xfd\x63\xf4\x0d\x69\x76\xfa\xab\x86\x49\xcc\x99\xcf\x8e\x92\x08\x70\x2b\xc6\xd0\xa3\x76\x63\x79\x51\xa8\x45\xfe\xc2\x11\xcb\x95\xd9\x3e\xcb\xae\xd1\x09\xd3\x3a\xfb\x5e\x9c\x72\x98\x12\x9f\x9e\x23\x09\x8a\x56\xbb\x90\x56\xb5\x87\x1f\x58\x56\x13\xfd\x8f\xa8\x7e\x91\x4d\x6a\xa9\x05\xb5\x15\x5c\x5d\x85\xe9\xe8\xac\xc4\x40\xf9\x9d\x95\xb4\x1b\xc7\x75\xe3\xc4\x52\xda\x9d\x3f\xd7\x22\x7f\x5b\x7b\x90\x6f\x8e\x0f\x5b\x8f\x2b\x45\xa8\x63\x52\x15\x7d\x4c\x52\x55\x1d\x1f\xb6\xe2\x65\x03\x35\x55\x55\x51\xa9\xc7\xc7\xfc\xdb\xa2\xfd\x1c\x39\xb0\xa2\x15\x41\x7b\xfa\x69\x27\x6f\x2f\x53\x4b\x6a\x62\x7c\x1f\xab\x9f\x76\xaa\x99\xc5\x71\x8d\x38\x9f\x88\x9b\xf9\xf2\x98\x59\xfb\x7f\x6a\xd5\x71\x91\xec\x2a\xe6\x37\x06\x4c\x96\xd8\x44\x91\x98\xb1\x8f\xb1\x69\x40\x7f\x1f\x51\xed\xd6\x1e\xe0\x7f\x01\xf6\xf8\x69\x47\x31\xe0\x17\xca\xed\x5f\x24\x94\xf8\xf7\x6a\x6e\x7b\x83\xe7\x05\xd3\x80\x56\x08\x7e\x64\x34\x15\x03\xfb\x91\xe5\x82\xd9\x45\xad\xd9\x0c\xec\x8d\x79\x68\x53\x74\x5d\x89\xa7\x57\xb2\x8d\x7d\xc1\x58\x28\x1f\x9e\xd8\x05\x83\x33\x23\x7d\x2a\xc7\x36\x94\xb4\xcd\x56\x33\xbb\x59\x52\xee\x67\x76\x5d\xfe\x25\x67\x80\xb4\x45\xe7\x80\x34\xe5\xb8\x4f\x68\x0f\x7c\x6f\x58\x70\xe0\x47\x2b\x8e\xb2\x91\x8b\x56\x20\x5d\xcf\xef\xc8\xd0\xd4\x5d\x19\x2a\x49\x52\xa6\xea\xea\x52\x22\xf9\xcc\x2e\x0b\xc9\x42\x98\x0f\xed\xb9\x63\x3d\x1c\xa1\x9e\x3f\xd6\xa3\x2d\x3a\xda\x03\xff\x1e\xca\xca\xf9\x1e\xf9\x13\x7c\x8d\x42\x27\x1d\x1c\x93\x82\x5e\xfd\xc2\x63\x41\x5a\xee\x68\x90\x78\xf7\xcb\x38\xe8\xc9\xd3\x64\xda\xf3\x27\xca\xb4\xe5\x4e\x95\x69\xcf\x9d\x2c\x2b\x2a\xf0\x13\xcc\x48\x86\xf4\xaf\xe7\x45\xd4\x45\xcf\xb1\xa2\x98\x49\x7f\x8e\x13\x25\xf7\xd5\x16\x71\xdf\xaf\x3e\x82\xa6\x15\xf2\xda\x4e\x35\xab\xc9\x52\xb6\xa2\x8c\x95\xa6\xf6\x36\x8b\x0d\xdc\xe5\x0c\xee\x5f\x7a\xda\x32\x47\xc8\x1f\x3d\x96\x2d\xbb\x59\x38\x39\x6b\xda\xea\x6a\xca\x00\x56\xf6\xf5\xa4\xa9\x95\x3e\xe1\x25\x1c\xca\x7f\x97\xad\x3d\x4b\xed\xc5\xf8\x1b\x6d\x01\x5a\xb8\xad\xe7\x25\xbb\x84\xce\x16\x6d\x01\xda\x7e\x76\x2f\x90\xf8\x2d\x89\x96\xc9\xa4\x44\xbe\x34\x3a\xb9\x67\xbf\x6c\xd3\x10\x31\xd4\xbf\x6e\x51\xe4\x41\x3b\xf4\xe7\x91\xad\x6b\x7d\xca\x18\x96\x81\x87\x6f\xc1\xfa\xd0\x9f\xfe\xdc\xa2\x47\x5c\x52\x5c\xf3\xed\x5c\xdb\xfd\x81\xb2\xb6\x90\x8b\x4c\x67\xe1\x94\xbe\x1d\x0a\xe7\xe2\xc4\x89\x26\x98\xf5\x6c\x31\x8e\x0c\x60\x8a\x40\xea\xfd\x6a\x0b\xa2\xf2\xc9\xed\x2b\xc9\x3e\x20\xca\x82\x2e\x2e\x5c\xe9\x64\x96\x08\x52\x5b\xc0\x62\xa8\xd4\x5b\x15\x5a\xc4\x69\x63\x38\x91\xa8\xec\xe9\x1d\x35\xf9\xc4\x2a\x21\x51\xf2\x67\xc2\xbd\x45\x67\x89\x0b\x2f\xa0\x7b\x3a\x1e\x95\xc8\xef\xc2\x68\x53\x3c\xfd\xc9\x3c\xe0\xb5\x5a\x72\x5f\x70\x41\xd0\x28\xc7\x30\x02\x41\x4d\x4e\xa4\x8f\xc8\x8b\xfe\x3c\x12\x7e\x55\xed\x01\x6c\x84\x47\x2d\xe5\x8a\x21\x6f\xa7\xe7\x3f\x64\x7b\x6d\x66\x45\x93\xda\x59\x49\x09\x28\x9f\x95\x34\xfb\x16\xc4\x2f\x89\x42\x3d\x20\x99\x61\xa6\xc1\x42\x4f\xe1\x49\x6d\x85\x2d\x42\x95\x62\x86\xe5\x50\x12\x5b\x14\x22\xa3\x4f\x8b\xd0\xe4\x04\x85\x8e\x81\x67\xfb\x9b\x0e\x44\x65\x68\xb5\x93\x13\xc5\xc2\x89\x51\x61\xc4\x9f\x9a\x1c\x7f\x7a\x9b\xea\x2f\x9f\x7a\xf2\xd3\xc9\xaf\xdd\x36\xaa\x50\x4e\xce\x02\x02\xdb\x43\x8c\xef\x31\xad\x71\xc2\x58\x25\x26\xc0\xf1\xc9\xbd\xa7\x6e\xba\x50\xbb\x1c\xa8\x1b\xab\x30\x13\x9f\x92\xbf\x28\x96\xec\xa2\x1d\x57\x72\x79\x44\x13\xb9\x8f\x28\x40\xf4\xbb\x10\xe0\x24\x67\xa1\x8a\x30\x7b\xf6\x8c\xd2\x22\xd9\x43\x3c\x19\x4a\xa9\x23\x11\xa4\x30\x6f\x65\x41\xd6\xca\xc2\x9c\x95\x45\x19\x2b\x83\x8a\x5c\xaa\x10\xe9\xcf\xf1\x09\x13\x9b\x27\x69\x8d\x94\x44\xed\xb5\xe2\xd4\xed\x1f\x97\x4f\xb5\x9e\x4e\xd4\x5e\x5b\x98\xbd\xfd\xa3\xb6\x34\xce\x64\x78\x9c\xe1\xf7\xc8\xbf\xb4\xbd\xef\x13\x47\x49\xd4\x40\xf5\xa6\xbe\xc5\x15\xa7\xde\xbe\xa0\xce\xc7\x7c\xe5\x53\xeb\xf6\xbb\x35\xb6\x33\xd5\x8a\xb7\x71\x85\xe2\xf9\xe7\xaa\x1a\xb8\x96\x33\x0d\xbf\xd3\x8a\x8d\x5a\x5f\xb5\xaa\xb1\xe1\x50\x03\x5d\x0f\xec\x6e\xc5\xab\x57\x28\x21\x54\x4c\x26\x1b\x05\x7c\x63\xe7\xda\x56\xef\xa3\x91\xfc\xb0\x56\xd3\x56\xb4\x38\x17\x66\xaa\xbe\xfc\x36\xbc\x74\xae\xcb\x6c\xa6\xcb\x0c\x2f\x67\x6f\xbf\x87\x4e\xa9\x20\x49\x66\x0f\x4a\x9d\x5a\x4b\x21\x28\xd8\x40\x14\xc4\x99\x15\xb3\xb2\xbe\xe0\xb2\x02\xff\xfc\x42\x54\xe2\x9f\x5f\x54\x64\x56\xb5\xae\x15\x4d\x2a\x81\xe5\x0d\xfd\x69\x79\xb5\x12\xf9\x94\xff\xb3\xbc\xf5\x76\x55\x9c\x5c\x82\xa7\x77\x99\x1b\x14\xfd\xf3\x8b\x45\x69\x76\x87\x0e\xae\x23\x94\x33\x17\xa9\x85\xf1\x32\x6d\xf5\xec\xec\xec\xac\x3a\xd6\x57\xaa\x2b\xab\xea\xcb\xea\x1f\xff\x6f\xf5\xcf\xff\xfa\x3f\x55\x5d\x5b\x59\xc9\xde\x8f\x1f\x63\x87\x49\xc4\x0e\xa2\xbb\x46\xe0\x4f\x49\x63\x4e\x6c\x3b\x12\x84\xf4\x03\x5d\xb3\xa2\x28\x70\xce\xd1\x74\xb5\xc2\xe3\xc3\x4e\xea\xc6\x30\x50\x31\xa8\x96\x3e\xc6\x0a\x07\x8a\xef\x06\xf6\x48\xf4\x8f\x05\x81\x85\xca\x29\xf2\xc1\x78\xae\x84\xfe\xd4\xae\x0c\x2c\xd7\x4d\x12\x8e\xa2\x86\xee\x43\xb9\x50\x4f\x72\x8b\x23\xa2\xc4\x70\x0a\xee\x72\xeb\x9b\x8b\x51\x63\xd9\xca\x20\x0c\x0f\xe7\xae\xad\x22\x0d\xe6\x6e\x9a\xcd\xe3\xe6\x02\x7b\x60\xa9\x09\xb5\x5d\x02\x24\x5c\xe5\x07\x68\x44\x01\x8a\x8a\x7c\x73\x64\xdf\x46\x99\xdd\x93\xcf\x36\x8e\x10\x40\x9f\xd5\xde\xc2\xf3\x6a\xf6\x6a\x02\x5c\x77\x96\xf4\xc7\xda\x8b\xe1\xc4\xe2\x81\x26\x5b\x07\x40\x95\xb1\x1d\xed\x8b\xc1\xfd\x02\x5f\x13\x4c\xe9\xd4\xac\x4a\xa3\x95\xad\xaf\xf2\xdf\xe3\x59\x26\xe8\x25\x73\xc0\x03\x17\xa4\x60\x1f\x57\x17\xa5\xb0\x2d\x2c\x12\x83\x3f\x6a\x22\x4b\xbf\xd2\xad\x24\x9f\x31\x0c\x8a\x2b\xd7\xcc\x07\xd6\x3c\xb4\xe3\x65\x7f\xed\x68\xe2\xd0\xc5\x8b\xf6\xad\x35\x9d\xb9\xa0\xf1\x3c\x6d\x62\xcd\x66\xb6\x07\xa4\xb3\x3c\x05\x1d\x5a\xed\x21\x70\x3c\xed\x96\xb3\x87\xd2\xe8\x47\x85\x66\x79\x1a\x1d\x8a\xa2\xa4\xb7\x95\x0c\xab\xa9\x4d\x4f\x9f\x5a\x87\x21\x22\xe2\xff\xe3\x1f\x24\x20\xa9\x39\x1d\x5a\x18\xd8\x53\xff\xda\x0e\xb5\x79\xe0\x96\x57\xb5\x70\xe2\xa0\xc2\x84\xda\xe4\x5a\xbf\x1c\x3d\x5a\xff\xc7\xe4\xcc\xe5\x6a\xf9\xf7\xed\xb3\xb3\xf2\x1f\x2b\xff\x3c\x2b\xfd\xf9\xfb\x6a\xb9\xf2\x5f\xbf\xaf\x96\x7f\xdf\x16\xcf\x67\x67\xab\xab\xd5\xd5\x3f\x36\xd5\x5d\xd0\xbf\xa9\x57\x3d\x2a\x8d\x57\xcc\x7e\x65\x47\x6d\xcc\xf9\x69\xb2\x1f\x1f\x76\x42\xcd\xf1\x34\xde\xef\xe3\x16\x05\xb9\xf3\x46\x8b\x7c\xdc\xff\x0e\xef\xd7\xb5\xd0\x07\x61\x0f\x61\x7a\xd0\xc2\x68\x3e\x1a\xc5\x04\x23\xa3\xe7\xdc\x0a\x6d\x21\x55\xb1\xfa\x8a\xeb\x8b\x59\x40\x76\x3b\x86\x5e\xd3\x56\xaa\x30\x57\x24\x2a\x25\x9b\xfe\x10\x3b\x24\x3f\x17\xa7\xa0\xf7\x26\x96\x37\xb0\x0d\x7f\x78\x67\x58\x83\xcb\x71\xe0\xcf\xbd\x61\x39\x65\x92\x9d\x83\x5b\xb4\x40\xf1\xad\xfc\x5f\xe7\xe3\x75\x81\x63\x58\x91\x3f\x56\x74\x6d\xe5\x3c\xc6\xb6\xee\x4c\xad\xb1\x2d\x4f\xc3\x2b\x61\x13\xff\xda\x0e\x5c\xeb\xee\xa5\xd8\xb7\xb7\xad\x51\x64\x07\xcf\x54\x92\x54\x33\xa3\xab\x15\x94\x7d\xfc\x30\xa0\xe7\xe3\x78\x24\x25\x00\xed\x3c\x56\x6f\x63\x10\x17\x01\x14\xe4\xbb\x77\xa6\x63\x71\x97\x41\x0b\x2a\x2e\x2b\xb7\x0d\x4c\xc7\x15\xdf\x03\x37\x30\x76\x90\x0b\xae\x16\x50\xb6\x56\x7c\x54\xf8\xa9\x6f\x03\x6a\xb0\x5b\x42\x7f\x1e\x0c\x90\x8f\x6e\x26\x56\x64\x5f\xdb\x01\x5d\x6e\x17\xb8\xc2\xa6\x08\x43\x6d\xe2\xbb\xc3\x24\x73\x35\x54\x1c\x06\x03\xe0\x90\x71\xbc\x7b\x25\xf6\x87\xa8\xd7\x82\xe4\xff\x7b\xbb\x2e\x3a\x58\xd4\x7f\x79\x01\x0a\xcc\x2a\xb2\xdf\x45\x57\x1a\x88\x64\xdd\xf1\x84\x3b\xb6\x23\xd3\xc5\x05\x75\xe3\xae\x35\x2c\xaf\x28\x3c\xb9\xb2\x5a\x89\xa3\xc6\x64\xbb\xc5\x5f\x3e\xc6\x7a\x2f\x95\x7e\x1a\xeb\x58\x74\xc9\x30\xde\x08\xb3\x67\x1e\x9d\xf4\x0e\xdb\xdf\xf1\xd5\xf2\x17\x03\x2f\xbc\xef\x37\x2b\xf1\x0b\x2e\x71\xa1\x96\xc5\x79\x43\x2a\xc2\x58\x55\xd5\x33\x96\x49\xe7\xdd\x56\xe1\xe5\xbe\xa5\x78\xc8\xe5\xb5\x31\x3f\x7c\x41\x4f\x06\xf3\x82\x63\x26\x4b\x55\x93\xa2\xea\xea\x62\x65\x89\xc8\xfe\xad\x72\x86\x77\x1c\xcf\x5e\x62\x3b\x75\x1a\x4c\x69\x5b\x33\x70\x86\x0b\x4b\xc1\xc7\x5f\xb0\x87\xfa\xa5\xdb\xca\x9f\xda\x13\x9f\xba\x9e\x3a\x0a\xee\x72\xa1\xd2\x7c\x9c\xf4\xd9\xad\xd2\xaa\xbc\xc4\x82\xd2\xa1\x48\x5e\xf9\x81\x98\xa2\x20\x87\x90\x08\x59\x40\x2b\x7e\x22\xa1\x4c\xd2\x8b\x5c\x3c\x33\x75\x52\x03\x07\xca\x89\xec\xa9\x66\xb9\xce\xd8\xab\x9d\x95\x28\x2f\xb6\xb2\x13\x21\xb3\x40\x16\x87\x31\x0b\xd6\xc8\x76\x32\x7c\x93\x59\x2e\x9d\x89\xf7\xa9\x83\x25\xca\xea\x54\xb6\xa6\xdf\x9e\xa8\x29\xb7\xc8\xf7\xec\x3e\x90\xec\xd6\xbb\xd4\x7e\xae\x85\xbd\x17\xd8\x9f\xcb\xdc\x89\xa3\x5a\x21\xdd\xf2\x54\x76\x97\x06\x5e\x2a\x0a\xd3\x90\x14\xde\xc8\xd7\x42\x3b\xb8\xc6\x68\x6c\xf6\x00\xff\x82\x05\x3d\xb5\xaf\xd9\x86\x67\x57\x20\xb3\x1d\x59\xb8\xc6\x98\xcf\xb3\xb1\xa8\xf6\xa2\x75\xf8\xc2\x8c\xc8\xff\xb2\x5c\xae\x45\x29\x37\x50\x22\x7e\x55\x92\x56\x44\xf6\xdc\x1a\xfa\x21\x00\x15\x8c\x6a\x6e\xb9\x3c\xbd\x64\x1d\x0b\xc4\x0e\x6a\xca\x74\xda\x05\xa1\x3f\xf2\x81\x67\x1c\xc3\x05\x2b\xa3\x7f\x61\x2c\xd9\x16\xf7\xf2\x2f\x11\x4b\x8e\x2f\x6a\x7b\x79\x2c\x59\xf4\xfa\x17\xaf\x1c\xc6\xac\x25\xa1\xf0\x05\x78\x4a\xe1\xbf\xe4\x9c\xd4\x4b\x26\x4d\xda\xd1\xc0\x7d\x2f\x4a\x96\xd5\x16\x1d\x20\x12\x50\x99\xc5\x3d\x5a\x9b\x4a\x82\xed\xf8\xbc\xcc\xd9\x98\xc0\xf7\x93\xa3\x27\xc9\x29\x90\x91\x6b\xdf\xca\xb3\x21\xf0\x7b\x5b\xdb\x3c\x8b\xcf\x82\x0c\xa8\x09\x2f\xbe\xb7\xe1\x4c\x49\x0b\x88\x13\x70\xd1\x69\x92\xf5\xd7\xf2\x80\xfd\xc5\x3c\x8c\x9c\xd1\x1d\x97\xb5\x61\xa3\xd6\xc3\xc8\x0a\xa2\x95\xf4\x19\xfc\x9f\x4d\x23\x58\x78\x9e\xa6\xe8\xca\x89\xa9\x75\x7b\x42\xaf\xb7\x36\x36\x72\x47\x67\x0a\x88\x26\x9e\x50\xaf\xb7\x22\x7b\x1a\x66\xee\xaa\xc8\x1c\x68\x1f\xf9\x7e\x64\xc3\x8c\x3b\x9c\x0f\x22\x91\x2c\x83\x92\xd6\x7d\xd2\x76\xc2\x28\xf0\xbd\xf1\xa7\x07\xdc\x04\xbd\x53\x15\x8f\x4a\xe9\xdc\x92\x63\x4d\x2b\xe3\x52\x66\x4e\xd2\xa9\x55\x72\x17\xbe\xec\x2f\xae\x46\x76\xfc\xb1\x9f\x7e\x23\xd6\x27\xe5\x89\xa7\xd4\x56\x84\xc1\xc4\x71\x87\x81\xed\xe9\x0a\xc6\xbd\x24\x35\x2c\xb1\x2c\xca\xbd\x78\xb3\x6f\xcd\xb0\x83\xf1\x8b\x4a\xa5\x82\x81\x22\x24\x87\x70\xf4\xc3\x8f\xd9\x2c\x74\xe2\x82\x5b\xd1\x3e\xed\x77\xb4\x24\x34\x11\xc9\xde\x01\x7f\x33\x0c\x06\xb5\x87\x59\xe0\xe3\xa5\xa7\xb6\x77\x5d\xd9\x3f\x36\x3a\x2d\xfe\xfd\xf8\xb0\x83\x61\x10\xd0\x68\xce\x00\xaf\x40\xaf\x84\xd7\xe3\x95\xfc\x29\x59\x7f\xec\x9f\x95\x34\xcb\x85\x19\xcc\xbf\xf1\xb8\xeb\xcf\x87\x67\xa5\xea\xa7\x54\x63\x04\xef\x6b\xb5\x78\x41\xf8\x77\x6d\x47\xc8\x5b\xf5\x93\xb6\xad\x95\xd3\x54\xd3\x7e\x8f\x69\xa4\x6d\xcb\x5d\x98\x82\xa5\x3f\x3d\xc8\x4f\x8f\x3b\x69\xe9\xfe\x94\x89\x66\xa7\x0c\x3c\x39\xbb\x06\x52\x42\x54\x83\x21\xe1\x34\xf5\x2d\x2d\xe1\xd0\x16\xd2\x81\xef\xce\xa7\xde\x59\x49\x13\x42\x50\x7b\xd8\x88\x67\xd0\xec\x06\x27\xd4\xa7\xe5\xe4\x28\xb4\x1f\xe9\x09\xcc\xea\x23\x9e\x0a\xc6\xd1\x53\x12\x3e\x2e\xbf\x13\x70\x11\xa8\xa0\xf1\x63\x36\xd1\xf9\xd8\x4f\x4d\xf5\x0f\x12\x6e\xd1\xdc\x9b\x79\x22\xe1\xca\x0e\x3b\xbd\x5d\x8f\xf7\xea\x3f\x95\x1e\x4f\xad\x3d\x65\x47\x10\x92\x4a\xe8\xfa\x63\xcb\x4b\xdb\x2f\x39\x43\x62\x07\xe4\xf7\x93\x64\xb0\x9d\x2a\x3e\x6a\xeb\x9a\xa5\x85\xd6\xc8\xd6\x26\xfe\xd4\xc6\x18\xac\xe5\xba\xb4\xa7\x78\x68\x45\x56\xc1\xd5\x12\xf9\x9d\xed\x94\x57\x7b\x30\x99\x7b\x97\x21\x48\x7c\x4e\x9b\x94\xe9\x5b\xea\x32\xf9\xc7\xc2\x8b\x09\x76\xaa\x54\xf8\x53\xb1\xf1\x82\xdc\x99\x55\x37\x15\xd1\x55\x69\x65\x60\xeb\x14\xa9\x55\xaf\x4b\x4c\x0b\x89\xfa\x25\xde\xf3\x44\x57\x6a\x2c\xaa\xeb\x47\xd7\xea\x33\x2d\x4a\x80\xcf\x7d\xdf\x2d\x6c\x5a\x01\x48\xc1\x4e\xb8\xf8\x9b\x14\x69\xf5\xa3\xe7\x0f\xed\x6c\x33\x62\x36\xcc\xef\xa7\xc3\xef\x89\xa2\x5c\x60\x07\x2a\xba\x35\x0f\xb1\xfc\x59\xf7\x2c\x65\xd1\x2c\xfb\x53\x2f\x51\x88\xed\xd0\xf7\xa3\xd2\x76\xa9\xf4\xf8\xff\x05\x00\x00\xff\xff\x70\x1f\x56\xc4\x28\xef\x00\x00") +// FileIdentifierStaticJsContainersLogin17c1c6d2ChunkJsMap is "identifier/static/js/containers-login.17c1c6d2.chunk.js.map" +var FileIdentifierStaticJsContainersLogin17c1c6d2ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xfb\x5f\xdb\xca\xae\x38\xfa\xaf\x78\xe5\x7e\xef\x26\x1c\x4c\x02\xa5\x4f\x4a\xba\xee\x78\xe2\x84\x34\x09\x01\x02\xa5\x74\xb1\x6e\x8f\x49\x9c\xc4\xe0\xd8\xc1\x76\x78\x6e\xfe\xf7\xfb\x91\x34\x63\x8f\x1f\x81\xd0\x76\x9d\xbd\xf6\xb9\xbb\x3f\x94\xd8\xd6\xbc\x34\x92\x46\xd2\x68\x34\x0f\xa5\x6b\x3b\x08\x1d\xdf\x2b\x6d\x6f\xe9\xa5\xd0\x9f\x07\x03\x3b\x2c\x6d\xff\x51\xb2\x83\xc0\x0f\xc2\xaa\xe3\x0d\xed\xdb\xca\x45\x58\xd2\x4b\xd6\x20\x72\x7c\x2f\xac\x0e\xfc\xe9\xd4\xf7\xe8\xdd\xc0\x9f\xce\x7c\xcf\xf6\xa2\xb0\x7a\x64\xdf\x46\x2d\x6f\x36\x8f\xd2\xd0\xae\x3f\x76\x62\x60\x2f\xb2\x1c\xcf\x0e\xc2\x6a\x07\xde\xd2\xff\x0b\xbe\xf1\x89\xef\x87\xb6\x35\x18\xf8\x73\x2f\xca\x35\xc6\x5d\xc7\xf6\xa2\xba\x13\xce\x5c\xeb\x6e\xcf\x9a\xda\x39\x88\xfe\xc0\x9f\xd9\x61\xc7\x09\xa3\x45\x0d\xf8\x5e\x68\x7b\x8b\xbe\xe2\xff\xe1\x20\xb0\xed\x45\x1d\x54\x30\x33\xf5\x87\xb6\x1b\x56\x27\xb6\xeb\xfa\xf4\x66\x1e\x39\x6e\x98\x46\x84\xf2\x4a\xe9\x66\xc7\xb7\x86\x8e\x37\xce\xbd\x3f\xb4\xc3\x99\xef\x85\xce\xb5\xdd\x8f\x3b\xf1\xa7\x5e\xf2\xac\x29\x4d\x8f\x79\x78\xd8\x3b\xfc\xde\xe9\x35\x5b\x7b\xdf\xbf\xb0\x4e\xab\xce\x8e\xcc\xef\xdd\x56\xbf\xdf\xda\x6b\x1e\xf7\xcd\xc3\x3d\xd6\x35\x4b\xfa\x93\x60\xfb\xac\xdf\x3f\xe9\x1d\xd6\x33\x60\x0d\xd6\xea\x98\xc9\xcb\xdd\xa3\xa3\xfd\xef\x7b\xe6\xd1\x49\xef\xb0\xfd\x1d\x5f\xa5\x3f\x1d\xef\x99\x5f\xf7\x4d\x7e\x64\xd6\xbf\x1f\x9a\xfd\xfd\xde\x5e\xdf\xfc\xde\x3f\x62\x47\xc7\xfd\xe5\xe0\xa0\x97\x51\x60\x79\xa1\x6b\x21\x9e\x4a\x7a\x69\x68\x8f\x1c\xcf\xee\xda\x61\x68\x8d\x6d\x78\xe1\x0c\xe9\xad\x35\x77\x23\xf1\x1a\x2a\xbf\x8d\x6c\x6f\x68\x0f\x4d\xa0\x54\x78\x16\x7f\x07\xbe\x17\x46\xc1\x7c\x10\xe1\xd3\x34\x86\xbf\xb6\xdc\x39\x56\x17\xce\x67\x36\x7c\x9a\x7b\xd4\x12\xd4\x3e\xb0\x66\xd1\x3c\xb0\xfb\x91\x35\xb8\x3c\x0a\xac\x01\x14\x88\x26\x4e\x28\xeb\x4d\x9a\x75\xbc\x0b\x7b\x10\xb5\xbc\xc8\x2d\xe9\xa5\x59\xe0\xcf\x00\xc6\x16\x6d\x3b\xf4\x5a\x34\x5a\xb7\xc3\x41\xe0\xcc\xa8\x23\xbd\x73\x28\x07\x04\x11\x86\xce\xd8\x2b\xe9\xa5\x91\x1f\x4c\x2d\x65\x40\x81\x3d\xb0\x9d\x6b\x5b\x8e\x23\xba\x9b\xd9\xe2\x4f\x88\x5f\x43\x3b\xda\x05\x12\x4b\x40\xe5\xe3\x44\xfc\x0d\xe7\x83\x81\x1d\x22\x01\x86\x76\x00\xc4\x02\x88\x4b\xb8\x04\x40\x22\x2b\x82\xbf\xf6\xad\x3d\x98\x47\x71\x0d\x00\x64\x45\x83\x49\x49\x2f\x8d\xed\xa8\x2f\x80\x88\xd5\xa1\xab\xae\x7f\x53\xd2\x4b\x57\x73\x3b\xb8\x83\xe6\x4b\x7a\xe9\xc6\x89\x26\xc4\x86\x87\xf6\xd5\xdc\x0e\xe3\x42\x9e\x7d\x83\xb5\x8a\xd7\x30\xe2\x5b\xc7\x87\x4e\xcd\x7c\x7c\x9c\xd8\xd6\xd0\x0e\x42\xc4\xb0\xed\xd1\xd0\x80\xd8\x65\xf7\xe6\x48\x04\x56\x64\x95\xf4\xd2\x7e\xe0\x4f\x9d\x90\xb0\x13\xfa\xee\x35\xf6\x4a\x74\x74\x62\x79\x43\xd7\x66\x50\xb9\xc4\x59\x60\x47\xc1\x9d\x1c\x93\x18\x62\xc7\x1f\xfb\xa3\x51\x49\x2f\xc5\x12\x8a\xf0\x23\xa6\x70\xe0\x5a\x61\x28\x90\x33\x73\xad\x81\x3d\xf1\xdd\xa1\x1d\x24\x48\xfe\x62\xb9\xce\xd0\xa2\x7a\x3c\x39\xd7\x61\xba\x7e\x78\x3f\xb3\xc2\xf0\xc6\x0f\x86\x42\x20\x60\x05\x88\x81\x04\x20\xb0\xa6\x88\x87\x79\x88\xfd\x8f\xa2\x59\x49\x2f\xb9\xe2\xb3\x68\x2e\x6e\x86\x6a\x17\x62\x0a\xb0\xe8\xd2\x24\x84\x20\xd9\x92\xda\x13\x80\x01\xce\xc6\x77\xe4\x96\xc0\x1e\x3a\x81\x3d\x88\xbe\xcf\x03\x07\x1f\x47\x62\x16\xbf\x7b\xbe\x87\xd4\x2d\xff\x8a\x66\x93\x6a\xd4\x61\xb5\x46\x0d\x3f\x98\x22\x06\x80\xba\xc3\xbe\x33\xf6\xec\x61\x8b\xba\x2b\xe8\xf9\xd2\xbe\x83\x41\xb9\xb6\x37\x8e\x26\xc4\x67\x88\xaf\x63\x41\x82\xfb\x09\x5e\xac\xe1\xb5\xe5\x0d\xa8\xea\x06\x8d\x66\xe2\x84\x91\x8f\x44\x35\xf4\x3d\x22\xcc\x28\xb0\x0e\x04\xa1\x5d\x21\xe3\x47\x96\xe3\x86\x48\x59\xb7\x11\xb6\x8c\xf3\x84\xa8\x1b\xa0\xd4\x00\xac\xd8\x56\x20\xa8\x02\x91\x0b\xf2\xda\xf1\xe6\xb6\x40\xc0\x2c\xf0\xa7\xb3\x08\xc9\xd6\x1b\x26\xb4\xdc\x8f\x02\xc7\x1b\x23\xdd\xc1\x0f\x67\x74\xa7\x14\x45\x7e\x1e\xda\xb7\xbd\x11\xf6\x6e\x30\x9f\x12\x82\xfc\xc0\x19\x3b\xd0\x66\x64\x05\x63\x3b\x8a\x65\x7c\x49\x2f\xe1\xd2\x50\xd2\x4b\x87\xb6\x85\xb8\xd9\x9f\x07\x36\x97\x52\x5d\x95\xf0\x75\x67\xd8\x85\x95\x0d\x87\xe3\x11\xbd\xb9\xb4\x16\x48\x9a\x44\xae\x9f\x58\x31\x6d\xdb\x69\x39\xe4\x7b\xfd\xf9\xf9\xd4\xc1\x19\xbb\x16\x14\x32\x8f\xfc\x86\x3f\x40\xfe\x81\xdf\xdc\x9a\x39\x91\xe5\x3a\xf7\xc8\x59\x33\xdb\x75\xf9\xc4\x1e\x5c\x4a\x59\x88\x95\xf0\x89\xe5\x61\x7d\xc4\x4d\xf1\x23\x96\xf7\xa7\x33\xd7\x46\xa6\x9e\x5a\x01\x8d\xec\xe8\x6e\xe6\x8f\x03\x6b\x36\xb9\xc3\x6a\x02\xc7\x12\x03\x73\xb1\x93\x37\x81\x35\x23\xe9\x6a\xcc\xa3\x08\x71\x32\x74\x42\xeb\xdc\x45\x29\xeb\x7b\xdc\x75\xb0\x03\xdc\x09\x06\x73\xd7\x0a\xf6\x03\x7f\x1c\x90\xc8\x0a\xa9\x9f\xe7\x58\x4e\x79\x2f\xc4\xd8\x7c\x06\x44\x25\xf9\x77\x16\xe0\xa0\xeb\xb4\x28\xd0\xa4\x79\x44\x8f\xae\x98\x03\x10\x50\xfd\xe8\xce\xb5\x85\xa4\xc1\x5a\xc6\xb0\x98\x92\x28\x72\xc4\x9c\x45\x3e\x72\xa1\x3d\x8a\xe2\x71\x1e\xe1\x2b\xfa\xdd\xa1\x0f\xe1\xfc\x7c\x17\xe5\x56\xfc\xc1\xf0\xa3\xc8\x9f\x22\x66\xad\x01\xcd\xdb\x8d\x33\x44\x16\x88\xec\xdb\x88\xb9\x24\xe5\x85\x0a\x03\x9a\x48\x5c\xf4\xd0\x19\x4f\xa2\xf4\xb7\x56\x64\x4f\x51\x46\x0c\x81\x06\x44\xa3\xe2\x49\x82\xcf\x43\xdb\x1c\x8d\x68\x94\x03\x85\xaa\x44\xdd\x02\xd1\xfb\x54\x48\xbc\x17\xf5\x9e\x67\x66\xa3\x39\x8f\x22\x92\xc1\x12\x88\x5d\x5b\x91\x05\xa3\x8b\x7f\x84\xf3\xf3\x30\x0a\x14\x90\x23\xe2\xbf\x59\xe0\x4c\x2d\x64\x4f\x57\x8a\xd6\x9c\x3e\x16\x8b\x23\x92\xdc\x51\xb2\x0e\x7d\x17\xf3\x89\x62\xac\x55\x3f\x4a\xaf\xfd\x01\xf2\xa6\x18\x37\x4d\x83\x78\x48\xd0\x8d\x9a\x1d\xae\xb2\xb8\x44\x4c\xad\xd9\x8c\xc6\x8b\xcb\xb9\xa3\x54\x05\x7f\x2e\x3d\xff\xc6\x4b\x7d\x84\x8e\x5b\xe7\xb6\x9b\xd6\x3c\x10\x84\xd6\x6b\xf9\x44\x4b\xd2\xa5\x0d\x43\x45\xce\x39\xf7\x6f\x61\x60\xf0\x13\xe9\x59\x20\xf3\xd0\x99\xcd\x5c\x00\x4d\x84\xe8\xc8\x71\x23\xa4\x95\x0b\x1f\x89\xf1\x32\x26\xcf\x31\x62\x3e\x1e\xcd\xa0\x00\x73\x47\xbe\xef\x46\xce\x4c\x2e\x48\x42\xec\x44\x4e\xe4\xda\x8a\x68\x3f\x3e\x6c\xc5\xd8\x10\x14\x50\x77\x2c\xd7\x1f\xb3\x81\x44\xc1\xa1\x79\x70\x6c\xf6\x8f\xbe\x73\x50\xb7\xf6\x8e\xbe\xb3\x4e\xa7\x77\x12\x8b\x9c\xd6\x28\x99\x15\x29\xbb\x48\xe5\x45\x09\x96\x56\x40\x05\x43\xf9\xf3\x28\xa1\xaf\x99\x85\xd4\x6e\xdf\x92\xb0\x4b\xa9\xec\x58\x05\x75\xf4\xc4\x89\x26\x52\xa0\x87\xb6\x6b\x0f\x22\x7b\x28\xa4\xbf\x33\xfc\x1e\xf9\x97\xb6\xf7\x7d\xe2\x78\xc4\x1e\xb7\xdf\x49\xbc\x0d\x5c\xcb\x99\x86\xdf\xe5\x62\xe7\x9f\x5f\x94\xf4\xd2\xb1\xe3\x45\xef\x59\x10\x60\x7f\x07\xc1\xdd\x2c\xf2\x49\x61\x39\xb4\xbc\xa1\x0f\xeb\x14\x69\x78\x12\x64\x16\xf8\x91\x2f\xf4\xa8\xa9\x35\x43\xdd\xc1\x85\x79\xbf\x45\xbe\x8f\xa5\x7f\x10\xab\x2a\xcd\x80\x56\x3a\xe2\x1a\x4b\xf0\x70\xc7\xf1\xec\x94\xac\x42\x3d\x23\x41\x09\x2c\x68\x48\x18\x8e\x3b\x0c\x10\x57\x7e\x34\xc1\xe9\xa7\x19\xd9\x17\x6a\xe2\xbe\x35\xb3\x03\xf9\xe0\x52\xa1\x30\x18\x50\x4f\x85\xe6\x66\x49\x71\x16\xd1\xb4\x53\x0d\x3c\x7e\x8e\x0d\x11\x20\xae\x79\x18\xd1\x9a\x85\x3d\x05\x1e\x45\xdd\x09\xd1\x4e\x54\x1c\xab\x37\xc4\x12\x3e\x56\x31\x99\x7b\x97\x21\x6a\xa0\x7e\x84\x1d\x1a\xce\x07\x91\x20\x3e\xa1\x67\xcb\x5e\x8e\x5c\xfb\x36\xb1\x62\x92\x36\x93\x0e\x4d\xad\xdb\x13\x94\x7b\x7f\xc6\xbc\x18\x96\xb6\x4b\x77\x4d\xc6\x98\xee\xf7\x99\x69\x31\xdd\x64\x6c\xce\xf5\x35\xce\xf8\x35\xe7\xf9\xa7\x2b\x43\x7f\x6b\x30\x1e\x18\xf8\xf4\xca\xd0\x1d\xce\xf8\x16\x3d\xdd\x70\xfd\x3d\x67\xfc\x36\x2e\xf7\x96\xb3\xe6\x07\x7a\xb2\xb9\x7e\xca\x98\xad\x73\xc6\x5d\xae\x73\xc6\xf8\xbe\xde\x44\x20\xce\x78\xc4\x0f\xe0\xa1\x75\xa8\x9b\x8c\x7f\xee\xeb\x36\x63\x63\x43\xbf\x32\x98\xe9\x1a\x08\x7b\xa8\xc2\xf6\x10\x76\x1f\x61\x0f\x04\xac\x9f\xc0\x62\xbd\x57\xf0\x9b\xcf\x8c\x2e\xc2\xee\x21\x6c\x4f\xc0\xae\xd5\x63\xd8\x3d\xf8\xfc\x0a\x61\x37\x8d\x36\xc2\x76\x10\xb6\x2b\x60\xdf\x27\xb0\x1d\xf8\x7c\x83\x7d\xb8\xe6\x2d\x84\xfd\x8c\xb0\x6d\x01\x3b\x6d\xc4\xb0\x9f\xd5\xfe\x36\x11\x76\x17\x61\x5b\x02\xf6\x86\xb3\xf6\xb9\xde\x65\xac\xcb\xf5\x63\xc6\x42\x83\xeb\x5d\xd6\xbc\xe0\x88\xa5\x53\xc4\x58\x9f\xeb\x4d\xc6\x3d\xfc\xc2\xba\x0d\xbd\xc9\xea\x57\x86\xde\x66\x8d\x77\x06\x42\xf5\x4d\xbd\xc7\x5a\x77\x06\xd3\x5b\x8c\xbd\x31\x3a\x08\xd6\xd5\xa7\x06\xe3\x87\x7b\xe2\xe1\xd2\x60\xec\xd2\xe0\x7a\x9b\xb1\x2e\xe0\xd0\x9c\xf0\x03\x78\x68\x7f\xd6\x7b\x8c\xf5\x99\xde\x64\x57\xc6\x57\xa8\xa0\xdb\x16\xb3\x64\xb1\x89\xf1\xc6\xd0\xfb\x8c\xad\x19\xd0\x03\x76\xa0\xb7\x18\x7f\x47\x33\x3c\x36\xea\xf0\x67\x42\x9d\xea\x51\x3f\x1b\xf0\xff\x91\xa9\xb7\x99\x39\x82\xaa\xda\x00\xc3\x77\xa1\x85\x9e\xde\x66\xcd\x23\xac\x7f\x08\x50\xed\x01\xfc\xdf\x1d\x42\xbd\x05\xbf\x8f\xf4\x03\xc6\x2f\xf8\x09\x3c\xf8\x06\xc7\x1a\xe8\x7f\x44\x21\x4e\x13\x77\x01\x09\x9c\x71\xc2\xa4\x55\x50\x89\xc5\xd8\x31\x20\x9d\x6f\xf2\x2f\xf0\xca\x32\xf5\x16\x33\x27\x06\xd6\x64\x63\x3f\x5a\xfa\x80\xb1\x01\xcc\x09\x9b\x1a\x38\x80\xee\xa1\x7e\xaa\x8f\x39\x9f\x98\x41\x5d\xbf\xea\x32\xab\x07\x38\xe8\x63\x9d\x16\xd0\x09\xdf\x32\x70\xd0\xd0\x8b\x4e\x0f\x51\xca\x01\x35\x7b\x87\x7a\x9f\xb5\x9a\x08\xdd\x87\x17\xc3\x04\xac\x21\xc0\xda\x30\xff\x7d\x9c\x33\xa8\x2e\xc1\xab\xe0\x9c\x29\x47\xbc\x7a\x9c\xeb\x07\x38\xf3\x26\x63\x1b\xd4\xaf\x4d\xc3\x84\x92\xc7\x02\xff\xbb\x84\xff\xa6\x7e\xca\x4c\xb5\x43\xfb\x4a\x87\x7a\x30\xd0\xa9\x01\x68\xff\x86\x64\xb7\xcf\xf5\x13\x44\xd9\x80\x71\xb6\x9b\x74\xb7\x4d\xdd\x45\x04\xf7\x65\xbb\xc7\x48\x77\xb7\x34\xd3\xfd\x43\xbd\xcd\xea\x77\xd0\x50\xf3\x0b\x8c\x8e\x9d\xe0\x84\x50\xbf\x77\x37\x0c\xdd\x64\xcd\x4d\x83\x89\xd6\x4d\xb6\xeb\xe3\xab\x99\xc1\xf4\x2e\x33\x0f\xb1\xc6\x16\xd2\xeb\x9c\xc8\x76\x6c\x7c\x46\x74\x63\x57\xaf\xeb\xd8\x78\x0b\x29\x04\xc9\xb4\xad\xcf\x0d\xc6\x6e\x08\xa8\x09\x43\xdb\xe2\x6d\x44\x0a\xfc\xde\xd7\x43\x03\x6a\xd2\x7b\xcc\xbc\x25\xba\x6e\xd3\x98\xa1\x9e\x03\x26\xf8\xe6\x80\xf1\x11\x55\xd6\x62\x26\x11\x22\x8d\x06\x88\x94\x08\x48\x7e\x8b\x11\xe8\x21\xcd\xf7\x01\x5d\x47\x4d\x7c\x3d\x10\xd4\x7d\x00\x73\x75\x67\x30\xf3\x8d\xa1\x1f\x30\xd3\x44\xde\x82\x1e\xb7\xae\xa1\x6d\x36\xd8\x83\xff\xe7\x7c\x0d\x98\xc2\x74\xcd\xba\xda\x2d\xa0\x5b\xea\xd6\x10\x2a\x3a\xee\xc1\x6f\x73\x5f\xef\x32\x7e\x6d\x24\x35\x6d\xe1\x6c\x0d\x3a\xf0\x7f\xc8\xdf\xc3\x14\xb4\x26\xc0\xe0\x75\xf6\x0d\x4b\xef\x23\xe1\xe0\xa4\xf2\x51\x13\xfb\x84\xb4\x72\xf0\x19\x86\x14\x19\x6d\xac\xcb\xc5\x56\xf7\xb1\xc1\x83\x29\xe2\xdb\x31\x3c\xa8\xcd\xbc\x37\x1c\x03\x6b\xfa\x2a\x28\xba\xc7\xda\x01\x8d\xd9\xe7\x19\x3a\xf0\x0c\xbd\xc9\x9a\xf0\xa2\xc1\x98\x52\x08\xd0\x3e\x42\xee\xec\xd7\xf5\x2e\x73\x8c\x73\x04\xbf\x32\x32\xe5\x67\x50\x9e\x0f\x59\x4c\x41\xfc\xe8\x40\x37\xd9\xa8\x8d\x98\xfe\x22\x88\xa5\xcb\xc6\x06\xa2\xae\x3b\x50\xa9\x04\xea\xba\x20\xae\x37\x55\xba\xb8\x31\x18\xbb\x53\xe8\xe2\xcd\x5f\x40\x17\xe9\xe9\xdd\xfa\x2b\xa7\xf7\x8d\x51\xad\x63\xc5\x06\x48\xc6\x31\xbf\x35\x70\xb6\x4d\xbd\xc9\xaa\xc6\x8d\x01\xf2\x7e\xcd\xf0\xb1\x5c\x60\x10\x29\x5e\x40\x07\x3f\x18\xef\x70\xbd\xea\x74\x52\x1c\x7f\xc2\xde\x1a\x7d\xc7\xf8\x15\x84\xd1\xd7\x5f\xb5\xb9\xbb\x7b\x1e\x02\xf3\x7e\x21\x22\xe7\x17\xd8\x93\x2e\xca\xaf\x5e\x08\x92\xc4\x3c\xa7\x09\xbf\xe3\x28\xa5\x8f\x19\x3b\xc6\x25\xfe\x1e\x79\x7e\x82\x8b\xfc\x9c\x6f\x60\x5b\xd6\x26\xbe\xec\xd2\xd3\xe0\x96\x2b\x42\x78\x4f\x7e\xb1\x40\x3f\xe8\xeb\x1b\x26\x0f\x0d\x77\x37\x11\x48\x57\x06\xad\x84\x3c\x61\xd6\x19\x57\x06\x3f\x85\xc6\x43\xde\x4c\x4a\x58\x55\x1c\xd1\xf1\x58\x0a\x34\x93\x79\x75\xa0\x43\xbf\x7e\xcd\x13\x32\x7d\x67\x64\xe5\xdd\x8c\x6a\x09\x89\xcc\xa0\x7c\x93\xf1\x40\x69\x38\x52\x1b\x6e\xa3\x54\x1d\xc3\x98\xc6\xbc\x6f\xc2\x80\x2d\x97\xcb\x92\x2d\xc6\x27\xfc\x8d\x21\xb8\x17\x90\x40\x2a\x49\x53\x1f\xb0\xdd\x31\xd4\xd9\xfd\xd2\xce\x4a\xd4\x3d\x94\xa8\x5d\x55\xa2\xee\xa1\x44\xed\x92\x44\x6d\x1e\xbe\xa2\x1a\xa1\x63\x23\x24\x6e\xa0\x14\x0e\x34\x5a\xad\x4f\xa1\x55\xc7\xbc\xe0\x34\x4d\xc4\x07\x33\x9e\xc6\x45\x13\xfa\x05\xa4\xdc\xd0\x5b\x2c\x30\xdf\x43\x99\xb9\xf9\xa6\xa8\x0c\x92\xb7\x83\xc2\xe8\x03\xcd\xff\xad\x91\x62\x55\xce\x78\xd5\xb8\x33\x62\x26\xe3\x87\x02\x59\x56\x5a\xd4\xb7\x99\x59\x35\xfe\x5d\x44\xfd\x8d\x01\xe4\x30\xa6\x51\x41\x81\x3d\x5a\xed\x91\x93\xdf\xd5\x91\x9f\x8e\xf4\x1e\x6b\x46\x59\x81\x71\xf0\x17\xca\x8b\xc6\x07\xa8\xa2\xfd\xcd\x25\xa2\xbd\xc4\x3f\x5f\x5c\x28\xd4\x07\x94\x1c\xb6\x41\x11\xe4\xbb\xc4\xe2\xd8\x6d\x52\x26\x04\x77\xa3\xf0\xe0\xae\x01\x7c\xd6\xfc\xdc\x52\xc8\x12\xbb\x16\x19\x5d\xdd\x64\xb7\x0d\x4e\xf4\x7f\xa9\xaa\x28\xd7\x9c\x14\xb2\x39\xfe\x9d\xc1\x33\x54\xbc\x86\x15\x9f\x80\x64\x67\x5f\x0f\x61\x9e\x2e\x8c\x05\x2c\xda\xd2\x8f\x19\x67\x6b\x86\x7e\xcc\x2e\x1b\x27\x7d\xe4\x94\xeb\x65\xd6\x32\x73\x1f\xe9\xe5\x15\x69\x9a\x50\xf1\x39\x4c\x46\xa3\xe1\xd6\xb3\xa2\xac\xc5\xba\xf7\x24\x43\xc5\x88\xef\x0c\x29\x3d\x5a\x88\x5d\xe8\x55\x55\x99\xfa\x35\x49\xb7\x5d\x98\x4f\x78\x7d\x2c\x74\xe0\x26\xcc\x83\x29\x15\xdc\x2e\xb2\x72\x3d\x91\x1b\x51\x4e\x4f\xba\x68\xa2\xdc\xb8\x31\xae\x44\xe1\x8c\xbc\xaa\x12\x32\xd6\xb0\xe0\x01\xce\x24\x7b\x8f\x3c\xbe\xd6\xf0\xf8\xb8\x0e\x08\xb1\x81\x1f\xeb\xc7\x7a\x0b\x14\xaa\x0b\x6a\x62\x37\x91\x0f\x81\x61\x22\xd3\xf2\x3c\x03\xae\xe1\xd4\x32\x64\x06\x66\x82\x24\x3e\x21\x06\xee\xfa\xa0\xf8\x31\x0b\xba\xf3\x01\x67\x9e\x0d\x02\xfa\x72\x05\x22\x1c\x2c\x91\x26\xe3\x33\x8e\x1d\x6a\xd3\xb8\xba\xc8\x60\x28\x60\x66\xc6\x5b\xac\xe0\x94\x28\xa0\x7b\xc3\xe9\x53\x9b\x99\xef\x88\x9d\x67\x5c\xe5\xe7\x3b\x03\xd4\xd6\x84\x9f\xdf\xfd\x2d\xf8\xf9\x5f\xab\xba\x55\x77\x39\x91\xc6\xa5\x6a\x4d\xfd\x52\x96\xba\xdb\x3d\x99\xa2\xdd\x69\x5f\x88\xb5\xfa\x6f\xc1\x54\xaf\x0d\xe2\x2a\x5c\xbf\xd8\x8d\x41\xb5\xcb\x85\x68\x8a\xa4\xb7\x89\x6c\x75\x50\x45\x5e\xe2\x80\xed\x5b\xe3\x33\x94\xba\xe4\x9f\xf3\xd0\x5b\x0a\x13\x52\x11\xa1\x74\xc2\x3c\xd8\x34\xdb\x60\x7e\xd3\xc0\xc6\x80\x2e\x4e\xd3\xd3\x8d\xe2\x65\xd3\xfc\x82\x6b\x19\xdf\x7d\x8f\xaf\x7a\x1f\xb0\xf7\x27\x58\xc7\x2d\xcd\xeb\x57\xa0\x86\x7b\x63\x0a\xca\x98\x54\xba\x27\x46\x40\xf0\xa6\x02\x4e\x8b\xc1\x17\x58\x98\x3f\x18\x21\xcf\x63\x08\x17\xf8\xaa\x71\x4b\x5a\xc7\x1a\xd1\xd7\xb5\x81\x94\x70\x03\xa8\xe2\x91\x41\x2a\xc3\x01\xac\xb6\xe6\x61\x48\x8d\x44\x28\xd7\x8f\xee\x70\x5a\xef\x8c\xeb\x2c\xea\x80\x88\xf8\x8c\xc7\xdc\x60\xa2\xf2\xd6\x27\xe5\x20\xa5\xfe\xd4\x37\x8d\x29\x3c\x06\x7b\x0e\xf6\xe8\xab\xde\x63\xe1\x9e\xcb\x3f\x10\x61\xa1\xc5\x5a\x5f\x3c\x8d\x6d\x29\x1b\x51\x31\x61\x8e\x71\x4f\xec\xb8\x51\xd7\xa5\x8f\x82\xb5\x13\x59\x09\x78\xe1\xb7\xa6\xa4\x59\xb4\xf0\x48\x56\xb6\x01\x85\x08\x8d\x0a\x5f\x47\xe7\xac\xfe\x16\xfa\xd0\x36\xbb\x89\x94\x73\x71\xee\x3a\x57\xd0\x58\x3b\x50\xb4\xa0\x0e\xd8\xed\xed\x11\xc3\x9a\xc1\xaa\xef\x00\x93\xb4\x0f\xe1\x05\x1f\xbd\xc7\x56\x5a\x91\x99\x75\x19\x10\xd5\xf6\xa6\x75\x40\xae\x87\x1f\x0e\x66\x75\xa9\x31\x31\x10\x4f\xbc\x43\xbf\x8e\xe3\x5f\x3d\xc6\x77\xb1\xf4\x11\x4a\xbd\xb5\x3a\x52\x56\x54\x17\x3e\x13\x13\x68\x03\xa6\xbc\x81\xe0\x58\x37\x30\xe2\x29\x63\xd7\xc6\x9b\xba\x5a\x06\x35\x9f\x7b\xf8\x54\x67\x1d\x9c\xe5\x2e\xbc\x3f\x44\xc7\xcc\x2b\x03\x31\x71\x20\x6d\xef\x03\xc6\xde\x60\x0f\xaf\xea\x87\xca\x07\x18\x53\xf3\x16\x49\xb1\x35\x33\xd5\xda\xbb\xb0\x94\xa3\x5b\xa3\xc1\xd0\x3e\x34\x0f\x48\x3e\x9f\x32\xfe\x95\x90\xd0\xc1\x2a\x08\xfc\x22\x57\x98\xd9\xc8\x1b\x4d\xf8\xff\x94\x54\xf8\xaf\x7a\x8b\xb5\xbc\x06\xe9\x87\x28\x32\x63\x31\x68\x9e\x02\xc4\x5b\xb4\x5a\x2e\xea\xdf\xc4\xab\xb8\xef\x07\x28\xe7\xfa\x5f\xf0\xff\x13\x28\x1b\xd4\x71\xe0\x7b\xb9\x9e\xec\xc6\xd5\x75\x27\x28\x87\x5b\xa4\x8f\x80\x3e\x8d\x46\x84\x67\x78\x38\x71\x07\x3e\xd0\x24\xff\x42\xc4\x46\xc2\x58\x7c\x91\x58\xeb\xa1\x89\xa9\xa2\xab\xcb\x9a\xd5\xfa\x87\x7a\x8a\x19\x81\xfc\x3e\x18\xaf\xa9\x68\x40\xab\xc8\x0d\xd7\xdb\xfc\x76\x9f\x24\x6c\x17\xd7\xcd\x81\x5c\xce\x06\x80\x1b\x9b\xb1\xba\xee\x1b\x8c\x47\xfc\x03\x92\xf4\x01\xb2\xe8\x9a\x09\x2f\x19\x5a\xbd\x0c\x7d\x5d\x1b\x86\xdb\xc4\x2a\x71\xf5\xb9\xe7\xa7\xc0\x77\xa0\x4c\xf0\x2f\x44\xb0\xf0\xbb\xde\x44\xb7\x18\xbd\x00\xe1\x56\x47\xf7\x61\x8b\xa1\x7b\xe7\x0a\x2a\xaa\x83\x29\xc8\x07\x0c\xa8\x72\x82\xac\xd5\xda\x42\xea\xa2\xa1\x77\x5b\x30\xda\xd7\xc8\xa6\x9e\x31\xaf\x4b\x0c\xf5\xd0\xa7\xda\x63\xac\x1d\xd0\x14\xbf\xae\x03\xc8\x15\x16\xdd\xe2\x82\x24\x5f\x93\xf0\x6c\x93\x98\x9c\x1b\xac\xbd\x09\x1c\xa9\x10\x25\x58\xd8\x0e\xcf\x11\xa5\x8b\x05\x5f\x65\x88\xf2\x94\x7d\xde\x34\x05\x96\x7d\x6c\x89\x78\x0d\x97\xa7\x7e\xc4\xef\xb0\x9b\xc7\x31\x8e\x6e\xb8\xa7\xe0\xe8\x0d\x77\x00\x1d\x75\xfc\xc4\x19\x2e\x7e\x01\xa2\x00\x78\x9b\x1f\x33\xe4\xd4\x10\xdf\xa0\xc6\xcb\x2f\x0d\x82\x9a\x35\xe0\xdd\x16\xbe\x7b\x65\x00\xf2\xf8\x1b\xe3\x0a\x5d\x65\x27\x24\x6c\x7a\x3d\x9c\xab\x7d\x29\xdd\x8f\x19\x3b\x7d\x9f\xc8\x6e\x3e\xab\x63\xbd\xcc\xbe\x95\xe0\x6d\xd0\xe3\x90\x27\x39\xf5\x97\x33\x36\x70\x51\xb8\xf7\x68\x95\xec\xf5\x00\xcb\x5b\xc6\x7e\xb2\x64\xf0\xbd\x6c\x89\x73\xb5\xc0\x07\x03\xa8\xf9\x4d\xae\xda\x14\x90\xa9\x9f\x30\x13\xe7\x8e\x9b\xfa\x86\xc1\x58\xf7\x6d\x22\xbc\x9a\xc7\xb8\xd2\x20\x1d\x1c\xdf\x13\xf2\xe6\xb4\xe2\x5c\x02\x13\xf2\x0f\x5c\x54\x6e\x52\xe5\xdc\x44\x6d\x8d\x24\x38\xfa\x47\x6d\x94\x8e\xf8\x16\x38\x12\xa4\x02\xb4\xfe\xa6\x81\x5e\xc1\xb7\x0d\x9c\xa2\x0f\x54\xf5\x5a\x13\x24\x02\x18\x6e\xfc\x0d\xe9\x8a\x16\x74\x89\x9f\x7b\x26\x1a\xed\xd0\x7b\xf3\xba\x4e\x9e\x58\x9f\x33\x76\xc5\x85\x0f\x56\x1f\x30\x73\xcb\xcc\xf6\xc5\x17\xba\xda\x09\xe3\x9d\xb0\x29\x17\x6e\xbe\xbf\xfb\x5c\xa3\x97\x7c\xd9\x46\x37\xcd\x35\x74\xae\x9f\x52\xdb\xc0\x76\xe4\xaf\x42\x54\x9f\x92\x58\x12\x1e\x75\xd4\xd7\xe0\xf9\x96\x34\xe4\x3b\x62\x9f\x4d\x54\xdc\x8f\x5f\xa3\xbf\xf8\xb6\x81\x2a\x6c\x7b\xab\xae\x82\x8c\x71\xb6\x23\x31\x93\x3c\xd5\x08\x37\xb7\x68\x20\x00\xd2\xb9\x6b\x52\x33\xc7\x8c\xef\xd5\x65\xe3\xfc\xf0\xda\x24\xef\xc8\x6b\x83\xf1\x2f\xaf\x4c\xd4\xa8\x51\x8a\xf1\x6f\x3e\x7a\x6c\x8e\x47\x8b\xe6\x18\xcc\xe6\x34\x01\x5d\x1a\x1e\x2e\x4e\x4d\xdd\xe1\xc0\xae\x62\x9e\x4f\x99\x19\x99\x6f\x11\x1b\x27\x54\x02\xd7\x50\x05\x1d\x72\x1f\x00\x71\xf9\x21\x85\x84\xd0\xd0\xa7\x06\xeb\x7a\xe6\x37\x9c\x01\xb4\x17\xbe\xe2\x8c\x79\xa8\x6a\x74\xee\x15\xd6\xed\x5e\x1a\x7a\xbf\x7e\xd1\x40\x41\x7f\x65\xcc\x9b\xc8\xf5\xa3\xd8\xaf\x20\x94\x55\x92\x88\x42\x59\x1d\x83\x26\xcf\xd9\x48\xef\xf3\xb7\x66\x08\xb6\x35\xcc\x0f\xc9\x25\x92\xe7\xdd\x6f\xd8\x1e\xe2\xba\x75\x5d\x8f\x62\x1c\x34\x19\xff\x4c\xd2\xef\xca\xd0\x1d\x83\xd5\x41\x91\x6d\xce\xf9\x87\xdd\xa4\x4b\x55\x0e\x0a\xff\x2e\xf4\xa4\xb9\x4b\xf2\x14\x75\x9f\x5d\x60\xd7\x66\x8f\xde\xa0\x2b\x66\xf7\x02\xdd\xd3\x8e\xa1\x48\xdd\x5d\x14\x26\xcd\x57\x28\x60\x78\xc4\x03\x12\x6a\xef\x79\x56\x6d\x6d\x0a\x79\x76\x70\x61\x24\x63\x7b\x57\x67\xd2\xbe\xee\x33\xfe\xb5\x2d\x05\x22\x2a\x4b\xe4\xe8\x22\xdb\x1b\x75\xa6\x1e\xf3\x8d\x19\x4c\xec\xc0\xbe\xaa\xeb\x03\x36\x3c\x7e\x83\xab\xef\x49\x2c\x27\x07\x34\xd8\xb7\x38\xb0\x77\xe4\x40\xaa\xe3\x32\xc6\xef\x85\x08\xf4\x50\x04\x8e\xf1\xdd\xc4\x50\xc6\x5b\x07\xab\x95\xef\xd1\x9b\x86\xba\xc4\xf4\xe8\xa7\x79\x48\x0e\x29\x5c\x49\x80\xb6\xe2\xe9\x7a\x6b\xa2\x3d\xe1\x35\xa4\x4f\x0b\xfe\x80\x7c\xe0\x0c\x67\xf5\x08\x4d\x13\xf3\x1e\xbd\x50\x07\x7b\xc7\x7a\x97\x7d\xa1\x57\x2e\xf6\xea\xb4\x11\x36\x49\x57\x05\xc6\x75\x5b\xf7\x06\xd9\x94\xb8\xe1\x67\xec\x0b\x9e\xe5\x8c\x0f\xf7\xb1\x51\xd2\x3c\x40\xf2\x9e\x73\x5a\x28\x4e\x18\xff\x22\xca\x74\x19\xef\x08\x62\xed\xa2\x1f\x03\x38\x06\x28\xe1\x1b\x79\x13\x81\x31\x46\xa8\xaf\x9c\x40\x95\x47\x64\xd9\xe2\xfa\xd4\xed\x13\xdf\xb5\x98\xf9\xc1\x88\x8c\xc4\xfc\xb4\x93\x56\x0e\x68\xd8\x3d\xdc\x18\xc1\x4a\x8e\x99\x79\xee\x7e\x4e\x80\x5f\xb7\xe8\xbd\xc9\xf8\x57\x94\x50\x03\x30\xd5\x9b\xa1\x71\x04\x63\x9c\x82\xca\xde\xd2\xdf\x72\x3e\xda\x82\xb9\x3c\xb1\xc7\xa0\x31\x7c\xcd\xcd\x65\x47\x99\xcb\xa6\xab\x30\x07\x9a\xa3\x9d\x35\x65\x56\xdb\x7b\x01\x50\xc7\xde\x5a\x3c\xab\x3d\xd6\x1d\x21\xea\x3b\x63\xa3\x95\x2c\xff\x13\xe3\x50\x3f\x60\xfd\xf6\x78\x37\x41\xf7\x87\xdd\x34\xba\x7b\xcf\xa3\x66\x92\x1f\x6d\x27\x03\xb4\x85\xbb\x4c\xe4\xb6\xfc\xba\x87\x73\xb0\x27\x40\xfa\xc2\x41\xb0\x65\xb4\x10\xe4\x5c\x7d\x8f\xf5\xb7\xf5\xb1\x81\x2a\x01\xc7\x05\x08\x80\x46\x6a\xfd\x58\xb8\x87\x9d\x23\x25\x44\x7e\xe8\x32\x67\xf7\x00\x94\x80\x77\xcd\x5b\x9c\x9d\x39\x4e\xa2\x49\xce\xda\x06\xa0\xe0\x84\x38\xf4\x2b\xbc\x9f\x1a\xb4\x98\x7b\x48\xcb\xaf\x8d\x08\x35\x01\xc4\x2f\x9b\xf2\x57\x62\x5b\x0d\x3a\xf6\x1a\x18\x1b\xac\x63\xf3\xfd\x2e\x2a\x70\xc7\x40\x7d\x8d\x19\x6e\xe5\x1e\x2b\x0a\xd6\xdb\x9c\x82\x85\x62\x61\x96\xd2\x95\xae\x0c\xc6\xde\xe7\x15\xf8\x2a\x2e\xdf\x37\x19\x5d\xa9\xcf\x5a\xef\x70\x2f\xa3\x45\xb6\xb0\x8d\x7b\xa5\xb1\xfa\xd1\x63\xfc\xc8\x21\x95\x84\x44\xf7\x49\x66\x21\x33\x9f\x5c\xbd\xc0\x88\xce\x28\x19\xfd\xb4\xea\xd2\x67\x2d\xa1\x67\x07\xc2\x4a\x6b\x32\xf3\x6b\x23\xa5\x59\x1e\x30\x7e\x41\x3b\x8e\x27\xb4\x1f\x0a\x0d\x35\x3d\xb2\x9e\x85\x69\x4b\x6a\xc7\xb9\x2a\x8e\xf9\xde\x7d\x33\x25\x2e\x67\x75\x51\x5a\x6a\x7f\xe8\xf1\xed\xd9\x89\xc4\x7c\xf3\x42\x89\x79\x8c\x0a\x28\x37\x31\xf0\x40\xa8\x19\x37\xbc\x78\xad\x87\x25\xc1\x11\x9b\x11\xf0\xfb\xb6\x29\x37\x26\xf8\x24\x8b\xa5\x4b\x23\xaa\x17\xac\xa4\x73\x83\x99\xd7\xa2\x99\x57\xbb\x8b\x55\x8a\xeb\xd4\x4c\xf8\xd8\xe8\xa9\x6e\xc1\x8a\x90\x5f\xb2\x3f\x53\x43\x97\xf0\x24\x1b\xda\x30\x58\xeb\x56\xa8\x7d\xf3\x66\xb1\xda\x47\x8b\x8f\xd0\xf7\xee\x85\xbe\xf7\x3a\x33\xf8\x2e\x47\x66\x43\xa7\x17\xdf\x6c\xaa\xdd\xba\x03\xfe\xe7\x91\x28\xd8\xcf\xe8\x2e\x38\x1a\x5a\x33\x92\x2a\xf8\xf0\x5d\xaa\x8a\x57\xf8\x89\x7b\xc6\xbd\xb1\x50\x73\x49\x75\x73\x4b\xa8\x2c\x44\xd2\xa2\xb9\x36\xca\xff\x9c\x06\xd5\x66\xac\xbf\x49\xc6\xdf\xab\x16\xa1\x00\x9d\x87\x6d\xc6\xb7\x78\x91\xc2\xc5\x06\x17\xbb\x34\xa5\xa0\xd3\x5e\xee\x22\x99\xbc\x6b\x01\x43\x49\x75\x38\x6c\xfd\x35\xc3\xac\x1a\x9f\x19\x74\x6c\x98\xa6\x7f\x22\x78\x61\x54\x92\x60\x78\x65\x5c\x19\xcb\x99\xf6\x07\xec\xad\xb1\xc9\x5f\xe3\xde\x51\x2f\xaa\x93\xd8\x2d\x44\x9f\xa4\x7c\x5e\xf8\x56\xa1\xb5\xa0\x4d\xb4\xb6\xc6\x19\x5b\x93\xb4\x76\xc0\x5a\xd7\x0d\x81\x9e\x76\x06\x3d\x09\x42\xf9\x17\x44\x68\xb6\x52\x6e\xde\x8a\x3a\xe7\x9c\xf1\x5d\x51\xe5\x6b\x83\xf5\x6e\x8d\xf1\xae\x7e\xa0\xbf\xe2\xfc\xb6\xd9\x45\x44\x1e\x9e\x52\xa9\x16\x63\x4d\xec\x2a\x72\x50\x13\xed\xb9\x13\x7c\x31\xc4\x90\xa1\x5b\x03\x55\x6d\x92\xbb\xe4\xe2\xed\x99\xe8\x92\x68\xe4\x7e\x6f\xb5\xf5\xb6\x7e\x67\x70\x6b\x62\xbe\xc7\xce\x87\x46\xb5\x1d\x87\x13\x09\xae\xa0\x88\x1f\x8f\x62\x56\x5a\x7a\xc8\x19\xff\x2c\x4d\x85\x3b\x8e\x91\x39\x57\xb8\xdd\x84\x41\x39\x86\x30\x29\xee\x54\xb0\xb0\xce\xde\x9a\x9d\x8d\x96\x3e\x60\x5b\x0d\x74\x2c\x9d\xfb\xc9\xb2\xba\x2b\xd4\x10\x13\xd5\x90\x01\x49\xf1\x9b\xc6\xe7\x88\x93\x4e\x50\xdd\xd5\x4f\xd9\xbd\x39\x24\x3f\x30\xee\xdb\x0a\x5c\xfb\xe4\xe4\xe5\x64\xd4\xe2\x03\x79\x22\xde\x08\x07\x17\xb9\x75\xc8\xf5\x17\x91\x92\x77\xfa\x96\xd4\x4e\xfd\x15\x67\xbc\xca\xd1\x23\x7c\x47\x31\x19\xb0\xd6\xc7\x51\x22\x63\x92\xd9\x13\xd4\x03\xf8\xd7\x88\x7c\x71\xb4\x41\xbb\xef\x20\x27\x80\x54\x01\x4d\xc7\xa4\x75\xb7\x39\xa4\x21\x81\x68\x76\x51\x89\xee\xbf\x6d\x92\xd2\x81\xee\x39\x9a\x91\x77\x68\x4a\x7c\xd3\x39\xcc\x1d\xae\x1c\xd8\xc7\xb6\x4f\x6e\xac\x2a\xda\x4b\x17\x58\x42\x7c\xc2\xf0\x1c\xf2\x9a\xcf\x49\x95\xb8\xee\x00\xd0\xa1\xde\x67\x66\x23\x79\x85\x7a\x5f\x8f\x99\xdf\xb0\xa1\xf6\x15\x14\x26\x8f\x74\x6b\x8a\xc4\x62\xe1\xff\xa7\x01\x96\xbe\x37\xee\x3a\xe8\xda\x40\xa3\x16\x6b\x47\x24\x9c\xa2\x2e\x99\x38\xa7\x4e\x6e\x3b\x71\x8c\x90\xd8\xab\xde\xc0\x26\x07\xe8\xa8\xf2\x8d\x63\x09\xd5\x02\x7c\x6e\xe0\xdf\x86\x58\x45\x11\x69\x62\x3b\x7a\xde\xa6\x1d\x98\xba\xb2\x9b\x86\x60\x27\xa0\x08\x36\x5d\xa3\xa1\x6e\xb3\xa5\xf9\x64\xef\xbe\x13\x2f\x28\x31\x9f\x80\x90\x18\xb5\xe5\x66\x22\xe3\x6b\x75\xfd\x94\xb5\xce\x1d\x1c\x65\xfb\x1a\x66\x80\xef\x52\x45\x97\xcd\x0c\x6b\x9a\x8a\xb8\xa2\x6d\x56\xc4\x43\x87\xa8\xf2\x1d\xc6\xaa\x75\xc2\xb4\xb5\x8a\x1b\x25\x33\x21\x44\xec\x74\x85\x4d\xd4\x84\x7a\x22\x26\xc8\x06\xe5\xce\x64\xfc\xbc\x8a\x35\x1c\xe0\x06\xee\x96\x30\x56\xaf\x0c\x66\x7e\x13\x92\x28\xb3\x0a\x0e\xd4\x8d\xc5\x9e\xd7\xa2\x02\x36\x6b\x7f\x10\x9e\x0c\x2c\x75\x97\x0c\xa6\x8f\xcd\xec\x1f\xeb\x5d\xfe\x8e\xa3\xfe\xdf\x05\x9d\x9b\x8d\x8d\xeb\x46\x91\xc3\xed\xf8\x96\xc2\xc7\x70\xa3\x90\xcf\x94\x0d\xb9\xf7\x4d\xa2\xe8\x36\xd0\x20\x4c\x51\x13\xbf\x8a\x30\x15\x90\xc9\xa1\xc1\xcc\x83\x09\x2a\x1d\x5f\x5e\x23\x4a\x3e\xeb\x9c\xe1\xe6\x28\x79\x92\xd1\x01\xac\x78\xe3\x2f\x91\xd2\x0f\x68\xbf\xb7\xf7\x6e\x97\x5c\x85\x6f\x9b\x92\x0d\x5a\x8c\x8f\xde\x93\xb1\xa9\xb7\xd9\x17\x54\x85\x4e\x27\xc6\x7d\x27\xb1\x3f\xb7\x0c\xdc\x8e\xfd\x46\xdf\x22\xae\x18\x97\xdf\x90\xd3\x4f\xdf\x90\x71\xe9\x1a\xc2\xb8\xf4\x65\x50\x24\x79\xce\xc1\xa8\xdc\x52\x8c\xca\x6b\xfe\x12\x15\xa9\x49\x3e\x1f\xd6\x45\x74\x8d\x69\x4d\xbc\xc7\xfd\x93\xfe\x50\xb7\xd8\xad\x31\x6b\xe4\x9d\x96\xaf\x52\x4e\xcb\x4d\x8e\x43\x88\xbd\x96\x30\x00\xd0\x6e\x51\x57\xe3\x8c\xbc\x96\xa8\x4e\xd7\x31\xf2\xb2\x47\xa6\xe8\x1c\xad\x4c\xd4\xe0\xf9\x18\x8d\x16\xfe\xc6\x70\x3f\x67\x55\xea\xe3\xf7\xa8\x65\xbf\x17\x9a\xf5\x75\x43\xd1\xac\x2f\xea\x3f\xa1\x59\xf7\x58\x73\xcb\xcc\xfb\x7a\xe7\xc6\x84\x5f\xd5\xd3\x0e\xc8\xb7\x29\x07\xe4\x45\xfd\x32\xe7\x80\x4c\xf9\x1f\xd1\x23\x89\xa3\x23\x4d\x60\x6a\x10\x0e\xe4\xa6\x0a\xf9\x7d\x49\xa4\x5f\xee\xa2\x9f\x92\xa3\x9f\x12\xc5\xbc\xe9\x71\xd4\x64\xc4\x34\x48\xa7\xfb\x06\x6e\x49\x1e\xa3\xec\xa4\x95\xbc\xb7\x99\x02\x78\xd5\x88\xfd\xcc\x1e\xcf\x69\xbd\xd7\xf5\x9f\xd6\x7a\xb9\x29\x95\xde\x57\x46\x22\xa3\xa6\x19\x19\x15\xe2\x6e\x06\x09\xe2\x6e\x13\x84\x50\x73\x22\xb4\xab\x71\xf3\x39\x95\xf8\x18\x7d\xe6\xd7\x9c\x2c\x36\xb2\x23\x8e\x84\x24\x79\xa2\xf0\x8d\x09\x42\x00\x7d\x78\xbc\xda\x8a\x07\x10\x2c\x1c\xc0\x86\x32\x80\xb5\xcc\x00\xc6\x18\xfb\xca\xf7\x8b\x7d\x76\x02\x55\x7d\xf4\x38\xa0\x51\x9e\x6e\xa2\x73\xdf\xcd\xcb\xf1\x79\x5d\x6d\x82\xef\xf9\x5d\xc4\x51\x55\x48\xc1\x26\x08\xfa\xd6\xad\x01\x7a\x11\x6b\xa5\x9d\xa1\x6c\x6a\x4c\x9b\x62\x43\xed\x98\xb5\xaf\x33\x7e\x5b\x76\xea\xc4\xb2\x1d\x5d\xc6\x8b\xb4\xf9\xd7\x0d\x54\x41\xee\x93\x80\x1b\xda\x62\x62\x5d\x5a\x4b\x81\xe2\xcd\x2d\xa1\xe7\x45\x59\x62\x89\xcc\x18\xa9\x33\x63\x11\x52\xdf\x2b\x48\xf5\x4d\xd6\xf2\x8c\x05\x06\xca\xf1\x2d\x71\xd3\xfb\x06\xa0\xa1\x37\xc1\x99\x3d\xd9\x68\xd3\xfa\x4a\xd5\x6f\x18\x59\x65\x15\xdd\xab\xd1\xe7\xe5\xdd\xab\x0d\x32\x7d\x4f\x19\xdf\x4b\x9b\xbe\x53\x34\x0a\x3d\xe3\x82\xe7\xd5\xf5\xfe\xed\xae\xec\xdb\x81\x30\x29\x7a\x1b\x18\x04\x9c\xf3\xc7\x5f\x1a\xae\x58\xb3\xaf\x12\xef\x32\xba\x53\xef\xa5\x3b\x15\x97\x8e\xd3\xb5\x06\x8c\xe0\x5a\x94\xdf\x34\xf5\x17\x38\x57\x2f\x0d\x66\x7a\x75\x1a\x7c\xd5\xfc\x4b\x7c\xcb\xfe\x22\xdf\x72\x01\x2e\xba\x84\x8b\xad\xc5\xb8\xf0\x39\x68\xad\x02\x17\x27\x02\x17\x31\x16\xd8\xdd\x0f\x61\x61\x0a\xfc\xd1\xb8\x43\x47\x48\x3f\x40\xb1\x87\x7b\x2f\x6c\x62\xbc\x07\xbd\x0d\x14\xe0\x16\xe3\x81\xa8\xdc\x6d\x2c\x96\x15\x4f\xbb\xf3\x79\xf5\x39\x87\xc8\x29\xbb\x32\x36\xe1\xf3\xa9\x7d\x07\x62\xe7\x9b\xe2\xba\xe3\x9b\x22\xfa\x2f\xe3\x74\xeb\x0a\x37\xac\xd9\xa1\x0f\xe8\xd5\x33\x17\x78\xf5\x4c\xf2\xea\xb5\x54\xaf\x9e\x49\x5e\xbd\xf6\x68\x42\x91\x3a\x97\x18\x84\x7f\xe0\xa6\x16\x80\xa9\x58\x21\xda\xac\x15\x18\x74\x52\x82\x7c\x7c\x41\xfb\xaf\x77\xa9\xde\xd5\xe9\x35\x67\xfc\xcb\x75\x7d\x09\xa7\xea\xa5\x91\xf7\x1c\xa2\xd2\xbe\x9f\x74\xc0\x31\x09\x7e\x6c\x30\xf3\xeb\x66\xf7\x69\xb7\x23\x16\x2e\x68\xb9\xcb\x2e\x3f\x1f\x7c\x21\x51\x1a\xd6\xf5\x16\xbf\x6e\x6f\xd1\x16\x01\xd0\x27\xf3\x8d\xa8\x19\x2b\x92\x18\xea\x04\xfc\x60\xba\xd9\x6d\x0b\x5c\xe4\x6d\xd6\x8c\x8c\xb5\xd8\x41\xd5\x6c\x88\x58\x1c\xbd\xc7\x1a\x87\x33\xa5\xc8\xe8\x14\x23\x2e\x15\x9d\xf6\xa6\x93\x25\x78\x0f\x43\x6d\xc4\xd6\xb4\x8f\x4b\xa5\x88\xaa\x72\x53\x44\x58\x60\xaa\x8b\x58\x4b\xb4\x3a\x78\x22\xff\x23\x52\xe7\xc9\x59\x29\x9d\x20\x49\xa1\x0d\x21\x13\x1c\x74\xaf\xe6\xcb\xcd\xd3\x5b\x83\x71\xb9\x86\xdc\x8d\x13\x91\x16\xa9\x42\x18\x38\xca\x6f\x79\xf1\xce\xd1\xd4\xa8\x0a\xe9\x3f\x35\x98\x8d\x21\x5f\x07\xf6\x25\x48\x87\x43\xe2\x9b\xe6\x84\x02\x81\x3e\xeb\x5d\xb6\x5b\xe0\xad\xee\xa5\xbc\xd5\xf7\xfc\x1e\xa6\xe2\x8e\xdf\x19\x8c\xaa\xbf\x32\xf5\x36\xbf\xaf\x6f\xd5\xf5\x0d\xae\x8f\x39\x17\x21\x3e\x64\x97\x25\x51\xa4\x18\xaa\x96\xe8\xf1\xa0\x52\x9a\x7b\xf1\xe6\x76\x9f\x99\x87\x5b\xf8\x64\xbe\xa2\x50\x8d\x64\xe3\xfb\x40\x7a\x32\x5b\x37\xa8\xd3\xd8\x01\x9a\x4e\x9e\x5c\x48\x9f\x8f\x07\x41\x49\x67\x3a\xc8\xed\x07\x14\xb1\xd3\xbd\xe4\x71\xa4\xdc\xbd\x88\xd8\x33\xa7\xe4\x07\xcc\xc7\xdf\x5d\x70\x8f\x20\x7c\x8a\x74\x2e\x88\xc3\xf3\xb8\x7c\xd9\x41\x5f\xd4\xe1\xac\x43\x25\x3a\x04\x13\x74\xe4\x57\x9b\x99\x91\x7c\x0c\x3b\xd0\xd5\x43\x7a\x32\xaf\x3a\x28\x3f\xa2\xf8\x5b\x1f\xe4\x8e\x78\x9c\x63\xc9\x43\x7a\x82\xc1\xf4\xc8\x5f\x8f\x71\x61\x02\x60\x20\xa2\x5b\x30\xfc\x83\x9b\x84\x2e\xbd\x8d\x5b\x81\x3d\xf6\xb9\x85\x51\xa6\x0d\x8f\xaa\x40\xa2\xea\x5d\xc1\xaa\xd1\xfc\x8c\xef\x66\xfc\x48\x9f\xaa\x93\x48\x67\xc1\x8c\x10\x60\xcc\x80\xa6\x2f\x40\xed\x1e\x5b\x6e\x85\x7b\xb4\x3b\xdd\x62\xed\x0f\xd8\x02\x93\xe7\x7e\x88\x95\x6e\xf7\xa0\xe0\xb5\x71\x85\x65\x5a\x1f\xf0\x9c\xd3\xc1\x65\x37\x39\x3c\x75\x4c\xae\x6d\xe2\xa6\x37\x64\x38\xbc\xdd\x4b\x7c\x19\x26\x05\xa6\xe0\xe7\x8b\x24\x64\x6a\x62\xde\x00\x9d\xef\xc7\xfd\x65\xfa\x7b\xce\xba\x2a\xe9\x89\x10\xf9\x63\x8c\x5d\x3e\x22\x47\x43\x77\xbe\x07\x0a\xed\xde\x35\x5a\x47\xa6\xd8\xe1\xc1\x65\x9c\x1c\x25\xf7\xa9\xc8\x42\x8a\xd3\x05\x80\x63\x66\x52\xc4\xbf\x84\x00\xa9\xdd\xba\x36\xa6\x86\xde\xd2\xa7\x1d\x1e\xf2\x23\x64\xac\x57\xbb\xfa\x20\xcb\x58\x23\x62\x2c\x5b\x65\x2c\xcf\x40\xce\x42\x17\x75\x95\x8f\x00\x13\x0e\x6e\x82\x98\x5b\x38\x69\xb8\xb9\x0f\x46\x7a\x0b\xc3\xb6\x13\x21\x36\xef\xea\x59\xf7\x71\x17\xb8\xc9\x44\x0d\x44\x2a\x19\xc3\x4d\x64\x98\x29\xb2\xc8\x97\x09\x96\x39\x1a\x77\x89\x8d\x51\x5a\x88\x75\xfa\x55\x46\x5a\x8c\x0d\xaf\x43\x3a\x89\x63\x80\x92\x71\xf3\xf9\xd9\x7a\x14\x13\x27\xb7\xea\x4b\xad\x15\x88\x64\x6e\x26\xf6\x8e\x6a\x2e\x4c\x93\x6e\xe7\x96\xfe\x4b\xe3\xb6\x57\xe0\xe5\x77\xf8\x13\x5e\xfe\xd7\x42\xd7\x42\x4a\x88\x7f\xf3\xdc\x5e\xfc\x60\x42\x51\xa8\x4c\x6f\x03\x89\x0a\x27\xce\x6e\x46\x8b\xfb\x96\x04\x65\x1c\x3f\x1f\x1f\xf0\xda\x8c\x1d\xce\xd7\x46\x07\x1d\xce\xc5\x1b\x2e\x53\xb4\x13\xae\x8c\xa9\x71\xd3\xc1\x69\xbc\xde\x05\xb2\xde\x5c\x1c\x30\x90\xda\x7d\x70\x0c\xfe\xf9\x8d\x39\xde\xa3\xb5\x6f\xd6\x95\xea\x8f\x79\x41\x6e\xa8\x3e\xac\x9e\x26\x3b\x6a\x5c\x36\x51\x5b\x79\x0d\xc3\x3a\x30\x3f\x40\x81\xc3\xc6\xfb\x3d\xe8\x39\xbb\x87\xb9\xef\x99\x01\xcc\xea\x7e\xe3\xaa\xab\xdb\x8c\xb3\x19\x94\xeb\x9a\x17\xf0\x67\xaf\xe1\x50\xf1\xf7\x50\xbc\x6d\x56\xa1\x78\xa7\xb1\xb6\x87\xfc\x82\x82\xa8\x65\xe2\x89\x91\xcf\x8d\x3b\xe0\xe6\x66\x73\x8e\x7e\xbf\xfa\x04\x54\xd5\xdd\x86\x03\xca\x5a\xd3\xbc\x80\xa7\x46\xe3\xb2\xa7\x9f\xb0\x23\x3c\x71\x71\xf2\xc1\x70\xe1\xe5\xd7\xf7\x86\x7e\xd7\x64\xd6\x1b\x63\x4a\x8a\x3e\x79\xfd\x00\x6f\xf7\xe4\x63\x6e\xe3\xd8\xda\xa8\x13\xb0\xb7\xfc\x8d\xa0\x4e\xf8\xef\x6d\x87\x76\xa8\x2c\x66\x6e\x99\x14\x5c\x19\x21\x23\x1c\xab\x16\x5a\x97\xb1\x81\xdf\x24\x81\x40\x26\xcd\x49\x7e\x3f\x05\x37\x38\x8e\x40\x56\xcd\x1a\x0a\xb3\xed\x29\x20\x36\x63\xdd\xb1\x21\xa9\x81\x71\xa1\xd0\x92\x94\x44\x21\x48\x3f\x85\x71\xca\xfa\x33\x52\x2e\x80\x74\xaa\x66\xb5\x81\x4b\xb5\x4f\x33\xb5\xd5\x22\x8b\xb0\x85\x3a\x5d\x80\x2f\xc7\x06\xe1\x6e\x26\x4c\x8d\xeb\x4e\xa1\xa9\x81\xdf\xee\x53\x6a\xf3\x55\x0b\xbe\x05\xb8\xd2\x72\xdc\xb1\x6b\x76\xd0\x90\x3d\xf8\xd0\x89\xdd\x81\x7c\xb2\xd0\x6a\xbc\x51\xac\xc6\x9b\x8c\x9d\x3c\xa6\x2e\x86\x18\xcb\x7e\x0c\xc2\xdd\xe5\x8d\x6b\x20\x87\x4b\xee\x1b\x21\xfc\x70\xf9\x37\x7d\xcc\x19\xeb\x47\x48\xa9\x17\x06\xd3\x2d\xb6\xc1\x37\x8d\x57\x26\x61\xfd\xad\x38\x1d\xc4\x41\xb9\xf3\x0c\x8a\x13\x32\x19\x3f\xbf\x37\xa4\xc6\x85\x0e\xec\x59\x53\x6e\x4d\x0f\x5a\x6f\xf1\x93\xd7\x60\xaa\xd6\xbc\x46\x51\x29\xf0\xf0\xf9\x0d\xb9\x31\x71\xfb\x75\x5c\x97\x86\x8b\x79\xf8\x35\x51\x51\xa3\x66\x2e\x6a\xe0\x80\x99\x47\x1b\xcd\x04\xa4\xda\x4c\x54\xe9\xf1\xae\x50\xca\x2d\xe8\x4c\xd4\x7c\xc1\xb6\x77\x4e\xb5\x9e\x1b\x49\x94\xc2\xeb\xa6\x54\x56\xf9\x17\xaf\x9e\xef\xb5\xc9\xf8\xde\x3e\x75\xe3\x94\xad\xd5\xeb\xef\x9a\x42\x53\x36\x29\xbf\x81\x5d\xda\xc6\x74\x3d\xce\xa0\x7a\x11\x56\x93\xfc\x58\xeb\x94\xf2\x6b\xf3\xdd\x60\x73\xf0\x76\xf8\xaa\x82\xa7\xcd\x29\xc1\x95\xc8\x2f\x26\xcf\x8e\x6f\xff\x51\x72\xa6\x33\x3f\x88\xb4\x07\x2d\x49\xab\xa4\x6b\xe9\x04\x50\xda\xa3\x36\x0a\xfc\xa9\xb6\x12\xd8\xd6\x20\x5a\x77\xbc\xc8\x5d\xf9\x78\xe6\x9d\x79\xf6\x2d\x96\xc5\x7c\x4f\xda\x32\x09\xb1\xb4\x9a\xb6\x22\x12\x31\x54\x30\x9b\x4a\x85\xba\x2a\x33\xd6\x54\xa6\x4e\x18\x3a\xde\x58\x66\xae\x81\x66\x96\x6e\x44\xa6\xd3\x5a\xb6\x11\x99\x16\xe7\xc9\x46\x28\x19\xd7\xa2\x2a\x47\x96\xe3\xda\x8b\x2a\xc8\x27\xee\x8a\xab\x91\xb5\x4c\xa2\x68\x56\xf1\xec\xe8\xc6\x0f\x2e\x31\xcb\xcc\x53\x55\x2d\x4e\xf4\x95\xef\x1e\x56\x3c\x87\xaa\x30\xd9\x83\xc8\x25\x61\xf7\x31\xb9\xd3\x8f\x34\x52\x30\x75\x4f\xb4\x61\x13\x7d\x54\xab\x9a\xcc\x2e\x62\x9d\xbb\xb6\x86\xe5\x34\x91\x9b\x2b\xac\x9c\x79\xd4\xbc\x9a\x7d\x4c\xab\x65\x88\xaf\xfc\x70\xe6\x69\xda\x1f\xcb\x50\xd7\x9f\xdb\x1a\x02\x6b\x9a\x33\xdc\x5e\x8a\x1e\x75\x02\x4f\x67\x36\xdb\xd6\x56\x4c\x2f\xb2\x03\xcd\xf2\x34\x99\xc5\x6b\x05\x00\x1f\xf5\x67\xbb\x22\x69\x70\xf9\xae\xc8\x12\xcf\x74\x45\x93\xc9\xad\x16\xf5\x84\x08\x75\x71\xbb\xf4\x7d\x51\x2b\x98\x10\x4a\x23\x72\xae\x68\xfb\xae\x6d\x85\xb6\x76\x6d\x07\xce\xe8\x4e\xbb\xf3\xe7\x81\x36\x08\xec\xa1\xed\x45\x8e\xe5\x86\x9a\xe5\x0d\xb5\x28\xb8\xd3\xac\xb1\xe5\x78\x95\x7c\x87\xf2\x84\x5f\xd4\xad\x3c\xd4\xa2\xce\xed\x11\x83\x10\xf9\xc4\xbd\xc3\x24\x30\xa2\x73\x44\x97\x8e\xef\x2d\xd7\xb7\xc5\x9c\xb4\xb0\xa3\x8b\x8b\x2c\xea\xf5\x71\xcc\x19\x1a\xd4\xa0\xc9\x1c\x6b\xdb\xda\x03\xe5\x58\x7b\xfc\x2b\x87\x52\xc8\x0c\x4f\x97\x58\x62\x20\x72\x0c\x1a\x26\xb1\x13\x23\xb1\x1f\xa9\x6f\x67\xde\xe3\xaa\x64\x7b\x14\x66\xda\x8d\x13\x4d\x34\xca\xfa\x57\x49\x44\x8e\x6b\x85\xa1\x96\xca\x1d\xa8\xd9\xf8\x14\x8a\x62\xd8\x6f\x2a\xa6\xd5\xb4\x38\x49\x20\xd6\xad\x69\x4a\x76\xc1\xb2\x10\x25\xba\x80\x5e\x95\x43\xc6\x04\x83\xf2\x2b\x74\x0a\xf1\x30\xd2\xca\xd8\x40\x25\x97\x6b\x50\xfb\xad\xa6\x34\x14\x57\xa3\x69\x0b\xe0\xcb\xd1\xc4\x09\xf5\xf4\x20\x64\x33\x8f\xf4\x07\x20\x2a\xf1\x20\xe8\xc7\x47\x89\x27\x81\xa5\x38\x31\x99\x16\xf9\xb1\x14\x94\x62\x32\xb2\x6f\xa3\x0c\x06\x47\x73\x8f\x48\x43\xcd\x88\x18\x57\x52\xc6\x5c\x88\xa2\xf3\x24\x59\x1f\xa8\x2e\x5d\x83\x35\x5b\x7b\xd4\x6a\x1a\xc2\x08\x4c\x02\x42\x7e\x43\x80\x78\xc4\x81\x1d\xcd\x03\x4f\xf3\xe6\xae\x2b\x3b\x9b\xd4\xe6\x0c\xb5\x9a\x60\x42\x67\xa8\xfd\x9e\xfc\xdc\x16\x3f\x05\xc2\x3f\x26\x45\x72\x79\x18\xb5\x9a\x46\x79\x18\x2b\x94\x85\xb1\xfc\xf0\xa8\x27\x84\xba\x80\x04\x73\x6d\x8a\x6a\xb5\xed\x64\xd2\x88\x3d\x52\x6b\xc9\x1f\xce\xf0\xcf\x55\x31\x56\x31\x30\xc0\x43\x25\x95\xf6\xb1\x9c\xeb\xa2\x2e\x1a\x11\x34\xf5\x51\xcc\x57\x7a\xc5\x54\x26\x40\xab\x29\xba\x53\xb9\x70\x6a\xa0\x92\x92\x2e\x75\x2d\xcc\xc6\x28\x54\x2a\xfc\x4d\xab\x65\xac\x89\x65\xf2\x37\xc6\xea\x57\xa5\x52\x55\x13\x9d\x42\xa9\xb8\x4c\x71\x32\x48\xb5\x28\xa6\x3f\x55\xcb\x00\x5a\x52\x14\x8c\xd8\x5f\x5e\xe6\x2d\x23\x53\xce\x3c\xa5\x07\x94\xb7\x31\x33\xd8\x6c\x0e\xc9\xa4\xcb\xb9\x1e\xff\x97\x66\x85\x1a\x66\xe3\x8c\x41\xf0\x29\xa5\x8c\xc6\x3c\xa2\x26\xf3\x2c\xab\x54\x2e\x48\x41\x10\x1d\xd4\xb0\x4d\xb5\x56\x0e\x4d\x6e\xb6\xbe\x98\xa9\xd5\x08\x4b\x22\x71\x65\x08\x41\x69\x48\xe6\x05\x2d\x2f\xd1\x42\xdf\x3c\xfa\xbe\x6b\x76\x3a\xbd\x67\xea\x4c\xd2\x8b\x96\x71\xb6\x33\x7c\x2d\x12\x8d\xea\xb1\x86\xa2\x6b\x4a\x9a\x51\x64\x75\x2c\x96\x26\xff\x27\xc6\x8c\x7d\x12\x63\x16\xd2\x5d\xb4\xa1\xd5\x6a\x35\x2d\x0a\xe6\xb6\xf8\x1a\xb7\x28\x98\x35\x69\x56\xbc\xc1\x86\x9f\x1c\x9e\x9a\xfb\x34\x83\x34\x09\x53\x96\x09\x51\x75\x4d\xe6\x43\x8d\xa5\x94\xfc\x54\x56\x51\x2f\x39\x3d\xc1\xd1\xc8\xf5\x6f\x74\x0d\xd3\x4c\x22\x42\x64\x3d\xe5\xd5\x0a\xe5\x55\xcd\x94\x00\xe1\x54\xcc\x47\xe5\x0c\x4b\x96\x95\xaa\x57\xa5\xe0\x17\x03\x40\x8e\xae\xcc\xfc\x30\x2a\xaf\x54\xaa\x0e\x6a\x4d\x23\xc7\x0e\xaa\xdf\x05\xdb\xea\x5a\xa0\x27\x2b\x8c\xc8\xc5\xba\x9d\xbc\xd1\xb4\x95\xb6\x3f\xb3\x3c\x7f\xbd\x4d\xca\xc0\xfa\xd7\xfe\x61\x63\x65\x5b\x5b\xd9\x5c\x91\x30\x62\x91\x79\x5c\xad\x44\x13\xdb\x2b\xc7\xeb\x72\xed\x53\x52\x4f\x78\xe3\x44\x83\x89\x16\x7f\xac\x90\xda\xb1\xaa\xb6\x34\x00\xf5\xe3\xd5\xc6\xc6\x76\xf2\x4a\xd3\xaa\x55\x39\xf5\x15\xf5\xb5\x18\x5f\x5c\xdd\xd0\x8a\xac\x8f\xb9\xaa\x5e\x67\xab\xf2\xfc\x48\x0b\x31\x6b\xe9\xba\xe3\x15\x55\xf8\xa0\xbe\xd3\x64\xd3\xdb\xda\xc8\x72\x43\x49\x52\xf1\x47\xa2\xcc\xb8\x0f\x02\x7b\x7f\xac\x5c\x12\xc6\x84\x85\xb2\x8e\x70\x2b\x7f\xaa\x85\x1f\x95\xbe\x8a\x05\x26\xdb\x55\x92\xfb\xea\xcb\x68\x12\xf8\x37\x20\x90\xd3\x92\xb2\xbc\x9c\x94\x8c\xfb\xb9\xfa\xf1\x25\x13\x07\xeb\x72\x6a\xd2\x48\x3f\x09\xe8\x77\x6a\xfe\x7e\xa2\x7f\xe6\x82\xee\xc9\x9f\x0a\x93\x29\xb2\x28\x2e\x92\x94\x11\xd3\x28\x12\x05\x57\x44\x9a\xe0\x72\xb6\xf2\xc7\xd5\x0a\xe6\x0d\x26\x59\x9c\x1a\xb0\x78\x93\x5b\x0b\x84\xd8\xfe\xb8\xb8\x53\x2a\x58\xd2\xd0\xc7\x67\x64\xab\x4c\x51\xfc\x9c\xe8\x29\x12\x38\x4a\xb3\xa0\x25\x29\x62\x47\xd4\x12\xc3\xa6\x85\xdc\xb3\x9d\x8a\x33\x15\x8f\x46\xcb\xac\x23\x94\x57\xb2\xd3\x6b\xf6\x1a\x8d\x65\x96\x12\x51\xb3\x4a\x42\xcf\x2f\x0a\x54\xbd\xba\x2a\x2c\x23\xd6\x0b\x07\xb1\x14\x72\xd3\xd2\x3c\xf3\x31\x85\xa0\xac\xb4\x7f\x42\x76\x3f\x3c\x2e\x2f\xa1\x29\x9f\xea\xff\x56\x11\xfd\x1f\xb1\xf7\x72\xb1\x27\x08\x2e\xe9\x58\x46\x29\xfa\xb7\x11\x84\x89\xfd\x81\xb9\xb1\x55\x97\xae\xa2\x63\xef\x07\xfe\xec\x48\x51\xb1\xc1\x5e\x5c\x57\xb4\xec\x58\x6f\x17\xf9\xdb\x17\xfa\x86\x89\x2d\xe3\x8c\xef\x5a\x4d\x93\xf6\xa9\x1c\xb0\x30\x2a\xa1\x92\x9a\xac\xae\x9c\xb1\xd7\x76\x1c\x2c\x1c\xe7\x50\xad\x9d\x95\xfc\xc1\x3a\xbe\x3c\x2b\x69\x0f\x95\x4a\x05\x2b\x7d\xd4\x94\xc4\xf1\xb5\x07\x7c\x57\x51\x5e\x69\xbf\x17\x59\x7e\x39\xb0\x55\x6d\x1b\x4d\xdf\x47\xad\xfa\x09\x90\x86\x7d\x49\xae\xd5\x98\xc5\xb8\xa9\xd1\x08\x94\xa2\xdb\x09\xe6\x2a\x3e\x1a\xb8\x7a\x5a\x48\x0a\xde\x4b\x30\xf2\xbc\x49\x28\xbe\x29\x79\xd2\x05\x04\xbe\x59\xa7\x8c\xe9\x7f\x3f\xdb\x71\x09\x97\xeb\xd2\x0e\xd1\x05\x1e\xcc\xff\x59\x23\xf5\x29\xbb\x33\x46\xa2\xaa\x25\x29\x36\x2c\x19\x1a\x29\xc8\x65\x2c\x5e\x74\x0f\x75\xfd\x21\x34\xe9\x07\x1a\xde\x50\x50\xc9\xf8\x20\xe0\x33\xfa\x6d\xe5\x6e\x89\x39\x9d\x45\x77\x72\x57\x83\xfb\xfe\xa5\x63\x6b\x35\x6d\x65\x23\xe7\xef\xcf\x95\x94\x85\x00\x7c\xb3\xd8\x9c\x56\xb2\xbf\x97\xc9\xde\x44\xff\xc8\xb3\xaa\xc4\xf1\x3e\x4e\x6e\x6b\x6f\xff\xf8\x48\x28\x12\x8a\xf1\x88\x75\x2c\xa3\xbe\xa4\xee\x80\x20\x39\x17\x2e\xad\xc6\xc4\x24\x06\xfa\xcc\x9e\x6a\xd8\x87\xcb\x2a\x65\x5e\x39\x31\xb4\xa5\x2b\xfe\x45\x5a\xda\x5e\xb1\xf5\x2c\xeb\x5a\x56\x85\xf3\xca\x48\x0b\x8b\xbc\x01\x34\x28\xb4\x76\x11\x6e\x69\xf3\x5f\xed\xa2\xac\xed\xa5\x78\x12\xc9\xd7\xcb\x78\x4f\x46\x0d\xcd\xb7\x27\x50\x84\x50\xda\xef\x19\x54\xa5\x12\xa5\x6b\x59\x44\xca\xaf\x9c\xed\x71\xb3\xb3\x0c\xce\x64\x9f\xfe\x1a\xac\x89\xfe\xfc\x28\xde\xd4\x8b\x3e\x0a\xe8\x4b\xd7\x40\x64\xd7\x16\x72\xeb\x4f\x39\x4e\x9e\xa6\xec\x02\xf5\x5b\x31\x02\x63\x7d\x45\x96\x94\xfa\xc6\xea\x47\xd0\x27\x0f\x41\x8f\xd7\x2c\xef\x8e\x3c\x41\x64\x38\x68\xbe\x17\x8b\xb1\x1f\x75\xd3\x54\xab\xda\x7e\x60\xcf\xac\xc0\xd6\xe8\x2a\x17\xed\xdc\x0a\xed\x21\x54\x0d\x98\xaa\xa8\xf5\x0a\x80\x9a\xf6\xc7\x9f\x62\x2c\x52\xd9\x06\x50\x45\x9b\x44\xfd\x7a\x21\x8e\x15\x5d\xb9\x5a\xd5\xe4\x57\xf2\xcb\x4b\x6c\x29\xaa\x33\xb5\x5a\x99\xcd\xc3\xc9\xc2\x09\x5d\x55\x34\xf2\xf3\xc0\xb6\x2e\x15\xb5\xae\xb8\x33\x05\x82\xfd\xa9\x7e\xd9\x00\x1e\x37\xaa\xad\xe3\x5e\x84\xe6\x7b\xee\x9d\x76\xe3\x07\x97\xa1\x76\x33\xb1\x3d\x2d\x9a\xd8\x38\x7f\x9a\x13\x6a\x96\x1b\xd8\xd6\xf0\x4e\xf8\x69\xb4\x94\x9f\xa6\x78\x48\x2b\x2b\x8b\x07\x93\xd2\xa8\x9f\x37\xcf\x64\x05\xd4\xd0\xb6\xf8\xab\x27\xd6\x97\xeb\xfa\xdb\x59\xc5\x26\xe5\x81\x4b\xa9\xbb\xcb\x9a\x79\xde\xff\x56\x2b\x6f\x91\x23\x0e\x43\x16\xe4\x1e\x6f\x41\x7d\x7f\xa1\x1f\x2e\x53\x9a\x44\xe3\x76\xb6\x45\x4d\x9b\x44\xd1\x6c\x9b\xec\x3a\xc5\x9e\x53\xd5\xbf\xd5\x74\x91\xc7\xb3\xff\x78\xf8\x7e\xd8\xd4\x75\x6d\x54\x47\x85\xc6\x5a\x8b\x81\x3f\xaa\xdd\xfc\x4d\xdd\x7d\x10\xb3\x84\x25\x6a\xe9\xe9\x8b\xc9\x25\x6b\x29\xa7\xe6\x3e\xbd\x60\xa4\x27\xed\x71\x91\x6d\xab\xee\x82\x24\x03\x29\x32\xd4\xbd\x7f\x95\x7f\x92\xe0\x48\xd6\x09\x6d\x22\x85\x1f\x22\xec\x78\x2f\x49\x0e\x7c\xd1\x58\x0a\xb5\xdd\xdc\x88\x94\xfa\x17\x32\xab\x64\xb5\x44\x1b\x51\x91\xfe\x9c\xab\x34\x7d\x05\x9a\xaa\xd8\xe9\x1a\x5e\x0c\x53\x5b\x59\xf9\x79\x2d\x24\x55\x7d\xc1\x3e\xce\x2f\xd9\xc1\x89\x91\x85\xad\xc4\x18\xc2\x51\xc4\x4f\xf1\x05\x6e\xdb\xd4\x68\x25\x7e\xa1\xfd\xf3\x9f\xb8\xe6\x81\x0c\x09\x5d\xc7\x8b\xd6\xc5\xd5\x43\xeb\xae\xe3\xd9\xda\xc0\x9a\xda\x2e\x08\xde\x64\x8a\x92\xeb\xdf\x64\x65\xea\xbb\x97\xd7\x37\x92\xd5\x90\xbc\xa0\xf2\xf2\x73\x72\xb1\x9c\x84\xc2\x07\x82\x5a\xb2\x91\x17\xac\x9f\x03\x9a\xb1\xff\xbf\xad\xa0\x03\xcb\x1b\xd8\xae\x16\xd8\x33\xf7\xee\x25\x2b\xa8\xb2\x79\x1a\x7f\xfb\xcf\x46\xd6\xbf\xca\xa3\x2b\xc5\xcd\x7f\x96\x8a\x5f\xb9\x54\x2c\xba\x74\xb2\xd0\x0c\x4a\xee\xb1\x5c\x76\x93\x48\x06\x26\xd9\x37\x72\x76\xca\x65\x31\x3d\x30\xfd\x17\xf6\x20\x5a\x4d\x4d\x44\x16\xc1\x2a\x0e\x51\xaf\x91\xfd\x4a\x91\x21\xc1\x57\xe4\x37\xad\xb6\x40\x19\x5d\xe4\xdd\xcc\xf1\x87\x68\x2c\x36\xc6\xfe\xf1\x0f\xed\xb7\xdc\xe8\x53\x6d\xcf\x12\x5f\xdc\x72\x6d\x4b\x87\xe9\x52\xc4\xff\x0c\xb9\x40\x67\x45\x7c\xd6\xa5\x7d\x17\x4a\x80\x0a\xdd\x2d\x8a\x9b\x1e\x1b\xa9\x4e\x4b\x16\x11\x80\x49\x17\x34\xdb\x0d\xed\x34\x24\x54\x9b\x07\x7c\x91\x26\x92\xbd\x13\xf5\x45\xd4\xa5\x50\x55\x42\x29\xd9\x5d\x5b\xd9\xaf\x1f\xa5\x67\x2a\x2f\xa4\x62\xb9\x88\x26\xc1\x6c\xd6\x6a\x4a\x19\xed\xf7\xe5\x7c\xb9\xdb\x8b\xdd\x14\x59\x7e\xcf\x6e\x42\x3f\xed\x62\x5a\xcd\x09\xb6\xd8\xc3\xaa\x76\xff\x7f\x4c\x96\x64\x6f\xa9\x2d\xc7\x9e\x3a\x71\x59\xad\xae\x0d\x7d\xcf\x96\x9a\x68\x72\x61\x6d\xed\xe1\x71\xc1\x94\xab\x6a\x68\x32\x26\xe4\x4d\x51\xf9\x6a\x76\xa0\xc5\x9e\x8c\x94\xbf\x4a\x57\xac\xa7\x22\xdd\x34\x29\x76\x55\x18\xf8\x28\x2a\x49\x06\x90\x28\xbf\x52\xe5\x81\xd6\xb2\xde\xaa\x15\xdf\x9a\x47\x93\x95\xed\xf4\x4b\xa9\x94\x65\x5e\xfb\xce\x70\xb0\xa2\x28\x08\x30\x66\xba\x28\x5d\xdc\xeb\x5b\x81\x26\x70\x61\xce\xb4\xa5\x91\x32\xd1\x1a\x7b\x7e\x60\x4b\x27\xaf\x3d\x44\x30\xa8\x86\xc6\x8e\x4f\x43\xdf\x0e\x31\xd2\x67\x0a\xc8\x4e\x69\x1e\xaa\x57\x28\x23\x9c\xc4\x04\xc0\x5c\x82\x60\x4c\xf7\xca\xb3\x6f\x23\x14\x38\xf1\xc0\x32\x5d\x13\xb4\x50\x11\xb7\x11\x97\xff\x5b\xaa\xa5\xff\xe7\x41\x7e\x92\xd7\x13\x57\xe8\x72\xe2\xc7\x82\x2f\x13\x2b\x9c\x3c\xfe\xb7\xea\xc6\xca\xcc\xbf\x96\x76\x33\xe4\xd1\xa7\x5e\x74\x9c\xe9\xe2\x55\x85\xae\x3d\xd6\x6a\xda\x8a\xe7\x7b\x78\x2c\x22\xf9\x4a\x37\x21\x27\x5d\x91\x03\x59\x5c\xbd\xb6\xa6\xad\xfc\xbe\xa2\xad\xa9\x7b\x82\x95\xf8\xe6\xe4\xf2\xd5\xea\xf3\xe3\x48\x1e\xb2\xbe\xc7\xbc\x2e\x59\xad\x6a\x1d\x7b\x6c\x0d\xee\xb4\x30\x9a\xcf\x9c\x21\x0a\x0b\x55\x93\x06\x64\x5c\xc5\x3d\x84\x39\x4c\x9e\x2a\xe2\xea\xe6\xb2\xbc\xb8\x39\x19\x28\xdd\xdf\xbc\x5a\xb0\x9c\x2c\x46\x4a\x52\xf1\x72\x73\xf5\xa8\x38\x8d\xc5\x25\xc5\x1a\xdd\xa1\x29\xfa\xef\xda\x91\x46\xf7\x47\xc3\xec\x54\x6f\x6c\x77\xe0\x4f\xe3\x19\xc2\x69\x16\xb4\x42\xc5\x88\x16\x0f\xcd\xfd\x0e\xe3\xa6\x4a\x8b\x71\x25\xe2\xc7\x9a\xb6\x80\xfc\x8a\xbe\x00\xf9\x65\x05\xcd\xd3\x6b\xf6\x83\x74\xb3\x7f\xfd\xfa\xb5\xec\xfa\xde\x38\x74\x6d\x7b\xb6\xba\xad\x4d\xac\xc1\xa5\x16\xf9\x14\x8f\xaa\x89\xbb\xac\xf1\x14\x81\xd0\x2c\xa8\x76\xd9\x05\x74\xe8\x52\x97\x7f\x79\x9c\x40\xbc\xd7\x29\x8e\x33\x64\xa2\x04\x02\x7b\x38\xbf\xcd\x6c\x5c\x37\x70\x6b\x3e\xb2\x87\x32\xaa\x7a\x51\x60\x41\x6a\xdb\x9a\xae\x97\x8e\x61\xff\x9f\xa9\x15\xd9\x81\x63\xb9\xeb\x73\xa7\x3a\xf0\x03\xbb\x1a\x22\x80\xd2\x27\xba\x15\x7b\x21\x3c\x7d\x56\xe0\xb3\xf7\x64\x2f\x2c\x99\x05\x54\xea\xc0\x3b\xaf\x17\x16\xc4\x9b\xbb\xc3\x2a\x02\x29\x85\x92\x7b\xbe\x17\x96\x4c\x40\x52\xa8\x49\x82\x2e\xe2\x5d\xed\x0a\xee\x44\x53\x30\x7a\x58\x8d\x01\x56\xd2\x21\x1d\xc9\x16\xaf\xbe\x48\xe1\xd2\x73\x8b\xb3\x1a\x27\x50\xa9\x54\xc5\x3d\xb5\x55\xf4\x36\xa7\x68\x21\x15\x33\x9f\x2e\xa4\x6e\xba\xd3\x7a\x49\xf3\x06\x4c\x35\xb1\xa7\x68\x55\x92\x07\x27\x7d\x39\x79\xec\x6a\x40\x1c\x6e\x13\xa2\xff\x78\xb3\xb1\x21\x3d\xce\xf2\x96\xf1\x6d\x6d\xc5\x3a\x0f\x7d\x77\x1e\xd9\xd2\x69\x12\xf9\xb3\x6d\x6d\xe5\xcd\xc6\xff\x2d\x5f\xb8\xf6\x28\x4a\xbf\x89\xef\x22\xdf\xd6\xd6\x37\x5f\xa5\x5e\x76\x10\x78\x7d\xf3\xd5\x59\x7c\x2c\x27\xbe\xa0\x3c\xee\x95\x7a\x4d\xf9\x36\x8d\xa4\x22\xee\x2a\x2f\x6f\xad\x26\x25\xc5\x9d\xed\x71\x39\xa5\xd7\x81\xed\x5a\x91\x73\x1d\xf7\x1a\x2f\x38\xdf\xd6\x56\x36\x37\x92\x6e\xc6\x97\x9d\x6f\x6b\x2b\x03\xdb\x8b\xec\x40\x39\x2c\x34\x95\x87\x28\x1e\x72\x63\x7a\xa3\x17\x75\xf3\xcd\x59\xea\x30\x0f\x1d\xd7\xc1\xab\xa9\xe3\x63\x3a\x28\x18\x2a\xa9\xab\xf5\xa9\x7a\xb2\xf1\x15\x6b\x2b\x77\xdd\x7e\x79\x35\x99\x32\x52\xa7\x70\xb5\x8b\x55\xa1\x44\x5f\x13\x72\x0a\x75\x2b\x3c\x4c\x23\x8f\xae\xa4\x56\xe1\x44\x6f\xa0\xb6\xe1\x31\x2d\xb6\x41\xb1\x59\xd9\x3f\xee\xef\xaa\x32\x1b\xf5\x0e\x72\x94\x89\x15\xfa\x9f\xff\xd4\xd4\xe7\x78\xf5\x5a\xa1\x0b\xb3\xbf\x8b\x5b\xb5\x57\x60\xd5\xd2\xd6\x37\x53\xab\x56\x2c\xb0\x73\x8a\x2b\x7a\x7e\x64\x8f\x52\xab\x73\x66\xdd\x52\x56\xe6\x02\xbd\x46\xbd\xd7\xfb\xa7\xb4\x9b\xac\x66\x1b\x37\x4c\x17\x92\xe7\x67\x47\x2c\x23\x72\x8f\x5c\xa7\x50\x2c\x5b\x39\x78\x50\x3c\x41\x54\x7e\x62\x89\x10\x97\x9a\x5c\x83\x26\x51\x34\x03\x5c\x67\x0d\xed\xe4\xd5\x2c\x6d\xd2\x28\x76\x7c\x72\xde\x46\xa9\x4c\x8e\xec\x77\x6d\x27\x25\x60\x10\xa4\xf6\xa0\x40\x3e\x7e\xda\xa9\xaa\x20\x9f\x64\xd1\x6d\xad\x9c\xe9\x4e\x32\x4d\x4f\x57\x2b\xe1\x17\x56\x0d\x95\x3f\x55\x81\x1c\x6c\xae\x82\x5c\x58\x71\x6c\x98\xee\x8c\xfc\x60\x2a\x54\x99\xda\x59\xe9\xac\xa4\xf9\x5e\x7f\x7e\x3e\x75\xa2\xda\x43\xd9\xbe\xb6\x3d\x72\x84\xe0\x8c\xb8\x64\xe5\xe3\xcb\x47\xa5\x53\x3b\xf1\x0a\xa0\xaa\x52\xd6\x3c\xf2\x1b\xfe\x60\x1e\x66\x5f\x72\x6b\xe6\x44\x96\xeb\xdc\x63\xfc\xdd\x68\x74\x56\x52\x21\xc2\x99\xed\xba\x78\x3b\x7f\xed\xac\x84\x26\x59\xfa\x3b\xc6\xf8\xd4\x1e\x62\x5c\xa9\xdf\x7c\x8f\x4f\x2c\x6f\x6c\xd7\x1e\xb0\xbf\xe4\x35\xa3\x57\xe5\x95\xf8\xf0\xed\xea\x63\xae\x47\xfe\x74\xe6\xda\x11\xf4\x47\x38\x4c\x05\x77\x24\x3b\x4c\xa9\x3e\xa4\xc2\x03\xcb\x0f\x78\x26\x12\x8a\xd2\x79\x66\x3a\xcc\x2d\x4b\x36\x1c\xdb\x1d\x56\x5c\xeb\xdc\x76\xcf\x4a\x7a\xee\x30\xda\x59\xe9\x38\x6e\x42\x7b\x54\xbb\x56\x7d\x16\xc3\xa0\x20\xd5\xce\x4a\x71\xd0\x4f\xaa\x8f\x24\x86\x6b\x67\x25\x0f\x54\x21\x37\xfd\xf1\x49\x44\xc5\x67\x83\x5f\x82\xa8\xc1\x3c\x08\x6c\x2f\x5a\x2f\xee\xcc\x2f\x45\xd8\x7e\xdc\xc4\x62\x84\x3d\xc4\xb2\xe2\x1f\xff\xd0\x76\x14\xe5\xe7\xda\x0a\x1c\xcb\x8b\x6a\x67\xa5\x70\x7e\x1e\x39\x91\x6b\xbf\x3a\x2b\xd1\x82\x5f\x3b\x2b\x91\x9f\xb4\xa4\x44\x88\x3e\x08\x09\x25\x0f\x09\x3e\x7e\x7a\x50\xa5\xc7\xe3\x8e\xa2\x36\x7d\x52\x3a\xb3\x33\x74\xae\x8b\xaa\x11\x8b\xb3\xca\x3e\x9a\xb6\x43\x7a\xa2\xfa\x2a\x9e\xdd\x10\x99\x31\x8d\x4e\x2d\xee\xf0\x2c\x70\xa6\x56\x70\x97\xfd\x9c\x8c\x52\xe6\x71\x18\xe6\x6a\x48\x07\xc1\x92\x26\xb4\x2e\xea\xd3\xfc\xc1\xfa\x34\x5a\x77\xb3\x85\xc4\x86\xcf\xb0\xf6\xf0\xdb\x6f\x42\x96\x3f\xa6\x21\x7c\x8f\xbb\xce\xe0\xf2\x19\xe1\xa1\x96\xf9\x94\xae\x60\x27\xa7\xba\x3b\xc3\x5a\x96\x56\xc0\x9a\x27\x9c\x49\x42\xc9\xd0\x49\xed\xac\xd4\xf1\xc7\x9a\xe3\x9d\x95\x3e\xed\x54\xb3\x55\xa6\x91\x2f\xb4\xf4\xd4\xcb\x07\x69\xf0\x00\xf9\xe4\x94\xf6\x10\x64\xd7\xc3\xab\xd7\x8f\x45\x33\x9c\xd6\x29\x1f\xb5\x6a\x8a\x2c\xaa\x43\xe7\x3a\x6e\x69\xa7\x0a\xd2\x57\x3c\xae\xaa\x47\x64\x53\x1c\x99\xf2\x2b\x0b\x01\x8e\x88\x4c\xf9\xd3\x92\x45\xb3\x12\x6b\x10\xf9\x30\x4b\x2c\x57\x21\x43\x8d\xce\xa4\x26\xee\x3a\xb5\x03\xea\x74\xc9\x36\xa8\xec\x2c\xc0\xbf\xc2\x0a\x2e\xe7\x37\x58\x8b\xfc\x82\x4b\x2a\x62\x85\x8e\xc6\xe7\x1c\xb4\x14\x1a\x28\x7d\xa4\xf1\xee\xca\x13\x7b\x47\x39\x17\xdd\x53\x4a\x57\x2e\x02\xa1\x40\x01\xcb\xb8\x9d\x85\x23\x12\xd5\xdc\x7c\x9c\xb7\x20\x94\x7c\x8c\x77\xc5\x09\x0f\xed\xab\xb9\x13\xd8\x43\x5d\xce\x02\x52\xa1\x0a\x4a\xfe\x99\x34\x68\x12\x09\xf1\x3c\xa4\xc4\xdb\xf3\x90\xd2\xeb\xfa\x74\x37\xe3\x90\xaa\x82\x88\x75\x8d\x94\xe0\x65\x46\x2a\xf1\xaf\xc2\x8e\xe6\xde\x20\xd7\x18\xe1\xfe\xc9\x2a\x65\xac\xbd\x70\x90\x5b\x33\xf4\xa4\x1e\xf9\x50\x04\x66\x41\x1e\x5b\x4a\x1f\x1d\x50\xb4\xd3\x22\x2a\x23\x6c\x00\xd5\x62\x69\x12\x44\x1f\xd5\xe2\xaa\xe9\xa1\x25\x80\xa9\xd0\x82\xb4\xd3\x5b\x36\x48\x4f\x0b\x62\x79\x53\x01\xa0\xea\x99\x58\xf1\x1b\xdb\x8b\x3d\x2e\x1f\x0b\x0e\x09\x08\xb7\x49\x39\x83\x89\xd5\x72\xe2\xf3\x28\x93\x85\xbc\x5a\x46\x9a\x5d\x4d\x9f\x30\x47\x03\x4d\x27\xce\x36\x47\xa3\x9c\x07\xe6\x7f\x83\x23\xa7\xe3\x84\xd1\x42\x68\xf8\x98\x81\x6d\x45\xf6\xf4\x49\x78\x00\x28\x28\x03\x8a\xdc\xb3\xe5\x00\xa8\xa0\x2c\xbb\xb6\x22\x2b\x78\xb6\x34\x81\x29\xe5\x9f\x29\x97\x83\xff\x71\x5f\xd1\xc3\xdf\xd5\xd1\xf3\x32\x6f\xca\xab\xd5\xa5\x3c\x1e\x8b\x0b\x09\xad\x18\x66\x24\x53\x90\x3c\x3d\xe9\x92\xeb\x5b\xab\x29\xdf\xc9\xa1\x33\x9e\x14\x01\x15\xd6\x0f\x33\x9e\xb8\x7a\xac\x21\x08\x94\xa2\x46\xe2\x36\x04\x4c\x61\x23\xa2\x8d\xd8\x5d\x13\xef\xa1\x71\xd5\x67\x50\x7e\xca\x90\x17\x52\x30\xd9\x5a\x13\x82\x5d\x93\x7b\x69\xb1\x10\x49\xef\x67\xc2\x0a\x2d\xc2\x03\xc1\x7c\xff\x4d\x71\xc3\xac\x2e\xeb\x87\xc9\xfb\x3a\x92\x38\xa3\x9f\x70\x74\x90\x67\x43\x2a\x3a\xae\x9d\x73\x20\x88\x04\x27\x67\x22\x0b\x8a\xe2\x25\x48\x74\xa7\x74\x09\xd5\x24\x79\x89\xf1\x11\x6b\x8e\x3f\xe6\x9d\x48\x59\x2b\x29\x75\xcf\x4e\x6c\x5d\xad\xa6\xad\xac\x28\xc3\x29\xf2\x8c\xc5\xe3\x52\x0a\xd1\x67\xf9\x22\x9f\xf0\x05\x55\x4a\x58\x7e\x13\xcb\xe0\x39\xc5\x72\x29\x9d\x30\xdd\x2e\x05\x93\xd3\x59\xca\xbf\x95\x4a\x98\x46\xc4\x68\xf4\x72\x4c\xa4\xf6\x5a\x7e\x09\x6d\x3f\xa6\xb4\x12\xe1\x14\xda\x49\x99\x28\x85\xb6\xf3\xe4\x0d\x1a\xcd\xc2\x1b\x0b\x2f\xb6\x52\x84\x8b\x26\xa5\x0b\x12\xe6\xac\xa4\xba\x31\x9e\xb6\xed\x52\x8e\x49\x8c\x61\x73\x1d\xcf\x2e\xb2\xed\x48\x1c\x69\x96\x27\x25\xe1\xd3\x66\x5e\x8a\xec\x9f\x1e\x99\xf4\x0a\x6c\x16\x33\x62\xbc\x8e\x68\x6b\xda\x59\x49\x4b\x46\xf9\xf8\xa3\xc3\x8c\x6b\x2c\x1a\x67\xe4\xe3\x21\x0a\xcd\xf1\xb4\xc8\xd7\x28\xf8\x31\x8d\xd1\xa5\x07\xfd\x42\x87\xdf\x42\x5f\x1f\x2a\x4a\xc2\x0f\xb0\x4f\x4b\x49\x11\xa2\x94\x15\x2a\xe3\xeb\x90\x8b\x56\xda\xec\x3f\x2f\xf0\x80\x88\x56\x9a\xf3\x28\xb2\x83\x70\x91\xfb\xa2\xa8\x49\xa8\xff\xf1\x57\xb8\x2e\x16\x7b\x2d\x76\xd2\xea\xd6\xa7\x1d\xf1\x37\xf6\x4c\xc2\xcc\x86\x51\x50\xde\xd0\xb5\xcd\xd5\xc7\x9d\xaa\x84\xcb\xe8\x69\x59\xf7\x47\x4a\x51\x2c\xe6\x28\x4d\x78\x69\x14\x2f\x68\xca\xf9\x05\x73\x2f\xab\xf9\x37\xc7\xfd\x68\xb4\x8c\xcb\xe8\x49\x8c\x6a\xda\xce\x82\xf7\x2f\xe4\xd4\x79\x68\xf7\xa2\x89\x1d\x54\x66\x76\x10\xfa\x9e\xb5\xd8\xf5\xf4\x7b\x8a\x47\x93\x49\x79\xd2\x0f\x45\x20\xc5\x44\xf1\x02\x9a\xc9\x56\x59\x4c\x42\x59\xa8\x98\xa2\x96\xc0\x51\x1e\x44\x5b\x0a\x6d\x02\x5d\x45\xc5\x73\x18\x3c\x46\xe9\xee\x43\x39\x45\xc4\xff\x10\x4e\x33\x94\xb6\x04\xa3\xd0\xcb\x4f\x6a\x74\x4b\xda\xe9\x5b\xe8\xbf\x4b\x5c\x7b\x71\x92\xb7\x94\xd6\xfc\x3f\xe3\x08\xfa\x79\xa7\xcd\xdf\xce\x1b\xa3\x9c\xa7\x7d\xd2\xf5\xf2\x23\x3e\x97\xbc\x57\xe5\x97\x79\x52\x52\x93\x5f\xe4\x51\xf9\xc1\x9c\x19\x34\x66\x3a\x93\x52\x57\x92\xb4\xd5\xb4\xf2\x83\x38\x72\xa2\x6b\x95\x4a\x25\xc0\x84\x0d\x88\x57\x54\xec\x76\xc2\x99\xe5\x61\x92\x0b\xf8\xf2\xf8\xe9\x81\x60\x2b\x22\xe3\xda\x77\xd4\xe2\x7f\xd7\x8a\xde\x6e\xcb\xb7\xce\xf0\x71\xa7\x0a\xf5\x7c\x3a\xf3\xc8\x1e\xca\xf5\xa3\x88\xcc\x01\x64\x29\x1a\xc9\xa0\x3b\x57\xf9\xd2\x48\xfc\x3b\xbb\x73\x7e\xd4\x45\xb5\x94\x6f\x0d\x77\x4e\xcf\xfd\xdb\xc5\x81\x45\x02\x20\xe3\xb7\x51\xf3\x75\x8b\xec\x29\xd9\xc4\xdd\xfa\xf2\xce\xb8\x8c\x33\x86\x0c\x7d\xf2\xc4\x04\xfe\x4d\xd6\x5d\x81\xce\x94\x8d\xb4\x7b\x42\x3a\x66\x36\xd2\x0e\x09\x51\xf1\xc0\x9f\xd9\xad\xfa\xd1\xf3\x99\x9e\x57\x10\xf4\xbb\xe5\x3a\x56\xf8\xfd\xdc\x0a\x9d\xc1\x4a\x2a\x93\x6d\x9c\x84\x1a\xe1\x64\xd6\x4e\x30\x93\xb0\x88\x81\x25\x16\xa5\xb2\x65\x94\xbb\x07\x33\xed\x62\xdd\x72\xa9\xd2\x1c\x8f\x72\xc3\x38\xbe\xa7\x04\xcf\x88\xce\xf8\xa3\x11\xd8\x35\xdf\x2d\x2c\xbe\x6c\x7f\x44\x29\x6a\x73\x61\x97\xda\xb6\x3d\xc3\xb3\xd8\x78\x2e\xcd\x1e\x6a\xd4\x88\x06\x2a\x8b\x13\x46\xb6\x17\xb9\x77\x18\xc4\x37\xf2\xc1\xc6\x0c\x56\x8a\xd0\xdb\x87\xb6\x43\x64\x21\x10\x2a\xd8\x95\x50\xd7\xa6\x76\x64\x29\x8e\x1e\x29\x48\xf2\x92\x7b\x6a\xcd\x66\x28\xb9\x71\x46\x1c\x9a\x1f\x10\xce\x50\x83\x22\xb7\xb3\xc9\x7a\x54\x1b\x39\xf0\x6f\x94\xe3\xf6\xf4\xee\xd2\xf3\x6f\x3c\x35\x1e\xa8\x5a\xd5\x8e\x7a\xf5\x5e\x2a\x6e\xb1\x0f\xf4\x4c\x5d\xc6\xe9\x08\xd0\x42\x89\x7c\x50\x71\xfc\xc0\x89\xe8\xa8\xd5\xc8\x0f\xb4\xb2\x6b\x0b\x48\xb0\xaf\xa8\xc8\x6a\x3a\x96\x1b\xdf\xfd\x81\x7f\xfe\x5c\x4d\x45\xde\x63\xec\x68\x3a\x47\x2f\x54\x87\x49\x6d\xc5\xf8\x45\x39\x25\xc6\xc8\x19\x66\x82\x86\x70\x44\x98\x58\x36\x75\xf6\x2c\x5d\xbd\xa2\xc2\xc4\xf0\x1a\xa5\x8b\x92\x1d\xc8\x1c\x8f\xc0\x5e\x60\xeb\xf9\x1e\x26\x73\x22\x59\xc6\x89\xd3\xdb\x7e\x4c\xc0\x50\x59\xd3\x94\xbe\x27\xa0\x99\x31\x24\x1f\x2a\xa9\xf1\xc9\x59\x53\x72\xe8\xca\x5e\xa5\x59\xf7\x8f\x54\x0d\x7f\x2a\x51\x4d\x50\xbd\x52\x3c\x13\xdb\x4b\x5d\xac\x15\xe5\x62\x52\x0b\x15\x05\x5e\xa7\x8f\xd3\x60\x45\xa9\xca\x65\xd5\x4a\xcf\x86\x09\x2f\xe6\x7c\x3c\x0a\xc9\x64\xeb\x92\x35\x3d\xa1\x45\xa7\x74\xe7\x1c\xdf\xe3\x0b\x55\x6b\xce\xe9\xca\xc8\xae\xdb\x1a\xf1\xe9\xa3\x0a\x4a\x39\x87\x6b\x0f\xe2\x53\x3c\xea\xea\xa7\x6c\x90\x30\xb0\x1b\xf9\x95\x62\xdd\x36\x6f\x2b\x2e\xb2\x09\x87\xb6\x17\x2a\xe3\xb9\xb4\xef\x6a\x0f\xce\x50\xd1\xbb\x0b\x0c\xc6\xc0\xbf\x89\x01\x3e\xed\xc8\x45\x49\x9d\x5e\x4c\x63\x4e\x99\x98\x33\x1d\x38\x74\x66\x33\xd7\x2e\xf8\x90\x02\xce\x18\x3e\x03\xd1\xc4\xfa\xd0\x0a\x2e\x55\x24\x55\xb3\xde\x8d\x78\x5d\x8f\x8d\x22\x9c\xc4\xc7\x45\xd6\x78\x55\x71\xb9\x64\xac\x89\xa7\xbc\x6c\x28\x5f\x13\x75\x4c\xd6\xf1\x00\x53\xf1\x28\x4d\x0a\x61\x88\x08\x9b\x02\xc5\x5e\x22\x9d\x7f\xca\xa2\x20\xd9\xf6\xbc\xa1\x00\x32\xfb\x47\x74\xb7\x02\x8d\x58\xc9\x6b\x9d\x0c\xe2\x97\x69\xc6\x2f\xde\x5c\xa4\x20\xc5\xd6\x28\x06\x83\xc7\x75\x67\x94\xaa\xec\xef\x1a\x48\x7e\xe4\xfb\x6e\xe4\xcc\x16\x6f\xd0\xd1\xf7\x7f\xcb\xd0\x73\x51\xae\xee\x58\xae\x3f\x66\xb4\x31\xb8\xb0\x68\x0a\xaa\x78\x33\x52\x1c\xd1\xcd\xef\x41\xea\x85\xf9\xc0\x7e\xed\xce\x64\x0c\x5d\x9c\x93\xaa\xb8\xad\x9c\x56\x9f\xb3\xf6\x16\xc4\xe2\xe7\x00\x95\x4a\x14\xb5\x6e\x41\xe9\x04\xe2\xdf\x3d\x78\x3e\x1e\xc8\x8b\xf7\x7b\xb3\xd1\xf3\x4f\xec\xf7\xe6\x07\x96\x8d\xaf\x17\x56\xf4\xb6\xb6\xe2\x78\xa0\xbd\xaf\x9f\xbb\xfe\xe0\x72\xb9\x78\xfa\x05\xad\x2d\x31\x8e\x4c\xb4\xbd\x20\xff\xe7\xe3\xed\x97\x08\xaf\x57\xe2\xb8\x32\xfb\xbc\x64\xe5\x2f\x8e\xaf\x5f\xb0\xb7\x8b\xcf\x54\xf6\x6f\xb0\xcd\x7b\x96\xde\x71\xfc\x0b\x4e\x4c\x89\x46\xe4\x21\x30\xad\x20\x0b\x4a\x88\xe7\x4e\x81\xcd\x96\xdf\x1e\x4c\xf0\x4c\x89\xf0\x6a\x0b\x6e\x20\x29\x3e\x8b\x8a\x97\x87\x78\xd7\x76\x10\x81\xdd\x28\xad\xa7\x9b\x89\x33\x98\x68\x56\x60\xa3\xa9\x01\x23\xb3\x84\xb9\x84\x7a\x65\x2a\x3f\x1a\xbd\x8f\x0f\xa5\xe2\x69\x6f\x61\x51\x55\x46\x8e\x1b\xd9\x41\x59\x80\xe4\x4f\x00\xff\x96\xb6\xb3\x92\xc3\xc3\x17\xbe\xe3\x95\x57\xb4\x95\x7c\x88\xe1\x0f\x86\x13\xa6\x52\xc3\x08\x6c\xff\x0b\x76\x89\x69\x7b\x5a\xd7\x1e\x84\xd2\xaf\x66\x39\xc2\x1b\x70\x9e\xdb\x46\x5e\x74\xbc\x22\xb6\xcd\x63\xdf\xa9\xe0\xd2\x24\x4a\xa3\x98\x49\x73\x53\x19\xc6\xfb\xf9\xf2\xe0\xa8\x78\xfd\xcf\x7f\x92\xf9\x9d\xc0\x83\x82\x98\x83\xc6\x97\x12\x56\x98\x18\xd9\x93\x07\xea\x36\xf3\x2f\xde\x68\x7e\x76\xd7\x22\xbd\x5f\x41\x64\xa1\xec\x38\xa7\x81\x73\x16\xd7\xae\xa3\x3d\x28\x17\x55\x3c\xe6\xc3\xaf\x85\xdd\xa5\x00\x6d\x4b\x0c\x29\xe5\x52\x5b\x13\x29\x3b\xa4\x68\xc3\xfa\x65\x5b\xd6\x09\x66\x30\x98\xfb\x7c\x7d\x9a\xc1\xd0\x43\x3a\x6e\xe2\x71\x61\xeb\x2f\x69\x7f\x8c\xb6\x21\xad\x4e\x7f\xd5\x34\x89\x35\xf3\xd9\x59\x12\x0e\x6e\x45\x19\x7a\xd4\x6e\x2c\x2f\x0a\xb5\xc8\x5f\x38\x63\xb9\x32\xdb\x67\xd9\x3d\x3a\xa1\x5a\x67\xdf\x8b\x53\x0e\x53\xa2\xd3\x73\x44\x41\xd1\x6e\x17\xe2\xaa\xf6\xf0\x03\xdb\x6a\x62\xfc\x11\xb5\x2f\xb2\x49\x2d\xb5\xa1\xb6\x82\xbb\xab\xb0\x1c\x9d\x95\x18\x08\xbf\xb3\x92\x76\xe3\xb8\x6e\x9c\x58\x4a\xbb\xf3\xe7\x5a\xe4\x6f\x6b\x0f\xf2\xcd\xf1\x61\xeb\x71\xa5\xa8\xea\x18\x55\x45\x1f\x93\x54\x55\xc7\x87\xad\x78\xdb\x40\x4d\x55\x55\x54\xea\xf1\x31\xff\xb6\x28\x9e\x23\x07\x56\xb4\x23\x68\x4f\x3f\xed\xe4\xf5\x65\xea\x49\x4d\xcc\xef\x63\xf5\xd3\x4e\x35\xb3\x39\xae\x11\xe5\x13\x72\x33\x5f\x1e\x33\x7b\xff\x4f\xed\x3a\x2e\xe2\x5d\x45\xfd\x46\x87\xc9\x12\x41\x14\x89\x1a\xfb\x18\xab\x06\xf4\xf7\x11\xc5\x6e\xed\x01\xfe\x17\x60\x8f\x9f\x76\x14\x05\x7e\x21\xdf\xfe\x45\x4c\x89\x7f\xaf\xe6\xb6\x37\x78\x9e\x31\x0d\xe8\x85\xa0\x47\x46\x4b\x31\x90\x1f\x69\x2e\x98\x5d\xd4\x9a\xcd\x40\xdf\x98\x87\x36\x79\xd7\x15\x7f\x7a\x25\xdb\xd9\x17\xcc\x85\xf2\xe1\x89\x28\x18\x5c\x19\xe9\x53\x39\xd6\xa1\xa4\x6e\xb6\x9a\x89\x66\x49\x99\x9f\xd9\x7d\xf9\x97\x9c\x01\xd2\x16\x9d\x03\xd2\x94\xe3\x3e\xa1\x3d\xf0\xbd\x61\xc1\x81\x1f\xad\xd8\xcb\x46\x26\x5a\x01\x77\x3d\x1f\x91\xa1\xa9\x51\x19\x2a\x4a\x52\xaa\xea\xea\x52\x2c\xf9\x4c\x94\x85\x24\x21\xcc\x87\xf6\xdc\xb1\x1e\x8e\x50\xcf\x1f\xeb\xd1\x16\x1d\xed\x81\x7f\x0f\x65\xe5\x7c\x8f\xfc\x09\xb6\x46\xa1\x91\x0e\x86\x49\xc1\xa8\x7e\xe1\xb1\x20\x2d\x77\x34\x48\xbc\xfb\x65\x14\xf4\xe4\x69\x32\xed\xf9\x13\x65\xda\x72\xa7\xca\xb4\xe7\x4e\x96\x15\x15\xf8\x09\x62\x24\x45\xfa\xd7\xd3\x22\xca\xa2\xe7\x48\x51\xac\xa4\x3f\x47\x89\x92\xfa\x6a\x8b\xa8\xef\x57\x1f\x41\xd3\x0a\x69\x6d\xa7\x9a\x95\x64\x29\x5d\x51\xfa\x4a\x53\xb1\xcd\x22\x80\xbb\x9c\xa9\xfb\x97\x9e\xb6\xcc\x21\xf2\x47\x8f\x65\xcb\x61\x16\x2e\xce\x9a\xb6\xba\x9a\x52\x80\x95\xb8\x9e\x34\xb6\xd2\x27\xbc\x84\x41\xf9\xef\x12\xda\xb3\x54\x2c\xc6\xdf\x28\x04\x68\x61\x58\xcf\x4b\xa2\x84\xce\x16\x85\x00\x6d\x3f\x1b\x0b\x24\x7e\x4b\xa4\x65\x32\x29\x91\x2d\x8d\x46\xee\xd9\x2f\x0b\x1a\x22\x82\xfa\xd7\x6d\x8a\x3c\x68\x87\xfe\x3c\xb2\x75\xad\x4f\x19\xc3\x32\xf0\xf0\x2d\x58\x1f\xfa\xd3\x9f\xdb\xf4\x88\x4b\x8a\x6b\xbe\x9d\x6b\xbb\x3f\x50\xf6\x16\x72\x9e\xe9\x2c\x9c\x32\xb6\x43\x61\x5c\x9c\x38\xd1\x04\xb3\x9e\x2d\xae\x23\x03\x98\x42\x90\x7a\xbf\xda\x02\xaf\x7c\x72\xfb\x4a\x12\x07\x44\x59\xd0\xc5\x85\x2b\x9d\xcc\x16\x41\x2a\x04\x2c\x86\x4a\xbd\x55\xa1\x85\x9f\x36\x86\x13\x89\xca\x9e\x8e\xa8\xc9\x27\x56\x09\x09\x93\x3f\xe3\xee\x2d\x3a\x4b\x5c\x78\x01\xdd\xd3\xfe\xa8\x84\x7f\x17\x7a\x9b\xe2\xe5\x4f\xe6\x01\xaf\xd5\x92\xfb\x82\x0b\x9c\x46\x39\x82\x11\x15\xd4\xe4\x42\xfa\x88\xb4\xe8\xcf\x23\x61\x57\xd5\x1e\x40\x47\x78\xd4\x52\xa6\x18\xd2\x76\x7a\xfd\x43\xb2\xd7\x66\x56\x34\xa9\x9d\x95\x14\x87\xf2\x59\x49\xb3\x6f\x81\xfd\x12\x2f\xd4\x03\xa2\x19\x56\x1a\x2c\xf4\x54\x3d\xa9\x50\xd8\xa2\xaa\x52\xc4\xb0\x5c\x95\x44\x16\x85\x95\xd1\xa7\x45\xd5\xe4\x18\x85\x8e\x81\x67\xc7\x9b\x76\x44\x65\x70\xb5\x93\x63\xc5\xc2\x85\x51\x21\xc4\x9f\x5a\x1c\x7f\x3a\x4c\xf5\x97\x2f\x3d\xf9\xe5\xe4\xd7\x86\x8d\x2a\x98\x93\xab\x80\xa8\xed\x21\xae\xef\x31\x2d\x71\xc2\x58\x24\x26\xc0\xf1\xc9\xbd\xa7\x6e\xba\x50\x87\x1c\xa8\x81\x55\x98\x89\x4f\xc9\x5f\x14\x73\x76\x51\xc4\x95\xdc\x1e\xd1\x44\xee\x23\x72\x10\xfd\x2e\x18\x38\xc9\x59\xa8\x56\x98\x3d\x7b\x46\x69\x91\xec\x21\x9e\x0c\xa5\xd4\x91\x08\x52\x98\xb7\xb2\x20\x6b\x65\x61\xce\xca\xa2\x8c\x95\x41\x45\x6e\x55\x88\xf4\xe7\xf8\x84\x89\xcd\x93\xb4\x46\x4a\xa2\xf6\x5a\x71\xea\xf6\x8f\xcb\xa7\x5a\x4f\x27\x6a\xaf\x2d\xcc\xde\xfe\x51\x5b\xba\xce\x64\x7a\x9c\xe1\xf7\xc8\xbf\xb4\xbd\xef\x13\x47\x49\xd4\x40\xed\xa6\xbe\xc5\x0d\xa7\xde\xbe\xa0\xcd\xc7\x7c\xe3\x53\xeb\xf6\xbb\x35\xb6\x33\xcd\x8a\xb7\x71\x83\xe2\xf9\xe7\x9a\x1a\xb8\x96\x33\x0d\xbf\xd3\x8e\x8d\xda\x5e\xb5\xaa\xb1\xe1\x50\x03\x59\x0f\xe4\x6e\xc5\xbb\x57\xc8\x21\x54\x4c\x26\x1b\x85\xfa\xc6\xce\xb5\xad\xde\x47\x23\xe9\x61\xad\xa6\xad\x68\x71\x2e\xcc\x54\x7b\xf9\x30\xbc\x74\xae\xcb\x6c\xa6\xcb\x0c\x2d\x67\x6f\xbf\x87\x41\xa9\x20\x49\x66\x0f\x4a\x9d\x5a\x4b\x55\x50\x10\x40\x14\xc4\x99\x15\xb3\xbc\xbe\xe0\xb2\x02\xff\xfc\x42\x34\x52\xad\x6a\x4d\xdb\xb3\x03\xe0\x56\x4b\xdb\x7c\xab\x9d\xdf\x45\xb6\x16\x58\xde\xd0\x9f\x6a\x48\x16\x89\x40\x20\x36\x16\x79\xa3\x8f\x1d\x2f\x7a\xcf\x82\xc0\xba\x2b\x6f\xbe\x25\x51\x3f\x08\xee\x66\x91\x5f\x19\xdb\xd1\x21\x96\xff\x82\xf0\xe5\xe4\x9e\xfb\xd4\xbe\x62\x34\xb1\xe3\xf6\x70\x27\x71\x62\xdf\x6a\x64\xe7\xe0\x16\x29\xa5\xb1\x85\x4f\x00\x49\x5b\xc3\x56\x14\x05\xce\xf9\x9c\xae\x89\xf5\xcf\x2f\x2a\x32\x21\x1c\x76\x04\x24\x49\xe4\x83\xa6\x5b\x99\x5a\xb3\xca\xc0\x72\x5d\xd1\xb8\xae\xdd\x82\x3c\xbf\xad\x44\x3e\x25\x35\x85\x3e\xcb\xed\xc4\x95\xcc\x9d\x90\xfe\xf9\xc5\xa2\xc4\xc1\x43\x07\x77\x46\xca\x99\xab\xe1\xc2\x78\xe3\xb9\x7a\x76\x76\x76\x56\x1d\xeb\x2b\xd5\x95\x55\xf5\x65\xf5\x8f\xff\xb7\xfa\xe7\x7f\xfd\x9f\xaa\xae\x51\x73\x85\xb5\xc3\xb2\x68\x07\xd1\x5d\x23\xf0\xa7\xb4\x06\x4c\x6c\x3b\x12\xa4\xe1\x07\x7a\x32\x7c\x5d\xb3\xc2\xe3\xc3\x4e\xea\x0e\x34\x10\x9a\x38\xda\x8f\xb1\x08\x85\xe2\xbb\x81\x3d\x12\xe3\xcb\x22\x29\xf4\xa7\x36\x61\x29\x4e\xa1\x8a\x6b\x4e\x1f\xca\x85\x7a\x92\x2d\x1d\x2b\x4a\x54\xc1\xe0\x2e\xb7\x63\xbb\xb8\x6a\x2c\x5b\x19\x84\xe1\xe1\xdc\xb5\xd5\x4a\x83\xb9\x9b\x66\xdc\xb8\xbb\x40\xf0\x58\x6a\x42\x7d\x97\x00\x09\x9f\xf8\x01\xaa\x85\x50\x45\x45\xbe\x39\xb2\x6f\xa3\x4c\x3c\xe8\xb3\x9d\xa3\x0a\x60\xcc\xea\x68\xe1\x79\x35\x7b\xd9\x02\xee\xa4\x4b\xfc\x63\xeb\xc5\x70\x62\x3b\x44\x93\xbd\x03\x20\x60\x89\x7d\x31\xb9\xc8\x14\x49\x4d\xe9\x64\xb3\x4a\xa7\x95\x60\x5e\xf9\xef\xf1\x2c\xe3\xc6\x93\x59\xed\x81\x0a\x52\xb0\x8f\xab\x8b\x92\xf2\x16\x16\x89\xc1\x1f\x35\x71\xef\x80\x32\xac\x24\x43\x33\x4c\x8a\x2b\xa3\x00\x06\xd6\x3c\xb4\xe3\x40\x06\xed\x68\xe2\xd0\x55\x92\xf6\xad\x35\x9d\xb9\x20\xc3\x3d\x6d\x62\xcd\x66\xb6\x07\xa8\xb3\x3c\xa5\x3a\xb4\x43\x42\xa0\x78\x8a\xff\xb3\x87\xd2\x8c\x41\x11\x6d\x79\x1a\x1d\xf3\xa2\x34\xbe\x95\x0c\xa9\xa9\x5d\x4f\x9f\xc3\x87\x29\x22\xe4\xff\xe3\x1f\xc4\x20\x29\x2d\x05\x7a\x18\xd8\x53\xff\xda\x0e\xb5\x79\xe0\x96\x57\xb5\x70\xe2\xe0\x12\x00\xad\xc9\xe8\x05\x39\x7b\x14\xd1\x80\xe9\xa6\xcb\xd5\xf2\xef\xdb\x67\x67\xe5\x3f\x56\xfe\x79\x56\xfa\xf3\xf7\xd5\x72\xe5\xbf\x7e\x5f\x2d\xff\xbe\x2d\x9e\xcf\xce\x56\x57\xab\xab\x7f\x6c\xaa\x71\xdd\xbf\xa9\x97\x57\x2a\x9d\x57\x0c\x19\x25\x46\x38\xa6\xfc\x34\xda\x8f\x0f\x3b\xa1\xe6\x78\x1a\xef\xf7\x31\xe8\x42\xc6\x12\x49\x99\x08\xef\xd7\xb5\xd0\x07\x66\x0f\x61\xc1\xd3\xc2\x68\x3e\x1a\xc5\x08\x23\xa9\x7d\x6e\x85\xb6\xe0\xaa\x58\x7c\xc5\xed\xc5\x24\x20\x87\x1d\x43\xaf\x69\x2b\x55\x58\xfd\x12\x91\x92\x4d\xe8\x88\x03\x92\x9f\x8b\x93\xea\x7b\x13\xcb\x1b\xd8\x86\x3f\xbc\x33\xac\xc1\xe5\x38\xf0\xe7\xde\xb0\x9c\x52\x32\xcf\xc1\xd0\x5b\x20\xf8\x56\xfe\xaf\xf3\xf1\xba\xa8\x63\x58\x91\x3f\x56\x74\x6d\xe5\x3c\xae\x6d\xdd\x99\x5a\x63\x5b\x9e\xef\x57\x1c\x41\xfe\xb5\x1d\xb8\xd6\xdd\x4b\x6b\xdf\xde\xb6\x46\x91\x1d\x3c\xd3\x48\xd2\xcc\x8c\x2e\x8b\x50\x4e\x26\xc0\x84\x9e\x8f\xe3\x99\x94\x00\x14\x4b\xad\xde\x2f\x21\xae\x36\x28\xc8\xe0\xef\x4c\xc7\x62\x95\x6d\x41\xc3\x65\xe5\xfe\x84\xe9\xb8\xe2\x7b\x60\xd8\xc6\x26\x7f\xc1\x65\x09\x4a\xb0\xc8\x47\x85\x9e\xfa\x36\x54\x0d\x9a\x58\xe8\xcf\x83\x01\xd2\xd1\xcd\xc4\x8a\xec\x6b\x3b\xa0\xeb\xfa\x02\x57\x68\x49\x61\xa8\x4d\x7c\x77\x98\xe4\xe2\x86\x86\xc3\x60\x00\x14\x32\x8e\xe3\x71\x62\x0b\x8f\x46\x2d\x50\xfe\xbf\x77\xe8\x62\x80\x45\xe3\x97\x57\xba\xc0\xaa\x22\xc7\x5d\x74\x49\x83\x48\x3f\x1e\x2f\xb8\x63\x3b\x32\x5d\x0c\x11\x30\xee\x5a\xc3\xf2\x8a\x42\x93\x2b\xab\x95\xd8\x0f\x4e\xda\x68\xfc\xe5\x63\x2c\xf7\x52\x09\xb5\xb1\x8d\x45\xd7\x26\xe3\x1d\x37\x7b\xe6\xd1\x49\xef\xb0\xfd\x1d\x5f\x2d\x7f\xd5\xf1\xc2\x1b\x8c\xb3\x1c\xbf\xe0\x5a\x1a\xea\x59\x9c\x09\xa5\x22\xd4\x6f\x55\x3c\x63\x99\x74\x26\x71\x15\x5e\x46\x62\xc5\x53\x2e\x2f\xc2\xf9\xe1\x2b\x87\x32\x35\x2f\x38\x38\xb3\x54\x33\x29\xac\xae\x2e\x16\x96\x58\xd9\xbf\x55\x16\xf4\x8e\xe3\xd9\x4b\x04\x88\xa7\xc1\x94\xbe\x35\x03\x67\xb8\xb0\x14\x7c\xfc\x05\x51\xe1\x2f\x0d\x94\x7f\x2a\xca\x3f\x75\xe1\x76\x14\xdc\xe5\x9c\xbf\x79\xcf\xef\xb3\xc1\xdf\x2a\xbf\xc4\x8c\xd2\x21\xdf\x64\xf9\x81\x88\xa2\x20\x2b\x92\x70\xc2\x40\x2f\x7e\x22\x45\x4e\x32\x8a\x9c\x87\x36\x75\xf6\x04\x27\xca\x89\xec\xa9\x66\xb9\xce\xd8\xab\x9d\x95\x28\xd3\xb7\x12\x5b\x91\xd9\xf2\x8b\x1d\xb3\x05\xbb\x7e\x3b\x19\xba\xc9\x6c\x00\xcf\xc4\xfb\xd4\x51\x19\x65\xbf\x2d\xdb\xd2\x6f\x4f\xb4\x94\xdb\xb6\x7c\x36\xb2\x25\x1b\x4c\x98\x8a\x50\x5b\x38\x7a\x51\xfb\x73\xb9\x48\x71\x56\x2b\x24\x5b\x9e\xca\x57\xd3\xc0\x6b\x52\x61\x19\x92\xcc\x1b\xf9\x5a\x68\x07\xd7\xe8\x5f\xce\xa6\x24\x58\xb0\x45\xa9\x8e\x35\xdb\xf1\xec\x9e\x6a\x76\x20\x0b\x77\x4d\xf3\x99\x43\x16\xb5\x5e\x14\x59\x50\x98\xe3\xf9\x5f\x96\x9d\xb6\x28\x89\x08\x72\xc4\xaf\x4a\x3b\x8b\x95\x3d\x17\x15\x70\x08\x40\x05\xb3\x9a\x0b\x00\x48\x6f\xc2\xc7\x0c\xb1\x83\x92\x32\x9d\x48\x42\xc8\x8f\xbc\x2b\x1d\xe7\x70\xc1\x5e\xef\x5f\xe8\x1d\x27\x46\x5d\xca\x3b\x1e\x5f\x3d\xf7\x72\xef\xb8\x18\xf5\x2f\xde\x0b\x8d\x49\x4b\x42\xe1\x0b\xb0\x94\xc2\x7f\xc9\xc9\xaf\x97\x2c\x9a\x14\xa3\xc1\x7d\x2f\x4a\x36\x0a\x17\x1d\x89\x12\x50\x99\xed\x4a\xda\x6d\x4b\xb6\x0f\xf0\x79\x99\xd3\x3e\x81\xef\x27\x87\x69\x92\x73\x2d\x23\xd7\xbe\x95\xa7\x5d\xe0\xf7\xb6\xb6\x79\x16\x9f\x6e\x19\x50\x17\x5e\x7c\x13\xc5\x99\x92\xe8\x10\x17\xe0\xa2\xf3\x31\xeb\xaf\x65\xca\x80\x8b\x79\x18\x39\xa3\x3b\x2e\x5b\xc3\x4e\xad\x87\x91\x15\x44\x2b\xe9\xac\x02\x3f\x9b\x18\xb1\xf0\x84\x50\xd1\x25\x1a\x53\xeb\xf6\x84\x5e\x6f\x6d\x6c\xe4\x0e\x03\x15\x20\x4d\x3c\xa1\x5c\x6f\x45\xf6\x34\xcc\xdc\xbe\x91\x39\xa2\x3f\xf2\xfd\xc8\x86\x15\x77\x38\x1f\x44\x22\xfd\x07\xa5\xe1\xfb\xa4\xed\x84\x51\xe0\x7b\xe3\x4f\x0f\x18\xd6\xbd\x53\x15\x8f\x4a\xe9\xdc\x26\x6a\x4d\x2b\xe3\xe6\x6c\x8e\xd3\xa9\x57\xf2\x5c\x81\x1c\x2f\xee\xaf\x76\xfc\xb1\x9f\x7e\x23\x76\x5c\xe5\x19\xae\x54\x70\xc5\x60\xe2\xb8\xc3\xc0\xf6\x74\xa5\xc6\xbd\x24\xd9\x2d\x91\x2c\xf2\xbd\x78\xb3\x6f\xcd\x70\x80\xf1\x8b\x4a\xa5\x82\x8e\x22\x44\x87\x30\xf4\xc3\x8f\xd9\xbc\x7a\xe2\xca\x5e\xd1\x3f\xed\x77\xd4\x24\x34\xe1\x9b\xdf\x01\x7b\x33\x0c\x06\xb5\x87\x59\xe0\xe3\x35\xae\xb6\x77\x5d\xd9\x3f\x36\x3a\x2d\xfe\xfd\xf8\xb0\x83\x6e\x10\x90\x68\xce\x00\x2f\x75\xaf\x84\xd7\xe3\x95\xfc\xb9\x5f\x7f\xec\x9f\x95\x34\xcb\x85\x15\xcc\xbf\xf1\xb8\xeb\xcf\x87\x67\xa5\xea\xa7\x54\x67\x04\xed\x6b\xb5\x78\x8b\xfb\x77\x6d\x47\xf0\x5b\xf5\x93\xb6\xad\x95\xd3\x58\xd3\x7e\x8f\x71\xa4\x6d\xcb\xb8\x52\x41\xd2\x9f\x1e\xe4\xa7\xc7\x9d\x34\x77\x7f\xca\x78\xb3\x53\x0a\x9e\x5c\x5d\x03\xc9\x21\xaa\xc2\x90\x50\x9a\xfa\x96\x36\xa5\x28\x28\x76\xe0\xbb\xf3\xa9\x77\x56\xd2\x04\x13\xd4\x1e\x36\xe2\x15\x34\x1b\xb2\x85\xf2\xb4\x9c\x1c\xee\xf6\x23\x3d\x81\x59\x7d\xc4\x73\xce\x38\x7b\x4a\x0a\xcb\xe5\x63\x1b\x17\x81\x0a\x1c\x3f\x66\x53\xb7\x8f\xfd\xd4\x52\xff\x20\xe1\x16\xad\xbd\x99\x27\x62\xae\xec\xb4\xd3\xdb\xf5\xf8\xf4\xc1\x53\x09\xff\xd4\xd6\x53\x7a\x04\x55\x52\x09\x5d\x7f\x6c\x79\x69\xfd\x25\xa7\x48\xec\x00\xff\x7e\x92\x04\xb6\x53\xc5\x47\x6d\x5d\xb3\xb4\xd0\x1a\xd9\xda\xc4\x9f\xda\xe8\x83\xb5\x5c\x97\xa2\xa4\x87\x56\x64\x15\x5c\x96\x91\x8f\xd5\xa7\x4c\xe1\x83\xc9\xdc\xbb\x0c\x81\xe3\x73\xd2\xa4\x4c\xdf\x52\xd7\xe3\x3f\x16\x5e\xb5\xb0\x53\xa5\xc2\x9f\x8a\x95\x17\xa4\xce\xac\xb8\xa9\x88\xa1\x4a\x2d\x03\x7b\xa7\x70\xad\x7a\x01\x64\x9a\x49\xd4\x2f\x71\x14\x17\x5d\x12\xb2\xa8\xad\x1f\x8d\x3e\xc8\xf4\x28\x01\x3e\xf7\x7d\xb7\xb0\x6b\x05\x20\x05\xb1\x7d\xf1\x37\xc9\xd2\xea\x47\xcf\x1f\xda\xd9\x6e\xc4\x64\x98\x8f\x10\xc4\xef\x89\xa0\x5c\xa0\x07\x2a\xb2\x35\x0f\xb1\xfc\xe9\xfd\x2c\x66\x51\x2d\xfb\x53\x2f\x91\x8b\xed\xd0\xf7\xa3\xd2\x76\xa9\xf4\xf8\xff\x05\x00\x00\xff\xff\x55\xbb\xb3\xa8\x82\xf0\x00\x00") -// FileIdentifierStaticJsContainersWelcome82ba06c6ChunkJs is "identifier/static/js/containers-welcome.82ba06c6.chunk.js" -var FileIdentifierStaticJsContainersWelcome82ba06c6ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x6b\x8f\xdb\x36\xd6\xfe\xfe\xfe\x0a\x0d\x5f\x6c\x20\xa2\x1c\xc6\x9e\x5b\x33\x72\x95\x00\x4d\x53\x74\xb7\x69\x77\x90\xa4\xe8\x2e\x06\x41\x40\x4b\x47\x32\x6b\x89\x54\x49\xca\xce\x40\xd1\x7f\x5f\xf0\x22\x59\x9e\x51\x92\x29\x16\xfb\xc5\x96\xc8\xc3\x73\xc8\x73\x79\x9e\x43\xc5\x66\xc3\x35\xdd\xc3\xba\x61\xd9\xf6\x1f\x5a\x8a\x86\xe7\x20\x0c\x2f\x38\xa8\xf4\x0b\x73\x9f\x3e\xdd\xbe\xc7\xb4\x69\xf5\x26\xbe\xbd\x3d\x7f\x4f\xba\xe5\x79\x52\xb4\x22\x33\x5c\x8a\x18\x88\x21\x0c\x77\xa8\xd5\x10\x69\xa3\x78\x66\xd0\x8a\xd1\x3c\x36\x04\x15\x88\xc4\xa3\x1c\xee\x14\x98\x56\x89\x48\xf6\x18\x93\x20\x01\xb3\x12\x7a\x22\x91\xcf\x4a\x64\x13\x09\x36\x2b\xc1\x27\x12\xd9\xac\x44\x35\x91\x58\xcf\x4a\xb4\x13\x89\xcd\xac\x44\x3d\x91\x28\x67\x25\x8a\x1e\xe3\xd5\x8e\xa9\x48\xa4\x2c\x5e\x9e\x61\xa2\x52\x16\x9f\x2d\x31\x91\x29\xda\x4a\x21\x20\x33\x14\x94\x92\x8a\x56\xb2\xe4\x82\xee\x58\xc5\x73\x66\x80\xd6\x5c\x6b\x2e\xca\xdf\x34\x28\xc1\x6a\x40\x44\x3f\x6e\xc1\x0d\xd3\x7a\x2f\x55\x8e\x48\x36\xbf\xa0\x60\xbc\x82\x1c\x11\x1e\xa6\x87\xd9\x8d\x31\x0d\x15\x60\xf6\x52\x6d\x5f\xd9\x11\x44\xaa\xfb\x1a\x9c\x4c\x2b\xe0\x63\x03\x99\x81\xfc\x0d\xe8\x46\x0a\x0d\x6f\x0d\x33\xad\x46\xa4\xfd\x0b\xf2\x80\x48\x9e\xfe\x73\xfd\x07\x64\x26\x16\x94\xe1\xb8\xbb\x95\xef\x93\x8e\xe7\x89\x24\x39\x14\xac\xad\xcc\x2f\xa0\x35\x2b\x21\x41\xaf\x84\x01\x15\x31\x11\xb5\x83\x37\x7a\x72\xab\xbd\xb4\xfe\x9c\x74\xd4\x0c\x9e\xe8\xc9\x6d\xe6\x85\xb3\x07\xc2\xaf\x65\x29\x45\xe4\x7d\x42\xa3\x9b\x0a\x98\x86\x68\x07\x8a\x17\x77\xd1\x9d\x6c\x55\x94\x29\x70\x85\xc0\x2a\x1d\x31\x91\x47\x46\xdd\x45\xac\x64\x5c\x50\xab\x97\x7b\xbd\xfc\x81\xde\x5f\xbd\x23\x23\xef\x87\x41\x71\xb6\x81\x6c\x1b\xf4\x7a\x47\x71\x29\x66\xd4\x56\x5e\x6d\xf5\x40\xed\x6f\xa3\x2f\xa3\x9f\xde\xbd\xbb\x89\x54\xf0\x68\x12\x75\xda\x05\xa1\xff\xcb\xb6\x5a\x6f\xab\xfd\x92\xad\xc1\x4c\x64\x8d\x0c\xc6\xa0\x47\x7d\x8f\x57\x59\xc5\xb4\x8e\xea\x08\x3e\x1a\x10\xb9\x8e\x5c\xee\x74\x99\x14\xda\xa8\x36\x33\x52\x59\x88\xc0\x9d\x6e\x1b\x50\x31\x60\xe2\x80\x66\xc7\xaa\x16\x74\xba\x93\x3c\x8f\x16\xc4\xff\x9d\xa4\xa9\x5b\x4b\x33\xd6\x98\x56\xd9\x2c\xc9\xb6\xef\x14\xcb\xe0\xc9\x93\xcf\x4c\x38\x44\x23\xf5\xb1\x52\xd3\xf7\xb6\xe0\x8a\x21\xbb\x14\xcd\x70\x7c\x28\x4d\xc0\x9d\x9d\x36\x29\xf8\x24\x25\x2c\x05\xca\x85\xa9\x56\xbc\x88\x4f\x0c\x0e\x85\x2b\xda\xaa\x0a\x85\x6b\x28\xcf\x5f\xd8\x9f\xc4\xd0\xda\x7b\x87\xa8\xa0\x9d\x32\xad\x79\x29\xe2\xae\x27\xd6\x8b\xe2\xbe\x17\xc3\xda\xb0\x2c\xf1\x27\xed\x49\x7e\x2b\xde\xe3\x55\x30\xc5\x68\x21\x55\xcd\x86\x35\xb1\x22\x26\x9c\x05\xf7\x18\xf7\x64\x79\xfd\x28\xb8\x9d\x87\xb9\xfa\xab\x50\x59\x7c\x15\x6e\x9b\xaf\x42\x65\x39\x85\xb9\x2b\x0f\x73\x54\xc4\xc2\xe2\x1c\x8b\x2f\xce\x30\xd1\xf6\xff\x1c\x93\xcc\xe2\xe0\x39\x26\xdc\xbe\x5f\x60\x52\x59\x3c\xbc\xc2\xab\x41\x67\xd4\xda\x08\x79\xb5\x9d\xb9\x6b\x20\xa9\xe8\x9a\xb8\x48\x25\xd0\xf7\xa3\x58\x1e\xdf\x97\xda\x4e\x66\xeb\x69\x98\x75\x9b\x65\xa0\xb5\x0b\xf4\x80\x20\x44\xa4\x40\x73\xae\x9b\x8a\xdd\xfd\xca\x6a\x58\x1d\xeb\xca\x88\xcf\xf4\x93\x45\x9a\xa6\x86\x0c\xab\x12\x46\x26\x6b\x12\x41\x36\x50\x55\xf2\x68\x5f\xc5\xc4\xb1\x93\xa0\xe1\x0e\xe2\x3c\x0e\x4e\x62\xa9\x89\x31\xcd\x64\x5d\x4b\x41\x44\xca\x68\x51\xc9\xbd\xf5\x04\xfd\xb3\x05\x75\x47\xc6\xd4\xd5\x16\x18\xc3\xb3\xb4\xcf\x82\x54\x78\xcc\x1b\x45\x19\x6d\xa4\x36\x31\xa2\x4f\x0f\x6c\xfd\xf4\xc3\x53\xb7\x2b\x44\x0a\xd2\x6d\x80\xe5\xa0\x74\xd2\xa1\x9f\x65\xc3\x84\x3c\xfd\xd9\x43\xc1\xe9\xbf\xde\xbe\xf9\x11\x25\x68\x69\x4b\x98\x9a\x0d\x88\x18\xd2\xe7\x9d\xde\x73\x93\x6d\x62\xa0\x1e\x4c\x70\x97\x59\x24\x39\x5b\x2c\x92\x60\x12\x68\xce\x0c\x5b\x85\xe1\x8b\x30\xdc\x05\x0f\x27\x27\xcb\xe0\x37\xa0\xc1\xf2\x2d\xda\x7a\xc3\x81\x18\x4e\xdd\x3c\x7a\xdf\xaf\x42\xa1\x24\x66\xa3\xe4\x3e\x12\xb0\x8f\x32\xba\x89\x33\x9a\x11\xc0\xe3\xa6\x4c\xfa\xbc\xe3\x45\x6c\xdc\x86\xe0\x24\x4d\x0b\xff\x84\xef\xaf\x5a\x13\x33\xfa\x05\xe2\x3a\x36\x18\x93\x1b\x25\x6b\xae\x81\x2a\xd0\xb2\xda\x41\x6c\x70\x8f\x69\xc6\xec\x09\xad\x5e\x33\x78\x99\x5b\xcf\x1a\x4c\x20\x6e\xed\xba\x1e\x4f\xc2\xd9\xcc\x85\x73\x1c\xb2\x2b\x2c\x50\x60\xbb\xb8\x88\xf1\x74\x65\x39\xbf\xd2\xa7\x01\x81\x78\x48\x35\xde\xfb\xa4\x30\x47\x41\xef\xfa\xaf\x87\xb9\x92\xa5\x2c\x0a\x44\xcc\xff\x2c\xce\x8f\x8a\x11\xf3\x31\x62\x63\x8c\xcc\x67\x63\xc4\x02\x48\x1c\x22\x15\x8b\xd4\xd5\x18\x1b\xab\x74\xf0\x4b\x1e\x52\x49\xf4\x33\xa1\x64\x8f\x0f\x65\x4f\xce\x17\x57\x5f\x03\x50\x15\x9b\x03\x7e\x5d\xde\x83\xaf\xe5\x95\x87\xaf\xeb\xeb\x00\x5f\x4b\x0f\x5f\x67\xcf\xae\x03\x7e\x3d\x7b\x86\x49\x6b\x1f\xae\x2f\x31\xc9\xad\x8a\x4b\x4c\x6a\x2b\x7a\x3d\x10\x64\x31\x12\xa4\x8d\xe7\x4d\xab\xe0\xa5\xac\x1b\x29\x40\x98\x4e\x81\xc8\x41\xc5\x1e\xb1\xc0\xb7\xe2\x8d\x92\x8d\x26\x16\xbe\xdc\x7a\xf0\xf0\xe5\x2a\x9b\x88\xd4\x26\x9d\xf5\xda\x34\x47\x32\x05\xcc\xc0\xab\x0a\x6a\x10\x26\xce\x29\x23\x5d\x25\x59\xce\x45\x99\x88\x9e\x3c\x94\xa8\xac\xc4\x8e\x29\xce\x84\x49\xd0\xe6\x12\x91\x6c\xd8\x51\x82\x36\xe7\x88\x38\xc3\x0e\xe8\x90\xcc\x4e\x2b\x5e\x6e\x0c\x9a\x53\xa4\xad\x22\x9e\x27\x63\xf3\xb7\x87\x2a\x93\xb5\xc7\x80\x8a\x0b\xdb\xea\xdd\xeb\x2d\x7e\xf7\x12\x51\x37\x81\xd3\x1e\x11\xcf\x7a\xc9\x74\x34\x61\x53\x98\xee\x6d\x32\x7c\xed\x28\xba\x5d\x1b\x6e\x2a\x58\x4e\x8f\x60\xa8\x6e\xd7\x3f\xb9\x32\xf9\x06\x45\x93\xf3\xb0\x91\x13\x3e\xab\xb9\x6c\x8d\x01\xf5\xbd\x34\x46\xd6\xc9\xc9\xe2\xbf\x77\x4c\x68\x07\x1e\xfa\xe5\xdf\xb2\x8d\x98\x82\xc8\xf6\x14\x90\x47\x5c\x44\xa7\x11\xdb\x83\x96\x35\x9c\xa0\xf9\xb3\xb7\x94\x11\x9b\x0e\x33\x53\xdc\xda\xcf\x64\x25\x55\x82\x34\x64\x52\xe4\x4c\xdd\x1d\x3b\x65\xdd\x1a\x23\x05\x19\x7d\x97\x49\x61\x18\x17\xf6\x82\x20\xc5\xcb\x8a\x67\xdb\x04\xd2\xe7\x2e\x23\x3d\xdc\xc4\x80\xff\xd2\x51\xed\x49\x64\x6b\xbe\x77\x76\x68\xc5\xd6\x50\x3d\x3c\xf6\x5b\x5e\x8a\x48\xb6\xc6\x1e\x11\xe3\x7e\xb4\xd4\x01\x6d\x14\xec\x40\x98\x1f\xfc\x8a\x38\xb4\x7a\xae\x3a\x5c\x62\x38\x0c\x08\xd5\x5f\xd3\x35\x8e\xf1\x04\xe7\x3c\xae\x4e\x56\x6c\xb8\x36\x52\xdd\xad\xc6\xa6\xe0\xc9\x13\xe3\x6f\xb6\x68\x82\xad\xc8\x01\x87\x5d\xdc\xa4\x23\xfb\xae\xb1\x55\x19\x77\x81\xf2\x03\x7d\xfb\x8a\xec\xf1\x48\xd3\x99\x45\x20\x27\xe8\x5d\x9b\x74\x35\x53\x25\x17\x09\x50\xdd\xb0\x8c\x8b\x32\x5e\x62\x52\x73\xf1\x3b\xcf\xcd\x26\x59\x2e\x16\x3d\x19\x33\x73\x10\x0e\xa9\x76\x58\x72\x69\xe1\x16\xc7\x05\xc6\x43\xb7\x17\x5c\xf8\xd9\x7e\xad\x27\x17\x67\x5f\x46\xbd\x91\xa9\x42\x83\xe2\x3b\x93\xae\x5f\x19\xeb\xac\xba\x31\x4f\x9e\xc4\x2c\x3c\xa6\xc3\xd8\x80\x92\xb0\x1a\x38\xc4\x93\x07\x92\xac\x35\x1b\x94\xb8\x67\xdb\xfc\x83\x30\xe1\x4d\xf2\x3c\x43\x09\xa3\x3a\x93\x0d\x58\x72\xb0\xff\x9f\x3e\x21\x44\x18\xcd\x2a\x0e\xc2\x7c\xe0\x79\x6a\x0e\xcf\x61\x4e\x41\xce\x15\x64\xe6\x43\xab\x78\x6a\x8e\x5e\x9d\x84\x6d\xad\x3f\x18\xb9\x05\xf1\x61\xc3\x85\xdf\xed\xd1\x48\x7a\x4f\x02\x13\x43\x6b\xf6\xf1\x03\x2b\xc1\x09\x87\xe7\x74\x1c\xb5\x02\x59\xc5\x78\xad\x3f\xb8\x4d\x3a\x29\xf7\xf4\x4d\x8a\x22\xf4\xcd\xf1\x2c\x5e\xad\x15\xb0\xed\x48\x92\x1e\x95\xfb\xe1\xfe\xe0\x16\xdb\xc6\x2e\x15\x98\xb0\xfe\x8b\x2d\xb8\xf0\x01\xfb\xca\x67\x95\x69\xc0\x0e\x2d\x88\x27\xdb\xf4\x17\x66\x36\x54\x31\x91\xcb\x3a\xc6\xd4\xc8\xb7\x46\xd9\xc4\x39\xbf\xc2\x16\xf8\xb4\x7f\xfb\x16\x13\x78\xd4\x4e\x2e\x1e\x75\xe3\x98\x57\xa1\x8e\x3e\x79\x9c\x4f\x5a\x7b\x75\xb4\x6f\x05\x7f\xb6\xa0\x6d\xdc\x20\x75\xcc\xee\xae\x98\x2f\x6c\xbf\x20\xe8\x26\x16\xb6\xcb\x18\x87\x71\x72\x18\x67\xb6\x7f\xea\x7b\x72\x79\xf9\xe5\x5d\x0e\x7b\x38\x5f\xfa\xcf\x2e\x97\x8e\xce\xa9\x88\x95\xe7\xf3\x67\x17\x8e\xcf\xa9\x88\xb5\x27\xf4\xeb\xc0\xe7\x96\xe0\x1d\x9d\x3f\xbb\xf2\x74\x7e\x76\xbd\x08\x7c\x7e\x85\x49\xe1\x66\xbe\xc5\xa4\x19\xa8\xbf\x1c\x9a\x81\x8d\xb5\x72\x81\xc9\xce\x69\xdd\x60\xb2\xf7\x3d\x00\x59\x07\x57\xd8\x2d\xbd\x4a\xa7\x70\xe5\xa0\x22\x5c\x6f\x06\x4c\x71\xaf\xb6\xde\x0f\xde\x1d\x44\xc8\x80\x79\x89\xe9\x0f\x9f\xd4\x66\x49\xa1\xe3\x06\x1c\x5d\xb1\x8a\x97\x22\x41\x19\x08\x03\x0a\xf5\x64\x17\xe3\x38\x34\x10\x80\xe3\x18\xa7\xcf\x1f\x2a\x28\x1c\x75\x1c\xf1\x5c\xa3\x64\xa9\x40\x6b\xc7\x43\x83\x8e\x93\x2f\xe8\x40\x39\xdf\x21\xcf\x4d\x0f\x27\x9b\x87\x06\x3c\x91\x92\xa3\x96\xe4\x3e\xf5\xde\x3f\xcb\x43\xc5\xfc\x3e\x13\x85\x26\x68\xf8\x24\xf5\xd9\x9e\xe4\x47\xf7\x11\x28\x32\x72\xf8\x5e\x62\x1f\x35\xa8\x9d\x35\x84\xf1\xe7\xce\x70\xbc\x23\x12\xe8\xd6\x19\x9b\xdd\xdf\x9a\x96\x64\x88\xe6\xbc\xda\xd2\xa9\x6d\x8d\xfc\x51\x66\xad\x76\x0d\x87\x57\xda\x28\x5e\x3b\x06\x9f\xa3\xeb\x63\x5f\x7a\xf2\x39\x0d\x2b\x6c\xbf\x53\x9b\xd3\xea\x88\xd4\x1d\x43\xce\x11\xec\x40\x65\x7b\x9a\x5b\x3a\xed\xb1\xe3\xfc\x47\x79\xba\xe4\x82\x2a\x30\xea\xee\xcb\x7c\xff\xc6\x8a\x78\xb2\xc7\xd6\x07\xdb\xf4\xc0\xd6\xc7\x0d\xef\x9e\x9b\x8d\x6c\xcd\x6b\x59\x4a\xa2\x0e\xef\x37\x2c\xb7\x31\x25\x3a\x85\x21\xbe\xa4\xb2\x4b\x37\xbc\xca\x15\x08\x52\x0f\x7a\xac\x47\x48\x91\xc6\x40\x7f\xe0\xac\x92\xe5\x8d\xeb\xab\x81\xde\xb0\x06\x94\x7f\x99\x7e\x85\x04\x72\x8b\x82\x7d\x44\xd0\xc4\xfa\xe1\x2d\xd8\x46\x04\x05\xcb\x88\xa0\xc1\xae\x7d\x1c\xac\x22\x82\x26\x26\x11\x41\x07\x93\xe8\x3d\x76\xf0\xf1\xc2\x16\x47\x32\x53\x39\xbc\x2e\x11\xe9\xb4\xca\x12\x44\x9f\x5a\x80\xe7\x99\xbb\xee\x51\xbd\x2b\x1f\x34\xe6\x6e\x77\xac\x32\x09\x92\x7b\xf1\xb2\x92\x6d\x8e\x7a\x0b\x4a\xfa\xc5\x43\xcd\xaf\x5c\x3d\xe2\x44\xbd\x98\xb3\x9b\x0f\xbd\x64\x35\xde\x3e\xe7\xb1\xe5\xde\xc7\xaf\x21\x0d\x95\x4d\xd6\x3f\x5a\x6d\x78\x71\x77\x28\x09\x57\x21\x7f\x37\x50\xeb\xc3\x98\xe7\x72\x2e\x6d\xe5\xc8\xaa\xad\x05\x22\xa1\xd7\x49\xa6\xfd\x75\x16\xe3\xd8\x50\x25\xa5\x21\x35\xee\x49\x31\x57\x2e\x1e\x66\xba\x69\x57\xbb\x57\xac\x69\x40\xcd\x25\xed\x8c\xb4\xdd\x3d\x08\xd3\x93\x86\x94\xb3\x05\x89\x0a\x29\xdd\xae\xef\x01\x96\x1f\x3e\x1d\xba\xf9\x47\xd5\x88\x5f\x43\x75\x25\x4b\x26\x1e\x56\xc6\x77\xf6\x22\xf2\x7c\x88\xe3\x77\x4f\xdd\xab\xbd\x04\x44\x9a\x15\x10\x6d\xec\xa5\xa9\x90\x2a\x62\x55\xe5\xbf\xed\xda\x7b\xfa\xe1\xe2\xe4\x3e\x52\xd9\x5a\x0a\xd1\x33\x29\xcc\x9d\x47\x1b\x25\x6d\xde\xba\x58\x87\x9e\xce\xf4\xb6\xc5\xc4\xfd\x6a\x4b\xc3\xa6\x5c\xaa\xa6\xdd\xa4\x08\x92\x93\x25\x39\xae\x02\x3b\x32\xdc\x32\x4f\x96\xb6\x77\x64\x03\xbd\x55\x63\x27\x6c\xe3\x37\x5e\xea\x12\x54\x54\xf0\x11\x11\xfb\x9b\x2c\x7b\x12\xbc\x9f\x74\x8d\xd4\xdc\x67\x84\x82\x8a\x19\xbe\x03\x44\xf6\xae\x49\x46\xcb\xc5\xe2\x6f\xf6\xaa\xe6\x32\x46\x0f\x5d\xf2\x3b\xd9\x24\xa7\x17\x63\xc2\xbd\x0c\x8a\x9c\xfe\x53\x6d\x98\x32\x88\x34\x7e\x9b\xaf\xa1\x30\x93\x76\xfa\x1c\x0f\x13\x6f\x2c\xe7\x1c\xcd\xf4\x24\x64\x4f\xd2\x4d\xad\x93\x9a\x7d\xf4\x2d\xfb\xf9\x62\x41\x66\xcf\x32\x97\xe8\xae\x6d\xdf\xe2\xbe\x7f\x8f\x57\xff\xf7\xf4\xe9\xff\x47\x5a\xb6\x2a\x83\x5f\x58\xd3\x70\x51\xfe\xf6\xe6\x75\x3a\xd6\x8e\x3e\x1d\xee\x4c\xcf\xce\xd6\x6c\x71\x95\x5d\xd1\x6c\xd3\x8a\x2d\xfd\x43\xd3\x9a\x35\xff\x09\x00\x00\xff\xff\x8f\x66\x0d\x36\xbe\x1b\x00\x00") +// FileIdentifierStaticJsContainersWelcomeFf57a351ChunkJs is "identifier/static/js/containers-welcome.ff57a351.chunk.js" +var FileIdentifierStaticJsContainersWelcomeFf57a351ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x6d\x6f\xdc\x36\xb6\xfe\x7e\x7f\x85\xcc\x8b\x1b\x88\x28\xcd\x78\x62\x3b\x8d\x35\x55\x82\xdb\x34\x45\xef\x6d\xda\x35\xf2\xb2\xdd\x85\x11\x04\x1c\xea\x48\xc3\x58\x22\x55\x92\x9a\xc9\x40\xd1\x7f\x5f\x90\x94\x34\x1a\x5b\x7e\x29\x16\xfb\x65\x46\x22\x0f\xcf\x21\xcf\xcb\x73\x1e\x2a\xb6\x6b\x61\xe8\x16\x56\x35\xe3\xd7\xff\x6f\x94\xac\x45\x06\xd2\x8a\x5c\x80\x4e\xef\x99\xfb\xf6\xed\xea\x13\xa6\x75\x63\xd6\xf1\xd5\xd5\xe9\x27\xd2\x2e\x4e\x93\xbc\x91\xdc\x0a\x25\x63\x20\x96\x30\xdc\xa2\xc6\x40\x64\xac\x16\xdc\xa2\x25\xa3\x59\x6c\x09\xca\x11\x89\x47\x39\xdc\x6a\xb0\x8d\x96\x91\xea\x30\x26\xbd\x04\xcc\x4a\x98\x89\x44\x36\x2b\xc1\x27\x12\x6c\x56\x42\x4c\x24\xf8\xac\x44\x39\x91\x58\xcd\x4a\x34\x13\x89\xf5\xac\x44\x35\x91\x28\x66\x25\xf2\x0e\xe3\xe5\x86\xe9\x48\xa6\x2c\x5e\x3c\xc3\x44\xa7\x2c\x7e\xb6\xc0\x44\xa5\xe8\x5a\x49\x09\xdc\x52\xd0\x5a\x69\x5a\xaa\x42\x48\xba\x61\xa5\xc8\x98\x05\x5a\x09\x63\x84\x2c\x3e\x1a\xd0\x92\x55\x80\x88\x79\xdc\x82\x4b\x66\xcc\x56\xe9\x0c\x11\x3e\xbf\x20\x67\xa2\x84\x0c\x11\xd1\x4f\x0f\xb3\x6b\x6b\x6b\x2a\xc1\x6e\x95\xbe\x7e\xe3\x46\x10\x29\x6f\x6a\xf0\x32\x8d\x84\xaf\x35\x70\x0b\xd9\x3b\x30\xb5\x92\x06\xde\x5b\x66\x1b\x83\x48\xf3\x17\xe4\x01\x91\x2c\xfd\xdb\xea\x0b\x70\x1b\x4b\xca\x70\xdc\x5e\xa9\x4f\x49\x2b\xb2\x44\x91\x0c\x72\xd6\x94\xf6\x37\x30\x86\x15\x90\xa0\x37\xd2\x82\x8e\x98\x8c\x9a\xc1\x1b\x1d\xb9\x32\x41\xda\xdc\x25\x1d\xd5\x83\x27\x3a\x72\xc5\x83\x30\xbf\x25\xfc\x56\x15\x4a\x46\xc1\x27\x34\xba\x2c\x81\x19\x88\x36\xa0\x45\xbe\x8b\x76\xaa\xd1\x11\xd7\xe0\x0b\x81\x95\x26\x62\x32\x8b\xac\xde\x45\xac\x60\x42\x52\xa7\x57\x04\xbd\xe2\x96\xde\xdf\x83\x23\xa3\xe0\x87\x41\x31\x5f\x03\xbf\xee\xf5\x06\x47\x09\x25\x67\xd4\x96\x41\x6d\x79\x4b\xed\xc7\xd1\x97\xd1\x2f\x1f\x3e\x5c\x46\xba\xf7\x68\x12\xb5\xc6\x07\xa1\xfb\xcb\xb6\x9a\x60\xab\xb9\xcf\xd6\x60\x26\x72\x46\x06\x63\xd0\xa1\xae\xc3\x4b\x5e\x32\x63\xa2\x2a\x82\xaf\x16\x64\x66\x22\x9f\x3b\x2d\x57\xd2\x58\xdd\x70\xab\xb4\x83\x08\xdc\x9a\xa6\x06\x1d\x03\x26\x1e\x68\x36\xac\x6c\xc0\xa4\x1b\x25\xb2\xe8\x84\x84\xbf\xa3\x34\xf5\x6b\x29\x67\xb5\x6d\xb4\xcb\x12\x7e\xfd\x41\x33\x0e\x4f\x9e\xdc\x31\xe1\x11\x8d\x54\x87\x4a\x6d\xd7\xb9\x82\xcb\x87\xec\xd2\x94\xe3\x78\x5f\x9a\x80\x5b\x37\x6d\x53\x08\x49\x4a\x58\x0a\x54\x48\x5b\x2e\x45\x1e\x1f\x59\xdc\x17\xae\x6c\xca\xb2\x2f\x5c\x4b\x45\xf6\xca\xfd\x24\x96\x56\xc1\x3b\x44\xf7\xda\x29\x33\x46\x14\x32\x6e\x3b\xe2\xbc\x28\x6f\x7a\xb1\x5f\xdb\x2f\x4b\xc2\x49\x3b\x92\x5d\xc9\x4f\x78\xd9\x9b\x62\x34\x57\xba\x62\xc3\x9a\x58\x13\xdb\x9f\x05\x77\x18\x77\x64\x71\xf1\x28\xb8\x9d\x87\xb9\xea\x41\xa8\xcc\x1f\x84\xdb\xfa\x41\xa8\x2c\xa6\x30\xf7\x3c\xc0\x1c\x95\xb1\x74\x38\xc7\xe2\xb3\x67\x98\x18\xf7\x7f\x8a\x09\x77\x38\x78\x8a\x89\x70\xef\x67\x98\x94\x0e\x0f\x9f\xe3\xe5\xa0\x33\x6a\x5c\x84\x82\xda\xd6\xee\x6a\x48\x4a\xba\x22\x3e\x52\x09\x74\xdd\x28\x96\xc5\x37\xa5\xae\x27\xb3\xd5\x34\xcc\xa6\xe1\x1c\x8c\xf1\x81\x1e\x10\x84\xc8\x14\x68\x26\x4c\x5d\xb2\xdd\xef\xac\x82\xe5\xa1\x2e\x4e\x42\xa6\x1f\x9d\xa4\x69\x6a\xc9\xb0\x2a\x61\x64\xb2\x26\x91\x64\x0d\x65\xa9\x0e\xf6\x95\x4f\x1c\x3b\x09\x1a\x6e\x21\xce\xe2\xde\x49\x2c\xb5\x31\xa6\x5c\x55\x95\x92\x44\xa6\x8c\xe6\xa5\xda\x3a\x4f\xd0\x3f\x1b\xd0\x3b\x32\xa6\xae\x71\xc0\xd8\x3f\x2b\xf7\x2c\x49\x89\xc7\xbc\xd1\x94\xd1\x5a\x19\x1b\x23\xfa\x74\xdf\xad\x9f\x7e\x7e\xea\x77\x85\x48\x4e\xda\x35\xb0\x0c\xb4\x49\x5a\xf4\xab\xaa\x99\x54\xc7\xbf\x06\x28\x38\xfe\xc7\xfb\x77\x3f\xa3\x04\x2d\x5c\x09\x53\xbb\x06\x19\x43\xfa\xb2\x35\x5b\x61\xf9\x3a\x06\x1a\xc0\x04\xb7\xdc\x21\xc9\xb3\x93\x93\xa4\x37\x09\x34\x63\x96\x2d\xfb\xe1\xb3\x7e\xb8\xed\x3d\x9c\x1c\x2d\x7a\xbf\x01\xed\x2d\x5f\xa1\xeb\x60\xb8\x6f\x0c\xc7\x7e\x1e\x7d\xea\x96\x7d\xa1\x24\x76\xad\xd5\x36\x92\xb0\x8d\x38\x5d\xc7\x9c\x72\x02\x78\xdc\x94\x4d\x5f\xb6\x22\x8f\xad\xdf\x10\x1c\xa5\x69\x1e\x9e\xf0\xcd\x55\x2b\x62\x47\xbf\x40\x5c\xc5\x16\x63\x72\xa9\x55\x25\x0c\x50\x0d\x46\x95\x1b\x88\x2d\xee\x30\xe5\xcc\x9d\xd0\xe9\xb5\x83\x97\x85\xf3\xac\xc5\x04\xe2\xc6\xad\xeb\xf0\x24\x9c\xf5\x5c\x38\xc7\x21\xb7\xc2\x01\x05\x76\x8b\xf3\x18\x4f\x57\x16\xf3\x2b\x43\x1a\x10\x88\x87\x54\x13\x5d\x48\x0a\x7b\x10\xf4\xb6\x7b\x38\xcc\xa5\x2a\x54\x9e\x23\x62\xff\x63\x71\x7e\x54\x8c\x58\x88\x11\x1b\x63\x64\xef\x8c\x11\xeb\x41\x62\x1f\xa9\x58\xa6\xbe\xc6\xd8\x58\xa5\x83\x5f\xb2\x3e\x95\x64\x37\x13\x4a\xf6\xf8\x50\x76\xe4\xf4\xe4\x41\xbe\xaa\x63\xbb\xc7\xaf\xf3\x1b\xf0\xb5\x78\x1e\xe0\xeb\xe2\xa2\x87\xaf\x45\x80\xaf\x67\x2f\x2e\x7a\xfc\x7a\xf1\x02\x93\xc6\x3d\x5c\x9c\x63\x92\x39\x15\xe7\x98\x54\x4e\xf4\x62\x68\x90\xf9\xd8\x20\x5d\x3c\x2f\x1b\x0d\xaf\x55\x55\x2b\x09\xd2\xb6\x1a\x64\x06\x3a\x0e\x88\x05\x81\x8a\xd7\x5a\xd5\x86\x38\xf8\xf2\xeb\x21\xc0\x97\xaf\x6c\x22\x53\x97\x74\xce\x6b\xd3\x1c\xe1\x1a\x98\x85\x37\x25\x54\x20\x6d\x9c\x51\x46\xda\x52\xb1\x4c\xc8\x22\x91\x1d\xb9\x2d\x51\x3a\x89\x0d\xd3\x82\x49\x9b\xa0\xf5\x39\x22\x7c\xd8\x51\x82\xd6\xa7\x88\x78\xc3\x1e\xe8\x90\xe2\xc7\xa5\x28\xd6\x16\xcd\x29\x32\x4e\x91\xc8\x92\x91\xfc\x6d\xa1\xe4\xaa\x0a\x18\x50\x0a\xe9\xa8\xde\x0d\x6e\xf1\x47\x90\x88\xda\x09\x9c\x76\x88\x84\xae\x97\x4c\x47\x13\x36\x85\xe9\xce\x25\xc3\x43\x47\x31\xcd\xca\x0a\x5b\xc2\x62\x7a\x04\x4b\x4d\xb3\xfa\xc5\x97\xc9\x77\x28\x9a\x9c\x87\x8d\x3d\xe1\x4e\xcd\x45\x63\x2d\xe8\x1f\x95\xb5\xaa\x4a\x8e\x4e\xfe\x7d\xc7\xf4\x74\xe0\xb6\x5f\xfe\xa9\x9a\x88\x69\x88\x1c\xa7\x80\x2c\x12\x32\x3a\x8e\xd8\x16\x8c\xaa\xe0\x08\xcd\x9f\xbd\xa1\x8c\xb8\x74\x98\x99\x12\xce\x3e\x57\xa5\xd2\x09\x32\xc0\x95\xcc\x98\xde\x1d\x3a\x65\xd5\x58\xab\x24\x19\x7d\xc7\x95\xb4\x4c\x48\x77\x41\x50\xf2\x75\x29\xf8\x75\x02\xe9\x4b\x9f\x91\x01\x6e\x62\xc0\x7f\xe9\xa8\xee\x24\xaa\xb1\x3f\x7a\x3b\xb4\x64\x2b\x28\x6f\x1f\xfb\xbd\x28\x64\xa4\x1a\xeb\x8e\x88\x71\x37\x5a\x6a\x81\xd6\x1a\x36\x20\xed\x4f\x61\x45\xdc\x53\x3d\x5f\x1d\x3e\x31\x3c\x06\xf4\xd5\x5f\xd1\x15\x8e\xf1\x04\xe7\x02\xae\x4e\x56\xac\x85\xb1\x4a\xef\x96\x23\x29\x78\xf2\xc4\x86\x9b\x2d\x9a\x60\x2b\xf2\xc0\xe1\x16\xd7\xe9\xd8\x7d\x57\xd8\xa9\x8c\xdb\xbe\xe5\xf7\xed\x3b\x54\x64\x87\xc7\x36\xcd\x1d\x02\x79\xc1\xe0\xda\xa4\xad\x98\x2e\x84\x4c\x80\x9a\x9a\x71\x21\x8b\x78\x81\x49\x25\xe4\x1f\x22\xb3\xeb\x64\x71\x72\xd2\x91\x31\x33\x07\xe1\x3e\xd5\xf6\x4b\xce\x1d\xdc\xe2\x38\xc7\x78\x60\x7b\xbd\x0b\xef\xe4\x6b\x1d\x39\x7b\x76\x3f\xea\x8d\x9d\xaa\x27\x28\x81\x99\xb4\xdd\xd2\x3a\x67\x55\xb5\x7d\xf2\x24\x66\xfd\x63\x3a\x8c\x0d\x28\x09\xcb\xa1\x87\x84\xe6\x81\x14\x6b\xec\x1a\x25\xfe\xd9\x91\x7f\x90\xb6\x7f\x53\x22\xe3\x28\x61\xd4\x70\x55\x83\x6b\x0e\xee\xff\xdb\x37\x84\x08\xa3\xbc\x14\x20\xed\x67\x91\xa5\x76\xff\xdc\xcf\x69\xc8\x84\x06\x6e\x3f\x37\x5a\xa4\xf6\xe0\xd5\x4b\x38\x6a\xfd\xd9\xaa\x6b\x90\x9f\xd7\x42\x86\xdd\x1e\x8c\xa4\x37\x24\x30\xb1\xb4\x62\x5f\x3f\xb3\x02\xbc\x70\xff\x9c\x8e\xa3\x4e\x80\x97\x4c\x54\xe6\xb3\xdf\xa4\x97\xf2\x4f\xdf\xa5\x28\x42\xdf\x1d\xce\xe2\xe5\x4a\x03\xbb\x1e\x9b\x64\x40\xe5\x6e\xb8\x3f\xf8\xc5\x8e\xd8\xa5\x12\x13\xd6\xdd\x4b\xc1\x65\x08\xd8\x03\x6d\x6a\x1a\xb0\x81\xdd\xba\xee\xfa\x51\x48\xfb\xe2\x7f\xb5\x66\x3b\xd7\xaa\x86\x96\xc0\xf5\xae\xb6\x8a\x16\x60\xdf\x31\x99\xa9\xea\xef\x1e\x5b\x7d\x73\x0c\xfd\x39\xf5\x4b\x5c\x5c\xad\x72\x3d\x97\x56\xac\xa6\x9c\x95\x65\x6c\x09\xa4\x2f\x81\x5a\xf5\xde\x6a\x9f\xb0\xcf\x31\xa6\x5f\x94\x90\x31\x42\x98\xc0\xa3\xce\x72\xf6\xa8\x3b\xcb\xbc\x0a\x7d\xf0\xd1\xe4\x74\x72\x39\xd0\x53\xf2\x45\x35\xfc\xd9\x80\x71\x91\x87\xd4\x73\x03\x7f\x49\x7d\xe5\x7c\x22\xe9\x3a\x96\x8e\xa7\x8c\xc3\x38\xd9\x8f\x33\xc7\xc0\xba\x8e\x9c\x9f\xdf\xbf\xcb\x61\x0f\xa7\x8b\xf0\xe1\xe6\xdc\x13\x02\x2a\x63\x1d\x18\xc1\x8b\x33\xcf\x08\xa8\x8c\x4d\xa0\x04\x17\x3d\x23\x70\x14\xc1\x13\x82\x17\xcf\x03\x21\x78\x76\x71\xd2\x33\x82\xe7\x98\xe4\x7e\xe6\x7b\x4c\xea\x81\x3c\x14\x03\x9d\x58\x3b\x2b\x67\x98\x6c\xbc\xd6\x35\x26\xdb\xc0\x22\xc8\xaa\x77\x85\xdb\xd2\x2e\x9d\x02\x9e\x07\x9b\xfe\x82\x34\xa0\x92\x7f\x75\x88\xb1\xf7\xee\x20\x42\x06\xd4\x4c\x6c\xb7\xff\x28\x37\xdb\x56\x5a\x61\xc1\x37\x3c\x56\x8a\x42\x26\x88\x83\xb4\xa0\x51\x47\x36\x31\x8e\x7b\x0a\x02\x38\x8e\x71\xfa\xf2\xb6\x82\xdc\x37\x9f\x83\x4e\x59\x6b\x55\x68\x30\xc6\x77\xb2\x41\xc7\xd1\x3d\x3a\x50\x26\x36\x28\x74\xb7\xdb\x93\xf5\x6d\x03\xa1\x15\x93\x03\x52\x73\xb3\x79\xdf\x3c\xcb\x6d\xc5\xe2\x66\x2f\xeb\x69\xd4\xf0\x51\xeb\x4e\x56\xf3\xb3\xff\x8c\x14\x59\x35\x7c\x71\x71\x8f\x06\xf4\xc6\x19\xc2\xf8\xae\x33\x1c\xee\x88\xf4\x0d\xdb\x1b\x9b\xdd\xdf\x8a\x16\x64\x88\xe6\xbc\xda\xc2\xab\x6d\xac\xfa\x59\xf1\xc6\x78\xca\x12\x94\xd6\x5a\x54\x9e\x03\xcc\x35\xfc\x43\x5f\x86\xf6\x75\xdc\xaf\x70\x8c\xa9\xb2\xc7\xe5\x01\x2d\xf0\x3d\x76\xae\x45\x0f\xcd\x70\x4b\x33\xd7\x90\x3b\xec\x59\xc3\xa3\x3c\x5d\x08\x49\x35\x58\xbd\xbb\x9f\x31\xbc\x73\x22\x81\x2e\x60\xe7\x83\x37\xe9\xbe\xdf\x1f\x52\xe6\xad\xb0\x6b\xd5\xd8\xb7\xaa\x50\x44\xef\xdf\x2f\x59\xe6\x62\x4a\x4c\x0a\x43\x7c\x49\xe9\x96\xae\x45\x99\x69\x90\xa4\x1a\xf4\x38\x8f\x90\x3c\x8d\x81\xfe\x24\x58\xa9\x8a\x4b\xcf\xcc\x81\x5e\xb2\x1a\x74\x78\x99\x7e\xc7\x04\x72\x85\x7a\xfb\x88\xa0\x89\xf5\xfd\x5b\x6f\x1b\x11\xd4\x5b\x46\x04\x0d\x76\xdd\xe3\x60\x15\x11\x34\x31\x89\x08\xda\x9b\x44\x9f\xb0\x87\x8f\x57\xae\x38\x92\x99\xca\x11\x55\x81\x48\x6b\x34\x4f\x10\x7d\xea\xf0\x5e\x70\x7f\x61\xa4\x66\x53\xdc\xa2\xf6\x7e\x77\xac\xb4\x09\x52\x5b\xf9\xba\x54\x4d\x86\x3a\x07\x4a\xe6\xd5\x6d\xcd\x3b\x5f\x8f\x38\xd1\xaf\xe6\xec\x66\x03\x1b\x2d\xc7\x46\x34\x8f\x2d\x37\x3e\x9f\x0d\x69\xa8\x5d\xb2\x7e\x69\x8c\x15\xf9\x6e\x5f\x12\xbe\x42\xfe\xcf\x42\x65\xf6\x63\x81\x0d\x08\xe5\x2a\x47\x95\x4d\x25\x11\xe9\xd9\x52\x32\x65\xe8\x3c\xc6\xb1\xa5\x5a\x29\x4b\x2a\xdc\x91\x7c\xae\x5c\x02\xcc\xb4\x53\x5e\xbc\xd5\xac\xae\x41\xcf\x25\xed\x8c\xb4\xdb\x3d\x48\xdb\x91\x9a\x14\xb3\x05\x89\x72\xa5\xfc\xae\x6f\x00\x56\x18\x3e\x1e\xee\x03\x8f\xaa\x91\xb0\x86\x9a\x52\x15\x4c\xde\xae\x8c\x1f\xdc\x55\xe6\xe5\x10\xc7\x1f\x9e\xfa\x57\x77\x8d\x88\x0c\xcb\x21\x5a\xbb\x6b\x57\xae\x74\xc4\xca\x32\x7c\x1d\x76\x37\xfd\xfd\xd5\xcb\x7f\xe6\x72\xb5\xd4\x47\xcf\xa6\x30\x77\x1e\x63\xb5\x72\x79\xeb\x63\xdd\xb3\x42\xdb\x39\x92\x8a\xbb\xe5\x1b\xda\x6f\xca\xa7\x6a\xda\x4e\x8a\x20\x39\x5a\x90\xc3\x2a\x70\x23\xc3\x3d\xf5\x68\xe1\xd8\x27\x1b\xda\x5b\x39\x72\x69\x17\xbf\xf1\x5a\x98\xa0\xbc\x84\xaf\x88\xb8\xdf\x64\xd1\x91\xde\xfb\x49\x5b\x2b\x23\x42\x46\x68\x28\x99\x15\x1b\x40\x64\xeb\x69\x36\x5a\x9c\x9c\xfc\x8f\xbb\xec\xf9\x8c\x31\x03\xcf\xfe\xa0\xea\xe4\xf8\x6c\x4c\xb8\xd7\xbd\x22\xaf\xff\xd8\x58\xa6\x2d\x22\x75\xd8\xe6\x5b\xc8\xed\x84\x90\x9f\xe2\x61\xe2\x9d\xeb\x39\x07\x33\x1d\xe9\xb3\x27\x69\xa7\xd6\x49\xc5\xbe\x06\xd2\x7f\x7a\x72\x42\x66\xcf\x32\x97\xe8\x9e\xf8\xbf\xc1\x5d\xf7\x09\x2f\xff\xeb\xe9\xd3\xff\x8e\x8c\x6a\x34\x87\xdf\x58\x5d\x0b\x59\x7c\x7c\xf7\x36\x1d\x6b\xc7\x1c\x0f\xb7\xae\x3c\x3f\xff\x9e\x9d\x9e\x2f\x28\x5f\x37\xf2\x9a\x7e\x31\x8e\xdc\xfd\x2b\x00\x00\xff\xff\x68\x31\xba\x7c\x00\x1c\x00\x00") -// FileIdentifierStaticJsContainersWelcome82ba06c6ChunkJsMap is "identifier/static/js/containers-welcome.82ba06c6.chunk.js.map" -var FileIdentifierStaticJsContainersWelcome82ba06c6ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7c\xff\x77\xda\xba\xf2\xe0\xbf\xa2\xcb\xee\x7e\x80\x17\xc7\x24\xcd\xed\x37\x5a\xda\x95\x85\x21\x34\x21\x24\x40\x9a\xdb\x5b\xba\x39\x8e\x11\xe0\xc4\xd8\xd4\x36\xf9\xd2\x3c\xfe\xf7\x3d\x33\x92\x6c\xd9\x40\x93\xde\xfb\x79\x7b\xce\x7b\x67\x7f\x49\xb0\x34\x1a\x8d\x46\xf3\x4d\xa3\xb1\x1f\x4b\xb7\x3c\x8a\xbd\x30\x28\xd5\x0f\x8c\x52\x1c\x2e\x23\x97\xc7\xa5\xfa\xd7\x12\x8f\xa2\x30\x8a\x6b\x5e\x30\xe6\xf7\xe6\x75\x5c\x32\x4a\x8e\x9b\x78\x61\x10\xd7\xdc\x70\x3e\x0f\x03\xd1\xe6\x86\x41\xe2\x78\x01\x8f\xe2\xda\x05\xf7\xdd\x70\xce\xd5\xff\xd8\x8d\x38\xdf\x0e\xa5\xe1\x9d\x87\x63\xee\xc7\xb5\x19\xf7\xfd\x50\xb4\x2c\x13\xcf\x8f\xf3\x93\x6a\x4d\x6e\x38\x5f\x84\x01\x0f\x92\xb8\x76\x1c\x3a\x63\x2f\x98\xae\xb5\xf7\x79\xbc\x08\x83\xd8\xbb\xe5\x83\x94\x8c\x6f\x46\x29\x70\xe6\x62\x71\x76\xbf\xdf\xeb\x5f\x1e\xf7\xda\x9d\x93\xcb\xcf\xf4\xb8\xd3\xa4\x43\xfb\xb2\xdb\x19\x0c\x3a\x27\xed\xf3\x81\xdd\x3f\xa1\x5d\xbb\x64\xfc\x14\xec\x94\x0e\x06\x17\xbd\x7e\xb3\x00\xd6\xa2\x9d\x63\x3b\x6b\x3c\x1c\x0e\x4f\x2f\x4f\xec\xe1\x45\xaf\x7f\x74\x89\x4d\xf9\xae\xf3\x13\xfb\x8f\x53\x9b\x0d\xed\xe6\x65\xdf\x1e\x9c\xf6\x4e\x06\xf6\xe5\x60\x48\x87\xe7\x83\xe7\xc1\x01\x95\x49\xe4\x04\xb1\xef\x20\x9f\x4a\x46\x69\xcc\x27\x5e\xc0\xbb\x3c\x8e\x9d\x29\x87\x06\x6f\x2c\x5a\x9d\xa5\x9f\xc8\x66\x40\x7e\x9f\xf0\x60\xcc\xc7\x36\xec\x33\x3c\xcb\xff\x6e\x18\xc4\x49\xb4\x74\x13\x7c\x9a\xa7\xf0\xb7\x8e\xbf\x44\x74\xf1\x72\xc1\xa1\x6b\x19\x88\x99\x00\xbb\xeb\x2c\x92\x65\xc4\x07\x89\xe3\xde\x0c\x23\xc7\x85\x01\xc9\xcc\x8b\x15\xde\x6c\x5a\x2f\xb8\xe6\x6e\xd2\x09\x12\xbf\x64\x94\x16\x51\xb8\x00\x18\x2e\xe7\xf6\x44\xb3\x9c\xb4\x09\x32\xe4\x2d\x04\x21\xbd\x2b\x18\x07\x02\x11\xc7\xde\x34\x28\x19\xa5\x49\x18\xcd\x1d\x6d\x41\x11\x77\xb9\x77\xcb\xd5\x3a\x92\x87\x05\x97\xff\x62\xec\x8d\x79\x72\x08\x22\x96\x81\xaa\xc7\x99\xfc\x1f\x2f\x5d\x97\xc7\x28\x80\x31\x8f\x40\x58\x80\x71\x5e\xbc\xf0\x9d\x87\x13\xf1\x14\x27\x4e\x02\xff\xf9\x3d\x77\x97\x49\x8a\x01\x80\x9c\xc4\x9d\x95\x8c\xd2\x94\x27\x03\x09\x24\x14\x05\x48\xf5\xc3\xbb\x92\x51\xfa\xbe\xe4\xd1\x03\x4c\x5f\x32\x4a\x77\x5e\x32\x63\xbe\xc7\x83\xa4\xcf\xbf\x2f\x79\x9c\x0e\x0a\xf8\x1d\x62\x95\xcd\xb0\xe2\x7b\x2f\x04\xa2\x16\x21\x3e\xce\xb8\x33\xe6\x51\x8c\x1c\xe6\x81\x58\x1a\x08\xbb\x22\x6f\x89\x42\xe0\x24\x4e\xc9\x28\x9d\x46\xe1\xdc\x8b\x05\x77\xe2\xd0\xbf\x45\xaa\x24\xa1\x33\x27\x18\xfb\x9c\x02\x72\xc5\xb3\x88\x27\xd1\x83\x5a\x93\x5c\xe2\x71\x38\x0d\x27\x93\x92\x51\xca\xe9\x75\xc9\x28\xf5\xb9\x83\x1b\x72\xba\x8c\x38\x53\xaa\x87\x48\x82\x31\x0a\x88\xeb\x3b\x71\x8c\xcc\xf7\x85\x9a\xe2\xa0\xbc\x62\x96\x8c\xd2\xf0\x61\x11\x4e\x23\x67\x31\x7b\x40\x29\x8b\x3c\x07\xd1\xb8\x1a\x4a\xc4\xa4\x76\x60\x79\x75\x88\x1c\x00\x5e\x2f\x93\x84\x47\x56\x98\x24\xe1\xbc\x64\x94\x9a\x9e\xe3\x87\x53\xea\x2a\x4d\xb0\x96\x49\x82\xfc\x77\x43\x1f\xd7\x77\xa5\x1a\xc2\x80\xf9\x9e\x7b\x03\xab\xbc\x15\x53\xf8\x6a\x99\x8b\x08\x9b\x9a\x42\x5f\x80\x4f\x5e\x9c\x84\xb8\x6f\x8b\x65\x3c\x13\x1a\x12\x08\x59\x84\x4d\x1c\x24\x0f\x3e\x97\xbb\x81\x04\xce\x9d\x68\xea\xc1\x24\xf1\xc2\x71\xc5\xaa\xe7\x5e\x70\xe1\x8d\x93\x59\xda\x9b\x92\xbc\x88\xc2\xf9\x02\x50\xc5\xdc\xe7\x6e\xc2\xc7\x2d\x21\x2a\xb1\x1b\xa2\xf8\xba\x28\x22\x97\xa8\xc2\x11\x1f\x7b\x11\x77\x93\xcb\x65\xe4\xa1\x5a\x5f\x26\xe1\x0d\x0f\x2e\x67\x1e\xae\x60\xee\xdc\x5f\x0a\x4d\x70\x7d\xc7\x9b\xc7\x97\x0a\x47\x78\x75\x5d\x32\x4a\x5d\x07\xe7\x8f\x9c\x60\x8c\x33\x27\xe1\x20\x89\x04\x79\xf1\xf2\x2a\x56\xbf\xa3\x54\xec\xda\x11\xce\xea\x25\x1c\xc0\x1d\x5f\x68\x9d\xd8\xdd\x0e\x70\xea\xd8\x0b\xb8\x13\x9d\x46\xe1\x34\x12\x5a\xe3\x2c\x93\xb0\x15\xba\xcb\x58\x89\x92\x64\x51\xb8\x4c\x40\x8a\xb2\xa7\x53\x67\x2c\xe5\xc1\x9d\x79\xfe\x38\x42\x39\x08\x93\x19\x6e\xaa\xd8\xc5\x53\x69\x1a\x4e\x9d\x05\x8f\xd4\x83\x2f\xb0\xc4\x91\x2b\x58\x27\xb5\xd5\xf1\x13\xe9\x64\xc4\x5e\x0a\x0c\x2c\x7d\x4e\xdd\x4f\xc9\x28\x5d\x2f\xe3\xc4\x9b\x3c\xa8\x15\x75\x12\x3e\x47\x7d\x41\xce\x7a\x42\x5a\x94\xb4\xe1\x3a\xc2\x10\x77\x3a\x72\x16\xc2\xec\x49\xb3\xe0\xce\x96\xc1\x4d\x8c\x66\x28\x4c\x90\xc2\xf1\xd2\x4d\xa4\x8c\x4a\x63\xab\xc8\x96\x26\x04\x0d\x01\xbf\x17\x9a\xec\xc9\xc9\xee\xa4\x5c\x38\xa9\xd4\x0a\x09\x19\x86\x8b\x8c\xda\x6c\x29\x0b\xc1\xb9\x63\x3e\xd1\x9e\xfa\xde\x74\x26\x25\x40\x88\xd9\x37\xf8\xbd\x58\x78\xc1\x34\x2e\xd5\x4b\x0f\x6d\x4a\xa9\x11\x0e\xa8\xed\x50\xc3\xa6\x74\xc9\x8c\x1d\x46\xd9\x2d\x63\xeb\x4f\xdf\x2d\xe3\x95\x45\x59\x64\xe1\xd3\x0b\xcb\xf0\x18\x65\x07\xe2\xe9\x8e\x19\x6f\x18\x65\xf7\xe9\xb8\x57\x8c\xb6\xdf\x8a\x27\xce\x8c\x2f\x94\x72\x83\x51\xe6\x33\x83\x51\xca\x4e\x8d\x36\x02\x31\xca\x12\x76\x06\x0f\x9d\xbe\x61\x53\xf6\x69\x60\x70\x4a\xa7\x96\xf1\xdd\xa2\xb6\x6f\x21\x6c\x5f\x87\xed\x21\xec\x29\xc2\x9e\x49\xd8\x30\x83\x45\xbc\xdf\xe1\x37\x5b\x58\x5d\x84\x3d\x41\xd8\x9e\x84\xdd\x69\xa6\xb0\x27\xd0\xfd\x02\x61\xf7\xad\x23\x84\x3d\x46\xd8\xae\x84\x7d\x93\xc1\x1e\x43\xf7\x1d\xd2\x70\xcb\x3a\x08\xfb\x09\x61\x8f\x24\xec\xbc\x95\xc2\x7e\xd2\xe9\x6d\x23\xec\x21\xc2\x76\x24\xec\x1d\xa3\x47\x57\x46\x97\xd2\x2e\x33\xce\x29\x8d\x2d\x66\x74\x69\xfb\x9a\x21\x97\xbe\x20\xc7\x06\xcc\x68\x53\x16\x60\x0f\xed\xb6\x8c\x36\x6d\x7e\xb7\x8c\x23\xda\x7a\x6d\x21\xd4\xc0\x36\x7a\xb4\xf3\x60\x51\xa3\x43\xe9\x4b\xeb\x18\xc1\xba\xc6\xdc\xa2\xac\x7f\x22\x1f\x6e\x2c\x4a\x6f\x2c\x66\x1c\x51\xda\x05\x1e\xda\x33\x76\x06\x0f\x47\x9f\x8c\x1e\xa5\x03\x6a\xb4\xe9\x77\xeb\x0f\x40\xd0\x3d\x92\xbb\xe4\xd0\x99\xf5\xd2\x32\x06\x94\xee\x58\x40\x01\x3d\x33\x3a\x94\xbd\x16\x3b\x3c\xb5\x9a\xf0\x6f\x26\x88\xea\x09\x3a\x5b\xf0\x77\x68\x1b\x47\xd4\x9e\x00\xaa\x23\x80\x61\x87\x30\x43\xcf\x38\xa2\xed\x21\xe2\x1f\x03\xd4\x91\x0b\x7f\xbb\x63\xc0\xbb\xe1\xf7\xd0\x38\xa3\xec\x9a\x5d\xc0\x43\x68\x31\xc4\x20\xfe\x22\x0b\x71\x9b\x98\x0f\x4c\x60\x94\x09\x4e\x3a\x1b\x90\x38\x94\x9e\x03\xd3\xd9\x3e\xfb\x0c\x4d\x8e\x6d\x74\xa8\x3d\xb3\x10\x13\x47\x3a\x3a\x86\x4b\xa9\x0b\x7b\x42\xe7\x16\x2e\xa0\xdb\x37\xbe\x18\x53\xc6\x66\x76\xd4\x34\xbe\x77\xa9\xd3\x03\x1e\x0c\x10\xa7\x03\x72\xc2\x0e\x2c\x5c\x34\x50\x71\xdc\x43\x96\x32\x60\xcd\x49\xdf\x18\xd0\x4e\x1b\xa1\x07\xd0\x30\xce\xc0\x5a\x12\xec\x08\xf6\x7f\x80\x7b\x06\xe8\x32\xbe\x4a\xcd\x99\x33\xe4\x6b\xc0\x98\x71\x86\x3b\x6f\x53\xba\x27\xe8\xda\xb7\x6c\x18\x79\x2e\xf9\x7f\x28\xf8\xdf\x36\xbe\x50\x5b\x27\xe8\x54\x23\xa8\x07\x0b\x9d\x5b\xc0\xf6\x3f\x51\xec\x4e\x99\x71\x81\x2c\x73\x29\xa3\x87\x19\xb9\x47\x82\x5c\x64\xf0\x40\xcd\x7b\x8e\x72\x77\x2f\x76\x7a\xd0\x37\x8e\x68\xf3\x01\x26\x6a\x7f\x86\xd5\xd1\x0b\xdc\x10\x41\xf7\xe1\x9e\x65\xd8\xb4\xbd\x6f\x51\x39\xbb\x4d\x0f\x43\x6c\x5a\x58\xd4\xe8\x52\xbb\x8f\x18\x3b\x28\xaf\x4b\x21\xb6\x53\xeb\x13\xb2\x1b\x49\xbd\x6d\xe2\xe4\x1d\x94\x10\x14\xd3\x23\x63\x69\x51\x7a\x27\x80\xda\xb0\xb4\x03\x76\x84\x4c\x81\xdf\xa7\x46\x6c\x01\x26\xa3\x47\xed\x7b\x21\xd7\x47\x62\xcd\x80\xe7\x8c\x4a\xbd\x39\xa3\x6c\x22\x90\x75\xa8\x2d\x04\x51\xac\x06\x84\x54\x08\x90\xea\x4b\x19\x18\xa0\xcc\x0f\x80\x5d\xc3\x36\x36\xbb\x52\xba\xcf\x60\xaf\x1e\x2c\x6a\xbf\xb4\x8c\x33\x6a\xdb\xa8\x5b\x40\x71\xe7\x16\xe6\xa6\xee\x09\xfc\x5d\xb2\x1d\x50\x0a\xdb\xb7\x9b\x3a\x59\x20\xb7\x82\xac\x31\x20\x3a\xef\xc1\x6f\xfb\xd4\xe8\x52\x76\x6b\x65\x98\x0e\x70\xb7\xdc\x63\xf8\x1b\xb3\x37\xb0\x05\x9d\x19\x28\x78\x93\xfe\x89\xa3\x4f\x51\x70\x70\x53\xd9\xa4\x8d\x34\xa1\xac\x9c\x7d\x82\x25\x25\xd6\x11\xe2\xf2\x71\xd6\x53\x9c\xf0\x6c\x8e\xfc\xf6\xac\x00\xb0\xd9\x3f\x2c\xcf\x42\x4c\x7f\x48\x89\xee\xd1\xa3\x48\xac\x39\x64\x05\x39\x08\x2c\xa3\x4d\xdb\xd0\xd0\xa2\x54\x1b\x04\x6c\x9f\xa0\x76\x0e\x9a\x46\x97\x7a\xd6\x15\x82\x7f\xb7\x0a\xe3\x17\x30\x9e\x8d\x69\x2a\x41\x6c\x78\x66\xd8\x74\x72\x84\x9c\xfe\x2c\x85\xa5\x4b\xa7\x16\xb2\xae\xeb\xea\x52\x02\xb8\xae\x85\xd6\xdb\xba\x5c\xdc\x59\x94\x3e\x68\x72\xf1\xf2\x5f\x20\x17\xf9\xed\x3d\xf8\x57\x6e\xef\x4b\xab\xd6\x44\xc4\x16\x58\xc6\x29\xbb\xb7\x70\xb7\x6d\xa3\x4d\x6b\xd6\x9d\x05\xf6\x7e\xc7\x0a\x71\x5c\x64\x09\x51\xbc\x06\x02\xdf\x5a\xaf\xd1\x5f\x1d\x1f\xe7\x34\xfe\x82\xbe\xb2\x06\x9e\xf5\xdf\x21\x18\x03\x63\xe7\x90\xfd\x68\xbf\x14\xf4\xc7\xa9\x83\x12\x7b\xe1\x52\x36\x63\x0c\x4d\x12\xb4\xa0\xad\x0f\xad\xd7\x82\xe7\xa8\x38\xf7\xd6\x0b\x50\xfb\x26\x76\x31\x8a\x9b\x54\x83\x29\x9a\x60\x8d\xd9\x39\x5a\x86\x3f\xa6\x4c\x58\x79\xd8\x85\xcf\x33\x78\x60\x68\xa1\x99\x8d\x5e\x8b\x79\xd8\x8f\x04\x37\xc1\xa7\xde\x58\x4d\xc4\x04\x3e\x8b\xfd\xb0\x04\x90\x9d\x87\xf9\x22\x56\x2e\x37\xe8\x1c\x48\xd4\x7e\x7e\xa1\x6c\xd6\x14\xe3\x04\xe5\x8c\x32\xfb\x6d\x13\xf6\xb0\x6d\xbc\xb0\x28\x3b\x44\x9f\xc2\x41\xd2\xd8\xe4\x08\x25\x07\xbd\x79\x6c\x01\xbf\x1c\x34\xbd\xdd\xb6\x31\xb5\x68\x7b\xc6\x04\xa2\x1d\x6b\x33\x05\xe0\xc5\x6d\x98\xf6\xe2\x04\x59\xde\x83\xdf\x5f\x0c\x87\xb2\x97\xcd\x04\x57\xd6\x85\xee\xf6\x50\xa0\x99\x16\x16\xfb\xe5\x08\xfc\xd3\x17\x78\x66\xad\x94\xfa\x6b\x96\xa7\x9e\xde\x58\x8a\xfc\x3d\x4b\x84\x0a\x48\xff\x0d\xa3\xed\x40\x72\x68\xaa\xb3\xe8\x28\xe5\x6e\x7e\x3e\x66\x8b\x20\x03\x26\x39\x39\xd6\xc8\xfe\x02\x1b\x12\x58\x7d\xb5\x28\xd6\x1f\xa0\x98\xa3\x03\x3b\x7f\x29\x54\xe1\x55\x53\x6a\x12\x38\xd9\x75\x12\x13\x5b\x90\x18\x33\x90\x7d\x49\xe2\xd4\xa2\xbd\x45\x2b\xb6\xe5\xc8\x36\x65\xc7\x54\x72\xc5\xb3\xa8\x7d\xf2\xb6\x99\xc9\x53\xf7\x46\x9a\x29\x0b\xc6\x7a\xd6\x30\x15\x7c\xea\x82\x54\xd7\xd8\x1b\xdc\x85\x2f\x35\x6d\xd0\xb5\xf5\x3b\xc8\x8b\xfd\xe9\xad\xa5\x74\x67\x40\xd9\x1f\x3b\xb8\xf0\x33\x69\x52\x6e\x2c\xca\x23\x50\xb1\x33\x0e\x82\xdd\x3f\x7f\x0b\x58\xdb\x33\xa1\x60\x9f\x8c\x2e\x3d\x9c\x5a\x1d\xa4\xab\x03\x94\xce\x90\x13\xbd\xa3\x1b\x5c\xda\x03\x3a\xb4\xd7\xf6\x0f\xa1\x1b\x68\xdc\x7c\x6b\xa8\xe4\x86\x9d\x9c\xe3\xcf\xa6\x5c\x17\xb2\xb0\x0d\x2a\x29\xb5\xe7\x88\xda\x7f\x5e\x5b\xc8\x6d\x00\x1f\xde\x58\x10\xb9\xb8\x9f\x74\xf8\x2e\x5d\xda\x67\x87\x30\xdb\xdc\xba\xb7\x8c\x0e\x3b\x68\x1d\x34\x8d\x07\x06\x91\x8a\x34\xb6\x63\x11\x18\x28\xaf\xda\xa6\x6c\xa1\x74\x15\xac\x2a\xa8\xf8\x89\xa0\x61\x07\x26\xb6\xfb\x6f\xb1\xc3\x7e\x83\x36\x76\x50\x63\xaa\xef\x0c\xa5\xa6\x83\x96\x18\x62\xc1\x6b\x54\xe0\xc0\x92\x26\xb4\x0d\xf6\x0e\xd7\x79\x06\xc1\x30\xfe\x3a\x4f\x7f\xf5\x28\x3b\x44\x51\xb3\xa7\xe0\x1a\xe8\xd9\xb5\x98\xd3\x43\xe1\x18\x08\xa5\x9d\x61\x9b\xed\x35\x51\x1b\x7c\x01\x71\xd3\x34\x2e\xc0\xb7\xb4\x41\xc0\xc5\x28\xfb\xa6\x09\xac\xe0\x81\x80\x98\x37\x41\x1b\xa6\xe8\x54\x02\x26\x1b\xc3\x26\x08\x11\xeb\x8b\x47\x5b\xc1\x2c\xd2\x5e\x4e\xed\x44\x3d\x7e\x87\x19\x59\x5f\x3c\xd9\x21\x5a\x92\xf3\x28\xed\x1b\x40\x74\x28\x1f\x63\x1c\xd9\x17\x4f\xb0\x18\x24\x1f\xf8\x79\x9d\x02\xb8\x60\x35\xc1\x8a\x41\x70\xc0\x6c\xd4\x15\x6e\x1c\xd1\x1e\x32\xeb\x53\x07\x42\x72\xd6\x12\x9c\xb5\x31\x06\xec\x79\x20\xe4\xed\x4f\xd8\xb6\x60\x43\x63\xae\x6f\xa1\x38\x2f\x59\xdf\x11\x26\x62\x99\xdf\xed\xbc\x16\xcc\x7c\xa3\x9c\x8e\x80\x1e\x48\x92\x3a\xd2\xb2\xb5\xa9\xbd\xcf\x40\x00\x0e\x53\xc4\x14\x8e\x62\x5d\x81\xfe\x07\xe2\x97\xf6\xfe\xbc\x06\x34\x0e\x85\xd7\xea\x7a\x60\x5d\xda\x27\xd7\x10\x6a\x36\x6d\xd1\xf6\x0a\x55\x05\x8f\x15\x9d\x1f\x39\x17\x78\x63\x29\x80\x73\x6a\x0b\xf7\xa5\x20\xc0\xe5\x75\x6e\x2d\x08\x50\x8c\xf9\x31\x8b\xd9\x10\xd5\xea\x55\x73\x5d\xaf\x26\x42\xaf\xb8\xae\x57\x81\x85\x8a\xf5\x0a\x58\x5c\x63\x13\x58\x96\x87\xfe\xc7\x7e\x8d\x5c\x6f\xe1\x42\x3c\x10\xcf\xee\x7d\xce\x4d\x14\x5c\x00\xc6\x15\x14\x75\x96\x49\xa3\x76\x4e\xd9\x18\x89\x9c\x0b\x67\x13\x89\x03\xcb\xf7\x96\x50\x62\xd8\xab\x7b\x6b\x93\x59\xa4\x53\x2b\x91\x1c\x06\xa3\x74\x60\x7d\x7f\x1a\x0d\x1c\x8e\x25\x69\xf7\x45\xa3\xde\x16\xb8\x2e\x28\xbd\x68\x65\x8e\xaa\x93\x99\xfa\x9b\x8c\xe2\x5a\x73\xcd\x90\xfa\x6d\x61\x48\x3d\x46\xa9\xa7\x0c\xa9\xc7\xa8\x7d\x2b\x27\xdc\x6b\x16\x26\x5c\x4a\x7c\x03\xe1\x81\xe5\x6f\x56\xb3\x0a\xb8\xdd\x08\xc5\xac\x07\x61\xbc\x7d\x2b\x7b\xc3\x66\xc1\x47\xcc\xe1\x14\x21\x23\x64\x3f\xa3\xf4\xe4\x34\xf3\x0e\xb6\x58\xe1\xef\x16\x65\x9f\x7b\xa9\xa7\xb8\xb5\x8e\x01\x33\xbb\xd2\x4c\x3c\x3b\x11\x52\x39\x98\x5b\xa0\xc7\xdf\xad\xb9\x15\x8a\x0d\x9c\x01\x5d\xf6\x7e\x91\xc6\xcc\x91\xdc\xc0\x53\xba\x7e\x8b\x7d\x7a\x69\x3f\x34\x45\x30\xf1\x1a\xe1\x2f\x00\xc1\x35\xc3\x28\x64\x60\x1f\xc0\xbf\x61\xeb\x05\x86\x7f\x14\x1d\xc0\x99\xbd\x0f\x9b\xd7\x6f\xed\xb5\x80\x6c\x0a\x6d\x3d\xfb\x00\xda\x4e\x5b\x2f\x5a\x06\xa7\x8c\xa2\xa6\x76\xed\x97\xf0\xef\xa4\xf5\xbb\x18\x3d\x85\x79\x8e\xec\x97\x00\x79\xdc\xfa\xbd\x85\x8a\x82\x13\x74\x6c\x34\x0f\x9f\x5a\x68\xdc\xda\xed\xdf\xd1\x12\x37\x5f\x03\xe4\x61\xeb\x0d\xcc\xd3\xb6\xdf\xc2\x53\xab\xb5\xd3\x32\x2e\xe8\x70\x0a\xde\xe3\xe2\xad\x55\x83\xc6\x3f\xde\x58\xc6\x43\x9b\x3a\x2f\xad\x69\x1b\x96\xd2\x43\x9b\xe2\x02\xd7\x7e\x58\x70\xf8\xa0\x47\x3d\x34\xb4\xcc\x08\x2d\x4a\x5f\x81\xa1\x44\x56\xc3\x9f\x1b\xa1\x89\x86\x43\xed\x03\x5b\x9c\xe1\xee\x91\x21\xe7\x92\x87\xb8\x85\x5d\x4a\xdd\x1d\x69\x09\xf0\xdf\x85\xe8\x1d\xe4\x02\x04\x3a\xb5\x86\x60\x4f\x16\x2d\x4d\xc9\x86\x1a\x08\x07\x83\x6c\x29\x49\xa0\x4c\x06\x3c\xc2\x30\x81\x68\xcb\x9f\x48\x1d\xfc\xbc\x15\x67\x5a\x10\x9b\x9a\x2d\xfd\xdd\x03\x52\x7c\x51\x43\x2a\xcf\xa6\x36\x7a\xf4\x7d\x6c\x9c\x5a\x82\x75\x8b\xa6\x58\xf6\x4b\xa6\xc5\x23\x1e\x9c\x85\x59\x22\x39\x72\xd0\xd4\xba\x1e\xc0\x8c\xb3\x08\xfd\x20\xa3\x70\xa2\x6c\x1f\x83\x20\xd2\xb3\x40\xb2\xea\xbb\x85\x21\xe6\x96\x00\xf0\x4e\x0f\x00\x9b\x7a\x00\xc8\x4e\xc2\xc3\x2c\xe4\x38\x07\xf3\xec\xb3\x16\xec\xda\x0d\x0b\x91\x95\x3e\xfb\xd3\x98\x32\x3c\x15\xb5\x21\xf4\xa0\x86\x43\xf7\xd8\xbe\x35\xb3\x05\xbb\xe7\x36\xba\x33\xc0\xf5\xd6\x4a\xd0\xcd\x3b\x40\xe6\x15\x03\xd9\x07\xcf\x86\xd1\x6f\x4d\x5a\xf6\x36\x75\x3b\x42\x2d\x82\x16\xd5\x63\x8b\x17\x22\x93\x03\x0f\x9f\xba\x82\xab\x3d\xca\x86\xb2\xb5\x4d\xed\xfe\x38\x3b\x12\x71\x11\x65\x5c\x50\xf6\x59\x64\x6b\x20\x1c\x1a\xb2\x0c\x00\xb7\xeb\x0b\xf0\xfa\x4f\x99\x4c\x81\xf8\x74\x26\x8e\xe9\xce\x7d\x31\x6e\x39\xb0\x96\xe8\x95\xdd\x1f\xb9\x9e\x0e\xb5\xdf\x5a\x7b\x1a\xda\x33\x31\x59\x8f\xb2\xd3\xae\x3a\x26\xb0\xcf\xc3\x35\x72\x6d\xca\x4e\x3e\x0b\x12\xbe\xd0\x9d\x66\xf3\x07\x13\x61\x8e\x6f\x95\x8c\xd2\xc4\xf3\x79\xa9\x8e\xd7\x15\x9e\x5b\xbb\x8e\x6b\xd9\x0d\xe1\xee\x9d\xb8\x67\x30\xdf\xbc\xb8\x72\xf6\x5e\xb9\xaf\x4c\x4c\xb5\x8a\x2b\x3e\x79\x3f\xa9\xf2\xa1\xf5\xaf\x25\x6f\xbe\x08\xa3\x84\x3c\x92\xec\x62\xc9\x20\xf9\x2b\x30\xb2\x22\x93\x28\x9c\x93\x72\xc4\x1d\x37\xd9\xf5\x82\xc4\x2f\xbf\x1b\x05\xa3\x80\xdf\xe3\x58\xbc\xf1\x22\xcf\xb9\x12\x24\x0d\x52\xbe\x11\xd9\x7f\x13\xef\xac\x4c\x3f\x9c\x7a\x81\x79\xeb\xf8\xde\xd8\x49\xb8\x39\xf7\xe2\xd8\x0b\xa6\xe7\xf2\xfa\x08\xa6\x79\xf6\x24\xea\x42\xf1\xb9\x93\x9c\x3a\x71\x7c\x17\x46\xe3\x9f\x4e\x22\xae\x23\xb7\xa1\x9c\x38\x9e\xcf\xb7\x21\x58\xbf\xba\x4c\xd1\x28\x2c\xb3\x24\x59\x98\x01\x4f\xee\xc2\xe8\x06\xef\x90\x7e\x86\x6a\xfb\x55\xe7\x3a\x79\x88\x78\x09\xa8\xf0\x52\x44\xde\x1a\xf1\x01\x5e\x6f\xfd\x95\x49\x36\x6c\xdd\x4f\xe6\xe0\x42\x3e\x6a\x35\x32\x94\x77\xab\xce\x95\xcf\x09\x8e\x23\xf2\x76\x32\x36\x47\x81\x98\x5e\xbf\x7f\x25\x8d\x82\xf0\x55\x1e\x47\x01\x21\x5f\x9f\x23\x5d\xdf\xea\x04\x81\x09\xf1\xc6\xf5\x67\xc9\xa3\x21\xc0\xf3\x77\xbb\x75\x52\xb6\x83\x84\x47\xc4\x09\x88\xba\xc7\x2c\x03\xe0\xca\x78\x92\x14\x25\x83\xcf\x27\x45\x8d\x78\x82\x14\xb2\x50\xd2\xba\x85\x12\x21\xa8\xdb\xe7\x15\xfd\xdb\x66\x39\x0e\xa7\x61\x40\x84\x38\x9b\xe4\xd4\xe7\x4e\xcc\xc9\x2d\x8f\xbc\xc9\x03\x79\x08\x97\x11\x71\x23\x3e\xe6\x41\xe2\x39\x7e\x4c\x9c\x60\x4c\x92\xe8\x81\x38\x53\xc7\x0b\xcc\x75\x82\xd6\x05\x7f\x13\x59\xeb\x50\xdb\x88\x3b\x11\x0a\x22\xc4\x27\xa5\xce\x9d\x71\xf7\x46\x12\x27\xe4\xd2\x0b\x83\xe7\xd1\xb6\x5d\x93\xb6\x12\xba\x7d\xc8\x36\xaa\xcf\x53\xcd\x20\x80\x81\xa8\x5b\xe6\x3a\x79\x14\xb7\xcc\xab\x7f\xe5\x52\x36\x2a\xc3\xcf\x47\x3c\x63\x21\x6a\x0d\x04\xaf\xf1\xe5\x4a\xf8\x4a\xd0\x36\x0a\x56\x55\xa5\xf6\x68\xcc\xc8\x9d\x97\xcc\x88\xa8\x7b\x30\x33\x93\xe3\x3b\x71\x4c\x72\xd5\x13\x84\xe3\x53\x2c\x87\x21\xdd\x62\x18\x69\x90\xb4\x4c\x02\x71\x13\xa2\xd5\x57\x54\xa4\x29\x31\x24\x74\x55\x2d\x19\x4b\x2c\x54\x2f\x10\x85\x7c\x98\x90\x0a\x4e\x60\xae\x55\x5b\x90\xdf\x1a\xda\x44\x29\x1a\x42\xb6\xc0\x57\x92\x99\x17\x1b\xf9\x45\xa8\x69\x56\xe2\x1f\x40\x98\xe9\x22\xc4\x8f\x77\x8a\x4f\x92\x4b\xe9\xad\x3f\x49\xc2\xd4\x0a\x2a\x33\x99\xf0\xfb\xa4\xc0\xc1\xc9\x32\x10\xa2\xa1\xd7\x84\xa4\x48\x2a\x58\x0d\x22\x89\x17\x96\xf5\x51\xe0\x32\x08\xf8\x6c\xb2\x22\x0d\x82\x30\x92\x93\xc0\x90\xdf\x10\x20\x5d\x71\xc4\x93\x65\x14\x90\x60\xe9\xfb\x8a\xd8\x0c\x9b\x37\x26\x0d\xa9\x84\xde\x98\x7c\xcc\x7e\xd6\xe5\x4f\xc9\xf0\x77\xd9\x90\xb5\x4a\x14\xd2\x20\xa2\x12\xc5\x14\x75\x28\x95\xc7\x95\x91\x09\xea\x16\x11\x5c\x9b\x53\xa2\x25\xf5\x6c\xd3\x84\x7a\xe4\x7c\xc9\x57\x6f\xfc\xad\x2a\xd7\x2a\x17\x06\x7c\x30\x73\x85\x2f\x95\x35\x12\x0d\x39\x89\x94\xa9\x77\x72\xbf\xf2\x1e\x53\xdb\x00\xd2\xd0\x62\xa7\xca\xc6\xad\x01\x24\x25\x43\xc5\x5a\x58\x8f\x22\x43\x2a\xfc\x2d\xbc\x65\x1a\x89\x15\x2a\x58\xd2\xf0\xcb\x34\x6b\x7a\xa9\x17\x8c\x4a\xc7\x6c\x2e\x87\xd1\x87\x62\x01\x98\x3e\x06\xd8\x92\x93\x60\xe4\xfe\xf3\x6d\xde\x73\x6c\xca\x28\xd0\x28\x10\x15\x71\x85\xc5\x16\xab\x68\x32\x92\xd7\x28\xfe\x07\x71\x62\x82\xf5\x48\x29\x08\x3e\xe5\x82\xd1\x54\x47\xf4\x72\xa6\x8a\x2e\xe5\x52\x14\xa4\xd0\x01\x86\xba\xc0\x6a\xf6\x6d\x66\x77\x3e\xdb\x39\x6f\x84\x23\x51\xb8\x0a\x82\xa0\x4d\xa4\x2a\xa3\x2a\xcf\x98\x61\x60\x0f\x2f\x0f\xed\xe3\xe3\xde\x13\x38\xb3\x02\xab\x0a\xee\x76\x41\xaf\x65\xa9\x95\x91\x46\x28\x06\xd1\x0a\xad\x50\xd5\x71\x58\x5e\xfc\x7f\xb2\x66\xa4\x49\xae\x59\x5a\x77\x39\x07\x69\x34\x1a\x24\x89\x96\x5c\xf6\xa6\x33\x4a\x65\xcd\xa6\x95\x2d\x38\xf1\x4f\x97\xa7\x57\x7f\x15\x98\xa6\x60\x2a\xaa\x24\xcc\x20\xaa\x22\x2c\xb5\x52\xaa\xab\xa2\xb3\x5e\x69\x7a\xc6\xa3\x89\x1f\xde\x19\x04\x8b\xc6\x90\x21\x0a\x4f\xa5\x6a\x8a\xca\xb2\xc2\x08\x30\x4e\x9b\xf5\xa8\x52\x50\xc9\x8a\x86\xba\xaa\x0c\xbf\x5c\x00\x6a\xb4\xb9\x08\xe3\xa4\x52\x36\x6b\x1e\x46\x4d\x13\x8f\x47\xb5\x4b\xa9\xb6\x06\x89\x8c\xcc\xc3\xc8\x6a\xb4\x7a\xd6\x42\x48\xf9\x28\x5c\x38\x41\xb8\x7b\x24\x82\x81\xdd\x3f\x06\xfd\x56\xb9\x4e\xca\xfb\x65\x05\x23\x9d\xcc\xaa\x6a\x26\x33\x1e\x54\x52\xbf\xdc\xf8\x90\xe1\x89\xef\xbc\xc4\x9d\x91\xb4\xd3\x14\x61\x47\x55\x9f\xc9\x85\xf0\xe3\xc5\xde\x5e\x3d\x6b\x22\xa4\x56\x53\x5b\x6f\xea\xcd\x72\x7d\x29\xba\xb1\x93\x38\xef\xd6\x50\xfd\x5e\x44\x15\x84\x09\x01\x4b\xcf\xc7\xbb\x5e\xb0\x09\xe1\xa3\xde\x46\xd4\xd4\x75\x32\x71\xfc\x58\x89\x54\xda\x29\x24\x33\xa5\x41\x72\xef\x6b\xf9\x46\x70\x4c\x9e\x50\x76\x11\xae\xfc\x4d\x1f\xbc\xd2\x68\x95\x0e\xa6\x48\xaa\xb0\xfb\x7a\x63\x32\x8b\xc2\x3b\x30\xc8\x79\x4b\x59\x79\x9e\x95\x4c\xe9\xac\xbe\xfb\x95\x8d\x03\xbf\x9c\xdb\x34\x11\x9f\x44\xe2\x77\x6e\xff\xfe\x06\x7d\xf6\x16\xf2\xd4\x4f\x4d\xc9\x34\x5b\x94\x0e\xc9\xc6\xc8\x6d\x94\xa5\x92\xa6\x2c\x94\xac\x14\x91\xaf\xaa\x26\x56\x4e\x0a\x5b\x9c\x5b\xb0\x6c\x59\xf3\x05\xd2\x6c\xbf\xdb\x4e\x94\x0e\x96\x4d\xf4\xee\x09\xdb\xaa\x8a\x34\x9f\x32\x3d\x9b\x0c\x8e\x36\x2d\x44\x49\x9a\xd9\x91\x58\x52\xd8\xbc\x91\x7b\x92\x28\x34\x2c\xa2\x58\xf4\x39\x7e\xe4\xec\xdc\x1e\x0c\xe1\x6c\xd7\x6b\xb5\x9e\xe3\x4a\x24\x66\x5d\x84\x9e\x76\x0a\x02\xbd\xee\x15\x9e\x63\xd6\x37\x2e\xe2\x59\xcc\xcd\x5b\xf3\x42\x67\x8e\x41\x45\x6b\xff\x13\xdb\xfd\xb8\x7a\xbe\x85\x16\x55\xac\xff\xa9\x26\xfa\xff\x9b\xbd\x5f\x37\x7b\x52\xe0\x32\xc2\x0a\x41\xd1\xbf\x8d\x21\xcc\xce\x1f\x58\x78\xae\xa7\x74\xb5\x18\xfb\x34\x0a\x17\x43\x2d\xc4\x86\xf3\xe2\x6e\x1a\x65\xa7\x51\xbb\x4c\x53\x14\x32\xc3\x11\x1f\x2f\xef\x0b\xf1\x7d\x0b\x0f\x5b\x09\x1f\xab\xd3\xd2\xb6\x64\x72\xee\x28\x23\x8a\xc2\x53\xd8\xff\x3d\x77\x12\x1e\x79\x8e\xbf\xbb\xf4\x6a\x6e\x18\xf1\x5a\x8c\x00\x1a\x4d\xa2\x56\x7d\x2b\xbc\xe8\xd6\xe0\xb3\xaa\xf9\xad\x63\x32\x10\x6d\x5c\xae\x46\x7e\xeb\xd0\x1c\x54\x6e\x7d\xc5\x02\xfe\xec\x78\x64\x9a\xb5\x9f\xbc\x81\x93\x63\x7f\xce\xd0\xea\x87\x3c\xd3\xac\xe5\xdf\x32\x12\x73\x0b\x1b\x29\x78\x46\x1a\x04\x2b\xed\x41\xf0\x44\x72\x55\x54\xf5\xa7\xe6\x4d\xd4\x4f\xd7\x05\x94\x29\x8b\xf0\x2b\xfb\x55\xe9\x06\x54\x2d\x7e\x9d\xec\xef\xed\x65\x49\xa9\xf4\xb5\x82\x02\x1e\x51\xa9\x5f\xc4\xf6\xb2\x9a\x4f\x19\x89\xa4\x50\xee\x0d\x89\x34\x29\x84\xe2\x6a\xe6\xde\x92\x50\x9e\x25\x18\xf3\xa8\x92\x5a\x06\x15\xf7\xcb\xf7\x26\x0c\x71\x10\xc1\xd0\x1f\xb3\x31\x7a\xee\x43\x41\xcb\x37\x2b\xd4\x71\x09\xd5\x3a\xcd\x7e\xa4\x2a\x5d\x51\x6a\xf7\x7e\x6d\xfb\x24\x82\xc6\xa3\xfc\xb1\xfa\x90\x99\xa9\xf7\x9a\x90\xc9\x17\x33\x1a\xa3\xd2\xec\xe5\xa8\x44\xd2\x9d\x86\x86\x03\x68\x50\x45\xf3\x8d\x51\x29\x74\x77\x7d\x6f\x3a\x4b\x46\xa5\x0f\xba\x55\x7e\x5f\xd4\xa5\x7c\x6c\xec\x8d\x1b\xa3\x92\x4a\xd1\xab\x4b\x20\xf0\x5d\xbe\x17\xf0\x51\x29\x0f\x9c\x4f\xb1\x34\x46\xea\xed\x14\xf2\xa8\x9d\xe7\x56\xc5\x51\x22\x25\xd2\x78\xd4\x81\xea\x82\x73\xa6\x3e\x6e\x95\xa7\xbb\x56\x24\x5c\xe7\x91\xa6\x66\x4f\xb2\x2e\x5e\x5e\x25\x5e\xe2\xf3\xfd\x1c\xc3\x1e\xe5\x86\x9b\xa9\x0c\x92\x1d\x32\x2a\x91\x8c\x8d\x79\x7a\x1e\x05\xc1\xea\x1c\xbb\xda\x4a\xcc\x66\x72\xf4\x97\x66\xfe\xd2\xb6\x6d\xde\x29\x99\x87\x7a\x72\xa3\xbe\x84\x4b\xe2\x44\x5c\x9e\xa9\x88\x17\x90\x5d\xe2\xdc\xf1\x38\x9c\xf3\xdf\x46\xa5\x0f\xbf\xc2\x6c\xad\x23\x67\xb0\xf2\xe4\x0b\xd3\x99\xa7\x0a\x5f\x08\x82\x0d\xe1\x6e\x18\x8c\x9d\xe8\xa1\x48\xf6\x86\xdd\x11\x66\x66\x55\x94\x28\xb5\xb7\xea\x06\x73\x5c\x44\x25\xdf\x35\x6a\x3c\x56\xf0\xc5\xa2\x2a\x18\x2e\xd4\x67\x11\xac\xc9\xd6\x1c\xde\x0f\x79\x0c\xcf\xdc\x01\xe0\x68\xb8\x4c\xc4\x7a\x4d\xdf\xb9\xe2\xfe\xa8\xb4\xbe\x01\x03\x6f\x1a\x90\x70\x99\x3c\xc5\x6c\x60\xb7\xc0\x95\xdb\x81\xcd\x9c\x7e\xbf\x66\xf0\x65\x57\x55\xcf\xc3\xe6\x56\xac\xcc\x1e\x3e\x99\xf9\xd7\xae\x2a\x59\xac\x90\x99\x3e\xb3\x78\x34\x49\x83\x69\x11\x95\x65\x91\x4a\x2e\x28\x51\x66\x55\xbe\xc7\xb5\xcd\x9e\x16\x03\x38\x11\x27\xe5\xc2\x36\x89\xc1\x5c\x2c\xe3\x59\xa5\xac\x45\xde\xe5\x0d\x91\x62\x2e\x59\x9e\x7f\x27\x76\x91\x06\x29\x0d\x99\x15\x13\x22\x56\xcf\xc2\x17\x33\x14\x59\x66\x2f\x86\xb3\x80\x17\xf1\xb1\x21\x08\x45\xdd\x5f\x07\x94\xbd\x8a\x43\x3a\x00\x9c\x5c\xf2\x78\xd2\x95\xfc\x74\xc2\x51\xb0\xd2\x9c\xef\xdc\x59\xe0\x71\x64\x18\xe2\x5b\x4d\xa4\x41\xd4\x59\x4c\xf1\x3a\xe5\x73\xea\xb5\x10\x20\x9f\xab\xca\x9f\xd9\xf2\x99\x36\x3d\x0d\x2a\xa5\x56\x05\x6a\x95\xc2\xf4\xd5\x4a\x16\x65\x55\x44\x5c\x50\xad\xe4\x98\x5c\x95\x39\x6b\x89\xef\x31\xc5\x98\xe5\x67\x73\xf0\xe5\x1c\x78\x7a\x24\xfc\x59\xe2\x4c\x5f\x36\x44\xbd\x8f\x2b\xed\x62\x02\x41\x4c\xf1\x7a\x5f\x2a\x44\xb5\x1a\x19\xf6\x9a\xbd\x8a\x1f\x06\xd3\xd8\xe7\x7c\x51\xad\x93\xcf\xf2\x5a\x9f\x08\x58\xe9\xa3\x3e\x4a\xff\x2d\x31\x90\x06\xd1\x11\xe6\x74\x8a\x27\x44\x7f\x79\x90\x34\x30\x71\x88\x20\xea\x7c\x06\x0d\x59\x98\x01\x07\xb2\x72\xe8\x2c\x93\x59\xb9\xae\x37\xc1\x4a\x78\x90\xe4\x1b\x43\x6f\xec\x96\xd3\x13\x57\x64\xe2\x4b\x85\x29\x39\xe2\xe9\x9f\xff\x24\xe5\x72\x76\x8c\x30\xd3\x97\x16\x53\xb8\xac\x45\xc0\xe2\xb1\x2d\xf6\xbd\x20\xd9\x1d\x7b\xb1\x73\xe5\xf3\x5d\xf0\xf2\xc4\x75\xe6\xdc\x87\x89\x33\x64\xfa\x5b\x8f\x29\xbe\x5c\xa3\x44\xf9\x6c\x9c\xd9\xf6\xe4\x5e\xa1\xcc\xa9\x7a\x94\xef\x4b\x27\xce\xb5\xfe\xc2\x9c\xab\xf5\xc9\xe5\xfb\x9a\x85\x69\x65\x6b\x3a\xa1\x7c\xfe\x7b\x53\xe9\x2f\x84\xe6\xe6\xab\xd5\x08\x1d\x8f\x89\x33\x1e\xe3\xfb\x88\x8e\x4f\x10\x46\x1e\x0c\xc4\x30\x95\xdb\x01\x7c\x53\xef\x96\xeb\x49\x50\x25\x0f\x3b\x0d\x52\x26\x65\xb2\x43\xd6\xe7\x2b\x5a\x46\x42\xae\x22\xee\xdc\xa4\x76\xb7\x78\xa8\x2f\xc8\x72\xf1\x2a\x0f\x16\xa5\x83\x64\x57\x7f\xe6\x44\x8c\xd0\x7b\xf5\x91\x2a\xb9\x90\x1e\x27\x8b\xba\xbe\x25\xff\x12\x5e\x5d\xcb\x49\xc2\xab\x6b\x79\xb0\x6f\x90\xae\x93\xcc\x4c\xf1\x32\x6d\xa5\x6a\xaa\x97\x69\x2b\x07\xaf\xaa\x66\xfa\x3a\x6d\xe5\x75\xe1\xfa\x2e\xbc\xba\xde\x96\x7b\x1a\x7b\x18\xcc\x55\xe2\x7c\xda\x29\x36\x23\xbe\xf0\x1d\x97\x57\x6a\xa3\xd1\x68\x54\x9b\x1a\xe5\x5a\xb9\xaa\x37\xd6\xbe\xfe\x9f\xda\xb7\x7f\xfc\xcf\x9a\x41\xca\xe5\xe2\x65\x5f\x8a\x1d\x3c\x0e\x8f\x92\x87\x56\x14\xce\x85\xd5\x9c\x71\x9e\x48\x46\x86\x91\x41\x9c\x24\x89\xbc\xab\x65\xc2\x0d\xe2\xc4\xe7\xfd\xe3\x06\x66\xaf\x25\x2d\x60\x62\xd0\x2c\xbd\x4b\x0d\x0e\x0c\x3f\x8c\xf8\x44\xae\x8f\x46\x91\x83\xc6\x29\x09\xe1\xb0\x6d\x42\x34\x67\xba\x8e\xef\x57\xc6\xa1\xbb\x9c\x83\x83\x47\x2b\x3d\x80\x71\xb1\x91\x65\xd3\x10\x51\xba\x87\x49\xf4\x90\x49\xa7\xe4\xc0\x76\xd4\x38\xd6\x74\xe3\xb8\xbf\xf4\xb9\x8e\x34\x5a\xfa\x79\x31\x4f\xc9\x05\xf1\xc0\x51\x33\x41\xbb\x02\xc8\xa4\x2a\x8c\xf0\x0c\x05\x28\x4c\xd5\x32\xe4\xf7\x79\xeb\xf0\x0c\xe2\x04\x02\x58\xb3\xbe\x5a\x78\xae\x16\x6f\x0c\x60\xf2\x94\xff\x38\xfb\x66\x38\x79\x7e\x21\x8a\x3a\x00\x32\xa7\x1c\x5f\x33\x86\xcd\xfd\x0c\xbd\x19\xa6\xea\xbb\xe2\x70\x49\x74\x12\x2d\x79\xa1\x6f\x35\x2a\x04\xc8\x2a\xeb\x09\x52\x90\x83\x5d\xe9\x68\x73\xc3\x36\x0e\x49\xc1\x57\x44\x26\x8d\xb4\x65\xd5\x6a\xa4\x33\x0d\x42\x38\x0c\xcc\x38\xf7\x63\x72\x37\xf3\xdc\x19\x71\x9d\x65\xcc\xc7\x22\x99\x14\x9b\x64\x38\xf3\x62\x32\xc1\x2a\x0b\x67\xbe\xf0\xc1\xe2\x05\x64\xe6\x2c\x16\x3c\x00\xd6\x39\x81\x86\x0e\xcf\xdc\x31\x48\xbc\xb8\xd2\xe6\x63\x95\x35\x40\x83\xe6\x04\x04\xdf\x32\x27\x61\xe4\x4d\xb5\xdb\x9c\x0d\xa4\xa3\xb5\x5a\x55\x35\x8f\x2e\x98\xff\x5f\xff\x25\x14\x24\xe7\xd3\x81\xc2\x88\xcf\xc3\x5b\x1e\x93\x65\xe4\x57\xaa\x24\x9e\x79\x68\x30\x61\x36\x2e\xe7\x51\xbb\x87\xff\xcd\x39\xb2\xa3\x56\xf9\x58\x1f\x8d\x2a\x5f\xcb\xff\x1c\x95\xbe\x7d\xac\x56\xcc\x7f\x7c\xac\x56\x3e\xd6\xe5\xf3\x68\x54\xad\xd6\xaa\x5f\xf7\xbf\x69\x25\x20\xbf\xe1\xf0\xea\x9a\x9e\x68\xa7\xfe\x55\x06\x9d\x4a\x7e\x9e\xed\xe7\xfd\xe3\x18\x8e\x5e\x6c\x30\xc0\xc3\x58\xc4\x7d\x27\xf1\x6e\x39\x16\x72\xcc\x38\xb6\xef\x92\x38\x04\x65\x8f\xc1\x3d\x90\x38\x59\x4e\x26\x66\x3e\xa6\xbe\x72\x62\x2e\xb5\x2a\x35\x5f\xe9\x7c\xa9\x08\xa8\x65\xa7\xd0\x3b\xa4\x5c\x03\x5f\x91\x99\x14\xc5\xee\x9c\xb1\x54\xdd\x9b\x53\xf5\xc1\xcc\x09\x5c\x6e\x85\xe3\x07\xcb\x71\x6f\xa6\x51\xb8\x0c\xc6\x95\x5c\x48\x76\x35\x95\xf5\x22\x1b\x0c\x5f\xf9\x7f\x5c\x4d\x77\x25\x8e\xb1\xa9\x7e\x94\x0d\x52\xbe\x4a\xb1\xed\x7a\x73\x67\xca\xcb\x86\x48\x93\x6a\x45\x21\xe1\x2d\x8f\x7c\xe7\xe1\x57\xb1\xd7\xeb\xce\x24\xe1\xd1\x13\x93\x64\xd3\x2c\x44\x1e\x16\x42\xed\xaf\x42\x00\x60\x43\xaf\xa6\xe9\x4e\x2a\x00\x71\x1e\x09\xf8\x9d\x4a\xdd\x56\x64\xea\x76\xc3\x31\xc8\x9b\x03\x57\x00\xb6\x03\x13\x57\xb2\x6d\xf2\xe6\x53\x33\x0c\xfc\xd0\x81\xa8\xad\x92\x3f\x42\xc1\x9e\x88\x64\xb0\x76\xd0\x79\xa7\xc9\xd3\x80\x03\x6a\x88\x5b\x44\x85\x2e\xc8\xd1\xdd\xcc\x49\xf8\x2d\x8f\x50\xa0\x96\x91\x2f\x63\x8a\x38\x26\xb3\xd0\x1f\x67\x89\x7f\x98\x38\x8e\x5c\x90\x90\x69\x9a\xf9\x4d\x8f\x4f\x62\xd5\x92\xe5\xff\xb9\x4b\x97\x0b\xdc\xb4\x7e\x95\x8f\x07\xaf\xa2\xd6\xad\x4e\xbc\x3a\xad\x77\x5e\x30\x0e\xef\xcc\xd4\xe1\x4e\x79\x62\xfb\x1c\x7e\x5a\x0f\x9d\x71\xa5\xac\xc9\x64\xb9\x6a\xa6\x09\x0e\x11\xbb\xa5\x3d\xef\x52\xbb\x97\xcb\xb9\x3f\x5d\x6d\xb3\x5e\x0a\xf9\xac\xdb\x96\xad\x15\x36\x45\x8d\xdf\x72\xa7\x20\x28\x03\x19\x11\xd7\x40\x32\x58\xd5\xcd\x33\x8e\x51\xee\x24\x33\x8d\x0a\x5e\xe5\x0c\xd6\x6e\x31\xfe\xf2\xfd\x51\x01\x73\xea\x01\xb9\x1f\xf3\x5f\x9c\x26\xc7\xd5\xea\x76\x63\x89\xc8\xfe\xad\x2e\x4a\xf2\x5f\x8f\xd9\x7a\x13\x91\x07\xd3\x68\x6b\x47\xde\x78\xeb\x28\xe8\xfc\x6f\xb8\x2c\xf9\xd5\x4b\x19\xf5\x71\x9c\x74\xe5\xf0\xb8\xeb\x4d\x0a\xac\xca\x6e\xf0\xf5\xbb\x8f\xf5\x8b\x8f\x74\x40\xae\x5c\x6f\x8b\xbe\xa4\x8a\x22\xbf\x89\x56\x49\x8b\x27\x55\x52\x88\xac\xf2\x29\x0b\xa0\x02\x0c\x5e\x96\x96\x7c\x2a\x23\x47\xf2\x37\x77\x59\x1d\x42\x75\xc3\x41\x4b\x5e\x3a\xbc\xc7\x8d\xf2\x12\x3e\x27\xf8\xc5\x9d\xc6\xa8\xe4\xf2\x20\xe1\x91\x96\x66\x7e\x54\x8c\x53\x77\x8a\xf2\x16\xa3\x2a\x2d\x5c\x25\xb3\xc6\xef\x0b\x72\x53\x48\x60\x2f\x64\xfb\xa8\x44\x6a\x29\xfa\x6a\x96\x5d\x2d\xce\xf4\xdb\x4f\x66\x1a\x7b\xb7\xf9\x74\xa8\x26\x46\x9b\xf3\xe6\xc5\x5b\x92\x5c\xaa\x7d\xeb\xea\x25\xf6\x9f\x27\x79\xe5\xf5\x8c\x7a\x77\x21\xbd\x16\x59\xcf\xef\xb6\xb0\x0a\x1e\xdc\x90\x52\xde\x24\x24\x31\x8f\x6e\x61\x52\x8d\x2b\x64\xfb\xed\x45\x7e\xad\x45\xc2\xd3\xec\xb9\xa8\x2d\x5c\x5b\x48\x4e\x5a\x11\xa6\xf1\x88\xff\x56\xcf\x9e\x7d\x53\xce\x3e\xfd\xba\xd4\x68\x63\x2a\x7f\x11\x79\xf3\x0d\x89\xfc\x67\x24\xe8\x0b\x7b\x29\xf2\xfc\xbb\x12\x1f\x09\xdd\xdd\x79\xb2\xeb\x3f\x27\xab\x8f\x1a\xf1\xf7\xf3\xf9\xe2\xdd\x1c\x44\xf6\x54\x2e\xbf\x0f\x40\x1b\x76\x75\x43\xde\x5e\x97\xe6\x54\x21\xde\xa3\xa5\xc4\xf6\x34\x77\xa0\xbe\xa9\xb8\x96\xa5\xc6\x3d\xdc\x98\x7a\x7e\x56\xe2\xf9\xaf\xe6\x93\xb9\x2c\xab\x7d\x46\x3e\x39\x5f\xec\xfa\x4b\xf9\x64\xb9\xea\x7c\xa5\xf3\xdf\x76\xa0\xd9\xa7\xc4\x24\x14\x36\xe0\x67\x28\x73\x06\xfe\xff\x55\x95\xc1\xaf\x38\xcd\xdc\x57\xd4\x9e\xa8\x14\x90\x50\x79\x07\x2f\xaf\xa6\x55\xba\x5d\x3e\x3f\xe7\x46\x3f\x0a\xc3\xa4\xae\xd7\x57\xf9\xce\x43\x9d\x94\x27\x3e\xbf\x2f\xcb\x6b\x7c\xf8\x5d\x27\xfb\xa3\xf4\x02\x5f\x7e\xfe\x2d\x1d\xa6\xbe\xb1\x56\x07\x26\x8a\xd3\xad\x1a\x7b\x27\xee\xff\xcb\xfb\x7b\x7b\xff\x4b\x7b\x2f\x45\x3a\xe0\x42\x01\xc0\x30\x5c\xd4\xc9\xee\xef\x7b\x72\x6c\xfe\x8b\x6c\x92\xa8\xdd\x38\x71\xa2\x44\xa1\xd7\xbe\xd1\x56\xac\x1b\x38\xa8\xe6\x61\xf0\xcb\x6d\xeb\x40\x19\x4d\xf2\xbb\x73\xf5\x2c\xc8\xd7\x48\x57\x15\x0d\xf2\xb3\x6f\x75\x72\xb0\xb7\x67\x3c\x83\x69\xf2\x29\xfb\x00\x5e\x9d\x94\x85\x71\x2f\xbc\x09\x23\x76\x69\xed\x0b\x77\x10\xb4\x3a\x62\xbf\xde\xc7\x49\x14\x06\xd3\x0f\x8f\x78\x13\xfd\xbe\x26\x1f\xb5\xd1\x6b\x15\x07\x0d\xa2\xde\xf4\x28\x68\xba\xa0\x4a\x55\x3f\xa8\xf5\xa6\x9f\x0f\xcc\xb7\xc8\x4f\x08\xca\x46\xe9\x1d\xe5\x93\xfa\xa8\xa0\xa1\x61\xd4\xea\xbb\xb5\x0f\x0c\xca\x96\xec\x23\x83\xb2\xc1\x34\x4d\x4c\x14\x21\x3b\x0a\xaf\x9d\xa8\xc2\x8b\x69\x28\x6b\xf6\x24\x7d\xe4\x23\x46\x12\x44\x66\xb2\xdf\xc3\x79\x33\x8e\xdc\xc6\xa3\xfc\x50\xa1\xc9\x83\x5b\xf3\xf4\xdc\x3a\xee\xb0\xcb\xf3\xfe\x31\xa6\x41\xe4\x0b\xb0\x80\xcc\x8c\x6f\xa7\xe5\xd5\x5a\x60\x11\x4e\xc3\x51\x89\x38\x3e\x78\xb0\xf0\x2e\x60\x7e\xb8\x1c\x8f\x4a\xb5\x0f\x39\x62\xa4\xec\x93\x46\x5a\x0f\xf2\x91\xbc\x97\xfa\x56\xfb\x40\xea\xa4\x92\xe7\x1a\xf9\x98\xf2\x88\xd4\xd5\xe5\xb9\x14\xe9\x0f\x8f\xaa\x6b\xf5\x3e\xaf\xdd\x1f\x0a\xd9\xec\x5c\x80\x97\xbe\xc0\xab\x34\x44\x0f\x18\x32\x49\xd3\x5b\xd3\x6f\x2e\xa2\x73\xf6\x97\xf3\x60\x54\x22\x52\x09\x1a\x8f\x7b\xa9\x07\x2d\xde\xc5\xa3\x3d\xad\xa8\x6b\x79\xb0\x15\x46\x06\x53\x5d\x91\x47\xb5\x7b\x59\xd9\x04\xc4\x72\x9b\xee\xf4\xa5\x7a\xe5\x8a\x5e\xb6\x80\x4a\x1e\x17\x4a\x31\x60\x7f\x72\xae\xfe\x51\xc1\x6d\xf3\xbd\x85\x27\xa1\x5c\xc5\x6d\x17\xad\xbb\x69\x4d\x85\x4e\xdf\xcf\xaa\x68\x72\x71\x84\x40\x62\xc6\x7e\x38\x75\x82\x7c\xfc\xb2\x16\x48\xbc\x07\xfd\xfd\xa0\x04\xec\x7d\x0d\x1f\xc9\x2e\x71\x48\xec\x4c\x38\x99\x85\x73\x8e\x39\x58\xc7\xf7\xc5\x8b\x7e\x63\x27\x71\xf2\x38\xd3\xe2\x9a\x7c\xb0\x13\x60\x8d\x8d\xf8\x5c\x26\x68\xfc\x9a\x35\xa9\x88\xbe\xaa\x3e\x6c\xa5\xb1\xaf\xa6\xb1\x4e\x0c\xfe\xb0\x39\x78\x41\xe9\x5c\xfb\xf2\xb3\xfe\x2d\x4e\x15\xc9\x68\x5a\xab\xd7\xe9\xe7\x95\x44\xef\x91\x6a\x25\x9b\xb6\xce\xf5\x57\x2f\xf6\x0b\x14\x65\xc0\x57\x61\xe8\x6f\x24\x6d\x03\x48\x4a\xe3\x86\x3e\xa5\xd2\x7a\x67\x10\x8e\x79\x91\x8c\x54\x0c\x75\x40\x71\x99\x85\xfd\x99\xa1\xdc\x12\x07\x6a\xb6\x75\x1d\x62\x4b\x4c\xb6\xe1\x2a\xbf\xc8\x59\x0c\xcb\xbe\xa9\xf7\xff\xfb\x61\x98\x94\xea\xa5\xd2\xea\xff\x06\x00\x00\xff\xff\x92\x27\x6b\x92\xbd\x5c\x00\x00") +// FileIdentifierStaticJsContainersWelcomeFf57a351ChunkJsMap is "identifier/static/js/containers-welcome.ff57a351.chunk.js.map" +var FileIdentifierStaticJsContainersWelcomeFf57a351ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7c\x7f\x77\xda\x3a\xd3\xe0\x57\xd1\x65\x77\x5f\xe0\xa9\x63\xd2\x9b\xdb\xf6\x96\x96\x76\x65\x61\x08\x4d\x08\x09\x90\xf6\xf6\x96\x6e\x8f\x63\x04\x38\x31\x16\xb5\x4d\x7e\xdc\x3c\xf9\xee\x7b\x66\x24\xd9\xb2\x81\x26\xbd\xcf\xfb\xec\x39\xef\x7b\xf6\x9f\x04\xcb\xa3\xd1\xcc\x68\x7e\x49\x1a\xf9\xbe\x72\xcd\xe3\x24\x10\x51\xa5\x79\x60\x55\x12\xb1\x8e\x7d\x9e\x54\x9a\x5f\x2a\x3c\x8e\x45\x9c\x34\x82\x68\xca\x6f\xed\xcb\xa4\x62\x55\x3c\x3f\x0d\x44\x94\x34\x7c\xb1\x5c\x8a\x48\xb6\xf9\x22\x4a\xbd\x20\xe2\x71\xd2\xf8\xc4\x43\x5f\x2c\xb9\xfe\x9f\xf8\x31\xe7\xbb\xa1\x0c\xbc\x4b\x31\xe5\x61\xd2\x58\xf0\x30\x14\xb2\x65\x9d\x06\x61\x52\x1c\xd4\x68\xf2\xc5\x72\x25\x22\x1e\xa5\x49\xe3\x58\x78\xd3\x20\x9a\x6f\xb4\x0f\x79\xb2\x12\x51\x12\x5c\xf3\x51\x46\xc6\x57\xab\x12\x79\x4b\xc9\x9c\x3b\x1c\x0e\x86\xdf\x8e\x07\xdd\xde\xc9\xb7\x8f\xf4\xb8\xd7\xa6\x63\xf7\x5b\xbf\x37\x1a\xf5\x4e\xba\xe7\x23\x77\x78\x42\xfb\x6e\xc5\xfa\x21\xd8\x29\x1d\x8d\x3e\x0d\x86\xed\x12\x58\x87\xf6\x8e\xdd\xbc\xf1\x70\x3c\x3e\xfd\x76\xe2\x8e\x3f\x0d\x86\x47\xdf\xb0\xa9\xf8\xea\xfc\xc4\xfd\xe3\xd4\x65\x63\xb7\xfd\x6d\xe8\x8e\x4e\x07\x27\x23\xf7\xdb\x68\x4c\xc7\xe7\xa3\xa7\xc1\x01\x95\x69\xec\x45\x49\xe8\xa1\x9c\x2a\x56\x65\xca\x67\x41\xc4\xfb\x3c\x49\xbc\x39\x87\x86\x60\x2a\x5b\xbd\x75\x98\xaa\x66\x40\x7e\x9b\xf2\x68\xca\xa7\x2e\xcc\x33\x3c\xab\xff\xbe\x88\x92\x34\x5e\xfb\x29\x3e\x2d\x33\xf8\x6b\x2f\x5c\x23\xba\x64\xbd\xe2\xf0\x6a\x1d\xc9\x91\x00\xbb\xef\xad\xd2\x75\xcc\x47\xa9\xe7\x5f\x8d\x63\xcf\x87\x0e\xe9\x22\x48\x34\xde\x7c\xd8\x20\xba\xe4\x7e\xda\x8b\xd2\xb0\x62\x55\x56\xb1\x58\x01\x0c\x57\x63\x07\xb2\x59\x0d\xda\x06\x1d\x0a\x56\x92\x90\xc1\x05\xf4\x03\x85\x48\x92\x60\x1e\x55\xac\xca\x4c\xc4\x4b\xcf\x60\x28\xe6\x3e\x0f\xae\xb9\xe6\x23\xbd\x5b\x71\xf5\x2f\xc1\xb7\x09\x4f\x0f\x41\xc5\x72\x50\xfd\xb8\x50\xff\x93\xb5\xef\xf3\x04\x15\x30\xe1\x31\x28\x0b\x08\x2e\x48\x56\xa1\x77\x77\x22\x9f\x92\xd4\x4b\xe1\x3f\xbf\xe5\xfe\x3a\xcd\x30\x00\x90\x97\xfa\x8b\x8a\x55\x99\xf3\x74\xa4\x80\xa4\xa1\x00\xa9\xa1\xb8\xa9\x58\x95\xef\x6b\x1e\xdf\xc1\xf0\x15\xab\x72\x13\xa4\x0b\x16\x06\x3c\x4a\x87\xfc\xfb\x9a\x27\x59\xa7\x88\xdf\x20\x56\xd5\x0c\x1c\xdf\x06\x02\x88\x5a\x09\x7c\x5c\x70\x6f\xca\xe3\x04\x25\xcc\x23\xc9\x1a\x28\xbb\x26\x6f\x8d\x4a\xe0\xa5\x5e\xc5\xaa\x9c\xc6\x62\x19\x24\x52\x3a\x89\x08\xaf\x91\x2a\x45\xe8\xc2\x8b\xa6\x21\xa7\x80\x5c\xcb\x2c\xe6\x69\x7c\xa7\x79\x52\x2c\x1e\x8b\xb9\x98\xcd\x2a\x56\xa5\x60\xd7\x15\xab\x32\xe4\x1e\x4e\xc8\xe9\x3a\xe6\x4c\x9b\x1e\x22\x89\xa6\xa8\x20\x7e\xe8\x25\x09\x0a\x3f\x94\x66\x8a\x9d\x8a\x86\x59\xb1\x2a\xe3\xbb\x95\x98\xc7\xde\x6a\x71\x87\x5a\x16\x07\x1e\xa2\xf1\x0d\x94\x88\x49\xcf\xc0\xfa\xe2\x10\x25\x00\xb2\x5e\xa7\x29\x8f\x1d\x91\xa6\x62\x59\xb1\x2a\xed\xc0\x0b\xc5\x9c\xfa\xda\x12\x9c\x75\x9a\xa2\xfc\x7d\x11\x22\x7f\x17\xba\x41\x44\x2c\x0c\xfc\x2b\xe0\xf2\x5a\x0e\x11\x6a\x36\x57\x31\x36\xb5\xa5\xbd\x80\x9c\x82\x24\x15\x38\x6f\xab\x75\xb2\x90\x16\x12\x49\x5d\x84\x49\x1c\xa5\x77\x21\x57\xb3\x81\x04\x2e\xbd\x78\x1e\xc0\x20\xc9\xca\xf3\x25\xd7\xcb\x20\xfa\x14\x4c\xd3\x45\xf6\x36\x23\x79\x15\x8b\xe5\x0a\x50\x25\x3c\xe4\x7e\xca\xa7\x1d\xa9\x2a\x89\x2f\x50\x7d\x7d\x54\x91\x6f\x68\xc2\x31\x9f\x06\x31\xf7\xd3\x6f\xeb\x38\x40\xb3\xfe\x96\x8a\x2b\x1e\x7d\x5b\x04\xc8\xc1\xd2\xbb\xfd\x26\x2d\xc1\x0f\xbd\x60\x99\x7c\xd3\x38\xc4\xc5\x65\xc5\xaa\x9c\x07\x51\xfa\x3b\x8d\x63\x0f\x38\xf1\xe3\xbb\x55\x2a\xa4\xb6\x0e\xbd\x68\x2a\x96\x1f\xb5\x79\x6b\x90\x55\x2c\x52\xa1\x8c\x68\xe9\xad\x50\x71\x42\xb0\xce\x5b\xe0\x55\x8c\xd2\x58\xf2\x76\x29\x02\xa9\x84\x5a\x5d\xbb\x31\x52\x1b\xa4\x1c\x18\xf4\x42\x69\xad\x52\x2b\x7a\x20\xe1\xe3\x20\xe2\x5e\x7c\x1a\x8b\x79\x2c\xad\xcd\x5b\xa7\xa2\x23\xfc\x75\xa2\x55\x50\x89\x56\xac\x53\xd0\xbe\xfc\xe9\xd4\x9b\x2a\x3d\xf2\x17\x41\x38\x8d\x51\x7f\x44\xba\x40\x65\x90\xb3\x7f\xaa\x5c\xca\xa9\xb7\xe2\xb1\x7e\x08\x25\x96\x24\xf6\x25\x63\xca\xca\xbd\x30\x55\xc1\x49\xea\x80\xc4\xc0\xb2\xe7\x2c\x6c\x01\x9b\xeb\x24\x0d\x66\x77\x9a\xa3\x5e\xca\x97\x68\x67\x38\x23\x81\xd4\x32\xad\xa5\xc8\x87\x10\xa8\x21\xb1\xb7\x92\xee\x52\xb9\x13\x7f\xb1\x8e\xae\x12\x74\x5f\x22\x45\x0a\xa7\x6b\x3f\x55\xba\xad\x9c\xb4\x26\x5b\xb9\x1e\x74\x20\xfc\x56\x7a\x80\x40\x0d\x76\xa3\xf4\xc9\xcb\xb4\x5d\x6a\xd6\x58\xac\x72\x6a\x73\x56\x56\x52\x72\xc7\x7c\x66\x3c\x0d\x83\xf9\x42\x69\x8e\x54\xcf\xaf\x38\xd5\xab\x20\x9a\x27\x95\x66\xe5\xae\x4b\x29\xb5\xc4\x88\xba\x1e\xb5\x5c\x4a\xd7\xcc\x7a\xc6\x28\xbb\x66\x6c\xf3\xe9\xbb\x63\xbd\x74\x28\x8b\x1d\x7c\xfa\xd5\xb1\x02\x46\xd9\x81\x7c\xba\x61\xd6\xef\x8c\xb2\xdb\xac\xdf\x4b\x46\xbb\xaf\xe5\x13\x67\xd6\x67\x4a\xb9\xc5\x28\x0b\x99\xc5\x28\x65\xa7\x56\x17\x81\x18\x65\x29\x3b\x83\x87\xde\xd0\x72\x29\xfb\x30\xb2\x38\xa5\x73\xc7\xfa\xee\x50\x37\x74\x10\x76\x68\xc2\x0e\x10\xf6\x14\x61\xcf\x14\xac\xc8\x61\x11\xef\x77\xf8\xcd\x56\x4e\x1f\x61\x4f\x10\x76\xa0\x60\x9f\xb5\x33\xd8\x13\x78\xfd\x2b\xc2\x3e\x77\x8e\x10\xf6\x18\x61\xfb\x0a\xf6\xf7\x1c\xf6\x18\x5e\xdf\x20\x0d\xd7\xac\x87\xb0\x1f\x10\xf6\x48\xc1\x2e\x3b\x19\xec\x07\x93\xde\x2e\xc2\x1e\x22\x6c\x4f\xc1\xde\x30\x7a\x74\x61\xf5\x29\xed\x33\xeb\x9c\xd2\xc4\x61\x56\x9f\x76\x2f\x19\x4a\xe9\x33\x4a\x6c\xc4\xac\x2e\x65\x11\xbe\xa1\xfd\x8e\xd5\xa5\xed\xef\x8e\x75\x44\x3b\xaf\x1c\x84\x1a\xb9\xd6\x80\xf6\xee\x1c\x6a\xf5\x28\x7d\xe1\x1c\x23\x58\xdf\x5a\x3a\x94\x0d\x4f\xd4\xc3\x95\x43\xe9\x95\xc3\xac\x23\x4a\xfb\x20\x43\x77\xc1\xce\xe0\xe1\xe8\x83\x35\xa0\x74\x44\xad\x2e\xfd\xee\xfc\x01\x08\xfa\x47\x6a\x96\x3c\xba\x70\x5e\x38\xd6\x88\xd2\x67\x0e\x50\x40\xcf\xac\x1e\x65\xaf\xe4\x0c\xcf\x9d\x36\xfc\x5b\x48\xa2\x06\x92\xce\x0e\xfc\x1d\xbb\xd6\x11\x75\x67\x80\xea\x08\x60\xd8\x21\x8c\x30\xb0\x8e\x68\x77\x8c\xf8\xa7\x00\x75\xe4\xc3\xdf\xfe\x14\xf0\x6e\xf9\x3d\xb6\xce\x28\xbb\x64\x9f\xe0\x41\x38\x0c\x31\xc8\xbf\x28\x42\x9c\x26\x16\x82\x10\x18\x65\x52\x92\xde\x16\x24\x1e\xa5\xe7\x20\x74\xf6\x9c\x7d\x84\x26\xcf\xb5\x7a\xd4\x5d\x38\x88\x89\x23\x1d\x3d\xcb\xa7\xd4\x87\x39\xa1\x4b\x07\x19\xe8\x0f\xad\xcf\xd6\x9c\xb1\x85\x1b\xb7\xad\xef\x7d\xea\x0d\x40\x06\x23\xc4\xe9\x81\x9e\xb0\x03\x07\x99\x06\x2a\x8e\x07\x28\x52\x06\xa2\x39\x19\x5a\x23\xda\xeb\x22\xf4\x08\x1a\xa6\x39\x58\x47\x81\x1d\xc1\xfc\x8f\x70\xce\x00\x5d\x2e\x57\x65\x39\x4b\x86\x72\x8d\x18\xb3\xce\x70\xe6\x5d\x4a\xf7\x25\x5d\xcf\x1d\x17\x7a\x9e\x2b\xf9\x1f\x4a\xf9\x77\xad\xcf\xd4\x35\x09\x3a\x35\x08\x1a\x00\xa3\x4b\x07\xc4\xfe\x27\xaa\xdd\x29\xb3\x3e\xa1\xc8\x7c\xca\xe8\x61\x4e\xee\x91\x24\x17\x05\x3c\xd2\xe3\x9e\xa3\xde\xdd\xca\x99\x1e\x0d\xad\x23\xda\xbe\x83\x81\xba\x1f\x81\x3b\xfa\x09\x27\x44\xd2\x7d\xb8\xef\x58\x2e\xed\x3e\x77\xa8\x1a\xdd\xa5\x87\x02\x9b\x56\x0e\xb5\xfa\xd4\x1d\x22\xc6\x1e\xea\xeb\x5a\xaa\xed\xdc\xf9\x80\xe2\x46\x52\xaf\xdb\x38\x78\x0f\x35\x04\xd5\xf4\xc8\x5a\x3b\x94\xde\x48\xa0\x2e\xb0\x76\xc0\x8e\x50\x28\xf0\xfb\xd4\x4a\x1c\xc0\x64\x0d\xa8\x7b\x2b\xf5\xfa\x48\xf2\x0c\x78\xce\xa8\xb2\x9b\x33\xca\x66\x12\x59\x8f\xba\x52\x11\x25\x37\xa0\xa4\x52\x81\xf4\xbb\x4c\x80\x11\xea\xfc\x08\xc4\x35\xee\x62\xb3\xaf\xb4\xfb\x0c\xe6\xea\xce\xa1\xee\x0b\xc7\x3a\xa3\xae\x8b\xb6\x05\x14\xf7\xae\x61\x6c\xea\x9f\xc0\xdf\x35\x7b\x06\x46\xe1\x86\x6e\xdb\x24\x0b\xf4\x56\x92\x35\x05\x44\xe7\x03\xf8\xed\x9e\x5a\x7d\xca\xae\x9d\x1c\xd3\x01\xce\x96\x7f\x0c\x7f\x13\xf6\x3b\x4c\x41\x6f\x01\x06\xde\xa6\x7f\x62\xef\x53\x54\x1c\x9c\x54\x36\xeb\x22\x4d\xa8\x2b\x67\x1f\x80\xa5\xd4\x39\x42\x5c\x21\x8e\x7a\x8a\x03\x9e\x2d\x51\xde\x81\x13\x01\x36\xf7\x2f\x27\x70\x10\xd3\x1f\x4a\xa3\x07\xf4\x28\x96\x3c\x0b\x56\xd2\x83\xc8\xb1\xba\xb4\x0b\x0d\x1d\x4a\x8d\x4e\x20\xf6\x19\x5a\xe7\xa8\x6d\xf5\x69\xe0\x5c\x20\xf8\x77\xa7\xd4\x7f\x05\xfd\xd9\x94\x66\x1a\xc4\xc6\x67\x96\x4b\x67\x47\x28\xe9\x8f\x4a\x59\xfa\x74\xee\xa0\xe8\xfa\xbe\xa9\x25\x80\xeb\x52\x5a\xbd\x6b\xea\xc5\x8d\x43\xe9\x9d\xa1\x17\x2f\xfe\x0d\x7a\x51\x9c\xde\x83\x7f\xe7\xf4\xbe\x70\x1a\x6d\x44\xec\x80\x67\x9c\xb3\x5b\x07\x67\xdb\xb5\xba\xb4\xe1\xdc\x38\xe0\xef\x9f\x39\x02\xfb\xc5\x8e\x54\xc5\x4b\x20\xf0\xb5\xf3\x0a\xe3\xd5\xf1\x71\xc1\xe2\x3f\xd1\x97\xce\x28\x70\xfe\x33\x14\x63\x64\x3d\x3b\x64\x7f\x75\x5f\x48\xfa\x93\x2c\x40\xc9\xb9\xf0\x29\x5b\x30\x86\x2e\x09\x5a\xd0\xd7\x0b\xe7\x95\x94\x39\x1a\xce\xad\xf3\x2b\x98\x7d\x1b\x5f\x31\x8a\x93\xd4\x80\x21\xda\xe0\x8d\xd9\x39\x7a\x86\x3f\xe6\x4c\x7a\x79\x98\x85\x8f\x0b\x78\x60\xe8\xa1\x99\x8b\x51\x8b\x05\xf8\x1e\x09\x6e\x43\x4c\xbd\x72\xda\x88\x09\x62\x16\xfb\xcb\x91\x40\x6e\x11\xe6\xb3\xe4\x5c\x4d\xd0\x39\x90\x68\xfc\xfc\x4c\xd9\xa2\x2d\xfb\x49\xca\x19\x65\xee\xeb\x36\xcc\x61\xd7\xfa\xd5\xa1\xec\x10\x63\x0a\x07\x4d\x63\xb3\x23\xd4\x1c\x8c\xe6\x89\x03\xf2\xf2\xd0\xf5\xf6\xbb\xd6\xdc\xa1\xdd\x05\x93\x88\x9e\x39\xdb\x29\x80\x28\xee\xc2\xb0\x9f\x4e\x50\xe4\x03\xf8\xfd\xd9\xf2\x28\x7b\xd1\x4e\x91\xb3\x3e\xbc\xee\x8e\x25\x9a\x79\x89\xd9\xcf\x47\x10\x9f\x3e\xc3\x33\xeb\x64\xd4\x5f\xb2\x22\xf5\xf4\xca\xd1\xe4\xef\x3b\x32\x55\x40\xfa\xaf\x18\xed\x46\x4a\x42\x73\x53\x44\x47\x99\x74\x8b\xe3\x31\x57\x26\x19\x30\xc8\xc9\xb1\x41\xf6\x67\x98\x90\xc8\x19\x6a\xa6\xd8\x70\x84\x6a\x8e\x01\xec\xfc\x85\x34\x85\x97\x6d\x65\x49\x10\x64\x37\x49\x4c\x5d\x49\x62\xc2\x40\xf7\x15\x89\x73\x87\x0e\x56\x9d\xc4\x55\x3d\xbb\x94\x1d\x53\x25\x95\xc0\xa1\xee\xc9\xeb\x76\xae\x4f\xfd\x2b\xe5\xa6\x1c\xe8\x1b\x38\xe3\x4c\xf1\xa9\x0f\x5a\xdd\x60\xbf\xe3\x2c\x7c\x6e\x18\x9d\x2e\x9d\xdf\x40\x5f\xdc\x0f\xaf\x1d\x6d\x3b\x23\xca\xfe\x78\x86\x8c\x9f\x29\x97\x72\xe5\x50\x1e\x83\x89\x9d\x71\x50\xec\xe1\xf9\x6b\xc0\xda\x5d\x48\x03\xfb\x60\xf5\xe9\xe1\xdc\xe9\x21\x5d\x3d\xa0\x74\x81\x92\x18\x1c\x5d\x21\x6b\x77\x18\xd0\x5e\xb9\x7f\x49\xdb\x40\xe7\x16\x3a\x63\xad\x37\xec\xe4\x1c\x7f\xb6\x15\x5f\x28\xc2\x2e\x98\xa4\xb2\x9e\x23\xea\xfe\x79\xe9\xa0\xb4\x01\x7c\x7c\xe5\x40\xe6\xe2\x7f\x30\xe1\xfb\x74\xed\x9e\x1d\xc2\x68\x4b\xe7\xd6\xb1\x7a\xec\xa0\x73\xd0\xb6\xee\x18\x64\x2a\xca\xd9\x4e\x65\x62\xa0\xa3\x6a\x97\xb2\x95\xb6\x55\xf0\xaa\x60\xe2\x27\x92\x86\x67\x30\xb0\x3b\x7c\x8d\x2f\xdc\xdf\xd1\xc7\x8e\x1a\x4c\xbf\x3b\x43\xad\xe9\xa1\x27\x86\x5c\xf0\x12\x0d\x38\x72\x94\x0b\xed\x82\xbf\x43\x3e\xcf\x20\x19\xc6\x5f\xe7\xd9\xaf\x01\x65\x87\xa8\x6a\xee\x1c\x42\x03\x3d\xbb\x94\x63\x06\xa8\x1c\x23\x69\xb4\x0b\x6c\x73\x83\x36\x5a\x43\x28\x21\xae\xda\xd6\x27\x88\x2d\x5d\x50\x70\xd9\xcb\xbd\x6a\x83\x28\x78\x24\x21\x96\x6d\xb0\x86\x39\x06\x95\x88\xa9\x46\xd1\x06\x25\x62\x43\xf9\xe8\x6a\x98\x55\xf6\x96\x53\x37\xd5\x8f\xdf\x61\x44\x36\x94\x4f\xae\x40\x4f\x72\x1e\x67\xef\x46\x90\x1d\xaa\xc7\x04\x7b\x0e\xe5\x13\x30\x83\xe4\x83\x3c\x2f\x33\x00\x1f\xbc\x26\x78\x31\x48\x0e\x98\x8b\xb6\xc2\xad\x23\x3a\x40\x61\x7d\xe8\x41\x4a\xce\x3a\x52\xb2\x2e\xe6\x80\x83\x00\x94\xbc\xfb\x01\xdb\x56\x6c\x6c\x2d\xcd\x29\x94\xeb\x25\xe7\x3b\xc0\xb8\xb1\x9c\xbd\x15\x66\x7f\x38\x72\xef\x7b\x07\x44\xf4\xc9\xea\xd1\xa3\xd7\x38\x02\xd5\xb9\xf1\xdc\x01\xa6\xaf\x21\x5a\xb8\xd7\x8e\xc0\x3e\xbd\x57\x72\x06\x02\x37\x5f\x60\x9c\x33\x35\xb1\xa0\xf7\x07\x08\x76\xf6\x5b\x07\xb3\x66\xb4\x3b\x97\xc9\xec\x47\xba\x4b\x1d\x22\x17\x2e\x78\xec\xd3\x8c\x5a\x0a\xeb\xbb\xbe\xa4\xf9\x2f\x24\x5a\x05\x91\xf3\x06\x90\x35\x96\xa1\xb0\xbf\x06\x97\xd5\x3d\xb9\x86\x61\xda\xae\x6c\x7b\x89\xf6\x87\x6b\x95\xde\x5f\x85\xb8\x7a\xe5\x68\x80\x73\xea\xca\x98\xa8\x21\x20\x8e\xf6\xae\x1d\xc8\x7a\xac\xe5\x31\x4b\xd8\x18\x6d\xf5\x65\x7b\xd3\x58\x67\xd2\x58\xb9\x69\xac\x91\x83\xd6\xfa\x12\xe6\xad\xc1\x66\x20\x87\x00\x83\x9a\xfb\x0a\xa7\xb2\x83\x8c\x04\xa0\xf3\xfd\x5b\x33\xf6\xac\x4b\x71\x05\x93\x15\x8a\x8e\x80\x29\x4f\x79\x4e\xd9\x14\x89\x5c\xca\x08\x26\x65\x3a\xfe\xb5\x23\x3d\x03\x28\xc0\xad\xb3\xcd\xd7\xd2\xb9\xf3\x42\x05\x24\xf0\x74\x07\x10\x2c\x1f\x43\x03\x2b\x6e\x45\xda\xeb\x72\xa4\xe8\x4a\x5c\xa0\x1f\x9d\x3c\xfa\xf5\xf2\xf8\x71\x93\x53\xdc\x68\x6f\x78\xe7\xdb\xae\xf4\xce\x01\xa3\x34\xd0\xde\x39\x60\xd4\xbd\x56\x03\xee\xb7\x4b\x03\xbe\x54\xf8\x40\x76\x71\xf6\x9b\x35\x9c\x12\x6e\x3f\x46\x35\x1c\xc0\xda\xc0\xbd\x56\x6f\x45\xbb\x14\x78\xee\x60\x69\xa2\xd2\xee\xdb\x9c\xd2\x93\xd3\x3c\xe4\xb8\x92\xc3\xdf\x1c\xca\x3e\x0e\xb2\xf0\x73\xed\x1c\x03\x66\x76\x61\xc4\x0d\x76\x22\xb5\x72\xb4\x74\xc0\x32\xbe\x3b\x4b\x67\x5f\x4e\x60\x0a\x74\xb9\xcf\xcb\x34\xe6\xd1\xe9\x0a\x9e\x32\xfe\x1d\xf6\xe1\x85\x7b\xd7\x96\x19\xca\x2b\x84\x07\xeb\x73\x2f\x19\xa6\x36\x23\xf7\x00\xfe\x8d\x3b\xbf\x62\x4e\x49\xbf\x03\xe4\x99\xbb\xe8\x5a\x2e\x1d\x76\xe6\xb0\x38\x83\xd5\x96\x4b\x07\xee\x25\xb4\x9d\x76\x82\xae\xc5\x29\xa3\xe8\x55\xfa\xee\x0b\x78\x77\xd2\xf9\x4d\xf6\x4e\xa0\xf1\xc8\x0d\x01\xf2\xb8\x73\xd5\x45\x43\x41\x67\xd3\x73\xf1\xdf\x87\x0e\x7a\xcc\x6e\xf7\x0a\x23\x65\x3b\x02\xc8\xc3\x8e\x80\x71\xba\xee\x0a\x9e\x3a\x9d\xef\x5d\xeb\x13\x1d\xcf\x21\x24\x7d\x7a\xed\xc4\xd0\xf8\xc7\xef\x8e\x75\xd7\xa5\xde\x0b\x27\x81\x47\x3a\x40\x47\xe5\x83\xd4\xfe\x72\x60\x45\x43\x8f\x06\xe8\xbd\x99\x25\x1c\x4a\x5f\xc2\x72\x0c\x45\x0d\x7f\x6e\xa4\x25\x5a\x1e\x75\x0f\x5c\xb9\x30\x7c\x8d\x02\x39\x57\x32\xc4\x29\xec\x53\xea\x23\xf7\x34\x90\x2b\xd9\x4f\xf2\xed\xa8\x90\x75\xd0\xb9\x33\x06\x0f\xb5\xea\x18\x46\x36\x36\x40\x38\x78\x79\x47\x6b\x02\x65\x2a\x8b\x92\xbe\x11\x5d\x9f\xfc\x89\xd4\xc1\xcf\x57\x72\xa1\x0c\x6a\xd3\x70\x55\x10\x7d\x86\x14\x7f\x8a\xd1\x78\xcf\x12\x17\xd3\x84\x05\xae\x21\xe6\x8e\x14\xdd\xaa\x2d\xd9\x0e\xdb\x46\x92\xb3\x86\x05\x36\x4b\x95\x44\x2e\xcd\xb4\xed\x19\xc4\x06\x16\x63\x70\x65\x14\x96\xa9\xdd\x63\x50\x44\x7a\xf6\x97\x12\xd5\x77\x07\xf3\xd6\x1d\x59\xe5\x8d\x99\x55\xb6\xcd\xac\x92\x9d\xec\x1f\xe6\x79\xcc\x39\xf8\xf3\x90\x75\xc0\xfa\xaf\x98\x40\x51\x86\xec\x4f\x6b\xce\x70\xa9\xd5\x85\x7c\x86\x5a\x1e\xdd\x67\xcf\x41\x63\x51\xdc\x77\x2e\xc6\x48\xc0\xf5\xda\x49\x31\x77\xf0\x80\xcc\x0b\x1d\x15\x64\x4a\x1d\xb7\xa5\x67\xef\x52\xbf\x27\xcd\x22\xea\x50\x33\x61\x09\x70\x86\xfa\xf0\xf0\xa1\x2f\xa5\x3a\xa0\x6c\x2c\x37\x8d\x60\xd6\x86\xd3\x7c\x9d\xc5\x65\xea\xf2\x89\xb2\x8f\x72\x0b\x08\x72\xac\x31\xcb\x01\x70\xba\x3e\x83\xac\xff\x54\x3b\x34\x90\xf4\x2e\xe4\xda\xdf\x7b\x5d\x4e\x86\x0e\x9c\x97\x18\xea\xfd\x46\xe1\x4d\x8f\xba\xaf\x9d\x79\x3b\x47\x7b\x26\x07\x1b\x50\x76\xda\xd7\x6b\x0f\xf6\x71\xbc\x41\xae\x4b\xd9\xc9\x47\x49\xc2\x67\xfa\xac\xdd\x6e\x30\x99\x3b\x85\x4e\xc5\xaa\xcc\x82\x90\x57\x9a\x78\x76\x12\xf8\x8d\xcb\xa4\x91\x1f\x57\xee\xdd\xc8\x43\x0f\x7b\x36\x7b\xf1\xca\x3b\x78\xf1\xdc\xc6\xfd\x5b\x79\xde\xa8\x0e\x4b\xf5\x26\x6b\xf3\x4b\x25\x58\xae\x44\x9c\x92\x7b\x92\x9f\x72\x59\xa4\x78\x1e\x47\x1e\xc8\x2c\x16\x4b\x52\x8d\xb9\xe7\xa7\x7b\x41\x94\x86\xd5\x37\x93\x68\x12\xf1\x5b\xec\x8b\xc7\x6f\xe4\x29\xe7\x93\xa4\x45\xaa\x57\xf2\x28\xc2\xc6\x03\x34\x3b\x14\xf3\x20\xb2\xaf\xbd\x30\x98\x7a\x29\xb7\x97\x41\x92\x04\xd1\xfc\x5c\x9d\x65\xc1\x30\x4f\x1e\x44\x9f\x6e\x3e\x75\x90\x53\x2f\x49\x6e\x44\x3c\xfd\xe1\x20\xf2\x6c\x74\x17\xca\x99\x17\x84\x7c\x17\x82\xcd\x73\xd4\x0c\x8d\xc6\xb2\x48\xd3\x95\x1d\xf1\xf4\x46\xc4\x57\x78\xa0\xf5\x23\x54\xbb\xcf\x5d\x37\xc9\x43\xc4\x6b\x40\x85\x27\x34\xea\x08\x8b\x8f\xf0\xac\xed\xef\x0c\xb2\x65\xea\x7e\x30\x06\x97\xfa\xd1\x68\x90\xb1\x3a\xe8\xf5\x2e\x42\x4e\xb0\x1f\x51\x47\xa5\x89\x3d\x89\xe4\xf0\xe6\x61\x30\x69\x95\x94\xaf\x76\x3f\x89\x08\xf9\xf2\x14\xed\xfa\xda\x24\x08\x4c\x48\x30\x6d\x3e\x49\x1f\x2d\x09\x5e\x3c\x68\x6e\x92\xaa\x1b\xa5\x3c\x26\x5e\x44\xf4\xa1\x6a\x15\x00\x1f\xac\x47\x49\xd1\x3a\xf8\x74\x52\x74\x8f\x47\x48\x21\x2b\xad\xad\x3b\x28\x91\x8a\xba\x7b\x5c\xf9\x7e\xd7\x28\xc7\x62\x2e\x22\x22\xd5\xd9\x26\xa7\x21\xf7\x12\x4e\xae\x79\x1c\xcc\xee\xc8\x9d\x58\xc7\xc4\x8f\xf9\x94\x47\x69\xe0\x85\x09\xf1\xa2\x29\x49\xe3\x3b\xe2\xcd\xbd\x20\xb2\x37\x09\xda\x54\xfc\x6d\x64\x6d\x42\xed\x22\xee\x44\x1a\x88\x54\x9f\x8c\x3a\x7f\xc1\xfd\x2b\x45\x9c\xd4\xcb\x40\x44\x4f\xa3\x6d\xb7\x25\xed\x24\x74\x77\x97\x5d\x54\x9f\x67\x96\x41\x00\x03\xd1\x47\xde\x4d\x72\x2f\x8f\xbc\x1f\xfe\x9d\xac\x6c\x35\x86\x1f\xf7\x78\x02\x23\x9a\x07\x82\x35\x05\x8a\x13\xfe\x20\x69\x9b\x44\x0f\x75\x6d\xf6\xe8\xcc\xc8\x4d\x90\x2e\x88\x2c\xc2\xb0\x73\x97\x13\x7a\x49\x42\x0a\xa5\x1c\x84\xe3\x53\xa2\xba\x21\xdd\xb2\x1b\x69\x91\xac\x66\x03\x71\x13\x62\x14\x7b\xd4\x94\x2b\xb1\x14\x74\x5d\xb3\x8c\xf5\x1e\xfa\x2d\x10\x85\x72\x98\x91\x1a\x0e\x60\x6f\x94\x7e\x90\x5f\x5a\xc6\x40\x19\x1a\x42\x76\xc0\xd7\xd2\x45\x90\x58\x45\x26\xf4\x30\x0f\xf2\x1f\x40\xd8\x19\x13\xf2\xc7\x1b\x2d\x27\x25\xa5\xac\x04\x81\xa4\x22\xf3\x82\xda\x4d\xa6\xfc\x36\x2d\x49\x70\xb6\x8e\xa4\x6a\x98\x05\x2a\x19\x92\x1a\x96\xa6\x28\xe2\xa5\x67\xbd\x97\xb8\x2c\x02\x31\x9b\x3c\x90\x16\x41\x18\x25\x49\x10\xc8\x2f\x08\x90\x71\x1c\xf3\x74\x1d\x47\x24\x5a\x87\xa1\x26\x36\xc7\x16\x4c\x49\x4b\x19\x61\x30\x25\xef\xf3\x9f\x4d\xf5\x53\x09\xfc\x4d\xde\x65\xa3\x2c\x86\xb4\x88\x2c\x8b\xb1\x65\x51\x4c\xed\xfe\xc1\xca\x15\x75\x87\x0a\x6e\x8c\xa9\xd0\x92\x66\x3e\x69\xd2\x3c\x0a\xb1\xe4\x4b\x30\xfd\x5a\x57\xbc\x2a\xc6\x40\x0e\x76\xa1\x0a\xa7\xb6\x41\xa2\xa5\x06\x51\x3a\xf5\x46\xcd\x57\x31\x62\x1a\x13\x40\x5a\x46\xee\x54\xdb\x3a\x35\x80\xa4\x62\xe9\x5c\x0b\x8b\x63\x54\x4a\x85\xbf\x65\xb4\xcc\x32\xb1\x52\x39\x4d\x96\x7e\xd9\x76\xc3\xac\x3b\x83\x5e\x59\x9f\xed\xb5\x39\x66\x57\xac\x46\x33\xfb\x80\x58\x0a\x1a\x8c\xd2\x7f\xba\xcf\x7b\x8a\x4f\x99\x44\x06\x05\xb2\x3c\xaf\xc4\x6c\xb9\xa4\x27\x27\x79\x83\xe2\x7f\x10\x2f\x21\x58\x1c\x95\x81\xe0\x53\x21\x19\xcd\x6c\xc4\xac\xad\xaa\x99\x5a\xae\x54\x41\x29\x1d\x60\x68\x4a\xac\xf6\xd0\x65\x6e\xef\xa3\x5b\x88\x46\xd8\x13\x95\xab\xa4\x08\xc6\x40\xba\x4c\xab\xf6\x84\x11\x46\xee\xf8\xdb\xa1\x7b\x7c\x3c\x78\x04\x67\x5e\xed\x55\xc3\xd9\x2e\xd9\xb5\xaa\xfb\xb2\xb2\x0c\xc5\x22\x46\xd5\x17\x9a\x3a\x76\x2b\xaa\xff\x0f\x78\x46\x9a\x14\xcf\xca\xbb\xab\x31\x48\xab\xd5\x22\x69\xbc\xe6\xea\x6d\x36\xa2\x32\xd6\x7c\x58\xd5\x82\x03\xff\x90\x3d\xb3\x14\xad\x24\x34\x0d\x53\xd3\xf5\x69\x16\xd1\xe5\x69\x99\x97\xd2\xaf\x6a\xa6\xe8\xb5\xa5\xe7\x32\x9a\x85\xe2\xc6\x22\x58\xc1\x86\x02\xd1\x78\x6a\x75\x5b\x96\xb9\x95\x7a\x80\x73\xda\x6e\x47\xb5\x92\x49\xd6\x0c\xd4\x75\xed\xf8\x15\x03\x68\xd1\xf6\x4a\x24\x69\xad\x6a\x37\x02\xcc\x9a\x66\x01\x8f\x1b\xdf\x94\xd9\x5a\x24\xb6\xf2\x08\xa3\x4a\xe3\x9a\x79\x0b\x21\xd5\x23\xb1\xf2\x22\xb1\x77\x24\x93\x81\xbd\x3f\x46\xc3\x4e\xb5\x49\xaa\xcf\xab\x1a\x46\x05\x99\x87\xba\x9d\x2e\x78\x54\xcb\xe2\x72\xeb\x5d\x8e\x27\xb9\x09\x52\x7f\x41\xb2\x97\xb6\x4c\x3b\xea\xe6\x48\x3e\xa4\x1f\xbf\xee\xef\x37\xf3\x26\x42\x1a\x0d\x3d\xf5\xb6\xd9\xac\xf8\xcb\xd0\x4d\xbd\xd4\x7b\xb3\x81\xea\xb7\x32\xaa\x48\xa4\x04\x3c\x3d\x9f\xee\x05\xd1\x36\x84\xf7\x66\x1b\xd1\x43\x37\xc9\xcc\x0b\x13\xad\x52\xd9\x4b\xa9\x99\x19\x0d\x4a\x7a\x5f\xaa\x57\x52\x62\x6a\x85\xb2\x87\x70\xd5\xaf\x66\xe7\x07\x83\x56\x15\x60\xca\xa4\x4a\xbf\x6f\x36\xa6\x8b\x58\xdc\x80\x43\x2e\x7a\xca\xda\xd3\xbc\x64\x46\x67\xfd\xcd\xcf\x4c\x1c\xc4\xe5\xc2\xa4\xc9\xfc\x24\x96\xbf\x0b\xf3\xf7\x2f\xd0\xe7\xee\x20\x4f\xff\x34\x8c\xcc\xf0\x45\x59\x97\xbc\x8f\x9a\x46\x55\xb7\x69\xab\xaa\xcd\x5a\x19\xf9\x43\xdd\xc6\x32\x4e\xe9\x8b\x0b\x0c\xab\x96\x8d\x58\xa0\xdc\xf6\x9b\xdd\x44\x99\x60\xf9\x40\x6f\x1e\xf1\xad\xba\x62\xf4\x31\xd7\xb3\xcd\xe1\x18\xc3\x42\x96\x64\xb8\x1d\x85\x25\x83\x2d\x3a\xb9\x47\x89\x42\xc7\x22\x2b\x57\x9f\x12\x47\xce\xce\xdd\xd1\x18\xd6\x76\x83\x4e\xe7\x29\xa1\x44\x61\x36\x55\xe8\xf1\xa0\x20\xd1\x9b\x51\xe1\x29\x6e\x7d\x2b\x13\x4f\x12\x6e\xd1\x9b\x97\x5e\x16\x04\x54\xf6\xf6\x3f\xf0\xdd\xf7\x0f\x4f\xf7\xd0\xb2\xa4\xf6\xbf\xab\x8b\xfe\xff\x6e\xef\xe7\xdd\x9e\x52\xb8\x9c\xb0\x52\x52\xf4\x5f\xc6\x11\xe6\xeb\x0f\xac\x82\x37\xb7\x74\x8d\x1c\xfb\x34\x16\xab\xb1\x91\x62\xc3\x7a\x71\x2f\xcb\xb2\xb3\xac\x5d\x6d\x53\x94\x76\x86\x63\x3e\x5d\xdf\x96\xf2\xfb\x0e\x2e\xb6\x52\x3e\xd5\xab\xa5\x5d\x9b\xc9\x85\xa5\x8c\xac\x50\xcf\x60\xff\xf7\xd2\x4b\x79\x1c\x78\xe1\xde\x3a\x68\xf8\x22\xe6\x8d\x04\x01\x0c\x9a\x64\xe1\xfc\x4e\x78\xf9\xda\x80\xcf\x4b\xf8\x77\xf6\xc9\x41\x8c\x7e\x85\x82\xfd\x9d\x5d\x0b\x50\x05\xfe\xca\xb7\x09\xf2\xe5\x91\x6d\x37\x7e\x70\x1d\xa8\x20\xfe\x82\xa3\x35\x17\x79\xb6\xdd\x28\x5e\x79\x92\x63\x4b\x1f\x29\x65\x46\x5a\x04\xcb\xfe\x41\xf1\xe4\xe6\xaa\xbc\x62\x90\xb9\x37\x59\x94\xdd\x94\x50\xb6\xba\x11\x50\x7b\x5e\x57\x61\x40\x5f\x0c\x68\x92\xe7\xfb\xfb\xf9\xa6\x54\x76\xc7\xa1\x84\x47\x5e\x1b\x28\x63\x7b\x51\x2f\x6e\x19\xc9\x4d\xa1\xc2\x75\x8d\x6c\x53\x08\xd5\xd5\x2e\x5c\xd9\xd0\x91\x25\x9a\xf2\xb8\x96\x79\x06\x9d\xf7\xab\x4b\x1c\x96\x5c\x88\x60\xea\x8f\xbb\x31\xe6\xde\x87\x86\x56\xd7\x3c\xf4\x72\x09\xcd\x3a\xdb\xfd\xc8\x4c\xba\xa6\xcd\xee\xed\xc6\xf4\x29\x04\xad\x7b\xf5\xe3\xe1\x5d\xee\xa6\xde\x1a\x4a\xa6\x6e\x89\xb4\x26\x95\xc5\x8b\x49\x85\x64\x33\x0d\x0d\x07\xd0\xa0\x2b\xf1\x5b\x93\x8a\xf0\xf7\xc2\x60\xbe\x48\x27\x95\x77\xa6\x57\x7e\x5b\xb6\xa5\x62\x6e\x1c\x4c\x5b\x93\x8a\xde\xa2\xd7\x87\x40\x10\xbb\xc2\x20\xe2\x93\x4a\x11\xb8\xb8\xc5\xd2\x9a\xe8\xab\x32\xe4\xde\x58\xcf\x3d\x94\x7b\xc9\x2d\x91\xd6\xbd\x09\xd4\x94\x92\xb3\xcd\x7e\x0f\x45\xba\x1b\x65\xc2\x4d\x19\x19\x66\xf6\xa8\xe8\x92\xf5\x45\x1a\xa4\x21\x7f\x5e\x10\xd8\xbd\x9a\x70\x3b\xd3\x41\xf2\x8c\x4c\x2a\x24\x17\x63\x91\x9e\x7b\x49\xb0\x5e\xc7\x3e\xec\x24\x66\x3b\x39\xe6\x0d\x9e\xbf\x35\x6d\xdb\x67\x4a\xed\x43\x3d\x3a\x51\x9f\xc5\x9a\x78\x31\x57\x6b\x2a\x12\x44\x64\x8f\x78\x37\x3c\x11\x4b\xfe\xcb\xa4\xf2\xee\x67\x84\x6d\xbc\x28\x38\xac\x22\xf9\xd2\x75\x16\xa9\xc2\xdb\x49\x30\x21\xdc\x17\xd1\xd4\x8b\xef\xca\x64\x6f\x99\x1d\xe9\x66\x1e\xca\x1a\xa5\xe7\x56\x9f\x60\x4e\xcb\xa8\xd4\xc5\xa7\xd6\x7d\x0d\x6f\x39\xd5\xc1\x71\xa1\x3d\xcb\x64\x4d\xb5\x16\xf0\xbe\x2b\x62\x78\xe2\x0c\x80\x44\xc5\x3a\x95\xfc\xda\xa1\x77\xc1\xc3\x49\x65\x73\x02\x46\xc1\x3c\x22\x62\x9d\x3e\x26\x6c\x10\xb7\xc4\x55\x98\x81\xed\x92\x7e\xbb\xe1\xf0\xd5\xab\xba\xb9\x0f\x5b\xe0\x58\xbb\x3d\x7c\xb2\x8b\x77\xc0\x6a\x79\xae\x90\xbb\x3e\xbb\xbc\x34\xc9\x92\x69\x99\x95\xe5\x99\x4a\x21\x29\xd1\x6e\x55\x5d\x2a\xdb\xe5\x4f\xcb\x09\x9c\xcc\x93\x0a\x69\x9b\xc2\x60\xaf\xd6\xc9\xa2\x56\x35\x32\xef\xea\x96\x4c\xb1\xb0\x59\x5e\xbc\xa0\xbb\xca\x92\x94\x96\xda\x15\x93\x2a\xd6\xcc\xd3\x17\x5b\xc8\x5d\xe6\x20\x81\xb5\x40\x10\xf3\xa9\x25\x09\x45\xdb\xdf\x04\x54\x6f\xb5\x84\x4c\x00\x58\xb9\x14\xf1\x64\x9c\xfc\x70\xc0\x49\xf4\x60\x04\xdf\xa5\xb7\xc2\xe5\xc8\x58\xe0\x55\x29\xd2\x22\x7a\x2d\xa6\x65\x9d\xc9\x39\x8b\x5a\x08\x50\xdc\xab\x2a\xae\xd9\x8a\x3b\x6d\xe6\x36\xa8\xd2\x5a\x9d\xa8\xd5\x4a\xc3\xd7\x6b\x79\x96\x55\x93\x79\x41\xbd\x56\x10\x72\x5d\xed\x59\x2b\x7c\xf7\x19\xc6\x7c\x7f\xb6\x00\x5f\x2d\x80\x67\x4b\xc2\x1f\x6d\x9c\x99\x6c\x43\xd6\x7b\xff\x60\x1c\x4c\x20\x88\x2d\xef\x1a\x66\x4a\xd4\x68\x90\xf1\xa0\x3d\xa8\x85\x22\x9a\x27\x21\xe7\xab\x7a\x93\x7c\x54\xc7\xfa\x44\xc2\xaa\x18\xf5\x5e\xc5\x6f\x85\x81\xb4\x88\x89\xb0\x60\x53\x3c\x25\xe6\x4d\x46\xd2\xc2\x8d\x43\x04\xd1\xeb\x33\x68\xc8\xd3\x0c\x58\x90\x55\x85\xb7\x4e\x17\xd5\xa6\xd9\x04\x9c\xf0\x28\x2d\x36\x8a\x60\xea\x57\xb3\x15\x57\x6c\xe3\x0d\xc7\x8c\x1c\xf9\xf4\xcf\x7f\x92\x6a\x35\x5f\x46\xd8\xd9\x0d\xca\x0c\x2e\x6f\x91\xb0\xb8\x6c\x4b\xc2\x20\x4a\xf7\xa6\x41\xe2\x5d\x84\x7c\x0f\xa2\x3c\xf1\xbd\x25\x0f\x61\xe0\x1c\x99\x79\x05\x33\xc3\x57\x68\x54\x28\x9f\x8c\x33\x9f\x9e\xc2\x7d\xce\x82\xa9\xc7\xc5\x77\xd9\xc0\x85\xd6\x9f\x18\xf3\x61\x73\x70\x75\x79\xb4\x34\xac\x6a\xcd\x06\x54\xcf\xff\xda\x50\xe6\xed\xd4\xc2\x78\x8d\x06\xa1\xd3\x29\xf1\xa6\x53\xbc\xe4\xe8\x85\x04\x61\xd4\xc2\x40\x76\xd3\x7b\x3b\x80\x6f\x1e\x5c\x73\x73\x13\x54\xeb\xc3\xb3\x16\xa9\x92\x2a\x79\x46\x36\xc7\x2b\x7b\x46\x42\x2e\x62\xee\x5d\x65\x7e\xb7\xbc\xa8\x2f\xe9\x72\xf9\x28\x0f\x98\x32\x41\xf2\xa3\x3f\x7b\x26\x7b\x98\x6f\xcd\x9e\x7a\x73\x21\x5b\x4e\x96\x6d\x7d\xc7\xfe\x8b\xb8\xb8\x54\x83\x34\x1a\xa4\xcb\x23\x1e\x83\xb5\x7a\xe4\xf9\x4b\x72\x71\x97\x72\x12\xe3\x65\x5e\x82\x6a\x91\x3b\x84\xec\xe8\x14\x56\xf9\xf9\x45\xe0\xda\xf3\x97\x32\x32\xc8\xeb\xc0\x76\xe9\x32\x70\x2d\x3f\xb4\xc3\xe1\x98\x88\xae\x79\x9c\xc2\xea\x23\x1b\x2f\x15\xc4\x23\x0b\x7e\x4b\x12\xbc\x0f\x8c\xe7\xec\xf2\x30\x12\x8f\x61\x17\xea\x74\x9b\x78\x69\x1a\x07\x17\x6b\xb9\xe7\x25\x2e\x2e\xd5\x9e\x44\x8b\x20\x21\x76\x76\xd9\xd8\x5e\x7a\x2b\xdb\xf7\xc2\x50\x0d\x6e\x91\x5b\xf0\xe9\xb7\xb6\xbe\x71\x0c\x34\xd7\xed\x4b\x11\x44\xb5\x6a\xb5\x74\x20\x29\x2e\x2e\x77\xed\xa6\x4d\x03\x4c\x4f\x6b\x49\x71\x23\x2d\xb1\x63\xbe\x0a\x3d\x9f\xd7\x1a\x93\xc9\x64\xd2\x98\x5b\xd5\x46\xb5\x6e\x36\x36\xbe\xfc\x9f\xc6\xd7\x7f\xfc\xcf\x86\x45\xe4\x70\x5b\xb1\x43\x0c\xe5\x71\x7a\xd7\x89\xc5\x52\xc6\x81\x05\xe7\xa9\x52\x0d\x11\x5b\x39\xfb\x16\xf1\x92\xf3\xe1\x71\x0b\xf7\xe3\x15\x2d\xe0\x34\x91\xdb\x37\x99\x0b\x85\xee\x87\x31\x9f\x29\xfe\xca\x42\x82\xfc\x54\x4a\x69\x2a\xfc\xf5\x12\x52\x16\x8c\x3b\x23\xe8\x97\x58\xf9\xfe\x20\x22\xca\xb4\x32\x8d\xef\x72\x7b\x53\x12\xd8\x8d\x1a\xfb\xda\x7e\x92\x0c\xd7\x21\x37\x91\xc6\xeb\xb0\x68\xb8\x19\xb9\xa0\xf0\xd8\x6b\x21\x69\xd7\x00\xb9\x9d\x88\x18\x57\x85\x80\xc2\xd6\x2d\x63\x7e\x5b\xf4\x77\x4f\x20\x4e\x22\x00\x9e\x4d\x6e\xe1\xb9\x5e\x3e\x03\x81\xc1\x33\xf9\xe3\xe8\xdb\xe1\xd4\x8a\x8c\x68\xea\x00\x08\x4c\xe2\x54\x4d\x2e\x1a\x45\x8e\xa9\xfe\xa6\xdc\x5d\x11\x9d\xc6\x6b\x5e\x7a\xf7\x30\x29\xa5\xfc\x7a\x1f\x17\xb4\xa0\x00\xfb\x60\xa2\x2d\x74\xdb\xda\x25\x03\x7f\x20\x6a\x1b\xcc\x60\xab\xd1\x20\xbd\x79\x24\x60\x79\xb3\xe0\x3c\x4c\xc8\xcd\x22\xf0\x17\xc4\xf7\xd6\x09\x9f\xca\xed\xb1\xc4\x26\xe3\x45\x90\x90\x19\xd6\x8d\x78\xcb\x55\x08\x3e\x3c\x22\x0b\x6f\xb5\xe2\x11\x88\xce\x8b\x0c\x74\xb8\x8b\x90\x80\xc6\xcb\x43\x7a\x3e\xd5\xfb\x20\xe8\xa2\xbd\x88\xe0\x65\x7c\x22\xe2\x60\x6e\x9c\x4f\x6d\x21\x1d\xfd\xef\x43\xdd\xc8\x51\xa4\xf0\xff\xe3\x3f\xa4\x81\x14\xb2\x14\xa0\x30\xe6\x4b\x71\xcd\x13\xb2\x8e\xc3\x5a\x9d\x24\x8b\x00\x43\x00\x8c\xc6\xd5\x38\x7a\xf6\xf0\xbf\xbd\x44\x71\x34\x6a\xef\x9b\x93\x49\xed\x4b\xf5\x9f\x93\xca\xd7\xf7\xf5\x9a\xfd\x8f\xf7\xf5\xda\xfb\xa6\x7a\x9e\x4c\xea\xf5\x46\xfd\xcb\xf3\xaf\x46\x51\xcb\x2f\xd8\xbd\xbe\x61\x27\xc6\x3e\xc6\x43\x0e\x9d\x69\x7e\x51\xec\xe7\xc3\xe3\x04\x16\x93\x6c\x34\xc2\xe5\x65\xcc\x43\x2f\x0d\xae\xb9\xf6\x89\xd0\xbe\x47\x12\x01\xc6\x9e\x40\xc0\x23\x49\xba\x9e\xcd\xec\xe2\x2a\xe1\xc2\x4b\xb8\xb2\xaa\xcc\x7d\x65\xe3\x65\x2a\xa0\xd9\xce\xa0\x9f\x91\x6a\x03\xa2\x5f\xee\x52\xb4\xb8\x0b\xce\x52\xbf\xde\x7e\xf8\x10\x2d\xbc\xc8\xe7\x8e\x98\xde\x39\x9e\x7f\x35\x8f\xc5\x3a\x9a\xd6\x0a\x49\xe6\xc5\x5c\x55\xc0\x6c\x71\x7c\xd5\xff\x71\x31\xdf\x53\x38\xa6\xb6\xfe\x51\xb5\x48\xf5\x22\xc3\xb6\x17\x2c\xbd\x39\xaf\x5a\x72\xe3\xd7\x28\x73\x11\xd7\x3c\x0e\xbd\xbb\x9f\xc5\xde\x6c\x7a\xb3\x94\xc7\x8f\x0c\x92\x0f\xb3\x92\x3b\xcb\x10\x15\xbf\x48\x05\x80\x09\xbd\x98\x67\x33\xa9\x01\xe4\x0a\x0b\x22\xa7\xda\x8c\xae\xa9\xcd\xe8\x2d\x0b\xbb\x60\x39\x57\x51\xb6\x07\x03\xd7\xf2\x69\x0a\x96\x73\x5b\x44\xa1\xf0\x20\x0f\xad\x15\x17\x85\x30\x27\x72\x7b\xdb\x58\xba\xbd\x31\xf4\x69\xc4\x01\x35\x64\x62\xb2\xe6\x18\xf4\xe8\x66\xe1\xa5\xfc\x9a\xc7\xa8\x50\xeb\x38\x54\x59\x52\x92\x90\x85\x08\xa7\xf9\x51\x06\x0c\x9c\xc4\x3e\x68\xc8\x3c\xdb\xcb\xce\x16\x84\x92\x6b\x25\xf2\xff\xbe\xac\x2b\x06\xb7\xf1\xaf\x4f\x18\x20\xaa\x68\xbe\xf5\x1a\xde\xa4\xf5\x26\x88\xa6\xe2\xc6\xce\x02\xee\x9c\xa7\x6e\xc8\xe1\xa7\x73\xd7\x9b\xd6\xaa\x86\x4e\x56\xeb\x76\xb6\x65\x23\xb3\xd1\xec\xcd\x9b\xcc\xef\x15\x4e\x11\x1e\xaf\x1f\xda\x2c\xee\x7c\xd2\xf9\xd1\xce\x9a\xa1\xb2\xc5\xef\x38\x25\x91\x94\x81\x8e\xc8\x83\x2d\x95\x7e\x9b\xee\x19\xfb\xe8\x70\x92\xbb\x46\x0d\xaf\x77\x41\x36\xce\x65\xfe\xf6\x89\x58\x09\x73\x16\x01\x79\x98\xf0\x9f\x1c\xa6\x20\xd5\xfa\x6e\x67\x89\xc8\xfe\x4b\x1d\xfd\x14\x3f\xb2\xb3\xf3\x6c\xa5\x08\x66\xd0\xd6\x8d\x83\xe9\xce\x5e\xf0\xf2\x3f\xe1\xf8\xe7\x67\x8f\x99\xf4\x37\x84\x32\xce\xe1\x71\x2f\x98\x95\x44\x95\xd7\x24\x98\xa7\x39\x9b\x47\x39\x59\x87\x42\x01\xe2\x0e\x7b\xc9\x0c\x45\x7d\x72\xae\x96\x95\x83\xea\x6d\x2e\xf2\x50\xdc\x84\x01\x2a\xc0\xe1\xe5\x1b\xad\x8f\xed\x31\x92\xe2\x59\x64\x5e\x59\x51\xdf\xb2\x74\x54\xc7\x28\x6f\x71\xa2\x82\x94\x2f\x09\x7e\x98\xa8\x35\xa9\xf8\x3c\x4a\x79\x6c\x6c\x9c\xdf\x6b\xc1\xe9\x53\x52\x75\x2e\x53\x57\x1e\xae\x96\x7b\xe3\xb7\x25\xbd\x29\x6d\xc9\xaf\x54\xfb\xa4\x42\x1a\x19\xfa\x7a\xbe\x5f\x5c\x1e\xe9\x97\x1f\x8c\x34\x0d\xae\x8b\x1b\xbc\x86\x1a\x6d\x3f\x09\x28\x9f\xfb\x14\x0e\x0f\x76\x72\xaf\xb0\xff\x78\xdb\x5a\x1d\x38\xe9\xdb\x18\xd9\x41\xcf\xe6\x8e\x75\x07\xeb\xfa\x21\x0c\x69\xe3\x4d\x05\x49\x78\x7c\x0d\x83\x1a\x52\x21\xbb\xcf\x63\x8a\xbc\x96\x09\xcf\xce\x03\x64\xb5\xe4\x06\x23\x05\x6d\x45\x98\xd6\x3d\xfe\x7b\x78\xf2\xe8\xdb\x4e\x21\xb2\x8f\x70\x4d\xb6\x1e\x4e\xac\xe2\x60\xb9\xe5\x68\xe2\x09\x47\x0e\xa5\xb9\x94\x27\x17\x7b\x0a\x1f\x11\xfe\xde\x32\xdd\x0b\x9f\x72\x4e\x81\x16\xf1\xaf\x9f\x50\xc8\xdb\x46\x88\xec\xb1\xd3\x89\x21\x00\x6d\x99\xd5\x2d\x27\x11\xa6\x36\x67\x06\xf1\x16\x3d\x25\xb6\x67\x7b\x07\xfa\x93\x95\x1b\xfb\xee\x38\x87\x5b\x37\xd3\x9f\xb4\x95\xfe\x77\x77\xc8\xb9\x2a\x14\x7e\xc2\x0e\x79\xb1\x7c\xf7\xa7\x76\xc8\x15\xd7\xc5\xda\xed\x7f\x39\x80\xe6\x5f\x5c\x53\x50\xd8\x80\x5f\xf9\x2c\x38\xf8\xff\x57\x75\x13\x3f\x13\x34\x0b\x1f\x9b\x7b\xa4\xf6\x41\x41\x15\x03\xbc\x3a\x6c\xd7\x07\x08\xea\xf9\x29\x35\x0a\xb1\x10\x69\xd3\xac\x18\x0b\xbd\xbb\x26\xa9\xce\x42\x7e\x5b\x55\x85\x09\xf0\xbb\x49\x9e\x4f\xb2\x92\x04\xf5\x95\xbc\xac\x9b\xfe\x14\x5d\x13\x84\x28\x57\xb7\xba\xef\x8d\xac\x68\xa8\x3e\xdf\xdf\xff\x5f\xc6\x4d\x1b\x15\x80\x4b\x25\x0d\x63\xb1\x6a\x92\xbd\xdf\xf6\x55\xdf\xe2\x87\xeb\x14\x51\x7b\x49\xea\xc5\xa9\x46\x6f\x7c\xca\xae\x5c\x09\x71\x50\x2f\xc2\xe0\x07\xee\x36\x81\x72\x9a\xd4\xe7\xf9\x9a\x79\x92\x6f\x90\xae\x6b\x34\xd4\xd7\xf1\x9a\xe4\x60\x7f\xdf\x7a\x82\xd0\xd4\x53\xfe\x9d\xc0\x26\xa9\x4a\xe7\x5e\xba\xdb\x23\x67\x69\xe3\x43\x80\x90\xb4\x7a\x72\xbe\xde\x26\x69\x2c\xa2\xf9\xbb\x7b\x3c\x5b\x7f\xdb\x50\x8f\x46\xef\x8d\x1a\x8a\x16\xd1\x77\x57\x4a\x96\x2e\xa9\xd2\xf5\x1c\x9a\xdf\xec\x2b\x8b\xc5\x16\xf5\xa5\x45\xd5\xa8\xa2\xa3\x7a\xd2\xdf\x5e\xb4\x0c\x8c\x46\xc5\xba\xf1\x1d\x46\xd5\x92\x7f\x8b\x51\x35\xd8\xb6\x8d\x1b\x45\x28\x8e\xd2\x45\x1a\x5d\x4a\x32\x17\xaa\x0a\x51\xd1\x47\xde\x63\x26\x41\xd4\xde\xfc\x5b\x58\x6f\x26\xb1\xdf\xba\x57\xdf\x73\xb4\x79\x74\x6d\x9f\x9e\x3b\xc7\x3d\xf6\xed\x7c\x78\x8c\xdb\x20\xea\x4a\x2f\x20\xb3\x93\xeb\x79\xf5\x61\x23\xb1\x10\x73\x31\xa9\x10\x2f\x84\x08\x26\x6e\x22\x16\x8a\xf5\x74\x52\x69\xbc\x2b\x10\xa3\x74\x9f\xb4\xb2\x0a\x97\xf7\xe4\xad\xb2\xb7\xc6\x3b\xd2\x24\xb5\xa2\xd4\xc8\xfb\x4c\x46\xa4\xa9\xcb\x01\x94\x4a\xbf\xbb\xd7\xaf\x1e\xde\x16\xad\xfb\x5d\x69\x37\xbb\x90\xe0\x65\x57\x92\xb5\x85\x98\x09\x43\xae\x69\x66\x6b\xf6\x69\x4a\x0c\xce\xe1\x7a\x19\x4d\x2a\x44\x19\x41\xeb\x7e\x3f\x8b\xa0\xe5\xea\x02\xf4\xa7\x35\x5d\x68\x00\xbe\xc2\xca\x61\xea\x0f\xe4\x5e\xcf\x5e\x5e\x08\x02\xb9\xdc\xb6\x2a\x05\x65\x5e\x85\x32\x9e\x1d\xa0\x4a\xc6\xa5\xe2\x12\x98\x9f\x42\xa8\xbf\xd7\x70\xbb\x62\x6f\xe9\x49\x1a\x57\x79\xda\x65\xeb\x5e\x56\x25\x62\xd2\xf7\xa3\xba\xa0\x42\x1e\x21\x91\xd8\x49\x28\xe6\x5e\x54\xcc\x5f\x36\x12\x89\xb7\x60\xbf\xef\xb4\x82\xbd\x6d\xe0\x23\xd9\x23\x1e\x49\xbc\x19\x27\x0b\xb1\xe4\xb8\x07\xeb\x85\xa1\xbc\xba\x38\xf5\x52\xaf\x88\x33\x2b\x17\x2a\x26\x3b\x11\x56\x0d\xc9\xaf\x8a\x82\xc5\x6f\x78\x93\x9a\x7c\x57\x37\xbb\x3d\x18\xe2\x6b\x18\xa2\x93\x9d\xdf\x6d\x4f\x5e\x50\x3b\x37\x3e\xac\x6d\x7e\xb2\x54\x67\x32\x86\xd5\x9a\x37\x0f\x8a\x46\x62\xbe\x51\x66\xa5\x9a\x76\x8e\xf5\x77\x4b\x15\x4a\x14\xe5\xc0\x17\x42\x84\x5b\x49\xdb\x02\x92\xd1\xb8\xe5\x9d\x36\x69\xf3\x65\x24\xa6\xbc\x4c\x46\xa6\x86\x26\xa0\x3c\x39\xc3\xf7\xb9\xa3\xdc\x91\x07\x1a\xbe\x75\x13\x62\x47\x4e\xb6\xa5\x38\xa1\x2c\x59\x4c\xcb\xbe\xea\x2f\x1a\x0c\x85\x48\x2b\xcd\x4a\xe5\xe1\xff\x06\x00\x00\xff\xff\x54\x06\xd9\xad\x1c\x5e\x00\x00") -// FileIdentifierStaticJsIdentifierAppDc3ded3fChunkJs is "identifier/static/js/identifier-app.dc3ded3f.chunk.js" -var FileIdentifierStaticJsIdentifierAppDc3ded3fChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5d\x5b\x73\xdb\x38\x96\x7e\xdf\x5f\x81\xe1\x56\x4d\x8b\x55\xb4\xda\xba\xf8\x12\xa5\xbc\x5d\x4e\xe2\xee\x64\x3a\x1d\x67\x62\x27\x99\xda\x28\xe5\x82\xc8\x43\x0a\x16\x09\xa8\x01\x50\xb6\xe3\xf8\xbf\x6f\xe1\x42\x11\x14\x29\x89\x72\xd2\x99\x79\xd8\x17\x89\x06\x81\x73\xc7\xc1\x87\x23\x12\xee\xc8\x29\x11\xdd\x1b\x98\xcc\x71\x38\xfb\x87\x60\x74\x4e\x22\xa0\x92\xc4\x04\xf8\xc9\x86\x7b\x5f\xbf\x7e\xfa\xec\x77\xe7\xb9\x98\x76\x3e\x7d\x1a\x7e\x0e\xee\x7b\x87\x87\xa3\x38\xa7\xa1\x24\x8c\x76\xc0\xbf\x87\x2e\xdc\xce\x19\x97\xe2\xe4\x1f\x17\xe7\x6f\xba\x73\xcc\x05\x74\x7e\xba\xf7\x66\x8c\x52\x08\x65\x37\x65\x38\x22\x34\xe9\x02\xe7\x8c\x77\xa7\x80\xa3\x94\x50\xf0\x46\xde\x07\xe0\x13\x42\xa3\x9c\x26\xe8\x4b\x9e\xa1\x0b\xe0\x0b\xe0\x28\x86\x69\x9a\x80\x08\xa7\x29\x4e\x80\x7a\x81\x43\x27\x21\xb4\xcb\x41\xf2\xbb\x67\xb9\x94\x8c\x76\x53\x3c\x81\xd4\x1b\x79\x1f\x09\x44\xc0\xa7\x2c\xad\xf4\x17\x21\x9b\xc3\x0b\x10\x21\x27\x73\x25\x6b\x17\xa7\x04\x8b\x67\x58\x90\xd0\x1b\x79\xff\x9b\x27\x9c\xc4\x31\xc2\x79\x8c\x5e\x4d\x39\xa0\x84\xe7\x34\x4a\x21\x01\x1a\x01\x45\xcf\x80\xe6\xf2\x0b\x70\x42\x63\xc6\x33\xac\xc6\x6f\x26\xce\xe2\x58\xa9\x75\x1a\x86\x20\x84\x37\xf2\x5e\xe0\x1c\xf8\x14\xc7\x12\x28\x2a\x78\x75\xd2\xf1\x2d\x0c\xf3\x58\x22\x4a\xc2\xa9\x44\x78\xe2\x6f\x22\xa9\x1b\xbc\x91\xf7\x1b\xa4\x32\xa7\x89\x98\x00\x07\x12\x4e\x47\xe8\x5e\xdf\x79\x70\xc6\x26\x8c\x45\x93\x3b\x70\xad\xfb\x8c\x08\x34\xc1\x69\xd4\xd0\x4b\xe4\x93\x97\x80\x23\xe0\xde\xc8\x13\x04\x90\x20\x34\x42\xd7\x20\xbf\x48\xb4\x60\x54\x9b\x23\x43\xbf\xb3\x39\xa6\x0c\xfd\xce\xa8\x64\x08\x4f\x12\xc8\x20\x8d\x40\x36\x90\xcb\x40\x08\x9c\x40\x37\x4c\x99\x50\x9c\x2f\x08\xa0\xd9\xf8\x36\x3e\xa4\x14\x28\x8a\x08\x08\x10\xe8\x57\xa0\x42\x02\xb7\x6c\x94\x7b\x09\x8c\x6f\xa3\x18\x68\xb7\x81\x64\xc8\x68\x4c\x78\xe6\xea\xf3\x12\xa7\x29\x43\xf7\x11\x11\xf3\x14\xdf\xbd\xc1\x59\xa3\x01\x8a\x81\xae\x8a\xcf\x88\x94\x80\x26\x20\xa4\x32\xbf\x24\x09\x50\x74\x41\x20\x40\x11\x16\x42\x5d\x21\x41\xc2\x29\xc2\x13\xad\x21\x45\x99\x92\x3d\x9c\xca\x8a\xc3\x6b\xca\x1a\x46\xde\xc8\xfb\x3d\x25\xe1\xcc\x90\xd4\xd1\x14\x11\x40\x17\xe1\x14\xa7\x32\xd6\xfe\x0e\xa7\x80\x72\xaa\xe2\x20\xcf\x2c\xa7\x5c\x34\x1b\xf9\x4b\x6e\x44\x68\x32\x89\x20\x09\x65\xb9\x5c\x09\xfd\x53\x2b\xb4\x33\xe0\x06\xd2\x90\x65\x3b\x0c\x08\xa7\x8c\x09\xc0\x61\xc8\x72\x2a\x5d\x93\x5b\xb1\x72\x71\xa3\xf4\x98\xa6\x1b\x46\xb9\xf6\x2e\xd4\x9c\x00\x29\x14\xc4\xb4\x50\x6d\x2d\x85\x5c\xc0\xb9\x9c\x02\xef\xce\x81\x0b\x46\xf1\x52\xe2\x5f\xb6\x0f\x59\x2a\x47\x23\xe0\x20\x8c\x3d\xdd\x61\x8c\x0a\xa8\xea\xf6\x92\xac\x8d\xa5\xa2\xb7\x75\xb5\x37\xf2\xee\xc3\x94\x00\x95\x2f\x9c\xfe\x65\x94\x34\x8c\x94\x8c\xa5\x92\xcc\xbb\x66\x98\xca\x50\x40\x4d\x80\x8c\xc7\xde\x19\xa1\x0b\xe0\x42\x62\x95\x68\xc6\x63\x0f\xcd\x6c\x00\xdd\x00\x8f\x6c\x1c\x7d\xc9\xd1\x3d\x87\x88\x70\x08\xe5\xfb\x77\xaf\x1e\xd0\x0d\x10\x09\x3c\x81\x54\x7d\xcb\x06\x96\x7f\xe6\x20\x54\xd6\x58\x23\x6d\xe4\xa4\xa1\x04\x84\xc4\x52\x02\xfd\xa5\x81\x8e\xfe\xfe\x33\x07\x1a\x82\x2b\x77\x45\xe8\x42\xe2\x00\x01\x9f\xaa\xd0\x48\xa5\x8e\xfa\xd3\xf9\x1c\xd5\xf2\xea\x2b\x37\x83\x76\x9b\x38\x62\x1a\x42\x5a\x0b\xd3\x09\x87\x70\x5a\x8d\x17\x3b\x40\x25\x82\x9b\x95\xfe\x15\xf9\x6a\x8b\x86\xe3\xf7\x53\x5a\x8b\x43\xd3\xc7\x8d\xe0\x8c\xc8\x86\x09\x5a\x1b\x92\x0b\xe0\x14\x67\xf0\x2b\x81\x34\x5a\x8a\x52\x2c\x1d\xea\x4e\x6d\xc8\x1c\x0b\x71\xc3\x78\x54\x1d\xf2\xd6\xb4\xca\x5a\x77\x0a\xb7\xab\x13\xf8\xa3\x8e\x84\x86\xf9\xee\x28\xf9\x91\xa4\xe9\x8c\x65\x19\xd0\xb5\x41\x5e\x8c\x2a\x83\xfc\xa2\x58\x09\x30\x2d\x92\x3d\xda\x43\x22\x9f\x03\xff\x9b\x33\xd0\x2c\xe3\x46\xbc\x05\x4e\x49\x84\x25\x74\x33\x22\x04\xa1\xc9\x7b\x6b\x10\xbd\x68\x4d\x6c\x2c\x03\xa1\xce\x82\xaa\x6e\xab\xa6\x96\x14\xad\x65\xa2\x55\x8a\xa8\x30\xd9\x06\x5a\x31\x26\x29\x44\x4b\x9f\x2b\x9c\x51\x05\x17\x5d\x64\x96\x86\xf1\x6d\x1c\x4e\x80\xcf\xb9\xba\x88\x2d\x13\x1d\xbc\x67\x84\x26\x78\xa2\xf2\x77\x84\x54\x7c\xe5\x2a\x24\x8d\x0c\x02\x51\x16\x4e\x15\xfb\x0c\xa7\xcb\xb8\x2e\x24\x98\x4a\x39\xef\x52\x90\x37\x8c\xcf\xce\x54\x8b\x37\xf2\xde\x80\xfc\x72\x03\x7c\xa6\x84\x00\x5e\x30\x6f\xe0\xea\x00\xa3\xd6\x8c\xc3\x0a\xe7\x9c\xc2\xed\x1c\x42\x09\xd1\x3b\x10\x73\x35\x6f\x2e\x24\x96\xb9\x02\x26\xef\x29\xf0\x1b\xcc\x25\x48\x40\x2f\x2f\x2f\xdf\xee\x9d\x52\x25\xa5\x54\xb0\x42\xf7\x79\xf8\x37\x48\x06\x55\xc1\x38\xb2\x42\xed\x19\xb1\xad\x6c\xf0\xe0\x3d\xfc\xe4\x3f\x04\xbd\xc3\xa3\xef\x83\x40\x5f\x63\x14\xaa\x3e\xb7\x84\x51\x84\x73\x24\x14\x04\xcd\x39\xc2\x68\x7c\x0b\x4f\xc2\x29\xcb\xd5\x77\x2b\x0c\xfa\x4e\xf5\x54\x73\xe9\xae\x32\x39\x37\x83\xd0\xe7\x8c\x8a\x3c\x55\xfa\xa6\x20\x90\x83\x35\x05\x8a\x00\x4d\xb0\x00\xf5\xbd\x60\x92\x03\x0a\x59\x36\xaf\x2c\x36\x5b\x21\xa8\xa2\x6e\x30\xb5\xa2\x8e\x73\xc9\x38\x11\x05\xf9\xf1\x4f\x38\x0c\xc7\xb7\x70\x2c\x94\xae\xfb\x28\x1d\xff\x84\x17\x40\xc9\x46\xe1\x0b\x44\xfa\x96\x71\xa9\xf5\x45\x2d\xc1\xe8\x69\x8e\x38\x2c\x58\x85\x7a\x13\x1a\x5d\xb0\x5c\x20\xbc\x80\x2f\xda\x01\x9a\x07\x8a\xb4\x2f\xcc\x20\xd3\x00\x36\x2d\xb7\xc0\xa2\x1f\x14\xc1\x39\xcb\x15\xc9\x18\x78\x06\x1c\x85\xa0\x82\x3b\x06\x3a\xbe\x05\xac\x2c\xab\xf5\x57\xc1\x0e\x4f\xf4\xfa\xd2\x0e\x8f\x3e\x63\xf4\x9a\xe5\xfc\x51\x88\xf4\xb9\x69\x03\x6e\x7d\x5b\xaa\xa8\x22\xb1\x15\xea\x7c\x9e\x92\x3f\x73\xed\x5a\x34\x61\xb9\x64\x14\x85\x64\x2f\x02\x21\x58\x2e\x02\xa5\x31\x47\x7f\xe6\x6a\x1a\x73\x6b\xac\xf6\x98\xf2\x9f\x66\x5c\x6b\x48\x59\xef\xbf\x16\x51\x3e\x9f\x32\x22\x08\x47\x39\xad\xc7\xf3\x7a\x40\xa9\xb5\x31\xa1\x91\xcb\x69\xb1\x31\x45\x11\xa6\xa2\x1e\x09\xdf\x1f\x55\xbe\x97\x24\x25\x02\xb4\xd4\x38\x6f\x9c\x8b\x0d\x00\x73\x5b\x7c\xb4\x43\x99\x82\xe5\x53\x4c\xda\x81\xcc\x33\x8a\x42\x15\x15\x98\x4a\x85\x33\x4f\xcd\x84\x07\xae\x30\xa6\xb6\x9e\x00\x0e\x5f\x90\xc6\x95\x24\xd1\x53\x49\x25\x70\x35\x87\x5d\xac\xb9\x19\x5c\x2e\xa9\xa2\x26\x71\xf5\x54\x8a\x31\x51\x36\x82\x14\xa3\xed\x08\xd3\x11\x3a\x58\xfa\xd8\x72\x50\x39\x69\x3e\x37\x44\x4d\xb6\x7a\x12\x01\x37\x7f\x2f\x58\x35\x61\xb6\x47\x96\x94\xe6\x69\x35\x5a\x37\xe0\xca\xa5\xba\x9b\x30\xe5\x2b\x5b\x2c\x09\xb5\x28\x1b\x91\x25\x5e\x40\x68\x64\xb7\x63\x30\x95\x0d\x41\xbc\x09\x5f\x9a\x70\xc4\x12\xf2\xba\x50\xcd\xf0\xf2\x0f\x26\x55\xd2\x54\x37\xeb\x88\xb4\x01\x62\x5e\xe4\x64\x81\xa9\xdc\x8c\x31\x9f\x11\xa0\x0b\xa0\x39\xec\x00\x31\xff\xc0\x09\x25\xb1\x4a\x5c\x68\x0f\xe9\xd4\xac\x73\x30\x08\xe4\xe6\xf7\x47\xa0\xcd\x0b\x5c\xa4\x15\xc7\xae\xbb\x43\xcc\x92\x4c\xd6\x6c\xb2\x46\x78\x79\x16\x4e\x21\x54\xbd\x97\x19\xbc\x8b\x3e\x28\x4d\xb8\xc9\x53\x35\x77\x83\x44\x16\x29\x98\x58\xa6\x6a\x7d\xc2\x79\x2b\x10\x79\xc6\xb9\x42\x28\x76\xb5\xc2\xf9\x2a\x2b\x93\x9e\xac\x1c\x81\x62\xc5\x1d\x64\xb2\x3b\x5c\xb4\xfc\x14\x52\x44\x84\xea\x6d\x63\x94\x9b\x75\xbf\x40\x8b\x1b\x04\xf8\x26\xfe\x50\xb2\x8f\xc6\x3f\x69\x40\x80\x65\x83\x10\x25\x2c\x3c\xfe\x3e\xb0\x70\x9c\xef\x3f\x19\x1c\xeb\xcf\x7d\xf5\x39\x8c\xf4\xf5\x81\x69\x41\xe5\xed\xe1\x91\xfe\xa3\xa7\xef\xf4\x6d\x53\xd9\x62\xc6\xf5\x62\xa7\x93\x21\xd8\x77\x47\xf7\xa1\x1c\xb7\xdf\x47\x0e\xab\x58\xdf\x9e\xe8\xeb\x7e\x2b\x14\xaa\x07\x60\x4d\xaf\x67\x18\x8d\x90\xd3\x16\x39\x22\x68\xe2\x03\x30\xca\xd4\x24\x2c\xc4\x69\x0d\x65\x75\xf7\x83\x92\x97\x55\x71\xdf\x55\xb1\x6f\x34\x31\xcc\x0e\x4b\xfe\xfd\xa1\xb9\x36\x37\x42\xe7\xc6\xb1\x23\x17\x38\xd2\x59\xb2\x87\x8e\xc5\xed\xf5\x2e\x00\xd9\x91\xf9\xd8\xb1\x99\x95\xc9\x31\xdc\xe0\x49\x79\x7b\x5f\x6b\xd1\xc3\x8e\xc9\x86\x13\xe3\x35\x73\xe7\xa8\xae\x98\x13\x38\xbd\xa1\x1b\x45\x4f\x56\x03\x60\x70\xe8\x98\xa2\x1f\x96\xb2\x19\x22\xfb\x26\x96\x8c\x15\x7a\x87\x6d\x3d\x55\xe0\xf6\xd5\xd0\x1c\x1c\x95\x14\x8c\xac\x45\x88\xb4\xc4\xf5\xa5\x05\x8d\xf2\x95\xc0\xb5\xaa\x6c\x81\xfc\x9a\xc4\x61\x69\xeb\x8a\x49\x1b\x22\xea\xa8\xa8\xc9\x34\x47\x91\x9d\x54\x95\xf9\x39\x70\x2d\x68\x94\x35\x11\x6f\xf8\xee\x3f\x69\x98\xa6\x4e\x80\x59\x75\x62\x37\x48\x8f\x6a\x4d\x36\x46\x8e\x5b\x6c\x4a\x1c\xcd\x42\xe4\xea\x8f\x4a\x09\xed\x9c\x74\x0d\x6a\x22\xaf\xdf\x73\xec\x53\x31\x96\x09\x17\xdb\xeb\xb0\xae\xcd\xc0\x99\x4d\x55\x63\x59\xd1\xcd\xf0\x96\xfb\x9f\xd2\x25\x7d\x70\x2c\x1e\x55\xa8\x3f\x66\x73\xe4\xe8\x35\x70\xbc\x5f\xb1\xf5\xce\x0e\x2d\x32\x86\x93\x1b\x6d\xf0\xdb\x1c\x6d\xcc\xdc\x26\x0f\xae\xdf\x93\xfd\x7b\x23\x76\xbc\xba\xb0\x58\xcd\x8f\x9c\xe4\x64\x03\xc9\x0c\x2c\x52\xb4\xee\x8b\x9d\xbe\x6e\xd8\xdb\xbe\x26\xe0\x8b\x81\x61\x69\xb3\xfe\x71\x43\x20\x1e\x96\xbd\x8a\xbc\xb5\x3e\xb6\x9a\x37\x95\x3b\x58\xa1\xf5\x46\xf5\x71\x34\xd7\x6e\x66\x9b\xdd\x59\x64\x88\xca\x2a\xbc\x26\x94\xd6\x6f\x79\x9d\x88\x69\xc2\x07\x6b\x95\x38\xaa\xf9\x64\xb7\xc0\xf8\x4b\x37\xd2\x65\x6c\x58\x28\xe0\x62\xac\xa3\xcd\xd3\xa3\x00\x01\xa8\xf4\x92\x9b\x18\x86\x13\x13\xa5\x6d\x26\x70\xc3\x66\x7d\xfc\x2d\xc9\xac\xdd\x4e\xbe\x0c\x0a\x8b\x07\x9e\xd4\x53\x80\xcd\xc3\x95\xbc\xd5\x66\xe7\x3f\x1e\x6f\xc1\x32\xd6\xc5\x63\xcf\x05\x35\xfb\x2e\x9f\x68\x35\x16\x7a\x07\x9b\x83\xa8\x92\xaf\x1a\x17\xf0\x65\x55\x21\xe7\xaf\x1e\xdc\xf4\x7b\x54\xcb\xc5\xfd\x1a\xda\xb6\x2d\x71\xad\xdd\x01\x3d\x03\x77\x79\x1e\xba\xe2\x36\xac\xd8\x2e\xac\x8c\x4b\x1a\x05\x5c\xdb\x5c\xf5\x58\x35\xd4\x92\xf4\x5a\x4f\x57\xf2\x61\x5c\x0f\xe4\xb5\xb3\x72\x1f\xb5\x71\x65\x0d\xff\x16\x28\x71\x97\x38\xdb\x5e\x9d\x69\x2f\xca\x23\x43\xaa\x48\x45\xc1\x16\x1c\x64\x16\x90\xca\x36\xa6\x42\x78\x35\x28\x9a\x96\xa5\x86\x20\xdd\xdf\x75\xcb\xf1\xd8\x34\xf4\x3d\x3d\xdd\x0e\xba\x6d\x2c\x82\x39\x82\x1d\xba\x73\x6b\x97\xf4\xd9\x54\x2e\xdb\x55\xa1\x7d\xc7\xfc\xb1\x3b\x55\x36\x95\xdb\xc6\x6d\x56\xc0\x8d\x55\xb8\xf1\xb7\x00\xb5\xea\xea\xe9\xc8\xd1\x3f\x68\x59\xc1\xdb\x1c\x3b\x35\x17\x38\xab\x50\xb1\x31\x74\xb9\xb6\xfd\x91\xd9\x99\xa6\xce\x1a\x37\xa8\x73\xea\xb5\xa9\x11\x96\x26\xb4\x19\xd4\x4c\x47\xd8\x5c\x34\x1c\xaf\xac\xad\x03\x67\x9e\xd9\x3d\xd5\xd0\x8d\xeb\xf5\x8b\x6e\xbd\xb8\x58\x4b\x20\xf5\x18\x29\x76\x50\x75\xac\x54\x9d\x47\x68\xcf\x9d\x9a\xee\x0c\x89\x9c\xa8\x1e\x3e\xa2\x50\xf9\x9d\x5d\x6f\x9a\x7a\x8e\x53\xfb\x1b\xe7\x52\xcb\x3a\x68\xfb\x50\xd9\x28\x40\x05\x4e\x36\x96\x4e\xcb\x11\x15\x13\xf4\x1c\xcf\xb8\x0a\xbb\x69\xd9\x2a\x6f\xc4\x31\xee\x1b\x40\xd7\x9d\xa1\xeb\x76\x8f\x8d\x33\x7f\xbc\xba\x6e\x39\xe9\xcf\x6e\xb9\x9d\x10\x1a\xd4\x0b\x03\x7d\x67\xec\x71\x6d\x59\x29\xaa\x46\x2e\x37\xb7\x12\x54\x07\x43\xfb\x83\x6f\xab\xdc\xb5\xaa\x26\x8f\x57\x76\x27\x76\x1f\x5c\x73\xb4\x5d\xb9\xab\x35\xa2\x52\xe2\x62\xfb\xac\x3e\x0f\x87\xdf\xe4\x83\xc1\xb1\x33\x51\xf1\x1a\x39\xd6\xae\xde\x0d\xc5\xb9\xea\xf6\xa2\x62\xf3\xc9\xd8\x81\x98\x75\x50\xfb\xed\xa6\x6f\x5d\x65\x1f\xaf\xac\x9b\x05\x50\xae\x45\xe5\xd1\xd8\x45\xbc\xba\x2a\xbf\x46\xd4\xe1\x78\x15\x1e\x39\x77\xab\x00\xd9\x2d\xe6\xff\xbf\xef\x76\xfc\x85\xe2\x91\xae\xfb\x76\xaf\x39\xbe\xb0\x13\xd6\xdd\xb4\x1e\x54\x5c\x5b\xfe\x44\xf2\xe4\xfb\xfc\x44\xf2\x07\x11\x72\x7c\x1b\x0f\x66\x42\x22\x3c\xbe\x8d\xf7\x91\x04\x9a\x5c\x63\x21\x11\x05\x75\x07\xae\xd5\x6d\x4a\xda\x3d\x3c\x03\x77\x14\x23\x1c\xcb\xbc\xfd\xb3\x33\xbf\xb3\x4c\x71\x1b\xdf\x42\xa4\x9f\xdd\xa6\xf9\x7c\x9e\x8e\x6f\xe3\x48\xad\x65\x98\xa3\x3c\x43\x4a\x0c\x92\xec\xf2\x8b\xc0\x07\xa2\x74\x99\xe2\x34\xc2\x68\x0a\x24\x23\x69\x94\xd3\x3c\x43\x38\x4d\x25\x8e\x11\x4b\xac\xb2\x40\x52\xc5\x38\xce\x51\x27\xcb\x69\x94\xa3\x8c\x24\xed\x9e\xe5\x26\x69\x44\x84\x58\x68\x3e\x6d\x9f\xe4\x4e\x95\x70\x5b\xaa\xe8\xb7\x31\x96\x62\xc6\xc7\xb7\xd0\xa3\x84\x26\x16\xc9\xee\x69\x71\x13\x4c\x13\x41\xa8\xd0\x06\x51\x72\x53\x81\x0a\xef\xb5\x29\x57\xdf\x46\xa0\xe8\xa3\x04\x64\xce\x51\xca\x66\xc6\x08\x8a\x1a\x08\x91\x67\x28\x49\xf3\x24\xc1\x88\xaa\x5e\x14\xef\xf0\x40\xb7\x12\xe2\x51\x45\xe2\x05\xa1\x02\x67\x29\x24\x2a\x06\x84\xd4\x02\xc5\x20\x64\x8e\x56\x2d\x91\xb7\x2a\xdd\x5e\x64\x90\xa6\x7a\x34\xf4\x90\xc4\xb3\x19\xa6\x14\xc5\x77\x9c\x70\x44\x95\xf2\xfb\x98\x22\x49\x52\xeb\x7e\x4b\xde\x06\x98\x61\x89\x70\xbc\x7c\xda\xb9\x30\x3a\x51\xb1\xb3\xc1\x2a\x6b\xca\x94\xb7\xd1\x52\x83\xf6\xb5\xcd\xe6\x41\x6b\x8b\x97\x1f\x20\x8d\xf2\x52\xd2\x56\x45\xc9\xb5\x06\x20\x94\x9a\x89\xf8\x03\x9e\xc6\x79\xc3\x24\x46\x98\x52\x4c\x9b\xa5\x6f\x78\xd4\x7b\x7c\x0b\x87\xdf\x58\xbd\x5b\x90\x34\x6d\x55\x89\xbb\x8d\x00\x54\xfa\x31\x53\x2d\xc6\x48\xa8\xc8\x22\xdc\x44\xd6\x78\xec\xbd\x86\xbb\x18\xeb\x4a\xdc\x2d\xf4\x62\x8e\x33\x01\x34\x22\x3a\x93\xd9\x11\xea\xc6\x4e\xcf\xe4\x68\x92\x8d\xa5\x28\xe3\xad\x04\x38\x36\xb3\x55\x4a\xbc\xbd\xe8\xf3\x07\x2c\xa7\xf7\x42\x7b\xd5\xfa\x5c\x29\x82\x6b\x7a\x04\x28\x85\xbb\x98\x70\x57\x7e\x93\x17\x50\xcc\x38\x27\x92\xd8\xf1\x54\x39\xae\x9a\xa4\xa9\x9b\xa7\x5b\x17\x2f\xb4\x3f\xa5\xc4\xc8\x64\xd1\x96\xa5\x09\x2d\xef\xc6\xa7\x78\x28\xad\xcf\x9f\x86\x67\xc3\x8d\x75\x56\xf3\xab\x9e\xea\xcb\xfc\x9a\x67\x2d\x4b\x01\x2a\x9a\x69\x84\x29\x8e\xeb\xcf\x0d\x35\x6f\xe3\x5f\xdf\xcd\x48\xca\xf8\x8a\xe6\x6b\xf7\xe9\x6f\x94\xb1\x84\xc4\x9b\xf7\xe5\x5b\x73\x71\x7d\xbb\x5d\x9a\x4b\x65\x59\x42\x97\x2b\x0a\xda\x43\xb1\x6e\x9f\x28\xd6\x5c\x3e\xe6\x71\x1e\xb5\xba\xf6\x94\x8a\xb9\xce\x2d\xb4\xd1\x4a\x6d\x1f\xea\x59\x21\x96\x36\x1a\xb0\x71\x7b\x5a\xd5\x11\x65\x25\xe8\xe9\xa2\x0f\x6b\x57\x20\x2b\x6d\x3d\xd4\x59\x82\x38\xdc\x29\xb8\xa0\xa1\x4e\xdb\x87\xc6\x55\xee\xc1\x2b\x0c\xb1\x9c\xe6\x09\x36\x4a\x29\xe4\xa5\x16\x3a\x8a\xcb\x00\xc4\x6b\x99\xb5\xdf\x93\xdc\x46\x03\xbd\x02\x8a\x6b\x65\x01\x4c\x53\x48\xa4\xd9\x72\x88\x05\xe6\x95\x27\x80\x7e\x9c\x68\xb0\x46\x32\x2d\x93\x75\x03\x5e\x45\xbd\x47\xfb\xdf\x07\xf5\xfe\x9e\x62\x2e\x01\x91\xd9\x4c\x3f\x35\x7c\xa0\x32\xdc\x84\xd0\x08\x50\x06\x91\x79\x7a\xbc\xfe\x4c\x5e\x13\xe0\x7d\xab\xc2\xef\x78\x81\x48\x72\xbd\xc3\x3b\x8b\x97\x24\x55\xa9\x46\x03\x11\xfb\xec\xa3\xb8\x66\x14\xb1\x0c\x4d\xb0\x20\x62\xb6\xf2\x96\xca\x56\xb8\xfb\x0c\xa6\x2c\x8d\xf4\xcb\x41\x52\x05\x99\x04\xf5\xad\x78\x00\x55\xba\x69\xdc\x4b\xa2\x36\xc0\xf6\x3c\x8b\x31\x4d\x5a\x22\xda\x5f\x31\x5f\x40\xba\x05\xd2\x46\x39\x9a\x62\x8e\x26\x29\x91\x12\xa5\x2c\x49\x40\xa2\x5c\xa2\x98\x63\x14\x11\x5a\x60\xad\x55\x9d\xd7\x81\xd8\x17\x39\x9a\x61\x8a\xd2\x5c\xf9\x2e\xd2\x8f\x80\x2f\x08\x8d\x72\x90\x0a\xa0\xc1\xc1\x5f\xfe\x16\xe2\x02\x28\x4d\x49\x22\x24\x9a\xc0\x8c\x43\xac\x94\x51\x5a\x91\x0a\x7c\x59\x8f\x50\x2f\xf9\xdd\x6c\x86\xe6\x3a\xec\x66\x14\xcf\xe7\x40\x51\x4e\x23\xe0\x81\xf6\x94\x6e\xd7\x56\x52\x46\xc2\x8b\x9a\x8d\xda\xe3\xcf\xd7\x2c\x49\x50\xde\xf4\xf8\x67\xdb\xfe\x9b\x50\x67\x82\x80\xd6\xbc\xb6\x1e\x73\xae\xe8\xa6\x12\x38\xf9\x11\x30\xf3\x19\xcf\x67\x4a\x52\xac\x5f\x62\xad\xc9\xdb\x80\x32\xe1\x5b\xdf\x28\x54\x29\x81\x8a\x59\xe3\xb3\xc9\x35\xa0\xf9\x01\x22\x63\x97\x59\xaa\xd3\x91\x09\x8c\xf1\x58\x25\x89\x14\x4b\xa9\x10\xa6\xd0\x6d\x0b\x92\xa2\x28\x57\xf3\x08\xa5\x10\x81\x54\x53\x7c\x27\x78\x69\x29\xae\x7b\xe0\xfb\x00\x25\x6a\xaf\x7f\xcc\xed\xbc\xda\x0e\x30\x9b\x65\x3f\x9d\x09\x98\x4b\x15\xcf\x46\x6e\x9b\x91\xb8\x12\x5e\x6d\xaf\x74\xc4\x4f\x78\x3e\x53\x4d\x84\xba\x19\xb0\xfd\xc3\xdf\x8b\x09\xbf\x6b\x7a\x7d\xb2\x09\x31\x1a\xbd\x37\x41\x46\x1d\xf9\x84\x6e\x79\x99\x10\xa2\x4d\x09\x6b\xe3\xab\x84\x5a\x5b\x8a\x17\x6d\xc1\xa1\x82\x3d\x0a\xf5\xb4\x01\x86\x20\xe4\x96\x5f\x6b\x3e\xc0\xee\x6f\x11\xbe\xc8\x11\xf0\x22\x5d\x6b\xc7\x3e\x06\xff\xcd\x38\x59\xe8\xb9\x0e\xd2\xba\x7c\xc5\x08\x6d\xb1\x9f\x4b\x68\x5e\x33\x4e\x23\xe8\x2b\x9c\x8a\x62\x20\x29\x28\xa4\xb7\xcc\xdc\xe2\x1a\x66\x33\x47\xa0\x9f\x2d\xc9\x40\x41\x9a\x98\x71\xa1\xe6\xc1\xcc\xac\xea\x6d\xd1\x9d\x5c\x00\x9f\x09\xc5\xab\x8b\x2e\x34\x7d\x15\x2c\x05\xb0\x48\x05\x6c\x24\xde\xfe\xb5\xbf\x05\x50\x09\x16\xbf\x71\x73\x77\x84\x1c\x0c\x67\x78\x4b\x92\xce\xd8\x24\x25\x1a\x01\x28\x41\x58\x62\xde\x03\x2c\xc0\xca\xee\xaf\xf5\x59\xc6\x0a\x9f\xed\x89\xc6\xd7\xf9\x8e\x7a\xdf\x09\x9e\x31\x8a\x28\x01\x89\x32\xc5\xcf\xbc\xfa\xb6\x30\x6f\x2c\xb6\x3c\x49\xe2\x7c\x4e\x09\xe4\x37\xad\x11\x99\xfa\x16\xc8\x2e\x22\x09\x24\xb0\x00\x2a\xd0\x0d\x00\xd7\x97\xbb\x60\xb1\x17\x80\x24\x53\x73\x32\xcb\xd4\x5e\x63\xc1\x34\xfc\x92\xe4\x3a\x42\x8c\xca\x29\xcb\xa3\xcd\xf4\x0a\x20\x76\xa1\xbe\x5b\xe2\xb0\x4b\x26\xd1\x17\x02\x74\x5b\x75\xf1\x1a\xd0\x04\xa8\x44\x38\x36\x6f\x06\xa3\x05\xa6\xe8\x1a\x96\xf5\x2e\xa3\x7f\x1b\x14\x46\x24\x5a\xd8\x93\x20\x14\x1c\xa3\x39\x52\x33\x15\x28\x4a\x40\xa4\x4c\xfe\x80\xd3\x20\x26\xb0\x50\x2b\x5b\x82\x70\x5c\x7b\x13\x7c\xe3\x21\x0f\x33\xc4\xe6\x88\x29\xc4\x25\x24\xc6\x0a\xf4\xcf\xa8\x6a\xc9\x10\x8e\x91\x54\x5b\x00\x7d\x7a\x44\xa3\x69\x76\x38\xd0\xa1\x2e\xd5\x96\x03\x1d\xea\x03\xd6\xc2\xaf\x53\xd3\x84\x66\x04\xbe\xb4\x3c\xcc\x41\xa9\x87\xa9\xa3\xdf\x84\x5c\xff\x08\xfc\xf5\x1b\x4c\x78\x4e\x66\x08\x34\x06\x8b\x80\x37\x44\x59\x13\x0a\x63\xdf\x8a\xc2\x6e\x48\xab\x42\xdf\x0b\x35\x3f\xd9\x5c\x23\x2e\x35\x6d\x31\xd6\x67\x39\x48\xb0\xa0\x86\xea\xc0\x56\x91\x10\x31\xa6\x32\xd1\x8d\x32\x39\xa2\x58\xef\x9c\xdb\x83\xaf\x26\x11\xa5\x65\x88\x22\x22\x15\xc7\x88\xb5\x39\xcb\xa1\x90\xb8\x10\xd7\x91\x35\x40\x33\x4e\xae\x13\x89\x22\xf8\x02\x0a\x69\x55\x52\xd1\x35\x94\x6f\xda\x81\x1a\x95\x18\xdf\xec\x72\x9c\x83\x79\xe9\xae\xf5\x71\x0e\x85\x8c\x9b\xc0\xd7\x29\x6e\x75\x94\x03\xc8\x8d\x99\x6a\x13\xfc\xb2\x31\x08\x5c\x50\x8c\xeb\x15\xbd\x66\x08\xf6\x11\x87\x53\x79\xc3\x5a\xa2\xb0\x0f\x2c\xd5\x27\x0e\x6d\x06\x62\x1f\x35\x10\xdb\x01\x85\xfd\xa3\x48\xd8\xc5\x59\x0e\x68\x0f\xc5\x98\x4a\x2c\x24\x11\xe1\xf4\x11\x90\xec\x03\x03\xae\x27\x63\x52\x31\x0a\x7a\xcc\x49\x0e\x4b\x5a\x37\x4b\x5b\xad\xa7\xe3\x14\xe3\x34\xaa\xa4\x28\x23\x22\xcd\x67\xb2\x8b\x9e\x33\x2a\x39\x4b\xc1\x00\x4e\x85\x59\xec\x02\x0c\x14\xcd\x39\x9b\xa8\x1b\xcc\xac\xe8\x6d\xd1\xd8\x0d\xf0\x99\x1e\x9b\x02\x64\x15\x0e\xd7\x50\x60\x09\x35\x27\x36\x70\x68\x0d\xc9\xce\xa9\x4a\x0b\xca\x04\xb0\x02\xcb\x4a\x54\xf6\x57\x09\x00\x2b\xfc\x2d\x6b\xb4\x06\xa0\xf5\xbf\x0f\x40\xfb\x15\xa7\x53\x96\x23\x8c\x52\x92\x60\x8e\x30\xd3\x28\x8d\x44\xac\x5d\xd5\xec\x12\xa8\xc4\x1c\x51\xb6\xc0\x99\x02\x95\xad\x61\xda\x69\x08\xcb\x17\x87\x45\x8e\x8b\x74\x36\xbe\x85\xa3\xf1\x2d\x0c\x18\x9a\x8c\x6f\xa1\x27\x48\x88\x51\xa4\x8f\x84\xa8\xd4\xcb\xb7\x42\xb7\x3f\x30\x55\x80\x46\xa5\x17\x10\x82\xa1\x39\xf0\x8c\x48\x12\x31\x14\x01\xd2\x9c\x54\x93\x20\x42\x2a\xa9\x11\xa0\x39\xe6\x18\x09\xc8\xe6\x7c\xa3\x0e\x05\xa4\x53\x41\x00\xb7\x92\xb5\x3d\x6c\x21\x82\x7c\x1b\xa2\x53\xec\x85\x30\xca\x47\x58\x1b\x45\xab\x5d\x24\xca\x98\x11\x24\x95\x1a\x14\x47\xb8\x05\xb0\x7b\xcb\x94\xaa\x10\x4e\x31\x47\x2a\x75\xa3\x6b\x4c\x21\xc5\x08\x27\x8c\xb7\xfd\x41\xf8\x5c\x17\xea\x1f\x05\xea\xe6\x8c\xa3\x18\x2f\x18\x47\xf6\x2e\x20\x86\x62\x92\x29\x07\x2c\x15\x6d\x05\xf4\x9e\x63\xce\x21\xc9\x01\x51\x86\x26\x4c\x1a\x0b\xe1\x09\x26\xb7\xcc\xb8\xcd\x5a\x85\x3b\x06\xa4\x0d\x06\x5c\xab\x78\x33\x8a\xbb\xac\x51\x6d\x0d\x00\x37\x0e\x5d\x0b\x05\xcf\x44\xc8\xd2\x29\x70\x94\x67\xf5\x88\xdf\x70\x14\x83\x32\x01\xa1\x24\x24\x55\x0b\xb0\x1f\x72\x10\x83\x00\xc4\x72\xc9\x1b\x04\xae\x23\xc1\x2d\xd1\xd4\x0e\x0c\xfe\x99\xb7\xab\xc6\x9d\x32\x14\xea\xc0\x51\xe1\x9f\x29\x50\xf8\xd6\xe4\x00\x7d\xf8\x82\x00\xf3\x6b\xb9\x45\x7d\x84\x51\x1c\x99\x68\xda\x09\x0a\x16\x24\x95\x54\x8d\xc5\xb8\x58\x67\x34\x8c\x88\x90\x6c\x3b\x1e\x5c\x91\xb9\xa0\x1e\x20\x73\x50\x5e\x0f\xe1\x22\x91\x19\x8e\x7a\x5a\x2b\x6c\x98\x2b\x37\x08\x24\x20\x17\x28\xc2\x11\x6b\x7f\xf6\xc2\x73\xdd\x88\xdb\x1e\xbe\x50\x88\xb4\xf9\x57\xdb\x95\x58\xdc\x88\x06\x43\xb5\x9d\xa9\x4d\xd6\x96\x70\x50\x1f\xbc\xf0\x05\x37\xad\x56\xeb\xaa\x71\x29\x5e\x70\xbc\xd7\xfe\xe0\x05\x48\x72\x42\xb7\x95\xe5\x9e\x41\xa6\x7f\xbb\x58\xbf\xff\x6d\xfa\xb5\x96\x84\x84\xe5\xce\x94\x35\x80\x50\xaf\x7b\x92\x84\xec\x11\x90\xf0\x15\x15\x84\x63\x94\x67\x28\x6f\xb2\x4c\x4b\x30\xb8\xa4\x82\xd1\x7c\x8d\xbd\x1a\xe1\xa0\xc5\x12\x84\x8e\x6f\x21\x0a\x09\xab\xa4\xfa\x2e\x7a\xbb\x5c\x11\x16\xc0\xed\x99\x13\x58\x28\xd7\x0b\x14\x72\x88\x80\x86\x04\x13\x81\xd4\x86\x46\x2d\xca\x4b\x50\xd1\xf6\x14\x06\xcd\x50\x11\x5a\xcb\x4b\x81\x1c\x03\x31\xe2\x03\xd8\xc4\xa9\x35\x62\xd4\x0d\x6a\x1a\xda\xe3\x18\x40\xcc\x81\xe3\x08\xbb\x88\xb1\x51\x18\x1d\xf2\xa5\x3c\xca\xff\xdf\x26\x0e\xb8\xd2\x44\x26\x39\x44\xac\x2e\x52\x09\x21\x07\xdf\xed\x6c\x86\x61\x2f\x52\x9f\x03\xfd\x3c\xe9\x50\x3f\xa6\x3a\x1c\x0c\xf5\xe7\xbe\xfe\x9c\xe8\x4f\xd0\x77\x7b\xfa\x53\xbf\x66\x3d\xd4\xcf\x4f\xda\x1b\x76\x00\x2e\x07\x0c\xcd\x80\x23\xdd\x72\xac\xaf\xfb\x66\xb0\x43\x28\x36\x84\x30\x2a\xdb\xf4\xc3\x97\xc3\xa1\x61\xdd\x5f\x6d\x19\x0e\x5a\x41\x5b\xad\x96\x2b\x5e\xbf\x14\xc0\x6a\xb2\x5f\x17\xac\x35\x00\xd6\xe4\x87\x35\xb3\xf4\x1d\x03\x56\x34\xb3\x7a\x18\x0d\x8e\x4b\x9d\x06\x4f\xd0\x2a\x91\x41\xb4\x2a\x75\xa5\xe5\x89\xe3\x24\x6b\xdb\x03\x47\xb5\x7a\xd7\xc1\x91\xe3\xc9\xd8\xd1\xd9\x70\x3b\xde\x05\x98\xab\x11\xfd\x9e\x23\xb1\xeb\xaa\x7d\x47\x00\xc7\xaa\x45\x58\xb9\x9d\x8e\x9c\x96\x83\x9a\x4d\x1c\x12\x76\xb0\x6d\xda\x47\x4e\xa4\x6d\xb3\xbb\xc3\x0e\xd7\xa2\xd5\x1d\x67\x5b\x62\x87\x91\x6b\xc5\x83\x36\x3b\x0a\x1d\x0f\x8e\x49\x2a\xfe\xee\xb7\x3f\xfc\x61\x19\x54\xee\x7c\xe8\x3b\xf6\x18\xae\x31\x75\xbc\x65\x7f\xe2\xcc\x81\x09\x72\xff\x70\xac\x6f\xa6\xf9\x31\x72\xd8\x1d\xb5\x89\xde\xef\x18\x8c\xed\x0f\xa2\xd3\xa1\xe8\x64\x07\x4b\xcd\xcd\x14\x21\xaa\x6b\x1d\x3a\x22\x1d\xd6\x04\x3e\xa8\x0b\x89\x1d\x82\x13\x27\xd8\x42\x67\xe2\xda\x60\xb3\xea\xb6\x3f\xef\x61\xd8\x3b\x2a\x9d\x5a\x99\x20\xfd\x5a\x90\xba\x21\xfe\xc4\x15\x39\x40\x8f\x3d\x15\xa2\x9a\xbf\x0f\xc7\x2b\x09\xbf\xc2\xcc\x15\x65\x3f\x58\x93\xfd\x5d\x51\x2b\x59\x7c\x38\x6e\x4e\x0a\x95\x20\x3c\x70\xc9\xb5\xda\x5b\x8e\xcb\xb5\x6b\xdf\xd1\x21\x5c\xc7\x0d\xd7\xa2\x32\x76\x7c\x3c\x40\xab\xb3\xaa\x88\x10\xa3\xaf\x09\x70\x37\x67\x0c\x7a\x6b\x26\x54\xc5\x43\xff\x09\x13\x6a\xa7\x73\x22\x86\xbd\x36\x6e\xd9\x7a\x34\x44\x3b\x32\x9b\x4e\x83\xa8\x50\x18\xd4\xc1\x41\xc3\x2a\xe3\x58\xee\xa0\xb7\x6a\x39\x7b\x17\x5a\x58\xae\x82\x05\xd6\x6f\xdf\x9d\xe8\x36\x6a\xc6\x6e\x2c\x1c\xac\x4e\x90\x62\x05\xeb\xff\x88\xdd\xfd\x78\xb9\x9c\x14\xc8\x49\xf3\x1e\xd4\x63\xc8\x9d\xc8\x46\x8d\xd0\xb1\x10\xd4\x22\xd6\x4d\xbb\x93\xba\xb5\x1a\x8f\x83\xb0\x68\xcc\xf5\x5c\x25\x51\xf4\x37\xe4\xb1\xd6\x07\x42\x54\x4c\x5e\x9d\x3f\x6d\xaa\x0e\xe3\x15\xd0\x68\x27\xd1\xc4\xcd\x21\xf5\x74\xe3\xda\xe4\xb8\x08\x82\xb1\x59\xa0\xda\x80\x9e\x2a\x34\x36\x47\x4a\xac\xac\x5a\xbd\xf1\x2a\x30\x6f\x58\xb5\x6a\x0b\x60\x05\x4e\x39\x71\x5e\x5f\x69\x0a\x15\xdd\xfe\x15\x75\x77\xaa\xab\x3c\x4e\xf3\x75\x47\x3f\x14\x5e\x18\xae\x06\x9d\x6b\x78\xbb\x1c\x0f\x23\xc7\x2c\x2d\x1e\x9c\x1a\x37\x2f\x20\x46\xba\xd0\x61\x62\xa6\xf5\xee\x4a\xd9\x95\xa3\xe2\x4c\x07\xc2\x55\x52\xd4\x77\xc0\xc9\x55\xfd\x4b\x2d\x8a\xb5\xad\x3e\x05\x9d\xad\x9d\x8b\x87\x2a\xd8\x12\x9c\x05\xcc\x3a\xe3\x51\x19\xa3\x02\xc8\xdc\xc5\xaf\x10\xef\xb8\x64\x3d\x74\x41\xfe\x7e\xcd\x1f\x87\xae\x78\xbb\x9c\xd2\x50\xa0\xf4\xbe\x43\xb2\x12\xf6\x2d\x4b\x69\x8f\x0b\x87\x4d\x85\xb7\x71\xb9\xde\xad\x5b\x2b\x1b\x0f\x5e\x18\x0e\x7b\xbb\x62\x8a\xfa\xca\xb8\x03\xa6\xb0\xdb\xf7\x86\x33\xa3\xb7\x1c\xd1\x30\xec\x39\xf3\xaa\x58\x28\xbf\x7d\xe9\x89\x5b\x16\x0f\xc7\x65\x72\xdf\x77\x7c\x55\x61\xdd\xa6\xa6\x38\x2e\x77\x69\x6e\x75\xc4\x88\x74\xb0\xb9\xd2\x38\x5e\x29\x1b\xd8\xc4\x6e\x25\xa9\x5b\xa4\x86\xc9\xd7\x4f\xad\x60\xb7\x93\x1d\x96\xd0\xca\x8d\x1d\x70\x62\xa7\xd8\x0c\xee\x39\xd0\xd9\xc5\x11\x45\x92\x79\xdc\x99\x0d\x96\xbd\x8b\x00\xd6\x6f\x12\xfe\xf2\xb0\x69\x7f\x8a\xc3\x4e\x72\xb7\x0f\xb6\x75\x67\x39\x3c\xbe\x32\xe7\x2e\x01\x95\xcd\x88\x7e\x23\xbd\x5a\x1a\x7b\xe4\xce\xaf\xa2\x53\xbd\x4e\x17\xd6\x0d\x52\xcf\x50\xc7\x2d\xf6\x3b\xc3\x0a\xfe\xaa\x17\x40\x1a\x3a\x1d\xd7\xa3\xa4\x2e\x72\xaf\xa6\x6a\x65\x1d\x5e\x57\x8c\xdb\x6f\x7b\x10\x44\x51\x29\x3b\xa8\x45\xa0\x6b\x87\x18\xd5\xa6\xde\x71\x29\x5e\x51\xc6\xfa\xcf\xf2\x5a\xc5\x42\xd0\x3c\x15\xac\xe5\xd6\x56\xf4\x7e\x8c\x8b\x76\x39\x30\x62\x39\xd9\x6a\x46\x5e\x57\x7a\x73\x23\xaf\x52\xc8\xad\xd7\x41\xfa\xfa\x27\x86\x95\x83\x21\xaa\x7b\xa2\x1d\x5c\xd2\xbe\xee\xbe\x8b\xfd\x5b\x94\xc8\x9b\x04\x88\x4b\x2b\xd8\x4e\xb6\x9e\xf2\x98\xa3\x1f\xfe\x5a\x27\xac\xfc\x88\xd2\x77\xff\xf1\x5e\x40\x03\xe6\xdf\x7b\xb9\x00\x24\x24\x27\xa1\xf4\x9e\xb2\x6e\xd4\xa1\x81\x37\xf1\x82\xce\xb2\x9f\x7f\xcf\x41\xe6\x9c\x22\xf9\xe0\xfb\x81\xed\x31\x6b\xec\x81\x9d\x1e\x61\x63\x0f\xe1\xf4\x88\x1b\x7b\x70\xa7\xc7\x75\x63\x8f\xd0\xe9\x01\x8d\x3d\x88\xd3\x23\x6b\xec\x91\x3a\x3d\x92\xc6\x1e\xb9\xd3\x63\xda\xd8\x23\x72\x7a\xe0\xc6\x1e\x33\xa7\x07\x69\xec\x91\x38\x3d\xa2\xc6\x1e\x73\xa7\x47\xda\xd8\x23\x7b\xf0\xfd\xa7\x0b\xcc\x91\x3c\xf1\xde\x9d\x3d\x3f\x7b\xf5\xe1\xec\xea\xec\xdd\xbb\xf3\x77\x5e\x80\x55\xcb\xc5\xd9\xe5\xd5\xcb\xb3\xd7\xaf\xcf\xbd\x40\x94\x3d\x6c\x0b\x2f\x5b\x3e\x9c\xbe\x7e\xf5\xe2\xf4\xf2\xec\xea\xf5\xf9\x6f\xe7\x6f\xbc\x20\x54\xb7\xfe\xf9\xfe\xec\xe2\xb2\x68\x21\x65\x67\xdb\x92\x9e\x78\xef\xdf\xea\x41\xaf\xde\xbc\x7d\x7f\xe9\x05\x79\x39\xe8\xf9\xf9\x9b\x8b\xb3\x37\x97\x57\xa7\xaf\x5f\x9f\x7f\xf4\x82\xa8\x7e\xe7\xf9\xe9\x9b\xe7\x67\xaf\xbd\x60\x56\xd2\xb5\xb7\xbc\x20\xa9\x72\xff\xf5\x57\x2f\x98\x57\xd9\xab\xa6\xec\xc4\xbb\x38\x7b\xf7\xe1\xd5\xf3\xb3\xab\x8f\xe7\xef\x7e\x3f\x7b\x77\xf5\xe6\xec\xa3\x22\x72\xa9\x88\x3c\x04\x83\xfd\xfd\x6d\x11\xcf\x3b\xb4\x30\x1f\xeb\x1c\xf8\x01\x3e\x61\x5d\xda\x91\x7e\x20\x4e\x58\xa7\x7f\xe0\x07\x5c\x37\x08\x3f\x08\x4f\x58\xa7\x77\x30\xf0\x03\xa2\x5b\x42\x3f\x48\x55\xcb\xa1\x1f\xe4\xaa\xeb\x71\xdf\x0f\x22\x3d\xe6\xd0\x0f\x66\x27\xac\x73\x7c\xe4\x07\x89\x6a\x38\x7a\xe2\x07\x73\x7d\x67\xe8\x07\x99\xba\x73\xe8\x07\x13\x3d\xb6\xef\x07\xd3\x93\x8e\xba\x1a\xf8\x01\xeb\xf4\x0f\x7d\x3f\x88\x4f\x58\xe7\xc9\xb1\x1f\xdc\x69\x36\xb1\xdf\xc5\xf6\xe7\xcd\x88\x85\x79\xa6\x36\x68\x29\x33\xff\x29\xa2\x2b\x00\xf3\x70\xea\x07\x8b\x93\xbb\x6e\x9c\xb2\x9b\xaf\x5f\x3d\xef\x69\x04\x29\x48\x40\xa6\x45\xab\x76\x73\x72\x3f\x85\x34\x65\x23\x9a\xa7\x69\xa0\x53\x93\xb9\x54\x3d\x46\x8b\xe0\xcf\x1c\xf8\xdd\xe8\x2e\xc8\xe7\x0a\x09\x9e\x2e\x30\x49\xf1\x24\x85\xd1\xdf\x7a\xc1\x1c\xcb\xe9\x5b\x0e\x31\xb9\x1d\x75\x3a\xfe\xc9\xff\xdc\x2b\x7a\x70\xb2\x14\x25\x01\x79\x96\x82\xba\x7c\x76\xf7\x2a\xea\x78\x9c\x31\xe9\xf9\x01\x3d\x81\x5f\x40\xdd\x3c\x95\x92\x93\x49\x2e\xa1\xe3\x45\x58\xe2\x3d\x45\x6f\x6f\xae\x09\x7a\xbe\x16\xe2\xa9\x8d\x63\xfa\xf7\xbf\x7b\x57\x57\x6f\x4f\x2f\x5f\x5e\xbd\x7d\x77\xf6\xeb\xab\x7f\x5d\x5d\x79\x7f\x3b\x39\xa1\x5f\xbf\x76\xe8\x89\xf7\xb3\x20\x09\x25\xf4\xe7\x45\x4f\x51\x7f\xf0\x3b\xfe\x83\x56\xed\xd9\x49\xe9\xdf\x93\x9b\x80\xfa\xf7\xe2\x86\xc8\x70\xda\xa1\x5d\x79\x37\x07\xff\x3e\xc4\x02\xd0\xb4\x3b\x19\x59\x36\xe7\x93\x6b\x95\x9f\xb1\x50\x04\x3b\xf7\x0f\x01\x04\xf7\xd6\x22\x26\x69\x3f\xf8\x4f\xed\x98\xd9\xa6\x31\xa5\x41\xcb\x01\xe1\xf6\x01\x26\x1f\x8f\x68\x57\x7f\x07\xc5\xe6\x71\x54\xee\x23\x03\x67\x5b\x33\xa2\x5d\xe7\xaf\x20\x02\x89\x49\x2a\x46\x6a\x1f\x9d\xa6\xec\xa1\xe4\x9c\x6e\xe2\x5c\x73\xeb\xfe\x83\xff\x34\x82\x18\xe7\xa9\x2c\xc6\xc1\x83\xb1\xe7\x99\x6b\xcf\x7b\xfb\x2b\xfa\xc8\xf3\x4a\x49\x3d\x2f\x28\x36\x9c\xea\x5a\xdb\x4c\x8c\xee\x1f\x1e\xd6\x1b\x3f\xde\x6a\x7c\x51\x58\x5f\x04\x25\xcf\x52\xbd\x64\x64\x2f\xa6\xc5\xc5\xf5\x26\x92\x05\x09\x23\x86\x23\xe2\x92\x20\x2e\xe8\x40\x41\x87\x76\x45\xae\x7f\xf6\xfd\x05\x46\x2d\xc4\xfc\xa5\xb8\x18\xdd\x3f\x34\x8a\x1c\x6d\xf4\x48\xb3\x31\xcb\xd1\x59\x31\xda\x4e\x66\xb0\xdc\x3e\xd1\xae\x1a\xf7\x39\x68\xa2\x5a\xdc\x1c\xe9\x5d\x5d\x0e\x8d\x5e\x0e\xde\x9c\x98\xb1\x9d\xac\x1b\xfa\x9d\xfb\x90\x65\x19\xa3\xa3\x67\x81\xde\x8d\x8d\xce\x1e\xfc\xe0\xe2\xe4\xd3\xa4\x8b\x3f\xeb\x78\x38\x3f\xb9\x21\x34\x62\x37\xdd\xab\xab\x77\x67\x2f\xde\xff\xeb\xea\xc5\xd9\x87\xcb\xf3\xf3\xd7\x17\x57\x67\xff\xba\x3c\x7b\x73\xf1\xea\xfc\xcd\xd5\xf3\xf3\x3f\xde\x9e\x5f\x9c\x5d\x5d\x7d\xfd\x9a\x75\xa3\xe0\x65\xc9\x00\xfc\xce\x9b\xe0\xbc\xb3\xfc\x1b\xfb\x9d\x6e\xb7\x7b\xe1\xdb\x15\xeb\xc5\x89\x9b\x9c\x97\x2b\x1a\xed\x72\x88\xf2\x10\x3a\xe5\x6a\xa7\x33\x77\x71\xfb\x13\xfb\x7c\x02\x9f\xd8\x67\x95\x07\x82\xfb\x07\xff\xa1\x73\x1f\xc1\x48\x25\xd1\x43\x3f\xf0\x80\xee\xfd\xf6\xcc\x53\x6e\x51\x97\xef\x2f\xf4\x65\xcc\xf5\xfd\x23\x3f\x98\x12\x7d\x75\xec\x07\x44\xe8\xab\x27\x7e\x40\x27\xea\xea\x68\xdf\x0f\x68\xaa\xaf\x7a\x7e\xe0\xcd\xe5\xde\xdb\x4b\x4f\xff\xd9\xf7\x03\x9e\xeb\xab\x81\xff\x10\x7c\xf2\xf4\xe3\xf6\x86\x4f\xc1\x24\xf0\x62\xee\x05\xde\x94\x78\x81\x47\x84\x17\x78\x74\xa2\x3e\x52\xaf\x20\x14\x78\x3c\xf7\x3e\xfb\xc1\xbb\x13\xd2\xf1\x3b\x3a\x44\x81\x8f\x54\x4a\x7d\xcb\x59\x46\x04\x74\x71\x9a\x76\x3e\xb1\x2e\x74\x8e\xd5\x8a\x0f\x9d\x03\xff\xb3\xdf\x95\x53\xa0\x1d\xd6\x9d\x10\x1a\x75\x74\xca\x1e\xec\xf7\x7d\x7f\x19\x71\x49\x17\x07\x92\x64\xc0\x72\x39\xea\xc3\xf0\xc1\x7f\xca\xbb\xb8\xcb\x81\x46\xc0\x3b\xb8\x8b\xbb\x21\x07\x2c\xc1\xa6\xe8\x4e\xda\xc5\xc1\xbd\x90\x8c\xc3\xe8\xe5\x43\x50\xbf\x9f\xab\xfb\x72\x0a\x19\x8c\xa2\x2e\x6e\xea\x31\x53\x3d\x6c\x65\x45\x8c\x5e\x04\x6a\x29\x4a\x61\xe4\x01\xf5\x02\x1b\x6c\xaf\xcb\xa6\x26\x0a\xef\x02\xa5\x87\xef\xfb\x7e\xb0\x65\x15\xf1\x6d\x94\x77\xe6\x2a\x70\xfc\x87\x87\xcf\xfe\xd3\xff\xfa\xf9\xe7\xff\x46\x82\xe5\x3c\x84\x3f\xf0\x7c\x4e\x68\xf2\xfe\xdd\xeb\x93\xf2\xbf\x4d\xef\xe1\xf9\xbc\x1b\x85\x83\x08\xa2\x41\xdc\x0d\xa7\x39\x9d\x75\xaf\x45\x37\xc3\xf3\xff\x0b\x00\x00\xff\xff\x3f\x1d\x84\xbb\xc0\x7a\x00\x00") +// FileIdentifierStaticJsIdentifierAppE3390da8ChunkJs is "identifier/static/js/identifier-app.e3390da8.chunk.js" +var FileIdentifierStaticJsIdentifierAppE3390da8ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x73\xdb\xb8\xb6\xe6\xfb\xfc\x0a\x6c\x4e\xd5\x69\xb1\x8a\x56\x5b\x17\xdf\x94\xf2\x74\x39\x89\x7b\x27\xbb\xd3\x71\x4e\xec\x24\xbb\x26\x4a\xb9\x20\x72\x91\x82\x45\x02\x6a\x00\x94\xed\x38\xfe\xef\x53\xb8\x50\x04\x45\x4a\xa2\x9c\x74\xce\x7e\x98\x17\x89\x06\x81\x75\xc7\xc2\x87\x25\x12\xee\xc8\x29\x11\xdd\x5b\x98\xcc\x71\x38\xfb\x97\x60\x74\x4e\x22\xa0\x92\xc4\x04\xf8\xe9\x86\x7b\xdf\xbe\x7d\xfe\xe2\x77\xe7\xb9\x98\x76\x3e\x7f\x1e\x7e\x09\x1e\x7a\x87\x87\xa3\x38\xa7\xa1\x24\x8c\x76\xc0\x7f\x80\x2e\xdc\xcd\x19\x97\xe2\xf4\x5f\x97\x17\x6f\xbb\x73\xcc\x05\x74\x7e\x79\xf0\x66\x8c\x52\x08\x65\x37\x65\x38\x22\x34\xe9\x02\xe7\x8c\x77\xa7\x80\xa3\x94\x50\xf0\x46\xde\x47\xe0\x13\x42\xa3\x9c\x26\xe8\x6b\x9e\xa1\x4b\xe0\x0b\xe0\x28\x86\x69\x9a\x80\x08\xa7\x29\x4e\x80\x7a\x81\x43\x27\x21\xb4\xcb\x41\xf2\xfb\xe7\xb9\x94\x8c\x76\x53\x3c\x81\xd4\x1b\x79\x9f\x08\x44\xc0\xa7\x2c\xad\xf4\x17\x21\x9b\xc3\x4b\x10\x21\x27\x73\x25\x6b\x17\xa7\x04\x8b\xe7\x58\x90\xd0\x1b\x79\xff\x37\x4f\x38\x89\x63\x84\xf3\x18\xbd\x9e\x72\x40\x09\xcf\x69\x94\x42\x02\x34\x02\x8a\x9e\x03\xcd\xe5\x57\xe0\x84\xc6\x8c\x67\x58\x8d\xdf\x4c\x9c\xc5\xb1\x52\xeb\x2c\x0c\x41\x08\x6f\xe4\xbd\xc4\x39\xf0\x29\x8e\x25\x50\x54\xf0\xea\xa4\xe3\x3b\x18\xe6\xb1\x44\x94\x84\x53\x89\xf0\xc4\xdf\x44\x52\x37\x78\x23\xef\x9f\x90\xca\x9c\x26\x62\x02\x1c\x48\x38\x1d\xa1\x07\x7d\xe7\xd1\x19\x9b\x30\x16\x4d\xee\xc1\xb5\xee\x73\x22\xd0\x04\xa7\x51\x43\x2f\x91\x4f\x5e\x01\x8e\x80\x7b\x23\x4f\x10\x40\x82\xd0\x08\xdd\x80\xfc\x2a\xd1\x82\x51\x6d\x8e\x0c\xfd\xc1\xe6\x98\x32\xf4\x07\xa3\x92\x21\x3c\x49\x20\x83\x34\x02\xd9\x40\x2e\x03\x21\x70\x02\xdd\x30\x65\x42\x71\xbe\x24\x80\x66\xe3\xbb\xf8\x90\x52\xa0\x28\x22\x20\x40\xa0\xdf\x81\x0a\x09\xdc\xb2\x51\xee\x25\x30\xbe\x8b\x62\xa0\xdd\x06\x92\x21\xa3\x31\xe1\x99\xab\xcf\x2b\x9c\xa6\x0c\x3d\x44\x44\xcc\x53\x7c\xff\x16\x67\x8d\x06\x28\x06\xba\x2a\x3e\x27\x52\x02\x9a\x80\x90\xca\xfc\x92\x24\x40\xd1\x25\x81\x00\x45\x58\x08\x75\x85\x04\x09\xa7\x08\x4f\xb4\x86\x14\x65\x4a\xf6\x70\x2a\x2b\x0e\xaf\x29\x6b\x18\x79\x23\xef\x8f\x94\x84\x33\x43\x52\x47\x53\x44\x00\x5d\x86\x53\x9c\xca\x58\xfb\x3b\x9c\x02\xca\xa9\x8a\x83\x3c\xb3\x9c\x72\xd1\x6c\xe4\xaf\xb9\x11\xa1\xc9\x24\x82\x24\x94\xe5\x72\x25\xf4\xcf\xac\xd0\xce\x80\x5b\x48\x43\x96\xed\x30\x20\x9c\x32\x26\x00\x87\x21\xcb\xa9\x74\x4d\x6e\xc5\xca\xc5\xad\xd2\x63\x9a\x6e\x18\xe5\xda\xbb\x50\x73\x02\xa4\x50\x10\xd3\x42\xb5\xb5\x14\x72\x01\x17\x72\x0a\xbc\x3b\x07\x2e\x18\xc5\x4b\x89\x7f\xdb\x3e\x64\xa9\x1c\x8d\x80\x83\x30\xf6\x74\x87\x31\x2a\xa0\xaa\xdb\x2b\xb2\x36\x96\x8a\xde\xd6\xd5\xde\xc8\x7b\x08\x53\x02\x54\xbe\x74\xfa\x97\x51\xd2\x30\x52\x32\x96\x4a\x32\xef\x9a\x61\x2a\x43\x01\x35\x01\x32\x1e\x7b\xe7\x84\x2e\x80\x0b\x89\x55\xa2\x19\x8f\x3d\x34\xb3\x01\x74\x0b\x3c\xb2\x71\xf4\x35\x47\x0f\x1c\x22\xc2\x21\x94\x1f\xde\xbf\x7e\x44\xb7\x40\x24\xf0\x04\x52\xf5\x2d\x1b\x58\xfe\x95\x83\x50\x59\x63\x8d\xb4\x91\x93\x86\x12\x10\x12\x4b\x09\xf4\xb7\x06\x3a\xfa\xfb\xaf\x1c\x68\x08\xae\xdc\x15\xa1\x0b\x89\x03\x04\x7c\xaa\x42\x23\x95\x3a\xea\xcf\xe6\x73\x54\xcb\xab\xaf\xdd\x0c\xda\x6d\xe2\x88\x69\x08\x69\x2d\x4c\x27\x1c\xc2\x69\x35\x5e\xec\x00\x95\x08\x6e\x57\xfa\x57\xe4\xab\x2d\x1a\x8e\xdf\xcf\x68\x2d\x0e\x4d\x1f\x37\x82\x33\x22\x1b\x26\x68\x6d\x48\x2e\x80\x53\x9c\xc1\xef\x04\xd2\x68\x29\x4a\xb1\x74\xa8\x3b\xb5\x21\x73\x2c\xc4\x2d\xe3\x51\x75\xc8\x3b\xd3\x2a\x6b\xdd\x29\xdc\xad\x4e\xe0\x4f\x3a\x12\x1a\xe6\xbb\xa3\xe4\x27\x92\xa6\x33\x96\x65\x40\xd7\x06\x79\x31\xaa\x0c\xf2\xcb\x62\x25\xc0\xb4\x48\xf6\x68\x0f\x89\x7c\x0e\xfc\x1f\xce\x40\xb3\x8c\x1b\xf1\x16\x38\x25\x11\x96\xd0\xcd\x88\x10\x84\x26\x1f\xac\x41\xf4\xa2\x35\xb1\xb1\x0c\x84\x3a\x0b\xaa\xba\xad\x9a\x5a\x52\xb4\x96\x89\x56\x29\xa2\xc2\x64\x1b\x68\xc5\x98\xa4\x10\x2d\x7d\xae\x70\x46\x15\x5c\x74\x91\x59\x1a\xc6\x77\x71\x38\x01\x3e\xe7\xea\x22\xb6\x4c\x74\xf0\x9e\x13\x9a\xe0\x89\xca\xdf\x11\x52\xf1\x95\xab\x90\x34\x32\x08\x44\x59\x38\x55\xec\x33\x9c\x2e\xe3\xba\x90\x60\x2a\xe5\xbc\x4b\x41\xde\x32\x3e\x3b\x57\x2d\xde\xc8\x7b\x0b\xf2\xeb\x2d\xf0\x99\x12\x02\x78\xc1\xbc\x81\xab\x03\x8c\x5a\x33\x0e\x2b\x9c\x73\x0a\x77\x73\x08\x25\x44\xef\x41\xcc\xd5\xbc\xb9\x94\x58\xe6\x0a\x98\x7c\xa0\xc0\x6f\x31\x97\x20\x01\xbd\xba\xba\x7a\xb7\x77\x46\x95\x94\x52\xc1\x0a\xdd\xe7\xf1\x7f\x40\x32\xa8\x0a\xc6\x91\x15\x6a\xcf\x88\x6d\x65\x83\x47\xef\xf1\x17\xff\x31\xe8\x1d\x1e\xfd\x18\x04\xfa\x06\xa3\x50\xf5\xb9\x23\x8c\x22\x9c\x23\xa1\x20\x68\xce\x11\x46\xe3\x3b\x38\x09\xa7\x2c\x57\xdf\xad\x30\xe8\x7b\xd5\x53\xcd\xa5\xfb\xca\xe4\xdc\x0c\x42\x5f\x30\x2a\xf2\x54\xe9\x9b\x82\x40\x0e\xd6\x14\x28\x02\x34\xc1\x02\xd4\xf7\x82\x49\x0e\x28\x64\xd9\xbc\xb2\xd8\x6c\x85\xa0\x8a\xba\xc1\xd4\x8a\x3a\xce\x25\xe3\x44\x14\xe4\xc7\xbf\xe0\x30\x1c\xdf\xc1\xb1\x50\xba\xee\xa3\x74\xfc\x0b\x5e\x00\x25\x1b\x85\x2f\x10\xe9\x3b\xc6\xa5\xd6\x17\xb5\x04\xa3\x67\x39\xe2\xb0\x60\x15\xea\x4d\x68\x74\xc1\x72\x81\xf0\x02\xbe\x6a\x07\x68\x1e\x28\xd2\xbe\x30\x83\x4c\x03\xd8\xb4\xdc\x02\x8b\x7e\x54\x04\xe7\x2c\x57\x24\x63\xe0\x19\x70\x14\x82\x0a\xee\x18\xe8\xf8\x0e\xb0\xb2\xac\xd6\x5f\x05\x3b\x9c\xe8\xf5\xa5\x1d\x1e\x7d\xce\xe8\x0d\xcb\xf9\x93\x10\xe9\x0b\xd3\x06\xdc\xfa\xb6\x54\x51\x45\x62\x2b\xd4\xf9\x22\x25\x7f\xe5\xda\xb5\x68\xc2\x72\xc9\x28\x0a\xc9\x5e\x04\x42\xb0\x5c\x04\x4a\x63\x8e\xfe\xca\xd5\x34\xe6\xd6\x58\xed\x31\xe5\x7f\x9b\x71\xad\x21\x65\xbd\xff\x5a\x44\xf9\x62\xca\x88\x20\x1c\xe5\xb4\x1e\xcf\xeb\x01\xa5\xd6\xc6\x84\x46\x2e\xa7\xc5\xc6\x14\x45\x98\x8a\x7a\x24\xfc\x78\x54\xf9\x41\x92\x94\x08\xd0\x52\xe3\xbc\x71\x2e\x36\x00\xcc\x6d\xf1\xd1\x0e\x65\x0a\x96\x4f\x31\x69\x07\x32\xcf\x29\x0a\x55\x54\x60\x2a\x15\xce\x3c\x33\x13\x1e\xb8\xc2\x98\xda\x7a\x02\x38\x7c\x45\x1a\x57\x92\x44\x4f\x25\x95\xc0\xd5\x1c\x76\xb1\xe6\x66\x70\xb9\xa4\x8a\x9a\xc4\xd5\x53\x29\xc6\x44\xd9\x08\x52\x8c\xb6\x23\x4c\x47\xe8\x60\xe9\x63\xcb\x41\xe5\xa4\xf9\xdc\x10\x35\xd9\xea\x24\x02\x6e\xfe\x5e\xb0\x6a\xc2\x6c\x8f\x2c\x29\xcd\xd3\x6a\xb4\x6e\xc0\x95\x4b\x75\x37\x61\xca\xd7\xb6\x58\x12\x6a\x51\x36\x22\x4b\xbc\x80\xd0\xc8\x6e\xc7\x60\x2a\x1b\x82\x78\x13\xbe\x34\xe1\x88\x25\xe4\x75\xa1\x9a\xe1\xe5\x9f\x4c\xaa\xa4\xa9\x6e\xd6\x11\x69\x03\xc4\xbc\xcc\xc9\x02\x53\xb9\x19\x63\x3e\x27\x40\x17\x40\x73\xd8\x01\x62\xfe\x89\x13\x4a\x62\x95\xb8\xd0\x1e\xd2\xa9\x59\xe7\x60\x10\xc8\xcd\xef\x4f\x40\x9b\x97\xb8\x48\x2b\x8e\x5d\x77\x87\x98\x25\x99\xac\xd9\x64\x8d\xf0\xf2\x3c\x9c\x42\xa8\x7a\x2f\x33\x78\x17\x7d\x54\x9a\x70\x93\xa7\x6a\xee\x06\x89\x2c\x52\x30\xb1\x4c\xd5\xfa\x84\xf3\x56\x20\xf2\x9c\x73\x85\x50\xec\x6a\x85\xf3\x55\x56\x26\x3d\x59\x39\x02\xc5\x8a\x3b\xc8\x64\x77\xb8\x68\xf9\x29\xa4\x88\x08\xd5\xdb\xc6\x28\x37\xeb\x7e\x81\x16\x37\x08\xf0\x5d\xfc\xa1\x64\x1f\x8d\x7f\xd1\x80\x00\xcb\x06\x21\x4a\x58\x78\xfc\x63\x60\xe1\x38\xdf\x3f\x19\x1c\xeb\xcf\x7d\xf5\x39\x8c\xf4\xf5\x81\x69\x41\xe5\xed\xe1\x91\xfe\xa3\xa7\xef\xf4\x6d\x53\xd9\x62\xc6\xf5\x62\xa7\x93\x21\xd8\x77\x47\xf7\xa1\x1c\xb7\xdf\x47\x0e\xab\x58\xdf\x9e\xe8\xeb\x7e\x2b\x14\xaa\x07\x60\x4d\xaf\x67\x18\x8d\x90\xd3\x16\x39\x22\x68\xe2\x03\x30\xca\xd4\x24\x2c\xc4\x69\x0d\x65\x75\xf7\x83\x92\x97\x55\x71\xdf\x55\xb1\x6f\x34\x31\xcc\x0e\x4b\xfe\xfd\xa1\xb9\x36\x37\x42\xe7\xc6\xb1\x23\x17\x38\xd2\x59\xb2\x87\x8e\xc5\xed\xf5\x2e\x00\xd9\x91\xf9\xd8\xb1\x99\x95\xc9\x31\xdc\xe0\xa4\xbc\xbd\xaf\xb5\xe8\x61\xc7\x64\xc3\x89\xf1\x9a\xb9\x73\x54\x57\xcc\x09\x9c\xde\xd0\x8d\xa2\x93\xd5\x00\x18\x1c\x3a\xa6\xe8\x87\xa5\x6c\x86\xc8\xbe\x89\x25\x63\x85\xde\x61\x5b\x4f\x15\xb8\x7d\x35\x34\x07\x47\x25\x05\x23\x6b\x11\x22\x2d\x71\x7d\x69\x41\xa3\x7c\x25\x70\xad\x2a\x5b\x20\xbf\x26\x71\x58\xda\xba\x62\xd2\x86\x88\x3a\x2a\x6a\x32\xcd\x51\x64\x27\x55\x65\x7e\x0e\x5c\x0b\x1a\x65\x4d\xc4\x1b\xbe\xfb\x27\x0d\xd3\xd4\x09\x30\xab\x4e\xec\x06\xe9\x51\xad\xc9\xc6\xc8\x71\x8b\x4d\x89\xa3\x59\x88\x5c\xfd\x51\x29\xa1\x9d\x93\xae\x41\x4d\xe4\xf5\x7b\x8e\x7d\x2a\xc6\x32\xe1\x62\x7b\x1d\xd6\xb5\x19\x38\xb3\xa9\x6a\x2c\x2b\xba\x19\xde\x72\xff\x53\xba\xa4\x0f\x8e\xc5\xa3\x0a\xf5\xa7\x6c\x8e\x1c\xbd\x06\x8e\xf7\x2b\xb6\xde\xd9\xa1\x45\xc6\x70\x72\xa3\x0d\x7e\x9b\xa3\x8d\x99\xdb\xe4\xc1\xf5\x7b\xb2\xff\xd9\x88\x1d\xaf\x2e\x2c\x56\xf3\x23\x27\x39\xd9\x40\x32\x03\x8b\x14\xad\xfb\x62\xa7\xaf\x1b\xf6\xb6\xaf\x09\xf8\x62\x60\x58\xda\xac\x7f\xdc\x10\x88\x87\x65\xaf\x22\x6f\xad\x8f\xad\xe6\x4d\xe5\x0e\x56\x68\xbd\x51\x7d\x1a\xcd\xb5\x9b\xd9\x66\x77\x16\x19\xa2\xb2\x0a\xaf\x09\xa5\xf5\x5b\x5e\x27\x62\x9a\xf0\xc1\x5a\x25\x8e\x6a\x3e\xd9\x2d\x30\xfe\xd6\x8d\x74\x19\x1b\x16\x0a\xb8\x18\xeb\x68\xf3\xf4\x28\x40\x00\x2a\xbd\xe4\x26\x86\xe1\xc4\x44\x69\x9b\x09\xdc\xb0\x59\x1f\x7f\x4f\x32\x6b\xb7\x93\x2f\x83\xc2\xe2\x81\x93\x7a\x0a\xb0\x79\xb8\x92\xb7\xda\xec\xfc\xc7\xe3\x2d\x58\xc6\xba\x78\xec\xb9\xa0\x66\xdf\xe5\x13\xad\xc6\x42\xef\x60\x73\x10\x55\xf2\x55\xe3\x02\xbe\xac\x2a\xe4\xfc\xf5\xa3\x9b\x7e\x8f\x6a\xb9\xb8\x5f\x43\xdb\xb6\x25\xae\xb5\x3b\xa0\x67\xe0\x2e\xcf\x43\x57\xdc\x86\x15\xdb\x85\x95\x71\x49\xa3\x80\x6b\x9b\xab\x1e\xab\x86\x5a\x92\x5e\xeb\xe9\x4a\x3e\x8c\xeb\x81\xbc\x76\x56\xee\xa3\x36\xae\xac\xe1\xdf\x02\x25\xee\x12\x67\xdb\xab\x33\xed\x45\x79\x62\x48\x15\xa9\x28\xd8\x82\x83\xcc\x02\x52\xd9\xc6\x54\x08\xaf\x06\x45\xd3\xb2\xd4\x10\xa4\xfb\xbb\x6e\x39\x9e\x9a\x86\x7e\xa4\xa7\xdb\x41\xb7\x8d\x45\x30\x47\xb0\x43\x77\x6e\xed\x92\x3e\x9b\xca\x65\xbb\x2a\xb4\xef\x98\x3f\x76\xa7\xca\xa6\x72\xdb\xb8\xcd\x0a\xb8\xb1\x0a\x37\xfe\x1e\xa0\x56\x5d\x3d\x1d\x39\xfa\x07\x2d\x2b\x78\x9b\x63\xa7\xe6\x02\x67\x15\x2a\x36\x86\x2e\xd7\xb6\x3f\x32\x3b\xd3\xd4\x59\xe3\x06\x75\x4e\xbd\x36\x35\xc2\xd2\x84\x36\x83\x9a\xe9\x08\x9b\x8b\x86\xe3\x95\xb5\x75\xe0\xcc\x33\xbb\xa7\x1a\xba\x71\xbd\x7e\xd1\xad\x17\x17\x6b\x09\xa4\x1e\x23\xc5\x0e\xaa\x8e\x95\xaa\xf3\x08\xed\xb9\x53\xd3\x9d\x21\x91\x13\xd5\xc3\x27\x14\x2a\x7f\xb0\xeb\x4d\x53\xcf\x71\x6a\x7f\xe3\x5c\x6a\x59\x07\x6d\x1f\x2a\x1b\x05\xa8\xc0\xc9\xc6\xd2\x69\x39\xa2\x62\x82\x9e\xe3\x19\x57\x61\x37\x2d\x5b\xe5\x8d\x38\xc6\x7d\x03\xe8\xba\x33\x74\xdd\xee\xb1\x71\xe6\x8f\x57\xd7\x2d\x27\xfd\xd9\x2d\xb7\x13\x42\x83\x7a\x61\xa0\xef\x8c\x3d\xae\x2d\x2b\x45\xd5\xc8\xe5\xe6\x56\x82\xea\x60\x68\x7f\xf0\x7d\x95\xbb\x56\xd5\xe4\xf1\xca\xee\xc4\xee\x83\x6b\x8e\xb6\x2b\x77\xb5\x46\x54\x4a\x5c\x6c\x9f\xd5\xe7\xe1\xf0\xbb\x7c\x30\x38\x76\x26\x2a\x5e\x23\xc7\xda\xd5\xbb\xa1\x38\x57\xdd\x5e\x54\x6c\x3e\x19\x3b\x10\xb3\x0e\x6a\xbf\xdf\xf4\xad\xab\xec\xe3\x95\x75\xb3\x00\xca\xb5\xa8\x3c\x1a\xbb\x88\x57\x57\xe5\xd7\x88\x3a\x1c\xaf\xc2\x23\xe7\x6e\x15\x20\xbb\xc5\xfc\xff\xef\xbb\x1d\x7f\xa1\x78\xa2\xeb\xbe\xdf\x6b\x8e\x2f\xec\x84\x75\x37\xad\x07\x15\xd7\x96\x3f\x91\x9c\xfc\x98\x9f\x48\xfe\x24\x42\x8e\xef\xe2\xc1\x4c\x48\x84\xc7\x77\xf1\x3e\x92\x40\x93\x1b\x2c\x24\xa2\xa0\xee\xc0\x8d\xba\x4d\x49\xbb\x87\x67\xe0\x9e\x62\x84\x63\x99\xb7\x7f\x76\xe6\x0f\x96\x29\x6e\xe3\x3b\x88\xf4\xb3\xdb\x34\x9f\xcf\xd3\xf1\x5d\x1c\xa9\xb5\x0c\x73\x94\x67\x48\x89\x41\x92\x5d\x7e\x11\xf8\x48\x94\x2e\x53\x9c\x46\x18\x4d\x81\x64\x24\x8d\x72\x9a\x67\x08\xa7\xa9\xc4\x31\x62\x89\x55\x16\x48\xaa\x18\xc7\x39\xea\x64\x39\x8d\x72\x94\x91\xa4\xdd\xb3\xdc\x24\x8d\x88\x10\x0b\xcd\xa7\xed\x93\xdc\xa9\x12\x6e\x4b\x15\xfd\x2e\xc6\x52\xcc\xf8\xf8\x0e\x7a\x94\xd0\xc4\x22\xd9\x3d\x2d\x6e\x82\x69\x22\x08\x15\xda\x20\x4a\x6e\x2a\x50\xe1\xbd\x36\xe5\xea\xbb\x08\x14\x7d\x94\x80\xcc\x39\x4a\xd9\xcc\x18\x41\x51\x03\x21\xf2\x0c\x25\x69\x9e\x24\x18\x51\xd5\x8b\xe2\x1d\x1e\xe8\x56\x42\x3c\xa9\x48\xbc\x20\x54\xe0\x2c\x85\x44\xc5\x80\x90\x5a\xa0\x18\x84\xcc\xd1\xaa\x25\xf2\x56\xa5\xdb\xcb\x0c\xd2\x54\x8f\x86\x1e\x92\x78\x36\xc3\x94\xa2\xf8\x9e\x13\x8e\xa8\x52\x7e\x1f\x53\x24\x49\x6a\xdd\x6f\xc9\xdb\x00\x33\x2c\x11\x8e\x97\x4f\x3b\x17\x46\x27\x2a\x76\x36\x58\x65\x4d\x99\xf2\x2e\x5a\x6a\xd0\xbe\xb6\xd9\x3c\x68\x6d\xf1\xf2\x23\xa4\x51\x5e\x4a\xda\xaa\x28\xb9\xd6\x00\x84\x52\x33\x11\x7f\xc2\xd3\x38\x6f\x99\xc4\x08\x53\x8a\x69\xb3\xf4\x0d\x8f\x7a\x8f\xef\xe0\xf0\x3b\xab\x77\x0b\x92\xa6\xad\x2a\x71\x77\x11\x80\x4a\x3f\x66\xaa\xc5\x18\x09\x15\x59\x84\x9b\xc8\x1a\x8f\xbd\x37\x70\x1f\x63\x5d\x89\xbb\x83\x5e\xcc\x71\x26\x80\x46\x44\x67\x32\x3b\x42\xdd\xd8\xe9\x99\x1c\x4d\xb2\xb1\x14\x65\xbc\x95\x00\xc7\x66\xb6\x4a\x89\xb7\x17\x7d\xfe\x84\xe5\xf4\x5e\x68\xaf\x5a\x9f\x2b\x45\x70\x4d\x8f\x00\xa5\x70\x1f\x13\xee\xca\x6f\xf2\x02\x8a\x19\xe7\x44\x12\x3b\x9e\x2a\xc7\x55\x93\x34\x75\xf3\x74\xeb\xe2\x85\xf6\xa7\x94\x18\x99\x2c\xda\xb2\x34\xa1\xe5\xdd\xf8\x14\x0f\xa5\xf5\xf9\xd3\xf0\x6c\xb8\xb1\xce\x6a\x7e\xd5\x53\x7d\x99\x5f\xf3\xac\x65\x29\x40\x45\x33\x8d\x30\xc5\x71\xfd\xb9\xa1\xe6\x6d\xfc\x9b\xfb\x19\x49\x19\x5f\xd1\x7c\xed\x3e\xfd\xad\x32\x96\x90\x78\xf3\xbe\x7c\x6b\x2e\xae\x6f\xb7\x4b\x73\xa9\x2c\x4b\xe8\x72\x45\x41\x7b\x28\xd6\xed\x13\xc5\x9a\xcb\xa7\x3c\xce\xa3\x56\xd7\x9e\x52\x31\xd7\xb9\x85\x36\x5a\xa9\xed\x43\x3d\x2b\xc4\xd2\x46\x03\x36\x6e\x4f\xab\x3a\xa2\xac\x04\x3d\x5d\xf4\x71\xed\x0a\x64\xa5\xad\x87\x3a\x4b\x10\x87\x7b\x05\x17\x34\xd4\x69\xfb\xd0\xb8\xca\x3d\x78\x85\x21\x96\xd3\x3c\xc1\x46\x29\x85\xbc\xd4\x42\x47\x71\x19\x80\x78\x2d\xb3\xf6\x7b\x92\xbb\x68\xa0\x57\x40\x71\xa3\x2c\x80\x69\x0a\x89\x34\x5b\x0e\xb1\xc0\xbc\xf2\x04\xd0\xcf\x13\x0d\xd6\x48\xa6\x65\xb2\x6e\xc0\xab\xa8\xf7\x68\xff\xc7\xa0\xde\x3f\x52\xcc\x25\x20\x32\x9b\xe9\xa7\x86\x0f\x54\x86\x9b\x10\x1a\x01\xca\x20\x32\x4f\x8f\xd7\x9f\xc9\x6b\x02\xbc\xef\x54\xf8\x1d\x2f\x10\x49\x6e\x76\x78\x67\xf1\x8a\xa4\x2a\xd5\x68\x20\x62\x9f\x7d\x14\x37\x8c\x22\x96\xa1\x09\x16\x44\xcc\x56\xde\x52\xd9\x0a\x77\x9f\xc3\x94\xa5\x91\x7e\x39\x48\xaa\x20\x93\xa0\xbe\x15\x0f\xa0\x4a\x37\x8d\x7b\x49\xd4\x06\xd8\x5e\x64\x31\xa6\x49\x4b\x44\xfb\x3b\xe6\x0b\x48\xb7\x40\xda\x28\x47\x53\xcc\xd1\x24\x25\x52\xa2\x94\x25\x09\x48\x94\x4b\x14\x73\x8c\x22\x42\x0b\xac\xb5\xaa\xf3\x3a\x10\xfb\x32\x47\x33\x4c\x51\x9a\x2b\xdf\x45\xfa\x11\xf0\x05\xa1\x51\x0e\x52\x01\x34\x38\xf8\xdb\xdf\x42\x5c\x00\xa5\x29\x49\x84\x44\x13\x98\x71\x88\x95\x32\x4a\x2b\x52\x81\x2f\xeb\x11\xea\x15\xbf\x9f\xcd\xd0\x5c\x87\xdd\x8c\xe2\xf9\x1c\x28\xca\x69\x04\x3c\xd0\x9e\xd2\xed\xda\x4a\xca\x48\x78\x51\xb3\x51\x7b\xfc\xf9\x86\x25\x09\xca\x9b\x1e\xff\x6c\xdb\x7f\x13\xea\x4c\x10\xd0\x9a\xd7\xd6\x63\xce\x15\xdd\x54\x02\x27\x3f\x03\x66\x3e\xe7\xf9\x4c\x49\x8a\xf5\x4b\xac\x35\x79\x1b\x50\x26\x7c\xef\x1b\x85\x2a\x25\x50\x31\x6b\x7c\x36\xb9\x06\x34\x3f\x42\x64\xec\x32\x4b\x75\x3a\x32\x81\x31\x1e\xab\x24\x91\x62\x29\x15\xc2\x14\xba\x6d\x41\x52\x14\xe5\x6a\x1e\xa1\x14\x22\x90\x6a\x8a\xef\x04\x2f\x2d\xc5\x75\x0f\x7c\x1f\xa0\x44\xed\xf5\x8f\xb9\x9d\x57\xdb\x01\x66\xb3\xec\x67\x33\x01\x73\xa9\xe2\xd9\xc8\x6d\x33\x12\x57\xc2\xab\xed\x95\x8e\xf8\x09\xcf\x67\xaa\x89\x50\x37\x03\xb6\x7f\xf8\x7b\x31\xe1\xf7\x4d\xaf\x4f\x36\x21\x46\xa3\xf7\x26\xc8\xa8\x23\x9f\xd0\x2d\x2f\x13\x42\xb4\x29\x61\x6d\x7c\x95\x50\x6b\x4b\xf1\xa2\x2d\x38\x54\xb0\x47\xa1\x9e\x36\xc0\x10\x84\xdc\xf2\x6b\xcd\x47\xd8\xfd\x2d\xc2\x97\x39\x02\x5e\xa4\x6b\xed\xd8\xa7\xe0\xbf\x19\x27\x0b\x3d\xd7\x41\x5a\x97\xaf\x18\xa1\x2d\xf6\x73\x09\xcd\x6b\xc6\x69\x04\x7d\x85\x53\x51\x0c\x24\x05\x85\xf4\x96\x99\x5b\xdc\xc0\x6c\xe6\x08\xf4\xab\x25\x19\x28\x48\x13\x33\x2e\xd4\x3c\x98\x99\x55\xbd\x2d\xba\x93\x0b\xe0\x33\xa1\x78\x75\xd1\xa5\xa6\xaf\x82\xa5\x00\x16\xa9\x80\x8d\xc4\xdb\xbf\xf6\xb7\x00\x2a\xc1\xe2\x37\x6e\xee\x8e\x90\x83\xe1\x0c\x6f\x49\xd2\x19\x9b\xa4\x44\x23\x00\x25\x08\x4b\xcc\x7b\x80\x05\x58\xd9\xfd\xb5\x3e\xcb\x58\xe1\xb3\x3d\xd1\xf8\x3a\xdf\x51\xef\x07\xc1\x33\x46\x11\x25\x20\x51\xa6\xf8\x99\x57\xdf\x16\xe6\x8d\xc5\x96\x27\x49\x5c\xcc\x29\x81\xfc\xb6\x35\x22\x53\xdf\x02\xd9\x45\x24\x81\x04\x16\x40\x05\xba\x05\xe0\xfa\x72\x17\x2c\xf6\x12\x90\x64\x6a\x4e\x66\x99\xda\x6b\x2c\x98\x86\x5f\x92\xdc\x44\x88\x51\x39\x65\x79\xb4\x99\x5e\x01\xc4\x2e\xd5\x77\x4b\x1c\x76\xc5\x24\xfa\x4a\x80\x6e\xab\x2e\xde\x00\x9a\x00\x95\x08\xc7\xe6\xcd\x60\xb4\xc0\x14\xdd\xc0\xb2\xde\x65\xf4\x6f\x83\xc2\x88\x44\x0b\x7b\x12\x84\x82\x63\x34\x47\x6a\xa6\x02\x45\x09\x88\x94\xc9\x9f\x70\x1a\xc4\x04\x16\x6a\x65\x4b\x10\x8e\x6b\x6f\x82\x6f\x3c\xe4\x61\x86\xd8\x1c\x31\x85\xb8\x84\xc4\x58\x81\xfe\x19\x55\x2d\x19\xc2\x31\x92\x6a\x0b\xa0\x4f\x8f\x68\x34\xcd\x0e\x07\x3a\xd4\xa5\xda\x72\xa0\x43\x7d\xc0\x5a\xf8\x75\x66\x9a\xd0\x8c\xc0\xd7\x96\x87\x39\x28\xf5\x30\x75\xf4\x9b\x90\x9b\x9f\x81\xbf\xfe\x09\x13\x9e\x93\x19\x02\x8d\xc1\x22\xe0\x0d\x51\xd6\x84\xc2\xd8\xf7\xa2\xb0\x5b\xd2\xaa\xd0\xf7\x52\xcd\x4f\x36\xd7\x88\x4b\x4d\x5b\x8c\xf5\x59\x0e\x12\x2c\xa8\xa1\x3a\xb0\x55\x24\x44\x8c\xa9\x4c\x74\xab\x4c\x8e\x28\xd6\x3b\xe7\xf6\xe0\xab\x49\x44\x69\x19\xa2\x88\x48\xc5\x31\x62\x6d\xce\x72\x28\x24\x2e\xc4\x75\x64\x0d\xd0\x8c\x93\x9b\x44\xa2\x08\xbe\x82\x42\x5a\x95\x54\x74\x03\xe5\x9b\x76\xa0\x46\x25\xc6\x37\xbb\x1c\xe7\x60\x5e\xba\x6b\x7d\x9c\x43\x21\xe3\x26\xf0\x75\x86\x5b\x1d\xe5\x00\x72\x63\xa6\xda\x04\xbf\x6c\x0c\x02\x17\x14\xe3\x7a\x45\xaf\x19\x82\x7d\xc2\xe1\x54\xde\xb2\x96\x28\xec\x23\x4b\xf5\x89\x43\x9b\x81\xd8\x27\x0d\xc4\x76\x40\x61\xff\x2a\x12\x76\x71\x96\x03\xda\x43\x31\xa6\x12\x0b\x49\x44\x38\x7d\x02\x24\xfb\xc8\x80\xeb\xc9\x98\x54\x8c\x82\x9e\x72\x92\xc3\x92\xd6\xed\xd2\x56\xeb\xe9\x38\xc5\x38\x8d\x2a\x29\xca\x88\x48\xf3\x99\xec\xa2\x17\x8c\x4a\xce\x52\x30\x80\x53\x61\x16\xbb\x00\x03\x45\x73\xce\x26\xea\x06\x33\x2b\x7a\x5b\x34\x76\x0b\x7c\xa6\xc7\xa6\x00\x59\x85\xc3\x0d\x14\x58\x42\xcd\x89\x0d\x1c\x5a\x43\xb2\x0b\xaa\xd2\x82\x32\x01\xac\xc0\xb2\x12\x95\xfd\x5d\x02\xc0\x0a\x7f\xcb\x1a\xad\x01\x68\xfd\x1f\x03\xd0\x7e\xc7\xe9\x94\xe5\x08\xa3\x94\x24\x98\x23\xcc\x34\x4a\x23\x11\x6b\x57\x35\xbb\x02\x2a\x31\x47\x94\x2d\x70\xa6\x40\x65\x6b\x98\x76\x16\xc2\xf2\xc5\x61\x91\xe3\x22\x9d\x8d\xef\xe0\x68\x7c\x07\x03\x86\x26\xe3\x3b\xe8\x09\x12\x62\x14\xe9\x23\x21\x2a\xf5\xf2\xad\xd0\xed\x4f\x4c\x15\xa0\x51\xe9\x05\x84\x60\x68\x0e\x3c\x23\x92\x44\x0c\x45\x80\x34\x27\xd5\x24\x88\x90\x4a\x6a\x04\x68\x8e\x39\x46\x02\xb2\x39\xdf\xa8\x43\x01\xe9\x54\x10\xc0\x9d\x64\x6d\x0f\x5b\x88\x20\xdf\x86\xe8\x14\x7b\x21\x8c\xf2\x11\xd6\x46\xd1\x6a\x17\x89\x32\x66\x04\x49\xa5\x06\xc5\x11\x6e\x01\xec\xde\x31\xa5\x2a\x84\x53\xcc\x91\x4a\xdd\xe8\x06\x53\x48\x31\xc2\x09\xe3\x6d\x7f\x10\xbe\xd0\x85\xfa\x27\x81\xba\x39\xe3\x28\xc6\x0b\xc6\x91\xbd\x0b\x88\xa1\x98\x64\xca\x01\x4b\x45\x5b\x01\xbd\x17\x98\x73\x48\x72\x40\x94\xa1\x09\x93\xc6\x42\x78\x82\xc9\x1d\x33\x6e\xb3\x56\xe1\x8e\x01\x69\x83\x01\xd7\x2a\xde\x8c\xe2\xae\x6a\x54\x5b\x03\xc0\x8d\x43\xd7\x42\xc1\x73\x11\xb2\x74\x0a\x1c\xe5\x59\x3d\xe2\x37\x1c\xc5\xa0\x4c\x40\x28\x09\x49\xd5\x02\xec\xa7\x1c\xc4\x20\x00\xb1\x5c\xf2\x06\x81\xeb\x48\x70\x4b\x34\xb5\x03\x83\x7f\xe5\xed\xaa\x71\x67\x0c\x85\x3a\x70\x54\xf8\x67\x0a\x14\xbe\x33\x39\x40\x1f\xbe\x20\xc0\xfc\x5a\x6e\x51\x1f\x61\x14\x47\x26\x9a\x76\x82\x82\x05\x49\x25\x55\x63\x31\x2e\xd6\x19\x0d\x23\x22\x24\xdb\x8e\x07\x57\x64\x2e\xa8\x07\xc8\x1c\x94\xd7\x43\xb8\x48\x64\x86\xa3\x9e\xd6\x0a\x1b\xe6\xca\x0d\x02\x09\xc8\x05\x8a\x70\xc4\xda\x9f\xbd\xf0\x42\x37\xe2\xb6\x87\x2f\x14\x22\x6d\xfe\xd5\x76\x25\x16\x37\xa2\xc1\x50\x6d\x67\x6a\x93\xb5\x25\x1c\xd4\x07\x2f\x7c\xc5\x4d\xab\xd5\xba\x6a\x5c\x8a\x17\x1c\xef\xb5\x3f\x78\x01\x92\x9c\xd0\x6d\x65\xb9\xe7\x90\xe9\xdf\x2e\xd6\xef\x7f\x9b\x7e\xad\x25\x21\x61\xb9\x33\x65\x0d\x20\xd4\xeb\x9e\x24\x21\x7b\x02\x24\x7c\x4d\x05\xe1\x18\xe5\x19\xca\x9b\x2c\xd3\x12\x0c\x2e\xa9\x60\x34\x5f\x63\xaf\x46\x38\x68\xb1\x04\xa1\xe3\x3b\x88\x42\xc2\x2a\xa9\xbe\x8b\xde\x2d\x57\x84\x05\x70\x7b\xe6\x04\x16\xca\xf5\x02\x85\x1c\x22\xa0\x21\xc1\x44\x20\xb5\xa1\x51\x8b\xf2\x12\x54\xb4\x3d\x85\x41\x33\x54\x84\xd6\xf2\x52\x20\xc7\x40\x8c\xf8\x00\x36\x71\x6a\x8d\x18\x75\x83\x9a\x86\xf6\x38\x06\x10\x73\xe0\x38\xc2\x2e\x62\x6c\x14\x46\x87\x7c\x29\x8f\xf2\xff\xf7\x89\x03\xae\x34\x91\x49\x0e\x11\xab\x8b\x54\x42\xc8\xc1\x0f\x3b\x9b\x61\xd8\x8b\xd4\xe7\x40\x3f\x4f\x3a\xd4\x8f\xa9\x0e\x07\x43\xfd\xb9\xaf\x3f\x27\xfa\x13\xf4\xdd\x9e\xfe\xd4\xaf\x59\x0f\xf5\xf3\x93\xf6\x86\x1d\x80\xcb\x01\x43\x33\xe0\x48\xb7\x1c\xeb\xeb\xbe\x19\xec\x10\x8a\x0d\x21\x8c\xca\x36\xfd\xf0\xe5\x70\x68\x58\xf7\x57\x5b\x86\x83\x56\xd0\x56\xab\xe5\x8a\xd7\x2f\x05\xb0\x9a\xec\xd7\x05\x6b\x0d\x80\x35\xf9\x61\xcd\x2c\x7d\xc7\x80\x15\xcd\xac\x1e\x46\x83\xe3\x52\xa7\xc1\x09\x5a\x25\x32\x88\x56\xa5\xae\xb4\x9c\x38\x4e\xb2\xb6\x3d\x70\x54\xab\x77\x1d\x1c\x39\x9e\x8c\x1d\x9d\x0d\xb7\xe3\x5d\x80\xb9\x1a\xd1\xef\x39\x12\xbb\xae\xda\x77\x04\x70\xac\x5a\x84\x95\xdb\xe9\xc8\x69\x39\xa8\xd9\xc4\x21\x61\x07\xdb\xa6\x7d\xe4\x44\xda\x36\xbb\x3b\xec\x70\x2d\x5a\xdd\x71\xb6\x25\x76\x18\xb9\x56\x3c\x68\xb3\xa3\xd0\xf1\xe0\x98\xa4\xe2\xef\x7e\xfb\xc3\x1f\x96\x41\xe5\xce\x87\xbe\x63\x8f\xe1\x1a\x53\xc7\x5b\xf6\x27\xce\x1c\x98\x20\xf7\x0f\xc7\xfa\x66\x9a\x1f\x23\x87\xdd\x51\x9b\xe8\xfd\x81\xc1\xd8\xfe\x20\x3a\x1d\x8a\x4e\x76\xb0\xd4\xdc\x4c\x11\xa2\xba\xd6\xa1\x23\xd2\x61\x4d\xe0\x83\xba\x90\xd8\x21\x38\x71\x82\x2d\x74\x26\xae\x0d\x36\xab\x6e\xfb\xf3\x1e\x86\xbd\xa3\xd2\xa9\x95\x09\xd2\xaf\x05\xa9\x1b\xe2\x27\xae\xc8\x01\x7a\xea\xa9\x10\xd5\xfc\x7d\x38\x5e\x49\xf8\x15\x66\xae\x28\xfb\xc1\x9a\xec\xef\x8a\x5a\xc9\xe2\xc3\x71\x73\x52\xa8\x04\xe1\x81\x4b\xae\xd5\xde\x72\x5c\xae\x5d\xfb\x8e\x0e\xe1\x3a\x6e\xb8\x16\x95\xb1\xe3\xe3\x01\x5a\x9d\x55\x45\x84\x18\x7d\x4d\x80\xbb\x39\x63\xd0\x5b\x33\xa1\x2a\x1e\xfa\x4f\x98\x50\x3b\x9d\x13\x31\xec\xb5\x71\xcb\xd6\xa3\x21\xda\x91\xd9\x74\x1a\x44\x85\xc2\xa0\x0e\x0e\x1a\x56\x19\xc7\x72\x07\xbd\x55\xcb\xd9\xbb\xd0\xc2\x72\x15\x2c\xb0\x7e\xfb\xee\x44\xb7\x51\x33\x76\x63\xe1\x60\x75\x82\x14\x2b\x58\xff\x67\xec\xee\xc7\xcb\xe5\xa4\x40\x4e\x9a\xf7\xa0\x1e\x43\xee\x44\x36\x6a\x84\x8e\x85\xa0\x16\xb1\x6e\xda\x9d\xd4\xad\xd5\x78\x1c\x84\x45\x63\xae\xe7\x2a\x89\xa2\xbf\x21\x8f\xb5\x3e\x10\xa2\x62\xf2\xea\xfc\x69\x53\x75\x18\xaf\x80\x46\x3b\x89\x26\x6e\x0e\xa9\xa7\x1b\xd7\x26\xc7\x45\x10\x8c\xcd\x02\xd5\x06\xf4\x54\xa1\xb1\x39\x52\x62\x65\xd5\xea\x8d\x57\x81\x79\xc3\xaa\x55\x5b\x00\x2b\x70\xca\x89\xf3\xfa\x4a\x53\xa8\xe8\xf6\xaf\xa8\xbb\x53\x5d\xe5\x69\x9a\xaf\x3b\xfa\xa1\xf0\xc2\x70\x35\xe8\x5c\xc3\xdb\xe5\x78\x18\x39\x66\x69\xf1\xe0\xd4\xb8\x79\x01\x31\xd2\x85\x0e\x13\x33\xad\x77\x57\xca\xae\x1c\x15\x67\x3a\x10\xae\x92\xa2\x7e\x00\x4e\xae\xea\x5f\x6a\x51\xac\x6d\xf5\x29\xe8\x6c\xed\x5c\x3c\x54\xc1\x96\xe0\x2c\x60\xd6\x19\x4f\xca\x18\x15\x40\xe6\x2e\x7e\x85\x78\xc7\x25\xeb\xa1\x0b\xf2\xf7\x6b\xfe\x38\x74\xc5\xdb\xe5\x94\x86\x02\xa5\xf7\x1d\x92\x95\xb0\x6f\x59\x4a\x7b\x5a\x38\x6c\x2a\xbc\x8d\xcb\xf5\x6e\xdd\x5a\xd9\x78\xf0\xc2\x70\xd8\xdb\x15\x53\xd4\x57\xc6\x1d\x30\x85\xdd\xbe\x37\x9c\x19\xbd\xe5\x88\x86\x61\xcf\x99\x57\xc5\x42\xf9\xfd\x4b\x4f\xdc\xb2\x78\x38\x2e\x93\xfb\xbe\xe3\xab\x0a\xeb\x36\x35\xc5\x71\xb9\x4b\x73\xab\x23\x46\xa4\x83\xcd\x95\xc6\xf1\x4a\xd9\xc0\x26\x76\x2b\x49\xdd\x22\x35\x4c\xbe\x7e\x6a\x05\xbb\x9d\xec\xb0\x84\x56\x6e\xec\x80\x13\x3b\xc5\x66\x70\xcf\x81\xce\x2e\x8e\x28\x92\xcc\xd3\xce\x6c\xb0\xec\x5d\x04\xb0\x7e\x93\xf0\xb7\x87\x4d\xfb\x53\x1c\x76\x92\xbb\x7d\xb0\xad\x3b\xcb\xe1\xe9\x95\x39\x77\x09\xa8\x6c\x46\xf4\x1b\xe9\xd5\xd2\xd8\x13\x77\x7e\x15\x9d\xea\x75\xba\xb0\x6e\x90\x7a\x86\x3a\x6e\xb1\xdf\x19\x56\xf0\x57\xbd\x00\xd2\xd0\xe9\xb8\x1e\x25\x75\x91\x7b\x35\x55\x2b\xeb\xf0\xba\x62\xdc\x7e\xdb\x83\x20\x8a\x4a\xd9\x41\x2d\x02\x5d\x3b\xc4\xa8\x36\xf5\x8e\x4b\xf1\x8a\x32\xd6\x7f\x96\xd7\x2a\x16\x82\xe6\xa9\x60\x2d\xb7\xb6\xa2\xf7\x73\x5c\xb4\xcb\x81\x11\xcb\xc9\x56\x33\xf2\xba\xd2\x9b\x1b\x79\x95\x42\x6e\xbd\x0e\xd2\xd7\x3f\x31\xac\x1c\x0c\x51\xdd\x13\xed\xe0\x92\xf6\x75\xf7\x5d\xec\xdf\xa2\x44\xde\x24\x40\x5c\x5a\xc1\x76\xb2\xf5\x94\xa7\x1c\xfd\xf0\xf7\x3a\x61\xe5\x47\x94\xbe\xfb\x8f\xf7\x02\x1a\x30\xff\xc1\xcb\x05\x20\x21\x39\x09\xa5\xf7\x8c\x75\xa3\x0e\x0d\xbc\x89\x17\x74\x96\xfd\xfc\x07\x0e\x32\xe7\x14\xc9\x47\xdf\x0f\x6c\x8f\x59\x63\x0f\xec\xf4\x08\x1b\x7b\x08\xa7\x47\xdc\xd8\x83\x3b\x3d\x6e\x1a\x7b\x84\x4e\x0f\x68\xec\x41\x9c\x1e\x59\x63\x8f\xd4\xe9\x91\x34\xf6\xc8\x9d\x1e\xd3\xc6\x1e\x91\xd3\x03\x37\xf6\x98\x39\x3d\x48\x63\x8f\xc4\xe9\x11\x35\xf6\x98\x3b\x3d\xd2\xc6\x1e\xd9\xa3\xef\x3f\x5b\x60\x8e\xe4\xa9\xf7\xfe\xfc\xc5\xf9\xeb\x8f\xe7\xd7\xe7\xef\xdf\x5f\xbc\xf7\x02\xac\x5a\x2e\xcf\xaf\xae\x5f\x9d\xbf\x79\x73\xe1\x05\xa2\xec\x61\x5b\x78\xd9\xf2\xf1\xec\xcd\xeb\x97\x67\x57\xe7\xd7\x6f\x2e\xfe\x79\xf1\xd6\x0b\x42\x75\xeb\xbf\x3f\x9c\x5f\x5e\x15\x2d\xa4\xec\x6c\x5b\xd2\x53\xef\xc3\x3b\x3d\xe8\xf5\xdb\x77\x1f\xae\xbc\x20\x2f\x07\xbd\xb8\x78\x7b\x79\xfe\xf6\xea\xfa\xec\xcd\x9b\x8b\x4f\x5e\x10\xd5\xef\xbc\x38\x7b\xfb\xe2\xfc\x8d\x17\xcc\x4a\xba\xf6\x96\x17\x24\x55\xee\xbf\xff\xee\x05\xf3\x2a\x7b\xd5\x94\x9d\x7a\x97\xe7\xef\x3f\xbe\x7e\x71\x7e\xfd\xe9\xe2\xfd\x1f\xe7\xef\xaf\xdf\x9e\x7f\x52\x44\xae\x14\x91\xc7\x60\xb0\xbf\xbf\x2d\xe2\x79\x87\x16\xe6\x63\x9d\x03\x3f\xc0\xa7\xac\x4b\x3b\xd2\x0f\xc4\x29\xeb\xf4\x0f\xfc\x80\xeb\x06\xe1\x07\xe1\x29\xeb\xf4\x0e\x06\x7e\x40\x74\x4b\xe8\x07\xa9\x6a\x39\xf4\x83\x5c\x75\x3d\xee\xfb\x41\xa4\xc7\x1c\xfa\xc1\xec\x94\x75\x8e\x8f\xfc\x20\x51\x0d\x47\x27\x7e\x30\xd7\x77\x86\x7e\x90\xa9\x3b\x87\x7e\x30\xd1\x63\xfb\x7e\x30\x3d\xed\xa8\xab\x81\x1f\xb0\x4e\xff\xd0\xf7\x83\xf8\x94\x75\x4e\x8e\xfd\xe0\x5e\xb3\x89\xfd\x2e\xb6\x3f\x6f\x46\x2c\xcc\x33\xb5\x41\x4b\x99\xf9\x4f\x11\x5d\x01\x98\x87\x53\x3f\x58\x9c\xde\x77\xe3\x94\xdd\x7e\xfb\xe6\x79\xcf\x22\x48\x41\x02\x32\x2d\x5a\xb5\xdb\xd3\x87\x29\xa4\x29\x1b\xd1\x3c\x4d\x03\x9d\x9a\xcc\xa5\xea\x31\x5a\x04\x7f\xe5\xc0\xef\x47\xf7\x41\x3e\x57\x48\xf0\x6c\x81\x49\x8a\x27\x29\x8c\xfe\xd1\x0b\xe6\x58\x4e\xdf\x71\x88\xc9\xdd\xa8\xd3\xf1\x4f\xff\xcf\x83\xa2\x07\xa7\x4b\x51\x12\x90\xe7\x29\xa8\xcb\xe7\xf7\xaf\xa3\x8e\xc7\x19\x93\x9e\x1f\xd0\x53\xf8\x0d\xd4\xcd\x33\x29\x39\x99\xe4\x12\x3a\x5e\x84\x25\xde\x53\xf4\xf6\xe6\x9a\xa0\xe7\x6b\x21\x9e\xd9\x38\xa6\xff\xf5\x5f\xde\xf5\xf5\xbb\xb3\xab\x57\xd7\xef\xde\x9f\xff\xfe\xfa\xdf\xd7\xd7\xde\x3f\x4e\x4f\xe9\xb7\x6f\x1d\x7a\xea\xfd\x2a\x48\x42\x09\xfd\x75\xd1\x53\xd4\x1f\xfd\x8e\xff\xa8\x55\x7b\x7e\x5a\xfa\xf7\xf4\x36\xa0\xfe\x83\xb8\x25\x32\x9c\x76\x68\x57\xde\xcf\xc1\x7f\x08\xb1\x00\x34\xed\x4e\x46\x96\xcd\xc5\xe4\x46\xe5\x67\x2c\x14\xc1\xce\xc3\x63\x00\xc1\x83\xb5\x88\x49\xda\x8f\xfe\x33\x3b\x66\xb6\x69\x4c\x69\xd0\x72\x40\xb8\x7d\x80\xc9\xc7\x23\xda\xd5\xdf\x41\xb1\x79\x1c\x95\xfb\xc8\xc0\xd9\xd6\x8c\x68\xd7\xf9\x2b\x88\x40\x62\x92\x8a\x91\xda\x47\xa7\x29\x7b\x2c\x39\xa7\x9b\x38\xd7\xdc\xba\xff\xe8\x3f\x8b\x20\xc6\x79\x2a\x8b\x71\xf0\x68\xec\x79\xee\xda\xf3\xc1\xfe\x8a\x3e\xf2\xbc\x52\x52\xcf\x0b\x8a\x0d\xa7\xba\xd6\x36\x13\xa3\x87\xc7\xc7\xf5\xc6\x8f\xb7\x1a\x5f\x14\xd6\x17\x41\xc9\xb3\x54\x2f\x19\xd9\x8b\x69\x71\x71\xb3\x89\x64\x41\xc2\x88\xe1\x88\xb8\x24\x88\x0b\x3a\x50\xd0\xa1\x5d\x91\xeb\x9f\x7d\x7f\x83\x51\x0b\x31\x7f\x2b\x2e\x46\x0f\x8f\x8d\x22\x47\x1b\x3d\xd2\x6c\xcc\x72\x74\x56\x8c\xb6\x93\x19\x2c\xb7\xcf\xb4\xab\xc6\x7d\x09\x9a\xa8\x16\x37\x47\x7a\x57\x97\x43\xa3\x97\x83\xb7\xa7\x66\x6c\x27\xeb\x86\x7e\xe7\x21\x64\x59\xc6\xe8\xe8\x79\xa0\x77\x63\xa3\xf3\x47\x3f\xb8\x3c\xfd\x3c\xe9\xe2\x2f\x3a\x1e\x2e\x4e\x6f\x09\x8d\xd8\x6d\xf7\xfa\xfa\xfd\xf9\xcb\x0f\xff\xbe\x7e\x79\xfe\xf1\xea\xe2\xe2\xcd\xe5\xf5\xf9\xbf\xaf\xce\xdf\x5e\xbe\xbe\x78\x7b\xfd\xe2\xe2\xcf\x77\x17\x97\xe7\xd7\xd7\xdf\xbe\x65\xdd\x28\x78\x55\x32\x00\xbf\xf3\x36\xb8\xe8\x2c\xff\xc6\x7e\xa7\xdb\xed\x5e\xfa\x76\xc5\x7a\x79\xea\x26\xe7\xe5\x8a\x46\xbb\x1c\xa2\x3c\x84\x4e\xb9\xda\xe9\xcc\x5d\xdc\xfe\xcc\xbe\x9c\xc2\x67\xf6\x45\xe5\x81\xe0\xe1\xd1\x7f\xec\x3c\x44\x30\x52\x49\xf4\xd0\x0f\x3c\xa0\x7b\xff\x7c\xee\x29\xb7\xa8\xcb\x0f\x97\xfa\x32\xe6\xfa\xfe\x91\x1f\x4c\x89\xbe\x3a\xf6\x03\x22\xf4\xd5\x89\x1f\xd0\x89\xba\x3a\xda\xf7\x03\x9a\xea\xab\x9e\x1f\x78\x73\xb9\xf7\xee\xca\xd3\x7f\xf6\xfd\x80\xe7\xfa\x6a\xe0\x3f\x06\x9f\x3d\xfd\xb8\xbd\xe1\x53\x30\x09\xbc\x98\x7b\x81\x37\x25\x5e\xe0\x11\xe1\x05\x1e\x9d\xa8\x8f\xd4\x2b\x08\x05\x1e\xcf\xbd\x2f\x7e\xf0\xfe\x94\x74\xfc\x8e\x0e\x51\xe0\x23\x95\x52\xdf\x71\x96\x11\x01\x5d\x9c\xa6\x9d\xcf\xac\x0b\x9d\x63\xb5\xe2\x43\xe7\xc0\xff\xe2\x77\xe5\x14\x68\x87\x75\x27\x84\x46\x1d\x9d\xb2\x07\xfb\x3d\xdf\x5f\x46\x5c\xd2\xc5\x81\x24\x19\xb0\x5c\x8e\xfa\x30\x7c\xf4\x9f\xf1\x2e\xee\x72\xa0\x11\xf0\x0e\xee\xe2\x6e\xc8\x01\x4b\xb0\x29\xba\x93\x76\x71\xf0\x20\x24\xe3\x30\x7a\xf5\x18\xd4\xef\xe7\xea\xbe\x9c\x42\x06\xa3\xa8\x8b\x9b\x7a\xcc\x54\x0f\x5b\x59\x11\xa3\x97\x81\x5a\x8a\x52\x18\x79\x40\xbd\xc0\x06\xdb\x9b\xb2\xa9\x89\xc2\xfb\x40\xe9\xe1\xfb\xbe\x1f\x6c\x59\x45\x7c\x1b\xe5\x9d\xb9\x0a\x1c\xff\xf1\xf1\x8b\xff\xec\x7f\xfd\xfa\xeb\xff\x46\x82\xe5\x3c\x84\x3f\xf1\x7c\x4e\x68\xf2\xe1\xfd\x9b\xd3\xf2\xbf\x4d\xef\xe1\xf9\xbc\x0b\x83\xc1\xc9\x7e\x84\x8f\xbb\xe1\x34\xa7\xb3\xee\x8d\xe8\x66\x78\xfe\xff\x02\x00\x00\xff\xff\x62\x33\x13\xc0\xc0\x7a\x00\x00") -// FileIdentifierStaticJsIdentifierAppDc3ded3fChunkJsMap is "identifier/static/js/identifier-app.dc3ded3f.chunk.js.map" -var FileIdentifierStaticJsIdentifierAppDc3ded3fChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x3a\x6b\x7b\xda\x38\xba\x7f\x45\xeb\x2f\x90\x5d\x05\xba\xa7\x33\xdd\x1d\x5a\x66\x8f\x6c\x1c\xca\x70\x0d\x97\x24\x6d\xd3\x87\xc7\xd8\x02\x9c\x18\xdb\x6b\xd9\x49\xb3\x99\xfc\xf7\xf3\xbc\xaf\x64\x23\x1b\x48\x67\x7a\x36\x1f\x82\xf4\xde\x6f\xba\xfb\xd9\x78\xe0\x89\xf0\xa3\xd0\x68\xbd\xa5\x86\x88\xb2\xc4\xe5\xc2\x68\x7d\x31\x1c\x37\xf5\xa3\x50\x34\xd3\xa7\x98\x8b\xc6\x9d\x30\xa8\x91\x70\x2f\x73\x79\x22\x9a\x6e\xb4\xdb\x45\x61\x05\x18\x44\x1b\xbf\x0a\xf3\x43\x8f\x7f\x93\x30\x91\x46\x09\x97\xcd\x20\x72\x9d\x80\x97\xb0\x4e\x1c\x43\xe3\x2b\x35\x42\x67\x27\x0d\x98\xda\x96\xdd\xbb\xb2\x97\xf6\x74\x3a\x9e\x1a\xd4\x98\xda\x33\x7b\xbe\xfc\x68\x0f\x06\x63\xec\x49\x6c\xb5\x7f\xc5\x06\xbd\x0e\x9b\xdb\xcb\xc1\xb8\x3b\x1e\x21\xe2\x72\x61\xcf\xe6\x5a\x5f\x12\xe6\xfd\xc5\x04\xc9\x7b\xa3\xc9\x62\xae\x91\x5b\xe3\xd1\xcc\x1e\xcd\x97\x6c\x30\x18\x5f\x1f\x81\x5b\x6c\x64\xd9\x03\x4d\x9e\x42\x54\x34\x5e\x5c\x54\x54\x22\x60\x66\x4f\xaf\x7a\x96\xbd\xbc\x1e\x4f\xfb\xf6\x74\x39\xb2\xaf\x81\x7d\x2e\xd9\xff\x9d\xf1\xe4\x29\xff\x9d\xa5\x89\x1f\x6e\x0c\x6a\xc4\x4e\x22\xb8\x41\x0d\x2f\x72\xb3\x1d\x0f\x53\x15\x46\xc8\x11\x04\x97\x3b\x89\xbb\x35\xa8\xb1\x0e\xa2\x47\xa0\xe2\x6b\x27\x0b\xd2\x59\xea\xa4\xc0\xb4\xe5\x41\x10\x19\xd4\xe0\x49\x12\x25\x06\x35\xb2\xd8\x73\x52\xce\x1e\x1c\x3f\x70\x56\x01\x47\xf1\xe9\x76\x92\xf0\xb5\xff\x0d\xd2\x17\x45\x20\x7f\xc3\x53\x3b\xe0\xa0\xcc\x7c\xea\x79\x12\xc0\xd2\x34\xf1\x57\x19\x4a\x95\x55\x30\x95\xb9\xc6\x0c\x4b\x6d\xb2\x72\x0c\x6a\x40\xe9\x18\xd4\x18\xaf\xee\xb8\x0b\x02\x1d\x21\xfc\x0d\x20\x32\xc1\x13\xc8\x33\x58\xea\x8b\x38\x70\x9e\x46\xaa\xc7\x53\xc7\x0f\x64\x8d\x6c\x7c\x4d\x76\x10\x39\x5e\x1e\x08\x21\x1e\xa3\xc4\xcb\xdd\xc1\xda\xca\x5c\x97\x0b\x68\x29\xa9\x0f\x4e\x90\x71\xe5\xc9\x5e\x88\x1b\xed\x56\x7e\xc8\x15\x40\x14\x2e\xe4\xea\x0c\x6a\xec\x7c\xcf\x0b\xf8\xa3\x93\x70\x40\xa7\xdb\x2c\xbc\x1f\x16\x20\xc9\x10\x47\x82\xdb\xe1\xd6\x09\x95\x8c\x47\x3f\xf4\x30\xe8\xcb\xe5\xd4\xee\x2c\x6e\x96\x1d\xfb\x6a\x3e\x1e\x0f\x66\x4b\xfb\x66\x6e\x8f\x66\xbd\xf1\x68\x69\x8d\x87\x93\xf1\xcc\x5e\x2e\xf7\x22\xf2\x21\x01\x90\x84\x3b\x29\x9f\xa9\x9e\x13\xc7\xc1\x53\x49\xa9\x1a\x2f\xe0\x71\x08\xf9\xf2\x8a\x21\x56\x20\x0b\xdc\xa0\xa0\xf5\x00\xb8\x06\xbf\xb7\xbe\x41\x0d\x1f\xc3\xb3\x82\x7f\x01\xf0\x67\x06\x35\x06\x91\xe3\x01\x13\x8b\x63\xad\xa7\xc2\x8d\x21\x1b\x14\x71\x4f\xfd\x1d\x8f\x32\x48\xe3\x94\x3b\x6e\xda\x19\x0f\xd1\x8a\x50\xd2\xa5\x5b\x8e\x81\xdf\x71\x21\x9c\x8d\x0c\x5e\xe2\x84\x22\xc0\x0a\x15\xfb\x92\x1c\xe4\xe6\x66\x61\xc2\x37\xbe\x48\x79\x02\xa3\x7e\xe7\xc4\xb1\x1f\x6e\x84\xd1\x32\x76\x7f\x7b\x6b\x32\xc6\xe8\x9b\x15\x63\x63\xda\x63\x6c\xc8\xa8\xcd\xd8\xc6\xa4\x1b\x93\xd9\x5b\xd3\x82\x9e\x4b\x5d\x66\x7b\xd6\x21\xe2\xc9\xa4\x4f\x26\xb3\xfe\x63\x1e\xc1\xc9\x9e\xa5\x7a\x9c\x72\x66\xaf\xb1\xf9\x68\xd2\x47\x93\x59\xdf\x74\x11\xb6\x12\x71\x6f\xd2\x7b\x93\xd9\x81\xec\xf9\x26\xf5\x4d\x66\xdf\x1d\xeb\xbd\x33\xe9\x3f\x4d\xfa\x6e\x60\xad\x62\xcb\xa2\x36\x1d\x33\x76\x89\x88\x4f\x16\x1d\x32\x36\xb4\xe8\x8c\xb1\x59\xfe\xff\x92\x59\x3f\x5b\x88\x1e\x8f\xe0\xff\x70\x08\x44\x97\x74\xc1\xac\xd8\xcc\x21\x7d\x66\xaf\x68\x8f\x2d\x86\xca\x62\x8b\x59\xa1\x89\xd2\xc6\xb4\xcf\xac\x89\xd6\xfc\x48\xfb\x2a\x54\xd6\x68\x84\x60\x6c\x4f\x16\x60\x22\x58\x6a\x33\x0b\x0c\xbd\x66\x5b\xf3\xd1\xa4\x43\x70\x17\xa3\x2b\x6d\x98\xa3\x59\x0b\xca\x41\xcd\x25\xb3\xee\xac\x0b\x80\x3b\x12\x8b\x19\xe8\xdb\xd4\x61\xcc\xa1\x91\xc9\x98\x30\x69\x9f\xf5\xb7\xe0\xe4\x6f\xfd\x8f\xb4\x8b\xde\x03\x62\xcd\x68\x0f\x22\x82\x1c\x0e\x64\x69\xca\x68\x97\x4d\x7c\x50\xb6\xeb\xdc\xf4\xe8\x90\x6d\xad\x35\x68\xcb\x64\xd8\x2e\xe7\x98\xd0\x05\xed\x32\xeb\xad\x85\x51\x43\xe6\x31\x38\x67\xad\xc0\xad\x7e\x13\xb8\xad\x8f\x80\x1c\x6f\x90\x66\x2c\xff\x83\xe6\xde\x6f\x48\x0e\xc1\xf9\xc5\x9c\xa0\xeb\x97\x08\x99\xd2\x4b\xd6\x0d\x4c\x94\x90\x68\x12\xfe\x66\xbe\x26\x61\x2a\x63\x3a\x66\xdd\x1b\xe4\x0c\x35\xce\x7f\xfe\x11\x4e\x8b\x59\x83\x4b\x6c\xca\xe0\x75\xc0\x0f\xaf\x0f\x2e\x2f\x24\x79\x8f\xce\x64\x32\x3e\x31\xe6\x0c\x10\xd4\xa7\x9f\x20\xf1\x50\x17\x6c\x36\x2a\x52\xd2\x4b\xa5\xf9\xf3\xbd\x0d\xd1\xab\x36\x8c\xf2\x74\xf7\x58\x37\x31\x21\x93\x58\x88\xe3\x21\xed\x59\xcc\x06\xb3\xb6\x1d\x8c\xbe\x30\xa7\x18\x7d\x60\xfb\xd9\x9c\xa1\x5e\x48\xc1\xfc\x37\x34\x14\x9a\x57\xfd\x7d\x53\x26\x06\xac\x98\x5c\x01\xa0\x73\x3c\x51\x3f\x6b\xc1\x7a\xf7\xaa\xa1\xd7\x28\xe0\x0a\x21\x0b\x3a\x66\xd6\xfa\x42\xda\xd0\x67\x5d\x3d\xe9\x03\x6c\x5b\xfb\xe6\x6f\x7b\x0d\x3f\xbd\xaa\x41\xfa\x34\x55\x26\xf6\x61\xe0\xcf\xa4\x17\x7d\xd6\xfd\x7c\xa0\x62\x2f\xb7\xff\x64\x22\xd3\x35\xbd\x64\xc3\xc1\x67\x6a\xb3\x81\xdd\xfd\x33\xbe\xb0\x99\xde\x86\x70\x7d\xb3\x0a\xef\xfa\x6b\x54\xf7\x56\x8b\xd4\xbf\x5f\xf5\xa3\x7f\x90\x90\x3e\xeb\x7a\x28\xe4\x0e\xe2\x62\x7f\xa4\x2e\xeb\x8c\x33\x34\x7a\x88\xb6\x8c\xa5\xfe\x4f\x90\x98\xd8\xbc\x7a\x4d\x3a\xb5\x18\x53\xf3\xd0\x27\x2c\xda\xcf\xd8\x76\x60\xec\xfc\x5d\x2b\x20\x8f\xf6\xac\x7f\x58\x36\x87\x68\xf4\xb1\x72\x37\xc0\x6b\x05\x96\x2c\x8d\x00\x67\x98\xe9\xce\x44\x21\x57\xb4\x67\x75\x3e\x5e\xcb\xa9\x1a\xa8\x4c\xc8\xc0\xf8\x62\x3f\xe3\xec\xcc\x7c\x1c\x0b\x8b\xb1\x47\x0b\x3c\x99\xfd\xa7\x03\xb8\x49\x07\xe4\x5b\x9f\x6f\x40\x22\x1b\xca\x99\x76\x48\x39\xb3\x3e\x4f\x69\xdf\xea\x4f\x68\x8f\x3d\x99\x7c\x46\x6d\x16\xe7\x53\x09\x56\xe2\xcc\xa2\x5d\xd6\xfb\x45\x46\x13\x21\x97\x38\xa0\xc6\x38\xb9\x6d\x65\x56\x7d\x93\x76\x99\x1d\x83\xf6\x0e\xbb\x93\x41\x43\x18\x5b\x7c\x44\x96\x2e\x84\xfa\xce\xbc\xc3\x04\x8d\x68\x8f\xf5\xae\xef\x31\x4c\xae\x1c\x2b\x16\x85\x62\xb0\xd8\x7e\xc8\xec\x5b\x39\xee\x7b\xbf\xf4\xb2\xe8\x5e\x42\xf8\x2d\x66\x77\xa0\x44\x41\x68\xfe\xaf\x7f\xea\x1f\x62\xc7\xd6\x2f\x66\x4f\xae\x85\x10\x3a\x36\x03\xe3\xde\x9a\xc5\x38\x65\x43\x1a\x75\x98\xe5\xdd\xc9\x29\xe5\x1e\x47\xd0\x5c\x76\xe8\x90\x75\x6f\x24\x17\xd0\x5b\x13\x58\xe2\x18\x02\x3a\xe0\xe8\x22\x31\xd5\x0a\xd2\x65\xd6\xba\x82\xbc\x37\x45\x8e\xed\x33\xeb\xc1\xac\xa0\x5d\x5c\xe0\x16\xd2\xb2\x40\xa6\x02\x6b\x75\x67\x52\x17\x62\x38\x64\xd6\x2f\x1d\xc9\x84\x55\xda\x81\x69\x6e\x94\x74\xf4\x05\x68\x06\xb5\x27\x3a\xb0\x81\xf1\x03\x6e\xb4\x70\x6f\xe9\xbb\xcd\x3b\xd1\xf4\x3d\x1e\xa6\xfe\xda\xe7\xc9\x39\x1c\x1a\x3c\xf7\xad\xc7\xbd\xb7\xeb\x86\x0b\x7b\x35\x75\xd4\x90\xa7\x18\x2b\x0a\x53\xd8\x29\xb7\xbe\x18\xfc\x5b\x1c\x25\x29\x71\xa3\x50\xa4\xa4\x74\xb0\x20\x6d\x52\x2b\x01\x6a\xef\x6f\xc3\xdb\xb0\xc2\x50\x9c\x3c\x24\x79\xd1\x05\xe2\x12\xa9\x7d\x63\x5b\x8b\xb9\xbd\x27\x2e\x01\x0e\xc8\x4b\xa7\x18\xdd\x94\x82\xfc\x04\x43\xf9\x98\xa3\x73\x96\x31\x47\x34\x6a\xc7\x21\xc9\xa7\x01\x4e\xfa\x53\x90\x97\x00\x27\xfd\x39\xb0\xea\x38\xb9\x7e\xf6\x02\x6a\xbd\x7f\xd4\xf9\x23\x67\x33\xdd\x87\x12\xe2\xa4\xeb\xe5\x23\xdc\x31\x7e\x89\x39\x19\x0c\x45\xa6\x87\x43\x81\x4e\x06\x44\x63\xa9\x80\x5e\xf1\x53\x9e\x17\xab\x49\xba\xb8\x78\x35\x4b\x92\xa1\x0c\x79\x35\x4f\xb9\x06\x1d\x72\xc4\xa8\xd3\x67\x56\x60\x3f\x8d\x3d\xd0\x5d\x21\x9d\xda\xac\xf3\xe9\x88\x08\x84\x7f\x8f\xb9\x18\xc2\xc7\xe0\xdf\x63\x1e\x5f\x5c\x0c\x7a\x23\xfb\x08\xbb\xc2\x80\x00\x38\x39\xed\x50\xc6\xf3\x6d\x48\xca\x73\x07\x95\x90\x62\x36\xa0\x3a\xc5\x1e\x72\x3a\x36\xb7\xe1\x0b\x59\x27\xd1\x8e\xd4\x1a\x8d\x66\xe9\xc2\x05\x54\x2b\xbd\xda\x3d\x80\x22\x46\xc8\xb9\x40\x90\xcc\x94\xf4\x0f\xe1\xa4\xad\x73\x34\xf0\xde\xa0\x9e\xdf\x1a\x34\xf2\x3b\x83\x86\xbc\x31\x38\x7b\x9f\xf3\xae\x83\xe8\x31\x67\x6d\x60\xe7\xf7\xdf\x49\x0d\xa4\x7b\x3c\xe0\x29\xd7\x30\x9a\x46\x75\xa8\x9b\x14\xb7\x07\xa4\x4d\xea\xf5\x33\xd2\xfe\x55\x86\x4b\x52\xc1\x29\x9c\xb4\x49\x61\x44\xf9\x62\xa1\x5e\x03\x7c\x0d\x4c\x21\x24\xe0\x29\x89\x75\x69\xc8\xfb\x2f\xfc\x69\xe8\xf7\x0f\xf5\x9a\xe7\xa4\xce\x39\xd0\x9e\xc7\x48\x5c\x3b\x23\x2d\x12\x66\x41\x80\x82\xfc\x35\xa9\xff\x45\x93\xf4\xfb\xef\x25\xb9\xed\x36\xa9\x2d\x97\x13\x36\xff\xb8\x9c\x4c\xed\x8b\xde\xcd\x72\x59\x3b\x93\x36\x13\xd2\x6c\x92\x51\x94\x92\x84\xc7\x81\xe3\x72\x8f\x92\x38\x89\x56\xce\x2a\x78\x22\x8f\x9c\x38\x09\x27\x49\x16\x86\x90\x0e\x3f\x24\x1e\x5f\x65\x1b\xb2\x8b\x3c\x4e\xa2\x84\x3c\x6e\x9d\x94\x3f\xf0\xa4\x41\x16\x82\x13\xe1\x84\x3c\x0f\x51\x43\x8a\x2e\xf9\x56\x6b\x0a\x7f\x13\xfa\x61\xf3\xe1\xef\x35\x34\xfa\x05\xfe\x25\x3c\xcd\x92\x50\xa3\x7c\x7f\x1b\xbe\x9c\xd5\xcf\x0e\xc3\x8e\xd7\x3b\xa4\x2d\xcd\xc6\x3b\x1e\x19\x00\xac\x3a\xbc\x1c\xd1\xfa\x90\xb9\x16\xfe\xc7\x2e\xa6\xb3\x25\x7f\x10\x50\xb9\x13\x6a\x91\xb5\x13\x08\x8e\xa8\xbd\x29\xad\xc3\x8c\xdf\x86\x2f\x68\xd9\x3a\x0b\xb1\x80\x49\xe9\x5a\xa8\x2e\x94\x8d\xba\xc9\x94\xc8\x5a\x57\x01\x17\x8f\x7e\xea\x6e\x49\x5d\x02\x1b\x50\xff\x45\x2a\x5c\x47\xf0\xf2\xa0\x6b\x49\x44\x11\x27\x79\xbb\xd4\x90\x77\x4b\xf5\xe7\x17\x4a\x84\xd4\xf1\x9c\x13\x16\xb1\x50\x0a\xb0\x97\x23\x5f\x64\x5c\x35\x5d\xc5\x70\xfe\x11\x4d\x5a\x16\x4e\x6b\xd0\x26\x88\xff\x87\x0e\x0d\x42\x24\x55\xe1\xa1\xe4\xd1\xf1\xf9\x8d\x5b\x41\x92\x03\x4a\x54\xda\x65\x5c\x41\xa8\xc1\xca\xb4\xf2\xaa\xae\xa0\x43\xab\xf6\x04\x2f\xa7\xdc\x3f\x3d\x1b\xfe\x48\x2c\x0e\xaa\x36\x4d\x32\x7e\x44\xb5\x2a\xbf\xaa\x0a\x14\x98\x0f\xbd\x17\x6d\xcd\x53\xf4\xe5\x62\x3e\xbd\x1c\x94\x37\x5d\x6a\x1d\xd0\xf6\x55\xa5\x95\xe1\x38\xe4\xe2\xa2\xc4\x56\xda\xca\x1c\xc5\xc8\x4d\x4a\x49\x8e\x42\x21\x4c\xdf\x4b\xbd\xbe\xce\x68\x63\x57\xbf\x75\x2d\x86\x2e\x7a\xaa\x2e\x60\x5b\xa4\x56\x93\xd3\x45\x51\x50\x0a\x90\xdf\xcb\x16\x00\x79\x3b\xdb\x22\xcf\x10\xda\x1f\x1d\xf2\xe5\xc0\xfe\xf0\xd8\x17\xe5\xc1\x2f\xb4\x4a\xd6\x1c\x3b\x3d\x62\x8f\xe4\xa4\xf5\x0a\x81\x4c\xcd\x31\x8a\x1f\x76\xa3\x30\x53\x0b\x19\x3d\xf4\xf2\xf9\xe4\xb8\xab\xd4\x48\xeb\x08\xaa\x6c\x1c\xae\xa0\xf9\x84\x22\x2f\xd8\xcf\x74\x8b\xfe\x84\xf1\x27\xb2\x40\xfe\x55\xe9\x83\xfd\xa5\x49\xe6\x48\x72\x94\x67\x95\x59\xa6\x32\x9e\x4f\x38\x77\x71\xf1\x43\x73\x4c\xb5\xd4\xe5\x9f\x5e\xf0\xa7\x82\xae\x0f\xc2\x42\xb5\xda\x50\xa1\x22\xe5\xf9\x17\x15\x07\x50\xf3\xf5\xfd\x0f\xd8\x58\x12\x50\x84\x19\x9f\x41\xfe\x8b\xb3\xa1\x3e\x3d\x94\x27\x43\x52\x79\x5b\x21\xf9\x84\x93\x70\x2f\xfb\x26\x67\x19\x45\x5b\x9a\x52\xf3\x69\x49\x3d\x29\x6a\xdb\x5e\x5d\x57\x41\x85\x40\x7d\xcb\xab\x3d\xf0\x90\x76\xd5\x88\xba\xda\x83\x82\xe4\x56\x59\x2f\x95\x73\xda\xc6\x0f\x5b\x25\x4d\xb0\xd5\x7a\x7f\xc4\x73\x4d\x4f\xd5\xf1\xfd\xe3\x0d\x25\x95\xb7\x1b\x4a\xd4\x63\xcf\x61\x38\x14\x7f\xe5\x85\x49\xa7\x3a\x47\x9c\x46\x9b\xeb\x1a\x44\x9b\x0d\x4f\xca\x22\xcf\x03\x04\x96\x02\xad\xc7\x26\x0f\x60\xfe\x32\xab\xc7\x50\x7b\xf3\x22\x6d\xf2\x05\x22\x53\x31\xeb\x36\xfc\x2a\x05\xaf\x49\x3d\x4e\x22\x98\x0a\x1a\x3c\x7c\x68\x8c\xc6\x1d\x7b\x69\x8f\xae\xe4\x7e\xda\xe3\x0f\x3c\x88\x62\xd8\xd7\xc3\x5e\x1a\xb6\xd1\x5c\x04\x7e\x98\x9e\x7b\xbe\x80\xd5\xf9\x3c\xf0\x43\x4e\xc2\xe8\x3c\x0b\x3d\xbe\x06\x3d\x9a\xea\x46\x9c\x89\x6d\x5d\xf7\xb0\x7e\x76\xf6\x1e\x84\xec\x32\x91\x92\x15\x27\x81\x53\x32\x16\x76\xdf\xe9\x96\x13\x77\xeb\xf8\x61\x43\x15\xac\xf4\xa8\xfa\x4a\x47\xda\x44\xbe\xd2\x35\xfe\xc8\x1b\x1d\x9c\x15\x94\x04\x2d\x4a\xf8\x58\x07\x35\xb6\xcf\x77\x1d\xb7\xeb\xfb\x28\x53\x55\x6e\x25\xdd\xf5\x4a\x4d\xd4\xe5\xa0\x6b\x34\x1a\x9a\xf3\xc8\x79\x76\x76\x1b\x1e\x2d\x3e\x54\x2d\xcb\x0e\x8e\x26\xe3\xb9\x5d\x0f\xa2\x70\x23\x02\xce\xe3\xb3\x16\x99\x6f\x7d\x81\x33\xa5\x20\x4e\x10\x10\xed\xdd\x8d\xac\xfd\x80\x0b\x92\x46\x10\x3e\x3f\x74\x83\xcc\xe3\x9e\x8a\xdb\x6d\xd8\x6c\x42\xbd\x92\x55\x16\x7a\x01\x6f\x90\xf9\x96\x3f\xe1\xe9\x26\x8c\xa0\x2e\x9d\x94\x04\x4e\xb2\xe1\x0d\x30\xa8\xd9\x24\x93\x80\xc3\x8c\x76\xcf\x79\x4c\x64\x81\x09\xe2\x84\x1e\x91\xb6\x82\xea\x78\xeb\xac\x78\xea\xbb\x4e\x10\x3c\x11\x11\x25\x29\xf7\x1a\x45\x31\x7a\xbc\xa8\x41\x8f\x37\xee\x44\x69\xac\xaf\xf7\x05\xba\x4e\xaa\xc8\xad\x5f\x20\xb7\x7e\x15\xe9\x8b\x02\xe9\x8b\x2a\x32\x5c\x15\xc8\x70\x75\x80\x0c\xf6\xc8\xa0\x8a\x8c\xd3\xc9\xbc\x40\xc7\xe9\x72\x32\xaf\x52\x24\xd9\x7e\x4c\x65\x05\x52\xdb\x4a\x95\x9e\x63\xeb\xea\x09\x97\x2a\xb0\xa7\x56\xd2\x93\x03\xea\x2f\x30\xa0\xe2\x24\xf2\x32\x94\xf6\x47\xc7\x53\x31\x95\x2b\x7d\x07\xa7\x4a\xa5\xbe\x21\xe7\x81\x7a\x6e\x6d\x1d\x57\x0a\xaa\xd8\x8a\x65\x1e\xa1\x5f\x24\xf0\x2b\x69\xe7\x52\x73\xc8\xfb\x92\x4a\x24\x96\x0a\x29\x79\xc6\x69\xf4\x45\xd5\x8e\x8a\x82\x1c\xc9\xeb\x28\x08\xa2\x47\x62\x5a\x13\xf2\xd3\x3f\xc8\x3a\x4a\x76\x4e\x4a\xea\xdb\x34\x8d\x45\xab\xd9\x4c\xa3\x28\x10\x0d\x9f\xa7\xeb\x46\x94\x6c\x9a\xdb\x74\x17\x34\x93\xb5\xfb\xf3\xbb\x9f\xde\x9d\x35\xf2\xb1\xa8\xec\x20\xed\x4a\x94\xd1\x6c\x4f\xee\x8b\x6a\x3c\x3c\xef\x9a\xb5\x62\x4b\x01\xfd\xc5\x6c\xdf\x5f\xcb\xe1\xba\xf5\xf1\xc7\x97\x43\x30\x5c\xc9\x1f\x79\x64\xae\xc5\xe9\xf9\x64\x5e\x6b\x61\x39\x20\x24\xc9\x70\x2f\x8b\x73\x24\xf8\xe5\x8b\x94\x44\xeb\x3c\xaa\x24\x70\xc2\x4d\xe6\x6c\xb8\x80\x31\xb6\xcf\x1e\x59\x65\x7e\xe0\x09\xbc\x02\xa8\x79\xbc\xa6\xdb\xa7\xdb\x26\xdb\xeb\x44\x35\xb6\xbe\x6a\xf8\x42\x35\xc2\x55\xde\x08\x6a\xba\x85\xb2\x9d\x64\xb5\xdb\xf0\xeb\xd1\x19\x64\x5f\x0e\xfb\xa5\x0b\x9f\xf1\x8b\x35\xc4\x71\x53\xad\xba\xf3\x27\x7e\x1d\x7d\xee\x45\x3b\x8d\x24\xff\x5a\xa0\x44\x12\x28\x60\x69\xd5\x9a\x24\xd1\x83\xef\x95\x56\x2c\xa0\x3d\xdc\x19\x3c\x93\x61\xe6\xcf\xb7\x7c\xc7\x0f\x58\xfe\x77\xe7\xa4\x3c\xf1\x9d\xe0\x3c\xf3\x9b\x6e\x94\xf0\xa6\x48\x9f\x82\xfc\xfc\x52\xf0\x2b\x7f\x51\x06\x71\x04\xc1\xcf\x12\x0a\x21\xf7\x71\x14\x37\xb9\x68\x22\xb4\x64\x62\x2f\x4c\x83\x13\x66\xfa\x61\x1a\x54\xdc\xde\xdf\xc4\xe5\x12\x15\xb4\x24\x73\xff\x81\xc3\x81\x01\x82\x27\x0f\xbe\xcb\xaf\xa3\xe4\xbe\xb2\x66\xcb\x55\x26\x9f\x59\xb0\xa7\xef\x16\xb4\x4f\x2a\xb4\x3d\x11\xe6\x56\x8a\x39\xb6\x3e\x80\x71\xc4\x11\x4f\xa1\x4b\x1e\xfd\x74\x4b\xe4\xc7\x1d\x94\xa4\xb0\x6e\xc8\xd2\x15\xc4\x8d\x3c\x4e\x44\x1c\xf8\x69\x0a\xee\x3d\xf8\x0e\xb9\xe6\xab\xd8\x71\xef\x8b\x51\xa7\x7d\x2d\x42\xda\x45\xaf\x5e\x1c\x0f\x79\xd2\x22\xf2\xee\x4f\x9a\x5b\x6f\xfe\x95\x3c\x4a\x19\x16\xec\x27\xe4\xb5\xc2\xad\xa1\xbd\xe0\xec\x1c\x3f\xbc\x35\xc8\x5f\x9b\xe0\xc8\xd0\xf1\xc3\xda\x19\x2d\x9d\x36\x55\x60\x11\xa8\xbe\x40\x69\x91\xff\x79\xf3\xe6\xcd\x9b\x62\xa7\x96\xd7\x6a\x43\x7e\x8c\x82\xeb\xeb\x87\x22\x99\x18\xc2\xf6\x33\xfe\xbc\xfc\x2a\x27\xac\x0f\x07\x65\x86\x15\xd1\x7e\xc6\x9f\x9c\x8a\x90\x0f\xa5\xb2\xc8\x3f\x6d\x69\x3f\xeb\x69\x78\x51\x63\xab\x7d\x6b\x70\x70\xa5\xf4\x99\x8b\x02\xfe\xba\xdf\xa7\x7f\xd0\x83\xd8\xdc\x6b\x6a\xea\xaa\x72\x33\x9b\x55\x3b\x11\xf1\xa1\x59\x74\x31\x2c\xdf\xb9\x56\xcd\xf7\x14\xfb\x72\xc4\xab\x44\xe3\x6b\xfe\x4e\x36\x8d\xa2\xd4\x68\x19\xc6\xcb\xff\x05\x00\x00\xff\xff\x7f\xb9\xb8\x61\x0b\x28\x00\x00") +// FileIdentifierStaticJsIdentifierAppE3390da8ChunkJsMap is "identifier/static/js/identifier-app.e3390da8.chunk.js.map" +var FileIdentifierStaticJsIdentifierAppE3390da8ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x3a\x6b\x7b\xda\x38\xba\x7f\x45\xeb\x2f\x90\x5d\x05\xba\xa7\x33\xdd\x29\x2d\xb3\x47\x36\x0e\x65\xb8\x86\x4b\x92\xb6\xe9\xc3\x63\x6c\x01\x4e\x8c\xed\xb5\xec\xa4\xd9\x4c\xfe\xfb\x79\xde\x57\xb2\x91\x0d\x64\x66\x7b\x36\x1f\x82\xf4\xde\x6f\xba\xfb\xd9\x78\xe0\x89\xf0\xa3\xd0\x68\xbd\xa5\x86\x88\xb2\xc4\xe5\xc2\x68\x7d\x35\x1c\x37\xf5\xa3\x50\x34\xd3\xa7\x98\x8b\xc6\x9d\x30\xa8\x91\x70\x2f\x73\x79\x22\x9a\x6e\xb4\xdb\x45\x61\x05\x18\x44\x1b\xbf\x0a\xf3\x43\x8f\x7f\x97\x30\x91\x46\x09\x97\xcd\x20\x72\x9d\x80\x97\xb0\x4e\x1c\x43\xe3\x1b\x35\x42\x67\x27\x0d\x98\xda\x96\xdd\xbb\xb2\x97\xf6\x74\x3a\x9e\x1a\xd4\x98\xda\x33\x7b\xbe\xfc\x64\x0f\x06\x63\xec\x49\x6c\xb5\x7f\xc5\x06\xbd\x0e\x9b\xdb\xcb\xc1\xb8\x3b\x1e\x21\xe2\x72\x61\xcf\xe6\x5a\x5f\x12\xe6\xfd\xc5\x04\xc9\x7b\xa3\xc9\x62\xae\x91\x5b\xe3\xd1\xcc\x1e\xcd\x97\x6c\x30\x18\x5f\x1f\x81\x5b\x6c\x64\xd9\x03\x4d\x9e\x42\x54\x34\x5e\x5c\x54\x54\x22\x60\x66\x4f\xaf\x7a\x96\xbd\xbc\x1e\x4f\xfb\xf6\x74\x39\xb2\xaf\x81\x7d\x2e\xd9\xff\x95\xf1\xe4\x29\xff\x9d\xa5\x89\x1f\x6e\x0c\x6a\xc4\x4e\x22\xb8\x41\x0d\x2f\x72\xb3\x1d\x0f\x53\x15\x46\xc8\x11\x04\x97\x3b\x89\xbb\x35\xa8\xb1\x0e\xa2\x47\xa0\xe2\x6b\x27\x0b\xd2\x59\xea\xa4\xc0\xb4\xe5\x41\x10\x19\xd4\xe0\x49\x12\x25\x06\x35\xb2\xd8\x73\x52\xce\x1e\x1c\x3f\x70\x56\x01\x47\xf1\xe9\x76\x92\xf0\xb5\xff\x1d\xd2\x17\x45\x20\x7f\xc3\x53\x3b\xe0\xa0\xcc\x7c\xea\x79\x12\xc0\xd2\x34\xf1\x57\x19\x4a\x95\x55\x30\x95\xb9\xc6\x0c\x4b\x6d\xb2\x72\x0c\x6a\x40\xe9\x18\xd4\x18\xaf\xee\xb8\x0b\x02\x1d\x21\xfc\x0d\x20\x32\xc1\x13\xc8\x33\x58\xea\x8b\x38\x70\x9e\x46\xaa\xc7\x53\xc7\x0f\x64\x8d\x6c\x7c\x4d\x76\x10\x39\x5e\x1e\x08\x21\x1e\xa3\xc4\xcb\xdd\xc1\xda\xca\x5c\x97\x0b\x68\x29\xa9\x0f\x4e\x90\x71\xe5\xc9\x5e\x88\x1b\xed\x56\x7e\xc8\x15\x40\x14\x2e\xe4\xea\x0c\x6a\xec\x7c\xcf\x0b\xf8\xa3\x93\x70\x40\xa7\xdb\x2c\xbc\x1f\x16\x20\xc9\x10\x47\x82\xdb\xe1\xd6\x09\x95\x8c\x47\x3f\xf4\x30\xe8\xcb\xe5\xd4\xee\x2c\x6e\x96\x1d\xfb\x6a\x3e\x1e\x0f\x66\x4b\xfb\x66\x6e\x8f\x66\xbd\xf1\x68\x69\x8d\x87\x93\xf1\xcc\x5e\x2e\xf7\x22\xf2\x21\x01\x90\x84\x3b\x29\x9f\xa9\x9e\x13\xc7\xc1\x53\x49\xa9\x1a\x2f\xe0\x71\x08\xf9\xf2\x8a\x21\x56\x20\x0b\xdc\xa0\xa0\xf5\x00\xb8\x06\xbf\xb7\xbe\x41\x0d\x1f\xc3\xb3\x82\x7f\x01\xf0\x67\x06\x35\x06\x91\xe3\x01\x13\x8b\x63\xad\xa7\xc2\x8d\x21\x1b\x14\x71\x4f\xfd\x1d\x8f\x32\x48\xe3\x94\x3b\x6e\xda\x19\x0f\xd1\x8a\x50\xd2\xa5\x5b\x8e\x81\xdf\x71\x21\x9c\x8d\x0c\x5e\xe2\x84\x22\xc0\x0a\x15\xfb\x92\x1c\xe4\xe6\x66\x61\xc2\x37\xbe\x48\x79\x02\xa3\x7e\xe7\xc4\xb1\x1f\x6e\x84\xd1\x32\x76\x7f\x7b\x6b\x32\xc6\xe8\x9b\x15\x63\x63\xda\x63\x6c\xc8\xa8\xcd\xd8\xc6\xa4\x1b\x93\xd9\x5b\xd3\x82\x9e\x4b\x5d\x66\x7b\xd6\x21\xe2\xc9\xa4\x4f\x26\xb3\xfe\x6d\x1e\xc1\xc9\x9e\xa5\x7a\x9c\x72\x66\xaf\xb1\xf9\x68\xd2\x47\x93\x59\xdf\x75\x11\xb6\x12\x71\x6f\xd2\x7b\x93\xd9\x81\xec\xf9\x26\xf5\x4d\x66\xdf\x1d\xeb\xbd\x33\xe9\x2f\x26\x7d\x37\xb0\x56\xb1\x65\x51\x9b\x8e\x19\xbb\x44\xc4\x67\x8b\x0e\x19\x1b\x5a\x74\xc6\xd8\x2c\xff\x7f\xc9\xac\x9f\x2d\x44\x8f\x47\xf0\x7f\x38\x04\xa2\x4b\xba\x60\x56\x6c\xe6\x90\x3e\xb3\x57\xb4\xc7\x16\x43\x65\xb1\xc5\xac\xd0\x44\x69\x63\xda\x67\xd6\x44\x6b\x7e\xa2\x7d\x15\x2a\x6b\x34\x42\x30\xb6\x27\x0b\x30\x11\x2c\xb5\x99\x05\x86\x5e\xb3\xad\xf9\x68\xd2\x21\xb8\x8b\xd1\x95\x36\xcc\xd1\xac\x05\xe5\xa0\xe6\x92\x59\x77\xd6\x05\xc0\x1d\x89\xc5\x0c\xf4\x6d\xea\x30\xe6\xd0\xc8\x64\x4c\x98\xb4\xcf\xfa\x5b\x70\xf2\xb7\xfe\x27\xda\x45\xef\x01\xb1\x66\xb4\x07\x11\x41\x0e\x07\xb2\x34\x65\xb4\xcb\x26\x3e\x28\xdb\x75\x6e\x7a\x74\xc8\xb6\xd6\x1a\xb4\x65\x32\x6c\x97\x73\x4c\xe8\x82\x76\x99\xf5\xd6\xc2\xa8\x21\xf3\x18\x9c\xb3\x56\xe0\x56\xbf\x09\xdc\xd6\x27\x40\x8e\x37\x48\x33\x96\xff\x41\x73\xef\x37\x24\x87\xe0\xbc\x37\x27\xe8\xfa\x25\x42\xa6\xf4\x92\x75\x03\x13\x25\x24\x9a\x84\xbf\x99\xaf\x49\x98\xca\x98\x8e\x59\xf7\x06\x39\x43\x8d\xf3\x97\x3f\xc3\x69\x31\x6b\x70\x89\x4d\x19\xbc\x0e\xf8\xe1\xf5\xc1\xe5\x85\x24\xef\xd1\x99\x4c\xc6\x67\xc6\x9c\x01\x82\xfa\xf4\x33\x24\x1e\xea\x82\xcd\x46\x45\x4a\x7a\xa9\x34\x7f\xbe\xb7\x21\x7a\xd5\x86\x51\x9e\xee\x1e\xeb\x26\x26\x64\x12\x0b\x71\x3c\xa4\x3d\x8b\xd9\x60\xd6\xb6\x83\xd1\x17\xe6\x14\xa3\x0f\x6c\x3f\x9b\x33\xd4\x0b\x29\x98\xff\x86\x86\x42\xf3\xaa\xbf\x6f\xca\xc4\x80\x15\x93\x2b\x00\x74\x8e\x27\xea\x67\x2d\x58\xef\x5e\x35\xf4\x1a\x05\x5c\x21\x64\x41\xc7\xcc\x5a\x5f\x48\x1b\xfa\xac\xab\x27\x7d\x80\x6d\x6b\xdf\xfc\x6d\xaf\xe1\xa7\x57\x35\x48\x9f\xa6\xca\xc4\x3e\x0c\xfc\x99\xf4\xa2\xcf\xba\x5f\x0e\x54\xec\xe5\xf6\x9f\x4c\x64\xba\xa6\x97\x6c\x38\xf8\x42\x6d\x36\xb0\xbb\xff\x89\x2f\x6c\xa6\xb7\x21\x5c\xdf\xad\xc2\xbb\xfe\x1a\xd5\xbd\xd5\x22\xf5\xaf\x57\xfd\xe8\x1f\x24\xa4\xcf\xba\x1e\x0a\xb9\x83\xb8\xd8\x9f\xa8\xcb\x3a\xe3\x0c\x8d\x1e\xa2\x2d\x63\xa9\xff\x33\x24\x26\x36\xaf\x5e\x93\x4e\x2d\xc6\xd4\x3c\xf4\x19\x8b\xf6\x0b\xb6\x1d\x18\x3b\x7f\xd7\x0a\xc8\xa3\x3d\xeb\x1f\x96\xcd\x21\x1a\x7d\xac\xdc\x0d\xf0\x5a\x81\x25\x4b\x23\xc0\x19\x66\xba\x33\x51\xc8\x15\xed\x59\x9d\x4f\xd7\x72\xaa\x06\x2a\x13\x32\x30\xbe\xd8\xcf\x38\x3b\x33\x1f\xc7\xc2\x62\xec\xd1\x02\x4f\x66\xff\xee\x00\x6e\xd2\x01\xf9\xd6\x97\x1b\x90\xc8\x86\x72\xa6\x1d\x52\xce\xac\x2f\x53\xda\xb7\xfa\x13\xda\x63\x4f\x26\x9f\x51\x9b\xc5\xf9\x54\x82\x95\x38\xb3\x68\x97\xf5\xde\xcb\x68\x22\xe4\x12\x07\xd4\x18\x27\xb7\xad\xcc\xaa\x6f\xd2\x2e\xb3\x63\xd0\xde\x61\x77\x32\x68\x08\x63\x8b\x4f\xc8\xd2\x85\x50\xdf\x99\x77\x98\xa0\x11\xed\xb1\xde\xf5\x3d\x86\xc9\x95\x63\xc5\xa2\x50\x0c\x16\xdb\x0f\x99\x7d\x2b\xc7\xfd\xd1\x2f\xbd\x2c\xba\x97\x10\x7e\x8b\xd9\x1d\x28\x51\x10\x9a\xff\xeb\x9f\xfa\x87\xd8\xb1\xf5\xde\xec\xc9\xb5\x10\x42\xc7\x66\x60\xdc\x5b\xb3\x18\xa7\x6c\x48\xa3\x0e\xb3\xbc\x3b\x39\xa5\xdc\xe3\x08\x9a\xcb\x0e\x1d\xb2\xee\x8d\xe4\x02\x7a\x6b\x02\x4b\x1c\x43\x40\x07\x1c\x5d\x24\xa6\x5a\x41\xba\xcc\x5a\x57\x90\xf7\xa6\xc8\xb1\x7d\x66\x3d\x98\x15\xb4\x8b\x0b\xdc\x42\x5a\x16\xc8\x54\x60\xad\xee\x4c\xea\x42\x0c\x87\xcc\x7a\xdf\x91\x4c\x58\xa5\x1d\x98\xe6\x46\x49\x47\x5f\x80\x66\x50\x7b\xa2\x03\x1b\x18\x3f\xe0\x46\x0b\xf7\x96\xbe\xdb\xbc\x13\x4d\xdf\xe3\x61\xea\xaf\x7d\x9e\x9c\xc3\xa1\x81\xbf\x7d\xfb\xfe\x8d\xe7\xfc\xd2\x70\x61\xaf\xa6\x8e\x1a\xf2\x14\x63\x45\x61\x0a\x3b\xe5\xd6\x57\x83\x7f\x8f\xa3\x24\x25\x6e\x14\x8a\x94\x94\x0e\x16\xa4\x4d\x6a\x25\x40\xed\xc3\x6d\x78\x1b\x56\x18\x8a\x93\x87\x24\x2f\xba\x40\x5c\x22\xb5\x6f\x6c\x6b\x31\xb7\xf7\xc4\x25\xc0\x01\x79\xe9\x14\xa3\x9b\x52\x90\x9f\x60\x28\x1f\x73\x74\xce\x32\xe6\x88\x46\xed\x38\x24\xf9\x34\xc0\x49\x7f\x0a\xf2\x12\xe0\xa4\x3f\x07\x56\x1d\x27\xd7\xcf\x5e\x40\xad\xf7\x8f\x3a\x7f\xe4\x6c\xa6\xfb\x50\x42\x9c\x74\xbd\x7c\x84\x3b\xc6\x2f\x31\x27\x83\xa1\xc8\xf4\x70\x28\xd0\xc9\x80\x68\x2c\x15\xd0\x2b\x7e\xca\xf3\x62\x35\x49\x17\x17\xaf\x66\x49\x32\x94\x21\xaf\xe6\x29\xd7\xa0\x43\x8e\x18\x75\xfa\xcc\x0a\xec\xa7\xb1\x07\xba\x2b\xa4\x53\x9b\x75\x3e\x1f\x11\x81\xf0\x3f\x62\x2e\x86\xf0\x31\xf8\x1f\x31\x8f\x2f\x2e\x06\xbd\x91\x7d\x84\x5d\x61\x40\x00\x9c\x9c\x76\x28\xe3\xf9\x36\x24\xe5\xb9\x83\x4a\x48\x31\x1b\x50\x9d\x62\x0f\x39\x1d\x9b\xdb\xf0\x85\xac\x93\x68\x47\x6a\x8d\x46\xb3\x74\xe1\x02\xaa\x95\x5e\xed\x1e\x40\x11\x23\xe4\x5c\x20\x48\x66\x4a\xfa\x87\x70\xd2\xd6\x39\x1a\x78\x6f\x50\xcf\x6f\x0d\x1a\xf9\x9d\x41\x43\xde\x18\x9c\x7d\xc8\x79\xd7\x41\xf4\x98\xb3\x36\xb0\xf3\xfb\xef\xa4\x06\xd2\x3d\x1e\xf0\x94\x6b\x18\x4d\xa3\x3a\xd4\x4d\x8a\xdb\x03\xd2\x26\xf5\xfa\x19\x69\xff\x2a\xc3\x25\xa9\xe0\x14\x4e\xda\xa4\x30\xa2\x7c\xb1\x50\xaf\x01\xbe\x06\xa6\x10\x12\xf0\x94\xc4\xba\x34\xe4\xfd\x27\xfe\x34\xf4\xfb\x87\x7a\xcd\x73\x52\xe7\x1c\x68\xcf\x63\x24\xae\x9d\x91\x16\x09\xb3\x20\x40\x41\xfe\x9a\xd4\xff\xa2\x49\xfa\xfd\xf7\x92\xdc\x76\x9b\xd4\x96\xcb\x09\x9b\x7f\x5a\x4e\xa6\xf6\x45\xef\x66\xb9\xac\x9d\x49\x9b\x09\x69\x36\xc9\x28\x4a\x49\xc2\xe3\xc0\x71\xb9\x47\x49\x9c\x44\x2b\x67\x15\x3c\x91\x47\x4e\x9c\x84\x93\x24\x0b\x43\x48\x87\x1f\x12\x8f\xaf\xb2\x0d\xd9\x45\x1e\x27\x51\x42\x1e\xb7\x4e\xca\x1f\x78\xd2\x20\x0b\xc1\x89\x70\x42\x9e\x87\xa8\x21\x45\x97\x7c\xab\x35\x85\xbf\x09\xfd\xb0\xf9\xf0\xf7\x1a\x1a\xfd\x02\xff\x12\x9e\x66\x49\xa8\x51\x7e\xb8\x0d\x5f\xce\xea\x67\x87\x61\xc7\xeb\x1d\xd2\x96\x66\xe3\x1d\x8f\x0c\x00\x56\x1d\x5e\x8e\x68\x7d\xc8\x5c\x0b\xff\x63\x17\xd3\xd9\x92\x3f\x08\xa8\xdc\x09\xb5\xc8\xda\x09\x04\x47\xd4\xde\x94\xd6\x61\xc6\x6f\xc3\x17\xb4\x6c\x9d\x85\x58\xc0\xa4\x74\x2d\x54\x17\xca\x46\xdd\x64\x4a\x64\xad\xab\x80\x8b\x47\x3f\x75\xb7\xa4\x2e\x81\x0d\xa8\xff\x22\x15\xae\x23\x78\x79\xd0\xb5\x24\xa2\x88\x93\xbc\x5d\x6a\xc8\xbb\xa5\xfa\xf3\x0b\x25\x42\xea\x78\xce\x09\x8b\x58\x28\x05\xd8\xcb\x91\x2f\x32\xae\x9a\xae\x62\x38\xff\x88\x26\x2d\x0b\xa7\x35\x68\x13\xc4\xff\x43\x87\x06\x21\x92\xaa\xf0\x50\xf2\xe8\xf8\xfc\xc6\xad\x20\xc9\x01\x25\x2a\xed\x32\xae\x20\xd4\x60\x65\x5a\x79\x55\x57\xd0\xa1\x55\x7b\x82\x97\x53\xee\x9f\x9e\x0d\x7f\x24\x16\x07\x55\x9b\x26\x19\x3f\xa2\x5a\x95\x5f\x55\x05\x0a\xcc\x87\xde\x8b\xb6\xe6\x29\xfa\x72\x31\x9f\x5e\x0e\xca\x9b\x2e\xb5\x0e\x68\xfb\xaa\xd2\xca\x70\x1c\x72\x71\x51\x62\x2b\x6d\x65\x8e\x62\xe4\x26\xa5\x24\x47\xa1\x10\xa6\xef\xa5\x5e\x5f\x67\xb4\xb1\xab\xdf\xba\x16\x43\x17\x3d\x55\x17\xb0\x2d\x52\xab\xc9\xe9\xa2\x28\x28\x05\xc8\xef\x65\x0b\x80\xbc\x9d\x6d\x91\x67\x08\xed\x8f\x0e\xf9\x72\x60\x7f\x78\xec\x8b\xf2\xe0\x17\x5a\x25\x6b\x8e\x9d\x1e\xb1\x47\x72\xd2\x7a\x85\x40\xa6\xe6\x18\xc5\x0f\xbb\x51\x98\xa9\x85\x8c\x1e\x7a\xf9\x7c\x72\xdc\x55\x6a\xa4\x75\x04\x55\x36\x0e\x57\xd0\x7c\x42\x91\x17\xec\x67\xba\x45\xff\x81\xf1\x27\xb2\x40\xfe\x59\xe9\x83\xfd\xa5\x49\xe6\x48\x72\x94\x67\x95\x59\xa6\x32\x9e\x4f\x38\x77\x71\xf1\x43\x73\x4c\xb5\xd4\xe5\x9f\x5e\xf0\xa7\x82\xae\x0f\xc2\x42\xb5\xda\x50\xa1\x22\xe5\xf9\x57\x15\x07\x50\xf3\xed\xc3\x0f\xd8\x58\x12\x50\x84\x19\x9f\x41\xfe\x8b\xb3\xa1\x3e\x3d\x94\x27\x43\x52\x79\x5b\x21\xf9\x84\x93\x70\x2f\xfb\x2e\x67\x19\x45\x5b\x9a\x52\xf3\x69\x49\x3d\x29\x6a\xdb\x5e\x5d\x57\x41\x85\x40\x7d\xcb\xab\x3d\xf0\x90\x76\xd5\x88\xba\xda\x83\x82\xe4\x56\x59\x2f\x95\x73\xda\xc6\x0f\x5b\x25\x4d\xb0\xd5\xfa\x70\xc4\x73\x4d\x4f\xd5\xf1\xfd\xe3\x0d\x25\x95\xb7\x1b\x4a\xd4\x63\xcf\x61\x38\x14\x7f\xe5\x85\x49\xa7\x3a\x47\x9c\x46\x9b\xeb\x1a\x44\x9b\x0d\x4f\xca\x22\xcf\x03\x04\x96\x02\xad\xc7\x26\x0f\x60\xfe\x32\xab\xc7\x50\x7b\xf3\x22\x6d\xf2\x15\x22\x53\x31\xeb\x36\xfc\x26\x05\xaf\x49\x3d\x4e\x22\x98\x0a\x1a\x3c\x7c\x68\x8c\xc6\x1d\x7b\x69\x8f\xae\xe4\x7e\xda\xe3\x0f\x3c\x88\x62\xd8\xd7\xc3\x5e\x1a\xb6\xd1\x5c\x04\x7e\x98\x9e\x7b\xbe\x80\xd5\xf9\x3c\xf0\x43\x4e\xc2\xe8\x3c\x0b\x3d\xbe\x06\x3d\x9a\xea\x46\x9c\x89\x6d\x5d\xf7\xb0\x7e\x76\xf6\x01\x84\xec\x32\x91\x92\x15\x27\x81\x53\x32\x16\x76\xdf\xe9\x96\x13\x77\xeb\xf8\x61\x43\x15\xac\xf4\xa8\xfa\x4a\x47\xda\x44\xbe\xd2\x35\xfe\xcc\x1b\x1d\x9c\x15\x94\x04\x2d\x4a\xf8\x58\x07\x35\xb6\xcf\x77\x1d\xb7\xeb\xfb\x28\x53\x55\x6e\x25\xdd\xf5\x4a\x4d\xd4\xe5\xa0\x6b\x34\x1a\x9a\xf3\xc8\x79\x76\x76\x1b\x1e\x2d\x3e\x54\x2d\xcb\x0e\x8e\x26\xe3\xb9\x5d\x0f\xa2\x70\x23\x02\xce\xe3\xb3\x16\x99\x6f\x7d\x81\x33\xa5\x20\x4e\x10\x10\xed\xdd\x8d\xac\xfd\x80\x0b\x92\x46\x10\x3e\x3f\x74\x83\xcc\xe3\x9e\x8a\xdb\x6d\xd8\x6c\x42\xbd\x92\x55\x16\x7a\x01\x6f\x90\xf9\x96\x3f\xe1\xe9\x26\x8c\xa0\x2e\x9d\x94\x04\x4e\xb2\xe1\x0d\x30\xa8\xd9\x24\x93\x80\xc3\x8c\x76\xcf\x79\x4c\x64\x81\x09\xe2\x84\x1e\x91\xb6\x82\xea\x78\xeb\xac\x78\xea\xbb\x4e\x10\x3c\x11\x11\x25\x29\xf7\x1a\x45\x31\x7a\xbc\xa8\x41\x8f\x37\xee\x44\x69\xac\xaf\xf7\x05\xba\x4e\xaa\xc8\xad\x5f\x20\xb7\x7e\x15\xe9\x8b\x02\xe9\x8b\x2a\x32\x5c\x15\xc8\x70\x75\x80\x0c\xf6\xc8\xa0\x8a\x8c\xd3\xc9\xbc\x40\xc7\xe9\x72\x32\xaf\x52\x24\xd9\x7e\x4c\x65\x05\x52\xdb\x4a\x95\x9e\x63\xeb\xea\x09\x97\x2a\xb0\xa7\x56\xd2\x93\x03\xea\x2f\x30\xa0\xe2\x24\xf2\x32\x94\xf6\x67\xc7\x53\x31\x95\x2b\x7d\x07\xa7\x4a\xa5\xbe\x21\xe7\x81\x7a\x6e\x6d\x1d\x57\x0a\xaa\xd8\x8a\x65\x1e\xa1\x5f\x25\xf0\x1b\x69\xe7\x52\x73\xc8\x87\x92\x4a\x24\x96\x0a\x29\x79\xc6\x69\xf4\x45\xd5\x8e\x8a\x82\x1c\xc9\xeb\x28\x08\xa2\x47\x62\x5a\x13\xf2\xd3\x3f\xc8\x3a\x4a\x76\x4e\x4a\xea\xdb\x34\x8d\x45\xab\xd9\x4c\xa3\x28\x10\x0d\x9f\xa7\xeb\x46\x94\x6c\x9a\xdb\x74\x17\x34\x93\xb5\xfb\xf3\xbb\x9f\xde\x9d\x35\xf2\xb1\xa8\xec\x20\xed\x4a\x94\xd1\x6c\x4f\xee\x8b\x6a\x3c\x3c\xef\x9a\xb5\x62\x4b\x01\xfd\xc5\x6c\xdf\x5f\xcb\xe1\xba\xf5\xf1\xc7\x97\x43\x30\x5c\xc9\x1f\x79\x64\xae\xc5\xe9\xf9\x64\x5e\x6b\x61\x39\x20\x24\xc9\x70\x2f\x8b\x73\x24\xf8\xe5\x8b\x94\x44\xeb\x3c\xaa\x24\x70\xc2\x4d\xe6\x6c\xb8\x80\x31\xb6\xcf\x1e\x59\x65\x7e\xe0\x09\xbc\x02\xa8\x79\xbc\xa6\xdb\xa7\xdb\x26\xdb\xeb\x44\x35\xb6\xbe\x6a\xf8\x42\x35\xc2\x55\xde\x08\x6a\xba\x85\xb2\x9d\x64\xb5\xdb\xf0\xdb\xd1\x19\x64\x5f\x0e\xfb\xa5\x0b\x9f\xf1\x8b\x35\xc4\x71\x53\xad\xba\xf3\x27\x7e\x1d\x7d\xee\x45\x3b\x8d\x24\xff\x5a\xa0\x44\x12\x28\x60\x69\xd5\x9a\x24\xd1\x83\xef\x95\x56\x2c\xa0\x3d\xdc\x19\x3c\x93\x61\xe6\xcf\xb7\x7c\xc7\x0f\x58\xfe\x77\xe7\xa4\x3c\xf1\x9d\xe0\x3c\xf3\x9b\x6e\x94\xf0\xa6\x48\x9f\x82\xfc\xfc\x52\xf0\x2b\x7f\x51\x06\x71\x04\xc1\xcf\x12\x0a\x21\xf7\x71\x14\x37\xb9\x68\x22\xb4\x64\x62\x2f\x4c\x83\x13\x66\xfa\x61\x1a\x54\xdc\xde\xdf\xc4\xe5\x12\x15\xb4\x24\x73\xff\x81\xc3\x81\x01\x82\x27\x0f\xbe\xcb\xaf\xa3\xe4\xbe\xb2\x66\xcb\x55\x26\x9f\x59\xb0\xa7\xef\x16\xb4\x4f\x2a\xb4\x3d\x11\xe6\x56\x8a\x39\xb6\x3e\x80\x71\xc4\x11\x4f\xa1\x4b\x1e\xfd\x74\x4b\xe4\xc7\x1d\x94\xa4\xb0\x6e\xc8\xd2\x15\xc4\x8d\x3c\x4e\x44\x1c\xf8\x69\x0a\xee\x3d\xf8\x0e\xb9\xe6\xab\xd8\x71\xef\x8b\x51\xa7\x7d\x2d\x42\xda\x45\xaf\x5e\x1c\x0f\x79\xd2\x22\xf2\xee\x4f\x9a\x5b\x6f\xfe\x95\x3c\x4a\x19\x16\xec\x27\xe4\xb5\xc2\xad\xa1\xbd\xe0\xec\x1c\x3f\xbc\x35\xc8\x5f\x9b\xe0\xc8\xd0\xf1\xc3\xda\x19\x2d\x9d\x36\x55\x60\x11\xa8\xbe\x40\x69\x91\xff\x79\xf3\xe6\xcd\x9b\x62\xa7\x96\xd7\x6a\x43\x7e\x8c\x82\xeb\xeb\xc7\x22\x99\x18\xc2\xf6\x33\xfe\xbc\xfc\x2a\x27\xac\x8f\x07\x65\x86\x15\xd1\x7e\xc6\x9f\x9c\x8a\x90\x8f\xa5\xb2\xc8\x3f\x6d\x69\x3f\xeb\x69\x78\x51\x63\xab\x7d\x6b\x70\x70\xa5\xf4\x99\x8b\x02\xfe\xba\xdf\xa7\x7f\xd4\x83\xd8\xdc\x6b\x6a\xea\xaa\x72\x33\x9b\x55\x3b\x11\xf1\xb1\x59\x74\x31\x2c\x7f\x70\xad\x9a\xef\x29\xf6\xe5\x88\x57\x89\xc6\xb7\xfc\x9d\x6c\x1a\x45\xa9\xd1\x32\x8c\x97\xff\x0b\x00\x00\xff\xff\x91\xdc\xce\xd4\x0b\x28\x00\x00") -// FileIdentifierStaticJsIdentifierMain87e8e905ChunkJs is "identifier/static/js/identifier-main.87e8e905.chunk.js" -var FileIdentifierStaticJsIdentifierMain87e8e905ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xc1\x6e\xe3\x36\x10\xbd\xf7\x2b\x5c\xf5\xc2\x01\xa6\x8c\x13\x43\x69\x22\x83\x29\x8a\xb6\x97\xa2\x45\x83\x02\x3d\x19\x3e\x8c\xa4\x71\xc4\x5d\x8a\x14\x48\x2a\x49\xa1\xe5\xbf\x17\x92\x25\x27\xdd\x78\xb7\x39\x51\x22\xdf\xbc\x99\x79\x7c\x1c\x11\x1b\x1d\xe4\x13\x97\x1d\x55\x1f\x7f\x0b\xce\x76\xba\x66\x1b\xf5\x41\xb3\x57\x5f\x39\xfb\xf4\x69\xb7\x07\xd9\xf5\xa1\x11\xbb\x5d\xbe\xc7\xe1\x72\x9d\x17\x87\xde\x56\x51\x3b\x2b\x18\x23\x12\x0c\x59\x1f\x78\x15\xa2\xd7\x55\xcc\xb6\x8f\xe4\x57\x56\x91\xd8\x5c\x02\x1a\x45\x22\x07\xf4\x8a\xa4\x15\x06\xd0\x29\x12\x57\x79\x0e\x58\x29\x12\xd7\xb7\xb0\x8d\x92\xd4\x9f\xe5\x07\xae\xa2\x70\x92\x40\xb0\xba\x1b\x46\x82\xa8\x58\x46\xf2\x0f\x1c\x91\x14\x4b\xe3\x2a\x1a\x13\xa2\x59\xd0\x76\x42\xe3\x2e\x3b\xa2\x32\xcc\x16\x4c\xb6\x1f\xf3\x0c\x1d\xc5\xc6\x52\xcb\x45\xc4\xc0\xe4\xab\xa6\x20\x79\xfc\xc0\x86\xc2\xf8\x37\x2e\x69\xeb\x39\xf6\xde\xae\xbc\x24\x59\x79\xa6\xc8\xbf\x1a\x6e\xd9\x46\x51\x49\xc2\x63\x32\x49\x21\xe8\x07\x2b\x86\xe8\x0a\x97\xd0\x00\x24\x48\xb8\x59\x5f\x7d\x5d\x08\x92\x5e\x44\x38\xe9\x91\x4f\x72\x48\x2b\xec\x24\x88\xb8\xbc\x3e\xea\x91\x6f\x4e\x72\xa0\x1e\xf5\xb9\xc9\x01\xc3\x2c\x60\x33\x02\xd7\x39\x60\xab\x5e\x4b\x53\xb9\xb6\x73\x96\xed\x51\x9d\x86\x8d\x71\x68\x17\x69\xc2\x22\xcd\x09\x95\x61\x36\x61\xb2\x3d\x2c\xfd\x9a\x33\xfd\x96\x9f\xf7\x9b\xd0\xe2\xe0\xd9\xd6\xec\x0b\x56\x77\xf4\xe3\xdb\xa8\x88\x0c\xc5\xdb\xed\x46\x12\x0e\xc7\xab\x29\xb2\x8b\x17\x3b\x65\x09\x12\x40\xc2\x6e\x29\x56\x8f\xc5\x0a\x50\x77\xf7\xde\xb5\x3a\xb0\x24\x63\xc4\x8e\x24\x8b\x35\xe0\xb8\x5c\xce\xeb\x15\xec\x41\xc6\x86\xad\x20\x59\x6a\x5b\x0b\xdb\x1b\x83\x57\xb7\x37\x00\x80\xe5\xbb\xe9\x36\x67\x69\x36\xeb\xeb\x91\xa6\x7f\x7f\x55\x5f\xa0\xd9\x8c\x34\xb5\x12\xc3\xa4\x77\xc1\x09\xd4\xdd\x39\xa9\x6b\x9c\x02\xde\x1e\xb5\x38\x39\xb7\xc8\x2e\x9e\xd8\x54\xae\xe5\x0c\xf9\x99\xaa\x58\x7c\xbb\xc6\xd3\x7d\x16\x25\x9e\xf8\xcf\x70\x8c\x37\xb9\xb0\x3c\x38\x57\x97\xff\x9c\x67\xe9\xff\x37\x3a\x7b\x85\xee\x12\xc0\xb6\x32\x14\xc2\xea\xb0\xe2\xe7\xc8\xb6\x0e\x2b\x2b\xef\x7b\xcf\x3f\x2f\xa0\xd9\x2c\x02\x26\xa7\xf2\x71\xb0\x74\xde\x75\x01\xa3\x12\x2c\xa7\x70\x0e\x38\x7b\x16\x26\xfb\x8e\xb9\xee\x3d\x1f\xf4\xf3\x97\xcd\xe9\x46\x3f\x95\x14\x78\x7a\xd2\x94\xce\xd4\x5d\xe3\x2c\x7a\x1c\x1d\xe6\xd9\x38\xaa\x05\xc3\xc0\xb2\xf3\xfc\xc8\x36\xfe\xc2\x07\xea\x4d\x14\x80\x4f\xda\xd6\xee\xe9\x34\x55\xe4\x0c\x86\x94\xa2\xac\x8f\xa8\xc5\x09\x5e\x96\xff\x9d\x4a\x95\x6b\x5b\x67\xe7\x4a\x97\x8c\xf3\x13\xec\xbb\x9a\x22\xff\xf4\x48\xda\x50\x69\xb8\x88\xf2\xb3\x1d\x7c\xe9\xb5\x88\xaf\x1a\x4f\x09\xc4\x01\x52\xda\xc3\xf6\x9b\x8b\x8b\xef\x56\xc1\xf5\xbe\xe2\x3f\xa8\xeb\xb4\x7d\xf8\xfb\xaf\xdf\xd5\xcb\x0b\xfa\xbe\x25\x6d\xe5\xcd\x0f\x7c\xc3\xb7\xeb\x5c\x56\x4d\x6f\x3f\xca\x0f\x41\xb6\xd4\xfd\x1b\x00\x00\xff\xff\x99\xeb\xb3\x54\xe4\x05\x00\x00") +// FileIdentifierStaticJsIdentifierMainB0470b03ChunkJs is "identifier/static/js/identifier-main.b0470b03.chunk.js" +var FileIdentifierStaticJsIdentifierMainB0470b03ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xc1\x6e\xe3\x36\x10\xbd\xf7\x2b\x5c\xf5\xc2\x01\xa6\x8c\x1c\xaf\x76\xbb\x32\x98\xa2\x68\x7b\x29\x5a\x34\x28\xd0\x93\xe1\xc3\x48\x1a\x47\xdc\xa5\x48\x81\xa4\x92\x14\x5a\xfe\x7b\x21\xd9\x72\xd2\x8d\x77\x9b\x13\x25\xf2\xcd\x9b\x99\xc7\xc7\x11\xb1\xd5\x41\x3e\x70\xd5\x53\xfd\xf1\xb7\xe0\x6c\xaf\x1b\xb6\x51\x1f\x34\x7b\xf5\x95\xb3\x4f\x9f\x76\x7b\x90\xfd\x10\x5a\xb1\xdb\x15\x7b\x1c\xd7\x79\x51\x1e\x06\x5b\x47\xed\xac\x60\x8c\x48\x30\x66\x43\xe0\x55\x88\x5e\xd7\x31\xdb\xde\x93\x5f\x59\x45\x62\xb3\x06\x34\x8a\x44\x01\xe8\x15\x49\x2b\x0c\xa0\x53\x24\xae\x8b\x02\xb0\x56\x24\xde\xbe\x87\x6d\x94\xa4\xfe\xac\x3e\x70\x1d\x85\x93\x04\x82\xd5\xcd\x38\x11\x44\xc5\x32\x92\xbf\xe3\x88\xa4\x58\x1a\x57\xd3\x94\x10\xcd\x82\xb6\x33\x1a\x77\xd9\x11\x95\x61\xb6\x60\xb2\xfd\x94\x67\xec\x29\xb6\x96\x3a\x2e\x23\x06\x26\x5f\xb7\x25\xc9\xe3\x07\xb6\x14\xa6\xbf\x69\x49\x5b\xcf\x71\xf0\x76\xe5\x25\xc9\xda\x33\x45\xfe\xd5\x70\xc7\x36\x8a\x5a\x12\x1e\x93\x49\x0a\x41\xdf\x59\x31\x46\x57\xba\x84\x06\x20\x41\xc2\x4d\xbe\xfe\xba\x10\x24\xbd\x88\x70\xd6\xa3\x98\xe5\x90\x56\xd8\x59\x10\xb1\x7e\x7b\xd4\xa3\xd8\x9c\xe5\x40\x3d\xe9\xf3\x43\x01\x18\x4e\x02\xb6\x13\x30\x2f\x00\x3b\xf5\x5c\x9a\xda\x75\xbd\xb3\x6c\x8f\xea\xb4\x6c\x8c\x43\xbb\x48\x13\x16\x69\xce\xa8\x0c\xb3\x19\x93\xed\x61\xe9\xd7\x5c\xe8\xb7\xfa\xbc\xdf\x84\x16\x47\xcf\xb6\x61\x5f\xb2\xba\xa1\x1f\x5f\x46\x45\x64\x28\x5f\x6e\xb7\x92\x70\x3c\x5e\x4d\x99\x5d\x3d\xd9\x29\x4b\x90\x00\x12\xf6\x4b\xb1\x7a\x2a\x56\x80\xba\xb9\xf5\xae\xd3\x81\x25\x19\x23\x76\x24\x59\xe4\x80\xd3\xb2\x3e\xad\xd7\xb0\x07\x19\x5b\xb6\x82\x64\xa5\x6d\x23\xec\x60\x0c\x5e\xbf\x7f\x07\x00\x58\xbd\x9a\x6e\x73\x91\x66\x93\x6f\x26\x9a\xe1\xf5\x55\x7d\x81\xe6\xcd\x44\xd3\x28\x31\xce\x7a\x97\x9c\x40\xdd\x5c\x92\xba\xc1\x39\xe0\xe5\x51\x87\xb3\x73\xcb\xec\xea\x81\x4d\xed\x3a\xce\x90\x1f\xa9\x8e\xe5\xb7\x39\x9e\xef\xb3\xac\xf0\xcc\x7f\x81\x63\xba\xc9\x85\xe5\xce\xb9\xa6\xfa\xe7\x32\xcb\xf0\xbf\xd1\xd9\x33\x74\x9f\x00\xb6\xb5\xa1\x10\x56\x87\x15\x3f\x46\xb6\x4d\x58\x59\x79\x3b\x78\xfe\x79\x01\x9d\xcc\x22\x60\x76\x2a\x1f\x07\x4b\xef\x5d\x1f\x30\x2a\xc1\x72\x0e\xe7\x80\x27\xcf\xc2\x6c\xdf\x29\xd7\xad\xe7\x83\x7e\xfc\xb2\x39\xdd\xe4\xa7\x8a\x02\xcf\x4f\x9a\xd2\x85\xba\x1b\x3c\x89\x1e\x27\x87\x79\x36\x8e\x1a\xc1\x30\xb2\xec\x3d\xdf\xb3\x8d\xbf\xf0\x81\x06\x13\x05\xe0\x83\xb6\x8d\x7b\x38\x4f\x15\x79\x02\x43\x4a\x51\x36\x47\xd4\xe2\x04\x2f\xab\xff\x4e\xa5\xda\x75\x9d\xb3\xa7\x4a\x97\x8c\xa7\x27\x38\xf4\x0d\x45\xfe\xe9\x9e\xb4\xa1\xca\x70\x19\xe5\x67\x3b\xf8\xd4\x6b\x19\x9f\x35\x9e\x12\x88\x03\xa4\xb4\x87\xed\x37\x57\x57\xdf\xad\x82\x1b\x7c\xcd\x7f\x50\xdf\x6b\x7b\xf7\xf7\x5f\xbf\xab\xa7\x17\xf4\x7d\x47\xda\xca\x2a\x7f\xf3\x2e\xaf\xf2\x8d\xac\xdb\xc1\x7e\x94\x1f\x82\xec\xa8\xff\x37\x00\x00\xff\xff\x0a\x62\x37\x35\xe4\x05\x00\x00") -// FileIdentifierStaticJsIdentifierMain87e8e905ChunkJsMap is "identifier/static/js/identifier-main.87e8e905.chunk.js.map" -var FileIdentifierStaticJsIdentifierMain87e8e905ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x5f\x73\xe2\x38\x12\xff\x2a\x2a\xbd\x84\xec\x29\x30\x57\x7b\x77\x3b\xc7\x40\xae\x5a\x82\x61\x19\x48\x98\xfc\x21\x64\x6e\xb3\x0f\xc6\x88\x60\x06\x2c\x8f\x2d\x42\x72\x14\xdf\xfd\xaa\x5b\xb6\xb1\x4d\x66\x76\xb7\x2a\x2f\x60\xb5\xfa\xbf\x7e\x52\x77\xef\xf8\x93\x8e\x93\xc0\x84\xbc\xf9\xb3\xe0\x89\xd9\xc4\xbe\x4e\x78\xf3\x37\xee\x9b\x75\x64\x42\x1d\xda\xa4\x71\xad\x67\x41\xac\x7d\x3b\x09\xec\xe2\x6a\xa3\xe3\x97\xfa\x32\xe1\xa2\xc8\xf1\x39\x0e\x9e\x3c\xab\xaf\xcd\xc6\x6a\xb7\x49\x9f\x89\xfb\xbe\xf0\x82\x10\xbf\x7e\x17\x3c\xf4\xd6\x4e\xfd\x36\xb0\x0b\xe2\x89\xb9\xe0\xd6\x8b\x1f\xb5\xe5\x82\xaf\x8c\xef\x59\x74\x46\xf0\x58\x27\x48\xb1\x86\x0b\x1e\x79\x76\x81\x92\x5c\xf0\x44\x7b\xb1\xbf\xe0\x82\x2f\xbc\x04\xff\x8a\x96\xb9\xe0\xb7\x99\xa6\xdc\x39\x64\xd5\xab\x95\x21\x95\xe1\x8c\xec\x45\xb1\x89\xc8\xc9\x6a\x60\x5c\x70\x48\x5e\x42\x7f\x68\x1e\x83\x30\x5b\xa8\x82\x2a\x22\x4c\xf4\xca\x37\xe4\x0d\x2d\x7b\xc6\xcc\xa6\x2f\x3a\x0f\x3a\x75\x98\x0b\xae\x9f\x3d\x9f\xa4\xa2\x08\x5d\xdd\xc4\xba\xa8\xcb\x2e\x02\x4a\xe3\xca\x4b\x92\x5c\xea\x73\xac\xe7\xc1\x33\x17\x7c\xea\x25\x3a\x8d\x39\xd6\x2b\xe3\xcd\x50\xdf\x93\x93\x8c\x62\xfa\xea\xe8\xb9\xb7\x59\x21\x61\x1b\x84\x33\xb3\xa5\xb0\xc3\x50\x93\xcd\xc4\x7a\x94\x11\xdf\xac\xd7\x94\xd0\x4d\x34\xf3\xac\x86\x27\x2f\x58\x79\xd3\x95\xc6\xd3\x58\x7b\x51\x14\x84\x8f\x09\x6f\xf2\xcd\x27\x48\xa4\x06\xf1\x28\x61\x29\xbf\x88\x3e\x40\xa0\xf0\x77\xa1\x94\xe8\x02\xfc\x4d\xe2\x6f\x43\x82\x18\x01\x5c\x11\x69\x43\xa4\x27\x09\xe2\x06\xc0\x23\xd2\x58\x7c\x53\xa0\xc2\x0e\x2d\x06\x42\x81\xba\x55\xb8\x3b\xfe\x24\xba\xa0\xee\x06\x24\x8c\xdf\x70\xd3\x17\x23\x50\x4b\xa9\xc4\x00\xe0\x62\x48\xa4\x81\xb8\x80\xde\x52\xe2\x46\x57\x7c\x95\x00\xe4\x40\x47\x68\x80\xf1\xaf\xa2\x07\xd0\x07\xfc\xbd\xea\x88\x91\x78\xdf\x53\x57\xf7\x03\xd1\x85\xf9\xc8\x31\xf5\x01\x7c\x32\x3b\xc3\x9f\x9e\x12\x63\x80\xb5\x24\x8a\x25\x47\x13\x09\xe2\x02\x60\x7c\x8d\x8b\x85\x12\xff\x40\x4f\x65\xd1\x4e\x20\x01\x26\x80\xdb\xf7\x42\x01\x04\xf2\x26\x0d\xb6\x07\xea\x49\x7e\xc4\x10\x52\xbf\xf0\x1b\x26\x7d\xd1\x83\xee\x7f\x1d\x85\x0c\x91\x6c\x07\x65\xd7\x72\x8a\xb2\x23\x61\xa4\xfa\xf5\xef\xd2\xc7\x0d\x4f\x89\x2f\x00\x5a\xf4\x41\x2d\x94\xf8\x57\x07\x54\x9f\xa4\x74\x27\xa7\xaf\x94\xf8\x86\xf4\x2e\xd1\x3f\x56\xe8\xef\xa4\xd7\x13\x5d\x78\x96\x64\xa7\x77\x2d\x26\xa0\x16\xa5\x08\x06\x87\xcc\xa5\x9e\xa8\xee\x0d\x66\x78\x80\xbc\x43\x85\x3e\x61\xd2\xd4\xf0\x1e\xf3\x33\x19\xe1\xf7\xfd\x25\xe6\x65\x04\xa2\x0f\xdd\xdb\xa2\xb6\x3f\x92\xbe\x42\x89\x69\x55\xa2\xeb\x24\xfa\xa0\x86\x77\xc4\x36\x10\x03\x65\xe5\x52\xa2\x95\x8b\x11\x92\xbe\x28\x84\x99\x5a\xc8\x7b\x02\x87\x93\xed\x82\x7a\x54\x5f\x48\xf8\x1e\x59\x7f\x96\x1f\x45\x0f\x3a\x77\xb8\xa1\x7c\x71\x05\x1d\xe2\x19\xcf\x28\xb1\x5a\x74\xa1\xb3\xc4\x83\x55\x81\x04\x31\x81\xee\xf3\x31\x70\x14\x80\x76\xf8\xeb\xb8\x33\x2c\xe7\x06\xae\xe6\x69\xe4\x03\x18\xc4\x32\x90\xa4\x99\x8e\x7b\x48\x29\xbe\x50\x88\x89\xee\x25\x45\x3e\xfa\x45\xa2\xaa\x9b\x77\x52\x8c\x21\x91\xc3\xbe\x48\x24\xdc\x8d\xc9\xd4\x24\x0f\xc1\xcf\x04\x47\xd0\x8d\x3b\xa4\x1e\xb3\x32\x7c\xc2\xf0\x3f\xd1\x2d\x52\xff\x23\x24\xf6\x2f\xb7\x12\xd3\x30\x74\xc4\x95\xa4\xbb\x37\x98\xde\x8a\x09\x5c\x3a\x5a\x07\x84\x07\x37\xa1\xbc\x40\x67\x5f\xe4\x1d\x17\x7c\x1e\xac\x34\x6f\xd2\xe5\x0e\xfc\xc6\x32\x69\x04\x33\x1d\xda\x60\x1e\xe8\xf8\x6c\x8d\xcf\xec\xfb\x5f\xf4\x7b\xfd\xef\x77\xff\xac\xfb\x8b\x4d\xf8\xd5\xbd\xbf\xe9\xab\xae\x4c\x68\xf1\xfd\x68\xfe\xc6\x83\x75\x64\x62\xcb\xae\xb5\xe7\x5b\x36\x8f\xcd\x9a\x9d\xc4\xf8\x7d\xf2\xe1\x21\x4c\xf7\x3e\xc7\x26\xba\x7d\x89\x74\x92\xee\xe3\x9b\x79\x66\x91\x50\x60\xda\xb1\xc3\x3b\xce\xf6\x45\x4d\x67\x31\x11\x4b\xbc\xd9\x73\xfb\x2a\xe7\xd9\xcc\xac\x91\xfb\x21\xf4\x4d\x98\x58\x76\xf4\x36\xb3\x36\xab\xed\x5c\xa5\x10\x2c\x2b\x14\x82\xd5\xeb\x75\x2c\x15\xfb\x53\xd6\x3e\x67\xbb\x87\x90\x31\x27\x6f\x0d\x6b\xbb\x35\x63\x59\xfd\x68\xb2\x54\xde\x91\x5d\x2d\x69\xe6\xca\xea\x8e\x90\xee\x62\x81\x29\xec\xe1\x12\x37\xf6\xe4\x23\x63\xb1\xb6\x9b\x38\x64\x35\xc7\xdc\xca\x63\xb3\xa6\xbd\xb3\x66\xcf\x76\x99\x63\xe7\xad\xbc\x80\x9e\x23\xf3\xe9\x87\x87\xd0\x29\x39\xae\xab\x51\x9e\xf4\xd4\x77\xe7\x6f\xf3\x70\x1a\xf5\xc4\xc6\x41\xf8\x58\x0f\x92\x6b\xfd\x6d\x13\xc4\x7a\x46\xee\x66\x6e\x16\x39\xcd\x74\xa9\x7d\x5b\xe0\xcc\xec\xea\x67\x3a\x90\x99\x2b\x1f\x85\x23\xac\x1d\x79\x84\xce\x72\xf1\x86\x78\x21\x43\x7f\x00\x80\xdc\x5a\x15\x01\x4e\xa8\x7e\xdc\x90\x14\x81\x53\xec\x08\x08\x33\x2c\xef\x05\x9a\xec\x36\xc5\x0f\xb5\x04\x39\x78\x98\x43\x0f\x9d\x65\xcb\x09\xe6\xc7\xc7\x5c\xd7\xd0\xde\x51\xd3\x90\xb3\x31\xa7\x82\xfd\x27\x5b\x32\xd6\x72\xca\x49\x94\x98\xf7\x8d\x73\xb7\x77\xca\x9a\x05\xb6\xe3\xb8\xdc\x29\xb7\x4f\x0a\xb7\xf9\x84\xe5\xc2\x04\x1a\xd2\x75\x4a\x61\x96\x9a\xad\x23\xc4\x14\x82\x3d\x40\x61\xbe\x09\xfd\x2a\x64\xc8\xff\x63\xbc\x7c\x07\x24\x45\xa3\x6f\x84\x89\x2a\x2a\x04\xbb\xd9\x06\xd6\x5f\xfc\x10\x1d\xa9\x48\xb9\x31\x4b\xf9\xbf\x46\x26\x6a\xe8\xa4\x51\xde\x2c\x99\x2a\x81\x23\x83\xd3\x77\x1a\xd9\x22\xa8\x0e\x5d\x21\x6b\x57\x8c\xd7\x6a\x08\x1e\xcc\xa8\xb3\x51\x6b\xfc\xc4\xb6\x7a\x1a\x79\xfe\x57\x85\x6f\xf0\x25\x3d\x3c\x0f\xd8\x9a\x59\x2f\x08\x75\x9c\x9c\xad\x50\xd1\x03\x67\x3f\x35\x9c\xf9\x6c\xa3\x41\x16\x4e\x4e\xf1\x9c\x0b\x76\xd3\x7e\xf3\x2d\x2c\x6f\x9d\xaa\xd7\x6c\xa7\x56\x8e\xac\xa7\xed\xed\x5b\x58\x7f\x74\xaa\x5e\xb3\x9e\x5a\x71\xd6\xf3\x1a\x40\xfd\xb4\xbb\xc4\xee\xba\x15\x2f\xaa\x43\x4b\x7a\x4b\x5a\xc5\x93\xcb\xae\x1a\xbe\xfb\xed\x07\xde\xc8\xa3\xce\x36\xa8\x31\xcf\x16\xf9\xf1\xb7\x77\xc5\x74\xef\xb3\x7d\xb2\xdc\xde\xd1\x5f\x4a\xcc\xee\x66\xeb\x55\x73\x79\x98\x7f\xca\x5c\x1a\xf9\x9f\xd2\x7c\x50\x59\xd5\x42\xc8\x29\xe9\x68\x35\xf2\x04\xb9\x9c\xa6\x23\xd9\xd1\x8b\xf1\xd7\x1e\x02\xa7\xe5\xf8\x09\x10\x6c\xc7\x4a\x13\x4e\xf9\x1a\xff\xf5\x4a\x91\x8e\x32\xd5\xd7\x40\xcf\x36\xcf\x95\xd7\x43\xc6\x66\x9b\xe8\xf8\x07\x6d\xc8\x71\x6d\x71\xc8\xca\x0b\x0a\x2d\xd3\x0b\x8f\xf3\x18\x83\x28\x62\xfa\xd9\xea\x70\x96\x54\xc2\xda\xb9\xea\x8f\x45\xa1\x76\x9a\x75\x18\x0e\xaf\x3b\x96\x0e\x73\x79\x81\x39\x8c\x74\x6c\xcf\xda\x0c\x47\x3e\x57\x1b\xd2\x2e\xa2\xda\x47\x30\xd6\x2a\x47\x93\x8d\x81\xed\xdd\x41\xd5\xfe\x3c\x63\xce\x70\x92\x94\x41\xda\xc8\x19\x5a\x8d\x92\xba\xac\xa4\x7c\xa0\x4e\x26\x6b\x64\x70\xba\xac\xd1\x44\x99\xc7\x43\xab\x7a\x79\xce\xac\x9d\xe6\x4e\xbb\x79\xb3\x9e\x37\x47\xa9\x8e\x5c\x2f\xa9\x86\x28\x7a\xa5\x3c\xb9\x04\xfd\xb0\x4f\x11\xce\xcc\x77\x70\x49\xc5\xab\x32\xcc\x16\xb9\xa6\xc6\xac\xaa\xb5\xee\x90\xbb\x1f\xb6\x52\x19\xe4\xdd\x69\xae\xbd\xe8\x06\x87\xe8\x5b\xf3\xd9\x95\x7e\x56\xa3\xa1\xba\xda\x69\xee\xb2\xc3\xae\x38\x75\x74\xfa\x24\x5d\x77\x03\x79\xb9\x8b\xdc\x15\x5a\x8a\xb4\xfd\xac\x2a\x3b\x74\xb2\x4e\x63\xd6\x8b\xbe\x7a\x49\xd3\xbb\x53\xab\x84\x70\x5a\x83\x28\xa2\x96\xee\xf7\x6c\x2a\xb8\x36\xc6\xf2\x26\xe7\xfb\xff\x07\x00\x00\xff\xff\xfc\xb5\x88\x53\x09\x12\x00\x00") +// FileIdentifierStaticJsIdentifierMainB0470b03ChunkJsMap is "identifier/static/js/identifier-main.b0470b03.chunk.js.map" +var FileIdentifierStaticJsIdentifierMainB0470b03ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x5f\x73\xe2\x38\x12\xff\x2a\x2a\xbd\x84\xec\x29\x90\xab\xd9\xba\xbd\x62\x20\x57\x2d\xc1\xb0\x0c\x24\x4c\xfe\x10\x32\xb7\xd9\x07\x63\x44\x30\x03\x96\xc7\x16\x21\x39\x8a\xef\x7e\xd5\x2d\xdb\xd8\x26\x33\xbb\x53\x35\x2f\x60\xb5\xfa\xbf\x7e\x52\x77\xef\xf8\xb3\x8e\x93\xc0\x84\xbc\xf9\x4e\xf0\xc4\x6c\x62\x5f\x27\xbc\xf9\x07\xf7\xcd\x3a\x32\xa1\x0e\x6d\xd2\xb8\xd1\xb3\x20\xd6\xbe\x9d\x04\x76\x71\xbd\xd1\xf1\x6b\x7d\x99\x70\x51\xe4\xf8\x14\x07\xcf\x9e\xd5\x37\x66\x63\xb5\xdb\xa4\xcf\xc4\x7d\x5f\x7a\x41\x88\x5f\x7f\x0a\x1e\x7a\x6b\xa7\x7e\x1b\xd8\x05\xf1\xc4\x5c\x70\xeb\xc5\x4f\xda\x72\xc1\x57\xc6\xf7\x2c\x3a\x23\x78\xac\x13\xa4\x58\xc3\x05\x8f\x3c\xbb\x40\x49\x2e\x78\xa2\xbd\xd8\x5f\x70\xc1\x17\x5e\x82\x7f\x45\xcb\x5c\xf0\xbb\x4c\x53\xee\x1c\xb2\xea\xd5\xca\x90\xca\x70\x46\xf6\xa2\xd8\x44\xe4\x64\x35\x30\x2e\x38\x24\xaf\xa1\x3f\x34\x4f\x41\x98\x2d\x54\x41\x15\x11\x26\x7a\xe5\x1b\xf2\x86\x96\x3d\x63\x66\xd3\x57\x9d\x07\x9d\x3a\xcc\x05\xd7\x2f\x9e\x4f\x52\x51\x84\xae\x6e\x62\x5d\xd4\x65\x17\x01\xa5\x71\xe5\x25\x49\x2e\xf5\x29\xd6\xf3\xe0\x85\x0b\x3e\xf5\x12\x9d\xc6\x1c\xeb\x95\xf1\x66\xa8\xef\xd9\x49\x46\x31\x7d\x75\xf4\xdc\xdb\xac\x90\xb0\x0d\xc2\x99\xd9\x52\xd8\x61\xa8\xc9\x66\x62\x3d\xca\x88\x6f\xd6\x6b\x4a\xe8\x26\x9a\x79\x56\xc3\xb3\x17\xac\xbc\xe9\x4a\xe3\x69\xac\xbd\x28\x0a\xc2\xa7\x84\x37\xf9\xe6\x23\x24\x52\x83\x78\x92\xb0\x94\x9f\x45\x1f\x20\x50\xf8\xbb\x50\x4a\x74\x01\xfe\x21\xf1\xb7\x21\x41\x8c\x00\xae\x89\xb4\x21\xd2\xb3\x04\x71\x0b\xe0\x11\x69\x2c\xbe\x2a\x50\x61\x87\x16\x03\xa1\x40\xdd\x29\xdc\x1d\x7f\x14\x5d\x50\xf7\x03\x12\xc6\x6f\xb8\xed\x8b\x11\xa8\xa5\x54\x62\x00\x70\x39\x24\xd2\x40\x5c\x42\x6f\x29\x71\xa3\x2b\xbe\x48\x00\x72\xa0\x23\x34\xc0\xf8\x77\xd1\x03\xe8\x03\xfe\x5e\x77\xc4\x48\xfc\xbb\xa7\xae\x1f\x06\xa2\x0b\xf3\x91\x63\xea\x03\xf8\x64\x76\x86\x3f\x3d\x25\xc6\x00\x6b\x49\x14\x4b\x8e\x26\x12\xc4\x25\xc0\xf8\x06\x17\x0b\x25\x7e\x45\x4f\x65\xd1\x4e\x20\x01\x26\x80\xdb\x0f\x42\x01\x04\xf2\x36\x0d\xb6\x07\xea\x59\x7e\xc0\x10\x52\xbf\xf0\x1b\x26\x7d\xd1\x83\xee\x7f\x1d\x85\x0c\x91\x6c\x07\x65\xd7\x72\x8a\xb2\x23\x61\xa4\xfa\xfd\x9f\xd2\xc7\x0d\x4f\x89\xcf\x00\x5a\xf4\x41\x2d\x94\xf8\x57\x07\x54\x9f\xa4\x74\x27\xa7\xaf\x94\xf8\x8a\xf4\x2e\xd1\x3f\x54\xe8\xe7\xd2\xeb\x89\x2e\xbc\x48\xb2\xd3\xbb\x11\x13\x50\x8b\x52\x04\x83\x43\xe6\x52\x4f\x54\xf7\x16\x33\x3c\x40\xde\xa1\x42\x9f\x30\x69\x6a\xf8\x80\xf9\x99\x8c\xf0\xfb\xe1\x0a\xf3\x32\x02\xd1\x87\xee\x5d\x51\xdb\x5f\x49\x5f\xa3\xc4\xb4\x2a\xd1\x75\x12\x7d\x50\xc3\x7b\x62\x1b\x88\x81\xb2\x72\x29\xd1\xca\xe5\x08\x49\x9f\x15\xc2\x4c\x2d\xe4\x03\x81\xc3\xc9\x76\x41\x3d\xa9\xcf\x24\xfc\x80\xac\xef\xe4\x07\xd1\x83\xce\x3d\x6e\x28\x5f\x5c\x43\x87\x78\xc6\x33\x4a\xac\x16\x5d\xe8\x2c\xf1\x60\x55\x20\x41\x4c\xa0\xfb\x72\x0c\x1c\x05\xa0\x1d\xfe\x3a\xee\x0c\xcb\xb9\x81\xeb\x79\x1a\xf9\x00\x06\xb1\x0c\x24\x69\xa6\xe3\x1e\x52\x8a\x2f\x15\x62\xa2\x7b\x45\x91\x8f\x7e\x93\xa8\xea\xf6\x5c\x8a\x31\x24\x72\xd8\x17\x89\x84\xfb\x31\x99\x9a\xe4\x21\xf8\x99\xe0\x08\xba\x71\x87\xd4\x63\x56\x86\xcf\x18\xfe\x47\xba\x45\xea\x7f\x84\xc4\xfe\xd5\x56\x62\x1a\x86\x8e\xb8\x92\x74\xf7\x06\xd3\x3b\x31\x81\x2b\x47\xeb\x80\xf0\xe0\x36\x94\x97\xe8\xec\xab\xbc\xe7\x82\xcf\x83\x95\xe6\x4d\xba\xdc\x81\xdf\x58\x26\x8d\x60\xa6\x43\x1b\xcc\x03\x1d\x9f\xad\xf1\x99\x9d\x9e\xff\xfa\xdb\xf9\xf4\xfc\x5d\xdd\x5f\x6c\xc2\x2f\xee\xfd\x4d\x5f\x75\x65\x42\x8b\xef\x47\xf3\x0f\x1e\xac\x23\x13\x5b\x76\xa3\x3d\xdf\xb2\x79\x6c\xd6\xec\x24\xc6\xef\x93\xf7\x8f\x61\xba\xf7\x29\x36\xd1\xdd\x6b\xa4\x93\x74\x1f\xdf\xcc\x33\x8b\x84\x02\xd3\x8e\x1d\xde\x71\xb6\x2f\x6a\x3a\x8b\x89\x58\xe2\xcd\x9e\xdb\x37\x39\xcf\x66\x66\x8d\xdc\x8f\xa1\x6f\xc2\xc4\xb2\xa3\xb7\x99\xb5\x59\x6d\xe7\x2a\x85\x60\x59\xa1\x10\xac\x5e\xaf\x63\xa9\xd8\x9f\xb2\xf6\x05\xdb\x3d\x86\x8c\x39\x79\x6b\x58\xdb\xad\x19\xcb\xea\x47\x93\xa5\xf2\x8e\xec\x6a\x49\x33\x57\x56\x77\x84\x74\x17\x0b\x4c\x61\x0f\x97\xb8\xb1\x27\x1f\x19\x8b\xb5\xdd\xc4\x21\xab\x39\xe6\x56\x1e\x9b\x35\xed\x9d\x35\x7b\xb6\xcb\x1c\xbb\x68\xe5\x05\xf4\x02\x99\x4f\xdf\x3f\x86\x4e\xc9\x71\x5d\x8d\xf2\xa4\xa7\xbe\x3b\x7f\x9b\x87\xd3\xa8\x27\x36\x0e\xc2\xa7\x7a\x90\xdc\xe8\xaf\x9b\x20\xd6\x33\x72\x37\x73\xb3\xc8\x69\xa6\x4b\xed\xdb\x02\x67\x66\x57\xbf\xd0\x81\xcc\x5c\xf9\x28\x1c\x61\xed\xc8\x23\x74\x96\x8b\x9f\x88\x17\x32\xf4\x17\x00\xc8\xad\x55\x11\xe0\x84\xea\xc7\x0d\x49\x11\x38\xc5\x8e\x80\x30\xc3\xf2\x5e\xa0\xc9\xee\x52\xfc\x50\x4b\x90\x83\x87\x39\xf4\xd0\x59\xb6\x9c\x60\x7e\x7c\xcc\x75\x0d\xed\x1d\x35\x0d\x39\x1b\x73\x2a\xd8\x7f\xb2\x25\x63\x2d\xa7\x9c\x44\x89\x79\xdf\xb8\x70\x7b\xa7\xac\x59\x60\x3b\x8e\xcb\x9d\x72\xfb\xa4\x70\x9b\x4f\x58\x2e\x4c\xa0\x21\x5d\xa7\x14\x66\xa9\xd9\x3a\x42\x4c\x21\xd8\x03\x14\xe6\x9b\xd0\xaf\x42\x86\xfc\x3f\xc6\xcb\x37\x40\x52\x34\xfa\x93\x30\x51\x45\x85\x60\xb7\xdb\xc0\xfa\x8b\xef\xa2\x23\x15\x29\x37\x66\x29\xff\x97\xc8\x44\x0d\x9d\x34\xca\x9b\x25\x53\x25\x70\x64\x70\xfa\x46\x23\x5b\x04\xd5\xa1\x2b\x64\xed\x8a\xf1\x5a\x0d\xc1\x83\x19\x75\x36\x6a\x8d\x5f\xd8\x56\x4f\x23\xcf\xff\xa2\xf0\x0d\xbe\xa2\x87\xe7\x11\x5b\x33\xeb\x05\xa1\x8e\x93\xb3\x15\x2a\x7a\xe4\xec\x97\x86\x33\x9f\x6d\x34\xc8\xc2\xc9\x29\x9e\x73\xc1\x6e\xda\x6f\xfe\x0c\xcb\x5b\xa7\xea\x2d\xdb\xa9\x95\x23\xeb\x69\x7b\xfb\x33\xac\x3f\x39\x55\x6f\x59\x4f\xad\x38\xeb\x79\x0d\xa0\x7e\xda\x5d\x62\x77\xdd\x8a\x17\xd5\xa1\x25\xbd\x25\xad\xe2\xc9\x65\x57\x0d\xdf\xfd\xf6\x23\x6f\xe4\x51\x67\x1b\xd4\x98\x67\x8b\xfc\xf8\xdb\xbb\x62\xba\xf7\xd9\x3e\x59\x6e\xef\xe8\x2f\x25\x66\x77\xb3\xf5\xa6\xb9\x3c\xcc\xbf\x65\x2e\x8d\xfc\x6f\x69\x3e\xa8\xac\x6a\x21\xe4\x94\x74\xb4\x1a\x79\x82\x5c\x4e\xd3\x91\xec\xe8\xc5\xf8\xb1\x87\xc0\x69\x39\x7e\x02\x04\xdb\xb1\xd2\x84\x53\xbe\xc6\x3f\x5e\x29\xd2\x51\xa6\xfa\x1a\xe8\xd9\xe6\xa5\xf2\x7a\xc8\xd8\x6c\x13\x1d\x7f\xa7\x0d\x39\xae\x2d\x0e\x59\x79\x41\xa1\x65\x7a\xe1\x71\x1e\x63\x10\x45\x4c\xbf\x58\x1d\xce\x92\x4a\x58\x3b\x57\xfd\xb1\x28\xd4\x4e\xb3\x0e\xc3\xe1\x75\xc7\xd2\x61\x2e\x2f\x30\x87\x91\x8e\xed\x59\x9b\xe1\xc8\xe7\x6a\x43\xda\x45\x54\xfb\x08\xc6\x5a\xe5\x68\xb2\x31\xb0\xbd\x3b\xa8\xda\x5f\x64\xcc\x19\x4e\x92\x32\x48\x1b\x39\x43\xab\x51\x52\x97\x95\x94\xf7\xd4\xc9\x64\x8d\x0c\x4e\x97\x35\x9a\x28\xf3\x78\x68\x55\x2f\xcf\x99\xb5\xd3\xdc\x69\x37\x6f\xd6\xf3\xe6\x28\xd5\x91\xeb\x25\xd5\x10\x45\x6f\x94\x27\x97\xa0\xef\xf6\x29\xc2\x99\xf9\x06\x2e\xa9\x78\x55\x86\xd9\x22\xd7\xd4\x98\x55\xb5\xd6\x1d\x72\xf7\xdd\x56\x2a\x83\xbc\x3b\xcd\xb5\x17\xdd\xe2\x10\x7d\x67\x3e\xb9\xd2\xcf\x6a\x34\x54\x57\x3b\xcd\x5d\x76\xd8\x15\xa7\x8e\x4e\x9f\xa4\xeb\x6e\x20\x2f\x77\x91\xbb\x42\x4b\x91\xb6\x9f\x55\x65\x87\x4e\xd6\x69\xcc\x7a\xd1\x37\x2f\x69\x7a\x77\x6a\x95\x10\x4e\x6b\x10\x45\xd4\xd2\xfd\x99\x4d\x05\x37\xc6\x58\xde\xe4\x7c\xff\xff\x00\x00\x00\xff\xff\xa6\xce\xd0\x76\x09\x12\x00\x00") // FileIdentifierStaticJsMain319f99c0ChunkJs is "identifier/static/js/main.319f99c0.chunk.js" var FileIdentifierStaticJsMain319f99c0ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x90\xb1\x6e\x1a\x41\x10\x86\xfb\x3c\xc5\x69\xd3\xec\x48\xeb\xf1\x19\xac\x44\x70\xa2\xc0\x36\x05\x81\xc0\x09\x85\x34\xa7\xd3\xe9\x58\x96\x30\xf6\x31\xb3\xda\xdd\x73\x22\x19\xde\x3d\xb2\x8b\x14\x51\x92\x22\xcd\x8c\x34\xdf\x7c\x7f\xf1\xeb\x74\xa4\x88\xdf\xdd\xce\xb7\xf6\xe9\x53\x14\xf6\xb4\x77\x9c\xe8\x40\x2e\x4c\xfe\xc1\xce\xe7\xaa\x06\xf4\x7d\x3c\xea\xaa\xfa\x50\x9b\xea\xd0\xb3\x4d\x24\xac\xd9\x88\x21\x78\x61\x74\x3f\xbc\x84\x14\x27\xa4\x6f\xe1\x62\x7e\xe7\xff\x77\x51\x7d\x74\x59\x4c\x81\x6c\x52\x05\x61\xd0\x02\x05\xe9\x1b\x30\xa4\x07\xaf\x63\x08\xc5\x73\x1b\x32\x37\x59\xef\x1e\x9d\x4d\xfa\x65\xb5\x7e\x98\x35\xb3\xd5\xd7\xb1\xf2\x41\xf6\xfd\x5b\x98\x32\xe5\xf6\x6e\x39\xbf\x6f\xb6\x9b\xe5\x58\xa1\xba\x00\x6e\x66\xd3\xfb\x2f\xcd\xb4\x2c\x9b\xc5\xba\x9c\xae\xd6\xcd\xdd\x76\xbe\x7c\x38\x9f\x55\x8e\x39\xe6\x57\x2c\x57\x3e\x88\x77\xe1\x6a\xd7\x53\xb7\x57\x85\x15\x8e\xd2\x39\x24\x3e\x88\x56\x0b\xf1\x2d\x4b\x36\xff\xd5\x4e\xf6\xf6\x96\x3d\xbb\x10\x49\x78\x9c\x29\xb4\xc2\xb6\x4d\xda\x01\x98\x3f\xba\x0b\x2f\xfe\xaf\x96\x1a\xe0\x00\x73\x05\x60\xca\x20\x27\x8a\x0e\xdb\xae\xd3\x15\xa1\xd3\x23\x30\xaf\xeb\x16\x6a\xc0\x74\x74\xac\x09\x77\xc4\x7b\xcd\x7d\xd7\x99\x61\x9e\x03\x5c\x6a\x53\x55\xb9\xf9\x58\xd7\x35\x14\xef\xae\xaf\xdf\x67\x51\xfa\x60\xdd\xe7\xd6\x7b\xe2\x6f\xdb\xcd\x72\x72\x6a\x89\x71\x78\x33\x3a\x8c\x46\x36\x47\x7b\xec\xf9\x09\x1f\x23\x9e\x5a\xff\x33\x00\x00\xff\xff\xf3\x54\x95\xae\x1f\x02\x00\x00") @@ -128,14 +128,14 @@ var FileIdentifierStaticJsMain319f99c0ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00 // FileIdentifierStaticJsMain319f99c0ChunkJsMap is "identifier/static/js/main.319f99c0.chunk.js.map" var FileIdentifierStaticJsMain319f99c0ChunkJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x61\x4f\xdb\x3a\x14\xfd\x2b\x57\xd6\x93\x0a\x7d\x8e\xdd\x07\x9f\x48\xf5\x3e\xb8\x69\x27\xa1\x42\x81\x0a\x84\xd8\x82\x8a\x9b\xb8\xc5\xe0\x5c\x7b\x71\x5a\x98\xa0\xff\x7d\x72\x92\x76\x6c\x8c\x49\xfb\x16\xdd\x7b\xcf\xb9\x39\xe7\x1e\xbf\x90\xb5\x2a\xbd\xb6\x48\xe2\x43\x4a\xbc\x5d\x95\x99\xf2\x24\xfe\xb2\x2d\xb3\x07\x4f\x28\xd1\x98\xab\xe7\xe6\x93\x31\xce\x18\x47\x9b\xab\x59\x61\xf3\x95\x51\x9e\x3f\x3a\xeb\xb8\xf2\xfc\x0d\xe4\x96\x12\x94\x45\xc3\x34\x5f\x69\x93\x13\x4a\x5c\x69\x33\xe5\x03\xc7\x74\x24\x92\xcb\x99\x38\x3f\x9f\x8d\xcf\xce\xc5\xe4\x6c\x36\xb8\x3a\x3e\x19\x12\x4a\x32\x8b\xde\x1a\x55\x6f\x5c\x58\x42\x77\x3f\x77\x4b\x49\x21\x9d\xd3\xb8\xf4\x24\x26\x7e\x22\x46\xa7\x82\x8e\x84\xb8\x48\xe8\xbf\x89\x10\x37\x09\x7d\x1a\x08\xd1\x1b\xd0\xa7\x41\x72\xea\x86\x09\xbd\xa8\x7b\x63\x21\xa6\xf4\x20\x11\x42\x0f\x13\x7a\x2c\x92\x87\xe1\xa7\xb7\x9d\xaf\x49\x32\xbd\xa1\x57\xc3\xeb\xcf\xd4\x87\xf5\x0b\x6d\x54\xa0\xaf\x64\xa5\x33\xfe\xe0\x79\x21\x35\xb2\xc3\xff\x8e\x16\x47\x47\x59\x8f\x65\xf7\x2b\x7c\x6c\x5c\x68\x8d\x4a\x2c\x56\x0a\xab\xa0\x92\x77\x97\xc6\xce\xa5\x81\x56\x66\x0c\x55\xb9\x52\x5d\x9e\x62\x8a\x41\x56\x05\xb5\x0f\xf0\xff\x76\x80\x29\x5c\xb3\xdf\x3b\x01\xaf\xaf\xd0\xe9\xb1\x1e\xeb\x45\x68\x23\x57\x5a\xa7\xca\xa8\x86\x77\xfa\x81\x4f\x3d\x3b\x5b\x56\xf0\x92\x22\x34\xac\x29\x6e\xfa\x29\x06\xdb\x8a\xba\xd3\xa9\x4f\xd2\xea\xc8\xbc\xe7\x73\xe9\x15\xcb\xbc\x0f\xf8\x8f\x66\x7c\x56\x5a\x63\xe6\xb2\xfc\x75\x90\x71\xe9\xdc\xb6\xb8\x2b\x77\x41\x7a\x08\x1c\xb0\x28\x6d\xd1\xd2\xfd\x48\xc1\xfb\xd9\xb6\xd1\x8e\xb3\x9f\x07\xdb\xcb\xb3\x70\xf7\xbd\xbb\xb1\x75\x12\x2d\x1c\xe7\x0a\x2b\xbd\xd0\xaa\x6c\xcd\x6b\x21\x31\xfc\xf3\xb2\x0d\x5b\xdd\xd8\xdc\xed\xf7\x81\x73\x50\xde\x68\xac\xa2\x5c\x7b\x39\x37\x2a\x32\x1a\x15\xa0\x8d\x5a\xf2\x0f\xb6\x8c\x83\x86\x77\xfc\x41\xce\xdf\x91\xa7\xc8\x39\x4c\xce\x2e\x47\x7b\xc6\xe2\xd2\x1b\xa5\xdc\x7e\x0c\x27\x56\xe6\x20\xfd\x37\xcc\x28\x54\xf7\xda\x83\xc2\x00\xf7\x90\xd9\x5c\x81\x77\x46\x57\x95\xc6\x25\xac\xb5\x84\x6b\x35\x77\x32\x7b\x64\x5b\xdf\xf6\x78\x17\x9e\x9a\x5a\x12\xb2\x37\x91\x85\x8a\x21\x25\x7a\xe7\x4b\x24\x9d\x4b\x09\x74\x79\x7b\xa5\xce\x7e\x93\x83\x8f\xd3\xb8\x96\xe5\x2e\x89\x29\x39\x60\x07\xac\x97\x92\x3f\x07\x6e\x1b\xb7\x16\xb7\xe9\x87\xe7\xd8\xbc\x80\xa9\xb5\x15\x89\x09\xd9\x7c\x0f\x00\x00\xff\xff\x4f\x45\xc4\xb1\x48\x04\x00\x00") -// FileIdentifierStaticJsRuntimeMain6429ebf0Js is "identifier/static/js/runtime-main.6429ebf0.js" -var FileIdentifierStaticJsRuntimeMain6429ebf0Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x5b\x8b\xec\x36\x12\x7e\xdf\x5f\xd1\xa3\x05\x23\xd1\x35\x1a\xbb\xe7\x7a\xec\x23\xc2\x12\xf2\xb2\x24\x24\x6c\xb2\x4f\x5e\x13\xd4\x72\xb9\x5b\x27\x6e\xc9\xab\xcb\x99\x1d\x3c\xfe\xef\x8b\xec\xbe\xcc\x9c\xe4\x84\x40\x43\xcb\x52\x5d\xbe\xaa\xfa\xaa\xa4\xab\x2e\x1a\x15\xb4\x35\x14\xd9\x78\x5a\xaf\x1c\x75\x6c\xec\xac\xa3\x9f\xa5\x5b\x19\x90\x10\x85\xab\xf3\x06\x94\x70\x75\xd1\x40\x27\x5c\xbd\x69\xc0\x8b\x1c\x06\x51\x37\x95\xff\x18\x79\x8f\x66\x17\xf6\x95\x5f\xaf\x99\x14\xb1\xf6\x0d\xfc\xb8\xfd\x84\x2a\xf0\xc1\xd9\x60\xc3\xcb\x80\x7c\x2f\xfd\x8f\xcf\xe6\x27\x67\x07\x74\xe1\x85\x2b\xd9\xf7\xd4\x82\x64\x59\x66\x6b\xd9\x64\xd9\xc0\x87\xe8\xf7\x34\x7d\xd4\x79\xc3\x20\x2d\x44\x5e\x25\x1c\x66\xa5\xcd\x4a\xb1\xbf\x64\x52\x81\x61\x59\x46\xb1\x36\x8d\x50\xb5\x69\xd8\x6c\xa1\xcf\xb2\x9e\x3a\x56\x0d\x27\xa4\x6c\xe0\x7e\xaf\xbb\x40\x19\x65\x95\xc3\x10\x9d\x59\xe9\x19\x01\x97\xc3\xd0\xbf\x50\x0d\xdd\xeb\x6b\xdd\x30\x08\x94\x4d\xe7\xd4\x04\x7a\xc9\x0c\x82\x13\x79\xe5\x3e\xea\x93\x4d\xb7\x5e\x5f\x4e\x83\xd0\xb5\x6b\xc0\x88\xab\x1c\xa2\x28\xaa\xf8\x31\x9c\xe4\x62\x92\x4b\x32\x4a\x84\x3a\x36\x55\x7e\x25\x84\xad\x55\x93\x65\xd4\x88\xab\x82\x4d\x26\xcb\xa8\xe6\x7e\xe8\xb5\x42\xea\xae\xaf\xa1\x60\x80\x42\x52\xc9\xbd\x08\x29\x39\x6c\x3a\x42\xc6\x69\xae\x91\x18\x27\xb0\x62\x7c\x2c\xf3\x09\x74\xaa\xc9\x19\xb0\x4c\xb5\xd4\x1d\x35\xb5\x6b\xd8\x51\x29\xad\x39\xfe\x6f\xb0\x2e\xf8\x6a\xc1\x9a\xb6\xc4\xa8\x4b\x07\x7d\x79\x55\xc0\xf1\xb0\x1c\xa7\xe9\x94\x1c\x4c\x4a\x73\x86\xc3\x49\x17\x02\x5c\xd6\x92\x41\xe0\x7d\x8a\xf6\xbc\x37\x49\x8e\xe2\x2d\xc3\x92\x2f\x27\xea\x06\x82\xb0\x35\x36\x95\xee\x68\x8a\x3d\x30\xdd\xd1\xc0\xdc\x42\x80\x50\x6f\x1a\x56\x61\xef\x71\x5c\x62\x33\xf8\xbc\xfa\xc9\xd9\x83\xf6\x48\xe9\xd9\x9c\x03\xc3\xc6\xc5\x8e\xa8\x1d\x98\x66\x62\xac\x7a\x63\x42\x18\x36\xc7\xa6\x21\x8a\xd6\xaa\x78\x40\x13\xb8\x72\x28\x03\x7e\xd7\x63\xfa\xa2\xc4\x2b\xa7\x87\x40\x58\x15\xb9\xda\x4b\xe7\x31\x08\x12\x43\x77\xfd\x44\x20\xf2\xa0\x0f\x68\x63\x10\xc5\x26\x07\xc9\x8d\xca\xb2\xc8\x3d\x86\x7f\x84\xe0\xf4\x36\x06\xa4\xc4\x58\xa3\x90\xcc\x87\x0c\x22\xf7\x4e\xbd\x8b\xf6\x98\x38\xc9\x87\x35\xf1\x41\x06\xad\x6e\x3e\xf9\x1b\xb2\xa6\x63\x51\x12\x65\x4d\x90\xda\xa0\xf3\xd7\x3b\x6b\xdb\xed\x0b\x12\xd8\xbc\xdb\xee\xed\x4e\x1b\x02\xb7\xef\x36\x9f\xb1\x57\xf6\x80\x04\xee\x4a\xa2\x5b\x34\x41\x77\x1a\xdd\xb5\x1c\x06\x02\xf7\xef\xb6\x0e\x52\x1b\x32\xd5\xd8\xbc\xbe\x22\x5b\x13\x4e\xd6\x63\x5e\x12\x85\x8f\xad\xc2\xcd\x2d\x81\xa2\x24\xf2\x71\x73\x5f\xdc\xa9\xcd\xec\xf9\xf6\x7e\x5b\x3c\xdc\xa9\xbb\xd9\xe3\xd3\x66\x2b\xf3\x07\xf5\x30\xfb\x69\xd5\x6d\x8b\xed\x6d\x37\x7b\x78\x7a\xc4\x27\xfc\x90\xdf\x13\x78\x2a\x49\x71\xdf\xe2\x93\xfc\x50\x10\xf8\x50\x12\x79\x8b\x0f\x4f\x2d\x22\x81\x22\x2f\x09\x22\x3e\x16\xb7\x0f\x72\x86\xb0\x26\x5c\xed\xa3\xf9\x8d\x7f\xf2\x64\xa2\xb8\x14\x46\xcd\x85\xfd\xce\x39\xeb\x2a\x7d\x49\x9c\x63\x63\xe4\xd6\x60\xda\x17\x69\xd5\x5b\xd9\x0a\x13\xfb\x1e\x54\x8f\xd2\xfd\xb2\x94\x85\x76\xec\x48\xdd\xf7\x4c\x1a\x67\x2a\x1d\x99\xe3\xb2\x8c\x92\xa4\x4f\x84\x10\x8e\xa7\x99\xf1\x0d\x39\x68\xef\xb5\xd9\x91\x72\xd9\x60\xa0\x93\x9c\xe3\x41\xba\x1d\x86\xcb\x2a\xd5\xb3\x52\xfc\x80\xde\xcb\x1d\x0a\xf2\xbd\x95\xad\x36\xbb\xd5\x1c\xc9\x8a\xac\x71\x4d\x56\x9d\xd4\x3d\xb6\xfc\x3f\x86\x92\xb5\x59\x93\x72\x45\xd6\x7a\x4d\x18\x01\xc5\x8d\x3c\xa0\x20\xdf\x26\xe1\xa4\x39\xc7\x99\xf6\x93\x4f\x61\x40\x71\x87\xff\x8d\xe8\x83\xd0\x10\xea\xa2\xa1\x8a\x4d\x33\x97\x3f\x5b\xdd\xae\xf2\x69\x9a\xa3\xeb\x84\xc7\x70\x8a\xf8\xc2\x7d\x36\x6a\x3a\x26\x43\x25\x39\xb2\x94\xc0\x02\xba\x8c\x13\x9b\x18\x14\x1b\xbc\x4b\xac\xfe\x5d\x1e\x35\x9c\x7b\x61\x8f\xb2\x4d\xb3\x0e\x4d\xfb\xed\x5e\xf7\x2d\x8d\xe7\xa9\x72\xec\x36\x9e\xba\xdd\xb1\x09\x24\x3f\x08\x04\xc9\x95\x30\x20\x79\xfb\x86\xe5\xe0\x20\xb0\x51\x72\x9b\x96\xec\xf5\xf5\x38\xa2\x5b\xec\xb4\xc1\xd3\x60\x9e\xc5\x46\x34\xf1\x80\x4e\x6e\x7b\x2c\xaf\x72\x48\x58\xc3\x34\xdb\x76\xef\xba\x86\x44\xb3\x68\xb7\x24\x15\xf4\x65\x40\xdb\xad\x7e\x7e\x39\x6c\x6d\x9f\x65\xcb\x3f\x0f\xf6\xe7\xe0\xb4\xd9\xfd\x22\x77\x59\xf6\x35\x97\xbf\x97\x85\xf1\xb3\xec\x23\x96\xe4\x07\xdb\xc6\x1e\xc9\xc4\xe0\x6b\xca\xe4\xd7\x5f\xd1\x1f\xc5\x4e\x6a\x57\xf9\x82\x37\xbc\x8b\x7f\x66\x5c\x91\x25\xaa\xa5\x11\x8d\x8c\xc1\x53\xe6\x4e\xa3\x16\x13\x33\xef\xd2\x29\xb1\xb3\xab\xc4\xc4\x63\x50\x98\x65\xe9\xc7\x2f\xae\x2e\x5a\x0b\xb5\x8f\xe8\x96\xa9\x45\x53\x0f\xb0\x64\x4f\x72\x47\xc3\xd7\xb0\x07\x20\x2d\x76\x32\xf6\x81\x7c\x99\xf3\x25\x0c\x9c\x18\x6c\x66\x44\x7e\x4e\x0c\xb9\x3a\x03\x62\xe7\x4b\x3f\x5d\xb8\xc8\x24\x6f\x69\x00\x03\x6f\x9b\xf3\xcd\x75\x30\xf1\xad\x36\xed\x8c\x0b\x0c\x3b\x5f\xa3\x21\x25\xc9\xfc\xc1\xe0\xff\x22\xda\x6f\xde\xf0\xf9\x64\x95\x1f\xb1\x4f\xe5\x1f\x1c\x9e\xef\xa2\x84\xcb\x01\x91\x04\x1c\x03\x97\xdc\xd9\x2f\x6a\x72\x14\xfc\x4b\x2f\x86\xa4\x90\x6c\x0c\x82\xf0\x9b\x34\xce\xed\xfb\x5b\x2b\xec\x9d\x7d\x5e\x29\x6b\xbc\xed\x91\xcf\x0d\x45\x91\x01\x2e\x2d\x1a\x45\xd8\x6b\xcf\x9f\x71\x3b\x48\xf5\xdb\x3f\xbd\x35\xc3\x65\x0a\xff\xd9\x59\x7a\x5d\x80\x12\x71\x79\x74\xcc\x99\x8c\xa9\x67\xd3\xa7\x70\x10\x45\xe4\x7e\x7e\x00\x2c\x2f\x98\x65\x1c\xe4\x55\x77\x79\x6d\x75\xeb\x35\x73\x34\xd6\x5d\xb3\xcc\xc2\x5e\xa8\x2a\xbd\x56\x68\xdd\xb0\xea\x6f\x37\x37\x7f\x5f\x79\x1b\x9d\xc2\x1f\xe4\x30\x68\xb3\xfb\xf7\xbf\xbe\x17\x2e\x9a\x34\x31\xe6\xdb\x81\x3f\xdc\x6d\x3e\xe0\xb6\xcb\xf9\x27\xcf\x0f\x72\xf8\x7f\x00\x00\x00\xff\xff\xb1\xb4\x3d\x25\x0d\x0a\x00\x00") +// FileIdentifierStaticJsRuntimeMain45c32883Js is "identifier/static/js/runtime-main.45c32883.js" +var FileIdentifierStaticJsRuntimeMain45c32883Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x6d\x6f\xe4\xb6\x11\xfe\xde\x5f\xb1\x66\x01\x81\xc4\x8e\x69\x69\xd7\xae\x7d\xd2\x11\x41\x11\xe4\x4b\x91\x20\x41\x93\x7e\x52\x85\x80\x4b\x8d\x76\x79\xd1\x92\x2a\x5f\xce\x35\x64\xfd\xf7\x82\xd2\xbe\xd8\x97\x5c\x11\x60\x81\xa5\xc8\x79\x79\x66\xe6\x99\x21\x6f\xba\x68\x54\xd0\xd6\x50\x64\xe3\x79\xbd\x72\xd4\xb1\xb1\xb3\x8e\x7e\x96\x6e\x65\x40\x42\x14\xae\xce\x1b\x50\xc2\xd5\x45\x03\x9d\x70\xf5\xa6\x01\x2f\x72\x18\x44\xdd\x54\xfe\x63\xe4\x3d\x9a\x7d\x38\x54\x7e\xbd\x66\x52\xc4\xda\x37\xf0\xe3\xee\x13\xaa\xc0\x07\x67\x83\x0d\x2f\x03\xf2\x83\xf4\x3f\x3e\x9b\x9f\x9c\x1d\xd0\x85\x17\xae\x64\xdf\x53\x0b\x92\x65\x99\xad\x65\x93\x65\x03\x1f\xa2\x3f\xd0\xf4\x51\xe7\x0d\x83\xb4\x10\x79\x95\x70\x98\x95\x36\x2b\xc5\xfe\x94\x49\x05\x86\x65\x19\xc5\xda\x34\x42\xd5\xa6\x61\xb3\x85\x3e\xcb\x7a\xea\x58\x35\x9c\x91\xb2\x81\xfb\x83\xee\x02\x65\x94\x55\x0e\x43\x74\x66\xa5\x67\x04\x5c\x0e\x43\xff\x42\x35\x74\xaf\xaf\x75\xc3\x20\x50\x36\x5d\x52\x13\xe8\x35\x33\x08\x4e\xe4\x95\xfb\xa8\xcf\x36\xdd\x7a\x7d\x3d\x0d\x42\xd7\xae\x01\x23\x6e\x72\x88\xa2\xa8\xe2\xc7\x70\x96\x8b\x49\x2e\xc9\x28\x11\xea\xd8\x54\xf9\x8d\x10\xb6\x56\x4d\x96\x51\x23\x6e\x0a\x36\x99\x2c\xa3\x9a\xfb\xa1\xd7\x0a\xa9\xbb\xbd\x85\x82\x01\x0a\x49\x25\xf7\x22\xa4\xe4\xb0\xe9\x04\x19\xa7\xb9\x46\x62\x9c\xc0\x8a\xf1\xb1\xcc\x27\xd0\xa9\x26\x17\xc0\x32\xd5\x52\x77\xd4\xd4\xae\x61\x27\xa5\xb4\xe6\xf8\xdf\xc1\xba\xe0\xab\x05\x6b\xda\x12\xa3\x2e\x1d\xf4\xe5\x4d\x01\xa7\xc3\x72\x9c\xa6\x73\x72\x30\x29\xcd\x19\x0e\x67\x5d\x08\x70\x5d\x4b\x06\x81\xf7\x29\xda\xcb\xde\x24\x39\x8a\xb7\x0c\x4b\xbe\x9c\xa8\x1b\x08\xc2\xd6\xd8\x54\xba\xa3\x29\xf6\xc0\x74\x47\x03\x73\x0b\x01\x42\xbd\x69\x58\x85\xbd\xc7\x71\x89\xcd\xe0\xf3\xea\x27\x67\x8f\xda\x23\xa5\x17\x73\x0e\x0c\x1b\x17\x3b\xa2\x76\x60\x9a\x89\xb1\xea\x8d\x09\x61\xd8\x1c\x9b\x86\x28\x5a\xab\xe2\x11\x4d\xe0\xca\xa1\x0c\xf8\x5d\x8f\xe9\x8b\x12\xaf\x9c\x1e\x02\x61\x55\xe4\xea\x20\x9d\xc7\x20\x48\x0c\xdd\xed\x13\x81\xc8\x83\x3e\xa2\x8d\x41\x14\x9b\x1c\x24\x37\x2a\xcb\x22\xf7\x18\xfe\x1e\x82\xd3\xbb\x18\x90\x12\x63\x8d\x42\x32\x1f\x32\x88\xdc\x3b\xf5\x2e\xda\x53\xe2\x24\x1f\xd6\xc4\x07\x19\xb4\xba\xfb\xe4\xef\xc8\x9a\x8e\x45\x49\x94\x35\x41\x6a\x83\xce\xdf\xee\xad\x6d\x77\x2f\x48\x60\xf3\x6e\xbb\xb7\x7b\x6d\x08\x6c\xdf\x6d\x3e\x63\xaf\xec\x11\x09\xdc\x97\x44\xb7\x68\x82\xee\x34\xba\x5b\x39\x0c\x04\x1e\xde\x6d\x1d\xa5\x36\x64\xaa\xb1\x79\x7d\x45\xb6\x26\x9c\xac\xc7\xbc\x24\x8f\x9d\xca\x77\xed\x66\x43\xa0\x28\x89\xdc\x3c\x6d\x8a\xa7\x87\xcd\xec\xb9\x78\x54\x85\xfa\x5b\xbb\x99\x3d\x76\xdd\xc3\xa3\xdc\x3e\x14\xb3\x1f\xdc\x6e\x3f\xe4\xad\x7c\x9a\x3d\xec\xf2\xfb\xc7\x7c\x97\x6f\x09\x3c\x95\x44\xa1\x6a\xb7\x2a\x57\x04\x3e\x94\xa4\x7b\xf8\xd0\x15\xf8\xf8\x81\x40\x91\x97\x64\x2b\xbb\xc7\xcd\x66\x8b\x33\x84\x35\xe1\xea\x10\xcd\x6f\xfc\x93\x27\x13\xc5\xa5\x30\x6a\x2e\xec\x77\xce\x59\x57\xe9\x6b\xe2\x1c\x1b\x23\xb7\x06\xd3\xbe\x48\xab\xde\xca\x56\x98\xd8\xf7\xa0\x7a\x94\xee\x97\xa5\x2c\xb4\x63\x27\xea\xbe\x67\xd2\x38\x53\xe9\xc4\x1c\x97\x65\x94\x24\x7d\x22\x84\x70\x3c\xcd\x8c\x6f\xc8\x51\x7b\xaf\xcd\x9e\x94\xcb\x06\x03\x9d\xe4\x1c\x0f\xd2\xed\x31\x5c\x57\xa9\x9e\x95\xe2\x47\xf4\x5e\xee\x51\x90\xef\xad\x6c\xb5\xd9\xaf\xe6\x48\x56\x64\x8d\x6b\xb2\xea\xa4\xee\xb1\xe5\xff\x36\x94\xac\xcd\x9a\x94\x2b\xb2\xd6\x6b\xc2\x08\x28\x6e\xe4\x11\x05\xf9\x36\x09\x27\xcd\x39\xce\xb4\x9f\x7c\x0a\x03\x8a\x3b\xfc\x4f\x44\x1f\x84\x86\x50\x17\x0d\x55\x6c\x9a\xb9\xfc\xd9\xea\x76\x95\x4f\xd3\x1c\x5d\x27\x3c\x86\x73\xc4\x57\xee\xb3\x51\xd3\x31\x19\x2a\xc9\x89\xa5\x04\x16\xd0\x65\x9c\xd8\xc4\xa0\xd8\xe0\x7d\x62\xf5\xef\xf2\xa8\xe1\xd2\x0b\x07\x94\x6d\x9a\x75\x68\xda\x6f\x0f\xba\x6f\x69\xbc\x4c\x95\x53\xb7\xf1\xd4\xed\x8e\x4d\x20\xf9\x51\x20\x48\xae\x84\x01\xc9\xdb\x37\x2c\x07\x07\x81\x8d\x92\xdb\xb4\x64\xaf\xaf\xa7\x11\xdd\x62\xa7\x0d\x9e\x07\xf3\x2c\x36\xa2\x89\x47\x74\x72\xd7\x63\x79\x93\x43\xc2\x1a\xa6\xd9\xb6\x7b\xd7\x35\x24\x9a\x45\xbb\x25\xa9\xa0\x2f\x03\xda\x6e\xf5\xf3\xcb\x71\x67\xfb\x2c\x5b\xfe\x79\xb0\x3f\x07\xa7\xcd\xfe\x17\xb9\xcf\xb2\xaf\xb9\xfc\xbd\x2c\x8c\x9f\x65\x1f\xb1\x24\x3f\xd8\x36\xf6\x48\x26\x06\x5f\x53\x26\xbf\xfe\x8a\xfe\x24\x76\x56\xbb\xc9\x17\xbc\xe1\x5d\xfc\x33\xe3\x8a\x2c\x51\x2d\x8d\x68\x64\x0c\x9e\x32\x77\x1e\xb5\x98\x98\x79\x9f\x4e\x89\x9d\x5d\x25\x26\x9e\x82\xc2\x2c\x4b\x3f\x7e\x75\x75\xd5\x5a\xa8\x7d\x42\xb7\x4c\x2d\x9a\x7a\x80\x25\x7b\x92\x3b\x1a\xbe\x86\x3d\x00\x69\xb1\x93\xb1\x0f\xe4\xcb\x9c\x2f\x61\xe0\xc4\x60\x33\x23\xf2\x73\x62\xc8\xcd\x05\x10\xbb\x5c\xfa\xe9\xc2\x45\x26\x79\x4b\x03\x18\x78\xdb\x9c\x6f\xae\x83\x89\xef\xb4\x69\x67\x5c\x60\xd8\xe5\x1a\x0d\x29\x49\xe6\x0f\x06\xff\x17\xd1\x7e\xf3\x86\xcf\x67\xab\xfc\x84\x7d\x2a\xff\xe0\xf0\x72\x17\x25\x5c\x0e\x88\x24\xe0\x18\xb8\xe4\xce\x7e\x51\x93\x93\xe0\x9f\x7a\x31\x24\x85\x64\x63\x10\x84\xdf\xa5\x71\x6e\xdf\xdf\x5a\xe1\xe0\xec\xf3\x4a\x59\xe3\x6d\x8f\x7c\x6e\x28\x8a\x0c\x70\x69\xd1\x28\xc2\x41\x7b\xfe\x8c\xbb\x41\xaa\xdf\xfe\xe1\xad\x19\xae\x53\xf8\xff\x9d\xa5\xd7\x05\x28\x11\x97\x47\xc7\x9c\xc9\x98\x7a\x36\x7d\x0a\x07\x51\x44\xee\xe7\x07\xc0\xf2\x82\x59\xc6\x41\x5e\x75\xd7\xd7\x56\xb7\x5e\x33\x47\x63\xdd\x35\xcb\x2c\xec\x85\xaa\xd2\x6b\x85\xd6\x0d\xab\xfe\x72\x77\xf7\xd7\x95\xb7\xd1\x29\xfc\x41\x0e\x83\x36\xfb\x7f\xfd\xf3\x7b\xe1\xa2\x49\x13\x63\xbe\x1d\xf8\xfd\x83\xda\x6e\x9e\x9e\xb6\xfc\x93\xe7\x47\x39\xfc\x2f\x00\x00\xff\xff\xcb\xcd\x28\xbe\x0d\x0a\x00\x00") -// FileIdentifierStaticJsRuntimeMain6429ebf0JsMap is "identifier/static/js/runtime-main.6429ebf0.js.map" -var FileIdentifierStaticJsRuntimeMain6429ebf0JsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x3b\x6d\x73\xda\x38\xb7\x7f\x45\x8f\x3f\x2c\x30\x75\x49\x48\x9a\x26\x25\x97\x79\x46\x36\x84\x12\x4a\x29\xa5\x34\x9b\x0d\x99\x8e\xb0\x05\x38\x18\xdb\xb5\x05\x29\xdb\xe6\xbf\xdf\x39\x47\xb2\x2d\x83\xd9\xed\x9d\xb9\x5f\x82\x2d\x9d\xf7\x37\x1d\xc9\xca\x4f\x63\xcb\xe3\xc4\x0b\x03\xa3\x79\x6e\x1a\x49\xb8\x89\x1d\x9e\x18\xcd\x07\xa3\x5e\x3f\xa9\xd7\x4f\x9e\xf9\x2c\x62\xce\xea\x64\x16\x86\x22\x11\x31\x8b\x8c\x47\xd3\x08\xd8\x5a\xc2\xa8\xd9\xdb\x24\x0c\x22\x9b\xf9\xfe\x8c\x39\x2b\xc3\x34\x5c\x26\x98\x61\x1a\xeb\xd0\xdd\xf8\xbc\xe7\x1a\xa6\xe1\x2c\x37\xc1\x4a\x7f\x4a\x70\x3e\xe6\x03\x84\x81\x37\xfe\x83\x3b\x1b\xa1\x0d\x78\x86\x69\xc4\x3c\x09\xfd\x2d\xbe\xfa\x3c\x58\x88\xa5\x61\x1a\xc3\xd9\x13\x77\x84\x61\x1a\x51\x1c\x8a\x50\xec\x22\x6e\x98\xc6\x92\x25\xc3\xe7\xe0\x53\x1c\x46\x3c\x16\x3b\xe0\xc3\x7c\x1f\x88\x04\x89\x60\xbe\xcf\x5d\x1b\xf8\x02\x9d\x68\x93\x2c\x33\xe1\x70\x80\xc5\x3c\x10\xa8\xc3\xcd\x26\x70\x04\xd8\xc2\x34\x92\xa5\x37\x07\x26\x2e\x9f\xf3\x38\xe6\x6e\x2e\x17\x8b\x22\x1f\x39\x2c\xb9\xb3\x6a\x1f\x4c\xc7\x3c\xd9\xf8\x87\x98\x86\x69\xcc\x37\xfe\xdc\x03\x59\x0c\xd3\x78\x42\x80\x08\x4d\x92\x44\xbe\xe7\x00\xc0\xb7\x6f\xca\xa0\xdf\x62\xfe\x7d\xe3\xc5\xfc\xdb\x37\x98\xd6\xd5\xc8\xf9\x5c\xa2\xcd\xa2\x30\x16\x49\xa6\x0e\x98\x09\x86\xa5\x71\xd6\x5e\xc2\x93\x03\x1b\xb4\xa5\x73\xd4\xbc\x61\x1a\x9f\xb2\x27\x65\x6d\x7c\x52\x36\x0e\x83\xb1\x13\x7b\x91\xb0\xc3\x75\xe4\x73\x01\x73\x09\x0e\x80\xfc\xa1\xb3\x59\xf3\x00\x1e\x9d\x98\x33\xc1\x3b\x3e\x4f\xdf\x97\x2c\x4e\x38\x3c\x09\x6f\xcd\xc3\x0d\x3c\x05\x0e\x20\x73\x41\x85\x88\xbd\xd9\x46\xd2\x8a\x61\x30\x02\x83\x80\xfd\x25\xaf\x31\x0e\xf2\x38\x0e\x63\xc3\x34\x3a\xea\x97\x6f\x25\xe9\x30\x48\x67\xc2\xc0\x0f\x19\xc6\x94\xcf\x59\xfc\x25\x63\x84\x21\x96\x52\xf8\x22\xe3\x43\x85\x49\xcc\x99\x2f\xc9\x0b\x16\x2f\x50\xc0\x35\x4f\x12\xb6\x80\x49\x08\x6b\x84\xf9\xbe\xe1\x09\x4c\x6d\x02\x97\xcf\xbd\x00\x1d\x96\x70\x91\x73\x58\x72\xe4\xcb\xa2\x88\x07\xae\xbd\xf4\x7c\x7c\xc3\x80\x5b\x83\x00\x60\x1c\xc3\x34\x16\x5c\x08\x8e\x92\xca\x70\xf0\x02\xae\x45\x28\x0f\x36\x6b\x1e\xb3\x19\xba\x4d\xca\x02\xb0\xe3\xdd\x7a\x16\x02\x25\x11\x8e\x45\xec\x05\x8b\x2f\x6c\x61\x98\xc6\x96\xf9\x1b\x54\x44\x3a\x5b\x86\x0b\x4f\xb2\xe0\x0a\x92\xcc\x0d\x86\x69\xac\x38\x70\x98\x79\x01\x88\x01\xe1\x1c\x6a\x49\x93\x0a\x10\x72\x69\x24\x40\x0c\x83\x24\x44\x3a\xe8\x07\x1a\xc7\x0c\x20\xc4\xd2\x03\xb2\xa1\xef\x1e\xa4\x07\x86\xec\xa3\x69\xac\x59\x14\x79\xc1\x22\x31\x9a\x06\xa3\x76\xc7\x1c\x53\x3a\xa6\x66\x87\xd2\xef\x96\x6d\x76\xe9\xe8\xd2\x32\x7b\xf4\x13\x35\x7b\x74\xd0\xb3\x61\x7c\x02\x7f\x3f\x7e\xc5\xe7\xbb\xf7\xf0\xb7\x6f\x76\xa9\xbd\xb4\x7a\xf0\xec\xdc\x66\x23\x81\xd5\x87\x67\xcf\xfa\x90\x0e\xf5\xde\x0f\xe0\x11\x01\xbb\x92\x00\x00\x46\x76\x1b\x87\x91\xd8\xb8\x6f\x0e\x29\x1d\xdd\x98\x3d\x6a\xff\x6d\xdd\x66\x1c\xe9\xb8\x2b\xd9\x74\x61\x7e\x68\x9b\x13\x9c\xe0\x94\x72\xdb\xec\x53\xda\xb7\x25\xb3\x3f\xcd\x1e\xa5\xf7\x77\xf0\xb2\xc0\x17\x3b\xba\x41\x39\xc6\x43\x04\x6b\xa7\x33\x5d\x4a\xc7\x66\x8f\x76\x7e\xd8\x77\xda\x10\x3c\x77\x2e\x40\x67\xda\x6b\x03\xc2\x7d\xd7\xec\x50\xfb\xaf\xfe\x11\xae\x9f\x01\x97\xbd\x37\xfb\xd4\x8e\xda\x0e\xbc\x8c\x5c\xa0\x83\x68\xf4\xfe\xbd\xd9\xa3\x7d\xdf\x36\x7b\xf4\xa6\xcb\x61\xfc\xbb\x85\xc6\x0d\xad\xa5\x65\x76\x69\x47\xd8\x43\x94\xcd\x36\x47\xd4\x76\x51\xb6\xf1\x04\x58\x7d\xf9\x6a\x76\xe9\xb0\x6d\x0e\xe9\x7b\xaa\xe4\xbb\x45\x86\x7d\x73\x40\xe9\xa0\x2d\x95\x9d\x01\xc9\x15\x48\xdb\xdd\xb6\x39\x68\xf3\x59\x39\x10\x1f\x7b\xb4\x4d\x51\x13\xb0\x8d\xdd\x9b\xe7\xc6\x47\x21\x7a\xf7\x92\xf0\xd7\xcc\xe2\xb4\x6f\xda\xb4\x7b\x82\xf2\x4a\xcc\x85\x25\x39\xdd\x4a\xd0\xbf\xc0\x07\x4f\xb6\x67\xa1\x8e\x40\xf5\xb3\xbd\x4f\xf5\x06\xfe\x72\x17\x89\x2e\xac\x94\xaa\xfd\xce\xce\x44\xa1\x23\x74\x35\xef\x00\xb5\x2e\x0c\x9f\x5b\x7f\x4a\x06\xf7\xa0\xa4\x73\x23\xc9\x77\x69\xe7\xdc\x06\x39\xec\x9b\x0f\x72\x7a\x84\x6e\x88\x14\xd5\x2e\xb5\x2f\x2c\x8e\x46\x1b\x48\xab\x2a\xe3\x4a\x99\x3e\x22\x13\xb3\x4f\x7b\xa2\x83\x78\x60\xb5\xde\x67\x14\x63\x04\x73\x6b\x50\xa3\x1f\x80\x2f\x3a\x68\x47\x9b\xda\xb1\xe5\xe1\x1b\x44\x5b\x97\xfe\xa5\x26\xba\x74\x24\x2c\x34\xed\x58\x72\x68\xc0\x58\xf7\x02\xed\xd0\x7d\xa3\x8c\x84\xaf\x76\x60\x21\xb3\xc2\x20\x9d\x5c\x59\xe6\x88\x76\x03\xcd\x08\xe3\xf7\x3a\xc0\x3d\x30\xff\xdb\xc6\x50\xed\x82\xb6\xf6\xfb\x85\x8d\xd4\xf1\xf9\xc6\x1c\xc9\x78\x9d\x80\xb7\x3e\x52\x29\xb2\x8c\xb5\xc9\x1d\x46\x46\x88\x43\xc3\x36\x42\x4a\x33\x53\x6d\xe4\x16\x04\x3e\x69\x23\x83\x21\x52\x06\xa7\x75\x6f\xdb\x19\x4c\x7f\x7e\x2b\x95\x1b\x4a\x97\x8e\x29\xdd\x58\x4b\x00\x4d\x9d\xe7\x65\x49\xdb\xff\xd3\x96\x45\x62\x6b\xe5\xd9\x63\xff\x8d\x74\x4f\xd1\x3d\x5b\x6b\x05\x20\x5d\xf4\x25\x86\x86\x7d\x23\x03\x3c\xb6\x50\xde\xc4\x52\x3e\x18\x51\xfb\x1c\x6c\xdf\xf9\x98\x1b\x67\xa2\x1e\xc7\x94\x8e\xd0\xee\xb6\xca\x93\x2e\xb5\xcf\xed\xdb\x43\xde\xf4\xce\xb4\x29\xb5\xbf\xa7\x70\x03\xda\x39\x6f\x7f\x28\xe5\xd7\xc5\x6a\xd1\xa5\x5d\x01\x5a\xd9\x3d\xb0\x43\x9b\xa6\x88\x92\x99\x43\xa9\x63\x4e\x68\x37\xb2\x31\x9c\x87\x5d\xb0\xe1\x04\x44\x7d\xb2\xd0\x6f\xc3\x9e\x1c\xe9\x51\x7b\x16\x58\xd2\x6e\x21\x28\x6e\x6f\x65\xc1\x1b\x0e\x4c\x46\x29\x43\xdb\xc7\x3a\x40\xc7\x97\x72\x0d\x87\x66\x8f\x36\xda\x5f\x81\xe3\xb3\x75\x82\xaa\x6d\x65\xec\xec\x14\xfc\xc6\x92\x9e\x70\x40\x4b\xd4\x4f\xbe\x7f\xb7\x40\x7d\xf9\xbc\xb6\x50\xa9\x83\x71\xcf\x82\xe0\xd2\x61\x96\x6d\x30\xea\x84\x4a\x6b\xf5\x28\x1d\x68\x24\xef\x64\xed\xfb\xff\x78\x02\xfb\x9a\xf7\x94\xde\x2b\x4e\xf7\x74\xd7\x16\x13\xaf\x0d\xdc\xf8\x53\x5b\x25\x0e\xf8\x77\x85\x01\x31\x52\xbe\x1e\x40\x79\xff\x4b\x39\x69\x4c\xe9\x84\x41\x05\xb8\x90\x43\x43\xb4\xe4\x64\x86\xcf\x0e\x58\x69\x0c\x45\xf7\xc9\xb6\xd1\xcc\x18\x7e\x33\x24\x84\x55\x6d\x74\x69\x6b\x71\x29\x53\x8c\xc1\xf4\xd7\x67\xe4\xc9\x20\xdd\xe6\x59\x68\xd2\x21\xbc\x7f\xc9\xe3\xef\xfe\x03\x3c\xef\x50\x8e\x39\x42\x0c\x06\x10\x45\x2b\x0b\x96\x80\xfb\x8f\x6a\x04\x44\xee\xc8\x80\xfd\x84\x2b\x8a\x04\x1d\xa1\xac\x9f\xd5\x33\x78\x74\x86\x2b\x51\x1b\x57\x85\xc1\x9d\x0c\x1d\x0f\xbd\x72\xd9\x96\xf1\x8e\x3e\xde\xe1\x0b\x16\xc1\x61\x27\xcd\x03\xbb\x71\xf3\x05\xf1\xe4\x38\xe0\xd9\xb3\xbf\x14\xf1\xbe\xaa\x6b\xf6\xec\x13\x8e\x48\x33\x41\x82\xd8\x4b\x19\xa9\x03\xd4\xf2\x23\xd8\xf2\xeb\x36\xb3\xca\x88\xd2\xbb\x45\x07\x56\x8e\x4b\xe9\x8b\x08\x63\x65\xf2\xdd\x02\xd7\xdd\x99\x77\xd4\xfe\x01\x55\x0e\x4b\x14\x78\xae\xb3\xc6\x34\x1a\x80\xfe\x77\x58\x4f\x47\x91\x05\x06\x68\xa0\xe7\xde\xd3\x23\x5e\x82\x55\xc7\x7e\x52\x9d\xc5\xce\x52\x6b\x35\x84\xc7\x79\x5a\x43\xc1\x40\xb7\x80\x38\x5a\xc8\x3a\x83\x65\xb2\x17\x59\x9f\x65\x1a\xbc\x91\x31\xfa\x03\xf4\xec\xfe\xb0\xee\xe5\xe8\x5b\x39\x7a\x6e\xcb\xd1\x1b\x39\x7a\x65\x67\xc5\x6b\xdc\x90\x39\x2d\xab\xd6\x60\x22\x6b\xc7\x89\x2d\x01\x17\x68\xea\xce\x45\x06\xd3\xa3\xb6\x6f\x6f\xdb\x28\xcd\xba\x83\x6b\xfc\x65\x81\x00\x5a\x81\xa1\xe8\xf8\x8e\xb2\xf6\x61\x59\xee\x2f\x3b\x29\xd9\xb0\x9d\xf3\x5f\x42\xac\xdb\x7f\x62\x5a\xfe\xe9\x61\x19\x3e\xb5\xa8\xea\x24\x18\x58\xee\x47\xa7\x8c\x5d\x5b\x81\xdc\xcb\x38\xa5\x1d\xb0\x30\x1d\x9a\x77\xb4\x73\xd9\xfe\xbb\x0c\x05\x72\xc0\x91\x5e\x92\xc8\x66\x9f\x8e\xb6\xed\x6d\x5b\x0a\xf5\xac\x09\x25\xeb\x3d\x2c\xbd\x9d\x2d\xd4\x9c\xf6\x04\x06\xb0\xc3\xa3\x13\x34\xe2\x28\x45\xdb\x40\xc1\xb0\x4f\x30\x08\x3e\xa9\x70\x04\xe2\x00\x65\x47\x56\xda\x2f\xc1\x5c\x97\xd2\x2b\xcb\x5c\x59\x94\x7e\xc5\x82\x9f\x58\x54\xcb\x87\x2e\x14\x86\x7b\xc4\x7d\x8f\x91\x89\xcd\x06\x16\x5e\xda\xbf\x94\x0a\x5d\xc9\x1f\x73\x40\xbb\x5b\x20\x7d\x43\x2f\xda\xba\x49\x3b\x43\x30\xa6\xb0\x2e\x0b\xfa\x4f\xa4\x62\x13\x55\xff\x3b\x5f\x72\xf7\x60\xa7\x34\xc4\xf6\x41\xb4\x73\x31\xdf\x58\x98\x78\x5f\x6e\x54\xa1\x01\x41\xf0\x0f\xe6\xf7\x10\x33\x7b\x98\x5a\x40\x46\x53\x87\x21\x17\xb4\x40\x5f\x35\x58\x5d\x90\x75\x98\x22\x0c\x06\x40\x62\x24\x7b\x42\x4c\x13\x34\xdd\xbb\x9e\xb2\x57\x97\xf6\x3e\x9f\x2b\x9a\xaf\x34\x67\x34\x30\x42\x96\x32\xea\x4f\xa5\x2f\x1b\xb8\x88\x4e\x64\x3e\x7d\x6f\x43\x26\x5e\x5a\x60\xc0\x67\x99\x29\xb1\x6a\x61\xcd\x31\x85\x60\xbe\x43\xcb\x0f\x51\x55\xec\x28\xcd\x21\x6d\xd3\x0f\x05\xf9\xed\xac\xcc\xf6\xa9\xac\x87\x14\x45\x2a\xe6\x82\x14\x49\x76\x7c\x23\x5b\x36\x25\x40\x37\xb8\x39\xd2\xfc\xbe\xea\x28\xd0\x1e\xed\xfe\xdd\x7d\xea\x14\x17\xad\x3e\x64\xe5\x56\xad\x64\xab\x8e\x5c\x16\xc6\x6a\x11\xa7\x67\x50\x3b\x68\x64\xd9\x98\xf7\xe7\x18\xe1\x83\x53\xc9\x15\x15\x09\x3a\x68\x14\x24\xca\x90\xdf\x5b\xcb\xdc\x58\x94\xf6\xa8\x7a\x79\xb6\xd2\xbd\xc7\x8d\x2d\x9d\x89\x3e\xbd\xf3\x6f\x50\xba\xb3\x0e\xfe\x60\xd8\x5c\xd8\x54\x9b\x1a\x62\x4d\xf2\x2d\x0f\xcb\x31\x93\x53\xb0\xc2\xdb\x3f\xb4\x78\xb8\xbc\x31\xf7\x3a\xdb\x53\x49\xff\xc7\x8d\xd6\x30\x7f\x92\xad\x88\x24\x75\xd7\xc0\x7d\xcb\xb9\x14\x1d\x63\x33\xb1\x56\x80\xd5\x6b\x58\xef\x3a\x66\xcf\x30\x8d\xb9\xe7\x73\xa3\x69\x24\x82\x09\xcf\x39\x79\x4a\x4e\xe2\x4d\x00\x9b\xec\xd7\x6b\xe6\x05\xf5\xb7\x6f\xce\xde\xf1\xd9\xfc\xb4\xfe\x04\x1b\x37\x75\x9c\x63\x87\x81\x80\xcd\x73\xf3\xc1\x20\x53\x71\x72\x42\xd4\x89\x00\x61\xe4\x76\x3c\xfc\xf8\x89\x38\xea\xec\x86\xcc\xc3\x98\xe0\xf6\x99\xc0\xd6\xda\x0b\x16\xd3\x80\x4c\xc5\x5c\xed\xfb\x48\xd9\x79\x4f\xd5\x65\x82\xd5\xc8\x4f\x84\x9c\x8a\x2d\x53\x14\x7a\x6e\x42\x5a\x04\x26\x1f\x4e\x1f\xaf\xb5\x59\xed\xd8\x27\x05\x68\x14\x00\x8a\x27\x41\x29\xcc\x19\xc0\x28\xa8\x93\x13\xc2\x5c\x97\x4c\xf5\x23\xa4\xa9\x41\x44\x48\xc4\x92\x13\x75\xb4\x43\xe4\x9e\xd7\xcc\x71\xc4\x92\x07\x64\xee\xb3\x05\x01\xe5\xa7\xd9\x59\xd4\xd4\x20\x2c\x41\x8d\xb9\x4b\x58\xe0\x92\xb9\x17\xf3\xcc\x28\x05\xd1\xe5\x89\x96\x99\xaa\x68\x12\x8f\xb4\xc8\xa9\x49\xd2\x83\x2a\xd2\x22\x0f\x99\x32\xf3\x30\xae\x5e\x7b\xe4\x7f\x32\x83\xd4\xe5\x21\xd6\x35\xf1\x5e\xbd\xca\x4d\x36\x15\x6a\x9e\xb4\x32\xc8\x07\x2f\xa3\x32\x15\xde\xbc\x2a\x0f\xbd\xea\xd9\x91\x57\xbd\x78\xe0\x55\x07\x61\xab\x7b\x87\x5d\x99\x94\x35\xf2\xc7\x1f\x64\x6f\xf2\x41\xcd\x3d\xea\x72\x4c\x45\xaa\x47\x3d\xda\x24\xcb\x7d\x82\x19\xce\xc3\xe9\x63\x2d\x17\xef\x25\x17\xf4\x08\x3c\xd8\x28\x85\x7f\xd1\x8c\x93\xda\x93\x78\x81\x1e\x16\xba\x48\xbf\xab\xbb\x86\x6e\x66\x7e\xaa\x15\x95\x53\x81\xf1\x90\x4e\x83\x5c\x1a\x5e\x3e\x7e\xa8\x5b\xfa\xeb\xcd\xab\x25\xe7\x85\x35\x52\x32\x28\x13\x23\x0f\xda\xe7\xa5\xe7\xf3\x6a\x66\x60\x19\x0a\xba\x80\xd9\x14\x9e\x3d\x56\x6b\xd5\x9a\x66\xb3\x62\xe4\xf3\x40\xc4\xbb\x2c\xd0\xe7\x71\xb8\x4e\xc3\x57\x66\xaf\x08\x49\x7a\xfc\x48\x7c\x2f\x11\x0a\x7b\xef\x30\x13\x9d\x5c\xc7\xf3\xcc\xea\xde\x94\xb9\x9f\x85\xbf\x7e\x91\x87\xc7\x5a\x21\x05\xe3\x4d\x90\x73\x49\x65\x79\x86\x1c\x83\xf4\x42\x41\x12\x12\x73\xe6\xee\x14\x4e\xcc\xc5\x26\x0e\x48\xd9\xc1\x69\xaa\xeb\xcb\x75\xb1\xe2\x94\xc3\x16\xaa\x8d\x3c\x70\xd5\x73\x0e\x46\x31\x2f\xaf\x09\x64\xdf\xbe\xd6\x47\x92\x10\xb0\x8a\xa0\x50\x7a\x8a\xb8\x85\xb4\x04\x84\xec\x4c\x97\xb4\x88\x88\x37\x3c\x9f\x4d\x05\x79\x22\x2d\xd2\xb8\x26\x4f\x07\x82\x64\x72\x3c\x15\xe5\x48\x25\x89\xb0\x20\x14\x71\x1e\x9e\x34\xfe\x18\x8d\xfb\x29\x87\x78\x8f\xe4\x3f\xad\x16\x39\xad\x15\xc4\x9b\x33\x3f\xe1\xa5\x59\x3b\xaf\x66\x70\x45\x41\xf6\x2d\x27\x4f\xaa\xab\xde\xeb\xd7\x26\x69\xd4\xae\x8b\x75\x63\xe3\x0b\xd2\x22\x25\x67\xd8\xd5\x92\xb1\x7a\x72\xa8\x5b\x69\x51\xc9\x43\x5f\x45\x8f\xee\xee\x74\xf2\xe4\x84\x7c\xc9\x0a\x3f\x71\x98\xb3\xe4\x38\x8e\x81\xb0\x77\x74\x4e\x5a\xe4\xe7\xcb\x75\x8e\x28\x57\x09\xc8\x98\x44\x84\x31\xd7\x97\x01\xb5\x06\xaa\x50\x4e\x11\xb2\x53\xe1\xb4\x5c\x93\x20\x14\x0a\xcd\x24\xc1\xc6\xf7\xb3\x89\x28\xe6\x72\xfc\x24\x8a\xf9\x9c\x0b\x67\xc9\xdd\x94\x8c\x3a\x76\xcf\x60\x15\x33\x93\x9c\x16\x86\x14\x42\x41\x13\xe9\x6a\x50\x44\x99\xe6\xb2\x49\x4e\xb3\xf4\xc9\xe0\xf7\xbc\x97\x2e\x4d\xa9\x00\xf2\x1c\x9f\x44\x4c\x2c\x49\x9a\x6f\xc5\xe4\x2b\x9e\xc9\x57\xb3\xd5\xe4\x67\xd1\x23\x65\xee\x8d\xc8\x2b\x32\xd5\x9a\x94\xa9\x41\x5e\x91\xea\xcf\xa9\xd1\x98\x1a\xcd\xa9\xe1\x84\x81\x60\x5e\xc0\xe3\xe4\xf5\x22\x0c\xdd\xd9\x8e\x4f\x0d\x73\x6a\x9c\xed\x4f\xfa\xe1\xc2\x0b\x70\xea\x7c\x7f\xea\x99\xfb\x4e\xb8\x96\x78\x6f\x70\xd2\x73\x79\x20\xbc\xb9\xc7\xe3\xd7\x2c\x8a\x70\xe2\x62\x7f\x02\x9a\xa4\xa9\xf1\x92\xad\x4c\xbf\x7e\x65\x5a\x81\xc0\x75\x94\xf3\xe7\xd4\x38\x95\xec\xf8\xa5\xeb\xf0\xb3\x73\xa4\x25\x25\x67\x97\x67\x17\x8d\x37\xce\x99\x26\xef\xf9\xc5\xac\xf1\xf6\x8d\xf3\x46\x93\xf3\xea\x6c\xc6\x4e\xdf\x3a\x6f\x35\xe9\x5c\xe7\xdc\xe5\xee\xf9\x5c\x93\xeb\xea\x92\x5f\xf1\x77\xa7\x17\x38\x74\x85\x43\x8d\x0b\x97\x5f\xb1\x77\x0d\x1c\x7a\x27\x39\x9e\xf3\xb7\x57\x2e\x97\x9a\x36\xa4\x60\x9c\xf3\xcb\xc6\xf9\x5b\xa6\xab\x22\x15\xc0\xb7\xfa\x53\x32\x35\xca\x32\x44\x39\xe8\x88\xbf\xcb\x72\x37\x5b\x4a\xc1\xeb\x79\xed\xb7\xa1\x2e\x13\x6f\x9e\xe6\x9c\x97\xc0\x1a\x9e\x67\x5e\xb1\x36\x1d\x2c\xb0\xc5\x65\x0f\xa3\xe8\x38\x70\x5d\x7d\xe6\xda\xef\x20\x40\x0c\xfc\xe0\x41\x18\x09\xf8\x73\x2a\x4a\x15\x52\x37\xda\x08\xe2\x09\xe2\x05\xaa\x27\x44\xc9\x6a\x07\xad\x1c\x69\xfd\x03\x5f\x2d\xc1\xa6\xc2\x6b\xe6\xdd\x5f\x36\xe8\x37\x65\x55\xcd\x47\x94\xa8\x4d\xf2\x33\x2b\x60\x85\x35\xb3\x23\x57\x55\xad\x4f\x2d\xfa\xa2\xa4\x49\x49\xfb\x1b\x5c\x33\x14\xfd\xb4\xc5\x49\x7f\xf3\xf1\x12\x1f\x16\x57\xed\x1b\xe8\x7f\x35\xf6\x59\xe7\x5b\xe0\x5f\xf7\xf3\x05\x2d\xc7\xfd\x2c\x5d\x05\xd8\x8a\x21\x09\xe7\x1a\xb1\x62\x5d\x28\x8a\x56\x52\xb1\xbd\x84\xc0\x6e\x86\xa8\xac\x4e\x48\x18\xf8\x3b\x49\x1d\xfb\x1b\x19\xcb\x7a\xfc\x16\x4a\x65\x66\x39\xdc\xb6\x30\xd7\xf5\xe0\x85\xf9\x7a\xbd\x2e\xab\x4d\xe0\xf5\x0c\x55\x0d\x77\x82\x64\x13\xf3\xc3\x12\x07\xa1\x92\x7e\x4a\xcd\x0b\x68\x6e\x11\xb5\x7f\x2a\x8a\x15\xc6\xe4\x89\x6d\x99\x2c\xb0\x19\xf4\x61\x09\x6f\x33\xc1\xf4\x08\xdc\xeb\x9a\xaf\x4b\x32\x29\xc7\x53\x2b\xfc\x4f\x72\x72\x42\x4e\xc9\x9a\xb3\x20\x21\x53\x83\xf9\xd8\x70\xe5\x34\xa1\xa6\x05\x59\x78\x42\xfb\x98\xad\x3c\x29\x8e\xb3\x89\xa1\x79\xf5\x77\xd9\xa6\xcf\xa8\xeb\xcd\xc1\x21\xf3\x62\x97\x90\xda\xa7\x6c\xcf\xd0\x96\x5b\x37\x7d\x61\x27\xdc\x4f\x78\x81\x00\x2c\x46\x5c\x6c\xa2\x4c\x32\x28\x25\x68\x52\xbd\xa0\xec\xb9\x83\xb4\x30\xe9\x15\x4a\x35\x75\x68\xda\x60\xc3\x96\x0c\x16\xf6\xa2\xa8\xfb\x5b\x94\x7f\xf1\x00\x78\x7c\x8f\x5e\xa1\xff\x7a\x29\xf4\x40\xbf\x61\x07\xd2\x4a\xc5\xd7\x92\x32\x35\x81\x60\xb1\x28\xd9\x7d\xe7\x9a\xab\x15\xbb\x45\xd2\x2f\xef\xf5\xc2\x77\xf7\x6a\x45\x02\x54\x0a\x52\x01\xe2\xfe\x57\xfc\x22\x6f\x89\x55\x57\xdf\xec\x49\x8b\x54\x36\x62\xfe\xfa\xaa\x72\x7d\x08\xa3\xbe\xe6\x43\x4b\x7b\x76\x5a\xec\x44\x49\x69\x9b\x17\x38\xfb\x0e\x50\x94\xf4\x8b\x00\xd5\xa9\x11\x84\x81\x03\x2b\x5c\x69\x33\x11\x38\x05\x8d\x5e\x0e\xe5\x4a\x62\x87\xb4\x8e\xf5\x2b\x07\x96\x96\x56\x23\x78\x3f\x80\xcc\xf8\x1c\xda\xbe\x44\x30\x67\x45\x36\xc1\x73\xb8\x09\x5c\xe8\x06\x17\x5c\x90\x4d\xc2\xe7\x1b\x5f\xce\x89\x98\x39\x9c\xf8\x4c\xf0\x78\xcf\xba\x92\x8e\x0c\x47\xbc\xad\x50\x2d\x88\xbb\x6f\x7c\xbd\xfa\x54\xf1\x56\xc3\xbe\x89\x20\x4b\xb7\xa1\xe7\x92\x35\x5f\x13\x9f\xb3\x15\x2e\xae\xbd\x4e\xbd\xcc\x90\xea\x3e\x04\x69\x91\x6c\x00\xa2\x07\xe4\xd9\xf8\xfe\x75\x01\x45\xbf\x28\x51\x55\xbe\xac\x15\x41\xb2\xf3\x9b\xdf\x28\x4c\x59\x85\x90\x08\x69\x45\x2a\xcc\xe6\xf3\x87\x33\x9a\xf9\xbe\xec\x22\x30\x0c\x9a\x83\xfc\xf1\x87\x32\x4c\x5d\xe0\x70\xab\x45\x2a\xa0\x53\x85\xfc\x97\x54\xd6\x5e\x92\x78\xc1\xa2\x42\x9a\x24\x87\xd9\x53\x62\x9a\x6d\x0d\xf1\xba\x87\x4e\x58\xe1\xe0\xed\x8f\xfd\x77\x08\xa3\x43\x42\x28\x5f\x5d\x5d\x13\x81\xec\xf8\xa0\x6f\x0b\x48\x85\xbc\x4a\xcf\x59\xc8\x2b\x52\x21\x73\xe6\xf9\xdc\xad\x4f\xa7\x41\x15\xa6\x72\xed\x5e\x91\x4a\x13\xa1\x53\xa9\x5e\x91\x4a\xad\x72\x8c\x5f\xc0\xd6\xc8\x0c\x4d\x0f\x1c\x31\xb2\x8e\x82\x0b\x65\xbf\x94\xdb\x31\x38\x75\xb9\x85\xb4\x52\x29\x0e\x01\x51\x99\x87\xc6\x63\x15\x31\x0e\x2c\xfb\xb2\xef\xde\xe3\xb5\x33\xdb\x29\x15\x69\xe8\x14\x5e\xf6\x4b\x55\x5e\x61\xf2\x1b\x37\x79\x71\xaf\x15\x43\x68\x3f\xb5\xaa\x3f\x09\x18\xa2\x49\x2a\x8a\x4c\xc5\x24\xd2\xb5\xcd\xb4\x78\x16\x4b\xf6\x8b\x09\x85\xec\xf4\xf4\xb4\x56\x52\xec\x8e\x67\x56\x49\x3d\xcd\xf7\xcc\x69\x6d\x5e\x72\xe6\xd6\xb5\x2b\x42\x55\x49\xa5\x7c\x8f\xab\xf7\x4d\x6a\x49\xab\x43\xdb\x97\xae\x29\xda\xf1\x48\xda\x0f\x41\x5f\x95\xf0\x92\x13\x4f\xbd\x12\xab\x99\x6f\xdf\x6a\x47\xdb\xa1\x35\x9e\x82\x21\xd8\x3f\x51\xd7\xd6\xe2\x32\x2a\x4e\x49\x2b\xad\x91\x93\x81\x40\xe4\x8d\xa8\x62\xe3\xb6\x64\xf1\x3a\x0c\x76\x69\x47\x79\x94\x83\xab\x15\xce\x6a\xd6\xef\x42\x9e\x98\x8a\x6e\x5e\x61\xbc\x79\xf5\x3f\x65\x34\xc2\x22\x62\xe1\x7c\x50\x1d\x33\x16\xef\x69\xed\x33\xfa\x49\xf2\x6b\x5b\x4d\x6c\x90\x91\x79\x33\xd5\xec\xa5\x56\xdc\xa5\xbc\x1c\xda\x20\xbf\xb6\x45\xc2\xe0\x5f\xb5\x8e\x4b\xb4\x2e\xe8\x09\x01\x1f\xce\x89\xbc\x36\x86\x35\xb8\x92\xe5\x5d\x05\x2a\x9c\x9c\xa9\x6b\xd7\xc9\xfe\x0f\x5a\x1f\x22\x83\x0d\xf0\x32\x5a\x93\x54\xa4\x1a\x95\x03\xad\xff\x95\x6c\x25\x37\x42\x45\x23\x08\xf6\xcc\x88\xe9\xa6\x73\xd2\x7d\xde\x9c\xad\x38\xba\x22\x89\x60\x39\x96\x01\x9f\x42\xad\x43\x97\x93\x3f\x48\xa3\x29\xe9\xc1\xa6\x94\x65\x1b\x54\xd7\xcc\x76\xbf\xde\x3e\xc6\x59\x93\xac\x79\xbc\xe0\x78\x70\xa9\x6e\xc8\x79\x1c\x37\x37\x8a\x52\xba\x8f\x0c\x92\x3d\xd4\x37\x4d\xa2\xd2\x56\x42\xaa\xf3\x4f\xd9\x85\x07\x49\xb9\x84\x57\xbf\x1a\x4d\x32\xe3\x4b\xb6\xe5\xc4\xf7\x56\xd9\xbe\xfc\x68\x14\x08\x3d\x0a\x90\x11\xee\xfc\x78\x21\x12\x52\xf5\x6b\x4a\x94\xf2\xc3\x38\x9c\xab\x5d\x1f\xa0\x5d\xd5\x0a\x8a\x68\x00\x29\xc4\x1b\xfc\x8e\xa0\xe2\x4d\xb1\x80\x70\x93\x2a\x62\xac\xc9\xd1\xf4\xa1\x9e\x7b\xb9\x9c\x38\x14\xfc\x00\xf6\x55\x2a\x5c\xa4\x9b\xab\xd0\xb8\x64\x12\x96\x26\x45\x35\x48\x32\x80\xf2\x50\x0b\x20\xca\x5c\x3e\x67\x1b\x5f\x54\xca\xf3\x56\x05\x9d\x94\xf9\xa5\xc4\x24\x67\x07\xfa\xfe\xa7\x45\x2a\x09\x66\x42\xa5\x46\xd2\x13\xde\x15\x87\xfd\x96\x84\xa8\x95\x36\xb0\x2e\x8a\xb3\xe2\x3b\x33\xf7\xe2\x8a\xef\x60\xf7\xa6\x9b\xe5\x61\xc5\x77\x8f\xd7\xe4\xa5\x3e\xf3\x02\x17\xad\x80\x48\xb5\x4c\x34\x05\x1c\x24\x87\x19\xb2\xe0\xa2\x2d\xb5\xed\x60\x92\x15\x6b\xac\x13\xae\x23\x26\xbc\x99\xe7\x7b\x62\x47\x9e\x3d\xb1\x24\x41\x18\xbc\x4e\x4b\xaf\x2a\xff\x47\xc3\x2f\xd0\xc3\x6f\xad\x1c\xaa\x6f\x91\x55\xf5\x4b\x17\x12\xb0\x9b\xda\xfd\x6b\xd5\xee\xbf\x59\xd1\xc9\x64\xcb\xa5\xae\x6a\xc6\x90\xa8\x0f\x99\xfb\xc0\x26\xa4\x59\x8a\x2d\x49\x4b\x95\x93\x43\x1a\xd7\xe4\xe5\x9f\xe2\xc8\xad\x4a\xc1\x4d\x52\x61\x95\x6c\x15\xd9\xb3\xb6\x1c\x3d\xb4\xf8\xef\x7c\x96\x3a\x6a\xd1\x50\xb7\xa8\xfa\x50\x99\x56\x1e\x3d\x2e\x7e\xeb\xdb\xd7\x01\xbe\x54\x3b\x15\x34\xe7\x1f\x6d\x66\xbe\xe7\x7c\x8b\x98\x58\x7e\xfb\x76\x54\xb6\x88\xb4\xc8\xd4\xa8\x9f\x4c\x0d\xfd\x98\x3c\x50\xfb\x9c\xe2\xa1\x4b\xb2\x0b\x9c\xc2\x6e\xb5\x54\x59\x5e\x58\xc4\x62\x58\xa8\x89\xba\x72\x5c\x47\xaa\x38\x78\x4d\xc4\x32\x0e\x9f\x81\x8f\xa6\x00\x7e\x43\xc9\x2e\x25\x93\x16\x11\x4b\x2f\x79\x98\x16\xfe\xf7\x20\x3f\xe0\x9d\x1a\x8f\xbf\x03\x82\x5f\xb3\xae\x33\xfa\xfb\x17\x9c\xd3\xbd\x24\xb2\x94\x5f\xc9\x30\x25\xf3\x41\x15\x24\x7b\x50\xa4\x55\xfa\x89\x7c\x1f\xb6\x48\x1e\xaf\x52\xa7\x5b\xc6\x92\xcf\x57\x1a\x68\xe1\xcb\x55\xe9\xc7\xf8\x1c\xf8\xc1\x4b\x4f\x5d\xf0\xd0\xe4\xf0\xfb\x24\xf4\xb1\x7b\x7a\xe7\x87\x5b\xc7\x3e\xef\xe1\xa7\xc6\x50\x2c\x79\xac\x9f\xb2\x1d\xfd\xa2\x67\x3c\xa6\x97\x10\x3e\x87\xa1\x30\x9a\x86\xf1\xf2\xbf\x01\x00\x00\xff\xff\x45\x4a\x24\x09\x71\x32\x00\x00") +// FileIdentifierStaticJsRuntimeMain45c32883JsMap is "identifier/static/js/runtime-main.45c32883.js.map" +var FileIdentifierStaticJsRuntimeMain45c32883JsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x3b\x6d\x73\xda\x38\xb7\x7f\x45\x8f\x3f\x2c\x30\x75\x09\x84\x66\x93\x92\xcb\x3c\x23\x1b\x42\x09\xa5\x94\x52\x9a\xcd\x86\x4c\x47\x18\x01\x0e\xc6\x76\x6d\x41\xca\x66\xf3\xdf\xef\x9c\x23\xd9\x96\xc1\xec\xf6\xce\xdc\x2f\xc1\x96\xce\xfb\x9b\x8e\x64\xe5\xc5\xd8\xf1\x28\x76\x03\xdf\x68\x36\x4c\x23\x0e\xb6\x91\xc3\x63\xa3\xf9\x60\x54\xab\x67\xd5\xea\xd9\x33\x9f\x85\xcc\x59\x9f\xcd\x82\x40\xc4\x22\x62\xa1\xf1\x68\x1a\x3e\xdb\x48\x18\x35\x7b\x1b\x07\x7e\x68\x33\xcf\x9b\x31\x67\x6d\x98\xc6\x9c\x09\x66\x98\xc6\x26\x98\x6f\x3d\xde\x9b\x1b\xa6\xe1\xac\xb6\xfe\x5a\x7f\x8a\x71\x3e\xe2\x03\x84\x81\x37\xfe\x93\x3b\x5b\xa1\x0d\xb8\x86\x69\x44\x3c\x0e\xbc\x1d\xbe\x7a\xdc\x5f\x8a\x95\x61\x1a\xc3\xd9\x13\x77\x84\x61\x1a\x61\x14\x88\x40\xec\x43\x6e\x98\xc6\x8a\xc5\xc3\x67\xff\x73\x14\x84\x3c\x12\x7b\xe0\xc3\x3c\x0f\x88\xf8\xb1\x60\x9e\xc7\xe7\x36\xf0\x05\x3a\xe1\x36\x5e\xa5\xc2\xe1\x00\x8b\xb8\x2f\x50\x87\x9b\xad\xef\x08\xb0\x85\x69\xc4\x2b\x77\x01\x4c\xe6\x7c\xc1\xa3\x88\xcf\x33\xb9\x58\x18\x7a\xc8\x61\xc5\x9d\x75\xfb\x68\x3a\xe2\xf1\xd6\x3b\xc6\x34\x4c\x63\xb1\xf5\x16\x2e\xc8\x62\x98\xc6\x13\x02\x84\x68\x92\x38\xf4\x5c\x07\x00\xbe\x7f\x57\x06\xfd\x1e\xf1\x1f\x5b\x37\xe2\xdf\xbf\xc3\xb4\xae\x46\xc6\xe7\x12\x6d\x16\x06\x91\x88\x53\x75\xc0\x4c\x30\x2c\x8d\xb3\x71\x63\x1e\x1f\xd9\xa0\x2d\x9d\xa3\xe6\x0d\xd3\xf8\x9c\x3e\x29\x6b\xe3\x93\xb2\x71\xe0\x8f\x9d\xc8\x0d\x85\x1d\x6c\x42\x8f\x0b\x98\x8b\x71\x00\xe4\x0f\x9c\xed\x86\xfb\xf0\xe8\x44\x9c\x09\xde\xf1\x78\xf2\xbe\x62\x51\xcc\xe1\x49\xb8\x1b\x1e\x6c\xe1\xc9\x77\x00\x99\x0b\x2a\x44\xe4\xce\xb6\x92\x56\x04\x83\x21\x18\x04\xec\x2f\x79\x8d\x71\x90\x47\x51\x10\x19\xa6\xd1\x51\xbf\x7c\x27\x49\x07\x7e\x32\x13\xf8\x5e\xc0\x30\xa6\x3c\xce\xa2\xaf\x29\x23\x0c\xb1\x84\xc2\x57\x19\x1f\x2a\x4c\x22\xce\x3c\x49\x5e\xb0\x68\x89\x02\x6e\x78\x1c\xb3\x25\x4c\x42\x58\x23\xcc\x8f\x2d\x8f\x61\x6a\xeb\xcf\xf9\xc2\xf5\xd1\x61\x31\x17\x19\x87\x15\x47\xbe\x2c\x0c\xb9\x3f\xb7\x57\xae\x87\x6f\x18\x70\x1b\x10\x00\x8c\x63\x98\xc6\x92\x0b\xc1\x51\x52\x19\x0e\xae\xcf\xb5\x08\xe5\xfe\x76\xc3\x23\x36\x43\xb7\x49\x59\x00\x76\xbc\xdf\xcc\x02\xa0\x24\x82\xb1\x88\x5c\x7f\xf9\x95\x2d\x0d\xd3\xd8\x31\x6f\x8b\x8a\x48\x67\xcb\x70\xe1\x71\x1a\x5c\x7e\x9c\xba\xc1\x30\x8d\x35\x07\x0e\x33\xd7\x07\x31\x20\x9c\x03\x2d\x69\x12\x01\x02\x2e\x8d\x04\x88\x81\x1f\x07\x48\x07\xfd\x40\xa3\x88\x01\x84\x58\xb9\x40\x36\xf0\xe6\x47\xe9\x81\x21\xfb\x68\x1a\x1b\x16\x86\xae\xbf\x8c\x8d\xa6\xc1\xa8\xdd\x31\xc7\x94\x8e\xa9\xd9\xa1\xf4\x87\x65\x9b\x5d\x3a\xba\xb4\xcc\x1e\xfd\x4c\xcd\x1e\x1d\xf4\x6c\x18\x9f\xc0\xdf\x4f\xdf\xf0\xf9\xee\x03\xfc\xed\x9b\x5d\x6a\xaf\xac\x1e\x3c\x3b\xb7\xe9\x88\x6f\xf5\xe1\xd9\xb5\x3e\x26\x43\xbd\x0f\x03\x78\x44\xc0\xae\x24\x00\x80\xa1\xdd\xc6\x61\x24\x36\xee\x9b\x43\x4a\x47\x37\x66\x8f\xda\x7f\x59\xb7\x29\x47\x3a\xee\x4a\x36\x5d\x98\x1f\xda\xe6\x04\x27\x38\xa5\xdc\x36\xfb\x94\xf6\x6d\xc9\xec\x0f\xb3\x47\xe9\xfd\x1d\xbc\x2c\xf1\xc5\x0e\x6f\x50\x8e\xf1\x10\xc1\xda\xc9\x4c\x97\xd2\xb1\xd9\xa3\x9d\x9f\xf6\x9d\x36\x04\xcf\x9d\x0b\xd0\x99\xf6\xda\x80\x70\xdf\x35\x3b\xd4\xfe\xb3\x7f\x82\xeb\x17\xc0\x65\x1f\xcc\x3e\xb5\xc3\xb6\x03\x2f\xa3\x39\xd0\x41\x34\x7a\xff\xc1\xec\xd1\xbe\x67\x9b\x3d\x7a\xd3\xe5\x30\xfe\xc3\x42\xe3\x06\xd6\xca\x32\xbb\xb4\x23\xec\x21\xca\x66\x9b\x23\x6a\xcf\x51\xb6\xf1\x04\x58\x7d\xfd\x66\x76\xe9\xb0\x6d\x0e\xe9\x07\xaa\xe4\xbb\x45\x86\x7d\x73\x40\xe9\xa0\x2d\x95\x9d\x01\xc9\x35\x48\xdb\xdd\xb5\x39\x68\xf3\x45\x39\x10\x1f\x7b\xb4\x4d\x51\x13\xb0\x8d\xdd\x5b\x64\xc6\x47\x21\x7a\xf7\x92\xf0\xb7\xd4\xe2\xb4\x6f\xda\xb4\x7b\x86\xf2\x4a\xcc\xa5\x25\x39\xdd\x4a\xd0\x3f\xc1\x07\x4f\xb6\x6b\xa1\x8e\x40\xf5\x8b\x7d\x48\xf5\x06\xfe\xf2\x39\x12\x5d\x5a\x09\x55\xfb\xbd\x9d\x8a\x42\x47\xe8\x6a\xde\x01\x6a\x5d\x18\x6e\x58\x7f\x48\x06\xf7\xa0\xa4\x73\x23\xc9\x77\x69\xa7\x61\x83\x1c\xf6\xcd\x47\x39\x3d\x42\x37\x84\x8a\x6a\x97\xda\x17\x16\x47\xa3\x0d\xa4\x55\x95\x71\xa5\x4c\x9f\x90\x89\xd9\xa7\x3d\xd1\x41\x3c\xb0\x5a\xef\x0b\x8a\x31\x82\xb9\x0d\xa8\xd1\xf7\xc1\x17\x1d\xb4\xa3\x4d\xed\xc8\x72\xf1\x0d\xa2\xad\x4b\xff\x54\x13\x5d\x3a\x12\x16\x9a\x76\x2c\x39\xd4\x61\xac\x7b\x81\x76\xe8\xbe\x53\x46\xc2\x57\xdb\xb7\x90\x59\x6e\x90\x4e\xae\x2c\x73\x44\xbb\xbe\x66\x84\xf1\x07\x1d\xe0\x1e\x98\xff\x65\x63\xa8\x76\x41\x5b\xfb\xc3\xd2\x46\xea\xf8\x7c\x63\x8e\x64\xbc\x4e\xc0\x5b\x9f\xa8\x14\x59\xc6\xda\xe4\x0e\x23\x23\xc0\xa1\x61\x1b\x21\xa5\x99\xa9\x36\x72\x0b\x02\x9f\xb5\x91\xc1\x10\x29\x83\xd3\xba\xb7\xed\x14\xa6\xbf\xb8\x95\xca\x0d\xa5\x4b\xc7\x94\x6e\xad\x15\x80\x26\xce\x73\xd3\xa4\xed\xff\x61\xcb\x22\xb1\xb3\xb2\xec\xb1\xff\x42\xba\x35\x74\xcf\xce\x5a\x03\x48\x17\x7d\x89\xa1\x61\xdf\xc8\x00\x8f\x2c\x94\x37\xb6\x94\x0f\x46\xd4\x6e\x80\xed\x3b\x9f\x32\xe3\x4c\xd4\xe3\x98\xd2\x11\xda\xdd\x56\x79\xd2\xa5\x76\xc3\xbe\x3d\xe6\x4d\xef\x4c\x9b\x52\xfb\x47\x02\x37\xa0\x9d\x46\xfb\x63\x21\xbf\x2e\x56\x8b\x2e\xed\x0a\xd0\xca\xee\x81\x1d\xda\x34\x41\x94\xcc\x1c\x4a\x1d\x73\x42\xbb\xa1\x8d\xe1\x3c\xec\x82\x0d\x27\x20\xea\x93\x85\x7e\x1b\xf6\xe4\x48\x8f\xda\x33\xdf\x92\x76\x0b\x40\x71\x7b\x27\x0b\xde\x70\x60\x32\x4a\x19\xda\x3e\xd2\x01\x3a\x9e\x94\x6b\x38\x34\x7b\xb4\xde\xfe\x06\x1c\x9f\xad\x33\x54\x6d\x27\x63\x67\xaf\xe0\xb7\x96\xf4\x84\x03\x5a\xa2\x7e\xf2\xfd\x87\x05\xea\xcb\xe7\x8d\x85\x4a\x1d\x8d\xbb\x16\x04\x97\x0e\xb3\x6a\x83\x51\x27\x54\x5a\xab\x47\xe9\x40\x23\x79\x27\x6b\xdf\xff\xc7\x13\xd8\xd7\xbc\xa7\xf4\x5e\x71\xba\xa7\xfb\xb6\x98\xb8\x6d\xe0\xc6\x9f\xda\x2a\x71\xc0\xbf\x6b\x0c\x88\x91\xf2\xf5\x00\xca\xfb\x9f\xca\x49\x63\x4a\x27\x0c\x2a\xc0\x85\x1c\x1a\xa2\x25\x27\x33\x7c\x76\xc0\x4a\x63\x28\xba\x4f\xb6\x8d\x66\xc6\xf0\x9b\x21\x21\xac\x6a\xa3\x4b\x5b\x8b\x4b\x99\x62\x0c\xa6\xbf\x3d\x23\x4f\x06\xe9\xb6\x48\x43\x93\x0e\xe1\xfd\x6b\x16\x7f\xf7\x1f\xe1\x79\x8f\x72\x2c\x10\x62\x30\x80\x28\x5a\x5b\xb0\x04\xdc\x7f\x52\x23\x20\x72\x47\x06\xec\x67\x5c\x51\x24\xe8\x08\x65\xfd\xa2\x9e\xc1\xa3\x33\x5c\x89\xda\xb8\x2a\x0c\xee\x64\xe8\xb8\xe8\x95\xcb\xb6\x8c\x77\xf4\xf1\x1e\x5f\xb0\x08\x0e\x3b\x49\x1e\xd8\xf5\x9b\xaf\x88\x27\xc7\x01\xcf\x9e\xfd\xa9\x88\xf7\x55\x5d\xb3\x67\x9f\x71\x44\x9a\x09\x12\xc4\x5e\xc9\x48\x1d\xa0\x96\x9f\xc0\x96\xdf\x76\xa9\x55\x46\x94\xde\x2d\x3b\xb0\x72\x5c\x4a\x5f\x84\x18\x2b\x93\x1f\x16\xb8\xee\xce\xbc\xa3\xf6\x4f\xa8\x72\x58\xa2\xc0\x73\x9d\x0d\xa6\xd1\x00\xf4\xbf\xc3\x7a\x3a\x0a\x2d\x30\x40\x1d\x3d\xf7\x81\x9e\xf0\x12\xac\x3a\xf6\x93\xea\x2c\xf6\x96\x5a\xab\x21\x3c\x1a\x49\x0d\x05\x03\xdd\x02\xe2\x68\x29\xeb\x0c\x96\xc9\x5e\x68\x7d\x91\x69\xf0\x4e\xc6\xe8\x4f\xd0\xb3\xfb\xd3\xba\x97\xa3\xbf\xcb\xd1\x86\x2d\x47\x6f\xe4\xe8\x95\x9d\x16\xaf\x71\x5d\xe6\xb4\xac\x5a\x83\x89\xac\x1d\x67\xb6\x04\x5c\xa2\xa9\x3b\x17\x29\x4c\x8f\xda\x9e\xbd\x6b\xa3\x34\x9b\x0e\xae\xf1\x97\x39\x02\x68\x05\x86\xa2\xe3\x3b\xca\xda\x87\x65\xb9\xbf\xea\x24\x64\x83\x76\xc6\x7f\x05\xb1\x6e\xff\x81\x69\xf9\x87\x8b\x65\xb8\x66\x51\xd5\x49\x30\xb0\xdc\xcf\x4e\x11\xbb\xb6\x02\xb9\x97\x71\x4a\x3b\x60\x61\x3a\x34\xef\x68\xe7\xb2\xfd\x57\x11\x0a\xe4\x80\x23\xbd\x24\x91\xcd\x3e\x1d\xed\xda\xbb\xb6\x14\xea\x59\x13\x4a\xd6\x7b\x58\x7a\x3b\x3b\xa8\x39\xed\x09\x0c\x60\x87\x47\x27\x68\xc4\x51\x82\xb6\x85\x82\x61\x9f\x61\x10\x7c\x56\xe1\x08\xc4\x01\xca\x0e\xad\xa4\x5f\x82\xb9\x2e\xa5\x57\x96\xb9\xb6\x28\xfd\x86\x05\x3f\xb6\xa8\x96\x0f\x5d\x28\x0c\xf7\x88\xfb\x01\x23\x13\x9b\x0d\x2c\xbc\xb4\x7f\x29\x15\xba\x92\x3f\xe6\x80\x76\x77\x40\xfa\x86\x5e\xb4\x75\x93\x76\x86\x60\x4c\x61\x5d\xe6\xf4\x9f\x48\xc5\x26\xaa\xfe\x77\xbe\x66\xee\xc1\x4e\x69\x88\xed\x83\x68\x67\x62\xbe\xb3\x30\xf1\xbe\xde\xa8\x42\x03\x82\xe0\x1f\xcc\xef\x21\x66\xf6\x30\xb1\x80\x8c\xa6\x0e\x43\x2e\x68\x81\xbe\x6a\xb0\xba\x20\xeb\x30\x41\x18\x0c\x80\xc4\x48\xf6\x84\x98\x26\x68\xba\xf7\x3d\x65\xaf\x2e\xed\x7d\x69\x28\x9a\x6f\x34\x67\xd4\x31\x42\x56\x32\xea\x6b\xd2\x97\x75\x5c\x44\x27\x32\x9f\x7e\xb4\x21\x13\x2f\x2d\x30\xe0\xb3\xcc\x94\x48\xb5\xb0\xe6\x98\x42\x30\xdf\xa1\xe5\x87\xa8\x2a\x76\x94\xe6\x90\xb6\xe9\xc7\x9c\xfc\x76\x5a\x66\xfb\x54\xd6\x43\x8a\x22\xe5\x73\x41\x8a\x24\x3b\xbe\x91\x2d\x9b\x12\xa0\xeb\xdf\x9c\x68\x7e\xdf\x74\x14\x68\x8f\x76\xff\xea\x3e\x75\xf2\x8b\x56\x1f\xb2\x72\xa7\x56\xb2\x75\x47\x2e\x0b\x63\xb5\x88\xd3\x73\xa8\x1d\x34\xb4\x6c\xcc\xfb\x06\x46\xf8\xa0\x26\xb9\xa2\x22\x7e\x07\x8d\x82\x44\x19\xf2\xfb\xdd\x32\xb7\x16\xa5\x3d\xaa\x5e\x9e\xad\x64\xef\x71\x63\x4b\x67\xa2\x4f\xef\xbc\x1b\x94\xee\xbc\x83\x3f\x18\x36\x17\x36\xd5\xa6\x86\x58\x93\x3c\xcb\xc5\x72\xcc\xe4\x14\xac\xf0\xf6\x4f\x2d\x1e\x2e\x6f\xcc\x83\xce\xb6\x26\xe9\xff\xbc\xd1\x1a\xe6\xcf\xb2\x15\x91\xa4\xee\xea\xb8\x6f\x69\x48\xd1\x31\x36\x63\x6b\x0d\x58\xbd\xba\xf5\xbe\x63\xf6\x0c\xd3\x58\xb8\x1e\x37\x9a\x46\x2c\x98\x70\x9d\xb3\xa7\xf8\x2c\xda\xfa\xb0\xc9\x7e\xbb\x61\xae\x5f\x7d\x77\xe1\x34\xce\xaf\xae\x1a\xd5\x27\xd8\xb8\xa9\xe3\x1c\x3b\xf0\x05\x6c\x9e\x9b\x0f\x06\x99\x8a\xb3\x33\xa2\x4e\x04\x08\x23\xb7\xe3\xe1\xa7\xcf\xc4\x51\x67\x37\x64\x11\x44\x04\xb7\xcf\x04\xb6\xd6\xae\xbf\x9c\xfa\x64\x2a\x16\x6a\xdf\x47\x8a\xce\x7b\xca\x73\x26\x58\x85\xbc\x20\xe4\x54\xec\x98\xa2\xd0\x9b\xc7\xa4\x45\x60\xf2\xa1\xf6\x78\xad\xcd\x6a\xc7\x3e\x09\x40\x3d\x07\x90\x3f\x09\x4a\x60\xce\x01\x46\x41\x9d\x9d\x11\x36\x9f\x93\xa9\x7e\x84\x34\x35\x88\x08\x88\x58\x71\xa2\x8e\x76\x88\xdc\xf3\x9a\x19\x8e\x58\x71\x9f\x2c\x3c\xb6\x24\xa0\xfc\x34\x3d\x8b\x9a\x1a\x84\xc5\xa8\x31\x9f\x13\xe6\xcf\xc9\xc2\x8d\x78\x6a\x94\x9c\xe8\xf2\x44\xcb\x4c\x54\x34\x89\x4b\x5a\xa4\x66\x92\xe4\xa0\x8a\xb4\xc8\x43\xaa\xcc\x22\x88\xca\xd7\x2e\xf9\x9f\xd4\x20\x55\x79\x88\x75\x4d\xdc\x37\x6f\x32\x93\x4d\x85\x9a\x27\xad\x14\xf2\xc1\x4d\xa9\x4c\x85\xbb\x28\xcb\x43\xaf\x6a\x7a\xe4\x55\xcd\x1f\x78\x55\x41\xd8\xf2\xc1\x61\x57\x2a\x65\x85\xfc\xf6\x1b\x39\x98\x7c\x50\x73\x8f\xba\x1c\x53\x91\xe8\x51\x0d\xb7\xf1\xea\x90\x60\x8a\xf3\x50\x7b\xac\x64\xe2\xbd\x66\x82\x9e\x80\x07\x1b\x25\xf0\xaf\x9a\x71\x12\x7b\x12\xd7\xd7\xc3\x42\x17\xe9\x57\x75\xd7\xd0\xcd\xd4\x4f\x95\xbc\x72\x2a\x30\x1e\x92\x69\x90\x4b\xc3\xcb\xc6\x8f\x75\x4b\x7e\xdd\x45\xb9\xe0\xbc\xb0\x42\x0a\x06\x65\x62\x64\x41\xfb\xbc\x72\x3d\x5e\x4e\x0d\x2c\x43\x41\x17\x30\x9d\xc2\xb3\xc7\x72\xa5\x5c\xd1\x6c\x96\x8f\x7c\xee\x8b\x68\x9f\x06\xfa\x22\x0a\x36\x49\xf8\xca\xec\x15\x01\x49\x8e\x1f\x89\xe7\xc6\x42\x61\x1f\x1c\x66\xa2\x93\xab\x78\x9e\x59\x3e\x98\x32\x0f\xb3\xf0\xef\xbf\xc9\xc3\x63\x25\x97\x82\xd1\xd6\xcf\xb8\x24\xb2\x3c\x43\x8e\x41\x7a\xa1\x20\x31\x89\x38\x9b\xef\x15\x4e\xc4\xc5\x36\xf2\x49\xd1\xc1\x69\xa2\xeb\xeb\x75\xbe\xe2\x14\xc3\xe6\xaa\x8d\x3c\x70\xd5\x73\x0e\x46\x31\x2f\xaf\x09\x64\xdf\xa1\xd6\x27\x92\x10\xb0\xf2\xa0\x50\x7a\xf2\xb8\xb9\xb4\x04\x84\xf4\x4c\x97\xb4\x88\x88\xb6\x3c\x9b\x4d\x04\x79\x22\x2d\x52\xbf\x26\x4f\x47\x82\xa4\x72\x3c\xe5\xe5\x48\x24\x09\xb1\x20\xe4\x71\x1e\x9e\x34\xfe\x18\x8d\x87\x29\x87\x78\x8f\xe4\x3f\xad\x16\xa9\x55\x72\xe2\x2d\x98\x17\xf3\xc2\xac\x5d\x94\x53\xb8\xbc\x20\x87\x96\x93\x27\xd5\x65\xf7\xed\x5b\x93\xd4\x2b\xd7\xf9\xba\xb1\xf5\x04\x69\x91\x82\x33\xec\x72\xc1\x58\x35\x3e\xd6\xad\xb0\xa8\x64\xa1\xaf\xa2\x47\x77\x77\x32\x79\x76\x46\xbe\xa6\x85\x9f\x38\xcc\x59\x71\x1c\xc7\x40\x38\x38\x3a\x27\x2d\xf2\xf2\x7a\x9d\x21\xca\x55\x02\x32\x26\x16\x41\xc4\xf5\x65\x40\xad\x81\x2a\x94\x13\x84\xf4\x54\x38\x29\xd7\xc4\x0f\x84\x42\x33\x89\xbf\xf5\xbc\x74\x22\x8c\xb8\x1c\x3f\x0b\x23\xbe\xe0\xc2\x59\xf1\x79\x42\x46\x1d\xbb\xa7\xb0\x8a\x99\x49\x6a\xb9\x21\x85\x90\xd3\x44\xba\x1a\x14\x51\xa6\xb9\x6c\x92\x5a\x9a\x3e\x29\xfc\x81\xf7\x92\xa5\x29\x11\x40\x9e\xe3\x93\x90\x89\x15\x49\xf2\x2d\x9f\x7c\xf9\x33\xf9\x72\xba\x9a\xbc\xe4\x3d\x52\xe4\xde\x90\xbc\x21\x53\xad\x49\x99\x1a\xe4\x0d\x29\xbf\x4c\x8d\xfa\xd4\x68\x4e\x0d\x27\xf0\x05\x73\x7d\x1e\xc5\x6f\x97\x41\x30\x9f\xed\xf9\xd4\x30\xa7\xc6\xf9\xe1\xa4\x17\x2c\x5d\x1f\xa7\x1a\x87\x53\xcf\xdc\x73\x82\x8d\xc4\x7b\x87\x93\xee\x9c\xfb\xc2\x5d\xb8\x3c\x7a\xcb\xc2\x10\x27\x2e\x0e\x27\xa0\x49\x9a\x1a\xaf\xe9\xca\xf4\xf7\xdf\xa9\x56\x20\x70\x15\xe5\x7c\x99\x1a\x35\x44\xbc\x5c\x38\xb5\xd9\xfc\xfc\x1c\x69\x49\xc9\xd9\xf9\xd5\x79\xfd\xea\xe2\x5c\x93\xb7\x7e\xe9\xd4\x9d\xdf\xe7\xe7\x9a\x9c\x8b\xc5\xc5\x25\x6b\x5c\xd4\x35\xe9\x78\xa3\xf1\xbe\x36\x67\x57\x9a\x5c\xb3\xda\xbb\xcb\xda\xac\xd6\xc0\xa1\x2b\xa9\x20\x77\xe6\x0d\xa7\xe6\xe0\xd0\x7b\x49\xeb\xe2\xfd\xa2\xce\x2f\xdf\x4b\x21\xa4\x60\x0d\xb6\xb8\x3c\x3f\x6f\x70\x5d\x15\xa9\x00\xbe\x55\x9f\xe2\xa9\x51\x94\x21\xca\x41\x27\xfc\x5d\x94\xbb\xe9\x52\x0a\x5e\xcf\x6a\xbf\x0d\x75\x99\xb8\x8b\x24\xe7\xdc\x18\xd6\xf0\x2c\xf3\xf2\xb5\xe9\x68\x81\xcd\x2f\x7b\x18\x45\xa7\x81\xab\xea\x33\xd7\x61\x07\x01\x62\xe0\x07\x0f\xc2\x88\xcf\x9f\x13\x51\xca\x90\xba\xe1\x56\x10\x57\x10\xd7\x57\x3d\x21\x4a\x56\x39\x6a\xe5\x48\xeb\x1f\xf8\x6a\x09\x36\x15\x6e\x33\xeb\xfe\xd2\x41\xaf\x29\xab\x6a\x36\xa2\x44\x6d\x92\x97\xb4\x80\xe5\xd6\xcc\x8e\x5c\x55\xb5\x3e\x35\xef\x8b\x82\x26\x25\xe9\x6f\x70\xcd\x50\xf4\x93\x16\x27\xf9\xcd\xc6\x0b\x7c\x98\x5f\xb5\x6f\xa0\xff\xd5\xd8\xa7\x9d\x6f\x8e\x7f\xd5\xcb\x16\xb4\x0c\xf7\x8b\x74\x15\x60\x2b\x86\x24\x58\x68\xc4\xf2\x75\x21\x2f\x5a\x41\xc5\x76\x63\x02\xbb\x19\xa2\xb2\x3a\x26\x81\xef\xed\x25\x75\xec\x6f\x64\x2c\xeb\xf1\x9b\x2b\x95\xa9\xe5\x70\xdb\xc2\xe6\x73\x17\x5e\x98\xa7\xd7\xeb\xa2\xda\x04\x5e\x4f\x51\xd5\x70\xc7\x8f\xb7\x11\x3f\x2e\x71\x10\x2a\xc9\xa7\xd4\xac\x80\x66\x16\x51\xfb\xa7\xbc\x58\x41\x44\x9e\xd8\x8e\xc9\x02\x9b\x42\x1f\x97\xf0\x36\x13\x4c\x8f\xc0\x83\xae\xf9\xba\x20\x93\x32\x3c\xb5\xc2\xbf\x90\xb3\x33\x52\x23\x1b\xce\xfc\x98\x4c\x0d\xe6\x61\xc3\x95\xd1\x84\x9a\xe6\xa7\xe1\x09\xed\x63\xba\xf2\x24\x38\xce\x36\x82\xe6\xd5\xdb\xa7\x9b\x3e\xa3\xaa\x37\x07\xc7\xcc\xf3\x5d\x42\x62\x9f\xa2\x3d\x43\x5b\x6e\xdd\xf4\x85\x9d\x70\x2f\xe6\x39\x02\xb0\x18\x71\xb1\x0d\x53\xc9\xa0\x94\xa0\x49\xf5\x82\x72\xe0\x0e\xd2\xc2\xa4\x57\x28\xe5\xc4\xa1\x49\x83\x0d\x5b\x32\x58\xd8\xf3\xa2\x1e\x6e\x51\xfe\xc5\x03\xe0\xf1\x03\x7a\xb9\xfe\xeb\x35\xd7\x03\xfd\x82\x1d\x48\x2b\x11\x5f\x4b\xca\xc4\x04\x82\x45\xa2\x60\xf7\x9d\x69\xae\x56\xec\x16\x49\xbe\xbc\x57\x73\xdf\xdd\xcb\x25\x09\x50\xca\x49\x05\x88\x87\x5f\xf1\xf3\xbc\x25\x56\x55\x7d\xb3\x27\x2d\x52\xda\x8a\xc5\xdb\xab\xd2\xf5\x31\x8c\xfa\x9a\x0f\x2d\xed\x79\x2d\xdf\x89\x92\xc2\x36\xcf\x77\x0e\x1d\xa0\x28\xe9\x17\x01\xca\x53\xc3\x0f\x7c\x07\xd6\xf2\xc2\x66\xc2\x77\x72\x1a\xbd\x1e\xcb\x15\x47\x0e\x69\x9d\xea\x57\x8e\x2c\x2d\xad\x46\xf0\x7e\x00\x99\xf1\x05\xb4\x7d\xb1\x60\xce\x9a\x6c\xfd\xe7\x60\xeb\xcf\xa1\x1b\x5c\x72\x41\xb6\x31\x5f\x6c\x3d\x39\x27\x22\xe6\x70\xe2\x31\xc1\xa3\x03\xeb\x4a\x3a\x32\x1c\xf1\xb6\x42\x39\x27\xee\xa1\xf1\xf5\xea\x53\xc6\x5b\x0d\x87\x26\x82\x2c\xdd\x05\xee\x9c\x6c\xf8\x86\x78\x9c\xad\x71\x71\xed\x75\xaa\x45\x86\x54\xf7\x21\x48\x8b\xa4\x03\x10\x3d\x20\xcf\xd6\xf3\xae\x73\x28\xfa\x45\x89\xb2\xf2\x65\x25\x0f\x92\x9e\xdf\xfc\x42\x61\x4a\x2b\x84\x44\x48\x2a\x52\x6e\x36\x9b\x3f\x9e\xd1\xcc\xf7\x75\x1f\x82\x61\xd0\x1c\xe4\xb7\xdf\x94\x61\xaa\x02\x87\x5b\x2d\x52\x02\x9d\x4a\xe4\xbf\xa4\xb4\x71\xe3\xd8\xf5\x97\x25\xd2\x24\x19\xcc\x81\x12\xd3\x74\x6b\x88\xd7\x3d\x74\xc2\x0a\x07\x6f\x7f\x1c\xbe\x43\x18\x1d\x13\x42\xf9\xaa\xea\x9a\x08\x64\xc7\x47\x7d\x5b\x40\x4a\xe4\x4d\x72\xce\x42\xde\x90\x12\x59\x30\xd7\xe3\xf3\xea\x74\xea\x97\x61\x2a\xd3\xee\x0d\x29\x35\x11\x3a\x91\xea\x0d\x29\x55\x4a\xa7\xf8\xf9\x6c\x83\xcc\xd0\xf4\xc0\x11\x23\xeb\x24\xb8\x50\xf6\x4b\xb8\x9d\x82\x53\x97\x5b\x48\x2b\x91\xe2\x18\x10\x95\x79\xa8\x3f\x96\x11\xe3\xc8\xb2\xaf\x87\xee\x3d\x5d\x3b\xd3\x9d\x52\x9e\x86\x4e\xe1\xf5\xb0\x54\x65\x15\x26\xbb\x71\x93\x15\xf7\x4a\x3e\x84\x0e\x53\xab\xfc\x42\xc0\x10\x4d\x52\x52\x64\x4a\x26\x91\xae\x6d\x26\xc5\x33\x5f\xb2\x5f\x4d\x28\x64\xb5\x5a\xad\x52\x50\xec\x4e\x67\x56\x41\x3d\xcd\xf6\xcc\x49\x6d\x5e\x71\x36\xaf\x6a\x57\x84\xca\x92\x4a\xf1\x1e\x57\xef\x9b\xd4\x92\x56\x85\xb6\x2f\x59\x53\xb4\xe3\x91\xa4\x1f\x82\xbe\x2a\xe6\x05\x27\x9e\x7a\x25\x56\x33\xdf\xbf\x57\x4e\xb6\x43\x1b\x3c\x05\x43\xb0\x7f\xa2\xae\xad\xc5\x45\x54\x9c\x82\x56\x5a\x23\x27\x03\x81\xc8\x1b\x51\xf9\xc6\x6d\xc5\xa2\x4d\xe0\xef\x93\x8e\xf2\x24\x87\xb9\x56\x38\xcb\x69\xbf\x0b\x79\x62\x2a\xba\x59\x85\x71\x17\xe5\xff\x14\xd1\x08\xf2\x88\xb9\xf3\x41\x75\xcc\x98\xbf\xa7\x75\xc8\xe8\x85\x64\xd7\xb6\x9a\xd8\x20\x23\xf3\x66\xa2\xd9\x6b\x25\xbf\x4b\x79\x3d\xb6\x41\x76\x6d\x8b\x04\xfe\xbf\x6a\x1d\x15\x68\x9d\xd3\x13\x02\x3e\x58\x10\x79\x6d\x0c\x6b\x70\x29\xcd\xbb\x12\x54\x38\x39\x53\xd5\xae\x93\xfd\x1f\xb4\x3e\x46\x06\x1b\xe0\x65\xb4\x26\x29\x49\x35\x4a\x47\x5a\xff\x2b\xd9\x52\x66\x84\x92\x46\x10\xec\x99\x12\xd3\x4d\xe7\x24\xfb\xbc\x05\x5b\x73\x74\x45\x1c\xc2\x72\x2c\x03\x3e\x81\xda\x04\x73\x4e\x7e\x23\xf5\xa6\xa4\x07\x9b\x52\x96\x6e\x50\xe7\x66\xba\xfb\x75\x0f\x31\xce\x9b\x64\xc3\xa3\x25\xc7\x83\x4b\x75\x43\xce\xe5\xb8\xb9\x51\x94\x92\x7d\xa4\x1f\x1f\xa0\xbe\x6b\x12\x95\xb6\x12\x52\x9d\x7f\xca\x2e\xdc\x8f\x8b\x25\xbc\xfa\xbb\xde\x24\x33\xbe\x62\x3b\x4e\x3c\x77\x9d\xee\xcb\x4f\x46\x81\xd0\xa3\x00\x19\xe1\xce\x8f\xe7\x22\x21\x51\xbf\xa2\x44\x29\x3e\x8c\xc3\xb9\xca\xf5\x11\xda\x55\x25\xa7\x88\x06\x90\x40\xbc\xc3\xef\x08\x2a\xde\x14\x0b\x08\x37\xa9\x22\xc6\x9a\x1c\x4d\x1e\xaa\x99\x97\x8b\x89\x43\xc1\xf7\x61\x5f\xa5\xc2\x45\xba\xb9\x0c\x8d\x4b\x2a\x61\x61\x52\x94\xfd\x38\x05\x28\x0e\x35\x1f\xa2\x6c\xce\x17\x6c\xeb\x89\x52\x71\xde\xaa\xa0\x93\x32\xbf\x16\x98\xe4\xfc\x48\xdf\xff\xb4\x48\x29\xc6\x4c\x28\x55\x48\x72\xc2\xbb\xe6\xb0\xdf\x92\x10\x95\xc2\x06\x76\x8e\xe2\xac\xf9\xde\xcc\xbc\xb8\xe6\x7b\xd8\xbd\xe9\x66\x79\x58\xf3\xfd\xe3\x35\x79\xad\xce\x5c\x7f\x8e\x56\x40\xa4\x4a\x2a\x9a\x02\xf6\xe3\xe3\x0c\x59\x72\xd1\x96\xda\x76\x30\xc9\xf2\x35\xd6\x09\x36\x21\x13\xee\xcc\xf5\x5c\xb1\x27\xcf\xae\x58\x11\x3f\xf0\xdf\x26\xa5\x57\x95\xff\x93\xe1\xe7\xeb\xe1\xb7\x51\x0e\xd5\xb7\xc8\xaa\xfa\x25\x0b\x09\xd8\x4d\xed\xfe\xb5\x6a\xf7\xdf\xb4\xe8\xa4\xb2\x65\x52\x97\x35\x63\x48\xd4\x87\xd4\x7d\x60\x13\xd2\x2c\xc4\x96\xa4\xa5\xca\xf1\x31\x8d\x6b\xf2\xfa\x4f\x71\x34\x2f\x4b\xc1\x4d\x52\x62\xa5\x74\x15\x39\xb0\xb6\x1c\x3d\xb6\xf8\xaf\x7c\x96\x3a\x69\xd1\x40\xb7\xa8\xfa\x50\x99\x54\x1e\x3d\x2e\x7e\xe9\xdb\xd7\x11\xbe\x54\x3b\x11\x34\xe3\x1f\x6e\x67\x9e\xeb\x7c\x0f\x99\x58\x7d\xff\x7e\x52\xb6\x90\xb4\xc8\xd4\xa8\x9e\x4d\x0d\xfd\x98\xdc\x57\xfb\x9c\xfc\xa1\x4b\xbc\xf7\x9d\xdc\x6e\xb5\x50\x59\x9e\x5b\xc4\x22\x58\xa8\x89\xba\x72\x5c\x45\xaa\x38\x78\x4d\xc4\x2a\x0a\x9e\x81\x8f\xa6\x00\x7e\x43\x49\x2f\x25\x93\x16\x11\x2b\x37\x7e\x98\xe6\xfe\xf7\x20\x3b\xe0\x9d\x1a\x8f\xbf\x02\x82\x5f\xb3\xae\x53\xfa\x87\x17\x9c\x93\xbd\x24\xb2\x94\x5f\xc9\x30\x25\xb3\x41\x15\x24\x07\x50\xa4\x55\xf8\x89\xfc\x10\x36\x4f\x1e\xaf\x52\x27\x5b\xc6\x82\xcf\x57\x1a\x68\xee\xcb\x55\xe1\xc7\xf8\x0c\xf8\xc1\x4d\x4e\x5d\xf0\xd0\xe4\xf8\xfb\x24\xf4\xb1\x07\x7a\x67\x87\x5b\xa7\x3e\xef\xe1\xa7\xc6\x40\xac\x78\xa4\x9f\xb2\x9d\xfc\xa2\x67\x3c\x26\x97\x10\xbe\x04\x81\x30\x9a\x86\xf1\xfa\xbf\x01\x00\x00\xff\xff\x73\x73\xa0\x8e\x71\x32\x00\x00") // FileIdentifierStaticLogoSvg is "identifier/static/logo.svg" -var FileIdentifierStaticLogoSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x5a\x3d\x93\x5d\x47\x6e\xcd\xf5\x2b\xba\xc6\x89\x1d\x18\x6c\x7c\x35\x00\x97\xa8\xc0\x37\x99\x60\x59\xe5\x48\x01\xb3\xad\x95\x96\x62\x15\xbd\xab\x5a\xd1\xe2\xfe\x7c\xd7\x41\xdf\x7b\xdf\x8c\xb4\x62\xc2\xc7\xf3\xfa\x1b\x0d\x1c\x1c\xf4\x9b\x6f\x7f\xf9\xf5\xc3\xf8\xf2\xf1\x87\xcf\x3f\xbd\x7d\x32\x5d\x4f\xe3\xa7\x1f\x3f\x7e\xf8\xe9\xf3\xdb\x27\x99\xf1\x34\x7e\xfd\xf8\xe3\x97\xff\xfe\xfb\x3f\xdf\x3e\xcd\x31\x87\xe9\x1a\xfd\xed\x5f\x3f\x7e\xfa\xf4\xf6\xe9\x6f\x7f\xff\xdb\x8f\x4f\xe3\x9f\xff\xfb\xe9\x6f\xbf\xbc\x7d\xfa\xe9\xf3\xe7\x9f\xff\xeb\xcd\x9b\x2f\x5f\xbe\xd0\x17\xa5\xbf\xff\xe3\xc3\x1b\x99\x73\xbe\xf9\xe5\xd7\x0f\x4f\xdf\x7d\xf3\xed\x87\xf1\x97\x4f\x1f\x7f\xfe\xcf\x9f\xff\x8c\x55\xfe\xef\x1f\x9f\xfe\xfd\xdf\x80\xe7\x7f\xa0\x0d\x5f\x8e\x1f\xde\x3e\xbd\x13\x27\xb1\x1a\xec\x4e\xcb\xf3\x60\x26\x95\xb8\xe0\x98\x83\xd7\xa2\x4a\xc7\xff\x72\x52\xcd\x38\xe6\xe0\x32\x4a\xa9\x71\x76\x96\xb9\x88\x7d\x8d\x73\xaa\x13\x1e\x5a\xc4\xc1\x77\xab\x4f\xb2\xca\x7b\xec\x05\xcf\x49\x2f\x78\xae\x76\x8e\xbd\xb6\xf1\x7a\x93\xef\xef\x4d\x57\xd1\xf2\x75\xb0\x51\x31\x5f\x70\x2c\xf2\xc1\xc5\x24\xe6\xfb\xff\xe7\x1a\xfd\xff\x98\xe4\xab\xc6\x35\x64\x09\xf1\x8b\x05\x36\x3c\xd4\xc9\x33\xee\x56\x53\x2a\x6c\xee\x1c\x7b\xc1\x73\xda\x0b\x9e\x2b\x5e\x63\xcf\xcd\xbc\xde\xea\xfb\xeb\x1a\xbf\xfc\xf4\xf1\xf3\x8f\x4f\x6f\x5e\xde\x04\x73\x50\x58\x0e\xf6\x20\x73\x79\x66\x5e\xb0\xc9\xf7\xec\x49\x31\xe5\x7b\xce\xa4\x88\x75\x9c\xdf\xb7\x25\x03\x46\x62\xa6\x25\x7b\x05\xac\x34\x9d\x96\xe8\x85\x0f\x7c\x48\xdc\xcd\x18\x64\x8f\xc1\x17\xdc\x73\x3f\xd6\x3a\xf7\x50\x8a\xa5\x9e\xb3\xf6\x47\x92\xd8\xef\x37\xb4\xbf\xbe\xa7\x4c\x25\x7d\xac\x17\x41\x1a\x8f\xdd\x04\x93\xc6\xa3\x75\xed\xbb\xda\x03\x37\xf8\x83\x9d\x2c\x27\xf1\xe7\xc5\xfd\xef\xfc\xdd\x1e\x16\xbc\x32\x49\xdd\xc7\x0a\x8a\xd2\xed\x77\x8f\x0d\x9c\xf0\x48\x25\x2e\xbb\x5b\x33\x49\x0d\xad\x4a\xb2\x78\x14\x9f\xa6\x4d\x4a\xf7\xa3\x8c\x96\xbf\x68\x2d\xca\x29\xf7\xd8\xcb\xd2\xd7\xd4\xcc\x4e\x32\x1f\x73\xb3\xc8\xe9\x19\x7b\x63\x37\xfe\x83\x23\xb2\x30\x2e\xe3\xf9\x74\x84\xaf\xfa\x8a\x27\x89\x5b\x47\x84\xb9\x1d\x6c\x46\xaa\x7c\xe1\xc1\xaa\x34\xa7\x75\x3c\x45\xf2\x03\xe7\xa4\x98\xf6\xbd\x4c\xa1\x9a\xfe\xbd\x4c\x23\x76\x7f\x66\x35\xcc\xf7\xcc\x9a\xe7\x67\x91\xbf\xe8\x77\x8e\x3b\xce\xef\x3b\x14\x74\xf9\x60\x0b\x2a\xf6\xc1\x8b\xa9\x7a\x3f\xe7\xbe\x36\x3e\x78\x25\x79\xd9\xa3\x3d\x82\xe6\x5c\x8f\xf1\x17\xfe\xa3\x7d\x05\xe6\x5b\xcf\x9c\x72\x7e\x2a\xf9\x5c\xbf\xdf\xd7\xfe\xfe\x71\xde\x10\xe2\xc8\x87\x3d\x5e\xdb\xeb\x6b\xa6\x95\x12\x0a\xc4\x53\x93\xcd\x3a\x24\x92\x52\xf3\xc2\x43\x56\x90\x37\x75\x80\xaa\xf4\x81\x4f\x3a\xb8\x31\x88\x4e\x79\x5c\xe3\x37\x0f\xe6\xb8\xe6\x3f\xf1\xa1\x73\xd1\xca\x75\xb7\x2b\x27\x4d\xd6\x7b\xfc\x8d\xcf\xf9\x6f\x7c\xae\x7f\x8d\xbf\xf7\xf7\x7a\xff\xef\x1f\x07\x6a\x0a\xca\x43\x52\xc8\x2e\x82\xc0\x86\xc2\x68\xf6\x86\x41\x60\xeb\x81\xaf\x03\x5d\xb8\xe9\x2f\xc7\x3d\xbe\xd9\xf1\xc5\x82\x1b\x1f\x3a\x95\x78\xf2\xdd\xae\xcc\xe4\xd8\xf0\x39\xfe\xc6\xf7\x81\x4e\x7c\xae\x7f\x8f\xbf\xf6\xf7\x7a\xff\x5f\xbb\x3b\x0d\xee\x40\xbd\x22\x4a\x63\x62\xeb\x2f\xd8\xe2\x5c\x72\x7f\xff\xe0\xec\xc5\xe4\x75\xb1\x34\x38\x1c\x3c\x73\xe3\x43\x6d\x52\xc9\xa3\x59\x85\x7c\xd6\x63\xf8\x85\xf7\xf4\xbf\x0b\x6c\xd5\x9e\xee\x59\x25\xce\xcf\x45\x73\xd6\xef\xb7\xb5\xbf\xbf\x73\xa4\x6a\x90\xea\xe5\x1a\x8f\x6d\x9d\xf8\xd0\xe5\xc4\xa9\x8f\xf6\x58\x0f\xd7\xc3\xf8\x0b\xff\xd1\xbe\xc2\x61\xae\xe7\xd3\x6c\x5f\xb3\xac\xa9\x53\xa4\x0e\xe6\xa4\x85\xa4\xc4\x41\x66\xf9\x6c\x6a\xe4\xaa\xcf\xa6\x73\x7f\x4a\x91\xa4\x7e\x7f\xf7\x83\x17\x8a\xfd\xc9\x78\x92\xca\x0e\xc0\x65\x7e\x68\x2d\xb2\x29\x17\x1e\x9a\x4e\x33\x7c\x7b\x75\xc8\x03\xe7\xa4\x2c\x3f\x6e\x8c\xa3\x71\x8c\x6b\xfc\xe6\x5a\x1d\x7b\x7e\xbf\xf0\xb3\x71\x12\x87\x1d\xd6\x26\x5d\x8f\x7e\xea\xb4\x66\x34\x27\x1b\xc7\xd8\xe7\x92\xe6\xe4\xc4\x3e\x5f\x9f\xf3\xfd\xbb\x7d\xa0\xdd\x21\xe6\x3a\x80\x39\xf6\x1d\xa9\xd6\x30\x90\xfa\x9d\xef\xb0\x91\x5e\xf8\xc2\xcf\xe7\xc6\x0e\xad\xa2\x42\x98\x9e\xfd\xb4\x98\x3c\x4e\xa1\xa2\x2f\xf0\x75\xe0\x0b\x23\x6a\x10\x45\x3d\xfe\xd4\x24\xe6\xe7\x81\x6f\xfc\x27\xec\xeb\x8c\x49\xd1\xde\xa5\x02\x62\x33\xa3\x51\x22\xf1\x34\x6b\x8e\xdf\x9c\xe9\xab\x6c\xe8\x93\x62\xbd\x48\xcb\x5a\x34\xd5\x0e\xb1\x24\x47\x90\x6a\x50\x16\x0f\xb1\xd5\x0b\xea\x22\x2f\x1f\x62\x46\x82\x61\xea\xc4\xae\x77\x9a\xbe\xbf\x3f\x53\xa2\xb8\xd0\xbc\x3c\x1a\xda\x71\x31\xad\x8b\x2c\xad\x9e\x65\x09\x65\x66\xe7\x83\xac\xfa\x5e\xe6\xec\xcf\x53\x3f\x3c\x9f\xfd\x0f\x69\x37\xba\x65\xc6\xb8\xb7\x7d\x4a\x8b\xdf\x1c\xe3\xab\xa9\xb5\x8a\x78\x21\x95\x20\x0b\xf3\x71\x63\x4f\x9a\x96\x2d\x06\x9c\xd7\x60\xab\x7d\x04\x5c\x04\xb8\xc2\xa0\x95\xe2\x90\x99\xad\x02\xd8\x84\xd6\xda\x47\xd9\x98\xc9\x05\xd8\xc8\x10\x94\x36\x89\x55\x0e\xae\x20\x86\x24\xb2\x20\x16\x90\x0c\xc6\x61\xbd\x75\xaa\xda\x13\xdf\xfb\x39\x71\x26\x55\xab\x8f\x82\x49\x6e\x12\x10\x65\x9a\x79\xe5\x17\x7f\x16\x15\x52\x95\x36\xe1\x4e\xad\x73\xa7\xce\x4d\x66\xcf\x67\xff\x43\x58\xc9\xd2\x6e\x92\xbb\xcf\x9d\x4e\x8a\xfc\xf7\xda\x2e\x5f\x75\x9a\x39\x3b\x1b\x9b\xd2\x4a\x3f\x70\xd9\x95\x36\x8c\x69\xb2\xf5\xdd\xf3\xd4\xa1\x41\x05\x97\xb9\xa0\xd1\xb2\x75\x5c\x50\xc0\x2b\xdb\x7a\xdb\xcd\x49\xd9\x86\x40\xfb\xaa\x9f\xf0\x10\x99\x3b\xd8\xce\x56\xd1\xd6\x6b\xcd\x4d\x3e\x44\x16\x79\x9f\x84\x34\xfc\x10\x31\x32\xcc\x2b\x52\xdd\x95\xa1\x12\x6b\xfb\xeb\x09\xd5\x49\xb4\x8e\x1b\x2e\x92\xd8\x9d\x3b\x33\x05\xe9\xdc\x9d\x55\xd6\xd0\xec\xc8\x16\x11\x5a\xcc\x80\x92\xe8\xcc\x94\xd5\x28\x1a\xc0\x68\x8d\xda\xc4\x6b\xf9\xd5\x86\xc4\x2d\xc3\x26\x89\x41\x34\xbe\xb4\xd9\xfb\x77\x0c\x82\x83\xc7\xb2\x51\x14\x1f\xb8\x86\x54\x88\xce\x20\x06\x81\x45\x76\x2c\x43\xa2\xf2\x03\x26\x68\x98\x8f\x0b\xc6\xa2\x82\x2c\x8c\x22\x5d\x23\x74\x1b\x2f\x27\x09\xf3\x40\x12\xac\x3c\xd0\x98\x5e\x0d\x41\x30\x01\x89\x17\x0d\x63\x0f\x65\x97\x13\x1e\xec\x45\xc1\x75\xb7\xa2\xf8\xe1\x81\xbd\xe5\x8d\xa0\x8b\x71\x3b\x17\x14\xd4\x18\x70\xe8\x3d\x14\x8e\x0f\x46\xbb\x66\x3e\xf1\xc1\x89\xeb\xca\x47\x3b\x8a\x0f\x85\x96\x85\x76\xdb\xb1\xcd\xd0\x09\x0a\xe6\x85\x5b\x2d\x42\xdc\x28\x24\x20\xe2\xc6\xc9\x10\x67\xb2\x48\xf3\x25\x86\xaa\x8e\xe3\xc6\x70\x07\xf1\x6e\x8f\x58\x03\xe5\x54\x25\x08\xfd\x95\xc1\x71\x03\x08\x78\x7c\x31\xa9\x8a\x0f\x99\x4c\x82\xd3\x19\xd5\xe9\x99\x85\x6d\xcd\x49\xb8\x3f\x56\x4a\xe6\x01\x5f\xc7\x4d\x1b\x99\x17\x10\x12\xb1\xb0\x13\x73\xc3\x10\x69\x18\xb9\x00\x9b\xbc\xe0\xd4\xe6\x80\xee\x98\x29\x88\xf7\x4c\x56\xd1\x30\xb2\x5b\x2d\x10\xa6\x49\xb3\x67\x82\x54\xe3\x24\xad\xdd\x06\xd6\x63\xf0\xb9\x9e\xf0\x10\x2e\x8a\xb4\xbb\x55\x26\xa5\x45\x2f\x23\xa7\x9f\x66\xcf\xb4\x30\xaf\x30\xf9\xd2\x51\x8b\xa4\x03\x82\x49\x93\x47\x29\x25\xf8\xf3\x82\x4c\x36\xd7\x71\x41\xb8\x0a\xa4\x2c\x8a\xdc\xb5\xc6\x4a\x5a\x2c\xcd\x40\x29\x3a\x70\xdf\xce\x87\xe8\x6c\x02\xf1\xa0\x9a\x98\xaa\x5a\xbf\xba\x53\x71\x0e\x91\xa0\x8c\x1c\x0e\xf3\x21\x98\x82\x7c\x01\x89\x58\x37\x8a\xc7\x70\x81\x88\xe8\x80\xae\x95\x80\xb3\xa3\x7f\xd1\x8a\x1a\x8e\x4d\x45\xb7\xe2\x13\x54\xdf\x71\x08\xfe\x03\xe2\x85\xbe\x4e\x2c\x31\x2c\x10\x5e\x03\x5c\x00\xf2\x36\xa8\x8a\xec\x88\x4e\x5f\xc3\xe4\x64\x0a\xa1\x5a\x1b\xb2\x0e\xc0\x19\x02\x78\x87\x74\x6c\xd4\x17\xed\x48\xc7\xbb\x6d\x26\x29\x73\xbf\x10\xb4\xc4\x17\xca\xd0\x61\x88\x42\x3f\x00\x05\xf3\x04\xc9\x42\xc4\x33\x2d\xd0\x62\x34\x7d\x00\xf2\xec\xd6\xce\x22\xb3\x6f\xc9\xf2\x74\xd6\xa2\xc2\xa2\x50\x25\x5b\x6c\x18\xdb\xb0\xa2\x19\x75\x20\x52\x84\x61\x34\x05\x81\xa3\xa6\xd5\x82\xf9\x2d\xa4\xf9\xdb\x4d\xba\xba\xae\x6a\x1e\x91\x5a\xa8\x92\x45\x36\xbb\xcf\xd5\x45\x73\x42\x38\xa7\x51\xba\xe0\x26\x7d\xea\x01\xb8\x6c\xac\x22\x36\xeb\x46\x33\x05\x84\x00\x4a\xeb\x63\x04\xdc\x7f\x57\x60\x58\x3d\x40\x71\xb7\xd2\x40\x79\x67\x37\x6a\x72\x3a\x2e\x54\x42\x75\x3e\x3d\x64\xc7\x91\x52\xd5\x56\x66\x2f\xc2\xee\xfd\x3b\x85\x67\x8a\x8c\xe5\x94\xcb\x5b\x24\x2f\x19\x4b\x89\x33\x5a\x7a\xc3\x40\x6b\xf7\x51\x70\x72\x34\x64\xf5\x43\x75\x75\x50\x9a\x12\x6b\x0c\xcc\xb4\x42\x86\x64\x5f\x2f\x0a\x0d\x09\x3f\xe1\xa1\x53\xc8\xe1\xeb\x57\x2b\x53\x86\x35\x2c\x69\x08\x77\x85\xfc\xd1\x03\xc8\xa7\x0c\xe4\x4e\x08\x6f\x5c\x65\xa0\x10\x68\x27\xbb\xe1\xce\x26\x37\x4c\x72\xde\x9d\x11\x2d\xc6\x7d\x97\xda\xc4\xef\xc3\xc0\x92\x72\xe8\x2c\x52\x2b\x5c\x2d\x32\x05\x2f\x5a\x4b\x06\xb4\x00\x36\xf1\xca\x14\xef\xdf\x21\x3e\x96\x1a\x72\x48\xd4\x0e\x9e\xb0\xc0\xcc\xde\x79\x2a\x28\x73\x7b\x2a\x24\xb0\xc0\xb0\x0c\x58\x93\x0f\x40\xad\xc0\xba\xde\x6d\xe9\x01\x4f\x9d\x28\xb9\xa4\xba\xc4\x33\x04\x63\x1e\x80\x2b\x0c\xde\x27\xba\x5b\x71\x73\x96\x94\x65\x03\xf1\x8d\xaf\xad\x10\x09\x1d\xee\xd8\x23\x02\x0f\x32\x44\x27\xa5\x74\x1c\x26\x37\x35\xb0\xad\x0e\x59\x44\x8f\x0a\xcd\xb4\x0e\x77\xd5\x21\xb0\xdf\xaa\xe1\xd6\xf3\x0b\x88\xbe\x14\x87\x77\xb7\x43\x70\x99\xae\xe8\x1c\xcd\x32\x45\x3d\x11\xcb\x1a\x02\xb1\x35\xb9\xb7\x84\x9a\x1d\x17\xbe\xc3\xc5\x20\xb9\x4c\x29\x10\xa4\xa8\x9c\x57\x8b\x53\x95\x3c\x03\xaf\x35\x69\xcd\x86\x02\x1a\x31\xef\x37\x20\x5b\x5d\x68\x40\xd8\xce\x72\x40\xd3\x75\x88\x1b\x71\x26\x4c\x2c\x2b\x86\x2c\xa5\xf0\x9d\xdf\x85\x77\xe9\x8c\xe2\x85\x66\x56\x17\xce\xe2\x27\xdc\x75\xb5\xe5\x86\xb1\xfb\x06\xdb\x09\x0f\x09\x6f\x4a\xbd\x5b\x17\x4d\xdb\x9d\x91\x04\x62\x51\xcc\xee\xcc\x82\xce\xd8\x7a\x2f\xdb\x92\x2f\x40\xe9\xda\xbb\x80\x65\x02\xb7\xd7\x9d\x05\x79\x0b\x04\x90\x0d\x13\x46\x06\x87\x5b\xfb\x8c\x81\xb2\x6a\x51\xc2\x18\x42\x59\x72\x48\x45\x3f\xd0\x75\x2b\x6a\xfb\xd8\xae\x0b\x7a\xc8\x07\x74\x12\x3b\x6e\xa4\x24\xb9\xfb\xfa\x44\x7d\x4f\x1a\x8d\xa4\xe5\x15\x7c\xad\x82\x66\x75\x68\xa5\xf5\x92\x4d\x8f\x49\x0c\x2e\xc6\x0e\x70\x2d\x41\x0e\x0b\x17\x58\x7d\xc8\xa2\x84\xfb\xd4\xda\xbe\xbc\x48\x74\xf7\x55\x64\x50\x27\x07\x4b\x96\x10\x43\x8b\xcf\x9e\xb7\xcd\xc0\x63\x0e\x94\x0d\xa6\x3a\xe6\x21\x06\xd5\x8a\xaf\x34\xc8\x73\xe0\x74\xd5\x6e\xe8\xcd\x8d\x24\x96\x07\xa0\xa0\x86\xdb\x4c\x04\x97\x45\x6a\xe2\x22\x5b\xd5\x70\x21\xf4\x21\x97\xd6\x4e\x67\xb3\x21\x62\x0d\x70\xe2\xea\x99\x0c\xb6\x17\x24\xbd\x81\x8c\x91\xde\x31\xc6\x08\x3d\xa4\x22\xed\x80\xe4\xe6\x12\x72\x58\xe3\x82\xdb\x9a\x17\x5a\x64\x67\x5e\x84\xea\xe9\x6d\x4b\x43\xdd\x42\x32\xb4\xfb\x9a\xa2\x28\xec\x8b\xee\xa4\x29\x0b\x97\xc6\xbc\xfb\x3e\x58\xe1\xfd\x3b\xcd\x45\xba\xb2\x95\x8a\x96\x76\x2d\xad\x2c\x17\x1e\x0a\x26\x47\xe2\x68\x26\x82\xcf\x81\x17\x37\x5e\xcb\x0e\x60\x15\x48\x4f\x26\x07\x8d\x02\x43\x29\x4d\xe9\x2c\xf4\xc0\x4a\x52\x75\xdc\x18\xb9\x11\x7e\x08\x31\x0a\x61\x07\x21\xa8\x3c\x34\x98\xa2\x20\xec\x84\xb4\x5f\x63\xbc\x9f\x39\x50\x3c\xee\xfd\x4c\x72\xab\x16\x7e\xd5\xf8\xdc\xff\xc6\x87\xc2\x9b\xf8\x6e\xb6\xe9\x5d\x68\x71\xeb\x0c\x7f\x60\x2e\x5a\x65\xc7\xc6\x31\x78\x16\x4d\xe7\xd1\xc3\x67\xbd\x38\xfe\x2b\xf3\xbc\x7f\xa7\x50\xcb\xc8\x8d\x13\xca\x51\x0f\x60\xa9\x6c\x3c\x0d\xe7\xa9\x2d\x48\x31\xc0\x1b\x22\x15\xa1\x6e\x5a\xdc\xbd\x59\x74\x0b\x41\xed\x56\xb0\x6e\x21\x18\x65\xdb\xc2\x06\x22\x87\xed\xd0\x58\x3d\x53\x80\xec\xa5\x9f\xa1\xa6\x1a\xe8\x3d\x6c\xa8\x09\x19\x32\x35\x34\x8a\x1e\x80\x53\xb5\x21\x18\x07\x24\x1f\xdc\x50\xb3\x21\x4f\x3b\xe1\x7e\xb0\x7a\xb4\x4d\x5a\xb5\xa1\x37\xba\xa6\x75\x3b\x54\x8b\x52\xf6\xc0\x65\x03\x90\x3d\x1a\xc2\x36\x0a\x11\xda\xad\x8c\x69\x55\x69\x6a\xcf\x84\x12\x41\x91\x60\xd0\x1a\x34\x41\x3f\xa8\x8b\xa0\x0e\x20\x3e\xfb\x2d\x6b\xad\x11\xde\xfa\x08\x5d\x43\x46\xca\x2e\xa4\x24\xa8\xca\x47\xc2\xb0\x71\x28\x32\x93\x08\x60\x55\x8e\x86\x56\xa3\xf6\xb6\x6f\xd8\x32\xef\x78\x01\x17\x9c\x0f\x50\x1d\xb0\xdf\x85\x1a\x2a\xc4\xc5\x14\xb9\x67\x86\xd6\x80\x3c\xe8\x75\xb7\xaa\xe5\xbd\xa9\xd2\xd5\x3f\x82\x4c\x3b\x00\xbb\x02\x9f\x90\x60\xd6\xd9\xd6\x76\xc1\x50\xa0\x62\x16\xa4\x64\x6e\x12\x8b\x43\xe1\x5e\xa8\xfb\x75\xa1\x70\x1d\x2a\xd5\x3b\xe8\x3a\x7f\xc9\x7d\x23\x27\x3e\x14\x19\x10\x5e\x7d\xb5\xb7\x3c\x3e\x1f\x50\x6c\x28\xf4\x59\x57\x37\x2d\x3b\x0e\x6d\xa3\x7a\x63\xc3\xc1\x56\xf4\xf3\x01\xbc\xbc\x7c\xe8\x42\x2e\xf3\x86\xb6\xf2\xd0\x56\x6c\x6b\x30\x72\x33\x92\xcc\xca\xfd\xdc\x84\x4c\x0e\xf2\xc7\xb5\x38\xf7\xee\x6b\x87\xdc\x9a\xd9\x3f\x49\x70\x44\x7b\xe9\x0e\xd9\x9d\x81\x6f\x3c\x95\x74\xca\xf1\xc0\x42\x11\xb9\xdb\x51\xd3\x41\xd2\xae\xf1\x9b\x88\x81\x30\xa9\x96\x81\x5c\x50\x20\x2d\x20\x64\x47\xe4\x2e\x91\x93\x8a\xcf\x47\x36\x10\xb7\xa0\xf2\x89\xc6\x9d\x0b\xc5\x29\x31\x3b\x6b\x4b\x94\x96\xe7\x02\x42\x42\x89\xdd\x7a\x7c\xa1\xaa\x85\xbc\xf6\x5d\xba\xe8\x92\xc6\x9e\xd9\x85\xce\x84\xb2\x04\x3f\x41\x47\x9c\x65\xd1\x89\xbb\x84\xf2\xf5\xaa\xd9\x64\x0f\xb7\xb5\x8b\x2a\x39\x47\x2f\x54\x51\x41\x6b\x9e\xdd\x53\xfb\x09\x02\xee\xd0\xab\xe9\xc6\x48\x7f\xc0\x0b\x15\x0c\x3b\x3e\x37\x2e\x14\x65\x46\x75\x2e\x07\x22\x67\xeb\xf4\x01\x78\xbe\x16\xad\x5e\x1c\x5f\x4b\xbf\x2e\x55\x93\x53\x12\xf7\x6b\x13\x13\xaa\x7e\x06\x25\x6b\xd7\xa0\x88\x4b\x60\x54\x4d\xfd\x1e\xd6\x96\x6d\x15\x07\x02\x07\xb1\xf2\x0e\x57\xe0\x36\x0c\xea\xcd\xfe\x0d\x0c\xc5\x90\x76\xc9\x6b\xb2\x5f\xd8\x5b\x72\x73\xd0\x4c\xed\xa7\x2e\xd4\x59\xb8\x07\x8f\xfd\xfc\xbd\x4b\xe8\x49\xac\xeb\x05\xc6\x35\xfb\xf1\xc0\xfb\x57\x16\xcc\x6f\x48\x1c\x7d\xbf\xdc\xf5\x0f\x6a\x8d\xf6\x69\x28\x38\x98\x04\x15\xbf\x22\x3d\xef\xc3\xce\x26\x7e\xe9\x12\x1c\xd8\x9a\xf8\x15\x12\xf2\x00\xce\xfe\x35\xcb\xba\x24\x90\x69\xfb\xdd\x52\xad\x13\x04\x70\x68\xf6\x2b\xe3\x94\xdc\x4f\x6f\x30\x35\xb2\xa4\x78\xd7\xe4\x32\x77\xc8\xcd\xae\xd1\x4f\x47\xd8\xb8\x0b\x48\x58\xf1\x6e\x57\xa5\x84\xdb\xaa\x53\x61\x3c\x42\x3b\xb4\xcf\x03\xe3\xf7\x5b\x37\xf7\x0b\x83\xb7\x3e\x45\xc1\xb0\x3a\xaf\xb5\x90\x81\xd4\x55\x69\xf3\x20\x6f\x02\x1b\xf2\xa6\x30\xcd\x16\xbf\x93\x4e\x6b\x5a\xc6\x78\x1d\x23\xa8\x73\x94\x32\xd7\x28\x27\x11\xd4\x39\x4a\xe5\xfd\x0b\x2d\x24\x4b\x43\x64\x0e\x25\xa8\x02\xb1\x96\xb2\x25\x10\xe6\x47\x43\x09\xc0\x16\x9c\x80\x96\xcd\x89\xfa\x12\xd9\x3c\xfb\x5a\x8e\xb4\x2e\x9c\x54\xa4\x1f\xda\x22\xa0\xa8\x06\x58\x2d\x4d\x46\xa0\x84\x58\x4d\x72\xbe\xfa\x31\x28\xd3\xbb\x15\x4a\x21\x26\x09\x58\x82\xb3\x7f\xad\x5f\x67\xe6\xeb\x37\x73\x06\x9c\x5d\xbb\xa0\xc0\xe8\x5a\x12\x75\x68\xff\x6e\x15\xbb\xd2\xac\x43\x19\x2a\xde\x51\xa4\x42\xe6\xe9\x8c\x7e\x70\xeb\xba\x7f\x48\x55\xc7\x08\xaa\xdd\xe5\x87\xf4\xb3\x89\xed\x5a\x18\xca\x32\x89\xb5\xe1\x9c\xbc\x65\xa7\xae\x5d\xd9\x47\xcb\xc7\xd2\x56\xf3\x1a\x5b\x6b\xaa\x76\xdd\x3f\xa1\xe5\xca\xf7\x54\x8b\x22\x0f\x49\xd4\x35\xbb\x5c\xe7\xea\x1f\xb6\xca\x76\xbd\xb4\x20\xc1\x7d\xd7\x44\xd2\xcf\x64\x80\x16\x6b\xc3\x6e\x84\x30\x07\x8a\x5b\xcb\x37\xda\xba\xdf\xee\x26\xed\xd8\xeb\x61\xd2\x10\x71\x6e\x02\x61\x78\x48\x08\x99\x6f\x28\x98\x15\x49\xad\x11\xf6\x1e\x93\xe2\x7c\x77\x30\x39\x20\x6a\x6b\x2f\x09\xb5\xed\x38\x89\x0e\x73\x12\x10\x81\xf5\x23\x67\xbf\x08\xa0\x12\xb4\xec\xa7\x1f\x03\xeb\x0f\x20\x99\x0a\x94\x30\x2f\x4c\x25\x89\x92\x4c\x20\xce\x61\x1b\x6b\xe8\xe0\x37\x54\x3a\xd1\x7f\xa0\x51\xd9\xd5\x50\x71\xd7\x59\x9a\x28\xac\x84\x96\xf4\xfb\x4c\xc0\x44\xa8\xc1\xac\x0b\x34\x5c\x8c\xee\x94\xe5\x60\x91\x2e\xd7\x3c\x6b\x2c\x70\x47\x76\x2c\xf1\x32\x40\x88\x31\x51\xef\x3f\x3c\x58\x4c\x32\xd1\xd9\xfb\x9a\x16\xb7\x42\x44\xa4\x15\x20\x6e\x62\x17\x82\x08\xb8\x25\x94\xac\xad\xaa\x23\xd7\xe5\x94\xc8\x16\xa8\x9c\x72\x52\x38\xdf\xb0\xdd\x5d\x8f\x1b\x1a\x49\x3f\x11\x3b\xed\x57\xae\x5a\xfb\xc9\x68\xa6\xb7\x74\x73\x6e\x3e\x90\xa6\xee\xd9\x19\x01\x78\x27\x16\x26\xde\x2f\x4a\x9d\x82\x27\x53\x57\xdb\x8b\x82\xef\x94\xd8\x8f\x53\xbc\xdf\x31\xbc\xb6\x80\x67\xf5\x66\x76\x3b\x77\xad\x2d\x43\x4f\x72\xd4\xfd\x0a\xdb\x29\xd7\x63\xb3\x49\xd6\x26\xe3\x2e\x4a\xce\xf7\x11\xe4\x9f\x36\xa0\x76\xe9\x03\x72\x16\xde\x38\x90\x97\x40\x6a\xd5\xe4\x04\x07\xeb\xe7\xcd\x65\x6d\x33\xeb\x4c\x51\x54\x70\x2d\x98\x74\xca\xc5\x3e\x6d\xf1\xce\xa9\x9b\xcb\xfb\x7e\xb2\xd9\x49\x5a\xac\xe3\x32\xfb\x67\x6f\x90\x1b\xb8\x18\x4a\x10\xdc\x09\x11\xdf\xdb\x45\xec\x37\xf5\x2b\x4e\xaf\xb5\x7f\xae\x12\xa7\x4a\x3d\x04\xb5\x88\x9c\x5c\x89\xdd\x43\x83\xa2\x7b\xd0\x44\x01\x86\xfa\x19\x99\x00\xa5\xca\xcc\x43\x7c\xd2\x84\xa4\x6e\xb7\xf0\xfe\x1d\x28\xf7\x6f\x24\xed\x0f\x1d\x5f\x7a\xe1\x43\x32\xf6\x8b\xd4\xd5\x5e\xd9\x82\x14\x5a\x8c\x4f\x32\x91\xa6\x6d\x4b\x3f\x80\x57\x6d\x1a\x9f\x16\x43\x91\x5b\x53\x7b\x71\xdc\x14\x70\xff\xa2\xd2\x37\x56\xfd\x04\x83\xa2\xb2\x9f\x17\x07\xd0\xb2\xfd\xae\xdc\xf5\x19\xcf\x7e\xcb\xc5\x49\x63\xea\xa1\x1c\xa4\x3b\x67\x6e\xee\x15\x12\x24\x81\x99\xe4\xb6\x45\x31\x22\xa6\x82\xc2\x56\xb3\x7a\xa8\xb5\x03\xf2\x6e\x4d\x61\xc0\x19\x27\xbc\x53\xc0\xbf\xf8\x89\xe5\xcd\x87\xef\xbe\xf9\xf6\x87\x1f\xff\xfa\xcb\x77\xdf\x7c\xfb\x97\x4f\x1f\x7f\xfe\x9f\x3f\x7f\xfe\x69\x7c\xfc\xe1\xed\x53\xff\x65\xd7\xd3\x77\xdf\x7c\xfb\x8f\x1f\xff\xf2\xf9\xf1\x97\x65\x4e\x91\x2f\xff\xb8\x0c\x31\xf8\x2f\x66\xbd\xa6\xc2\xff\xcf\xd9\xdf\xfc\xf2\xeb\x87\xef\xbe\xf9\xff\x00\x00\x00\xff\xff\xe8\xe2\x98\x56\xa8\x26\x00\x00") +var FileIdentifierStaticLogoSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\x50\xdb\xaa\xdb\x30\x10\xfc\x95\x45\x7d\xde\xf5\xee\xea\x66\x97\x38\x0f\x3d\xcf\xfd\x08\xd5\xb7\x18\x7c\xec\x60\x39\x71\xe8\xd7\x17\x85\x54\x68\x60\x98\x41\xa3\x61\x2e\xf9\x39\x41\xda\xe7\x84\xb7\xb9\xef\x87\xb5\x35\xc7\xfe\x18\x0c\x8c\x5b\xf7\xc8\xe9\xcf\x32\xb4\x66\x4c\x4b\x1e\x0c\xf4\xe9\x48\x78\xdf\x87\x71\x7e\x15\x2d\x7f\x94\xb9\xdb\xd6\xd6\x74\xcb\xf6\xe8\x0d\x74\x4b\xca\xb9\x35\xf9\x39\xe1\xbc\x2e\xf3\x3a\x20\x8e\x09\xc6\x84\x6f\xbf\x90\x13\x95\x0d\xec\x5b\x09\x9e\xbf\x27\x03\xaf\xef\x65\xcd\xad\xb9\x1d\xc7\xfd\x67\x55\x9d\xe7\x49\xa7\xa5\x6d\x9f\x2a\x65\xe6\x2a\x3f\x27\x03\xcf\x79\x38\x7f\x6d\xaf\xd6\x30\x30\x04\xc7\xe0\x45\xcd\xf5\x72\x4f\xc7\x0d\xc6\x79\x59\x5a\xf3\x63\x7c\x1f\x03\x7d\x6b\x7e\x7b\x1b\x29\x80\x6a\xa0\xd0\x39\x12\x14\xa6\x08\x81\x1c\xaa\x92\x7b\x13\xeb\x28\x00\xa3\xb7\xe8\x2c\x36\xe1\x73\xa5\xa1\x08\x8c\xb6\x26\x81\x80\xde\x92\x05\x09\xa4\x5f\x36\x44\x08\x8e\x14\xac\x78\xb2\x60\x15\xd4\x07\xb0\xda\x61\x5d\x93\x03\x46\x09\x0c\x51\x28\xbc\x49\x01\x83\x52\x24\x01\x4f\xe5\x59\x4d\xf2\xe5\x98\x14\x54\x1a\xaa\x8b\x19\x2d\x29\x30\x58\x1b\x3a\x86\xd8\x90\x2f\xf9\x1e\xc4\xb9\xff\xb8\xd9\x50\x77\xb1\x14\x67\x10\xad\xd1\xc7\xd2\x46\x6b\x14\xad\x81\x31\x08\x35\xe8\x1c\x8a\xd8\xf2\x2d\x2b\x39\x14\xf5\xe4\xfe\x9a\xeb\xa5\x2a\xc3\x5c\x2f\x65\xbb\xeb\xbf\x00\x00\x00\xff\xff\x9a\x16\x83\xa0\xdf\x01\x00\x00") // FileIdentifierStaticMediaBackgroundD469fc8cJpg is "identifier/static/media/background.d469fc8c.jpg" var FileIdentifierStaticMediaBackgroundD469fc8cJpg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x79\x54\x9a\xf7\xbe\xf6\x4d\x3a\x77\x37\x13\xa5\xa6\x26\x46\xdd\x95\x46\x6b\x8d\xb1\x84\x38\x0f\x9c\xdd\x1a\x4d\x0c\xea\x8e\x36\x46\x31\x6a\x03\x09\x88\x04\xad\x53\x70\xe6\x39\x6d\x1a\xc1\x71\x27\x26\x0a\x0e\x70\x12\x23\xc4\x28\x5a\x23\x4e\x71\xda\x89\x28\xb5\xa2\x54\x51\x6c\x40\xa5\xe2\x54\x34\x84\x20\x8a\x38\xf2\x2e\xd0\x74\xd8\x67\x3d\xef\xca\x7e\x87\xc7\x93\xb5\x72\xfd\x91\x95\x25\xb7\x70\xe3\xef\xc3\x75\x5d\xdf\x1f\x93\xf6\x67\xad\x18\x70\x05\xb0\xe3\xc5\xf5\xda\xef\x7a\xfd\x37\x3d\xbf\x4c\x7f\xf1\x8e\x3f\x5e\xf2\x82\xd2\x8e\x02\xde\x00\x28\xb5\x4f\x01\xbb\xff\x76\x21\x0a\x79\x11\x70\xe1\x9f\x00\x00\x60\x87\xf6\x9f\x00\xe0\x3b\x6f\x02\xde\xfe\xf6\x75\x00\x10\xb0\x03\xb8\xe3\x35\xe0\x0e\x2d\x07\xf0\x5f\x80\x1d\x3b\x00\xaf\xbd\xbe\x63\x07\xe0\x37\xbd\xf5\xc6\x9b\x3b\x5e\x7b\xfd\x2f\x6f\xef\xd8\x01\xd0\x9f\xcb\xef\x97\xec\x78\xed\xf5\x37\xde\x79\xf3\xed\xbd\x3b\x00\xaf\xbd\xb6\xe3\xf5\xd7\x5f\x7b\xf3\xf5\xd7\xde\x78\xe3\xad\x1d\x6f\xea\x2e\x00\xbe\xf1\xfe\x47\x90\x37\xff\x76\xda\xec\x3c\xe8\xa8\x5f\xf4\x35\xf0\xe7\xff\x79\xab\xe6\x03\xe4\xc3\x71\xe8\x17\xfe\xcf\xde\xfa\x18\x15\xd3\xaf\xbc\x3e\xf0\x4d\xde\x23\x03\xe0\x0e\xc0\x6b\x3b\xde\xd8\xf1\xfa\x6b\x6f\xed\x78\x73\xf3\xca\x77\xbc\x06\x7c\xfd\xfd\x8f\x20\xa7\x41\x66\x7f\xfb\xfc\xfc\x07\xe0\xa3\xd0\xe8\xff\x7c\xf6\xc6\xb5\x5b\x0f\xfb\xc7\x6b\x94\x5a\x11\x60\xe7\xeb\x00\xc0\x0e\xe0\x6b\x40\x00\x0c\xa0\xe9\x1f\x4c\xf1\x7c\xb6\x58\x2f\xd2\xa4\xff\xb2\x3f\xef\xb4\xd2\xf4\x61\x7d\xdb\x5f\x79\x85\xb9\xa4\x8d\x5d\x75\xca\xb7\x2e\xe8\x2e\xc4\x57\x93\xa0\xe6\xa5\x52\xd8\xb7\xf8\x94\xbf\x51\x6d\x4d\x81\x6b\x46\x38\xe9\xce\xee\xbb\x9a\xdc\x5f\xc4\x61\x7b\xd1\xde\x9e\x1c\xe2\x5b\x22\xcd\xb7\x47\x23\xdc\xc0\x1a\xbb\x61\xce\xff\xb1\x2b\x71\x42\x49\x61\x24\x8f\xe7\xbf\xe4\xa3\xfb\x4f\x1c\x97\x43\xdc\x9b\xfd\xfc\xe8\x12\xdd\x7f\x64\xb9\xa4\x8d\x8f\xf4\xb7\x25\x30\x05\xae\xfd\x4d\x77\x95\x25\x10\xa5\x29\x67\xf3\x47\x61\x82\x30\x29\xa8\xbe\xed\xaf\xa3\x6e\x17\x64\xd5\xb2\x6a\xa5\xee\x1c\xe2\x96\xf3\x18\x6e\x60\xcd\x15\xdd\x8d\x59\xc0\x53\x3c\xf5\x3f\xdc\xbc\xea\x3f\xff\xe8\xb7\x9b\xfd\xdf\x9f\xf4\xe6\x95\xfe\x95\xb7\xfc\xff\xe4\x1e\xff\xe9\x8c\xda\x19\xed\xba\x73\xde\x25\x98\xf6\x29\xdc\x28\xd4\x02\x74\xe7\x62\xef\x4b\x75\xc2\xad\xe0\xf4\xf7\xea\x5f\xef\xc1\xff\xe0\xe3\x29\x9a\x5c\x29\xf0\x5f\x16\xe2\xb7\xb5\xb1\x5d\xb7\xdd\xf8\xc8\xf9\x7f\xe6\x89\xbf\x3a\xfe\xd5\xf1\xaf\x8e\x7f\x69\x8f\x0f\x69\x70\x22\x8d\xcc\x82\x4f\x1b\xc9\x81\x4a\xd3\x0b\xd2\xbd\x33\xf7\x24\xd0\xb5\x6e\xb5\xe6\x20\x9c\xb7\x4c\xa5\x8f\x9d\x26\x39\xc9\xba\x6e\xbb\xfe\x17\x67\x7f\x81\x33\x9d\xba\xe1\x67\x44\xa7\x6e\x9c\x26\xed\xe2\xf3\xb4\x00\xf3\xbf\xda\xc3\xa0\x6b\x94\xff\x35\xb2\xc6\x9f\x47\xbe\x1e\xab\x82\x75\x6f\xfe\xdc\x52\xff\xef\x5f\x23\xd3\x30\xcb\x6f\xbb\x06\xac\xfb\xaf\xfd\xe0\xa0\x3b\x24\xeb\x3f\xa4\x48\x0b\x9e\xfb\xc6\x24\xc7\x37\xfa\xad\x8b\x5c\x6f\xa2\x37\x91\x64\x37\xcc\xb1\x88\x6f\xd9\x4c\x1c\x9d\xbb\xcb\x54\x16\xcf\x7f\x6e\xc4\xdc\xb4\xbd\xbf\x8a\xc3\xf6\x46\xd2\x8f\xc6\x0d\x2f\x0c\x6b\x74\x09\xf7\x20\xe5\xff\xc5\xe1\x47\xe2\x4d\x81\xe2\x27\x48\x97\xbf\x51\x63\x83\x0a\x37\x82\x0a\x15\x7c\xf8\x1c\xf1\x11\x12\x32\xfc\x0e\x2d\x39\x76\x38\x6a\x28\x6a\xfa\x6f\x7c\x69\x28\xac\x4d\x0b\xd0\x02\x2c\xb5\x80\x79\x77\x5e\x5c\xd6\x17\x75\xb1\x33\xd5\x53\xbd\xf9\xed\xeb\x4d\x36\xa6\x72\x4b\xde\xb2\xdd\x30\xc7\x45\xbe\xd8\x27\x5f\x84\x2f\x17\x11\xa8\x5a\x00\x74\x34\x88\x44\xc3\xb0\xb9\xc6\x4e\x0b\x5b\xb7\xfa\x39\xe1\x7f\xc4\xd2\xfe\xff\x7f\x3c\x97\x44\xda\xfc\x05\xa8\xdb\x6f\xd1\x1d\xc7\x59\xdd\xac\x02\xd0\xc9\xff\xd6\x4e\x62\xef\xe6\x02\xf7\xe2\x73\xf7\xa2\xcf\xc5\x09\x53\x4b\xf5\x0b\x44\x9d\x8f\x1b\x5e\xe0\x6e\xfd\xc2\x9f\x6f\xe8\x8f\xe9\xf7\xfb\xba\xfe\x7e\xec\x56\xf7\x70\xfb\x97\xf3\xde\x8a\x4f\xfe\x7f\x8b\x57\x1d\x03\x98\xdf\x71\xd0\xfd\x97\xa4\xbf\x62\x74\xca\xff\xf7\xa8\xfd\x9b\x87\xdb\x68\x7f\xd2\x0c\x24\x8d\xce\x3c\x03\xbc\x7c\x7a\x5b\xdb\xff\x12\x9f\xfb\xc0\x4b\x7c\xee\x82\x97\xf8\xdc\x07\x5f\xe2\x73\x1f\x7a\x89\xcf\x5d\xf8\x12\x9f\xfb\xf0\x4b\x7c\xee\xaf\xfc\x7d\x3b\xf4\xca\xdf\xb7\x47\x2f\xbb\xbf\xcf\x49\x93\x3c\xe0\x83\x59\xd4\xea\x4b\x90\x84\x8d\x12\x33\x33\x4c\xac\xa9\x8f\xf7\x6a\xd7\xcc\xba\x49\x33\x83\xa6\xe1\x9d\xe2\x3f\x09\x8d\x7a\xef\xc3\x03\x4a\x60\x4f\xfd\xb9\x6b\xc0\x07\xee\x71\x73\xb3\xf4\x5e\xf5\x93\x4c\xc1\x05\xa9\xc7\x6b\xdf\x52\xc8\x54\x12\x89\x4a\xa5\x90\x48\x0a\x28\x54\x6a\xe6\x3a\x69\x92\xdf\x99\xe4\x73\xdf\xff\x10\x38\x78\xb6\xde\x19\xa7\xd6\x02\xfe\x23\x71\xbb\xef\xe5\xbf\x2d\xad\x50\xa3\x05\x2c\xee\xf9\x7b\xb5\xd1\x41\x69\x47\x92\xf8\x18\xa7\xab\xb5\x1c\xf4\x60\x29\x57\xf9\x44\xbd\xbb\x4c\x4a\x1b\x21\xec\xf9\xe7\xfb\x0d\xad\xf7\x11\xc3\xec\xa7\xc2\x12\x5e\xd3\xdf\xe7\xc6\x92\xdd\x23\x31\x9c\x14\x3e\x9b\x48\x85\x7b\x60\x5e\x2b\x18\x68\x3d\x6a\x25\xe8\x9e\xf4\x60\x89\xb0\x21\x09\xa4\x41\x4e\xdf\xaa\xef\xd0\x46\x6f\xa9\x07\x32\xf6\x46\xe3\x62\x98\x5f\xe5\xf1\xc6\x91\x44\xd6\x34\x12\x75\x68\xda\x0c\x69\xff\x40\xf4\x80\x32\x9b\x19\xa7\x05\x3c\x10\xe5\xb3\x52\x1b\x9f\xee\x99\x3a\x36\xfd\x45\x9b\x4b\xe2\x51\x91\x65\x4e\x2b\xa1\x24\xa2\x46\xcc\xfb\xd5\x58\x15\xdd\xe4\x92\xea\x73\xe9\x43\x16\x66\xf5\xb6\xf9\x90\x84\xc3\xf3\xf8\x2f\x93\xbf\x6e\xf7\xdf\xe9\xdf\x93\x76\x58\x33\xd8\xca\x4a\xf6\x96\x3b\xd7\x31\x63\x61\xab\xea\x74\xd6\x18\x31\xfa\xf7\xbf\xdc\x0d\x0e\xfa\x6b\xcb\x54\x1b\x81\x59\xab\x0b\xed\x78\x7c\xd4\xb1\x4a\x6e\x2e\x08\xe4\x2c\x87\x0c\x8a\x8e\xa1\xcd\x2d\x60\x96\xae\xfe\x43\x4e\x66\x23\xa1\xd6\xb7\x05\xe5\x55\xa7\x56\x03\x2c\xe2\x0b\xb9\x4b\xc7\x6f\x3b\x6b\x01\x37\x17\x6d\x1a\xc4\xd3\x6f\x0c\xb7\xf0\x5b\x96\xa8\x4b\x74\xc9\xd4\x8f\xe9\x97\x12\x14\xf9\xca\x5c\xe3\xa4\x6a\x2c\x89\x94\xdb\x32\x17\xab\x36\x83\x3a\xec\x3b\xb8\xfb\x2d\xb7\x43\xb0\xf7\x25\x9a\x5a\xa3\x3a\x96\xc8\x4a\xdc\x35\xc3\xf1\x28\x39\x73\xc7\xaf\x96\xe6\x37\x98\xc4\xbc\x47\xe4\xc0\x95\x8d\xea\x8d\x2c\x9f\xfb\x17\x73\x54\x89\xb9\xc0\x9c\x94\x38\xce\x72\xfe\x87\x6c\x44\x2c\xf0\xca\xb1\x88\xdd\x48\x7b\x90\x48\x22\xad\x85\x6c\x60\x38\xaf\xff\xaf\xed\xfe\x53\xfe\x3b\xd2\xe5\xb1\x40\xe1\x7a\xdb\x1e\x2a\x75\xc3\x88\x60\x3d\xc3\xc0\xfd\xc5\x2e\x1b\x65\x0b\xed\xf0\x8c\x85\xf9\x44\x83\x15\x86\xbd\x17\x3f\xd5\x13\x5b\xc9\x67\x2f\xe1\x0f\x40\x41\x20\x8a\xdc\xe2\x5e\x12\x13\x1e\x9c\xd9\xc5\x86\xcf\x31\xcd\x4f\x28\x03\x4b\x38\x03\x6d\xca\xf0\xdc\xa5\x30\x3f\x65\x58\x14\x05\x14\xaa\x72\x53\x8d\x61\xc6\x88\xc4\x82\x23\xe8\xe4\x2f\xea\x5d\x08\x3d\xe1\x0c\xa7\xde\x6a\x28\x10\x68\x9a\x28\x9c\x79\x42\xc9\xea\x7b\x33\x9d\xf9\x0c\xa2\x84\x6c\x1c\x6a\x57\xa2\x9d\x58\x58\xb9\x41\x76\x0a\x3f\x1b\x2b\x40\x5c\xaa\x9c\xb9\x51\x67\x52\x3e\x9b\x57\x88\xef\x9a\x40\xa0\xde\xf0\xf5\x39\x57\x27\x77\x34\x87\x35\x1c\xd4\xfc\x9a\xfb\x7e\xd7\x92\xc4\x31\x07\xfc\x4e\xf8\x9a\xbb\xfb\x65\x92\xd2\xa4\x7f\x15\x6a\xf2\xb3\xc3\x72\xa2\x23\x78\xdf\xa7\x3c\xde\x32\x65\xe3\xe7\x25\xf6\x5c\xdb\x6d\x67\x86\x63\xb1\x59\xd2\xd9\xe8\x84\x91\xc8\xdd\xef\xcc\x15\xf6\x22\x93\xee\xf7\xae\x76\xca\x81\x46\x19\x8a\x58\xa0\x6d\xb6\x53\x45\xc8\x35\x47\xce\xf7\xe4\xe2\xb2\xc4\xa6\xcf\x26\x27\x27\xdb\x76\x46\xe7\xe4\xb3\x67\xcd\x08\x26\x29\xdc\xda\xbc\xb3\x88\x66\xa9\x99\xb1\x6b\x8d\xfb\x76\x2f\xca\xbf\x23\x6d\xbf\x66\x59\xb7\x5a\x71\xf3\x8e\x06\x43\x33\xfe\x39\x79\xf2\x03\xa3\x78\x37\xc1\x58\x68\x5b\xf6\x7e\x32\x99\x07\x03\x44\xcf\xd2\xca\x05\xfb\xa4\x4a\x16\xc8\x49\xd6\x9d\xb0\xb9\x5e\xd6\xfb\x48\x5a\x40\xfc\xa2\xad\xdd\x6a\x1a\xfa\x8d\x61\xde\x2a\x3f\x91\x9e\x48\xa7\x2e\xc7\xdc\x92\x98\x38\x4f\xb5\xa0\xb8\x41\x75\x72\x08\x10\xb8\x54\x12\x99\xd6\x4d\xe2\xfd\x72\x76\x85\xf8\xba\xe9\xfb\x74\x72\xd4\x1a\x36\xa7\x02\xae\xce\xe8\x2a\x9d\xe9\x62\xcb\x58\x76\x01\xb1\xe4\x53\xa7\x67\x69\xe5\x8e\xac\x48\x7b\x13\x81\x21\xa1\xb2\x09\xd7\x3a\x49\x51\x9d\x8b\x95\x62\xe5\x87\xa3\x52\x05\x94\xb9\xff\xed\x72\x29\x11\xab\xa2\x78\xc9\xe9\x77\x73\x30\xef\xd0\x6e\x8e\x84\xda\xed\xf1\x7d\xd8\xd6\x58\x55\x9a\x68\xe3\x86\x0f\xcf\x51\x06\xa9\x04\x10\x13\xe3\x33\x55\x3f\x14\x4b\x03\xd1\x68\xff\x8d\x5b\xb3\x1f\x4e\x21\xa2\x87\x4f\x5f\x6d\x2d\x0d\x5d\x5f\x53\xcb\x21\xce\xe7\xcb\x53\x05\x5c\x9f\xac\x2f\x02\x7e\x8c\xce\xfa\xa1\x67\xfc\xeb\x79\xd5\xfd\x05\x81\xac\xcc\x79\xaa\xdb\xb5\xc2\x8b\x9b\xb8\xd2\x12\x0f\x4f\xf8\xce\x92\x19\xb5\x68\xb2\xe2\x63\x76\xbf\x20\x8d\xf0\xb6\xcd\x6e\x1c\x76\xae\xfe\x60\xbe\x8c\x9b\xec\xee\x71\xdb\x95\x19\x9a\xdc\xd0\x6a\xe7\x73\x68\xa7\xc1\x76\x2f\xe0\x8b\x6b\x87\x76\x40\xa3\x59\xf4\xfd\xf2\x57\xf2\x44\xb4\x7e\x35\xaf\xbb\xe8\x8c\x2e\x80\x78\x0c\xf1\xd1\x13\x63\x6f\xef\x36\x09\x35\xfd\x97\x77\xab\xa9\x4b\x34\x95\x9b\x0a\x06\x9d\x9f\x52\xb0\x9d\x27\xb8\x29\x0d\x59\x09\x73\x76\xad\x0c\x33\x33\x37\x15\x8b\xff\x18\xb2\xbf\xf8\x2f\x5a\x80\xef\x2f\x28\x29\x2a\x2b\x5f\x0b\xe8\xa4\x8c\x32\x92\x8f\xa3\xc2\x88\x07\x04\x0c\xf6\xe3\xa0\x51\xf2\x0d\xf6\x46\xf9\x6c\x1e\x0d\xcf\x9d\x08\x45\xed\x8c\x3c\x3a\x55\x5d\x5c\xbb\x82\x8d\x32\x4d\x6f\x87\xe9\x97\x94\xe7\xb1\x77\x20\x81\x44\x92\x03\xa5\xae\xa5\x6a\xb4\xeb\xf7\xd1\xf3\xf3\x31\x1e\x87\xcf\x50\xa9\x2a\x88\xb4\x4e\xff\x10\x04\x01\xa9\x8f\x2c\xca\x08\x1f\x66\x7f\x2b\x78\x16\x55\x65\x75\x77\x2c\x98\x5f\x84\x00\xb7\x04\xa4\x2c\xf0\x3c\xd3\xcf\xe0\xee\xd7\x16\x9f\x7a\xa7\x98\x67\xb1\xfe\xc5\xa0\x4d\x37\x7b\xa2\xaa\x74\x57\xb2\x47\x7b\x73\x3b\x6d\x94\x71\xec\xd1\xd2\xa8\x0b\xda\x21\x0e\x79\xa0\xde\xdf\x21\x2b\xab\xed\xc3\xf7\x6c\x9c\x0f\xfb\x9b\x0a\xbc\x96\xba\xaf\x13\xad\xad\x96\xe8\xc6\xfe\x26\x1f\x85\x38\xf9\xb4\x28\x2a\xa5\x66\x49\x70\x25\x68\xed\xb0\xc5\xc6\x87\x82\x04\x01\x62\x96\x52\x61\xa2\x05\xd0\x6d\x17\x5b\x25\xab\x68\x81\x6b\xe9\xf8\x82\x43\xa5\xf7\x6d\x87\x9c\x73\x35\x50\x8a\xa7\x2a\xb1\xa9\xe9\xb1\x53\x35\xd4\x70\x4e\x6c\x6c\x2f\x02\x27\x2b\x02\x57\x08\xef\x2f\x0f\xb7\x4b\xad\x3f\xac\x42\x7e\x34\xe4\x02\x39\xf0\x12\x25\x25\x51\x2b\xd0\x08\x96\xe9\x89\x0a\xa8\x02\xaa\x82\xd9\x04\x2f\x89\xf9\x4f\x35\x4a\x89\xed\x84\x89\x53\xef\x6f\x71\xa6\x2b\x19\xed\xff\xf9\x4f\x2e\x87\xab\xd9\x5c\x61\x96\x9b\x15\xd0\x14\x3a\x81\x88\x1b\x28\xb2\x72\xae\x81\x59\x46\xb8\xfa\x0f\x59\x1c\x13\xe7\x72\xeb\x6b\xdc\xe7\x8e\x04\xaa\xae\xa3\x56\xb1\x6e\xb0\xdd\x04\xc9\x54\xb6\xa2\x2d\x81\xe7\x01\xcc\xcf\xe5\x86\x2b\x4d\xc0\xe3\x14\xf5\x43\x6e\x77\x77\xb7\x61\x8d\x10\x8d\xe1\xad\x06\xb4\xa9\xe9\xa9\xee\xe6\x60\xe8\x5e\xb2\x2c\xa4\x73\xe2\xab\x85\x35\xa3\xa2\xce\x78\x90\xa3\x8d\x1b\x1e\x62\x2c\xb5\xe0\xc3\x39\x4e\x15\x21\x37\x8b\xa5\x81\xee\xd3\xe7\x61\xb3\x26\xb7\xd2\xbc\x99\xc6\xf1\x86\x38\xd7\xba\xf5\xd1\x35\xb5\x0a\xf4\xfe\xa3\x95\x22\x26\x84\x92\xe5\x04\xd9\x15\x6c\x59\xec\xe1\x11\xf6\xde\x77\x05\x25\xf9\x96\xb9\xb2\x3b\x44\xe9\x05\x7a\x8f\xd7\xb2\xc2\xcd\x89\xe1\xe2\xf9\xe3\x83\xb8\x92\x44\x49\x50\x27\x32\x91\xac\x05\xc4\xf1\x81\xb0\x47\x8f\x88\xe3\xa9\xf6\xd9\xf7\x66\x29\x73\x26\xeb\xd5\x85\x4a\xa3\x51\x2d\xa0\x1e\x0f\x3d\x90\xfe\x93\xb4\x06\x0a\xe4\xc4\x76\xe4\x9b\xc7\xe4\x4c\xab\x62\x54\xf7\xbd\x15\xe2\x83\x97\xcb\x5c\x6f\x37\x4b\x86\x80\x0b\xbd\xf5\xcb\x2b\x85\x79\x1b\xb7\x91\x83\xbd\x38\xe3\x8e\x0a\xa0\xe9\xce\x33\xb7\xcd\x9c\xbe\xc0\xca\x36\x4a\xd2\x42\x96\xae\x9b\x37\xa2\x56\x9b\x39\xbc\x65\x79\x75\x6d\x88\x93\x77\xd3\xc4\x5e\xf2\x6c\x28\x8d\xf5\xf0\x61\x47\x9d\xcd\xd5\x95\xac\x07\xd5\xe3\x62\x15\x9c\x5b\xe4\xd9\xe0\x25\xea\x07\x42\x72\xbe\x67\x14\x4f\x1f\x62\x22\x7f\xda\xee\xf5\x7f\x51\xe9\xc6\x0e\x21\x37\x63\x39\xea\x03\x6e\x50\x1d\x03\x69\x06\x56\x38\x69\x01\x15\x42\xa5\x2e\xdc\xab\x7f\xf9\x1a\xa2\xb4\xdc\x6f\xad\x05\x64\x43\x9a\xe1\x9a\x4a\xdc\x74\x0a\x2e\xac\xf6\xde\x0d\xdd\xa3\x9f\x36\x30\x98\x44\xbf\xe7\x83\x6d\x30\xcd\x8e\x92\xb9\xcf\x1d\x41\xf0\x53\xf2\x8c\x57\xf4\x70\x94\x2f\xa3\xca\x53\x05\x5d\xc8\xbd\xfd\x1a\xb9\x09\x98\x93\x02\x35\xd1\x6c\x1a\xba\x13\x4f\xa1\x0a\x16\xdd\xa4\x09\xb0\x4b\x83\xe6\x8e\x94\x2b\xbe\x5e\x63\x36\x46\x6f\xbf\xfe\xd6\x74\x7f\x48\x64\x4c\x68\x8a\x28\x7e\xcc\x0a\x2a\x61\x20\x8d\xcf\x54\xfd\xd8\x17\x7d\xd8\x2c\x16\x76\x41\x0b\xb8\x9b\xf4\xdd\xb2\x5d\x71\xfc\xe0\xf9\xea\xec\xcb\xb3\xab\x7d\x2d\x5d\x65\xdf\x2d\xda\xf7\xa1\x20\x86\xff\xf2\xe8\x3f\x18\x71\xcd\x59\xff\xe8\x37\x9e\x89\x9d\xb8\x87\xe2\x58\x31\x4f\x0e\x97\x2c\x16\x07\x58\x50\xe8\x4b\x70\xe5\xfb\xd5\x74\x4d\x18\x5c\xba\x30\xfc\x25\x37\x50\x92\x1a\x3f\xdd\xe2\xb1\x14\x25\x2f\x82\xab\x73\xd3\x7f\x92\x5e\x83\x02\x39\x1e\x09\xb1\xee\x7d\x7e\x07\xc7\x22\x43\x2f\x9f\xac\x9b\x09\x9c\x13\xdd\x50\x93\xc6\x56\x85\x6e\x34\xd6\x6a\x5b\xea\xa2\x45\x68\x7f\x12\xba\xe6\x20\xdc\x09\x02\x7c\xc6\x41\x98\x81\x6f\xb1\x17\xb4\x00\x9f\xf6\x4f\xd7\x83\xac\x6c\x3b\x0e\xac\x34\x73\xcf\xb6\x95\x2e\x5d\x65\xdf\x11\xd3\x20\x6f\x2c\x94\x4e\xc6\x24\x6c\x14\x7d\x03\x1e\x03\xaf\x24\x4c\x9c\xc6\x25\x07\x8c\xf5\x43\xf6\xcd\x8f\xa9\x33\xa2\x73\xc6\xf9\x20\xb7\xd3\x6b\x39\x1e\xa1\x01\x27\x7b\x0a\x91\x78\xa8\x08\x9c\x6a\x9b\x9b\xc1\x51\x57\x46\x8d\x77\x53\x69\xa3\xa6\x1d\xff\xdc\x6e\x1a\x5e\x58\x44\xed\xd0\xf2\x5b\x7a\x3c\xb6\x9c\x83\x31\x66\x75\x20\x7b\xa9\xc4\x3b\xfe\x33\xf5\x2e\xcb\xfb\xb5\x76\x1c\x7e\xd4\x3f\x0f\x10\xbf\x5c\x3c\xd9\x6b\x37\x11\xcd\x5a\x37\x2c\xb9\xd8\x63\x34\x76\x32\x47\x85\x48\x4e\x3b\xa8\xa1\xe7\xdb\xb7\xc9\x26\x20\x86\x5f\x78\x4e\xb0\x13\x72\x81\xcf\x78\xc9\x5f\x4d\x4c\x4d\x4e\x66\x05\xce\x41\x5b\xe3\x11\x2e\x7e\xe6\xf1\x76\x25\x04\xd2\x15\xee\xef\xfe\xe1\x3c\x2b\x13\xce\x1c\x92\x4f\x63\x18\xf6\x06\x74\x57\xe8\x5e\x5d\xa9\x40\x47\x1f\x7d\x64\x01\x7d\x57\x0b\xf8\xfb\xe2\x7b\xf3\x2c\x87\xb9\xbb\x1d\xc6\xa5\x61\xa3\x4b\x25\x97\x29\x94\x7c\xfb\xc1\x51\xc7\x2c\xce\xf9\x7e\x52\xc4\x63\xb8\xf4\xe8\x51\xcd\xb9\xc3\x2d\x4f\x6a\xe0\xa9\xe5\xc6\xf3\xa1\x7a\x46\xda\x73\xca\x73\x81\xf3\xd9\x4e\xc1\xa1\x04\x61\x74\x20\x0d\x79\x52\x6a\xa1\x09\x24\xce\xb7\x15\x75\xc9\xaa\xca\x73\xae\xb5\xe9\x42\x42\xea\xd4\xa0\x83\xa4\xab\xb4\xb9\x5d\xec\xc5\xe3\xb8\xbb\xc7\x76\xd0\xcc\x63\x0f\x96\x2e\xb7\xf0\x5a\x9e\xe4\x25\xab\xb9\xc6\xe5\xbe\xf8\x28\xe2\x19\x94\x6c\x96\x4c\xb7\xa1\xa7\x9e\x1c\x66\x87\x52\x33\xb8\x5c\x2d\x80\xeb\x63\xe6\x66\x98\xe9\xee\x1e\x77\x55\x20\x58\x77\x5a\xab\x58\xbc\xc0\xaa\xb8\x6a\x2b\x69\x89\x4f\xe6\xb9\x6f\xf4\x62\x4f\x36\xb8\x20\x0f\x81\x06\xef\x2e\xbb\x14\x9b\xfc\x46\x0a\x96\x6e\xc0\xd6\x90\x73\xaa\xad\xe5\xe1\x4c\xc3\xa7\x86\xee\xfc\x85\xdc\xc9\x98\xa3\x31\xf7\xfb\xce\x09\x40\x58\x3a\xc3\x45\x58\xa3\x0c\xa4\x0d\x65\xaf\x39\x42\x61\xd6\xca\x3d\x3b\xac\x67\x18\x49\x67\xd7\xdc\x37\xec\xcd\xcc\x1b\x99\x75\xb8\xf6\x7b\xab\xd9\x9d\xa5\xbd\x49\xc8\xb3\x2c\xf3\x7e\xa8\xe9\xeb\x41\xbd\x52\x31\xb9\xbb\xe7\x2a\xda\xbc\x26\xf2\x5e\x84\x78\x05\x2f\xf1\xaf\x3e\x70\x3e\x09\x21\x00\x81\x48\xa7\xf6\xdf\xde\x6e\x7c\x5e\x50\x6f\x6b\x85\x9a\xa7\x8b\xbe\x5f\x16\xab\x22\xed\x0f\x48\x06\xc8\xb2\x9e\x7c\xfb\x96\x3c\xe3\x69\xf6\x32\xd7\xcd\x62\xa6\x79\x98\xd0\x26\x9b\x70\xe8\xe0\xcb\x0f\x7a\x34\x7b\x86\xe7\x86\x6b\x01\x92\x1e\x88\xfc\xdb\xdc\xbc\xbc\xeb\x10\x54\x65\x9f\x16\x60\xdb\x5a\x0e\x12\xe1\xdd\x56\x48\x70\x0f\xcc\x3b\x34\xa6\xe6\x6c\x74\x82\xc6\x15\xb6\xe7\x6c\x98\x4f\x83\xa3\x4d\x14\xd4\x29\x5b\xa8\xcb\x22\xe2\x91\x7b\xc3\x17\x31\x0e\xf9\x40\x28\xc5\x77\x25\xfd\x6e\xd8\xcd\x44\x6e\x88\x87\xa1\xfc\xc0\xc6\xd3\x8d\x15\x39\x84\xf1\xa1\x0e\xa5\x89\xdd\xba\x0a\x89\x01\x5e\x2b\x78\x34\x7e\x71\xe6\x62\x06\x2a\xdb\xcf\x79\xb2\x1b\x96\x7f\x33\x47\x25\xe1\x7e\xc9\x25\x2d\xdd\x8c\x93\xe1\x13\x33\x75\x2c\xc5\xf8\x1a\xd0\xc7\xc3\xb4\x80\x9e\x24\xcc\x87\x8c\x07\x55\x4e\x1e\xab\xea\x36\x1c\x27\x3e\x35\x4c\x6c\x47\xcd\xf6\x24\xfc\xa4\x1e\xa8\x85\x00\x81\x92\xdd\x09\x54\x5e\xcc\x3f\xa6\x55\x47\x63\xef\xf7\x56\xeb\xd3\xa8\xae\x75\xfd\x4c\x2e\xf3\x9e\x79\xca\xa6\xe5\x44\xa0\xad\x0e\xc2\x9d\xa2\x81\xca\x9d\xc7\x7f\x8b\xa3\x33\x2b\xf7\x03\x70\x57\x6d\x25\xdc\xb3\x2d\x1c\xa2\xce\x71\x28\x32\x3d\x47\x95\x26\x45\xdf\x98\xb9\x70\x88\xbe\x07\x23\xac\xa1\xd2\x7a\x3a\x10\x32\x34\xd5\xca\x32\x98\xe0\x7d\x46\xa6\xbb\x80\x9b\xf6\xcf\xc7\xdc\xf7\x39\x27\x68\xa2\xae\xa0\x62\x21\x81\x9a\x4a\xdf\x88\xae\x8d\x83\x54\xaa\xa2\x5e\x93\x4e\xca\x5f\x12\xb8\x1e\x89\x85\x63\x26\x03\x50\x07\xe1\x71\xfe\x6d\x0a\x37\x64\xbc\x29\x7c\x38\xb5\xac\xcc\xd2\x6e\x86\x93\xdd\x0e\x1b\xb4\xe4\x70\xfb\x73\x70\x8e\xc9\x9d\xd1\x5d\x75\x81\xca\xe5\x64\x77\x82\x06\x9f\x2c\x2c\x46\x35\x7a\x39\x9b\x9f\xba\xd8\x7a\x3f\x94\x90\x9c\x48\x53\x4d\x2c\xc5\xdc\x7a\x59\x52\x4f\xbf\x2f\x4e\x1a\x0e\x97\x03\xe5\xa6\xab\xcb\x49\xa3\x33\x4b\xf5\xbb\xdd\x42\xbd\x27\x4c\x74\x23\x47\x43\x1d\x32\x45\x94\x2a\x35\x03\x01\xa9\x24\xf7\x45\xd8\xa3\xe6\x4c\xee\x43\x99\xc6\xe9\x81\xf4\xc1\xc8\x54\xb7\x1b\x1e\x02\x6c\x24\xab\x04\x90\xdd\x85\x82\x8b\x68\xcc\xfb\x8f\xcc\x63\xb7\x0c\xa8\xda\x61\xee\xee\xc3\xd0\x7e\xa0\xb8\xa2\x9d\x3a\x8c\x25\x5f\x75\x2a\x18\x75\xac\x8a\x4e\xf7\x00\x77\xfc\x0b\x37\xad\xf3\x17\x68\x43\x65\xa8\x96\x25\xe5\x10\x44\x0a\x64\x9e\xc2\xf1\x22\x02\x9e\x5b\xd0\x59\xfe\x9a\x0d\x23\xda\x1c\xfc\x65\x67\xe0\xd2\xb0\x34\xe6\xe8\xb2\x22\x50\x6e\xa7\x91\x84\xa7\xa7\x59\x79\xf1\x38\x48\x30\xed\xa0\x12\x0a\x05\xde\x48\xb7\x2f\x2a\x28\xb9\x8e\xc7\x0a\x9d\xd4\x3a\x6c\x9e\x0e\xe5\x32\x2b\x9a\x67\x24\x7e\xf1\xf2\x7d\x0c\x64\x0d\x87\x5b\xe0\xb1\xe5\x3f\x76\x6d\x74\xd9\xf0\x54\xa8\x75\x7e\xed\x39\x48\xd5\x86\x53\xeb\xa2\x29\x16\xe7\xe5\xdd\xda\x9f\xe5\x9e\x37\x78\xb7\xe9\x39\x36\x38\x13\x07\xe1\x74\x4a\x80\xa0\xd5\x9d\x7b\x36\x5f\x58\x87\x35\xe4\x7e\x3d\x43\x2e\x56\xe7\x4c\x62\xba\x7f\xec\x76\x8c\xf5\x99\xc6\xc8\xb2\x79\x9d\xa8\xbe\x0a\x90\xd4\xfe\xd9\x14\x8f\x9f\xda\xc0\x71\x71\x6f\x68\xa3\xca\x88\xd9\x10\xfa\xb5\xa0\xac\x68\x48\xbf\xcf\x6a\xcb\x32\x99\x94\xcb\xc0\xb5\x0d\x0c\xdc\x28\x8a\x35\xe4\xec\x6a\x80\x0d\x5a\x76\x70\x0d\x3a\x6d\x8b\x5b\xa5\x6c\x52\xb6\x9f\x4b\x82\x1c\x28\x19\x6f\x95\x23\xa2\x73\xc6\x2d\x77\x52\x6d\xf2\x55\x79\x1f\x3f\x55\xab\x5c\x67\xd6\x3c\xd6\x8b\x6b\xa1\xae\xb7\xa6\xff\x93\x9e\xb6\x3b\xe5\x20\x62\xfe\xbe\x9f\x59\x01\xbd\x1b\x46\xbb\xa9\x6e\x95\x26\x07\x1c\x72\xf0\x4f\xf9\x6c\x6f\xe3\x76\x23\xf3\x62\x82\x69\x7f\xd2\xfc\xfc\x90\xdb\xd3\xdd\x6d\xa8\x0c\x40\x63\x54\xc1\xa2\x6b\xae\x0c\xe1\x70\x02\x29\x49\x0a\x86\xee\x55\x2d\x2c\x7e\xfa\xd4\xc6\xf4\x6d\xe6\xf8\xec\x6c\xc6\x5c\xdb\xb9\x7c\x9a\x9a\x92\xa3\x04\xcd\x30\x90\x2e\x4e\x15\xde\x37\x8b\xa5\x17\xaf\xc0\xa7\x5d\x36\x07\x9e\x16\xfd\xc0\xe3\xee\x89\x5f\x2a\x79\x0a\x66\x3f\x35\x0c\xf3\x8f\x9b\x6e\x22\x75\xa4\x78\x6e\x26\x5a\xfe\x6f\x9d\xb8\x2c\x59\xef\x43\xb9\xae\x6b\xde\x0c\x17\xcf\x07\xc7\x36\x6d\xe8\x04\x0d\x49\x1c\xa1\x99\x11\xbf\x4b\xd7\x02\xac\x64\xc5\x41\x72\x83\x8e\x40\x85\x91\xd0\xc7\xe3\x84\x02\x02\x31\x95\x28\x95\x1b\xa3\x1b\xa3\x4e\x3c\x0e\xd2\x0c\xda\x41\x33\x17\x40\xf6\xeb\xa6\x9f\xc4\xc7\xc4\xf7\x55\x02\x84\x9a\x9b\xe3\x1c\x70\x33\xd7\xb8\xc5\xbb\x6e\x3a\xcc\x6d\x25\xaf\x3a\xbc\xce\x1c\x59\xd3\x65\x6c\x58\x99\xf2\x05\x30\x9c\x94\xa3\x0f\xb5\x91\x0a\xc5\x21\x74\x23\x2a\x64\x55\x57\x7e\x44\xe7\x59\x96\x76\x4b\x1e\x90\xf7\x7d\xfd\x4a\x27\x63\xbe\x4f\x8a\x7c\x87\x24\x94\xda\xe6\x5c\x63\xf1\x34\x2c\x86\xb3\x8e\x2a\x35\xdb\x3f\x8b\xb0\x3b\x81\xca\x0f\xdf\xf0\x04\x5b\x58\x7d\x3c\xd5\xeb\x5c\xb2\x0e\x19\x43\xd6\xcc\x9c\x21\x2b\x25\xba\xfa\x23\x96\x9a\xbc\x16\x2c\x81\x2f\x34\xf5\xea\x98\xaa\x72\xa0\xfc\x5a\x9d\x3a\x86\x6a\x5b\x5c\x46\x37\x3f\xd1\x21\x25\xf5\x10\xd3\x67\x0d\x35\x14\x29\x85\x51\x5b\xd0\x12\x70\x0d\x28\x38\xa1\x9c\x60\x7b\x30\xc7\xeb\x74\x48\x5d\xfc\x03\x52\x6e\x44\x4e\xd4\xe3\x5e\x28\x54\x64\xbc\xd7\x32\xd5\x66\x60\x05\xd9\x52\xe5\xed\xc4\x72\x7d\xf6\x4b\xc3\x4a\xf0\xc7\xbe\x09\x25\x9a\xf4\x33\xc7\xd4\x9c\xa7\x1c\xfa\xee\x54\xcc\xa0\xd5\x07\xed\x7b\x76\x0a\x0e\x29\xee\xcd\x5b\x43\x86\x3e\x20\x6d\xfc\xd0\x90\x2a\x72\x1b\xa5\xcc\x22\xcc\x51\x07\xa1\x82\x1c\xd0\x4e\xd1\x76\x33\xf5\x62\x7a\x5d\xdb\xbf\xfc\xd6\x44\xf4\xb3\xa4\xb4\xdd\x55\x77\xab\x6e\x63\x0e\xc9\x61\x67\x98\xa7\x87\x02\x1b\xa8\x95\x9c\x84\x82\xef\x2b\x02\xcb\x62\x1d\x7a\xfa\x94\xd0\x07\x5b\x7c\xb5\xd6\x0c\x9f\xbe\xea\xec\xee\x89\x5f\x1e\x5b\x14\x11\xf4\x13\x97\x98\x72\x55\x73\xb5\xba\xc3\xb2\xd8\xc3\xaf\x67\xfc\xeb\xfb\xaa\xfb\x9d\x90\xae\xf2\xd0\xe5\xa3\xbe\x53\x7a\xb7\xb2\xa3\x28\x4d\x7e\x15\x94\xd5\x4d\xdb\x5a\x39\x54\xfa\x42\x3e\x7e\x3e\x56\x3b\xd4\x8a\xac\xae\xd6\x4c\x24\x75\x77\x77\x1f\xa0\x92\x49\x1b\x5a\x40\x7b\x6d\xb3\x98\x19\x44\xc9\xd2\x17\x26\x74\x3f\x95\xd6\xbf\xa6\x6b\xd6\x61\x9c\x96\x85\x01\x67\xff\x83\x97\x59\x38\xb9\x98\x23\x42\xf1\x1a\x6d\xca\x9d\xd4\x99\x7e\xfa\x9c\x83\x6c\xe5\x9c\x91\xaf\xef\xc2\xdc\x7c\x35\xe8\xfa\xa6\x63\xd5\x95\x53\x72\x04\x20\xd0\xfb\xc3\x3e\x79\x51\x71\x28\xe0\xc7\x0b\xa5\x93\xf3\xcf\xf9\xca\x3d\x18\xf7\x14\xd3\x89\x87\x38\xe9\x5b\x53\x84\x20\x8b\xb0\x3b\x89\x37\xc3\x26\x80\xdd\x7c\x74\x05\x9b\x00\x85\xc1\x23\xd1\x56\x26\xf1\x81\xf4\x1e\x23\x4d\x0c\x8f\xa7\x96\xec\x55\x7e\xfe\x3b\x62\x59\xd1\x10\x81\x6f\x32\x8f\x40\x1e\x9e\x2a\x94\xeb\xc2\x4e\xfa\x31\xbe\x69\xe3\x56\x2e\x39\xc7\x32\x03\xe7\x18\x0f\x41\x78\xd4\x9d\x50\x1a\x37\xe3\xfc\x9f\x89\xd4\x2c\x07\x2e\xf6\xc4\x85\xee\x94\x86\x62\xaa\xc5\xe5\x06\xaa\x6a\x03\x9c\xd6\x87\xa5\xd2\x7e\xfa\x95\xf4\xc1\x58\x81\x2c\x04\x12\x7a\xd6\xfc\x1a\xce\x37\xc5\xd0\x9a\x95\xca\xca\xb7\x68\x21\x28\x77\xdf\xf3\xbf\xe0\xf3\xc4\x2b\x74\xac\x62\x36\x9a\x3b\xfb\x90\xcb\x0e\xbe\x16\xc5\xb4\x0b\x5c\x69\xff\x4b\x8d\x28\xba\x6b\x6d\x72\x75\xd5\x6a\x2e\x00\x55\x7e\x34\x4f\xd5\x44\x53\xb9\x4e\x63\x5a\x78\x6b\xbc\x65\x6a\x81\xd3\xc1\xed\xe6\xe8\x05\x05\xd3\x0e\x68\xa6\x17\xf7\xfc\xbd\xdd\x5c\xcd\x0d\xf1\x38\xa0\x26\xe5\x88\x07\xf9\x25\x97\x4b\x3a\xf4\x9d\x0c\x62\x98\xb8\x0a\x1c\xaf\x78\xf6\x23\x06\x78\xe3\xfe\x56\xf7\x26\x7a\x5b\x49\x0e\xcd\xcc\x0f\xd4\xcc\xc8\x75\x24\xcd\xca\x06\x44\xc2\x6c\x2f\xfe\x7d\x0b\xca\xf5\x84\x4a\x2d\xe0\xbd\x3d\x1b\x67\x05\x0e\xb5\xeb\x14\x1c\x50\xdc\xb9\xbc\xdf\xcc\x1e\xe2\xb4\xb1\xac\xa6\x47\xf6\x2d\x6f\xa2\xe4\x91\x10\xcb\xe1\xf1\xdc\x79\xea\x5c\xfd\x00\xbf\x71\x68\x86\x71\x4d\x44\x99\xa8\xc3\x85\xa8\xe5\xc6\x0c\x91\xea\xc8\x7b\xb3\x3e\xad\xb7\x07\xa9\x19\x5c\xd0\xee\x2c\xf7\xdf\x8d\xca\x6d\xcb\xa8\x82\xe9\xc6\x88\x41\x9e\x27\x96\x4c\x26\xe3\x98\x27\x1b\x1e\x40\x48\x37\x74\x66\xf5\x07\x98\x70\xb1\x6e\x66\x02\xd0\xdd\xe1\xb3\xf9\xea\x3a\x1c\xf7\xf1\x15\xf8\x16\x4a\x41\x3d\xf9\x48\x34\x46\x96\xa3\x32\xc8\x75\xaa\xf4\x25\x49\x3a\x0a\xa0\xae\x6a\x09\x50\x6a\xf2\xc9\xa9\x64\x19\xad\xc0\x91\x01\x9d\xb7\x82\xe4\x98\x3b\x59\xba\x45\x41\xc6\x2c\xc2\xf2\xb1\x6d\xbd\x96\x27\x1b\xdc\x36\x61\x4a\xd7\xc3\x64\xbb\x05\x53\x83\xb1\x13\xfd\xea\x70\x1d\xb6\xcb\xd9\xeb\x0b\xf3\x53\x53\x2d\x93\xdd\xce\x75\x2d\xfc\xc4\x61\x91\xfd\x93\x69\x2a\x55\xbe\x9b\x94\x83\x79\xad\x60\x60\xdd\xe6\x74\xe8\x59\xf3\x92\x00\xea\xd8\xce\x7d\x4a\xd8\xbe\x1e\xd0\x98\xf3\xc6\xd9\x33\x96\xf7\x2d\x2e\x1f\xb2\x21\x9e\x59\x3c\x31\xb1\xf8\xd5\x84\xc8\xfa\x07\x76\xdc\x74\xaf\xe9\xd9\x71\x8f\x3a\x4d\xb4\xea\xba\x85\xe4\x71\x18\xa2\xd6\xf8\xe4\x8d\x62\x9e\x5e\x4b\x54\xea\x08\x8f\x4f\xa5\xd2\x54\x47\x67\xbe\x28\xf4\x1b\x66\x07\xdc\x2c\x42\xa4\xb8\x27\xba\x3d\x2a\xcd\x94\x51\xbe\x57\x2a\x34\x8b\x99\x17\x7b\x73\x16\x4b\x38\xbe\xe3\x7c\x8f\x0a\xdb\xd9\x6c\x21\x72\x74\x35\xd9\x09\xcb\xac\xb7\xb8\x7c\xc8\xe1\x14\x1c\x0e\xe7\x96\xc0\xb9\x5f\xa6\x05\xe3\xea\x27\x24\x3e\x17\x1c\xb6\x1b\xb8\x17\x92\xfe\xf9\xdf\x67\x8b\xec\x3e\xb0\x0d\xec\xfe\x1f\x67\x3e\x82\xc0\x8b\x9b\xa8\x90\xe2\x21\x52\xd7\x21\x41\x59\x1d\xeb\xc0\xcd\x75\xa0\x0b\x67\x2d\xaf\x13\xd3\xb7\xcf\x74\xad\x9a\x11\x1d\xbf\xfc\xb5\xd0\x25\xa1\x1d\xfc\x31\x81\x22\x17\x2b\x2d\xc4\x13\xb5\x6d\x97\x65\x42\xb4\x99\x99\x3e\x1f\xd1\x48\xe8\x27\x1b\x51\xf6\x36\xce\x36\xd2\xd0\x78\x84\x9a\xe1\x20\x47\x0c\xa7\x36\x7b\x62\xd9\x9c\x25\x3a\xe1\x4d\x7d\x59\x87\x77\x82\xc9\xe9\x1e\x66\x6e\x1f\x91\xd8\xee\x9e\xba\xb2\x4e\x8f\x3c\xa3\xdf\x3b\x0a\xa6\x0f\xb1\xe0\x9c\x64\x38\xfc\x54\x88\x93\x77\xeb\x08\xea\x13\x1a\x53\x73\x7a\x3e\x31\xd0\xd5\xfe\x8d\x00\xdb\xc6\x6c\x14\xf7\xc0\x08\x9f\xc4\xe6\xf0\x3c\x7d\xd6\xea\xeb\x6e\x5f\x23\x29\x76\x9a\x61\x5c\x4b\xf5\x95\xbd\xef\x5c\xad\xae\xb2\xb7\xe8\xaa\x57\x3b\xb0\x3d\xfd\x18\x8f\x8f\x57\x9a\x6c\x71\xa7\x11\xec\x5f\x06\xea\xb8\xc3\x3a\x8f\x4e\x3b\x73\xe6\xe6\x7b\xd1\xc9\xc7\x04\x77\xc4\x74\xd2\xb5\xfa\x99\x95\xef\x1c\x12\xa4\x8d\x8c\xda\x3c\x7f\x83\x3b\xb8\x2f\x73\x81\xe2\x06\x9f\xb2\x56\x05\x22\x3a\xe7\xeb\x1b\x57\xe1\x05\x3d\x89\xdd\xd7\x09\xb8\x44\x6a\xc9\x9c\xdc\x48\xad\x33\xc6\x74\x77\xc2\x3f\xcb\x16\xda\xbd\x06\xcf\xe6\x75\x33\x14\xae\xcf\xbe\x62\x5f\xa6\x87\xd7\x87\x68\x14\x52\xe7\x07\xe5\xde\xd7\x9c\x6b\x2c\x93\x57\x98\xf7\x88\x1d\xbf\x81\xd7\x63\x7a\x76\xbc\xab\xae\xdf\xd4\xd1\x6d\xe3\xc7\xbe\x3a\xb4\x53\x9e\xa5\x23\x95\xa6\x82\x42\x5d\xa7\xd1\x04\x28\x0c\x0a\x1d\x43\x9f\xfb\x35\x16\x11\xfc\xf1\xc2\x80\xb9\x90\x0e\x34\x4d\x13\xaf\x93\x0c\x42\x4b\x64\x0b\x52\xe1\xd1\x29\x45\x61\x7f\xdb\xba\xb4\x30\x47\x0b\x28\xb4\x37\x3d\x72\xcf\xcf\x0a\xd4\xfc\xfe\xcc\x28\xd4\xf5\xfb\x75\xdf\x41\xb9\xeb\xb9\x4b\xfb\x46\x88\x69\x81\x25\x70\x3e\x49\xc6\xf6\x3d\x0b\xe7\x3e\xf9\x71\xa5\xa8\xa6\xe1\xb3\x5f\xc3\xed\xe5\xf2\x9d\xe9\xdb\x4d\xd8\x8b\x49\x3b\xa8\x19\xdd\x4a\x50\x4e\x27\xb8\xed\x14\x7f\x8a\xf5\x3c\x41\xe7\x17\xab\x4a\xac\x59\xe1\xad\x98\xc7\x20\x9e\x2f\x7f\xdd\x45\x0b\x70\x09\x48\x19\x3f\xaf\x05\xfc\xb8\x82\xd9\x87\x9a\x1f\xaf\x24\xe4\x7e\x38\x79\x81\x34\xc6\x0c\x69\x7f\x3f\xc5\x93\x83\x1d\x95\x0b\x2a\x45\x35\xa4\x9c\x2d\xfb\x2b\x5d\x6e\x19\x69\x79\xd2\x4e\x4e\x1c\xc2\x6d\xba\xdf\xda\x16\x85\xbb\x16\xad\x59\xba\x9e\x56\x02\x27\xd2\x31\x1e\x66\x6e\x8e\xc8\x04\xf8\x16\x88\x69\x67\x96\xf4\x69\xaa\x5a\x17\x0d\xf6\xb5\x32\xcc\x0f\x55\x95\x98\x8f\x3d\x85\xbc\x4f\x9e\xfd\x32\x25\xc7\x67\x8f\xf7\x43\x83\xec\x48\xf0\x4a\xc2\x44\x30\x5b\xc3\x62\x19\x97\x32\xd0\xce\x0d\xad\xb7\xaf\x91\x9e\x9e\xbf\x02\xe7\xa9\x73\x75\x43\x40\x8f\x63\xac\xcf\xcc\x2a\x8a\x17\xe0\xc2\xf1\x58\x23\x14\x1c\xde\xe4\xf0\x1d\x1d\x87\x54\x47\x06\x74\x86\x5c\xe5\x24\x72\xb2\x94\x10\x28\x43\xb7\xe3\x97\xd1\x79\xae\x85\xd8\x01\x3c\xdf\x90\x6c\x14\x49\x74\x2b\x76\x89\x86\xfb\x07\x75\x97\x67\x0c\xd8\xde\x73\x57\xe7\x8c\xd6\x95\xeb\x67\x47\x6a\xee\x95\x3b\x47\x2f\xd4\x07\xf7\x9d\xea\x93\x47\xaa\x24\x49\x12\xf6\x56\x65\x03\x4a\x5e\x2b\x1a\x58\xb7\x62\x58\x76\x4f\x0a\x2e\xd3\x2b\xde\x7a\x0f\xe7\x2f\xff\xb0\x1b\x24\x4d\x6a\xf1\x7c\x2c\xf0\xc2\x93\x47\xc9\xa7\xc4\x43\xa9\x3e\x9f\xc5\x47\x6b\xd4\x99\x31\xd6\x07\x7a\x0a\x52\xc3\xbe\x3b\x30\xec\x1e\xa5\x05\x1c\x75\x4b\x25\x0b\x2b\xb9\xdd\x9b\x1e\xf8\x14\xd3\xa2\x73\xc1\x25\x7a\xc1\xd1\x83\xc2\x86\x96\x85\x81\x5a\x1c\x9f\x94\xbb\xb4\x4e\x9a\x3e\xed\xfa\x69\xab\xb3\x60\x8e\x53\x89\xee\x2d\xef\x0d\x5f\x52\x7c\x90\x4d\x58\xeb\x07\xed\x9d\x63\x99\xd5\xf4\x1d\xba\x2a\xa3\xca\xd3\x67\xd3\x98\x51\x15\xb9\xdf\x88\xd7\x13\x91\xf1\x63\xc9\xa9\x76\xb9\x15\x0c\x94\x1a\x95\xea\x2d\x61\x42\x76\x29\xc3\xf6\xd2\x05\x1f\x37\x1f\xc7\x3b\x0f\xc2\x67\xed\x9d\x36\x7e\x5e\xa6\xb3\x5f\xbf\xbb\xdd\xc4\xbd\x90\x60\xda\xa1\xe5\x5d\xfa\x8d\x50\xbe\x7a\xbc\xaa\xc1\xe4\x68\xcc\x51\xf7\x28\xf1\xea\xcc\x0c\xc7\x83\xd6\xa1\x96\x09\xd1\x60\xe0\xc1\x67\xaa\x16\x38\x8f\x03\xdf\xe4\xac\xf6\xba\xea\x9e\x67\x04\x2a\x67\x88\x45\x10\xb3\x2f\x17\xc1\x7d\x13\x97\xbe\x96\xf8\x89\x84\x99\x7e\x68\xcb\xc1\x8e\x52\x83\x5c\xd2\x26\x65\x18\xbd\xdd\x49\x1f\x5b\xd9\x76\x80\x8c\x57\xd7\x75\x41\x4b\xa1\x14\xf6\x20\xb0\xbd\x7a\xc3\x63\x7c\x59\xbc\xc5\x59\xbc\x3b\xd1\x57\x17\xb4\x56\x38\xcf\x70\xd9\x08\x21\x2a\xf9\x38\x78\xef\x23\x73\x74\xb2\xe7\xbc\xe3\x7e\xc7\x20\xcc\x91\x20\xb2\x7e\x2a\xa8\x53\x01\x43\x34\x24\x6a\xcc\x34\xa6\x5e\x93\xbb\xe7\x8d\x43\x2d\x0b\xfc\x53\xc5\xc2\xac\xb5\x8c\xde\x68\x0e\xd7\xdb\x22\xb9\xa5\x8b\x05\x12\xe8\x40\x63\x36\x7b\x3b\x79\x37\x69\xc8\x46\x39\x3a\xd2\x4e\x3f\x27\x0d\x78\x42\x3d\x78\x59\xc8\x94\x1a\x85\x2e\x32\x0d\xa7\x53\x0e\x99\xe6\x1d\xba\x3f\x16\x13\x4a\xc0\xf9\xcc\xb4\x2d\xb6\x87\x4b\x6a\x0b\xd1\x18\xb6\x93\x19\x18\xfa\x9f\xa7\x64\xa1\x37\xef\x32\x2d\xf2\x7c\x2a\x7c\x98\x6f\xbd\xe7\x8e\x93\xa7\x14\x29\x9d\x95\xc6\xa3\xc7\x04\x8f\x41\xcd\xfb\x4f\x89\x87\x5c\xfd\x3e\x8b\xff\xea\x61\x78\x7d\xb2\xc7\xfd\x29\xb2\x64\xdc\x33\x87\x24\xd9\xb8\x94\xc2\xfd\x26\xbe\x22\x37\xcf\xf2\x24\x95\x4a\xa5\x8e\xf0\x13\xa9\x0a\x28\x54\x01\x3b\x72\xc1\x91\x65\x73\x3d\x09\x22\xc4\x63\x95\xc0\x25\x79\xd3\x92\xf0\x07\x39\x68\xa0\x42\xd0\xea\x56\x8c\xe8\xba\xd4\xae\x11\x66\xeb\x58\x4b\x1c\xbd\x6d\x0e\x4e\x5d\x75\xaa\x38\x51\xe9\xf3\xe4\xd4\x2e\x01\x54\xbc\x67\x70\xdd\x47\x30\xdc\xf5\x10\xbf\xd1\x52\xe3\xa6\x92\x9f\x72\x5f\x8c\xeb\x4d\xd1\x5c\x4c\xf5\x16\x18\xc5\xee\x95\x18\x28\xdf\x5d\x87\xd0\xae\x2b\xd2\xf7\xc1\x1f\x5b\xa5\x1b\xa0\x97\x6d\xdc\xc0\x9d\xb8\x46\x72\x6b\x83\xc8\x0a\x64\xd9\x3f\x30\x48\x29\xee\xf3\x2b\xd7\x02\x36\x42\xdd\x6c\x98\xf3\x15\xfb\xee\x4c\xd5\x9b\xce\x4e\x77\xb7\xdf\xeb\x77\x1e\x4a\xa3\x16\x0a\x4e\x8f\xd7\x83\x7d\x20\x09\x64\xea\xe7\xde\xa4\xed\x06\xf0\x85\xa4\x15\x6a\x46\xa7\x63\x63\x63\xef\xf7\x9d\xe2\x7b\xa3\xea\x20\xc3\x75\x96\x61\xec\x2d\x97\x63\x45\x95\x3b\x09\x33\xb1\xbc\x2e\xba\xbf\xe9\xcc\xe3\x99\xb5\x00\x37\xf0\x61\xdf\x77\x49\xa4\x5f\x2f\xad\xc3\x04\xf2\x1f\x5b\x82\x0f\xe1\xcf\x01\xab\xd6\x27\x2a\x10\xd4\x61\x4a\x21\xcf\x56\x70\x47\x3c\x6a\xc8\xf1\xb2\x28\xdf\xf8\x40\x87\xa0\x8f\x0e\xc1\xe3\x98\x67\x4a\x8e\xc7\x74\xfc\x3d\x51\xbf\xc8\x29\xa9\xd4\x7f\xaa\x95\x85\xf0\x30\x33\x0c\x40\x63\xd8\xc4\xcd\xd1\x21\x9f\xe0\xd6\xdf\x44\xa9\x8c\x4a\xaa\x5a\x73\x87\xf3\x31\x9b\x76\xf7\xd1\x2f\x57\x1a\x68\x05\xb2\xbc\xc2\x7e\xfa\x35\xd0\xb9\xd3\x10\xdb\x3b\xcb\x7f\xc0\xd0\x0b\xdb\xdb\x34\xb1\xdf\x7d\xd1\xba\x1d\x36\x08\x79\x56\xd3\x09\xf1\xc6\x1c\xf6\xa8\x38\x31\x18\x70\xcd\xb5\xb4\x01\x1f\x91\x66\x84\x18\xba\x83\x04\x53\xaf\x02\xed\xf8\xd8\x9d\x54\xeb\x7c\x75\x77\xe2\x28\x6b\xa6\xa5\xaf\xad\x1f\x2a\xf1\xc1\x52\x69\xa3\xbb\x49\x24\xde\x2f\x7e\x2b\x61\x65\x11\x3a\xe7\x23\xd0\x34\x9f\x21\x9c\x53\x8e\xcf\x47\xb5\xc0\x7d\x49\xf1\x7e\x45\x48\x02\xf2\xa2\x4d\xd4\x97\x8b\x27\x1e\x0e\x7d\x9b\x1b\xde\x60\x36\x7a\x7f\x2a\xf7\x1e\x84\x9b\x43\xa2\x6a\x01\xbd\xb9\xf4\x8b\x18\x44\xad\x61\xd6\xc2\x45\x4b\xa8\x5e\xfa\x81\x82\x4f\xa5\x2e\x51\x63\x6f\xf5\x62\x53\xf2\x33\x50\x95\x22\x95\x14\xac\x10\x59\xcc\x04\x7f\xf4\x1b\x92\xe7\x5a\x55\x22\x7b\x49\x2b\xd6\xd4\x99\xed\xde\x55\x72\x86\xf1\x73\x31\xe7\x77\x1e\x87\xba\x1e\x86\xd3\x87\xf3\xad\xcb\x4b\x56\xfd\xfa\x17\xbd\xd1\x2e\x7a\x20\xe5\x3c\x0f\x23\x69\xdb\x47\x6e\xdc\xbb\xa7\xea\x0f\x27\x3a\xee\xb7\xcc\xdc\x85\x5e\xb6\x76\x03\x77\xa2\x16\xc5\x22\xab\xbf\x0c\x14\x0c\x2f\x61\xfb\xac\x40\x7d\xfe\x2e\x9f\x0b\xbe\x7b\xd4\x21\xfb\x19\x73\xaf\xdf\x9e\x42\xee\x2d\x1c\x53\x29\x0c\x24\x49\x82\x34\x70\xed\xaf\x52\x2b\x2a\x89\xe3\xd8\x80\xc0\xd4\x7f\x3b\xb8\xee\xb5\x56\x14\xfc\x96\x25\xe5\xa1\x49\xbc\xd3\x9c\xa2\x71\xac\x61\x9f\x72\xc3\x6e\x59\xf4\x80\x4e\xa2\xd4\xd3\x90\xe0\x1e\x26\xe3\x56\xdc\x76\xf3\xf8\x42\x82\xe9\x5f\x69\x2b\x32\x03\x33\xe9\x62\x98\xef\xc2\x6a\x8c\x62\x5f\x77\x50\xd5\x3b\xc2\x19\x6e\x40\x1d\x14\x28\x87\x40\xac\xe3\x64\x76\xd3\x90\xac\xdb\x44\x38\xff\xf1\xc9\x1f\x26\x7f\x59\x78\x02\x0c\x1c\xfe\x32\x80\xb8\xe7\xe0\x71\x02\x94\x15\x20\xcc\xe9\x17\xd8\x65\xfb\xe6\x2f\xd5\x61\x0d\x49\xdc\x9d\x56\x50\xe8\xfe\x1b\xc4\xad\xe9\x83\xe0\x66\x66\x4e\x30\xc8\x56\x9c\x91\x90\x32\xe1\xfa\xbe\xa6\x9b\x3e\xde\x39\x95\xa8\x9f\x3e\x1c\x0f\x92\x0a\x27\xc8\x39\x19\xbe\x45\xbc\x88\x7e\x68\x50\x0e\xf5\x8e\x86\x26\x3f\xb6\x30\x3d\xb2\x76\x11\x34\xa8\x05\xec\x6a\xbf\x9b\x74\xd5\x6d\x9f\x03\x37\x97\x11\x33\x77\xa6\x2c\x5e\x70\xa2\x84\x73\x59\xce\xf2\xed\xc0\x21\xd8\x59\x9e\x09\xe7\x41\x97\xd4\xff\xe8\xb9\xfe\xb8\xda\xd1\x66\x4c\xa8\x70\xc3\x84\x85\x53\x15\xcc\x63\x3c\x7e\x8c\x04\x28\x35\x06\x02\xa9\x8f\xbe\x1c\xbb\x29\x0b\x81\xf8\xe8\xe6\x11\x9a\xe6\x33\xde\x65\x7a\xa6\x24\xcd\xdc\x82\x43\xd0\x02\x76\x6f\x56\xb7\x82\xea\x7b\x49\x77\xbe\xd2\x8f\xb8\xae\xa5\x41\x31\xdc\x21\x4d\x34\x2b\x8e\xc3\xdf\xb8\x94\xb2\x6a\x16\x5f\x01\xc9\x81\x97\x99\xa3\xf5\x22\xe8\xda\x61\x8a\x0e\xcb\xd8\x8f\x7a\xb1\xc9\x3c\xdd\x44\x92\xec\xee\xc9\x5b\x5b\xaf\xf7\x84\x5e\xf1\xf5\xaa\xf6\x59\x98\x8d\xc6\xed\x8f\x99\x8d\x45\xd8\x4b\x5a\xfc\xdc\x08\xae\xb3\xb3\x2c\xb3\x1a\x68\x78\xd6\xf7\x99\x3e\xc9\xf9\xa6\xe5\x2b\xc5\xfc\xb3\xa6\x6f\x36\x98\x1c\xbd\x48\x56\xb8\x8d\x1e\x63\xa7\x86\x40\x4d\x6b\xad\x66\x23\xe9\x91\xc8\xcf\x24\xf8\x94\xcf\x89\xa7\x4d\x78\x49\x57\x9a\x91\x9d\x79\xd7\xae\x37\x7e\x2f\xc4\x5f\x1f\xeb\x37\xae\x30\xad\x1a\xeb\x0f\x0c\xb8\x59\xdf\xf2\x94\x69\x40\x9e\xb1\x94\x61\x1f\x8d\x7f\xb5\xf0\x04\x0a\x0d\x2f\xe2\xb9\x4f\xf7\x46\x25\x2e\xb1\xd0\xa8\x78\x6e\x3b\x50\xac\x05\x70\x7f\xca\x10\x5e\x73\x46\x9a\xb9\xf5\xe1\x85\xd4\x69\xc4\x1e\xbf\x45\xab\x79\xfc\x25\x87\xb6\x62\x88\xf8\x9e\x85\x3f\x7e\x55\x4d\x25\x3f\xf9\x65\x70\xa8\x24\x91\x3c\x40\xcd\xe0\x12\x09\x1e\x22\x2e\xc7\x16\x08\x34\x31\x03\xab\xe1\xee\x9e\xff\xf1\x8f\xed\x66\xf0\x45\xb4\x43\xfb\x93\x66\x7a\x41\x0b\xf0\x6d\x38\xa2\xbc\x74\x2d\x62\x9c\x3c\xc2\x9f\x15\x32\x1b\xd8\x1c\x4e\x2b\x41\xbf\x31\x7c\x71\x46\xb6\x0e\x5d\xfb\x64\xd9\xa5\xd2\xa4\xe4\x1b\xab\x03\x23\x7a\x42\x93\xc5\x08\x16\x2b\x84\x2b\xb0\xcb\xd9\x08\x16\x0d\xdd\x41\xba\x7c\x56\xc9\xe3\xa7\xe8\x9f\x57\x88\xf1\x39\x57\xdb\xa4\x0c\xa4\x52\x33\x86\x93\x49\x3a\xbf\xec\xc9\x47\x63\x9a\xa2\xea\xdb\x4c\x3e\xd1\x01\x4a\x75\x64\x1d\xcc\x71\xf7\x8e\x76\xe7\x08\xf3\xa6\x55\x07\xd8\x70\x21\xca\xff\x24\x4d\x30\x5a\x66\x69\x37\x93\xb5\x05\xa8\xde\x31\xbb\x5c\x52\xa1\x79\xcc\x33\x77\x70\x8c\x6b\xce\x24\xb9\x18\x41\x27\x3d\x19\x13\xb2\xc0\x97\xa2\x1d\xfe\x8c\xa8\xc2\x69\xd5\x9d\x9f\x8a\xef\x81\x42\x47\x1a\x38\x09\xe9\xde\x70\x35\x89\x4a\x95\x03\x4d\xd0\xa9\xb7\xdd\xe6\x49\x59\x7d\xef\x97\x2d\xb4\x9f\x22\xc9\x26\xe7\xad\x86\xa3\x1c\xbe\xc6\xd5\xaf\xb3\x12\x29\xd9\x88\x5a\xa9\x73\xd7\xe8\x31\xc6\x0f\x25\xfd\xfa\x4c\xf7\xf9\x2c\x5e\x37\xc9\xd0\xfa\x2b\x9b\x90\x49\xed\xbb\x6d\xab\x0a\x79\x5a\xc0\x34\x97\x5f\xe3\x34\x44\xe1\x9a\xfb\xe5\x6d\xba\xa8\xb3\x6e\xa4\x71\x43\x63\x78\xbc\xa6\x7f\x4c\xb3\x5b\xe5\x06\x65\x68\x21\xad\x1f\xb8\xa4\x05\xdc\x3a\xf8\xa3\x45\xd9\x59\xc6\x4a\xaa\x43\x5d\x56\x13\x26\x91\x65\xa4\x18\xb3\x34\x85\x42\xc7\x8e\x6d\x02\x7b\xd5\x88\x81\x69\x33\x4c\x63\xce\x5e\xa6\x55\xb9\xbd\x17\xe9\x72\xa1\x07\x34\x46\x10\x7f\xa9\x03\x16\xa4\xbe\x58\x5e\xde\xbc\x30\x63\x18\x55\xff\xdc\x46\x83\x1c\xf7\x5b\xe9\x6d\x54\x0e\x6c\xac\x4c\x6b\x5e\x3d\xfe\x91\xd7\xc0\xca\x86\xdc\xb1\x13\xd5\xc2\x2c\xa3\xbf\xfd\x6d\xba\xe0\x7b\x9e\x68\xa8\x38\x9f\x54\xdc\xc4\x52\x40\xa6\xeb\xa8\xa4\x42\xc1\x93\xa7\x82\x3b\x58\x8e\x14\x6c\xfc\x6c\x7a\x14\xea\xda\xe3\x39\x9b\x56\x16\x79\x9c\xf5\xad\xe9\x25\xc8\x7a\xbf\x53\x51\xea\x6a\xa4\x45\xc3\xea\xfd\xc1\xc1\xd1\x95\xd8\xab\xab\x38\xe9\x01\xbc\x7b\x42\x76\x1a\x2f\xda\x20\xe7\xfd\xa5\x89\xe8\x18\xd5\x51\x0f\x97\xd3\x10\xd3\xd1\xc4\x91\x80\xe6\x65\x0a\x59\x01\x19\xf7\x12\xae\x6c\xc8\x2d\x39\x9e\x89\xbe\xa7\x7b\xc4\xf4\xae\x6a\x50\xde\xa5\x63\x6c\x51\x5d\x99\xb3\x98\xc7\xf3\x60\x10\x79\x0d\xad\xe8\xda\x1e\x6b\x47\xfe\xe1\x43\x07\xb6\x1b\xe0\x17\xd1\x1e\x6d\xff\xf2\xbb\x93\xf3\xdf\x27\x5d\x7e\xa7\x12\x77\xcf\x0a\x96\x9e\x63\x66\x8f\x4b\x60\xb1\x42\x38\x71\xbd\xa5\xed\x05\xdf\xe3\x23\x06\x20\xc6\xe3\x33\x19\xbd\x8c\xe4\x71\xe3\x1f\xf8\x79\x37\xaf\xc7\x4c\xd1\xca\x37\x7e\xa6\x8e\x04\x34\x8f\x1c\x27\x48\xcd\xd0\xe7\x04\x50\xd7\x7a\x4e\x42\xc2\x2d\xeb\x19\x46\xd2\xb9\x69\xca\x64\x8c\x19\x6e\x6b\x8b\xa7\x22\x12\x27\xc5\xba\x1d\x62\x94\x98\x8f\x28\xb3\x6e\x27\xe5\x4b\x06\x5d\x3f\x2f\x76\x49\x35\x5c\xc1\x17\xe8\xf0\x0d\x94\x26\x7b\x46\x8a\x06\xd7\x3c\xd1\xc2\x3a\xac\x61\x8e\xc5\x4e\x33\xfc\x8d\xab\xe7\xf2\x7b\xaf\xc7\x84\xb5\xb2\x36\xe2\xd5\x64\xda\x8a\xb8\x50\xf7\x08\x21\x29\x77\x17\x52\xe5\x40\x28\x54\x64\xe6\xc2\x5b\x75\x4f\x9d\x02\xee\x2f\x3e\x74\x4a\x96\x56\x50\x45\xf3\x48\x7a\xaa\x72\xe6\x66\xa0\x92\x86\xa7\xa8\x99\xee\xee\xa1\x87\x65\x8c\xe2\x00\x73\x3c\xf0\x46\x6b\xab\xff\x10\xf8\x0d\x5f\xd3\xdc\x08\xf1\x31\x75\xf7\x75\xe7\xae\x4f\xd6\x0d\x34\xdd\xed\x09\xcf\x7c\xea\xd0\xe6\x8e\xbf\x7a\xc1\x79\x3c\x5e\xdf\x74\x32\x8f\x9f\x48\xa5\x27\x2e\xeb\x6d\x56\x64\xe5\xd5\xcb\x72\xbd\x0d\x56\x68\x01\xde\xd7\x78\xe3\xba\xf0\x4f\xd5\x87\x7f\x2d\xa8\x70\x74\x75\x29\xc3\x93\xa7\xf0\x0f\xf1\x19\x3d\x73\x27\x40\x67\xb4\xa3\x50\xd7\x3e\x1d\xb8\xfe\xae\xe7\x52\xf6\x8d\x24\xb4\x05\xd2\x54\x72\x5b\x56\x69\x8b\x10\xb7\x7a\x74\x70\x70\xd4\x6d\x84\x73\xbe\x4d\xa4\xb9\xb2\x6a\x72\xeb\x88\xa6\xe6\xe2\xe4\x85\xaa\xc3\x06\x45\x93\x0d\x0d\x75\xa8\x45\x89\xf4\xda\xd3\x32\x6c\x2a\xf1\x72\xb1\xb4\x66\xcc\x7f\xf0\x70\xa3\xcb\x41\x93\x92\xab\x68\x61\xe5\x24\x65\xec\x9c\x70\x89\x9e\x24\x88\x7e\x20\x90\x1a\x8b\xe2\xb2\x1d\x8a\x91\x1f\xf5\x3e\xc0\x4c\x23\x60\x7e\x8b\x56\x31\xd6\x97\x0c\x97\xce\xe9\xa9\x85\xeb\x0d\xf6\xc7\x95\xa2\x76\x9f\xaf\x25\xf8\x94\x2f\xbc\xc7\x6f\x28\x7f\x0c\x5d\x8b\x3c\x12\x8a\x3e\xc1\xcd\xb1\x35\x7e\x50\xed\x9c\x21\xb4\x50\x00\x9d\x4a\x12\x30\x88\xb0\xb0\x51\xa6\x43\xa5\xaf\xa3\x8f\x43\xe0\x40\x71\x98\xd7\x84\x37\x23\x09\x17\xd6\x9b\xea\x1e\x76\xa8\x94\xed\x19\xb9\x54\x4f\xff\xdc\xca\xcb\x5d\x4e\x22\xad\x3a\xde\x16\xf2\x63\xfe\x31\x1d\xc3\xea\x9d\x9c\xe4\xdb\xb2\xcc\xe2\x0d\x32\xba\xda\x28\xca\x56\x62\xec\xb7\x67\xfd\x87\x29\x25\x87\x39\x9e\x34\x63\x87\x8c\xc5\x9d\x17\x5f\x8a\x27\x2f\x61\xda\x01\xcd\xe3\xcd\x91\x3c\x86\xff\xa5\x42\x46\x2e\xe9\xb4\x6a\xe5\x9c\x4d\x03\xc7\x2c\x72\x78\xfc\x28\x18\xd2\xc5\x65\x6f\xbe\x4a\xe0\x7a\x34\x16\xb1\x59\x0c\xc8\x65\x16\xab\xd3\x0f\xd8\xf0\x61\xce\x00\x81\x71\xe3\x8e\x98\x06\xb9\xe1\x2b\xcb\x97\xd0\x67\x3f\x18\x47\xfd\xca\x15\x5c\x6a\x75\x62\x81\x11\x5c\x90\xc8\x39\xd2\xb6\x7c\xc3\x08\x31\xc4\xac\x77\x28\xfe\x8c\xcc\xe6\x63\x77\x36\x59\x17\x7d\x3c\xd9\x9e\x1c\xbc\x36\x27\x07\xb9\x2e\x36\x3c\x2f\x05\xce\xfc\xf0\x6c\x9e\x86\xa4\x82\x2a\x4d\x1f\x98\x41\x1d\xbc\x0a\x06\xd6\x6d\x42\x5c\xb2\x16\x47\xa7\x09\xb9\x1f\x70\x03\xda\xcc\x71\xe1\xa4\xcc\xce\x92\x63\x77\xfc\x6a\xed\x48\x3f\x86\x8e\x95\xcf\x46\x73\xc9\x13\xd1\xf2\x60\x74\xc9\xb0\xf9\x09\x85\x61\xe9\xc2\x70\x92\xd0\x7b\x95\xfb\x4d\x3c\x0e\x02\xe1\x7b\x6c\x9a\x6d\x13\x4d\x05\x1d\x43\x63\xc6\xce\xfd\x10\x8b\x08\x55\x67\x0c\xd4\xe2\x82\xd9\xee\xa9\xeb\x5a\x00\xd2\xb1\xd8\x2c\xe9\x4c\x12\x81\x29\xc8\x0c\xec\xc9\x27\xe8\x91\xf5\x68\x53\x82\x42\x4e\xdd\x63\x67\x70\x1f\x80\x0f\xdb\xc3\xf9\x29\x9f\xad\x9f\x1a\x64\x24\x35\x6a\xac\xdb\x21\x29\x35\xae\x33\xa9\x0c\xab\x70\x2a\xb5\x72\x78\xcb\x6a\x77\xa9\x87\x39\x16\x3f\x2f\xbe\x7b\xb9\x33\xd3\x02\x7c\x28\xfa\x7c\x75\xc0\xa9\xe4\xe4\x00\x58\xc8\x86\x25\x68\x0a\xf1\x9b\xd3\xde\x0d\x7a\xd6\xe8\x90\xea\xbc\x73\x11\x51\x7b\x1d\x95\x18\xeb\x4b\x2d\x49\x43\x44\xb5\xf8\xb9\xde\x12\x33\x4f\x08\xc8\xd2\x8f\x7a\x1f\xa0\x93\xf3\x73\x07\x5b\xbd\xd6\x32\x83\xdf\x72\x2c\x1c\xcf\x4d\x90\xdb\x6d\x98\x23\x93\x8f\x3e\x77\xd9\x71\xc6\x45\x97\x98\x82\x76\xa3\xcc\x02\xea\x75\x88\x34\x67\x54\x8f\x2b\x2c\x81\xac\xa8\xde\x39\x17\x3c\xb7\xca\x9e\x11\x83\xfa\xfc\x73\xf6\x7d\xc0\xfc\x70\xa0\x51\x80\xa5\xb0\x90\xf6\xb8\x08\xb3\x65\x6b\xe0\x5d\x12\x45\x81\xc3\x2e\x98\xb1\xef\xc0\x85\x66\xe0\x27\xd3\x99\xc1\x3f\xfa\x16\xf5\xf6\xf4\xf5\x0c\x47\x31\x6e\x96\xa0\xb8\x26\x96\x26\x66\x69\x6a\x8a\xea\x88\xb1\x77\x30\x0e\xee\x73\x83\x17\xe0\xac\x89\xc3\x57\xa6\x7c\x01\x84\x04\x56\x9f\xfe\x5f\x27\xb6\x9b\xc8\x17\x11\x6c\xeb\x7d\x39\x6a\xd5\xc0\xfa\x16\x99\xd2\x4a\xae\xb7\x8e\xcc\x86\x24\x3e\xf6\x8e\x22\xec\xf2\x8d\x3b\x62\xba\xae\x1d\xd7\xaf\x6d\xa4\x3a\x04\xae\x40\x7a\xf5\x76\x9a\x70\x27\x21\x9b\x13\x81\xf2\x13\x6d\x56\x01\x14\x08\x4b\xd3\x9c\xb8\xd8\x7d\xe9\xb1\xc5\xa1\x55\x91\x24\x75\x4e\x6e\xa4\x60\x35\x31\xd0\xc9\xf9\x62\x54\x07\x33\x51\xe7\xa6\x52\x30\x8f\xcf\xf9\x17\x33\x5d\x1d\x73\xf1\x37\x12\x36\x0b\xd1\x16\xa7\x3f\x9c\x8d\x1b\x28\x32\x43\xff\xbc\x09\xe6\x37\xd6\x5d\x13\x22\xeb\xc2\xe4\x0b\x3d\xa0\xc6\xce\x30\x81\x6f\x56\x8d\x9b\xf2\x97\x92\x08\x5e\x34\x2d\x4b\xdf\x5a\x31\xb1\x9b\x93\x54\x4b\xd3\x3f\xa6\xeb\xea\xa6\x9f\x5b\xa9\x02\xb6\x85\x65\x94\x0e\xcb\xde\x7c\x42\x7e\x7f\xd3\xac\xc2\x70\x62\xa9\xc4\x3b\xfe\xc8\xbd\x01\x2b\x90\x1d\xe9\xfc\x03\x74\x1a\x0f\xe6\xbf\x68\x49\xab\xb2\xdb\x2f\xa1\xe8\x8c\xb4\x4d\x80\x10\x99\xa3\x71\xb6\x17\x53\xbd\x25\x0c\xcc\x66\x01\xe8\xb9\xd3\x8c\xe4\xe6\xb9\x79\x9d\xef\x30\x0e\xb2\x96\xda\xea\xf2\x5f\x0b\xe8\x36\x99\x0d\xd8\x1c\xa4\x8c\xa7\x5c\x3f\xe7\x7f\xfb\xb0\x43\xa6\xc1\xdc\x1b\x2a\xce\x33\xea\x29\x1c\x53\x55\x2d\x56\xf2\x13\xee\x24\x7f\xd1\xe0\x75\x8d\x09\x1a\x24\xee\xc6\x0b\xa0\x23\xe3\xa5\x8b\x30\xbf\x06\x33\xcc\x6e\x47\x59\xa7\x71\x43\xd0\xa0\x28\x2d\x19\xce\xe9\xa2\x46\x44\x44\xae\x3b\x76\xa4\xd6\x3d\x13\x1c\xa5\x39\x9e\x92\x64\x77\xf5\xf4\x74\x1b\x2a\x39\x73\x0d\x67\x66\xa2\x11\x1c\x7e\x9a\x12\xb4\x88\x7b\x74\x93\xb5\x38\xe3\x14\x2b\xcf\x99\x2f\xfe\xfa\xfb\x32\x87\xb6\x9b\x5d\x45\xf0\x4e\x5c\xe0\x68\xf5\xdd\xcc\x29\xf6\x65\xd2\x08\xa1\x8e\xad\xc8\x18\xb8\x06\x0d\x24\xe5\xd6\x16\x5a\x63\x9f\xfa\xa5\x8c\x45\x86\x5e\x0e\x6d\x4e\x3d\x56\x39\x67\xe2\xa0\x3c\xa1\x04\xc1\xec\x5f\x6e\x38\x01\xda\x41\xcd\xd3\x85\x76\x78\xb1\x30\xc7\x23\xa1\x70\xe2\x39\x97\x43\x41\xf2\x63\x25\xb2\xb9\x56\xfd\xa6\xbd\x0d\xcc\x57\x46\x5d\xb5\x5b\xd3\x02\xfe\xce\x7d\xc4\x35\x54\x2e\xf4\x85\x96\x04\x5c\x63\xf9\x59\x44\x9b\x26\x50\xe8\x0d\xba\xac\x37\x42\x91\x3b\x0c\x8b\xe0\x5c\x97\x8f\x8f\x4e\xd6\x5f\xca\xef\x4e\x53\x37\x50\x69\x5a\x80\xd4\x5e\xae\xb7\x4e\x31\x3e\xf9\xff\x8e\x50\x32\x37\x33\x58\x4f\x28\xa2\xfd\xec\xaa\x13\xd6\xfb\x1a\xf4\x12\xbc\x4c\x31\x4b\x63\x6a\x01\x7b\x40\x5d\x13\xa2\xfa\xde\xf0\xa1\x79\xce\x53\x48\x40\x6a\xb9\x6b\xdd\x75\x0b\x62\x8d\x53\x1d\x85\x32\x53\x6a\xe9\x48\xd5\xab\x44\x1f\xf9\x50\xa8\xe2\xe8\xf4\x17\x85\xc2\x25\x0a\xcb\xca\x8e\xad\x26\xe5\x68\x01\xd3\x69\xdd\xa4\x3f\xa4\xfe\xa5\xda\xf5\x60\xc2\x4a\xb3\xf0\x5a\xb5\x33\x6d\x71\xf0\x01\xee\x44\x65\xf2\xed\xa3\x5d\xd6\x9b\x9b\xef\x8c\xa4\xc6\x9f\x31\x69\xc3\x3d\xa0\xf2\x12\x75\xa1\xb0\x1f\x0a\x0d\xaa\xde\x8c\xe3\xe8\xab\x62\x9c\x14\xf4\x04\x1d\xbd\x7f\x73\xea\xd7\xd5\xd5\xc7\xd6\x72\x56\xa7\x3e\xf6\x3f\x15\x16\x08\x97\xb0\xfc\x7a\xe7\x1f\x31\xa4\xd5\x4a\x8d\xcb\x41\x37\xfa\xd5\x24\x56\x50\x77\xb8\x2e\xf7\x4b\x08\x2c\xf3\x78\x88\x2f\xe9\xb2\x6c\xe0\x98\x34\x1a\x08\x54\xc7\x3e\xa5\x52\x78\x7d\x07\x74\xd9\x3f\x6f\xed\x10\xbd\xee\x50\xa1\x00\x95\xb3\xd7\x17\x9d\x28\x02\xfd\x28\xf7\xb5\x18\x9f\xf2\x05\xfc\xc7\x84\x29\x9b\x34\x7b\x23\x1b\x9b\xc3\x28\xae\x71\xfb\x03\x95\xa8\xc6\x44\xd9\x28\x19\x2a\xb3\xfa\xcd\x49\x07\x0f\x63\x7d\x6c\xca\xa2\xd1\x68\x64\x5d\x65\xea\xd9\xc1\xe3\xf3\x62\x8e\xc7\x44\x2b\x8b\x99\x12\x70\x83\x5c\xc8\x71\x4f\x2d\xee\xc7\xc1\x55\x96\x47\xf4\x4f\xda\x84\xb4\x15\x06\xa0\x21\x13\xb9\x1f\xe4\x02\xa1\x2a\x6c\xee\xd1\xf1\xc1\xa1\x7a\x36\x47\x06\xef\x44\xb5\xa7\xeb\x86\x38\x08\xc8\x20\x63\xd1\x70\xff\x9a\xc9\xae\x65\xaa\x99\xb9\xf5\xb9\xd3\x90\xe6\x59\x94\xa6\x04\x9e\x7c\x8c\x65\x3e\xd2\xf5\x76\xfa\x11\xb3\x96\xaa\xe3\x58\xc4\xb0\x71\x4c\x6f\x74\x27\x2a\xec\x38\x2e\x70\x84\xcb\xe6\x71\xee\x42\x5e\x8a\xd7\x6b\x12\xb5\x43\xcb\x6f\x2e\xee\xd9\x02\x57\x6c\xe1\xeb\x6d\x75\x60\x08\xdc\xe2\xb1\x2e\x45\x86\x3e\xaa\xab\x38\x51\xc8\x05\xa5\xd3\xac\xec\xa8\x8a\x2b\x69\xe7\xf2\x7b\xae\x3f\xb6\x71\xae\x6b\x9d\x69\x97\x84\xd5\xe6\xe3\xa1\x23\xf5\x62\x13\xe3\x64\x7e\x38\x99\x4a\x07\x9a\xa0\xd3\xc0\x8a\x4f\x48\xbc\xf1\x4f\xc3\x4e\x2d\xb4\xd1\xf4\x2d\x15\xe2\xa0\x9c\x4b\x12\x32\x6a\x21\x4e\xa4\x76\x7f\xc6\x0d\x31\xe8\xb7\xc8\xcf\x8c\x6e\x54\x67\x5e\x64\x47\x2c\xe3\x9c\xb3\x4e\x3b\xcb\x4f\xaa\xf6\x23\x53\xd6\x40\x15\x41\xe4\x9c\xa4\xcf\xfd\x36\xb7\x03\xc6\xd0\xc9\x3c\xde\x6a\x0f\x25\xd6\xe0\x77\x6b\x15\x6b\x44\x48\xa8\x83\xfb\x42\xf9\x82\xc4\x97\xb9\xaf\x4e\xe7\xad\xa3\x1b\x55\xca\x13\xcb\x23\x4b\x95\xee\x0f\x70\x27\xee\xf8\xfc\x9a\x55\x93\xe9\x93\x3c\x4e\x9e\x4d\x2b\x83\x0e\x75\x75\x38\xab\xdb\x02\x4b\xe0\x0a\xb6\xb0\x3e\x47\x15\x94\xfb\xf8\xe6\x22\xd4\xed\x71\xf1\xf9\x7a\x5d\x49\xdd\x5f\xec\xe1\x27\xcf\x34\x81\x2f\x6f\x8d\x57\xbf\xf3\x3a\xac\xe3\xd5\xa1\x58\x17\xfa\x09\x0e\xa9\x30\x7d\xe8\xf7\xb7\x34\xb1\xa6\x31\x21\x73\x41\x34\xe5\x09\x3a\xf0\xb1\x98\x79\x62\x80\x3c\xab\x8b\xfd\x44\x7d\xec\x8f\x90\x8b\x1d\x56\x91\xd5\x78\xce\x2c\x7e\x75\x8e\x07\x3f\xda\xc6\x50\x08\x28\xfa\xe1\x0a\xed\xcf\xb5\x4c\x56\x36\x36\x25\x52\x51\x26\x9f\xf6\xe9\x60\xad\xcb\x4d\x5b\xdf\x60\x59\x22\x24\xa1\x04\x2c\xbf\xde\xa2\x98\x79\x37\xd0\xaf\x38\xca\x4b\xca\xe3\xe9\x9c\x55\x71\x37\x73\xaa\x81\xa4\x4b\x7d\x99\xc4\xa0\xcc\x0c\x5d\xa3\x2f\xa9\xd4\x69\xbf\x94\xbe\xc8\xd0\xc8\xc0\xd6\xb6\x42\x3f\x22\x33\xc7\x25\xc0\x25\x32\x95\x21\xcc\x3d\x62\xed\x1d\x24\xa4\x94\x58\x52\xaa\x7b\x4a\xf1\xa8\x71\xd2\x71\x64\xab\xc7\x5b\xc4\xb7\xbf\x4d\x0b\x3d\x41\x26\x57\x39\xa8\x88\x46\x4b\x83\x97\x29\xf4\x5d\x96\x27\x1b\x3e\x2f\x38\x92\x06\x63\x28\xe7\xca\x07\xcf\xce\x0f\x98\x99\x0d\xd3\xb1\xb2\x31\x86\x59\xca\x03\xeb\x08\xac\x32\x67\x20\xa7\x75\xe6\x10\x43\xbd\x26\x2c\x42\x68\x01\xeb\x42\x36\x8f\x93\x7a\xdb\xdc\xec\x20\xe9\xa5\xd8\x5e\xdb\xa1\x15\x6a\x86\x7a\x92\x2f\x76\x5f\x2a\x28\x11\x8d\xa9\x24\x8a\xaa\x8d\x9f\x36\xfb\x2e\xbe\x3a\x3d\x54\x25\x32\x43\x63\x38\x9e\x54\x7a\x78\x6e\xcb\x6d\x30\xf4\x4a\x79\xaa\xcd\xc0\x4a\x52\xe2\xfe\xb9\xa1\x44\x4a\x71\xc2\xe2\x10\x2b\x02\x07\x05\xb1\xc2\x58\x02\x2f\x7c\xd5\xe6\x10\x35\x38\x91\x0b\xe2\x4e\x88\xac\xf3\x51\x67\xbb\x83\x46\x90\x39\x4a\xc1\x49\xd5\x7e\x33\xe2\x37\xa2\x3a\x0a\x25\x6b\xe1\xd0\x66\xf4\x43\x9b\xa8\x4b\x54\xd5\x91\x0b\x8e\x2c\x7c\xe2\xf3\x46\xba\x4a\x34\xd2\xbf\x94\xf4\xa6\x5b\x91\x6c\x41\x2a\x84\x5e\xa4\xac\x05\x13\x56\x5a\xfc\x6c\x67\x62\xc7\xcc\x0e\x0d\x21\x8e\x83\xed\x48\x3d\x86\x6c\x1e\x27\x05\xe2\xfa\x67\x43\xad\xc3\x41\xc6\x70\x9f\x75\xad\x50\xe9\x97\xfa\x3e\x13\xe3\xd3\x3e\x72\xeb\xc2\x00\x6f\x34\x23\x3b\x0b\xae\x5d\x6f\xfc\xfe\x6c\xc5\xa1\x66\x5c\x48\x85\x69\x95\x16\xf0\x01\xd9\xaf\xae\x8d\xfd\x54\xb0\x0e\xd4\x8d\x51\x9b\x76\x8a\x16\x92\x75\x76\x5a\xaf\x72\x6d\xb0\xad\x5c\xce\x70\xe7\x86\x13\xb0\x03\xc7\xa4\x49\xa4\xd8\xa7\x54\x9a\x68\x73\x8e\x72\x88\x56\x77\x86\x8a\xc9\xc3\x67\x15\x26\xe6\xe6\xfb\xc3\xfc\xe3\x56\x63\x75\xb6\xfd\x2f\x78\x36\xc7\x87\x26\x07\xd4\x28\x24\xed\x7a\x2f\xf5\x91\x3b\xaa\x39\xf3\x54\xe9\xbe\x0f\x98\x46\x03\x8d\xb5\x50\x08\x82\x13\xb9\x34\x78\x7c\x5e\x82\x20\xc9\xc7\x84\x82\xb6\xdf\x67\x28\x1d\x9e\xbf\x05\x3f\x4f\xdf\x4a\xed\xdd\x04\xd8\xdc\xa3\xd2\xdf\xbc\xb4\x41\x6f\xa5\xef\x54\x9e\xbd\xfb\x4f\xfe\x2f\xcf\xa2\x7a\xba\x81\x10\xdb\x4e\xd0\xd8\x86\xbd\xe2\x6e\x89\x8f\xc8\x2f\x2f\x12\x75\xeb\x54\x11\xcc\x54\x90\xa0\x04\x3a\xb1\x90\xc8\x3a\x12\xa9\x6e\x66\x15\xc3\x8c\x16\xa7\x32\x42\xf6\xd5\x1d\xd3\x70\xb1\x27\x62\xa0\x53\xd3\x17\x8a\xa9\x52\x73\xb0\x16\xb0\xbb\x68\x14\x0b\x1a\x43\xd6\x48\xc1\xe5\x3d\x50\xa8\xc8\xe4\xe5\xe8\x12\xa6\xda\x61\xfd\xbb\x24\xcd\xd1\x29\xee\x04\x2a\x9d\xb4\xda\xb3\xf9\x56\x0a\xc6\x42\xfb\x29\x99\x6c\x12\x53\x7d\x66\x1a\x19\x8d\x1a\x0e\xa8\x2b\xaf\xe4\xf9\x3c\x88\xda\x17\x37\x70\x2d\xb0\xf7\xf6\xd1\xcd\x4d\xd4\xcc\x68\x8d\x3a\x13\x4d\x91\x75\x5f\xb7\x88\xce\x70\xe6\x7a\x5b\xf0\x2e\x92\x37\xde\x8b\x10\x22\x91\xd0\xe2\x77\xff\xf4\x5c\xd3\xef\x54\xfa\x86\x93\x56\xd5\x1b\x76\x94\xac\x3e\xa0\xeb\xa7\xa9\xf6\x02\x59\x67\x25\xba\x3b\x6a\x56\x64\xbf\x98\x70\x07\xd7\xb7\x7e\xdb\x22\xb2\x70\xc0\x0a\xf4\x00\x7c\x18\x29\x80\x02\x9f\x71\x16\x61\x7e\xd4\xd9\x89\xf3\x25\xab\x61\x87\x7d\x18\x04\xd1\x50\x25\x37\xb1\x72\xe8\xe6\xa2\x7d\x5a\xb1\xbc\x03\x5f\xf7\x9b\x69\xee\x0b\xf5\xf0\x92\x76\x04\xd5\x9f\xf2\xa9\xfb\x73\xca\xdf\xd7\xa5\xfc\xa6\x6b\xee\x7a\xc0\x02\x25\x7b\xcc\x4f\x35\x50\x07\x23\x71\x61\x09\x77\xe0\x97\xd3\x23\x6f\x82\xbd\x2c\x48\xe9\x2e\x08\x74\x72\xf8\xfa\xa9\x41\x16\x0d\x9f\x6e\x7a\xe9\x8c\xbc\xb1\x24\x3e\x4d\x0b\x70\xbe\x8a\x28\x2c\x62\x8a\xa1\x57\xc5\xba\x59\x69\x20\xe8\x60\xe8\x91\x50\x74\x20\x37\xa7\xb6\x5a\xd1\xa2\x66\xa1\x24\xed\xc4\x0a\xaf\x80\x06\x61\x89\x88\x78\xdb\xe2\x06\x7f\x6f\x75\x99\xc3\xd8\xcd\x4e\x36\xaf\x13\x07\x6c\x96\x9c\xfe\xb0\x27\x15\x77\xba\x4a\x85\x77\x96\xb2\x05\xba\x7c\x27\x74\x14\x5a\x63\x8b\xe1\x77\xf4\x4f\x53\xb6\x5e\x5e\xc1\x06\x09\x5d\xa2\xa5\x35\x52\xf3\x34\x3c\x64\xfa\x1c\xa2\xb0\x7e\xd3\x33\xf9\x1d\xa5\x78\x94\xd4\xf0\x4a\x80\xd5\xe0\x57\x98\x67\x09\xf6\xd3\x17\x48\x94\x42\x69\xae\xfd\xf2\x12\x25\x17\x9b\xfd\x85\x97\x1f\x9e\x17\x67\x19\x8b\x99\x58\x89\x3a\x60\x66\x7d\xaf\x6b\x05\x07\x34\x3e\xdb\xa0\xe6\xfb\x4c\xd4\xaf\xc2\x1f\x98\x0f\x09\x26\x8c\xcb\x4c\x7f\xe0\x17\x50\xaf\xc7\xc4\xd8\x42\x4c\x35\x71\x23\xbd\x7a\x26\xe5\xc6\x3e\x41\x6c\x7e\x4c\x7a\xe1\x76\xe3\xf6\x62\x32\xd5\xfe\xa4\x59\x5e\x68\x3f\x95\xb1\x30\xef\x68\x30\x3a\xe3\x9f\x69\xd2\xc0\x8a\xc0\x61\xc9\xc2\xea\x41\xf5\x9b\x96\x06\x59\x22\xc7\x34\xc0\xe2\xa2\xef\x97\x6b\xef\x34\xe8\xb7\x96\xba\xee\x5f\x20\xcf\x66\x9d\x59\x3f\x46\xbf\x54\xb3\x41\xaa\x67\xa1\x6b\x81\xc5\xd4\x3f\x6f\x2e\xc5\xde\xea\xc5\x6d\x6e\xe1\x0b\xee\x92\x96\x69\xfd\xff\x4a\x20\x6c\xa8\x81\x58\x31\x3f\x60\xab\x92\x1b\x50\x0a\xbc\xb1\x06\xe4\x51\x20\x05\xb5\x8f\x4a\xc9\xfa\x0d\x41\x0a\x1d\x37\x45\x1e\xec\x5b\xda\xc7\x42\xbb\x08\x23\x74\x3d\x13\xde\xf7\xd9\x30\x3e\xc5\xe2\x67\x9e\xf4\x68\x6d\xfd\xe1\xa0\xc4\xfd\x56\x99\x6f\x26\xdd\x0f\xae\x6f\xdd\xf2\xc5\x00\x76\x5b\x43\xb3\x4f\xea\x35\x51\xd2\x77\xfa\x6d\xd1\x67\xfc\x33\xa5\x55\xfd\x2d\x4d\xf8\xe9\x78\xa3\x42\x61\x4a\xa7\x19\x8a\xed\x1c\x27\x3b\x10\x4f\x33\x73\x3b\xb7\xca\xc0\xb4\xe9\x4a\xa6\x51\x8c\xf9\xd7\x82\xfa\x4f\xd5\x23\x3e\x0f\xda\x89\x25\x1d\xd6\xde\x70\x7e\x83\x43\x07\xbe\xee\x99\x00\x42\xe5\x5c\x3c\x9c\x63\xf3\xa1\x0d\xf4\x30\x8a\x0b\xaa\x1a\xbd\x4c\xeb\x07\xb6\x57\xb4\x13\xef\x7d\xe4\x25\x5c\x11\x34\xfb\x2e\xb8\xcf\x53\xa5\x06\x0b\xba\x71\xbd\x16\x0a\xf1\x7a\x6e\x8c\x83\xc9\xbd\xd3\xa6\x9f\x5b\x79\x3b\x50\x2b\xdd\x3d\x53\xfe\xd5\x19\x75\x23\x51\xa0\x12\x04\xb3\x63\x27\x16\xec\x63\xb0\xea\xd0\x16\x5e\x68\x2b\xd5\xb3\x5f\xc5\x81\x9a\xab\x1f\xfd\xa1\x64\x5a\xef\xab\xfa\x44\x15\x65\xb4\xde\xca\x30\x3f\xf0\x07\x67\xec\x07\xe2\x03\x5a\x2b\x02\x73\xef\xa9\x37\x24\xcc\x06\xbc\x3a\xce\xbb\x9c\xc9\xf5\xb7\xf4\x9c\x87\x4e\x4d\x5f\xac\x87\xaf\x50\xb4\x80\x1e\xc6\x12\x22\x20\xb9\x17\x37\x71\x7a\x70\xaa\x08\x91\x5c\x7c\x6b\xfa\x25\x79\x17\xb9\xa9\xb6\x5f\xb3\xb1\xe8\xeb\x9f\xe3\x12\x9c\xcd\xad\xc3\x17\xa2\x18\xcb\x56\xae\xa7\x33\xda\x19\x79\xf2\xeb\x16\x9a\xe4\xd7\x44\xec\x42\x9e\x47\x6c\xfa\x2f\xff\xdd\xe8\x6c\x9e\xc7\x2f\x41\xa5\x58\x35\x07\x43\xaf\xf8\x7a\xd1\xbd\x17\x56\xa2\x71\xfb\xef\xfb\x2e\xe2\x25\xb3\x6b\xec\xec\x94\xd5\xe3\xe8\x43\x82\x10\x87\xca\xe4\xdb\xd0\x9d\x3a\xa7\xa3\x19\xd2\xf4\xbb\x98\x97\xa0\x20\x13\x9b\x7c\x67\xb8\x22\xda\xb6\x92\x5b\xd8\x4b\x1c\xfd\xbd\x20\xfa\xd6\x50\x39\x17\x8f\xfc\x5c\x33\x35\x79\x81\x71\xd8\xb6\xe8\x42\xcb\x1c\x62\x44\xbf\x2d\xf4\x3e\x0b\x9b\x1a\x75\xb9\x78\x15\xdc\xc2\x48\xf8\x8d\xb4\xdb\x51\xfa\x00\x76\xca\xee\xc5\xb9\x21\xaf\x39\x0f\x3a\xc7\x95\xcb\x02\x12\x48\xb1\x4f\xd9\x7d\xd0\x0e\xcf\xd9\xd0\xd2\x48\xf7\xbe\x03\x97\x75\x09\xbc\x26\x69\x67\x3f\xdd\x1f\xe6\x0f\x95\xeb\x82\x3e\xe5\x18\x0f\x43\xe2\x3f\xfa\xcd\xed\x2c\x42\x1e\xc8\x5d\x6f\x83\x89\x01\xcc\xf6\xa1\xbd\x65\xb8\x54\xec\x28\x73\xc5\x2c\xf1\x47\x0c\x89\xee\x70\x56\xbf\x93\x09\xe7\x75\x5a\x01\x9b\x25\x9d\x9b\xac\x31\x3e\x5a\x30\xfb\x93\xe3\x3d\xcb\x9b\x56\xc5\xa8\x62\x16\xc5\xb2\x32\x34\x4a\x3f\x80\x37\x2d\xb3\xb9\xd4\xe8\x88\x08\x71\x00\x32\x0e\x8d\x6c\x9c\x19\xef\xaf\xaf\x51\xf6\xec\xcd\xe8\x4c\xca\xda\xb9\xb1\xe7\xad\xb5\x96\x42\x36\x82\x52\xda\x22\xe9\x5a\x5f\x4d\x86\x63\xcb\x2c\xed\xa6\x9d\x3e\x68\xaa\x55\xae\xdb\xe7\x1a\xaf\xe0\x42\x87\x2a\x3d\x87\xae\x4b\xc4\x0b\x6b\xf8\x7e\x9c\xbf\x6f\x0e\xc3\x2f\x77\x12\xd3\xc3\xeb\xb9\x44\x5d\xe5\x6e\x84\xd8\x3f\x18\x68\x43\x9b\x39\x47\x38\x15\xd7\x62\xe9\x43\x8e\x5f\xf4\xbe\x0e\xcb\xed\x94\x18\xd9\x40\x5d\xe2\xc6\xcb\x30\xcf\xca\xc3\x87\x54\xa1\xc9\x9e\xbe\x6b\xb4\x5f\x5e\x8a\x49\x48\x07\xe1\x80\x46\xb0\x39\x30\xf7\x4d\x63\xc6\x30\xbc\xd6\x48\xd5\xea\xd6\xc0\x5c\xc7\x3c\x0d\x54\xb9\x96\xae\xe1\x21\xfb\x7f\xdf\xdc\xe9\xb9\x2e\x11\x36\x10\x2b\x3a\xc1\xa7\xcb\x47\x34\xa4\x92\x1e\x86\x7e\xd7\xf1\xb3\x2e\x6b\x28\x64\x3c\x7d\x6b\x04\x71\x6d\xee\x9c\xf7\xc4\x96\x3c\xad\xbf\x03\x4f\xbc\x33\xa4\x07\x6c\x62\x57\xfd\xf0\xa3\xd4\xac\x3e\xb0\xa5\x7e\xd7\xd1\x1a\x72\xbe\x3a\xe0\x54\x5f\x5d\xd5\x50\xee\x70\x9e\xb4\x28\x80\xbd\x55\xf0\x4e\x4a\xf7\x9d\x33\xd9\x6d\xea\xdb\xe1\x1a\x40\xee\x86\xe8\x9c\x2c\x39\x12\x1b\x24\x87\x9c\x18\x0e\xd7\x0d\xcc\x15\xae\xee\x9f\x65\x8a\x30\xfb\xc7\xef\x2c\xda\x9c\x6e\x30\xc3\xec\x72\xd6\x0d\x20\x73\x15\x4b\xb9\xa9\x1d\x56\xb3\xe8\xd4\xa6\x2e\x23\x7c\xf5\x55\x6a\x96\x72\xbf\xe6\x94\x24\xbb\xb3\x87\xd7\x63\xa8\x74\x9f\x6b\x08\x61\xb2\x8f\x13\x16\x09\xeb\xa7\xff\x22\xdc\x8a\x53\xd0\x06\xf1\x5d\x9a\x59\xc0\xe6\xde\xa3\xce\xcc\x52\x03\x94\x29\x0d\xc3\x70\xf7\xe4\x5e\xc6\x31\x45\x86\xc0\xc7\xe2\x12\xb2\xf5\xd9\x4c\x26\x02\x03\x72\xf9\xf8\xf7\x48\xa5\x70\xf5\x63\xc8\xf3\x48\x1d\xa2\x94\xec\xa7\x30\x1c\xa3\x9e\xe3\xb5\xe9\x65\xb6\xe1\x75\x10\xcf\x22\x8d\xa4\x3d\x8a\x42\xc1\x7a\x79\x37\xe5\x7c\x77\xe4\xd2\x1a\xd1\x67\x62\x2e\xda\xa0\x32\x82\x4d\x5a\xa9\x8e\x32\x18\x25\x2c\xa3\xe3\x77\xc9\x23\xb0\x4a\xe1\xf9\x4f\x36\x3c\x52\x5a\x78\xf9\xdd\x74\x7f\x13\x88\x20\x99\x65\x35\x8d\x04\xb3\xdd\xe3\x1d\x19\xe8\xe4\xa9\x3d\xb0\x77\x8c\xa2\xbc\x17\xc4\x31\x75\x3f\xf4\xec\xab\xfa\x4b\x9f\x2c\x07\xc5\x88\xf5\x65\xf3\xdb\xc7\xb5\x80\xf6\xd5\x39\x59\x98\xfc\x9b\xa4\xa4\x95\x76\xb0\x01\xcb\xc7\xda\xe2\xf4\x55\xe4\xd2\xaf\xd9\x67\xab\xc0\x67\x98\x6c\xf8\x71\x42\xfb\x77\xb6\x75\xc7\xe6\x20\xc0\x79\x06\x0d\x6d\x61\x6d\x56\xf1\x72\x98\xa2\x56\xa0\x19\xdc\xea\x71\x88\x78\xa0\x69\x9a\x98\x5e\x3f\xd6\x48\xe2\x8d\xcf\xc8\x66\xcf\x84\x16\xc9\x16\xa5\xc2\xa3\x93\xf4\xb9\x50\x7b\x23\xe5\x09\x4a\xb6\xef\x97\x1a\x52\xc9\x46\x5f\xe1\x80\xd5\x7e\xb6\xc7\xf9\x2c\x04\x1a\x09\xed\xd8\x33\xb8\xee\x83\xd7\x23\xd8\x05\xbf\x26\xc2\xa4\x32\xae\xb9\x2d\xca\xd6\x5b\xee\x0f\x0e\xf2\x56\xd1\xd1\x57\xc5\x38\xe5\xbb\x6a\x68\x71\xb4\x28\x44\x89\xec\x29\x3a\xf4\xb5\xb4\x3a\xf4\x54\xdf\x6d\xdb\xc6\xca\xb4\x16\xfa\x07\x8f\xcb\xca\xca\x23\xfa\x9e\x26\x5a\x54\x3e\xe2\x7e\xfb\xb0\x43\xf6\x33\x1a\x1f\xbe\xb9\xc7\x88\x91\xdc\xae\x9d\xb6\x3a\x20\xdf\xdd\xea\xe4\x51\x82\xc9\xfa\xe2\x9d\x3a\x46\x34\xed\x80\xef\x9f\xd2\xb4\x8d\xa0\x6a\xd4\xbf\x22\xe4\x4f\x26\x17\xa9\x37\xb9\x0c\x8b\x90\x07\x0a\xd7\xdb\x75\x92\xa1\x72\xc5\xa2\x3b\x21\x60\x6b\x9e\x71\xd1\x02\xe8\x0f\x5d\xdc\x2b\x64\x3e\x36\x65\x4a\x34\x1a\x79\x93\x34\xca\x92\x2e\x47\x55\x95\x78\x52\x8b\xe0\xee\x9b\xcd\xae\x0b\xdc\x76\x50\x89\x83\x4b\x2f\x1e\xea\x9d\x9e\x9a\xb9\x38\xd7\x2e\xf0\xe2\x6d\x6c\xda\x9c\xba\x08\xfe\x7b\xa8\x5a\x0e\xae\x11\x8b\x9d\xec\x84\x6e\x8e\xc8\x6b\x81\xd5\x7b\xa1\x1a\x17\xa3\xf9\xf9\x88\x7e\xdb\x4e\xe3\xe9\x31\x7b\x13\x22\x0f\x7e\xac\xcc\x7c\x84\xfb\x79\x81\x5d\x1a\x8c\x19\xbd\xd8\x1a\x50\x03\x41\x70\x52\x83\xac\x25\xcc\x78\xc9\x14\x75\xd0\x9e\x2d\xf0\xcd\x42\x59\xca\x3e\xfa\x81\x5f\x50\x70\x3d\x06\x33\x1c\xf9\xb3\xac\x55\x78\x73\x4d\x94\x8b\xd7\xa3\xf8\x45\x0f\xf7\x49\x4e\x97\x44\xe0\x6a\x37\xd2\x54\x0d\x3e\xec\xfd\x75\x40\x5a\xf1\xe5\x15\xcc\x31\x85\x84\xb7\x61\xd2\x9e\x5f\x53\x96\xb2\xf6\x97\xdd\x44\xa8\x29\x73\xbc\x2e\x7a\xd8\xf8\x3e\x5f\x60\x50\xc9\xed\x07\x1a\x43\x58\x29\x51\x0d\x4f\xc6\x96\x58\x09\xf4\x1b\xb7\x15\xe1\xad\x0c\x41\x53\x1d\x03\x2d\xa4\xdb\x51\x55\xd0\x25\x6a\xb4\x37\x72\x74\xcd\x0a\x08\x14\xdc\xf6\xdb\x6e\xee\x5e\x48\xaf\x6b\x07\x35\x1b\x0b\x12\xdf\xea\x7d\x35\x05\x1f\x2b\x6c\x4b\xa3\x87\x26\x0e\xc2\x3d\x98\xb1\x52\x33\x24\x11\xf3\xbd\xd5\x89\x4a\x74\xff\xfe\x74\x9a\x99\xc0\xae\x2b\xe1\x7c\x12\xbd\xdc\xbb\xa1\xeb\xa1\x0e\xc3\x1a\x51\xb2\xba\xd0\x93\x76\xaf\x97\x38\x4a\x63\x30\x30\x62\x68\x96\x9d\x38\x6c\xd7\xdb\xfc\x8d\xd5\x9a\x62\x69\xf4\xd8\xfb\x8a\xf4\x7d\xe7\x96\xad\x32\x0d\x92\xe6\xc3\x38\x89\x19\xab\xc7\x15\x4a\x6f\xa6\xa7\xaf\x1f\xae\x28\xd1\xda\x05\xed\x72\xb8\xd1\xe5\xf0\xd6\xc0\x0b\x69\x69\x62\xb9\xce\xd4\xaf\xe8\xf2\x16\x22\x32\x8e\xcb\xbe\x59\xfc\x7d\x26\xbc\xcf\xed\x4f\xb5\xee\xf2\xec\xb2\xa4\x6f\x3c\x87\xc1\x90\xa9\x79\x3a\xd3\xed\x80\xeb\xc6\xea\xfb\x0e\x2d\xe7\x5a\x78\x35\x99\x07\xe1\x9e\x91\xcd\x9a\x8c\x61\x62\x00\x73\xd1\x3d\xd9\x0a\x21\x41\x20\x45\xc4\x06\x10\x59\x0b\x80\x7d\x93\x40\x9e\xd7\x8d\x18\x05\x9d\x54\x6a\x86\x1f\xcc\xb6\x25\xcc\x7a\xda\xf6\xee\xd2\x16\x88\x95\xbd\x28\x03\xc5\x55\x20\x0e\xce\x81\xdf\x69\x2a\xd6\xf9\x21\x61\x05\x1b\x44\xef\xe0\x82\x44\xd7\x26\x62\xe5\xb8\x2d\x12\xf1\xa0\x52\xe8\x07\xb3\x69\xb0\x3e\x23\x79\x65\x0a\xe4\x44\xe5\x59\x92\xce\x13\x9b\x12\x6d\xc3\x0b\xa5\xd9\x70\x71\xd7\x04\x6f\x43\xc9\xb8\x71\x47\x4c\xf9\xd5\x6f\x9a\xff\xad\xa0\x71\x65\xac\x22\x90\x56\xa8\x03\x71\xbd\xb9\x6a\x49\x00\x15\x3f\x19\x13\x78\xbb\x39\x51\xaf\xdc\x71\xdc\x3f\x3f\x3f\xef\x03\x5f\x91\x3b\x71\xbd\x9f\xb2\xab\x96\xee\x2a\x4d\xa9\xbd\xba\xb1\x37\xd4\x99\x4f\xf2\x4c\xd9\xd5\xce\x48\xc2\x37\x5d\x66\x82\x3f\x86\x7f\x55\xb9\xee\x20\x5f\xd8\x38\xa6\x08\x59\xd3\x02\x7c\xbd\x51\x5e\x4a\xd8\x6b\xe9\x25\xbd\x5c\xd9\xcf\xf8\x73\x71\x9d\x29\x62\x52\x86\x10\x25\xcb\xe8\xba\xed\x9c\x20\x5c\xbd\x1c\x95\xdc\x99\x2c\xff\xa4\xa5\xc9\xba\xe8\x50\x6d\x98\x4a\xd2\xb2\x34\xd6\x8e\xf9\x58\x84\x17\x99\x84\x6f\x37\x5d\x2f\xa6\x1d\xda\x21\x8d\x72\x11\xe6\x5f\x14\x95\xfd\x4d\x32\xa1\xea\x5c\x8d\x13\x75\x4c\x3a\x48\x5e\xaa\x6a\x1f\x9d\xeb\x99\x45\xa7\xd6\x3a\x7f\xad\x52\x8b\x34\xe1\xb6\x33\x61\xed\xcb\x28\x47\xce\x44\xcb\x21\xc9\xbe\xc3\x4d\xf3\x67\x77\x7f\xba\x38\xd9\xa2\xce\x85\x84\x65\x5e\xd0\x30\xd6\x05\xa5\xcc\xf2\x88\xe9\xd1\xc9\x86\xa0\xef\x0a\xde\xfe\x2e\x5d\xf0\x8c\x27\xea\x77\x34\xb7\x2f\xb0\x65\xb6\xcc\xda\x0b\x82\x54\x06\xe4\x9c\x9f\xe6\xee\x5c\xaa\x9c\xba\x82\x40\x47\xd3\x0e\xc0\xfc\x75\x80\xfd\x6c\x29\x36\x48\x8e\xb4\x08\x09\x25\xb4\xd3\x44\xa8\x54\x38\xbf\x3e\xa1\x23\x64\x6b\x70\x40\x7b\x7e\x98\x59\x40\xcd\x87\xa0\xc8\xc3\x9b\x80\x7d\xc9\xd1\xcc\x92\x14\x65\xb8\xe0\x39\x38\x82\xde\x00\xe2\x2f\xaf\x81\x38\xbe\x37\x53\x2d\xbb\x16\xaa\xac\x19\x68\xab\x40\x52\x91\x04\x51\x1f\xcc\xc3\x9d\x59\x2a\x82\x7f\xd1\x66\xc5\x2c\x0b\x2a\xe4\x1c\x4f\x3e\xff\x21\x9b\xe7\xce\x7f\xd7\x6d\xf3\xad\x05\xc1\xb2\x32\x34\x71\xcf\xc1\x84\x3b\x09\x23\x6b\x22\x14\xaf\xb1\xce\x16\x5f\x11\x5e\x62\x59\x42\xe1\x68\x01\xf4\x0e\x7c\x5d\x6e\x4e\xe0\x95\x00\x2b\xce\x21\xfa\xc3\x5f\x24\x05\x79\x01\xe4\xaa\x4f\x84\x8a\x89\xe8\xe9\x78\xd5\x01\x5d\xee\x6a\x7e\x28\xeb\xa5\xbf\xbd\x69\x76\xae\xc7\x48\x2b\xf7\x83\x57\x09\x21\x0a\x06\xe6\x74\x3b\xc6\xbd\xf7\x98\x66\xce\xf2\x44\x0c\x74\x6a\x6a\xb2\x98\xba\x28\x22\x32\xbd\x9f\xb2\xab\x4b\x3c\xc3\x87\x09\x87\x45\x78\xde\xad\xa9\x89\x16\xcd\x15\xc2\x3f\xc5\x2b\x61\x0c\x71\x41\x44\xcc\x51\xf7\xae\x77\xe8\x4c\xe3\x36\x6a\x2f\x7e\xae\x4d\x0b\x98\x17\x75\xdd\x94\xa6\xbd\xf9\x36\xac\x28\x57\xf0\xbd\xa8\xb1\x22\x63\xb9\x01\xf8\x41\xe5\x46\x60\x2e\xc3\x25\x61\xd5\xbe\x75\x2e\x74\xd5\x0b\x7a\xe4\x14\xba\xe7\xd2\xf0\xda\x92\x4a\x92\x14\xe3\xcd\x8a\xfc\x49\xf5\x1f\xdb\x4d\xce\x0b\x0a\xa6\x15\x6a\x06\x96\x57\x9f\x12\x79\xad\x78\x1d\x3e\x2e\x1b\x8a\xcc\x7d\xe7\x1e\x5b\xa5\x1b\x24\xcd\x87\x26\x7b\x34\x18\xe4\xe2\x2e\xac\x1f\x93\x3c\x88\x8b\x5b\x34\x6f\x6a\x48\xb4\x16\x9e\xbf\xf8\xf0\x97\xf1\x85\x35\xa8\x1d\xdb\xe7\x64\x4e\x65\x13\x8b\xa5\xce\x5e\x08\x48\x86\xfb\x99\x3b\x7b\x8e\x0e\x9f\x78\x1c\xd4\xf3\x0e\x9b\xc7\x49\x39\x96\xc6\x9c\x0d\x98\xf4\xfe\x1e\x25\xcf\x68\x6d\x00\x95\xb3\xf9\x25\x6b\x9c\x2e\x8a\xc4\x1f\x2a\xa7\x6d\xc6\x25\x3a\x7a\xff\xf3\xca\x56\xc3\xe1\xf8\x3c\xa8\x96\x5a\x19\xad\xd4\xb9\xa9\x49\x8a\x32\xec\x1f\x19\xf2\x7a\xc4\x9e\x48\x3a\xbb\x0f\x8d\xb6\x0a\xcc\x1e\x53\x1e\xa8\x3f\x97\x67\xec\x94\x5b\xc4\xd3\x99\xd4\x40\xa5\x3c\xeb\x6c\x93\x1e\xa1\x1f\x4f\x51\x7b\x7b\xfa\x7a\x34\x05\x5b\xa5\xcd\xcf\x25\x32\x95\x21\x30\x79\x6a\xed\x1d\x1c\x21\xb2\xf0\xc2\xa0\x21\xb0\x99\x67\x12\x3c\x6a\x3c\xe3\x38\xb2\xe5\x3f\xf8\xbf\x3c\xc3\xf7\x74\x57\x1c\xaf\xc8\xb0\x1d\x22\x1a\xe5\x08\x20\xa6\x10\xbd\x49\x75\x1d\xb5\x8c\xc5\x3c\x94\x8d\x24\x28\x80\x88\xae\x8a\xb0\x94\x82\x61\x41\xe3\xd8\x0a\x3a\x1e\x74\x84\x5c\x88\x55\x0a\xfd\xfe\x31\x89\xe9\xe9\xe9\x76\x84\x72\x2e\xd3\x65\xc3\xc9\x19\x67\xfb\x4a\xb9\x91\xcc\xc3\x22\xfc\xc8\xad\xa9\x09\xb5\x7b\xac\x9e\x9f\x60\x1d\x3f\x4f\x1b\xcd\x36\xf3\x72\x8d\xaf\x05\x78\x57\x62\x43\x2d\x7e\xf9\x7b\xec\x72\xe3\xba\xf3\xae\x8a\x8c\xc6\xea\xa2\x68\xa0\x17\x7f\x8a\x94\xed\x99\xd3\xaf\xd6\xf9\xd3\xd3\xf3\x9f\xf0\x9a\xac\x8b\xac\x55\x61\xaa\xb0\x96\x25\xf1\x75\xbc\xdd\xfa\x89\xc4\xff\xda\x6e\x30\x5e\x54\x44\xed\xb0\x66\xa8\x23\xf3\x48\xca\xcd\x8e\x8c\xd6\x44\x1b\xd7\x52\x5e\x00\x2c\xc0\x57\xe0\xbd\xda\x1a\xa5\x33\x1d\xd5\x58\x28\xb1\x21\x28\xf7\xbd\x23\x7b\xde\xdb\xc3\x1c\xa7\xd6\xdd\x8e\x81\xc7\x5f\xec\xc5\x47\xc6\x1b\xc9\x2a\x37\x48\x25\xb3\xc6\x5f\xe6\xfa\xe4\xd9\xcd\x3a\x9e\xdf\x47\x2d\x4e\x39\x75\x7c\x36\xad\x2c\xd2\x9b\xf9\x96\xdb\xcf\x38\x11\xda\x22\x24\x16\xea\x1a\xbc\x9c\x8d\xed\x4e\xc5\xcd\x22\x2c\x3c\xd0\xc7\x36\x88\xfc\xf1\xb6\x1f\xb9\x5c\x6b\x47\x28\xe9\x87\x1f\xa4\xca\x98\xf9\xf9\x61\x13\x07\x1a\x95\x32\xd7\x4e\x62\x11\x16\xe1\xbe\x64\xf6\xd9\xb6\x9b\xac\x28\x16\x04\x0f\x13\x93\x67\xd6\x36\xde\x95\xd6\x7e\xba\xe2\x9f\x2d\x3b\x17\x0c\xe7\x05\xd4\x18\xb5\xb6\x04\x5b\x4f\xdb\xde\x53\x24\xb7\x70\x36\x3d\x48\x0c\x34\x90\x5f\x09\x15\x40\x9e\xb7\xfe\x76\x72\x14\xe3\x26\x35\x2b\x61\xa2\xd3\x6a\xcc\x79\xd5\x9b\xe1\x3a\xa2\xab\xfd\xec\x24\xa8\x1b\xcd\x51\x0b\x80\x5d\x5d\xc5\x99\x1e\xac\x79\xa7\xf2\xec\x2d\x9d\x05\x51\xf3\xfc\x1f\x20\xc9\x39\x15\x7c\x72\x2e\x14\xa8\x16\x6c\xee\xa5\xd5\x62\x26\x56\x08\x26\xe0\x78\x12\x89\xc2\x8a\x5f\x0c\x15\xc9\x87\x4c\x90\xb5\x4e\xd9\x0d\x75\xe5\x4c\x4e\xf4\xd1\x1b\x04\xb0\x5b\x28\xfa\x64\x37\xcd\xc5\x77\x61\xae\xb5\xd3\xaa\x75\xd6\x96\xe5\x1e\xd4\x6b\x57\xd7\xfe\xe5\xad\xe9\x1c\x8d\x11\xf1\xd4\x82\x38\x66\xba\x38\xeb\x1a\xe4\x9b\xfa\x15\x2c\x0c\x3e\x5d\xc2\x4d\x94\x6c\x9c\xb3\xcd\xb6\xe2\xac\xfd\x65\x37\xc1\xde\x94\x79\xbe\x50\xca\xb0\x42\x8f\xb8\xfb\x59\xd4\x21\xc1\x0c\x97\xcb\xa4\xab\x4b\x2d\x67\xd9\xa5\x47\x27\xeb\x2f\x35\xf4\x10\x7b\x13\x47\xf4\x00\xc9\xf7\x1c\xdb\x6e\x2e\x5e\x58\x30\xed\x4f\xcb\x6f\xff\xf2\xec\xfb\x95\xcb\xfb\x8b\x10\x16\x1f\x77\xcd\x4f\xb7\x35\x38\x65\x2f\x70\xb3\x03\xcc\x2d\xfe\xae\xde\x45\x3c\xa2\xc3\x23\x51\x6a\x8d\x2d\x4e\x39\x16\xaa\x73\x95\xde\xef\x51\xf2\xab\xce\x70\x6e\x64\x93\x24\x75\x75\x36\x62\x72\x70\xa8\x9e\x55\x3a\x40\x5d\xa8\x21\x6b\x01\xed\x1a\xbc\x6e\x3a\xf3\x1d\x37\x64\x81\x73\xae\xeb\x10\x89\x99\xef\x72\x89\x86\x04\xe9\x11\x41\xc7\xe3\xe1\xcb\x6c\x77\xc5\x09\x1d\x22\x11\x69\x23\xbe\xb0\x99\x67\xbe\x06\xd4\xe5\x47\x8f\x6e\xe8\x4d\x06\x8f\x10\x82\x2f\x37\x64\x5e\x6c\xe9\xaa\x0b\x51\x5c\xa6\x90\x08\x9d\xd8\xb2\x20\xb1\x61\xf5\x25\x33\x35\x95\x44\x1d\xff\x6f\x95\x5c\x22\xc2\x43\x9e\x4a\x75\xb7\xdf\xfe\x29\x46\xd0\x65\x0e\xe3\xd7\x3e\x4f\xa9\x81\x20\x5d\x11\xa2\xda\x3a\x33\x3e\x19\x3e\xb3\x38\x0d\xf6\x87\x98\xba\x16\xfa\xe5\x45\xa2\x2a\x6f\x27\xf9\xa1\x27\xa3\xd7\x9d\x73\x03\x67\x49\xa4\xec\x80\x1a\xd3\x33\x8a\x2a\x71\x2e\x24\x88\x26\x8e\x83\x0b\xaf\x41\x0e\xfa\x18\x76\xb2\x68\x03\x07\xb3\x96\x13\xa9\x16\xe6\x09\x4a\x98\xa0\x6a\xe9\x83\xaa\xa5\xbb\xc2\x3a\x20\xe6\xb0\x08\x2f\x26\xd0\x73\x54\x52\xe0\xc1\x67\x76\x1b\x54\x59\xfe\x54\xaf\xe3\x7e\x24\xee\x9b\xda\x85\x09\x8a\xac\x58\x00\x73\xd6\x02\x7a\x86\xe7\x85\xc7\xaa\x41\xa0\xae\x37\xf7\x38\x53\x73\x05\xcf\x78\xa8\x2a\xe7\xe9\x91\xe3\x38\x90\xa8\x06\x68\x40\x92\x8b\xcc\xc0\xdc\x28\xf4\x52\xcb\x59\xb2\xe2\xdd\xe3\x53\xdd\x97\x1e\x47\xe5\xaf\xce\xb6\x3c\x25\x38\x6b\x01\xa6\xbb\x4f\xb2\xc5\x6c\x97\x97\xe2\x55\x60\x7a\xbd\xae\xed\xd7\xc8\x16\x6d\xfc\x1a\xcc\x05\xe9\xa6\x82\x0c\x1d\x11\x55\xaa\x56\x2d\x20\x9d\xa5\x2b\x0e\x97\x64\xf0\x95\x10\x38\x71\x45\xa5\xd6\x19\x86\xe7\x15\x24\x3b\xc7\xe9\x14\x38\xb3\xb3\xa7\xa7\xc7\x50\xc9\xe9\x24\x00\x93\x35\x19\x1c\xfe\x50\x39\x4d\x10\x9e\xb3\x72\x1c\x97\x8a\x3b\x5e\xbe\x9a\xc8\xd1\x02\x24\x6b\xa0\x4e\x4c\x9f\xc1\x02\xd3\x68\x40\xb3\xf9\x84\x90\x90\xb4\x72\x3f\x14\xc5\x3c\x33\x36\x1d\x05\x01\x4e\xb0\x9d\x6f\x6f\x26\x4f\x3d\x30\x19\x2e\xc5\x5c\xa1\xdb\x17\x15\x94\x14\x54\x49\xbc\xad\xda\x3b\xf4\xcf\x0a\xc1\xec\x28\x4b\xd1\xb3\x11\xe2\x00\xc9\x4d\xa8\x6c\x02\xa4\xdc\xf8\x5a\x8c\x47\x4d\xe4\x7f\x64\x90\xb1\x90\x4f\x7c\xfb\xdb\x48\xb4\xb7\xcf\x5c\x86\xad\x5d\x7d\x0b\x27\x02\x0d\x9e\xa9\xf5\xf2\xc3\xf3\x05\x37\x7c\xbd\xe0\x23\x39\x30\x86\x52\x6a\x0f\x04\x1e\x60\x21\x9d\xc7\x56\xe4\x8d\x2a\x03\x2a\x29\xfb\x81\x39\xee\x04\xe7\xeb\x2e\x6b\x6c\x31\xe6\x4a\x3a\xd8\xce\x07\x1d\xd4\x4d\x03\xb3\xe7\x8c\x09\x8d\x65\x84\xa1\xbb\xc2\x16\xc4\xb9\x5a\x5c\x70\x7d\x3f\x82\xfb\x77\x95\x72\x2c\xe5\x73\x30\xed\x7d\xf1\x0a\x46\xd7\x62\xe6\x8f\x72\x9e\xb7\x18\xe7\x1c\x55\xfb\x5a\x2b\xd1\x1a\xe5\xa5\xb4\xfc\xbb\xaa\x89\xb2\x0e\xdb\xd9\xe5\x34\x51\x1f\xc2\x39\x8e\x83\xe5\x9b\xd9\x9a\x58\x9c\x66\xd9\xb7\x4a\x5b\x7c\x13\x80\x89\x31\xc1\x76\xa7\xa6\xda\x56\xaa\x9d\x4b\xfa\xb4\x80\x27\x93\x45\xde\xcd\x5f\xf4\x6e\xf7\x3a\xff\x1b\xd2\x0e\x68\x06\x48\xea\x74\x16\xd2\xea\xc4\x04\x29\x71\xfd\x66\xa7\x54\x72\xf3\x3a\x24\xc0\xdc\xbe\xaa\x22\xea\x34\x82\x8f\xa5\xd0\x41\xe1\xb9\x17\x02\x1a\x86\xd8\xde\xb0\x28\x07\xfa\xaa\x16\xf0\x4d\x42\x25\xff\xc7\x07\x37\x26\x92\xc2\x36\x3b\x86\xa8\xdf\x34\x34\x98\x17\x37\xdb\x3c\xd2\x3b\x6d\xe6\x72\x99\x70\x1c\x5b\x16\x54\xd8\x65\x35\xf2\x7d\x26\x02\x6d\x86\xb9\x52\xf0\xdb\x6a\x8b\x28\xb7\xd3\x0a\x3d\x73\xb4\x80\x3f\x2f\xf7\x06\x71\x57\xbd\x6e\x28\x07\x06\x56\x9f\xc4\x3c\x4b\xb0\x9b\x9a\x1c\x7c\xda\x38\xe1\x8f\xc3\xf1\x12\x29\xb9\xb4\x5e\xcb\x93\x0d\x30\x9f\xd3\xae\x5b\x3d\x23\xbb\xeb\xb6\xad\x6e\x2c\xb7\x91\x9a\xa1\x78\xee\xfc\xe6\xdb\xe8\x07\xd1\xa4\xf1\x2c\x84\x40\xf5\x08\x96\x57\x64\x01\x3d\x3c\xc9\x37\xb1\x58\x89\x97\x44\x0c\xf7\x95\x86\xed\x2b\x38\x2c\x12\xae\x7b\x23\xeb\x72\x6e\xcd\xe8\xfa\xaa\xa7\xcb\xe1\xcd\xc2\x7a\x6c\xf2\x22\x39\x0b\x08\xf3\x71\x4e\x85\x65\x3b\x0f\xa7\x6a\x01\x53\x5a\x40\x73\xe0\x40\xdb\x57\xbf\xaf\x75\x5b\xe8\xdd\xca\x80\xda\xc6\x3b\xee\xb8\x10\xe6\x69\xc6\xf3\x87\x7f\xcf\xa5\xc7\x36\x5b\x0f\x7f\xe1\x7a\xdb\xc1\x3c\x6c\x43\xf8\xcb\xd3\x3b\xb6\x3e\xe2\x6f\x54\x67\xf1\xf7\x3d\x3e\x75\xe7\x92\xeb\xd6\x8e\xe3\x5a\xe1\x1c\x0d\x35\x37\x9d\x85\x0d\x9e\x15\x59\xfb\x8a\xfa\x2c\x36\xb4\x80\xf1\x99\x65\x69\xed\x54\x30\x42\xd9\x0a\xcd\x86\x42\x0d\x2a\x3d\x14\xc4\x7d\xdd\x89\xd9\x11\xcd\x63\x72\x08\x70\x5c\x6c\xc0\xb8\x89\xb9\x84\x6c\xfd\xc3\x02\x17\x15\x54\x49\x7c\x9c\x9e\x42\xa4\xb9\x1f\x54\x4b\xa6\x05\x26\x17\xb9\xe5\x15\xf8\x53\xee\x32\xf8\x4a\x82\xde\x20\xec\xc4\x81\x9a\x29\x52\x86\x70\x73\x14\x11\xeb\x7a\xc0\x44\x76\x7c\x70\x28\x8a\xc7\x89\xe2\xa3\xd9\x77\xc4\x74\xe6\x27\xb4\x1b\x4d\xb5\xbf\x2c\x3c\x75\xf1\x98\x38\xad\x7b\x3c\x4f\xb6\x93\xc8\xb9\x10\x90\x93\x62\xbc\x1f\x1a\xe2\xc0\x89\x76\x40\xed\xab\x4f\x1e\xff\xa8\x9b\x9f\x47\xcd\x8f\x41\xe7\x82\xd6\x9d\x14\x75\x56\xc6\x52\x30\x42\x89\x6f\x62\x08\x1b\x62\x86\xf1\x29\x2e\x2d\x04\xfa\xde\x4a\x0f\xcc\x7b\x3a\xa7\xaf\x9f\xf2\x4e\x74\x44\xa2\x72\x83\x56\xa2\x79\x11\xb1\x70\xdf\x36\x2d\xa0\x76\x5d\x37\x97\x20\xd3\x26\x52\xfb\xa6\x05\xff\x99\xf9\x4c\x39\x21\xc4\x0d\xc7\xe7\x50\x73\x3b\x18\x8c\x1a\xc8\x7a\x8d\x2d\x6d\x65\xb8\x36\x79\xcc\x8a\xb3\x74\xa5\xf4\xfe\x58\x4c\x68\x0c\x42\x90\x1c\xac\x42\xa0\x09\x50\xd5\xb3\xc9\x22\xf8\xd2\x8f\x2f\xcb\x0c\xbc\x29\xa2\x76\x70\xf9\x2f\xac\x84\x31\x6a\x27\x95\xdd\x89\x03\x2e\x8a\x57\xef\x5f\xa0\x08\x2b\xda\xed\x28\xa4\x67\xea\x0f\x02\x0a\xcf\x94\xd4\x64\xa8\x55\x1c\x84\xbe\xcc\x35\x6d\x95\x39\xa6\x31\xc1\x50\xe9\xae\xbe\x93\xba\xae\x9b\x06\x5c\xbd\x83\x23\x82\xe7\x19\xa9\x47\x98\x3a\x2a\xea\x7f\xe4\x3a\x4c\x91\x8e\x23\x6b\x48\xb2\xc3\x9b\x4f\x13\x94\x0c\x7f\x80\xbb\x27\x52\x99\xfc\xd1\x96\xcf\x3d\x7e\x96\x44\x30\x01\x47\xdf\xcd\x0e\x28\x54\x5c\x5f\x19\x74\x5f\x66\x1f\x67\x98\xd9\xeb\x97\x91\x92\x63\xb1\x13\x29\xe4\x3f\xfe\xf3\x32\xe2\xb6\x96\x11\x2d\xa4\xcd\x58\x5f\x16\xba\x99\x9c\x08\xa2\x77\x3e\xfc\xa6\x36\xd4\x17\x6a\x8d\xfb\x26\x0f\x64\x88\x24\xe4\x1d\xeb\x6b\xf6\x26\x7e\x8e\x22\x93\xdd\x17\xb9\x97\x36\xce\xb2\x10\x44\xe6\x23\xee\xc1\x24\xf7\x08\x1b\x57\x85\x98\x1d\xc7\xcd\xe8\xaa\x93\x4f\xb1\x16\x1d\xd5\xbe\x7f\xf1\x2c\x9f\x17\x84\xd9\x9d\xab\x2f\xba\xd0\x5a\x8d\x55\xd9\x95\xf0\xd7\xa9\xde\x8c\x51\x76\xe2\x4b\xf4\x51\x9c\x9b\x9f\x8f\x3e\xba\xf5\xb9\x15\x6d\xc5\xf1\x23\xa8\x4e\x90\xe8\xda\x44\x3b\x5b\x84\x1a\x9d\xc3\xeb\x57\x85\x39\xbf\x59\xdf\x12\x57\x2f\x6e\x86\x65\x17\xf8\x4e\xfd\xc1\x3d\xbe\xdd\xbd\xed\x99\x67\x77\x11\x5d\x17\xc5\xa7\xc7\xfa\x4d\x61\xbe\x1d\x08\xdd\xc2\x5c\x3b\x59\x64\x67\xea\x33\xc1\x89\x34\x33\x7b\xc0\xb2\x95\x1c\x5a\x14\x99\xbb\x70\x10\x48\x70\xda\x47\x2d\xf2\x32\xb4\x15\xa9\xd8\xe2\xdd\xdd\x3e\x29\xc5\xbc\xda\x82\x63\x09\x25\xa8\xaa\xd5\x80\x6b\xae\xa7\x81\x82\xea\x7d\xd4\x55\xdd\xb2\x4c\x9d\x60\xa1\x8a\x5d\xfe\xf1\xfd\x6e\xfc\x22\xae\xa2\x1d\x1e\x61\x2f\x37\x21\x8e\xbc\x2c\x1f\x3c\xb2\xa5\xd7\xf5\xdf\xca\x21\xb2\x32\xc8\xf2\xf4\x85\x91\xf7\x9f\x99\x8e\x29\xf7\xed\xa8\xc2\x09\x0b\x29\xb2\xaa\x52\xf6\x72\x4e\x7f\xdb\xdc\x71\x79\xa8\x59\x82\xe1\x30\xb5\x07\x72\x29\xbf\x6e\xfa\xc1\xa0\x48\x58\x12\x41\x30\xd1\x02\x3e\x0d\x35\x53\x67\x06\x53\xbf\x3d\xf2\xfe\x76\xdf\x89\x7f\x5b\xb0\x57\xdf\xe7\xb1\x2d\x7a\xf5\x7d\x1e\xdb\xa3\x57\xdf\xe7\xb1\x3d\x7a\xf5\x7d\x4d\xdb\xa3\x57\xdf\xd7\xb4\x3d\x7a\xe5\xef\xdb\xa3\x57\xfe\xbe\x3d\x7a\xe5\xef\xdb\xa3\x57\xfe\xbe\x3d\x7a\xe5\xef\xdb\xa3\x57\xfe\xbe\x3d\x7a\xe5\xef\xdb\xa3\x57\xfe\xbe\x3d\x7a\xe5\xef\xdb\xa3\x57\xfe\xbe\x3d\x7a\xe5\xef\xdb\xa3\x57\xfe\xbe\x3d\x7a\xe5\xef\xdb\xa3\x57\xfe\xbe\x3d\x7a\xe5\xef\xdb\xa3\x57\xfe\xbe\x3d\x7a\xe5\xef\xdb\xa3\x57\xfe\xbe\x3d\x7a\xe5\xef\xff\x07\xb4\xe3\x07\x90\xc8\x1c\xc3\xf6\x68\x80\x8a\xc0\x69\xf6\x6e\xe0\xaf\xa4\xe6\x16\x1c\xce\xc6\x28\x0f\x5e\xfa\x99\xdc\x80\xdd\x77\xdb\x1c\x23\x35\x43\xfb\xd7\x8f\x7d\xcc\x4b\x4c\x0f\xef\xcc\xc7\x9c\xce\xfd\x98\xcf\xf1\x13\xc0\xba\xb2\xeb\x95\xe6\xe7\xc5\x1b\xa6\xd7\xb4\x80\x5b\x45\x5a\x80\x32\x4c\x0b\x90\x41\xdc\x2c\xd6\xb3\x1e\x6a\x01\x7b\x7e\xd0\x02\x7e\xea\xd5\x02\x34\xd5\x5a\xc0\x02\x85\x0e\xda\xe8\xfa\xaa\x78\xbf\xd4\xde\x21\x86\x93\xd2\xe7\xcc\x21\xba\x9a\x5b\x4b\x89\x3f\xf3\x9c\xbc\x6d\x80\x4d\x65\xb7\xdd\xd0\xb5\xc0\x8d\x6e\x71\xd4\xfb\x68\x97\x07\xfc\x48\x95\xc8\xed\x57\x31\x44\x69\x8e\xe2\x39\x75\x56\x40\xef\x52\xa8\x1a\x32\x99\x3e\xc1\xbf\xb2\x3f\x1d\xef\xcb\xd1\x02\x5e\x3b\xf7\xdb\xa9\xbf\xfe\x52\xe4\xd0\x8e\x3e\x66\x5f\xf3\xdb\x3e\xe0\xd6\x07\xa8\xd6\xd2\x5e\x94\xca\x53\x33\x8f\xc4\xdc\x41\xef\x8f\x1b\x8f\xb9\xef\x1e\xf7\x4b\xb7\x84\x23\x96\xe5\x48\x5a\x2e\x07\xe3\x5b\xbc\xac\x2f\x79\x1a\xa2\xcf\x2f\xa4\x1d\x6f\xb8\xf4\x18\x22\xad\x96\x91\x8a\xc2\xe4\x92\x79\x7e\x7c\x05\x93\xca\x99\xf9\x4b\xd2\xf5\x5e\xee\xaf\x3f\xdb\x82\x52\x9a\xac\x67\xa2\x0f\x64\xf0\xe5\x0b\x8b\x5f\x84\x7d\xde\x76\xd1\xe4\xce\x3a\xf5\xcb\x85\x36\x63\x1c\x44\x93\x1a\x4c\xa1\x16\x21\x30\x9c\xa7\xce\x09\xae\x07\x96\x6f\x78\x4f\xa3\x76\x16\xa7\x84\xda\x59\x16\xf9\xbf\xe5\xc0\x5e\x5d\x50\x84\xd4\x49\x09\xc6\xe3\x11\xb2\x4e\xcc\x67\x8c\xd0\x7e\x84\x90\xf0\x01\x17\x64\xa2\xf4\x22\xae\x5b\xbf\x9d\xc8\xe6\xcb\xb4\x00\x83\x4a\x62\xa5\xfb\x09\x07\xe8\x5f\xd1\x9f\x5b\x84\x2d\x91\xe8\x0b\x25\x0f\xff\x41\x9d\xcd\x86\xfb\x21\x53\x19\x37\xb4\x80\x95\xbf\xcd\x5c\x0a\x8c\x02\x05\x4b\xb9\x11\x7c\xca\xaf\x95\x51\xfe\x8d\x0a\x20\xc8\x78\x7c\x5f\x56\xd7\x5b\xb6\xad\xb0\x74\xec\xff\x45\xdd\xbb\xff\x25\x7d\xf7\xff\xe3\x6c\x7b\xef\xd4\x56\xbb\x98\xe9\x9c\xa5\xbe\xa7\x4b\xd7\xcc\x8a\xc8\x43\x9e\xb8\x3e\xd7\x4c\x57\x9e\x56\x96\x07\x4c\x5d\x92\x47\x3c\x64\x9e\x0f\xe0\xb5\x5d\xab\xf0\xc8\x55\xa6\x89\x27\xae\x99\x42\xa6\xe8\x4c\x11\x53\x91\x65\x28\x99\x28\x53\x10\x26\x28\x94\xa4\x04\x86\xa4\x28\x28\x07\xf9\xde\x40\xdb\xda\xde\xd7\xf5\xfe\xfc\xf8\xe9\xdb\x1f\xf0\x4c\xe5\x79\x3f\x3e\x1e\xaf\x17\x18\xcd\x0e\xaf\x4d\xa7\xcd\xcd\x50\xff\x92\x00\x3a\xc1\x84\x3a\x8f\x2e\x9f\x74\xbe\x89\xa9\x5e\x13\xf2\x89\xcc\x24\x2a\x3c\xc2\x6a\xc2\x23\x3d\xd7\x58\x6e\x97\x5b\xfe\xe4\xea\xcd\x09\xca\xd1\xf3\x63\x6b\x99\xe2\x92\x0a\x81\xec\x5e\x1b\xb9\xa2\xbb\xc4\x33\xc6\xe6\x52\xee\xf5\xfb\x14\x5c\x1a\x48\x96\x2d\xfc\xdc\x5b\x09\xab\x4b\x29\x30\xae\x63\xc4\x84\xc5\x52\x09\x9f\xd0\xe5\xcc\x8f\x0e\x1e\xa8\x8a\x29\x30\x32\xef\x58\x5c\x1b\xbe\x45\xd1\xcc\xde\x9a\x35\x0a\xf3\x4e\xb5\x5b\xb0\x48\x5d\xcb\x2a\x5b\x56\xc8\x36\x1f\x82\x77\x79\x6e\x7d\x0d\xe2\x1b\xff\x7f\x90\x7a\x97\x2c\xda\x89\x91\xb8\xa2\xa1\x76\xd1\x8a\x27\x37\x0f\xc9\x03\x1d\x29\x79\x00\xf9\x08\x77\xe9\x88\xb2\x7a\xd3\xd8\x06\x86\x53\xae\x63\xab\x37\x63\x6e\xe0\x16\xa3\xd2\xfe\x52\x1c\x06\xac\x1a\x0e\x4b\xc8\x75\xdc\x41\x0d\x3e\xe8\x13\xcd\xa9\x2a\x44\x35\x8e\x2b\x8d\xcc\xca\x08\xde\x4b\x9c\x89\x76\x4c\xb4\x13\xa6\xc4\xd1\x39\x7b\xfd\xb0\xff\xf2\x13\x1a\x19\x9e\x16\x82\x59\x96\xbb\xcf\xe7\xea\x3f\xec\x5b\x1c\x4a\xff\x52\x41\x1c\x7a\xb5\xec\x97\x57\xbf\x23\xd2\x99\x08\xcf\xe5\x62\xec\x7c\xd8\xb0\x2e\x68\x87\x8b\x6c\x80\x29\xea\xb5\xdf\x73\xeb\xad\x77\x6d\x71\xcb\x47\x92\x0b\x76\xed\x8f\xe7\x4c\xf9\x73\x39\x54\x64\x24\xf0\x05\x63\xa2\x70\xe3\x06\x75\xee\x12\x47\xb4\x0a\xf7\x22\x5c\x3d\x74\x2e\x40\x11\x76\x0a\xc9\xe7\x69\x3a\x9e\xf8\xc4\x7b\x06\xc5\xd8\xc4\x40\x83\x4f\xc7\xa4\x3a\x3f\x08\x2c\x2f\xc6\xee\x0e\x5b\x06\x45\x74\x46\xba\xe3\xe0\x40\xb9\x23\xaa\x6a\x59\x09\x2b\x44\x17\xc6\x57\xad\x0c\xcf\x64\xcf\x24\xbd\xf3\xed\xc7\xdb\xcf\x65\xbc\xe6\x9f\xce\x1b\x8b\xe8\x77\x12\xd9\xe2\xa1\x22\x4e\x9d\x92\x95\x60\x2d\x4a\x9b\xb3\x3d\x81\x7a\xd4\xdd\x6d\x7d\x78\xe6\xdb\x55\xff\x01\x4d\x8b\x67\x70\x6a\xc2\x5c\xa3\x36\x92\x28\xdd\xc8\x0b\x78\x70\x32\xd0\x91\x2a\xfa\x50\x9a\x3f\xbc\xa7\xd6\xcd\x1f\x62\xa9\x03\xbc\xbb\x37\xb8\xbb\x21\x9f\xee\x3d\xac\x55\x70\x7b\x53\x43\xe9\xe0\xd1\xcf\xfe\xbc\x38\xff\x56\x71\x10\xa9\x95\x3d\x61\xd2\x3a\x8c\xb3\xa5\x36\xc0\x40\xe8\xef\x5a\x19\xcf\x34\xbe\xdc\x6a\xea\xdc\x88\x51\x4f\x7f\xb6\x80\x74\x36\x83\xef\xda\xd1\x7d\xe3\x78\x0c\xec\x18\xd4\xbe\x70\xf4\x04\x96\x99\x13\xe2\xba\x8a\xb4\x87\xa5\x39\xd1\xf8\x2e\x59\x3c\xb1\x86\x87\xce\x04\x87\xa2\xed\xad\x36\xb0\x57\x3e\xa4\xd2\xaa\x38\x55\x32\xb9\x05\x4c\xf3\xe5\xc0\xf9\x9f\xff\x09\x78\xe3\x75\xb7\x5d\x6f\xc6\x7e\xd3\x24\x75\x68\x83\x61\x2c\xaa\x3a\xa2\x19\x71\x6d\x66\xc8\x7d\xe4\x39\xdb\x2e\xef\x7e\xfa\xfa\x73\xb2\x15\x1b\x85\x29\x0c\x62\xa3\x16\x77\x2a\x2d\x27\x52\x57\x87\x36\x82\x67\xfb\x7c\xbf\x45\xa7\x6c\x2e\x7a\x93\xa1\x93\x98\x6e\xdb\x03\xd2\x9c\xaa\x07\x19\x45\x15\x0f\xca\x40\xb0\xd6\xa0\x6b\x52\x20\x3f\x43\x98\x89\xbd\x93\xbe\xfd\xe7\xee\xfc\x37\xcf\xd7\xbe\x0b\x02\x1b\xf5\xc8\xd5\x9e\x3a\x40\xa3\xc2\x73\x18\xf6\xd6\xbb\xe5\xe2\x99\xe4\xb3\xbd\xed\x96\x97\x73\x74\x00\x3a\xbe\x88\xc1\xf0\x9e\xaf\x74\x9c\x44\xb5\x32\xec\x3c\xe7\x2e\x61\xe7\x55\x29\xd6\xa5\x60\x87\xf6\xb9\xb9\x32\xf9\xf5\x01\x2b\x8a\x76\x20\xeb\xc3\x4c\x46\x61\xfc\x27\xf4\x15\xb6\x6c\xa0\x0f\xb1\x49\x8f\x61\x17\x4b\x69\x3b\xad\xa2\xce\x8f\xfe\xf5\x75\x37\x8a\x6f\xf0\x2b\x6a\x2b\x9f\xb5\xe7\xf9\x66\xa2\x75\x00\x90\xe8\xaf\xdc\x65\x77\xab\x8d\xdc\xa4\x47\x65\xd5\xde\x39\x84\xd8\x40\xb0\x65\xa5\x47\x86\x7d\xbc\x2f\xe3\x98\xb8\x54\x86\xa9\x5e\x1e\x2c\x36\xd9\xeb\xbc\xdf\xf4\x85\xb0\xcd\x85\xea\x99\x59\xca\xcd\x90\x39\x62\xef\x44\x33\x81\xa8\x07\x4e\x0d\xff\xfe\xc9\xe5\xbd\x3a\x80\x91\x9a\xea\x5b\x50\x55\x3f\xb9\x33\x18\x3c\xd9\xa3\xc1\x4a\x4e\x5f\x43\xbb\x79\xcd\xc5\xbb\x3b\x74\xd1\xca\xee\x6c\x46\x7e\x48\xdc\x5f\xcb\x7b\x5e\x55\xeb\x1f\x38\xdd\x83\xe9\x91\xc7\x8f\x86\x07\x59\x8b\x89\x48\xe4\xe6\xc4\xae\xf8\x12\x27\x42\xc3\x44\xbd\xe9\xc3\xd0\xd7\xdb\xb3\xee\xf5\x95\x38\xf1\x34\xcd\x79\x7e\x30\xd0\xa7\xd7\x6a\x86\x1e\x8b\xe6\xb9\xd8\xcb\xc0\xf5\xb4\x3d\x64\x3c\x8f\x56\xb8\xec\xca\x0b\xff\x52\x55\x35\x5b\xf5\x24\x8c\x97\x98\xca\xc5\x16\xdf\xbf\x3f\x54\xb6\x5a\x72\xcf\xe1\xf6\x48\x32\x33\x92\x17\xde\x4f\x5a\x85\xd1\xef\xd6\xd0\x87\x3f\x3d\x65\xa6\x84\x03\x51\x0f\x4c\x1b\x8f\xe3\x74\x80\x23\xf3\x76\xff\xe9\x65\x2c\xc5\x5e\xcf\x1e\xb4\x0a\x69\xb9\xdc\x7b\xfb\x3f\xb5\x8b\x63\xe3\x79\x32\xcb\xcc\x4c\x66\xb1\xbf\x9f\xf3\xaa\xf0\x2f\x53\xbc\xc9\xc3\x50\x66\x1c\x79\xd1\xc8\xc3\xaa\xab\x0e\xd1\x6f\xf7\x2c\x98\x4e\x5c\xb3\x7d\xf0\x5a\x5b\xe7\x77\x5d\xea\x67\xfb\x15\x68\x8a\x74\x65\x27\xe9\x83\x49\xc2\xc3\xf6\xb9\x15\x08\xfe\x6b\x2c\xae\x1c\x38\x75\xdd\x1d\x1f\x38\xd7\xb9\x73\xbf\x1f\x53\x5e\x02\x22\x77\xd2\x06\xcb\x4d\xdc\xb2\x53\x39\x26\x66\x5e\x2e\x41\x56\x0e\x96\xb1\x67\xbc\xac\x3f\x9c\x9d\xfc\x5f\xce\x86\xbc\xce\xc6\xfb\x0d\x2e\xb1\x06\x4a\x2c\x53\x74\x49\xfe\x7b\xf7\xb9\x8f\x02\x34\xc7\x08\x1b\x0e\x85\xfd\xde\xcc\x00\xa9\x20\x29\x0c\x19\x75\xbe\x69\x7f\x6f\x01\xce\x89\xc2\x7c\x90\xa1\xce\xce\xf0\x8c\x3a\x4c\xff\xdf\x5e\xe7\xf8\x5a\xdb\xdf\xcc\xa6\x18\x45\xd1\x69\x17\x02\x98\xe0\x9d\xa3\x03\xb8\x2c\x03\xf0\xab\x3a\x40\x00\xed\x7b\xbb\xf2\x03\x19\x0b\xd5\x4b\x59\xbc\x86\xd8\x40\x50\x64\xd5\x95\x1b\x38\x31\x0c\x2e\xba\xc2\x11\x24\xdf\x2e\xf1\x32\x3d\x0e\xca\x19\xc8\xfb\xf8\x7f\xfd\x16\x6b\xc8\x6b\xec\xea\xf6\x52\xa1\x6c\x82\x5d\x28\x91\xe0\x82\x42\x2b\xb5\xff\x32\xce\xdf\xf5\x8e\xc7\xbe\x18\xe6\x1e\x46\xf6\xac\x8c\x97\x21\xc8\x3b\x0d\x99\x17\xa8\x8f\x36\x39\xf9\xec\x11\x78\xb0\x47\xfd\xb7\x7f\x63\xca\xb5\xff\x08\x7d\xc3\xbf\x8f\x5e\x5f\xa7\xf4\x6e\x02\x3b\x29\x81\x6d\x9d\x16\xcf\xf2\x1e\xbf\x7f\x4a\x3c\xf3\xbe\x30\x78\xf9\x92\x62\x2c\x61\x91\x44\x4c\x6a\xae\xd2\x92\x2c\x9f\x31\xfd\x6b\xf0\x2a\x58\x5e\x2c\xef\x41\x3c\x5e\x8f\x5d\xab\xaa\x7e\xc1\xc3\x8a\xff\xfd\x3d\x68\x96\xaf\xaf\x69\x79\xdb\xb6\xe9\xa2\x2a\x7e\x7d\x43\x78\x87\xd9\x3c\x64\xc4\x3b\x53\xbf\x86\x5d\xc6\x55\xa7\xcf\x42\x98\x7b\x78\x6e\x4e\x81\xa2\xe4\xdb\x73\x87\x07\xf7\x17\x8f\x69\x0a\xcf\xfd\xef\x07\xbd\xbe\x56\xe1\x8d\x9e\x55\x41\x40\x77\x8e\x26\x9f\x85\xfe\xb9\x7d\x5e\x50\x13\xd6\xdd\xe7\x9b\x59\x9a\xd2\xe7\xe7\xb2\x54\x1b\x70\x25\xb7\x5c\x1a\x98\x60\x4d\x84\x9d\x32\x6f\xf0\xb0\xe6\x42\x1e\xdc\xb1\x06\x5e\xb1\xfa\xbf\xbd\xc6\xa4\xe0\xb5\x14\xf4\x8f\x28\x24\xb4\x5c\xff\x23\x7d\x84\x3c\x64\xa1\xe9\x9f\xb8\xd2\xd1\x4b\xd7\x22\x48\xab\x9e\xc3\x6b\x16\x72\xd7\x17\x4c\xff\x6b\xf1\x9b\x55\x7c\xc1\x07\x33\xf9\x16\x5e\x6e\xe9\x04\xe7\x8d\x82\x1d\x44\x42\x2a\xd7\xca\x36\x03\x35\x95\x97\xec\xea\xfb\x55\x9b\x35\xf0\x4a\xf2\xa1\xab\x36\xce\x12\xb2\x7d\x08\xbf\x6f\x98\x08\x31\x92\x0e\xfc\xbc\xf2\x7f\xfb\x7f\x0b\x5e\x43\x6d\x7e\x83\xdb\x31\xe5\xf2\xf6\x47\x6f\x4d\x5a\xdb\xdb\xdd\xbc\x19\xfa\x4c\xea\x2c\x36\x22\x2c\x79\xd4\xf8\x6e\xa0\xf1\xbc\x08\xa9\xd0\xcb\xc6\xea\x12\x01\x9f\x18\xdd\x59\x6f\x89\x5b\x8e\x4f\xbc\x29\x14\x16\xb1\x99\x39\x35\xc9\x72\x8f\xbc\x04\x36\x8b\xae\xa1\x26\xe5\xc6\x0f\xd9\x66\x9e\x29\x5c\x73\x27\xdb\xe4\x68\x7a\x9e\x0a\x54\x21\x3f\x3d\x11\x52\x97\xaa\x96\x27\xad\x92\xdc\xe7\xee\xd9\x23\x99\x60\x07\x05\xa7\xaf\x9a\x2b\x6f\x8e\x67\xd2\x80\x60\x86\xe6\x10\xf4\x78\x0e\xc3\x3e\xd7\x04\xc0\xa2\x0f\xc1\xf7\x10\x09\xc6\xad\x01\xf4\xf1\xef\x54\x05\x3a\xc0\xae\xdc\x43\x1a\x9b\x2f\xc6\x46\x68\x7d\x61\xaa\x8a\x76\xf4\x9d\x59\xc7\xe2\x94\xfe\x25\xd7\xbe\xd5\x2e\x2b\xbb\x4f\x18\x17\x45\xf5\x31\x67\x73\x0e\x41\x8f\xb7\x27\x05\x91\x45\xe3\x44\x4b\x20\xc5\x25\x9d\x06\xfc\xce\x8e\x21\x0a\x2b\x87\xc3\x5a\x3d\xa3\x08\x0b\xb0\xc0\x81\x81\x3a\x2a\x14\xe9\xf4\xf1\x23\x25\x83\x68\x64\x0f\x3f\x0a\x78\xba\x27\xc2\xb2\x71\x7e\x1e\xa6\x09\x83\x1e\x9e\xcc\x83\xd5\x6c\x0c\x50\x8e\x52\x33\x59\x7f\x9b\x6a\x13\xff\x2c\xbd\x39\x71\xcf\x74\x8e\xdd\xb4\xfc\xb4\x48\x29\x75\xa9\xc7\x56\x10\xfc\x3a\x6e\x3c\xb9\x5d\x55\x85\x29\x94\x7f\xf8\xcb\xe3\xff\xe5\x0f\x67\xf9\x9a\xd9\x8d\xbd\xff\xf8\x3b\x00\x60\xde\x62\x1e\xf8\xaf\xd3\xb9\x29\xb8\x4c\xbc\x75\x79\x80\x59\xed\x19\xed\x9a\xc3\x80\x86\xba\xc8\xf3\x27\xb8\x24\x29\x63\x7b\x82\xd8\xbc\x4f\x53\x2e\xcd\xe3\xcc\xc2\x6c\x4e\x88\x9b\x60\x08\x0a\x8f\x91\x59\xfe\x65\x2c\x4b\xc1\x78\x6f\xa9\xc0\x43\xd3\xb7\x64\x03\x7b\x3b\x56\x95\xce\x57\x4a\xc3\x94\xcb\xe0\xc8\x94\x3e\x91\x44\xe2\xdf\x3f\x7e\x63\xd8\xca\x96\x22\xbc\xbc\xe8\x57\x5e\x4b\x1c\x41\x51\x3d\x0f\x3c\xf9\x0c\xdc\x74\x28\xbe\x31\xc6\xda\x4a\xae\x03\x5c\xd6\xee\xb8\x34\xe4\xee\x53\x87\x3e\x43\x4b\x5a\x3e\xcc\xd3\x01\x8e\x70\x55\x69\x5c\xf7\x45\xa8\x8c\x34\xb0\x39\x2e\x58\xed\xcd\x13\x4b\xc6\xa3\x72\x1f\xec\xe1\x81\x49\x83\x0a\x76\x9b\x4b\x72\x86\x71\x2b\x72\xf6\x96\x70\x7a\x16\x88\x7a\x60\x26\x1e\x4a\x72\x62\xc4\x27\x17\xb8\xe4\x38\x76\xbb\x50\xbd\xbe\xe4\xc7\x38\xb8\x2e\x8a\x67\x8e\x8b\xe6\x62\xf6\x95\xca\xb0\x09\x2b\x6c\x71\x49\xa0\xc9\xcc\x77\xa9\x0f\x9d\x22\xea\xc4\x94\x62\xe6\xc3\xa7\xc1\x2a\x10\x68\xa2\x2c\x36\xb0\x12\x36\xae\x03\x3c\x45\xaf\x41\x89\xb3\xce\xbb\x9d\xba\x4e\x77\x26\x79\x06\x75\xdc\x43\x49\x81\x21\xeb\x68\xf3\x1f\xfb\xbd\xac\x3f\xb0\xd9\xd8\xfc\xf1\x98\xfd\x04\xad\x7f\xc8\x75\x68\x53\x2e\xd4\x1c\x21\xcb\xa5\x9e\xa3\xfe\x63\x80\x63\xef\xe2\x1f\xc7\x16\x79\x9d\x18\xca\xa6\x41\x2a\x37\xa3\xb2\x84\xb4\x87\x6e\x59\x82\x08\x1d\xc0\x42\x72\x1c\x97\x44\x7a\xeb\x3f\x2a\xd5\x6b\x36\x03\xc3\x4c\xde\xec\x9f\x04\x03\xaf\x2d\x5e\x7d\x07\x79\xbc\xa1\x07\x14\xf6\xf9\x46\x37\xa5\x9b\x02\x79\xf4\x2b\xab\x2b\xe6\x1a\x66\xb0\xbb\x9b\x2d\xb7\x6c\x0c\x2c\x2d\xcb\xb1\xf8\xf1\xba\x1d\x74\x58\x64\x72\x6c\x0a\xcf\x8f\x8a\xed\x52\x94\x2a\x36\xd2\xbd\xd0\x40\xb0\xf3\x8d\xd3\x3c\xfc\x4e\x27\x6b\x0f\x37\x52\xf5\xf2\x72\xe0\xbb\x16\x9d\xee\xbb\xdb\x73\x28\xc8\xe9\x23\x11\xc8\x16\x3e\x4c\xe3\x35\x43\xec\x1f\xc3\xf5\x88\x1b\x87\x4d\x17\xff\xf5\x6e\x02\xed\xcc\xb3\xdd\xf5\x35\xe2\xba\xe6\x87\x4f\x27\x5d\x13\x52\x83\xd7\xab\x05\xc8\xa8\x5c\x44\x97\x84\x89\x13\x64\xe6\x5d\x4e\x4a\xea\xa8\x54\x1e\x3c\x97\x1d\x9f\x88\xb1\xc5\x55\x94\xea\x00\x5c\xc8\x83\xe3\x69\x92\x54\x37\xeb\x7b\x1a\xf5\x8a\xac\x07\x53\x02\x82\x1c\x77\x22\xab\x83\xd4\x9c\xf8\x6a\xb5\x07\xb2\x0d\xdf\x0e\x6e\x02\xa1\x0a\x65\xeb\x4f\x12\x98\x17\x44\xf6\x97\xa2\x40\xc0\x0f\x9c\xbf\x7e\xf3\xe6\x84\xd6\x62\xa3\xbd\xd8\x31\xae\xd4\x97\xbd\x4a\x03\x99\xb4\xb2\xf3\xd8\x9c\x52\x19\x75\x9d\x73\x33\xa8\xf2\x07\x68\xd4\xf4\x62\xc5\x21\x55\x64\xb3\xb7\xff\x87\x0e\x85\xd2\x73\xe9\x84\x3c\x46\x76\xd1\x30\xf1\x9e\x1c\x84\xff\x05\x43\x9f\xbf\x0e\xc3\x8e\xd7\xfb\x11\xca\x3a\x80\x45\x24\x4c\xa9\xbf\x4a\x95\x05\xcc\x91\x9a\x61\x0a\xd3\xf8\x1b\x8a\xf5\x1b\x3e\x61\x38\x90\x2f\x34\x69\xfe\x4d\xe1\x3f\x93\xc9\x4e\xcc\x82\x4f\xf0\xe5\x0f\xdb\x57\x9d\xcc\x4d\x17\x32\x8e\xc5\xb8\x8e\x0b\x29\xab\x3a\xc0\x6c\x02\x27\xfd\xf1\x37\xdc\x89\x93\x63\x44\x20\x94\xf6\x3f\xaf\xd4\x51\xa1\x20\x44\x6d\xb8\x52\x99\xd1\x79\x22\x6e\x61\xfc\xea\xe0\xfe\xe2\xe4\xbf\xf6\x3c\xdd\x83\xf6\x5f\x9d\x1e\x63\x3e\x64\x18\xed\xcd\xee\x3a\x1e\x0f\x6e\x1e\x03\xf1\x33\x74\x80\xcf\xe1\x1a\x02\x74\xa9\x76\x87\xab\x1f\x3c\xb4\xbe\x7a\xc8\xca\x95\xed\xea\x79\xda\xbd\xc1\xfa\x39\xdf\x1a\x78\xf9\xfa\x40\x53\x4d\x71\x8d\x7d\x6c\x71\xd1\x8d\x22\x59\xdb\x84\xe5\x19\x06\x1f\xb9\x32\x28\xb8\x73\x16\x7e\xf6\x3f\x7d\xee\x96\xaf\x95\x1b\xce\x6c\xcd\xf0\x1f\x10\xf4\xec\xcf\xf6\x28\x8e\x28\x12\xcd\xd3\x82\x83\x7a\x41\xf0\xe1\x39\x7b\x93\x9a\x9c\x19\x0e\x2f\x62\x09\x35\x59\x12\xfb\x65\x42\xea\x5f\x66\xa0\xbf\x3a\x67\x27\xc5\x17\xc1\x86\x02\x5a\xce\xb6\x7a\xea\x00\xee\xdd\xbc\xb6\x4f\x83\xfa\x9a\xf6\x8c\x8b\x2e\x88\x2e\xc8\x99\x57\x3a\xc1\x65\xf5\xf9\x99\xc5\xb2\x53\xcd\xd5\x6a\x8f\xcc\xb6\xc6\x45\x06\x1e\x54\xda\xa9\x03\x0c\x4f\xe1\x46\xc6\x43\x7c\x3c\xa3\x0e\xff\x74\xcd\x20\x59\xb6\xb8\xdc\xd8\x84\x4b\xc7\x8e\x2e\x37\x0f\x45\x0a\x02\xc3\x64\x79\x85\x62\x05\xa7\xaf\xc5\xbf\x26\x47\xbe\x83\xcb\x83\xd9\x2f\x9d\xeb\x79\x31\x39\x7d\x24\xc0\xcf\x6e\x8f\x0e\x40\x5a\xbf\x72\x47\xc4\x52\xac\x96\x89\xe4\xb2\xd1\x81\xb9\x98\xc3\x54\xed\x6e\x01\x16\x14\xa6\xc5\xc1\x9f\x6f\x70\x7b\xeb\x0d\x14\xd7\x29\x58\x1e\xd4\xff\x2f\xd0\xa7\xd4\x28\x2b\x93\x8b\xd7\x1e\x7e\x81\x38\xc4\x74\x0d\xae\x18\x69\xf5\xcb\x98\x2a\xc3\x0e\x10\xc2\xe8\x1b\x85\x45\x6a\xf8\xec\xf4\xad\xa6\xf1\xb4\xf1\xdd\x2c\x74\x8a\x42\xfb\x2e\xf3\x62\xf0\xae\x03\xb5\x7d\x12\x97\x39\x62\x21\x66\x19\x1d\x7e\x0a\x48\x01\x4f\x4f\x41\x93\x6a\xe7\x4b\xbc\xcc\xc6\xff\xc8\x6a\xd5\x4b\x56\x72\xae\x43\x4f\x65\xd6\x00\x62\xe0\xf3\x4a\x92\x6f\x54\x55\x17\xef\xd1\xdb\x3f\xef\xa1\xf8\xad\x4e\x8f\x32\x47\x18\x91\xcf\x92\x5d\xf6\x83\x9b\xc7\x3c\x36\x21\x2b\x42\x6d\x10\x21\xcb\xff\xbd\x97\x57\x70\x78\xcd\xbc\x81\x88\x8e\x7b\xe5\x0e\xae\x57\x56\xa7\xca\x5a\xd3\x7a\x28\xfc\xfc\x00\xe9\x74\x85\x0c\x9b\x60\x03\x45\x1c\x2e\x8a\xe2\xfd\xf3\x20\x60\x46\x95\x85\x1b\x47\x5c\x02\xb3\x61\x68\x23\x20\xd4\x77\x75\x3c\x5e\xc9\xa6\xdc\x3d\x4a\x84\xf7\x5e\xfc\x42\x9a\x30\xd9\x99\x74\x1c\x1e\xb2\x1c\x31\x01\xa5\x75\x79\x97\xfd\xa2\xbf\x81\xe5\xb5\x3a\xc0\xa9\xda\xca\x67\x42\xc1\x99\x65\x24\x3f\x76\xf3\x79\x7b\xa2\xfa\x94\xbd\x63\xd5\x71\x50\xd2\xc3\x4f\x00\xd1\xc2\x27\x97\x3a\xa3\xba\xcf\x85\xe0\xd6\xda\xeb\x72\x38\x74\xef\xfe\xb7\x4c\xa2\xa2\x32\xe2\xaa\xb9\x6e\xec\xfc\x9f\x9d\xff\xed\x95\x78\xad\x66\xd6\x7a\x5d\x6c\xff\xc9\xce\x1d\xcc\x84\xbc\xb3\xff\xd1\xd3\x49\x7b\x97\xf6\x27\xcc\x55\x45\xf1\x71\xa5\xa0\x5f\x7f\x3f\x09\x2e\x49\x22\xf7\xc1\xee\xee\x87\x49\xe0\x05\xda\x95\x9b\x63\xd7\x73\xe3\xc3\x19\x74\x1d\x00\xbd\xe7\xf9\xd4\x39\x55\x6d\xc6\x0f\xc1\xae\x75\xe5\x75\xe5\x69\x2e\x0f\x42\x31\xb4\x00\x08\xe8\x13\x41\x92\x2f\x67\x5a\x4e\xcc\x70\xcf\x59\x5d\x00\x75\xe7\xe9\x00\x97\x5b\xfc\xca\x2b\x3f\x8e\x02\x99\x86\x7c\x2d\x0d\x91\xd4\xbd\x59\xce\x44\x80\x89\xc7\xf6\x56\x67\xb3\xe6\xda\x65\xcd\x04\x25\x99\xba\xaa\x86\xcf\x4e\xe1\xfd\x06\x9e\x2b\x0d\xf7\x73\xe1\x5c\xcf\x0b\x58\xb7\x6f\x39\xf3\xe4\xb0\x0e\x20\x95\x3e\x9f\x38\xa7\xaa\xe7\x5f\xd3\x6c\x66\x6c\x64\xcd\xf8\x0e\xbf\x87\x6d\xa8\xe1\x6b\x5b\x10\x12\x87\x5e\x03\x49\x12\xf4\x24\xd9\xaa\xd4\x01\x3e\x08\xaa\xb1\xfd\x8d\x24\xd1\x93\xda\x43\x08\xb7\x7a\xbf\x2c\xb3\xe2\xa8\x46\xed\x5a\x02\x3f\x96\x1e\x10\xd0\x4d\x9e\x75\x49\xe7\x2d\xc9\xdf\x23\x76\x0f\x9f\x21\xd2\xd6\x49\x6d\xce\x65\xec\xae\x64\xc8\x3c\xfa\x4e\xc1\xa4\xb9\x71\xf7\xf4\xa8\x5d\x42\x72\xc9\x79\x29\x7d\x01\xe9\x16\xbc\xcb\x65\xf5\xdb\x21\xd0\xee\x52\xd9\x9d\xfd\x46\x50\x5e\x04\xaf\x15\xc7\x99\x35\x0d\xb4\x47\x56\x0d\x81\xe2\x49\x37\x3e\xf8\xbb\x13\xb2\x46\xdc\x79\x73\x8b\x1f\x57\x4f\xc7\x06\x56\x23\x34\x29\xcf\xfe\x24\xb8\x64\xef\x38\x02\x8c\x6b\x3d\xdc\xb0\x87\x1a\x75\xf8\x6e\x0a\x56\x62\x74\x9d\xe9\xef\xbe\x86\xee\x8f\x94\x79\x40\x68\x31\xc1\x03\x88\xdb\x98\x97\xf4\xf8\x56\x9a\x98\x5f\x77\xac\x37\xe7\xd3\x39\xd8\x7f\x05\x30\x4f\xd4\x63\xc6\x40\x0b\xd6\x8c\x09\x33\x1d\xc0\x2e\xa8\x0f\xff\x66\x19\xbb\x28\x28\xe9\x36\x01\x6e\x61\xc7\xb5\x0b\x51\xa0\xd4\x5f\x65\x97\x78\x99\xf8\xa7\x69\xff\x76\x29\xec\x16\x1a\x11\x38\xa4\xce\xa9\x0c\x26\x65\x78\x76\x71\xcf\xef\x1e\x22\xfd\xf7\xb9\x37\x3a\x57\x75\x80\x80\xfa\xb3\x14\x23\x87\x98\xfe\x5c\x46\x1c\x86\xb5\x50\x25\x07\xea\x00\xb6\x8f\xa6\xda\xc4\xf7\x77\x54\xb3\xf7\x87\x10\xa2\xec\xa0\xc3\x0d\x56\x0e\x40\xe0\x9c\x95\x7b\x9f\x13\x8a\x7a\xfe\x82\xa8\x25\xf6\x7e\xb9\xed\x13\xa6\x09\x64\x88\xc6\xdd\x80\xc9\x35\x8b\x48\x75\xe9\x61\x8a\xa4\x02\x1a\xfd\x6f\xf3\xcc\xeb\xb4\xc1\xa0\xd7\xdf\xc5\xe7\x3b\x18\xbe\xab\x8c\xfb\x84\x63\xe7\xaa\xd7\xa0\x51\x94\xab\x68\x5a\x40\x1c\x29\x38\x18\xb1\x16\x94\x0f\xef\x9e\x85\xa6\xf3\xc6\xf5\x3a\xfc\x4f\x6e\xcc\x18\x7a\xe7\xa1\x9b\x9f\xaf\x4e\xf6\x61\x94\x58\x55\x8a\xdf\x19\x46\x33\x2d\xe4\x78\xda\xbd\xe9\x63\xd3\xae\x5a\x67\xb8\x2b\x2d\x00\x12\x37\xb0\x66\x36\x8b\xc0\x3a\x05\x07\x2e\x1b\x89\xe9\xb0\x44\x86\xf2\x05\x39\xfe\xee\xa5\x41\xa8\x35\xf0\xf2\x0f\x65\x53\x65\xcd\xbf\xec\x77\x07\x33\xf3\x02\xaf\x8d\xe0\x4b\xfd\xbf\xd4\x01\x8c\xc2\x64\x5b\x57\x0c\xaa\xbf\x62\xbf\x11\xad\xb0\x3b\x8c\xf1\x27\xa2\x4d\x6b\x1f\x1d\x98\x2b\xf8\xd1\x48\xeb\x92\xaf\x0e\x52\x4b\x9b\xab\xd5\xf0\x59\x03\x60\xea\x0e\xc0\x12\x75\x00\x48\x74\x8b\x5f\x39\xb6\xf3\x5c\x55\x89\xa7\x37\x2a\x74\xf0\xaf\xbb\x91\x37\xc5\x79\xe2\xa7\x2b\xf1\x3c\x62\x47\xa0\x28\x97\x98\x02\x26\xd3\x98\xd2\xf6\x2c\xff\x3a\x47\x75\xe7\x8c\x15\x9b\xf7\xe9\x29\xee\xaf\xe2\x30\xc1\xbe\xde\xfd\xd0\x31\x12\x61\x5d\xa1\x48\xc0\x21\x02\x52\xfc\x32\x77\x9d\x59\x59\xd8\x00\x29\x84\x6c\x36\xed\x6b\xec\xd8\xf5\x78\x26\xa4\xb8\x3d\xae\xac\xf9\x72\xd4\x74\x37\x3b\xd0\xb4\xf6\x48\xf0\x5f\x01\xaf\x5e\x62\xf3\xdd\x18\xd6\x82\x5a\xdb\x6c\x29\xd1\x93\xe1\xdf\xae\x28\xb6\x2e\xdc\x1e\x56\x66\x11\xdb\xe3\x3f\xdf\xe1\xee\x3f\xdd\xe1\x9a\x63\xc4\x87\x8c\xc8\xcd\xc8\x02\x3f\x9b\x8c\x63\x78\xbe\xfb\x26\xca\x00\x89\x4c\x3d\x24\xf4\xdc\xaa\x27\xeb\xed\xeb\xeb\x27\xff\xed\xfa\x6e\xca\x15\xeb\x95\xfa\xb3\x2a\xb1\xbe\x56\x55\xdd\x4f\x3f\xf8\xbb\x23\x12\x2b\x96\x3f\x22\xcd\xc5\xb4\x72\xd0\xa1\x52\x23\x97\xee\xf8\x42\x19\xd0\xb2\xc1\x84\x90\xe5\xff\xb6\x5f\x94\x5d\x48\xab\x67\x10\xb1\xd4\xd3\x33\xc1\xca\x9a\xea\x99\x97\xa0\xff\xe1\x3a\xbd\x25\x11\x3f\xb6\x0d\x38\x1e\x64\x17\xa2\xc8\xca\x0d\x24\x9c\xd9\xa6\x46\x53\x62\x82\xbb\xd3\x22\x7b\xf7\x41\xda\xd4\xe7\x3b\x05\x7d\x5f\x7c\xf2\x6f\x2f\x8f\xe5\xeb\x53\x3d\xbc\xc1\xed\xb8\xc7\x29\xfb\x99\xb0\xca\xf0\xd5\xbc\x87\xb7\x2b\x0f\xe7\x89\x35\x2e\xd9\xcf\x96\x93\xdb\xda\x96\xdd\xcf\x72\x92\x32\x33\xe2\x99\x29\xc7\xd6\xf5\x79\x25\x51\x1e\x63\xa0\xe4\xd9\xa3\x6d\x0b\x08\x1d\x40\x93\xf2\x8d\x9e\x92\xd3\x8b\x44\x69\x77\xd3\xee\x66\xa9\x2e\xb2\xb3\xca\xea\x91\x13\x49\x12\x37\xce\xb4\x3c\xc3\x01\x02\x74\xb5\x01\x75\x17\xac\x13\x5f\xb9\xc5\xa5\xe3\xa4\x7f\x9d\xce\x8d\xc5\x29\xda\x0d\xa1\xe8\xac\x0e\x10\x32\xa0\x51\xb6\x77\xd7\xbd\x84\x4a\x3f\xe9\xde\x25\xe1\x83\xb2\xe9\x43\xee\x47\x5b\x53\x14\x68\xf5\x57\x67\xd3\x24\xa9\x93\xae\x58\x06\xe5\xa0\xba\x90\x6d\xfa\x2a\x17\x67\xea\x0d\x2b\xbe\x24\xa9\x5e\x07\xd0\x1b\xd6\xf9\x36\x5f\x2f\x6b\x3d\x15\x17\x6f\x53\x31\xb2\x9e\x59\x54\xae\x64\xb1\xe5\x90\x5c\x35\x7c\x96\x69\xe0\x7b\x03\x13\x57\x76\xbb\x04\x29\xc9\xbd\xfb\x4f\x8e\xf5\xa7\xd0\x48\xa4\xce\x68\xb0\x24\x2f\xf7\x6b\x15\xbe\x59\x70\xb3\xdc\xe2\x80\xc9\xe2\x03\x13\x82\x5d\xc4\xf2\x54\xf2\x5a\x2b\x5d\x9d\xa9\x03\x64\x39\x36\x29\xf3\x52\x59\x35\x08\x8f\xbc\x53\xdf\x36\xa5\xa6\xbe\x98\x23\x58\xd5\x1d\x2d\xeb\x29\xe4\xcb\x40\x02\x21\xb4\x72\x4d\x0b\xd2\x1c\xa9\x8f\x3d\x74\xfc\x9f\x6f\x65\x89\x07\x6a\x8e\xe5\xe6\xec\x2d\x0a\x78\x9c\xf2\xac\x71\x1c\x7f\x40\xc3\xd0\x5c\xdb\x6c\x09\xea\xc3\xff\xd7\x17\x29\x71\x4d\x31\x5c\x14\x21\x8f\xae\xe7\x68\xa1\xf4\x2f\x06\xad\x3f\xa7\x03\x7c\x53\x6b\x70\x0f\x88\x39\x1d\x20\x47\x66\xa4\x4e\xfe\x34\x62\x5a\xd1\x10\x7d\x9b\xf9\x1e\xce\xfe\xde\x9b\x8f\x77\x32\x70\xaa\xc4\x05\xf1\xd3\xd8\xd6\xe1\xf7\xaa\xc4\x8d\x0c\xdf\x85\x2a\xc5\xc6\x4b\xda\xcf\xdc\xa6\xfd\x39\xd7\xe3\x70\x8b\x09\xcb\xb8\x14\x20\x6a\x70\x64\xa0\xe0\xb6\xbf\x4f\x7a\xaa\xec\x4e\x36\x85\x8f\x14\x7c\xfc\x48\xa1\xcf\xde\x1e\xdb\xf6\x21\x91\x0c\x61\xe2\x6f\xa6\x50\x19\xa1\xed\x66\xdd\x52\x23\x97\x5a\xb9\x05\x1c\xa8\xf2\xc8\x97\x3a\x94\x32\xbf\x0b\x86\x0e\xc1\x8d\x5b\x8f\xc3\x43\x58\xc7\x61\xa7\x80\x16\x56\xd6\xbc\x6f\x9e\xa1\xa8\xe7\x63\x8a\x59\xe4\xaf\xc2\xf3\x13\xdd\x09\x46\xc0\x3c\xd9\xca\xe2\x58\x6e\x86\xa0\xa0\xcf\x8e\x77\xac\x7d\xf6\x63\x2c\x73\x67\xbd\x56\x7f\x6e\xcf\xde\x0f\x56\x08\x9c\x38\xf6\x8e\x80\xa9\x14\x57\x0e\x8a\x93\xe2\xe8\x07\x4b\x7f\xfc\xcd\x25\xe7\xbd\xe7\xd6\x6f\x7d\xf2\x04\x46\x63\xde\xa6\x5d\xcf\x67\x8a\xd2\xb4\x3c\x7d\xb0\xaf\xc5\x9b\x7e\xfd\x74\x68\xfd\xd3\x43\xc5\x6d\x47\xd2\xa1\xb0\x36\xb7\xb0\x01\x75\xc1\x97\x9f\x2d\xfc\xcf\xeb\xf9\xd1\xeb\xd3\x5b\x65\x12\x72\x49\x02\xe8\xdb\xb1\xb8\xdc\xd8\xc7\xec\xda\x36\x3f\xa7\x64\xc1\xd5\x00\x73\x0f\x6d\x78\xf8\x5c\x6e\x8b\x14\x1f\x54\xe7\x98\xb6\x60\x4c\xec\x5e\xe1\x2e\x18\xd8\x7e\x5f\x6f\x7c\x38\x5d\xbd\xb1\xe9\x66\xb8\xc3\x6c\xa0\xdb\x52\xa6\x7f\xa6\x9f\x0c\xbf\x33\x26\xd6\xdc\x4d\xdb\xa0\x66\x65\x55\xab\xf3\x3c\x92\x71\xf8\x39\xf7\xaa\xe1\x69\x1d\x60\x6e\x0a\x37\x32\xfa\x7e\xdc\x9c\xc1\x56\xeb\x21\xd9\xb8\xca\xf0\x9d\xf9\x8d\xef\x5b\x23\x0b\x72\xd5\xf1\x53\x78\xbf\xfe\x8d\x57\xa2\xdd\x3d\x5b\x5c\x05\x5a\x70\x4a\x07\x88\x4b\xc0\x21\xfc\x5d\xbc\xd3\x36\x38\xf3\x82\x3c\x03\x50\x04\xdc\x43\x03\xdc\x59\x04\xd6\x35\x38\x90\x83\x0d\x30\xe5\x41\x18\xd3\xb9\x7f\x84\xc9\xc1\x58\x7c\xf9\x48\x7b\x32\x7b\x08\x6d\xa0\x79\x1d\x80\x27\x6d\xcf\x0a\xaa\x73\x54\xf7\x0f\xda\x27\x75\x54\xec\x23\x94\x55\x90\x65\xc9\x45\xa7\x3b\x53\xf6\x2c\x83\x78\xbc\xe9\x3b\x98\x35\x77\xf2\xe7\xda\x80\xa9\x43\x23\xa4\x27\x8f\x47\x06\xdc\x82\xec\x08\xc8\xa4\x64\x27\x29\xc8\xe5\x92\x24\x32\x8b\x64\x7e\x12\xee\xd7\x79\xf3\x2a\x6e\xb9\xa5\xa6\xdc\x07\x9a\x17\x85\x1e\x16\x73\x16\xaa\xaa\xda\xfd\x95\x66\x1a\xc9\x64\x1f\xfe\x1d\xfc\x49\xb2\x67\x26\x8a\xe5\x1d\x87\x46\xad\x67\x50\xa3\x0e\xff\xfc\xf5\xac\x2a\x05\x37\x1e\x51\x1f\x60\x45\xf9\x45\x30\x71\xa2\xce\x3f\x14\x9d\xa3\x03\x5c\xb7\x55\x72\xf5\xb6\xe1\xf2\x4e\xe9\xee\x56\xde\x29\xe3\xd6\xe4\x28\xd7\xe3\x70\x4b\xcb\xb8\x2b\xcb\xa6\x25\x07\xaa\x45\xaa\x1f\xe6\xbb\x98\x68\x04\x4c\xf6\x89\x9a\x91\x8d\xe5\x75\xda\xf1\x3c\x58\xbe\x44\xb3\x6d\x27\x72\x6f\x55\xe6\x57\x3b\xeb\x56\xb2\x56\x75\xdf\xc8\xfc\x28\x86\xb5\x80\x5d\x53\x59\x1b\x2c\xfc\xdb\xe6\x04\xfd\x79\x50\xb6\x9b\x1e\x83\x73\x1e\x5b\x7e\x3b\x5f\x07\xf8\x46\x63\x40\x4c\x56\xb1\x56\x44\x5b\xc7\x44\xe7\xc5\x72\x0b\x7f\xd7\x85\x08\xac\x98\x39\x4a\x9a\x8b\x6d\xe5\xa0\xc3\x32\x67\x24\x69\x7e\xf9\x54\xef\x67\xfa\xdb\x7d\x36\xa8\x03\x3a\x04\x07\x1a\xb7\x26\x58\x59\x1b\xf0\x22\xdd\x85\x2a\xf1\x32\x89\xd3\xfa\xb0\x1c\x38\x43\x43\x66\x5d\xbe\xc7\x65\x94\xd1\x36\x79\x44\x5d\x96\x60\xe9\x91\x62\x1c\xae\xf4\xc4\xaf\x3e\x88\xa5\x5c\x7a\xfb\xe7\x3d\x07\xdf\x7d\x53\xd3\x92\xc1\x75\xf8\xbe\x7c\x8d\x37\x2e\xe2\x3a\xf0\xe8\x84\x90\x59\x67\xe3\xb3\x4d\x20\xf6\xfe\x32\xf2\xd1\xd6\x04\x22\x7f\x6d\x33\x2f\xa7\x72\xd9\xb4\xc4\x7e\xe7\xa1\xe6\xdc\xda\x28\xcc\xdc\x63\xd2\x1a\x61\x95\xaf\x03\xa8\x52\xdb\x5a\x82\x23\x6c\x92\x42\x37\x4a\x93\xea\xa4\xab\x0d\xd1\xc7\x80\x20\x73\x51\x9a\x20\x8d\x90\x92\xd6\xfd\xf5\xa5\xff\x79\x71\x3f\x7a\x6d\xda\x4e\xf3\x96\x08\x82\x92\xfd\x5d\xa8\xb8\x1e\xb3\x0e\xf2\x0f\xfe\xf2\x1a\x3c\x53\x73\x20\x4f\x33\xa0\x0d\x4c\x56\xcf\xc6\xb8\x1a\xae\xb7\xa8\x27\x88\xfd\xeb\x6f\x18\xda\x1f\x4e\x57\xeb\x00\xeb\x8a\x84\x36\x84\xbf\xcb\xa0\x6d\x1d\x63\x64\x7c\xe4\x9e\xea\xe2\x64\x4c\x2a\x13\x11\x19\xd7\xad\xce\xaa\xd6\xf6\x79\x24\xb7\xe1\xe7\x6c\x63\xb6\xc4\xa6\xe3\x87\xae\x54\x83\xf5\x9f\x59\xa4\x7d\xab\xd7\x1a\x43\x01\x37\xda\x3c\x14\x39\x17\xa5\x8d\xdc\x86\x90\xe8\x65\xff\x46\xbb\x52\x39\x7a\x3d\x37\x3e\x44\xbb\x66\xa9\xb8\x72\x27\x96\x25\x6c\xcc\x82\x60\x91\xe1\x4a\xa3\x56\x20\xe4\xb8\x13\xa5\x2b\x12\x41\xdc\x96\x1a\x8f\x7a\x50\x77\x01\xf6\xee\xda\x76\x2c\x3d\xdc\xf9\xc3\xdf\xbf\x20\x1f\x9a\x54\x32\x47\x9e\x32\x49\xf1\x43\x01\x82\x20\x82\x52\xd9\xbe\xed\xc7\x18\x17\x8b\xc3\x12\xa3\xbd\xe1\xc2\x46\xbf\xf6\xe4\xa2\x20\x9b\x98\x0c\xb2\x67\xc1\xce\x33\x8c\x66\xa9\xd8\x56\x12\xd1\x82\x3c\x4e\xf8\xc7\x3b\x7e\xcb\x2d\x60\x1d\x40\x99\x10\x03\x19\x9e\x43\x2e\xed\x81\xab\x2a\xeb\xdc\x60\x46\x3a\x80\xe8\x83\xa0\x9a\x9c\x51\xdf\xcb\x15\x1e\xe8\x2b\x3d\xeb\xe5\xd7\x21\x8e\xe7\x2a\x31\xea\x84\x58\x2d\x2f\x8e\xd6\x07\x89\x71\xea\xce\x4e\x0a\x3f\xc0\xdb\x0e\xaa\x4f\x03\x55\x7b\x54\xfa\xa0\x0a\x12\xa4\x99\xeb\x00\x78\x23\x43\xb7\xf1\x97\x1f\xc9\x2d\x27\xc7\x88\xc6\x04\x18\x35\xb3\x88\xed\x7e\x6b\x5b\x6d\xf2\x0d\x6a\xf3\x4c\x28\x50\xa5\x0d\xb4\xf1\x63\xa9\xda\xbe\xbb\xe4\x4e\xa9\xe7\x68\x00\x0e\x68\x28\x61\x1e\xef\xe4\xe0\x54\x19\x9d\xf0\x6b\xd5\xbd\x0f\x8c\x56\x83\x66\x09\xd7\xf9\xf2\x10\x45\xab\x77\xaf\xc1\xc3\xdb\xf9\xc5\x87\x56\x95\x55\x07\xb9\xa5\x0c\xc1\xb4\x6b\x3b\xe7\x40\xa6\xa1\x4e\x8c\xb5\xf7\x47\x92\xcb\xdc\xd7\xca\xb2\x3e\x51\x33\xd0\xd3\x15\x52\x6c\x82\x0d\xd2\xec\x65\xf6\x9d\xce\x2d\xc0\x07\x1c\x14\x14\xd6\x77\x46\xb8\x27\xf1\xd2\x9a\xc7\x1c\xe4\x40\xcb\x5b\x4b\xd5\xc3\xe2\x9f\xef\x10\xa2\x88\x45\x6c\x2b\xbb\x10\x14\x0a\xc5\xf2\xf4\x8e\x43\xa1\xa7\x27\x80\xa8\xc1\x31\xcb\xe6\xdc\x2b\xbd\xeb\xbf\xc2\x82\x8a\x13\x94\x82\x79\x4e\xf5\xea\xe2\x80\x0e\x90\x69\xb0\x54\x36\x81\xaa\xf3\x9d\x02\xbd\x26\xa2\xdf\xfa\x0e\x79\xb6\x57\x6a\x76\xff\x44\x59\x5f\xce\x8c\x3a\x38\xbc\xff\xd1\x54\x29\xf3\xfb\xcf\x82\xa1\x81\xe6\x51\x55\x8b\x13\x27\x87\x5b\xc2\x65\xa7\xd4\x12\x77\x9e\xfe\x73\xf2\x93\x44\xe0\x4d\x49\xc3\xf7\x53\x16\x03\xe0\x02\x1d\xc0\xdf\xc1\x28\x81\x5a\x90\xce\xed\x94\x9b\xf1\x5c\x79\x62\xcf\x47\xc9\x56\x51\xae\x8c\x33\x4a\x0c\x76\x0f\xa6\xee\xee\x57\xff\x34\x26\x76\x0f\x7b\x67\xd3\x2a\x59\xdd\x21\x43\x29\x83\xb8\xde\xbb\x70\x71\xe9\xf8\x2d\xe5\xcc\x78\x79\xe8\xec\xa7\xe6\x8e\x6d\x3a\x40\xe6\x2f\x7f\x1e\x2c\xbd\xf1\xba\x34\xd0\xef\x26\x70\xf2\x64\x84\x37\x3b\x99\xee\xe0\x17\xbd\x39\xe7\xee\x78\xf2\x48\x4f\x60\x5a\x23\xd1\x9d\x24\xbe\xed\x9d\x4e\x73\xe2\xf4\x1f\x00\xb6\xcb\x75\x7e\x34\xb9\x3a\xb8\x5f\xad\x03\xc8\xfc\xce\x6a\xf9\x2e\x83\xb6\x58\xc6\x08\x63\xe4\x5e\x5d\x54\x2b\x5d\x88\x53\x2a\x24\xfc\x5b\x74\x44\xdf\x6f\x1a\x05\xed\xfa\x75\x10\xea\x5c\x72\xe0\xf3\xcc\xd6\xe4\x0c\xe1\x4f\xfa\x3c\xe2\x1a\x78\x6d\x04\xd7\x9b\xe1\xdc\xac\xf1\x8d\x6c\x91\x45\x26\xb9\x74\x89\x49\xb5\x06\x9b\x15\x36\x73\x2f\xf5\x49\xd3\xdd\x0b\xf5\xd5\x41\x4e\x72\xde\x93\x16\x37\x55\x6d\xfa\x76\xe9\x93\x71\xc5\xf6\x19\x4e\xa9\x28\x96\x75\x93\x22\x63\xc7\xa7\x58\x1a\x4f\x55\xf6\xf0\xf4\x26\x72\x94\x5d\x63\xeb\x4e\x1c\x41\x51\xcf\xc7\xbe\x0f\x38\xa5\x8a\x6c\x92\xdd\xaa\x30\xe8\x93\x1e\x5c\x2a\xd2\xc0\xda\x56\xad\x84\x10\x80\x0d\x3e\x2e\x68\xc0\xc5\x93\xb7\xaf\x77\x7f\x08\x86\x4f\xba\x8d\x4e\x49\x89\x69\x95\x4b\xf2\x72\x4f\xe4\x62\xef\x5c\x78\xca\xbd\x78\x7e\x74\xc0\xcd\x57\x9d\xc3\x5e\xdc\x74\xfa\x78\xab\x58\xaa\x04\x75\xe7\x6d\x3a\x47\x74\x4d\x8f\x43\x0b\xde\x47\x51\x3d\x11\x95\xa9\xe0\x36\x2c\xb9\x81\xd2\xad\x65\xee\x6d\x89\xa7\x46\x67\xd0\xda\xbd\xf6\x3a\xf0\x55\xa9\xb0\x36\x4d\xca\x19\x94\x80\xf2\xa0\xc5\xbf\x4a\x99\x73\xc5\xc8\x5e\x07\xc0\xa9\x12\xe7\xc5\x4f\x57\xf6\x6b\x77\xd2\x8e\xdb\x64\x1c\xc3\xb9\x2e\xc1\x28\xab\x73\x05\x95\x6b\x6d\xe2\xc1\xcf\x8e\xc3\x83\x2a\x6a\x12\xec\xa0\x6a\xef\x38\x02\x52\xf0\x8a\x0f\xf3\x73\x56\x6e\xd6\x2e\x1d\x52\x56\x49\xd5\x39\xd1\x79\x22\x9e\xf2\x55\xb0\x31\xf0\xb9\x89\x0b\x1c\xeb\x6b\xa1\x65\x6e\x01\xcc\x13\x75\xfe\xf1\xca\xd2\xac\xcd\xda\x82\x3b\x53\x6d\xe2\x9f\x6f\x11\x1b\x2a\xf8\x0d\xc4\xd6\xec\x76\x83\x52\x59\x19\xc2\x50\x1a\x56\x62\x94\x97\x9e\x2a\xd3\x1e\x2b\xd4\x2b\xd5\xf3\x2d\x6f\xf7\xb2\x1a\x4a\x5c\xb7\xa8\x73\x6b\x41\xda\xe4\x8e\x65\xaf\x91\x92\xc6\xf1\x47\x39\xfd\x6c\xc8\x53\x74\x8e\x5e\xaa\xce\xb0\x0d\x52\x05\x65\x5b\x59\x6d\x05\x70\x48\xac\xa7\x97\xf5\x07\x47\x91\x4d\x12\x33\x89\x30\x0a\x7d\xc7\xbe\x45\xd0\xb2\x65\xed\x52\x21\x07\xda\x13\x17\x28\xe9\xbe\x1a\xdb\xd5\x41\xbb\xa5\xd9\x1b\x1f\xfc\xdd\xd1\x6d\xd7\xdb\x1b\x99\x8b\x5d\xf0\xb7\x6d\x5c\xa4\xa2\x34\x69\x48\x19\x3f\xda\xa1\x94\xf9\xbd\x71\xc6\x96\x5c\xed\x36\xc8\x95\x25\x25\x25\xcb\x70\x28\xbf\x49\x72\xaa\x28\xb6\x94\xd6\xdd\x69\x00\x5c\x40\xf7\x42\x87\xe5\xac\x63\xab\x66\x18\xc3\x9f\x9d\x32\xda\xdf\x53\x88\x92\xb9\xd6\xab\xb1\x7b\x66\xa4\xd7\xf7\xfe\xfd\xc3\x81\x4f\x76\x68\x16\xc7\x92\x42\xdb\xcc\x02\x38\xe5\x8c\xb2\x65\xa0\x79\x3f\x1d\xfe\x08\xbe\x07\xff\x26\xc5\xe2\x40\x48\xc7\xb0\x19\x53\x75\xb6\x95\x73\x0b\xc9\x24\x2b\xb5\xa2\xe4\xa2\x61\xeb\x0f\xf6\x21\xbc\x2d\x2c\x20\x56\x17\x1f\x6b\x3a\xcd\x03\x23\xb5\xc7\xea\xb5\xae\x9b\xd2\x0d\xc5\xca\xa0\x0e\x70\xe7\x6c\x25\xf9\x9b\x3f\x63\xe2\x35\x19\x13\xbc\xc1\x25\xf2\xd5\x8b\x7f\x6d\x5d\x15\xf8\x6a\x2c\xca\x82\xbf\xbc\xe6\x58\x87\x34\x81\x98\x5b\xce\x4e\x39\xca\x06\x6e\x57\x29\x9e\x4b\x98\x38\x7e\x1a\xb7\xbb\x9b\x1f\x76\x6e\xba\xe3\x49\xd3\xca\x3c\xc9\xcf\xba\x5f\x21\xd8\x5c\x9d\x8a\x9c\x55\x9f\x37\x62\x88\x9e\x8a\x2e\xcc\x68\x9d\x5b\xc0\xce\xe2\x01\x42\x5e\x46\xca\xa9\x85\x9f\x36\x7a\xab\xb1\x28\x85\x30\x79\x5a\x07\xc8\x68\xf1\xc3\x66\x7e\x3c\x41\x3d\x7f\xde\x9a\x08\x4b\x23\x2c\xfe\xf4\x85\xd6\x89\xe9\xb4\xfb\xe9\xa5\xf8\xe6\x36\xbc\xb1\x87\xdb\xff\xc0\xe7\xf3\x97\xf8\x3c\xed\x24\xe7\xe9\x00\xcc\xb3\x60\xc9\xf2\x76\xd2\xe2\xff\xc4\x2e\xc0\xfb\xc9\x16\xac\xd4\xac\x9c\xf6\x4e\x51\x82\x24\x57\x2e\x16\xee\x89\x29\x58\x7e\x35\x67\xbd\xac\xbc\x10\x0d\xbf\x36\x2f\x93\xfd\x52\xa6\x0c\xea\xe7\x92\x9b\x87\xe0\x9f\x0f\x0b\x4b\x8c\x3e\x0e\x17\xd2\x42\x07\x7c\x90\xe6\x76\x7b\xf8\xa4\x76\x52\x67\x74\x9a\x1e\x9d\x2a\x3d\x3a\xa1\x17\xcf\x8f\x0c\xb8\xc7\x20\xfa\x17\x33\x74\x80\x90\x9b\xe3\x53\xac\xb5\x85\xf4\x8e\xd2\x4e\x01\xf6\x72\x8b\x5f\xad\x82\xe9\x99\x60\xe5\x61\x7d\x02\xa5\xff\x5d\xc0\xdf\xa1\x97\x8f\x85\xb4\x90\x13\x66\xc3\xd8\x1a\x6f\xf4\xe1\x81\xba\xac\x30\xcb\xe8\x43\xaa\x48\x9c\x2a\x0b\x37\x9e\x74\x29\x67\xf7\xe6\x0f\x74\xbf\xfd\xe0\xe6\x51\x8f\x2c\x0f\x2d\x10\xb4\x19\xde\xd5\x86\x18\xf8\x0c\x9d\xb0\x07\xda\xa5\xf7\x7a\x1c\xee\x96\x75\x4c\xf7\x8c\x3a\x7c\x43\x00\x61\xd9\xee\xc3\x5b\x5a\xe8\x00\x4c\xd9\x14\x04\xcc\xb7\xb1\xd6\xdc\x25\x77\xd2\x0a\xff\x8c\x4a\x11\x1b\x79\x3c\x76\xd3\xc2\xc6\x05\x0e\x66\x1e\xc3\xf3\x1d\x7e\xf3\x8f\xb8\xae\xb6\x35\xe3\x26\xd8\x50\xde\x71\x38\x50\x6a\x09\x34\x88\xe0\x31\xc6\xda\xfb\x64\xca\x47\xe8\x02\x31\xdd\x37\x52\x90\xc6\xb7\x71\x55\xac\xfc\x09\x99\x5a\x7d\xea\x82\x14\x56\x1b\x74\x70\x00\x7f\x94\x9d\xf7\x1b\x32\xb7\x4d\x24\x94\xed\x00\x0c\x61\x79\x7a\xa3\x50\xda\x3a\xa0\x69\xc9\x81\x09\xd5\xcd\xdb\xf0\xf6\xd2\x22\x8f\xdb\x24\x3f\x19\xc5\x4c\xc3\x12\x73\x30\x82\x51\x3b\x9e\x87\xa0\x77\x9f\xbb\xac\x1b\xe8\x1b\xa6\x77\x91\x16\xef\xbe\xa9\xe9\x33\xb8\x48\xf3\x4c\xf9\x3d\x45\x7b\x37\x69\x7f\x6b\x72\xed\x8e\xde\xc9\xaa\xc5\xdd\xb4\x88\xa2\x20\x07\xe8\x06\x0b\xa9\x25\xcf\x1a\x97\x78\x99\xc4\x93\x03\x58\xb7\x76\xf3\x8a\xbf\x17\xb0\xb1\xf8\x7d\x3a\xc0\xaa\xda\x93\x4b\x86\xe8\x71\xf9\xc0\x8e\xd7\xfb\xe4\xe3\xda\xd2\xc5\xfe\xa5\x3c\x3a\xa3\x74\x29\x4b\x19\xf3\x77\x40\xf4\x8b\x75\x27\xd1\x85\xea\xb1\x98\x9e\xf8\xb8\xc5\x11\x91\x0c\xd8\x26\xa8\xce\x33\xfc\xc4\xc1\x73\x43\xbe\xce\x8b\xc5\x7b\xd3\x27\xaf\xdd\x19\x56\x2a\xb1\x0b\xd1\x06\xe5\xce\xba\x9d\x5b\x92\x7a\xeb\xc5\x4f\xbc\x1c\xa9\x59\x97\x0e\x20\x96\xd1\xe1\x94\xa0\x45\x75\xbc\xc1\xa1\xda\xbb\x62\x6a\xa0\x59\x60\x57\x8c\x76\x46\x8d\x50\xff\xf3\xe0\x9f\xb1\xf1\x9a\x8c\x50\x32\x09\x59\x03\xaa\x5f\xec\x10\x4e\x4c\xc8\xbb\xb7\x2a\x1e\xe1\xa4\x2e\x1a\x37\xa4\x8b\x2d\x91\xa4\x47\x28\x87\x14\x1b\x54\xe7\x28\xaf\x9f\xd2\x47\xbc\x98\x31\xf4\x3b\xae\xd1\xa3\xee\x47\xdb\x73\xa4\x03\x02\xf1\x9c\x59\x8b\x9a\x92\x68\x95\xa3\xd1\xd4\x3e\xaf\x13\x85\xb4\x80\x8f\xe2\xeb\x37\x5d\x48\x3c\x79\x90\xdb\xb6\x39\x75\x94\x62\x45\x76\x41\x35\xc7\x18\x89\xfb\x6e\xa1\x06\x07\xbd\x13\x86\x45\x61\x9c\x6f\x4f\xa9\xb6\x06\xc4\x27\x0a\x5b\x3d\x85\xed\xc3\x3a\x40\x5f\x8b\x20\x43\xc1\x6c\xf1\xaf\xc9\x61\x5c\x24\x10\xba\x8f\x08\xa2\x47\xd1\xbb\x5c\xa3\x47\x92\x8b\x4e\x3b\xc9\x37\xdd\xab\x15\x7a\x1b\xec\x2d\xdf\x50\xce\x0b\x90\x87\xd9\xc8\xa2\x9c\x0d\xd4\xc0\x9a\x05\x5c\x91\x2f\x0d\x0f\x88\x40\xb8\xc1\x12\x19\x9b\xf6\xd0\xc4\x5a\x05\x1b\x67\x0d\xbc\x5c\xfb\xf9\x1b\xde\x62\xe4\xcd\x81\xfa\x00\x9b\x81\x89\xc4\x33\xeb\x7c\x1c\x49\xa2\xe6\xf0\x22\x96\xea\xdc\xdd\xb7\x52\x64\x85\x31\x01\x6d\x1e\x33\x6d\x3f\x71\x72\x78\x21\x83\xec\xad\x72\x0c\xf6\xc0\x9b\x7f\xae\xf5\x99\x3a\x72\xc9\xde\xf9\xf0\x53\x81\x45\xa7\x07\x3f\xa3\x57\x07\x68\xf5\x31\x90\x80\x4b\xc8\xf0\xb4\x6c\xd3\x84\xe0\x98\xc6\xf3\x33\x6f\xb0\x7e\x02\x32\x2d\x39\xf0\xb9\x4d\x7a\x93\xec\x2e\x78\xfa\x03\xf4\xe6\xee\xd5\xc2\xd1\xbc\x34\x39\x15\x69\x0c\xdf\xfd\xe0\x04\xfa\x8e\x12\x43\xc0\x7f\x9e\xc5\xf1\x8b\xea\xb4\x70\x95\xf2\x36\xb1\x01\xce\xdd\x79\x77\xaa\xaf\xd1\x14\xda\x1d\xec\xa2\xa0\x24\xf7\x96\x10\x99\xe2\x6a\xba\x97\xf5\x87\xe5\xb5\x3a\xc0\x37\x35\xdc\xd4\xe5\x95\x82\x93\x05\x4e\xfa\x24\x1a\x70\xa0\x3d\x51\x9d\x7f\x72\x1f\x8e\xb9\x83\x99\x84\x7b\xf8\x09\x20\x19\xe1\xca\x8c\xf5\xe8\x5c\xb1\x83\xbc\x58\x06\x31\x43\xeb\xfc\xe3\xe5\x90\xec\x46\xdf\x1c\x25\x94\x38\xeb\xfc\x99\x77\x3c\xc1\x8e\x7c\x3c\xde\x30\x49\xa1\xe6\x79\x53\x0d\xed\xb2\x0c\xc2\xb2\x61\x3a\xaf\x2b\xf9\xc7\x66\xf4\xb8\x84\xd0\x32\x0d\x85\xdf\xcd\x57\x82\x9d\x7c\x74\xab\xf0\x0b\xcb\x94\x6d\xb9\xd3\x06\x5b\xba\x61\x38\xd8\xcb\xb6\x33\x14\xd6\x54\x4f\x4f\xaf\x06\x2b\x37\x4f\xef\x07\xd9\xfa\x68\x47\xd6\x47\xbb\xe1\x21\xcb\x73\x61\xc1\x03\x3a\xc0\x41\x8a\x43\x6e\xc6\x42\x01\x92\xde\x9e\xa8\x46\x3e\xc3\x3c\x2a\x10\x24\x5a\x55\x75\x3f\xff\xd7\xb9\x37\x3a\x1e\x5f\x3c\x34\x4a\x0a\xbf\x15\xb2\x1f\xc4\x49\x71\xc5\x26\x2c\x76\x93\x3c\xc4\xad\xc9\xb5\x36\xd6\x5f\xf6\x9e\x36\x80\xb3\x3a\xc8\x01\x2a\xcb\x45\x0b\x3a\x1b\xac\x81\x3f\x74\x0d\x34\x49\x52\x8b\x62\xf5\xd8\xac\x9f\xb6\x57\x59\x8f\x35\xb7\xe7\x10\x63\x17\x3e\xd5\xeb\x25\xe4\xfd\x5f\xf9\x7d\xe3\xa2\x7e\xba\x86\x3e\xae\x18\x01\x00\x46\x9f\xbc\x48\x19\x1f\x71\xa8\xaa\x7e\xd2\x74\xab\xdd\x16\xdb\xef\xd5\x87\x4c\x99\x35\xa8\xf1\x7a\x47\xe0\x2e\x17\x21\x2d\xa2\xfa\xb4\x03\x50\x24\x73\xdf\x5c\x31\xb4\x37\x7d\x2c\x77\x2f\xe7\x89\xf5\x10\xfb\x7e\x76\x29\x34\x1f\x69\xa1\x19\xa6\xf4\xc6\x50\xba\xb7\xb4\x38\xc7\xf0\x0d\xa6\xf4\xa5\x58\x1d\x20\xef\xc2\x55\x80\x5d\x3c\xef\xd3\x37\x3b\x7b\x8f\x7c\xf0\x47\x58\xbc\x26\xcf\x09\x98\xb7\x84\xcb\x06\xba\xb6\x1a\xf7\x67\xf3\x97\xe2\xfb\xfc\x29\x1f\x59\x96\xa1\x73\x30\xa4\xec\x7a\x83\x7e\x36\x39\xa6\xe9\xd1\xd9\x7d\xaf\x13\xf6\xc0\x27\x7a\x34\xb9\x28\xb8\x5f\x21\x48\x59\x5d\xde\x69\xf0\xb6\x76\x58\x7d\x76\xe4\xe7\xa6\x06\xc5\xc4\xfb\xc9\x18\xc9\x04\x2d\x88\xdf\x61\xc1\xa8\x69\x6e\x5e\x2f\xe4\x95\xf6\xc5\x6e\xe8\x00\x43\x2d\xe1\x58\xde\xdb\x2f\x2b\x18\xf6\xda\xaf\xbb\x91\xdb\xf3\xf5\x28\x38\xd0\x79\x71\x99\x22\x93\x28\x67\x0d\x03\x76\x7e\xfe\x60\x77\xf7\xaf\xa3\x79\x37\x0f\xba\x99\x4a\xf5\x31\xf5\xeb\x19\x46\xe5\x1d\x11\x4b\xd8\x78\x15\x82\x2d\xbf\x89\x90\x85\xc0\x21\x4c\x3c\xb6\xaa\x38\x85\x54\x95\x3f\x1b\x1e\x49\xf5\xa7\x6f\x63\x53\xd4\x4f\x6c\xf1\xfc\x2d\x3e\x2e\xe4\xe6\x9c\xab\x96\xb8\xfa\xef\x08\x23\xe2\xa9\x9b\x87\x74\x80\xe4\xbe\x82\x9b\xfe\xf5\xf5\x82\xac\x2a\x7d\x42\x3d\x35\xd6\x31\xd9\x09\xe7\x35\x54\x94\xca\xc2\x38\xbc\xf0\xea\x16\x6c\x20\x6f\x32\x90\xa5\x0d\xb0\xb5\x12\xfc\xe3\xaa\xcd\xfa\x32\x25\x65\x8c\xc0\x86\x54\xdd\xb4\x54\x15\xd6\x85\x4c\xb3\xf7\x1d\x6d\x9b\x1e\xf5\x01\xde\xe6\x0c\x5e\x33\x2d\x39\xf8\xf9\x1b\xff\x47\x5c\x5f\xc1\x31\x7e\xba\xd2\x02\x42\x13\x7f\x9a\xab\x67\x96\x53\x87\x4f\xcc\xf8\xfa\x3b\xaf\x2b\xb9\xaa\x8c\x59\xe7\xd8\x66\xe7\xab\xcf\xea\xcb\x5b\xcf\x9d\x23\x75\x0d\x53\x4c\x62\x32\xcc\x41\x21\xb2\x39\x27\xf7\x1f\x57\xd3\xc5\xdd\x56\x48\xfa\xad\xd1\x77\xb1\x12\xa3\xeb\x6c\x1a\x6d\x44\xbb\x5f\x23\xc8\x51\x6a\xaf\xe5\xc5\xf2\xe6\x4e\xc4\xaf\x0e\x76\xf1\xe2\xef\xbe\xfd\xf3\x1e\xac\xff\xea\x34\xa3\x55\x53\xc4\xd0\x78\x08\x71\x7d\xac\x05\x2c\x58\x59\xe4\x49\xdb\xd8\xaa\x27\x89\xf1\x46\x2e\x45\x93\x03\x13\x73\x44\x35\xc2\x30\x2c\xb5\xbd\xb7\xf9\xa3\x23\x86\x46\xeb\xf7\x37\x40\x72\x4f\xa1\x54\xca\x0f\x8d\xd8\x50\x68\x27\xec\x6d\x5e\x75\xb1\x7d\x48\x9b\x84\xb1\xec\xb5\x2e\xf8\x56\x66\xb4\x60\x15\xca\x3d\x16\x83\xfa\xf0\x6f\xde\x21\x16\xb1\xed\x42\x8a\x86\xa2\xac\xb6\x2b\x17\xae\xa1\x88\x3f\xbe\x55\xc4\x7f\x31\x35\xc7\x25\x2b\x37\x32\x36\x5a\x98\xed\x60\xb5\x22\x36\x0f\xf1\x05\x26\x40\x2d\x65\x6c\xf5\x42\xbf\x63\x32\xa5\x8d\xcb\x17\x71\x07\xb8\x12\xbd\x9c\x5d\x0e\x8f\xf7\xcd\x28\x82\xb5\xfb\xbb\x6c\xa5\x46\x05\xaf\xc1\x1a\x78\xb9\x3a\xf2\xf4\x9a\xf3\x90\xe3\xdc\x63\xd2\x1a\xce\x21\x6f\x13\x3d\x15\x81\x91\xf7\x60\x2b\x83\x49\x93\x85\xd8\x1f\x9e\x7a\x52\xb3\xea\x9b\x95\x58\x0c\x46\xbe\x34\xb6\xeb\xaf\xef\x44\x7e\x74\x19\x99\x21\x0d\x2d\xc4\xed\x4d\x33\xca\xaf\x2f\x88\xe3\x30\x37\x28\xe9\x6c\x27\xff\xb7\x91\x07\xce\x3c\x28\xeb\x59\xe6\xe0\x6e\x94\x7a\xe6\xa8\x19\x05\xfd\xa3\x86\xb3\x65\xdf\xac\x99\x0a\x3d\xe7\xee\x27\x89\xba\x12\x98\xc2\x17\xca\x05\x0f\xb9\x83\xb6\x6b\x5c\xb1\x74\xfb\x46\x3f\x9d\x4e\xa7\x2f\xc5\x64\x81\x75\x00\xf2\xdd\xaf\xfe\xae\x0f\xa3\x5e\x91\x1f\x15\x23\x23\xbe\x6e\x45\x1c\x95\x71\x10\x29\xf8\x53\x60\x60\x1b\x3f\xa3\xa9\x4b\xbb\xbe\x7e\xb8\x11\x1b\x70\x5f\x07\xd8\xe9\x86\x2c\x5a\x5d\x4a\x31\x11\xab\x54\x9b\x59\x94\x82\x9d\x04\x53\xe6\x60\x8c\xf3\xc9\x85\xa1\xc4\x63\x29\x45\xb3\x84\x50\x1d\xe0\x04\xaa\xab\xa0\xb1\xe3\xab\x87\x7f\x80\xd3\xeb\xf1\x5c\xca\xbb\x09\x9c\x16\xc4\xda\xbf\x82\x72\x63\x71\xc8\x8f\xbc\xed\x2a\xfc\xb8\x19\xce\xcb\xeb\xcf\x94\x98\x9a\xac\xe2\x0c\x4f\x5a\x67\xdb\x8d\x69\xcc\xf8\xa5\xe2\x30\x18\xbc\xc6\xd1\xcd\x59\x7a\xf3\xf3\xd5\x49\xf2\x42\xbe\x04\x22\xdd\xb9\xfb\x77\x50\xdf\x53\x6d\x81\xba\x5f\x21\xe1\xb7\x98\xcf\x59\x6f\x8d\x1f\xa4\x28\x5e\x77\x50\x93\xe3\xa5\xfb\x5b\x99\x75\xab\xbd\xdd\x5e\x56\x70\x60\x71\x02\xcb\xb0\x3a\x00\x29\xb8\xd0\x00\x68\x26\x8f\xae\x19\xb4\x4f\xba\x66\xa8\x55\x41\xbc\x83\x3e\xe9\xa7\xaf\xdd\xc3\xda\x9f\x61\x34\xd3\xbe\x5e\x2a\x80\xd8\x6e\x7b\xe2\x00\x48\x1c\x29\x38\x05\x24\xc5\x1b\x52\xeb\x73\xd4\xf0\x34\x56\x03\xed\x9a\x66\x24\x5d\x8a\x02\x99\x86\x0e\xfe\x75\x77\xc4\xd6\xec\x0c\xce\x0b\xa3\x05\x08\xfa\x23\x5b\x68\x5b\xb3\x07\x3c\x69\x76\x41\xff\x59\x9e\x49\x4b\x4c\x6f\xe5\x2a\x9e\x35\xc1\xc6\x49\xb7\xd1\xc0\xdb\x1c\x54\x22\x0e\xe1\xef\x72\x52\x85\xbd\x13\xe9\x8e\xdf\xb5\xb7\x46\x38\x2c\xa4\xd5\x25\x53\x84\x05\xf3\xa3\xcd\xcd\x7d\xbc\xb2\xa6\x04\x66\xa2\x62\xf2\xc8\x39\xc0\x6e\x8f\x9b\xe2\x70\x84\x5b\xdb\xd9\xd8\x17\xea\xb0\x5d\xfb\xa5\xc7\xdc\x7c\x2f\xd4\x51\x65\x96\x6a\x69\x6e\x60\xbe\xb0\x29\xc9\xd0\xd7\x1a\x17\x12\x89\x40\xe0\x3d\x56\x82\x95\xc7\x84\x74\x57\x4f\x89\xd7\x6e\x46\xb3\x54\xbc\xe8\xf1\xa3\x93\x10\x76\xff\xfb\x65\xe7\x5b\x77\x92\x52\xa6\x9c\xea\x16\x23\xb8\xf1\x4e\x63\x51\x9f\x32\x8c\xae\xec\xf5\xaa\x62\x6f\xaf\x3e\x60\xfd\x57\x05\x34\x83\xf1\xb5\x4c\x65\x9e\x90\x1e\x23\xf2\x0b\x36\x1f\x62\xe7\x1d\xda\xc4\xf7\xb9\x65\xec\xa2\xa0\x58\xbd\x99\x76\x0b\xea\x58\xb6\xfc\x8b\x5e\x58\x2e\x28\xb7\xe5\xb5\x90\xe6\x5a\xac\x5e\x82\xa5\xba\x93\xfb\x0c\x06\xf5\xe3\xc2\xca\xf2\x57\x24\x56\x31\xcf\x5b\x06\x07\xc1\x69\x84\xbe\xe4\x8c\x63\xb8\xce\x39\x6b\x86\x67\x40\xaf\x3e\xe2\xb6\x6c\x55\x40\xc4\x56\xcf\x97\x53\x35\xc3\x90\x6e\xab\x3e\x1d\x1e\xb2\x0c\x4f\x69\x11\x20\x5d\xf2\x39\xf8\x88\x58\x64\xd6\x56\xb5\x14\xc8\x57\x9f\xdf\x3d\x44\x8a\x7e\xf3\xf1\xce\x9b\x6f\x7d\x87\x3c\xdb\xa0\x28\x3d\xdf\xa8\x0d\x92\xdf\x53\x94\x66\x72\x82\x0d\x90\x3b\xfb\x12\xcd\x0a\x42\xbe\x04\x52\xb0\x95\x48\x07\xf0\x92\x53\x45\x49\x43\xf7\x93\x62\xaa\xa6\x64\x3a\x00\xde\x22\x29\x02\x23\x07\x5b\x66\x47\xe7\x89\x1c\x3c\x1f\x5d\x72\x02\xf2\x73\xf1\x7c\x24\x72\xf3\xf9\x2f\x4f\x01\xd1\x2f\x7a\x82\xb7\x8d\x2f\xc8\x69\x44\x44\xcb\x6e\x23\x85\xaa\xfa\x6d\x3a\x7a\x2f\x1e\x00\x09\x71\x7b\x33\x68\x65\x2e\xf1\x5f\x4f\xc1\xf2\x38\x14\x6c\xff\x68\x43\x07\x6a\x70\x2c\x45\xef\x7c\x1b\x52\xbf\x1d\x90\x73\x1d\xe2\x75\x00\xa6\xa0\x4a\x4d\xe7\xac\xc7\xe6\x65\x9d\xf1\x6d\x5a\x88\x61\x82\xe3\x5f\x11\x58\x78\x52\x49\xc9\x80\xa5\x89\xa6\xff\x5a\x48\x7d\x75\x96\x64\x80\x44\xf0\x9a\x73\xe0\x8d\x57\xe2\x29\xef\x18\xf7\x1c\x66\xbe\xf3\x65\x54\x23\xe2\x68\x21\x4a\x07\x00\x83\x21\x8b\x07\xab\x87\xad\x3f\x38\x8c\xf8\x8a\xb5\x7f\x18\x3d\xd8\xa8\x03\x44\x2c\x73\x9d\x08\xf9\x1a\xd9\xb3\xad\xb3\x71\x9c\xfe\xb1\xf6\xe4\x96\x80\x1a\x78\xd8\xba\x54\x40\x3d\xf2\xd5\x1f\x57\xd8\x5f\x8b\xf5\xe6\x37\xb8\x44\x89\x00\x11\x67\x5c\x8f\x11\x63\xff\x31\xf1\x68\x3e\x30\x13\xab\xb7\xd4\x0e\xfc\x98\x24\xbe\xed\x1d\x87\xe7\x8b\x4d\x8e\x59\x2b\x04\x42\x07\x71\xac\xc6\xe2\xc3\xcc\xd1\xca\xd9\xdd\xed\x88\x8d\xb8\xf6\x25\xed\x4f\x85\x22\xf9\x4a\xda\xdd\x64\x64\xed\x59\x4c\x75\x20\x02\x2a\x88\xaf\x53\x14\xce\x78\x3f\x58\x90\x24\x20\xad\x79\x40\x52\x22\x01\x9a\x58\xfb\x53\x25\x8a\xfa\x0a\xb2\x55\xc9\xaa\x1c\xb7\xea\x84\xa8\xac\x32\xac\x85\x36\x3c\xc2\xc6\xc6\x7d\x5b\xaa\xed\x93\x4a\xb7\x96\x90\x2e\x85\x35\xdc\x28\xa5\x6f\xbc\x9c\x95\x6c\x1c\xcb\xe2\xaf\x5d\xe9\xd4\xba\xe4\xa8\x8f\xf7\x12\x2d\x60\xbc\x80\xba\x96\x96\x75\xf4\x05\xaf\xd9\x4e\xc8\x3a\x31\xbe\xb3\xf6\xb7\x32\x2a\x37\xb2\x49\x86\x2f\x1f\x69\xa5\x7a\xe7\x9f\xd1\x6a\x22\x5b\xa8\x54\x0e\xcf\x9f\xa0\xb7\xd1\x3f\x40\x79\xc7\xf4\x32\x6d\xc3\xe9\x3a\x5d\x81\x76\xe1\xdf\xd2\xba\x39\xc4\x62\x03\xcb\xae\xf3\xf1\x92\x9b\x8c\xf8\x07\x57\x3f\x0f\xb0\x70\x12\x44\x64\xf4\xaa\x87\x85\xc9\xe1\x3e\x4b\x8a\xf5\x8a\x16\xbf\xce\xca\xd2\xeb\x8f\x01\x0d\xab\x94\x93\x8b\xcf\xe6\x2f\xb5\x68\x3d\xd8\x0f\x8a\xf2\xfc\x03\xb2\x47\x3c\x0a\xf0\x96\x8b\x44\xb1\x9f\xbc\xac\x82\xd8\x3d\x58\xc6\x2e\xa2\x72\xb9\x28\xd4\x8c\xc4\x01\x68\x09\xb4\x98\x50\x64\x50\xa3\x0e\xe3\x10\x01\x29\x27\x0a\x4e\xaf\xed\xb9\x64\xef\x96\xec\xbe\x56\x14\x1b\x44\xa9\x93\x64\x80\xda\x98\x02\x65\x5a\x82\x61\x0a\x33\x85\x9b\x1e\xcd\xa2\xa1\x4a\x4c\xa3\xdc\x3b\x60\x3a\xc0\xc9\x20\x33\xb1\x20\x8b\xf4\x7c\x78\x82\xae\x03\x1c\x8a\xb9\xfd\x72\x42\x52\xb6\x95\x71\xe3\xe7\xd2\x7c\xb3\x74\x80\xf5\x6d\xd9\xfe\xcc\x1b\x1e\x54\xc1\x6f\xe8\x6a\xef\xca\x6e\x45\xdc\x9a\x33\x14\x4f\x59\x58\x89\x11\xdc\xdf\xc3\x7d\x2e\x75\x7c\x4e\x90\x53\x4a\x55\x28\x64\x07\xb6\x3c\x6f\x7c\xfa\xe0\xfe\x62\xbf\xfe\x7f\x9d\x7b\xe3\xee\xe3\xdc\xf4\x15\xe9\x3a\xa6\xc5\x41\xc8\xe6\x95\x8e\xe3\x8f\xd2\xba\xbc\x9f\x09\x28\x7f\x86\xba\x77\x1c\xaa\x6c\xc2\x50\x47\x57\x1f\x3a\xbd\xb6\x33\x63\xb9\x03\x19\x47\xf2\xf7\x91\x0d\x53\x1c\x5c\x32\x16\x90\x99\x86\xe4\xfc\xe4\x5f\x31\x57\x01\x6f\xc1\x7e\x7e\x1c\x59\x11\x47\x5e\x6c\xdd\x8d\xbd\xc3\xcf\x82\xf0\xcc\xa4\xf3\x09\xc3\xe2\xfb\x3b\xb6\x1d\x74\x6d\x46\x69\xd0\x40\xc6\xd6\x51\xd8\xc0\xb5\xf7\x86\x42\xef\xd3\x28\x6b\x49\x66\x64\xa2\x0e\x70\xd5\x72\x36\x3c\x8f\x4e\xa5\x21\x1e\xd8\xf1\x3c\x58\xd1\xa0\x3d\xac\xe4\x2c\x0f\xb9\x47\x4c\xec\xe8\xd1\x63\x80\x4f\xf3\x3d\x8c\x37\xa6\x6d\x3a\x43\xdb\xcc\xfc\x65\xe5\xf4\x4c\x99\x31\x87\x09\x09\xda\x0c\x0c\x99\x75\x7e\xe9\xa1\xcd\x8f\x36\x26\x74\x90\x75\x80\xf6\x81\xf9\x89\x90\x57\x4c\xf4\x21\xa3\xea\x89\x96\x82\x55\xe5\x82\x8d\xed\xb8\x64\x5c\xa9\x3a\xff\xf1\x4d\x4c\x8d\x2f\x97\x79\x0f\x33\xc3\xd8\x54\x8c\xec\x02\xe8\x4d\xdb\xa7\xf9\x1e\xf6\xf7\x72\xac\xae\xb9\x1f\x95\x4d\x21\x52\xa0\xa5\x54\x78\xea\x46\x17\xd1\x7d\xdd\xf8\xd7\x3f\x02\x7c\x73\x45\xdc\x1a\x75\xb8\xf3\x2d\x96\xfb\xdf\x6a\xe3\x34\x5f\xfa\x6f\x7c\x52\x36\x61\x39\x1d\xba\xb9\x98\x9f\xec\x06\x26\xf7\xdd\xb1\x41\x7e\xcc\x84\xf3\x63\xa6\xed\xa7\x72\xea\x15\x6c\xd2\x32\x4f\xfa\xe1\x3f\xff\xb4\x07\xfd\x5a\xbc\x5a\xe2\xd5\xb9\xe8\xea\xa5\x7b\x67\x66\xf1\x3a\xc0\x47\x96\x65\x75\x39\x98\xfa\x65\xf7\x53\x20\xe9\x34\x07\xef\x87\xe5\x76\x77\xb3\x39\x8e\x89\xd9\x20\x9e\x4d\x58\xfa\x69\xb2\x92\x9f\x3e\x11\x39\x23\x6c\xdd\x8a\xcc\x35\xf5\xbf\xb6\x80\x9d\xc5\xa2\x30\x29\x18\x6c\x56\x38\xe3\xb9\xd5\x38\x77\x48\xab\x1f\xad\xb5\x31\x2a\x3f\x9e\xfd\xfc\x6b\x29\x74\x2d\x65\xa0\x6b\x47\x80\xdf\xea\xec\xea\xa5\x9c\xa3\x2c\xaa\xcc\xdc\x03\xb2\x80\x59\x06\x81\xa4\xf8\xb3\x47\x15\x69\x6e\x7a\x79\x75\xda\xda\x1d\x38\x02\xb5\x3b\xa9\xc4\x24\xe0\x97\x52\xd9\x40\xcd\x26\xd2\x3f\x5a\xb3\xb8\x33\xf6\x19\x5e\x95\x91\xec\x60\x56\xa5\x60\x2e\x48\x24\x48\xab\x4c\x4f\xbd\x1d\x3f\x74\x32\x71\x9e\x00\xdd\x4a\xca\xc7\xb7\x93\x72\x6f\x69\x8a\xb9\x83\xcc\xc3\xde\x71\x99\x3f\xc0\x4d\x17\x8b\xa5\x0b\xc8\xf3\x26\xdd\xbf\x3e\xba\x9e\x54\x76\xcd\x91\xdc\xbb\x3f\x44\x4e\x90\x40\x98\x0f\x62\x72\xd6\x9c\xc5\x76\x12\x64\x73\xbe\xa2\xd6\xf9\x92\xe7\xb2\x30\x95\x9c\xc3\x61\x6e\x3a\xce\xb3\x58\xb3\xd2\x65\xbb\xa0\x9a\x9c\xb8\xe9\x83\x80\x1d\x87\x7c\x56\xdb\x06\xca\x82\xbf\xa4\x30\xe5\xc5\xbb\x15\xb5\xf5\xcb\xd7\x0b\x54\xa9\x9b\x2d\x93\x35\x22\x73\x3b\x78\xd2\x65\xf3\x6d\xc9\x16\x9c\xba\x8d\x5a\x47\x29\xd0\x9d\x6d\xd6\xc0\xbf\x18\x00\x9e\x72\x7a\xed\xd8\x28\xf8\x1f\x6f\x93\x8a\xd3\x4c\x48\xf4\xe1\x45\x9e\x30\x39\xc9\xcf\x8f\x3f\x03\xfb\x98\x18\xdf\x7d\x69\x32\x08\xd2\x7c\x85\x72\x2c\xde\x52\x32\x7e\xcc\x0f\x0f\xac\x98\xb5\x63\x42\x69\x75\x41\xd6\xeb\x57\xfd\xeb\x1c\xd5\x03\x74\x9b\xb4\x83\x63\xdf\xcc\xe6\xa6\xe0\xc6\x93\xeb\xbd\xad\x3a\xf7\x22\xb4\x0e\xcb\xc7\x70\xae\x6a\x1d\x60\x9e\x4a\xdb\xf0\x83\xf7\x5e\xfc\x5b\x11\xdb\x10\x99\x23\xe3\x96\x43\xd4\xde\x54\x17\x2b\x90\x69\xa8\x2b\x63\xed\xfd\xae\xf1\xdf\x61\xbe\x39\x3b\x5f\x21\xc3\xa6\xcc\x7e\x3c\x29\xbe\x1c\xff\x1b\xca\xf3\x57\xa4\x4e\x63\x61\xc1\xe8\x50\xa9\x20\xb0\x1a\xc6\xb5\x5e\xf5\x54\xff\x39\x32\x67\xa2\x50\xcb\xaf\x60\x3c\xf5\xc5\x66\x1c\xc5\xdf\x47\x46\x0b\x58\xc0\xfb\xf7\xd3\x19\x75\x77\xc9\x9d\x52\x75\x43\xf4\xef\x28\x4f\xee\xe3\x84\xec\x77\x97\x8a\xd2\xa4\x16\x5c\x2e\x7c\x0f\xfe\xbf\xbe\x14\x9f\x84\xb5\x06\x9a\xe7\xc6\x87\x4c\xc1\x45\xa7\x2c\xcc\x81\xa6\x25\x07\xa6\x54\xe8\xdb\x34\xcb\xec\x8b\x50\x5b\xfb\x06\xf8\xf5\x02\xcf\x82\x8c\x0c\x41\x9a\x6b\x6c\x9e\x16\xf2\x05\x66\xdd\xd7\x97\x3e\xbe\x90\x05\xe6\xc7\x2e\x84\x7e\xf6\x33\x60\xf4\xc9\xc5\xf6\xf1\x11\x87\xea\xb1\x8b\x93\x59\xf9\xf5\x51\x19\x7c\xbb\x36\xae\x44\xcb\xfc\x0d\xe1\x51\x34\xb3\x26\x6b\x5c\x87\xbb\x48\xc3\xe0\x87\x1b\x97\x78\x99\x5c\xd1\x23\xbc\x3f\x4e\x73\xe0\x93\xc2\xb1\xb8\xa9\xbe\x82\x27\x32\xba\xaf\xbf\x8a\x14\x94\x45\xca\xd8\xf0\x7c\x14\x11\x93\x04\x86\xfb\x2f\xc4\xa6\x41\xd4\xbc\xcf\x9d\xdf\x08\x0b\x4b\xbc\x10\xfd\x62\xbd\x7b\xfe\x69\x91\xe7\x2a\x93\x72\x76\x8d\x9c\xe0\x04\x24\xd0\xea\xec\x03\x90\x1e\xe2\xc1\xbe\x77\xcc\xbe\x1d\xf2\x3d\x83\xc6\x5d\xbb\xbd\x19\x53\xc0\x0f\x37\x2e\xed\xf8\xe1\x27\xf7\xaf\x58\x76\x43\xad\x73\x34\x50\xb2\xdf\xad\x0c\x34\xa8\xcc\xbd\xbd\xa0\x6c\xf3\x33\x1f\x9e\xd8\xf3\x11\x34\x09\x4e\xe7\x2a\x6a\xf8\xcc\x3e\x68\x3e\x37\xfa\xfa\x5e\x40\xb1\xff\xaf\x0f\x47\x84\xa9\x77\x2f\xb5\x1b\x37\x66\x62\x50\xc4\xfe\x55\x99\x74\xa9\x68\xfc\xd9\x43\x31\xf6\xc3\x65\xf9\x85\x07\xf1\x33\xc2\x3a\xdf\xc5\x30\xa9\x91\x90\xd7\xd5\xea\xf6\xea\xa2\xdc\x1b\xaf\xc1\xa0\xd7\xbc\x25\x2c\x62\x02\xea\x7d\x16\x3f\x84\xfc\x3f\xa1\xe2\x01\xcc\xba\xfb\xde\xfa\x20\x48\x7b\x01\x93\x26\xc4\xc1\xe4\xbe\x8c\xec\x3a\x2a\xad\xb3\xc5\xbf\xc6\x75\x23\x88\xcd\xe5\x2e\x8c\xa1\xdf\x71\xbd\xa0\x8f\xea\x03\xa2\x81\x6a\x85\x01\xb3\x6e\x4b\xc8\x88\x4c\x3f\xee\xcb\xa0\x1e\x8f\xa9\x62\xf9\xfa\xfe\xc6\x09\x3c\x3b\x76\x8d\xc7\xf3\x7d\xbd\x21\x7f\xe0\x84\x95\x9c\xa3\x2c\x76\x56\x19\xd6\x52\xee\xbb\x5e\x55\xa5\x76\xe9\x12\x93\xea\xe5\x3b\xb8\xbc\xbc\x6f\xa0\xbf\x8a\x7d\x9e\x8e\x20\x8b\x4e\x5b\xc5\x64\x0c\x08\xc4\x4f\xee\x60\xef\xd1\x42\xbc\x55\x37\x9b\x23\x6b\xb2\x4b\xd3\x9f\x34\x32\x8e\x67\x91\x19\xf3\x8b\x18\x56\xca\x9d\xcf\xe4\xc4\x0c\x08\x50\x8a\x4e\x9e\x8e\xb8\x31\x3d\x7a\xa6\xaa\xc4\xcb\xe4\xe2\x3f\xdf\xfe\xa4\x49\x15\xa1\xf7\x15\xf4\xcc\x42\x9a\x5f\xbe\xb2\x38\x23\xbb\x8e\xf3\x5c\xcc\x64\xf2\x18\x39\x3f\x40\x79\xd6\x5f\xba\xfa\xc5\x1b\xc5\xd7\x57\xb3\x5d\x19\xd4\x82\x69\xd2\x74\x3d\xc2\xdf\x65\x30\x90\x45\x3e\x3d\x4d\x70\xbe\x08\x85\xbc\xe3\x34\xe5\x91\x8b\x73\xcd\xcf\xbc\x38\x4e\x69\x8e\xc7\x81\x0a\xa1\x5d\xbc\x71\xe8\x99\x83\x80\x1d\x96\x3e\xab\xf7\x28\x01\x76\xd7\x42\x35\xef\xb3\x98\x7b\xb5\xe0\x4a\x58\xbf\x2f\xad\xa0\xc1\x06\xf2\x68\x15\xb7\x31\xd8\xad\xa7\x1c\x26\x94\x4a\x97\x10\x5b\xf3\xb2\x09\x48\xeb\xdf\xfd\xbc\xbd\x04\x89\x3f\x16\x73\xf1\x5b\xd2\x2a\xc9\x3d\xd0\x72\x16\xd4\xc3\x99\x1e\x6b\x46\xf0\x67\x32\xec\x82\x6a\x62\xed\xf7\xec\x9b\xed\x18\x96\x7f\x8b\xde\x24\x18\xed\x88\x6c\x12\xde\xa5\xe0\x20\x57\xb6\x46\x4d\x55\x8c\x87\xad\x34\xcb\x02\xbf\xac\xe6\x51\x90\x40\xf9\xac\x10\xed\x21\xb5\x0b\x67\x7e\x6f\xfd\xa5\x2b\x74\xab\xd6\xa6\x66\x13\x90\x56\x1e\x9f\x19\x92\x7a\xce\x6f\x49\x5d\x10\x3c\x20\xea\x47\x4e\xcc\x56\xc8\xea\xdd\x4e\xee\x6b\x3a\x0f\xa5\x6f\x15\xe5\x37\xdf\x62\x8a\x6e\x26\xf7\x4f\x11\xb3\xd7\xaa\x38\x08\xff\x78\x74\x1c\x7a\xe2\x63\x22\xbc\xf7\xe2\x97\x2d\x21\x84\x28\x22\x8a\x00\x07\x02\x81\x5c\x2b\x6b\xaa\xc1\xd6\x5f\x41\xb3\xc8\x5f\x85\x9f\xcb\x87\x54\xdb\x33\xaf\xab\x97\x99\x3d\x44\x17\x64\x0c\x42\xf1\x48\xc1\x20\x2d\x15\x56\x7e\x57\xbd\x17\xa0\x3f\x50\xf6\xa8\xeb\x02\x39\xe3\xfb\x72\xbe\x00\x2c\x35\x27\x12\x70\x1d\xfa\xd3\x5e\x32\x01\x8a\x80\xb4\x82\x94\xf6\xea\x99\xea\xf6\xda\x47\x67\x4a\x4c\x48\x96\xff\x25\x3b\x4a\xe5\xec\x23\x37\x5b\xce\x9e\x28\xcd\xc2\x08\xe8\x86\x87\x4a\x1e\x25\xc7\xc4\x64\x81\xef\xd5\xcb\x21\x47\xc6\x76\x01\xde\x89\xfc\xe0\x32\x32\xf3\x44\x2b\x95\xb3\xd3\x76\x71\x64\xc1\x06\x46\xf1\xef\x83\xb7\x0c\x1a\x06\x4c\x26\x5f\x9e\xa7\xf9\x86\x08\xcf\x34\x26\xe8\xa9\x40\x07\xc0\xa4\x7b\x46\x1d\xee\x0c\x97\x58\xdc\xda\xfb\x92\x0a\xfa\x0b\x02\x90\x70\x90\x2b\x5f\x32\xae\x58\xa2\x7c\x81\xf1\xa1\x8f\xe1\x92\xfe\xb3\xa1\xaf\x89\x0c\x63\xdf\x4a\x35\x9b\xc9\x81\xd6\xeb\x00\xcf\x07\x49\xaf\x50\x41\xd6\xe6\xca\xb3\xd6\xa4\x92\x03\xf7\xd7\x3e\xfa\xa6\xdd\xa4\xb3\x78\x2f\x7b\xa6\xc6\x6b\x31\x12\x54\xe6\x7e\x37\x52\x48\x41\x9d\x56\xa8\x4e\x1d\xa9\x24\x12\xf2\xfc\x64\xf1\x64\xa9\x2b\x11\x4f\xa7\xeb\x00\x13\xdb\x6c\xf0\x50\xb8\xbc\xb2\x62\x0f\x2c\xeb\x43\x61\xef\x20\xad\x75\x00\x96\x4d\xbd\x06\x31\x14\xfb\x49\x71\x71\x69\x48\x49\x2a\xb0\x47\x35\x20\xd7\x01\xfc\x7c\x1a\x88\x3c\xd3\xd0\x3b\x6b\xad\xd9\xb8\x8b\x82\xdc\xb1\x3d\xaa\x8c\x05\xec\xcd\x3b\xb1\xca\x3a\x10\x45\x72\x23\x20\xe9\xcd\xdb\xaf\xc2\xb4\xe0\x35\x18\x59\xef\xd1\x01\x8e\xcf\x65\x70\x35\x35\xb4\x84\xe4\x2a\xbc\x0c\x52\x5d\x50\xea\x34\x51\x36\xad\xaa\x5a\x3f\x35\x3f\x86\x7e\xe7\xd8\x48\xa5\xd6\xa1\x35\xab\x5e\xa5\x03\x08\x62\xff\x06\x49\x93\xfe\x10\xec\x8a\xbd\x89\x2d\xcf\x54\xa5\x06\x23\x76\xcb\x45\x74\xba\x82\x3f\xf7\x99\x21\xea\x53\xf3\x32\xf5\x56\x61\x20\xc4\x27\xfd\xa7\x6b\x5b\x73\xb6\xc6\x55\x81\x9f\xc0\xdb\xb6\xdc\xcf\xd7\x7f\x99\x39\x87\x8c\xc9\xf7\xf5\x45\xd4\x41\xd3\xf5\x39\xbf\xbb\x9b\xcf\x32\x4a\xcc\x5e\x16\xd8\xf8\x0c\xbb\x6c\xf1\xc2\xb3\x29\x5f\x55\x6d\xc6\x0f\x05\xcd\xb9\x15\x1b\x24\x14\xc7\xdf\xcc\x77\x35\x38\x6f\x66\x33\xe2\x5e\x15\x4a\x70\x36\xd2\x35\x38\x70\xd9\xe2\x57\xc5\x58\x74\x6e\x50\x1c\x0b\xdf\xf4\xfb\xe6\x07\x1b\x46\x9d\xc3\x91\x45\x94\x33\x8c\xc2\xc2\xf6\x69\x7d\xce\xc7\x1e\x2e\x0e\xbb\x10\xed\x1d\x4f\xb0\x4a\x02\x33\xa1\xb4\x82\xae\x82\xe9\x4e\x37\x55\x6d\xfa\x8d\x35\xc8\xe9\xee\x1c\xcd\x5e\x13\xf4\xfd\xd2\xb5\x80\xfa\xe6\x32\x41\x92\x73\x01\x2b\xa0\x65\x0f\xac\xe4\xe4\x6a\xdb\xc8\xa8\x0f\xb0\x29\x0a\x64\x99\xb1\xdd\x0a\x6a\xdd\xea\x8f\xc7\xbe\xb0\x0d\x3c\x19\xc0\x3c\x16\xe3\x3a\x84\xcf\xab\x47\x61\xe7\x73\x03\xf3\x9f\x84\x19\xd6\x4a\x82\x2a\x30\x75\x41\x15\xe8\x14\x63\x34\x0a\x8d\x7a\x35\x13\xb8\x46\x63\xee\x7f\x2f\x98\x94\x99\x54\x6d\x8a\xcb\xb8\x3a\xc0\xc1\x24\x9f\x25\x85\xb0\x19\xda\x55\x3d\x0e\xb5\xf1\xf9\xfb\xc8\x5c\xd6\xd3\xc7\xe8\xda\x1b\xed\x3a\xc0\xa3\x89\x70\x1d\xa0\xf4\x56\xa6\x8d\x35\xfd\x89\x9f\x3f\x85\x24\xe6\xd7\x89\x99\xf5\xb0\x6b\x7a\x8a\x68\x11\xb7\x17\xc7\x60\x21\x3a\xc0\x7b\x55\x3a\xc0\xa1\x5b\x27\x45\xbc\x39\xd3\xcc\x5b\xc4\x96\xb2\x3e\x56\x50\x05\x1a\xc8\xdd\x1f\xd9\x95\xff\x55\x83\x35\x10\x5d\x51\xde\xff\xb2\xb8\xf7\x9c\xab\x5b\xcb\xe4\x8b\xfa\x91\xfc\xd0\x88\x69\x21\xb5\x21\xba\x89\xb9\x83\x69\x82\xf9\x6b\xcf\x5b\xd1\x3f\xaf\x8a\xe7\x19\x11\x09\xdc\xfe\x5c\x3a\x7c\x00\x7f\x94\x56\x85\xd2\x02\x3d\x36\x0d\x7d\x5e\xdb\x56\x9f\xc7\xee\xb8\x8d\x92\x02\x81\x52\xe0\x8b\x3f\x9a\x06\x43\x30\x20\x99\xe0\xfa\x97\xb2\x56\x5e\x65\x0a\xc3\x02\x48\x83\xb2\xed\xa7\xd3\x79\xbc\x05\x44\x8b\x02\x53\x6a\x60\x0a\x83\x67\xd8\x9b\x3e\xd9\x01\x84\x6a\x3c\xb3\x05\x5b\x65\x5b\x4a\xe0\xda\x17\x43\x53\x43\x42\x9e\x8a\x69\x46\xde\x62\x8a\xe4\x98\x2c\xf9\x87\xed\x29\xf8\x79\xa3\xfd\x3d\x02\xa5\xbf\x54\x96\x92\x83\xcd\x89\xb9\xfa\xdf\x6f\x1d\xba\x3c\x48\x71\xfd\x9c\x0d\xc3\xef\xb4\x5f\x7b\x2a\x37\x02\x09\xf0\xe1\x38\x97\xf2\x90\x59\x67\x13\xd3\x0e\xe6\x2e\x97\xb9\x2d\xd7\x20\x6b\x77\xdf\xcc\x33\x1c\xde\x60\x26\xfb\x66\xcd\x6c\xb9\x21\xf5\xdb\x7e\x7f\xb8\x27\x5b\x07\x58\x49\x91\x07\xc1\xe8\xe3\x18\xbe\xe0\xa4\xed\x20\xf4\xdf\xba\x06\xd2\xfc\xd3\x22\xea\xea\xa4\x93\xe3\x76\xf6\x97\xdb\x07\xe4\x5e\x24\xdc\xbf\x52\x05\x0a\x34\xb6\x16\x37\xc2\x95\xb2\x01\x1d\x60\x21\xdc\xa1\xc4\xeb\x63\x3d\x55\xe0\xcd\xb6\xa8\xc2\x73\xcc\x5a\xee\xe5\xac\x20\x6f\x7a\xfc\x32\xae\x58\xba\x8d\xf1\xf1\x23\xe4\xd4\x44\x30\xf3\xb8\x59\xf0\x00\x4c\xe5\xd7\x17\xdf\xb4\x77\x85\x59\x5b\xa3\x69\xa3\x0f\xbb\xbc\x5c\x96\xac\x90\xcd\xeb\x68\x1d\xe0\x9b\xea\xbc\x65\xa5\x71\x6d\xc4\xc1\x83\x0e\x51\x20\xaa\x97\x50\xa2\x66\x68\x1d\x0c\xad\x82\xdb\x46\xbf\xea\xa2\xd8\x1c\x1c\x76\xc9\x7e\xa0\x04\x99\x0b\xa3\x85\x6f\x3a\x80\xa7\xeb\xa4\xab\x0d\xf9\x9f\xaf\x5c\x18\x08\xe3\xd9\xf8\xf8\xc9\xe2\x67\x09\x1e\x72\x99\xda\x6b\xfa\x8f\x8b\x99\x1f\xfd\xbf\x1f\xa8\xbf\xeb\x40\x68\xcf\x85\x35\x66\x84\xed\x6b\x20\xa2\xfb\x6f\x79\xa8\x98\x0f\xc9\xe8\x9f\x1f\x2f\xc7\x1b\xb9\x9b\xbe\xe0\x04\x61\x94\x18\xb9\x3b\x25\xf6\x17\x54\xb4\x18\x31\x31\xb3\x89\xf4\x47\xfa\x31\x98\x45\x7d\xcf\xf0\xd8\xb1\x85\x18\xd8\x29\x57\xd4\xd5\x31\x16\x4b\xe3\x0d\x94\x72\xc9\x76\x9d\x03\x21\x3e\x9e\xe7\xcf\x5b\x13\xe1\x64\x25\xfb\xbb\x13\xe2\x81\x1a\x7d\x0a\xa8\xae\x92\xa1\xf7\xaa\xf3\xe9\x8c\xc2\xc2\xd2\x3c\x97\x66\x3c\x09\x23\x3a\x5c\x1c\x96\xf0\x3d\x9b\x86\x36\x5f\xb9\x40\x39\xbe\x1f\x08\x76\x11\xa4\x58\x7a\x8c\xe5\x05\x2a\x9d\x17\xdf\xd3\x01\x4e\xaf\x1d\xa8\xe5\x51\xe1\xf8\x9d\x36\xb9\x76\xe4\xa5\x82\x43\x67\xe8\x70\xc4\xa9\x8f\xea\x5a\x9a\xd7\xd1\x49\x88\xbe\xe8\x84\xe0\x58\xfb\x93\xb9\x21\xbf\x6f\x27\xc7\x38\x34\xd3\x02\xfa\x95\x12\x4c\x3d\xd3\x28\x32\xc9\x25\x7d\x55\x21\x5f\x00\xc2\x13\x2f\x9b\xe3\xba\x0a\xbb\x18\x7e\x70\xf3\xcd\x09\x1d\x20\xe6\x51\x2c\x4b\xd8\xd8\xde\x9c\x5b\xd7\x19\xf6\x62\xcb\x4c\x40\xc0\xe6\x7d\xd9\xcc\x9b\xa7\xd5\x3d\xcb\xfb\x09\x8e\xa3\x5f\x8f\x5c\x34\x94\x13\x6b\xab\x2b\x39\x0e\xd8\x9f\xeb\xfc\xf6\x43\x7c\xe7\xab\x64\x26\x55\x75\x0c\xcf\x80\x15\xf2\xfe\x01\xc3\x14\xf1\x16\xb1\xe5\x24\x7d\xbc\xe5\x24\x8d\x34\x6f\x50\x78\x0e\x10\x35\x78\x6f\xcd\x9d\xbc\x4f\xeb\xc3\x92\x56\xc6\xee\xfa\xa0\xc0\x27\x6d\x0a\x24\x03\xf1\x3a\x6b\x02\x03\xb3\x48\x54\x5c\x57\xf5\xa8\xe7\xc8\x45\x40\x8a\xf6\x93\x49\x7c\xf9\xa3\x39\x11\xc3\xc8\xd4\xae\xba\x5b\xac\x03\x4c\x69\x41\x60\xa9\xb9\x82\xf3\xb7\x9a\x35\x6b\xe9\xa3\xea\x3a\x48\xc4\x14\x0c\xb9\xff\x64\x72\x06\x90\x4b\x2c\x5c\x06\x4a\xff\xa2\x2a\xe7\x87\xda\x22\x7c\x58\x78\x9b\x17\xa9\x52\xed\x17\x52\x38\xb2\xb9\x94\x9d\xb1\x3c\x5b\x2a\xc5\xa6\x14\x7a\x8e\x1e\xc7\x19\xe3\xec\x8f\x7c\x77\xf1\x1d\xc6\x77\x86\xad\xca\x18\x42\xcb\x70\xab\x42\xd6\x3c\xe6\x50\xbf\x0c\x54\x59\x21\xf4\x16\xdd\xba\xe2\x6c\x94\x1d\x70\x6b\x33\x2c\x13\x85\x46\xa9\x0d\xe1\xa4\x61\xed\xd0\x37\x9c\x60\xcb\x8f\x16\x8a\xc7\x52\x10\xeb\xe2\x19\x68\xf5\x06\x46\xbd\x1d\x24\x20\x32\x30\xe5\x80\x55\xa7\x49\xcd\x76\xcd\xff\xa8\x2b\x62\x8d\xbd\x23\x8c\xdc\xbf\x04\x1b\x42\x10\xc1\x7b\xfc\x60\xe9\x8f\xcb\xce\xa6\x1b\xb6\x55\x5c\xb6\x8c\x84\x5b\xca\xbc\x61\x6c\x7d\xa8\x59\x75\x23\x4a\x32\xb7\x2c\xd5\xc6\x97\x46\xf0\x59\x9c\x85\x46\x5a\xdd\xb8\x46\x36\x5d\x21\x5b\xd5\x34\x44\x1f\x03\x7a\xc8\xfb\xf2\x78\xfc\x82\xcc\xb8\x4b\x80\x23\xeb\xe7\xf6\xc8\xdb\x41\x20\xe6\x95\x4a\x95\x6c\xc1\x36\xc2\xae\x8d\x69\x74\x81\xed\xe4\xff\xf6\x15\xb7\xf4\x07\x65\x3d\x1d\x34\xbf\xfd\x40\xa0\x65\x0a\x85\x61\x28\x1d\x1d\x06\x7e\x94\x80\x86\x0b\x87\xbe\x5f\x3e\x46\x30\x77\xd2\x01\xca\x0b\xaa\x3b\x2d\x62\x62\xdc\xa7\xf9\x82\x80\x47\xb6\x83\xff\x3e\x52\xfc\x46\x0e\xfd\xc3\x6b\xb7\x67\xbc\xfa\xb2\xee\xb2\x94\x45\xcf\x4d\xe3\xff\x61\x0c\x3a\x6d\x65\x75\xed\xb6\x54\x34\xa0\xd6\xdb\x14\x36\xc8\x34\xf4\x3b\x89\xc5\x8f\x11\x0e\x05\x1f\x6c\x19\x09\xcb\x6a\x10\x8d\x28\x13\x06\xbe\x18\x37\x18\x89\x1a\xa8\xdc\x69\x24\x9e\x2c\xe5\xb3\xb1\x60\xb0\x0e\xe0\xf5\xf5\xc5\x37\xbb\xbb\x7f\x37\x12\xe4\x53\x94\x3b\x48\x6b\x86\xfa\x6f\x2c\x0d\xe3\x79\x50\x6a\x4f\x4f\xcf\x14\x6a\x08\xb8\x07\xdd\x22\x83\xac\xb2\x7a\xe1\xa6\x25\x07\xe4\x0b\xf2\xe6\x07\x8d\xe9\x63\x49\xf5\xbc\x67\xf8\x7a\x94\x82\xbc\x26\xa4\xa0\x2b\xb3\x48\xcc\x95\xc2\x1b\xf5\xbe\x37\x47\xf3\x2e\x90\x71\xec\xfe\x25\xa6\x47\x4c\x01\x2d\xe9\xab\xcf\xdd\xfe\xf0\x90\xee\x6b\xf0\x86\xd7\x77\x44\x93\x20\x21\x2d\xbf\x76\xdc\xab\xe5\x2a\x7a\x35\x39\x8f\xca\x2f\x38\xea\xa9\xf6\xb3\xb2\x56\xf2\x10\xef\x2d\x04\x7e\xe8\x51\x00\xb1\x85\xd8\x88\xc4\x43\xe1\xab\x81\x79\xf2\x2d\x56\x40\xc7\x1e\xc4\xe1\xe7\x9c\xd1\xc9\xac\xd5\x41\xa8\xf5\x8e\xc2\xed\x6d\x55\x1f\xf1\x40\xcd\x46\xce\xde\xea\x04\x98\x0e\xf0\x91\x25\x55\x6d\x20\x85\x2d\x4e\xf8\x82\xd8\x4d\x52\x74\xbb\xa5\x0f\xf8\xde\x7c\xd6\x64\x65\x13\x03\x43\x50\xb0\x71\x5b\xcd\xc3\x66\x93\x24\x78\x81\x6f\x65\xad\x67\x84\xfd\x14\xf0\xed\xf6\x33\x74\x78\x2a\x08\x38\x2d\x27\x3a\x40\x80\xd2\x12\x36\xdc\xee\x74\xe7\x09\x6c\xdf\xe9\xfa\xca\x8f\x01\x0d\xab\x14\x1f\x41\x80\x6d\x85\x5f\x76\x6d\x3a\xe7\x25\x29\x74\xe2\x03\x02\x52\xdc\xf5\xa4\x50\x72\x5b\xea\xd0\x14\xc3\x74\x77\x68\xcd\x52\x7b\x6b\x6b\xf6\x63\x03\x51\x4f\xec\x24\x11\xf8\x44\x76\xad\x73\x92\xe5\x3f\xf6\x48\xb0\xee\x81\x42\x29\xfe\x60\x93\x32\xd5\xf2\xe3\x6a\x0e\xfc\x55\x52\x00\x82\xbf\xcf\x38\x8a\x9f\xaf\xed\x34\x9f\x8b\x45\xa8\xac\x0a\x2a\xc4\x7e\x72\xc3\xe4\xdf\x1c\xd7\xd5\x7e\x46\xd2\xd5\x9a\xbd\xc9\xe5\x48\x2d\xff\xb2\x88\xa2\x9e\x37\x58\x20\x52\x73\x6e\xdd\x5d\xee\xc5\xc7\xa4\xd5\xbe\x35\xa8\xfb\x82\x6b\xa6\x56\x07\x78\x26\x62\xb1\x66\xa5\x68\x7d\x76\xb1\xdf\x63\xfc\xf3\x1b\x7d\xab\x0c\xdf\x5a\xf9\xb9\x8d\x96\xd6\x53\xfc\x0e\x15\xbe\x1b\x5f\x60\x14\x4e\x38\x29\xab\xd5\xbb\xe1\x56\xe7\x59\x67\xf9\xb7\x9c\x84\xe0\x7d\x05\x43\x30\x1d\x80\xfa\x15\xc9\x3f\xb3\xa0\xd3\x35\xc2\xde\xdc\xd1\x03\x2f\x49\xbb\x1e\xfb\xae\x85\x60\xb2\xb0\xaa\x7f\x73\x8b\x17\xf2\x22\xd3\xcf\x9f\xa8\xbc\xea\x0b\x0f\x2d\xf6\xd5\xa7\x0a\x2c\x5e\x95\xbf\x42\xf8\x14\x7c\xbc\x85\x46\x20\x89\x02\xab\xe1\x1e\x56\x6e\xab\x9e\x1b\xda\x72\xe8\x52\xed\x8e\x6a\xb6\x1d\x94\xdd\x01\x84\x52\x3d\x3d\xb3\x51\xe8\xb8\x2d\x62\xb8\xb5\x66\xb9\x4d\x0c\x7e\x5b\xc4\xd0\x2b\xdf\x1e\x2a\x1e\xc1\x2a\x67\x18\x95\xc0\xd0\xe2\xe4\x47\x2f\x97\x65\x90\xfb\x84\x21\xfb\x53\xee\xf0\x73\xf1\xdc\x0e\x42\x42\x8c\x51\xc8\xac\xb3\xeb\x59\xf6\x0d\x5a\x08\xce\x59\xdc\x14\x65\x45\x5c\x47\x2d\x53\x6e\x6e\xcd\x0c\x9a\x24\xa9\xe8\x96\x62\x9a\x61\x00\xa8\x0e\x0c\x27\x9c\x40\xbb\xaa\xb5\x98\x08\x41\xc0\xf8\xa9\x23\xb5\xa5\x1b\x5d\x6b\x61\xe1\x52\x19\x84\xd2\x67\x68\x14\x0f\x1a\x6f\x4c\xdb\xd8\xd8\xf4\xa4\xf2\xb2\xf4\x19\x63\x08\x81\xb3\x99\xac\x1e\x16\xdf\xff\xe0\xc3\x10\xf1\x55\xf3\x54\x58\x59\xf5\x69\x2b\x2b\x48\x0a\xb6\x7e\xa9\x68\xf8\x25\x37\xa0\x07\xef\x67\xd7\xb2\x0b\x09\x3a\x80\xaa\xe0\xce\x9f\xb9\xc1\xb1\x8e\xae\xc4\xe8\x00\xca\x7b\xbf\x87\x8c\x8f\x67\xfa\xaf\x7d\x5d\x5f\xed\xb5\xa0\x64\xaf\xdd\x9e\x09\x0e\xef\xe3\x69\x4d\xf0\xfd\xc1\xdf\x3e\xf0\x35\x6d\x2e\xba\x06\xdc\xdd\x76\x8b\xc4\x8f\x55\xd6\xff\xde\x2a\xf6\x87\x68\xbe\xf4\x4b\x1a\xe9\x4a\x26\xca\x4d\x85\xe1\x77\x23\x85\xd2\x0f\x65\x48\x49\xe1\x8d\x2e\x2e\x07\x43\x96\x3a\x91\x71\x31\x7a\x76\x70\xc5\x2e\x77\xff\x47\x7a\x50\xea\x00\x51\x9d\xc5\x43\x43\xc3\xad\x5e\x5f\xb0\xf5\xfe\x01\xbb\xdc\xac\x67\x1f\xa8\x45\x3e\x3f\xc3\x39\xbd\x0c\x43\xb8\x67\x52\x58\x1d\x18\x08\xfa\x7a\xf9\xd3\x43\xed\x40\xb2\xc4\x7d\xd5\x40\x40\xe5\x23\xd7\x37\x52\x12\x6f\x76\x71\x39\x75\xdc\x58\x3a\x63\x5d\x7a\xfb\xc2\xd5\xaa\xf7\xba\xa4\x25\x25\x65\x4e\x96\xb6\xb6\xfb\xe2\xbf\x96\x52\xda\x36\x59\x68\x0c\x1a\xdc\x18\x94\xe5\xe5\x7d\x6e\x3d\x89\x36\x9a\x1f\x54\x37\x66\x4b\xcf\x94\x14\x96\xb2\xb9\x8a\x99\x93\x0f\xa8\xbf\xc3\xf9\x8d\xff\xf7\x2b\x08\xef\xe6\x5d\x20\x77\x70\x3e\x09\x5e\x5d\x04\x83\x22\xc9\x44\xb2\x66\xfd\x4a\x56\xa3\xc0\xb4\xd6\xc6\x76\x57\x31\xf5\xfc\x9b\xde\x5b\x83\xcc\xd3\xb9\x29\x38\x19\xfe\xda\x08\x0e\x07\x79\xb1\xcc\x20\xd1\x19\x5d\xd4\x61\x72\xdd\x19\x26\x8f\xae\x69\x60\xff\xfa\x2f\x62\x87\x90\x96\x8f\x39\x64\x2a\xfe\xba\x10\x53\x25\x05\xea\x00\x73\x66\xcd\xea\xdf\x83\x07\x8b\x63\x60\x8b\xae\xe0\x34\x10\xd0\xc8\x08\x68\xd9\x29\x4a\x48\x40\x5a\xf3\xce\x71\x12\x09\x27\xc7\x6c\x90\xd2\x57\x2d\xc4\x59\x87\xe6\x42\x5a\x59\x41\x7d\x33\x76\x14\x94\xc0\x78\xa0\x67\x0b\x30\xdd\xd7\x8a\xcd\xbd\xd5\xc5\xee\x70\xc4\x4c\xfd\x6e\x21\xe6\x9c\x4f\xe6\xde\xbc\xe3\x9f\xe7\xbf\xd7\x48\x6b\x3a\x03\xcd\x1a\x68\x5e\x96\x12\x0a\x5a\xae\x64\x08\x83\x62\x3a\x4c\xa9\xb8\x2e\xde\xe8\xc9\xcb\x3f\xbf\xd1\xaf\x47\x35\xf3\x53\x39\x27\x44\x48\x86\xad\x05\x8c\x6f\xbe\x20\xee\x1f\x48\xdd\xc1\xe5\xe5\x9c\xa1\x73\xcc\xb3\x06\xaa\x4f\x3b\x08\x86\xe0\x3a\x40\xdc\xd5\x0b\x5e\xd6\x3b\x44\xac\x27\xf6\x7a\x0e\xea\xae\x75\xb6\xd7\x1e\x5c\x8e\x47\xe7\x94\xcd\xd6\xaa\xaa\x6b\xc8\x64\xdf\x93\xf0\x13\xad\x5d\x89\xc1\x80\x77\x64\x4c\xf7\x23\x69\x7e\x69\x0b\x6d\x1d\x5e\xb8\x0e\x15\x2e\xa3\x59\x80\x1e\x25\x36\xfb\xc9\x51\x41\x6c\xde\xa7\x67\x11\xa6\x8b\x3c\x71\x13\x6c\xbd\x35\x13\x6d\x11\xf3\xd9\xf4\x96\x27\xe9\x18\x4c\xa9\x93\x64\x8e\x54\xf6\x23\xdd\x75\x00\x7c\x22\x91\x40\xb0\x50\x91\x10\xd9\xd8\x94\x9b\x1e\x38\x1c\xa2\x47\x72\x4a\xac\xe5\xb1\xd7\xb4\x20\x0d\xb8\xde\xf6\xcd\x87\xaf\x3c\x76\x9a\x14\xe1\x1e\x4b\xea\x9a\xaf\x52\xa0\x8d\x26\x28\x47\x88\xf0\xde\x8b\x99\x77\x08\x51\x44\x02\x1c\x68\xdc\xea\x19\x64\x4d\xf5\xcc\xf3\x9e\xee\x37\xec\xbc\xde\x92\x98\x49\x84\x4f\x66\x22\x48\x55\x64\xa5\x10\x9f\x41\xcc\x10\xa5\x6d\x4d\x33\x6e\xe8\x00\xf5\x72\x7e\xe8\x8f\x3f\x03\x7e\x7d\xe1\xfc\xc9\x3c\xf7\x50\xc2\xe2\xdb\xf6\x6b\x61\xe3\x0b\x90\x6e\x07\x82\x2f\xed\x85\xa1\xdc\x78\xa5\x98\x5c\x06\x0a\x0b\x8e\x18\x12\x0b\xe5\xd4\x9a\xe9\x7d\xa3\xab\x6f\x37\x5c\xe2\x3a\xe4\x68\x81\xda\x29\x4e\x9d\xd6\x00\x66\x9b\x40\xa3\x7b\x98\x2e\x65\xd7\x06\x36\x07\xab\xbc\x70\x15\xb0\x1d\x31\xa8\x54\xce\x4e\xfb\x3e\x7d\xc4\xe0\xdb\xf1\x02\x0d\x2e\x62\xd7\x94\xa1\x99\x9c\xa3\x99\x1f\x6d\x3c\x1e\xe5\xbe\x66\x09\x96\xb9\xfe\xa1\x8e\x30\x29\x1c\x8b\xab\xea\xd7\x01\xc4\x34\x65\x10\x8c\x4e\xa7\xd2\x32\x0d\xe5\xe4\xba\x0f\x9d\x4e\x1f\xc3\xa7\xb9\x2f\x20\x63\xb5\xa1\x9f\xfd\xbc\x83\xcb\x83\x59\x1f\xba\x3a\x44\x39\xf4\xf9\x69\x1b\xbb\xaf\x67\xf8\xf2\x3d\x28\x56\x0a\xfe\x54\xf3\x2c\x65\x22\x21\x6f\x28\xf3\xc3\xa3\xf7\x8b\xaa\x9a\x81\xc0\x93\x12\x57\x84\x52\x44\x57\xde\xf4\x83\x01\x2f\x57\x59\xfc\x28\x31\x9e\xe3\xbc\x68\x76\x20\xd9\x4c\xf4\x06\xd3\x61\xe8\xc4\x9b\xeb\xea\xaf\x5c\x05\x5b\xfd\x24\x37\x25\xcf\x4f\x16\x8f\x21\xe2\xe9\xf4\x71\x91\x26\xe9\xfa\x5e\x80\xde\x55\x1e\x71\xd6\xe4\xf7\x17\x7b\xc2\xda\xcf\x24\xbb\xe0\xe7\x4c\xf0\xfd\x41\xa9\xd9\x3d\x3d\x2c\xd4\x90\xd9\x0c\x22\x32\x47\x07\xc0\xd5\x19\x97\x78\x99\x5c\xf5\xcf\x72\xa9\xfd\xd2\xdb\x73\xc8\x40\x14\x61\xcf\xd0\xc0\xeb\x3a\x00\x90\x02\x94\x35\x1d\x4a\x96\x14\xde\xa8\xfc\x77\x5e\xe2\x38\x3e\xf1\x42\xe6\xd0\xd5\x43\x36\x3a\xc0\xe5\xa2\x4e\x70\x8f\x04\xcb\xb4\xac\x49\xb3\xd0\x16\xe5\x2d\x2b\x4d\xf6\x7a\xd8\x78\x1c\x74\x2e\xca\xa9\x52\x89\xc6\x45\x79\xd2\xe5\x59\x26\x54\x5a\x72\x80\x99\xcb\x3e\x90\xc1\x28\x3e\x00\xed\xc8\xaf\xa8\xe6\x93\x23\xcf\xac\xd2\xe2\x39\x54\x4f\x10\x45\xe2\xa9\x60\x7e\xf9\xca\x64\xb4\xe0\x75\x58\x7b\xf8\xf3\xc8\x52\xef\x2c\xf4\x71\x43\xed\xeb\x1b\x3f\xe5\xe7\x4e\xd6\x34\xb0\xb9\x7f\xe4\x0a\x85\x0e\xd0\x19\xc1\xd2\xf2\x5d\x06\x21\x2c\xf2\x49\xcd\x28\x35\x01\x7e\xa5\xdc\x7d\xb7\x00\x21\xb1\x03\x83\xcd\x0a\x0b\x51\xe8\x64\x46\x5d\x73\xf3\x7a\x99\x5d\xb5\xb4\xa2\x39\xb4\x91\x31\xdb\x1c\xe0\xf3\xdb\xe0\xf2\x11\x8e\xd8\x3c\x54\x96\x2f\x5b\xf3\x5d\xaf\xaa\x1e\x6d\xd1\x53\xc5\xf8\x79\x93\xee\x71\x56\x26\x31\x3e\x94\x88\xc7\x75\x2c\x20\x3d\xcc\xa8\xd1\x01\x33\x73\xce\x83\x01\x2c\xad\x7f\x8e\x89\x1e\xd5\xa6\x7c\x11\x23\x58\xa1\x86\x07\xd4\xb5\xb4\x2c\xaa\xed\xa4\xd5\x8f\x58\x8d\x93\x39\xf1\xfd\x36\xd6\x1f\xbc\x0f\x48\x71\x07\x33\x6d\x8f\x72\x3c\x72\xe9\xb0\xb2\x35\xf4\x14\x24\x7e\xb9\xf9\xce\x2a\x6e\x83\x7a\xb2\xbb\xfb\xd7\x47\xb8\xdc\x54\xce\xea\x64\xc7\xa6\x95\xb5\x62\xdd\x50\x50\xb4\x21\xfc\x3f\x33\xd0\x45\xa7\xf3\xc5\x30\x55\xf8\x1c\xd3\x42\x6e\x8e\xb3\xca\xcb\x31\x4c\x2c\x0d\x79\xc3\x6b\xe4\x22\x20\x59\x0b\x66\xda\xba\x0d\xe7\x4f\x80\x8a\x5c\xd9\x0e\x1b\x78\x6e\x96\x70\x98\xdd\xe4\x34\xfe\x59\x58\x58\x62\xf4\xd9\x55\x58\x7b\x0a\xae\x02\x3d\xd7\xc1\x75\xcb\xa9\x73\xb5\x02\x99\x06\x7a\xe0\x81\x83\x91\x2c\xad\xff\xb4\xcd\xaf\x87\xc3\x54\xa7\xc0\x26\x5d\x79\xf4\xe4\x5e\x74\x36\x0f\xab\x8f\x31\x0b\xfb\x12\x98\x89\xf3\x8d\x8d\xc9\xab\x32\x42\x44\xa7\xc6\xc7\x98\x63\x4a\x98\x42\xef\xd5\x08\x1b\x75\x00\x87\xab\x11\x75\xca\x54\x45\x5a\xd8\xbd\xcd\x88\xd2\xbf\x4c\xe7\x16\xe0\x19\x07\x05\x85\xd5\xdd\xed\x16\xdd\x52\x41\x60\x35\x5c\x6a\x56\x55\xd5\x18\x80\xd1\x01\x66\xa0\xc4\x59\xe7\xc3\x2d\xbf\x31\x89\xa7\x37\x0a\xa5\x40\x77\x6e\x6d\x2a\x78\xb3\x1c\xa6\x68\x0f\x7a\xc8\x29\xa0\x3c\x59\x57\xfa\x5a\xd0\x14\xa7\x4e\x5a\x21\xc5\xa6\xcc\x1a\x3d\x81\x88\xfa\x95\x95\x71\x17\x01\x5b\xbb\xf3\xc5\xdc\xde\xfb\x3e\x88\x20\xf9\x3d\xb4\x71\x29\x3c\x10\xa4\xb1\xe9\xf8\x03\x93\xc0\xe6\xac\xbb\x52\x16\xd2\x0d\xfb\x7a\xed\x2c\x84\xd7\x61\xcf\x27\xf7\xe3\x6a\xbb\xdb\xda\x21\x0d\x90\xde\x5e\x39\x59\x5c\x27\xd5\xa7\x11\x10\x18\x0c\x06\xbb\x62\x64\x60\x0f\xf9\xca\xc8\x76\xb3\x99\x7c\xa2\x34\x7d\x8e\x96\xc4\xdf\x8c\xca\xcd\x00\x45\x26\xf9\x95\x87\xcc\x3a\x7f\x16\x59\x6c\x7c\x58\xd8\xe6\x96\xca\x3c\xe9\xe9\x99\xaf\xd8\xc0\xe6\xbc\x42\x24\xb5\xce\xf6\x26\x63\x09\xf4\x48\xd2\xe6\xde\x6c\x62\x8c\xfb\xc2\xf9\x3a\xd9\x2c\xf2\xd4\xf6\x26\x20\x23\x07\xa3\xc4\x56\x6e\xbb\x81\xd1\x27\xcb\x87\x46\x47\x26\x8c\x8c\x5b\x93\x53\x72\x4a\xa9\x70\x8a\xff\xad\xc0\xbe\x82\x06\x83\x27\xd8\x6e\x36\x51\xa8\xa6\x0c\x72\x56\xbd\x5a\xe6\x11\xdb\xdf\x6b\x67\x8a\xba\x5c\xe5\xa1\x27\x12\xda\x93\xd3\xf0\x97\x83\x0e\xbd\xed\xd8\x11\x21\x38\x69\x73\x9a\xe9\xd8\x35\x26\x7b\x99\x49\xf8\x05\x0f\xb6\x63\xcf\x85\xd4\xf5\x8d\x63\x26\xa8\xa6\x98\xa9\x99\xe3\x38\xf7\x1f\x13\xf2\x74\x80\x8e\xd0\xa1\xb9\x39\x61\x70\xc8\xad\xf0\x70\xa9\x12\x4b\x1a\x6e\x9a\x08\xa1\x9e\x8f\xc5\x3a\x61\xfd\x8d\xad\x1b\xe0\xc8\xe3\xa4\xa3\x38\xd2\x6e\x74\xe2\x4d\x0e\x4a\x80\x52\x9e\x7e\xe9\x37\x0e\xfd\xe6\x37\xe8\x3a\x00\xae\x21\xff\xc8\x57\xf4\xff\x82\x66\x0e\x7b\x27\x86\x5c\x5a\x49\x59\x0f\x69\x06\xf3\x5d\x08\xd2\x10\x0d\x13\x6c\x91\xff\xb7\x78\x19\x6d\x66\x63\x90\x72\xf5\xc1\x10\xb5\xd1\xcb\x59\x06\xea\x63\xd4\xd1\x95\x52\x0f\x58\x58\x7a\x90\xe3\xb0\xc9\xb1\x7e\xc9\x45\xb1\x51\xd8\xf1\x4e\x1e\xc2\x59\x38\x06\x77\xc7\x29\xd6\xd1\x5f\x46\xcc\x4e\x19\x3d\xb1\x2e\xdf\xd7\x19\x71\xe9\x42\x15\x51\xea\x2a\xa0\x75\xc1\x85\x9d\x9f\xbb\xbc\x02\x6b\xc8\x6b\xb0\x72\xb1\x1d\x5a\x5e\x16\x19\xe5\xa1\xe8\x91\x32\xc4\x40\x2e\x19\x67\x73\x54\x82\xab\xe7\x2f\x1f\x0b\x7a\x95\x5a\xfc\x92\x63\xdc\xf1\x24\x95\x43\xf0\xcb\x16\xc3\x4e\x9e\x02\x6c\xab\x75\xc0\x3c\x6b\x53\x8f\xaf\x19\x39\xb2\x3c\x7d\x7d\x3d\xe1\x4f\x0c\xa1\x65\x28\x2d\xfc\x2e\x71\xff\xdd\xb4\xf9\x3f\x31\x8b\xc0\xe2\x98\x0e\x90\x97\xa7\xa7\x2e\x3c\x9e\x84\xa1\x2e\x00\xe1\x49\xa7\xb8\x53\x4d\x31\xec\xba\x20\x37\x06\x35\xfb\x4a\xc7\xa7\xa7\x0b\x9c\x50\xc2\xf7\x21\x81\x6b\xae\x97\xec\xf5\x04\x00\x24\x8f\x2b\xa7\xb4\xbd\xa5\x86\x17\x11\x20\x0a\xa2\xd3\x42\x5b\x09\x27\x13\x17\xa0\x29\xef\xa3\x68\x2b\x3f\xfd\xf3\xa5\x71\x10\xb5\x72\xcc\xf3\xd8\x90\x33\x9b\x9b\x36\x36\x2d\x93\x35\xeb\x86\xe0\x72\x66\x55\xd8\x2e\x6e\xb2\xd6\x78\x7a\x4b\x97\x77\xf5\x94\x5c\xd4\x53\xcb\xa1\x57\xa8\x85\x8d\xce\x29\xe3\xa2\x67\xc7\x9a\x9b\xfb\x50\xeb\x37\xd8\x35\xd1\x0d\x17\x7a\x00\x4e\x1e\x18\x31\xf3\x61\x57\xcc\x58\x68\xdb\x97\xca\x56\x64\xb3\x20\x5e\x80\xde\x13\xd1\x35\xcb\xea\xac\xf3\xcd\xb7\xf3\x28\xc9\x90\xae\x0a\x1b\x0b\x8c\xcb\x26\x84\x02\xff\xde\x61\xeb\x77\x10\xfe\x1f\x6f\xe2\x25\x99\x23\x8e\xf7\xbf\xd7\xa7\x15\xe2\x2d\x3e\x2c\x83\x85\x5c\x42\xf8\x2c\x29\x34\x7a\xc3\x64\x6f\x64\x3c\xf3\xfd\xe8\x65\xe4\x80\xe3\xfb\x6c\x4a\x53\x88\x5c\x05\x87\x32\xe4\xf6\xab\x94\xe0\x55\x11\x29\x4d\x43\x1a\xc0\x8a\x99\xa3\x58\xea\x98\x09\xde\xa2\x72\x8b\x4f\x2c\x6c\xf6\x1b\x2d\x89\x09\x59\xfe\xc6\x67\xd9\x1d\x50\x36\x11\x45\x80\x9b\xa1\xd0\x40\xa0\xd4\x32\xd6\xd3\xcb\x7a\xa9\xf3\xb8\xc4\xe3\xc7\xb6\x36\x0f\xf3\xa1\xc5\x9c\x62\x01\xe2\x56\xf8\x59\x62\x86\xbc\x3b\x78\x00\x41\x49\x0f\xb8\xf2\x7d\x2c\x42\xd4\xcf\xc8\xc1\xc8\x0f\xfc\xf2\x18\x90\x98\xbd\xf7\x83\x15\xc2\x27\xc4\x8c\xef\x2b\x55\x04\x51\x9a\x25\x8f\x47\xa5\xdb\x10\x67\x9d\x3f\x0b\x3e\x19\x68\x1e\x55\x25\xc4\x55\xb0\x82\x28\x71\xd2\x3d\x1b\x75\x2e\x56\x20\xcb\x0c\x83\x35\x11\x52\x9f\xdc\x8f\xeb\x0e\x0b\x8a\x92\xab\xac\x87\x5a\x40\xa2\x3b\xb6\xbe\x32\x43\xfd\x59\xf8\x07\xd4\x03\x8e\xac\x9f\x3b\x50\x3b\x53\xb7\x78\xf4\x81\x4f\xf2\xb4\x1b\x75\x2c\x3f\xf8\x54\x9b\x62\x7b\xe7\x1f\xbd\xd3\x0e\x6d\xe8\x56\x81\xb2\xdb\x4a\x8c\xd2\x10\x92\x1c\xf8\xdb\x1d\xc7\x44\x22\xbb\x75\x48\xc4\xdb\x1b\x00\x0f\x82\x31\x02\xed\x78\xe2\x0d\x43\x8c\x89\x89\x49\xda\xa6\xab\xb1\xdf\x56\x23\xf6\x6d\xe4\xb8\x44\x45\x11\x4b\xc7\x08\xee\x73\x0e\xcd\x62\x96\x6f\x00\x8b\xe8\x3e\xd7\xb7\xcb\xec\x5b\x9a\x6f\x3a\x0a\xd5\x94\x9b\xd5\x26\x97\x09\xf8\x79\xa3\x0d\x1d\x28\xd4\x86\xa1\xe5\xf0\xb7\x2f\xd8\x51\x1e\x76\x29\x69\x0f\xa1\xe0\xe8\x96\x33\xf9\xdb\x4d\x0a\xf3\x3d\x8c\x8f\x1f\x21\xfe\xb7\x0e\x14\xf3\x32\x28\x95\x41\x2c\x6d\xad\x26\x76\xb7\x72\xfb\x50\x5d\xb4\x2e\xfb\x80\x02\x85\x9d\x73\xff\xb9\x73\x09\xf0\xdd\xf0\x16\xf2\x80\x5c\xb1\xce\xea\xb5\x33\x2d\x39\x20\x17\xa5\xb5\x3c\xa0\x99\x1b\x85\x5d\xb2\x37\x9a\x08\x00\x05\x14\x0b\xe6\x9c\xe6\xdc\x59\xe4\xcd\x1b\xbe\x8d\x2b\x17\xba\xc3\x78\xfb\xa4\x8e\x64\x51\x26\x46\xee\xa1\xd2\xfe\xce\x25\xf9\x5b\x5c\x22\x06\xf3\xad\xd8\x8a\x56\xf8\x9d\xac\xb6\x4d\x6b\x6d\x60\x40\x76\xdb\x93\x17\xcb\xa9\x20\x2a\x0c\x35\xb3\x94\x92\x02\x06\x83\x07\x98\x0b\x56\xe6\xc6\xa5\x1d\x97\xff\x65\xe8\x51\x7c\xfd\x52\xea\x79\xcf\x68\x22\x9c\xb5\x0e\x70\x44\x07\x00\x1a\x09\xe7\x7d\x78\xe2\x0d\xcf\x47\x3e\x36\x61\xf3\xe4\xbb\x17\xba\xb8\xca\x3a\x6e\x2c\xbf\x40\x0c\x7c\x3e\xf2\xd1\xe1\x57\xd0\x6c\xf9\xff\x7e\xc1\xe3\xdd\x57\x83\x4d\xf9\x48\x23\x1b\xb6\x02\xc3\xa6\x60\x48\x5d\xd4\x61\x7d\xae\xe1\xef\x33\xe9\x1e\x7a\x9b\x80\x36\xb7\x2f\xdf\x27\x34\xdf\x0f\xbc\x57\xb5\xa1\x1d\x38\xca\xe9\x2e\xb8\xc7\x31\xdd\x1e\xb3\xa2\x0a\xdb\xcc\x64\x0d\x35\xf2\x39\x9b\x24\x82\xe7\x92\xb5\xc6\x23\x13\x87\x9f\x73\x6e\x83\x77\x07\x13\x1c\x1d\xf6\x8b\xcf\xff\xf7\x8e\x43\x3e\xab\xe4\xd5\x95\x7b\x0e\x53\x79\xfe\x7b\x33\xa5\x70\x6f\xb2\x34\x54\x3a\x01\x7a\xb2\xcd\x27\xc6\xc4\xee\xdb\xd2\x84\xc9\x4e\x78\x80\x1f\x8c\xae\xf6\xcc\xd3\xb3\x55\xd9\x61\xc3\x44\x25\xcf\x7f\xaf\xc9\xe6\x0f\xbe\x4b\x59\x22\xde\x29\x42\x5e\x0f\x85\xe5\x2b\xa1\x06\xf5\xfb\x9e\x8c\x0f\xbf\x3b\x49\x8d\xff\xba\xa4\xc0\xae\x70\xdb\x55\x70\xae\x3d\x6c\xe5\x98\xc7\x66\xa0\xa7\x20\x94\x52\xdf\x43\x27\x53\x30\x28\x69\x58\x58\xc2\x9d\x97\x4e\x05\x42\xa3\xba\xcc\x81\x76\x88\x58\xc2\x46\x43\x05\x42\x7f\x72\x3f\x4e\xf3\x05\x46\xd2\x95\x47\xcf\x94\xaa\x47\xb1\xa7\xd5\x3d\xe8\x42\xbf\x78\x87\xca\xd2\xa2\xc7\x80\xd9\xdc\x58\x1c\xcf\x8d\xe3\x91\x3b\x96\xea\xb9\xd4\xa1\xc2\x73\xa3\xf2\xb3\xb9\xac\xed\xb1\x6d\xcb\xb3\xa1\x08\x6e\x9b\x0b\x6d\x19\xf8\xd2\xa8\x44\x03\x07\x26\xab\xd6\x20\x81\xdd\x3e\xfe\xbb\xdc\x29\x4d\xf7\x8a\xa1\xee\x0b\x4e\xa1\x28\xed\x3c\xa3\xb9\x19\x9b\x98\x0a\xb2\xb7\xf3\xbb\x3b\x01\x3a\xf7\x66\xec\xc9\x08\xb5\xf5\x91\x43\x94\x75\xf8\x77\x6e\x7c\x87\x23\xd1\x84\x16\xda\x10\xc2\x97\xaa\x18\x89\x5b\xf6\xa3\xa1\xa4\x94\x17\xd2\x5f\x1a\xb9\x56\xfc\xf3\x8c\x94\x29\x90\x32\x82\xfd\xdb\x93\x43\x16\x56\x1e\xd6\xcf\x97\x50\xb4\x95\xa3\x11\x4d\x12\xa0\xf9\xb9\x7c\xd7\x62\xb6\x3c\x8c\xff\xff\x31\xf7\xf7\x6f\x49\xe7\x79\xff\x3f\xce\x9e\xe7\xee\x9c\xbb\x35\x57\x8c\x69\x56\x5e\x9c\x83\x9b\xad\x91\x35\x44\x96\xa9\xe0\x7b\x77\x50\xcb\x50\x27\x9d\x50\x31\x75\x92\x02\x91\xd4\xb1\x52\x54\x14\xe7\xdc\x99\x26\xd4\x84\x2d\xb3\xc0\x2b\xce\xd1\x84\x4c\x91\x35\x41\x53\x51\x66\x0a\x65\x2c\x94\x35\x14\x27\x4c\x18\x31\x71\xd4\x41\x42\x14\xbc\x42\xbf\x07\x2f\xec\x62\x76\xdf\x7b\x7c\x3f\xc7\xe7\x97\xf9\xfc\x03\xf3\x3c\x9a\xe3\xe0\xe6\xed\xfe\x78\xdc\x9f\xcf\xd7\x1e\xc1\xa5\xb9\xd6\xa6\x6e\xf2\xba\x8c\x9f\x67\xb4\xa0\x1e\x15\x74\xeb\xf0\x64\xb8\x49\x5d\xf0\x78\x8b\x32\x49\x71\x74\xfc\xe5\x55\xda\x1a\x73\xd3\xdf\x23\x35\xa7\xba\x78\x30\x6b\x33\x2f\x05\xbf\xdb\xa7\x69\xfa\x3b\x97\xbb\x36\x3d\xc1\x49\x5d\x0f\x35\xa2\x30\xc8\xc1\x9d\x25\x6b\x03\x55\x60\xe7\xcb\xe5\xe2\x4f\x5e\xe1\x44\x49\xca\xb1\x82\x11\xbc\xf8\x9c\x99\xc2\x91\xac\xe8\xd6\x7c\xf1\x51\xd4\xa3\xa4\x5f\xfe\xe6\xed\x8a\x12\xbe\x58\x3e\x5e\xd7\x96\x57\xad\xf0\x31\xc6\x8c\x64\x57\x14\x0c\xfa\x94\x28\x68\x9b\x92\xb2\xef\xa4\x22\x14\x85\x69\xfe\xb7\x4c\xd9\x00\x85\x07\x60\x5b\x1c\xac\x32\xc3\xf9\x55\xea\xc9\x83\xb7\x58\x2c\x56\x45\xb8\x8e\x22\x93\x8b\xd6\x5e\xf6\xa3\x23\xb6\x17\xdf\xba\x75\x1d\x4a\xef\x6c\x5a\xef\xa4\x32\x19\x48\xa7\xdb\xe9\xeb\x3d\xf4\x7d\xdb\x26\x26\x9a\xf6\xa2\x52\xca\x8a\xe6\x3c\xa2\x90\x56\xeb\xd4\xe3\x1a\xa1\x04\xb5\x6f\x64\xe5\xca\x9d\xe8\x62\xf7\xcb\xf4\x57\x82\xc2\xcf\xcf\xb6\xf1\x24\x13\xf5\x08\xab\x14\xea\x52\x29\x61\x86\x34\xb3\x60\x99\xb5\x01\x7a\xb1\xd9\xe7\x72\x5b\xa3\x22\x13\x82\x6a\xbc\x8e\x0b\xc9\xae\x51\x6e\x83\x1b\xa0\x69\xc0\x51\xe2\x6c\x8e\x12\xf5\x86\xa3\x60\xb5\xb0\xf9\x16\xee\x91\xaa\x70\x57\x0f\x0e\x89\x1a\x54\x93\x0b\x5b\x2e\xca\x4b\x58\xd1\x83\x8d\x6e\x33\x09\xb6\x2c\x18\x19\x7b\x30\xd1\x5b\x7f\xdd\x5c\x91\x60\xea\x44\x2f\xb3\xdb\xf4\x6e\xb2\xbf\x99\x7e\xe3\x54\xd5\x7c\x6d\xd4\xc9\xa5\xb2\xf2\x5a\xb1\xab\x27\x19\x36\x9c\x9e\x22\x09\xf9\x74\xce\x43\x9c\x1d\x86\xd8\x00\xfd\xc0\x1f\xff\xdc\x06\x96\xa8\x38\xe6\x98\x5e\x87\xc7\x93\x55\x79\xe6\x51\x60\xcf\x2b\x87\x57\x85\xbb\x42\x92\x48\x79\x66\x4d\x70\xa0\x1f\x6d\x7d\x75\x0d\x15\x31\x5f\x07\x4c\xad\x3d\x6e\x79\x9b\x12\x9e\x1e\xc4\xa6\x52\x06\xf4\x70\x43\x20\xd8\x0d\x02\xb1\x01\x0c\xf4\x0b\xae\xfc\xda\x4d\x91\xcd\x66\xe8\xb6\xea\x8a\xe9\xce\xe9\xe7\x17\x88\x3e\xcc\x35\xe6\xd4\xe8\x62\x26\x05\x8d\x26\x85\xdf\x25\xea\x0d\x1f\xf0\x78\xc2\x3f\x93\x70\xd2\x13\x67\xfb\xb2\xeb\xbc\x78\x32\xa9\x7c\x03\xc4\xb9\x1b\xa1\xcb\xec\x05\xaf\xd7\xcd\xc4\x1e\x05\xd6\xb4\x86\x9a\x4e\x83\xff\x10\x7a\x34\x9e\xe3\x03\xe6\x0e\x0c\x0d\xaf\x05\x43\xda\x9b\x9e\x96\xcd\x1e\xe7\x5c\x18\xe2\xd8\x62\xca\xc9\x95\xc4\xba\x74\x6e\xd9\x23\xbe\x62\xf9\xef\xe3\x6d\x44\x91\xb4\xf8\x79\xe3\x06\x68\x72\x03\xd4\x79\xb7\x9c\x42\x91\x4c\xc6\xc5\xa5\xa7\x40\xb1\x42\x7a\x83\x0c\x85\x22\xb3\x53\xa4\x82\x90\xa7\x8d\x7f\x11\x77\x4a\x32\xbe\xe2\xd6\xe7\x56\xb5\x00\x83\xd0\x24\xc2\x45\x71\xbf\x7e\x34\x31\x3b\x23\x62\x85\x36\x5c\x25\x2c\x2c\xfc\x4a\x59\x9a\xa0\x3a\x15\x0d\x7a\xcb\xf0\xc4\x7a\xf0\x62\x7f\x8e\x4b\x51\x7f\x86\x64\xae\xd9\x40\xdc\x00\xa5\x86\x45\xd7\x1d\xd1\x41\x72\x30\x4a\xd5\xdd\xea\xab\x99\xd6\x43\x8d\x05\x34\x86\x0a\x09\x71\xcd\x70\xbe\x0c\x9f\xc9\x50\x7e\xa0\xae\x9b\xc9\x7a\x0c\xbf\xf2\x3b\x71\x9d\x03\x02\xb3\xcc\xd4\x8f\x5a\x6e\x21\x39\x9c\x6c\xba\xe7\xee\x94\x27\x24\x6f\xf7\xaf\xa1\x5f\xfc\x67\xe6\x74\x35\xeb\xbc\xe9\xf4\xf2\xac\x8f\x34\x76\x05\xb7\x18\xd1\xca\xf1\x47\x13\x5f\xae\x7f\xa3\x17\x70\x4d\xb5\xd3\xd2\x18\x6b\x0d\xd4\xb5\x56\x9a\xfe\xee\x9d\xab\xc1\x8e\xf2\x7a\x3d\xdd\x2e\x2c\x44\xbb\xb0\x74\xd9\x84\x85\xc9\x50\xc7\xa4\xa4\x10\x46\x5d\x6d\xc6\x72\x34\x99\xd9\x04\x7a\x87\xcd\xcd\xcd\x6c\x6f\x9d\xed\x73\x48\xf0\x26\xcc\xb0\x1d\xca\x93\x28\x13\x7c\x11\x2a\x82\xb5\xea\x8d\x4d\x07\xc6\xb7\xe2\xf0\x85\xd0\x11\xb7\xb7\xef\x13\xc1\x58\xcc\x50\xb9\xb2\xab\x61\x67\x63\x6f\x4d\x60\x3a\xf9\x1f\x83\x57\x33\xcc\xb8\x4a\xd9\x63\xee\x9d\x15\x86\x6e\x62\x9c\x55\x8c\x59\xe9\xd2\x52\x52\xfc\x6a\x86\x19\xd9\xd5\xb7\xd5\xcb\x13\xd5\xbb\x1d\xbc\xd6\x57\x6d\x3a\x21\xcf\xd9\x00\xed\x83\xc6\x16\xa3\xa7\xbe\x7a\x79\x79\xb8\x58\xdd\xe2\xec\x95\x7e\x57\x73\x17\xb7\x9a\x84\x93\x3c\x22\xed\xe2\xbe\xbf\x77\x13\x30\xbe\xb3\x60\x47\xbe\x2a\x20\x5d\x17\x0f\x76\x66\x74\xf4\x27\xde\x59\xb9\x9a\xa1\xfd\xfc\x47\x61\xea\xcd\xc5\xf2\xe7\xec\x41\x07\xd5\xf0\x48\xf5\x9d\x2a\xf2\x39\x0a\x61\xd4\x74\x03\xcd\xf1\xc4\x13\xb2\xaa\x54\x14\xd9\x9a\x6c\x79\x15\x48\x58\x07\x97\x4e\x43\x4d\x17\x52\x48\x3e\x0f\x4f\xa4\x2d\x23\xb8\xf1\x1d\xb8\x78\x6d\xaa\x40\x79\x24\xfc\xbf\x6d\xd6\xf2\x96\x9f\xb6\xc7\xc6\x30\x14\x65\xa0\x4b\x8f\x34\x59\xfe\x29\x09\x3d\x4e\x99\x31\xe9\xe9\x7b\x84\x0d\xb0\xa9\x86\x87\xd0\x51\xa4\xa6\xb2\x86\x30\x7e\x00\x7e\xb8\xba\x21\x5c\x8f\xd0\xe5\xcd\x11\xe4\x63\xe5\x9b\xd3\x8e\xfb\x95\xa7\x45\x8d\x65\x4d\x7e\x73\x9d\x2b\x7a\x23\x78\x4a\x9a\x59\xbf\xcb\x68\x71\x5c\xf2\x5d\xba\xcf\xdc\x00\x6d\x75\xcc\xf4\xa3\x37\xe4\xc9\xab\xd5\x2b\x97\x30\x30\xe7\xe5\xd8\x2f\x67\xdc\xbe\x49\xf0\x2e\x78\xcf\xbe\xbb\xc5\x01\xbb\xdb\xc5\x55\xf3\xe5\x03\xe9\x75\x1f\x94\x55\x60\x4d\x87\xbb\x38\x16\xc1\x9c\x92\x0d\xdf\xf7\xb7\x1f\x7f\x97\x9a\xda\x7c\xcd\x20\x9d\x98\x7c\x8e\xf5\x70\xf5\x1c\xbc\x3f\xc3\x34\x33\x36\x40\x27\xa2\x34\xd6\xa2\x81\x03\xdb\xb7\xef\x2c\xef\xd9\x39\xc3\x68\xd0\x5c\x34\x5b\x4a\xfc\xa0\xce\x57\xf3\x1a\x67\x07\xa6\xa2\x2f\x1f\x2b\xef\x4f\xff\x5e\x80\x56\xb8\x33\x6f\x67\x17\x6b\x12\x3c\xa8\x1e\x63\x2f\x9d\xe2\xc4\x64\xd7\xbd\x04\x05\x49\xd3\xc5\x43\x12\x96\xf4\x77\xd8\x6f\xff\xcd\x04\x44\xad\xac\x9e\x2b\x7b\xf6\xec\x19\xc7\xdd\x96\x67\xcf\xb4\x09\x93\x90\xf5\xcf\x42\xa8\x2f\x84\x88\x0d\x90\xea\xd4\x1a\xd2\x6d\xbf\xa7\xef\xd5\x7c\x1d\x6e\x56\x60\x61\xb1\xaa\x96\x4d\xaa\x02\x72\x10\x0e\xfc\x55\x3b\x20\x30\x58\xcf\x36\x79\xea\x02\xce\xa4\xe0\x6f\x17\x4b\x50\x1b\xa0\xbd\x09\x63\x23\x93\x0e\x5e\x2e\xed\x07\x2a\x76\xdb\xf4\xc5\x6c\x80\x07\xea\x77\xea\xc1\x6f\x6f\x02\x6d\xba\xd8\xb5\xe5\x6c\x93\x5f\xb0\x3e\x67\x28\x44\xef\x00\x5f\x43\x79\x56\xaf\xe5\xf7\xce\x06\xbe\xe5\xbb\x5e\x95\x33\x46\xf8\x63\xc2\xc1\x84\x31\x64\x52\x2a\xb6\xc7\x23\x5f\x8b\xcb\x10\xea\x4a\xc1\x95\xdc\x77\xb6\xd0\x5e\xd3\xe1\x57\xaf\xa7\xfc\x62\x44\xe3\x52\x1e\x86\x0f\xf4\x3c\x6a\xb6\xc6\x27\x28\x0b\x4b\xfc\x04\x0b\x66\x4b\xe1\xa3\xd6\x56\xf5\x90\x53\xab\x5f\xe4\xd3\x83\x67\x8b\x22\xcb\x9f\xc9\xf2\xf4\x77\x4b\x97\xab\x32\xbe\x2a\xa8\xcf\xbd\x19\x9e\xaa\xf5\xf1\x79\x18\xbf\xa0\xc8\x65\xa9\x6b\xf0\x2a\x3d\xa2\xb6\x65\x2a\x25\x65\xdd\x03\x7c\x7a\x24\x7d\xf9\x45\x17\xb4\x65\x35\x25\xea\x89\xfd\xad\xb5\xb8\xe9\xc9\x0b\x0d\x88\xc0\x8a\x77\x77\x65\xcd\x32\x8d\x79\x65\xd5\x1b\xa0\x2b\xfb\x79\x08\x44\x97\xf6\x94\xb0\xd5\x5c\x23\xac\x69\x1e\xce\xa1\xd1\x68\x85\x76\x38\xdd\x15\xb7\x4b\x32\xbe\x62\xd7\xe7\x56\xb5\xdb\x67\x34\xac\xb1\x9a\x82\x23\x6d\xa9\x54\x39\x30\xa4\x21\x96\xf7\x9f\x4b\x89\x24\x6a\x3e\x52\x00\x43\x9a\x34\x2b\xfc\xc9\x54\xc0\x48\x20\xa4\xe5\xf4\x49\xb5\xd0\x1a\x15\x38\xdd\x54\x56\x7f\xbc\x3b\x69\x4f\x59\x6a\xea\x5d\x7e\x4d\x99\x9d\x4e\xe9\xee\xef\xff\x4c\x93\x6e\x21\x0c\x4d\x34\xee\xee\x8a\x18\xd2\xdf\x24\xbc\x05\x6c\x84\xd3\xab\xd2\x3a\x18\xf3\xba\xa1\xa1\x31\x49\xc6\xe5\x86\xb0\x7b\x83\x4b\xb6\x24\x95\xc0\x9a\xbe\xf9\x3c\xec\x22\x81\x1f\xbe\x57\xae\x70\xcb\xe5\xea\xf9\x9c\xa4\x33\x6f\xc0\x89\x9f\xce\x75\xf5\x48\x4c\xa6\xe9\xdd\xfc\xb3\xaf\x9c\xc2\x81\x19\x65\xf0\x99\x0c\x97\xdd\xd6\x88\x21\xfd\x75\xc5\x97\x0c\x9b\x54\x15\xab\x10\x8b\xf7\x87\x0a\x6e\xee\x2c\x67\x99\xa5\x12\x1e\xb6\x9f\xf0\xf3\x20\xec\x34\x68\x57\x60\xf8\xc2\xec\xc5\xd4\x91\xeb\x9e\x22\xec\x00\x0f\xb9\xe7\x90\xc4\x22\x4d\xcc\xa6\xb1\xe1\x66\x6c\x99\xc6\x97\xb1\x45\x35\x7a\xe6\x8c\x23\x67\x2f\x46\xd0\x88\xb1\xe5\xa7\x44\x30\xd8\xcd\x63\x29\x53\x09\x03\xbb\xfb\x46\x23\xb9\xe0\x87\x6f\x55\xb7\x9c\x0f\x78\xfc\xf9\x7d\x8b\x46\x8b\x19\xbc\x9e\x54\xb0\xbb\x86\x7a\x67\x79\xa6\x50\x6f\x8e\x1a\xa6\x55\xe2\xea\xbc\xc3\x1a\xab\x4d\x6a\xc2\x45\xc4\x94\x01\xae\x26\xac\x3d\x22\x39\x54\x2d\xeb\xff\xfc\xbf\x40\x03\xf5\x56\x72\x77\xa8\x2c\x63\xda\x46\xa8\xa4\x02\x6f\x7c\x00\xf6\x8c\x4f\xd3\xf4\xb7\x0d\x75\x5e\xf4\x66\x86\xcb\xa5\x89\x46\x14\x90\xa9\x46\x88\xb6\x50\xb5\xf5\xe3\xd8\x19\x64\xad\x4b\x76\x65\x00\x05\xf3\x34\x3d\x96\x37\xa5\xba\xa6\x1d\x5e\x7e\x43\x82\x6c\xc1\x47\x69\x20\x1a\xe0\x06\x38\x62\x4a\xcc\xde\xf7\x0f\xfb\x2f\xfc\xd6\x83\xf1\xc4\x8a\xd2\x2e\xfc\x7d\x62\xaa\x7a\x5d\xc1\xd7\x97\x90\xba\x6a\x30\xb7\xd3\x67\xe9\x9b\xf7\xc4\x9a\x83\xeb\x63\x68\x34\x4b\x15\x65\x54\x17\x0f\x73\x66\x74\x0c\xbe\x43\xde\x64\xa1\x20\xce\xa7\x01\x96\x63\x96\x3a\xa8\x86\xd9\x54\x9e\x7d\x1a\x64\xc3\x14\x1c\x4e\x22\x03\xa3\x65\xea\x7a\xde\x4b\x1b\x8a\xde\x5e\x7c\xab\xec\xba\x50\x1a\x3f\x52\x70\x7a\x0d\x95\x63\x1c\x4b\x09\xde\x00\xfd\x1c\x6d\x5c\x5a\xba\x7f\x7f\xc2\xe9\x4f\x43\x1b\xa0\xcc\x6e\x82\x26\x61\x65\x94\xd3\x4c\x7b\x20\x7b\xef\x93\xc5\x2d\x46\xd2\x52\xb6\xae\xf5\xb9\xca\x93\x94\xd8\xef\x3c\xa1\xb2\x8c\x94\x48\x69\xe7\x28\xd6\x3f\xd9\xf2\x15\x09\xa8\xa3\x2d\xf3\x91\xf8\xbc\x0d\x10\x18\xb9\xe3\x1b\xfb\x7c\x59\xf3\x5f\x40\xc6\xba\xad\x3a\xf2\x4f\x46\x34\x31\x11\xe9\xb1\xdd\x12\x32\x62\x61\xb7\x75\xd6\x34\xd3\x1e\x0c\x54\xaa\x33\x7d\x3f\x2d\x6c\x54\xae\x15\xa3\x16\x70\xa6\x37\x87\x36\xd4\x93\x07\xaf\xbd\x9c\xda\x58\xaa\x54\x0a\x1d\x41\x6e\x74\x18\xbf\xee\x0a\x38\x97\xab\xf1\x4c\x5f\x5f\x9f\x73\x73\x24\x41\x94\x19\xa7\x6a\x76\x9d\xa2\xae\x3b\x71\x75\x05\xc4\x07\x9d\x57\x1e\x4a\x25\x52\xec\x84\x01\xee\x1e\xcf\x95\xc9\xe6\x28\x11\x55\xc1\x63\x8e\x4d\x1e\x7f\x38\x2a\x9a\xf9\xbc\xde\x21\x96\x67\x52\x79\x12\x19\xf2\x08\x41\xe2\x9e\x1e\xf2\x5a\x3d\x25\x3f\xf0\x4f\xac\xe3\x67\xfb\xf2\xda\x5a\xd1\x37\x2b\x12\xac\x7a\xf8\xda\xac\x3e\x86\xfd\x7f\xc5\xd4\x2e\xb6\xf6\xbf\xb9\x62\xf7\x8c\xe8\x07\xe3\xd1\xc5\xf4\xce\xe9\xd6\xe3\x9a\x78\x2d\x12\x9f\x09\xee\x36\xc2\x5c\xb9\x6b\x1d\xa4\xf8\x66\x46\x59\x8d\xab\x35\x64\xff\xbe\x80\xb8\x45\x95\xe7\x32\xc9\x87\x13\x98\xf3\x6c\xb6\xc0\x55\x28\x3c\x90\x36\x53\xc8\xfe\xea\x6c\x70\x2d\xfa\x6f\xcf\x5f\x21\xc4\xfd\x57\x2f\xca\xa4\xe7\xef\x2a\x2c\xf6\xd1\x57\xec\xcb\xa4\xba\x47\x04\xe5\x77\xf6\xd7\x8c\x9d\x44\x70\xe7\x1f\xe6\x3b\x17\x0e\x9c\x12\xd6\x74\xdd\x4d\x4d\x89\x72\x9d\x3f\x2b\x8a\xbc\xa1\xd4\x51\x96\x35\x8c\xf1\x7f\xdc\x5e\x27\x24\x6e\x0e\x82\x2e\x64\x97\x9f\x69\x5a\x21\x8e\x8a\x06\xda\x0e\x2b\x6b\xc8\x77\xf2\xc6\xc2\x62\x37\x40\x27\x69\x1c\x12\x43\xbc\x7e\x20\xf4\x67\xc3\xe4\x5d\x2c\xe4\x43\xc2\x4b\xc7\x2a\x7d\xd4\xb8\x40\x3d\xef\x9b\xba\xb3\x42\x46\x8d\x7b\xde\x68\x59\x3b\x9a\x49\x9c\xd6\x1b\x1c\xca\x52\x53\xbb\xee\xe8\x93\x69\x33\xa2\x9e\x24\x88\x07\x75\x98\x41\x5b\xa2\x2d\x91\xd6\xa0\x81\x2c\xc9\x1f\x6d\x50\xa8\x56\x7c\xf9\x3b\xe1\xd7\x9e\x64\xa4\x59\x93\x0e\x33\x02\x12\x17\xd2\xca\x6a\xda\x9d\x12\x45\x48\xdd\x9b\xf4\xd1\xdf\xff\xf6\x96\x49\x81\xd8\x7f\xb1\xff\xe2\xbc\x97\x4f\x8f\xfb\xcd\x16\xdd\xe8\x06\x28\x62\xeb\x93\x8a\xa9\xf7\x79\xbc\x56\xc7\xc0\x30\xe8\x14\xd7\xb5\x80\xc6\x00\xfb\xd1\xd5\x1f\x8e\x80\x69\xab\x0d\xf0\x99\x8c\x3f\x14\x44\x01\xf5\xf9\xdf\x6e\x80\x42\xc4\xa7\xba\xa6\xfa\x33\x47\xc5\xb7\x0e\x73\x38\x73\x1e\x85\x85\x61\x24\x9f\x9b\xc5\x0f\x77\x7f\xfb\x9b\x8e\x05\x39\xba\x1a\xd5\x7b\x7e\x71\x5a\x1a\xab\x77\xcb\xe5\xae\xe5\xc3\x1d\xb6\x46\x96\xe6\x48\xa0\xa4\xd4\x53\x56\xe7\x59\x3d\xfa\x12\x5d\x03\x76\xf3\x10\xa4\x04\xf8\x43\x20\x1e\xee\x7b\x09\x43\x5a\x07\x37\xee\x4c\x56\x17\xf7\xad\xad\x21\xe3\x96\xe2\x51\x75\xe6\xfd\x21\x92\xd8\xa6\x6f\x73\x1e\x30\x18\x14\x53\x1a\x9b\x1c\xf3\x4a\xb2\xae\xb2\x20\x24\x49\xa3\x35\x4a\x7b\x11\x4d\xba\xc4\x2f\xa4\x15\x9a\x02\xcf\xd5\xc7\x9b\x68\x2f\x6c\x36\xf1\x77\x5a\xd3\x5e\xcc\x8d\x46\x4c\xd9\x26\xc7\x02\x07\x9f\xc6\xd0\x68\x8c\x4a\x28\x7c\x86\x82\x13\x58\xee\xe6\x72\x23\x12\xb7\x97\x14\xcc\x0c\x4c\xec\xb6\xa8\xae\xed\xe2\xd5\xbb\x59\x4f\xa6\x92\xcd\x67\x6c\x79\x31\xef\x78\x68\x18\xc1\xfb\xdd\xb7\xd9\x5f\x56\xbc\x45\x34\xe4\x9e\x93\x12\x99\xeb\xd3\x33\xf4\x2e\x99\x85\x29\x48\xbd\x1a\xaa\xbc\xda\xbb\xdd\x87\xc9\x2c\x6c\x44\xa3\x24\xe8\xf4\x81\xae\x36\x8b\xa2\x21\xdc\x08\x6b\x0d\xf8\x88\x29\x69\x4f\xfe\x5a\xfa\x3f\xdf\xb6\xed\x1f\xa4\x28\x49\xd2\xba\xee\x06\x6a\x7d\x49\xbe\x0f\xd3\x08\xdf\xb5\xee\x00\x54\xf8\x23\x99\xb3\xce\x46\x69\xb8\x9f\x24\x88\x64\xa6\x0f\x76\x65\xb1\x14\x35\x2f\xd7\x5b\x13\x92\xf1\x09\x55\xeb\xe3\x94\xfe\x74\xe4\x50\xe1\x33\xac\x18\x71\xd2\x6f\xee\x91\x59\xde\x36\xf5\x27\x16\x1a\xdd\xcf\x49\x4d\x33\x57\x9b\x90\x64\xb8\x9a\x22\x2f\x78\x09\xbc\xb2\x07\xe3\x89\x55\x05\x0e\xe8\x43\xad\x86\x1c\x63\x6a\xd6\x4f\x25\xe4\x95\xb6\xf5\xe2\x48\xc4\x9f\xcf\x14\x3b\x05\x38\xcf\x16\x6f\xb3\x8f\x93\xfc\x4a\x50\x00\xf1\x68\xaf\x6f\xc6\xa6\x8c\x7a\x37\x34\xc8\x85\x90\x02\x1f\x7c\xc0\x22\x6a\xb6\xd3\x7f\x14\xa9\xb9\x01\xdc\xa6\x3b\xdc\x46\x89\xc8\x61\xc3\xe1\x88\x29\x91\x65\xbe\xef\xcd\xa9\x12\x44\xc8\xe4\x79\x5c\xa4\xc8\xd0\x12\xd2\x2a\x2e\x71\x0c\x8a\x39\x52\xa4\x46\xbe\x7d\xfa\xf4\x49\x86\xcd\xcd\xea\x97\xd9\x39\x8c\xfc\x54\x45\x8c\x04\x37\x89\x7f\xef\x4e\xee\xe5\x6c\xe1\x5a\xc0\xc5\xb8\x0b\x3c\x87\x43\x8d\xd6\x93\x74\xc4\xbd\xc4\x44\xe4\x3f\x1e\x59\x56\x70\x02\x74\x1d\x47\x29\xe4\x58\x04\x6a\xb3\x81\x24\xaf\x48\x23\xaf\xa1\x5a\xec\x68\x0d\xe9\x7e\x7b\xc7\x51\x27\x5a\x9d\xe7\xb0\x66\x18\xa6\x77\x33\xad\x79\x1f\x5b\xfc\x1d\x61\x7b\x31\xa3\xf8\xd8\xd5\xc4\x31\x77\x8c\x75\xea\x67\x60\xf5\x6e\x8b\x80\x8e\x40\x04\x14\x7b\x06\x22\x76\x19\xaf\xaf\x18\x1d\xf4\xf3\x03\x00\xf1\xae\xff\x7b\xe2\x35\x27\xf5\xf5\xf5\x2d\xc5\xd4\xc3\x27\xee\xaa\x87\x19\x70\x71\xc1\x23\x61\x20\x7c\xd5\x71\x6d\xbf\x1b\x12\x10\xb3\xc1\x45\x55\x9e\xcc\x62\x31\xcd\xfd\xc4\xcb\xea\xf5\x7d\x34\x90\xf3\x0a\x78\x7b\x5e\x18\x73\xa6\x4d\x0d\xcf\x47\x68\x9a\xf9\x3a\xfd\x98\x0d\xac\x8f\xaf\x2f\xa7\x9f\x67\x79\x1f\xee\x5a\x55\x11\xac\xe2\x64\xf3\xe6\xf6\x9d\x81\x8e\xd1\x97\x2f\x4a\x8f\x8d\xf1\xba\x6c\x5a\x16\xa8\xfd\xf0\x50\x2f\x07\xa9\xe5\x7f\xf9\x80\xbf\xdd\xb5\xc0\x7b\x7e\x60\x85\x0f\x36\xc1\x9b\xaa\x7a\xb5\x49\x9e\x90\x78\xc7\xa6\x1f\x1e\xfc\xe3\xfb\xe7\xf3\xcd\x2f\x9a\x83\xe3\xd0\x61\x53\xf9\xce\xb5\x26\x2c\x3e\xb3\xdb\x2a\x74\x3b\x17\x37\xda\x61\xfb\x1b\xe4\xfe\xbd\xbc\xb4\xf4\xe6\xd3\x0b\x03\x7a\xe2\x33\x14\x15\x2b\xa5\x15\x49\xdb\x92\x93\xae\xbc\xb1\x6f\xfb\xd5\xab\x40\x98\x95\x03\xe3\xda\x85\x55\x5d\x5f\xee\x13\x71\xe1\xe1\x0a\x74\x41\xaa\x28\x78\x5d\x95\xfe\x8d\x69\x8b\xaa\xb3\x9c\x71\x72\x11\x6a\x4a\xd7\x12\xbf\xee\x9c\xbe\x8d\x26\xab\xdb\x0e\x4f\x0f\x13\x1e\x56\x44\x47\x1b\x9d\x9f\x96\xeb\x57\x37\x40\xe3\xa1\xe7\x0d\x37\xeb\x61\x60\xd7\x7d\xe3\xff\xbd\x25\xd0\x3e\xa5\x3a\xb5\x52\x70\xd8\xe5\x70\x49\xa6\x2c\xbb\x3b\x54\x5e\xf0\xf0\x16\xa6\xba\x5a\x4d\xf8\xa0\x18\x0b\x55\xd1\x95\x34\x7a\x83\x0c\x03\xf1\x69\x37\xc6\x2c\xad\xa2\x7c\x22\x09\x43\x5a\xe4\x07\x54\xee\x4c\x96\x9c\xf8\xdd\x5f\x55\x0f\x1d\xfc\x05\x11\x94\xf4\x36\xa6\x95\xed\x1f\x15\x6d\x74\x89\xf2\x19\x0d\x9c\x3a\x11\x59\x7a\xfc\x71\x28\x93\x76\xf9\xab\x2f\x8e\x54\xb3\xa6\x2f\x56\x93\xd8\xd7\x62\x9b\xfe\x54\xa5\xec\x36\x6f\x80\xb8\x0c\x0b\xf6\x86\xc6\xf7\x72\x6a\xea\xdd\xaa\x11\xd7\xfc\x7a\x7a\x87\xb5\x26\x20\x24\x79\xd5\x1f\x02\x71\x64\x2d\xfa\x9d\x58\x61\xd7\x0f\xc4\x56\x3a\xef\x59\x89\xb7\xa4\x5a\xd8\xe9\x69\x73\xa9\x61\x61\xcf\x42\x9c\xff\xaf\x88\x1b\xc3\xc9\xa3\xf5\x81\x37\x01\x57\xd3\xfa\x63\x94\xaa\x86\x95\x8c\x11\x15\x73\xd6\xb5\x1b\x12\x10\x92\xac\x1f\x1f\x01\x83\x9d\x97\xa3\x91\xdc\xf7\x99\x8b\x81\x51\x15\xaa\xcf\x3f\x13\x84\x23\x8d\xa4\x90\xee\xce\x14\x1f\xcd\x63\x76\x54\x14\x19\xdc\xbb\xdb\xa7\x51\x89\x75\x82\x7e\xf1\x9f\x84\x69\x75\x55\x5a\xea\x06\xe8\x83\x55\xfe\x07\x2d\xea\xbc\x70\x62\x63\xef\x74\xe2\x1c\xad\xd0\x04\xc5\x54\x4c\x81\xc7\xe3\xb0\x50\xd5\x03\xe1\x6b\xc2\xb9\x41\x20\x81\x3f\xff\xdc\x88\x0a\x46\x9e\x62\x2d\x22\x9a\x55\x94\x61\x44\x14\x27\xb5\x77\x22\x31\x07\xc9\x97\xb4\xae\x62\x3c\x32\x85\x1e\xf1\xda\x41\xb8\xeb\xb3\x15\x9b\x11\x66\x78\xd5\x79\xb6\xdc\x78\x1e\x22\x9a\x49\x85\x2d\xc6\xa9\x09\x6a\x32\x62\xea\x42\x0f\x39\x70\x61\x6e\x2b\xf2\xad\x88\x1e\xed\x99\x6e\x8e\x4f\x8c\xd4\xdf\x00\xf7\x9d\xe0\xa4\xae\xa2\x1f\xe6\xef\xdf\x00\x71\x11\x9d\xe9\xbe\x2e\x5b\xe7\xf5\xdb\x45\x61\x9f\x47\x6a\x4e\x89\x3f\x95\x48\x15\xf1\x14\x79\xc1\xb8\x02\x3b\x57\x09\x7d\x8d\xb6\x19\x68\xa2\x20\xb8\x86\x10\xcf\x51\xd9\xb2\xa0\x53\x8a\x35\x64\x08\xf7\xdb\x70\x17\x87\xb8\xb3\x82\xb0\x74\xe4\x10\x63\x8e\x3f\x53\x8c\x9a\xed\x84\x6a\x6c\x51\x2a\x09\x8f\xc7\x2b\xd4\x0a\x35\x41\x47\x10\x59\xaa\xd7\x63\x37\xf5\x07\x7a\xf9\x81\xd8\x6f\xdd\x93\xd9\x3c\x9a\x25\x5a\x6a\xe5\xc6\xc3\x9a\x36\x40\x98\x0d\xd0\x60\x4a\xc8\x9d\x7d\xb0\x24\xe9\xd7\x65\x3d\x45\x7e\xc4\x18\x1a\x03\x0c\x6f\x1a\x3c\x3c\xc2\xba\x24\x49\x82\x38\x91\xba\x3e\x1e\xc2\x95\x38\x14\xbf\xd3\x90\xd7\xd6\xc4\x43\x0e\x15\xae\x0d\xb3\xa9\x77\xaa\xc8\x5f\x93\xbb\xb3\xe9\xf3\x85\x37\x44\x32\x95\x5d\x1a\x75\x78\x82\x3c\xc7\x30\xf9\x72\xc9\xbe\x94\x77\x62\x7e\x3e\x88\x74\xf7\x09\x04\x3f\xc2\x64\xd1\x35\xa3\x3b\x2d\x65\xf5\xe0\xfa\x6f\x9b\x1e\x7e\xcd\x84\x29\x5c\x21\x10\xaf\x98\x26\x2d\xc4\x33\xd3\x00\xd7\x9d\x1b\x8c\x91\xa0\xb2\xb1\x1e\x6f\xdb\xad\xce\xd7\xd8\x9f\xda\x27\x40\x2b\xbb\x71\x2e\x94\xb3\xad\xe2\x27\xdb\xba\xd6\x99\x7a\x07\x2f\x0a\x76\x44\xa0\x36\x57\x24\x8c\x19\x88\x26\xa2\x49\xa3\x6f\x3d\x96\x09\x84\x43\xca\x8f\xdf\x95\x22\x6a\xbc\x8e\x0b\x50\xd6\x28\xb7\x41\x03\x00\xea\xd8\x1e\xed\x84\x56\x09\x18\x9d\x98\xdd\xc2\x01\x84\x6e\x2e\xd3\xf7\x53\x7a\x75\xf1\xfc\x01\x07\x5f\xa3\x3c\x9b\xdb\x8b\x2e\x37\xee\x32\xba\xfd\x6c\x28\xe0\xf8\xa3\xe4\x0f\x4e\x78\x9e\x78\x0e\x84\x4f\x35\x99\xc8\x2e\xc8\xa7\x0e\xfe\xdc\xf7\xee\x17\x50\x52\xea\x55\xfa\x0f\xcd\x67\x9f\x6b\x5e\x34\x63\x08\x8b\xd8\x00\x8c\x47\x57\xb7\x69\x81\x77\x6c\xf1\x77\x05\x5b\xaf\x30\x0a\xe9\x1e\xee\x39\xcc\x15\x3d\x12\x4f\x59\x62\x23\xe7\x8a\x94\x50\x67\xec\xbb\x04\xbf\xca\xbd\x69\x9e\x37\xe5\xc9\xec\x07\xd2\x74\x87\xc0\xbb\x99\xfa\x78\xfd\x09\xcd\xeb\x7c\xbb\x39\x33\x5f\x1e\x79\x3d\x45\xb3\xd9\x5c\xc2\xfd\xe9\x5d\xc2\xb6\x3b\xd6\x1a\x3c\xc1\x4c\xfb\x2b\x73\x68\xbd\x27\x71\xeb\xe5\x84\xfd\x7e\xeb\x71\x67\x99\xd5\x9d\x92\x3c\xd9\x2c\x87\x20\x4a\xe9\x28\xbc\xa4\xec\xc4\xb9\x78\xbf\x4d\x8f\x80\x6e\xdf\xea\x72\x4e\x20\x51\x8f\xfe\xd4\x63\x20\xaa\xdb\x34\xad\xb5\x8f\xda\x80\x96\x63\x81\x07\x32\x3c\xfc\xc4\xb9\xc7\xfe\x02\x79\x32\xe3\x71\x8c\x11\x1c\x63\xd6\xbf\xfd\xc9\x9b\x1c\x2b\xf8\xd5\x4b\x49\xe7\xe2\x4a\x49\x19\x2f\x8c\xab\x3d\x30\x4c\x52\xd2\x1e\x21\x27\xb3\x9d\xbd\xcb\x38\x37\xb0\x28\x6c\x6e\xfd\x9c\x89\x3b\x00\x06\x3f\x71\x01\xde\x00\x2a\x6b\xe7\x7b\x94\xc5\x0e\xe5\xc7\xbc\x90\x65\x55\x48\x19\x12\x96\xfe\x90\xb5\x22\x59\x82\x1e\xc8\xc5\xa4\x3a\x9e\x54\x0d\x82\x87\x73\x8a\x24\xa8\xe0\xa9\x1e\xdc\x84\xfe\xfd\x69\x4c\x01\x9c\xff\x15\xb7\x7e\xa5\xac\x45\x36\xfe\x30\xf5\x4c\x61\x95\x2c\x87\x6d\x72\xdf\xf9\xf9\xac\x6c\x06\x15\xe4\x89\xfb\x40\x08\xbd\x87\x0d\x4a\x82\x38\x7d\x00\x52\xe7\x12\xea\x06\x88\x4d\xd4\x20\x3c\x2c\x24\x77\x64\x31\x42\x33\xfa\x60\xe8\xb6\x86\x86\x51\x8e\xaa\xb8\x99\xd2\x44\x18\x3a\x73\x44\x0f\x9e\xe8\xee\xb4\xf1\x8a\x2d\xd3\x22\x81\x19\xd5\xe3\xc3\xdf\xfd\xb5\xa0\xae\x7d\x46\x40\x59\xcd\x1a\xc9\xb9\x98\x92\x92\xa6\x85\x3b\x87\x41\x7d\x92\x45\x07\x4f\x83\x76\xf1\xd1\x0b\x7d\xcf\xd1\x78\x79\x6c\xd3\xde\x81\x59\x37\x33\xdb\xfc\xa2\xcb\x4b\x4c\xd3\xdb\x90\xc2\x9f\x96\x26\xc2\xb0\x98\x40\x49\x08\x8d\x45\x03\x80\xe5\x9e\x89\xcf\x0f\xf7\xf8\x4a\x5a\xbf\x52\xa9\x26\xbc\xb5\x35\xdd\x9d\xda\x10\x22\x6e\x4b\x25\xcf\x4d\xd9\x42\x6b\x5e\x28\xf1\x78\xe3\xe4\x37\x49\xf7\x41\x87\xab\xab\xa6\x95\x3a\xd5\xc1\xb3\x85\x7c\x27\x80\x57\x7c\x73\x74\x4f\x4d\x73\x3a\xdc\x50\x57\x1f\x6f\x82\xb9\x36\x90\x52\xaf\x36\xcc\x62\xb5\x75\xc4\xd0\x1e\x62\x4c\x91\xb2\x59\x0b\xf1\x90\xae\xf8\x43\xc1\x60\x0b\x86\x30\x64\x7e\x60\x03\x56\x7c\x5e\x9a\x8f\xa5\x54\xac\x8d\xcb\x6f\x00\xdf\x17\x7a\x88\x3f\xc5\x7a\xc3\xc6\x80\x01\x3e\xf9\x03\x4c\x69\x6c\x38\x8a\x32\x1a\x95\xc3\xb8\xab\x36\x21\x4d\xed\x06\xff\x9b\xde\x2e\x5f\x6c\x31\xac\x6f\xfb\xee\x16\xeb\x3c\xf3\x1e\x66\x50\x2a\xa5\x24\xf2\xf3\xb9\x9c\x45\x3a\x8d\x41\x8a\xc0\x6c\x80\x1e\x72\xad\x01\x69\xad\xc8\x01\xca\x45\xf8\x9a\x18\xfd\x32\x68\x36\xd5\x08\x57\x51\x29\x9e\x99\x2a\x42\xc2\xdc\xd2\xd5\xff\x33\xbc\xc2\xb8\xd3\xfb\xfb\x4a\x5f\x4f\xef\xeb\xc3\x4c\xd1\x6a\x64\x60\x47\x8b\x75\x30\xb9\x8a\x4c\xa0\x58\x61\x2a\xcf\x28\x07\x38\x7c\x98\x38\xc6\x95\xc9\x73\x58\x16\x03\x62\xaa\xd3\xbe\x51\xc7\x07\x47\x6f\xbd\x4c\xcd\x5c\xac\xe7\xec\x8d\xb3\xf1\xa9\xf3\x52\x6f\xa7\x85\x61\xc6\x36\xcf\x6c\x7d\x3b\xa6\xfe\xeb\x6b\x9b\x6b\x3c\x95\x67\x92\x3f\x6a\x34\x81\x10\xce\xbc\x1a\xec\x44\xb2\x7e\x3c\xe4\xb1\x49\x27\x7e\xd8\x94\xea\x9a\x75\x98\x9d\x2d\x08\xef\x7c\x08\xd5\x4c\xdb\xe8\x24\xf8\x27\x3a\x95\xff\x82\x4e\xb8\x53\xb7\x51\xfd\x7c\xff\x91\x74\x7d\x49\xba\x88\x17\xa3\x59\x07\x6e\x3e\xd9\xf7\x79\x49\x9d\x34\x1a\x6b\x44\x34\x2b\xeb\x80\x3a\xd3\xe8\x4e\x9f\x01\xf3\xf7\xc4\x87\x52\x9f\x36\xcf\x41\x38\x56\x9e\x2d\x75\x1b\x69\xed\x5a\xd4\x6e\xeb\x32\xe9\xe9\x83\x07\x6f\x56\x60\x95\x15\x6a\x05\x69\xb4\x4b\x8f\x4c\x45\x52\xac\xad\x2f\x67\xf0\x4b\x1f\x9d\x95\x27\x17\x45\xa6\xc6\xbf\x84\x93\xc7\x27\x98\x8c\xec\xfb\x4b\x42\x5a\x8f\x75\x70\x31\x7d\x4a\x7c\x25\x0c\x07\x66\x94\x55\x01\x31\xd0\x15\x71\xe4\x39\xd6\x93\xc8\x90\x45\x4d\xec\x5e\x54\xf9\x2f\x31\xb2\xc8\x62\x85\x6b\x0d\x61\x7c\x77\xe9\xee\xf9\x84\xa7\x07\x88\x42\x83\xbf\x90\x2b\x5b\x9d\x35\x17\xbe\xf8\x17\x3c\x89\x47\x92\x8d\x31\x74\xf3\xea\x12\xf6\xda\x4c\x41\x92\xf8\xb2\x2d\x6f\x82\x19\x22\x59\xfe\x45\x24\x9e\x62\x29\xb4\xfb\x97\xd3\xd1\xca\x67\x79\xa1\x39\x85\x8f\xd3\xfb\x22\x72\xd8\x39\x4b\x7a\xd7\xa1\xae\x4e\xfe\x23\x4f\xea\x07\xb1\x17\x9e\xcb\x73\xfa\xca\x93\x46\x58\x26\x37\x0f\x15\xa4\x59\xbf\x70\x6f\x73\x77\xc8\xd9\x97\xd5\x9f\x3b\x71\x3b\x4d\xa9\x16\x27\x17\xb2\xd8\xc6\xf7\xcb\x71\x51\x40\xda\x1c\x29\xa6\x8b\x6f\x3e\xf5\xdc\xd3\x64\x74\x87\x07\xde\x24\x88\xf2\xe1\xe0\xfd\x45\x23\xe7\x71\x57\x79\x36\x3e\xb9\xdb\xf8\xd4\xc3\xf7\xff\xa9\x07\xac\x56\xc0\x15\xdd\x56\xe1\x2e\x55\x9b\xd8\x46\xa8\xac\xbc\xe5\xa3\x47\xbd\x6f\xed\x9b\x53\x20\x6a\x57\x49\x6e\x10\xa8\x9b\x87\x00\xf6\xf1\x1b\xad\xc9\xff\x4f\x7c\x30\x61\x1b\xf5\xd6\x34\xf5\xa8\x4b\xb9\x2c\xfb\x27\x29\x4c\x2c\x5a\x4c\xf3\xc3\x7b\x1e\xea\xf2\x3a\x32\x1d\x17\x97\x52\x94\xea\xd8\xa4\x87\x61\x47\xd4\x79\x1f\x37\x41\x3c\xea\x08\x26\xbf\xa5\xd0\x95\x5b\xf5\xa3\x87\x06\x5c\xe0\xee\x5f\x6a\x2e\x1a\x02\x75\xc8\x43\xba\xa1\xa1\x31\x65\x52\x14\xb6\xff\xdc\xed\xb3\xf7\x41\x80\x24\x95\xdb\x24\xe9\xea\x49\x7f\x1e\x65\x4e\x13\x38\xbf\x84\xbd\x51\x61\xdc\xa2\x1a\x4c\x18\xf6\x6f\xf2\x9b\x15\xc2\x46\x12\x05\x14\x9b\xd1\x3c\x05\xbf\x7f\x7b\x9d\x00\x7e\x71\x73\x31\x30\xaa\xb2\xc5\xf7\xa3\x88\x85\xce\x45\x6c\x80\xbc\xb5\xcd\x75\x52\x5e\x5f\x5f\xed\x01\xbb\x5c\x1f\xdb\x28\xa0\x3a\x37\x81\xde\x19\xe1\xe4\x9e\x9d\xf7\x84\x13\x1a\x47\x1c\x33\x7d\x18\xc3\x96\xa5\xb5\x86\x48\x20\x61\x3a\xea\xa3\x17\x26\xf8\xcc\x26\x3f\xe9\x12\xcd\xd8\x4e\xd3\x6b\x5d\xaf\xd9\xa1\xa0\xf5\x45\xe7\xb2\xeb\x55\x26\xdf\x8f\xd0\xe1\x08\xf9\xa9\x5a\x4d\x7c\x27\x9a\x3c\x3f\x35\x34\x24\x07\x33\x25\x9c\x1b\xe5\x03\x58\x57\x62\xd1\x8f\x20\x55\x2e\x99\x1b\xc7\x4a\xee\xbb\xee\xe9\x2b\xac\x36\x4d\x18\x39\x81\xad\xdd\xde\x8e\xc5\x39\xec\x7c\xef\xd0\xf4\x4a\x54\x03\x29\x88\x12\xad\x14\xf6\x84\x3e\x29\x2b\x52\x36\x3b\xf2\x70\x12\x54\x88\xb5\xaa\x8c\x06\xc4\x58\x7b\x12\xe4\x74\x2c\x3d\x23\x49\x9e\x1b\x46\x52\xcd\x8d\x21\xc4\x46\x92\x08\xeb\xfd\x91\xed\x98\x56\x38\xf3\xba\xa0\x7c\x20\xea\x9a\x9b\xa9\x5e\x24\x1d\x4e\xcf\x61\xe7\x3c\xb3\x54\x3d\x76\xa2\xff\x9f\xb7\x1e\x2b\xac\xc8\xb5\xc7\x8b\x58\xcf\xfb\x5e\xfe\xc2\x4e\x6b\x6e\xd5\xa5\x68\xae\x1a\x37\x35\x9e\x12\x99\xee\x0b\x74\x28\x34\xff\xf1\xc3\x52\xce\xe7\x3d\x1e\xb5\x8e\x78\x61\xf9\xc8\xa9\xb1\x82\x7d\x61\x6b\x41\xdc\xa9\xb4\xb1\x80\x28\x2b\x93\x00\xbf\x39\x31\x94\x1f\x7a\x3f\xe9\x87\x6c\x4b\xd3\x09\x75\x47\x85\x74\x92\x47\x10\x48\x67\x8a\xd3\xe3\x55\xd8\x65\xfa\xb6\x92\x63\x42\x8e\xf8\x23\x16\x8b\xc5\x12\x72\xb3\xd8\x70\x84\x8e\x6a\x8b\x7d\x2d\xb1\xdf\x82\x1e\x8d\xbf\xe0\x0f\x74\x73\x3c\x99\xc4\xf4\xbb\xa6\xae\x38\x4e\xa6\x62\xa7\x85\xc9\x5e\x40\x47\xe7\xfd\x18\x93\xd4\x83\x3e\x04\x54\x92\x24\xa8\x2c\x1a\x6b\x28\xc5\x53\x65\xf2\x03\x86\xf1\x89\xf6\x61\x7c\x4c\x6a\xdc\x64\x57\x66\x41\x51\x88\x05\x93\xaf\x1d\xf4\x9b\x7b\x64\x91\x83\x55\x9e\x91\x0a\x38\xb1\x22\xae\x8b\x2b\x92\xb3\x58\xd5\x26\x35\x65\x19\xbf\xb9\xe5\x6f\x3a\xb0\xfd\x00\x74\x37\x29\x54\x36\x52\x10\xdf\x0d\x09\xe0\xc5\xa8\xa1\x2f\x32\x9a\x33\x32\xd6\x9d\xfe\xb4\x34\x23\x98\x15\x49\x45\x94\x87\x1c\x0f\x30\xa3\xec\x65\xb5\xd1\x2e\x43\x4f\x5a\xd4\x30\xa9\x50\xcf\xcf\xcf\xfe\x3a\xba\x3b\xbf\xd9\x76\xc0\x61\x21\xc7\xd2\x86\x39\x41\xee\x9a\xea\xe7\x1a\xcc\x85\x9b\x07\x30\xce\x3b\x1f\x24\x08\x82\xa0\xc3\xf1\xd6\x8b\xc6\xad\x91\x88\x3f\xc7\x6d\xaa\x50\x71\xc8\xb0\x98\xdd\xc6\x26\x87\xe1\xc0\x97\x37\x69\x03\x8f\x9b\x3f\xe0\x70\x48\xaa\xf3\x12\x6f\xef\xee\x0c\x51\xed\x79\xec\xaf\x99\xa6\x0f\xc2\x5f\x5c\xef\xa3\xbc\x74\x21\x52\x04\xcb\x02\x98\xca\x4f\x40\xb5\x6a\xca\x69\x5f\x65\xc5\xba\xd3\x5e\x99\x65\x45\xef\x06\x75\x23\x18\xc6\x53\x42\xee\x9c\x39\xf3\x60\x7c\x42\x8b\xa3\x49\xfd\x59\x8c\x26\x82\x4c\x4e\x35\x22\x26\x07\xb1\x3d\xb8\xad\x2e\x03\x78\xe4\xee\x00\xc9\x73\x41\x44\x10\x42\x97\x3f\xb5\x96\x9e\x92\xb0\x01\x42\x67\x15\xde\xb8\x79\xba\x1d\xae\xbe\x70\x8e\x29\xd4\xe5\x8b\x50\xd9\x34\xbe\x14\x7f\x2c\xe7\x8b\xe2\xf0\x1f\xbe\x5f\xe8\xa1\x3f\xe5\x9f\xbe\x54\xa2\x1a\x1d\x59\x2a\x91\x6d\x80\x68\x5f\x29\x4c\x30\x8b\x63\xde\x7e\xd7\x6c\x41\xa3\xf5\x70\x1f\x0c\x41\xa6\x2d\xb3\xd6\x5a\x10\x13\xd3\xcc\xc2\x4b\x18\x9b\x0a\xbd\x47\x8d\xb6\xa1\xe6\x2c\x80\x1a\x29\x78\x11\x2d\x5b\x30\x88\x15\x77\x0d\x17\xec\x89\x92\x21\x67\xef\xd9\xb3\xfb\xde\x64\x95\x4a\xd1\x55\x90\x4a\x21\x9d\x62\x80\x55\x08\xd6\x87\x5a\xe0\xde\xd9\x88\x9b\xff\x73\x61\x52\xd9\xac\x90\x7b\xf2\x98\x29\x30\x30\x6d\x70\xec\x90\x65\xc2\xdd\xc3\xbf\xe2\xdb\x0d\xd0\x57\x3d\x45\x66\xe6\x6c\x97\x30\xb9\x64\xc6\x3f\xcd\xc7\x55\xdc\x76\x9c\x39\xea\xbb\xf3\x35\xa4\xde\xfb\xf5\x3b\x53\xbf\x73\xaf\x5b\x49\xcc\x7e\x7e\xa1\x81\x47\xaa\x75\xe9\xd5\x21\xf4\xc3\x4e\x74\xd6\x33\xd2\x89\x27\xa5\xd4\x32\x61\xeb\x1d\xce\x20\x76\x4e\xe1\xc8\xcb\x9f\x92\xf8\x19\xc1\x4f\x5a\x96\xab\xf2\x76\x77\x45\x0c\xf1\xca\x09\xef\xee\x60\x7c\x67\x11\x00\x6e\x74\x31\x31\x8a\x1c\xfb\xd5\x93\x16\x4c\xc9\xf5\x1f\x6d\x56\xc4\x09\x27\x5e\x7d\x56\x34\xbb\x2d\x85\x14\x6b\x4a\x67\xb7\x5d\x9e\x3e\xde\x9d\xe4\x28\xac\xe9\xba\x4b\x3e\x9d\x69\x80\x85\x46\x2f\x31\xd2\x56\x2c\x99\x12\xd4\xa5\x46\x1b\xa0\x6e\x01\x80\x3a\xef\xbc\x67\x25\x6e\x85\x67\x08\x4c\x66\xce\x03\xfe\x82\xff\xa8\x5c\x49\xf2\x76\x70\x7c\x23\xc7\x95\x6b\x9b\x38\xcd\x06\x22\x7b\xb4\x6d\x32\xe1\x86\x46\x92\xf5\x26\xa0\xf4\x60\x37\x48\xa6\xab\xe8\xe3\x26\x08\x04\x39\x23\x5b\xa9\x0c\xf9\x03\x23\x6a\xd1\x3f\x81\xf0\xd6\x1f\x0a\xa5\xed\x33\x6d\x03\x9d\x59\x4c\xc3\x26\xf8\x60\x5e\x75\xf8\x96\x9b\x57\xb0\x36\x35\xa2\xda\xd4\x68\xb4\x69\x95\xef\xd4\x9d\xaa\xbd\x88\x2e\x48\x25\x98\x50\x41\xb5\xa2\xd5\x69\x3b\x2d\x92\xf9\xf6\x61\x95\xd0\x3e\x74\x77\x1b\xe4\xaf\x02\x5e\xf4\xa0\x14\xc9\x6d\x75\x50\xd7\xcf\xe4\x23\xf2\xd2\x7c\xb4\x17\xc2\x57\x0c\xdd\xc3\xb4\x67\x61\xb8\x78\xed\x60\x7a\x60\x0b\x3b\x2a\x2a\x20\x38\x29\x29\x0a\x1b\x46\xf0\xfa\x9e\x91\x33\xa4\xc2\x75\x75\xe9\xf2\x75\x04\xd9\x5c\x8c\xe0\x02\xe8\x70\x02\x7b\xda\xa2\x4b\xbc\x3b\xe8\xf3\x30\xc1\xdc\x96\x3d\x33\x34\xcb\x69\x71\x33\x39\x74\xcf\xda\xa1\xdb\x7a\xf0\x9e\x94\xce\xac\x3f\x9d\xad\x85\x86\x4a\x50\x28\x54\xf0\x0a\xee\x24\x9c\x87\x1a\xa8\xca\x00\x83\x69\xfa\x58\x76\xd4\xe8\x3b\x47\xea\x57\x2a\x3f\x2b\xce\x78\x81\x8e\xf3\xae\x8d\x6e\x13\x7a\xf4\x34\x98\xb6\x17\x13\xe9\x1c\x4e\x7e\x73\xa5\xa4\xec\xb6\xf2\xa2\x6f\xee\x0a\x19\x92\x13\x80\xbe\x98\x53\xd8\x57\x9c\xad\x47\xe2\x93\x10\xba\x3c\xd9\x1c\x42\x51\x07\x87\x5b\x0f\x0a\x50\xd8\xec\xc9\xca\xb1\x97\xcb\xc3\xa4\xa1\x87\x27\xd2\x2c\x86\x86\x4b\xe6\x9f\x4a\x28\xb2\x88\x15\x4f\xa1\xfd\xa5\x88\x77\xa0\x0c\x97\x94\x32\x1a\xcd\xd8\x0e\x00\x2b\x95\xd2\x01\x81\x6d\xf5\x59\xff\x66\x06\xdc\xdb\x38\xf1\xd0\xa7\xfb\x84\x44\xb9\x01\xda\xc6\x98\x6b\x5c\xed\xa9\xb9\xf4\xc8\x22\x6f\xf5\x7f\xf4\x1a\x59\x32\x0b\x8b\x65\x40\x4c\x89\x2c\x6f\x30\x6b\xcf\x4b\x66\x75\xd5\x20\x36\x40\x8f\x86\x4b\x36\x40\x3f\x43\x97\xd6\xf2\x4e\xa3\x0b\xae\x14\xf9\x9b\x67\xda\x44\x72\x71\x01\x32\xde\xa7\xa4\x99\x7e\xb0\xe5\xbf\x86\x10\x7f\x11\x61\xd7\xdd\x8e\xf2\xda\x0f\x17\x96\x2b\x29\x3d\x1e\x8b\x1a\xf9\xd2\xd7\xd1\xf6\xc0\xd8\xd8\xcf\x23\x76\xe9\x87\xaf\x8f\x19\x72\x4c\xc4\x55\x6b\xcd\xcb\x70\xaa\x79\xeb\xed\xca\x62\x8c\x57\xac\x30\x57\x98\x63\xa6\x59\x0c\xf3\x42\x5c\x76\xa3\xd6\x98\x61\x24\x35\x26\x78\xbb\x9f\x5e\x95\x59\xb9\x9a\xce\x1a\xe1\xa8\xf3\x04\xf4\x63\xfb\xa8\x8a\x5b\xb3\xac\x77\x18\x64\xc8\xa2\xb4\x96\x91\x64\x06\xcd\x12\x69\x59\xa1\x9e\xb4\xe1\x6b\xf3\x0e\x07\x30\xab\xa2\x8e\x75\x7d\xf3\xe6\xa8\x4a\x3c\x9e\xd4\x28\x2f\x68\x1a\xd4\x7a\xa8\x91\x79\xde\xc7\x16\x61\x96\x97\xa3\xaa\x8b\xed\xcc\x15\x5d\x9e\xcc\x62\x70\x98\x1c\xc4\xea\xaf\xee\x9b\xaa\xe8\xe7\x6e\xb9\x06\x1b\xcc\x33\x6b\xc6\x27\x4c\xfc\x65\x03\x1f\xec\xb0\x39\x99\x3f\x36\xd9\x97\x37\x52\xc9\xf2\x3e\x22\x92\x0d\x4c\x8d\x52\x93\x90\x1f\x5e\x77\xfb\x0c\xc0\xef\xeb\x41\x55\x01\xed\x99\x7c\x89\x86\x65\xb3\xac\x45\xdd\xdb\xdf\x15\x61\x31\xd4\x8a\xb3\xcc\xea\x06\x49\x5e\xbf\x78\x9f\x3c\x7b\x05\x0f\x89\x77\x6c\xc4\xc0\x7a\x31\x57\xc4\xd0\x32\xc6\x95\x62\xa3\x37\xec\x08\xb3\xfa\x6a\x46\x53\x03\x5a\x36\x92\xd1\xad\x50\xe8\x4e\x01\x66\x16\xe9\x72\x75\xf9\xe8\xd1\xd4\x5b\x7f\x9c\x4b\xf5\xa7\x19\x14\x31\xca\x6e\xa6\x31\x5e\x42\x1e\xe9\xdc\x16\x00\x0a\xe2\x9e\x3f\x9b\x3b\x21\xcd\xbb\xd9\x18\xd9\x75\x91\x38\x14\xe9\x2f\xdb\x00\x31\x5c\x45\x37\x2c\x13\x73\x7b\x97\x02\x76\x66\x40\x0f\x0b\xd2\x11\x42\x78\xe0\x68\x04\xbd\xaa\x57\x9b\x4b\xe8\xe4\x08\x47\x9d\x63\xaf\xcc\x46\x89\x7c\x6b\xbb\x27\xf6\xaf\xae\x2a\x89\x81\x9f\xe6\xd7\x50\xbc\x72\xe5\x87\x97\x50\x9c\xa7\xff\xfd\x92\x2c\xbf\xf9\xd5\xeb\x5b\xc0\x0b\xb0\x5d\x17\x8e\x9e\x62\x1a\x07\xe9\xb8\x5c\x6b\xfc\xc9\xe4\x69\x26\x53\x79\xab\xce\xd3\x0a\x25\x05\x7d\x1a\x95\xcc\x23\x13\x8b\x94\x08\x3b\xdb\x80\xf5\x65\x9b\x2d\xf8\x61\x3f\x1f\x67\xae\xb9\xad\xbe\x82\x5b\xd6\x61\x9d\x53\x1d\x9e\xb7\x6b\xf7\xab\x6b\x22\x2d\x4a\x9c\x0b\xe9\x14\xfb\xf0\x06\xc8\x4a\xf8\x04\xd0\x39\x2c\xd4\x16\xfa\xe2\xb3\x38\x7e\xb3\x66\x46\x3a\x78\xf4\xa1\x4d\xe9\xf6\x98\x7c\x19\x5f\x89\xeb\x57\xaa\xee\xf5\xff\xfd\x33\x01\xd5\x69\x2a\x8b\x01\xd7\xab\x70\x8f\x6d\x7c\x88\x86\xc1\xa0\x91\x2d\xb1\x40\x31\x41\xce\x59\x39\x3b\xef\xbd\xa3\x45\x49\x2a\xea\x28\x97\x76\xb5\xad\xb3\xcb\x72\x23\xd3\xed\x80\x8b\x5d\x98\x68\xea\x8c\x76\xf5\x30\x03\x53\xfe\x41\x95\x6b\x06\x18\x6c\x89\x7c\xa9\x60\xa3\x7f\x1c\x78\xdb\xc1\x81\xb1\xca\x73\x5b\x1f\xe3\xf8\x2f\x5f\x9c\xb1\xe5\x49\x87\x32\x9b\xda\x21\x9d\x5f\x57\x1e\xba\x67\x7b\xf8\x15\xd9\x95\x0a\xf7\xa7\x11\x73\xb4\xe2\x90\x1c\x7d\x97\x77\x68\x18\x60\x78\x57\x1b\xb4\xd0\x22\x61\x1d\xd4\x91\x87\xe3\x08\xf9\x34\x86\x55\xba\x9c\x85\x69\xb6\x9f\xe0\xb0\xfe\xaf\x80\x4b\xfc\x14\xbb\xcf\xee\x79\xcc\x1b\xca\xd2\xd8\x70\x09\x45\x4e\x89\xd0\xb5\x89\xe4\x22\xd9\x72\xd5\x63\xa7\x2f\x80\xef\x1e\x68\x58\xd4\x06\xd4\xc8\x3b\x14\xd5\xd8\x7a\xd3\xca\x74\x53\xd7\xa2\x7f\xc2\x8d\x0a\x7b\x91\x1d\xc7\x70\x85\x45\xde\x37\x4a\x30\x65\x34\x1a\x8d\x56\xb2\xd0\x5b\x43\xc0\x16\xb6\x76\x8d\x9d\xb4\x51\xb5\x05\xc9\x6d\xdd\x59\x10\xb5\xe8\xfb\x9d\xd3\xc4\x8f\xcc\xd6\x38\x54\x8f\xbe\x7b\x88\xe1\xc4\x4f\xbf\x7b\xc0\x49\xf1\x4e\x18\x7a\x15\x77\xdf\x66\x7d\xe7\xa0\x70\x38\x9c\x14\xae\x47\xe8\x14\x6a\x3c\x41\x24\x93\xd9\xcc\xaf\xe4\x56\xdd\x05\x92\xb4\x7f\x29\x4b\x13\x9c\x2a\xd5\x5f\xc7\x7b\xee\x91\xd3\x68\x37\xcb\xc9\x45\x03\x84\x87\xbb\x94\x14\x4c\x84\xc9\xb2\x9c\x89\xd2\x1d\xec\x07\x06\xf3\xf9\x68\x2c\xb3\x3e\x55\x6d\x5d\x4c\x0d\xef\x48\xa2\x12\x48\x98\xce\xcd\x17\x31\x4e\xc7\x4c\x7c\xda\x88\x0a\x91\xcd\xf8\x0c\xa7\xe6\x08\x56\x1f\xd7\x78\x80\x2d\xb1\xfc\xc5\xf7\x3e\xa1\x1f\x0a\x0f\x80\xc7\x3d\x17\xa1\xb1\xf9\xf5\xee\x63\xb1\x96\x62\xd4\x74\x99\x81\x7d\x3e\xeb\x8d\x78\x88\xd0\xe1\x29\xf2\x1c\x03\xe2\xe9\xcb\x49\x59\x71\x4f\xdf\xa3\x3e\xec\x93\x16\x1f\xcd\x48\x32\x7d\xd0\x6d\x16\x73\xa4\x68\x3d\xd0\xdd\xdd\xc1\x7d\x3c\x49\xbd\x9a\x19\xa7\xcb\x5f\x44\xe6\x75\x90\x76\xe1\x5c\xbc\xdf\x76\xff\x64\x71\xe7\xeb\x5d\x64\xac\x61\x1b\x63\x24\x3f\x4f\x4a\x23\x50\xa6\x68\x7a\x07\xaf\xd8\x8a\x04\x05\x65\x94\xbf\xbb\x53\x65\xd2\x29\x2c\x9b\x65\x4f\x46\x9e\xf3\xc1\x0b\x07\x62\xea\xf0\xa4\xe1\xc5\x51\x95\x87\x66\x8d\x17\xa3\xb1\x16\xa9\x0f\x6c\x77\x77\xea\xf2\x5d\xc3\x22\xeb\x2d\x9a\x51\xdd\xee\xc1\x18\x09\x2a\x83\x19\x3b\xd5\x3f\x15\xf5\xe5\xb1\xe9\x9f\xba\x29\x92\x05\x9c\x69\xdb\x52\x97\x55\x68\xdc\x92\xb0\x01\x72\xb7\x6f\x08\x6f\xb5\x9e\x50\xa5\x52\x2c\x42\xae\x46\x3f\xda\x5a\xfb\x74\x93\x75\x2e\xda\x9e\xd2\xd2\x82\x07\x3d\x71\x11\x05\x4d\x83\xae\x35\x88\x89\xa9\x07\x43\x8c\x4f\x62\x3e\xbf\x9f\xbd\x74\xe3\x95\xa9\x15\x38\xd8\x45\x0d\x75\x54\x67\x22\x3e\xb8\x8d\xbe\x94\xe8\x53\x83\x67\x8a\x66\xb5\x16\x60\x24\x6f\x2f\x65\x95\xee\x9e\x57\x03\xa5\x2c\x8b\x40\xbe\x9a\x5f\x83\x60\x7d\xa8\x03\x5c\xf0\x95\xab\xa9\x03\x25\x69\x84\x35\x94\x77\x8c\x86\x71\xbf\x61\xfc\xf3\x86\xde\x3a\xc2\x4f\xad\xc7\x0b\x67\x44\x21\xb2\xd1\x79\x99\x85\xc1\xc9\xdc\x5f\xa4\x84\x3a\x8f\x27\xff\x5b\xd2\x7d\xda\xb5\xce\xbe\x81\xbe\x7d\xd4\xe5\x6a\x65\xe5\xcd\xc7\xd7\x29\x2a\xf2\x1d\x4d\x18\x25\xc5\x0f\x27\xc9\xfa\xfa\x58\x36\xf0\x94\xc8\xa2\x94\xbe\xec\x1d\x53\x97\xab\x53\xdc\x69\x24\xb3\xcc\xc6\x89\xb6\xeb\x76\xb2\xbe\x55\x19\xda\xcf\xdb\x25\x4f\x2e\x64\xad\xab\xf2\x82\xc8\xbb\x1a\x17\x96\x15\x1c\x61\x51\x2f\x12\xf3\x50\x53\xf6\x48\x2a\x91\x2e\xb5\x09\xc2\x74\x7b\x6a\xdd\x2d\xd8\x82\x03\x62\x22\xcd\xb4\xfa\x17\x7c\xc6\x0e\xf0\x1a\x3d\x3c\x21\xfc\xc4\xd9\xbe\x34\x73\xf5\x70\x61\x75\xb9\x24\x8b\x46\x33\xba\xd6\x8a\xc7\x2e\xf3\x58\xb2\x4b\x0d\xdf\x7d\xf2\x9a\x84\xbf\x72\xe1\xec\x0f\x55\x5e\x94\x1e\x18\xbb\x74\xc7\xc9\xdc\xe8\xba\x45\xd4\x85\xf6\x43\xc3\x64\xeb\x5e\xac\xbf\xac\x20\x93\x77\x22\x6b\x9a\xa9\xac\x88\x0e\x4f\x55\x04\x46\x6e\xbb\xf8\x0b\x24\xee\x31\xf9\x4d\xfc\x21\x31\x72\xd1\x1f\x2f\x18\x7f\x08\x5b\x42\x58\x92\x4d\xe9\x74\xe3\xd4\xc3\x8a\xa8\x28\xf2\xb4\xcc\x3b\xb4\x1f\x1b\x7c\xe2\x8b\xff\xcc\x99\xae\x66\x1d\xe5\xc0\x2f\x40\x61\x45\xfe\xbd\x81\xd6\x13\x14\x94\xfc\x27\x46\x7e\x4e\xc2\x8d\x8a\x05\x1b\xc0\xa2\x3a\x9e\x74\x2d\x86\x46\xaf\x61\xc4\x13\x4f\x47\xc0\x00\x67\x81\x3e\xc4\xcd\xd4\x2f\x7f\x57\xfb\xa2\xcd\x5f\x90\xc3\x56\x9d\x91\xd7\xd7\x77\x16\xe9\x3e\x12\x42\x7d\x00\x20\x6a\x38\x2b\x67\xa7\x98\xfd\xdf\x37\x8e\x6c\x23\x37\x46\x54\xa4\x5b\x03\x0e\x84\x86\x2d\xd9\x7c\x2c\x85\xcf\x75\xcd\xbc\xdf\xe4\x17\xb2\x44\x33\x3a\xc0\xec\xc2\xe7\x6b\xb3\x22\xda\x38\x6c\x86\xca\x3d\xea\x7d\xde\x25\x87\xf1\xd0\xe0\xd4\xbd\x2a\x6f\xad\xc1\x75\x02\xa3\x7b\x26\x33\x0c\xea\x93\x9c\xc9\x81\x7e\xf1\x9f\xe7\xa6\xd5\x55\x69\x99\x1d\x86\x0e\x23\x09\xa1\xb7\x09\xdf\xb9\x00\x2c\x64\x8f\xcc\xbc\xc9\xa7\x74\x40\xf7\x94\x36\xdd\xa3\x97\x2b\xbb\x6a\x20\x3e\x1b\xa0\xf1\x11\xac\x24\x64\xec\x38\x3b\x8a\xa6\xff\xdf\xc5\x88\x4f\xa7\x2b\x32\xee\x8f\x14\xf6\xf9\xcf\x76\xaf\x46\xfa\x4b\xc3\x32\x11\x27\x93\xdb\x56\x8f\x2e\xfa\xc0\xf5\x57\x25\x12\x1e\x36\x8c\x70\xe3\x79\x88\xc8\x22\x58\x27\x51\x64\xab\x32\x39\xeb\x59\xf3\x69\xd0\xae\xc0\x88\x85\xd5\x79\x83\x93\x28\xec\xf3\x68\xd1\xa8\x78\xb8\x7e\x24\x2c\xd3\x50\xaf\x1a\x6a\x54\x67\xd8\x38\x01\x75\xc9\x9e\x2e\x2a\x93\x02\x97\xf3\x69\x34\x9a\x06\x9d\xe2\x99\x79\xa7\x22\x05\x00\x3d\x86\x30\x64\x7e\x18\x31\x43\xe5\x3a\x43\x3e\xcf\xd0\x3b\x3d\x4e\x1e\xd6\xeb\x8f\x59\x18\xc3\xdb\x8b\x89\x5f\x03\xba\xf7\x9c\xe7\xd9\xf2\x28\x12\x8f\xc7\x2b\xab\x54\x94\x7e\xae\x48\x26\xcf\x61\xb1\x80\x09\xdc\x6f\xe0\x3e\xc3\x0d\xcb\x0d\x30\x9f\x55\x2c\x92\xfa\x48\x65\x3c\x26\xab\x21\x75\x7c\x64\xfd\xaf\xc1\xfb\xe6\xc5\xf3\xdb\x1e\xfb\x4b\x19\x2e\xca\x76\x7c\x41\xc7\xe0\x4e\x41\x54\x9c\x09\xa1\xf9\x38\xf4\xc8\x13\xcf\x80\x8f\xab\x71\xac\xcb\xdd\xf6\xa7\x7b\x7b\xeb\x63\x68\xf4\x41\x07\xbf\x92\xcc\xb8\x84\x54\xe4\xfc\x0c\x4d\xb2\x1b\x20\xa1\x0f\xc1\x69\x47\xf1\xa4\x20\x45\xa1\x3f\xc6\xee\x77\x87\x25\x57\x65\x7f\x4d\x16\x4b\xc8\x37\xd0\x75\x1c\xbc\xb2\x22\xae\x8b\xa7\xc6\x53\x64\x32\x8b\x2d\xb2\xbe\x51\xcc\x28\x2d\xbb\x2e\xac\xc3\x13\xc5\x36\x6b\xd2\xac\xe9\x53\x7a\x8d\x89\xd2\x09\xad\x16\xb7\xb6\x2f\x4e\x93\xd6\x10\x21\x5a\x9d\xc9\x5b\xbe\x24\x41\x05\xfb\x62\x3f\xfc\x9f\x19\xb7\xda\xd7\xfd\x31\x12\x62\xc2\x85\xda\x39\xab\x4e\xa2\x7c\xec\xaf\x99\x98\x74\xf0\x22\x56\x60\x15\x94\xd1\x26\x73\xd5\xff\x43\x1a\x56\xf9\xae\x61\x8f\x10\xd9\xf0\x40\xb1\x28\x7c\xcc\xf1\x2a\x2a\x64\x47\xac\xa2\x62\x80\xbb\xe5\x9a\x62\x30\xcf\xd2\xb8\x89\xc3\x1a\xe4\x87\x27\x6c\xc9\xf5\xe0\xb5\x3e\xca\x59\x20\xb8\x26\xd8\x83\x6b\xef\xbf\xe0\x30\xb6\x7a\x03\x14\x5f\x2b\x09\x11\xe5\x2d\x61\xaf\xcd\x6c\x7d\x77\xfb\x7b\xee\x0e\x2e\x41\x7b\x2e\xc2\x16\x65\xcb\x2c\x83\x36\xaf\x03\x1a\xd3\x88\xca\x28\xab\x34\x1d\x15\x8c\x4f\x54\x84\x04\xb5\xa0\x0b\x22\x5c\xc5\x9f\x6e\x80\x2e\x49\x45\xd1\x8f\x6e\x01\xe3\x2b\x3a\x70\xf5\xaf\x8f\x28\x34\xa8\x15\x81\x7a\x33\xcd\x7c\xf6\x0a\x13\xf8\xa3\xa1\x70\xf2\xc7\x77\x65\x3c\x39\x42\xca\x66\x8c\x8a\xe4\x4b\x97\xeb\x77\x01\x43\x7c\x1f\x68\x60\xd8\x3d\x74\xc4\xa9\x9a\x80\xf4\x82\x9b\x04\x51\x56\xd5\x89\x1a\x61\x51\xaf\xef\xa3\x7f\x58\x26\x2f\x34\xbf\x30\xae\xef\xe6\x78\x9a\x1c\x06\xe9\x81\x3e\x1c\x02\x37\xa3\x5b\x13\x6e\xd9\xab\xb6\x8e\x4c\x3a\x78\xbd\x1b\x9c\x57\x59\xd9\xfa\xf8\x26\x99\x58\x25\x09\x99\xe4\xa7\xa6\x34\xeb\x55\xce\xdf\xfc\xf8\x8b\xe4\x5a\x11\x5e\xd3\xac\x26\x8c\x4a\xe9\xea\x50\x2a\xc1\xfc\x5a\xfa\x6a\x3c\x09\xab\x44\xb1\xa2\x7b\xb1\x9a\xed\x37\x3f\xcd\x4b\x6a\xbe\xfc\xcd\xb5\x47\x93\x38\x6d\xd2\x1a\x49\xe5\x9d\x53\xf8\x93\x54\xa7\x64\x55\xb3\xa9\x0a\xf0\xd4\x1a\x24\x1d\xec\x7b\x90\xfe\xfc\xc2\xc1\x0b\x17\x46\xf7\xc7\x3e\x93\x99\x69\x6b\x42\x06\x58\xe1\xe6\x21\x20\xaf\xde\x13\xb6\x04\x9e\x4b\xd8\xf2\x7a\x2d\x1a\xf8\x6b\xf7\xdb\x7e\x8b\x46\x99\x03\xff\x8f\x34\x7b\xcd\xb7\x8f\x92\xd2\xe5\x43\x6f\xa0\xa0\x42\x4a\xd6\x3e\x16\x83\x5d\x8f\xce\xc6\xde\x23\x0d\x75\x85\x3f\xe5\xf9\x7e\x2e\xa3\xbe\x97\xaf\x0a\x18\x9d\x10\x01\x63\x7a\xeb\xd1\xaf\x05\x8d\xc3\x2f\x87\x70\xa5\xe5\xb8\x23\x90\x96\xd3\x19\x4d\x4c\x4b\xeb\xda\x06\xe8\xf1\x47\x9b\x33\x3d\x6e\xa6\x34\xdc\xb4\x4d\x9a\xe8\x36\x4c\xdb\x00\x25\xdb\x32\xee\xab\x21\x5c\x6b\x6c\xeb\xdb\x0e\xee\x97\xbb\xcd\x0c\xf8\x3a\xc0\xbb\x05\xdd\xee\x14\x4c\xca\xa0\x0d\x10\xfc\xb0\x85\xf6\xe7\xe8\x73\xcf\x31\xc3\x0f\x77\x0a\xa2\x12\x97\x6e\x16\x8e\x25\x11\x54\x62\x28\x10\xc2\x6b\xba\xee\xae\x97\x47\xa9\x6e\x34\x89\xa8\xd8\xd5\x6c\x6b\x55\x06\xd8\xd5\x2b\x90\x25\xf9\x9c\x69\x0b\xce\xa5\xbe\xbe\x26\xf7\xcb\x9a\xbb\x46\xc4\xd4\xa8\x40\x4a\x46\x72\x38\xd9\x57\x1f\x0c\x35\x8e\xb4\xbe\x91\x6f\x35\x7c\xcf\xd9\x9e\x46\x4b\x5b\x61\x3f\xcc\x7a\xc3\x98\x22\x89\x60\xfd\x2c\xf4\x3a\xa2\x75\x14\xd6\x34\xb3\xa2\x25\xd1\x8e\xa4\x50\x0c\x14\x2b\x0d\x23\x25\x0c\x82\xc1\xee\xeb\xae\x65\x8d\xa8\xfc\x21\xd6\xa2\xef\x57\x1b\xa0\xfa\x15\x6e\x44\xb4\x7b\x49\x76\x65\x69\x77\xa7\x41\x08\x55\xfb\x91\x60\x36\xde\xb1\x9f\xca\xeb\xeb\x99\xa3\x3b\x0a\x1f\x11\x8f\x37\xce\x57\xd1\x2c\xd5\x66\x76\x7f\x7a\x0e\x3b\x87\x65\xf2\xbf\xe9\x0d\xb2\x5f\x4c\x16\xef\x37\x92\x24\x23\xbf\x23\xc3\xd3\x8c\xaf\x88\x77\x7b\x93\x78\x6f\x67\x4f\x7f\x7d\x8d\xe1\x12\x64\x27\x9e\xba\xd6\x16\x70\x55\x49\x01\x1d\x5a\x88\xc7\x5c\xa3\xbc\x5e\x4f\x57\xd9\x2d\xf0\x3b\xa9\x20\xce\xbb\x26\xc9\x5c\xa8\x3f\x66\x70\xe2\xcf\x14\xf7\x08\x57\x3f\xb2\xcb\xe7\xf5\x1b\xe5\x03\x91\x2d\x70\xf8\x61\xc1\x9c\x42\x9d\x6a\x33\x2f\x99\x4c\x9e\xf3\xac\x39\xf9\x47\xd0\x79\xdf\x80\xad\xf3\x06\x27\x41\xd8\xe7\x18\x6a\xc3\xd2\xcc\xd0\x3a\x56\x66\x8b\xb5\xde\xd8\xdc\x52\x3a\x98\x94\x7a\x55\x8c\x5a\xa0\x4c\x8c\x93\x18\xe1\x77\x7f\x14\xa1\x82\x28\x21\x23\xf0\x9d\xc2\xda\x5c\xd6\x48\x67\x67\x78\x56\x52\x40\xb0\xcb\xf2\x94\x37\xfb\x4e\x6e\x49\xb6\xd1\xf7\x73\x59\xe2\xee\x5a\x8c\x80\xc4\x69\x36\xb8\xdf\xf5\xee\xa2\x1c\x20\xe9\x60\x5b\x82\x6f\x63\x15\x31\x73\x1f\x98\xe0\xa4\x30\x9e\x5a\xf1\x1a\x75\x2d\xb1\xff\x6a\x7d\xe9\xc9\x8c\x82\x79\x21\xae\x60\x75\xcb\x7a\xa0\xfb\x76\x07\xf7\xf1\x33\x2f\xbd\x2f\xf3\xe0\x34\x8d\x76\x35\xa3\xcc\x7e\x67\xf0\xe5\x84\x4e\xd9\xe2\x5f\x14\x32\xdb\xdd\xe6\x2e\x80\x77\xad\x7b\x08\xd0\x6b\xbb\xf1\xa9\xa4\x30\x43\x5a\xa7\x8a\x4c\x92\x57\x44\x8c\x6d\xee\x45\x11\x2f\x32\xe6\x09\xc2\xa4\x1b\xac\xa6\xf5\x4e\x0a\x8a\x62\x59\xc6\x36\x8b\x30\xc6\xec\xfb\x4b\x82\x69\xa9\x76\xb0\x33\x42\x24\x37\x18\x3e\xf8\x89\x97\x01\x76\x39\x47\x60\x03\x29\xb7\xf6\x65\xca\xa5\x1e\xc8\x36\xf2\x69\x91\x96\xa5\x65\xd4\xa3\x08\xcf\x13\x67\xbb\xf8\x94\x30\x5e\xce\x18\x27\x7f\x03\x34\x7d\xe7\x25\x83\x2a\x63\xee\x5d\x48\x5f\x8a\x69\x80\x6b\x66\x05\xd9\x34\x0b\x83\xbd\x35\x12\xf1\xe7\xc4\x07\xe3\x13\xda\x48\x48\x95\x0e\x37\x2b\x58\x66\x19\xba\x22\x6e\x05\x91\x1c\xaf\xe6\x35\x4e\xb1\x64\x52\xc9\x6d\x4b\x61\x5f\xf2\x8a\xd7\x68\xbe\x55\xe7\x9f\x75\xf9\x40\x01\xc7\x1f\xf5\xe8\xc4\xfe\xd3\x2c\xc3\xd1\x8b\xe8\x30\x1d\x41\x97\xd4\xad\x6a\x5a\x0b\xfe\xe6\x5f\x02\xee\x06\x28\xdc\x14\xa8\x75\xba\x9d\xcb\x5c\x2d\xea\xde\xbe\x45\x94\xf2\x32\xe0\x66\xab\x37\x40\xfb\xe4\xd9\x7a\x3f\xe0\x94\x8c\x32\x80\x3c\xe3\x49\x6b\x27\xc2\x52\x73\x18\xb5\x2e\xa4\xbb\x78\x02\x37\x7f\x35\xab\x7a\x53\x30\xdd\xbf\x7f\x7e\xf6\xf9\xf3\xd6\xd3\x2d\xed\xac\x67\xa8\x74\x4e\x57\x0d\x92\x69\xdc\x45\x9b\xeb\x7b\x0f\x04\x26\x8e\xee\x70\xbb\x6f\xd4\xec\x6e\xd8\xc6\x3f\xad\xca\xdc\x46\x37\x21\xd5\x01\x59\xf3\xd1\xa6\xc0\xe6\xe8\xef\x7e\x54\x14\xc6\x0a\x6b\x08\x9b\xa4\x4b\x31\x74\x11\xb8\x03\xa2\x0e\x52\x4c\xe3\x99\xf3\x07\x8f\x06\x34\xe6\x05\x14\x94\x50\x82\xf8\x30\x84\xf3\x9a\x4a\x01\x57\x88\x1b\x04\x92\xf4\x02\x01\x14\x48\xef\x21\x17\x8e\xee\xb0\x2f\x20\xf0\x14\x4c\xa0\x77\x92\xc7\x49\x45\x22\x58\xe5\xdf\xfc\xf1\x1b\x8f\xc1\xfc\xe6\x57\xef\xc0\xa5\x1e\x4d\xa8\x2b\x3d\xec\x77\x46\xea\x80\x3e\x59\xec\xea\xed\xa0\x52\x0a\xbd\xc0\x87\x9f\xa1\x25\x73\x67\x78\x8b\x47\x70\x69\x67\x42\x95\xa4\x83\xc3\xf7\x4e\x83\x76\x89\xd1\x0b\x7d\x72\x58\xc5\xb5\xd8\x26\xdf\x91\xb0\x7c\xbd\x38\x70\x5e\x96\x65\x57\x38\xe1\x29\xf8\xe9\x4b\x06\x18\x3a\x73\x03\xe4\xd8\xe8\xa7\x85\xbd\x9a\x02\x6e\x2a\x5c\x97\xde\x8d\xb0\x26\xbd\x85\xe4\x70\x0a\xc2\x93\xa2\x42\xfb\x29\xc9\x3f\x00\x4b\x85\x37\x14\x8e\x32\xba\x5e\xfa\x34\x37\x32\xfd\x49\x6b\xab\x7a\xb8\x20\xdc\x8f\x24\x84\x8d\x24\xa6\x48\xb2\xe9\x83\x80\x12\xb6\x2c\x57\xfe\x05\x37\x64\x0d\xbf\x80\xfd\xe1\xa3\xb8\xec\xce\x45\x2c\xc2\xda\x89\x26\x57\xcf\xe5\x87\xa1\x8d\x3b\xbe\x7a\xd2\x82\x79\x73\x58\xc7\xff\x63\x58\xb6\xb0\xda\x6c\x3c\xca\xd9\x33\xff\xa4\xe0\x10\x0a\x4d\xae\x7e\x1c\x59\x4a\xfd\x30\x0e\x0b\xdd\x11\x83\x8a\x72\x24\x85\x2a\x01\x9a\xc5\x94\xa0\x82\x3b\x29\x79\xfe\x10\x1b\x53\xd6\x09\x8e\xfa\xc0\x19\x6a\xbd\x62\x58\xaa\xd5\x90\xab\x16\x35\xf9\xf5\xae\x13\xa7\x98\xd5\x77\x44\x58\x97\x95\x72\x96\xb6\xbd\xb0\xd0\x2b\xb6\x91\xa3\x45\x4c\xc5\x47\x2d\x73\xd5\x78\xca\xc0\xd4\xe6\xb0\x8e\xca\x9e\xb6\x4c\xaa\xbd\xb3\xcb\x7f\xe4\x53\xe2\x44\x99\x64\x1b\xc9\xe6\x84\xa4\x23\x95\x7f\xf1\x4e\xe6\x1f\x6c\xfe\xe5\xa8\x6e\x71\x67\x61\x55\x56\x05\xda\xcf\xc6\xb1\xdb\xf2\x7a\x49\x96\x22\x97\x5d\xdf\xfb\xfb\x4a\x17\x4a\xd0\x3d\x95\xe7\x81\x64\xe3\x31\x83\x43\x8c\xed\xd4\x38\xb4\x8f\xdd\x18\x6f\x34\x2a\x2f\x94\xd9\xb7\x09\xd5\x66\x81\x85\xc5\x32\xc0\xe1\x88\xa9\x0b\x3d\xb5\x5f\xfc\xe6\x96\x2d\xa8\x52\x8d\x87\x1e\xd2\x15\x87\x45\x73\x10\x55\xd5\xa5\x91\x04\x93\xc3\x7d\xeb\xcd\x3a\x3c\xf0\x88\xc4\x56\xb4\x33\xe9\x8a\x6b\xc6\x13\x08\x4c\xd9\x0c\x76\x33\xdd\x19\xc2\xaa\x15\xa9\x39\xb7\xe2\x49\x9b\x9b\xe1\xd6\xce\xa1\xae\x70\x51\xfa\x4f\xe3\xad\xcb\x6e\x04\x6e\xef\x9f\x0a\x2d\xcc\x2a\xa5\xe2\xe7\x81\x4c\x92\xc3\xd5\xe3\xd8\xa4\x9c\xd9\xf7\xc2\xb7\x1f\x14\xc9\x12\x0b\x35\x46\xe8\xc2\xf3\x0a\x32\x4b\x44\x25\xaa\x75\x99\x07\x85\x3e\x10\x13\x8d\x90\x12\x44\x20\xbb\xb4\xec\xdc\x6b\xfb\xbd\x7e\xff\x48\x6b\xbc\x70\xe1\x1e\x46\xd0\xd8\x4f\x7e\x29\x57\x8b\x81\x4f\xf7\x6e\x42\x2d\xe9\x59\x84\x25\x4e\x8d\xf7\x0f\xe7\x0e\xd4\x29\xc0\x60\xe7\x13\xff\x3c\xbb\xeb\xf5\xb5\x92\x95\x6b\x86\x4d\xa8\xd5\xe1\x95\x5d\x1c\x4b\xdb\x29\xbd\xbf\x70\xaa\x9f\x3b\xb7\xb9\xe4\xbc\x66\xf8\x92\x51\x8a\x68\x70\xbc\xdd\x7f\x64\x11\x1b\x80\xa2\x6e\x80\xfc\xb1\xcd\x33\x5b\x5e\x0a\x1c\x9a\xcc\x32\xc1\x57\x57\xa5\xe4\x20\x92\x23\x8d\x51\xf6\xcd\x2f\x04\xae\xda\x78\xcc\xb8\x5d\x94\x4d\x5b\xba\x7c\xa0\xc0\x16\x97\xf7\xb1\x0e\x5c\x37\x77\xe9\x0f\x0b\xb9\x59\x2c\xcb\x06\xc8\x0d\xe2\x71\x7e\xf3\x12\xc0\xc5\x62\xa7\xf0\xb0\x0d\xd0\x56\x57\x3c\xc5\x8a\x31\xd3\xe8\x26\x07\x83\xeb\xcd\xc6\xdc\xaa\x2d\xeb\xdb\xdf\x73\xff\xe0\xda\x36\x03\x91\xd1\xa4\xd0\x11\xc4\x85\xf3\x3f\xf1\x92\x9a\xe9\x07\x5b\xda\xe0\x2c\x46\x61\x04\xec\xa8\xb7\x7b\x90\x7f\x1a\xd9\x50\x3f\x92\x5c\x66\x3f\xc3\xa5\xfd\x02\x41\x34\xf9\x18\x76\x84\xc5\xd2\xb7\x17\x19\x54\x9d\xc6\x9d\x5f\x1f\xcb\xf9\x02\xc0\x33\x0c\xd7\x4a\xea\xf1\xda\x25\x14\xab\x02\xe4\x4b\x97\x1b\x76\x6d\x80\x9a\xa3\x1f\x8c\x47\x97\x84\xca\x07\xcf\xb7\x38\x0c\x27\x33\x76\x69\x9e\x0b\x24\x58\x7f\x52\x9a\x2d\xd3\x2e\xc7\x1a\x6c\x6c\xc3\xad\x9d\x40\x63\xcd\x85\x3f\x49\xdd\xcb\xf1\xe4\x5d\x86\x3b\x43\x11\x65\x07\x0a\xb8\x93\x1f\xfc\xed\x39\xa1\xaf\xef\xf1\xf9\x76\x42\x16\xeb\x19\x8a\x8a\x35\x2b\x1b\xdc\xc6\xbe\xb9\xee\x06\x82\x28\x5a\x0f\x22\x32\x70\xdd\x27\x30\x5e\x09\xed\x82\x19\xa8\x1b\x61\x54\xd3\x96\xbe\x3b\x10\xbe\xea\x98\xe7\xf6\x8e\x6f\x59\x05\xd6\xf3\xa2\x0a\x82\x2f\x68\xad\x30\x37\xad\x2a\xf1\xd5\x99\x93\x0a\x6c\x0f\xce\xe5\x5c\xf2\xd9\x0b\xed\xd9\x4b\xcc\x0d\xd0\xae\xdd\x35\x23\xcc\xea\xab\xd4\x54\xa2\x26\x7c\xbd\x49\xe1\x68\x5a\xfd\x4b\x1b\xf0\xe2\xaf\xff\xb5\xef\xfb\xfa\xfa\xce\xb3\x08\x17\xe1\xaa\xe6\x65\xd2\xce\xa1\x4b\x23\x92\x34\x0f\xf1\x58\x91\xdb\x9b\x68\x09\xfc\xd5\xcb\x6d\x20\xd0\x2e\x39\x7a\xa1\xaf\xff\x25\xb5\x08\xfd\xdd\x14\x6a\xec\xe6\x78\x2f\x55\x1f\xd5\x31\xc1\xcf\x29\xc2\xf1\xe5\x29\x23\xeb\x7f\x9b\x2d\x92\x64\x6e\x89\xd0\x65\x02\xeb\x06\x9b\x8a\xc1\xdd\x2f\x1b\x92\x4d\x81\xba\x80\xf6\x45\x9f\x23\xd4\xca\x07\x43\x8d\xc3\x35\x49\xf7\x41\x47\xa8\xac\xe9\xd2\xea\x41\xe0\xbf\x68\xc0\xca\x2b\xf2\xd7\xf7\xdc\x1b\xba\xad\xa9\xb3\x45\x4f\x9e\xc2\xd5\x47\xc5\x9c\xe5\x0b\x71\x2a\xff\x90\xa7\x4f\xed\xe0\x0a\x01\x1e\x61\xb8\x80\xfd\xc1\xd7\xbc\x7e\x73\xea\xae\x51\x45\x18\x3d\x09\xf3\xb7\xb3\xeb\xf4\x03\x62\x2c\x3f\xd5\xc1\xf1\xdb\xdf\xb4\x2c\x18\xc2\xdb\x0e\x6b\x0a\xaf\x7b\x8a\xb0\x72\x4a\x76\xa5\xc2\xb5\x83\x18\x58\x0e\xf1\xd6\x61\x78\x9e\x6b\x21\x29\xaa\xd1\x9c\xb2\xcb\x24\xf4\x29\x1e\x34\x86\x47\x72\xf5\xe1\x25\xf9\x80\x77\xea\xf5\x2f\x7e\x2e\x92\x84\x8c\xc5\xae\x0d\x40\x55\x94\x21\x6b\x14\xb7\x81\xd1\xd3\x3d\x0f\x4c\xe2\x18\x8a\x58\xc6\xdd\x03\x4e\x17\x67\x52\x08\x34\x59\x78\x28\x86\x74\xd4\x96\x3a\x67\xef\x16\xf8\x88\x64\x32\x0b\x0b\xd0\x30\x97\x2f\xde\x61\x73\x57\xf2\x97\xc9\xc5\x09\x9e\xf7\xa1\x6a\xa5\xc1\x35\x7e\x51\x11\x4f\x59\xe5\xd9\x27\x7f\xad\xf0\x97\xb9\x13\x22\x68\x44\xa1\x50\xa8\xec\x92\xb4\x24\xff\xb4\x33\x40\xda\x8d\x65\x0e\x69\xbb\x04\x6a\xee\x4c\xc6\xd7\xde\x5f\x32\x92\x5b\x63\xf5\x94\x90\xa2\x10\xea\x9d\xc2\xc2\x99\xe2\x1e\xc1\x43\xfb\x7a\xc3\x76\x6c\x28\xf0\x24\xec\x18\xb7\x8b\xf7\x0b\x05\x03\xbe\x23\x91\x28\x0a\x83\xe1\x5a\x0d\x39\xcf\x82\x3a\x08\x51\xa1\xb3\xf9\xba\x3d\xa4\xc8\x96\x1c\x09\x94\x14\x84\x3b\x28\xf8\xee\xaf\x4c\x22\x36\xb2\x79\x5b\x91\x04\x95\x72\xc4\xaf\x24\x88\x37\x1a\x45\x64\x1c\x9c\xe5\x25\x79\x4c\xf8\x62\xf0\x3e\x1e\xa9\x14\x52\x7e\xc4\xd0\x44\x89\xc3\x97\x0c\x9f\x36\x08\x4e\x3c\xdd\x93\xe8\xba\x68\xb5\xae\x7e\xec\x1a\x86\x5e\xc5\x1d\x2d\xf4\x3a\xde\xa8\x8b\xbc\x68\xf3\xbf\x7e\x1e\x71\x8c\x1f\x58\x6e\xb6\x62\xd8\x39\x55\x7f\x4f\xee\x1b\x9f\xe7\x5e\x29\xbf\x55\xb2\xee\xca\x73\xec\x8b\x31\xc2\xd2\x0f\x33\xd7\x5a\x60\xb0\x39\x45\xf8\x60\x1c\x3e\x0f\x3e\x34\x4d\x70\x2a\xc6\x78\xc7\x8e\xa5\x82\x7d\x98\x96\xc2\x12\xc9\x06\x88\x79\x29\x4c\x0b\xed\xd4\xc6\xdc\x5b\x12\x9d\xae\x6c\x2c\xe3\x41\xe1\xf1\xd6\x2c\x33\x8d\x11\x88\xb0\x40\x95\x9d\x1b\xa0\x1f\x80\xfb\x03\xcc\x0d\xd0\xd6\x77\xb5\x05\x1d\x6a\x33\x53\x8f\x58\x93\xa1\xd7\x3a\xa0\x31\x34\xda\x84\xef\x3f\x5d\x76\xda\x0c\xab\x54\xb2\x6a\xdb\x26\xec\x6c\x02\x47\x14\xda\x61\xa7\xdb\x7c\xa3\xe6\x20\x62\x69\x2d\x8f\xa5\x8f\xe1\x79\x12\xc5\x77\x07\xb5\x1e\x96\x65\xd5\x30\x6d\xc8\x51\x94\xb0\x1f\xe9\xed\x97\xb1\xc4\x2c\x91\x2d\xb3\xac\xd6\x89\xce\x1a\x61\x91\x24\xe4\xd1\xe0\xbb\xc0\x45\x02\x7a\x75\xf1\x94\x90\x50\xeb\x62\x29\xa2\x04\x19\xdc\x20\x2f\xf3\x2a\xd0\xaa\x25\xa9\x6d\x79\x95\xc8\x2e\x30\x4e\x7c\xd2\xf7\xde\x47\xb6\xcc\x7d\x36\xab\xa7\x78\x8f\xa7\x91\xe1\xf8\x12\x75\xee\xb0\xa7\x29\xd2\x7a\x77\xa2\xe3\xb3\xfd\x6e\xc8\xdd\x10\xd8\x0c\x7e\x78\x45\x8f\xc4\x53\x15\x53\xe1\x76\x0c\xc9\x6d\xac\x3b\x6e\x70\xb8\x3e\xb8\x10\xd5\xaa\x23\xac\x72\xf6\xa8\x76\x9f\xd0\x68\xe1\x37\xd0\xb7\xef\x4d\xf6\x55\x9b\x6e\xed\x93\xa8\xc9\x13\xa2\x68\x7d\xfc\x52\xc9\xc1\x8f\x65\x40\xcd\x79\xb6\xf8\x1d\x13\x56\x78\x3b\x2d\x55\xbf\x9a\xc3\x7e\x21\xc4\x0d\x39\x9e\xde\xef\x98\x3d\xd4\x68\x75\x7a\x0c\x43\x60\x68\xea\x36\x71\x1f\x91\x26\x48\x0b\xb0\x65\x62\xdc\x55\x9e\x7d\xd1\xea\xae\xc5\x26\x8d\x08\x22\x82\x7d\x69\x15\xe8\x81\x89\x86\xa8\x05\x19\xca\x52\x76\x80\x3a\x3b\x5f\x78\xe3\xeb\x97\xb5\x0e\x3c\x19\x6c\x15\x32\x8a\xa4\xb4\x92\x83\x1f\x7f\x0b\x54\x48\x9a\x02\xc8\x7d\x29\x3d\xd0\x23\xf6\xb8\xba\x96\xad\x9f\xf4\xb1\x2c\xce\xef\x5d\x0a\x70\xc9\x0b\xed\xe7\x39\x1c\xd5\xef\x7a\x46\xc5\xa6\xab\x3a\x0d\x89\xb5\xf2\xb9\x4d\x7c\x7b\x94\x3d\x96\x4a\xa4\x4b\x4f\xbd\x9d\x44\x86\x5a\xf7\x8a\xb8\x55\xf2\x62\x16\x93\xcf\x7e\x0a\x34\x78\xf3\x3c\xda\x81\x61\x61\xdf\x75\x32\xdc\xbf\xc8\x32\xcd\x4f\xcd\x87\x69\x3b\x69\x73\x3d\x76\x6b\x74\x91\x60\x15\xe0\xd0\x7e\x3d\xfc\x0e\x2f\x4f\xbe\x01\xba\x33\x57\x4e\x31\x32\xae\xb1\xfa\xb4\x1b\xa0\x87\x51\xdb\xe2\x36\x40\x1f\x0c\xcf\x76\xb7\x29\xc0\xf0\xbb\x92\xf4\xa8\xfb\x0c\x44\x29\xac\xf0\xdb\x07\xaf\x5f\x24\xff\xd5\xfb\x71\xa0\xb7\x4c\x0a\xc4\xc1\x8b\x68\xfc\x73\x0c\x89\xee\xa3\x88\x35\xa5\x2e\xeb\x97\x09\xd8\xd7\x73\x39\x1c\x9f\xc9\xf1\xdb\x00\x15\xd9\xf0\x48\xa3\xcd\x6c\x63\xcb\x66\xc7\x0f\xcc\x50\xb9\xe7\x81\x6d\x6c\xbc\x25\x59\x7f\x78\xc9\xe0\x56\x00\xf4\xc9\x4a\xda\x2f\xd7\x6f\xb2\xac\x73\x41\x83\xae\x34\xed\x68\x51\xe2\xb6\x91\x79\x84\xfe\xb6\xa9\xb6\xc9\xaa\xbf\xd8\x9b\x6f\x45\xe6\xbb\x63\x19\x23\x71\x45\x91\x1d\xab\x18\x44\xed\xcf\xb3\x45\x92\x90\x2d\x72\x5d\x86\xfb\x1f\x18\x51\x8b\x47\xfb\x0e\x7f\x27\x6d\x5b\x68\x5b\xc4\xfa\xa3\xcd\x46\x07\x07\x4d\xe7\x3b\x36\x44\x4a\x38\x65\xe5\x72\xef\xad\xaf\x18\x39\x58\xfa\xc7\xb0\xec\xb2\xaa\xfe\x4e\xc9\x14\x73\x5d\x15\x41\xa4\x15\x9a\x10\x37\x37\x21\x89\x01\x6f\xeb\xc1\x3e\x11\x16\x3d\x69\x56\x00\x5f\x73\x45\xd4\x3e\x6c\x12\xd2\xe8\xb0\x32\x7c\x7e\xf8\xde\xea\xc5\x88\x4f\x99\x33\x13\xc6\x74\x11\x3b\x3a\xde\xa2\xba\xa6\x86\x78\x25\x3f\xeb\xa9\x51\x53\x6c\x89\xd1\xd1\x4e\xc9\x70\x14\x45\x16\xf2\x29\xd0\x17\x81\xb7\xff\xff\x87\x24\xf7\x3c\x1e\xe3\x6b\x54\x38\x42\x5f\x45\x55\xe3\xce\x42\x26\x7d\x94\x99\xa9\x6c\x06\x5b\x30\x78\x1f\x5f\x7e\xea\x91\xfa\x95\xca\x33\xc5\x9f\x4d\xa8\x5a\x1f\x23\xf8\xc9\xc6\x18\x83\x03\x18\xb6\x18\xa4\x55\x9d\xb1\xef\x9a\x77\x13\x7d\x2a\xeb\xf0\x78\x05\x90\x53\x95\xd5\x26\x38\x42\x47\xd6\x91\xf7\x61\x7d\x41\x3b\x2a\xf7\x3b\x2e\xb7\xd1\x95\x9c\x7d\x59\x2c\xa1\x0e\x0f\x51\x55\x57\x97\xf7\x93\xfd\xab\x0c\xdd\x22\x6f\x6c\xd8\x14\x58\xd5\x2a\x88\x16\x56\xbf\xbd\xed\x61\xe8\x93\x32\xda\x6d\x0c\xc4\xe3\x64\xfb\x10\xea\x0d\x4e\x1a\x2e\xe3\x71\x91\x87\x47\x5a\xdb\x86\xac\xe1\xbe\xcd\xbe\x1f\x5d\x1a\xbd\xe6\x63\x08\x1c\x2d\xea\x3e\xe2\x67\x18\x31\xbe\x9d\x69\xf3\x4b\xdd\x1f\x79\x9e\x2d\x37\x2a\x65\xb2\x7e\x1e\x9c\x84\x25\x93\xe4\xba\x2e\xf1\x29\xae\x9a\x70\x7e\xa7\xef\x7f\x24\xed\x11\x48\xd0\xf9\xab\x57\x52\xf8\xeb\x2e\x5d\xcb\x6d\xd5\xdb\x64\xb2\xc8\xd1\xa6\x13\x99\x97\x94\xdd\x4b\x2b\x9c\x3d\xa2\x74\x41\x76\x7a\xdd\xd1\xca\x88\x18\x5c\xee\x04\xfb\xca\x74\x25\x15\xb9\x7f\xff\x9f\xa4\x45\x9e\x7b\xda\xe2\x3b\xd3\x08\xf1\xab\xcb\x4c\x56\xfe\x16\x49\x10\x6e\x09\xe3\x9c\xb0\x99\x61\x65\x71\xa5\xc9\x2c\x1e\x41\x14\x19\x18\xbf\x28\xf6\xd7\x6f\x49\xd8\x00\x81\x55\x9e\xd4\x0f\x5a\x0e\x0b\x39\x16\x81\xca\x3e\xb0\x33\x6d\x5e\xfa\x64\xb9\xad\x51\x91\xe1\x41\xb3\x80\xf1\xa9\x02\x50\x94\x0d\x50\x59\x83\xdb\xff\xf2\xb4\xc6\x0c\x23\x71\x90\x21\xe9\xd5\x11\x44\xb2\xf5\x75\x23\x30\xf7\x5f\xc6\xba\x6e\x96\xdb\xb6\xcb\x73\xe5\xc1\x47\x0d\xdb\xcc\xc5\x9a\xd1\xc4\xf7\xeb\x0c\x46\xd7\x9a\x73\x40\xb3\x6d\x64\xf3\x1d\xad\x0d\xd0\xc2\x10\x65\x13\x4f\x2c\x60\x5b\x2b\xc2\xf5\xc4\x9a\x16\xe3\x54\xcd\x3b\xd5\xba\x23\x30\x15\xa6\x31\xf8\x7f\xf9\xe3\x2f\x8c\x46\xaf\x18\x69\x3d\x8b\xd1\xa4\x36\x05\x92\x72\x98\x97\x30\xcd\x31\xd2\x47\x52\x38\x8b\x71\x85\x21\x0b\x3f\x11\x32\x48\xf7\x11\xaf\x4f\x17\x8e\x28\x1c\x26\x4f\x68\xa6\xaf\x4e\x3a\x78\xed\x03\x8c\xaf\x1f\x76\x74\xcf\x44\x2e\x5f\xd5\x69\x00\x73\x5e\xfb\x5e\xb7\xcd\xf7\x04\x1b\x20\x41\x0e\x5b\xf5\x61\x8a\xb4\xfe\x1f\x0d\xe3\x9f\xcf\xf6\x4a\x63\x57\x52\xaf\x27\xe5\xea\xc1\x5d\xe9\x05\xd7\xf1\x90\x24\x1f\x60\x53\xe2\x72\x0e\x1f\x02\x2d\x63\x5c\x66\x18\xbd\x7d\x84\xb6\x54\xde\xf6\xa9\xcc\xac\xe6\x9e\x84\xd9\x4e\x7a\x7d\xb1\xe0\xfa\xd3\x0b\x03\x3a\x82\x20\x78\x85\xe4\xe6\x13\xc3\x76\x65\x7d\xf8\x23\xb0\x31\xd9\xdc\x61\x78\x9a\x80\x55\xed\xda\x80\x28\xc5\xa3\x63\xd8\xb2\x01\x4a\xe2\x7f\xf9\x1d\xf7\x83\x16\x12\x6a\x80\x82\x42\xcb\xcd\x0a\xea\xb0\x9a\xd3\x79\xdb\xb2\x0c\xfc\xbb\x76\xc4\xbd\x4d\x8f\x3e\xe0\xee\xe0\xae\x7d\x2e\x00\x1c\x53\x67\x66\x3f\x16\x37\x9c\x84\xb9\x15\x9c\x4b\xb7\x71\xf7\x85\x7d\x76\x17\xe7\x79\xfc\x99\x6c\x0e\xba\x6b\xba\x91\x94\x18\x96\x17\x2d\x20\x27\x5d\xf9\xe2\xf7\x02\xfd\x55\x7a\x92\x37\x91\x56\xe7\x69\x66\x0d\x61\xba\x74\xd4\x02\xda\x5c\x39\x15\x8f\xd4\xb2\x15\x56\x3f\x51\xf2\x1a\xc9\xd2\x4f\xdd\x00\xc1\x22\x92\xa7\x9f\xa1\x94\xb9\x79\x9b\xa4\xff\x9a\xaf\xbc\x90\xce\x0a\x25\xaf\x64\x58\x96\xaa\x66\x0a\x66\x1e\x6d\x80\xea\x1d\x46\x31\x35\xaf\xe8\xe4\xfe\xab\xd7\xf3\x7e\xd3\xb9\x20\x0f\x03\x48\x36\x2c\xdd\x39\xdd\xb8\xdc\xba\x36\x17\x10\x2e\xe8\xba\xa4\x1b\x83\x57\x1d\xbb\x8c\x99\x0d\x5d\x2e\x8a\x14\x6b\x9b\xc5\x0b\x57\x4e\xa3\x42\x3e\x29\x5c\x93\x2b\x5e\xd9\xa3\x83\xf5\x00\x25\x84\xc8\xa6\x1b\x11\x0b\xba\x37\xe8\xb8\xfb\x0d\x3a\x92\x8a\x02\x30\x79\xa3\x53\x6d\x93\x3f\x0b\x89\x47\x64\x7f\xb1\xfd\x9a\xa3\x15\xf4\x0e\x7d\x68\xf4\x1a\x06\xd1\xd5\xf9\xf1\x3d\xa0\xf3\x17\x18\xf1\x00\x37\x8c\x88\xb4\x54\x7c\xa6\x55\xdf\x94\xb6\x17\x8f\x6a\xb4\x10\xcf\x23\x6a\x7b\x28\xb5\x45\xdf\xcb\x45\x3f\x82\x9e\xae\x90\xb9\x71\x15\xe9\x92\x3e\x87\x84\xdd\x84\x2e\x51\x78\x0e\x43\x2f\x45\x26\x41\xf2\xe4\xe7\x1a\xec\xd5\x9a\x86\xdf\x17\x25\xf1\x88\xd8\x1e\x62\xcc\x34\xf0\xe5\x01\x77\xb0\xca\xb5\xac\x11\x95\xa1\x2a\x45\x72\x1d\xc3\x57\xb8\x77\xd1\x99\x19\x4b\x6d\xea\x70\x6b\xce\x91\x3b\x8d\x94\x20\x6f\x07\xb8\x53\x71\xce\xcf\x53\x00\x18\x43\x89\xb1\x8d\xdc\x24\x84\xce\xe3\x2e\x6e\xa6\x4d\x24\x67\x3d\x5b\xb6\xf7\xe8\xe4\x0a\x2b\x72\xad\xb3\x87\xef\x70\xda\xd1\x40\x22\xd3\x9b\x56\xa6\x1b\x7b\x27\xa8\xb3\x18\xe0\x8e\x58\x10\x25\x66\x42\x8a\xfe\xb4\x29\x20\xc3\xb1\x2e\x09\x02\x81\x78\xe4\x96\xa0\x64\x21\xa9\x33\xae\x99\x8d\xa8\x24\x7f\x0c\x61\x48\xcb\x03\x4a\x2a\x85\xdf\x49\x05\x71\xfb\xcc\x5d\xb5\x3d\xb8\xa8\xfb\x85\x25\x58\x6f\x60\x8f\x6b\x3c\x2d\x91\xdc\xb8\xad\xbc\xe8\x15\xcb\x12\xf4\xf3\xfc\x05\x16\x21\xb0\xb8\xa8\x02\x4e\xde\x7c\x37\xe3\x98\x3e\x25\x49\x9a\xaa\x36\xdd\x2f\x4e\xc9\xc5\x0b\xcb\x0d\x22\x09\x00\xc6\x7e\x3b\x18\x59\xd8\xcf\xbe\x43\x1f\xe2\xc1\x94\xcd\xc7\x1a\x51\xc1\xb5\x17\xef\xd0\x8a\xe3\x74\x0a\xb7\x73\x23\xd8\x1e\xdc\x2f\x05\x32\xf6\xbb\xbf\x92\xd2\x82\x1a\xa6\xfa\x33\xa2\x25\xb2\xd9\x9e\x09\x95\xf3\x4c\x0a\x61\x74\x47\x61\x5f\x68\x18\xc1\xeb\x28\x8b\x55\x81\xc5\x2b\x05\x73\x4a\x76\x3f\x85\xa2\xd2\xc0\xf7\xed\xf4\x05\xed\x38\x9d\xb0\x3f\x01\x13\xaa\x2c\x63\x35\xad\x77\xa6\x64\xc6\x14\x0e\x59\x4a\x2c\xcf\x78\xc0\xd1\xde\xfe\xb8\x83\x42\xed\x67\x74\x47\xe8\x69\x07\x1f\x41\x58\xea\x61\x56\x55\x7f\x8d\x8f\x1a\x27\xb2\x2c\x67\x2a\x9b\x63\x18\xbe\xe7\x28\x3d\xb5\xef\xab\x47\x95\xc6\xf5\xdf\x46\x6d\xeb\x59\xbe\x16\x9f\xe0\x49\xad\x24\x33\x38\x36\xf4\xef\x32\x3e\x15\xa8\x3a\x21\x50\xe4\x24\xfc\x61\x10\x09\x6b\xae\x50\xe7\xf2\xd3\x2c\xa2\x65\xc1\xda\xe3\x43\xbe\xbf\x89\xc3\x42\x77\x5c\x33\x48\xbf\x2b\x45\xcc\x3a\x36\xda\x43\x70\x08\x7b\xde\x66\x54\xaf\xb4\xf0\x99\x5c\x24\x37\xd8\x81\x88\xfd\x50\x51\x31\xc0\x7f\xeb\x75\x02\x8e\x28\xd6\x08\x24\x21\x12\x2f\xca\x5a\x48\xb2\x7d\xa5\x2b\x34\x10\x85\x7c\x7f\x81\x5c\x6c\xf5\x01\x6e\x09\x00\x07\x8c\x3a\xed\xab\xac\xe8\x0d\x38\xc5\xee\x5f\x1c\x95\xa0\x82\x3b\x6a\x5b\xa7\x24\xbc\x98\xc5\xdf\x5d\x79\xef\x0a\xe3\xca\x31\x9e\x0f\x1c\xb6\xa8\x51\x13\xf4\x48\xfc\x6e\x3b\xaa\x08\x40\xff\x6e\xcf\x45\x87\xeb\xc3\xeb\xd5\xbe\x4a\x8b\xa9\x69\xac\x26\xaf\x9e\xb2\x16\x7c\xe1\x65\x03\x4f\xc7\x6c\x3d\xae\x29\x91\x45\xeb\xe3\x2d\x34\xc5\x1f\x03\xbe\x0d\xe2\x40\x77\x5c\x9b\x2e\x76\x6c\x49\x80\x3d\x39\x42\xdc\x00\x25\x9b\x90\xeb\x1f\xfa\xd0\x86\x1c\xf3\xf6\x3b\xfa\x0e\x35\xce\xdc\x7c\x0c\x43\x90\x69\xea\xb6\xee\x21\x81\x04\xeb\x91\x10\xef\xd8\x88\x81\xc0\x76\x60\x77\xb8\x34\x61\x90\x4e\x81\x12\x81\x72\x84\xb9\x02\x93\x52\xd0\xf2\xb4\xfa\xc2\xa1\x94\x3d\x8f\x6e\x89\x15\xae\x35\xe7\xfe\x1d\x12\xbd\x61\x31\x32\xfa\xd2\xf4\xf9\x5b\x3c\xaf\xe3\x5d\x3c\xbf\x22\x49\x1a\x41\x97\x69\x04\x8f\xf9\x30\x3e\xc1\xbc\xb8\xef\xbc\x64\x8b\xc1\x39\x4e\x25\xb2\x65\xde\x11\x7d\x98\xa5\x69\x1a\xb1\xb8\xc9\x60\x5b\x0c\xfe\x54\x8b\x5b\x3b\x7f\xb3\x18\x5b\xb0\x1f\xa9\xa0\xa0\xad\x30\xbf\xd6\x9a\xa4\x80\xf5\x7f\xf0\xf4\x63\xd4\x93\xf0\x4d\x24\x86\xa3\x5b\xda\x59\xcf\x30\x9e\xb9\xa4\x51\x6c\x63\x36\x5d\x46\xf9\xf8\xdb\xdf\xa2\xf5\x57\xbf\xd7\x41\x94\xcc\x22\x65\x2a\x1c\x06\x8e\x31\x4d\x89\x36\x40\xb4\xb9\xe8\x9d\x6c\x49\x51\x41\xc4\xc2\x8c\x51\x7b\xf0\xf9\xf0\xbd\x51\xb1\x2c\xaa\xb5\x96\x9b\xe1\xe0\xa0\x98\x9a\x9b\xb6\xe9\xa8\xd3\xd7\x64\x8f\x6b\x0c\xc6\x89\xc4\xdd\x1d\x49\x1e\x6d\xea\xbc\x60\xf1\x23\x7c\xc6\x8e\x0f\x5c\xae\x9a\x1e\xf5\x9f\x57\xec\x64\xe9\xdd\x93\xf9\x8a\x51\x8b\x62\x6b\x38\x61\xaf\xc8\xf1\x0d\x50\xfe\xda\x25\xc1\xf3\xd6\x3d\x25\xc5\xa5\x32\x29\x7a\x2c\x0a\x2b\x51\x43\x7c\x60\xa4\x10\x9a\x20\x82\x78\x67\x5f\x77\x65\xe6\xba\x2a\x32\xb0\x07\x57\xd0\x96\x4c\x46\xa1\x2e\x49\x9f\xb4\x3d\xfd\x85\x41\x56\xa1\x97\x86\xb2\xe6\x75\xdd\x1c\x83\x82\x99\x50\x56\x6e\x1e\x3c\xf8\x7a\xd4\x88\xc0\xdf\xaf\x8d\x72\x64\x1f\x5e\xd6\x2f\x53\xa8\xb3\x4a\xa0\x6f\x78\xb7\xed\x74\xa6\x52\x7b\x83\xcf\x48\x91\x1a\x55\xae\x27\x63\xe8\x37\xd8\x32\x6b\xe0\x1f\x18\x9f\x2e\x9e\x48\x48\x95\x4e\x60\x6f\x4a\x35\x77\xd5\x2b\xc6\x3b\x4c\xf5\x0f\x29\x29\x84\x22\x9d\x53\x1d\xbe\x4b\x00\x03\xbb\x41\x3c\xcc\x25\xaf\x2e\xd1\xf3\x96\x58\x7e\x0d\x3d\x8d\x96\xb6\xc9\x4a\x93\xfb\x28\x3d\xaf\x27\x29\x4f\x9e\xca\xc3\xda\x0b\x2f\xc0\x88\x10\xbb\x39\x22\xa4\xd1\x68\x66\x9a\xfe\xdd\xef\x6d\xa8\x6c\x41\x72\xdf\xaf\x7a\xe5\x90\x55\x2b\xf3\xa8\x19\x2f\xb7\xc1\x13\x18\xfc\x60\x72\x5b\xf5\x58\xa5\x7d\x4a\xd8\x17\xda\x4f\xb8\xf1\x73\x88\x48\x92\x89\xce\xc7\x58\x58\x26\x7f\x36\xbc\x3d\x69\xf0\x7b\xd0\xd3\x95\x02\xae\xe6\x56\xb6\x50\x4b\xfa\x6b\x97\x3e\xcd\x78\xd8\xc0\x8b\x8e\x6f\x33\x8c\xa5\x3c\x49\xb7\xc3\x12\xf7\x4f\xb0\x4c\x4b\xf2\xcf\x44\x03\xbb\xeb\xde\x53\xac\x45\xdf\x86\x93\xf6\x15\xef\x67\x82\x38\xef\x5a\x8c\x20\x22\x45\x2a\x41\xe7\x9f\x4c\x6e\xd9\x64\x65\xd9\x6d\x65\x4e\x28\x7a\x33\x69\x73\x65\x00\x2a\x0d\x80\x43\xe6\xed\x77\x5c\x6e\x0f\xec\x60\xd6\xdb\x48\x39\x33\xb4\xd0\x4f\xf2\x51\xeb\xc8\xdd\x2b\x2f\x84\x5e\x47\x2a\xff\xd2\x2a\xc0\xc0\xa1\x68\x67\xaf\xaf\xcb\xea\xa0\xe0\xd7\xa0\x3c\x09\x3e\xcc\xa4\xcf\xff\x4b\xd6\x2e\x76\xff\x1f\x1b\x2a\x6b\xc8\x2b\x19\xd1\xbd\x53\x89\x1a\xf1\xfb\xd2\xcd\xa0\x1f\x49\x3a\xfa\x86\x44\x46\xe8\x84\xe2\x53\xdd\xf8\x98\x43\x9f\x83\x0e\x66\x8b\x4e\x8b\x2a\x5f\x45\x66\x35\x57\x4c\x5d\x2d\xab\x8f\x15\xd9\x77\x4b\xd8\x8c\xec\xfb\xf7\x99\x5a\xe6\x44\x77\xed\xdd\xb1\x36\x78\xd3\x2a\x1b\xee\xb0\xbf\x43\x09\xf1\x78\xd4\x02\xab\xd7\xf3\xcf\x27\x9e\x5c\xdc\x62\xf4\x3a\x24\x85\x9d\x57\xea\xef\x0c\x2d\xf4\x76\xca\x2c\x85\x85\x85\xb4\x33\x0d\x0d\xc9\x13\x11\xbb\x5a\xe6\x31\xcc\xea\x8c\xaf\x9a\xf6\x27\x9c\x3f\x3a\x75\xad\x4b\x6d\xb2\x86\x9b\x16\x51\x03\x3a\xe4\x8a\x39\x2a\xfc\x87\xd6\x59\x6a\xbd\xe1\xad\xdb\xc1\xbe\xd1\x46\xd3\x48\x69\x51\x7b\x03\x6c\x11\x95\x89\x2a\x48\xe5\x1c\x81\x19\x9f\x8e\x38\x30\x1f\x6f\xbf\xe7\x9d\xdc\x88\x0f\x11\xbb\x33\xfe\x05\xa8\x1b\xa0\x9f\xec\x96\xa9\x60\x88\xd0\x28\x99\x9c\xc5\xd6\x68\xcf\x01\x1d\x96\x80\xe5\x67\x33\x2f\xea\x17\x16\x12\x11\xb3\x08\x67\x1d\x79\x9b\xa6\x58\xa3\xb5\xe7\xf8\xdb\xf7\x12\x9e\xbe\x7c\x63\x51\xa1\x2b\xd0\xef\xd2\xdb\x2f\x4f\x04\xe1\x0e\xfa\x8f\xf7\x94\x96\x66\x4b\xe9\xde\xcb\xdd\x0d\x14\x54\x88\xae\x44\x9a\xad\x87\x62\x3c\xa2\x96\x1c\xd7\x90\x6e\x48\x37\x5f\x00\xaa\xa3\xf1\xba\x82\x02\xb8\xc3\xbb\x45\x4a\x08\xc4\xf7\xd1\x0f\x1b\xa0\x8b\x2c\x99\x54\x22\x55\x27\x5d\xc0\xfa\x84\x06\xb7\xa9\xfd\xb1\xb8\x36\xc5\xce\x48\xcb\x12\x7d\xbe\xf0\x06\xdd\x0e\xd6\xea\x86\x81\x75\x3c\xd4\x61\x33\x6e\xff\x16\x9b\xd4\xcc\x72\x63\x36\xc7\xf9\x68\x6f\x94\xa8\xf2\xbb\x07\x75\xf9\xab\x7f\x21\x81\xeb\xad\x45\xdd\xdb\xb7\x54\xa6\x60\x32\x4f\x9c\x2b\xb7\xda\xc0\xda\xd5\xe3\x0d\x73\xa2\x8d\xdc\x0a\x22\x39\xd2\xae\x06\xdb\xab\x81\x9b\xb2\xe9\x1e\xec\x3b\xa4\xc2\x17\x74\x24\xa9\x4a\x50\xcb\x91\xc0\x85\xdf\xdb\xf0\xa9\xbe\xbe\xbe\xa3\x17\x06\xf4\xf0\xfb\x25\x73\x42\xf3\x30\x4e\xb5\xe3\x25\x57\x87\xea\xee\x61\x05\x75\x78\xa5\x60\x06\x12\x60\x9d\x32\xd3\xc2\x92\x7c\x02\x9b\xe3\xbe\xfd\x31\xea\xca\x71\xe1\x44\x5e\x31\xb9\x22\x24\x9b\x63\xad\x87\xab\x21\x44\xc4\x98\xbd\x87\xb8\x09\xd5\xd3\xa5\xdb\x05\x52\x05\xa3\x9f\x67\xed\x1c\xee\x44\x47\x53\xe6\x79\x86\x67\x21\xc9\xac\x90\xf9\xa3\x3b\x80\x1a\xa2\x85\xa5\x8f\x61\x4d\xf3\x93\x4b\x30\x7b\x7a\xb5\xce\xdf\xfc\xf8\x1f\x9e\x59\xbd\x67\x2f\x82\x49\xe8\x20\xd2\x61\x16\x93\xd6\x98\x63\x52\x17\x48\xc8\xd0\x92\x08\x6d\x50\x08\x37\x37\x3f\x7b\x70\xc7\xbd\x94\xa7\xfc\x5d\x23\x4c\xa9\x58\x21\x76\x50\xd8\x27\x99\xde\x00\x4e\x7f\xe7\x7d\xfe\xe6\x34\x8d\x3e\xb6\xd8\x6e\xa6\x6d\x80\xbc\x58\x92\xb3\x21\xf3\xed\xb1\x39\x2c\x3f\x3e\xff\x41\xa3\x0c\xc3\x6e\x4b\x5b\x5c\x6b\x69\x9f\x7b\xa0\x94\x19\x9f\xf0\x7f\x5f\x92\x45\x1f\x34\x7f\xfa\x0a\x6c\xbf\x7e\x45\x91\x90\x4b\x4d\xfe\xee\x51\xcf\x75\x65\x79\x74\x13\x44\x59\x38\x42\x7c\x96\x92\x97\xc5\x7a\xab\xa0\x7e\xa5\xea\x9e\xec\xc7\xef\x02\x9f\x58\x04\x59\x2c\x23\xdf\x0d\xab\x89\xca\x3a\xac\x7b\xab\xf0\x6f\xaf\xca\x31\xd5\x2d\xa7\x4f\xf2\x30\x79\xa3\x54\x0a\x35\x56\x59\x3b\x06\x6c\x57\x6c\x8e\x39\x48\xef\x78\x16\xe5\x9a\x47\xc1\x04\xd2\xff\x31\x5b\x24\xb9\x74\x7b\x9d\x30\x3d\xe7\x80\xac\x9f\xb9\x29\x18\x65\xf4\x0a\xbd\x19\xab\x7c\x03\x7f\x67\xe1\x15\x24\x87\x93\xdd\x74\x26\x05\x43\x1a\xfd\x33\x18\xac\x85\x04\x26\x2b\x5e\x67\xf0\xeb\xd6\x53\x5a\x25\x45\xe5\x1f\x4e\x64\xe8\x6f\xaf\x27\xd3\x2c\xd5\x8f\x31\xa5\x79\x92\x33\x71\x58\xa8\x4b\x23\xc4\xab\xa8\xac\x8e\xe4\xc8\x4b\x82\x6e\x86\x70\x89\x9f\xb6\xd9\x35\x64\x2f\x10\xf4\x0d\x9f\x2e\x1e\xe7\x47\xbb\x17\xe7\x3f\x37\x0c\x5f\xdf\x73\xf2\x98\xf9\x27\x41\xda\x60\x32\x1b\xc1\x04\x70\x7d\xd4\x2b\xb6\x71\xbe\x92\x66\x61\xd2\xeb\x81\xcb\x62\x84\x8b\xb6\x2c\x7c\xd4\xde\x90\x31\x1d\x00\x1a\x32\x5d\x3c\xb5\x5f\xe7\x2c\xa7\x43\x3d\x15\xbf\x3a\x9d\xf2\xc4\x5e\xc3\x26\xb9\x64\x4f\x17\xfd\x72\x63\x0c\x1e\xcd\xbd\x72\x1a\x03\xf1\xa5\x3d\xb2\x91\x5b\xb1\x02\x2c\x5a\x9c\x3d\xbd\x6f\x0e\x36\x60\xf7\x08\x3d\xba\x17\x61\x8b\x41\x35\x1a\xfc\xce\xcd\xed\xce\xf1\xc6\xf9\x1b\xac\x0a\xb4\x6a\x4c\x8f\xd0\x23\xf1\x78\x8a\xcc\x20\xcf\x49\x1a\xfc\x16\x24\x1b\xff\x9c\xdf\xdf\xe7\xca\x67\x38\x7a\xe2\x2d\x55\x52\x0c\x97\x43\x4a\xa8\x92\xc8\x0c\xf9\xeb\x4e\x3c\x4f\x13\x0d\xa3\x2c\xea\x3d\x47\xf8\xf2\x77\x1f\x3d\xb9\x3f\x0d\xde\xc6\x4b\x82\xf8\xec\x62\xd1\x68\x33\x6d\x02\x15\x4e\xd6\x31\x1b\x43\x5b\xb2\xb1\x6c\x17\x69\x34\x6e\x86\xca\x75\x89\x59\x7b\x1b\x78\x52\x51\xac\xb0\xa5\xf0\xf5\x25\x36\x40\xd0\x68\x18\x6c\xb7\x97\x4f\xe5\xa3\x70\x3c\x1e\xaf\x64\x09\x79\x08\x8c\x60\x9d\x34\xaa\x56\x2e\xb3\x3e\x1b\xfc\x16\xd4\x07\xac\x56\x82\xbc\x62\xcb\x0d\x33\x6d\x82\xe0\x89\x8c\xfb\xcf\x0c\x1d\x2f\xab\x41\x07\x05\x5a\x63\x46\x06\xac\x07\xb6\x2a\xc9\x8c\x53\x2b\x6c\x04\x6d\xcf\x54\x36\x83\xdd\x3e\x6f\x94\xa5\x64\x24\xfc\xd0\xfd\xcd\xcc\x21\x6d\x24\xf1\x78\x31\xbe\x2d\x35\x98\xcb\x6d\xcb\x61\x3b\x38\x38\xbc\x9d\xe9\x83\x64\x0e\x5c\xc0\x94\xc6\xca\x6a\xe7\xcf\x76\xc7\x0d\xa0\x4b\x0f\x77\x71\xf0\x78\x3c\x41\x66\x38\xd9\xbd\x32\xfa\x16\xbd\x74\x57\xa4\x91\x78\x15\x93\xb1\xc7\xdd\x9b\xc1\x35\x15\xfc\xa8\x57\xa8\x33\x9e\xb3\x9b\xbc\xc1\xb0\x58\xf6\x61\x1a\x6b\x04\xaf\x8a\x2e\xc7\x51\x09\x97\xbd\x4f\x4b\x9d\x63\x33\x88\x1b\xa0\x5d\xc9\x95\xb0\xc3\xd2\xe1\x45\x2c\xa2\x76\x2d\xcd\xb5\x8c\x11\x19\xc8\xf1\x95\x8c\x27\xf6\x68\x27\xb4\x8a\x5a\xf7\x6c\x26\xbd\x9e\x0d\x0f\x14\x4b\x1e\x03\x9d\x94\x13\xf2\xaa\x01\xfe\x96\x72\x7e\x90\x49\x2d\x0e\x3e\x5a\xd5\x73\xc4\x95\x97\x6d\x66\x5c\x3e\x50\x40\x1b\x00\xde\xaa\x7d\x7a\x20\x6f\xf3\xad\x5a\x8d\x7e\x35\x78\x15\x88\xea\x36\x54\xe7\xc5\x5c\xb8\x90\xee\x6c\x54\xe6\x59\x31\x66\x1a\xa3\x5f\xed\x2f\x3d\xd7\xe0\x66\x4f\xea\xb0\x1e\xa2\x2d\xa9\xaf\x03\x49\x7d\x73\x23\x5c\x79\xf1\x28\x73\x89\x39\x25\x0a\x3f\x5e\x12\xe5\x42\xca\x9f\x90\x49\xd3\x39\x87\xea\x0c\xc6\x1d\x8f\x3c\xf3\xfe\x78\x6f\xb2\x8f\xfd\xc7\xc9\xfe\xcd\xed\x8c\x44\x5e\x94\x2e\x21\x5e\x77\xfb\x0c\xa2\x70\xbc\xfa\xfd\x42\x4f\xd1\x32\x7f\xdb\xed\x34\x85\xde\xcc\x80\x1b\x54\x36\x37\xfd\xf1\xd4\xe7\xd9\x9f\x4e\x44\xb6\x0e\x7b\xdf\x24\xfd\x8b\x9c\xfa\x3e\x1a\x7c\xbb\xda\x7e\x3f\x44\x1c\xa6\x4f\x5e\x81\xf5\x72\x46\xab\xc7\xa2\x62\x87\x52\xf6\x88\xcb\xd2\x0b\x68\x7a\x87\x3f\xfd\xbc\x3c\x7f\xe1\x60\xdc\xfe\xd8\x31\x0e\x3e\xe9\x08\x1c\x1b\xd2\x03\x29\xd8\x97\x82\x60\x7e\xa3\xfd\x05\x47\xcd\xff\x86\xa3\x28\xf4\xa8\x2c\x8a\x3a\xc4\x1a\x52\x7a\x96\x6a\x5a\x6c\xff\x0f\x61\x3b\x62\x4b\x1f\x4d\xe2\xec\x24\x15\xd6\xe4\xc2\xd6\x49\xaa\x82\x7d\xe1\xbc\x3b\xc3\x04\xc3\x78\x1c\x30\x92\xad\x05\x66\x97\xa5\xa5\xfb\x2c\x6c\xc7\xc2\x15\xe2\x4e\x65\xbd\x1b\xd4\x81\x8f\x47\x98\xaf\x7c\xf1\x7b\xd6\xe8\x8e\x6b\xb2\x20\x1e\xcc\xb1\x51\xad\x80\x81\x63\x0c\x70\xcd\xfa\xb5\x67\x4d\x3e\x7e\xcb\x8e\x6e\xec\xe9\xe1\x89\x10\xed\xf3\xe1\x96\x84\x23\x26\x67\x6b\x77\x61\xb5\x11\x9e\xb8\xbf\x08\x03\x75\x9e\x80\xc2\xdb\x5d\xae\x66\x7b\x91\xce\xb6\xa1\x51\x59\xe6\x67\xab\xa8\x82\x32\x4e\xc6\x8e\x6b\xee\x8f\x26\x27\x75\xcf\x67\xba\xc5\x5b\x3c\x73\x89\x1a\x49\x96\x21\xf1\xb1\x9a\xf2\x77\xa0\xd2\x03\xde\xa9\x77\xad\xfd\xf9\x8d\x2f\xab\xbd\xf7\x6b\xf7\x1c\x41\x01\xe6\x6a\xa3\x71\x15\x04\x02\x1e\xa9\x8c\x80\xe0\x90\xb9\xb2\xcf\x0a\x87\x8f\x8c\x1a\x91\x78\x28\x82\x23\xee\x58\xd8\x5c\xe5\x88\x39\x65\x23\x29\x38\xfe\x12\x0f\xb7\x96\xbd\xd9\xd2\x99\x5e\x42\xaf\x70\xef\x62\x4d\x69\x81\x3b\x7f\xd0\xdb\x20\x69\x1e\x92\x16\xdc\xfa\x7f\x45\xc9\xb8\x94\x07\xcd\xe8\x4f\x81\x65\x0e\x18\xab\x6c\xde\x49\x63\x24\xbf\x98\x2d\x92\x64\x82\xcb\xf6\xd8\x02\x3f\x65\xc8\x1a\x49\x72\x9a\xc8\xb8\x10\x74\x6f\x76\xb6\xaf\x7d\xd8\x43\xe5\x95\xbc\x52\xb3\x6a\x7a\xfa\xb5\xed\xb0\xa4\xa8\xd0\xfe\xa8\x6b\xee\x63\x30\xd7\xa8\x65\x9e\x01\xae\x23\x23\x09\x17\x7a\x6a\xff\xb6\x59\xaa\x39\x08\x94\x6a\x28\xaa\xb1\x89\x86\xee\x0e\x12\x1f\x6e\xd0\x9c\xc0\x00\xcb\xef\xbd\xc0\x2a\xda\xf9\x55\xb3\x7a\xc6\xc7\x01\xe6\xca\x51\xbc\x6f\xd3\x3c\xb0\x4b\x03\x7c\x26\x03\xc3\x1e\xb2\x86\x7f\x84\xfa\x71\x42\x05\x30\x32\x20\x32\x70\x52\x90\x7f\x32\xbb\x6d\xf3\xd8\x0b\x91\x2d\xb1\x93\x5e\xf0\xc3\x6f\xae\xa2\xc5\x36\xbb\x7d\xf9\x45\x51\x77\xb6\xdb\x5e\x74\xbf\x41\xed\x27\xf4\x2b\x1f\x89\x2b\x64\xa9\x57\xd7\xbc\x37\xa5\xfa\x2a\xef\xa3\xcf\x38\x3b\xa3\x5d\x21\x90\x32\xc0\x32\x61\x60\x57\x8c\xb9\x02\x6d\x5f\x46\xef\x78\xed\x98\xb3\x3d\x8c\x6f\xbf\xf3\x69\x83\x0c\xfa\x1b\x3a\xb4\xfc\x92\x01\x71\xf7\x1e\xec\xd7\x7e\x9b\x66\x1d\x46\x38\x58\xca\x62\xb1\x84\x9c\x54\x52\xc4\x29\x5e\x60\xb9\xd9\x22\xdc\xb4\xcc\xfb\xa2\xd3\x95\x8d\xd7\x42\x31\xb9\x05\x1d\xeb\x83\xbb\x68\x4a\x2b\xb7\x63\xb8\x51\x9d\xe1\x5a\x03\xc0\xd9\x46\x21\x5c\x11\x6e\x89\xde\x40\x51\x65\x6a\x2e\xea\xc8\x80\x63\x0e\x6c\x63\x95\x1c\x1b\xfd\x17\x44\xb6\x5a\xfc\x87\x24\x92\x69\x3a\x87\xab\x38\x3d\x05\x60\x39\xd0\xf3\xc4\xa4\xe8\x79\x1f\x9c\xa4\xc2\xe3\xf1\xf8\xbc\x01\x9d\x47\xfe\x62\xeb\x3b\xae\xa0\xb7\x42\x76\x95\x94\x96\x5d\xf7\x0a\x95\x29\x09\xd1\x6d\x82\x90\x42\xfa\x98\x65\x2c\x45\x99\xee\xfb\x15\x76\x30\x46\x26\x0e\x5e\x20\x4a\xa7\xcb\x9a\xde\x09\x6b\x56\x41\xbc\xa9\x8a\x64\x71\xda\x2a\x8b\x31\x2d\x25\x53\xaf\xe2\x18\x2d\xef\x4e\x79\x6f\x80\x8e\xb0\x19\x85\x74\xcf\x52\x86\xe7\xe9\x1b\x85\x3d\x61\x73\xcd\x4e\xf4\x91\xd6\xce\x94\x0f\x29\xf6\x8d\xca\xfc\xbf\xf7\x49\x6d\x4f\x69\xe9\x75\xd8\x04\x8f\x2b\x1e\x4e\x07\x83\xdd\xc8\x30\xb5\x7f\xe8\x30\xe3\x93\xe8\x17\x4b\xd9\x4b\xd9\x5a\xc1\x90\x8a\xb4\xa8\x51\xa7\x1a\xea\x4d\x3e\x00\x0a\x93\x0e\xb6\xd0\x09\x70\x77\x07\x17\x4b\xe1\x63\xd8\xdd\x48\x9f\xee\x75\x93\x6b\x37\xf3\xc9\x2d\xb1\x84\xf0\x27\xd6\xf1\x73\x8f\x4b\x91\xc7\x1f\xdf\x4c\x4a\x87\xc3\x4d\x8e\x1a\x21\x59\x7b\xa8\xef\xbd\x8f\xc0\xc4\xa2\xde\xb3\xb9\x49\x3d\x79\x23\x45\x38\xbb\x4b\x12\xf4\x7f\x68\xcc\xad\x2a\xf8\xfe\xee\x8f\x2f\xea\x7b\xeb\x52\xef\x86\xc7\xf2\x47\xb2\x4b\x66\x29\xcf\x22\x15\xe0\xe4\x42\x06\xd2\xd5\x4e\x42\x19\xdd\xbe\xbf\x89\xe3\x58\x04\xf9\xce\xb5\x51\x44\x96\x7e\x18\xe6\x57\x82\xb2\xcc\xf3\x80\x49\xac\x3b\x1b\x19\x1e\x7e\xfc\xf1\x4d\x32\x1c\x0e\xdb\xc5\xe2\x41\x28\x29\xd7\x10\x0d\x3b\x19\x78\xc4\x26\x0a\x19\xa1\xb8\xee\xe3\x8d\x91\x2d\x44\xc1\x0c\xd4\x8d\x6a\x5a\x45\x79\x36\xcf\x6c\xe9\xfe\xaf\xff\xa8\xf4\xcb\x4c\x38\xf2\xbd\x20\x8d\x00\x80\x70\xb8\xc6\xb3\x54\x23\xf0\x83\xc6\x34\xe2\xc0\x65\xdf\xbc\x26\xa1\xcd\x29\x4d\x09\x78\x2a\xb3\x2a\xbc\xf6\x14\x5b\x7c\xaf\x0d\xf8\x27\xda\x9b\x38\x84\xfd\xc7\x0d\x70\x55\x73\x60\x98\x47\x6f\x83\x8d\x84\xc9\x38\x4d\x72\x36\xa8\xb0\xaa\x99\xf5\x6a\x8f\x03\x76\x6c\x4c\x23\x88\xad\x1e\xed\xa7\x53\x42\x54\x41\x21\xdc\x95\xcc\xec\xc1\xa5\x76\x88\x77\xf5\xa0\x98\x29\x1d\xc5\x36\xad\xa1\x47\x1e\xd7\x94\x15\xf5\xda\x80\x3f\x17\xe2\xe1\xb6\x05\xfb\xd4\x5b\x01\x76\xed\x6a\x43\x0e\xba\x4f\x12\x2b\x83\xed\x66\xd9\x0e\x19\x19\x19\xc7\x10\x38\xec\xb6\xf4\xbb\xdd\x01\xbd\x3f\x60\x47\xb9\x3f\x37\x3c\xf0\x88\xaf\x15\xe4\x97\xbd\x41\xa2\xff\xfa\xb5\x4b\x8e\x20\xd0\xe6\x7b\x02\x32\x82\x3c\x2e\x9a\xe1\xb0\x10\x2d\xd1\x31\x37\x40\x31\xbd\xf6\xfb\x2a\x7b\x1b\x56\x88\x89\x29\x91\xcd\xfc\x65\x92\xdb\xa0\x99\x96\x29\x41\x65\x6e\x89\xd0\x51\xd9\x5f\xc9\xeb\x57\x2a\x9f\x57\x64\xbc\x88\x58\xb0\xea\x1d\xea\xd9\xf4\xc5\xea\x95\xd5\xf6\x45\x1f\xf8\xca\xc5\xad\x91\x2d\x09\xaa\xdf\xd3\x18\x60\xf0\x6a\xf0\xeb\xf7\x34\xaf\xde\x1a\xcb\x16\x56\x9b\xe9\x8a\x72\xdc\x6a\x86\x9c\x49\x63\xc3\x9f\xbe\x8a\xbd\x98\x4d\x55\xc4\x9d\xe2\x25\x41\x20\x1e\x2a\x8f\x96\x26\x28\x78\x28\x38\x36\x61\x30\x79\x1c\x31\x43\xad\xf7\x29\xce\xb8\xdf\xa6\x8e\x8f\x48\x08\x33\xdf\xce\xa6\x17\x07\xeb\x9d\x66\x5e\x52\x30\xba\x0e\x2f\xe2\x42\x10\xab\x99\x11\xac\xcd\x9c\xfd\x7a\x5b\x73\x6b\x46\x14\xf6\x91\x4d\x14\x3d\xc7\x16\x15\x61\x69\x9e\x99\xab\x9b\x20\x12\x02\xd7\x4b\x60\x13\x34\x1e\x14\x0c\x06\x83\xdd\x3c\x6c\x9a\x78\xd1\xce\x40\x70\x19\x50\x8a\x79\x03\x82\x63\xbc\xe4\xea\x21\xc6\x72\xaa\xfb\xa7\x09\xde\xe6\x33\xf5\xf5\xd5\xd0\xff\x9f\x66\xcc\x59\x36\x75\xd6\x79\x4d\xcf\x99\x5b\xce\xae\xbd\x77\xf9\xde\xe5\x67\x69\xe9\x7b\xce\xfd\xf9\x3e\x4d\x7b\x07\x83\x64\x8d\x9c\xe8\xcf\xeb\xfd\x67\xfb\x45\xd5\xcb\xf7\xbc\xb3\x5a\x64\xed\x9b\xbd\x16\xd4\x4c\xbc\x06\x6f\x25\x66\xc2\x5a\x89\x5d\x47\x5c\xb2\x94\x8b\x05\x05\xaf\xe6\x67\x6e\x39\x3e\x13\xd4\x5e\xfb\x38\x35\x2d\x39\xc8\x50\x76\xeb\xbe\xe5\xaf\x0a\x8f\x75\x1e\x3c\x3e\xeb\xf6\x44\xc3\xfb\xf7\x76\xac\x7e\x5c\x6c\xf8\xf7\x3f\x03\xb4\x95\x68\x89\x32\xa7\xfd\x6a\xeb\xf2\xcf\x71\xf7\xbe\x6d\x3f\x73\x9a\xad\x8f\x81\x0d\xbc\x7e\x7a\xda\x96\xb5\xe9\xcb\xea\x4d\xff\xb8\xb8\x3d\xb2\x39\x5e\xf1\x09\xd1\xc5\xf7\xd3\x17\x97\x17\x96\x49\x3e\xfe\x51\x36\x6c\xfe\xd9\xcc\xeb\xb5\xe7\x67\x76\x82\x4a\x5e\xc1\x6b\x05\x6b\xce\x83\x3a\xda\xfe\x01\x5f\xa5\x0a\x35\x2f\x42\xcb\xc0\x45\xa6\x3b\x67\x7e\x34\x34\x38\x1e\x1c\xfc\x72\x5d\xf1\xa4\x29\xb3\xce\xa5\xca\x4f\x56\xfd\x74\xaf\x28\x65\xe6\xd6\xb7\xc6\xc6\xc6\xd6\x9f\xad\x67\xf4\xfe\xce\x6d\xff\xcf\xb0\x16\x5a\x08\x4e\x9e\xb4\x65\x69\x5a\xf6\xfe\x75\x77\xbf\x0a\x3e\xaa\x3e\x5e\x31\xef\x75\xd8\xe6\xca\x23\x65\xdd\x51\xda\x92\x53\x97\x0b\x77\xf6\xb7\xf7\x69\xf6\x9f\x39\x52\x1a\xbd\xed\x59\xed\xef\x9f\x33\x40\xfe\x8d\xf8\x71\x6a\xb2\xdd\x92\xdc\xbe\x7b\x72\x0b\x5f\x89\x3c\x0c\x5e\xb6\xd7\xfc\x49\xdc\xe6\x8b\x9e\xf3\xae\x76\xfe\xfb\xfd\xba\x76\xf7\xb7\xb6\xa8\x59\x33\x1e\xed\xec\x76\x59\xb4\x65\xc6\xbc\xaa\x8c\x8a\xb8\xb5\xb3\x65\xdf\xc6\xc5\xbe\x9d\x2d\xfb\x36\x73\xed\x7e\xd3\x97\xc6\xd6\x6b\x5c\xa2\x92\xb4\xfb\xa3\xdf\x0a\xdf\xf4\xca\xf2\x89\x36\x9b\x39\xc3\xf7\x91\xd9\xc7\x5b\xd3\xa6\xaf\xf3\xba\xf6\x75\xee\xb5\x8b\x62\x9d\x3f\x3b\x4b\x8e\x3c\x33\x3a\x7a\x53\x6c\x4b\x98\xb1\xf2\x3e\x9d\x48\x4b\xf3\x9e\x8a\xd7\xf9\xf6\xa1\x8b\xb7\xb8\xb8\xcf\xfb\x78\x37\xeb\xf8\xca\xff\x0c\x17\xe3\x0f\x3f\x7c\xfc\x28\xf9\xe5\xb2\x65\x69\xca\xeb\x3e\xdf\xcb\xcd\xbf\x7f\x6e\x2e\xa4\x97\xda\x51\x78\xe6\x59\xf2\xa3\xe4\x79\x1f\x2d\xd5\x40\x9d\xef\xfb\x47\x97\x59\xd7\x1a\x40\x9a\x8e\x41\x91\x45\x4f\xce\x4f\x2a\x7a\x36\x63\xce\xe4\xfd\xd2\x33\xd6\xf8\x7f\xbb\x5c\xfb\x68\x0d\x6c\xf0\xf4\x65\xb7\xe8\xe7\x38\x4d\x8f\xbb\xcb\x6f\xbf\x95\x4b\xab\xf9\xd6\xba\x5a\x6e\x79\xfc\x27\xad\x1d\x31\x5a\x85\x2b\xa3\xb3\x26\x4f\xcb\xfe\x7a\x4f\xb9\x6a\xe6\x67\x91\x2d\x47\xa2\x94\x92\xcf\xb7\x43\xfb\xdf\x29\x45\x3b\x23\x7e\x44\xfc\x67\x10\xba\x6b\xb6\x75\xf1\x8b\xe3\x52\xb3\x61\x23\x9b\xe0\xc6\xe3\x9b\x99\xee\xcf\xcf\x4f\x9e\x38\xe9\x26\xa8\x03\x6e\x2c\xb8\x73\xd6\x25\x3b\x4d\xe1\x9f\xc9\x81\x6f\x8e\x86\x77\x70\x6c\x39\x9a\x6c\x64\x5b\xf8\x78\xeb\xdb\x88\xb5\x69\x9f\x33\xaf\xfb\xb8\x3d\x7f\x5c\x2c\x2f\x10\x66\xeb\xff\x26\xf4\x43\x85\xc9\xa3\xb0\xdc\xbc\x9f\x6f\x05\xad\xbf\x1d\xdf\x9f\xe5\xf3\xea\xa2\x70\xbc\xed\x42\x50\xbf\x58\xa2\x67\xad\xc0\x89\xa7\x45\x2b\x8f\x1c\xb7\x2c\xf2\xcd\xcf\x5c\x0f\x2e\x32\xcb\x23\x40\x45\xe6\xbc\x7f\x35\xda\xe0\xf1\x61\x48\x91\x09\xee\x88\xff\xca\x16\xb6\x35\xe9\x97\x5a\x52\xb1\x26\xcb\x76\xc6\xf7\x5b\x72\x0c\x4a\xe9\x39\x69\xee\x86\x62\x5b\x8e\x66\x47\xc7\x5d\x9b\xd1\xb1\x36\xb9\xd8\xfe\xf1\x9b\xf0\xcf\xca\x7d\x4b\x42\xaa\xea\x97\x87\xf7\xca\x77\x4f\xb2\xda\x7c\xcb\xfc\xfe\x9e\xe4\x6f\x57\xcd\x1f\xa5\xd9\xec\xca\x06\x17\xd3\x33\x6f\xfe\x94\xd8\x10\x74\xfd\x64\xc6\xba\xc5\x85\x3b\xaf\x9c\x3f\xb6\xfd\xf9\x9e\x65\xe9\x82\x33\x5f\xb8\x7f\xda\x59\x09\x2a\x33\x67\xfc\xd1\x3a\x73\x34\xf3\xfe\xed\xed\x55\xdf\xfb\x0d\xb7\x89\x6d\x4b\xef\x9b\x5a\xe1\x92\xbd\xa5\xac\x7f\xd3\x02\xa4\x12\x8b\xf9\xff\x4d\x40\x00\x00\x00\xff\xff\x6f\xd7\x75\x7d\x05\x58\x01\x00") @@ -161,12 +161,12 @@ func init() { panic(err) } - err = FS.Mkdir(CTX, "identifier/static/css/", 0777) + err = FS.Mkdir(CTX, "identifier/static/js/", 0777) if err != nil && err != os.ErrExist { panic(err) } - err = FS.Mkdir(CTX, "identifier/static/js/", 0777) + err = FS.Mkdir(CTX, "identifier/static/css/", 0777) if err != nil && err != os.ErrExist { panic(err) } @@ -254,7 +254,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierPrecacheManifest49e132b9eaa590bca3fa28bd3c0a78c8Js) + rb = bytes.NewReader(FileIdentifierPrecacheManifest01dddada522bb11335118978ee5540c4Js) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -265,7 +265,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/precache-manifest.49e132b9eaa590bca3fa28bd3c0a78c8.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/precache-manifest.01dddada522bb11335118978ee5540c4.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -384,7 +384,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJs0Ce7dce23ChunkJs) + rb = bytes.NewReader(FileIdentifierStaticJs07fc0bd22ChunkJs) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -395,7 +395,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/0.ce7dce23.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/0.7fc0bd22.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -410,7 +410,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJs0Ce7dce23ChunkJsLICENSETxt) + rb = bytes.NewReader(FileIdentifierStaticJs07fc0bd22ChunkJsLICENSETxt) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -421,7 +421,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/0.ce7dce23.chunk.js.LICENSE.txt", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/0.7fc0bd22.chunk.js.LICENSE.txt", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -436,7 +436,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJs0Ce7dce23ChunkJsMap) + rb = bytes.NewReader(FileIdentifierStaticJs07fc0bd22ChunkJsMap) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -447,7 +447,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/0.ce7dce23.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/0.7fc0bd22.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -462,7 +462,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJs10Eee7136aChunkJs) + rb = bytes.NewReader(FileIdentifierStaticJs103af7223eChunkJs) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -473,7 +473,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/10.eee7136a.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/10.3af7223e.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -488,7 +488,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJs10Eee7136aChunkJsLICENSETxt) + rb = bytes.NewReader(FileIdentifierStaticJs103af7223eChunkJsLICENSETxt) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -499,7 +499,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/10.eee7136a.chunk.js.LICENSE.txt", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/10.3af7223e.chunk.js.LICENSE.txt", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -514,7 +514,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJs10Eee7136aChunkJsMap) + rb = bytes.NewReader(FileIdentifierStaticJs103af7223eChunkJsMap) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -525,7 +525,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/10.eee7136a.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/10.3af7223e.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -540,7 +540,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJs815de8a91ChunkJs) + rb = bytes.NewReader(FileIdentifierStaticJs8Cecd3c0cChunkJs) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -551,7 +551,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/8.15de8a91.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/8.cecd3c0c.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -566,7 +566,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJs815de8a91ChunkJsMap) + rb = bytes.NewReader(FileIdentifierStaticJs8Cecd3c0cChunkJsMap) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -577,7 +577,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/8.15de8a91.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/8.cecd3c0c.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -592,7 +592,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJs9A3e68deeChunkJs) + rb = bytes.NewReader(FileIdentifierStaticJs9F59f1e79ChunkJs) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -603,7 +603,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/9.a3e68dee.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/9.f59f1e79.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -618,7 +618,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJs9A3e68deeChunkJsLICENSETxt) + rb = bytes.NewReader(FileIdentifierStaticJs9F59f1e79ChunkJsLICENSETxt) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -629,7 +629,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/9.a3e68dee.chunk.js.LICENSE.txt", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/9.f59f1e79.chunk.js.LICENSE.txt", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -644,7 +644,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJs9A3e68deeChunkJsMap) + rb = bytes.NewReader(FileIdentifierStaticJs9F59f1e79ChunkJsMap) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -655,7 +655,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/9.a3e68dee.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/9.f59f1e79.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -670,7 +670,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJsContainersGoodbyeA72514c2ChunkJs) + rb = bytes.NewReader(FileIdentifierStaticJsContainersGoodbyeA2821852ChunkJs) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -681,7 +681,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/containers-goodbye.a72514c2.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/containers-goodbye.a2821852.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -696,7 +696,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJsContainersGoodbyeA72514c2ChunkJsMap) + rb = bytes.NewReader(FileIdentifierStaticJsContainersGoodbyeA2821852ChunkJsMap) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -707,7 +707,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/containers-goodbye.a72514c2.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/containers-goodbye.a2821852.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -722,7 +722,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJsContainersLogin35b164c4ChunkJs) + rb = bytes.NewReader(FileIdentifierStaticJsContainersLogin17c1c6d2ChunkJs) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -733,7 +733,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/containers-login.35b164c4.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/containers-login.17c1c6d2.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -748,7 +748,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJsContainersLogin35b164c4ChunkJsMap) + rb = bytes.NewReader(FileIdentifierStaticJsContainersLogin17c1c6d2ChunkJsMap) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -759,7 +759,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/containers-login.35b164c4.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/containers-login.17c1c6d2.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -774,7 +774,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJsContainersWelcome82ba06c6ChunkJs) + rb = bytes.NewReader(FileIdentifierStaticJsContainersWelcomeFf57a351ChunkJs) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -785,7 +785,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/containers-welcome.82ba06c6.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/containers-welcome.ff57a351.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -800,7 +800,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJsContainersWelcome82ba06c6ChunkJsMap) + rb = bytes.NewReader(FileIdentifierStaticJsContainersWelcomeFf57a351ChunkJsMap) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -811,7 +811,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/containers-welcome.82ba06c6.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/containers-welcome.ff57a351.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -826,7 +826,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJsIdentifierAppDc3ded3fChunkJs) + rb = bytes.NewReader(FileIdentifierStaticJsIdentifierAppE3390da8ChunkJs) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -837,7 +837,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/identifier-app.dc3ded3f.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/identifier-app.e3390da8.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -852,7 +852,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJsIdentifierAppDc3ded3fChunkJsMap) + rb = bytes.NewReader(FileIdentifierStaticJsIdentifierAppE3390da8ChunkJsMap) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -863,7 +863,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/identifier-app.dc3ded3f.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/identifier-app.e3390da8.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -878,7 +878,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJsIdentifierMain87e8e905ChunkJs) + rb = bytes.NewReader(FileIdentifierStaticJsIdentifierMainB0470b03ChunkJs) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -889,7 +889,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/identifier-main.87e8e905.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/identifier-main.b0470b03.chunk.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -904,7 +904,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJsIdentifierMain87e8e905ChunkJsMap) + rb = bytes.NewReader(FileIdentifierStaticJsIdentifierMainB0470b03ChunkJsMap) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -915,7 +915,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/identifier-main.87e8e905.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/identifier-main.b0470b03.chunk.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -982,7 +982,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJsRuntimeMain6429ebf0Js) + rb = bytes.NewReader(FileIdentifierStaticJsRuntimeMain45c32883Js) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -993,7 +993,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/runtime-main.6429ebf0.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/runtime-main.45c32883.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } @@ -1008,7 +1008,7 @@ func init() { panic(err) } - rb = bytes.NewReader(FileIdentifierStaticJsRuntimeMain6429ebf0JsMap) + rb = bytes.NewReader(FileIdentifierStaticJsRuntimeMain45c32883JsMap) r, err = gzip.NewReader(rb) if err != nil { panic(err) @@ -1019,7 +1019,7 @@ func init() { panic(err) } - f, err = FS.OpenFile(CTX, "identifier/static/js/runtime-main.6429ebf0.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) + f, err = FS.OpenFile(CTX, "identifier/static/js/runtime-main.45c32883.js.map", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) if err != nil { panic(err) } From c059a2d41e6e764f5463f5ff625e7fd0ccf35373 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Mon, 1 Feb 2021 22:44:51 +0545 Subject: [PATCH 88/88] Bump core and web commit ids for testing --- .drone.env | 4 ++-- .../expected-failures-webUI-on-OWNCLOUD-storage.md | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.drone.env b/.drone.env index 6f85f457c0..cda999bfe8 100644 --- a/.drone.env +++ b/.drone.env @@ -1,7 +1,7 @@ # The test runner source for API tests -CORE_COMMITID=0331dc83cef8efb685b036649c177ee06522d212 +CORE_COMMITID=55a37041b0f4b466656534128ab8ec3624723b4a CORE_BRANCH=master # The test runner source for UI tests -WEB_COMMITID=33342537425e68697e27ba8fbbdb52b51d6a5a54 +WEB_COMMITID=fb92fed62c2ff2cd6d379a00257f64f1feab1285 WEB_BRANCH=master diff --git a/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md b/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md index db6c8059d6..1477b19e8d 100644 --- a/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md +++ b/tests/acceptance/expected-failures-webUI-on-OWNCLOUD-storage.md @@ -12,6 +12,11 @@ Other free text and markdown formatting can be used elsewhere in the document if - [webUIPreview/imageMediaViewer.feature:81](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L81) - [webUIPreview/imageMediaViewer.feature:88](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L88) +### [Media Viewer does not open upper case file extensions](https://github.com/owncloud/web/issues/4647) +- [webUIPreview/imageMediaViewer.feature:172](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L172) +- [webUIPreview/imageMediaViewer.feature:173](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L173) +- [webUIPreview/imageMediaViewer.feature:174](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L174) + ### [Media Viewer preview not visible for files with .jpeg, .ogg, .webm and .gif formats](https://github.com/owncloud/ocis/issues/1490) - [webUIPreview/imageMediaViewer.feature:127](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L127) - [webUIPreview/imageMediaViewer.feature:136](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIPreview/imageMediaViewer.feature#L136)